diff --git a/grammar.js b/grammar.js index 743a498..93cc27c 100644 --- a/grammar.js +++ b/grammar.js @@ -433,6 +433,7 @@ module.exports = grammar({ $.conditional, $.case, alias($.exhaustive_case, $.case), + $.select, // TODO // macro interpolation // macro if @@ -2165,6 +2166,15 @@ module.exports = grammar({ ) }, + select: $ => { + return seq( + 'select', + repeat($.when), + optional($.else), + 'end' + ) + }, + in: $ => { const cond = field('cond', choice( $.generic_instance_type, diff --git a/src/grammar.json b/src/grammar.json index 41ad008..7a717dd 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -473,6 +473,10 @@ "named": true, "value": "case" }, + { + "type": "SYMBOL", + "name": "select" + }, { "type": "SYMBOL", "name": "call" @@ -10647,6 +10651,38 @@ } ] }, + "select": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "select" + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "when" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "else" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "end" + } + ] + }, "in": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index b767251..47bca18 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -441,6 +441,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -782,6 +786,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -1148,6 +1156,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -1473,6 +1485,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -1783,6 +1799,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -2102,6 +2122,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -2430,6 +2454,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -2721,6 +2749,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -3112,6 +3144,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -3445,6 +3481,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -3755,6 +3795,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -4120,6 +4164,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -4509,6 +4557,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -4803,6 +4855,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -5097,6 +5153,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -5407,6 +5467,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -5700,6 +5764,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -6091,6 +6159,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -6390,6 +6462,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -6702,6 +6778,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -7070,6 +7150,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -7357,6 +7441,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -7895,6 +7983,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -8225,6 +8317,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -8622,6 +8718,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -8954,6 +9054,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -9314,6 +9418,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -9754,6 +9862,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -10053,6 +10165,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -10336,6 +10452,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -10635,6 +10755,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -10929,6 +11053,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -11229,6 +11357,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -11512,6 +11644,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -11811,6 +11947,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -12105,6 +12245,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -12408,6 +12552,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -12737,6 +12885,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -13040,6 +13192,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -13439,6 +13595,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -13798,6 +13958,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -14198,6 +14362,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -14498,6 +14666,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -14802,6 +14974,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -15095,6 +15271,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -15398,6 +15578,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -16203,6 +16387,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -16497,6 +16685,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -16918,6 +17110,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -17205,6 +17401,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -17264,6 +17464,25 @@ ] } }, + { + "type": "select", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "else", + "named": true + }, + { + "type": "when", + "named": true + } + ] + } + }, { "type": "sizeof", "named": true, @@ -17560,6 +17779,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -17851,6 +18074,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -18444,6 +18671,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -18750,6 +18981,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -19041,6 +19276,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -19477,6 +19716,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -19783,6 +20026,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -20149,6 +20396,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -20469,6 +20720,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -20752,6 +21007,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -21055,6 +21314,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -21338,6 +21601,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -21637,6 +21904,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -21920,6 +22191,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -22229,6 +22504,10 @@ "type": "return", "named": true }, + { + "type": "select", + "named": true + }, { "type": "self", "named": true @@ -22733,6 +23012,10 @@ "type": "return", "named": false }, + { + "type": "select", + "named": false + }, { "type": "self", "named": true diff --git a/src/parser.c b/src/parser.c index 18cfd21..5371fc8 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,11 +13,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 11983 +#define STATE_COUNT 12081 #define LARGE_STATE_COUNT 2300 -#define SYMBOL_COUNT 392 +#define SYMBOL_COUNT 394 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 209 +#define TOKEN_COUNT 210 #define EXTERNAL_TOKEN_COUNT 56 #define FIELD_COUNT 32 #define MAX_ALIAS_SEQUENCE_LENGTH 11 @@ -175,246 +175,248 @@ enum ts_symbol_identifiers { anon_sym_when = 149, anon_sym_then = 150, anon_sym_case = 151, - anon_sym_in = 152, - sym__line_break = 153, - sym__line_continuation = 154, - sym__start_of_brace_block = 155, - sym__start_of_hash_or_tuple = 156, - sym__start_of_named_tuple = 157, - sym__start_of_tuple_type = 158, - sym__start_of_named_tuple_type = 159, - sym__start_of_index_operator = 160, - sym__end_of_with_expression = 161, - sym_unary_plus = 162, - sym_unary_minus = 163, - sym_binary_plus = 164, - sym_binary_minus = 165, - sym_unary_wrapping_plus = 166, - sym_unary_wrapping_minus = 167, - sym_binary_wrapping_plus = 168, - sym_binary_wrapping_minus = 169, - sym__unary_star = 170, - sym__binary_star = 171, - sym__unary_double_star = 172, - sym__binary_double_star = 173, - sym__block_ampersand = 174, - sym_binary_ampersand = 175, - sym__beginless_range_operator = 176, - sym__regex_start = 177, - sym__binary_slash = 178, - sym__binary_double_slash = 179, - sym__regular_if_keyword = 180, - sym__modifier_if_keyword = 181, - sym__regular_unless_keyword = 182, - sym__modifier_unless_keyword = 183, - sym__regular_rescue_keyword = 184, - sym__modifier_rescue_keyword = 185, - sym__regular_ensure_keyword = 186, - sym__modifier_ensure_keyword = 187, - sym__modulo_operator = 188, - sym__string_literal_start = 189, - sym__delimited_string_contents = 190, - sym__string_literal_end = 191, - 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, + anon_sym_select = 152, + anon_sym_in = 153, + sym__line_break = 154, + sym__line_continuation = 155, + sym__start_of_brace_block = 156, + sym__start_of_hash_or_tuple = 157, + sym__start_of_named_tuple = 158, + sym__start_of_tuple_type = 159, + sym__start_of_named_tuple_type = 160, + sym__start_of_index_operator = 161, + sym__end_of_with_expression = 162, + sym_unary_plus = 163, + sym_unary_minus = 164, + sym_binary_plus = 165, + sym_binary_minus = 166, + sym_unary_wrapping_plus = 167, + sym_unary_wrapping_minus = 168, + sym_binary_wrapping_plus = 169, + sym_binary_wrapping_minus = 170, + sym__unary_star = 171, + sym__binary_star = 172, + sym__unary_double_star = 173, + sym__binary_double_star = 174, + sym__block_ampersand = 175, + sym_binary_ampersand = 176, + sym__beginless_range_operator = 177, + sym__regex_start = 178, + sym__binary_slash = 179, + sym__binary_double_slash = 180, + sym__regular_if_keyword = 181, + sym__modifier_if_keyword = 182, + sym__regular_unless_keyword = 183, + sym__modifier_unless_keyword = 184, + sym__regular_rescue_keyword = 185, + sym__modifier_rescue_keyword = 186, + sym__regular_ensure_keyword = 187, + sym__modifier_ensure_keyword = 188, + sym__modulo_operator = 189, + sym__string_literal_start = 190, + sym__delimited_string_contents = 191, + sym__string_literal_end = 192, + sym__char_comment = 193, + sym__string_percent_literal_start = 194, + sym__command_percent_literal_start = 195, + sym__string_array_percent_literal_start = 196, + sym__symbol_array_percent_literal_start = 197, + sym__regex_percent_literal_start = 198, + sym__percent_literal_end = 199, + sym__delimited_array_element_start = 200, + sym__delimited_array_element_end = 201, + sym_heredoc_start = 202, + sym__heredoc_body_start = 203, + sym_heredoc_content = 204, + sym_heredoc_end = 205, + sym_regex_modifier = 206, + sym__start_of_parenless_args = 207, + sym__end_of_range = 208, + sym__error_recovery = 209, + sym_source_file = 210, + sym__terminator = 211, + sym__statements = 212, + sym__parenthesized_statement = 213, + sym__statement = 214, + sym_expressions = 215, + sym__expression = 216, + sym_empty_parens = 217, + sym_integer = 218, + sym_float = 219, + sym_char = 220, + sym_string = 221, + sym_chained_string = 222, + sym_interpolation = 223, + sym_string_percent_literal = 224, + sym_string_array_percent_literal = 225, + sym_symbol_array_percent_literal = 226, + sym_percent_literal_array_word = 227, + sym_heredoc_body = 228, + sym_quoted_symbol = 229, + sym_command = 230, + sym_command_percent_literal = 231, + sym_regex = 232, + sym_regex_percent_literal = 233, + sym_array = 234, + sym_hash = 235, + sym_hash_entry = 236, + sym_tuple = 237, + sym_named_tuple = 238, + sym_range = 239, + sym_beginless_range = 240, + sym_proc = 241, + sym_proc_param_list = 242, + sym_annotation_def = 243, + sym_annotation = 244, + sym_annotation_argument_list = 245, + sym_module_def = 246, + sym_class_def = 247, + sym_struct_def = 248, + sym_enum_def = 249, + sym__operator_token = 250, + sym__base_method_def = 251, + sym_method_def = 252, + sym_abstract_method_def = 253, + sym_include = 254, + sym_extend = 255, + sym_forall = 256, + sym_param_list = 257, + sym_param = 258, + sym_splat_param = 259, + sym_double_splat_param = 260, + sym_block_param = 261, + sym_return = 262, + sym_next = 263, + sym_break = 264, + sym_yield = 265, + sym_typeof = 266, + sym_sizeof = 267, + sym_instance_sizeof = 268, + sym_offsetof = 269, + sym_constant = 270, + sym_pseudo_constant = 271, + sym__bare_type = 272, + sym__splattable_type = 273, + sym__type = 274, + sym__numeric_type = 275, + sym_class_type = 276, + sym_union_type = 277, + sym__parenthesized_type = 278, + sym_proc_type = 279, + sym_no_args_proc_type = 280, + sym_parenthesized_proc_type = 281, + sym_splat_type = 282, + sym_tuple_type = 283, + sym_named_type = 284, + sym_named_tuple_type = 285, + sym_generic_type = 286, + sym_type_param_splat = 287, + sym_type_param_list = 288, + sym_generic_instance_type = 289, + sym_type_instance_param_list = 290, + sym_nilable_type = 291, + sym_pointer_type = 292, + sym_static_array_type = 293, + sym__dot_call = 294, + sym_bracket_argument_list = 295, + sym_call = 296, + sym_implicit_object_index_operator = 297, + sym_implicit_object_call = 298, + sym_implicit_object_tuple = 299, + sym_assign_call = 300, + sym_index_operator = 301, + sym_not = 302, + sym_and = 303, + sym_or = 304, + sym_additive_operator = 305, + sym_unary_additive_operator = 306, + sym_multiplicative_operator = 307, + sym_exponential_operator = 308, + sym_shift_operator = 309, + sym_complement_operator = 310, + sym_binary_and_operator = 311, + sym_binary_or_operator = 312, + sym_equality_operator = 313, + sym_comparison_operator = 314, + sym_splat = 315, + sym_double_splat = 316, + sym_named_expr = 317, + sym_argument_list_no_parens = 318, + sym_argument_list_no_parens_with_block = 319, + sym_argument_list_with_parens = 320, + sym_argument_list_with_parens_and_block = 321, + sym_assign = 322, + sym_const_assign = 323, + sym_operator_assign = 324, + sym_lhs_splat = 325, + sym_multi_assign = 326, + sym_type_declaration = 327, + sym_alias = 328, + sym_block_body_param = 329, + sym_block_body_splat_param = 330, + sym__block_body_nested_param = 331, + sym_block_param_list = 332, + sym_do_end_block = 333, + sym_brace_block = 334, + sym_block_argument = 335, + sym_begin_block = 336, + sym_rescue_block = 337, + sym_ensure = 338, + sym_modifier_rescue = 339, + sym_modifier_ensure = 340, + sym_while = 341, + sym_until = 342, + sym_if = 343, + sym_unless = 344, + sym_then = 345, + sym_elsif = 346, + sym_else = 347, + sym_conditional = 348, + sym_modifier_if = 349, + sym_modifier_unless = 350, + sym_require = 351, + sym_when = 352, + sym_case = 353, + sym_select = 354, + sym_in = 355, + sym_exhaustive_case = 356, + aux_sym__statements_repeat1 = 357, + aux_sym_string_repeat1 = 358, + aux_sym_chained_string_repeat1 = 359, + aux_sym_string_percent_literal_repeat1 = 360, + aux_sym_string_array_percent_literal_repeat1 = 361, + aux_sym_symbol_array_percent_literal_repeat1 = 362, + aux_sym_percent_literal_array_word_repeat1 = 363, + aux_sym_heredoc_body_repeat1 = 364, + aux_sym_quoted_symbol_repeat1 = 365, + aux_sym_command_repeat1 = 366, + aux_sym_regex_repeat1 = 367, + aux_sym_regex_percent_literal_repeat1 = 368, + aux_sym_array_repeat1 = 369, + aux_sym_hash_repeat1 = 370, + aux_sym_named_tuple_repeat1 = 371, + aux_sym_proc_param_list_repeat1 = 372, + aux_sym_annotation_def_repeat1 = 373, + aux_sym_annotation_argument_list_repeat1 = 374, + aux_sym_method_def_repeat1 = 375, + aux_sym_forall_repeat1 = 376, + aux_sym_param_list_repeat1 = 377, + aux_sym_param_repeat1 = 378, + aux_sym_constant_repeat1 = 379, + aux_sym_union_type_repeat1 = 380, + aux_sym_proc_type_repeat1 = 381, + aux_sym_named_tuple_type_repeat1 = 382, + aux_sym_type_param_list_repeat1 = 383, + aux_sym_implicit_object_tuple_repeat1 = 384, + aux_sym_argument_list_no_parens_repeat1 = 385, + aux_sym_multi_assign_repeat1 = 386, + aux_sym_multi_assign_repeat2 = 387, + aux_sym__block_body_nested_param_repeat1 = 388, + aux_sym_block_param_list_repeat1 = 389, + aux_sym_when_repeat1 = 390, + aux_sym_case_repeat1 = 391, + aux_sym_in_repeat1 = 392, + aux_sym_exhaustive_case_repeat1 = 393, }; static const char * const ts_symbol_names[] = { @@ -570,6 +572,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_when] = "when", [anon_sym_then] = "then", [anon_sym_case] = "case", + [anon_sym_select] = "select", [anon_sym_in] = "in", [sym__line_break] = "_line_break", [sym__line_continuation] = "_line_continuation", @@ -771,6 +774,7 @@ static const char * const ts_symbol_names[] = { [sym_require] = "require", [sym_when] = "when", [sym_case] = "case", + [sym_select] = "select", [sym_in] = "in", [sym_exhaustive_case] = "case", [aux_sym__statements_repeat1] = "_statements_repeat1", @@ -965,6 +969,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_when] = anon_sym_when, [anon_sym_then] = anon_sym_then, [anon_sym_case] = anon_sym_case, + [anon_sym_select] = anon_sym_select, [anon_sym_in] = anon_sym_in, [sym__line_break] = sym__line_break, [sym__line_continuation] = sym__line_continuation, @@ -1166,6 +1171,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_require] = sym_require, [sym_when] = sym_when, [sym_case] = sym_case, + [sym_select] = sym_select, [sym_in] = sym_in, [sym_exhaustive_case] = sym_case, [aux_sym__statements_repeat1] = aux_sym__statements_repeat1, @@ -1816,6 +1822,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_select] = { + .visible = true, + .named = false, + }, [anon_sym_in] = { .visible = true, .named = false, @@ -2620,6 +2630,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_select] = { + .visible = true, + .named = true, + }, [sym_in] = { .visible = true, .named = true, @@ -2957,37 +2971,37 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [107] = {.index = 275, .length = 2}, [108] = {.index = 277, .length = 2}, [109] = {.index = 279, .length = 3}, - [110] = {.index = 282, .length = 3}, - [111] = {.index = 285, .length = 7}, - [112] = {.index = 292, .length = 7}, - [113] = {.index = 299, .length = 7}, - [114] = {.index = 306, .length = 8}, - [115] = {.index = 314, .length = 4}, - [116] = {.index = 318, .length = 2}, - [117] = {.index = 320, .length = 3}, - [118] = {.index = 323, .length = 2}, - [119] = {.index = 325, .length = 3}, - [120] = {.index = 328, .length = 4}, - [121] = {.index = 332, .length = 4}, - [122] = {.index = 336, .length = 3}, - [123] = {.index = 339, .length = 1}, - [124] = {.index = 340, .length = 2}, - [125] = {.index = 342, .length = 7}, - [126] = {.index = 349, .length = 7}, - [127] = {.index = 356, .length = 7}, - [128] = {.index = 363, .length = 8}, - [129] = {.index = 371, .length = 3}, - [130] = {.index = 374, .length = 2}, - [131] = {.index = 376, .length = 3}, - [132] = {.index = 379, .length = 5}, - [133] = {.index = 384, .length = 3}, - [134] = {.index = 387, .length = 2}, - [135] = {.index = 389, .length = 2}, + [110] = {.index = 282, .length = 2}, + [111] = {.index = 284, .length = 2}, + [112] = {.index = 286, .length = 3}, + [113] = {.index = 289, .length = 7}, + [114] = {.index = 296, .length = 7}, + [115] = {.index = 303, .length = 7}, + [116] = {.index = 310, .length = 8}, + [117] = {.index = 318, .length = 4}, + [118] = {.index = 322, .length = 2}, + [119] = {.index = 324, .length = 3}, + [120] = {.index = 327, .length = 2}, + [121] = {.index = 329, .length = 3}, + [122] = {.index = 332, .length = 4}, + [123] = {.index = 336, .length = 4}, + [124] = {.index = 340, .length = 3}, + [125] = {.index = 343, .length = 1}, + [126] = {.index = 344, .length = 2}, + [127] = {.index = 346, .length = 7}, + [128] = {.index = 353, .length = 7}, + [129] = {.index = 360, .length = 7}, + [130] = {.index = 367, .length = 8}, + [131] = {.index = 375, .length = 3}, + [132] = {.index = 378, .length = 2}, + [133] = {.index = 380, .length = 3}, + [134] = {.index = 383, .length = 5}, + [135] = {.index = 388, .length = 3}, [136] = {.index = 391, .length = 2}, [137] = {.index = 393, .length = 2}, - [138] = {.index = 395, .length = 3}, - [139] = {.index = 398, .length = 2}, - [140] = {.index = 400, .length = 2}, + [138] = {.index = 395, .length = 2}, + [139] = {.index = 397, .length = 2}, + [140] = {.index = 399, .length = 3}, [141] = {.index = 402, .length = 8}, [142] = {.index = 410, .length = 2}, [143] = {.index = 412, .length = 2}, @@ -3420,10 +3434,16 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_ensure, 3}, {field_rescue, 1}, [282] = + {field_cond, 1}, + {field_cond, 2, .inherited = true}, + [284] = + {field_cond, 0, .inherited = true}, + {field_cond, 1, .inherited = true}, + [286] = {field_cond, 0}, {field_else, 4}, {field_then, 2}, - [285] = + [289] = {field_class, 0, .inherited = true}, {field_else, 2}, {field_ensure, 3}, @@ -3431,7 +3451,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 0, .inherited = true}, {field_params, 0, .inherited = true}, {field_type, 0, .inherited = true}, - [292] = + [296] = {field_class, 0, .inherited = true}, {field_ensure, 3}, {field_forall, 0, .inherited = true}, @@ -3439,7 +3459,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_params, 0, .inherited = true}, {field_rescue, 2}, {field_type, 0, .inherited = true}, - [299] = + [303] = {field_class, 0, .inherited = true}, {field_else, 3}, {field_forall, 0, .inherited = true}, @@ -3447,7 +3467,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_params, 0, .inherited = true}, {field_rescue, 2}, {field_type, 0, .inherited = true}, - [306] = + [310] = {field_class, 0, .inherited = true}, {field_else, 2}, {field_ensure, 3}, @@ -3456,45 +3476,45 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_params, 0, .inherited = true}, {field_rescue, 1}, {field_type, 0, .inherited = true}, - [314] = + [318] = {field_lhs, 0, .inherited = true}, {field_lhs, 1}, {field_rhs, 3, .inherited = true}, {field_rhs, 4}, - [318] = + [322] = {field_of_key, 3}, {field_of_value, 5}, - [320] = + [324] = {field_cond, 1}, {field_else, 4}, {field_then, 3}, - [323] = + [327] = {field_of, 4}, {field_of, 5}, - [325] = + [329] = {field_block, 5}, {field_type, 3}, {field_type, 4}, - [328] = + [332] = {field_extern_name, 0}, {field_name, 1}, {field_type, 2}, {field_type, 3}, - [332] = + [336] = {field_default, 2}, {field_default, 3}, {field_extern_name, 0}, {field_name, 1}, - [336] = + [340] = {field_default, 2}, {field_default, 3}, {field_name, 1}, - [339] = + [343] = {field_return, 3}, - [340] = + [344] = {field_name, 2}, {field_superclass, 4}, - [342] = + [346] = {field_class, 1, .inherited = true}, {field_else, 3}, {field_ensure, 4}, @@ -3502,7 +3522,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 1, .inherited = true}, {field_params, 1, .inherited = true}, {field_type, 1, .inherited = true}, - [349] = + [353] = {field_class, 1, .inherited = true}, {field_ensure, 4}, {field_forall, 1, .inherited = true}, @@ -3510,7 +3530,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_params, 1, .inherited = true}, {field_rescue, 3}, {field_type, 1, .inherited = true}, - [356] = + [360] = {field_class, 1, .inherited = true}, {field_else, 4}, {field_forall, 1, .inherited = true}, @@ -3518,7 +3538,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_params, 1, .inherited = true}, {field_rescue, 3}, {field_type, 1, .inherited = true}, - [363] = + [367] = {field_class, 1, .inherited = true}, {field_else, 3}, {field_ensure, 4}, @@ -3527,49 +3547,43 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_params, 1, .inherited = true}, {field_rescue, 2}, {field_type, 1, .inherited = true}, - [371] = + [375] = {field_name, 1}, {field_type, 4}, {field_type, 5}, - [374] = + [378] = {field_type, 1}, {field_type, 2}, - [376] = + [380] = {field_forall, 5}, {field_name, 1}, {field_params, 3}, - [379] = + [383] = {field_class, 1}, {field_class, 2}, {field_name, 3}, {field_type, 4}, {field_type, 5}, - [384] = + [388] = {field_type, 3}, {field_value, 5}, {field_var, 0}, - [387] = + [391] = {field_type, 3}, {field_variable, 1}, - [389] = + [393] = {field_else, 3}, {field_ensure, 4}, - [391] = + [395] = {field_ensure, 4}, {field_rescue, 3}, - [393] = + [397] = {field_else, 4}, {field_rescue, 3}, - [395] = + [399] = {field_else, 3}, {field_ensure, 4}, {field_rescue, 2}, - [398] = - {field_cond, 1}, - {field_cond, 2, .inherited = true}, - [400] = - {field_cond, 0, .inherited = true}, - {field_cond, 1, .inherited = true}, [402] = {field_class, 0, .inherited = true}, {field_else, 3}, @@ -3835,8 +3849,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [16] = 4, [17] = 2, [18] = 4, - [19] = 2, - [20] = 5, + [19] = 5, + [20] = 2, [21] = 4, [22] = 4, [23] = 4, @@ -3845,29 +3859,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [26] = 2, [27] = 2, [28] = 2, - [29] = 2, + [29] = 4, [30] = 2, - [31] = 4, + [31] = 2, [32] = 4, - [33] = 4, + [33] = 2, [34] = 4, - [35] = 2, - [36] = 2, + [35] = 4, + [36] = 4, [37] = 4, - [38] = 4, + [38] = 2, [39] = 2, [40] = 2, [41] = 4, [42] = 4, [43] = 4, - [44] = 44, - [45] = 5, + [44] = 4, + [45] = 45, [46] = 46, - [47] = 4, + [47] = 5, [48] = 46, - [49] = 46, + [49] = 45, [50] = 4, - [51] = 44, + [51] = 45, [52] = 4, [53] = 4, [54] = 4, @@ -3875,904 +3889,904 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [56] = 55, [57] = 57, [58] = 58, - [59] = 57, - [60] = 58, - [61] = 61, - [62] = 61, + [59] = 59, + [60] = 57, + [61] = 58, + [62] = 59, [63] = 57, - [64] = 61, + [64] = 59, [65] = 58, [66] = 66, [67] = 67, [68] = 55, [69] = 55, - [70] = 66, - [71] = 57, + [70] = 58, + [71] = 59, [72] = 57, - [73] = 67, - [74] = 61, + [73] = 66, + [74] = 57, [75] = 58, - [76] = 58, - [77] = 61, - [78] = 55, - [79] = 67, - [80] = 66, - [81] = 55, - [82] = 57, - [83] = 61, - [84] = 58, + [76] = 67, + [77] = 59, + [78] = 57, + [79] = 59, + [80] = 55, + [81] = 58, + [82] = 66, + [83] = 67, + [84] = 55, [85] = 57, - [86] = 67, - [87] = 58, - [88] = 61, - [89] = 55, - [90] = 55, - [91] = 66, - [92] = 58, - [93] = 61, - [94] = 57, - [95] = 57, - [96] = 61, - [97] = 61, + [86] = 55, + [87] = 55, + [88] = 67, + [89] = 58, + [90] = 66, + [91] = 59, + [92] = 57, + [93] = 58, + [94] = 59, + [95] = 59, + [96] = 57, + [97] = 59, [98] = 58, - [99] = 58, - [100] = 58, - [101] = 61, - [102] = 57, - [103] = 57, - [104] = 66, - [105] = 67, - [106] = 66, - [107] = 67, - [108] = 108, - [109] = 67, - [110] = 108, - [111] = 66, - [112] = 108, - [113] = 108, - [114] = 108, - [115] = 108, - [116] = 108, - [117] = 108, - [118] = 108, - [119] = 108, - [120] = 108, - [121] = 108, + [99] = 57, + [100] = 57, + [101] = 58, + [102] = 58, + [103] = 59, + [104] = 67, + [105] = 66, + [106] = 67, + [107] = 66, + [108] = 67, + [109] = 109, + [110] = 109, + [111] = 109, + [112] = 109, + [113] = 109, + [114] = 109, + [115] = 109, + [116] = 109, + [117] = 109, + [118] = 109, + [119] = 66, + [120] = 109, + [121] = 109, [122] = 67, - [123] = 58, - [124] = 61, - [125] = 57, - [126] = 108, - [127] = 66, - [128] = 108, - [129] = 66, - [130] = 130, - [131] = 55, - [132] = 130, - [133] = 130, - [134] = 130, - [135] = 130, - [136] = 130, - [137] = 130, - [138] = 130, - [139] = 130, - [140] = 130, - [141] = 130, - [142] = 130, - [143] = 130, - [144] = 67, - [145] = 55, - [146] = 130, - [147] = 130, - [148] = 130, + [123] = 57, + [124] = 58, + [125] = 59, + [126] = 66, + [127] = 109, + [128] = 109, + [129] = 129, + [130] = 129, + [131] = 129, + [132] = 129, + [133] = 129, + [134] = 129, + [135] = 129, + [136] = 129, + [137] = 55, + [138] = 129, + [139] = 129, + [140] = 129, + [141] = 129, + [142] = 55, + [143] = 129, + [144] = 129, + [145] = 129, + [146] = 129, + [147] = 67, + [148] = 66, [149] = 149, - [150] = 150, - [151] = 151, - [152] = 149, - [153] = 55, - [154] = 66, - [155] = 151, - [156] = 149, - [157] = 66, - [158] = 55, - [159] = 151, - [160] = 149, - [161] = 55, - [162] = 67, - [163] = 151, - [164] = 164, - [165] = 151, - [166] = 149, - [167] = 67, - [168] = 151, + [150] = 67, + [151] = 55, + [152] = 55, + [153] = 66, + [154] = 154, + [155] = 155, + [156] = 156, + [157] = 157, + [158] = 155, + [159] = 149, + [160] = 154, + [161] = 155, + [162] = 156, + [163] = 157, + [164] = 149, + [165] = 157, + [166] = 157, + [167] = 149, + [168] = 157, [169] = 149, - [170] = 151, - [171] = 149, + [170] = 156, + [171] = 154, [172] = 149, - [173] = 55, - [174] = 151, - [175] = 149, - [176] = 151, - [177] = 149, - [178] = 151, - [179] = 149, - [180] = 151, + [173] = 59, + [174] = 57, + [175] = 157, + [176] = 149, + [177] = 157, + [178] = 149, + [179] = 157, + [180] = 157, [181] = 149, - [182] = 182, - [183] = 182, - [184] = 151, + [182] = 157, + [183] = 149, + [184] = 157, [185] = 149, - [186] = 164, - [187] = 149, - [188] = 150, - [189] = 149, - [190] = 151, - [191] = 58, + [186] = 67, + [187] = 157, + [188] = 149, + [189] = 157, + [190] = 149, + [191] = 149, [192] = 149, - [193] = 57, - [194] = 58, - [195] = 61, - [196] = 61, - [197] = 57, - [198] = 182, - [199] = 150, - [200] = 164, - [201] = 151, - [202] = 202, + [193] = 55, + [194] = 57, + [195] = 66, + [196] = 149, + [197] = 58, + [198] = 59, + [199] = 58, + [200] = 55, + [201] = 157, + [202] = 59, [203] = 55, - [204] = 61, - [205] = 58, - [206] = 55, - [207] = 61, - [208] = 57, - [209] = 61, - [210] = 57, + [204] = 59, + [205] = 55, + [206] = 58, + [207] = 57, + [208] = 58, + [209] = 55, + [210] = 55, [211] = 57, [212] = 58, - [213] = 55, - [214] = 61, - [215] = 57, + [213] = 58, + [214] = 59, + [215] = 215, [216] = 216, - [217] = 55, - [218] = 58, - [219] = 58, - [220] = 61, - [221] = 221, - [222] = 221, - [223] = 223, - [224] = 221, - [225] = 57, - [226] = 58, - [227] = 221, - [228] = 58, - [229] = 221, - [230] = 221, - [231] = 58, - [232] = 221, - [233] = 61, - [234] = 221, - [235] = 221, - [236] = 221, - [237] = 221, - [238] = 61, - [239] = 221, + [217] = 57, + [218] = 59, + [219] = 57, + [220] = 220, + [221] = 58, + [222] = 220, + [223] = 220, + [224] = 220, + [225] = 220, + [226] = 220, + [227] = 59, + [228] = 57, + [229] = 58, + [230] = 220, + [231] = 220, + [232] = 232, + [233] = 220, + [234] = 220, + [235] = 67, + [236] = 220, + [237] = 59, + [238] = 220, + [239] = 59, [240] = 57, - [241] = 221, - [242] = 67, - [243] = 58, - [244] = 66, - [245] = 66, - [246] = 61, - [247] = 57, - [248] = 221, - [249] = 67, - [250] = 58, - [251] = 61, - [252] = 57, - [253] = 57, - [254] = 67, - [255] = 255, - [256] = 58, - [257] = 58, - [258] = 66, - [259] = 259, - [260] = 61, - [261] = 67, - [262] = 57, - [263] = 61, - [264] = 57, - [265] = 66, - [266] = 61, - [267] = 58, - [268] = 57, + [241] = 66, + [242] = 57, + [243] = 57, + [244] = 220, + [245] = 67, + [246] = 58, + [247] = 59, + [248] = 66, + [249] = 220, + [250] = 57, + [251] = 58, + [252] = 59, + [253] = 58, + [254] = 58, + [255] = 66, + [256] = 256, + [257] = 57, + [258] = 58, + [259] = 59, + [260] = 57, + [261] = 59, + [262] = 67, + [263] = 66, + [264] = 264, + [265] = 57, + [266] = 58, + [267] = 67, + [268] = 59, [269] = 269, [270] = 269, - [271] = 271, + [271] = 269, [272] = 269, - [273] = 269, + [273] = 66, [274] = 269, [275] = 269, - [276] = 276, - [277] = 269, - [278] = 67, - [279] = 67, - [280] = 269, - [281] = 269, - [282] = 66, - [283] = 269, - [284] = 284, - [285] = 269, - [286] = 66, + [276] = 269, + [277] = 66, + [278] = 269, + [279] = 269, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 67, + [284] = 269, + [285] = 67, + [286] = 269, [287] = 287, - [288] = 269, - [289] = 67, + [288] = 288, + [289] = 269, [290] = 66, [291] = 269, - [292] = 292, + [292] = 67, [293] = 293, [294] = 269, [295] = 295, - [296] = 296, + [296] = 216, [297] = 297, [298] = 298, [299] = 299, - [300] = 216, - [301] = 301, - [302] = 255, - [303] = 259, - [304] = 304, - [305] = 66, - [306] = 306, - [307] = 307, - [308] = 66, + [300] = 66, + [301] = 67, + [302] = 67, + [303] = 264, + [304] = 256, + [305] = 305, + [306] = 295, + [307] = 297, + [308] = 308, [309] = 309, - [310] = 297, - [311] = 295, - [312] = 306, + [310] = 310, + [311] = 311, + [312] = 312, [313] = 313, - [314] = 296, - [315] = 299, - [316] = 297, - [317] = 67, - [318] = 202, - [319] = 295, - [320] = 304, - [321] = 299, - [322] = 304, - [323] = 296, - [324] = 67, - [325] = 306, + [314] = 299, + [315] = 310, + [316] = 310, + [317] = 295, + [318] = 308, + [319] = 215, + [320] = 299, + [321] = 66, + [322] = 308, + [323] = 297, + [324] = 305, + [325] = 305, [326] = 326, [327] = 327, [328] = 328, [329] = 329, - [330] = 330, + [330] = 67, [331] = 331, - [332] = 332, + [332] = 66, [333] = 333, - [334] = 334, - [335] = 327, + [334] = 264, + [335] = 66, [336] = 336, [337] = 337, [338] = 338, - [339] = 339, - [340] = 67, - [341] = 66, - [342] = 328, - [343] = 329, - [344] = 344, - [345] = 345, + [339] = 329, + [340] = 333, + [341] = 341, + [342] = 327, + [343] = 328, + [344] = 331, + [345] = 341, [346] = 346, - [347] = 327, - [348] = 328, - [349] = 329, - [350] = 330, - [351] = 331, - [352] = 332, - [353] = 333, - [354] = 334, - [355] = 330, - [356] = 336, - [357] = 336, - [358] = 67, - [359] = 336, - [360] = 360, - [361] = 337, - [362] = 255, - [363] = 336, - [364] = 331, - [365] = 336, - [366] = 346, - [367] = 336, - [368] = 368, - [369] = 336, - [370] = 333, - [371] = 336, - [372] = 334, + [347] = 347, + [348] = 348, + [349] = 346, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 336, + [355] = 347, + [356] = 337, + [357] = 338, + [358] = 348, + [359] = 329, + [360] = 333, + [361] = 327, + [362] = 328, + [363] = 331, + [364] = 341, + [365] = 346, + [366] = 338, + [367] = 348, + [368] = 350, + [369] = 351, + [370] = 352, + [371] = 353, + [372] = 336, [373] = 336, - [374] = 338, - [375] = 344, + [374] = 336, + [375] = 336, [376] = 336, - [377] = 377, - [378] = 336, - [379] = 379, + [377] = 350, + [378] = 351, + [379] = 336, [380] = 380, - [381] = 381, + [381] = 336, [382] = 336, - [383] = 336, - [384] = 293, - [385] = 271, - [386] = 339, - [387] = 345, - [388] = 326, - [389] = 346, - [390] = 67, - [391] = 259, + [383] = 383, + [384] = 336, + [385] = 336, + [386] = 256, + [387] = 336, + [388] = 336, + [389] = 352, + [390] = 336, + [391] = 353, [392] = 336, - [393] = 336, - [394] = 337, - [395] = 338, - [396] = 66, - [397] = 339, - [398] = 326, - [399] = 344, - [400] = 66, - [401] = 345, - [402] = 332, - [403] = 403, - [404] = 259, + [393] = 282, + [394] = 288, + [395] = 337, + [396] = 396, + [397] = 397, + [398] = 66, + [399] = 399, + [400] = 67, + [401] = 67, + [402] = 347, + [403] = 66, + [404] = 404, [405] = 405, - [406] = 406, - [407] = 405, + [406] = 256, + [407] = 407, [408] = 408, [409] = 409, [410] = 410, [411] = 411, - [412] = 411, - [413] = 405, - [414] = 216, - [415] = 415, - [416] = 255, - [417] = 417, - [418] = 409, - [419] = 410, - [420] = 411, - [421] = 405, - [422] = 422, - [423] = 423, - [424] = 409, - [425] = 409, - [426] = 410, - [427] = 411, - [428] = 428, - [429] = 405, - [430] = 410, + [412] = 412, + [413] = 413, + [414] = 414, + [415] = 67, + [416] = 416, + [417] = 67, + [418] = 418, + [419] = 407, + [420] = 408, + [421] = 409, + [422] = 410, + [423] = 410, + [424] = 404, + [425] = 405, + [426] = 215, + [427] = 407, + [428] = 408, + [429] = 409, + [430] = 430, [431] = 66, - [432] = 409, - [433] = 410, - [434] = 411, - [435] = 405, - [436] = 66, - [437] = 437, - [438] = 405, - [439] = 409, - [440] = 410, - [441] = 411, - [442] = 405, - [443] = 443, - [444] = 417, - [445] = 409, - [446] = 410, - [447] = 411, - [448] = 67, - [449] = 405, - [450] = 411, - [451] = 415, - [452] = 423, - [453] = 409, - [454] = 410, - [455] = 411, - [456] = 411, - [457] = 443, - [458] = 411, - [459] = 408, - [460] = 409, - [461] = 410, - [462] = 411, - [463] = 67, - [464] = 405, - [465] = 437, - [466] = 422, - [467] = 410, - [468] = 428, - [469] = 409, - [470] = 410, - [471] = 411, - [472] = 411, - [473] = 403, - [474] = 411, - [475] = 422, - [476] = 415, - [477] = 409, - [478] = 67, + [432] = 411, + [433] = 412, + [434] = 282, + [435] = 413, + [436] = 414, + [437] = 416, + [438] = 404, + [439] = 404, + [440] = 405, + [441] = 430, + [442] = 416, + [443] = 404, + [444] = 405, + [445] = 430, + [446] = 416, + [447] = 430, + [448] = 448, + [449] = 404, + [450] = 405, + [451] = 430, + [452] = 416, + [453] = 216, + [454] = 411, + [455] = 404, + [456] = 405, + [457] = 430, + [458] = 412, + [459] = 416, + [460] = 405, + [461] = 404, + [462] = 405, + [463] = 430, + [464] = 416, + [465] = 404, + [466] = 405, + [467] = 430, + [468] = 416, + [469] = 380, + [470] = 404, + [471] = 405, + [472] = 430, + [473] = 416, + [474] = 404, + [475] = 405, + [476] = 430, + [477] = 416, + [478] = 404, [479] = 405, - [480] = 423, - [481] = 428, - [482] = 202, - [483] = 293, + [480] = 430, + [481] = 416, + [482] = 416, + [483] = 404, [484] = 405, - [485] = 409, - [486] = 66, - [487] = 409, - [488] = 410, - [489] = 410, - [490] = 411, - [491] = 437, - [492] = 360, - [493] = 405, - [494] = 443, - [495] = 417, - [496] = 403, - [497] = 409, - [498] = 408, - [499] = 271, - [500] = 410, - [501] = 405, - [502] = 293, - [503] = 271, - [504] = 255, - [505] = 255, - [506] = 259, - [507] = 259, - [508] = 255, - [509] = 271, - [510] = 259, - [511] = 271, - [512] = 255, - [513] = 293, - [514] = 293, - [515] = 259, - [516] = 259, + [485] = 430, + [486] = 416, + [487] = 288, + [488] = 404, + [489] = 405, + [490] = 430, + [491] = 413, + [492] = 430, + [493] = 414, + [494] = 430, + [495] = 418, + [496] = 66, + [497] = 416, + [498] = 67, + [499] = 418, + [500] = 264, + [501] = 430, + [502] = 282, + [503] = 288, + [504] = 264, + [505] = 256, + [506] = 256, + [507] = 264, + [508] = 264, + [509] = 282, + [510] = 264, + [511] = 282, + [512] = 288, + [513] = 288, + [514] = 256, + [515] = 256, + [516] = 288, [517] = 517, - [518] = 255, + [518] = 282, [519] = 519, - [520] = 293, - [521] = 271, - [522] = 519, - [523] = 293, + [520] = 517, + [521] = 264, + [522] = 517, + [523] = 256, [524] = 519, - [525] = 517, - [526] = 517, - [527] = 271, - [528] = 271, - [529] = 293, - [530] = 255, - [531] = 255, - [532] = 259, - [533] = 259, - [534] = 293, - [535] = 293, - [536] = 271, - [537] = 271, - [538] = 255, - [539] = 255, - [540] = 259, - [541] = 259, - [542] = 293, - [543] = 259, - [544] = 259, - [545] = 271, - [546] = 255, - [547] = 293, - [548] = 255, - [549] = 271, - [550] = 293, - [551] = 255, - [552] = 255, - [553] = 259, - [554] = 255, - [555] = 259, - [556] = 293, - [557] = 259, - [558] = 271, - [559] = 271, - [560] = 293, - [561] = 259, - [562] = 293, - [563] = 271, - [564] = 259, - [565] = 271, - [566] = 271, - [567] = 255, - [568] = 255, - [569] = 293, - [570] = 255, - [571] = 293, - [572] = 259, - [573] = 271, - [574] = 293, - [575] = 255, - [576] = 259, - [577] = 271, - [578] = 259, - [579] = 255, - [580] = 259, - [581] = 259, - [582] = 271, - [583] = 293, - [584] = 293, - [585] = 259, - [586] = 255, - [587] = 271, - [588] = 255, - [589] = 293, - [590] = 255, - [591] = 271, - [592] = 271, - [593] = 293, - [594] = 271, - [595] = 293, - [596] = 293, - [597] = 271, - [598] = 58, - [599] = 58, - [600] = 58, + [525] = 519, + [526] = 288, + [527] = 282, + [528] = 264, + [529] = 256, + [530] = 264, + [531] = 282, + [532] = 288, + [533] = 256, + [534] = 282, + [535] = 288, + [536] = 288, + [537] = 282, + [538] = 264, + [539] = 256, + [540] = 264, + [541] = 256, + [542] = 288, + [543] = 264, + [544] = 264, + [545] = 282, + [546] = 256, + [547] = 288, + [548] = 256, + [549] = 282, + [550] = 264, + [551] = 282, + [552] = 288, + [553] = 264, + [554] = 288, + [555] = 256, + [556] = 256, + [557] = 282, + [558] = 264, + [559] = 256, + [560] = 288, + [561] = 288, + [562] = 282, + [563] = 256, + [564] = 256, + [565] = 282, + [566] = 288, + [567] = 264, + [568] = 282, + [569] = 264, + [570] = 256, + [571] = 264, + [572] = 264, + [573] = 282, + [574] = 288, + [575] = 264, + [576] = 282, + [577] = 288, + [578] = 256, + [579] = 256, + [580] = 264, + [581] = 256, + [582] = 264, + [583] = 256, + [584] = 282, + [585] = 288, + [586] = 288, + [587] = 282, + [588] = 264, + [589] = 256, + [590] = 282, + [591] = 288, + [592] = 288, + [593] = 288, + [594] = 288, + [595] = 282, + [596] = 282, + [597] = 282, + [598] = 57, + [599] = 57, + [600] = 57, [601] = 601, [602] = 602, [603] = 603, [604] = 604, [605] = 604, - [606] = 603, - [607] = 601, - [608] = 602, - [609] = 604, - [610] = 604, + [606] = 602, + [607] = 603, + [608] = 601, + [609] = 609, + [610] = 609, [611] = 611, [612] = 612, - [613] = 611, + [613] = 609, [614] = 611, - [615] = 615, - [616] = 616, - [617] = 612, - [618] = 611, - [619] = 615, - [620] = 612, - [621] = 615, - [622] = 612, + [615] = 612, + [616] = 609, + [617] = 611, + [618] = 612, + [619] = 609, + [620] = 611, + [621] = 612, + [622] = 609, [623] = 611, - [624] = 615, - [625] = 612, + [624] = 612, + [625] = 609, [626] = 611, - [627] = 615, - [628] = 612, - [629] = 611, - [630] = 615, - [631] = 612, + [627] = 612, + [628] = 609, + [629] = 604, + [630] = 611, + [631] = 611, [632] = 611, - [633] = 615, + [633] = 612, [634] = 612, - [635] = 611, - [636] = 615, - [637] = 612, - [638] = 611, - [639] = 615, + [635] = 609, + [636] = 609, + [637] = 602, + [638] = 609, + [639] = 612, [640] = 612, [641] = 611, - [642] = 615, - [643] = 612, - [644] = 611, - [645] = 615, + [642] = 609, + [643] = 611, + [644] = 612, + [645] = 645, [646] = 612, [647] = 611, - [648] = 615, + [648] = 612, [649] = 612, - [650] = 611, - [651] = 615, - [652] = 612, + [650] = 612, + [651] = 603, + [652] = 609, [653] = 611, - [654] = 615, - [655] = 612, + [654] = 609, + [655] = 604, [656] = 611, - [657] = 615, - [658] = 612, + [657] = 609, + [658] = 609, [659] = 611, - [660] = 615, - [661] = 612, - [662] = 611, - [663] = 615, + [660] = 611, + [661] = 611, + [662] = 612, + [663] = 612, [664] = 612, [665] = 611, - [666] = 615, - [667] = 612, - [668] = 611, - [669] = 615, - [670] = 612, - [671] = 611, - [672] = 615, + [666] = 612, + [667] = 609, + [668] = 612, + [669] = 609, + [670] = 611, + [671] = 609, + [672] = 609, [673] = 612, - [674] = 611, - [675] = 615, - [676] = 602, - [677] = 601, - [678] = 603, - [679] = 615, - [680] = 612, - [681] = 612, + [674] = 609, + [675] = 612, + [676] = 601, + [677] = 611, + [678] = 612, + [679] = 609, + [680] = 611, + [681] = 609, [682] = 611, - [683] = 615, + [683] = 611, [684] = 684, - [685] = 684, - [686] = 684, - [687] = 687, + [685] = 685, + [686] = 686, + [687] = 686, [688] = 688, - [689] = 689, - [690] = 689, - [691] = 687, - [692] = 688, - [693] = 689, - [694] = 684, - [695] = 684, - [696] = 687, + [689] = 685, + [690] = 685, + [691] = 688, + [692] = 685, + [693] = 684, + [694] = 686, + [695] = 686, + [696] = 688, [697] = 688, - [698] = 687, - [699] = 688, - [700] = 700, - [701] = 689, - [702] = 687, - [703] = 604, - [704] = 684, + [698] = 685, + [699] = 684, + [700] = 686, + [701] = 688, + [702] = 686, + [703] = 703, + [704] = 688, [705] = 705, - [706] = 687, - [707] = 688, - [708] = 687, - [709] = 689, - [710] = 689, - [711] = 688, - [712] = 688, - [713] = 684, - [714] = 684, - [715] = 687, - [716] = 688, - [717] = 689, - [718] = 687, - [719] = 684, - [720] = 687, + [706] = 684, + [707] = 685, + [708] = 684, + [709] = 684, + [710] = 710, + [711] = 686, + [712] = 686, + [713] = 685, + [714] = 685, + [715] = 688, + [716] = 686, + [717] = 688, + [718] = 684, + [719] = 686, + [720] = 684, [721] = 688, - [722] = 689, - [723] = 687, - [724] = 684, - [725] = 687, + [722] = 685, + [723] = 723, + [724] = 686, + [725] = 684, [726] = 688, - [727] = 689, - [728] = 689, + [727] = 684, + [728] = 685, [729] = 684, - [730] = 687, - [731] = 684, + [730] = 685, + [731] = 686, [732] = 688, - [733] = 689, + [733] = 684, [734] = 684, - [735] = 687, - [736] = 684, + [735] = 685, + [736] = 686, [737] = 688, - [738] = 689, - [739] = 684, - [740] = 687, + [738] = 684, + [739] = 685, + [740] = 686, [741] = 688, - [742] = 689, - [743] = 684, - [744] = 689, - [745] = 687, - [746] = 688, - [747] = 689, - [748] = 684, - [749] = 749, - [750] = 687, - [751] = 688, - [752] = 689, + [742] = 684, + [743] = 685, + [744] = 686, + [745] = 688, + [746] = 684, + [747] = 685, + [748] = 686, + [749] = 688, + [750] = 686, + [751] = 685, + [752] = 688, [753] = 684, - [754] = 687, - [755] = 684, - [756] = 688, - [757] = 689, - [758] = 687, - [759] = 684, - [760] = 687, - [761] = 684, - [762] = 688, - [763] = 688, - [764] = 689, - [765] = 765, - [766] = 684, - [767] = 687, - [768] = 687, - [769] = 688, - [770] = 688, - [771] = 687, - [772] = 688, - [773] = 689, - [774] = 774, - [775] = 689, - [776] = 684, - [777] = 689, + [754] = 685, + [755] = 686, + [756] = 686, + [757] = 688, + [758] = 684, + [759] = 685, + [760] = 686, + [761] = 688, + [762] = 684, + [763] = 685, + [764] = 686, + [765] = 688, + [766] = 766, + [767] = 684, + [768] = 685, + [769] = 684, + [770] = 684, + [771] = 685, + [772] = 686, + [773] = 686, + [774] = 688, + [775] = 686, + [776] = 688, + [777] = 777, [778] = 684, - [779] = 779, - [780] = 687, - [781] = 688, - [782] = 684, - [783] = 689, - [784] = 688, - [785] = 689, - [786] = 687, - [787] = 684, - [788] = 604, - [789] = 688, - [790] = 687, - [791] = 688, - [792] = 792, - [793] = 689, - [794] = 689, - [795] = 684, - [796] = 796, - [797] = 687, - [798] = 688, - [799] = 688, - [800] = 689, - [801] = 684, - [802] = 684, - [803] = 687, - [804] = 688, - [805] = 689, - [806] = 806, - [807] = 689, - [808] = 687, - [809] = 684, + [779] = 688, + [780] = 685, + [781] = 684, + [782] = 686, + [783] = 688, + [784] = 685, + [785] = 684, + [786] = 686, + [787] = 685, + [788] = 688, + [789] = 686, + [790] = 688, + [791] = 685, + [792] = 684, + [793] = 688, + [794] = 685, + [795] = 685, + [796] = 686, + [797] = 688, + [798] = 686, + [799] = 684, + [800] = 685, + [801] = 686, + [802] = 686, + [803] = 688, + [804] = 684, + [805] = 684, + [806] = 685, + [807] = 686, + [808] = 688, + [809] = 685, [810] = 688, - [811] = 687, + [811] = 684, [812] = 688, - [813] = 689, - [814] = 684, - [815] = 687, - [816] = 688, - [817] = 689, - [818] = 684, - [819] = 687, - [820] = 688, - [821] = 689, - [822] = 689, - [823] = 684, - [824] = 684, - [825] = 687, - [826] = 688, - [827] = 689, - [828] = 684, - [829] = 687, - [830] = 688, - [831] = 689, - [832] = 684, - [833] = 687, - [834] = 688, - [835] = 689, - [836] = 684, - [837] = 687, + [813] = 685, + [814] = 686, + [815] = 688, + [816] = 684, + [817] = 685, + [818] = 686, + [819] = 688, + [820] = 684, + [821] = 821, + [822] = 685, + [823] = 686, + [824] = 688, + [825] = 684, + [826] = 685, + [827] = 686, + [828] = 688, + [829] = 684, + [830] = 685, + [831] = 686, + [832] = 688, + [833] = 686, + [834] = 684, + [835] = 685, + [836] = 688, + [837] = 686, [838] = 688, - [839] = 689, + [839] = 839, [840] = 684, - [841] = 687, - [842] = 688, - [843] = 689, + [841] = 685, + [842] = 686, + [843] = 688, [844] = 684, - [845] = 684, - [846] = 687, - [847] = 687, - [848] = 688, - [849] = 689, - [850] = 684, - [851] = 687, - [852] = 688, - [853] = 689, - [854] = 684, - [855] = 687, - [856] = 688, - [857] = 689, - [858] = 684, - [859] = 687, - [860] = 688, - [861] = 604, - [862] = 688, - [863] = 687, - [864] = 688, - [865] = 865, - [866] = 866, - [867] = 689, - [868] = 689, - [869] = 689, - [870] = 684, - [871] = 687, - [872] = 688, - [873] = 689, - [874] = 684, - [875] = 687, + [845] = 685, + [846] = 686, + [847] = 688, + [848] = 684, + [849] = 685, + [850] = 686, + [851] = 688, + [852] = 685, + [853] = 853, + [854] = 686, + [855] = 688, + [856] = 684, + [857] = 857, + [858] = 858, + [859] = 684, + [860] = 685, + [861] = 684, + [862] = 685, + [863] = 685, + [864] = 684, + [865] = 685, + [866] = 686, + [867] = 684, + [868] = 685, + [869] = 686, + [870] = 688, + [871] = 684, + [872] = 685, + [873] = 686, + [874] = 688, + [875] = 684, [876] = 688, - [877] = 689, + [877] = 688, [878] = 684, - [879] = 687, - [880] = 688, - [881] = 689, + [879] = 879, + [880] = 879, + [881] = 604, [882] = 882, [883] = 883, - [884] = 884, - [885] = 884, - [886] = 884, - [887] = 884, - [888] = 884, - [889] = 884, - [890] = 884, - [891] = 884, - [892] = 884, - [893] = 884, - [894] = 894, - [895] = 884, - [896] = 884, - [897] = 884, - [898] = 884, - [899] = 765, + [884] = 604, + [885] = 883, + [886] = 886, + [887] = 883, + [888] = 883, + [889] = 883, + [890] = 883, + [891] = 883, + [892] = 883, + [893] = 893, + [894] = 883, + [895] = 883, + [896] = 896, + [897] = 883, + [898] = 883, + [899] = 883, [900] = 900, - [901] = 806, - [902] = 902, - [903] = 903, - [904] = 884, - [905] = 900, - [906] = 894, - [907] = 883, - [908] = 900, - [909] = 894, - [910] = 883, - [911] = 900, - [912] = 894, - [913] = 883, - [914] = 900, - [915] = 894, - [916] = 883, - [917] = 900, - [918] = 884, - [919] = 883, - [920] = 900, - [921] = 894, - [922] = 883, - [923] = 900, - [924] = 883, - [925] = 900, - [926] = 883, - [927] = 900, - [928] = 883, - [929] = 900, - [930] = 883, - [931] = 900, - [932] = 883, - [933] = 900, - [934] = 883, - [935] = 900, + [901] = 886, + [902] = 896, + [903] = 879, + [904] = 886, + [905] = 896, + [906] = 879, + [907] = 886, + [908] = 896, + [909] = 879, + [910] = 886, + [911] = 896, + [912] = 879, + [913] = 886, + [914] = 896, + [915] = 879, + [916] = 886, + [917] = 896, + [918] = 879, + [919] = 886, + [920] = 879, + [921] = 886, + [922] = 879, + [923] = 886, + [924] = 879, + [925] = 886, + [926] = 886, + [927] = 879, + [928] = 886, + [929] = 879, + [930] = 886, + [931] = 879, + [932] = 886, + [933] = 883, + [934] = 604, + [935] = 886, [936] = 883, - [937] = 900, + [937] = 937, [938] = 883, - [939] = 884, - [940] = 884, - [941] = 941, - [942] = 884, - [943] = 884, - [944] = 884, - [945] = 884, - [946] = 884, - [947] = 884, - [948] = 884, - [949] = 884, + [939] = 896, + [940] = 879, + [941] = 883, + [942] = 883, + [943] = 883, + [944] = 777, + [945] = 883, + [946] = 883, + [947] = 883, + [948] = 883, + [949] = 883, [950] = 883, - [951] = 900, - [952] = 884, - [953] = 884, - [954] = 884, - [955] = 894, - [956] = 894, + [951] = 883, + [952] = 723, + [953] = 883, + [954] = 883, + [955] = 883, + [956] = 879, [957] = 957, [958] = 957, [959] = 957, @@ -4781,20 +4795,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [962] = 957, [963] = 957, [964] = 964, - [965] = 964, + [965] = 957, [966] = 957, [967] = 957, [968] = 957, [969] = 957, - [970] = 957, + [970] = 964, [971] = 957, - [972] = 957, + [972] = 964, [973] = 957, [974] = 957, [975] = 957, [976] = 957, [977] = 957, - [978] = 964, + [978] = 957, [979] = 957, [980] = 980, [981] = 980, @@ -4802,968 +4816,968 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [983] = 983, [984] = 984, [985] = 985, - [986] = 986, - [987] = 986, - [988] = 986, + [986] = 984, + [987] = 985, + [988] = 988, [989] = 984, - [990] = 990, - [991] = 984, - [992] = 986, - [993] = 990, - [994] = 984, - [995] = 986, - [996] = 990, - [997] = 990, - [998] = 986, - [999] = 990, - [1000] = 986, - [1001] = 984, - [1002] = 986, - [1003] = 984, - [1004] = 984, - [1005] = 990, - [1006] = 990, - [1007] = 984, - [1008] = 986, - [1009] = 986, - [1010] = 990, - [1011] = 984, - [1012] = 604, - [1013] = 984, - [1014] = 990, - [1015] = 986, - [1016] = 986, - [1017] = 986, - [1018] = 984, - [1019] = 984, - [1020] = 990, - [1021] = 990, - [1022] = 990, - [1023] = 990, - [1024] = 990, - [1025] = 990, - [1026] = 985, - [1027] = 990, - [1028] = 984, - [1029] = 990, - [1030] = 985, - [1031] = 990, - [1032] = 985, - [1033] = 985, - [1034] = 984, - [1035] = 990, - [1036] = 985, - [1037] = 985, - [1038] = 985, - [1039] = 985, - [1040] = 986, - [1041] = 990, - [1042] = 985, - [1043] = 985, - [1044] = 990, + [990] = 988, + [991] = 988, + [992] = 984, + [993] = 993, + [994] = 985, + [995] = 984, + [996] = 993, + [997] = 985, + [998] = 984, + [999] = 985, + [1000] = 985, + [1001] = 985, + [1002] = 985, + [1003] = 985, + [1004] = 985, + [1005] = 993, + [1006] = 993, + [1007] = 993, + [1008] = 984, + [1009] = 985, + [1010] = 985, + [1011] = 993, + [1012] = 988, + [1013] = 993, + [1014] = 993, + [1015] = 993, + [1016] = 993, + [1017] = 993, + [1018] = 993, + [1019] = 988, + [1020] = 993, + [1021] = 985, + [1022] = 988, + [1023] = 984, + [1024] = 984, + [1025] = 993, + [1026] = 993, + [1027] = 993, + [1028] = 988, + [1029] = 984, + [1030] = 988, + [1031] = 993, + [1032] = 993, + [1033] = 984, + [1034] = 993, + [1035] = 985, + [1036] = 988, + [1037] = 984, + [1038] = 988, + [1039] = 993, + [1040] = 988, + [1041] = 984, + [1042] = 993, + [1043] = 988, + [1044] = 988, [1045] = 985, - [1046] = 985, - [1047] = 990, - [1048] = 990, - [1049] = 984, - [1050] = 990, - [1051] = 990, - [1052] = 986, - [1053] = 984, - [1054] = 986, - [1055] = 984, - [1056] = 986, - [1057] = 984, - [1058] = 986, + [1046] = 988, + [1047] = 988, + [1048] = 988, + [1049] = 985, + [1050] = 984, + [1051] = 993, + [1052] = 988, + [1053] = 985, + [1054] = 988, + [1055] = 985, + [1056] = 988, + [1057] = 985, + [1058] = 993, [1059] = 984, - [1060] = 986, + [1060] = 984, [1061] = 984, - [1062] = 990, - [1063] = 985, - [1064] = 985, - [1065] = 985, - [1066] = 985, - [1067] = 985, + [1062] = 993, + [1063] = 984, + [1064] = 993, + [1065] = 984, + [1066] = 984, + [1067] = 988, [1068] = 985, - [1069] = 986, - [1070] = 985, + [1069] = 993, + [1070] = 1070, [1071] = 1071, [1072] = 1072, [1073] = 1073, - [1074] = 1072, + [1074] = 1074, [1075] = 1075, [1076] = 1076, - [1077] = 1077, + [1077] = 1072, [1078] = 1073, - [1079] = 1079, - [1080] = 1076, - [1081] = 1081, + [1079] = 1074, + [1080] = 1075, + [1081] = 1076, [1082] = 1082, [1083] = 1083, [1084] = 1082, - [1085] = 1079, + [1085] = 1083, [1086] = 1086, - [1087] = 1072, - [1088] = 1079, + [1087] = 1087, + [1088] = 1088, [1089] = 1089, - [1090] = 1079, - [1091] = 1089, - [1092] = 1083, - [1093] = 1079, + [1090] = 1090, + [1091] = 1091, + [1092] = 1092, + [1093] = 1093, [1094] = 1094, - [1095] = 1075, - [1096] = 1079, - [1097] = 1083, - [1098] = 1098, - [1099] = 1075, - [1100] = 1075, - [1101] = 1073, - [1102] = 1073, - [1103] = 1073, - [1104] = 1072, - [1105] = 1073, - [1106] = 1075, - [1107] = 1076, - [1108] = 1076, - [1109] = 1076, - [1110] = 1073, - [1111] = 1075, - [1112] = 1076, - [1113] = 1079, + [1095] = 604, + [1096] = 1096, + [1097] = 1097, + [1098] = 1087, + [1099] = 1088, + [1100] = 1089, + [1101] = 1090, + [1102] = 1091, + [1103] = 1092, + [1104] = 1104, + [1105] = 1105, + [1106] = 1086, + [1107] = 1093, + [1108] = 1096, + [1109] = 1109, + [1110] = 1071, + [1111] = 1072, + [1112] = 1073, + [1113] = 1074, [1114] = 1075, [1115] = 1076, - [1116] = 1116, - [1117] = 1075, - [1118] = 1076, - [1119] = 1076, - [1120] = 1075, - [1121] = 1076, - [1122] = 1076, - [1123] = 1083, - [1124] = 1116, - [1125] = 1083, - [1126] = 1083, - [1127] = 1083, - [1128] = 1072, - [1129] = 1081, - [1130] = 1116, - [1131] = 1072, - [1132] = 1076, - [1133] = 1075, - [1134] = 1075, - [1135] = 1116, - [1136] = 1076, - [1137] = 1072, - [1138] = 1072, - [1139] = 1139, - [1140] = 1116, - [1141] = 1083, - [1142] = 1142, - [1143] = 1073, - [1144] = 1072, - [1145] = 1116, - [1146] = 1083, - [1147] = 1072, - [1148] = 1083, - [1149] = 1149, - [1150] = 1116, - [1151] = 1151, - [1152] = 1076, - [1153] = 1094, - [1154] = 1086, - [1155] = 1116, - [1156] = 1079, - [1157] = 1083, - [1158] = 1158, - [1159] = 1116, - [1160] = 1079, - [1161] = 1098, - [1162] = 1073, - [1163] = 1116, - [1164] = 1083, - [1165] = 1072, - [1166] = 1142, - [1167] = 1083, - [1168] = 1116, - [1169] = 1169, - [1170] = 1073, - [1171] = 1116, - [1172] = 1075, - [1173] = 1083, - [1174] = 1079, - [1175] = 1116, - [1176] = 604, - [1177] = 1072, - [1178] = 1116, - [1179] = 1072, - [1180] = 1071, - [1181] = 1116, - [1182] = 1073, - [1183] = 1083, - [1184] = 1116, - [1185] = 1116, - [1186] = 1116, - [1187] = 1075, - [1188] = 604, - [1189] = 1116, - [1190] = 1072, - [1191] = 1076, - [1192] = 1083, - [1193] = 1075, - [1194] = 1076, - [1195] = 1083, - [1196] = 1072, - [1197] = 1083, - [1198] = 1072, - [1199] = 1199, - [1200] = 1139, - [1201] = 1072, - [1202] = 1083, - [1203] = 1077, - [1204] = 1199, - [1205] = 1158, - [1206] = 1151, - [1207] = 1081, - [1208] = 1082, - [1209] = 1089, - [1210] = 1094, - [1211] = 1098, - [1212] = 1071, - [1213] = 1139, - [1214] = 1149, - [1215] = 1077, - [1216] = 1086, - [1217] = 1142, - [1218] = 1072, - [1219] = 1072, - [1220] = 1072, - [1221] = 1083, - [1222] = 1149, - [1223] = 1072, - [1224] = 1199, - [1225] = 1225, - [1226] = 1083, - [1227] = 1075, - [1228] = 1072, - [1229] = 1073, - [1230] = 1075, - [1231] = 1072, - [1232] = 1079, - [1233] = 1076, - [1234] = 1076, - [1235] = 1083, - [1236] = 1079, - [1237] = 1076, - [1238] = 1075, - [1239] = 1083, - [1240] = 1075, - [1241] = 1158, - [1242] = 1073, - [1243] = 1072, - [1244] = 1079, - [1245] = 1073, - [1246] = 1076, - [1247] = 1075, - [1248] = 1083, - [1249] = 1072, - [1250] = 1083, - [1251] = 1151, - [1252] = 1075, - [1253] = 1079, - [1254] = 1116, + [1116] = 1082, + [1117] = 1083, + [1118] = 1087, + [1119] = 1088, + [1120] = 1089, + [1121] = 1090, + [1122] = 1091, + [1123] = 1092, + [1124] = 1104, + [1125] = 1105, + [1126] = 1086, + [1127] = 1093, + [1128] = 1096, + [1129] = 1109, + [1130] = 1104, + [1131] = 1105, + [1132] = 1086, + [1133] = 1093, + [1134] = 1096, + [1135] = 1109, + [1136] = 1104, + [1137] = 1105, + [1138] = 1086, + [1139] = 1093, + [1140] = 1096, + [1141] = 1109, + [1142] = 1104, + [1143] = 1105, + [1144] = 1086, + [1145] = 1093, + [1146] = 1096, + [1147] = 1109, + [1148] = 1104, + [1149] = 1105, + [1150] = 1086, + [1151] = 1093, + [1152] = 1096, + [1153] = 1109, + [1154] = 1104, + [1155] = 1105, + [1156] = 1086, + [1157] = 1093, + [1158] = 1096, + [1159] = 1109, + [1160] = 1104, + [1161] = 1105, + [1162] = 1086, + [1163] = 1093, + [1164] = 1096, + [1165] = 1109, + [1166] = 1093, + [1167] = 1105, + [1168] = 1086, + [1169] = 1093, + [1170] = 1096, + [1171] = 1109, + [1172] = 1104, + [1173] = 1105, + [1174] = 1086, + [1175] = 1093, + [1176] = 1096, + [1177] = 1109, + [1178] = 1104, + [1179] = 1105, + [1180] = 1086, + [1181] = 1093, + [1182] = 1096, + [1183] = 1109, + [1184] = 1104, + [1185] = 1105, + [1186] = 1086, + [1187] = 1093, + [1188] = 1096, + [1189] = 1109, + [1190] = 1109, + [1191] = 1071, + [1192] = 1104, + [1193] = 1105, + [1194] = 1086, + [1195] = 1093, + [1196] = 1096, + [1197] = 1109, + [1198] = 1096, + [1199] = 1109, + [1200] = 1096, + [1201] = 1109, + [1202] = 1096, + [1203] = 1109, + [1204] = 1096, + [1205] = 1109, + [1206] = 1096, + [1207] = 1109, + [1208] = 1096, + [1209] = 1109, + [1210] = 1096, + [1211] = 1109, + [1212] = 1096, + [1213] = 1109, + [1214] = 1096, + [1215] = 1109, + [1216] = 1096, + [1217] = 1109, + [1218] = 1096, + [1219] = 1109, + [1220] = 1094, + [1221] = 1104, + [1222] = 1105, + [1223] = 1105, + [1224] = 1093, + [1225] = 1105, + [1226] = 1093, + [1227] = 1105, + [1228] = 1093, + [1229] = 1105, + [1230] = 1093, + [1231] = 1105, + [1232] = 1093, + [1233] = 1094, + [1234] = 1094, + [1235] = 1094, + [1236] = 1094, + [1237] = 1094, + [1238] = 1094, + [1239] = 1094, + [1240] = 1094, + [1241] = 1094, + [1242] = 1094, + [1243] = 1094, + [1244] = 1094, + [1245] = 1094, + [1246] = 1094, + [1247] = 1094, + [1248] = 1094, + [1249] = 1094, + [1250] = 1094, + [1251] = 1105, + [1252] = 1104, + [1253] = 1253, + [1254] = 1254, [1255] = 1255, [1256] = 1256, [1257] = 1257, - [1258] = 1258, - [1259] = 1259, + [1258] = 1253, + [1259] = 1253, [1260] = 1260, [1261] = 1261, [1262] = 1262, - [1263] = 1260, - [1264] = 1264, + [1263] = 1263, + [1264] = 1260, [1265] = 1265, [1266] = 1266, - [1267] = 1255, + [1267] = 1267, [1268] = 1268, [1269] = 1269, [1270] = 1270, [1271] = 1271, [1272] = 1272, - [1273] = 1273, - [1274] = 1274, - [1275] = 1275, - [1276] = 1276, - [1277] = 1259, - [1278] = 1260, - [1279] = 1261, - [1280] = 1264, + [1273] = 1254, + [1274] = 1255, + [1275] = 1256, + [1276] = 1257, + [1277] = 1277, + [1278] = 1261, + [1279] = 1262, + [1280] = 1253, [1281] = 1265, [1282] = 1266, - [1283] = 1255, - [1284] = 1268, - [1285] = 1269, - [1286] = 1270, - [1287] = 1271, - [1288] = 1272, - [1289] = 1273, - [1290] = 1274, - [1291] = 1275, - [1292] = 1276, - [1293] = 1259, - [1294] = 1260, - [1295] = 1261, - [1296] = 1296, - [1297] = 1276, - [1298] = 1264, - [1299] = 1265, - [1300] = 1266, - [1301] = 1255, - [1302] = 1268, - [1303] = 1269, - [1304] = 1270, - [1305] = 1271, - [1306] = 1272, - [1307] = 1273, - [1308] = 1274, - [1309] = 1275, - [1310] = 1276, - [1311] = 1264, - [1312] = 1259, - [1313] = 1265, - [1314] = 1260, - [1315] = 1261, - [1316] = 1316, - [1317] = 1264, - [1318] = 1265, - [1319] = 1266, + [1283] = 1260, + [1284] = 1261, + [1285] = 1262, + [1286] = 1286, + [1287] = 1265, + [1288] = 1266, + [1289] = 1267, + [1290] = 1268, + [1291] = 1270, + [1292] = 1271, + [1293] = 1272, + [1294] = 1254, + [1295] = 1255, + [1296] = 1256, + [1297] = 1257, + [1298] = 1298, + [1299] = 1299, + [1300] = 1253, + [1301] = 1260, + [1302] = 1265, + [1303] = 1261, + [1304] = 1262, + [1305] = 1266, + [1306] = 1267, + [1307] = 1268, + [1308] = 1269, + [1309] = 1270, + [1310] = 1265, + [1311] = 1266, + [1312] = 1267, + [1313] = 1268, + [1314] = 1269, + [1315] = 1270, + [1316] = 1271, + [1317] = 1271, + [1318] = 1272, + [1319] = 1254, [1320] = 1255, - [1321] = 1268, - [1322] = 1269, - [1323] = 1270, - [1324] = 1271, - [1325] = 1272, - [1326] = 1273, - [1327] = 1274, - [1328] = 1275, - [1329] = 1276, - [1330] = 1259, + [1321] = 1256, + [1322] = 1257, + [1323] = 1272, + [1324] = 1254, + [1325] = 1255, + [1326] = 1256, + [1327] = 1257, + [1328] = 1253, + [1329] = 1329, + [1330] = 1260, [1331] = 1331, - [1332] = 1260, - [1333] = 1261, + [1332] = 1332, + [1333] = 1333, [1334] = 1334, - [1335] = 1261, - [1336] = 1264, - [1337] = 1265, - [1338] = 1266, - [1339] = 1255, - [1340] = 1268, - [1341] = 1269, - [1342] = 1270, - [1343] = 1271, - [1344] = 1272, - [1345] = 1273, - [1346] = 1274, - [1347] = 1275, - [1348] = 1348, - [1349] = 1349, + [1335] = 1265, + [1336] = 1266, + [1337] = 1267, + [1338] = 1268, + [1339] = 1269, + [1340] = 1270, + [1341] = 1265, + [1342] = 1271, + [1343] = 1272, + [1344] = 1254, + [1345] = 1255, + [1346] = 1256, + [1347] = 1257, + [1348] = 1266, + [1349] = 1253, [1350] = 1350, - [1351] = 1276, - [1352] = 1259, - [1353] = 1260, - [1354] = 1261, - [1355] = 1355, - [1356] = 1264, - [1357] = 1265, - [1358] = 1266, - [1359] = 1255, - [1360] = 1268, - [1361] = 1269, - [1362] = 1362, - [1363] = 1270, - [1364] = 1271, - [1365] = 1272, - [1366] = 1273, - [1367] = 1274, - [1368] = 1275, - [1369] = 1369, - [1370] = 1259, - [1371] = 1276, - [1372] = 1259, - [1373] = 1260, - [1374] = 1261, - [1375] = 1266, + [1351] = 1260, + [1352] = 1253, + [1353] = 1353, + [1354] = 1260, + [1355] = 1267, + [1356] = 1261, + [1357] = 1262, + [1358] = 1268, + [1359] = 1253, + [1360] = 1267, + [1361] = 1298, + [1362] = 1299, + [1363] = 1268, + [1364] = 1269, + [1365] = 1270, + [1366] = 1265, + [1367] = 1266, + [1368] = 1267, + [1369] = 1268, + [1370] = 1269, + [1371] = 1270, + [1372] = 1271, + [1373] = 1271, + [1374] = 1272, + [1375] = 1254, [1376] = 1255, - [1377] = 1268, - [1378] = 1264, - [1379] = 1265, - [1380] = 1266, - [1381] = 1255, - [1382] = 1268, - [1383] = 1269, - [1384] = 1270, - [1385] = 1271, - [1386] = 1272, - [1387] = 1273, - [1388] = 1274, - [1389] = 1275, - [1390] = 1276, - [1391] = 1259, - [1392] = 1260, - [1393] = 1261, - [1394] = 1269, - [1395] = 1395, - [1396] = 1396, - [1397] = 1264, - [1398] = 1265, - [1399] = 1266, - [1400] = 1268, - [1401] = 1269, - [1402] = 1270, - [1403] = 1271, - [1404] = 1272, - [1405] = 1273, - [1406] = 1274, - [1407] = 1275, - [1408] = 1270, - [1409] = 1271, - [1410] = 1276, - [1411] = 1272, - [1412] = 1273, - [1413] = 1259, + [1377] = 1256, + [1378] = 1257, + [1379] = 1272, + [1380] = 1380, + [1381] = 1269, + [1382] = 1270, + [1383] = 1286, + [1384] = 1353, + [1385] = 1385, + [1386] = 1386, + [1387] = 1253, + [1388] = 1254, + [1389] = 1331, + [1390] = 1332, + [1391] = 1255, + [1392] = 1271, + [1393] = 1260, + [1394] = 1256, + [1395] = 1257, + [1396] = 1272, + [1397] = 1261, + [1398] = 1262, + [1399] = 1254, + [1400] = 1255, + [1401] = 1401, + [1402] = 1256, + [1403] = 1298, + [1404] = 1299, + [1405] = 1329, + [1406] = 1333, + [1407] = 1334, + [1408] = 1350, + [1409] = 1265, + [1410] = 604, + [1411] = 1266, + [1412] = 1253, + [1413] = 1329, [1414] = 1260, [1415] = 1261, - [1416] = 1264, - [1417] = 1265, - [1418] = 1266, - [1419] = 1255, - [1420] = 1268, - [1421] = 1269, - [1422] = 1270, - [1423] = 1271, - [1424] = 1272, - [1425] = 1273, - [1426] = 1274, - [1427] = 1275, - [1428] = 1428, - [1429] = 1276, - [1430] = 1259, - [1431] = 1274, - [1432] = 1260, - [1433] = 1261, - [1434] = 1275, - [1435] = 1264, - [1436] = 1265, - [1437] = 1266, - [1438] = 1255, - [1439] = 1268, - [1440] = 1269, - [1441] = 1270, - [1442] = 1271, - [1443] = 1272, - [1444] = 1273, - [1445] = 1274, - [1446] = 1275, - [1447] = 1276, - [1448] = 1259, - [1449] = 1260, - [1450] = 1261, - [1451] = 1451, - [1452] = 1452, - [1453] = 1264, + [1416] = 1262, + [1417] = 1286, + [1418] = 1298, + [1419] = 1299, + [1420] = 1265, + [1421] = 1266, + [1422] = 1331, + [1423] = 1332, + [1424] = 1333, + [1425] = 1267, + [1426] = 1268, + [1427] = 1269, + [1428] = 1270, + [1429] = 1261, + [1430] = 1262, + [1431] = 1271, + [1432] = 1272, + [1433] = 1254, + [1434] = 1255, + [1435] = 1256, + [1436] = 1257, + [1437] = 1334, + [1438] = 1298, + [1439] = 1299, + [1440] = 1286, + [1441] = 1350, + [1442] = 1331, + [1443] = 1332, + [1444] = 1267, + [1445] = 1268, + [1446] = 1298, + [1447] = 1299, + [1448] = 1286, + [1449] = 1269, + [1450] = 1331, + [1451] = 1332, + [1452] = 1270, + [1453] = 1271, [1454] = 1265, [1455] = 1266, - [1456] = 1255, - [1457] = 1268, - [1458] = 1269, - [1459] = 1270, - [1460] = 1271, - [1461] = 1272, - [1462] = 1273, - [1463] = 1274, - [1464] = 1275, - [1465] = 1276, - [1466] = 1259, - [1467] = 1264, - [1468] = 1265, - [1469] = 1266, - [1470] = 1255, - [1471] = 1268, - [1472] = 1269, - [1473] = 1270, - [1474] = 1271, - [1475] = 1272, - [1476] = 1273, - [1477] = 1274, - [1478] = 1275, - [1479] = 1479, - [1480] = 1276, - [1481] = 1259, - [1482] = 1260, - [1483] = 1261, - [1484] = 1484, - [1485] = 1485, - [1486] = 1486, - [1487] = 1487, - [1488] = 1262, - [1489] = 1257, - [1490] = 1258, - [1491] = 1485, - [1492] = 1486, - [1493] = 1264, - [1494] = 1265, - [1495] = 1350, - [1496] = 1355, - [1497] = 1362, - [1498] = 1369, - [1499] = 1266, - [1500] = 1255, - [1501] = 1268, - [1502] = 1269, - [1503] = 1270, - [1504] = 1271, - [1505] = 1272, - [1506] = 1273, - [1507] = 1274, - [1508] = 1275, - [1509] = 1485, - [1510] = 1486, - [1511] = 1257, - [1512] = 1258, - [1513] = 1350, - [1514] = 1355, - [1515] = 1362, - [1516] = 1369, - [1517] = 1260, - [1518] = 1261, - [1519] = 1487, - [1520] = 1485, - [1521] = 1486, - [1522] = 1276, - [1523] = 1256, - [1524] = 1487, - [1525] = 1259, + [1456] = 1298, + [1457] = 1299, + [1458] = 1286, + [1459] = 1267, + [1460] = 1331, + [1461] = 1332, + [1462] = 1268, + [1463] = 1269, + [1464] = 1270, + [1465] = 1272, + [1466] = 1271, + [1467] = 1298, + [1468] = 1299, + [1469] = 1286, + [1470] = 1257, + [1471] = 1272, + [1472] = 1331, + [1473] = 1332, + [1474] = 1254, + [1475] = 1255, + [1476] = 1256, + [1477] = 1257, + [1478] = 1298, + [1479] = 1299, + [1480] = 1286, + [1481] = 1331, + [1482] = 1332, + [1483] = 1253, + [1484] = 1254, + [1485] = 1255, + [1486] = 1298, + [1487] = 1299, + [1488] = 1286, + [1489] = 1256, + [1490] = 1331, + [1491] = 1332, + [1492] = 1257, + [1493] = 1298, + [1494] = 1299, + [1495] = 1261, + [1496] = 1286, + [1497] = 1260, + [1498] = 1331, + [1499] = 1332, + [1500] = 1253, + [1501] = 1298, + [1502] = 1299, + [1503] = 1286, + [1504] = 1331, + [1505] = 1332, + [1506] = 1298, + [1507] = 1299, + [1508] = 1286, + [1509] = 1331, + [1510] = 1331, + [1511] = 1332, + [1512] = 1260, + [1513] = 1298, + [1514] = 1299, + [1515] = 1286, + [1516] = 1331, + [1517] = 1332, + [1518] = 1332, + [1519] = 1261, + [1520] = 1262, + [1521] = 1260, + [1522] = 1261, + [1523] = 1262, + [1524] = 1298, + [1525] = 1299, [1526] = 1260, - [1527] = 1261, - [1528] = 1258, - [1529] = 1487, - [1530] = 1485, - [1531] = 1486, - [1532] = 1257, - [1533] = 1258, - [1534] = 1264, - [1535] = 1257, - [1536] = 1258, - [1537] = 1265, - [1538] = 1487, - [1539] = 1266, - [1540] = 1255, - [1541] = 1268, - [1542] = 1269, - [1543] = 1270, + [1527] = 1286, + [1528] = 1331, + [1529] = 1332, + [1530] = 1530, + [1531] = 1531, + [1532] = 1298, + [1533] = 1299, + [1534] = 1286, + [1535] = 1265, + [1536] = 1266, + [1537] = 1267, + [1538] = 1331, + [1539] = 1332, + [1540] = 1268, + [1541] = 1269, + [1542] = 1270, + [1543] = 1265, [1544] = 1271, - [1545] = 1485, - [1546] = 1486, - [1547] = 1272, - [1548] = 1273, - [1549] = 1274, - [1550] = 1275, - [1551] = 1485, - [1552] = 1486, + [1545] = 1286, + [1546] = 1272, + [1547] = 1254, + [1548] = 1255, + [1549] = 1331, + [1550] = 1332, + [1551] = 1256, + [1552] = 1266, [1553] = 1257, - [1554] = 1258, - [1555] = 1487, - [1556] = 1276, - [1557] = 1485, - [1558] = 1486, - [1559] = 1259, - [1560] = 1260, - [1561] = 1261, - [1562] = 1257, - [1563] = 1258, - [1564] = 1487, - [1565] = 1257, - [1566] = 1258, - [1567] = 1485, - [1568] = 1486, - [1569] = 1569, - [1570] = 1264, - [1571] = 1265, - [1572] = 1266, - [1573] = 1255, - [1574] = 1268, - [1575] = 1269, - [1576] = 1576, - [1577] = 1270, - [1578] = 1271, - [1579] = 1272, - [1580] = 1273, - [1581] = 1274, - [1582] = 1257, - [1583] = 1258, - [1584] = 1275, - [1585] = 1487, - [1586] = 1485, - [1587] = 1486, - [1588] = 1257, - [1589] = 1258, - [1590] = 1487, - [1591] = 1276, - [1592] = 1485, - [1593] = 1486, - [1594] = 1259, - [1595] = 1257, - [1596] = 1258, - [1597] = 1487, - [1598] = 1485, - [1599] = 1486, - [1600] = 1260, - [1601] = 1261, - [1602] = 1602, - [1603] = 1603, - [1604] = 1257, - [1605] = 1258, - [1606] = 1487, - [1607] = 1485, - [1608] = 1486, - [1609] = 1257, - [1610] = 1258, - [1611] = 1264, - [1612] = 1257, - [1613] = 1258, - [1614] = 1265, - [1615] = 1487, - [1616] = 1266, + [1554] = 1267, + [1555] = 1286, + [1556] = 1268, + [1557] = 1269, + [1558] = 1286, + [1559] = 1270, + [1560] = 1560, + [1561] = 1271, + [1562] = 1272, + [1563] = 1563, + [1564] = 1254, + [1565] = 1255, + [1566] = 1256, + [1567] = 1257, + [1568] = 1568, + [1569] = 1298, + [1570] = 604, + [1571] = 1560, + [1572] = 1572, + [1573] = 1573, + [1574] = 1265, + [1575] = 1266, + [1576] = 1267, + [1577] = 1268, + [1578] = 1269, + [1579] = 1270, + [1580] = 1271, + [1581] = 1272, + [1582] = 1254, + [1583] = 1255, + [1584] = 1401, + [1585] = 1256, + [1586] = 1257, + [1587] = 1253, + [1588] = 1260, + [1589] = 1253, + [1590] = 1261, + [1591] = 1262, + [1592] = 1592, + [1593] = 1265, + [1594] = 1266, + [1595] = 1267, + [1596] = 1268, + [1597] = 1269, + [1598] = 1270, + [1599] = 1253, + [1600] = 1271, + [1601] = 1272, + [1602] = 1254, + [1603] = 1255, + [1604] = 1256, + [1605] = 1257, + [1606] = 1253, + [1607] = 1260, + [1608] = 1265, + [1609] = 1266, + [1610] = 1267, + [1611] = 1268, + [1612] = 1269, + [1613] = 1270, + [1614] = 1271, + [1615] = 1272, + [1616] = 1254, [1617] = 1255, - [1618] = 1485, - [1619] = 1486, - [1620] = 1268, - [1621] = 1269, - [1622] = 1270, - [1623] = 1271, - [1624] = 1272, - [1625] = 1273, - [1626] = 1274, - [1627] = 1275, - [1628] = 1257, - [1629] = 1258, - [1630] = 1487, - [1631] = 1485, - [1632] = 1486, - [1633] = 1257, - [1634] = 1258, - [1635] = 1487, - [1636] = 1485, - [1637] = 1486, - [1638] = 1257, - [1639] = 1258, - [1640] = 1487, - [1641] = 1485, - [1642] = 1486, - [1643] = 1487, - [1644] = 1485, - [1645] = 1486, - [1646] = 1487, - [1647] = 1487, - [1648] = 1276, - [1649] = 1603, - [1650] = 1349, - [1651] = 1296, - [1652] = 1264, - [1653] = 1265, - [1654] = 1654, - [1655] = 1266, - [1656] = 1255, - [1657] = 1268, - [1658] = 1269, - [1659] = 1270, - [1660] = 1271, - [1661] = 1272, - [1662] = 1273, - [1663] = 1428, - [1664] = 1274, - [1665] = 1275, - [1666] = 1259, - [1667] = 1276, - [1668] = 1259, - [1669] = 1260, - [1670] = 1261, - [1671] = 1264, - [1672] = 1265, - [1673] = 1266, + [1618] = 1256, + [1619] = 1257, + [1620] = 1331, + [1621] = 1260, + [1622] = 1253, + [1623] = 1260, + [1624] = 1265, + [1625] = 1266, + [1626] = 1267, + [1627] = 1268, + [1628] = 1269, + [1629] = 1270, + [1630] = 1271, + [1631] = 1272, + [1632] = 1254, + [1633] = 1255, + [1634] = 1256, + [1635] = 1257, + [1636] = 1253, + [1637] = 1332, + [1638] = 1260, + [1639] = 1261, + [1640] = 1262, + [1641] = 1265, + [1642] = 1266, + [1643] = 1267, + [1644] = 1268, + [1645] = 1269, + [1646] = 1270, + [1647] = 1271, + [1648] = 1272, + [1649] = 1254, + [1650] = 1255, + [1651] = 1256, + [1652] = 1257, + [1653] = 1253, + [1654] = 1260, + [1655] = 1265, + [1656] = 1266, + [1657] = 1267, + [1658] = 1268, + [1659] = 1269, + [1660] = 1261, + [1661] = 1262, + [1662] = 1270, + [1663] = 1271, + [1664] = 1265, + [1665] = 1266, + [1666] = 1267, + [1667] = 1268, + [1668] = 1269, + [1669] = 1270, + [1670] = 1272, + [1671] = 1271, + [1672] = 1272, + [1673] = 1254, [1674] = 1255, - [1675] = 1268, - [1676] = 1269, - [1677] = 1270, - [1678] = 1271, - [1679] = 1272, - [1680] = 1273, - [1681] = 1274, - [1682] = 1275, - [1683] = 1276, - [1684] = 1259, - [1685] = 1264, - [1686] = 1265, - [1687] = 1266, - [1688] = 1255, - [1689] = 1268, - [1690] = 1269, - [1691] = 1270, - [1692] = 1271, - [1693] = 1272, - [1694] = 1273, - [1695] = 1274, - [1696] = 1275, - [1697] = 1276, - [1698] = 1259, - [1699] = 1264, - [1700] = 1265, - [1701] = 1266, - [1702] = 1255, - [1703] = 1268, - [1704] = 1269, - [1705] = 1270, - [1706] = 1271, - [1707] = 1272, - [1708] = 1273, - [1709] = 1274, - [1710] = 1275, - [1711] = 1276, - [1712] = 1259, - [1713] = 1264, - [1714] = 1265, - [1715] = 1266, - [1716] = 1255, - [1717] = 1268, - [1718] = 1269, - [1719] = 1270, - [1720] = 1271, - [1721] = 1272, - [1722] = 1273, - [1723] = 1274, - [1724] = 1275, - [1725] = 1276, - [1726] = 1259, - [1727] = 1260, - [1728] = 1261, - [1729] = 1264, - [1730] = 1265, - [1731] = 1266, + [1675] = 1256, + [1676] = 1257, + [1677] = 1254, + [1678] = 1255, + [1679] = 1256, + [1680] = 1257, + [1681] = 1253, + [1682] = 1260, + [1683] = 1262, + [1684] = 1684, + [1685] = 1253, + [1686] = 1261, + [1687] = 1262, + [1688] = 1260, + [1689] = 1265, + [1690] = 1266, + [1691] = 1267, + [1692] = 1268, + [1693] = 1269, + [1694] = 1270, + [1695] = 1271, + [1696] = 1272, + [1697] = 1254, + [1698] = 1255, + [1699] = 1256, + [1700] = 1257, + [1701] = 1253, + [1702] = 1260, + [1703] = 1261, + [1704] = 1262, + [1705] = 1705, + [1706] = 1706, + [1707] = 1286, + [1708] = 1261, + [1709] = 1265, + [1710] = 1266, + [1711] = 1267, + [1712] = 1286, + [1713] = 1262, + [1714] = 1268, + [1715] = 1286, + [1716] = 1260, + [1717] = 1269, + [1718] = 1286, + [1719] = 1299, + [1720] = 1270, + [1721] = 1286, + [1722] = 1261, + [1723] = 1262, + [1724] = 1286, + [1725] = 1271, + [1726] = 1560, + [1727] = 1272, + [1728] = 1572, + [1729] = 1573, + [1730] = 1254, + [1731] = 1401, [1732] = 1255, - [1733] = 1268, - [1734] = 1269, - [1735] = 1270, - [1736] = 1271, - [1737] = 1272, - [1738] = 1273, - [1739] = 1274, - [1740] = 1275, - [1741] = 1260, - [1742] = 1276, - [1743] = 1261, - [1744] = 1259, - [1745] = 1260, - [1746] = 1261, - [1747] = 1264, - [1748] = 1265, - [1749] = 1266, - [1750] = 1255, - [1751] = 1268, - [1752] = 1269, - [1753] = 1270, - [1754] = 1271, - [1755] = 1272, - [1756] = 1273, - [1757] = 1274, - [1758] = 1275, - [1759] = 1276, - [1760] = 1259, - [1761] = 1761, - [1762] = 1264, - [1763] = 1265, - [1764] = 1266, - [1765] = 1255, - [1766] = 1487, - [1767] = 1268, - [1768] = 1269, - [1769] = 1270, - [1770] = 1271, - [1771] = 1487, - [1772] = 1272, - [1773] = 1273, - [1774] = 1274, - [1775] = 1487, - [1776] = 1275, - [1777] = 1487, - [1778] = 1487, - [1779] = 1487, - [1780] = 1603, - [1781] = 1349, - [1782] = 1296, - [1783] = 1428, - [1784] = 1603, - [1785] = 1349, - [1786] = 1296, - [1787] = 1428, - [1788] = 1603, - [1789] = 1349, - [1790] = 1296, - [1791] = 1428, - [1792] = 1603, - [1793] = 1349, - [1794] = 1296, - [1795] = 1428, - [1796] = 1603, - [1797] = 1296, - [1798] = 1428, - [1799] = 1603, - [1800] = 1296, - [1801] = 1428, - [1802] = 1603, - [1803] = 1296, - [1804] = 1428, - [1805] = 1603, - [1806] = 1296, - [1807] = 1428, - [1808] = 1603, - [1809] = 1296, - [1810] = 1428, - [1811] = 1603, - [1812] = 1296, - [1813] = 1428, - [1814] = 1603, - [1815] = 1296, - [1816] = 1428, - [1817] = 1603, - [1818] = 1296, - [1819] = 1428, - [1820] = 1296, - [1821] = 604, - [1822] = 1428, - [1823] = 1296, - [1824] = 1428, - [1825] = 1296, - [1826] = 1428, - [1827] = 1296, - [1828] = 1428, - [1829] = 1296, - [1830] = 1428, - [1831] = 1296, - [1832] = 1428, - [1833] = 1296, - [1834] = 1428, - [1835] = 1296, - [1836] = 1428, - [1837] = 1296, - [1838] = 1428, - [1839] = 1296, - [1840] = 1428, - [1841] = 1296, - [1842] = 1487, - [1843] = 1569, - [1844] = 1348, - [1845] = 1260, - [1846] = 1261, - [1847] = 1256, - [1848] = 1576, - [1849] = 1602, - [1850] = 1260, - [1851] = 1261, - [1852] = 1260, - [1853] = 1261, - [1854] = 1260, - [1855] = 1261, - [1856] = 1264, - [1857] = 1265, - [1858] = 1266, - [1859] = 1255, - [1860] = 1268, - [1861] = 1269, - [1862] = 1270, - [1863] = 1271, - [1864] = 1272, - [1865] = 1273, - [1866] = 1274, - [1867] = 1275, - [1868] = 1276, - [1869] = 1259, - [1870] = 1260, - [1871] = 1261, - [1872] = 1276, - [1873] = 1487, - [1874] = 1428, - [1875] = 1569, - [1876] = 1348, - [1877] = 1256, - [1878] = 1576, - [1879] = 1602, - [1880] = 1569, - [1881] = 1348, - [1882] = 1256, - [1883] = 1576, - [1884] = 1602, - [1885] = 1569, - [1886] = 1348, - [1887] = 1256, - [1888] = 1576, - [1889] = 1602, - [1890] = 1569, - [1891] = 1348, - [1892] = 1256, - [1893] = 1576, - [1894] = 1602, - [1895] = 1569, - [1896] = 1348, - [1897] = 1256, - [1898] = 1576, - [1899] = 1602, - [1900] = 1569, - [1901] = 1348, - [1902] = 1256, - [1903] = 1576, - [1904] = 1602, - [1905] = 1569, - [1906] = 1348, - [1907] = 1256, - [1908] = 1576, - [1909] = 1602, - [1910] = 1569, - [1911] = 1348, - [1912] = 1256, - [1913] = 1576, - [1914] = 1602, - [1915] = 1569, - [1916] = 1348, - [1917] = 1256, - [1918] = 1576, - [1919] = 1602, - [1920] = 1569, - [1921] = 1348, - [1922] = 1256, - [1923] = 1576, - [1924] = 1602, - [1925] = 1569, - [1926] = 1348, - [1927] = 1256, - [1928] = 1576, - [1929] = 1602, - [1930] = 1569, - [1931] = 1348, - [1932] = 1256, - [1933] = 1576, - [1934] = 1602, - [1935] = 1256, - [1936] = 1256, - [1937] = 1256, - [1938] = 1256, - [1939] = 1256, - [1940] = 1256, - [1941] = 1256, - [1942] = 1256, - [1943] = 1256, - [1944] = 1256, - [1945] = 1428, - [1946] = 1256, - [1947] = 1257, + [1733] = 1256, + [1734] = 1257, + [1735] = 1573, + [1736] = 1560, + [1737] = 1572, + [1738] = 1573, + [1739] = 1401, + [1740] = 1560, + [1741] = 1572, + [1742] = 1573, + [1743] = 1401, + [1744] = 1744, + [1745] = 1560, + [1746] = 1572, + [1747] = 1573, + [1748] = 1253, + [1749] = 1401, + [1750] = 1560, + [1751] = 1573, + [1752] = 1260, + [1753] = 1401, + [1754] = 1261, + [1755] = 1560, + [1756] = 1573, + [1757] = 1262, + [1758] = 1401, + [1759] = 1560, + [1760] = 1573, + [1761] = 1401, + [1762] = 1560, + [1763] = 1573, + [1764] = 1401, + [1765] = 1765, + [1766] = 1560, + [1767] = 1573, + [1768] = 1401, + [1769] = 1560, + [1770] = 1573, + [1771] = 1401, + [1772] = 1265, + [1773] = 1560, + [1774] = 1573, + [1775] = 1266, + [1776] = 1401, + [1777] = 1267, + [1778] = 1268, + [1779] = 1265, + [1780] = 1560, + [1781] = 1573, + [1782] = 1269, + [1783] = 1401, + [1784] = 1270, + [1785] = 1266, + [1786] = 1573, + [1787] = 1401, + [1788] = 1271, + [1789] = 1267, + [1790] = 1573, + [1791] = 1272, + [1792] = 1401, + [1793] = 1254, + [1794] = 1268, + [1795] = 1573, + [1796] = 1401, + [1797] = 1269, + [1798] = 1573, + [1799] = 1401, + [1800] = 1270, + [1801] = 1573, + [1802] = 1401, + [1803] = 1573, + [1804] = 1401, + [1805] = 1573, + [1806] = 1401, + [1807] = 1573, + [1808] = 1401, + [1809] = 1573, + [1810] = 1401, + [1811] = 1573, + [1812] = 1401, + [1813] = 1573, + [1814] = 1255, + [1815] = 1286, + [1816] = 1256, + [1817] = 1684, + [1818] = 1765, + [1819] = 1261, + [1820] = 1262, + [1821] = 1821, + [1822] = 1257, + [1823] = 1530, + [1824] = 1531, + [1825] = 1298, + [1826] = 1271, + [1827] = 1272, + [1828] = 1261, + [1829] = 1262, + [1830] = 1261, + [1831] = 1262, + [1832] = 1299, + [1833] = 1253, + [1834] = 1261, + [1835] = 1262, + [1836] = 1261, + [1837] = 1260, + [1838] = 1262, + [1839] = 1261, + [1840] = 1262, + [1841] = 1265, + [1842] = 1266, + [1843] = 1267, + [1844] = 1268, + [1845] = 1269, + [1846] = 1270, + [1847] = 1271, + [1848] = 1272, + [1849] = 1254, + [1850] = 1255, + [1851] = 1256, + [1852] = 1257, + [1853] = 1572, + [1854] = 1253, + [1855] = 1260, + [1856] = 1265, + [1857] = 1266, + [1858] = 1267, + [1859] = 1261, + [1860] = 1262, + [1861] = 1268, + [1862] = 1269, + [1863] = 1270, + [1864] = 1271, + [1865] = 1272, + [1866] = 1254, + [1867] = 1255, + [1868] = 1256, + [1869] = 1257, + [1870] = 1286, + [1871] = 1821, + [1872] = 1401, + [1873] = 1684, + [1874] = 1765, + [1875] = 1821, + [1876] = 1530, + [1877] = 1531, + [1878] = 1684, + [1879] = 1765, + [1880] = 1821, + [1881] = 1530, + [1882] = 1531, + [1883] = 1684, + [1884] = 1765, + [1885] = 1821, + [1886] = 1530, + [1887] = 1531, + [1888] = 1684, + [1889] = 1765, + [1890] = 1821, + [1891] = 1530, + [1892] = 1531, + [1893] = 1684, + [1894] = 1765, + [1895] = 1821, + [1896] = 1530, + [1897] = 1531, + [1898] = 1684, + [1899] = 1765, + [1900] = 1821, + [1901] = 1530, + [1902] = 1531, + [1903] = 1684, + [1904] = 1765, + [1905] = 1821, + [1906] = 1530, + [1907] = 1531, + [1908] = 1684, + [1909] = 1765, + [1910] = 1821, + [1911] = 1530, + [1912] = 1531, + [1913] = 1684, + [1914] = 1765, + [1915] = 1821, + [1916] = 1530, + [1917] = 1531, + [1918] = 1684, + [1919] = 1765, + [1920] = 1821, + [1921] = 1530, + [1922] = 1531, + [1923] = 1684, + [1924] = 1765, + [1925] = 1821, + [1926] = 1530, + [1927] = 1531, + [1928] = 1684, + [1929] = 1765, + [1930] = 1821, + [1931] = 1530, + [1932] = 1531, + [1933] = 1821, + [1934] = 1821, + [1935] = 1821, + [1936] = 1821, + [1937] = 1821, + [1938] = 1821, + [1939] = 1821, + [1940] = 1821, + [1941] = 1821, + [1942] = 1821, + [1943] = 1401, + [1944] = 1821, + [1945] = 1821, + [1946] = 1269, + [1947] = 604, [1948] = 604, [1949] = 1949, [1950] = 1950, @@ -5771,46 +5785,46 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1952] = 1952, [1953] = 1953, [1954] = 1949, - [1955] = 1949, - [1956] = 1952, - [1957] = 1949, - [1958] = 1953, - [1959] = 1951, + [1955] = 1952, + [1956] = 1949, + [1957] = 1951, + [1958] = 1949, + [1959] = 1953, [1960] = 1950, - [1961] = 1953, - [1962] = 1951, + [1961] = 1951, + [1962] = 1952, [1963] = 1950, - [1964] = 1952, - [1965] = 1951, + [1964] = 1953, + [1965] = 1953, [1966] = 1950, [1967] = 1952, - [1968] = 1953, + [1968] = 1951, [1969] = 1969, [1970] = 1970, [1971] = 1971, [1972] = 1949, [1973] = 1949, [1974] = 1949, - [1975] = 1952, - [1976] = 1950, - [1977] = 1953, - [1978] = 1951, - [1979] = 1949, + [1975] = 1951, + [1976] = 1949, + [1977] = 1952, + [1978] = 1953, + [1979] = 1950, [1980] = 1950, - [1981] = 1951, - [1982] = 1953, + [1981] = 1953, + [1982] = 1951, [1983] = 1952, [1984] = 1984, - [1985] = 1953, - [1986] = 1952, - [1987] = 1950, - [1988] = 1951, - [1989] = 1989, - [1990] = 1971, - [1991] = 1969, - [1992] = 1970, + [1985] = 1951, + [1986] = 1950, + [1987] = 1987, + [1988] = 1953, + [1989] = 1952, + [1990] = 1970, + [1991] = 1971, + [1992] = 1969, [1993] = 1984, - [1994] = 1989, + [1994] = 1987, [1995] = 1995, [1996] = 1996, [1997] = 1997, @@ -5851,78 +5865,78 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2032] = 2032, [2033] = 2033, [2034] = 2034, - [2035] = 2035, + [2035] = 1999, [2036] = 2036, [2037] = 2037, - [2038] = 2038, - [2039] = 1995, - [2040] = 2040, - [2041] = 1999, - [2042] = 1996, + [2038] = 1998, + [2039] = 2039, + [2040] = 1996, + [2041] = 1995, + [2042] = 2042, [2043] = 2043, - [2044] = 1997, - [2045] = 1998, + [2044] = 2044, + [2045] = 2045, [2046] = 2046, - [2047] = 2047, + [2047] = 1997, [2048] = 2048, [2049] = 2049, [2050] = 2050, [2051] = 2051, - [2052] = 2005, - [2053] = 1951, - [2054] = 2054, + [2052] = 2052, + [2053] = 2005, + [2054] = 1952, [2055] = 2055, [2056] = 2056, - [2057] = 2057, - [2058] = 2058, - [2059] = 2004, + [2057] = 2002, + [2058] = 2007, + [2059] = 2059, [2060] = 2000, - [2061] = 2003, + [2061] = 2061, [2062] = 2062, [2063] = 2063, - [2064] = 2064, + [2064] = 2008, [2065] = 2065, - [2066] = 2066, + [2066] = 2006, [2067] = 2067, [2068] = 2068, [2069] = 2069, - [2070] = 2007, - [2071] = 2008, - [2072] = 2002, - [2073] = 2009, - [2074] = 2074, - [2075] = 2001, - [2076] = 2076, - [2077] = 2006, + [2070] = 2070, + [2071] = 2004, + [2072] = 2072, + [2073] = 2073, + [2074] = 2009, + [2075] = 2075, + [2076] = 2001, + [2077] = 2003, [2078] = 2078, - [2079] = 2025, - [2080] = 2024, - [2081] = 2010, - [2082] = 2015, - [2083] = 2023, + [2079] = 2028, + [2080] = 2025, + [2081] = 2024, + [2082] = 2018, + [2083] = 2022, [2084] = 2020, [2085] = 2011, - [2086] = 2021, - [2087] = 2022, - [2088] = 2026, - [2089] = 2013, - [2090] = 2016, - [2091] = 2019, - [2092] = 2014, - [2093] = 2017, - [2094] = 2018, - [2095] = 2012, - [2096] = 2027, - [2097] = 2028, - [2098] = 2098, + [2086] = 2014, + [2087] = 2023, + [2088] = 2027, + [2089] = 2021, + [2090] = 2026, + [2091] = 2017, + [2092] = 2015, + [2093] = 2019, + [2094] = 2010, + [2095] = 2016, + [2096] = 2012, + [2097] = 2013, + [2098] = 2044, [2099] = 2099, [2100] = 2100, [2101] = 2101, [2102] = 2102, [2103] = 2103, [2104] = 2104, - [2105] = 2049, - [2106] = 2036, + [2105] = 2046, + [2106] = 2106, [2107] = 2107, [2108] = 2108, [2109] = 2109, @@ -5935,30 +5949,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2116] = 2116, [2117] = 2117, [2118] = 2118, - [2119] = 2119, + [2119] = 2045, [2120] = 2120, [2121] = 2121, - [2122] = 2047, + [2122] = 2122, [2123] = 2123, [2124] = 2124, [2125] = 2125, - [2126] = 1969, - [2127] = 1971, - [2128] = 2040, - [2129] = 1969, - [2130] = 1970, - [2131] = 1971, - [2132] = 1970, + [2126] = 2042, + [2127] = 1969, + [2128] = 2128, + [2129] = 2046, + [2130] = 2045, + [2131] = 1970, + [2132] = 2055, [2133] = 2133, - [2134] = 2134, - [2135] = 2049, - [2136] = 2051, - [2137] = 2036, - [2138] = 2047, + [2134] = 1971, + [2135] = 1969, + [2136] = 2044, + [2137] = 1971, + [2138] = 1970, [2139] = 2139, - [2140] = 1970, - [2141] = 1989, - [2142] = 1971, + [2140] = 2139, + [2141] = 2139, + [2142] = 2073, [2143] = 2139, [2144] = 2139, [2145] = 2139, @@ -5970,413 +5984,413 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2151] = 2139, [2152] = 2139, [2153] = 2139, - [2154] = 2063, - [2155] = 1969, - [2156] = 1984, - [2157] = 1969, - [2158] = 2139, - [2159] = 2139, - [2160] = 1970, + [2154] = 1970, + [2155] = 1984, + [2156] = 1969, + [2157] = 1987, + [2158] = 1970, + [2159] = 1969, + [2160] = 1971, [2161] = 1971, - [2162] = 1969, - [2163] = 1969, - [2164] = 1984, - [2165] = 1989, - [2166] = 1970, - [2167] = 1971, + [2162] = 1971, + [2163] = 1984, + [2164] = 1987, + [2165] = 1970, + [2166] = 1969, + [2167] = 1969, [2168] = 1970, [2169] = 1971, - [2170] = 1971, + [2170] = 1969, [2171] = 1970, - [2172] = 1969, - [2173] = 1969, - [2174] = 1971, - [2175] = 1970, - [2176] = 1971, + [2172] = 1971, + [2173] = 1971, + [2174] = 1970, + [2175] = 1969, + [2176] = 1970, [2177] = 1971, - [2178] = 1984, + [2178] = 1970, [2179] = 1969, - [2180] = 1989, - [2181] = 1969, + [2180] = 1969, + [2181] = 1971, [2182] = 1970, - [2183] = 1971, - [2184] = 1970, - [2185] = 1969, - [2186] = 1970, - [2187] = 1971, + [2183] = 1969, + [2184] = 1971, + [2185] = 1971, + [2186] = 1971, + [2187] = 1970, [2188] = 1969, - [2189] = 1970, - [2190] = 1971, - [2191] = 1969, - [2192] = 1970, - [2193] = 1971, - [2194] = 1969, - [2195] = 1970, - [2196] = 1971, - [2197] = 1970, - [2198] = 1969, - [2199] = 1970, - [2200] = 2200, - [2201] = 1971, - [2202] = 1989, - [2203] = 1969, - [2204] = 1984, - [2205] = 2205, - [2206] = 1984, - [2207] = 1989, - [2208] = 1970, - [2209] = 1971, - [2210] = 1969, - [2211] = 1989, - [2212] = 1969, + [2189] = 1987, + [2190] = 1969, + [2191] = 1984, + [2192] = 1971, + [2193] = 1970, + [2194] = 1970, + [2195] = 1969, + [2196] = 1970, + [2197] = 1987, + [2198] = 1984, + [2199] = 1971, + [2200] = 1971, + [2201] = 2201, + [2202] = 1969, + [2203] = 1970, + [2204] = 1969, + [2205] = 1969, + [2206] = 2206, + [2207] = 1971, + [2208] = 1971, + [2209] = 1970, + [2210] = 1987, + [2211] = 1984, + [2212] = 1971, [2213] = 1969, - [2214] = 1970, - [2215] = 1971, - [2216] = 1970, - [2217] = 1971, - [2218] = 2218, - [2219] = 1989, + [2214] = 1971, + [2215] = 1970, + [2216] = 1969, + [2217] = 1969, + [2218] = 1987, + [2219] = 1984, [2220] = 1984, - [2221] = 1969, + [2221] = 1970, [2222] = 1970, - [2223] = 1971, - [2224] = 1984, - [2225] = 1984, - [2226] = 2226, - [2227] = 2200, - [2228] = 1989, - [2229] = 1984, - [2230] = 1989, - [2231] = 1984, - [2232] = 2200, - [2233] = 2233, - [2234] = 2205, - [2235] = 2218, - [2236] = 1989, - [2237] = 1969, - [2238] = 1971, - [2239] = 2218, - [2240] = 1970, - [2241] = 1969, + [2223] = 1987, + [2224] = 2224, + [2225] = 2201, + [2226] = 1984, + [2227] = 1987, + [2228] = 2228, + [2229] = 2229, + [2230] = 1984, + [2231] = 1987, + [2232] = 2224, + [2233] = 1987, + [2234] = 1984, + [2235] = 2201, + [2236] = 2206, + [2237] = 1970, + [2238] = 2224, + [2239] = 1971, + [2240] = 1969, + [2241] = 2201, [2242] = 1971, [2243] = 1970, - [2244] = 2200, + [2244] = 1969, [2245] = 1970, [2246] = 1971, - [2247] = 1971, - [2248] = 2218, - [2249] = 2205, - [2250] = 1969, - [2251] = 1969, - [2252] = 1970, - [2253] = 1969, - [2254] = 1969, - [2255] = 1989, - [2256] = 1969, - [2257] = 1971, - [2258] = 2226, - [2259] = 2200, - [2260] = 1970, + [2247] = 1969, + [2248] = 2224, + [2249] = 1969, + [2250] = 1971, + [2251] = 1970, + [2252] = 2206, + [2253] = 1970, + [2254] = 1971, + [2255] = 1970, + [2256] = 2201, + [2257] = 1984, + [2258] = 1970, + [2259] = 1987, + [2260] = 2228, [2261] = 1971, - [2262] = 1971, - [2263] = 1970, - [2264] = 1970, - [2265] = 2200, + [2262] = 1970, + [2263] = 1969, + [2264] = 2201, + [2265] = 1969, [2266] = 1971, - [2267] = 1969, - [2268] = 1970, - [2269] = 1984, - [2270] = 2205, - [2271] = 1984, - [2272] = 1989, - [2273] = 1969, - [2274] = 2200, - [2275] = 2233, + [2267] = 1971, + [2268] = 1969, + [2269] = 1969, + [2270] = 1971, + [2271] = 2224, + [2272] = 1984, + [2273] = 2206, + [2274] = 1971, + [2275] = 1970, [2276] = 1970, - [2277] = 1971, - [2278] = 2218, - [2279] = 2200, - [2280] = 2218, - [2281] = 2205, - [2282] = 2205, - [2283] = 1969, - [2284] = 1970, - [2285] = 1971, - [2286] = 1970, - [2287] = 2218, - [2288] = 1970, - [2289] = 1971, - [2290] = 2218, - [2291] = 1989, - [2292] = 1969, - [2293] = 1971, - [2294] = 2226, - [2295] = 2200, - [2296] = 1989, - [2297] = 1984, - [2298] = 1969, - [2299] = 1984, - [2300] = 2233, - [2301] = 1989, - [2302] = 2205, - [2303] = 2218, - [2304] = 2205, - [2305] = 2200, - [2306] = 2200, - [2307] = 1984, - [2308] = 1984, - [2309] = 1989, - [2310] = 2218, - [2311] = 2218, - [2312] = 2200, - [2313] = 2200, - [2314] = 1998, - [2315] = 2200, - [2316] = 1996, - [2317] = 1997, - [2318] = 2218, - [2319] = 2205, - [2320] = 2218, - [2321] = 1999, - [2322] = 2200, - [2323] = 1995, - [2324] = 2200, - [2325] = 2205, - [2326] = 2218, - [2327] = 2005, - [2328] = 2200, - [2329] = 2218, - [2330] = 2205, - [2331] = 1997, - [2332] = 1995, - [2333] = 2200, - [2334] = 2218, - [2335] = 2008, - [2336] = 2003, - [2337] = 2218, - [2338] = 2200, - [2339] = 2000, - [2340] = 2218, - [2341] = 2004, - [2342] = 2205, - [2343] = 2002, - [2344] = 1998, - [2345] = 1996, - [2346] = 2006, - [2347] = 2200, - [2348] = 1999, - [2349] = 2007, - [2350] = 2009, - [2351] = 2351, - [2352] = 2001, - [2353] = 2205, - [2354] = 2022, - [2355] = 2000, - [2356] = 2015, - [2357] = 2357, - [2358] = 2007, - [2359] = 2025, - [2360] = 2003, - [2361] = 2021, - [2362] = 2016, - [2363] = 2205, - [2364] = 2018, - [2365] = 2205, - [2366] = 2014, - [2367] = 2012, - [2368] = 2013, - [2369] = 2200, - [2370] = 2218, - [2371] = 2218, - [2372] = 2005, - [2373] = 2373, - [2374] = 2020, - [2375] = 2010, - [2376] = 2200, - [2377] = 2023, - [2378] = 2017, - [2379] = 2379, - [2380] = 2026, - [2381] = 2027, - [2382] = 2024, - [2383] = 2011, - [2384] = 2028, - [2385] = 2001, - [2386] = 2002, - [2387] = 2008, - [2388] = 2019, - [2389] = 2389, - [2390] = 2002, - [2391] = 2006, - [2392] = 2392, - [2393] = 2008, - [2394] = 2004, - [2395] = 2000, - [2396] = 2396, - [2397] = 2200, - [2398] = 1999, - [2399] = 1996, - [2400] = 2200, - [2401] = 1995, - [2402] = 2218, - [2403] = 2403, - [2404] = 2205, - [2405] = 2389, - [2406] = 2226, - [2407] = 2007, - [2408] = 2389, - [2409] = 2009, - [2410] = 2040, - [2411] = 2396, - [2412] = 2412, - [2413] = 2218, - [2414] = 2218, - [2415] = 2001, - [2416] = 2200, - [2417] = 1998, - [2418] = 1997, - [2419] = 2403, - [2420] = 2003, - [2421] = 2421, - [2422] = 2396, - [2423] = 2019, - [2424] = 2028, - [2425] = 2425, - [2426] = 2011, - [2427] = 2218, - [2428] = 2015, - [2429] = 2007, - [2430] = 2430, - [2431] = 2021, - [2432] = 2016, - [2433] = 2017, - [2434] = 2012, - [2435] = 2018, - [2436] = 2014, - [2437] = 2430, - [2438] = 2438, - [2439] = 1995, - [2440] = 2022, - [2441] = 2441, - [2442] = 2442, - [2443] = 2003, - [2444] = 2233, + [2277] = 1969, + [2278] = 1969, + [2279] = 2229, + [2280] = 2201, + [2281] = 2206, + [2282] = 2224, + [2283] = 2206, + [2284] = 2201, + [2285] = 1987, + [2286] = 1987, + [2287] = 1970, + [2288] = 2228, + [2289] = 2224, + [2290] = 1969, + [2291] = 1969, + [2292] = 1984, + [2293] = 2224, + [2294] = 2201, + [2295] = 1987, + [2296] = 1984, + [2297] = 1971, + [2298] = 1971, + [2299] = 1970, + [2300] = 2229, + [2301] = 2224, + [2302] = 2206, + [2303] = 2206, + [2304] = 1987, + [2305] = 2201, + [2306] = 1984, + [2307] = 2201, + [2308] = 1987, + [2309] = 2224, + [2310] = 1984, + [2311] = 2224, + [2312] = 2201, + [2313] = 2201, + [2314] = 1999, + [2315] = 2224, + [2316] = 2206, + [2317] = 2201, + [2318] = 1996, + [2319] = 1995, + [2320] = 2201, + [2321] = 1997, + [2322] = 2224, + [2323] = 1998, + [2324] = 2206, + [2325] = 2005, + [2326] = 2201, + [2327] = 2327, + [2328] = 2201, + [2329] = 2224, + [2330] = 2206, + [2331] = 2224, + [2332] = 1997, + [2333] = 2006, + [2334] = 1998, + [2335] = 2201, + [2336] = 2007, + [2337] = 2206, + [2338] = 2000, + [2339] = 2224, + [2340] = 2224, + [2341] = 1999, + [2342] = 2206, + [2343] = 1996, + [2344] = 1995, + [2345] = 2201, + [2346] = 2004, + [2347] = 2003, + [2348] = 2002, + [2349] = 2009, + [2350] = 2350, + [2351] = 2008, + [2352] = 2224, + [2353] = 2201, + [2354] = 2001, + [2355] = 2224, + [2356] = 2201, + [2357] = 2002, + [2358] = 2014, + [2359] = 2000, + [2360] = 2009, + [2361] = 2027, + [2362] = 2018, + [2363] = 2363, + [2364] = 2020, + [2365] = 2010, + [2366] = 2026, + [2367] = 2005, + [2368] = 2012, + [2369] = 2021, + [2370] = 2028, + [2371] = 2013, + [2372] = 2004, + [2373] = 2003, + [2374] = 2011, + [2375] = 2023, + [2376] = 2019, + [2377] = 2201, + [2378] = 2015, + [2379] = 2024, + [2380] = 2206, + [2381] = 2025, + [2382] = 2382, + [2383] = 2022, + [2384] = 2007, + [2385] = 2206, + [2386] = 2017, + [2387] = 2224, + [2388] = 2016, + [2389] = 2003, + [2390] = 2201, + [2391] = 2042, + [2392] = 1999, + [2393] = 2201, + [2394] = 2008, + [2395] = 2006, + [2396] = 1996, + [2397] = 2397, + [2398] = 2398, + [2399] = 2228, + [2400] = 2400, + [2401] = 2401, + [2402] = 2400, + [2403] = 2401, + [2404] = 2224, + [2405] = 2397, + [2406] = 1997, + [2407] = 1998, + [2408] = 2009, + [2409] = 2001, + [2410] = 2224, + [2411] = 2004, + [2412] = 1995, + [2413] = 2007, + [2414] = 2400, + [2415] = 2401, + [2416] = 2224, + [2417] = 2417, + [2418] = 2002, + [2419] = 2000, + [2420] = 2206, + [2421] = 2201, + [2422] = 2422, + [2423] = 2229, + [2424] = 2009, + [2425] = 2007, + [2426] = 2224, + [2427] = 2427, + [2428] = 2428, + [2429] = 2429, + [2430] = 2201, + [2431] = 2224, + [2432] = 2432, + [2433] = 2005, + [2434] = 2428, + [2435] = 2435, + [2436] = 2003, + [2437] = 2437, + [2438] = 2437, + [2439] = 2439, + [2440] = 2055, + [2441] = 2019, + [2442] = 2427, + [2443] = 2429, + [2444] = 2224, [2445] = 2445, - [2446] = 1999, - [2447] = 2027, - [2448] = 2357, - [2449] = 2218, - [2450] = 2425, - [2451] = 2451, - [2452] = 1998, - [2453] = 1997, - [2454] = 2441, - [2455] = 2051, - [2456] = 2001, - [2457] = 2445, - [2458] = 2002, - [2459] = 2008, - [2460] = 2000, - [2461] = 2020, - [2462] = 2010, - [2463] = 2218, - [2464] = 2464, - [2465] = 2442, - [2466] = 2464, - [2467] = 2013, - [2468] = 2425, - [2469] = 2024, - [2470] = 2026, - [2471] = 2373, - [2472] = 2005, - [2473] = 2200, - [2474] = 2025, - [2475] = 2023, - [2476] = 1996, - [2477] = 2000, - [2478] = 2040, - [2479] = 1997, + [2446] = 2435, + [2447] = 2439, + [2448] = 2023, + [2449] = 2016, + [2450] = 2012, + [2451] = 1999, + [2452] = 2013, + [2453] = 1995, + [2454] = 2010, + [2455] = 2021, + [2456] = 1996, + [2457] = 2011, + [2458] = 2014, + [2459] = 2002, + [2460] = 2020, + [2461] = 2363, + [2462] = 2437, + [2463] = 2027, + [2464] = 1998, + [2465] = 2382, + [2466] = 2004, + [2467] = 2017, + [2468] = 2015, + [2469] = 2018, + [2470] = 2025, + [2471] = 2026, + [2472] = 2028, + [2473] = 1997, + [2474] = 2022, + [2475] = 2000, + [2476] = 2024, + [2477] = 1996, + [2478] = 2478, + [2479] = 2479, [2480] = 2480, - [2481] = 1999, - [2482] = 1996, + [2481] = 2481, + [2482] = 2482, [2483] = 2483, - [2484] = 1998, - [2485] = 1997, - [2486] = 2486, - [2487] = 2412, - [2488] = 2006, - [2489] = 2004, - [2490] = 2490, - [2491] = 2491, - [2492] = 1995, - [2493] = 2063, - [2494] = 2494, - [2495] = 2495, - [2496] = 1995, - [2497] = 1999, - [2498] = 1996, - [2499] = 2005, - [2500] = 2500, + [2484] = 2484, + [2485] = 2485, + [2486] = 1995, + [2487] = 2003, + [2488] = 1997, + [2489] = 2480, + [2490] = 2481, + [2491] = 2482, + [2492] = 2492, + [2493] = 2493, + [2494] = 1999, + [2495] = 2005, + [2496] = 2483, + [2497] = 2002, + [2498] = 1997, + [2499] = 2000, + [2500] = 1995, [2501] = 2501, - [2502] = 2483, - [2503] = 2490, - [2504] = 2494, - [2505] = 2495, - [2506] = 2480, - [2507] = 1998, - [2508] = 1997, - [2509] = 2509, - [2510] = 2007, - [2511] = 2009, - [2512] = 1996, - [2513] = 1999, - [2514] = 2490, - [2515] = 2515, - [2516] = 2003, + [2502] = 2480, + [2503] = 1999, + [2504] = 1996, + [2505] = 1998, + [2506] = 2506, + [2507] = 2478, + [2508] = 2482, + [2509] = 1997, + [2510] = 1998, + [2511] = 2511, + [2512] = 2004, + [2513] = 1995, + [2514] = 2417, + [2515] = 2483, + [2516] = 2516, [2517] = 2517, - [2518] = 2518, - [2519] = 2519, - [2520] = 2001, - [2521] = 2421, - [2522] = 2522, - [2523] = 2002, - [2524] = 2008, - [2525] = 2525, - [2526] = 1995, - [2527] = 2527, + [2518] = 2479, + [2519] = 1999, + [2520] = 1996, + [2521] = 1998, + [2522] = 2008, + [2523] = 2523, + [2524] = 2006, + [2525] = 2479, + [2526] = 2526, + [2527] = 2481, [2528] = 2528, - [2529] = 2494, - [2530] = 2480, - [2531] = 2040, - [2532] = 2501, - [2533] = 2501, - [2534] = 2534, - [2535] = 2483, - [2536] = 2536, - [2537] = 1998, - [2538] = 2495, + [2529] = 2529, + [2530] = 2530, + [2531] = 2009, + [2532] = 2532, + [2533] = 2001, + [2534] = 2422, + [2535] = 2398, + [2536] = 2073, + [2537] = 2007, + [2538] = 2042, [2539] = 2539, [2540] = 2540, - [2541] = 2541, - [2542] = 2392, - [2543] = 2014, + [2541] = 2042, + [2542] = 2478, + [2543] = 2543, [2544] = 2544, [2545] = 2545, [2546] = 2546, [2547] = 2547, [2548] = 2548, [2549] = 2549, - [2550] = 2550, + [2550] = 2002, [2551] = 2551, [2552] = 2552, [2553] = 2553, [2554] = 2554, [2555] = 2555, - [2556] = 2556, + [2556] = 2022, [2557] = 2557, - [2558] = 2558, + [2558] = 2432, [2559] = 2559, - [2560] = 2560, + [2560] = 1997, [2561] = 2561, [2562] = 2562, [2563] = 2563, @@ -6385,7 +6399,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2566] = 2566, [2567] = 2567, [2568] = 2568, - [2569] = 2569, + [2569] = 2028, [2570] = 2570, [2571] = 2571, [2572] = 2572, @@ -6397,18 +6411,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2578] = 2578, [2579] = 2579, [2580] = 2580, - [2581] = 2007, + [2581] = 2581, [2582] = 2582, [2583] = 2583, - [2584] = 2001, - [2585] = 2002, - [2586] = 2008, - [2587] = 2000, + [2584] = 2584, + [2585] = 2585, + [2586] = 2586, + [2587] = 2587, [2588] = 2588, [2589] = 2589, [2590] = 2590, [2591] = 2591, - [2592] = 2012, + [2592] = 2592, [2593] = 2593, [2594] = 2594, [2595] = 2595, @@ -6418,48 +6432,48 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2599] = 2599, [2600] = 2600, [2601] = 2601, - [2602] = 2020, - [2603] = 2010, - [2604] = 2001, + [2602] = 2602, + [2603] = 2603, + [2604] = 2008, [2605] = 2605, [2606] = 2606, [2607] = 2607, - [2608] = 2608, - [2609] = 2023, - [2610] = 2026, - [2611] = 2027, + [2608] = 2055, + [2609] = 2020, + [2610] = 2610, + [2611] = 2611, [2612] = 2612, [2613] = 2613, - [2614] = 2015, - [2615] = 2002, + [2614] = 2614, + [2615] = 2615, [2616] = 2616, - [2617] = 2021, - [2618] = 2016, - [2619] = 2018, - [2620] = 2620, + [2617] = 2617, + [2618] = 2618, + [2619] = 2619, + [2620] = 2014, [2621] = 2621, [2622] = 2622, - [2623] = 2022, + [2623] = 2623, [2624] = 2624, - [2625] = 2008, - [2626] = 2626, - [2627] = 2013, - [2628] = 2628, - [2629] = 2629, - [2630] = 2000, + [2625] = 2625, + [2626] = 2006, + [2627] = 2005, + [2628] = 2382, + [2629] = 2009, + [2630] = 2630, [2631] = 2631, [2632] = 2632, [2633] = 2633, - [2634] = 2005, + [2634] = 2634, [2635] = 2635, - [2636] = 2051, + [2636] = 2000, [2637] = 2637, [2638] = 2638, [2639] = 2639, - [2640] = 2028, + [2640] = 2640, [2641] = 2641, [2642] = 2642, - [2643] = 2017, + [2643] = 1999, [2644] = 2644, [2645] = 2645, [2646] = 2646, @@ -6467,49 +6481,49 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2648] = 2648, [2649] = 2649, [2650] = 2650, - [2651] = 2005, + [2651] = 2651, [2652] = 2652, [2653] = 2653, [2654] = 2654, [2655] = 2655, - [2656] = 1999, - [2657] = 2657, + [2656] = 2656, + [2657] = 2009, [2658] = 2658, - [2659] = 2659, - [2660] = 2660, + [2659] = 2018, + [2660] = 2001, [2661] = 2661, [2662] = 2662, - [2663] = 2663, - [2664] = 2664, - [2665] = 2665, + [2663] = 2363, + [2664] = 2007, + [2665] = 1995, [2666] = 2666, [2667] = 2667, [2668] = 2668, [2669] = 2669, [2670] = 2670, - [2671] = 2671, + [2671] = 2019, [2672] = 2672, - [2673] = 2673, - [2674] = 2674, + [2673] = 2004, + [2674] = 2003, [2675] = 2675, - [2676] = 2006, - [2677] = 2004, - [2678] = 2678, - [2679] = 2679, - [2680] = 1997, - [2681] = 2681, + [2676] = 2676, + [2677] = 2677, + [2678] = 2002, + [2679] = 2000, + [2680] = 2680, + [2681] = 2023, [2682] = 2682, - [2683] = 2005, + [2683] = 2683, [2684] = 2684, [2685] = 2685, - [2686] = 2438, + [2686] = 2686, [2687] = 2687, [2688] = 2688, - [2689] = 2689, - [2690] = 2024, - [2691] = 2007, - [2692] = 2009, - [2693] = 1996, + [2689] = 2007, + [2690] = 2690, + [2691] = 2691, + [2692] = 2024, + [2693] = 2005, [2694] = 2694, [2695] = 2695, [2696] = 2696, @@ -6522,11 +6536,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2703] = 2703, [2704] = 2704, [2705] = 2705, - [2706] = 2451, + [2706] = 2706, [2707] = 2707, [2708] = 2708, [2709] = 2709, - [2710] = 2003, + [2710] = 2710, [2711] = 2711, [2712] = 2712, [2713] = 2713, @@ -6540,5280 +6554,5280 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2721] = 2721, [2722] = 2722, [2723] = 2723, - [2724] = 2724, - [2725] = 1995, + [2724] = 1996, + [2725] = 2016, [2726] = 2726, - [2727] = 2727, + [2727] = 2012, [2728] = 2728, [2729] = 2729, [2730] = 2730, [2731] = 2731, - [2732] = 2732, - [2733] = 2733, - [2734] = 2011, - [2735] = 2019, - [2736] = 2736, - [2737] = 2737, + [2732] = 2004, + [2733] = 2021, + [2734] = 2734, + [2735] = 2735, + [2736] = 2013, + [2737] = 2010, [2738] = 2738, - [2739] = 2357, + [2739] = 2739, [2740] = 2740, - [2741] = 2741, + [2741] = 2011, [2742] = 2742, [2743] = 2743, - [2744] = 2003, + [2744] = 2744, [2745] = 2745, [2746] = 2746, [2747] = 2747, - [2748] = 2748, + [2748] = 2027, [2749] = 2749, [2750] = 2750, [2751] = 2751, - [2752] = 2752, - [2753] = 2753, + [2752] = 1998, + [2753] = 2003, [2754] = 2754, [2755] = 2755, - [2756] = 2756, + [2756] = 2017, [2757] = 2757, [2758] = 2758, [2759] = 2759, [2760] = 2760, [2761] = 2761, [2762] = 2762, - [2763] = 2763, - [2764] = 2764, - [2765] = 2765, - [2766] = 2766, - [2767] = 2767, + [2763] = 2445, + [2764] = 2005, + [2765] = 2015, + [2766] = 2025, + [2767] = 2026, [2768] = 2768, - [2769] = 2373, + [2769] = 2769, [2770] = 2770, - [2771] = 1998, - [2772] = 2025, + [2771] = 2771, + [2772] = 2772, [2773] = 2773, [2774] = 2774, - [2775] = 2501, - [2776] = 2000, - [2777] = 2003, - [2778] = 2003, - [2779] = 2013, - [2780] = 1999, - [2781] = 1996, - [2782] = 2495, - [2783] = 2008, - [2784] = 1998, - [2785] = 1997, - [2786] = 2004, + [2775] = 2775, + [2776] = 2776, + [2777] = 2777, + [2778] = 2493, + [2779] = 2530, + [2780] = 2422, + [2781] = 2417, + [2782] = 2398, + [2783] = 2783, + [2784] = 2008, + [2785] = 2006, + [2786] = 2009, [2787] = 2001, - [2788] = 2500, - [2789] = 2007, - [2790] = 2002, - [2791] = 2012, - [2792] = 2028, - [2793] = 2008, - [2794] = 2009, - [2795] = 2491, - [2796] = 2536, - [2797] = 2000, - [2798] = 2421, - [2799] = 2480, - [2800] = 2040, - [2801] = 1995, - [2802] = 2490, - [2803] = 2006, - [2804] = 2004, - [2805] = 2007, - [2806] = 2000, + [2788] = 2007, + [2789] = 1995, + [2790] = 2024, + [2791] = 2016, + [2792] = 2012, + [2793] = 2013, + [2794] = 2010, + [2795] = 2011, + [2796] = 2027, + [2797] = 2017, + [2798] = 2015, + [2799] = 2025, + [2800] = 2026, + [2801] = 2028, + [2802] = 2014, + [2803] = 2018, + [2804] = 2008, + [2805] = 2006, + [2806] = 2480, [2807] = 2009, - [2808] = 2541, - [2809] = 1998, - [2810] = 2501, - [2811] = 2023, - [2812] = 2483, - [2813] = 2026, - [2814] = 2490, - [2815] = 2001, - [2816] = 2494, - [2817] = 2515, - [2818] = 2495, - [2819] = 2480, - [2820] = 2519, - [2821] = 2528, - [2822] = 1997, - [2823] = 2002, - [2824] = 2486, - [2825] = 2027, - [2826] = 2063, - [2827] = 2008, - [2828] = 2002, - [2829] = 2483, - [2830] = 2008, - [2831] = 2412, - [2832] = 2000, - [2833] = 2518, - [2834] = 2006, - [2835] = 1995, - [2836] = 2836, + [2808] = 2001, + [2809] = 2004, + [2810] = 2007, + [2811] = 2003, + [2812] = 2002, + [2813] = 2000, + [2814] = 1997, + [2815] = 1998, + [2816] = 1999, + [2817] = 1996, + [2818] = 2073, + [2819] = 2481, + [2820] = 1995, + [2821] = 1997, + [2822] = 1998, + [2823] = 1999, + [2824] = 1996, + [2825] = 2004, + [2826] = 2003, + [2827] = 2002, + [2828] = 2000, + [2829] = 2008, + [2830] = 2023, + [2831] = 2009, + [2832] = 2001, + [2833] = 2007, + [2834] = 2482, + [2835] = 2042, + [2836] = 2004, [2837] = 2003, - [2838] = 2017, - [2839] = 2005, - [2840] = 2007, - [2841] = 2009, - [2842] = 2494, - [2843] = 2020, - [2844] = 2010, - [2845] = 2015, - [2846] = 2527, - [2847] = 2004, - [2848] = 2392, - [2849] = 2522, - [2850] = 2011, - [2851] = 2014, - [2852] = 2534, - [2853] = 2021, - [2854] = 2025, - [2855] = 2007, + [2838] = 2002, + [2839] = 2000, + [2840] = 2540, + [2841] = 2501, + [2842] = 2516, + [2843] = 2492, + [2844] = 2478, + [2845] = 2506, + [2846] = 2479, + [2847] = 2483, + [2848] = 2511, + [2849] = 2005, + [2850] = 2532, + [2851] = 2526, + [2852] = 2485, + [2853] = 2529, + [2854] = 2009, + [2855] = 2004, [2856] = 2003, - [2857] = 2022, - [2858] = 1999, - [2859] = 2509, - [2860] = 2001, - [2861] = 2517, - [2862] = 2540, - [2863] = 2525, - [2864] = 2016, - [2865] = 2006, - [2866] = 2539, - [2867] = 2002, - [2868] = 1996, - [2869] = 2018, - [2870] = 2019, - [2871] = 2024, - [2872] = 2001, - [2873] = 2727, - [2874] = 2028, - [2875] = 2017, - [2876] = 2705, - [2877] = 2517, - [2878] = 2001, - [2879] = 2002, - [2880] = 2536, - [2881] = 2000, - [2882] = 2599, - [2883] = 2707, - [2884] = 2708, - [2885] = 2605, - [2886] = 2600, - [2887] = 2632, - [2888] = 2641, - [2889] = 2642, - [2890] = 2715, - [2891] = 2647, - [2892] = 2648, - [2893] = 2649, - [2894] = 2652, - [2895] = 2653, - [2896] = 2654, - [2897] = 2657, - [2898] = 2659, - [2899] = 2660, - [2900] = 2667, - [2901] = 2668, - [2902] = 2697, - [2903] = 2644, - [2904] = 2645, - [2905] = 2646, - [2906] = 2650, - [2907] = 2719, - [2908] = 2024, - [2909] = 2666, - [2910] = 2673, - [2911] = 2716, - [2912] = 2721, - [2913] = 2723, - [2914] = 2720, - [2915] = 2713, - [2916] = 2726, - [2917] = 2672, - [2918] = 2728, - [2919] = 2729, - [2920] = 2730, - [2921] = 2698, - [2922] = 2430, - [2923] = 2007, + [2857] = 2002, + [2858] = 2000, + [2859] = 2484, + [2860] = 2019, + [2861] = 2021, + [2862] = 2022, + [2863] = 2478, + [2864] = 2479, + [2865] = 2480, + [2866] = 2481, + [2867] = 2482, + [2868] = 2483, + [2869] = 2539, + [2870] = 2007, + [2871] = 2020, + [2872] = 2528, + [2873] = 2523, + [2874] = 2517, + [2875] = 2006, + [2876] = 2876, + [2877] = 2595, + [2878] = 2007, + [2879] = 2672, + [2880] = 2596, + [2881] = 2598, + [2882] = 2565, + [2883] = 2637, + [2884] = 2777, + [2885] = 2746, + [2886] = 2771, + [2887] = 2553, + [2888] = 2574, + [2889] = 2532, + [2890] = 2600, + [2891] = 2432, + [2892] = 2445, + [2893] = 2634, + [2894] = 2546, + [2895] = 2548, + [2896] = 2552, + [2897] = 2024, + [2898] = 2016, + [2899] = 2012, + [2900] = 2013, + [2901] = 2010, + [2902] = 2011, + [2903] = 2027, + [2904] = 2017, + [2905] = 2015, + [2906] = 2025, + [2907] = 2026, + [2908] = 2028, + [2909] = 2382, + [2910] = 2363, + [2911] = 2559, + [2912] = 2014, + [2913] = 2018, + [2914] = 2547, + [2915] = 2915, + [2916] = 2567, + [2917] = 2587, + [2918] = 2918, + [2919] = 2588, + [2920] = 2920, + [2921] = 2004, + [2922] = 2768, + [2923] = 2592, [2924] = 2003, - [2925] = 2528, - [2926] = 2731, - [2927] = 2737, - [2928] = 2601, - [2929] = 2606, - [2930] = 2612, - [2931] = 2756, - [2932] = 2758, - [2933] = 2621, - [2934] = 2622, - [2935] = 2624, - [2936] = 2675, - [2937] = 2679, - [2938] = 2631, - [2939] = 2633, - [2940] = 2684, - [2941] = 2740, - [2942] = 2736, - [2943] = 2626, - [2944] = 2438, - [2945] = 2582, - [2946] = 2685, - [2947] = 2741, - [2948] = 2743, - [2949] = 2681, - [2950] = 2745, - [2951] = 2011, - [2952] = 2746, - [2953] = 2747, - [2954] = 2748, - [2955] = 2580, - [2956] = 2574, - [2957] = 2749, - [2958] = 2575, - [2959] = 2451, - [2960] = 2752, - [2961] = 2753, - [2962] = 2568, - [2963] = 2552, - [2964] = 2555, - [2965] = 2754, - [2966] = 2755, - [2967] = 2967, - [2968] = 2556, - [2969] = 2557, - [2970] = 2757, - [2971] = 2558, - [2972] = 2559, - [2973] = 2561, - [2974] = 2563, - [2975] = 2565, - [2976] = 2573, - [2977] = 2567, - [2978] = 2012, - [2979] = 2540, - [2980] = 2980, - [2981] = 2981, - [2982] = 2020, - [2983] = 2010, - [2984] = 2984, - [2985] = 2985, - [2986] = 2023, - [2987] = 2026, - [2988] = 2027, - [2989] = 2015, - [2990] = 2990, - [2991] = 2991, - [2992] = 2021, - [2993] = 2016, - [2994] = 2760, - [2995] = 2761, - [2996] = 2018, - [2997] = 2014, - [2998] = 2022, - [2999] = 2570, - [3000] = 2579, - [3001] = 2593, - [3002] = 2594, - [3003] = 2595, - [3004] = 2596, - [3005] = 2357, - [3006] = 2616, - [3007] = 2590, - [3008] = 2373, - [3009] = 2598, - [3010] = 2628, - [3011] = 2629, - [3012] = 2762, - [3013] = 2620, - [3014] = 2639, - [3015] = 2608, - [3016] = 2571, - [3017] = 2583, - [3018] = 2613, - [3019] = 2655, - [3020] = 2658, - [3021] = 2635, - [3022] = 2028, - [3023] = 2670, - [3024] = 2017, - [3025] = 2519, - [3026] = 2006, - [3027] = 2004, - [3028] = 2637, - [3029] = 2638, - [3030] = 2682, - [3031] = 2687, - [3032] = 2569, - [3033] = 2007, - [3034] = 2009, - [3035] = 2688, - [3036] = 2689, - [3037] = 2661, - [3038] = 2662, - [3039] = 2724, - [3040] = 2003, - [3041] = 2704, - [3042] = 2709, - [3043] = 2669, - [3044] = 2712, - [3045] = 2722, - [3046] = 2733, - [3047] = 2738, - [3048] = 2560, - [3049] = 2671, - [3050] = 2674, - [3051] = 2678, - [3052] = 2774, - [3053] = 2695, - [3054] = 2763, - [3055] = 2701, - [3056] = 2702, - [3057] = 2764, - [3058] = 2765, - [3059] = 2766, - [3060] = 2541, - [3061] = 2703, - [3062] = 2694, - [3063] = 2696, - [3064] = 3064, - [3065] = 2768, - [3066] = 2699, - [3067] = 2770, - [3068] = 3068, - [3069] = 2773, - [3070] = 2007, - [3071] = 2700, - [3072] = 2711, - [3073] = 2714, - [3074] = 2717, - [3075] = 2718, - [3076] = 2001, - [3077] = 2445, - [3078] = 2001, - [3079] = 2002, - [3080] = 2008, - [3081] = 2000, - [3082] = 2007, - [3083] = 3083, - [3084] = 2001, - [3085] = 2002, - [3086] = 2008, - [3087] = 2000, - [3088] = 2732, - [3089] = 2562, - [3090] = 2013, - [3091] = 2002, - [3092] = 2012, - [3093] = 3093, - [3094] = 2442, - [3095] = 2464, - [3096] = 2025, - [3097] = 2008, - [3098] = 2000, - [3099] = 2020, - [3100] = 2010, - [3101] = 3101, - [3102] = 2023, - [3103] = 2026, - [3104] = 2027, - [3105] = 3105, - [3106] = 2015, - [3107] = 2663, - [3108] = 2021, - [3109] = 2016, - [3110] = 2018, - [3111] = 2014, - [3112] = 2022, - [3113] = 2564, - [3114] = 3114, - [3115] = 2572, - [3116] = 2742, - [3117] = 2750, - [3118] = 2588, - [3119] = 2751, - [3120] = 2664, - [3121] = 2566, - [3122] = 2357, - [3123] = 2525, - [3124] = 2607, - [3125] = 2373, - [3126] = 2759, - [3127] = 2005, - [3128] = 2767, - [3129] = 2544, - [3130] = 2545, - [3131] = 2019, - [3132] = 2028, - [3133] = 2546, - [3134] = 2547, - [3135] = 2025, - [3136] = 2017, - [3137] = 2013, - [3138] = 2445, - [3139] = 2051, - [3140] = 2665, - [3141] = 2442, - [3142] = 2464, - [3143] = 2040, - [3144] = 2430, - [3145] = 2589, - [3146] = 2024, - [3147] = 2011, - [3148] = 2019, - [3149] = 2003, - [3150] = 2003, - [3151] = 2548, - [3152] = 2549, - [3153] = 2576, - [3154] = 2550, - [3155] = 2577, - [3156] = 2551, - [3157] = 2019, - [3158] = 2553, - [3159] = 2025, - [3160] = 2013, - [3161] = 2578, - [3162] = 2591, - [3163] = 2005, - [3164] = 2024, - [3165] = 2011, - [3166] = 2012, - [3167] = 2020, - [3168] = 2010, - [3169] = 2554, - [3170] = 2023, - [3171] = 2026, - [3172] = 2027, - [3173] = 2015, - [3174] = 2021, - [3175] = 2016, - [3176] = 2018, - [3177] = 2014, - [3178] = 2022, - [3179] = 2597, + [2925] = 2677, + [2926] = 2554, + [2927] = 2740, + [2928] = 2772, + [2929] = 2776, + [2930] = 2754, + [2931] = 2690, + [2932] = 2517, + [2933] = 2002, + [2934] = 2723, + [2935] = 2580, + [2936] = 2622, + [2937] = 2630, + [2938] = 2718, + [2939] = 2635, + [2940] = 2623, + [2941] = 2631, + [2942] = 2599, + [2943] = 2024, + [2944] = 2594, + [2945] = 2744, + [2946] = 2000, + [2947] = 2649, + [2948] = 2605, + [2949] = 2949, + [2950] = 2950, + [2951] = 2016, + [2952] = 2012, + [2953] = 2013, + [2954] = 2010, + [2955] = 2011, + [2956] = 2617, + [2957] = 2027, + [2958] = 2551, + [2959] = 2017, + [2960] = 2015, + [2961] = 2025, + [2962] = 2026, + [2963] = 2028, + [2964] = 2591, + [2965] = 2965, + [2966] = 2966, + [2967] = 2005, + [2968] = 2968, + [2969] = 2602, + [2970] = 2640, + [2971] = 2019, + [2972] = 2014, + [2973] = 2021, + [2974] = 2018, + [2975] = 2022, + [2976] = 2055, + [2977] = 2670, + [2978] = 2675, + [2979] = 2682, + [2980] = 2042, + [2981] = 2020, + [2982] = 2023, + [2983] = 2695, + [2984] = 2739, + [2985] = 2641, + [2986] = 2019, + [2987] = 2021, + [2988] = 2022, + [2989] = 2715, + [2990] = 2005, + [2991] = 2020, + [2992] = 2023, + [2993] = 2024, + [2994] = 2382, + [2995] = 2363, + [2996] = 2016, + [2997] = 2012, + [2998] = 2013, + [2999] = 2010, + [3000] = 2011, + [3001] = 2027, + [3002] = 2017, + [3003] = 2015, + [3004] = 2025, + [3005] = 2026, + [3006] = 2028, + [3007] = 2014, + [3008] = 2018, + [3009] = 2564, + [3010] = 2566, + [3011] = 2582, + [3012] = 2590, + [3013] = 2601, + [3014] = 2555, + [3015] = 2004, + [3016] = 2003, + [3017] = 2002, + [3018] = 2000, + [3019] = 2439, + [3020] = 2648, + [3021] = 2650, + [3022] = 2614, + [3023] = 2651, + [3024] = 2734, + [3025] = 2603, + [3026] = 2618, + [3027] = 2562, + [3028] = 2653, + [3029] = 2654, + [3030] = 2621, + [3031] = 2610, + [3032] = 2655, + [3033] = 2632, + [3034] = 2639, + [3035] = 2642, + [3036] = 2645, + [3037] = 2656, + [3038] = 2646, + [3039] = 2684, + [3040] = 2691, + [3041] = 2707, + [3042] = 2716, + [3043] = 2721, + [3044] = 2001, + [3045] = 2769, + [3046] = 2557, + [3047] = 2708, + [3048] = 2575, + [3049] = 2661, + [3050] = 2633, + [3051] = 2696, + [3052] = 2658, + [3053] = 2662, + [3054] = 2667, + [3055] = 2676, + [3056] = 2717, + [3057] = 2773, + [3058] = 2611, + [3059] = 2607, + [3060] = 2712, + [3061] = 2572, + [3062] = 2545, + [3063] = 2584, + [3064] = 2561, + [3065] = 2613, + [3066] = 2680, + [3067] = 2694, + [3068] = 2699, + [3069] = 2710, + [3070] = 2711, + [3071] = 2719, + [3072] = 2722, + [3073] = 2544, + [3074] = 2428, + [3075] = 2570, + [3076] = 2009, + [3077] = 2007, + [3078] = 2571, + [3079] = 2589, + [3080] = 2606, + [3081] = 2615, + [3082] = 2683, + [3083] = 2685, + [3084] = 2686, + [3085] = 2687, + [3086] = 3086, + [3087] = 2619, + [3088] = 2697, + [3089] = 2563, + [3090] = 2523, + [3091] = 2700, + [3092] = 2701, + [3093] = 2702, + [3094] = 2688, + [3095] = 2703, + [3096] = 2485, + [3097] = 2704, + [3098] = 2706, + [3099] = 2709, + [3100] = 2526, + [3101] = 2612, + [3102] = 2713, + [3103] = 2714, + [3104] = 2624, + [3105] = 2720, + [3106] = 2728, + [3107] = 2729, + [3108] = 2730, + [3109] = 2731, + [3110] = 2625, + [3111] = 2573, + [3112] = 2576, + [3113] = 2577, + [3114] = 2578, + [3115] = 2644, + [3116] = 2647, + [3117] = 2666, + [3118] = 2652, + [3119] = 2698, + [3120] = 2774, + [3121] = 2775, + [3122] = 2579, + [3123] = 2427, + [3124] = 2770, + [3125] = 2705, + [3126] = 2735, + [3127] = 2549, + [3128] = 2597, + [3129] = 2738, + [3130] = 2528, + [3131] = 2429, + [3132] = 2742, + [3133] = 2743, + [3134] = 2539, + [3135] = 2439, + [3136] = 2427, + [3137] = 2429, + [3138] = 2745, + [3139] = 2747, + [3140] = 2749, + [3141] = 2750, + [3142] = 2751, + [3143] = 2755, + [3144] = 2757, + [3145] = 2593, + [3146] = 2543, + [3147] = 2758, + [3148] = 2759, + [3149] = 2760, + [3150] = 2761, + [3151] = 2019, + [3152] = 2581, + [3153] = 2021, + [3154] = 2762, + [3155] = 2616, + [3156] = 2638, + [3157] = 2668, + [3158] = 2669, + [3159] = 2583, + [3160] = 2022, + [3161] = 3161, + [3162] = 2568, + [3163] = 3163, + [3164] = 2020, + [3165] = 2009, + [3166] = 2428, + [3167] = 2004, + [3168] = 2003, + [3169] = 2002, + [3170] = 2000, + [3171] = 2009, + [3172] = 2004, + [3173] = 2003, + [3174] = 2002, + [3175] = 2000, + [3176] = 2023, + [3177] = 3177, + [3178] = 2585, + [3179] = 3179, [3180] = 2008, - [3181] = 2517, - [3182] = 3182, - [3183] = 3183, - [3184] = 2647, - [3185] = 2501, - [3186] = 2648, - [3187] = 2392, - [3188] = 2649, - [3189] = 2652, - [3190] = 2653, - [3191] = 2412, - [3192] = 2654, - [3193] = 2657, - [3194] = 2659, - [3195] = 2660, - [3196] = 2412, - [3197] = 2667, - [3198] = 2442, - [3199] = 2668, - [3200] = 2012, - [3201] = 2464, - [3202] = 2421, - [3203] = 2490, - [3204] = 2525, - [3205] = 2486, - [3206] = 2421, - [3207] = 2445, - [3208] = 2519, - [3209] = 2539, - [3210] = 2536, - [3211] = 2001, - [3212] = 2020, - [3213] = 2010, - [3214] = 2002, - [3215] = 2392, - [3216] = 2051, - [3217] = 2008, - [3218] = 2500, - [3219] = 2000, - [3220] = 2628, - [3221] = 2023, - [3222] = 2522, - [3223] = 2026, - [3224] = 2027, - [3225] = 2028, - [3226] = 2357, - [3227] = 2373, - [3228] = 2629, - [3229] = 2040, - [3230] = 2015, - [3231] = 2501, - [3232] = 2430, - [3233] = 2483, - [3234] = 2021, - [3235] = 2016, - [3236] = 2017, - [3237] = 2018, - [3238] = 2014, - [3239] = 2003, - [3240] = 2421, - [3241] = 2713, - [3242] = 2022, - [3243] = 2002, - [3244] = 2008, - [3245] = 2000, - [3246] = 2063, - [3247] = 2019, - [3248] = 2491, - [3249] = 2509, - [3250] = 2011, - [3251] = 2040, - [3252] = 3252, - [3253] = 3253, - [3254] = 2527, - [3255] = 2528, - [3256] = 2006, - [3257] = 2720, - [3258] = 2004, - [3259] = 2483, - [3260] = 2494, - [3261] = 2495, - [3262] = 2480, - [3263] = 2501, - [3264] = 2490, - [3265] = 3265, - [3266] = 2442, - [3267] = 2438, - [3268] = 2716, - [3269] = 2007, - [3270] = 2009, - [3271] = 3271, - [3272] = 2464, - [3273] = 2006, - [3274] = 2004, - [3275] = 2003, - [3276] = 2445, - [3277] = 3277, - [3278] = 2590, - [3279] = 2025, - [3280] = 2392, - [3281] = 2632, - [3282] = 2494, - [3283] = 2013, - [3284] = 2040, - [3285] = 2495, - [3286] = 3286, - [3287] = 2451, - [3288] = 2001, - [3289] = 2480, - [3290] = 2515, - [3291] = 2430, - [3292] = 2002, - [3293] = 2641, - [3294] = 2490, - [3295] = 2534, - [3296] = 2540, - [3297] = 2642, - [3298] = 2040, - [3299] = 2541, - [3300] = 2007, - [3301] = 2009, - [3302] = 2008, - [3303] = 2605, - [3304] = 2000, - [3305] = 2598, - [3306] = 2024, - [3307] = 2007, - [3308] = 2003, - [3309] = 2001, - [3310] = 2483, - [3311] = 2494, - [3312] = 2495, - [3313] = 2480, - [3314] = 2412, - [3315] = 2518, - [3316] = 2567, - [3317] = 2547, - [3318] = 2548, - [3319] = 2549, - [3320] = 2733, - [3321] = 2631, - [3322] = 2632, - [3323] = 1998, - [3324] = 1997, - [3325] = 2641, - [3326] = 2642, - [3327] = 2647, - [3328] = 2648, - [3329] = 2649, - [3330] = 2652, - [3331] = 2653, - [3332] = 2654, - [3333] = 2550, - [3334] = 2657, - [3335] = 2551, - [3336] = 2659, - [3337] = 2660, - [3338] = 2667, - [3339] = 2668, - [3340] = 2553, - [3341] = 2554, - [3342] = 2697, - [3343] = 2698, - [3344] = 2568, - [3345] = 2738, - [3346] = 2560, - [3347] = 2716, - [3348] = 2582, - [3349] = 2613, - [3350] = 2720, - [3351] = 2569, - [3352] = 2713, - [3353] = 2566, - [3354] = 2576, - [3355] = 2577, - [3356] = 2357, - [3357] = 2373, - [3358] = 2578, - [3359] = 2591, - [3360] = 2051, - [3361] = 2597, - [3362] = 2599, - [3363] = 2635, - [3364] = 2600, - [3365] = 2670, - [3366] = 2023, - [3367] = 2026, - [3368] = 2027, - [3369] = 2028, - [3370] = 2001, - [3371] = 2002, - [3372] = 2008, - [3373] = 2682, - [3374] = 2000, - [3375] = 2445, - [3376] = 2540, - [3377] = 2541, - [3378] = 2486, - [3379] = 2019, - [3380] = 2015, - [3381] = 2025, - [3382] = 2013, - [3383] = 2442, - [3384] = 2515, - [3385] = 2464, - [3386] = 2438, - [3387] = 2687, - [3388] = 2644, - [3389] = 2675, - [3390] = 2679, - [3391] = 2645, - [3392] = 2633, - [3393] = 2646, - [3394] = 2650, - [3395] = 2666, - [3396] = 2451, - [3397] = 2430, - [3398] = 2063, - [3399] = 2673, - [3400] = 2684, - [3401] = 2685, - [3402] = 2688, - [3403] = 2689, - [3404] = 2430, - [3405] = 2704, - [3406] = 2709, - [3407] = 2681, - [3408] = 2500, - [3409] = 2438, - [3410] = 2712, - [3411] = 2007, - [3412] = 2003, - [3413] = 1995, - [3414] = 2552, - [3415] = 2555, - [3416] = 2522, - [3417] = 2571, - [3418] = 2556, - [3419] = 2557, - [3420] = 2558, - [3421] = 2024, - [3422] = 2539, - [3423] = 2559, - [3424] = 2561, - [3425] = 2563, - [3426] = 2040, - [3427] = 2011, - [3428] = 2565, - [3429] = 2583, - [3430] = 2570, - [3431] = 2579, - [3432] = 2593, - [3433] = 2594, - [3434] = 2595, - [3435] = 2596, - [3436] = 2007, - [3437] = 2546, - [3438] = 2016, - [3439] = 2017, - [3440] = 2001, - [3441] = 2002, - [3442] = 2008, - [3443] = 2000, - [3444] = 2018, - [3445] = 2616, - [3446] = 2051, - [3447] = 2620, - [3448] = 2509, - [3449] = 2639, - [3450] = 2573, - [3451] = 2574, - [3452] = 2575, - [3453] = 2655, - [3454] = 2658, - [3455] = 2580, - [3456] = 2661, - [3457] = 2662, - [3458] = 2724, - [3459] = 2669, - [3460] = 2588, - [3461] = 2589, - [3462] = 2590, - [3463] = 2598, - [3464] = 2601, - [3465] = 2606, - [3466] = 2671, - [3467] = 2612, - [3468] = 2621, - [3469] = 2622, - [3470] = 2624, - [3471] = 2626, - [3472] = 2628, - [3473] = 2629, - [3474] = 2674, - [3475] = 2678, - [3476] = 2517, - [3477] = 2774, - [3478] = 2694, - [3479] = 2637, - [3480] = 2638, - [3481] = 2518, - [3482] = 2696, - [3483] = 2699, - [3484] = 2700, - [3485] = 2451, - [3486] = 2608, - [3487] = 2014, - [3488] = 2722, - [3489] = 2663, - [3490] = 2664, - [3491] = 2665, - [3492] = 2672, - [3493] = 2022, - [3494] = 2527, - [3495] = 2695, - [3496] = 1999, - [3497] = 2019, - [3498] = 2701, - [3499] = 2702, - [3500] = 2703, - [3501] = 2705, - [3502] = 2707, - [3503] = 2708, - [3504] = 2025, - [3505] = 2715, - [3506] = 2719, - [3507] = 2721, - [3508] = 2013, - [3509] = 2723, - [3510] = 2726, - [3511] = 2727, - [3512] = 2728, - [3513] = 2729, - [3514] = 2730, - [3515] = 2012, - [3516] = 1996, - [3517] = 2445, - [3518] = 2731, - [3519] = 2711, - [3520] = 2525, - [3521] = 2528, - [3522] = 2020, + [3181] = 2007, + [3182] = 2006, + [3183] = 2007, + [3184] = 2586, + [3185] = 2009, + [3186] = 2726, + [3187] = 2002, + [3188] = 2042, + [3189] = 2013, + [3190] = 2073, + [3191] = 2008, + [3192] = 2006, + [3193] = 2009, + [3194] = 2001, + [3195] = 2007, + [3196] = 2540, + [3197] = 2493, + [3198] = 2042, + [3199] = 2479, + [3200] = 2042, + [3201] = 2004, + [3202] = 2003, + [3203] = 2010, + [3204] = 2000, + [3205] = 2004, + [3206] = 2003, + [3207] = 2002, + [3208] = 2000, + [3209] = 2042, + [3210] = 2684, + [3211] = 2691, + [3212] = 2027, + [3213] = 2501, + [3214] = 2482, + [3215] = 2398, + [3216] = 2478, + [3217] = 2561, + [3218] = 2506, + [3219] = 2616, + [3220] = 2484, + [3221] = 2480, + [3222] = 2004, + [3223] = 2003, + [3224] = 2002, + [3225] = 2000, + [3226] = 2398, + [3227] = 3227, + [3228] = 2422, + [3229] = 3229, + [3230] = 3230, + [3231] = 3231, + [3232] = 2707, + [3233] = 2716, + [3234] = 2721, + [3235] = 2726, + [3236] = 2769, + [3237] = 2557, + [3238] = 2708, + [3239] = 2575, + [3240] = 2661, + [3241] = 2638, + [3242] = 2668, + [3243] = 2428, + [3244] = 2669, + [3245] = 2633, + [3246] = 2696, + [3247] = 2009, + [3248] = 2007, + [3249] = 2479, + [3250] = 2481, + [3251] = 2482, + [3252] = 2483, + [3253] = 2478, + [3254] = 2480, + [3255] = 2417, + [3256] = 2523, + [3257] = 2539, + [3258] = 2017, + [3259] = 2492, + [3260] = 3260, + [3261] = 3261, + [3262] = 2428, + [3263] = 2015, + [3264] = 2018, + [3265] = 2025, + [3266] = 2026, + [3267] = 2028, + [3268] = 2526, + [3269] = 2009, + [3270] = 2001, + [3271] = 2439, + [3272] = 2432, + [3273] = 2516, + [3274] = 2014, + [3275] = 2427, + [3276] = 2429, + [3277] = 2483, + [3278] = 2055, + [3279] = 2445, + [3280] = 2511, + [3281] = 2011, + [3282] = 2020, + [3283] = 2422, + [3284] = 2417, + [3285] = 2517, + [3286] = 2019, + [3287] = 2610, + [3288] = 2485, + [3289] = 2023, + [3290] = 2611, + [3291] = 3291, + [3292] = 2382, + [3293] = 2363, + [3294] = 2439, + [3295] = 2422, + [3296] = 2427, + [3297] = 2429, + [3298] = 2646, + [3299] = 2417, + [3300] = 2528, + [3301] = 2021, + [3302] = 2529, + [3303] = 2545, + [3304] = 2007, + [3305] = 2530, + [3306] = 2398, + [3307] = 2532, + [3308] = 2022, + [3309] = 2479, + [3310] = 2481, + [3311] = 2482, + [3312] = 2483, + [3313] = 2478, + [3314] = 2480, + [3315] = 2024, + [3316] = 2008, + [3317] = 2016, + [3318] = 2012, + [3319] = 2006, + [3320] = 2481, + [3321] = 3321, + [3322] = 2713, + [3323] = 2564, + [3324] = 2580, + [3325] = 2439, + [3326] = 2685, + [3327] = 2686, + [3328] = 2427, + [3329] = 2614, + [3330] = 2429, + [3331] = 2016, + [3332] = 2623, + [3333] = 2631, + [3334] = 2649, + [3335] = 2012, + [3336] = 2566, + [3337] = 2549, + [3338] = 2013, + [3339] = 2010, + [3340] = 2011, + [3341] = 2616, + [3342] = 2687, + [3343] = 1997, + [3344] = 1998, + [3345] = 2439, + [3346] = 2027, + [3347] = 2017, + [3348] = 2427, + [3349] = 2429, + [3350] = 2015, + [3351] = 2610, + [3352] = 2025, + [3353] = 2697, + [3354] = 2744, + [3355] = 2646, + [3356] = 1999, + [3357] = 1996, + [3358] = 2684, + [3359] = 2691, + [3360] = 2026, + [3361] = 2028, + [3362] = 2622, + [3363] = 2707, + [3364] = 2582, + [3365] = 2590, + [3366] = 2601, + [3367] = 2020, + [3368] = 2716, + [3369] = 2721, + [3370] = 2603, + [3371] = 2023, + [3372] = 2726, + [3373] = 2014, + [3374] = 2769, + [3375] = 2557, + [3376] = 2708, + [3377] = 2575, + [3378] = 2661, + [3379] = 2633, + [3380] = 2618, + [3381] = 2018, + [3382] = 2562, + [3383] = 2621, + [3384] = 2554, + [3385] = 2612, + [3386] = 2624, + [3387] = 2696, + [3388] = 2632, + [3389] = 2428, + [3390] = 2625, + [3391] = 2630, + [3392] = 2639, + [3393] = 2644, + [3394] = 2009, + [3395] = 2642, + [3396] = 2007, + [3397] = 2647, + [3398] = 2652, + [3399] = 2666, + [3400] = 2645, + [3401] = 2774, + [3402] = 2775, + [3403] = 2668, + [3404] = 2611, + [3405] = 2547, + [3406] = 2635, + [3407] = 2545, + [3408] = 2593, + [3409] = 2734, + [3410] = 2561, + [3411] = 2382, + [3412] = 2669, + [3413] = 2055, + [3414] = 2662, + [3415] = 2363, + [3416] = 2543, + [3417] = 2667, + [3418] = 2555, + [3419] = 2700, + [3420] = 2701, + [3421] = 2676, + [3422] = 2717, + [3423] = 2055, + [3424] = 2026, + [3425] = 2028, + [3426] = 2702, + [3427] = 2703, + [3428] = 2704, + [3429] = 2706, + [3430] = 2709, + [3431] = 2773, + [3432] = 2640, + [3433] = 2715, + [3434] = 2714, + [3435] = 2607, + [3436] = 2712, + [3437] = 2720, + [3438] = 2572, + [3439] = 2584, + [3440] = 2016, + [3441] = 2012, + [3442] = 2019, + [3443] = 2728, + [3444] = 2729, + [3445] = 2021, + [3446] = 2730, + [3447] = 2022, + [3448] = 2613, + [3449] = 2680, + [3450] = 2731, + [3451] = 2694, + [3452] = 2699, + [3453] = 2432, + [3454] = 2445, + [3455] = 2710, + [3456] = 2073, + [3457] = 2711, + [3458] = 2719, + [3459] = 2042, + [3460] = 2770, + [3461] = 2735, + [3462] = 2597, + [3463] = 2573, + [3464] = 2738, + [3465] = 2722, + [3466] = 2670, + [3467] = 2742, + [3468] = 2492, + [3469] = 2743, + [3470] = 2745, + [3471] = 2544, + [3472] = 2675, + [3473] = 2747, + [3474] = 2690, + [3475] = 2749, + [3476] = 2750, + [3477] = 2751, + [3478] = 2755, + [3479] = 2757, + [3480] = 2758, + [3481] = 2020, + [3482] = 2759, + [3483] = 2023, + [3484] = 2682, + [3485] = 2760, + [3486] = 2761, + [3487] = 2762, + [3488] = 2768, + [3489] = 2698, + [3490] = 2605, + [3491] = 2695, + [3492] = 2617, + [3493] = 2551, + [3494] = 2591, + [3495] = 2599, + [3496] = 2602, + [3497] = 2688, + [3498] = 2705, + [3499] = 2672, + [3500] = 2013, + [3501] = 2739, + [3502] = 2576, + [3503] = 2577, + [3504] = 2638, + [3505] = 2578, + [3506] = 2579, + [3507] = 2019, + [3508] = 2540, + [3509] = 2432, + [3510] = 2493, + [3511] = 2017, + [3512] = 2004, + [3513] = 2003, + [3514] = 2516, + [3515] = 2002, + [3516] = 2570, + [3517] = 2000, + [3518] = 2528, + [3519] = 2529, + [3520] = 2445, + [3521] = 2530, + [3522] = 2532, [3523] = 2010, - [3524] = 2012, - [3525] = 2023, - [3526] = 2026, - [3527] = 2027, - [3528] = 2714, - [3529] = 2015, - [3530] = 2003, - [3531] = 2536, - [3532] = 2021, - [3533] = 2016, - [3534] = 2018, - [3535] = 2014, - [3536] = 2022, - [3537] = 2737, - [3538] = 2740, - [3539] = 2736, - [3540] = 2024, - [3541] = 2717, - [3542] = 2011, - [3543] = 2028, - [3544] = 2718, - [3545] = 2442, - [3546] = 2017, - [3547] = 2741, - [3548] = 2743, - [3549] = 2745, - [3550] = 2746, - [3551] = 2747, - [3552] = 2748, - [3553] = 2749, - [3554] = 2464, - [3555] = 2732, - [3556] = 2752, - [3557] = 2753, - [3558] = 2742, - [3559] = 2754, - [3560] = 2755, - [3561] = 2757, - [3562] = 2756, - [3563] = 2758, - [3564] = 2760, - [3565] = 2761, - [3566] = 2762, - [3567] = 2763, - [3568] = 2764, - [3569] = 2765, - [3570] = 2766, - [3571] = 2750, - [3572] = 2051, - [3573] = 2768, - [3574] = 2770, - [3575] = 2751, - [3576] = 2773, - [3577] = 2020, - [3578] = 2605, - [3579] = 2759, - [3580] = 2010, - [3581] = 2562, - [3582] = 2767, - [3583] = 2564, - [3584] = 2544, - [3585] = 2545, - [3586] = 2572, - [3587] = 2607, - [3588] = 2021, - [3589] = 2567, - [3590] = 2063, - [3591] = 2746, - [3592] = 2495, - [3593] = 2747, - [3594] = 2490, - [3595] = 2608, - [3596] = 2748, - [3597] = 2711, - [3598] = 2714, - [3599] = 2613, - [3600] = 2635, - [3601] = 2670, - [3602] = 2717, - [3603] = 1998, - [3604] = 1997, - [3605] = 2684, - [3606] = 2495, - [3607] = 2682, - [3608] = 2697, - [3609] = 2698, - [3610] = 2480, - [3611] = 2718, - [3612] = 2732, - [3613] = 2742, - [3614] = 2724, - [3615] = 2687, - [3616] = 2005, - [3617] = 2534, - [3618] = 2750, - [3619] = 2688, - [3620] = 2582, - [3621] = 2689, - [3622] = 2509, - [3623] = 2063, - [3624] = 2704, - [3625] = 2751, - [3626] = 2480, - [3627] = 2569, - [3628] = 2534, - [3629] = 2752, - [3630] = 2518, - [3631] = 2759, - [3632] = 2749, - [3633] = 2709, - [3634] = 2527, - [3635] = 2040, - [3636] = 2695, - [3637] = 2767, - [3638] = 2753, - [3639] = 2412, - [3640] = 2544, - [3641] = 1999, - [3642] = 2712, - [3643] = 2701, - [3644] = 2702, - [3645] = 2703, - [3646] = 2722, - [3647] = 2528, - [3648] = 2733, - [3649] = 2740, - [3650] = 2545, - [3651] = 2546, - [3652] = 2547, - [3653] = 2539, - [3654] = 2548, - [3655] = 2738, - [3656] = 1996, - [3657] = 2646, - [3658] = 2754, - [3659] = 2549, - [3660] = 2755, - [3661] = 2550, - [3662] = 2757, - [3663] = 2551, - [3664] = 2552, - [3665] = 2451, - [3666] = 2650, - [3667] = 2705, - [3668] = 2500, - [3669] = 2555, - [3670] = 2491, - [3671] = 2760, - [3672] = 2501, - [3673] = 2553, - [3674] = 2522, - [3675] = 2491, - [3676] = 2554, - [3677] = 2761, - [3678] = 2707, - [3679] = 2708, - [3680] = 2762, - [3681] = 2763, - [3682] = 2764, - [3683] = 2765, - [3684] = 2560, - [3685] = 2766, - [3686] = 2525, - [3687] = 2768, - [3688] = 2536, - [3689] = 2556, - [3690] = 2557, - [3691] = 2770, - [3692] = 2558, - [3693] = 2515, - [3694] = 2715, - [3695] = 2719, - [3696] = 2721, - [3697] = 2412, - [3698] = 2723, - [3699] = 2559, - [3700] = 2726, - [3701] = 2727, - [3702] = 2728, - [3703] = 2729, - [3704] = 2483, - [3705] = 2730, - [3706] = 2573, - [3707] = 2574, - [3708] = 2561, - [3709] = 2575, - [3710] = 2580, - [3711] = 2563, - [3712] = 2666, - [3713] = 2644, - [3714] = 2565, - [3715] = 2645, - [3716] = 2051, - [3717] = 2773, - [3718] = 2633, - [3719] = 2040, - [3720] = 2681, - [3721] = 2494, - [3722] = 2392, - [3723] = 2494, - [3724] = 2673, - [3725] = 2568, - [3726] = 2579, - [3727] = 2593, - [3728] = 2517, - [3729] = 2540, - [3730] = 2525, - [3731] = 2519, - [3732] = 2483, - [3733] = 2494, - [3734] = 2495, - [3735] = 2480, - [3736] = 2501, - [3737] = 2490, - [3738] = 2594, - [3739] = 2743, - [3740] = 2483, - [3741] = 2494, - [3742] = 2495, - [3743] = 2480, - [3744] = 2501, - [3745] = 2490, - [3746] = 2595, - [3747] = 2562, - [3748] = 2566, - [3749] = 2540, - [3750] = 2576, - [3751] = 2392, - [3752] = 2564, - [3753] = 2572, - [3754] = 2577, - [3755] = 2588, - [3756] = 2578, - [3757] = 2607, - [3758] = 2583, - [3759] = 2519, - [3760] = 2591, - [3761] = 2597, - [3762] = 2421, - [3763] = 1995, - [3764] = 2599, - [3765] = 2596, - [3766] = 2589, - [3767] = 2421, - [3768] = 2616, - [3769] = 2040, - [3770] = 2486, - [3771] = 2620, - [3772] = 2639, - [3773] = 2541, - [3774] = 2438, - [3775] = 2490, - [3776] = 2836, - [3777] = 2655, - [3778] = 2501, - [3779] = 2600, - [3780] = 2731, - [3781] = 2509, - [3782] = 2486, - [3783] = 2601, - [3784] = 2685, - [3785] = 2606, - [3786] = 2539, - [3787] = 2612, - [3788] = 2741, - [3789] = 2658, - [3790] = 2661, - [3791] = 2662, - [3792] = 2669, - [3793] = 2483, - [3794] = 2494, - [3795] = 2671, - [3796] = 2737, - [3797] = 2621, - [3798] = 2495, - [3799] = 2622, - [3800] = 2483, - [3801] = 2624, - [3802] = 2626, - [3803] = 2357, - [3804] = 2528, - [3805] = 2373, - [3806] = 2637, - [3807] = 2541, - [3808] = 2638, - [3809] = 2536, - [3810] = 2480, - [3811] = 2663, - [3812] = 2674, - [3813] = 2517, - [3814] = 2664, - [3815] = 2063, - [3816] = 2501, - [3817] = 2490, - [3818] = 2678, - [3819] = 2774, - [3820] = 2694, - [3821] = 2696, - [3822] = 2515, - [3823] = 2518, - [3824] = 2745, - [3825] = 2699, - [3826] = 2500, - [3827] = 2736, - [3828] = 2700, - [3829] = 2665, - [3830] = 2040, - [3831] = 2672, - [3832] = 2522, - [3833] = 2631, - [3834] = 2527, - [3835] = 2570, - [3836] = 2720, - [3837] = 2700, - [3838] = 2633, - [3839] = 2509, - [3840] = 2007, - [3841] = 2588, - [3842] = 2589, - [3843] = 2561, - [3844] = 2616, - [3845] = 2009, - [3846] = 2620, - [3847] = 2639, - [3848] = 2655, - [3849] = 2601, - [3850] = 2606, - [3851] = 2612, - [3852] = 2658, - [3853] = 2661, - [3854] = 2662, - [3855] = 2621, - [3856] = 2716, - [3857] = 2563, - [3858] = 2699, - [3859] = 2565, - [3860] = 2736, - [3861] = 2003, - [3862] = 2622, - [3863] = 2567, - [3864] = 2711, - [3865] = 2540, - [3866] = 2714, - [3867] = 2726, - [3868] = 2616, - [3869] = 2624, - [3870] = 2626, - [3871] = 2620, - [3872] = 2713, - [3873] = 2717, - [3874] = 2718, - [3875] = 2541, - [3876] = 2639, - [3877] = 2655, - [3878] = 2732, - [3879] = 2742, - [3880] = 2756, - [3881] = 2759, - [3882] = 2637, - [3883] = 2638, - [3884] = 2767, - [3885] = 2758, - [3886] = 2658, - [3887] = 2544, + [3524] = 2055, + [3525] = 2015, + [3526] = 2571, + [3527] = 2011, + [3528] = 2523, + [3529] = 2526, + [3530] = 2589, + [3531] = 2014, + [3532] = 2606, + [3533] = 2581, + [3534] = 2583, + [3535] = 2615, + [3536] = 2585, + [3537] = 2009, + [3538] = 2586, + [3539] = 2619, + [3540] = 2648, + [3541] = 2563, + [3542] = 2568, + [3543] = 2546, + [3544] = 2027, + [3545] = 2004, + [3546] = 2003, + [3547] = 2002, + [3548] = 2000, + [3549] = 2565, + [3550] = 2574, + [3551] = 2637, + [3552] = 2777, + [3553] = 2587, + [3554] = 2746, + [3555] = 2517, + [3556] = 2485, + [3557] = 2588, + [3558] = 2771, + [3559] = 2553, + [3560] = 2548, + [3561] = 2552, + [3562] = 2501, + [3563] = 2592, + [3564] = 2594, + [3565] = 2595, + [3566] = 2596, + [3567] = 2598, + [3568] = 2018, + [3569] = 2600, + [3570] = 2559, + [3571] = 2021, + [3572] = 2650, + [3573] = 2022, + [3574] = 2651, + [3575] = 2653, + [3576] = 2654, + [3577] = 2655, + [3578] = 2484, + [3579] = 2024, + [3580] = 2656, + [3581] = 2567, + [3582] = 2677, + [3583] = 2740, + [3584] = 2007, + [3585] = 2772, + [3586] = 2776, + [3587] = 2024, + [3588] = 2718, + [3589] = 2754, + [3590] = 2658, + [3591] = 2723, + [3592] = 2428, + [3593] = 2025, + [3594] = 2634, + [3595] = 2683, + [3596] = 2641, + [3597] = 1995, + [3598] = 2479, + [3599] = 2492, + [3600] = 2506, + [3601] = 2479, + [3602] = 2539, + [3603] = 2744, + [3604] = 2478, + [3605] = 2481, + [3606] = 2506, + [3607] = 2482, + [3608] = 2073, + [3609] = 2422, + [3610] = 2715, + [3611] = 2042, + [3612] = 2417, + [3613] = 2770, + [3614] = 2597, + [3615] = 2073, + [3616] = 1995, + [3617] = 1997, + [3618] = 1998, + [3619] = 1999, + [3620] = 1996, + [3621] = 2042, + [3622] = 2677, + [3623] = 2042, + [3624] = 2562, + [3625] = 2492, + [3626] = 2540, + [3627] = 2493, + [3628] = 2479, + [3629] = 2774, + [3630] = 2775, + [3631] = 2481, + [3632] = 2482, + [3633] = 2483, + [3634] = 2478, + [3635] = 2480, + [3636] = 2516, + [3637] = 2483, + [3638] = 2528, + [3639] = 2398, + [3640] = 2783, + [3641] = 2529, + [3642] = 2511, + [3643] = 2530, + [3644] = 2432, + [3645] = 2532, + [3646] = 2481, + [3647] = 2482, + [3648] = 2005, + [3649] = 2422, + [3650] = 2445, + [3651] = 2547, + [3652] = 2540, + [3653] = 2493, + [3654] = 2417, + [3655] = 2516, + [3656] = 2523, + [3657] = 2529, + [3658] = 2530, + [3659] = 2526, + [3660] = 2483, + [3661] = 2511, + [3662] = 2563, + [3663] = 2568, + [3664] = 2574, + [3665] = 2718, + [3666] = 2398, + [3667] = 2599, + [3668] = 2614, + [3669] = 2501, + [3670] = 2612, + [3671] = 2624, + [3672] = 2625, + [3673] = 2644, + [3674] = 2647, + [3675] = 2652, + [3676] = 2666, + [3677] = 2382, + [3678] = 2517, + [3679] = 2363, + [3680] = 2698, + [3681] = 2705, + [3682] = 2546, + [3683] = 2548, + [3684] = 2552, + [3685] = 2554, + [3686] = 2555, + [3687] = 2573, + [3688] = 2576, + [3689] = 2577, + [3690] = 2578, + [3691] = 2579, + [3692] = 2485, + [3693] = 2581, + [3694] = 2583, + [3695] = 2484, + [3696] = 2585, + [3697] = 2586, + [3698] = 2587, + [3699] = 2588, + [3700] = 2592, + [3701] = 2594, + [3702] = 2532, + [3703] = 2595, + [3704] = 2596, + [3705] = 2526, + [3706] = 2598, + [3707] = 2485, + [3708] = 2600, + [3709] = 2634, + [3710] = 2641, + [3711] = 2648, + [3712] = 2650, + [3713] = 2651, + [3714] = 2653, + [3715] = 2654, + [3716] = 2655, + [3717] = 2656, + [3718] = 2658, + [3719] = 2683, + [3720] = 2685, + [3721] = 2686, + [3722] = 2687, + [3723] = 2697, + [3724] = 2700, + [3725] = 2701, + [3726] = 2702, + [3727] = 2703, + [3728] = 2704, + [3729] = 2706, + [3730] = 2709, + [3731] = 2713, + [3732] = 2714, + [3733] = 2720, + [3734] = 2480, + [3735] = 2729, + [3736] = 2730, + [3737] = 2731, + [3738] = 2480, + [3739] = 2735, + [3740] = 2738, + [3741] = 2742, + [3742] = 2743, + [3743] = 2745, + [3744] = 2747, + [3745] = 2749, + [3746] = 2750, + [3747] = 2751, + [3748] = 2755, + [3749] = 2757, + [3750] = 2758, + [3751] = 2759, + [3752] = 2760, + [3753] = 2761, + [3754] = 2762, + [3755] = 2768, + [3756] = 2605, + [3757] = 2617, + [3758] = 2551, + [3759] = 2591, + [3760] = 2602, + [3761] = 2688, + [3762] = 2672, + [3763] = 2565, + [3764] = 2637, + [3765] = 2777, + [3766] = 2746, + [3767] = 2771, + [3768] = 2553, + [3769] = 2559, + [3770] = 2567, + [3771] = 2740, + [3772] = 2772, + [3773] = 2776, + [3774] = 2754, + [3775] = 2690, + [3776] = 2723, + [3777] = 2580, + [3778] = 2622, + [3779] = 2630, + [3780] = 2635, + [3781] = 2501, + [3782] = 2640, + [3783] = 2670, + [3784] = 2675, + [3785] = 2682, + [3786] = 2695, + [3787] = 2739, + [3788] = 2564, + [3789] = 2566, + [3790] = 2582, + [3791] = 2590, + [3792] = 2601, + [3793] = 2603, + [3794] = 2618, + [3795] = 2478, + [3796] = 2621, + [3797] = 2632, + [3798] = 2639, + [3799] = 2642, + [3800] = 2645, + [3801] = 2662, + [3802] = 2667, + [3803] = 2676, + [3804] = 2717, + [3805] = 2773, + [3806] = 2607, + [3807] = 2712, + [3808] = 2572, + [3809] = 2584, + [3810] = 2613, + [3811] = 2680, + [3812] = 2694, + [3813] = 2699, + [3814] = 2710, + [3815] = 2711, + [3816] = 2719, + [3817] = 2722, + [3818] = 2544, + [3819] = 2570, + [3820] = 2571, + [3821] = 2589, + [3822] = 2606, + [3823] = 2615, + [3824] = 2619, + [3825] = 2734, + [3826] = 2528, + [3827] = 2523, + [3828] = 2517, + [3829] = 2539, + [3830] = 2479, + [3831] = 2481, + [3832] = 2482, + [3833] = 2483, + [3834] = 2478, + [3835] = 2480, + [3836] = 2484, + [3837] = 2479, + [3838] = 2481, + [3839] = 2482, + [3840] = 2483, + [3841] = 2478, + [3842] = 2480, + [3843] = 2042, + [3844] = 2073, + [3845] = 2055, + [3846] = 2649, + [3847] = 2728, + [3848] = 2676, + [3849] = 2593, + [3850] = 2055, + [3851] = 2543, + [3852] = 2004, + [3853] = 2003, + [3854] = 2002, + [3855] = 2000, + [3856] = 2005, + [3857] = 1969, + [3858] = 2563, + [3859] = 2568, + [3860] = 2574, + [3861] = 2718, + [3862] = 2599, + [3863] = 2614, + [3864] = 2616, + [3865] = 2638, + [3866] = 2612, + [3867] = 2624, + [3868] = 2625, + [3869] = 2644, + [3870] = 2647, + [3871] = 2652, + [3872] = 2478, + [3873] = 2479, + [3874] = 2480, + [3875] = 2481, + [3876] = 2482, + [3877] = 2483, + [3878] = 2511, + [3879] = 2666, + [3880] = 2668, + [3881] = 2669, + [3882] = 1999, + [3883] = 1996, + [3884] = 2698, + [3885] = 1995, + [3886] = 2546, + [3887] = 2548, [3888] = 2552, - [3889] = 2545, - [3890] = 2546, - [3891] = 2547, - [3892] = 2646, - [3893] = 2549, - [3894] = 2519, - [3895] = 2663, - [3896] = 2550, - [3897] = 2551, - [3898] = 2553, - [3899] = 2554, - [3900] = 2573, - [3901] = 2664, - [3902] = 2665, - [3903] = 2773, - [3904] = 2672, - [3905] = 2570, - [3906] = 2574, - [3907] = 2579, - [3908] = 2568, - [3909] = 2593, - [3910] = 2594, - [3911] = 2596, - [3912] = 2745, - [3913] = 2575, - [3914] = 2732, - [3915] = 2759, - [3916] = 3064, - [3917] = 2583, - [3918] = 3068, - [3919] = 2746, - [3920] = 2661, - [3921] = 2517, - [3922] = 2662, - [3923] = 3083, - [3924] = 2747, - [3925] = 2724, - [3926] = 3093, - [3927] = 2669, - [3928] = 2681, - [3929] = 2669, - [3930] = 2748, - [3931] = 3101, - [3932] = 2518, - [3933] = 2671, - [3934] = 2695, - [3935] = 3105, - [3936] = 2674, - [3937] = 2701, - [3938] = 2702, - [3939] = 2703, - [3940] = 2515, - [3941] = 2705, - [3942] = 2517, - [3943] = 2678, - [3944] = 2707, - [3945] = 2724, - [3946] = 2774, - [3947] = 3114, - [3948] = 2717, - [3949] = 2708, - [3950] = 2694, - [3951] = 2525, - [3952] = 2536, - [3953] = 1999, - [3954] = 1996, - [3955] = 2580, - [3956] = 2715, - [3957] = 2696, - [3958] = 2719, - [3959] = 2721, - [3960] = 2723, - [3961] = 2700, - [3962] = 2767, - [3963] = 2718, - [3964] = 2544, - [3965] = 2726, - [3966] = 2545, - [3967] = 2727, - [3968] = 2728, - [3969] = 2729, - [3970] = 2730, - [3971] = 2749, - [3972] = 2750, - [3973] = 2751, - [3974] = 2528, - [3975] = 2548, - [3976] = 2731, - [3977] = 2527, - [3978] = 2980, - [3979] = 2981, - [3980] = 2984, - [3981] = 2571, - [3982] = 2985, - [3983] = 2546, - [3984] = 2990, - [3985] = 2991, - [3986] = 2547, - [3987] = 2737, - [3988] = 2040, - [3989] = 2675, - [3990] = 2679, - [3991] = 2582, - [3992] = 2631, - [3993] = 2730, - [3994] = 1998, - [3995] = 2740, - [3996] = 1995, - [3997] = 1997, - [3998] = 2548, - [3999] = 2588, - [4000] = 2005, - [4001] = 2589, - [4002] = 2590, - [4003] = 2559, - [4004] = 2697, - [4005] = 2698, - [4006] = 2598, - [4007] = 2549, - [4008] = 2741, - [4009] = 2743, - [4010] = 2728, - [4011] = 2550, - [4012] = 2745, - [4013] = 2528, - [4014] = 2746, - [4015] = 2747, - [4016] = 2748, - [4017] = 2711, - [4018] = 2752, - [4019] = 2749, - [4020] = 2582, - [4021] = 2551, - [4022] = 2553, - [4023] = 2568, - [4024] = 1995, - [4025] = 2554, - [4026] = 2583, - [4027] = 2569, - [4028] = 2753, - [4029] = 2601, - [4030] = 2606, - [4031] = 2612, - [4032] = 2561, - [4033] = 2438, - [4034] = 2621, - [4035] = 2622, - [4036] = 2635, - [4037] = 2670, - [4038] = 2624, - [4039] = 2626, - [4040] = 2628, - [4041] = 2754, - [4042] = 2563, - [4043] = 2629, - [4044] = 2565, - [4045] = 2567, - [4046] = 2682, - [4047] = 2666, - [4048] = 2687, - [4049] = 1969, - [4050] = 2755, - [4051] = 2688, - [4052] = 2752, - [4053] = 2689, - [4054] = 2638, - [4055] = 2063, - [4056] = 2704, - [4057] = 2569, - [4058] = 2709, - [4059] = 2712, - [4060] = 2742, - [4061] = 2722, - [4062] = 2733, - [4063] = 1999, - [4064] = 1996, - [4065] = 2738, - [4066] = 2753, - [4067] = 2729, - [4068] = 2754, - [4069] = 2560, - [4070] = 2673, - [4071] = 2755, - [4072] = 2750, - [4073] = 2757, - [4074] = 2699, - [4075] = 2757, - [4076] = 2540, - [4077] = 2736, - [4078] = 2637, - [4079] = 2760, - [4080] = 2451, - [4081] = 2727, - [4082] = 2570, - [4083] = 2761, - [4084] = 2731, - [4085] = 2756, - [4086] = 2758, - [4087] = 2762, - [4088] = 2631, - [4089] = 2501, - [4090] = 2763, - [4091] = 2764, - [4092] = 2765, - [4093] = 2483, - [4094] = 2579, - [4095] = 2483, - [4096] = 2593, - [4097] = 2490, - [4098] = 2494, - [4099] = 2766, - [4100] = 2495, - [4101] = 2566, - [4102] = 2541, - [4103] = 2768, - [4104] = 2770, - [4105] = 2760, - [4106] = 2490, - [4107] = 2480, - [4108] = 2534, - [4109] = 2491, - [4110] = 2773, - [4111] = 2751, - [4112] = 2576, - [4113] = 2494, - [4114] = 2577, - [4115] = 2495, - [4116] = 2480, - [4117] = 2578, - [4118] = 2051, - [4119] = 2562, - [4120] = 2737, - [4121] = 2591, - [4122] = 2594, - [4123] = 2564, - [4124] = 2572, + [3889] = 2554, + [3890] = 2555, + [3891] = 2705, + [3892] = 2770, + [3893] = 2573, + [3894] = 2597, + [3895] = 2576, + [3896] = 2577, + [3897] = 2578, + [3898] = 2579, + [3899] = 1997, + [3900] = 2581, + [3901] = 2583, + [3902] = 1998, + [3903] = 2585, + [3904] = 2586, + [3905] = 2587, + [3906] = 2588, + [3907] = 2540, + [3908] = 2600, + [3909] = 2501, + [3910] = 2493, + [3911] = 2592, + [3912] = 2594, + [3913] = 2478, + [3914] = 2479, + [3915] = 2480, + [3916] = 2481, + [3917] = 2482, + [3918] = 2483, + [3919] = 2595, + [3920] = 2596, + [3921] = 2598, + [3922] = 2042, + [3923] = 2634, + [3924] = 2715, + [3925] = 2623, + [3926] = 2631, + [3927] = 2648, + [3928] = 2650, + [3929] = 2651, + [3930] = 2653, + [3931] = 2516, + [3932] = 2744, + [3933] = 2654, + [3934] = 2655, + [3935] = 2656, + [3936] = 2658, + [3937] = 2528, + [3938] = 2529, + [3939] = 2649, + [3940] = 2484, + [3941] = 2530, + [3942] = 2532, + [3943] = 2641, + [3944] = 2677, + [3945] = 2683, + [3946] = 2563, + [3947] = 2568, + [3948] = 2574, + [3949] = 2718, + [3950] = 2685, + [3951] = 2599, + [3952] = 2614, + [3953] = 2612, + [3954] = 2624, + [3955] = 2625, + [3956] = 2644, + [3957] = 2647, + [3958] = 2652, + [3959] = 2666, + [3960] = 2698, + [3961] = 2705, + [3962] = 2686, + [3963] = 2687, + [3964] = 2546, + [3965] = 2548, + [3966] = 2552, + [3967] = 2554, + [3968] = 2555, + [3969] = 1999, + [3970] = 2697, + [3971] = 1996, + [3972] = 2593, + [3973] = 2573, + [3974] = 2543, + [3975] = 2576, + [3976] = 2577, + [3977] = 2578, + [3978] = 2579, + [3979] = 2528, + [3980] = 2581, + [3981] = 2583, + [3982] = 2713, + [3983] = 3086, + [3984] = 2585, + [3985] = 2586, + [3986] = 2587, + [3987] = 2588, + [3988] = 2592, + [3989] = 2594, + [3990] = 2595, + [3991] = 2596, + [3992] = 2598, + [3993] = 2532, + [3994] = 2600, + [3995] = 2700, + [3996] = 2701, + [3997] = 2702, + [3998] = 2703, + [3999] = 2704, + [4000] = 2706, + [4001] = 2709, + [4002] = 2634, + [4003] = 2523, + [4004] = 2728, + [4005] = 2641, + [4006] = 2714, + [4007] = 2648, + [4008] = 2650, + [4009] = 2651, + [4010] = 2653, + [4011] = 2654, + [4012] = 2655, + [4013] = 2656, + [4014] = 2658, + [4015] = 2526, + [4016] = 2720, + [4017] = 2683, + [4018] = 2685, + [4019] = 2686, + [4020] = 2687, + [4021] = 2697, + [4022] = 2523, + [4023] = 2700, + [4024] = 2701, + [4025] = 2702, + [4026] = 2703, + [4027] = 2704, + [4028] = 2706, + [4029] = 2709, + [4030] = 2526, + [4031] = 2713, + [4032] = 2714, + [4033] = 2720, + [4034] = 2729, + [4035] = 2728, + [4036] = 2729, + [4037] = 2730, + [4038] = 2731, + [4039] = 2735, + [4040] = 2738, + [4041] = 2770, + [4042] = 2742, + [4043] = 2743, + [4044] = 2745, + [4045] = 2747, + [4046] = 2749, + [4047] = 2750, + [4048] = 2751, + [4049] = 2755, + [4050] = 2757, + [4051] = 2758, + [4052] = 2759, + [4053] = 2760, + [4054] = 2761, + [4055] = 2762, + [4056] = 2597, + [4057] = 2768, + [4058] = 2517, + [4059] = 2605, + [4060] = 2617, + [4061] = 2551, + [4062] = 2591, + [4063] = 2602, + [4064] = 2688, + [4065] = 2485, + [4066] = 2672, + [4067] = 2565, + [4068] = 2637, + [4069] = 2777, + [4070] = 2746, + [4071] = 2771, + [4072] = 2553, + [4073] = 2559, + [4074] = 2567, + [4075] = 2730, + [4076] = 2740, + [4077] = 2772, + [4078] = 2776, + [4079] = 2754, + [4080] = 2690, + [4081] = 2723, + [4082] = 2580, + [4083] = 2622, + [4084] = 2630, + [4085] = 2635, + [4086] = 2640, + [4087] = 2670, + [4088] = 2675, + [4089] = 2682, + [4090] = 2695, + [4091] = 2739, + [4092] = 2742, + [4093] = 2743, + [4094] = 2055, + [4095] = 2745, + [4096] = 2747, + [4097] = 2749, + [4098] = 2750, + [4099] = 2564, + [4100] = 2566, + [4101] = 2582, + [4102] = 2590, + [4103] = 2601, + [4104] = 2603, + [4105] = 2618, + [4106] = 2751, + [4107] = 2621, + [4108] = 2755, + [4109] = 2632, + [4110] = 2639, + [4111] = 2642, + [4112] = 2645, + [4113] = 3161, + [4114] = 2757, + [4115] = 2662, + [4116] = 2667, + [4117] = 2676, + [4118] = 2717, + [4119] = 2758, + [4120] = 3163, + [4121] = 2759, + [4122] = 3177, + [4123] = 2773, + [4124] = 2760, [4125] = 2607, - [4126] = 2633, - [4127] = 2597, - [4128] = 2967, - [4129] = 2740, - [4130] = 2694, - [4131] = 2696, - [4132] = 2555, - [4133] = 2768, - [4134] = 2556, - [4135] = 2697, - [4136] = 2663, - [4137] = 2664, - [4138] = 2665, - [4139] = 1970, - [4140] = 1971, - [4141] = 2599, - [4142] = 2761, - [4143] = 2600, - [4144] = 2672, - [4145] = 2762, - [4146] = 2763, - [4147] = 2774, - [4148] = 2764, - [4149] = 2562, - [4150] = 2564, - [4151] = 2572, - [4152] = 2607, - [4153] = 2765, - [4154] = 2766, - [4155] = 2608, - [4156] = 2001, - [4157] = 2571, - [4158] = 2613, - [4159] = 2741, - [4160] = 2684, - [4161] = 2770, - [4162] = 2608, - [4163] = 2650, - [4164] = 2681, - [4165] = 2519, - [4166] = 2613, - [4167] = 2539, - [4168] = 2743, - [4169] = 2714, - [4170] = 2557, - [4171] = 2635, - [4172] = 2670, - [4173] = 2002, - [4174] = 2595, - [4175] = 2682, - [4176] = 2687, + [4126] = 2712, + [4127] = 2572, + [4128] = 2584, + [4129] = 2613, + [4130] = 2680, + [4131] = 2694, + [4132] = 2761, + [4133] = 3179, + [4134] = 2699, + [4135] = 2710, + [4136] = 2711, + [4137] = 2719, + [4138] = 2722, + [4139] = 2544, + [4140] = 2570, + [4141] = 2571, + [4142] = 2589, + [4143] = 2606, + [4144] = 2615, + [4145] = 2619, + [4146] = 2915, + [4147] = 2731, + [4148] = 2774, + [4149] = 2918, + [4150] = 2762, + [4151] = 2775, + [4152] = 2920, + [4153] = 2735, + [4154] = 2517, + [4155] = 2738, + [4156] = 2768, + [4157] = 2565, + [4158] = 2637, + [4159] = 2777, + [4160] = 2746, + [4161] = 2771, + [4162] = 2553, + [4163] = 2605, + [4164] = 2506, + [4165] = 2547, + [4166] = 2567, + [4167] = 2617, + [4168] = 2695, + [4169] = 2564, + [4170] = 2566, + [4171] = 2582, + [4172] = 2485, + [4173] = 2551, + [4174] = 2591, + [4175] = 2602, + [4176] = 2590, [4177] = 2688, - [4178] = 2689, - [4179] = 2704, - [4180] = 2709, - [4181] = 2712, - [4182] = 2722, - [4183] = 2500, - [4184] = 2596, - [4185] = 2733, - [4186] = 2552, - [4187] = 2738, - [4188] = 2560, - [4189] = 2051, - [4190] = 2684, - [4191] = 2590, - [4192] = 2598, - [4193] = 2566, - [4194] = 2525, - [4195] = 2576, - [4196] = 2577, - [4197] = 2578, - [4198] = 2628, - [4199] = 2591, - [4200] = 2597, - [4201] = 2599, - [4202] = 2536, - [4203] = 2600, - [4204] = 2008, - [4205] = 2675, - [4206] = 2000, - [4207] = 2679, - [4208] = 2629, - [4209] = 2486, - [4210] = 2698, - [4211] = 1998, - [4212] = 1997, - [4213] = 2644, - [4214] = 2644, - [4215] = 2522, - [4216] = 2645, - [4217] = 2646, - [4218] = 2650, - [4219] = 2666, - [4220] = 2673, - [4221] = 2685, - [4222] = 2645, - [4223] = 2671, - [4224] = 2674, - [4225] = 2605, - [4226] = 2685, - [4227] = 2006, - [4228] = 2695, - [4229] = 2590, - [4230] = 2555, - [4231] = 2628, - [4232] = 2629, - [4233] = 2556, - [4234] = 2004, - [4235] = 2558, - [4236] = 2632, - [4237] = 2701, - [4238] = 2557, - [4239] = 2641, - [4240] = 2642, - [4241] = 2573, - [4242] = 2647, - [4243] = 2648, - [4244] = 2649, - [4245] = 2702, - [4246] = 2652, - [4247] = 2703, - [4248] = 2595, - [4249] = 2653, - [4250] = 2605, - [4251] = 2632, - [4252] = 2574, - [4253] = 2641, - [4254] = 2642, - [4255] = 2647, - [4256] = 2705, - [4257] = 2648, - [4258] = 2649, - [4259] = 2652, - [4260] = 2575, - [4261] = 2653, - [4262] = 2654, - [4263] = 2657, - [4264] = 2659, + [4178] = 2601, + [4179] = 2734, + [4180] = 2603, + [4181] = 2618, + [4182] = 2773, + [4183] = 2672, + [4184] = 2607, + [4185] = 2712, + [4186] = 2572, + [4187] = 2584, + [4188] = 2613, + [4189] = 2616, + [4190] = 2638, + [4191] = 2668, + [4192] = 2669, + [4193] = 2699, + [4194] = 2710, + [4195] = 2711, + [4196] = 2719, + [4197] = 2722, + [4198] = 2544, + [4199] = 2559, + [4200] = 2571, + [4201] = 2616, + [4202] = 2668, + [4203] = 2669, + [4204] = 2589, + [4205] = 2649, + [4206] = 2606, + [4207] = 2610, + [4208] = 2646, + [4209] = 2684, + [4210] = 2691, + [4211] = 2707, + [4212] = 2716, + [4213] = 2721, + [4214] = 2726, + [4215] = 2769, + [4216] = 2557, + [4217] = 2708, + [4218] = 2575, + [4219] = 2661, + [4220] = 2633, + [4221] = 2696, + [4222] = 2611, + [4223] = 2545, + [4224] = 2561, + [4225] = 2615, + [4226] = 2619, + [4227] = 2623, + [4228] = 2677, + [4229] = 2631, + [4230] = 2740, + [4231] = 2772, + [4232] = 2776, + [4233] = 2754, + [4234] = 2690, + [4235] = 2723, + [4236] = 2580, + [4237] = 2622, + [4238] = 2630, + [4239] = 2635, + [4240] = 2640, + [4241] = 2670, + [4242] = 2675, + [4243] = 2682, + [4244] = 2739, + [4245] = 2562, + [4246] = 2621, + [4247] = 2632, + [4248] = 2639, + [4249] = 2642, + [4250] = 2645, + [4251] = 2662, + [4252] = 2667, + [4253] = 2717, + [4254] = 2539, + [4255] = 2492, + [4256] = 2734, + [4257] = 2610, + [4258] = 2008, + [4259] = 2006, + [4260] = 2680, + [4261] = 2694, + [4262] = 2646, + [4263] = 2684, + [4264] = 2691, [4265] = 2707, - [4266] = 2660, - [4267] = 2678, - [4268] = 2667, - [4269] = 2668, - [4270] = 2708, - [4271] = 2654, - [4272] = 2716, - [4273] = 2657, - [4274] = 2715, - [4275] = 2659, - [4276] = 2660, - [4277] = 2720, - [4278] = 2713, - [4279] = 2558, - [4280] = 2667, - [4281] = 2719, - [4282] = 2721, - [4283] = 2723, - [4284] = 2580, - [4285] = 2559, - [4286] = 2668, - [4287] = 2501, - [4288] = 2741, - [4289] = 2641, - [4290] = 2642, - [4291] = 2647, - [4292] = 2648, - [4293] = 2649, - [4294] = 2652, - [4295] = 2653, - [4296] = 2654, - [4297] = 2657, - [4298] = 2659, - [4299] = 2660, - [4300] = 2667, - [4301] = 2668, - [4302] = 2716, - [4303] = 2736, - [4304] = 2005, - [4305] = 2720, - [4306] = 2713, - [4307] = 2539, - [4308] = 2500, - [4309] = 2522, - [4310] = 2483, - [4311] = 2509, - [4312] = 2518, - [4313] = 2527, - [4314] = 2494, - [4315] = 2495, - [4316] = 2568, - [4317] = 2583, - [4318] = 2480, - [4319] = 2534, - [4320] = 2486, - [4321] = 2501, - [4322] = 2515, - [4323] = 2681, - [4324] = 2490, - [4325] = 2724, - [4326] = 2491, - [4327] = 2005, - [4328] = 2012, - [4329] = 2020, - [4330] = 2010, - [4331] = 2023, - [4332] = 2026, - [4333] = 2027, - [4334] = 2015, - [4335] = 2021, - [4336] = 2016, - [4337] = 2018, - [4338] = 2014, - [4339] = 2022, - [4340] = 2028, - [4341] = 2017, - [4342] = 2063, - [4343] = 1969, - [4344] = 1995, - [4345] = 1999, - [4346] = 1996, - [4347] = 2006, - [4348] = 2004, - [4349] = 1998, - [4350] = 1997, - [4351] = 2007, - [4352] = 2009, - [4353] = 2003, - [4354] = 1970, - [4355] = 1971, - [4356] = 2001, - [4357] = 2002, - [4358] = 2008, - [4359] = 2000, - [4360] = 2590, - [4361] = 2598, - [4362] = 2628, - [4363] = 2629, - [4364] = 2357, - [4365] = 2373, - [4366] = 2675, - [4367] = 2679, - [4368] = 2756, - [4369] = 2758, - [4370] = 2571, - [4371] = 2598, - [4372] = 2573, - [4373] = 2574, - [4374] = 2575, - [4375] = 2580, - [4376] = 3277, - [4377] = 2588, - [4378] = 2589, - [4379] = 2601, - [4380] = 2606, - [4381] = 2612, - [4382] = 2621, - [4383] = 2622, - [4384] = 2624, - [4385] = 2626, - [4386] = 3286, - [4387] = 3265, - [4388] = 3271, - [4389] = 2637, - [4390] = 2638, - [4391] = 2663, - [4392] = 2664, - [4393] = 2665, - [4394] = 2672, - [4395] = 2695, - [4396] = 2701, - [4397] = 2702, - [4398] = 2703, - [4399] = 2705, - [4400] = 2707, - [4401] = 2708, - [4402] = 2715, - [4403] = 2719, - [4404] = 2721, - [4405] = 2723, - [4406] = 2726, - [4407] = 2727, - [4408] = 2728, - [4409] = 2729, - [4410] = 2730, - [4411] = 2731, - [4412] = 2737, - [4413] = 2631, - [4414] = 2633, - [4415] = 2740, - [4416] = 2743, - [4417] = 2745, - [4418] = 2746, - [4419] = 2605, - [4420] = 2747, - [4421] = 2748, - [4422] = 2749, - [4423] = 3252, - [4424] = 3253, - [4425] = 3182, - [4426] = 3183, - [4427] = 2632, - [4428] = 2641, - [4429] = 2642, - [4430] = 2647, - [4431] = 2648, - [4432] = 2649, - [4433] = 2652, - [4434] = 2752, - [4435] = 2653, - [4436] = 2654, - [4437] = 2657, - [4438] = 2659, - [4439] = 2660, - [4440] = 2753, - [4441] = 2754, - [4442] = 2755, - [4443] = 2667, - [4444] = 2668, - [4445] = 2757, - [4446] = 2760, - [4447] = 2761, - [4448] = 2632, - [4449] = 2763, - [4450] = 2764, - [4451] = 2765, - [4452] = 2766, - [4453] = 2768, - [4454] = 2770, - [4455] = 2773, - [4456] = 2562, - [4457] = 2564, - [4458] = 2572, - [4459] = 2607, - [4460] = 2716, - [4461] = 2697, - [4462] = 2698, - [4463] = 2608, - [4464] = 2613, - [4465] = 2635, - [4466] = 2670, - [4467] = 2682, - [4468] = 2687, - [4469] = 2688, - [4470] = 2689, - [4471] = 2704, - [4472] = 2709, - [4473] = 2720, - [4474] = 2712, - [4475] = 2722, - [4476] = 2733, - [4477] = 2738, - [4478] = 2560, - [4479] = 2713, - [4480] = 2566, - [4481] = 2576, - [4482] = 2577, - [4483] = 2578, - [4484] = 2591, - [4485] = 2597, - [4486] = 2599, - [4487] = 2600, - [4488] = 2644, - [4489] = 2645, - [4490] = 2646, - [4491] = 2650, - [4492] = 2666, - [4493] = 2673, - [4494] = 2684, - [4495] = 2582, - [4496] = 2685, - [4497] = 2552, - [4498] = 2555, - [4499] = 2556, - [4500] = 2557, - [4501] = 2019, - [4502] = 2558, - [4503] = 2559, - [4504] = 2561, - [4505] = 2563, - [4506] = 2565, - [4507] = 2567, - [4508] = 2025, - [4509] = 2013, - [4510] = 2528, - [4511] = 2541, - [4512] = 2536, - [4513] = 2570, - [4514] = 2579, - [4515] = 2593, - [4516] = 2594, - [4517] = 2595, - [4518] = 2007, - [4519] = 2596, - [4520] = 2616, - [4521] = 2620, - [4522] = 2639, - [4523] = 2001, - [4524] = 2002, - [4525] = 2008, - [4526] = 2000, - [4527] = 2655, - [4528] = 2658, - [4529] = 2501, - [4530] = 2483, - [4531] = 2490, - [4532] = 2494, - [4533] = 2495, - [4534] = 2480, - [4535] = 2569, - [4536] = 2661, - [4537] = 2662, - [4538] = 2669, - [4539] = 2671, - [4540] = 2024, - [4541] = 2674, - [4542] = 2678, - [4543] = 2774, - [4544] = 2694, - [4545] = 2696, - [4546] = 2699, - [4547] = 2700, - [4548] = 2711, - [4549] = 2011, - [4550] = 2714, - [4551] = 2717, - [4552] = 2718, - [4553] = 2732, - [4554] = 2483, - [4555] = 2517, - [4556] = 2494, - [4557] = 2495, - [4558] = 2540, - [4559] = 2480, - [4560] = 2525, - [4561] = 2501, - [4562] = 2490, - [4563] = 2519, - [4564] = 2003, - [4565] = 2742, - [4566] = 2750, - [4567] = 2751, - [4568] = 2759, - [4569] = 2767, - [4570] = 2544, - [4571] = 2545, - [4572] = 2546, - [4573] = 2547, - [4574] = 2548, - [4575] = 2549, - [4576] = 2550, - [4577] = 2551, - [4578] = 2553, - [4579] = 2554, - [4580] = 2836, - [4581] = 2605, - [4582] = 2063, - [4583] = 2762, - [4584] = 2763, - [4585] = 2595, - [4586] = 2596, - [4587] = 2616, - [4588] = 2620, - [4589] = 2639, - [4590] = 2655, - [4591] = 2658, - [4592] = 2661, - [4593] = 2662, - [4594] = 2724, - [4595] = 2669, - [4596] = 2671, - [4597] = 2674, - [4598] = 2678, - [4599] = 2774, - [4600] = 2694, - [4601] = 2696, - [4602] = 2699, - [4603] = 2700, - [4604] = 2711, - [4605] = 2714, - [4606] = 2717, - [4607] = 2718, - [4608] = 2732, - [4609] = 2742, - [4610] = 2750, - [4611] = 2751, - [4612] = 2759, - [4613] = 2767, - [4614] = 2544, - [4615] = 2545, - [4616] = 2546, - [4617] = 2547, - [4618] = 2548, - [4619] = 2549, - [4620] = 2550, - [4621] = 2551, - [4622] = 2553, - [4623] = 2554, - [4624] = 3064, - [4625] = 3068, - [4626] = 3083, - [4627] = 3093, - [4628] = 3101, - [4629] = 3105, - [4630] = 3114, - [4631] = 2633, - [4632] = 2980, - [4633] = 2981, - [4634] = 2984, - [4635] = 2985, - [4636] = 2990, - [4637] = 2991, - [4638] = 2571, - [4639] = 2357, - [4640] = 2675, - [4641] = 2679, - [4642] = 2373, - [4643] = 2631, - [4644] = 2697, - [4645] = 2698, - [4646] = 2519, - [4647] = 2582, - [4648] = 2569, - [4649] = 2357, - [4650] = 2373, - [4651] = 2519, - [4652] = 2006, - [4653] = 2004, - [4654] = 2007, - [4655] = 2009, - [4656] = 2003, - [4657] = 2040, - [4658] = 2002, - [4659] = 2001, - [4660] = 2002, - [4661] = 2008, - [4662] = 2000, - [4663] = 2012, - [4664] = 2005, - [4665] = 2024, - [4666] = 2020, - [4667] = 2010, - [4668] = 2019, - [4669] = 2011, - [4670] = 2023, - [4671] = 2026, - [4672] = 2027, - [4673] = 2015, - [4674] = 2025, - [4675] = 2021, - [4676] = 2016, - [4677] = 2018, - [4678] = 2013, - [4679] = 2014, - [4680] = 2022, - [4681] = 2028, - [4682] = 2017, - [4683] = 4683, - [4684] = 4683, - [4685] = 2483, - [4686] = 2494, - [4687] = 2495, - [4688] = 2480, - [4689] = 2534, - [4690] = 2008, - [4691] = 2967, - [4692] = 4683, - [4693] = 2000, - [4694] = 2573, - [4695] = 2574, - [4696] = 2575, - [4697] = 2580, - [4698] = 2588, - [4699] = 2589, - [4700] = 4683, - [4701] = 2601, - [4702] = 2606, - [4703] = 4683, - [4704] = 2612, - [4705] = 2621, - [4706] = 2622, - [4707] = 2624, - [4708] = 2626, - [4709] = 4683, - [4710] = 2501, - [4711] = 2491, - [4712] = 4683, - [4713] = 2637, - [4714] = 2638, - [4715] = 2663, - [4716] = 2664, - [4717] = 2665, - [4718] = 2672, - [4719] = 2695, - [4720] = 2701, - [4721] = 2702, - [4722] = 2703, - [4723] = 2705, - [4724] = 4683, - [4725] = 2517, - [4726] = 2490, - [4727] = 4683, - [4728] = 2707, - [4729] = 2708, - [4730] = 2715, - [4731] = 2719, - [4732] = 2594, - [4733] = 2723, - [4734] = 2726, - [4735] = 2727, - [4736] = 2728, - [4737] = 2729, - [4738] = 2730, - [4739] = 2528, - [4740] = 2731, - [4741] = 4683, - [4742] = 2737, - [4743] = 4683, - [4744] = 2740, - [4745] = 2736, - [4746] = 2001, - [4747] = 4683, - [4748] = 4683, - [4749] = 2741, - [4750] = 2743, - [4751] = 2745, - [4752] = 2746, - [4753] = 2747, - [4754] = 2748, - [4755] = 2749, - [4756] = 4683, - [4757] = 2752, - [4758] = 2753, - [4759] = 2754, - [4760] = 2755, - [4761] = 2757, - [4762] = 1995, - [4763] = 2540, - [4764] = 2756, - [4765] = 2758, - [4766] = 1999, - [4767] = 1996, - [4768] = 2412, - [4769] = 2590, - [4770] = 2628, - [4771] = 2629, - [4772] = 2760, - [4773] = 2761, - [4774] = 2762, - [4775] = 2528, - [4776] = 2541, - [4777] = 1998, - [4778] = 1997, - [4779] = 2536, - [4780] = 2421, - [4781] = 2764, - [4782] = 2765, - [4783] = 2766, - [4784] = 2541, - [4785] = 2768, - [4786] = 2770, - [4787] = 2773, - [4788] = 2590, - [4789] = 2598, - [4790] = 2628, - [4791] = 2629, - [4792] = 2562, - [4793] = 2564, - [4794] = 2572, - [4795] = 2607, - [4796] = 2605, - [4797] = 2632, - [4798] = 2641, - [4799] = 2642, - [4800] = 2647, - [4801] = 2648, - [4802] = 2649, - [4803] = 2652, - [4804] = 2653, - [4805] = 2654, - [4806] = 2657, - [4807] = 2659, - [4808] = 2660, - [4809] = 2667, - [4810] = 2668, - [4811] = 2716, - [4812] = 2720, - [4813] = 2713, - [4814] = 2568, - [4815] = 2392, - [4816] = 2608, - [4817] = 2583, - [4818] = 2613, - [4819] = 2635, - [4820] = 2670, - [4821] = 2682, - [4822] = 2007, - [4823] = 2687, - [4824] = 2001, - [4825] = 2002, - [4826] = 2008, - [4827] = 2000, - [4828] = 2688, - [4829] = 2689, - [4830] = 2704, - [4831] = 2709, - [4832] = 2712, - [4833] = 2722, - [4834] = 2006, - [4835] = 2004, - [4836] = 2733, - [4837] = 2738, - [4838] = 2560, - [4839] = 2566, - [4840] = 2525, - [4841] = 2007, - [4842] = 2009, - [4843] = 2576, - [4844] = 2577, - [4845] = 2578, - [4846] = 2591, - [4847] = 2597, - [4848] = 2599, - [4849] = 2536, - [4850] = 2600, - [4851] = 2003, - [4852] = 2517, - [4853] = 2540, - [4854] = 2525, - [4855] = 2644, - [4856] = 2645, - [4857] = 2646, - [4858] = 2650, - [4859] = 2666, - [4860] = 2673, - [4861] = 2684, - [4862] = 2003, - [4863] = 2685, - [4864] = 2681, - [4865] = 2552, - [4866] = 2555, - [4867] = 2556, - [4868] = 2557, - [4869] = 2558, - [4870] = 2559, - [4871] = 2561, - [4872] = 2563, - [4873] = 2565, - [4874] = 2567, - [4875] = 2570, - [4876] = 2579, - [4877] = 2593, - [4878] = 2721, - [4879] = 2015, - [4880] = 2016, - [4881] = 2018, - [4882] = 2014, - [4883] = 2022, - [4884] = 2028, - [4885] = 2017, - [4886] = 2006, - [4887] = 2642, - [4888] = 2004, - [4889] = 2430, - [4890] = 2007, - [4891] = 2571, - [4892] = 2009, - [4893] = 2003, - [4894] = 2442, - [4895] = 2024, - [4896] = 2647, - [4897] = 2648, - [4898] = 2649, - [4899] = 2652, - [4900] = 2445, - [4901] = 2653, - [4902] = 2442, - [4903] = 2464, - [4904] = 2025, - [4905] = 2654, - [4906] = 2657, - [4907] = 2659, - [4908] = 2660, - [4909] = 2667, - [4910] = 2668, - [4911] = 2005, - [4912] = 2019, - [4913] = 3265, - [4914] = 2716, - [4915] = 3271, - [4916] = 2605, - [4917] = 2720, - [4918] = 2713, - [4919] = 2632, - [4920] = 2019, - [4921] = 2392, - [4922] = 2641, - [4923] = 2642, - [4924] = 2647, - [4925] = 2001, - [4926] = 2002, - [4927] = 2008, - [4928] = 2000, - [4929] = 2001, - [4930] = 2002, - [4931] = 2008, - [4932] = 2000, - [4933] = 2040, - [4934] = 2648, - [4935] = 3252, - [4936] = 3253, - [4937] = 3182, - [4938] = 2649, - [4939] = 2598, - [4940] = 2652, - [4941] = 2653, - [4942] = 2430, - [4943] = 2654, - [4944] = 2021, - [4945] = 2007, - [4946] = 3183, - [4947] = 2013, - [4948] = 2464, - [4949] = 2024, - [4950] = 2001, - [4951] = 2002, - [4952] = 2008, - [4953] = 2000, - [4954] = 2357, - [4955] = 2373, - [4956] = 2659, - [4957] = 2756, - [4958] = 2483, - [4959] = 2494, - [4960] = 2495, - [4961] = 2480, - [4962] = 2007, - [4963] = 2003, - [4964] = 2758, - [4965] = 2660, - [4966] = 2357, - [4967] = 2373, - [4968] = 2012, - [4969] = 2667, - [4970] = 2668, - [4971] = 2412, - [4972] = 2011, - [4973] = 2421, - [4974] = 2020, - [4975] = 2010, - [4976] = 2590, - [4977] = 2598, - [4978] = 2605, - [4979] = 2011, - [4980] = 2023, - [4981] = 2026, - [4982] = 2027, - [4983] = 2028, - [4984] = 2445, - [4985] = 2015, - [4986] = 2716, - [4987] = 2720, - [4988] = 2501, - [4989] = 2490, - [4990] = 2021, - [4991] = 2016, - [4992] = 2017, - [4993] = 2018, - [4994] = 2051, - [4995] = 2628, - [4996] = 2629, - [4997] = 2713, - [4998] = 2014, - [4999] = 2022, - [5000] = 2003, - [5001] = 2357, - [5002] = 2373, - [5003] = 2012, - [5004] = 2013, - [5005] = 2025, - [5006] = 2438, - [5007] = 2632, - [5008] = 2020, - [5009] = 2010, - [5010] = 2023, - [5011] = 2026, - [5012] = 2027, - [5013] = 3277, - [5014] = 2675, - [5015] = 2451, - [5016] = 2679, - [5017] = 2641, - [5018] = 3286, - [5019] = 2657, - [5020] = 2501, - [5021] = 2438, - [5022] = 2024, - [5023] = 2464, - [5024] = 2451, - [5025] = 2007, - [5026] = 2525, - [5027] = 2536, - [5028] = 2430, - [5029] = 2009, - [5030] = 2019, - [5031] = 2534, - [5032] = 2412, - [5033] = 2412, - [5034] = 2421, - [5035] = 2392, - [5036] = 2515, - [5037] = 2011, - [5038] = 2028, - [5039] = 2040, - [5040] = 2040, - [5041] = 2442, - [5042] = 2464, - [5043] = 2421, - [5044] = 2025, - [5045] = 2017, - [5046] = 2501, - [5047] = 2490, - [5048] = 2001, - [5049] = 2002, - [5050] = 2500, - [5051] = 2522, - [5052] = 2430, - [5053] = 2008, - [5054] = 2013, - [5055] = 2012, - [5056] = 2000, - [5057] = 2519, - [5058] = 1970, - [5059] = 2509, - [5060] = 2020, - [5061] = 2412, - [5062] = 2010, - [5063] = 2517, - [5064] = 2357, - [5065] = 2518, - [5066] = 2527, - [5067] = 2528, - [5068] = 2491, - [5069] = 2063, - [5070] = 2519, - [5071] = 2495, - [5072] = 2480, - [5073] = 2490, - [5074] = 2494, - [5075] = 2495, - [5076] = 2480, - [5077] = 2023, - [5078] = 2026, - [5079] = 2051, - [5080] = 2445, - [5081] = 2027, - [5082] = 1971, + [4266] = 2716, + [4267] = 2570, + [4268] = 2721, + [4269] = 2726, + [4270] = 2769, + [4271] = 2557, + [4272] = 2708, + [4273] = 2575, + [4274] = 2661, + [4275] = 2633, + [4276] = 2696, + [4277] = 2432, + [4278] = 2009, + [4279] = 2001, + [4280] = 2611, + [4281] = 2007, + [4282] = 2545, + [4283] = 2547, + [4284] = 2561, + [4285] = 1997, + [4286] = 2715, + [4287] = 2549, + [4288] = 2949, + [4289] = 2950, + [4290] = 2965, + [4291] = 2966, + [4292] = 2549, + [4293] = 2876, + [4294] = 2968, + [4295] = 1970, + [4296] = 2562, + [4297] = 2445, + [4298] = 1995, + [4299] = 1971, + [4300] = 2539, + [4301] = 2073, + [4302] = 2744, + [4303] = 2774, + [4304] = 2775, + [4305] = 1998, + [4306] = 2006, + [4307] = 2729, + [4308] = 2730, + [4309] = 2731, + [4310] = 2768, + [4311] = 2575, + [4312] = 2003, + [4313] = 2661, + [4314] = 2605, + [4315] = 2633, + [4316] = 2696, + [4317] = 2579, + [4318] = 2002, + [4319] = 2581, + [4320] = 2583, + [4321] = 2000, + [4322] = 2617, + [4323] = 2551, + [4324] = 2584, + [4325] = 2591, + [4326] = 2602, + [4327] = 2482, + [4328] = 2585, + [4329] = 2586, + [4330] = 2587, + [4331] = 2588, + [4332] = 2688, + [4333] = 2529, + [4334] = 2592, + [4335] = 2711, + [4336] = 2594, + [4337] = 2595, + [4338] = 2596, + [4339] = 2073, + [4340] = 2672, + [4341] = 2565, + [4342] = 2637, + [4343] = 2777, + [4344] = 2746, + [4345] = 2771, + [4346] = 2553, + [4347] = 2598, + [4348] = 2735, + [4349] = 2699, + [4350] = 2600, + [4351] = 2634, + [4352] = 2613, + [4353] = 2649, + [4354] = 2744, + [4355] = 2680, + [4356] = 2719, + [4357] = 2610, + [4358] = 2641, + [4359] = 2530, + [4360] = 2738, + [4361] = 2717, + [4362] = 2715, + [4363] = 2710, + [4364] = 2563, + [4365] = 2648, + [4366] = 2650, + [4367] = 2651, + [4368] = 2568, + [4369] = 2653, + [4370] = 2654, + [4371] = 2655, + [4372] = 2656, + [4373] = 2658, + [4374] = 2742, + [4375] = 2743, + [4376] = 2574, + [4377] = 3227, + [4378] = 2707, + [4379] = 2716, + [4380] = 2616, + [4381] = 2559, + [4382] = 2646, + [4383] = 3229, + [4384] = 2638, + [4385] = 2547, + [4386] = 3230, + [4387] = 2567, + [4388] = 3231, + [4389] = 2745, + [4390] = 2747, + [4391] = 2749, + [4392] = 2750, + [4393] = 2751, + [4394] = 2755, + [4395] = 2757, + [4396] = 2610, + [4397] = 2718, + [4398] = 1971, + [4399] = 2005, + [4400] = 3291, + [4401] = 2611, + [4402] = 2684, + [4403] = 2484, + [4404] = 2501, + [4405] = 2691, + [4406] = 2758, + [4407] = 2759, + [4408] = 2707, + [4409] = 2716, + [4410] = 2721, + [4411] = 2726, + [4412] = 2668, + [4413] = 2769, + [4414] = 2557, + [4415] = 2532, + [4416] = 2526, + [4417] = 2485, + [4418] = 2708, + [4419] = 2575, + [4420] = 2661, + [4421] = 2760, + [4422] = 2669, + [4423] = 2633, + [4424] = 2696, + [4425] = 2382, + [4426] = 2363, + [4427] = 2734, + [4428] = 2483, + [4429] = 2783, + [4430] = 2722, + [4431] = 2562, + [4432] = 2544, + [4433] = 2570, + [4434] = 2571, + [4435] = 2511, + [4436] = 2589, + [4437] = 2606, + [4438] = 2694, + [4439] = 1995, + [4440] = 2009, + [4441] = 2599, + [4442] = 2614, + [4443] = 2561, + [4444] = 2615, + [4445] = 1997, + [4446] = 2761, + [4447] = 2619, + [4448] = 2762, + [4449] = 2004, + [4450] = 1998, + [4451] = 2003, + [4452] = 2612, + [4453] = 2002, + [4454] = 2000, + [4455] = 2624, + [4456] = 2625, + [4457] = 2646, + [4458] = 2773, + [4459] = 2683, + [4460] = 2740, + [4461] = 2772, + [4462] = 2776, + [4463] = 2685, + [4464] = 2008, + [4465] = 2644, + [4466] = 2647, + [4467] = 2652, + [4468] = 2666, + [4469] = 2720, + [4470] = 2728, + [4471] = 1999, + [4472] = 2623, + [4473] = 2478, + [4474] = 2479, + [4475] = 2480, + [4476] = 2481, + [4477] = 2482, + [4478] = 2483, + [4479] = 2631, + [4480] = 2021, + [4481] = 1996, + [4482] = 2686, + [4483] = 2024, + [4484] = 2009, + [4485] = 2001, + [4486] = 2754, + [4487] = 2611, + [4488] = 2690, + [4489] = 2687, + [4490] = 2593, + [4491] = 3321, + [4492] = 3260, + [4493] = 3261, + [4494] = 2543, + [4495] = 2007, + [4496] = 2549, + [4497] = 1970, + [4498] = 2723, + [4499] = 2698, + [4500] = 2705, + [4501] = 2480, + [4502] = 2546, + [4503] = 2548, + [4504] = 2552, + [4505] = 2554, + [4506] = 2580, + [4507] = 1969, + [4508] = 2622, + [4509] = 2630, + [4510] = 2555, + [4511] = 2635, + [4512] = 2721, + [4513] = 2638, + [4514] = 2016, + [4515] = 2012, + [4516] = 2726, + [4517] = 2013, + [4518] = 2010, + [4519] = 2011, + [4520] = 2545, + [4521] = 2697, + [4522] = 2027, + [4523] = 2023, + [4524] = 2017, + [4525] = 2015, + [4526] = 2005, + [4527] = 2025, + [4528] = 2073, + [4529] = 2026, + [4530] = 2028, + [4531] = 2769, + [4532] = 2492, + [4533] = 2561, + [4534] = 2700, + [4535] = 2701, + [4536] = 2702, + [4537] = 2540, + [4538] = 2022, + [4539] = 2703, + [4540] = 2704, + [4541] = 2493, + [4542] = 2478, + [4543] = 2557, + [4544] = 2712, + [4545] = 2572, + [4546] = 2481, + [4547] = 2004, + [4548] = 2640, + [4549] = 2670, + [4550] = 2573, + [4551] = 2675, + [4552] = 2682, + [4553] = 2695, + [4554] = 2739, + [4555] = 2506, + [4556] = 2564, + [4557] = 2566, + [4558] = 2582, + [4559] = 2590, + [4560] = 2601, + [4561] = 2545, + [4562] = 2708, + [4563] = 2774, + [4564] = 2775, + [4565] = 2770, + [4566] = 2603, + [4567] = 2618, + [4568] = 2597, + [4569] = 2621, + [4570] = 2632, + [4571] = 2014, + [4572] = 2479, + [4573] = 2018, + [4574] = 2576, + [4575] = 2479, + [4576] = 2528, + [4577] = 2481, + [4578] = 2482, + [4579] = 2523, + [4580] = 2483, + [4581] = 2517, + [4582] = 2478, + [4583] = 2480, + [4584] = 2577, + [4585] = 2020, + [4586] = 2539, + [4587] = 2684, + [4588] = 2706, + [4589] = 2709, + [4590] = 2691, + [4591] = 2007, + [4592] = 2578, + [4593] = 2639, + [4594] = 2713, + [4595] = 2516, + [4596] = 2642, + [4597] = 2645, + [4598] = 2662, + [4599] = 2677, + [4600] = 2714, + [4601] = 2667, + [4602] = 2019, + [4603] = 2676, + [4604] = 2607, + [4605] = 2697, + [4606] = 2706, + [4607] = 2581, + [4608] = 2709, + [4609] = 2526, + [4610] = 4610, + [4611] = 2713, + [4612] = 2714, + [4613] = 2539, + [4614] = 2007, + [4615] = 2616, + [4616] = 2668, + [4617] = 2669, + [4618] = 2720, + [4619] = 2547, + [4620] = 2728, + [4621] = 2729, + [4622] = 2730, + [4623] = 2731, + [4624] = 4610, + [4625] = 2004, + [4626] = 2532, + [4627] = 2770, + [4628] = 2526, + [4629] = 2485, + [4630] = 2649, + [4631] = 2735, + [4632] = 2597, + [4633] = 2738, + [4634] = 2003, + [4635] = 2742, + [4636] = 4610, + [4637] = 2398, + [4638] = 2743, + [4639] = 2745, + [4640] = 2747, + [4641] = 2002, + [4642] = 2478, + [4643] = 2000, + [4644] = 2583, + [4645] = 2506, + [4646] = 2024, + [4647] = 2573, + [4648] = 2005, + [4649] = 4610, + [4650] = 2020, + [4651] = 2016, + [4652] = 2012, + [4653] = 2019, + [4654] = 2023, + [4655] = 2013, + [4656] = 2010, + [4657] = 2011, + [4658] = 2749, + [4659] = 2027, + [4660] = 2021, + [4661] = 2017, + [4662] = 2015, + [4663] = 2750, + [4664] = 2025, + [4665] = 2007, + [4666] = 4610, + [4667] = 2003, + [4668] = 2022, + [4669] = 3086, + [4670] = 2026, + [4671] = 2028, + [4672] = 2585, + [4673] = 2586, + [4674] = 2734, + [4675] = 2014, + [4676] = 2018, + [4677] = 2751, + [4678] = 2755, + [4679] = 2757, + [4680] = 2480, + [4681] = 4610, + [4682] = 2758, + [4683] = 2759, + [4684] = 2760, + [4685] = 2761, + [4686] = 2762, + [4687] = 2768, + [4688] = 2517, + [4689] = 2605, + [4690] = 4610, + [4691] = 2617, + [4692] = 2551, + [4693] = 2591, + [4694] = 2602, + [4695] = 2949, + [4696] = 2950, + [4697] = 2965, + [4698] = 2966, + [4699] = 2876, + [4700] = 4610, + [4701] = 2688, + [4702] = 2485, + [4703] = 2672, + [4704] = 2616, + [4705] = 2638, + [4706] = 2668, + [4707] = 2669, + [4708] = 2565, + [4709] = 2637, + [4710] = 2777, + [4711] = 2746, + [4712] = 2771, + [4713] = 2553, + [4714] = 2559, + [4715] = 2968, + [4716] = 2382, + [4717] = 2363, + [4718] = 4610, + [4719] = 2567, + [4720] = 2677, + [4721] = 2587, + [4722] = 2610, + [4723] = 2646, + [4724] = 2588, + [4725] = 2684, + [4726] = 2691, + [4727] = 2707, + [4728] = 2716, + [4729] = 2721, + [4730] = 2726, + [4731] = 2769, + [4732] = 2557, + [4733] = 2708, + [4734] = 2575, + [4735] = 2661, + [4736] = 2633, + [4737] = 2696, + [4738] = 2611, + [4739] = 2740, + [4740] = 2772, + [4741] = 2545, + [4742] = 2561, + [4743] = 2776, + [4744] = 2754, + [4745] = 2690, + [4746] = 2723, + [4747] = 4610, + [4748] = 2580, + [4749] = 2622, + [4750] = 2002, + [4751] = 2630, + [4752] = 2635, + [4753] = 2640, + [4754] = 2670, + [4755] = 2675, + [4756] = 2682, + [4757] = 2695, + [4758] = 2739, + [4759] = 2564, + [4760] = 2566, + [4761] = 4610, + [4762] = 2582, + [4763] = 2590, + [4764] = 2601, + [4765] = 2009, + [4766] = 2603, + [4767] = 2618, + [4768] = 2562, + [4769] = 2006, + [4770] = 2632, + [4771] = 2639, + [4772] = 2642, + [4773] = 2645, + [4774] = 2662, + [4775] = 2667, + [4776] = 2004, + [4777] = 2003, + [4778] = 2002, + [4779] = 2000, + [4780] = 2676, + [4781] = 2717, + [4782] = 2773, + [4783] = 2607, + [4784] = 2712, + [4785] = 2572, + [4786] = 2584, + [4787] = 2613, + [4788] = 2680, + [4789] = 2000, + [4790] = 2694, + [4791] = 2008, + [4792] = 4610, + [4793] = 2006, + [4794] = 2004, + [4795] = 2699, + [4796] = 2710, + [4797] = 2711, + [4798] = 2563, + [4799] = 2719, + [4800] = 2722, + [4801] = 2544, + [4802] = 2570, + [4803] = 2571, + [4804] = 2589, + [4805] = 2606, + [4806] = 2615, + [4807] = 2619, + [4808] = 4610, + [4809] = 2592, + [4810] = 3161, + [4811] = 2594, + [4812] = 2595, + [4813] = 2568, + [4814] = 3163, + [4815] = 2574, + [4816] = 2596, + [4817] = 2598, + [4818] = 2532, + [4819] = 2600, + [4820] = 2479, + [4821] = 2718, + [4822] = 2481, + [4823] = 2482, + [4824] = 2483, + [4825] = 2511, + [4826] = 2576, + [4827] = 2577, + [4828] = 2578, + [4829] = 2774, + [4830] = 2775, + [4831] = 2634, + [4832] = 2009, + [4833] = 2001, + [4834] = 2382, + [4835] = 2599, + [4836] = 2363, + [4837] = 2614, + [4838] = 2009, + [4839] = 2001, + [4840] = 2579, + [4841] = 2549, + [4842] = 2612, + [4843] = 2539, + [4844] = 2624, + [4845] = 2641, + [4846] = 2625, + [4847] = 2715, + [4848] = 2644, + [4849] = 2647, + [4850] = 2652, + [4851] = 2666, + [4852] = 1995, + [4853] = 2648, + [4854] = 2650, + [4855] = 2651, + [4856] = 2653, + [4857] = 2654, + [4858] = 2528, + [4859] = 3177, + [4860] = 2655, + [4861] = 3179, + [4862] = 1997, + [4863] = 1998, + [4864] = 2528, + [4865] = 2523, + [4866] = 2517, + [4867] = 2656, + [4868] = 2915, + [4869] = 2918, + [4870] = 2422, + [4871] = 2920, + [4872] = 2658, + [4873] = 2698, + [4874] = 2705, + [4875] = 2546, + [4876] = 2548, + [4877] = 2683, + [4878] = 2685, + [4879] = 2686, + [4880] = 2687, + [4881] = 2552, + [4882] = 2523, + [4883] = 2554, + [4884] = 2555, + [4885] = 2593, + [4886] = 4610, + [4887] = 2543, + [4888] = 2700, + [4889] = 2623, + [4890] = 2631, + [4891] = 2744, + [4892] = 2042, + [4893] = 2008, + [4894] = 2007, + [4895] = 2701, + [4896] = 2702, + [4897] = 2703, + [4898] = 1999, + [4899] = 1996, + [4900] = 2704, + [4901] = 2417, + [4902] = 2621, + [4903] = 2014, + [4904] = 2708, + [4905] = 2445, + [4906] = 2012, + [4907] = 2721, + [4908] = 2557, + [4909] = 2545, + [4910] = 2007, + [4911] = 2382, + [4912] = 2575, + [4913] = 2417, + [4914] = 2363, + [4915] = 2055, + [4916] = 2015, + [4917] = 2020, + [4918] = 2708, + [4919] = 2382, + [4920] = 2363, + [4921] = 2638, + [4922] = 2611, + [4923] = 2575, + [4924] = 2661, + [4925] = 3321, + [4926] = 2021, + [4927] = 2646, + [4928] = 2726, + [4929] = 2027, + [4930] = 2633, + [4931] = 2439, + [4932] = 2696, + [4933] = 2018, + [4934] = 2022, + [4935] = 2021, + [4936] = 2016, + [4937] = 2633, + [4938] = 2684, + [4939] = 2545, + [4940] = 3291, + [4941] = 2769, + [4942] = 2017, + [4943] = 2691, + [4944] = 2025, + [4945] = 2023, + [4946] = 3261, + [4947] = 2707, + [4948] = 2561, + [4949] = 2013, + [4950] = 2010, + [4951] = 2623, + [4952] = 2616, + [4953] = 2631, + [4954] = 2638, + [4955] = 2009, + [4956] = 2027, + [4957] = 2428, + [4958] = 2017, + [4959] = 2432, + [4960] = 2015, + [4961] = 2668, + [4962] = 2016, + [4963] = 2669, + [4964] = 2012, + [4965] = 3230, + [4966] = 2023, + [4967] = 2382, + [4968] = 3231, + [4969] = 2025, + [4970] = 2009, + [4971] = 2007, + [4972] = 2561, + [4973] = 2013, + [4974] = 2004, + [4975] = 2398, + [4976] = 2026, + [4977] = 2003, + [4978] = 2022, + [4979] = 2002, + [4980] = 2000, + [4981] = 2439, + [4982] = 2004, + [4983] = 2003, + [4984] = 2002, + [4985] = 2000, + [4986] = 2427, + [4987] = 2429, + [4988] = 2427, + [4989] = 2611, + [4990] = 2019, + [4991] = 2478, + [4992] = 2480, + [4993] = 3260, + [4994] = 2429, + [4995] = 2010, + [4996] = 2549, + [4997] = 2610, + [4998] = 2020, + [4999] = 2018, + [5000] = 2019, + [5001] = 2026, + [5002] = 3227, + [5003] = 3229, + [5004] = 2696, + [5005] = 2661, + [5006] = 2004, + [5007] = 2428, + [5008] = 2610, + [5009] = 2003, + [5010] = 2002, + [5011] = 2363, + [5012] = 2011, + [5013] = 2011, + [5014] = 2008, + [5015] = 2024, + [5016] = 2028, + [5017] = 2007, + [5018] = 2014, + [5019] = 2028, + [5020] = 2024, + [5021] = 2006, + [5022] = 2000, + [5023] = 2479, + [5024] = 2481, + [5025] = 2005, + [5026] = 2482, + [5027] = 2483, + [5028] = 2646, + [5029] = 2716, + [5030] = 2684, + [5031] = 2691, + [5032] = 2593, + [5033] = 2707, + [5034] = 2716, + [5035] = 2721, + [5036] = 2543, + [5037] = 2009, + [5038] = 2001, + [5039] = 2422, + [5040] = 2726, + [5041] = 2769, + [5042] = 2557, + [5043] = 2042, + [5044] = 2530, + [5045] = 2055, + [5046] = 2042, + [5047] = 2539, + [5048] = 2516, + [5049] = 2417, + [5050] = 2015, + [5051] = 2445, + [5052] = 2478, + [5053] = 2479, + [5054] = 1971, + [5055] = 2480, + [5056] = 2481, + [5057] = 2482, + [5058] = 2432, + [5059] = 2483, + [5060] = 2025, + [5061] = 2026, + [5062] = 2445, + [5063] = 2528, + [5064] = 2478, + [5065] = 2422, + [5066] = 2073, + [5067] = 2028, + [5068] = 2018, + [5069] = 2417, + [5070] = 2429, + [5071] = 2422, + [5072] = 2004, + [5073] = 2010, + [5074] = 2501, + [5075] = 2382, + [5076] = 2014, + [5077] = 2398, + [5078] = 2363, + [5079] = 2004, + [5080] = 2002, + [5081] = 2417, + [5082] = 2511, [5083] = 2003, - [5084] = 2015, - [5085] = 2539, - [5086] = 2021, - [5087] = 2016, - [5088] = 2018, - [5089] = 2438, - [5090] = 2451, - [5091] = 2014, - [5092] = 2373, - [5093] = 2421, - [5094] = 2003, - [5095] = 1969, - [5096] = 2445, - [5097] = 2006, - [5098] = 2392, - [5099] = 2501, - [5100] = 2373, - [5101] = 2007, - [5102] = 2483, - [5103] = 2486, - [5104] = 2022, - [5105] = 2540, - [5106] = 2541, - [5107] = 2004, - [5108] = 2490, - [5109] = 2494, - [5110] = 2357, - [5111] = 2392, - [5112] = 2001, - [5113] = 2002, - [5114] = 2008, - [5115] = 2000, - [5116] = 2442, - [5117] = 2483, - [5118] = 5118, - [5119] = 2392, - [5120] = 2024, - [5121] = 2438, - [5122] = 2412, - [5123] = 2501, - [5124] = 2011, - [5125] = 2697, - [5126] = 2491, - [5127] = 2483, - [5128] = 2582, - [5129] = 2063, - [5130] = 2698, - [5131] = 2421, - [5132] = 2445, - [5133] = 2442, - [5134] = 2464, - [5135] = 2451, - [5136] = 2040, - [5137] = 2001, - [5138] = 2002, - [5139] = 2008, - [5140] = 2000, - [5141] = 2490, - [5142] = 1969, - [5143] = 1970, - [5144] = 1971, - [5145] = 2494, - [5146] = 2495, - [5147] = 2501, - [5148] = 2569, - [5149] = 2483, - [5150] = 2675, - [5151] = 2679, - [5152] = 2490, - [5153] = 2494, - [5154] = 2736, - [5155] = 2495, - [5156] = 2756, - [5157] = 2758, - [5158] = 2539, - [5159] = 2500, - [5160] = 2486, - [5161] = 2430, - [5162] = 2522, - [5163] = 2357, - [5164] = 2373, - [5165] = 2018, - [5166] = 2021, - [5167] = 2480, - [5168] = 2568, - [5169] = 2016, - [5170] = 2571, - [5171] = 2583, - [5172] = 2014, - [5173] = 2007, - [5174] = 2003, - [5175] = 2501, - [5176] = 2483, - [5177] = 2490, - [5178] = 2494, - [5179] = 2495, - [5180] = 2480, - [5181] = 2022, - [5182] = 2681, - [5183] = 2501, - [5184] = 2483, - [5185] = 2490, - [5186] = 2494, - [5187] = 2495, - [5188] = 2480, - [5189] = 2724, - [5190] = 2509, - [5191] = 2438, - [5192] = 2517, - [5193] = 2518, - [5194] = 2515, - [5195] = 2527, - [5196] = 2528, - [5197] = 2451, - [5198] = 2540, - [5199] = 2012, - [5200] = 2541, - [5201] = 2525, - [5202] = 2573, - [5203] = 2574, - [5204] = 2575, - [5205] = 2536, - [5206] = 2580, - [5207] = 2588, - [5208] = 2589, - [5209] = 2590, - [5210] = 2598, - [5211] = 2601, - [5212] = 2606, - [5213] = 2612, - [5214] = 2621, - [5215] = 2622, - [5216] = 2624, - [5217] = 2626, - [5218] = 2628, - [5219] = 2629, - [5220] = 2357, - [5221] = 2373, - [5222] = 2637, - [5223] = 2638, - [5224] = 2663, - [5225] = 2664, - [5226] = 2665, - [5227] = 2672, - [5228] = 2695, - [5229] = 2701, - [5230] = 2702, - [5231] = 2703, - [5232] = 2705, - [5233] = 2707, - [5234] = 2708, - [5235] = 2715, - [5236] = 2719, - [5237] = 2721, - [5238] = 2723, - [5239] = 2726, - [5240] = 2727, - [5241] = 2728, - [5242] = 2729, - [5243] = 2730, - [5244] = 2731, - [5245] = 2737, - [5246] = 2740, - [5247] = 2741, - [5248] = 2743, - [5249] = 2745, - [5250] = 2746, - [5251] = 2747, - [5252] = 2748, - [5253] = 2749, - [5254] = 2752, - [5255] = 2753, - [5256] = 2754, - [5257] = 2755, - [5258] = 2757, - [5259] = 2760, - [5260] = 2761, - [5261] = 2762, - [5262] = 2763, - [5263] = 2764, - [5264] = 2765, - [5265] = 2766, - [5266] = 2768, - [5267] = 2770, - [5268] = 2773, - [5269] = 2605, - [5270] = 2632, - [5271] = 2562, - [5272] = 2641, - [5273] = 2642, - [5274] = 2647, - [5275] = 2648, - [5276] = 2649, - [5277] = 2652, - [5278] = 2564, - [5279] = 2653, - [5280] = 2654, - [5281] = 2657, - [5282] = 2659, - [5283] = 2660, - [5284] = 2667, - [5285] = 2668, - [5286] = 2017, - [5287] = 2607, - [5288] = 2716, - [5289] = 2430, - [5290] = 2720, - [5291] = 2713, - [5292] = 2608, - [5293] = 2613, - [5294] = 2480, - [5295] = 2635, - [5296] = 2670, - [5297] = 2519, - [5298] = 2682, - [5299] = 2687, - [5300] = 2688, - [5301] = 2689, - [5302] = 2704, - [5303] = 2709, - [5304] = 2712, - [5305] = 2722, - [5306] = 2733, - [5307] = 2738, - [5308] = 2560, - [5309] = 2501, - [5310] = 2491, - [5311] = 2566, - [5312] = 2576, - [5313] = 2577, - [5314] = 2578, - [5315] = 2591, - [5316] = 2597, - [5317] = 2599, - [5318] = 2600, - [5319] = 2534, - [5320] = 2019, - [5321] = 2020, - [5322] = 2644, - [5323] = 2645, - [5324] = 2646, - [5325] = 2650, - [5326] = 2666, - [5327] = 2673, - [5328] = 2684, - [5329] = 2685, - [5330] = 2010, - [5331] = 2552, - [5332] = 2555, - [5333] = 2556, - [5334] = 2557, - [5335] = 2558, - [5336] = 2559, - [5337] = 2561, - [5338] = 2563, - [5339] = 2565, - [5340] = 2567, - [5341] = 2570, - [5342] = 2579, - [5343] = 2593, - [5344] = 2594, - [5345] = 2595, - [5346] = 2596, - [5347] = 2616, - [5348] = 2620, - [5349] = 2639, - [5350] = 2655, - [5351] = 2658, - [5352] = 2661, - [5353] = 2662, - [5354] = 2669, - [5355] = 2671, - [5356] = 2674, - [5357] = 2678, - [5358] = 2774, - [5359] = 2694, - [5360] = 2696, - [5361] = 2699, - [5362] = 2700, - [5363] = 2711, - [5364] = 2714, - [5365] = 2717, - [5366] = 2718, - [5367] = 2732, - [5368] = 2742, - [5369] = 2750, - [5370] = 2751, - [5371] = 2759, - [5372] = 2767, - [5373] = 2544, - [5374] = 2545, - [5375] = 2546, - [5376] = 2547, - [5377] = 2548, - [5378] = 2025, - [5379] = 2549, - [5380] = 2483, - [5381] = 2550, - [5382] = 2490, - [5383] = 2494, - [5384] = 2551, - [5385] = 2553, - [5386] = 2554, - [5387] = 2495, - [5388] = 2013, - [5389] = 2480, - [5390] = 2534, - [5391] = 2519, - [5392] = 2598, - [5393] = 2445, - [5394] = 2442, - [5395] = 2464, - [5396] = 2605, - [5397] = 2051, - [5398] = 2632, - [5399] = 2633, - [5400] = 2641, - [5401] = 2642, - [5402] = 2647, - [5403] = 2648, - [5404] = 2649, - [5405] = 2652, - [5406] = 2653, - [5407] = 2654, - [5408] = 2657, - [5409] = 2659, - [5410] = 2660, - [5411] = 2667, - [5412] = 2668, - [5413] = 2716, - [5414] = 2486, - [5415] = 2515, - [5416] = 2023, - [5417] = 2026, - [5418] = 2027, - [5419] = 2631, - [5420] = 2720, - [5421] = 2015, + [5084] = 2016, + [5085] = 2002, + [5086] = 2000, + [5087] = 2428, + [5088] = 2478, + [5089] = 2422, + [5090] = 2479, + [5091] = 2480, + [5092] = 2481, + [5093] = 2529, + [5094] = 2482, + [5095] = 2539, + [5096] = 2427, + [5097] = 2019, + [5098] = 2023, + [5099] = 2024, + [5100] = 2483, + [5101] = 2008, + [5102] = 2398, + [5103] = 2012, + [5104] = 2398, + [5105] = 2480, + [5106] = 2007, + [5107] = 2382, + [5108] = 1970, + [5109] = 2484, + [5110] = 2540, + [5111] = 2017, + [5112] = 2493, + [5113] = 2000, + [5114] = 2428, + [5115] = 2006, + [5116] = 2021, + [5117] = 2042, + [5118] = 2506, + [5119] = 2363, + [5120] = 2439, + [5121] = 2429, + [5122] = 2523, + [5123] = 2526, + [5124] = 2009, + [5125] = 2020, + [5126] = 1969, + [5127] = 2492, + [5128] = 2007, + [5129] = 2027, + [5130] = 2432, + [5131] = 2011, + [5132] = 2001, + [5133] = 2439, + [5134] = 2022, + [5135] = 2427, + [5136] = 2009, + [5137] = 2003, + [5138] = 2485, + [5139] = 2013, + [5140] = 2517, + [5141] = 2532, + [5142] = 2003, + [5143] = 2754, + [5144] = 2690, + [5145] = 2432, + [5146] = 2483, + [5147] = 2723, + [5148] = 2580, + [5149] = 2014, + [5150] = 2511, + [5151] = 2019, + [5152] = 2622, + [5153] = 2630, + [5154] = 2635, + [5155] = 2018, + [5156] = 2777, + [5157] = 2640, + [5158] = 2670, + [5159] = 2445, + [5160] = 2073, + [5161] = 2398, + [5162] = 2675, + [5163] = 2682, + [5164] = 2439, + [5165] = 2591, + [5166] = 2024, + [5167] = 2042, + [5168] = 2422, + [5169] = 2004, + [5170] = 2688, + [5171] = 2002, + [5172] = 2000, + [5173] = 1971, + [5174] = 1970, + [5175] = 1969, + [5176] = 2022, + [5177] = 2695, + [5178] = 2739, + [5179] = 2746, + [5180] = 2771, + [5181] = 2553, + [5182] = 5182, + [5183] = 2417, + [5184] = 2559, + [5185] = 2428, + [5186] = 2564, + [5187] = 2382, + [5188] = 2363, + [5189] = 2566, + [5190] = 2009, + [5191] = 2007, + [5192] = 2427, + [5193] = 2429, + [5194] = 2478, + [5195] = 2479, + [5196] = 2480, + [5197] = 2481, + [5198] = 2482, + [5199] = 2483, + [5200] = 2020, + [5201] = 2610, + [5202] = 2582, + [5203] = 2590, + [5204] = 2492, + [5205] = 2478, + [5206] = 2479, + [5207] = 2480, + [5208] = 2481, + [5209] = 2482, + [5210] = 2483, + [5211] = 2540, + [5212] = 2501, + [5213] = 2493, + [5214] = 2428, + [5215] = 2016, + [5216] = 2012, + [5217] = 2023, + [5218] = 2516, + [5219] = 2528, + [5220] = 2529, + [5221] = 2484, + [5222] = 2530, + [5223] = 2532, + [5224] = 2042, + [5225] = 2523, + [5226] = 2526, + [5227] = 2478, + [5228] = 2601, + [5229] = 2672, + [5230] = 2744, + [5231] = 2479, + [5232] = 2603, + [5233] = 2618, + [5234] = 2055, + [5235] = 2517, + [5236] = 2485, + [5237] = 2567, + [5238] = 2646, + [5239] = 2623, + [5240] = 2631, + [5241] = 2649, + [5242] = 2480, + [5243] = 2481, + [5244] = 2621, + [5245] = 2715, + [5246] = 2482, + [5247] = 2632, + [5248] = 2013, + [5249] = 2010, + [5250] = 2011, + [5251] = 2027, + [5252] = 2593, + [5253] = 2543, + [5254] = 2639, + [5255] = 2642, + [5256] = 2684, + [5257] = 2691, + [5258] = 2483, + [5259] = 2770, + [5260] = 2549, + [5261] = 2597, + [5262] = 2602, + [5263] = 2707, + [5264] = 2716, + [5265] = 2721, + [5266] = 2726, + [5267] = 2645, + [5268] = 2769, + [5269] = 2557, + [5270] = 2708, + [5271] = 2575, + [5272] = 2661, + [5273] = 2662, + [5274] = 2633, + [5275] = 2017, + [5276] = 2478, + [5277] = 2015, + [5278] = 2506, + [5279] = 2677, + [5280] = 2025, + [5281] = 2696, + [5282] = 2667, + [5283] = 2676, + [5284] = 2562, + [5285] = 2717, + [5286] = 2610, + [5287] = 2646, + [5288] = 2684, + [5289] = 2691, + [5290] = 2707, + [5291] = 2716, + [5292] = 2721, + [5293] = 2726, + [5294] = 2769, + [5295] = 2557, + [5296] = 2708, + [5297] = 2575, + [5298] = 2661, + [5299] = 2633, + [5300] = 2696, + [5301] = 2611, + [5302] = 2545, + [5303] = 2561, + [5304] = 2026, + [5305] = 2028, + [5306] = 2479, + [5307] = 2774, + [5308] = 2775, + [5309] = 2480, + [5310] = 2481, + [5311] = 2482, + [5312] = 2773, + [5313] = 2607, + [5314] = 2712, + [5315] = 2572, + [5316] = 2584, + [5317] = 2613, + [5318] = 2680, + [5319] = 2694, + [5320] = 2483, + [5321] = 2511, + [5322] = 2432, + [5323] = 2539, + [5324] = 2565, + [5325] = 2699, + [5326] = 2710, + [5327] = 2711, + [5328] = 2501, + [5329] = 2478, + [5330] = 2506, + [5331] = 2479, + [5332] = 2439, + [5333] = 2638, + [5334] = 2484, + [5335] = 2611, + [5336] = 2719, + [5337] = 2722, + [5338] = 2547, + [5339] = 2427, + [5340] = 2429, + [5341] = 2544, + [5342] = 2570, + [5343] = 2571, + [5344] = 2589, + [5345] = 2445, + [5346] = 2606, + [5347] = 2615, + [5348] = 2055, + [5349] = 2619, + [5350] = 2637, + [5351] = 2563, + [5352] = 2568, + [5353] = 2574, + [5354] = 2718, + [5355] = 2599, + [5356] = 2614, + [5357] = 2616, + [5358] = 2638, + [5359] = 2612, + [5360] = 2624, + [5361] = 2625, + [5362] = 2644, + [5363] = 2647, + [5364] = 2652, + [5365] = 2666, + [5366] = 2668, + [5367] = 2669, + [5368] = 2734, + [5369] = 2382, + [5370] = 2363, + [5371] = 2698, + [5372] = 2705, + [5373] = 2546, + [5374] = 2548, + [5375] = 2552, + [5376] = 2554, + [5377] = 2555, + [5378] = 2480, + [5379] = 2573, + [5380] = 2576, + [5381] = 2577, + [5382] = 2545, + [5383] = 2481, + [5384] = 2578, + [5385] = 2579, + [5386] = 2482, + [5387] = 2581, + [5388] = 2583, + [5389] = 2585, + [5390] = 2586, + [5391] = 2587, + [5392] = 2588, + [5393] = 2592, + [5394] = 2594, + [5395] = 2595, + [5396] = 2596, + [5397] = 2598, + [5398] = 2600, + [5399] = 2561, + [5400] = 2634, + [5401] = 2641, + [5402] = 2648, + [5403] = 2650, + [5404] = 2651, + [5405] = 2653, + [5406] = 2654, + [5407] = 2655, + [5408] = 2656, + [5409] = 2658, + [5410] = 2683, + [5411] = 2685, + [5412] = 2686, + [5413] = 2687, + [5414] = 2697, + [5415] = 2700, + [5416] = 2701, + [5417] = 2702, + [5418] = 2703, + [5419] = 2704, + [5420] = 2706, + [5421] = 2709, [5422] = 2713, - [5423] = 2051, - [5424] = 2028, - [5425] = 2040, - [5426] = 2572, - [5427] = 2649, - [5428] = 2548, - [5429] = 2541, - [5430] = 2715, - [5431] = 2628, - [5432] = 2536, - [5433] = 2629, - [5434] = 2719, - [5435] = 2721, - [5436] = 2501, - [5437] = 2483, - [5438] = 2490, - [5439] = 2494, - [5440] = 2495, - [5441] = 2480, - [5442] = 2723, - [5443] = 2574, - [5444] = 2495, - [5445] = 2726, - [5446] = 2727, - [5447] = 2588, - [5448] = 2728, - [5449] = 2729, - [5450] = 2730, - [5451] = 2480, - [5452] = 2501, - [5453] = 2490, - [5454] = 2756, - [5455] = 2741, - [5456] = 2743, - [5457] = 2745, - [5458] = 2746, - [5459] = 2747, - [5460] = 2748, - [5461] = 2749, - [5462] = 2758, - [5463] = 2501, - [5464] = 2752, - [5465] = 2753, - [5466] = 2754, - [5467] = 2755, - [5468] = 2757, - [5469] = 2490, - [5470] = 2756, - [5471] = 2480, - [5472] = 2758, - [5473] = 2760, - [5474] = 2534, - [5475] = 2761, - [5476] = 2762, - [5477] = 2763, - [5478] = 2637, - [5479] = 2764, - [5480] = 2765, - [5481] = 2766, - [5482] = 5482, - [5483] = 1984, - [5484] = 2770, - [5485] = 2509, - [5486] = 2773, - [5487] = 2682, - [5488] = 2687, - [5489] = 2688, - [5490] = 1989, - [5491] = 2716, - [5492] = 2689, - [5493] = 2704, - [5494] = 2709, - [5495] = 2712, - [5496] = 2722, - [5497] = 2733, - [5498] = 2738, - [5499] = 2560, - [5500] = 2571, - [5501] = 2566, - [5502] = 2412, - [5503] = 2576, - [5504] = 2577, - [5505] = 5482, - [5506] = 2578, - [5507] = 2040, - [5508] = 2051, - [5509] = 1969, - [5510] = 2591, - [5511] = 2597, - [5512] = 2599, - [5513] = 1970, - [5514] = 1971, - [5515] = 2600, - [5516] = 2684, - [5517] = 2539, - [5518] = 2519, - [5519] = 2392, - [5520] = 2515, - [5521] = 2573, - [5522] = 2552, - [5523] = 2589, - [5524] = 2590, - [5525] = 2720, - [5526] = 2598, - [5527] = 2555, - [5528] = 2575, - [5529] = 2534, - [5530] = 2601, - [5531] = 5482, - [5532] = 2663, - [5533] = 2664, - [5534] = 2665, - [5535] = 2040, - [5536] = 2672, - [5537] = 2483, - [5538] = 2606, - [5539] = 2612, - [5540] = 2675, - [5541] = 2556, - [5542] = 2713, - [5543] = 2557, - [5544] = 2558, - [5545] = 2675, - [5546] = 2679, - [5547] = 2621, - [5548] = 2622, - [5549] = 2559, - [5550] = 2679, - [5551] = 2635, - [5552] = 2561, - [5553] = 2670, - [5554] = 2563, - [5555] = 2624, - [5556] = 2565, - [5557] = 2626, - [5558] = 2534, - [5559] = 2628, - [5560] = 5482, - [5561] = 2567, - [5562] = 2421, - [5563] = 2605, - [5564] = 2629, - [5565] = 2570, - [5566] = 2580, - [5567] = 2695, - [5568] = 2701, - [5569] = 2669, - [5570] = 2702, - [5571] = 2579, - [5572] = 2703, - [5573] = 2638, - [5574] = 2731, - [5575] = 2705, - [5576] = 2737, - [5577] = 2631, - [5578] = 2633, - [5579] = 2486, - [5580] = 2707, - [5581] = 2740, - [5582] = 2708, - [5583] = 2736, - [5584] = 2593, - [5585] = 2392, - [5586] = 2483, - [5587] = 2768, - [5588] = 2518, - [5589] = 2562, - [5590] = 2564, - [5591] = 2572, - [5592] = 2607, - [5593] = 2594, - [5594] = 2697, - [5595] = 2500, - [5596] = 2698, - [5597] = 2519, - [5598] = 2596, - [5599] = 2568, - [5600] = 2608, - [5601] = 2571, - [5602] = 2583, - [5603] = 2613, - [5604] = 2671, - [5605] = 2522, - [5606] = 2674, - [5607] = 2668, - [5608] = 2644, - [5609] = 2501, - [5610] = 2645, - [5611] = 2491, - [5612] = 2646, - [5613] = 2650, - [5614] = 2666, - [5615] = 2673, - [5616] = 2494, - [5617] = 2582, - [5618] = 2685, - [5619] = 2681, - [5620] = 2595, - [5621] = 2616, - [5622] = 2620, - [5623] = 2639, - [5624] = 2678, - [5625] = 2501, - [5626] = 2490, - [5627] = 2509, - [5628] = 2655, - [5629] = 2632, - [5630] = 2774, - [5631] = 2517, - [5632] = 2658, - [5633] = 2569, - [5634] = 2491, - [5635] = 2494, - [5636] = 2518, - [5637] = 2661, - [5638] = 2527, - [5639] = 2528, - [5640] = 2662, - [5641] = 2724, - [5642] = 2699, - [5643] = 2063, - [5644] = 2590, - [5645] = 2412, - [5646] = 2694, - [5647] = 2490, - [5648] = 2711, - [5649] = 2495, - [5650] = 2421, - [5651] = 2696, - [5652] = 2700, - [5653] = 2750, - [5654] = 2751, - [5655] = 2641, - [5656] = 2642, - [5657] = 2598, - [5658] = 2501, - [5659] = 2483, - [5660] = 2490, - [5661] = 2494, - [5662] = 2714, - [5663] = 2717, - [5664] = 2540, - [5665] = 2718, - [5666] = 2732, - [5667] = 2541, - [5668] = 2742, - [5669] = 2759, - [5670] = 2767, - [5671] = 2544, - [5672] = 2545, - [5673] = 2546, - [5674] = 2547, - [5675] = 2549, - [5676] = 2550, - [5677] = 2551, - [5678] = 2553, - [5679] = 2495, - [5680] = 2554, - [5681] = 2525, - [5682] = 2536, + [5423] = 2714, + [5424] = 2720, + [5425] = 2740, + [5426] = 2728, + [5427] = 2729, + [5428] = 2730, + [5429] = 2731, + [5430] = 2772, + [5431] = 2776, + [5432] = 2735, + [5433] = 2738, + [5434] = 2742, + [5435] = 2743, + [5436] = 2539, + [5437] = 2745, + [5438] = 2747, + [5439] = 2749, + [5440] = 2750, + [5441] = 2751, + [5442] = 2755, + [5443] = 2757, + [5444] = 2758, + [5445] = 2759, + [5446] = 2760, + [5447] = 2761, + [5448] = 2762, + [5449] = 2768, + [5450] = 2605, + [5451] = 2617, + [5452] = 2551, + [5453] = 2021, + [5454] = 2762, + [5455] = 2743, + [5456] = 2523, + [5457] = 2422, + [5458] = 2577, + [5459] = 2417, + [5460] = 2616, + [5461] = 2638, + [5462] = 2532, + [5463] = 2526, + [5464] = 2668, + [5465] = 2485, + [5466] = 2669, + [5467] = 2621, + [5468] = 2578, + [5469] = 2579, + [5470] = 2549, + [5471] = 2581, + [5472] = 2583, + [5473] = 2516, + [5474] = 2540, + [5475] = 2585, + [5476] = 2586, + [5477] = 2587, + [5478] = 2588, + [5479] = 2478, + [5480] = 2479, + [5481] = 2480, + [5482] = 2481, + [5483] = 2482, + [5484] = 2483, + [5485] = 5485, + [5486] = 2592, + [5487] = 2594, + [5488] = 2595, + [5489] = 2705, + [5490] = 2398, + [5491] = 2596, + [5492] = 2598, + [5493] = 2600, + [5494] = 2526, + [5495] = 2634, + [5496] = 2744, + [5497] = 2649, + [5498] = 2530, + [5499] = 1971, + [5500] = 2641, + [5501] = 2715, + [5502] = 2532, + [5503] = 2478, + [5504] = 2480, + [5505] = 2648, + [5506] = 2650, + [5507] = 2651, + [5508] = 2653, + [5509] = 2713, + [5510] = 2654, + [5511] = 2655, + [5512] = 2728, + [5513] = 2729, + [5514] = 2730, + [5515] = 2731, + [5516] = 2774, + [5517] = 2775, + [5518] = 2656, + [5519] = 2770, + [5520] = 2735, + [5521] = 2549, + [5522] = 2597, + [5523] = 2738, + [5524] = 2658, + [5525] = 2683, + [5526] = 2685, + [5527] = 2501, + [5528] = 2686, + [5529] = 2565, + [5530] = 2637, + [5531] = 2777, + [5532] = 2746, + [5533] = 2771, + [5534] = 2553, + [5535] = 2547, + [5536] = 2567, + [5537] = 2677, + [5538] = 2695, + [5539] = 2687, + [5540] = 2697, + [5541] = 2564, + [5542] = 2566, + [5543] = 2582, + [5544] = 2590, + [5545] = 1984, + [5546] = 2601, + [5547] = 2734, + [5548] = 2603, + [5549] = 2618, + [5550] = 2562, + [5551] = 2676, + [5552] = 2055, + [5553] = 2773, + [5554] = 2607, + [5555] = 2712, + [5556] = 2572, + [5557] = 2584, + [5558] = 2613, + [5559] = 2699, + [5560] = 2710, + [5561] = 2711, + [5562] = 2719, + [5563] = 2722, + [5564] = 2544, + [5565] = 2571, + [5566] = 2589, + [5567] = 2606, + [5568] = 2615, + [5569] = 2619, + [5570] = 2593, + [5571] = 2543, + [5572] = 2700, + [5573] = 2701, + [5574] = 2702, + [5575] = 2703, + [5576] = 2610, + [5577] = 2704, + [5578] = 2706, + [5579] = 2709, + [5580] = 2493, + [5581] = 2517, + [5582] = 2646, + [5583] = 2539, + [5584] = 2684, + [5585] = 2691, + [5586] = 2707, + [5587] = 2716, + [5588] = 2721, + [5589] = 2478, + [5590] = 2480, + [5591] = 2726, + [5592] = 2769, + [5593] = 2557, + [5594] = 2708, + [5595] = 2575, + [5596] = 2661, + [5597] = 2633, + [5598] = 2696, + [5599] = 2506, + [5600] = 1987, + [5601] = 2422, + [5602] = 2611, + [5603] = 2714, + [5604] = 2720, + [5605] = 2545, + [5606] = 2485, + [5607] = 2561, + [5608] = 1970, + [5609] = 5485, + [5610] = 2563, + [5611] = 2574, + [5612] = 2432, + [5613] = 2528, + [5614] = 2484, + [5615] = 1969, + [5616] = 2484, + [5617] = 2445, + [5618] = 2073, + [5619] = 2073, + [5620] = 2545, + [5621] = 2745, + [5622] = 2747, + [5623] = 2749, + [5624] = 2750, + [5625] = 2751, + [5626] = 2492, + [5627] = 2755, + [5628] = 2757, + [5629] = 2758, + [5630] = 2759, + [5631] = 2760, + [5632] = 2761, + [5633] = 2398, + [5634] = 2742, + [5635] = 2718, + [5636] = 2605, + [5637] = 2617, + [5638] = 2551, + [5639] = 2591, + [5640] = 2602, + [5641] = 2688, + [5642] = 2529, + [5643] = 2623, + [5644] = 2631, + [5645] = 2479, + [5646] = 2672, + [5647] = 2478, + [5648] = 2506, + [5649] = 2493, + [5650] = 2614, + [5651] = 2616, + [5652] = 2480, + [5653] = 2528, + [5654] = 2523, + [5655] = 2539, + [5656] = 2517, + [5657] = 2559, + [5658] = 2478, + [5659] = 2479, + [5660] = 2480, + [5661] = 2481, + [5662] = 2482, + [5663] = 2483, + [5664] = 2638, + [5665] = 2506, + [5666] = 2478, + [5667] = 2479, + [5668] = 2480, + [5669] = 2481, + [5670] = 2482, + [5671] = 2483, + [5672] = 2529, + [5673] = 2516, + [5674] = 2501, + [5675] = 2561, + [5676] = 2740, + [5677] = 2772, + [5678] = 2479, + [5679] = 2481, + [5680] = 2482, + [5681] = 2483, + [5682] = 2478, [5683] = 2480, - [5684] = 2605, - [5685] = 2647, - [5686] = 2632, - [5687] = 2641, - [5688] = 2648, - [5689] = 2642, - [5690] = 2647, - [5691] = 2648, - [5692] = 2649, - [5693] = 2652, - [5694] = 2517, - [5695] = 2540, - [5696] = 2519, - [5697] = 2525, - [5698] = 2501, - [5699] = 2483, - [5700] = 2490, - [5701] = 2494, - [5702] = 2495, - [5703] = 2480, - [5704] = 2653, - [5705] = 2501, - [5706] = 2483, - [5707] = 2490, - [5708] = 2494, - [5709] = 2495, - [5710] = 2480, - [5711] = 2654, - [5712] = 2652, - [5713] = 2653, - [5714] = 2654, - [5715] = 2657, - [5716] = 2659, - [5717] = 2660, - [5718] = 2667, - [5719] = 2668, - [5720] = 2716, + [5684] = 2776, + [5685] = 2610, + [5686] = 2754, + [5687] = 2690, + [5688] = 2723, + [5689] = 2580, + [5690] = 2622, + [5691] = 2630, + [5692] = 2635, + [5693] = 2640, + [5694] = 2670, + [5695] = 2675, + [5696] = 2682, + [5697] = 2739, + [5698] = 2417, + [5699] = 2540, + [5700] = 2593, + [5701] = 2646, + [5702] = 2481, + [5703] = 2479, + [5704] = 2482, + [5705] = 2543, + [5706] = 2684, + [5707] = 2691, + [5708] = 2511, + [5709] = 2478, + [5710] = 2479, + [5711] = 2480, + [5712] = 2481, + [5713] = 2482, + [5714] = 2483, + [5715] = 2481, + [5716] = 2482, + [5717] = 2612, + [5718] = 5485, + [5719] = 2624, + [5720] = 2625, [5721] = 2483, - [5722] = 2494, - [5723] = 2495, - [5724] = 2480, - [5725] = 2501, - [5726] = 2490, - [5727] = 2720, - [5728] = 2713, - [5729] = 2657, - [5730] = 2438, - [5731] = 2659, - [5732] = 2451, - [5733] = 2491, - [5734] = 2063, - [5735] = 2660, - [5736] = 2501, - [5737] = 2483, - [5738] = 2490, - [5739] = 2494, - [5740] = 2495, - [5741] = 2480, - [5742] = 2486, - [5743] = 2539, - [5744] = 2528, - [5745] = 2515, - [5746] = 2500, - [5747] = 2522, - [5748] = 2667, - [5749] = 2527, - [5750] = 2717, - [5751] = 2657, - [5752] = 5752, - [5753] = 2754, - [5754] = 5754, - [5755] = 2681, - [5756] = 2659, - [5757] = 2660, - [5758] = 2669, - [5759] = 5754, - [5760] = 2613, - [5761] = 2667, - [5762] = 2668, - [5763] = 2534, - [5764] = 2556, - [5765] = 2525, - [5766] = 2536, - [5767] = 5754, - [5768] = 2490, - [5769] = 2494, - [5770] = 2501, - [5771] = 2755, - [5772] = 2741, - [5773] = 5752, - [5774] = 5754, - [5775] = 2515, - [5776] = 2681, - [5777] = 2757, - [5778] = 2736, - [5779] = 2569, - [5780] = 5754, - [5781] = 5754, - [5782] = 2557, - [5783] = 2760, - [5784] = 2724, - [5785] = 2761, - [5786] = 2762, - [5787] = 5754, - [5788] = 2763, - [5789] = 2558, - [5790] = 5754, - [5791] = 2737, - [5792] = 2570, - [5793] = 2495, - [5794] = 2764, - [5795] = 2765, - [5796] = 2494, - [5797] = 2495, - [5798] = 2709, - [5799] = 2480, - [5800] = 2534, - [5801] = 5754, - [5802] = 2766, - [5803] = 2579, - [5804] = 2768, - [5805] = 2770, - [5806] = 2545, - [5807] = 5754, - [5808] = 2724, - [5809] = 5754, - [5810] = 2675, - [5811] = 5754, - [5812] = 2635, - [5813] = 2679, - [5814] = 2720, - [5815] = 5754, - [5816] = 2756, - [5817] = 2559, - [5818] = 2756, - [5819] = 2758, - [5820] = 2561, - [5821] = 2571, - [5822] = 2758, - [5823] = 2593, - [5824] = 2594, - [5825] = 2671, - [5826] = 2598, - [5827] = 2708, - [5828] = 2674, - [5829] = 2491, - [5830] = 2678, - [5831] = 2563, - [5832] = 2595, - [5833] = 2500, - [5834] = 5752, - [5835] = 2596, - [5836] = 2522, - [5837] = 5754, - [5838] = 2565, - [5839] = 2773, - [5840] = 2616, - [5841] = 2697, - [5842] = 2638, - [5843] = 2712, - [5844] = 2573, - [5845] = 2574, - [5846] = 2575, - [5847] = 2698, - [5848] = 2670, - [5849] = 2695, - [5850] = 5752, - [5851] = 2715, - [5852] = 2580, - [5853] = 2620, - [5854] = 2566, - [5855] = 2639, - [5856] = 2588, - [5857] = 2589, - [5858] = 2590, - [5859] = 5754, - [5860] = 2063, - [5861] = 2598, - [5862] = 2546, - [5863] = 2576, - [5864] = 5864, - [5865] = 5865, - [5866] = 2547, - [5867] = 2743, - [5868] = 2745, - [5869] = 2601, - [5870] = 2606, - [5871] = 2612, - [5872] = 2548, - [5873] = 2562, - [5874] = 2746, - [5875] = 2509, - [5876] = 2774, - [5877] = 2564, - [5878] = 2621, - [5879] = 2622, - [5880] = 2624, - [5881] = 2626, - [5882] = 2628, - [5883] = 2629, - [5884] = 2747, - [5885] = 2719, - [5886] = 2721, - [5887] = 2723, - [5888] = 2480, - [5889] = 2748, - [5890] = 2749, - [5891] = 1969, - [5892] = 2568, - [5893] = 2736, - [5894] = 5752, - [5895] = 2572, - [5896] = 1970, - [5897] = 2637, - [5898] = 2638, - [5899] = 5754, - [5900] = 1971, - [5901] = 2713, - [5902] = 2661, - [5903] = 2701, - [5904] = 2726, - [5905] = 2727, - [5906] = 2728, - [5907] = 2577, - [5908] = 2517, - [5909] = 2578, - [5910] = 2571, - [5911] = 2663, - [5912] = 2664, - [5913] = 2665, - [5914] = 2672, - [5915] = 2583, - [5916] = 5752, - [5917] = 2567, - [5918] = 5752, - [5919] = 2607, - [5920] = 2695, - [5921] = 2663, - [5922] = 2701, - [5923] = 2702, - [5924] = 2703, - [5925] = 2705, - [5926] = 5754, - [5927] = 2707, - [5928] = 5754, - [5929] = 2518, - [5930] = 2527, - [5931] = 2528, - [5932] = 2708, - [5933] = 2591, - [5934] = 2767, - [5935] = 2715, - [5936] = 2719, - [5937] = 2721, - [5938] = 2723, - [5939] = 2605, - [5940] = 2726, - [5941] = 2727, - [5942] = 2728, - [5943] = 2729, - [5944] = 2730, - [5945] = 2549, - [5946] = 2731, - [5947] = 2664, - [5948] = 2632, - [5949] = 2738, - [5950] = 2641, - [5951] = 2642, - [5952] = 2737, - [5953] = 2675, - [5954] = 2679, - [5955] = 2647, - [5956] = 2648, - [5957] = 2649, - [5958] = 2740, - [5959] = 2729, - [5960] = 2483, - [5961] = 2652, - [5962] = 2716, - [5963] = 2597, - [5964] = 2653, - [5965] = 2741, - [5966] = 2743, - [5967] = 2745, - [5968] = 2746, - [5969] = 2747, - [5970] = 2748, - [5971] = 2749, - [5972] = 2654, - [5973] = 2657, - [5974] = 2659, - [5975] = 2660, - [5976] = 2667, - [5977] = 2668, - [5978] = 2599, - [5979] = 2490, - [5980] = 2716, - [5981] = 2682, - [5982] = 2707, - [5983] = 2703, - [5984] = 2550, - [5985] = 5752, - [5986] = 2752, - [5987] = 2753, - [5988] = 2754, - [5989] = 2755, - [5990] = 2757, - [5991] = 2720, - [5992] = 2713, - [5993] = 2600, - [5994] = 2760, - [5995] = 2761, - [5996] = 2762, - [5997] = 2763, - [5998] = 2764, - [5999] = 2765, - [6000] = 2766, - [6001] = 2662, - [6002] = 2768, - [6003] = 2770, - [6004] = 2756, - [6005] = 2758, - [6006] = 2773, - [6007] = 5754, - [6008] = 2722, - [6009] = 2551, - [6010] = 2562, - [6011] = 2564, - [6012] = 2572, - [6013] = 2607, - [6014] = 2451, - [6015] = 2553, - [6016] = 5752, - [6017] = 2569, - [6018] = 2759, - [6019] = 2608, - [6020] = 2571, - [6021] = 2613, - [6022] = 2635, - [6023] = 2670, - [6024] = 5754, - [6025] = 2682, - [6026] = 2687, - [6027] = 2688, - [6028] = 2689, - [6029] = 2704, - [6030] = 2709, - [6031] = 2712, - [6032] = 2722, - [6033] = 2733, - [6034] = 2738, - [6035] = 2560, - [6036] = 2605, - [6037] = 2655, + [5722] = 2707, + [5723] = 2716, + [5724] = 2721, + [5725] = 2726, + [5726] = 2769, + [5727] = 2557, + [5728] = 2708, + [5729] = 2575, + [5730] = 2661, + [5731] = 2633, + [5732] = 2696, + [5733] = 2632, + [5734] = 2639, + [5735] = 2642, + [5736] = 2645, + [5737] = 2662, + [5738] = 2667, + [5739] = 2644, + [5740] = 2717, + [5741] = 2647, + [5742] = 2652, + [5743] = 2666, + [5744] = 2668, + [5745] = 2680, + [5746] = 2694, + [5747] = 2669, + [5748] = 2570, + [5749] = 2478, + [5750] = 2511, + [5751] = 2480, + [5752] = 2698, + [5753] = 2539, + [5754] = 2568, + [5755] = 2483, + [5756] = 2530, + [5757] = 2546, + [5758] = 2511, + [5759] = 2548, + [5760] = 2552, + [5761] = 2599, + [5762] = 2554, + [5763] = 2042, + [5764] = 2555, + [5765] = 2478, + [5766] = 2479, + [5767] = 2480, + [5768] = 2481, + [5769] = 2482, + [5770] = 2483, + [5771] = 2492, + [5772] = 5485, + [5773] = 2573, + [5774] = 2611, + [5775] = 2042, + [5776] = 2623, + [5777] = 2631, + [5778] = 2576, + [5779] = 2768, + [5780] = 2656, + [5781] = 2594, + [5782] = 2684, + [5783] = 5783, + [5784] = 2432, + [5785] = 2631, + [5786] = 2691, + [5787] = 2647, + [5788] = 2578, + [5789] = 2652, + [5790] = 2579, + [5791] = 5791, + [5792] = 2611, + [5793] = 2740, + [5794] = 5783, + [5795] = 2600, + [5796] = 2478, + [5797] = 2562, + [5798] = 2707, + [5799] = 2716, + [5800] = 2666, + [5801] = 2523, + [5802] = 2641, + [5803] = 2772, + [5804] = 2776, + [5805] = 2754, + [5806] = 2478, + [5807] = 2581, + [5808] = 5791, + [5809] = 2479, + [5810] = 5783, + [5811] = 5811, + [5812] = 2526, + [5813] = 2568, + [5814] = 2721, + [5815] = 2726, + [5816] = 2745, + [5817] = 2595, + [5818] = 2574, + [5819] = 2769, + [5820] = 2747, + [5821] = 2557, + [5822] = 5791, + [5823] = 2708, + [5824] = 2749, + [5825] = 2575, + [5826] = 5783, + [5827] = 2750, + [5828] = 2661, + [5829] = 2690, + [5830] = 2506, + [5831] = 2648, + [5832] = 2650, + [5833] = 2651, + [5834] = 2547, + [5835] = 5835, + [5836] = 2653, + [5837] = 5783, + [5838] = 2723, + [5839] = 2654, + [5840] = 2634, + [5841] = 2479, + [5842] = 2655, + [5843] = 2751, + [5844] = 2596, + [5845] = 2658, + [5846] = 2445, + [5847] = 5783, + [5848] = 2755, + [5849] = 2517, + [5850] = 2580, + [5851] = 2622, + [5852] = 2630, + [5853] = 2635, + [5854] = 2545, + [5855] = 5783, + [5856] = 2485, + [5857] = 2501, + [5858] = 5783, + [5859] = 2539, + [5860] = 2633, + [5861] = 2640, + [5862] = 2696, + [5863] = 5783, + [5864] = 2670, + [5865] = 2583, + [5866] = 2775, + [5867] = 2757, + [5868] = 2479, + [5869] = 5783, + [5870] = 2675, + [5871] = 2682, + [5872] = 2695, + [5873] = 5783, + [5874] = 2739, + [5875] = 2564, + [5876] = 2758, + [5877] = 2566, + [5878] = 2582, + [5879] = 5783, + [5880] = 2590, + [5881] = 2601, + [5882] = 2585, + [5883] = 2603, + [5884] = 2618, + [5885] = 5783, + [5886] = 2484, + [5887] = 5783, + [5888] = 5783, + [5889] = 2668, + [5890] = 2759, + [5891] = 2760, + [5892] = 2683, + [5893] = 2685, + [5894] = 2734, + [5895] = 2589, + [5896] = 2669, + [5897] = 2621, + [5898] = 2481, + [5899] = 2482, + [5900] = 2632, + [5901] = 2639, + [5902] = 2642, + [5903] = 2645, + [5904] = 2686, + [5905] = 2687, + [5906] = 2697, + [5907] = 2761, + [5908] = 2662, + [5909] = 2483, + [5910] = 2511, + [5911] = 2667, + [5912] = 2613, + [5913] = 2606, + [5914] = 2615, + [5915] = 2676, + [5916] = 2717, + [5917] = 2561, + [5918] = 2698, + [5919] = 2762, + [5920] = 2700, + [5921] = 2773, + [5922] = 2607, + [5923] = 2712, + [5924] = 2572, + [5925] = 2584, + [5926] = 2613, + [5927] = 2610, + [5928] = 2700, + [5929] = 2646, + [5930] = 2684, + [5931] = 2691, + [5932] = 2707, + [5933] = 2716, + [5934] = 2721, + [5935] = 2726, + [5936] = 2701, + [5937] = 2769, + [5938] = 2557, + [5939] = 2708, + [5940] = 2575, + [5941] = 2661, + [5942] = 2633, + [5943] = 2696, + [5944] = 2619, + [5945] = 2611, + [5946] = 2701, + [5947] = 2545, + [5948] = 2561, + [5949] = 2680, + [5950] = 2702, + [5951] = 2703, + [5952] = 2694, + [5953] = 2599, + [5954] = 2614, + [5955] = 2616, + [5956] = 2073, + [5957] = 2680, + [5958] = 2573, + [5959] = 2610, + [5960] = 2576, + [5961] = 2699, + [5962] = 2710, + [5963] = 2711, + [5964] = 2719, + [5965] = 2722, + [5966] = 2544, + [5967] = 2570, + [5968] = 2571, + [5969] = 2589, + [5970] = 2606, + [5971] = 2572, + [5972] = 2615, + [5973] = 2619, + [5974] = 2699, + [5975] = 2710, + [5976] = 2612, + [5977] = 2704, + [5978] = 2705, + [5979] = 2702, + [5980] = 2703, + [5981] = 2706, + [5982] = 2577, + [5983] = 2709, + [5984] = 2713, + [5985] = 2714, + [5986] = 2677, + [5987] = 2638, + [5988] = 5791, + [5989] = 2720, + [5990] = 2578, + [5991] = 2579, + [5992] = 2728, + [5993] = 2729, + [5994] = 2730, + [5995] = 2731, + [5996] = 2623, + [5997] = 2631, + [5998] = 5783, + [5999] = 2480, + [6000] = 2481, + [6001] = 2715, + [6002] = 2482, + [6003] = 2698, + [6004] = 6004, + [6005] = 2711, + [6006] = 2624, + [6007] = 2625, + [6008] = 2581, + [6009] = 2704, + [6010] = 2649, + [6011] = 2583, + [6012] = 2480, + [6013] = 2481, + [6014] = 2641, + [6015] = 2735, + [6016] = 2549, + [6017] = 2706, + [6018] = 2593, + [6019] = 2543, + [6020] = 2709, + [6021] = 2585, + [6022] = 2586, + [6023] = 2719, + [6024] = 2713, + [6025] = 2738, + [6026] = 2714, + [6027] = 2720, + [6028] = 2492, + [6029] = 2623, + [6030] = 2631, + [6031] = 2742, + [6032] = 2743, + [6033] = 2593, + [6034] = 2543, + [6035] = 2540, + [6036] = 2549, + [6037] = 2705, [6038] = 2694, - [6039] = 2566, - [6040] = 2665, - [6041] = 2576, - [6042] = 2577, - [6043] = 2578, - [6044] = 2591, - [6045] = 2597, - [6046] = 2599, - [6047] = 2491, - [6048] = 2600, - [6049] = 2644, - [6050] = 6050, - [6051] = 2696, - [6052] = 2645, - [6053] = 2699, - [6054] = 2646, - [6055] = 2672, - [6056] = 2554, - [6057] = 2650, - [6058] = 2644, - [6059] = 2645, - [6060] = 2646, - [6061] = 2631, - [6062] = 2650, - [6063] = 2666, - [6064] = 2666, - [6065] = 2673, - [6066] = 2684, - [6067] = 2633, - [6068] = 2685, - [6069] = 6069, - [6070] = 2598, - [6071] = 2501, - [6072] = 5752, - [6073] = 2490, - [6074] = 5754, - [6075] = 2552, - [6076] = 2555, - [6077] = 2556, - [6078] = 2557, - [6079] = 2675, - [6080] = 2673, - [6081] = 2679, - [6082] = 2051, - [6083] = 2494, - [6084] = 2486, - [6085] = 2740, - [6086] = 2558, - [6087] = 2559, - [6088] = 2561, - [6089] = 2563, - [6090] = 2565, - [6091] = 2567, - [6092] = 2560, - [6093] = 2705, - [6094] = 2697, - [6095] = 2568, - [6096] = 2631, - [6097] = 2583, - [6098] = 5752, - [6099] = 2632, - [6100] = 2698, - [6101] = 2570, - [6102] = 2684, - [6103] = 5754, - [6104] = 2637, - [6105] = 2579, - [6106] = 2495, - [6107] = 2593, - [6108] = 2594, - [6109] = 2595, - [6110] = 2658, - [6111] = 2519, - [6112] = 2596, - [6113] = 2480, - [6114] = 2582, - [6115] = 5752, - [6116] = 2685, - [6117] = 2702, - [6118] = 5754, - [6119] = 2730, - [6120] = 2544, - [6121] = 2608, - [6122] = 2731, - [6123] = 2616, - [6124] = 2620, - [6125] = 2639, - [6126] = 2655, - [6127] = 2658, - [6128] = 2661, - [6129] = 2662, - [6130] = 2641, - [6131] = 5752, - [6132] = 2687, - [6133] = 2438, - [6134] = 2733, - [6135] = 2700, - [6136] = 2501, - [6137] = 2711, - [6138] = 2669, - [6139] = 2605, - [6140] = 2642, - [6141] = 2671, - [6142] = 2674, - [6143] = 2678, - [6144] = 2774, - [6145] = 2694, - [6146] = 2696, - [6147] = 2540, - [6148] = 2699, - [6149] = 2700, - [6150] = 2483, - [6151] = 2714, - [6152] = 2711, - [6153] = 2714, - [6154] = 2717, - [6155] = 2718, - [6156] = 2732, - [6157] = 2742, - [6158] = 2750, - [6159] = 2751, - [6160] = 2759, - [6161] = 2767, - [6162] = 2544, - [6163] = 2545, - [6164] = 2582, - [6165] = 2546, - [6166] = 2547, - [6167] = 2751, - [6168] = 2548, - [6169] = 2483, - [6170] = 2549, - [6171] = 2550, - [6172] = 2551, - [6173] = 2553, - [6174] = 2554, - [6175] = 2718, - [6176] = 5754, - [6177] = 2688, - [6178] = 2541, - [6179] = 2632, - [6180] = 2689, - [6181] = 2704, - [6182] = 2641, - [6183] = 2539, - [6184] = 2713, - [6185] = 2519, - [6186] = 2552, - [6187] = 5752, - [6188] = 2555, - [6189] = 2642, - [6190] = 2647, - [6191] = 2648, - [6192] = 2649, - [6193] = 2752, - [6194] = 2652, - [6195] = 2653, - [6196] = 2654, - [6197] = 2657, - [6198] = 2659, - [6199] = 2660, - [6200] = 2573, - [6201] = 2574, - [6202] = 2575, - [6203] = 2580, - [6204] = 2667, - [6205] = 2668, - [6206] = 2720, - [6207] = 2647, - [6208] = 2588, - [6209] = 2732, - [6210] = 2589, - [6211] = 2590, - [6212] = 2648, - [6213] = 2649, - [6214] = 2652, - [6215] = 2601, - [6216] = 2606, - [6217] = 2612, - [6218] = 2753, - [6219] = 2621, - [6220] = 2622, - [6221] = 2624, - [6222] = 2626, - [6223] = 2628, - [6224] = 2653, - [6225] = 2629, - [6226] = 2742, - [6227] = 2654, - [6228] = 2750, - [6229] = 2633, - [6230] = 2716, - [6231] = 5754, - [6232] = 2672, - [6233] = 2490, - [6234] = 2522, - [6235] = 2695, - [6236] = 2701, - [6237] = 6237, - [6238] = 6238, - [6239] = 6239, - [6240] = 2702, - [6241] = 2703, - [6242] = 2705, - [6243] = 2707, - [6244] = 2708, - [6245] = 6245, - [6246] = 2715, - [6247] = 2719, - [6248] = 2721, - [6249] = 2723, - [6250] = 2726, - [6251] = 2727, - [6252] = 2728, - [6253] = 2729, - [6254] = 2730, - [6255] = 6255, - [6256] = 2541, - [6257] = 2741, - [6258] = 2743, - [6259] = 2745, - [6260] = 2746, - [6261] = 2747, - [6262] = 2748, - [6263] = 2528, - [6264] = 2752, - [6265] = 2753, - [6266] = 2754, - [6267] = 2755, - [6268] = 2757, - [6269] = 2756, - [6270] = 2758, - [6271] = 2760, - [6272] = 2761, - [6273] = 2515, - [6274] = 2762, - [6275] = 2763, - [6276] = 2764, - [6277] = 2765, - [6278] = 2766, - [6279] = 2770, - [6280] = 2773, - [6281] = 6281, - [6282] = 6282, - [6283] = 2682, - [6284] = 2687, - [6285] = 2688, - [6286] = 6286, - [6287] = 2689, - [6288] = 2704, - [6289] = 6237, - [6290] = 6238, - [6291] = 2756, - [6292] = 2758, - [6293] = 2709, - [6294] = 2712, - [6295] = 2722, - [6296] = 2733, - [6297] = 2738, - [6298] = 2560, - [6299] = 6299, - [6300] = 2566, - [6301] = 2576, - [6302] = 2577, - [6303] = 2578, - [6304] = 6286, - [6305] = 2591, - [6306] = 2597, - [6307] = 2599, - [6308] = 2600, - [6309] = 2509, - [6310] = 2675, - [6311] = 2679, - [6312] = 2491, - [6313] = 2684, - [6314] = 2518, - [6315] = 2552, - [6316] = 2555, - [6317] = 2556, - [6318] = 2557, - [6319] = 2558, - [6320] = 2559, - [6321] = 2561, - [6322] = 2563, - [6323] = 2565, - [6324] = 2567, - [6325] = 2570, - [6326] = 2501, - [6327] = 2579, - [6328] = 2593, - [6329] = 2594, - [6330] = 2596, - [6331] = 2527, - [6332] = 6286, - [6333] = 2590, - [6334] = 2598, - [6335] = 6237, - [6336] = 6238, - [6337] = 2671, - [6338] = 2628, - [6339] = 2629, - [6340] = 2674, - [6341] = 2678, - [6342] = 2774, - [6343] = 2694, - [6344] = 2696, - [6345] = 2483, - [6346] = 2494, - [6347] = 2495, - [6348] = 2480, - [6349] = 2534, - [6350] = 2700, - [6351] = 2750, - [6352] = 2751, - [6353] = 2525, - [6354] = 6286, - [6355] = 2548, - [6356] = 6237, - [6357] = 6238, - [6358] = 6358, - [6359] = 6286, - [6360] = 2574, - [6361] = 2605, - [6362] = 6237, - [6363] = 6238, - [6364] = 2536, - [6365] = 2588, - [6366] = 2519, - [6367] = 6286, - [6368] = 6237, - [6369] = 6238, - [6370] = 2483, - [6371] = 6286, - [6372] = 2632, - [6373] = 6237, - [6374] = 6238, - [6375] = 2641, - [6376] = 2642, - [6377] = 6286, - [6378] = 5864, - [6379] = 2647, - [6380] = 2648, - [6381] = 2649, - [6382] = 2652, - [6383] = 2653, - [6384] = 2654, - [6385] = 2657, - [6386] = 6237, - [6387] = 6238, - [6388] = 2659, - [6389] = 2660, - [6390] = 2494, - [6391] = 2667, - [6392] = 2668, - [6393] = 6286, - [6394] = 2495, - [6395] = 6237, - [6396] = 6238, - [6397] = 2605, - [6398] = 6286, - [6399] = 6237, - [6400] = 6238, - [6401] = 6286, - [6402] = 2480, - [6403] = 6237, - [6404] = 6238, - [6405] = 2534, - [6406] = 2632, - [6407] = 6286, - [6408] = 6237, - [6409] = 6238, - [6410] = 6286, - [6411] = 2641, - [6412] = 2642, - [6413] = 6237, - [6414] = 6238, - [6415] = 2675, - [6416] = 2647, - [6417] = 2648, - [6418] = 2649, - [6419] = 2652, - [6420] = 2679, - [6421] = 2653, - [6422] = 2654, - [6423] = 2657, - [6424] = 2659, - [6425] = 2660, - [6426] = 6286, - [6427] = 2716, - [6428] = 2667, - [6429] = 2668, - [6430] = 6237, - [6431] = 6238, - [6432] = 6237, - [6433] = 6238, - [6434] = 6237, - [6435] = 6238, - [6436] = 2517, - [6437] = 6238, - [6438] = 6238, - [6439] = 6238, - [6440] = 6238, - [6441] = 6238, - [6442] = 2571, - [6443] = 6238, - [6444] = 2635, - [6445] = 2670, - [6446] = 6238, - [6447] = 2501, - [6448] = 2491, - [6449] = 6238, - [6450] = 6238, - [6451] = 6239, - [6452] = 6255, - [6453] = 6281, - [6454] = 6282, - [6455] = 2716, - [6456] = 2490, - [6457] = 2720, - [6458] = 2669, - [6459] = 2713, - [6460] = 2528, - [6461] = 2541, - [6462] = 2638, - [6463] = 2536, - [6464] = 2731, - [6465] = 2737, - [6466] = 2631, - [6467] = 2633, - [6468] = 2490, - [6469] = 2740, - [6470] = 2736, - [6471] = 2720, - [6472] = 2768, - [6473] = 2562, - [6474] = 2564, - [6475] = 2572, - [6476] = 2607, - [6477] = 2697, - [6478] = 2698, - [6479] = 2568, - [6480] = 2608, - [6481] = 2583, - [6482] = 2613, - [6483] = 2063, - [6484] = 2644, - [6485] = 2645, - [6486] = 2646, - [6487] = 2650, - [6488] = 2666, - [6489] = 2673, - [6490] = 2582, - [6491] = 2685, - [6492] = 2681, - [6493] = 2595, - [6494] = 2616, - [6495] = 2620, - [6496] = 2639, - [6497] = 2655, - [6498] = 2658, - [6499] = 2569, - [6500] = 2661, - [6501] = 2662, - [6502] = 2724, - [6503] = 2699, - [6504] = 2711, - [6505] = 2714, - [6506] = 2717, - [6507] = 2718, - [6508] = 2732, - [6509] = 2742, - [6510] = 2759, - [6511] = 2767, - [6512] = 2544, - [6513] = 2545, - [6514] = 2546, - [6515] = 2547, - [6516] = 2549, - [6517] = 2550, - [6518] = 2551, - [6519] = 2553, - [6520] = 2554, - [6521] = 6286, - [6522] = 6237, - [6523] = 6286, - [6524] = 6286, - [6525] = 6237, - [6526] = 6286, - [6527] = 6237, - [6528] = 6237, - [6529] = 6237, - [6530] = 6286, - [6531] = 6237, - [6532] = 6237, - [6533] = 6239, - [6534] = 6255, - [6535] = 6281, - [6536] = 6282, - [6537] = 6239, - [6538] = 6255, - [6539] = 6281, - [6540] = 6282, - [6541] = 6239, - [6542] = 6255, - [6543] = 6281, - [6544] = 6282, - [6545] = 6239, - [6546] = 6255, - [6547] = 6281, - [6548] = 6282, - [6549] = 6239, - [6550] = 6255, - [6551] = 6281, - [6552] = 6282, - [6553] = 6239, - [6554] = 6255, - [6555] = 6281, - [6556] = 6282, - [6557] = 6239, - [6558] = 6255, - [6559] = 6281, - [6560] = 6282, - [6561] = 6239, - [6562] = 6255, - [6563] = 6281, - [6564] = 6282, - [6565] = 2713, - [6566] = 6239, - [6567] = 6255, - [6568] = 6281, - [6569] = 6282, - [6570] = 6239, - [6571] = 6255, - [6572] = 6281, - [6573] = 6282, - [6574] = 6239, - [6575] = 6255, - [6576] = 6281, - [6577] = 6282, - [6578] = 2571, - [6579] = 6239, - [6580] = 6255, - [6581] = 6281, - [6582] = 6282, - [6583] = 6286, - [6584] = 2501, - [6585] = 2483, - [6586] = 2490, - [6587] = 2494, - [6588] = 2495, - [6589] = 2480, - [6590] = 2573, - [6591] = 2517, - [6592] = 2540, - [6593] = 2525, - [6594] = 2575, - [6595] = 2519, - [6596] = 2483, - [6597] = 2494, - [6598] = 2495, - [6599] = 2480, - [6600] = 2501, - [6601] = 2490, - [6602] = 2486, - [6603] = 2580, - [6604] = 2589, - [6605] = 2590, - [6606] = 2598, - [6607] = 2601, - [6608] = 2606, - [6609] = 2612, - [6610] = 2621, - [6611] = 2622, - [6612] = 2624, - [6613] = 2626, - [6614] = 2628, - [6615] = 2629, - [6616] = 2539, - [6617] = 2519, - [6618] = 2501, - [6619] = 2483, - [6620] = 2494, - [6621] = 2495, - [6622] = 2480, - [6623] = 2637, - [6624] = 2500, - [6625] = 2663, - [6626] = 2664, - [6627] = 2665, - [6628] = 2540, - [6629] = 2438, - [6630] = 2451, - [6631] = 2749, - [6632] = 2624, - [6633] = 2577, - [6634] = 2707, - [6635] = 6635, - [6636] = 2578, - [6637] = 2753, - [6638] = 6638, - [6639] = 2571, - [6640] = 2568, - [6641] = 2754, - [6642] = 2659, - [6643] = 2591, - [6644] = 2583, - [6645] = 2660, - [6646] = 2597, - [6647] = 2599, - [6648] = 2536, - [6649] = 2600, - [6650] = 2708, - [6651] = 2737, - [6652] = 6652, - [6653] = 2755, - [6654] = 2628, - [6655] = 2716, - [6656] = 6635, - [6657] = 2663, - [6658] = 2637, - [6659] = 2644, - [6660] = 2757, - [6661] = 2645, - [6662] = 2646, - [6663] = 2650, - [6664] = 2540, - [6665] = 6635, - [6666] = 2681, - [6667] = 2631, - [6668] = 2664, - [6669] = 2665, - [6670] = 2633, - [6671] = 2632, - [6672] = 2638, - [6673] = 2666, - [6674] = 2740, - [6675] = 2673, - [6676] = 6676, - [6677] = 6677, - [6678] = 6635, - [6679] = 6635, - [6680] = 2675, - [6681] = 2679, - [6682] = 6682, - [6683] = 2672, - [6684] = 2741, - [6685] = 6685, - [6686] = 6686, - [6687] = 6635, - [6688] = 2724, - [6689] = 2612, - [6690] = 2715, - [6691] = 2606, - [6692] = 2743, - [6693] = 2684, - [6694] = 2582, - [6695] = 2685, - [6696] = 2486, - [6697] = 2552, - [6698] = 2555, - [6699] = 2556, - [6700] = 2557, - [6701] = 2558, - [6702] = 2559, - [6703] = 2561, - [6704] = 2563, - [6705] = 2565, - [6706] = 2567, - [6707] = 2570, - [6708] = 2579, - [6709] = 2593, - [6710] = 2594, - [6711] = 2515, - [6712] = 2595, - [6713] = 2596, - [6714] = 2720, - [6715] = 2745, - [6716] = 2616, - [6717] = 2746, - [6718] = 2620, - [6719] = 2639, - [6720] = 2655, - [6721] = 2641, - [6722] = 2642, - [6723] = 2747, - [6724] = 2748, - [6725] = 2658, - [6726] = 2760, - [6727] = 2719, - [6728] = 2749, - [6729] = 2721, - [6730] = 2761, - [6731] = 2762, - [6732] = 2763, - [6733] = 2764, - [6734] = 6635, - [6735] = 2569, - [6736] = 2661, - [6737] = 2662, - [6738] = 2723, - [6739] = 2765, - [6740] = 6740, - [6741] = 2621, - [6742] = 2669, - [6743] = 2726, - [6744] = 2727, - [6745] = 2728, - [6746] = 6635, - [6747] = 2667, - [6748] = 2729, - [6749] = 2605, - [6750] = 2668, - [6751] = 6635, - [6752] = 2766, - [6753] = 2671, - [6754] = 2674, - [6755] = 2678, - [6756] = 2730, - [6757] = 2629, - [6758] = 2774, - [6759] = 2622, - [6760] = 2528, - [6761] = 2694, - [6762] = 2731, - [6763] = 2541, - [6764] = 2768, - [6765] = 2770, - [6766] = 2675, - [6767] = 2679, - [6768] = 2773, - [6769] = 6635, - [6770] = 2696, - [6771] = 2699, - [6772] = 6772, - [6773] = 6299, - [6774] = 2700, - [6775] = 2601, - [6776] = 2752, - [6777] = 2562, - [6778] = 2647, - [6779] = 2648, - [6780] = 2564, - [6781] = 2572, - [6782] = 2607, - [6783] = 2756, - [6784] = 2649, - [6785] = 2697, - [6786] = 2711, - [6787] = 2714, - [6788] = 2698, - [6789] = 2713, - [6790] = 2652, - [6791] = 2758, - [6792] = 2736, - [6793] = 2608, - [6794] = 2626, - [6795] = 2653, - [6796] = 2613, - [6797] = 2717, - [6798] = 2718, - [6799] = 2732, - [6800] = 2742, - [6801] = 2750, - [6802] = 2751, - [6803] = 2759, - [6804] = 2767, - [6805] = 2544, - [6806] = 2545, - [6807] = 2546, - [6808] = 2635, - [6809] = 2547, - [6810] = 2573, - [6811] = 2548, - [6812] = 2549, - [6813] = 2550, - [6814] = 2551, - [6815] = 2553, - [6816] = 2519, - [6817] = 2574, - [6818] = 2670, - [6819] = 2571, - [6820] = 2682, - [6821] = 2687, - [6822] = 2688, - [6823] = 2689, - [6824] = 2575, - [6825] = 2704, - [6826] = 2598, - [6827] = 2519, - [6828] = 2554, - [6829] = 2709, - [6830] = 2605, - [6831] = 2712, - [6832] = 2632, - [6833] = 2641, - [6834] = 2642, - [6835] = 2647, - [6836] = 2648, - [6837] = 2649, - [6838] = 2652, - [6839] = 2722, - [6840] = 2653, - [6841] = 2580, - [6842] = 2654, - [6843] = 2657, - [6844] = 2659, - [6845] = 2660, - [6846] = 2667, - [6847] = 2668, - [6848] = 2605, - [6849] = 2632, - [6850] = 2641, - [6851] = 2642, - [6852] = 2647, - [6853] = 2648, - [6854] = 2649, - [6855] = 2652, - [6856] = 2653, - [6857] = 2654, - [6858] = 2657, - [6859] = 2659, - [6860] = 2660, - [6861] = 2667, - [6862] = 2668, - [6863] = 2716, - [6864] = 2733, - [6865] = 2720, - [6866] = 2713, - [6867] = 2738, - [6868] = 2716, - [6869] = 2695, - [6870] = 2654, - [6871] = 2657, - [6872] = 2720, - [6873] = 2588, - [6874] = 2713, - [6875] = 2560, - [6876] = 2589, - [6877] = 2598, - [6878] = 6635, - [6879] = 2701, - [6880] = 2702, - [6881] = 2703, - [6882] = 2590, - [6883] = 2705, - [6884] = 6635, - [6885] = 2756, - [6886] = 2566, - [6887] = 2525, - [6888] = 2576, - [6889] = 2758, - [6890] = 2598, - [6891] = 6891, - [6892] = 6299, - [6893] = 2517, - [6894] = 2519, - [6895] = 2713, - [6896] = 2652, - [6897] = 2653, - [6898] = 2654, - [6899] = 2657, - [6900] = 6900, - [6901] = 2659, - [6902] = 6900, - [6903] = 2660, - [6904] = 6900, - [6905] = 2667, - [6906] = 2668, - [6907] = 6900, - [6908] = 6900, - [6909] = 6900, - [6910] = 6910, - [6911] = 2716, - [6912] = 6910, - [6913] = 6900, - [6914] = 6914, - [6915] = 2605, - [6916] = 2632, - [6917] = 2641, - [6918] = 2642, - [6919] = 2647, - [6920] = 2648, - [6921] = 2649, - [6922] = 2652, - [6923] = 2653, - [6924] = 2654, - [6925] = 2657, - [6926] = 2659, - [6927] = 2660, - [6928] = 2667, - [6929] = 2668, - [6930] = 2716, - [6931] = 2720, - [6932] = 2713, - [6933] = 2598, - [6934] = 6910, - [6935] = 6900, - [6936] = 2605, - [6937] = 6910, - [6938] = 6938, - [6939] = 6900, - [6940] = 2632, - [6941] = 2641, - [6942] = 2642, - [6943] = 2647, - [6944] = 2648, - [6945] = 2649, - [6946] = 2652, - [6947] = 2653, - [6948] = 2654, - [6949] = 2657, - [6950] = 2659, - [6951] = 2660, - [6952] = 2667, - [6953] = 2668, - [6954] = 1984, - [6955] = 6910, - [6956] = 2632, - [6957] = 6900, - [6958] = 2716, - [6959] = 1989, - [6960] = 2720, - [6961] = 6910, - [6962] = 6900, - [6963] = 2713, - [6964] = 6914, - [6965] = 6965, - [6966] = 6900, - [6967] = 6900, - [6968] = 6900, - [6969] = 6965, - [6970] = 6900, - [6971] = 6900, - [6972] = 6900, - [6973] = 6900, - [6974] = 6914, - [6975] = 6900, - [6976] = 6914, - [6977] = 6914, - [6978] = 6914, - [6979] = 6914, - [6980] = 2720, - [6981] = 6900, - [6982] = 6914, - [6983] = 6914, - [6984] = 6914, - [6985] = 6914, - [6986] = 6914, - [6987] = 6900, - [6988] = 6914, - [6989] = 6914, - [6990] = 6914, - [6991] = 6914, - [6992] = 6914, - [6993] = 6914, - [6994] = 6914, - [6995] = 6914, - [6996] = 6914, - [6997] = 6914, - [6998] = 6900, - [6999] = 2598, - [7000] = 7000, - [7001] = 6900, - [7002] = 2641, - [7003] = 2642, - [7004] = 6900, - [7005] = 6914, - [7006] = 6900, - [7007] = 2647, - [7008] = 2648, - [7009] = 6900, - [7010] = 6914, - [7011] = 6914, - [7012] = 2598, - [7013] = 2649, - [7014] = 6965, - [7015] = 2605, - [7016] = 6914, - [7017] = 6965, - [7018] = 7018, - [7019] = 1984, - [7020] = 1970, - [7021] = 1971, - [7022] = 1971, - [7023] = 1969, - [7024] = 1989, - [7025] = 1970, - [7026] = 7026, - [7027] = 1969, - [7028] = 1970, - [7029] = 1971, - [7030] = 1971, - [7031] = 1970, - [7032] = 1969, - [7033] = 1969, - [7034] = 1970, - [7035] = 1969, - [7036] = 1970, - [7037] = 1969, - [7038] = 1971, - [7039] = 1971, - [7040] = 1970, - [7041] = 1971, - [7042] = 1969, - [7043] = 1969, - [7044] = 1971, - [7045] = 1970, - [7046] = 7046, - [7047] = 7047, - [7048] = 7048, - [7049] = 7049, - [7050] = 7050, - [7051] = 7051, - [7052] = 7052, - [7053] = 7053, - [7054] = 7052, - [7055] = 7055, - [7056] = 7056, - [7057] = 7049, - [7058] = 7058, - [7059] = 7059, - [7060] = 7059, - [7061] = 7061, - [7062] = 7049, - [7063] = 7063, - [7064] = 7059, - [7065] = 7065, - [7066] = 7066, - [7067] = 7048, + [6039] = 2638, + [6040] = 2493, + [6041] = 5791, + [6042] = 2745, + [6043] = 2747, + [6044] = 2749, + [6045] = 2750, + [6046] = 2751, + [6047] = 2755, + [6048] = 2757, + [6049] = 2758, + [6050] = 2759, + [6051] = 5783, + [6052] = 2760, + [6053] = 6053, + [6054] = 2482, + [6055] = 2728, + [6056] = 2761, + [6057] = 2729, + [6058] = 2762, + [6059] = 2722, + [6060] = 2718, + [6061] = 2584, + [6062] = 2506, + [6063] = 2768, + [6064] = 2483, + [6065] = 2605, + [6066] = 2770, + [6067] = 2549, + [6068] = 2597, + [6069] = 2587, + [6070] = 2730, + [6071] = 2605, + [6072] = 2617, + [6073] = 2478, + [6074] = 2731, + [6075] = 2612, + [6076] = 2599, + [6077] = 2588, + [6078] = 5791, + [6079] = 2617, + [6080] = 2551, + [6081] = 2591, + [6082] = 2546, + [6083] = 2602, + [6084] = 2548, + [6085] = 2551, + [6086] = 2591, + [6087] = 2648, + [6088] = 2650, + [6089] = 2651, + [6090] = 2653, + [6091] = 5783, + [6092] = 2654, + [6093] = 2655, + [6094] = 2656, + [6095] = 2573, + [6096] = 2658, + [6097] = 2688, + [6098] = 2644, + [6099] = 2672, + [6100] = 2602, + [6101] = 2688, + [6102] = 2672, + [6103] = 2565, + [6104] = 2565, + [6105] = 2610, + [6106] = 2637, + [6107] = 2637, + [6108] = 2777, + [6109] = 2746, + [6110] = 2771, + [6111] = 2777, + [6112] = 2746, + [6113] = 2553, + [6114] = 2646, + [6115] = 2559, + [6116] = 2614, + [6117] = 2567, + [6118] = 2576, + [6119] = 2684, + [6120] = 2691, + [6121] = 2707, + [6122] = 2716, + [6123] = 2721, + [6124] = 2547, + [6125] = 2726, + [6126] = 2563, + [6127] = 2769, + [6128] = 2557, + [6129] = 2708, + [6130] = 2575, + [6131] = 2661, + [6132] = 5783, + [6133] = 2633, + [6134] = 2771, + [6135] = 2592, + [6136] = 2696, + [6137] = 5791, + [6138] = 2568, + [6139] = 2574, + [6140] = 2594, + [6141] = 2586, + [6142] = 2740, + [6143] = 5783, + [6144] = 2577, + [6145] = 2624, + [6146] = 2647, + [6147] = 2677, + [6148] = 2772, + [6149] = 2483, + [6150] = 2652, + [6151] = 2776, + [6152] = 2754, + [6153] = 2611, + [6154] = 2735, + [6155] = 2683, + [6156] = 2690, + [6157] = 2723, + [6158] = 2744, + [6159] = 2546, + [6160] = 2738, + [6161] = 2511, + [6162] = 2516, + [6163] = 2685, + [6164] = 2638, + [6165] = 2055, + [6166] = 2545, + [6167] = 2544, + [6168] = 2686, + [6169] = 2687, + [6170] = 5791, + [6171] = 2580, + [6172] = 2622, + [6173] = 2630, + [6174] = 2616, + [6175] = 2528, + [6176] = 2598, + [6177] = 2553, + [6178] = 5783, + [6179] = 2774, + [6180] = 2561, + [6181] = 2635, + [6182] = 2775, + [6183] = 2640, + [6184] = 2562, + [6185] = 2670, + [6186] = 2559, + [6187] = 2595, + [6188] = 2596, + [6189] = 2480, + [6190] = 2548, + [6191] = 2598, + [6192] = 2675, + [6193] = 2682, + [6194] = 2695, + [6195] = 2739, + [6196] = 2552, + [6197] = 2564, + [6198] = 2566, + [6199] = 2582, + [6200] = 2529, + [6201] = 2590, + [6202] = 2601, + [6203] = 2570, + [6204] = 2718, + [6205] = 2554, + [6206] = 2603, + [6207] = 2600, + [6208] = 2563, + [6209] = 5791, + [6210] = 2552, + [6211] = 5783, + [6212] = 2554, + [6213] = 2618, + [6214] = 2621, + [6215] = 2632, + [6216] = 2639, + [6217] = 2625, + [6218] = 2715, + [6219] = 2530, + [6220] = 2642, + [6221] = 2645, + [6222] = 2567, + [6223] = 5791, + [6224] = 2571, + [6225] = 5783, + [6226] = 2734, + [6227] = 2662, + [6228] = 2774, + [6229] = 1971, + [6230] = 2667, + [6231] = 1970, + [6232] = 2676, + [6233] = 2717, + [6234] = 1969, + [6235] = 2532, + [6236] = 2697, + [6237] = 2555, + [6238] = 2593, + [6239] = 2543, + [6240] = 5791, + [6241] = 2587, + [6242] = 2744, + [6243] = 2646, + [6244] = 5783, + [6245] = 5791, + [6246] = 5791, + [6247] = 2555, + [6248] = 2666, + [6249] = 5783, + [6250] = 2668, + [6251] = 2770, + [6252] = 2669, + [6253] = 2597, + [6254] = 2588, + [6255] = 2742, + [6256] = 2649, + [6257] = 2644, + [6258] = 2592, + [6259] = 2743, + [6260] = 2634, + [6261] = 2773, + [6262] = 2623, + [6263] = 2607, + [6264] = 2712, + [6265] = 5791, + [6266] = 2539, + [6267] = 2768, + [6268] = 2667, + [6269] = 2669, + [6270] = 2511, + [6271] = 6271, + [6272] = 6272, + [6273] = 2672, + [6274] = 6274, + [6275] = 2648, + [6276] = 6274, + [6277] = 2720, + [6278] = 2611, + [6279] = 2593, + [6280] = 2543, + [6281] = 6272, + [6282] = 6274, + [6283] = 2532, + [6284] = 6274, + [6285] = 2501, + [6286] = 2658, + [6287] = 6271, + [6288] = 6272, + [6289] = 2517, + [6290] = 6271, + [6291] = 6272, + [6292] = 6271, + [6293] = 2564, + [6294] = 2566, + [6295] = 6271, + [6296] = 6274, + [6297] = 6272, + [6298] = 2683, + [6299] = 2776, + [6300] = 2668, + [6301] = 2754, + [6302] = 6272, + [6303] = 6272, + [6304] = 6271, + [6305] = 2582, + [6306] = 6274, + [6307] = 6272, + [6308] = 2705, + [6309] = 2669, + [6310] = 6272, + [6311] = 2590, + [6312] = 2601, + [6313] = 6271, + [6314] = 2734, + [6315] = 2603, + [6316] = 6316, + [6317] = 6317, + [6318] = 2618, + [6319] = 6319, + [6320] = 6320, + [6321] = 2562, + [6322] = 2685, + [6323] = 2690, + [6324] = 2676, + [6325] = 2479, + [6326] = 6316, + [6327] = 6317, + [6328] = 6319, + [6329] = 6320, + [6330] = 2516, + [6331] = 2698, + [6332] = 6272, + [6333] = 6319, + [6334] = 2621, + [6335] = 6316, + [6336] = 6317, + [6337] = 2561, + [6338] = 6319, + [6339] = 6320, + [6340] = 2686, + [6341] = 2773, + [6342] = 2607, + [6343] = 2712, + [6344] = 2572, + [6345] = 2723, + [6346] = 6316, + [6347] = 6317, + [6348] = 6319, + [6349] = 6320, + [6350] = 2532, + [6351] = 2584, + [6352] = 2580, + [6353] = 2613, + [6354] = 2622, + [6355] = 6316, + [6356] = 6317, + [6357] = 6319, + [6358] = 6320, + [6359] = 2546, + [6360] = 2548, + [6361] = 6272, + [6362] = 6274, + [6363] = 6316, + [6364] = 6317, + [6365] = 6319, + [6366] = 6320, + [6367] = 2630, + [6368] = 6316, + [6369] = 6317, + [6370] = 2635, + [6371] = 6319, + [6372] = 6320, + [6373] = 2529, + [6374] = 2485, + [6375] = 6274, + [6376] = 6376, + [6377] = 6316, + [6378] = 6317, + [6379] = 2687, + [6380] = 6319, + [6381] = 6320, + [6382] = 2530, + [6383] = 2545, + [6384] = 6316, + [6385] = 6317, + [6386] = 6319, + [6387] = 6320, + [6388] = 6316, + [6389] = 6317, + [6390] = 6319, + [6391] = 6320, + [6392] = 2640, + [6393] = 2670, + [6394] = 2697, + [6395] = 2745, + [6396] = 6316, + [6397] = 6317, + [6398] = 2675, + [6399] = 6319, + [6400] = 6320, + [6401] = 2682, + [6402] = 2739, + [6403] = 2747, + [6404] = 2526, + [6405] = 2749, + [6406] = 2699, + [6407] = 6316, + [6408] = 6317, + [6409] = 2485, + [6410] = 6319, + [6411] = 6320, + [6412] = 2710, + [6413] = 2711, + [6414] = 2750, + [6415] = 6274, + [6416] = 2719, + [6417] = 2722, + [6418] = 2544, + [6419] = 2751, + [6420] = 2571, + [6421] = 2552, + [6422] = 2554, + [6423] = 2589, + [6424] = 2606, + [6425] = 2615, + [6426] = 6274, + [6427] = 2619, + [6428] = 6272, + [6429] = 6274, + [6430] = 2755, + [6431] = 2651, + [6432] = 2478, + [6433] = 2523, + [6434] = 2555, + [6435] = 6274, + [6436] = 2559, + [6437] = 2593, + [6438] = 2600, + [6439] = 2653, + [6440] = 6271, + [6441] = 6274, + [6442] = 2539, + [6443] = 6274, + [6444] = 6320, + [6445] = 2543, + [6446] = 6446, + [6447] = 2654, + [6448] = 2757, + [6449] = 2758, + [6450] = 2700, + [6451] = 2759, + [6452] = 2634, + [6453] = 2760, + [6454] = 2478, + [6455] = 6272, + [6456] = 6271, + [6457] = 6274, + [6458] = 2506, + [6459] = 2492, + [6460] = 2761, + [6461] = 2632, + [6462] = 2610, + [6463] = 2549, + [6464] = 2481, + [6465] = 2701, + [6466] = 2744, + [6467] = 6316, + [6468] = 2639, + [6469] = 6317, + [6470] = 2642, + [6471] = 2649, + [6472] = 6271, + [6473] = 2482, + [6474] = 2478, + [6475] = 2479, + [6476] = 2073, + [6477] = 2480, + [6478] = 2481, + [6479] = 2482, + [6480] = 2573, + [6481] = 2483, + [6482] = 2645, + [6483] = 2576, + [6484] = 2623, + [6485] = 2577, + [6486] = 2561, + [6487] = 2662, + [6488] = 2578, + [6489] = 2579, + [6490] = 2528, + [6491] = 2688, + [6492] = 6274, + [6493] = 2717, + [6494] = 2523, + [6495] = 2611, + [6496] = 2631, + [6497] = 2517, + [6498] = 2762, + [6499] = 2641, + [6500] = 6271, + [6501] = 2715, + [6502] = 6319, + [6503] = 6320, + [6504] = 2581, + [6505] = 6272, + [6506] = 2623, + [6507] = 2506, + [6508] = 2610, + [6509] = 2539, + [6510] = 6274, + [6511] = 6272, + [6512] = 2713, + [6513] = 2631, + [6514] = 2680, + [6515] = 6272, + [6516] = 2432, + [6517] = 6274, + [6518] = 2702, + [6519] = 2479, + [6520] = 2694, + [6521] = 2481, + [6522] = 2482, + [6523] = 2483, + [6524] = 6274, + [6525] = 2478, + [6526] = 2570, + [6527] = 2480, + [6528] = 2646, + [6529] = 2528, + [6530] = 2568, + [6531] = 2540, + [6532] = 2445, + [6533] = 6271, + [6534] = 6272, + [6535] = 6274, + [6536] = 6536, + [6537] = 2728, + [6538] = 2729, + [6539] = 2583, + [6540] = 2730, + [6541] = 2731, + [6542] = 2563, + [6543] = 2574, + [6544] = 2655, + [6545] = 2703, + [6546] = 2774, + [6547] = 2775, + [6548] = 2704, + [6549] = 2770, + [6550] = 2735, + [6551] = 2597, + [6552] = 2738, + [6553] = 6271, + [6554] = 2684, + [6555] = 2691, + [6556] = 2484, + [6557] = 2706, + [6558] = 2526, + [6559] = 6271, + [6560] = 2585, + [6561] = 2718, + [6562] = 2586, + [6563] = 2768, + [6564] = 2646, + [6565] = 2587, + [6566] = 2599, + [6567] = 2588, + [6568] = 6272, + [6569] = 2480, + [6570] = 6274, + [6571] = 2493, + [6572] = 6272, + [6573] = 6274, + [6574] = 2539, + [6575] = 2478, + [6576] = 2545, + [6577] = 2707, + [6578] = 2709, + [6579] = 6271, + [6580] = 2479, + [6581] = 2481, + [6582] = 2482, + [6583] = 2483, + [6584] = 2716, + [6585] = 2721, + [6586] = 2726, + [6587] = 2479, + [6588] = 2684, + [6589] = 2691, + [6590] = 2769, + [6591] = 2557, + [6592] = 2708, + [6593] = 2575, + [6594] = 2661, + [6595] = 2633, + [6596] = 2481, + [6597] = 6271, + [6598] = 2696, + [6599] = 2482, + [6600] = 2592, + [6601] = 2483, + [6602] = 2511, + [6603] = 2605, + [6604] = 2594, + [6605] = 2656, + [6606] = 2595, + [6607] = 2596, + [6608] = 2740, + [6609] = 2650, + [6610] = 2598, + [6611] = 2614, + [6612] = 2714, + [6613] = 2616, + [6614] = 6272, + [6615] = 6274, + [6616] = 2617, + [6617] = 2638, + [6618] = 2565, + [6619] = 2637, + [6620] = 2777, + [6621] = 2746, + [6622] = 2771, + [6623] = 6271, + [6624] = 2553, + [6625] = 2612, + [6626] = 2547, + [6627] = 2616, + [6628] = 2624, + [6629] = 5811, + [6630] = 2707, + [6631] = 2716, + [6632] = 2638, + [6633] = 6271, + [6634] = 2721, + [6635] = 2726, + [6636] = 2625, + [6637] = 2567, + [6638] = 6272, + [6639] = 6271, + [6640] = 2644, + [6641] = 2647, + [6642] = 2772, + [6643] = 2677, + [6644] = 2483, + [6645] = 6316, + [6646] = 6272, + [6647] = 2769, + [6648] = 2557, + [6649] = 6272, + [6650] = 6274, + [6651] = 2708, + [6652] = 6274, + [6653] = 2551, + [6654] = 2652, + [6655] = 2549, + [6656] = 2575, + [6657] = 2661, + [6658] = 2633, + [6659] = 2696, + [6660] = 2695, + [6661] = 2591, + [6662] = 2666, + [6663] = 2742, + [6664] = 2480, + [6665] = 6317, + [6666] = 2743, + [6667] = 2602, + [6668] = 6271, + [6669] = 2668, + [6670] = 2480, + [6671] = 2661, + [6672] = 2703, + [6673] = 2735, + [6674] = 2567, + [6675] = 2633, + [6676] = 2758, + [6677] = 2549, + [6678] = 2575, + [6679] = 6679, + [6680] = 6680, + [6681] = 2759, + [6682] = 2547, + [6683] = 2706, + [6684] = 2740, + [6685] = 2772, + [6686] = 2776, + [6687] = 6687, + [6688] = 6688, + [6689] = 2754, + [6690] = 2690, + [6691] = 2696, + [6692] = 2723, + [6693] = 6693, + [6694] = 2580, + [6695] = 2526, + [6696] = 2622, + [6697] = 2760, + [6698] = 6680, + [6699] = 2630, + [6700] = 2734, + [6701] = 2638, + [6702] = 2761, + [6703] = 2635, + [6704] = 2762, + [6705] = 2610, + [6706] = 2646, + [6707] = 2684, + [6708] = 2691, + [6709] = 2707, + [6710] = 2716, + [6711] = 2721, + [6712] = 2726, + [6713] = 6713, + [6714] = 2769, + [6715] = 2557, + [6716] = 2708, + [6717] = 2575, + [6718] = 2633, + [6719] = 2696, + [6720] = 2501, + [6721] = 2611, + [6722] = 2563, + [6723] = 2545, + [6724] = 2561, + [6725] = 2568, + [6726] = 2574, + [6727] = 6536, + [6728] = 2718, + [6729] = 6680, + [6730] = 2484, + [6731] = 2715, + [6732] = 2728, + [6733] = 2599, + [6734] = 2640, + [6735] = 2729, + [6736] = 2539, + [6737] = 2614, + [6738] = 2616, + [6739] = 2670, + [6740] = 2675, + [6741] = 2682, + [6742] = 2646, + [6743] = 2695, + [6744] = 2739, + [6745] = 2661, + [6746] = 6536, + [6747] = 2612, + [6748] = 6680, + [6749] = 2593, + [6750] = 2543, + [6751] = 2624, + [6752] = 2738, + [6753] = 2564, + [6754] = 2625, + [6755] = 2644, + [6756] = 2647, + [6757] = 2566, + [6758] = 2582, + [6759] = 2590, + [6760] = 2601, + [6761] = 2652, + [6762] = 2603, + [6763] = 2618, + [6764] = 2708, + [6765] = 2621, + [6766] = 2730, + [6767] = 2632, + [6768] = 2623, + [6769] = 6680, + [6770] = 2666, + [6771] = 2668, + [6772] = 2669, + [6773] = 2631, + [6774] = 2639, + [6775] = 2642, + [6776] = 2770, + [6777] = 2645, + [6778] = 6778, + [6779] = 2597, + [6780] = 2662, + [6781] = 2611, + [6782] = 2667, + [6783] = 2676, + [6784] = 2698, + [6785] = 2705, + [6786] = 2717, + [6787] = 2546, + [6788] = 2548, + [6789] = 2552, + [6790] = 2554, + [6791] = 2555, + [6792] = 2684, + [6793] = 2691, + [6794] = 2768, + [6795] = 2773, + [6796] = 2607, + [6797] = 2712, + [6798] = 2572, + [6799] = 2584, + [6800] = 2613, + [6801] = 6680, + [6802] = 2680, + [6803] = 2694, + [6804] = 2699, + [6805] = 2744, + [6806] = 6680, + [6807] = 2711, + [6808] = 2731, + [6809] = 2573, + [6810] = 2677, + [6811] = 2576, + [6812] = 2577, + [6813] = 6680, + [6814] = 2719, + [6815] = 2578, + [6816] = 6680, + [6817] = 2722, + [6818] = 2544, + [6819] = 2570, + [6820] = 2579, + [6821] = 2528, + [6822] = 2571, + [6823] = 2581, + [6824] = 2583, + [6825] = 6825, + [6826] = 2593, + [6827] = 2543, + [6828] = 2562, + [6829] = 2585, + [6830] = 2589, + [6831] = 2586, + [6832] = 2587, + [6833] = 2588, + [6834] = 2592, + [6835] = 2594, + [6836] = 2595, + [6837] = 2596, + [6838] = 2598, + [6839] = 2532, + [6840] = 2600, + [6841] = 2606, + [6842] = 2615, + [6843] = 2619, + [6844] = 6680, + [6845] = 2742, + [6846] = 2704, + [6847] = 2743, + [6848] = 2745, + [6849] = 2517, + [6850] = 2605, + [6851] = 2617, + [6852] = 2634, + [6853] = 2551, + [6854] = 2707, + [6855] = 2539, + [6856] = 2716, + [6857] = 2591, + [6858] = 2602, + [6859] = 2721, + [6860] = 2649, + [6861] = 2638, + [6862] = 2713, + [6863] = 2726, + [6864] = 2688, + [6865] = 2485, + [6866] = 2747, + [6867] = 2672, + [6868] = 2749, + [6869] = 2750, + [6870] = 2641, + [6871] = 2751, + [6872] = 6680, + [6873] = 6873, + [6874] = 2648, + [6875] = 2545, + [6876] = 2650, + [6877] = 2651, + [6878] = 2653, + [6879] = 2654, + [6880] = 2655, + [6881] = 2656, + [6882] = 2658, + [6883] = 2774, + [6884] = 2775, + [6885] = 2709, + [6886] = 2755, + [6887] = 2769, + [6888] = 2610, + [6889] = 2714, + [6890] = 2610, + [6891] = 2646, + [6892] = 2684, + [6893] = 2691, + [6894] = 2707, + [6895] = 2716, + [6896] = 2721, + [6897] = 2726, + [6898] = 2769, + [6899] = 2557, + [6900] = 2708, + [6901] = 2575, + [6902] = 2661, + [6903] = 2633, + [6904] = 2696, + [6905] = 2611, + [6906] = 2565, + [6907] = 2545, + [6908] = 2561, + [6909] = 2557, + [6910] = 2683, + [6911] = 2685, + [6912] = 2686, + [6913] = 2687, + [6914] = 2697, + [6915] = 2623, + [6916] = 2631, + [6917] = 2523, + [6918] = 6918, + [6919] = 2539, + [6920] = 2638, + [6921] = 2637, + [6922] = 2777, + [6923] = 6923, + [6924] = 2757, + [6925] = 2746, + [6926] = 2700, + [6927] = 2771, + [6928] = 2701, + [6929] = 2553, + [6930] = 6680, + [6931] = 2702, + [6932] = 2549, + [6933] = 2720, + [6934] = 2561, + [6935] = 2559, + [6936] = 2710, + [6937] = 6937, + [6938] = 2545, + [6939] = 6939, + [6940] = 2633, + [6941] = 2696, + [6942] = 6942, + [6943] = 6943, + [6944] = 2561, + [6945] = 6939, + [6946] = 6943, + [6947] = 6939, + [6948] = 6943, + [6949] = 6939, + [6950] = 6943, + [6951] = 6943, + [6952] = 6943, + [6953] = 6937, + [6954] = 6943, + [6955] = 6943, + [6956] = 6943, + [6957] = 6943, + [6958] = 2561, + [6959] = 6939, + [6960] = 2638, + [6961] = 2696, + [6962] = 6939, + [6963] = 6939, + [6964] = 2638, + [6965] = 6939, + [6966] = 2638, + [6967] = 6939, + [6968] = 6939, + [6969] = 1984, + [6970] = 2611, + [6971] = 6939, + [6972] = 6937, + [6973] = 6939, + [6974] = 6974, + [6975] = 6939, + [6976] = 2610, + [6977] = 2646, + [6978] = 2545, + [6979] = 6939, + [6980] = 2684, + [6981] = 6939, + [6982] = 6937, + [6983] = 6939, + [6984] = 2646, + [6985] = 2691, + [6986] = 6939, + [6987] = 6943, + [6988] = 2661, + [6989] = 6939, + [6990] = 6937, + [6991] = 6943, + [6992] = 2707, + [6993] = 2684, + [6994] = 2611, + [6995] = 6939, + [6996] = 6943, + [6997] = 6939, + [6998] = 2716, + [6999] = 2691, + [7000] = 6939, + [7001] = 2633, + [7002] = 6943, + [7003] = 2721, + [7004] = 2726, + [7005] = 6943, + [7006] = 2545, + [7007] = 6943, + [7008] = 2707, + [7009] = 2716, + [7010] = 1987, + [7011] = 2769, + [7012] = 2557, + [7013] = 6943, + [7014] = 2721, + [7015] = 2708, + [7016] = 2726, + [7017] = 2575, + [7018] = 6939, + [7019] = 6939, + [7020] = 6943, + [7021] = 2610, + [7022] = 2769, + [7023] = 2561, + [7024] = 2557, + [7025] = 7025, + [7026] = 2708, + [7027] = 2575, + [7028] = 6939, + [7029] = 6943, + [7030] = 6943, + [7031] = 2610, + [7032] = 2661, + [7033] = 6943, + [7034] = 7025, + [7035] = 7025, + [7036] = 2661, + [7037] = 6937, + [7038] = 2646, + [7039] = 6943, + [7040] = 2611, + [7041] = 6943, + [7042] = 2633, + [7043] = 7025, + [7044] = 6939, + [7045] = 2684, + [7046] = 2691, + [7047] = 2707, + [7048] = 2696, + [7049] = 2716, + [7050] = 2721, + [7051] = 2726, + [7052] = 6943, + [7053] = 6943, + [7054] = 2769, + [7055] = 2557, + [7056] = 2708, + [7057] = 6943, + [7058] = 2575, + [7059] = 6939, + [7060] = 7060, + [7061] = 1971, + [7062] = 1987, + [7063] = 1969, + [7064] = 1969, + [7065] = 1970, + [7066] = 1970, + [7067] = 1984, [7068] = 7068, - [7069] = 7069, - [7070] = 7070, - [7071] = 7070, - [7072] = 7072, - [7073] = 7049, - [7074] = 7066, - [7075] = 7048, - [7076] = 7059, - [7077] = 7077, - [7078] = 7049, - [7079] = 7079, - [7080] = 7080, - [7081] = 7050, - [7082] = 7053, - [7083] = 7052, - [7084] = 7055, - [7085] = 7061, - [7086] = 7072, - [7087] = 7080, - [7088] = 7049, - [7089] = 7059, - [7090] = 7066, - [7091] = 7048, - [7092] = 7049, - [7093] = 7068, - [7094] = 7068, - [7095] = 7066, - [7096] = 7069, - [7097] = 7070, - [7098] = 7072, - [7099] = 7050, - [7100] = 7049, - [7101] = 7068, - [7102] = 7069, - [7103] = 7048, + [7069] = 1971, + [7070] = 1971, + [7071] = 1969, + [7072] = 1969, + [7073] = 1969, + [7074] = 1970, + [7075] = 1971, + [7076] = 1969, + [7077] = 1970, + [7078] = 1971, + [7079] = 1970, + [7080] = 1971, + [7081] = 1970, + [7082] = 1970, + [7083] = 1969, + [7084] = 1971, + [7085] = 1970, + [7086] = 1969, + [7087] = 1971, + [7088] = 7088, + [7089] = 7089, + [7090] = 7090, + [7091] = 7091, + [7092] = 7092, + [7093] = 7093, + [7094] = 7094, + [7095] = 7095, + [7096] = 7096, + [7097] = 7092, + [7098] = 7098, + [7099] = 7088, + [7100] = 7100, + [7101] = 7101, + [7102] = 7102, + [7103] = 7103, [7104] = 7104, - [7105] = 7053, - [7106] = 7049, - [7107] = 7061, - [7108] = 7048, - [7109] = 7049, - [7110] = 7070, - [7111] = 7049, - [7112] = 7061, - [7113] = 7049, - [7114] = 7059, - [7115] = 7052, - [7116] = 7066, - [7117] = 7068, - [7118] = 7048, - [7119] = 7068, - [7120] = 7069, - [7121] = 7070, - [7122] = 7072, - [7123] = 7123, - [7124] = 7072, - [7125] = 7055, - [7126] = 7068, - [7127] = 7061, - [7128] = 7049, - [7129] = 7055, - [7130] = 7061, - [7131] = 7059, - [7132] = 7066, - [7133] = 7049, - [7134] = 7059, - [7135] = 7048, - [7136] = 7066, - [7137] = 7048, - [7138] = 7068, - [7139] = 7069, - [7140] = 7069, - [7141] = 7070, - [7142] = 7072, - [7143] = 7068, - [7144] = 7069, - [7145] = 7070, - [7146] = 7072, - [7147] = 7065, - [7148] = 7061, - [7149] = 7049, - [7150] = 7049, - [7151] = 7061, - [7152] = 7068, - [7153] = 7049, - [7154] = 7059, - [7155] = 7066, - [7156] = 7069, - [7157] = 7048, - [7158] = 7068, - [7159] = 7069, - [7160] = 7070, - [7161] = 7072, - [7162] = 7066, - [7163] = 7061, - [7164] = 7059, - [7165] = 7165, - [7166] = 7066, - [7167] = 7048, - [7168] = 7068, - [7169] = 7069, - [7170] = 7061, - [7171] = 7070, - [7172] = 7072, - [7173] = 7173, - [7174] = 7174, - [7175] = 7175, - [7176] = 7061, - [7177] = 7079, - [7178] = 7046, - [7179] = 7179, - [7180] = 7180, - [7181] = 7181, - [7182] = 7182, - [7183] = 7056, - [7184] = 7165, - [7185] = 7061, - [7186] = 7173, - [7187] = 7174, - [7188] = 7175, - [7189] = 7049, - [7190] = 7059, - [7191] = 7079, - [7192] = 7046, - [7193] = 7180, - [7194] = 7181, - [7195] = 7182, - [7196] = 7056, - [7197] = 7165, - [7198] = 7066, - [7199] = 7048, - [7200] = 7068, - [7201] = 7173, - [7202] = 7174, - [7203] = 7175, - [7204] = 7069, - [7205] = 7070, - [7206] = 7072, - [7207] = 7072, - [7208] = 7079, - [7209] = 7046, - [7210] = 7180, - [7211] = 7181, - [7212] = 7182, - [7213] = 7056, - [7214] = 7165, - [7215] = 7181, - [7216] = 7173, - [7217] = 7077, - [7218] = 7174, - [7219] = 7174, - [7220] = 7175, - [7221] = 7069, - [7222] = 7049, - [7223] = 7046, - [7224] = 7079, - [7225] = 7046, - [7226] = 7180, - [7227] = 7181, - [7228] = 7059, - [7229] = 7182, - [7230] = 7056, - [7231] = 7165, - [7232] = 7232, - [7233] = 7173, - [7234] = 7174, - [7235] = 7175, - [7236] = 7079, - [7237] = 7046, - [7238] = 7180, - [7239] = 7181, - [7240] = 7182, - [7241] = 7056, - [7242] = 7165, - [7243] = 7243, - [7244] = 7070, - [7245] = 7049, - [7246] = 7066, - [7247] = 7173, - [7248] = 7174, - [7249] = 7175, - [7250] = 7079, - [7251] = 7180, - [7252] = 7181, - [7253] = 7182, - [7254] = 7056, - [7255] = 7165, - [7256] = 7256, - [7257] = 7061, - [7258] = 7173, - [7259] = 7058, - [7260] = 7174, - [7261] = 7175, - [7262] = 7049, - [7263] = 7059, - [7264] = 7079, - [7265] = 7046, - [7266] = 7180, - [7267] = 7181, - [7268] = 7182, - [7269] = 7056, - [7270] = 7165, - [7271] = 7066, - [7272] = 7048, - [7273] = 7068, - [7274] = 7069, - [7275] = 7173, - [7276] = 7069, - [7277] = 7070, - [7278] = 7174, - [7279] = 7175, - [7280] = 7072, - [7281] = 7079, - [7282] = 7046, - [7283] = 7180, - [7284] = 7181, - [7285] = 7182, - [7286] = 7056, - [7287] = 7165, - [7288] = 7048, - [7289] = 7173, - [7290] = 7174, - [7291] = 7175, - [7292] = 7068, - [7293] = 7069, - [7294] = 7079, - [7295] = 7046, - [7296] = 7180, - [7297] = 7181, - [7298] = 7182, - [7299] = 7056, - [7300] = 7165, - [7301] = 7070, - [7302] = 7072, - [7303] = 7173, - [7304] = 7174, - [7305] = 7079, - [7306] = 7046, - [7307] = 7180, - [7308] = 7181, - [7309] = 7182, - [7310] = 7056, - [7311] = 7165, - [7312] = 7173, - [7313] = 7174, - [7314] = 7175, - [7315] = 7061, - [7316] = 7079, - [7317] = 7046, - [7318] = 7180, - [7319] = 7181, - [7320] = 7182, - [7321] = 7056, - [7322] = 7165, - [7323] = 7061, - [7324] = 7049, - [7325] = 7173, - [7326] = 7174, - [7327] = 7175, - [7328] = 7059, - [7329] = 7066, - [7330] = 7079, - [7331] = 7046, - [7332] = 7180, - [7333] = 7181, - [7334] = 7182, - [7335] = 7056, - [7336] = 7165, - [7337] = 7174, - [7338] = 7175, - [7339] = 7079, - [7340] = 7046, - [7341] = 7180, - [7342] = 7182, - [7343] = 7165, - [7344] = 7059, - [7345] = 7077, - [7346] = 7079, - [7347] = 7046, - [7348] = 7180, - [7349] = 7182, - [7350] = 7165, - [7351] = 7351, - [7352] = 7079, - [7353] = 7046, - [7354] = 7180, - [7355] = 7182, - [7356] = 7165, - [7357] = 7070, - [7358] = 7173, - [7359] = 7079, - [7360] = 7046, - [7361] = 7180, - [7362] = 7182, - [7363] = 7165, - [7364] = 7048, - [7365] = 7066, - [7366] = 7068, - [7367] = 7069, - [7368] = 7079, - [7369] = 7046, - [7370] = 7180, - [7371] = 7182, - [7372] = 7165, - [7373] = 7174, - [7374] = 7046, - [7375] = 7175, - [7376] = 7046, - [7377] = 7046, - [7378] = 7046, - [7379] = 7046, - [7380] = 7046, - [7381] = 7070, - [7382] = 7072, - [7383] = 7072, - [7384] = 7048, - [7385] = 7385, - [7386] = 7059, - [7387] = 7079, - [7388] = 7388, - [7389] = 7180, - [7390] = 7065, - [7391] = 7182, - [7392] = 7165, - [7393] = 7079, - [7394] = 7180, - [7395] = 7053, - [7396] = 7396, - [7397] = 7397, - [7398] = 7046, - [7399] = 7061, - [7400] = 7049, - [7401] = 7059, - [7402] = 7066, - [7403] = 7048, - [7404] = 7068, - [7405] = 7069, - [7406] = 7070, - [7407] = 7072, - [7408] = 7179, - [7409] = 7180, - [7410] = 7181, - [7411] = 7080, - [7412] = 7412, - [7413] = 7413, - [7414] = 7059, - [7415] = 7066, - [7416] = 7173, + [7105] = 7105, + [7106] = 7092, + [7107] = 7098, + [7108] = 7098, + [7109] = 7088, + [7110] = 7100, + [7111] = 7101, + [7112] = 7102, + [7113] = 7103, + [7114] = 7104, + [7115] = 7105, + [7116] = 7102, + [7117] = 7088, + [7118] = 7118, + [7119] = 7119, + [7120] = 7100, + [7121] = 7105, + [7122] = 7105, + [7123] = 7098, + [7124] = 7100, + [7125] = 7101, + [7126] = 7102, + [7127] = 7103, + [7128] = 7128, + [7129] = 7092, + [7130] = 7119, + [7131] = 7104, + [7132] = 7095, + [7133] = 7096, + [7134] = 7092, + [7135] = 7135, + [7136] = 7089, + [7137] = 7137, + [7138] = 7138, + [7139] = 7139, + [7140] = 7140, + [7141] = 7141, + [7142] = 7142, + [7143] = 7105, + [7144] = 7119, + [7145] = 7095, + [7146] = 7096, + [7147] = 7098, + [7148] = 7135, + [7149] = 7089, + [7150] = 7092, + [7151] = 7138, + [7152] = 7139, + [7153] = 7140, + [7154] = 7141, + [7155] = 7142, + [7156] = 7098, + [7157] = 7088, + [7158] = 7092, + [7159] = 7100, + [7160] = 7101, + [7161] = 7102, + [7162] = 7119, + [7163] = 7103, + [7164] = 7095, + [7165] = 7096, + [7166] = 7104, + [7167] = 7105, + [7168] = 7135, + [7169] = 7089, + [7170] = 7098, + [7171] = 7138, + [7172] = 7139, + [7173] = 7105, + [7174] = 7140, + [7175] = 7141, + [7176] = 7142, + [7177] = 7119, + [7178] = 7095, + [7179] = 7096, + [7180] = 7089, + [7181] = 7135, + [7182] = 7089, + [7183] = 7138, + [7184] = 7139, + [7185] = 7140, + [7186] = 7141, + [7187] = 7142, + [7188] = 7188, + [7189] = 7189, + [7190] = 7137, + [7191] = 7119, + [7192] = 7095, + [7193] = 7096, + [7194] = 7194, + [7195] = 7135, + [7196] = 7089, + [7197] = 7138, + [7198] = 7139, + [7199] = 7140, + [7200] = 7141, + [7201] = 7142, + [7202] = 7194, + [7203] = 7203, + [7204] = 7119, + [7205] = 7095, + [7206] = 7096, + [7207] = 7207, + [7208] = 7135, + [7209] = 7089, + [7210] = 7138, + [7211] = 7139, + [7212] = 7140, + [7213] = 7140, + [7214] = 7141, + [7215] = 7142, + [7216] = 7119, + [7217] = 7217, + [7218] = 7095, + [7219] = 7096, + [7220] = 7098, + [7221] = 7140, + [7222] = 7222, + [7223] = 7135, + [7224] = 7089, + [7225] = 7138, + [7226] = 7139, + [7227] = 7140, + [7228] = 7141, + [7229] = 7142, + [7230] = 7088, + [7231] = 7188, + [7232] = 7119, + [7233] = 7135, + [7234] = 7095, + [7235] = 7096, + [7236] = 7118, + [7237] = 7088, + [7238] = 7135, + [7239] = 7089, + [7240] = 7138, + [7241] = 7139, + [7242] = 7141, + [7243] = 7140, + [7244] = 7141, + [7245] = 7142, + [7246] = 7092, + [7247] = 7098, + [7248] = 7088, + [7249] = 7100, + [7250] = 7119, + [7251] = 7138, + [7252] = 7095, + [7253] = 7096, + [7254] = 7101, + [7255] = 7102, + [7256] = 7100, + [7257] = 7142, + [7258] = 7135, + [7259] = 7089, + [7260] = 7138, + [7261] = 7139, + [7262] = 7140, + [7263] = 7141, + [7264] = 7142, + [7265] = 7101, + [7266] = 7092, + [7267] = 7103, + [7268] = 7104, + [7269] = 7119, + [7270] = 7102, + [7271] = 7092, + [7272] = 7095, + [7273] = 7096, + [7274] = 7105, + [7275] = 7102, + [7276] = 7135, + [7277] = 7089, + [7278] = 7138, + [7279] = 7139, + [7280] = 7138, + [7281] = 7140, + [7282] = 7141, + [7283] = 7142, + [7284] = 7103, + [7285] = 7119, + [7286] = 7095, + [7287] = 7096, + [7288] = 7100, + [7289] = 7207, + [7290] = 7135, + [7291] = 7089, + [7292] = 7138, + [7293] = 7139, + [7294] = 7140, + [7295] = 7141, + [7296] = 7142, + [7297] = 7104, + [7298] = 7298, + [7299] = 7119, + [7300] = 7105, + [7301] = 7095, + [7302] = 7096, + [7303] = 7189, + [7304] = 7135, + [7305] = 7089, + [7306] = 7138, + [7307] = 7139, + [7308] = 7140, + [7309] = 7141, + [7310] = 7142, + [7311] = 7095, + [7312] = 7096, + [7313] = 7135, + [7314] = 7089, + [7315] = 7138, + [7316] = 7140, + [7317] = 7142, + [7318] = 7135, + [7319] = 7089, + [7320] = 7138, + [7321] = 7140, + [7322] = 7142, + [7323] = 7102, + [7324] = 7098, + [7325] = 7135, + [7326] = 7089, + [7327] = 7138, + [7328] = 7140, + [7329] = 7142, + [7330] = 7135, + [7331] = 7089, + [7332] = 7138, + [7333] = 7140, + [7334] = 7142, + [7335] = 7335, + [7336] = 7103, + [7337] = 7103, + [7338] = 7135, + [7339] = 7089, + [7340] = 7138, + [7341] = 7140, + [7342] = 7137, + [7343] = 7092, + [7344] = 7092, + [7345] = 7098, + [7346] = 7089, + [7347] = 7098, + [7348] = 7088, + [7349] = 7100, + [7350] = 7089, + [7351] = 7088, + [7352] = 7101, + [7353] = 7102, + [7354] = 7089, + [7355] = 7103, + [7356] = 7104, + [7357] = 7089, + [7358] = 7105, + [7359] = 7089, + [7360] = 7089, + [7361] = 7361, + [7362] = 7188, + [7363] = 7100, + [7364] = 7101, + [7365] = 7088, + [7366] = 7100, + [7367] = 7101, + [7368] = 7088, + [7369] = 7102, + [7370] = 7105, + [7371] = 7092, + [7372] = 7135, + [7373] = 7092, + [7374] = 7374, + [7375] = 7103, + [7376] = 7138, + [7377] = 7102, + [7378] = 7104, + [7379] = 7140, + [7380] = 7142, + [7381] = 7105, + [7382] = 7100, + [7383] = 7098, + [7384] = 7098, + [7385] = 7101, + [7386] = 7102, + [7387] = 7194, + [7388] = 7088, + [7389] = 7103, + [7390] = 7104, + [7391] = 7100, + [7392] = 7392, + [7393] = 7101, + [7394] = 7092, + [7395] = 7098, + [7396] = 7088, + [7397] = 7105, + [7398] = 7100, + [7399] = 7101, + [7400] = 7102, + [7401] = 7103, + [7402] = 7402, + [7403] = 7104, + [7404] = 7105, + [7405] = 7102, + [7406] = 7103, + [7407] = 7104, + [7408] = 7105, + [7409] = 7101, + [7410] = 7098, + [7411] = 7411, + [7412] = 7207, + [7413] = 7098, + [7414] = 7103, + [7415] = 7100, + [7416] = 7101, [7417] = 7417, - [7418] = 7182, - [7419] = 7061, - [7420] = 7049, - [7421] = 7059, - [7422] = 7066, - [7423] = 7048, - [7424] = 7068, - [7425] = 7069, - [7426] = 7070, - [7427] = 7072, - [7428] = 7175, - [7429] = 7182, - [7430] = 7047, - [7431] = 7056, - [7432] = 7165, - [7433] = 7050, - [7434] = 7179, - [7435] = 7048, - [7436] = 7072, - [7437] = 7049, - [7438] = 7058, - [7439] = 7439, - [7440] = 7080, - [7441] = 7068, - [7442] = 7069, - [7443] = 7046, - [7444] = 7046, - [7445] = 7046, - [7446] = 7046, - [7447] = 7070, - [7448] = 7046, - [7449] = 7046, - [7450] = 7046, - [7451] = 7046, - [7452] = 7046, - [7453] = 7046, - [7454] = 7046, - [7455] = 7046, - [7456] = 7072, - [7457] = 7046, - [7458] = 7046, - [7459] = 7046, - [7460] = 7046, - [7461] = 7046, - [7462] = 7046, - [7463] = 7046, - [7464] = 7046, - [7465] = 7046, - [7466] = 7046, - [7467] = 7467, - [7468] = 7061, - [7469] = 7061, - [7470] = 7049, - [7471] = 7059, - [7472] = 7066, - [7473] = 7061, - [7474] = 7048, - [7475] = 7077, - [7476] = 7068, - [7477] = 7069, - [7478] = 7070, - [7479] = 7066, - [7480] = 7070, - [7481] = 7047, - [7482] = 7046, - [7483] = 7072, - [7484] = 7047, - [7485] = 7047, - [7486] = 7047, - [7487] = 7047, - [7488] = 7047, - [7489] = 7047, - [7490] = 7047, - [7491] = 7047, - [7492] = 7047, - [7493] = 7047, - [7494] = 7047, - [7495] = 7047, - [7496] = 7175, - [7497] = 7497, - [7498] = 7497, + [7418] = 7142, + [7419] = 7102, + [7420] = 7098, + [7421] = 7421, + [7422] = 7098, + [7423] = 7335, + [7424] = 7103, + [7425] = 7101, + [7426] = 7104, + [7427] = 7194, + [7428] = 7141, + [7429] = 7088, + [7430] = 7098, + [7431] = 7088, + [7432] = 7105, + [7433] = 7335, + [7434] = 7298, + [7435] = 7104, + [7436] = 7092, + [7437] = 7118, + [7438] = 7139, + [7439] = 7092, + [7440] = 7098, + [7441] = 7098, + [7442] = 7088, + [7443] = 7092, + [7444] = 7100, + [7445] = 7101, + [7446] = 7102, + [7447] = 7103, + [7448] = 7102, + [7449] = 7104, + [7450] = 7105, + [7451] = 7298, + [7452] = 7189, + [7453] = 7098, + [7454] = 7335, + [7455] = 7361, + [7456] = 7188, + [7457] = 7088, + [7458] = 7103, + [7459] = 7103, + [7460] = 7104, + [7461] = 7092, + [7462] = 7098, + [7463] = 7098, + [7464] = 7088, + [7465] = 7089, + [7466] = 7100, + [7467] = 7089, + [7468] = 7101, + [7469] = 7089, + [7470] = 7089, + [7471] = 7089, + [7472] = 7089, + [7473] = 7089, + [7474] = 7102, + [7475] = 7089, + [7476] = 7089, + [7477] = 7089, + [7478] = 7089, + [7479] = 7089, + [7480] = 7089, + [7481] = 7089, + [7482] = 7089, + [7483] = 7103, + [7484] = 7089, + [7485] = 7089, + [7486] = 7089, + [7487] = 7089, + [7488] = 7089, + [7489] = 7089, + [7490] = 7089, + [7491] = 7104, + [7492] = 7105, + [7493] = 7098, + [7494] = 7088, + [7495] = 7100, + [7496] = 7101, + [7497] = 7104, + [7498] = 7105, [7499] = 7499, - [7500] = 7497, - [7501] = 7497, + [7500] = 7139, + [7501] = 7104, [7502] = 7502, - [7503] = 7502, - [7504] = 7499, - [7505] = 7499, - [7506] = 7502, - [7507] = 7499, - [7508] = 7502, - [7509] = 7499, - [7510] = 7497, - [7511] = 7502, - [7512] = 7497, - [7513] = 7502, - [7514] = 7499, - [7515] = 7502, - [7516] = 7497, - [7517] = 7502, - [7518] = 7499, - [7519] = 7502, - [7520] = 7497, - [7521] = 7497, - [7522] = 7502, - [7523] = 7502, - [7524] = 7499, - [7525] = 7502, - [7526] = 7502, - [7527] = 7502, - [7528] = 7502, - [7529] = 7502, - [7530] = 7502, - [7531] = 7502, - [7532] = 7502, - [7533] = 7502, - [7534] = 7502, - [7535] = 7502, - [7536] = 7502, - [7537] = 7502, - [7538] = 7502, - [7539] = 7502, - [7540] = 7502, - [7541] = 7502, - [7542] = 7502, - [7543] = 7502, - [7544] = 7502, - [7545] = 7502, - [7546] = 7502, - [7547] = 7502, - [7548] = 7502, - [7549] = 7502, - [7550] = 7502, - [7551] = 7502, - [7552] = 7499, - [7553] = 7499, - [7554] = 7499, - [7555] = 7499, - [7556] = 1984, - [7557] = 7502, - [7558] = 7497, - [7559] = 7499, - [7560] = 7497, - [7561] = 7499, - [7562] = 7497, - [7563] = 7499, - [7564] = 7502, - [7565] = 7497, - [7566] = 7497, - [7567] = 7499, - [7568] = 7497, - [7569] = 7499, - [7570] = 7502, - [7571] = 7497, - [7572] = 7502, - [7573] = 7499, - [7574] = 7497, - [7575] = 7497, - [7576] = 7497, - [7577] = 7499, - [7578] = 7497, - [7579] = 1989, - [7580] = 7502, - [7581] = 7497, - [7582] = 7499, - [7583] = 7502, - [7584] = 7499, - [7585] = 7499, - [7586] = 7499, - [7587] = 7502, - [7588] = 7497, - [7589] = 7589, - [7590] = 7499, - [7591] = 7497, - [7592] = 7502, - [7593] = 7497, - [7594] = 7497, - [7595] = 7502, - [7596] = 7499, - [7597] = 7502, - [7598] = 7598, - [7599] = 7598, - [7600] = 7598, - [7601] = 7598, - [7602] = 7598, - [7603] = 7603, - [7604] = 7598, - [7605] = 1984, - [7606] = 7598, - [7607] = 7598, - [7608] = 7598, - [7609] = 7598, - [7610] = 7598, - [7611] = 7598, - [7612] = 7598, - [7613] = 1989, - [7614] = 7603, - [7615] = 7598, - [7616] = 7598, - [7617] = 7598, - [7618] = 7598, - [7619] = 7598, - [7620] = 7598, - [7621] = 7598, - [7622] = 7598, - [7623] = 7598, - [7624] = 7598, - [7625] = 7598, - [7626] = 7598, - [7627] = 1995, - [7628] = 1984, - [7629] = 1989, - [7630] = 1984, - [7631] = 1998, - [7632] = 1997, - [7633] = 1999, - [7634] = 1996, - [7635] = 1989, - [7636] = 2005, - [7637] = 2008, - [7638] = 7638, - [7639] = 7639, - [7640] = 7638, - [7641] = 7638, - [7642] = 7639, - [7643] = 7638, - [7644] = 7638, - [7645] = 7638, - [7646] = 7639, - [7647] = 7638, - [7648] = 7638, - [7649] = 7638, - [7650] = 7638, - [7651] = 7638, - [7652] = 7638, - [7653] = 2002, - [7654] = 7638, - [7655] = 7638, - [7656] = 7638, - [7657] = 7639, - [7658] = 7638, - [7659] = 2003, - [7660] = 7638, - [7661] = 7638, - [7662] = 2006, - [7663] = 7638, - [7664] = 7639, - [7665] = 7638, - [7666] = 7639, - [7667] = 7638, - [7668] = 7639, - [7669] = 7638, - [7670] = 7638, - [7671] = 7639, - [7672] = 7638, - [7673] = 7639, - [7674] = 7638, - [7675] = 7638, - [7676] = 7639, - [7677] = 7638, - [7678] = 7638, - [7679] = 7639, - [7680] = 7639, - [7681] = 7638, - [7682] = 7638, - [7683] = 7638, - [7684] = 7639, - [7685] = 7638, - [7686] = 7639, - [7687] = 2004, - [7688] = 7638, - [7689] = 7639, - [7690] = 7639, - [7691] = 7638, - [7692] = 7638, - [7693] = 7638, - [7694] = 7638, - [7695] = 7639, - [7696] = 7639, - [7697] = 7638, - [7698] = 2007, - [7699] = 7639, - [7700] = 7639, - [7701] = 7638, - [7702] = 7638, - [7703] = 7639, - [7704] = 7638, - [7705] = 2009, - [7706] = 7639, - [7707] = 7639, - [7708] = 7638, - [7709] = 7638, - [7710] = 7639, - [7711] = 7639, - [7712] = 7638, - [7713] = 2000, - [7714] = 7638, - [7715] = 7638, - [7716] = 7638, - [7717] = 2001, - [7718] = 7638, - [7719] = 7639, - [7720] = 2025, - [7721] = 2013, - [7722] = 2019, - [7723] = 2023, - [7724] = 2021, - [7725] = 2022, - [7726] = 2027, - [7727] = 2026, - [7728] = 2011, - [7729] = 2016, - [7730] = 2010, - [7731] = 2024, - [7732] = 2020, - [7733] = 2015, - [7734] = 2014, - [7735] = 2018, - [7736] = 2012, - [7737] = 1995, + [7503] = 7100, + [7504] = 7504, + [7505] = 7505, + [7506] = 7092, + [7507] = 7119, + [7508] = 7101, + [7509] = 7298, + [7510] = 7189, + [7511] = 7095, + [7512] = 7096, + [7513] = 7100, + [7514] = 7361, + [7515] = 7104, + [7516] = 7392, + [7517] = 7102, + [7518] = 7089, + [7519] = 7101, + [7520] = 7103, + [7521] = 7104, + [7522] = 7105, + [7523] = 7392, + [7524] = 7392, + [7525] = 7392, + [7526] = 7392, + [7527] = 7392, + [7528] = 7392, + [7529] = 7392, + [7530] = 7392, + [7531] = 7392, + [7532] = 7392, + [7533] = 7392, + [7534] = 7392, + [7535] = 7392, + [7536] = 7135, + [7537] = 7361, + [7538] = 7142, + [7539] = 7539, + [7540] = 7540, + [7541] = 7540, + [7542] = 7540, + [7543] = 7540, + [7544] = 7540, + [7545] = 7540, + [7546] = 7540, + [7547] = 7540, + [7548] = 7540, + [7549] = 7540, + [7550] = 7540, + [7551] = 7540, + [7552] = 7540, + [7553] = 7540, + [7554] = 7540, + [7555] = 7540, + [7556] = 7540, + [7557] = 7540, + [7558] = 7540, + [7559] = 7540, + [7560] = 7540, + [7561] = 7540, + [7562] = 7540, + [7563] = 7540, + [7564] = 7540, + [7565] = 7540, + [7566] = 7540, + [7567] = 7567, + [7568] = 7540, + [7569] = 7540, + [7570] = 7570, + [7571] = 7567, + [7572] = 7570, + [7573] = 7567, + [7574] = 7570, + [7575] = 7540, + [7576] = 7567, + [7577] = 7570, + [7578] = 7540, + [7579] = 7567, + [7580] = 7570, + [7581] = 7567, + [7582] = 7540, + [7583] = 7567, + [7584] = 7570, + [7585] = 7540, + [7586] = 7567, + [7587] = 7567, + [7588] = 7570, + [7589] = 7570, + [7590] = 7570, + [7591] = 7540, + [7592] = 1984, + [7593] = 7567, + [7594] = 7540, + [7595] = 7567, + [7596] = 7570, + [7597] = 7570, + [7598] = 7540, + [7599] = 7567, + [7600] = 7570, + [7601] = 7540, + [7602] = 7570, + [7603] = 7570, + [7604] = 7540, + [7605] = 7567, + [7606] = 7570, + [7607] = 7570, + [7608] = 7567, + [7609] = 7540, + [7610] = 7540, + [7611] = 7567, + [7612] = 7567, + [7613] = 7570, + [7614] = 7567, + [7615] = 7570, + [7616] = 7567, + [7617] = 7570, + [7618] = 7540, + [7619] = 7567, + [7620] = 7570, + [7621] = 7567, + [7622] = 7570, + [7623] = 7570, + [7624] = 7567, + [7625] = 7540, + [7626] = 7540, + [7627] = 7570, + [7628] = 1987, + [7629] = 7567, + [7630] = 7567, + [7631] = 7540, + [7632] = 7570, + [7633] = 7567, + [7634] = 7540, + [7635] = 7540, + [7636] = 7570, + [7637] = 7540, + [7638] = 7540, + [7639] = 7567, + [7640] = 7640, + [7641] = 7640, + [7642] = 7640, + [7643] = 7640, + [7644] = 7640, + [7645] = 7640, + [7646] = 7646, + [7647] = 7640, + [7648] = 7640, + [7649] = 7640, + [7650] = 7640, + [7651] = 1984, + [7652] = 7640, + [7653] = 7640, + [7654] = 7640, + [7655] = 7640, + [7656] = 7640, + [7657] = 7640, + [7658] = 7640, + [7659] = 1987, + [7660] = 7646, + [7661] = 7640, + [7662] = 7640, + [7663] = 7640, + [7664] = 7640, + [7665] = 7640, + [7666] = 7640, + [7667] = 7640, + [7668] = 7640, + [7669] = 1999, + [7670] = 1987, + [7671] = 1984, + [7672] = 1984, + [7673] = 1987, + [7674] = 1995, + [7675] = 1996, + [7676] = 1997, + [7677] = 1998, + [7678] = 2005, + [7679] = 7679, + [7680] = 7679, + [7681] = 2003, + [7682] = 2000, + [7683] = 7683, + [7684] = 7683, + [7685] = 7683, + [7686] = 7683, + [7687] = 7683, + [7688] = 7679, + [7689] = 7683, + [7690] = 7683, + [7691] = 7683, + [7692] = 2008, + [7693] = 7683, + [7694] = 7679, + [7695] = 7683, + [7696] = 7683, + [7697] = 7683, + [7698] = 7683, + [7699] = 2009, + [7700] = 2001, + [7701] = 7683, + [7702] = 7683, + [7703] = 7679, + [7704] = 7683, + [7705] = 7683, + [7706] = 7679, + [7707] = 7679, + [7708] = 7679, + [7709] = 7679, + [7710] = 7683, + [7711] = 7683, + [7712] = 7683, + [7713] = 7679, + [7714] = 7683, + [7715] = 7683, + [7716] = 7683, + [7717] = 7683, + [7718] = 7683, + [7719] = 7679, + [7720] = 7679, + [7721] = 7683, + [7722] = 7683, + [7723] = 2006, + [7724] = 7679, + [7725] = 7683, + [7726] = 7683, + [7727] = 7683, + [7728] = 7679, + [7729] = 7683, + [7730] = 7679, + [7731] = 7683, + [7732] = 7683, + [7733] = 7683, + [7734] = 7679, + [7735] = 2007, + [7736] = 7679, + [7737] = 7683, [7738] = 2002, - [7739] = 2028, - [7740] = 2008, - [7741] = 1999, - [7742] = 1997, - [7743] = 2001, - [7744] = 2007, - [7745] = 2017, - [7746] = 2003, - [7747] = 2000, - [7748] = 1996, - [7749] = 1998, - [7750] = 2005, - [7751] = 7751, - [7752] = 1996, - [7753] = 2002, - [7754] = 2001, - [7755] = 7755, - [7756] = 2007, - [7757] = 2032, - [7758] = 7755, - [7759] = 1998, - [7760] = 1997, - [7761] = 2033, - [7762] = 1995, - [7763] = 7755, - [7764] = 7751, - [7765] = 2008, - [7766] = 7755, - [7767] = 2004, - [7768] = 2009, - [7769] = 2000, - [7770] = 2003, - [7771] = 7771, - [7772] = 7771, - [7773] = 7751, - [7774] = 1999, - [7775] = 2006, - [7776] = 7776, - [7777] = 7776, - [7778] = 7776, - [7779] = 2024, - [7780] = 7776, - [7781] = 7776, - [7782] = 7776, - [7783] = 2020, - [7784] = 2010, - [7785] = 7776, - [7786] = 2034, - [7787] = 2011, - [7788] = 2023, - [7789] = 2026, - [7790] = 2027, - [7791] = 2015, - [7792] = 2040, - [7793] = 2021, - [7794] = 2016, - [7795] = 2018, - [7796] = 2014, - [7797] = 2022, - [7798] = 7776, - [7799] = 2005, - [7800] = 7776, - [7801] = 2025, - [7802] = 7776, - [7803] = 2013, - [7804] = 7776, - [7805] = 7776, - [7806] = 7776, - [7807] = 7776, - [7808] = 7776, - [7809] = 7776, - [7810] = 7776, - [7811] = 7776, - [7812] = 7776, - [7813] = 7776, - [7814] = 2019, - [7815] = 2012, - [7816] = 7776, - [7817] = 7776, - [7818] = 7776, - [7819] = 7776, - [7820] = 2029, - [7821] = 2031, - [7822] = 7776, - [7823] = 7776, - [7824] = 2030, - [7825] = 2017, - [7826] = 2001, - [7827] = 2002, - [7828] = 2008, - [7829] = 2000, - [7830] = 2003, - [7831] = 2037, - [7832] = 2048, - [7833] = 2051, - [7834] = 2001, - [7835] = 2002, - [7836] = 2006, - [7837] = 2007, - [7838] = 2000, - [7839] = 2004, - [7840] = 1951, - [7841] = 2007, - [7842] = 2009, - [7843] = 2003, - [7844] = 2038, - [7845] = 2035, - [7846] = 2028, - [7847] = 2043, - [7848] = 2046, - [7849] = 2008, - [7850] = 2019, - [7851] = 2021, - [7852] = 2016, - [7853] = 2013, - [7854] = 2018, - [7855] = 2012, - [7856] = 2024, - [7857] = 2014, - [7858] = 2022, - [7859] = 2015, - [7860] = 2023, - [7861] = 2027, - [7862] = 2054, - [7863] = 2055, - [7864] = 2020, - [7865] = 2050, - [7866] = 2010, - [7867] = 2011, - [7868] = 2026, - [7869] = 2025, - [7870] = 7870, - [7871] = 7871, - [7872] = 2007, - [7873] = 7873, - [7874] = 7874, - [7875] = 7873, - [7876] = 2057, - [7877] = 2068, - [7878] = 2062, - [7879] = 2058, - [7880] = 7871, - [7881] = 2067, - [7882] = 2078, - [7883] = 2001, - [7884] = 2003, - [7885] = 2028, - [7886] = 7871, - [7887] = 2065, - [7888] = 2033, - [7889] = 2066, - [7890] = 2002, - [7891] = 2056, - [7892] = 2008, - [7893] = 2000, - [7894] = 7873, - [7895] = 2064, - [7896] = 2017, - [7897] = 2069, - [7898] = 2074, - [7899] = 2076, - [7900] = 7900, - [7901] = 2063, - [7902] = 7873, - [7903] = 2032, - [7904] = 7871, - [7905] = 2108, - [7906] = 7906, - [7907] = 7907, - [7908] = 7908, - [7909] = 7909, - [7910] = 2031, - [7911] = 7911, - [7912] = 7912, - [7913] = 2030, - [7914] = 7914, - [7915] = 7915, - [7916] = 2123, - [7917] = 7917, - [7918] = 2124, - [7919] = 7919, - [7920] = 2112, + [7739] = 7679, + [7740] = 7683, + [7741] = 2004, + [7742] = 7683, + [7743] = 7679, + [7744] = 7683, + [7745] = 7683, + [7746] = 7683, + [7747] = 7683, + [7748] = 7683, + [7749] = 7683, + [7750] = 7683, + [7751] = 7683, + [7752] = 7679, + [7753] = 7683, + [7754] = 7679, + [7755] = 7679, + [7756] = 7679, + [7757] = 7679, + [7758] = 7679, + [7759] = 7679, + [7760] = 7683, + [7761] = 7683, + [7762] = 2019, + [7763] = 2024, + [7764] = 2025, + [7765] = 2028, + [7766] = 2023, + [7767] = 2016, + [7768] = 2017, + [7769] = 2011, + [7770] = 2015, + [7771] = 2026, + [7772] = 2021, + [7773] = 2012, + [7774] = 2022, + [7775] = 2010, + [7776] = 2027, + [7777] = 2013, + [7778] = 2020, + [7779] = 2007, + [7780] = 1998, + [7781] = 2014, + [7782] = 1995, + [7783] = 1997, + [7784] = 1999, + [7785] = 2002, + [7786] = 2018, + [7787] = 2000, + [7788] = 2004, + [7789] = 1996, + [7790] = 2003, + [7791] = 2009, + [7792] = 2005, + [7793] = 7793, + [7794] = 1999, + [7795] = 1996, + [7796] = 2009, + [7797] = 2031, + [7798] = 7798, + [7799] = 7798, + [7800] = 1997, + [7801] = 1998, + [7802] = 2002, + [7803] = 2008, + [7804] = 2001, + [7805] = 2006, + [7806] = 2029, + [7807] = 2007, + [7808] = 7793, + [7809] = 2000, + [7810] = 1995, + [7811] = 7798, + [7812] = 7793, + [7813] = 2003, + [7814] = 2004, + [7815] = 7815, + [7816] = 7798, + [7817] = 7815, + [7818] = 7818, + [7819] = 2017, + [7820] = 2026, + [7821] = 2015, + [7822] = 2033, + [7823] = 7818, + [7824] = 7818, + [7825] = 7818, + [7826] = 2025, + [7827] = 2042, + [7828] = 2028, + [7829] = 2023, + [7830] = 7818, + [7831] = 7818, + [7832] = 7818, + [7833] = 2012, + [7834] = 2020, + [7835] = 7818, + [7836] = 7818, + [7837] = 7818, + [7838] = 2030, + [7839] = 2032, + [7840] = 7818, + [7841] = 2005, + [7842] = 7818, + [7843] = 2022, + [7844] = 7818, + [7845] = 7818, + [7846] = 7818, + [7847] = 7818, + [7848] = 7818, + [7849] = 7818, + [7850] = 7818, + [7851] = 7818, + [7852] = 2019, + [7853] = 2016, + [7854] = 2034, + [7855] = 7818, + [7856] = 7818, + [7857] = 2027, + [7858] = 2013, + [7859] = 7818, + [7860] = 7818, + [7861] = 2010, + [7862] = 2011, + [7863] = 7818, + [7864] = 7818, + [7865] = 2024, + [7866] = 2021, + [7867] = 2000, + [7868] = 2009, + [7869] = 2004, + [7870] = 2008, + [7871] = 2003, + [7872] = 2006, + [7873] = 2036, + [7874] = 2002, + [7875] = 2043, + [7876] = 2007, + [7877] = 2000, + [7878] = 2048, + [7879] = 2055, + [7880] = 2009, + [7881] = 2049, + [7882] = 1952, + [7883] = 2007, + [7884] = 2004, + [7885] = 2003, + [7886] = 2002, + [7887] = 2014, + [7888] = 2039, + [7889] = 2001, + [7890] = 2018, + [7891] = 2037, + [7892] = 2027, + [7893] = 2022, + [7894] = 2019, + [7895] = 2012, + [7896] = 2016, + [7897] = 2013, + [7898] = 2021, + [7899] = 2011, + [7900] = 2024, + [7901] = 2050, + [7902] = 2052, + [7903] = 2026, + [7904] = 2028, + [7905] = 2010, + [7906] = 2017, + [7907] = 2020, + [7908] = 2051, + [7909] = 2025, + [7910] = 2015, + [7911] = 2023, + [7912] = 2063, + [7913] = 2003, + [7914] = 2002, + [7915] = 2000, + [7916] = 2018, + [7917] = 2007, + [7918] = 2075, + [7919] = 2072, + [7920] = 7920, [7921] = 7921, - [7922] = 7922, - [7923] = 2115, - [7924] = 7924, - [7925] = 7925, - [7926] = 7926, - [7927] = 7921, - [7928] = 7928, + [7922] = 7920, + [7923] = 2056, + [7924] = 2067, + [7925] = 2069, + [7926] = 2070, + [7927] = 2059, + [7928] = 2004, [7929] = 7929, - [7930] = 7930, - [7931] = 7931, - [7932] = 7921, - [7933] = 7933, + [7930] = 2068, + [7931] = 2062, + [7932] = 7932, + [7933] = 7921, [7934] = 7921, - [7935] = 2101, - [7936] = 7936, - [7937] = 7937, - [7938] = 7938, - [7939] = 7939, - [7940] = 7921, - [7941] = 7941, - [7942] = 7942, + [7935] = 7920, + [7936] = 2029, + [7937] = 2031, + [7938] = 7920, + [7939] = 2014, + [7940] = 7940, + [7941] = 2078, + [7942] = 2061, [7943] = 7921, - [7944] = 7944, - [7945] = 7945, - [7946] = 7946, + [7944] = 2009, + [7945] = 2065, + [7946] = 2073, [7947] = 7947, - [7948] = 7921, - [7949] = 7949, - [7950] = 2034, - [7951] = 7921, - [7952] = 7952, - [7953] = 7953, - [7954] = 7921, - [7955] = 7955, - [7956] = 7956, - [7957] = 7921, - [7958] = 7958, - [7959] = 7921, - [7960] = 7960, + [7948] = 2099, + [7949] = 2104, + [7950] = 2106, + [7951] = 2108, + [7952] = 2109, + [7953] = 2111, + [7954] = 2112, + [7955] = 2113, + [7956] = 2116, + [7957] = 7957, + [7958] = 2118, + [7959] = 2120, + [7960] = 2121, [7961] = 7961, [7962] = 7962, [7963] = 7963, [7964] = 7964, [7965] = 7965, - [7966] = 7921, + [7966] = 7966, [7967] = 7967, - [7968] = 7921, + [7968] = 7968, [7969] = 7969, - [7970] = 1998, + [7970] = 7970, [7971] = 7971, [7972] = 7972, [7973] = 7973, - [7974] = 7921, + [7974] = 7974, [7975] = 7975, [7976] = 7976, - [7977] = 7921, + [7977] = 7977, [7978] = 7978, - [7979] = 7921, + [7979] = 7979, [7980] = 7980, - [7981] = 7921, + [7981] = 7981, [7982] = 7982, - [7983] = 7983, + [7983] = 2042, [7984] = 7984, [7985] = 7985, - [7986] = 1997, - [7987] = 7921, + [7986] = 7986, + [7987] = 7987, [7988] = 7988, - [7989] = 7921, - [7990] = 7921, - [7991] = 7921, - [7992] = 7992, - [7993] = 7921, - [7994] = 7921, - [7995] = 7921, + [7989] = 7989, + [7990] = 7990, + [7991] = 7991, + [7992] = 2033, + [7993] = 7993, + [7994] = 7994, + [7995] = 7995, [7996] = 7996, - [7997] = 2125, + [7997] = 7997, [7998] = 7998, [7999] = 7999, [8000] = 8000, @@ -11822,3983 +11836,4081 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [8003] = 8003, [8004] = 8004, [8005] = 8005, - [8006] = 8006, + [8006] = 2030, [8007] = 8007, [8008] = 8008, [8009] = 8009, [8010] = 8010, [8011] = 8011, - [8012] = 8012, + [8012] = 2032, [8013] = 8013, - [8014] = 1995, - [8015] = 8015, - [8016] = 2116, + [8014] = 8014, + [8015] = 7982, + [8016] = 8016, [8017] = 8017, - [8018] = 8018, + [8018] = 2034, [8019] = 8019, [8020] = 8020, - [8021] = 2100, - [8022] = 2110, - [8023] = 2118, + [8021] = 8021, + [8022] = 8022, + [8023] = 8023, [8024] = 8024, [8025] = 8025, - [8026] = 2121, - [8027] = 2099, + [8026] = 1995, + [8027] = 8027, [8028] = 8028, - [8029] = 8029, + [8029] = 2100, [8030] = 8030, - [8031] = 8031, - [8032] = 2451, - [8033] = 8033, - [8034] = 2102, - [8035] = 2103, - [8036] = 1999, - [8037] = 2104, - [8038] = 8038, - [8039] = 2049, - [8040] = 2107, + [8031] = 2124, + [8032] = 1997, + [8033] = 1998, + [8034] = 2046, + [8035] = 8035, + [8036] = 8036, + [8037] = 1999, + [8038] = 1996, + [8039] = 8039, + [8040] = 8040, [8041] = 8041, - [8042] = 2111, + [8042] = 8042, [8043] = 8043, [8044] = 8044, [8045] = 8045, - [8046] = 2113, - [8047] = 2114, - [8048] = 7921, + [8046] = 8046, + [8047] = 8047, + [8048] = 8048, [8049] = 8049, - [8050] = 2117, - [8051] = 2119, - [8052] = 2120, + [8050] = 2102, + [8051] = 7982, + [8052] = 8052, [8053] = 8053, - [8054] = 2098, - [8055] = 2438, - [8056] = 8056, + [8054] = 8054, + [8055] = 8055, + [8056] = 7982, [8057] = 8057, [8058] = 8058, - [8059] = 2040, - [8060] = 8060, - [8061] = 2029, + [8059] = 8059, + [8060] = 7982, + [8061] = 8061, [8062] = 8062, [8063] = 8063, - [8064] = 1996, - [8065] = 2035, - [8066] = 2046, - [8067] = 2005, - [8068] = 2037, - [8069] = 2043, - [8070] = 1999, - [8071] = 8071, - [8072] = 1951, - [8073] = 1995, - [8074] = 2032, - [8075] = 2051, - [8076] = 1996, - [8077] = 8077, - [8078] = 1998, - [8079] = 1997, - [8080] = 2038, - [8081] = 2033, - [8082] = 2048, - [8083] = 8083, - [8084] = 1995, - [8085] = 1999, - [8086] = 2040, - [8087] = 1996, - [8088] = 2029, - [8089] = 2055, - [8090] = 2050, - [8091] = 1995, - [8092] = 1998, - [8093] = 2054, - [8094] = 1997, - [8095] = 1998, - [8096] = 2034, - [8097] = 1999, - [8098] = 1996, - [8099] = 2031, - [8100] = 2005, - [8101] = 2030, - [8102] = 1997, - [8103] = 2063, - [8104] = 2078, - [8105] = 2003, - [8106] = 2038, - [8107] = 2037, - [8108] = 2005, - [8109] = 2004, - [8110] = 7874, - [8111] = 2069, - [8112] = 2056, - [8113] = 2058, - [8114] = 8114, - [8115] = 2000, - [8116] = 2008, - [8117] = 2062, - [8118] = 2051, - [8119] = 2074, - [8120] = 2076, - [8121] = 2007, - [8122] = 2009, - [8123] = 2066, - [8124] = 1951, - [8125] = 7900, - [8126] = 2001, - [8127] = 2043, - [8128] = 2064, - [8129] = 2005, - [8130] = 2046, - [8131] = 2065, - [8132] = 7870, - [8133] = 2057, - [8134] = 2006, - [8135] = 2035, - [8136] = 2048, - [8137] = 2067, - [8138] = 2068, - [8139] = 7953, - [8140] = 2002, - [8141] = 2107, - [8142] = 2003, - [8143] = 2006, - [8144] = 2001, + [8064] = 7982, + [8065] = 7982, + [8066] = 7982, + [8067] = 8067, + [8068] = 7982, + [8069] = 7982, + [8070] = 7982, + [8071] = 2107, + [8072] = 8072, + [8073] = 7982, + [8074] = 2110, + [8075] = 2122, + [8076] = 7982, + [8077] = 7982, + [8078] = 2432, + [8079] = 7982, + [8080] = 7982, + [8081] = 7982, + [8082] = 7982, + [8083] = 7982, + [8084] = 7982, + [8085] = 7982, + [8086] = 7982, + [8087] = 7982, + [8088] = 7982, + [8089] = 7982, + [8090] = 8090, + [8091] = 8091, + [8092] = 2445, + [8093] = 8093, + [8094] = 8094, + [8095] = 8095, + [8096] = 8096, + [8097] = 8097, + [8098] = 8098, + [8099] = 8099, + [8100] = 2125, + [8101] = 2115, + [8102] = 2117, + [8103] = 2123, + [8104] = 2101, + [8105] = 2103, + [8106] = 8106, + [8107] = 2029, + [8108] = 8108, + [8109] = 1997, + [8110] = 1998, + [8111] = 2037, + [8112] = 2039, + [8113] = 1999, + [8114] = 1996, + [8115] = 2055, + [8116] = 2043, + [8117] = 1952, + [8118] = 2031, + [8119] = 2005, + [8120] = 8120, + [8121] = 2049, + [8122] = 2036, + [8123] = 1995, + [8124] = 2048, + [8125] = 1995, + [8126] = 2051, + [8127] = 1999, + [8128] = 1995, + [8129] = 1997, + [8130] = 1998, + [8131] = 1999, + [8132] = 2030, + [8133] = 1996, + [8134] = 1998, + [8135] = 2042, + [8136] = 2005, + [8137] = 2034, + [8138] = 2050, + [8139] = 1996, + [8140] = 2033, + [8141] = 2052, + [8142] = 1997, + [8143] = 8143, + [8144] = 2032, [8145] = 2004, - [8146] = 2008, - [8147] = 2011, - [8148] = 8000, - [8149] = 7980, - [8150] = 2055, - [8151] = 2007, - [8152] = 2009, - [8153] = 7982, - [8154] = 7983, - [8155] = 2025, - [8156] = 7984, - [8157] = 7967, - [8158] = 2115, - [8159] = 2004, - [8160] = 2000, - [8161] = 8019, - [8162] = 2003, - [8163] = 8001, - [8164] = 8002, - [8165] = 2102, - [8166] = 2103, - [8167] = 8003, - [8168] = 2108, - [8169] = 8004, - [8170] = 8005, - [8171] = 8038, - [8172] = 2125, - [8173] = 2100, - [8174] = 8053, - [8175] = 7962, - [8176] = 7963, - [8177] = 2111, + [8146] = 2059, + [8147] = 2063, + [8148] = 2036, + [8149] = 2069, + [8150] = 2075, + [8151] = 2061, + [8152] = 2065, + [8153] = 2005, + [8154] = 2007, + [8155] = 2003, + [8156] = 1952, + [8157] = 2073, + [8158] = 2043, + [8159] = 7932, + [8160] = 2048, + [8161] = 2006, + [8162] = 2067, + [8163] = 2037, + [8164] = 2068, + [8165] = 2055, + [8166] = 2062, + [8167] = 7940, + [8168] = 2009, + [8169] = 2001, + [8170] = 2039, + [8171] = 7929, + [8172] = 8106, + [8173] = 2002, + [8174] = 2078, + [8175] = 8175, + [8176] = 2005, + [8177] = 2049, [8178] = 2000, - [8179] = 7964, - [8180] = 7972, - [8181] = 2009, - [8182] = 2451, - [8183] = 2438, - [8184] = 2003, - [8185] = 7922, - [8186] = 2110, - [8187] = 7933, - [8188] = 7952, - [8189] = 2113, - [8190] = 2114, - [8191] = 7956, - [8192] = 2006, - [8193] = 2117, - [8194] = 2003, - [8195] = 2004, - [8196] = 2012, - [8197] = 2119, - [8198] = 2120, - [8199] = 8006, - [8200] = 2002, - [8201] = 2098, - [8202] = 2002, - [8203] = 8203, - [8204] = 8007, - [8205] = 7988, - [8206] = 8025, - [8207] = 7961, - [8208] = 8057, - [8209] = 8062, - [8210] = 2001, - [8211] = 2019, - [8212] = 8203, - [8213] = 7999, - [8214] = 2001, - [8215] = 8008, - [8216] = 8012, - [8217] = 8017, - [8218] = 2014, - [8219] = 8010, - [8220] = 2011, - [8221] = 2022, - [8222] = 8058, - [8223] = 8011, - [8224] = 8024, - [8225] = 2007, - [8226] = 8060, - [8227] = 8028, - [8228] = 2008, - [8229] = 2008, - [8230] = 2020, - [8231] = 2010, - [8232] = 2023, - [8233] = 2026, - [8234] = 2008, - [8235] = 2027, - [8236] = 7906, - [8237] = 7998, - [8238] = 2000, - [8239] = 7915, - [8240] = 7942, - [8241] = 7992, - [8242] = 2028, - [8243] = 7919, - [8244] = 8009, - [8245] = 2104, - [8246] = 2021, - [8247] = 2050, - [8248] = 2016, - [8249] = 7907, - [8250] = 7914, - [8251] = 2017, - [8252] = 2018, - [8253] = 2009, - [8254] = 2015, - [8255] = 2024, - [8256] = 8056, - [8257] = 7949, - [8258] = 7917, - [8259] = 7924, - [8260] = 2024, - [8261] = 7996, - [8262] = 8041, - [8263] = 8015, - [8264] = 8020, - [8265] = 8029, - [8266] = 7938, + [8179] = 2056, + [8180] = 2008, + [8181] = 2072, + [8182] = 2070, + [8183] = 7976, + [8184] = 2123, + [8185] = 2001, + [8186] = 2020, + [8187] = 2432, + [8188] = 8025, + [8189] = 2004, + [8190] = 2016, + [8191] = 2012, + [8192] = 2007, + [8193] = 2003, + [8194] = 2099, + [8195] = 7985, + [8196] = 7986, + [8197] = 7987, + [8198] = 7990, + [8199] = 7991, + [8200] = 7993, + [8201] = 7994, + [8202] = 8202, + [8203] = 7995, + [8204] = 7996, + [8205] = 2003, + [8206] = 7997, + [8207] = 7998, + [8208] = 7999, + [8209] = 8000, + [8210] = 8001, + [8211] = 2107, + [8212] = 2100, + [8213] = 8002, + [8214] = 8003, + [8215] = 8004, + [8216] = 8005, + [8217] = 2101, + [8218] = 2004, + [8219] = 2003, + [8220] = 2103, + [8221] = 2052, + [8222] = 2110, + [8223] = 2002, + [8224] = 2046, + [8225] = 2004, + [8226] = 8010, + [8227] = 2122, + [8228] = 8036, + [8229] = 2104, + [8230] = 2106, + [8231] = 8019, + [8232] = 8020, + [8233] = 8021, + [8234] = 8022, + [8235] = 8023, + [8236] = 8024, + [8237] = 7989, + [8238] = 2023, + [8239] = 2108, + [8240] = 2109, + [8241] = 2009, + [8242] = 2445, + [8243] = 2111, + [8244] = 2000, + [8245] = 2002, + [8246] = 8035, + [8247] = 2102, + [8248] = 2112, + [8249] = 2113, + [8250] = 2051, + [8251] = 2008, + [8252] = 2013, + [8253] = 2010, + [8254] = 2011, + [8255] = 2014, + [8256] = 2006, + [8257] = 2027, + [8258] = 2116, + [8259] = 2118, + [8260] = 2120, + [8261] = 8039, + [8262] = 8040, + [8263] = 8041, + [8264] = 8042, + [8265] = 8043, + [8266] = 2004, [8267] = 8044, - [8268] = 7944, - [8269] = 7969, - [8270] = 2116, - [8271] = 7971, - [8272] = 7976, - [8273] = 7978, - [8274] = 7926, - [8275] = 7930, - [8276] = 2013, - [8277] = 8018, - [8278] = 8049, - [8279] = 7931, - [8280] = 7936, - [8281] = 2118, - [8282] = 2121, - [8283] = 2099, - [8284] = 8030, - [8285] = 8031, - [8286] = 7937, - [8287] = 7965, - [8288] = 7928, - [8289] = 7973, - [8290] = 8033, - [8291] = 2000, - [8292] = 8063, - [8293] = 7908, - [8294] = 7911, - [8295] = 7941, - [8296] = 7912, - [8297] = 8043, - [8298] = 7945, - [8299] = 7947, - [8300] = 8045, - [8301] = 7946, - [8302] = 7939, - [8303] = 2123, - [8304] = 2124, - [8305] = 2001, - [8306] = 7909, - [8307] = 7929, - [8308] = 2112, - [8309] = 7955, - [8310] = 8203, - [8311] = 2054, - [8312] = 2006, - [8313] = 2101, - [8314] = 2007, - [8315] = 2007, - [8316] = 7958, - [8317] = 2002, - [8318] = 2002, - [8319] = 7975, - [8320] = 2049, - [8321] = 7985, - [8322] = 7925, - [8323] = 8323, - [8324] = 8323, - [8325] = 2008, - [8326] = 2068, - [8327] = 8327, - [8328] = 8328, - [8329] = 2065, - [8330] = 8327, - [8331] = 2000, - [8332] = 8323, - [8333] = 8323, - [8334] = 2011, - [8335] = 2027, - [8336] = 8323, - [8337] = 2028, - [8338] = 2074, - [8339] = 8339, - [8340] = 8323, - [8341] = 8341, - [8342] = 2007, - [8343] = 2003, - [8344] = 8344, - [8345] = 2066, - [8346] = 8339, - [8347] = 2023, - [8348] = 2026, - [8349] = 8328, - [8350] = 8344, - [8351] = 2056, - [8352] = 2017, - [8353] = 8328, - [8354] = 2064, - [8355] = 8327, - [8356] = 8327, - [8357] = 8327, - [8358] = 8323, - [8359] = 8344, - [8360] = 2014, - [8361] = 8339, - [8362] = 8327, - [8363] = 8328, - [8364] = 8344, - [8365] = 2025, - [8366] = 2022, - [8367] = 8327, - [8368] = 2069, - [8369] = 8327, - [8370] = 8323, - [8371] = 8327, - [8372] = 2076, - [8373] = 8323, - [8374] = 8323, - [8375] = 2027, - [8376] = 8344, - [8377] = 2078, - [8378] = 8327, - [8379] = 8327, - [8380] = 8380, - [8381] = 2024, - [8382] = 8344, - [8383] = 8323, - [8384] = 2013, - [8385] = 2020, - [8386] = 8323, - [8387] = 2021, - [8388] = 8339, - [8389] = 8344, - [8390] = 2012, - [8391] = 8328, - [8392] = 8323, - [8393] = 8344, - [8394] = 2014, - [8395] = 8327, - [8396] = 2013, - [8397] = 2026, - [8398] = 8339, - [8399] = 2011, - [8400] = 8323, - [8401] = 8323, - [8402] = 2023, - [8403] = 8344, - [8404] = 8327, - [8405] = 2057, - [8406] = 2015, - [8407] = 8327, - [8408] = 2025, - [8409] = 8339, - [8410] = 8323, - [8411] = 2022, - [8412] = 2024, - [8413] = 2016, - [8414] = 2010, - [8415] = 8327, - [8416] = 8323, - [8417] = 8339, - [8418] = 2021, - [8419] = 2016, - [8420] = 2018, - [8421] = 2015, - [8422] = 8327, - [8423] = 8328, - [8424] = 8328, - [8425] = 8327, - [8426] = 2018, - [8427] = 2015, - [8428] = 8339, - [8429] = 2020, - [8430] = 8339, - [8431] = 8339, - [8432] = 2013, - [8433] = 8327, - [8434] = 2018, - [8435] = 8328, - [8436] = 8344, + [8268] = 8045, + [8269] = 8046, + [8270] = 8047, + [8271] = 8048, + [8272] = 7947, + [8273] = 8049, + [8274] = 2121, + [8275] = 8052, + [8276] = 8053, + [8277] = 8054, + [8278] = 2009, + [8279] = 7984, + [8280] = 8067, + [8281] = 2000, + [8282] = 8072, + [8283] = 2001, + [8284] = 2000, + [8285] = 2050, + [8286] = 2007, + [8287] = 2008, + [8288] = 2002, + [8289] = 2024, + [8290] = 2000, + [8291] = 8057, + [8292] = 8058, + [8293] = 2006, + [8294] = 8059, + [8295] = 8061, + [8296] = 8062, + [8297] = 8063, + [8298] = 8007, + [8299] = 2008, + [8300] = 8008, + [8301] = 8009, + [8302] = 8011, + [8303] = 8013, + [8304] = 8014, + [8305] = 8016, + [8306] = 8017, + [8307] = 2002, + [8308] = 8027, + [8309] = 8028, + [8310] = 2019, + [8311] = 2023, + [8312] = 8094, + [8313] = 8095, + [8314] = 8096, + [8315] = 8097, + [8316] = 8202, + [8317] = 2124, + [8318] = 8202, + [8319] = 2007, + [8320] = 2003, + [8321] = 8090, + [8322] = 8091, + [8323] = 8093, + [8324] = 8098, + [8325] = 8099, + [8326] = 2017, + [8327] = 2015, + [8328] = 2018, + [8329] = 2025, + [8330] = 2021, + [8331] = 7957, + [8332] = 7961, + [8333] = 7962, + [8334] = 7963, + [8335] = 7964, + [8336] = 7965, + [8337] = 7966, + [8338] = 7967, + [8339] = 7968, + [8340] = 7969, + [8341] = 7970, + [8342] = 2009, + [8343] = 2125, + [8344] = 2115, + [8345] = 7988, + [8346] = 2117, + [8347] = 2007, + [8348] = 7972, + [8349] = 7973, + [8350] = 7974, + [8351] = 7975, + [8352] = 2022, + [8353] = 2006, + [8354] = 2026, + [8355] = 2028, + [8356] = 2020, + [8357] = 7977, + [8358] = 7978, + [8359] = 7979, + [8360] = 7980, + [8361] = 7981, + [8362] = 8030, + [8363] = 2009, + [8364] = 2001, + [8365] = 8365, + [8366] = 2019, + [8367] = 2023, + [8368] = 2013, + [8369] = 2010, + [8370] = 8370, + [8371] = 2011, + [8372] = 8372, + [8373] = 8373, + [8374] = 2027, + [8375] = 2021, + [8376] = 2017, + [8377] = 2015, + [8378] = 8370, + [8379] = 2025, + [8380] = 2022, + [8381] = 2026, + [8382] = 8372, + [8383] = 2028, + [8384] = 8370, + [8385] = 2017, + [8386] = 8372, + [8387] = 2015, + [8388] = 8370, + [8389] = 8372, + [8390] = 2025, + [8391] = 8370, + [8392] = 8372, + [8393] = 8370, + [8394] = 8372, + [8395] = 8370, + [8396] = 8372, + [8397] = 8397, + [8398] = 8398, + [8399] = 2025, + [8400] = 8370, + [8401] = 8370, + [8402] = 8372, + [8403] = 2026, + [8404] = 2028, + [8405] = 8372, + [8406] = 2021, + [8407] = 2016, + [8408] = 2012, + [8409] = 8373, + [8410] = 8106, + [8411] = 8398, + [8412] = 8370, + [8413] = 2022, + [8414] = 8372, + [8415] = 2015, + [8416] = 8398, + [8417] = 8373, + [8418] = 2020, + [8419] = 2017, + [8420] = 8373, + [8421] = 8397, + [8422] = 8398, + [8423] = 8370, + [8424] = 8372, + [8425] = 8373, + [8426] = 8373, + [8427] = 8398, + [8428] = 2023, + [8429] = 8370, + [8430] = 2013, + [8431] = 8372, + [8432] = 2010, + [8433] = 8370, + [8434] = 2011, + [8435] = 2027, + [8436] = 2016, [8437] = 2012, - [8438] = 7874, - [8439] = 8323, - [8440] = 8328, - [8441] = 8327, - [8442] = 2063, - [8443] = 8339, - [8444] = 8327, - [8445] = 2014, - [8446] = 2010, - [8447] = 8323, - [8448] = 2010, - [8449] = 2021, - [8450] = 8339, - [8451] = 2027, - [8452] = 8323, - [8453] = 2016, - [8454] = 2022, - [8455] = 8339, - [8456] = 8323, - [8457] = 2019, - [8458] = 2012, - [8459] = 8327, - [8460] = 8323, - [8461] = 8327, - [8462] = 8344, - [8463] = 8328, - [8464] = 8327, - [8465] = 8465, - [8466] = 2062, - [8467] = 2020, - [8468] = 2067, - [8469] = 8328, - [8470] = 8344, - [8471] = 2001, - [8472] = 8327, - [8473] = 8323, - [8474] = 8328, - [8475] = 2023, - [8476] = 8328, - [8477] = 7953, - [8478] = 8327, - [8479] = 2026, - [8480] = 2025, - [8481] = 8481, - [8482] = 8339, - [8483] = 8323, - [8484] = 2019, - [8485] = 2019, - [8486] = 7900, - [8487] = 8344, - [8488] = 2002, - [8489] = 8344, - [8490] = 8328, - [8491] = 2058, - [8492] = 7870, - [8493] = 8323, - [8494] = 8494, - [8495] = 8495, - [8496] = 8496, - [8497] = 8497, - [8498] = 8494, - [8499] = 7937, - [8500] = 8500, - [8501] = 2123, - [8502] = 8502, - [8503] = 7952, - [8504] = 8504, - [8505] = 2124, - [8506] = 8506, - [8507] = 7941, - [8508] = 2112, - [8509] = 8497, + [8438] = 2078, + [8439] = 7940, + [8440] = 8373, + [8441] = 2073, + [8442] = 8398, + [8443] = 7929, + [8444] = 8370, + [8445] = 8398, + [8446] = 8372, + [8447] = 8397, + [8448] = 2019, + [8449] = 8370, + [8450] = 8372, + [8451] = 8397, + [8452] = 8373, + [8453] = 2024, + [8454] = 8397, + [8455] = 2004, + [8456] = 2003, + [8457] = 8370, + [8458] = 2000, + [8459] = 8398, + [8460] = 2009, + [8461] = 2007, + [8462] = 8370, + [8463] = 8397, + [8464] = 8397, + [8465] = 8372, + [8466] = 8397, + [8467] = 2059, + [8468] = 2063, + [8469] = 2070, + [8470] = 8373, + [8471] = 8471, + [8472] = 8397, + [8473] = 8373, + [8474] = 2021, + [8475] = 8397, + [8476] = 2013, + [8477] = 2010, + [8478] = 2011, + [8479] = 8397, + [8480] = 8373, + [8481] = 2027, + [8482] = 8397, + [8483] = 7932, + [8484] = 8398, + [8485] = 8397, + [8486] = 8398, + [8487] = 2067, + [8488] = 8397, + [8489] = 2068, + [8490] = 8370, + [8491] = 8370, + [8492] = 8372, + [8493] = 8372, + [8494] = 2022, + [8495] = 2056, + [8496] = 2072, + [8497] = 8398, + [8498] = 2075, + [8499] = 8370, + [8500] = 8372, + [8501] = 2069, + [8502] = 2061, + [8503] = 8370, + [8504] = 8372, + [8505] = 2062, + [8506] = 2014, + [8507] = 2065, + [8508] = 8373, + [8509] = 8372, [8510] = 8510, - [8511] = 8494, - [8512] = 8495, - [8513] = 2101, - [8514] = 8495, - [8515] = 7929, - [8516] = 8516, - [8517] = 8496, - [8518] = 7955, - [8519] = 8497, - [8520] = 7998, - [8521] = 8495, - [8522] = 7965, - [8523] = 2009, - [8524] = 8000, - [8525] = 8525, - [8526] = 7945, - [8527] = 8525, - [8528] = 8528, - [8529] = 7947, - [8530] = 8506, - [8531] = 8531, - [8532] = 8528, - [8533] = 8001, - [8534] = 8002, - [8535] = 8535, - [8536] = 8003, - [8537] = 8537, - [8538] = 2001, - [8539] = 8004, - [8540] = 8019, - [8541] = 8541, - [8542] = 8494, - [8543] = 8516, - [8544] = 8531, - [8545] = 8545, - [8546] = 7956, - [8547] = 8547, - [8548] = 8005, - [8549] = 8006, - [8550] = 8506, - [8551] = 8018, - [8552] = 8007, - [8553] = 8008, - [8554] = 8010, - [8555] = 8555, - [8556] = 8516, + [8511] = 8398, + [8512] = 8512, + [8513] = 8370, + [8514] = 8370, + [8515] = 2026, + [8516] = 2028, + [8517] = 8372, + [8518] = 8372, + [8519] = 8372, + [8520] = 8370, + [8521] = 2018, + [8522] = 8372, + [8523] = 2024, + [8524] = 2019, + [8525] = 8373, + [8526] = 2020, + [8527] = 8373, + [8528] = 8370, + [8529] = 2016, + [8530] = 8372, + [8531] = 8398, + [8532] = 8398, + [8533] = 2012, + [8534] = 2024, + [8535] = 2002, + [8536] = 8536, + [8537] = 8536, + [8538] = 8538, + [8539] = 7970, + [8540] = 8540, + [8541] = 8035, + [8542] = 8014, + [8543] = 8543, + [8544] = 8544, + [8545] = 8536, + [8546] = 8009, + [8547] = 2009, + [8548] = 8548, + [8549] = 8549, + [8550] = 8016, + [8551] = 8551, + [8552] = 8552, + [8553] = 8553, + [8554] = 8548, + [8555] = 2007, + [8556] = 8556, [8557] = 8557, - [8558] = 8504, - [8559] = 8506, - [8560] = 8535, - [8561] = 8561, - [8562] = 8525, - [8563] = 8528, - [8564] = 8531, - [8565] = 8541, - [8566] = 8547, - [8567] = 8561, - [8568] = 8024, - [8569] = 8057, - [8570] = 8496, - [8571] = 8557, - [8572] = 2007, - [8573] = 8516, - [8574] = 7980, - [8575] = 7982, - [8576] = 8497, - [8577] = 8494, - [8578] = 2003, - [8579] = 8500, - [8580] = 8502, - [8581] = 8506, - [8582] = 8525, - [8583] = 8500, - [8584] = 7983, - [8585] = 8502, - [8586] = 7984, - [8587] = 8053, - [8588] = 7962, - [8589] = 8495, - [8590] = 8516, - [8591] = 8591, - [8592] = 8528, - [8593] = 8531, - [8594] = 8496, - [8595] = 2028, - [8596] = 7963, - [8597] = 8011, - [8598] = 8506, - [8599] = 8525, - [8600] = 8528, - [8601] = 8531, - [8602] = 7925, - [8603] = 8603, - [8604] = 7911, - [8605] = 8605, - [8606] = 8516, - [8607] = 2002, - [8608] = 8028, - [8609] = 7912, - [8610] = 2110, - [8611] = 7949, - [8612] = 8506, - [8613] = 8500, - [8614] = 8516, - [8615] = 8504, - [8616] = 8504, - [8617] = 8506, - [8618] = 8504, - [8619] = 8502, - [8620] = 7988, - [8621] = 8547, - [8622] = 8561, - [8623] = 8547, - [8624] = 8063, - [8625] = 8516, - [8626] = 8561, - [8627] = 8525, - [8628] = 7906, - [8629] = 8497, - [8630] = 8506, - [8631] = 8497, - [8632] = 8494, - [8633] = 8531, - [8634] = 8494, - [8635] = 8497, - [8636] = 8494, - [8637] = 8500, - [8638] = 8500, - [8639] = 7964, - [8640] = 7972, - [8641] = 8502, - [8642] = 8502, - [8643] = 8516, - [8644] = 8029, - [8645] = 7958, - [8646] = 8030, - [8647] = 8545, - [8648] = 8031, - [8649] = 8506, - [8650] = 8495, - [8651] = 8033, - [8652] = 8043, - [8653] = 8496, - [8654] = 8654, - [8655] = 2008, - [8656] = 8045, - [8657] = 8500, - [8658] = 8516, - [8659] = 8495, - [8660] = 8525, - [8661] = 8504, - [8662] = 8528, - [8663] = 8531, - [8664] = 8038, - [8665] = 2002, - [8666] = 7961, - [8667] = 8506, - [8668] = 8496, - [8669] = 8502, - [8670] = 8062, - [8671] = 8502, - [8672] = 8547, - [8673] = 7917, - [8674] = 8525, - [8675] = 8516, - [8676] = 8528, - [8677] = 8531, - [8678] = 7924, - [8679] = 2028, - [8680] = 8506, - [8681] = 8681, - [8682] = 2104, - [8683] = 2008, - [8684] = 8504, - [8685] = 8516, - [8686] = 2007, - [8687] = 8547, - [8688] = 8561, - [8689] = 7938, - [8690] = 8495, - [8691] = 8654, - [8692] = 7944, - [8693] = 8516, - [8694] = 8497, - [8695] = 8545, - [8696] = 8494, - [8697] = 8681, - [8698] = 8500, - [8699] = 8496, - [8700] = 8502, - [8701] = 2000, - [8702] = 8561, - [8703] = 8516, - [8704] = 7969, - [8705] = 7971, - [8706] = 8516, - [8707] = 8495, - [8708] = 8496, - [8709] = 8516, - [8710] = 8495, - [8711] = 8525, - [8712] = 8528, - [8713] = 8531, - [8714] = 1998, - [8715] = 8528, - [8716] = 8516, - [8717] = 7908, - [8718] = 8547, - [8719] = 2116, - [8720] = 8504, - [8721] = 8516, - [8722] = 8025, - [8723] = 8516, - [8724] = 8547, - [8725] = 8561, - [8726] = 8516, - [8727] = 2118, - [8728] = 2121, - [8729] = 8496, - [8730] = 8516, - [8731] = 2003, - [8732] = 8516, - [8733] = 8516, - [8734] = 8504, - [8735] = 7942, - [8736] = 2430, - [8737] = 8547, - [8738] = 8561, - [8739] = 8497, - [8740] = 8497, - [8741] = 8494, - [8742] = 8494, - [8743] = 2099, - [8744] = 8506, - [8745] = 8500, - [8746] = 8502, - [8747] = 8500, - [8748] = 8500, - [8749] = 8502, - [8750] = 8525, - [8751] = 8504, - [8752] = 2102, - [8753] = 2103, - [8754] = 8495, - [8755] = 8528, - [8756] = 8496, - [8757] = 2107, - [8758] = 2108, - [8759] = 7992, - [8760] = 7999, - [8761] = 2111, - [8762] = 8557, - [8763] = 8531, - [8764] = 8525, - [8765] = 8528, - [8766] = 8531, - [8767] = 2113, - [8768] = 8495, - [8769] = 8537, - [8770] = 8591, - [8771] = 8496, - [8772] = 8012, - [8773] = 8681, - [8774] = 8496, - [8775] = 2114, - [8776] = 2115, - [8777] = 2117, - [8778] = 8547, - [8779] = 2119, - [8780] = 2120, - [8781] = 8561, - [8782] = 2000, - [8783] = 2098, - [8784] = 8525, - [8785] = 8528, - [8786] = 8786, - [8787] = 2125, - [8788] = 8531, - [8789] = 1995, - [8790] = 7907, - [8791] = 8017, - [8792] = 7967, - [8793] = 8525, - [8794] = 8528, - [8795] = 8058, - [8796] = 1997, - [8797] = 8504, - [8798] = 8497, - [8799] = 2017, - [8800] = 8506, - [8801] = 1999, - [8802] = 1996, - [8803] = 2100, - [8804] = 8547, - [8805] = 8541, - [8806] = 8561, - [8807] = 8531, - [8808] = 8049, - [8809] = 8555, - [8810] = 2438, - [8811] = 8060, - [8812] = 8504, - [8813] = 8497, - [8814] = 8494, - [8815] = 8497, - [8816] = 8500, - [8817] = 8502, - [8818] = 8535, - [8819] = 7915, - [8820] = 7919, - [8821] = 8494, - [8822] = 2049, - [8823] = 8009, - [8824] = 8497, - [8825] = 8495, - [8826] = 8525, - [8827] = 8496, - [8828] = 8494, - [8829] = 8561, - [8830] = 7914, - [8831] = 8528, - [8832] = 8495, - [8833] = 8547, - [8834] = 8555, - [8835] = 8525, - [8836] = 8836, - [8837] = 8528, - [8838] = 2451, - [8839] = 8531, - [8840] = 8015, - [8841] = 8020, - [8842] = 8561, - [8843] = 2001, - [8844] = 8537, - [8845] = 8591, - [8846] = 8531, - [8847] = 7922, - [8848] = 7928, - [8849] = 8500, - [8850] = 8504, - [8851] = 8525, - [8852] = 8502, - [8853] = 8528, - [8854] = 7996, - [8855] = 8041, - [8856] = 8531, - [8857] = 8516, - [8858] = 8044, - [8859] = 7926, - [8860] = 7930, - [8861] = 2017, - [8862] = 7931, - [8863] = 8495, - [8864] = 8516, - [8865] = 8547, - [8866] = 8561, - [8867] = 8496, - [8868] = 2004, - [8869] = 8504, - [8870] = 7973, - [8871] = 7976, - [8872] = 7909, - [8873] = 8547, - [8874] = 8561, - [8875] = 7936, - [8876] = 7985, - [8877] = 7975, - [8878] = 7933, - [8879] = 7978, - [8880] = 7946, - [8881] = 8056, - [8882] = 8654, - [8883] = 8497, - [8884] = 8494, - [8885] = 8497, - [8886] = 8494, - [8887] = 8500, - [8888] = 8502, - [8889] = 7939, - [8890] = 8495, - [8891] = 8891, - [8892] = 8892, - [8893] = 8891, - [8894] = 8894, - [8895] = 8895, - [8896] = 8895, - [8897] = 8897, - [8898] = 8898, - [8899] = 8899, - [8900] = 8900, - [8901] = 8900, - [8902] = 8897, - [8903] = 8897, - [8904] = 8904, - [8905] = 8899, - [8906] = 8899, - [8907] = 8895, - [8908] = 8895, - [8909] = 8909, - [8910] = 8910, - [8911] = 8892, - [8912] = 8909, - [8913] = 8891, - [8914] = 8894, - [8915] = 7925, - [8916] = 8909, - [8917] = 7961, - [8918] = 8898, - [8919] = 8910, - [8920] = 8920, - [8921] = 8910, - [8922] = 8900, - [8923] = 8923, - [8924] = 8897, - [8925] = 8899, - [8926] = 2534, - [8927] = 8895, - [8928] = 8910, - [8929] = 8909, - [8930] = 8892, - [8931] = 8900, - [8932] = 8900, - [8933] = 8891, - [8934] = 8897, - [8935] = 8895, - [8936] = 8899, - [8937] = 2005, - [8938] = 8909, - [8939] = 8895, - [8940] = 8892, - [8941] = 8891, - [8942] = 8894, - [8943] = 8910, - [8944] = 8899, - [8945] = 8898, - [8946] = 8900, - [8947] = 8947, + [8558] = 8017, + [8559] = 8553, + [8560] = 8560, + [8561] = 8536, + [8562] = 8553, + [8563] = 8553, + [8564] = 8007, + [8565] = 8538, + [8566] = 2014, + [8567] = 8567, + [8568] = 8027, + [8569] = 7972, + [8570] = 7973, + [8571] = 8571, + [8572] = 8067, + [8573] = 1999, + [8574] = 8574, + [8575] = 2006, + [8576] = 8008, + [8577] = 2124, + [8578] = 7974, + [8579] = 8579, + [8580] = 8580, + [8581] = 2001, + [8582] = 8582, + [8583] = 7985, + [8584] = 8584, + [8585] = 8579, + [8586] = 8582, + [8587] = 7975, + [8588] = 8028, + [8589] = 7987, + [8590] = 7990, + [8591] = 7991, + [8592] = 7993, + [8593] = 2009, + [8594] = 8549, + [8595] = 8556, + [8596] = 8556, + [8597] = 2007, + [8598] = 8072, + [8599] = 8579, + [8600] = 8582, + [8601] = 7994, + [8602] = 7995, + [8603] = 7996, + [8604] = 7997, + [8605] = 7998, + [8606] = 8606, + [8607] = 7999, + [8608] = 8548, + [8609] = 8000, + [8610] = 8001, + [8611] = 8553, + [8612] = 8612, + [8613] = 8544, + [8614] = 2002, + [8615] = 7976, + [8616] = 8560, + [8617] = 8549, + [8618] = 8002, + [8619] = 8536, + [8620] = 8538, + [8621] = 8560, + [8622] = 8536, + [8623] = 8538, + [8624] = 8003, + [8625] = 8004, + [8626] = 8005, + [8627] = 8548, + [8628] = 8571, + [8629] = 8544, + [8630] = 8556, + [8631] = 2428, + [8632] = 8551, + [8633] = 8553, + [8634] = 7986, + [8635] = 8548, + [8636] = 8580, + [8637] = 8571, + [8638] = 2102, + [8639] = 8612, + [8640] = 8010, + [8641] = 8560, + [8642] = 8574, + [8643] = 8574, + [8644] = 8644, + [8645] = 8580, + [8646] = 8536, + [8647] = 7977, + [8648] = 8544, + [8649] = 7978, + [8650] = 8538, + [8651] = 8025, + [8652] = 8612, + [8653] = 8549, + [8654] = 8556, + [8655] = 7979, + [8656] = 8571, + [8657] = 7980, + [8658] = 8579, + [8659] = 8582, + [8660] = 7981, + [8661] = 8580, + [8662] = 8560, + [8663] = 8019, + [8664] = 8020, + [8665] = 8544, + [8666] = 7957, + [8667] = 8021, + [8668] = 8548, + [8669] = 8022, + [8670] = 8553, + [8671] = 8560, + [8672] = 7961, + [8673] = 8571, + [8674] = 8612, + [8675] = 8536, + [8676] = 8544, + [8677] = 8023, + [8678] = 8612, + [8679] = 8612, + [8680] = 7962, + [8681] = 8571, + [8682] = 8544, + [8683] = 8574, + [8684] = 8574, + [8685] = 8560, + [8686] = 8536, + [8687] = 8612, + [8688] = 2107, + [8689] = 7984, + [8690] = 8580, + [8691] = 8538, + [8692] = 2110, + [8693] = 8574, + [8694] = 8580, + [8695] = 8544, + [8696] = 8538, + [8697] = 8580, + [8698] = 1996, + [8699] = 8584, + [8700] = 8644, + [8701] = 2122, + [8702] = 8538, + [8703] = 8612, + [8704] = 8024, + [8705] = 7963, + [8706] = 8579, + [8707] = 8707, + [8708] = 7988, + [8709] = 8036, + [8710] = 8571, + [8711] = 8711, + [8712] = 7989, + [8713] = 8544, + [8714] = 8571, + [8715] = 2003, + [8716] = 8549, + [8717] = 8612, + [8718] = 8556, + [8719] = 8549, + [8720] = 8549, + [8721] = 8552, + [8722] = 8574, + [8723] = 8580, + [8724] = 8556, + [8725] = 8707, + [8726] = 8606, + [8727] = 8544, + [8728] = 8556, + [8729] = 8579, + [8730] = 7964, + [8731] = 8731, + [8732] = 8612, + [8733] = 8733, + [8734] = 8579, + [8735] = 8582, + [8736] = 2014, + [8737] = 8560, + [8738] = 8579, + [8739] = 8582, + [8740] = 8544, + [8741] = 8582, + [8742] = 8742, + [8743] = 7965, + [8744] = 8582, + [8745] = 8612, + [8746] = 8543, + [8747] = 8548, + [8748] = 8549, + [8749] = 8556, + [8750] = 8548, + [8751] = 8553, + [8752] = 8544, + [8753] = 8579, + [8754] = 8582, + [8755] = 8612, + [8756] = 2000, + [8757] = 8549, + [8758] = 8549, + [8759] = 8039, + [8760] = 8544, + [8761] = 8551, + [8762] = 8030, + [8763] = 8040, + [8764] = 2125, + [8765] = 2115, + [8766] = 2018, + [8767] = 8612, + [8768] = 2117, + [8769] = 8579, + [8770] = 8552, + [8771] = 8560, + [8772] = 8548, + [8773] = 8553, + [8774] = 8544, + [8775] = 8553, + [8776] = 8041, + [8777] = 8544, + [8778] = 8042, + [8779] = 8536, + [8780] = 8538, + [8781] = 8043, + [8782] = 2123, + [8783] = 8544, + [8784] = 8044, + [8785] = 8045, + [8786] = 8046, + [8787] = 8571, + [8788] = 8560, + [8789] = 8544, + [8790] = 8536, + [8791] = 8538, + [8792] = 8047, + [8793] = 8544, + [8794] = 8048, + [8795] = 7966, + [8796] = 8544, + [8797] = 8560, + [8798] = 2004, + [8799] = 8536, + [8800] = 8544, + [8801] = 7947, + [8802] = 8544, + [8803] = 8571, + [8804] = 8544, + [8805] = 8049, + [8806] = 8538, + [8807] = 8544, + [8808] = 8052, + [8809] = 8053, + [8810] = 8544, + [8811] = 8054, + [8812] = 8544, + [8813] = 8549, + [8814] = 2099, + [8815] = 8574, + [8816] = 8556, + [8817] = 2100, + [8818] = 2101, + [8819] = 8580, + [8820] = 8612, + [8821] = 2103, + [8822] = 7967, + [8823] = 8548, + [8824] = 8553, + [8825] = 8548, + [8826] = 8090, + [8827] = 8549, + [8828] = 8560, + [8829] = 8543, + [8830] = 2104, + [8831] = 2106, + [8832] = 8011, + [8833] = 8536, + [8834] = 2108, + [8835] = 2109, + [8836] = 2002, + [8837] = 2111, + [8838] = 8556, + [8839] = 8538, + [8840] = 8057, + [8841] = 8058, + [8842] = 8059, + [8843] = 8571, + [8844] = 2432, + [8845] = 8574, + [8846] = 2112, + [8847] = 2113, + [8848] = 8580, + [8849] = 8574, + [8850] = 8580, + [8851] = 8560, + [8852] = 2116, + [8853] = 8091, + [8854] = 2118, + [8855] = 2120, + [8856] = 8584, + [8857] = 2121, + [8858] = 8644, + [8859] = 8536, + [8860] = 8538, + [8861] = 8549, + [8862] = 8556, + [8863] = 8061, + [8864] = 8062, + [8865] = 8063, + [8866] = 1995, + [8867] = 8579, + [8868] = 8582, + [8869] = 8579, + [8870] = 8582, + [8871] = 2445, + [8872] = 8731, + [8873] = 8556, + [8874] = 8548, + [8875] = 8553, + [8876] = 8733, + [8877] = 8549, + [8878] = 7968, + [8879] = 8556, + [8880] = 8536, + [8881] = 8548, + [8882] = 8093, + [8883] = 8013, + [8884] = 8549, + [8885] = 8556, + [8886] = 8098, + [8887] = 8560, + [8888] = 8536, + [8889] = 8560, + [8890] = 8538, + [8891] = 2046, + [8892] = 8538, + [8893] = 2003, + [8894] = 8574, + [8895] = 8707, + [8896] = 8094, + [8897] = 8606, + [8898] = 8099, + [8899] = 8731, + [8900] = 8733, + [8901] = 8095, + [8902] = 8571, + [8903] = 8538, + [8904] = 1997, + [8905] = 8571, + [8906] = 1998, + [8907] = 2004, + [8908] = 8574, + [8909] = 8580, + [8910] = 8096, + [8911] = 8571, + [8912] = 8097, + [8913] = 7969, + [8914] = 8548, + [8915] = 8549, + [8916] = 8556, + [8917] = 2018, + [8918] = 8579, + [8919] = 8582, + [8920] = 8579, + [8921] = 8574, + [8922] = 8580, + [8923] = 8582, + [8924] = 8574, + [8925] = 8553, + [8926] = 8582, + [8927] = 8548, + [8928] = 8553, + [8929] = 8580, + [8930] = 2000, + [8931] = 8560, + [8932] = 8548, + [8933] = 8933, + [8934] = 8934, + [8935] = 8935, + [8936] = 8936, + [8937] = 2479, + [8938] = 7986, + [8939] = 8939, + [8940] = 8940, + [8941] = 8934, + [8942] = 8942, + [8943] = 8943, + [8944] = 8944, + [8945] = 8008, + [8946] = 8940, + [8947] = 8934, [8948] = 8948, - [8949] = 8897, - [8950] = 8892, - [8951] = 8891, - [8952] = 8894, - [8953] = 8909, - [8954] = 8954, - [8955] = 8909, - [8956] = 8900, - [8957] = 8898, - [8958] = 8898, - [8959] = 8900, - [8960] = 8897, - [8961] = 8899, - [8962] = 8910, - [8963] = 8900, - [8964] = 8954, - [8965] = 8895, - [8966] = 8910, - [8967] = 8892, - [8968] = 8910, - [8969] = 8969, - [8970] = 8892, - [8971] = 8892, - [8972] = 8891, - [8973] = 8948, - [8974] = 8894, - [8975] = 8891, - [8976] = 8898, - [8977] = 8977, - [8978] = 8891, - [8979] = 8897, - [8980] = 8909, - [8981] = 8894, - [8982] = 8900, - [8983] = 8894, - [8984] = 8897, - [8985] = 8899, + [8949] = 8949, + [8950] = 2005, + [8951] = 8934, + [8952] = 8940, + [8953] = 8939, + [8954] = 8942, + [8955] = 8943, + [8956] = 8934, + [8957] = 8940, + [8958] = 8939, + [8959] = 8942, + [8960] = 8940, + [8961] = 8943, + [8962] = 8962, + [8963] = 8948, + [8964] = 8939, + [8965] = 8942, + [8966] = 8943, + [8967] = 8967, + [8968] = 8940, + [8969] = 8934, + [8970] = 8970, + [8971] = 8948, + [8972] = 8972, + [8973] = 8973, + [8974] = 8935, + [8975] = 8934, + [8976] = 8970, + [8977] = 8972, + [8978] = 8973, + [8979] = 8940, + [8980] = 8935, + [8981] = 8939, + [8982] = 8942, + [8983] = 8943, + [8984] = 8948, + [8985] = 8948, [8986] = 8986, - [8987] = 8910, - [8988] = 8892, - [8989] = 8947, - [8990] = 8895, - [8991] = 8909, - [8992] = 8899, - [8993] = 8900, - [8994] = 8910, - [8995] = 8897, - [8996] = 2430, - [8997] = 8997, - [8998] = 2494, - [8999] = 8900, - [9000] = 8898, - [9001] = 8895, + [8987] = 8934, + [8988] = 8970, + [8989] = 8972, + [8990] = 8973, + [8991] = 8991, + [8992] = 8939, + [8993] = 8993, + [8994] = 8935, + [8995] = 8934, + [8996] = 8970, + [8997] = 2481, + [8998] = 8972, + [8999] = 2482, + [9000] = 8973, + [9001] = 8935, [9002] = 9002, - [9003] = 8897, - [9004] = 9004, - [9005] = 8892, - [9006] = 8894, - [9007] = 8910, - [9008] = 8892, - [9009] = 8909, - [9010] = 8897, - [9011] = 8910, - [9012] = 8894, - [9013] = 8910, - [9014] = 8892, - [9015] = 8891, - [9016] = 8894, - [9017] = 8898, - [9018] = 8898, - [9019] = 8898, - [9020] = 8895, - [9021] = 8910, - [9022] = 8900, - [9023] = 8892, - [9024] = 8897, - [9025] = 8899, - [9026] = 8895, - [9027] = 8910, - [9028] = 8900, - [9029] = 8891, - [9030] = 8897, - [9031] = 8899, - [9032] = 8909, - [9033] = 8954, - [9034] = 8900, - [9035] = 8894, - [9036] = 8895, - [9037] = 2495, - [9038] = 8910, - [9039] = 8909, - [9040] = 8892, - [9041] = 8891, - [9042] = 8894, - [9043] = 8898, - [9044] = 8898, - [9045] = 8900, - [9046] = 8910, - [9047] = 8947, - [9048] = 8948, - [9049] = 9049, - [9050] = 8892, - [9051] = 8891, - [9052] = 8947, - [9053] = 8948, - [9054] = 8909, - [9055] = 8897, - [9056] = 8947, - [9057] = 8948, - [9058] = 9058, - [9059] = 8894, - [9060] = 9060, - [9061] = 8900, - [9062] = 8947, - [9063] = 8948, - [9064] = 8897, - [9065] = 8899, - [9066] = 8947, - [9067] = 8948, - [9068] = 2483, - [9069] = 8900, - [9070] = 8947, - [9071] = 8948, - [9072] = 8895, - [9073] = 9073, - [9074] = 8947, - [9075] = 8948, - [9076] = 8910, - [9077] = 8909, - [9078] = 8947, - [9079] = 8948, - [9080] = 9080, - [9081] = 8947, - [9082] = 8948, - [9083] = 8892, - [9084] = 8947, - [9085] = 8948, - [9086] = 8897, - [9087] = 8891, - [9088] = 8894, - [9089] = 8947, - [9090] = 8948, - [9091] = 8947, - [9092] = 8948, - [9093] = 8947, - [9094] = 8948, - [9095] = 8899, - [9096] = 8947, + [9003] = 8970, + [9004] = 8940, + [9005] = 8939, + [9006] = 8942, + [9007] = 8943, + [9008] = 8948, + [9009] = 8933, + [9010] = 8940, + [9011] = 8934, + [9012] = 8970, + [9013] = 8972, + [9014] = 8940, + [9015] = 8939, + [9016] = 8942, + [9017] = 8943, + [9018] = 8973, + [9019] = 8948, + [9020] = 8935, + [9021] = 8939, + [9022] = 8942, + [9023] = 8934, + [9024] = 8970, + [9025] = 8972, + [9026] = 8973, + [9027] = 8943, + [9028] = 8935, + [9029] = 8970, + [9030] = 8935, + [9031] = 9031, + [9032] = 8948, + [9033] = 9033, + [9034] = 8940, + [9035] = 8939, + [9036] = 8942, + [9037] = 8943, + [9038] = 8948, + [9039] = 8934, + [9040] = 8970, + [9041] = 8972, + [9042] = 8973, + [9043] = 8935, + [9044] = 8972, + [9045] = 8934, + [9046] = 8940, + [9047] = 8939, + [9048] = 8942, + [9049] = 8943, + [9050] = 8986, + [9051] = 8933, + [9052] = 8948, + [9053] = 8970, + [9054] = 8972, + [9055] = 8973, + [9056] = 8934, + [9057] = 8970, + [9058] = 8972, + [9059] = 8973, + [9060] = 8935, + [9061] = 9061, + [9062] = 8973, + [9063] = 2483, + [9064] = 9064, + [9065] = 8940, + [9066] = 8939, + [9067] = 8935, + [9068] = 8934, + [9069] = 8970, + [9070] = 2511, + [9071] = 9071, + [9072] = 8943, + [9073] = 8972, + [9074] = 9074, + [9075] = 8940, + [9076] = 8939, + [9077] = 8942, + [9078] = 8943, + [9079] = 8935, + [9080] = 8948, + [9081] = 8973, + [9082] = 8940, + [9083] = 2428, + [9084] = 8940, + [9085] = 8939, + [9086] = 8934, + [9087] = 8970, + [9088] = 9064, + [9089] = 8934, + [9090] = 8970, + [9091] = 8940, + [9092] = 8940, + [9093] = 8939, + [9094] = 8942, + [9095] = 8943, + [9096] = 8948, [9097] = 8948, - [9098] = 8910, - [9099] = 8910, - [9100] = 8892, - [9101] = 8898, - [9102] = 8900, - [9103] = 2480, - [9104] = 8899, - [9105] = 8898, - [9106] = 8900, + [9098] = 8939, + [9099] = 8934, + [9100] = 8970, + [9101] = 8972, + [9102] = 8973, + [9103] = 8942, + [9104] = 8935, + [9105] = 8943, + [9106] = 8948, [9107] = 9107, - [9108] = 9108, - [9109] = 9109, - [9110] = 9108, - [9111] = 2736, - [9112] = 9112, - [9113] = 9109, - [9114] = 9114, - [9115] = 9115, - [9116] = 2534, - [9117] = 9109, - [9118] = 9108, - [9119] = 2724, - [9120] = 9112, - [9121] = 9112, - [9122] = 9112, - [9123] = 9112, - [9124] = 9124, - [9125] = 9109, - [9126] = 9126, - [9127] = 9127, - [9128] = 2568, - [9129] = 9109, - [9130] = 9130, - [9131] = 9108, - [9132] = 9130, - [9133] = 9133, - [9134] = 9109, - [9135] = 9135, - [9136] = 9130, - [9137] = 9108, - [9138] = 9130, - [9139] = 9112, - [9140] = 9140, - [9141] = 9109, - [9142] = 9109, - [9143] = 9112, - [9144] = 9144, - [9145] = 9108, - [9146] = 9130, - [9147] = 9112, - [9148] = 9108, - [9149] = 9112, - [9150] = 9109, - [9151] = 9108, + [9108] = 8972, + [9109] = 8986, + [9110] = 8933, + [9111] = 8973, + [9112] = 8986, + [9113] = 8933, + [9114] = 9064, + [9115] = 8986, + [9116] = 8933, + [9117] = 8986, + [9118] = 8933, + [9119] = 8940, + [9120] = 8986, + [9121] = 8933, + [9122] = 9122, + [9123] = 8986, + [9124] = 8933, + [9125] = 8939, + [9126] = 8934, + [9127] = 8970, + [9128] = 8986, + [9129] = 8934, + [9130] = 8986, + [9131] = 8933, + [9132] = 8970, + [9133] = 8986, + [9134] = 8933, + [9135] = 8972, + [9136] = 8986, + [9137] = 8933, + [9138] = 8973, + [9139] = 8986, + [9140] = 8933, + [9141] = 8986, + [9142] = 8933, + [9143] = 8986, + [9144] = 8933, + [9145] = 8986, + [9146] = 8933, + [9147] = 8942, + [9148] = 8935, + [9149] = 8940, + [9150] = 9150, + [9151] = 9151, [9152] = 9152, - [9153] = 9112, - [9154] = 9130, - [9155] = 2583, - [9156] = 9130, - [9157] = 9130, + [9153] = 9150, + [9154] = 9151, + [9155] = 9152, + [9156] = 9150, + [9157] = 9157, [9158] = 9158, - [9159] = 9159, - [9160] = 9130, - [9161] = 9108, - [9162] = 9130, - [9163] = 9109, - [9164] = 9112, - [9165] = 9165, - [9166] = 9109, - [9167] = 9112, - [9168] = 9108, - [9169] = 9109, - [9170] = 9112, - [9171] = 9108, - [9172] = 9130, - [9173] = 9108, - [9174] = 9130, - [9175] = 9108, - [9176] = 9108, - [9177] = 9130, - [9178] = 2681, - [9179] = 9109, - [9180] = 9130, - [9181] = 9109, - [9182] = 9182, - [9183] = 9112, - [9184] = 9184, - [9185] = 9185, - [9186] = 9186, - [9187] = 9184, + [9159] = 9150, + [9160] = 9152, + [9161] = 9157, + [9162] = 9157, + [9163] = 9163, + [9164] = 9157, + [9165] = 9163, + [9166] = 9166, + [9167] = 9152, + [9168] = 9168, + [9169] = 9150, + [9170] = 9151, + [9171] = 9158, + [9172] = 9151, + [9173] = 9150, + [9174] = 9174, + [9175] = 9163, + [9176] = 9151, + [9177] = 9152, + [9178] = 9163, + [9179] = 9150, + [9180] = 9158, + [9181] = 9181, + [9182] = 9157, + [9183] = 9163, + [9184] = 9152, + [9185] = 9152, + [9186] = 9151, + [9187] = 9157, [9188] = 9188, - [9189] = 9189, - [9190] = 9190, - [9191] = 9191, - [9192] = 9186, - [9193] = 9190, - [9194] = 9194, - [9195] = 9184, - [9196] = 9184, - [9197] = 9184, - [9198] = 9198, - [9199] = 9190, - [9200] = 9198, - [9201] = 9201, - [9202] = 9190, - [9203] = 9203, + [9189] = 9163, + [9190] = 9150, + [9191] = 9151, + [9192] = 9192, + [9193] = 2770, + [9194] = 9152, + [9195] = 9151, + [9196] = 2597, + [9197] = 9150, + [9198] = 9157, + [9199] = 9158, + [9200] = 2511, + [9201] = 9150, + [9202] = 9163, + [9203] = 9152, [9204] = 9204, - [9205] = 2051, - [9206] = 9198, + [9205] = 9157, + [9206] = 9158, [9207] = 9207, - [9208] = 2040, - [9209] = 2483, - [9210] = 9186, - [9211] = 2494, - [9212] = 2495, - [9213] = 2040, - [9214] = 9214, - [9215] = 2480, - [9216] = 9190, - [9217] = 9186, - [9218] = 9189, - [9219] = 9190, - [9220] = 9198, - [9221] = 9221, - [9222] = 9184, - [9223] = 9223, - [9224] = 9186, - [9225] = 9214, - [9226] = 9226, - [9227] = 9227, - [9228] = 9214, - [9229] = 9190, - [9230] = 9194, - [9231] = 9194, - [9232] = 9186, - [9233] = 9221, - [9234] = 9214, - [9235] = 9207, - [9236] = 9198, - [9237] = 9186, - [9238] = 9190, - [9239] = 9194, - [9240] = 9198, - [9241] = 9185, - [9242] = 9242, - [9243] = 2040, - [9244] = 2040, - [9245] = 9198, - [9246] = 9184, - [9247] = 9194, - [9248] = 9198, - [9249] = 9190, - [9250] = 9186, - [9251] = 9190, - [9252] = 9185, - [9253] = 9184, - [9254] = 9184, - [9255] = 9214, + [9208] = 9163, + [9209] = 9157, + [9210] = 9163, + [9211] = 9151, + [9212] = 9212, + [9213] = 9213, + [9214] = 9151, + [9215] = 9158, + [9216] = 9158, + [9217] = 9158, + [9218] = 2715, + [9219] = 9152, + [9220] = 9220, + [9221] = 9157, + [9222] = 9163, + [9223] = 9151, + [9224] = 2562, + [9225] = 9163, + [9226] = 9152, + [9227] = 9157, + [9228] = 9152, + [9229] = 9229, + [9230] = 9150, + [9231] = 9163, + [9232] = 9158, + [9233] = 9158, + [9234] = 9152, + [9235] = 9151, + [9236] = 9151, + [9237] = 9158, + [9238] = 9157, + [9239] = 9150, + [9240] = 9163, + [9241] = 9158, + [9242] = 9151, + [9243] = 9243, + [9244] = 9150, + [9245] = 9152, + [9246] = 9150, + [9247] = 9158, + [9248] = 9248, + [9249] = 2677, + [9250] = 9157, + [9251] = 9157, + [9252] = 9163, + [9253] = 9158, + [9254] = 9254, + [9255] = 9254, [9256] = 9256, - [9257] = 9184, - [9258] = 9186, - [9259] = 9194, - [9260] = 9214, - [9261] = 9190, - [9262] = 2681, - [9263] = 9186, - [9264] = 2495, - [9265] = 9194, - [9266] = 9194, - [9267] = 9214, - [9268] = 9221, - [9269] = 9269, - [9270] = 9186, - [9271] = 9271, + [9257] = 9257, + [9258] = 9258, + [9259] = 2483, + [9260] = 2770, + [9261] = 9261, + [9262] = 2597, + [9263] = 9263, + [9264] = 9264, + [9265] = 9265, + [9266] = 9256, + [9267] = 9264, + [9268] = 9268, + [9269] = 9261, + [9270] = 2481, + [9271] = 9264, [9272] = 9272, - [9273] = 9186, - [9274] = 9207, - [9275] = 9214, - [9276] = 9198, - [9277] = 9190, - [9278] = 9185, - [9279] = 9279, - [9280] = 9189, - [9281] = 2480, - [9282] = 2724, - [9283] = 9194, - [9284] = 9184, - [9285] = 9227, - [9286] = 2568, - [9287] = 9287, - [9288] = 9186, - [9289] = 9190, - [9290] = 9186, - [9291] = 9291, - [9292] = 9214, - [9293] = 9214, - [9294] = 2736, - [9295] = 2040, - [9296] = 9214, + [9273] = 9256, + [9274] = 2042, + [9275] = 9275, + [9276] = 9263, + [9277] = 2479, + [9278] = 2481, + [9279] = 2482, + [9280] = 2483, + [9281] = 9257, + [9282] = 9261, + [9283] = 9283, + [9284] = 9254, + [9285] = 9257, + [9286] = 9264, + [9287] = 9258, + [9288] = 2055, + [9289] = 9256, + [9290] = 9254, + [9291] = 9254, + [9292] = 2042, + [9293] = 9293, + [9294] = 9261, + [9295] = 9256, + [9296] = 9257, [9297] = 9297, - [9298] = 9194, - [9299] = 9198, - [9300] = 9194, - [9301] = 9194, - [9302] = 9302, - [9303] = 9184, - [9304] = 9194, - [9305] = 2583, - [9306] = 2494, - [9307] = 9190, - [9308] = 9198, - [9309] = 9214, - [9310] = 9190, - [9311] = 9185, - [9312] = 2483, - [9313] = 9198, - [9314] = 9227, + [9298] = 9264, + [9299] = 9258, + [9300] = 2715, + [9301] = 2677, + [9302] = 2479, + [9303] = 9254, + [9304] = 9304, + [9305] = 9305, + [9306] = 9264, + [9307] = 9307, + [9308] = 9293, + [9309] = 9261, + [9310] = 9254, + [9311] = 9256, + [9312] = 9254, + [9313] = 9313, + [9314] = 9258, [9315] = 9315, [9316] = 9316, - [9317] = 9214, - [9318] = 9198, - [9319] = 9184, - [9320] = 9184, - [9321] = 9194, - [9322] = 9198, - [9323] = 9214, - [9324] = 9324, - [9325] = 9325, - [9326] = 2051, - [9327] = 9327, - [9328] = 9328, + [9317] = 9258, + [9318] = 9318, + [9319] = 9261, + [9320] = 2482, + [9321] = 9258, + [9322] = 9257, + [9323] = 9257, + [9324] = 9254, + [9325] = 9257, + [9326] = 9261, + [9327] = 9263, + [9328] = 9257, [9329] = 9329, - [9330] = 9330, + [9330] = 9256, [9331] = 9331, [9332] = 9332, - [9333] = 9330, - [9334] = 9334, + [9333] = 9333, + [9334] = 9258, [9335] = 9335, - [9336] = 9336, - [9337] = 9337, - [9338] = 9338, - [9339] = 9339, - [9340] = 9325, - [9341] = 9332, - [9342] = 9325, - [9343] = 9327, - [9344] = 9329, - [9345] = 9327, - [9346] = 9334, - [9347] = 9329, - [9348] = 9348, - [9349] = 9325, - [9350] = 9332, - [9351] = 9351, - [9352] = 9330, - [9353] = 9334, - [9354] = 9354, - [9355] = 2768, - [9356] = 9336, - [9357] = 9337, - [9358] = 2063, - [9359] = 9359, - [9360] = 2562, - [9361] = 2564, - [9362] = 2572, - [9363] = 9363, - [9364] = 9332, - [9365] = 9365, - [9366] = 2607, - [9367] = 2608, - [9368] = 9368, - [9369] = 2613, - [9370] = 9330, - [9371] = 9334, - [9372] = 9325, - [9373] = 9373, - [9374] = 9374, - [9375] = 9375, - [9376] = 9329, - [9377] = 9325, - [9378] = 9378, - [9379] = 9379, - [9380] = 9380, - [9381] = 9327, - [9382] = 9382, - [9383] = 9383, - [9384] = 9384, - [9385] = 9385, - [9386] = 9329, - [9387] = 9338, - [9388] = 9388, - [9389] = 9389, - [9390] = 9390, - [9391] = 9363, - [9392] = 9392, - [9393] = 9336, - [9394] = 9337, + [9336] = 9254, + [9337] = 9264, + [9338] = 9258, + [9339] = 9256, + [9340] = 9261, + [9341] = 9256, + [9342] = 9254, + [9343] = 9254, + [9344] = 9256, + [9345] = 9258, + [9346] = 9346, + [9347] = 9257, + [9348] = 9261, + [9349] = 9349, + [9350] = 9258, + [9351] = 9264, + [9352] = 9257, + [9353] = 2042, + [9354] = 9257, + [9355] = 9256, + [9356] = 9254, + [9357] = 9261, + [9358] = 9358, + [9359] = 9257, + [9360] = 9257, + [9361] = 9332, + [9362] = 2562, + [9363] = 9261, + [9364] = 9263, + [9365] = 2042, + [9366] = 9293, + [9367] = 9264, + [9368] = 9254, + [9369] = 9264, + [9370] = 9256, + [9371] = 9256, + [9372] = 9372, + [9373] = 9258, + [9374] = 9258, + [9375] = 9264, + [9376] = 9264, + [9377] = 9258, + [9378] = 9333, + [9379] = 9256, + [9380] = 9257, + [9381] = 9264, + [9382] = 9261, + [9383] = 9333, + [9384] = 9329, + [9385] = 9329, + [9386] = 9264, + [9387] = 9254, + [9388] = 9261, + [9389] = 9263, + [9390] = 2042, + [9391] = 9261, + [9392] = 9332, + [9393] = 9258, + [9394] = 9394, [9395] = 9395, - [9396] = 9396, + [9396] = 9395, [9397] = 9397, [9398] = 9398, - [9399] = 9399, - [9400] = 2644, - [9401] = 2645, - [9402] = 2646, - [9403] = 2650, - [9404] = 2666, - [9405] = 2673, + [9399] = 2649, + [9400] = 9395, + [9401] = 9401, + [9402] = 9401, + [9403] = 9403, + [9404] = 2055, + [9405] = 9397, [9406] = 9406, - [9407] = 2685, - [9408] = 9383, - [9409] = 9406, - [9410] = 9384, - [9411] = 9385, - [9412] = 2631, - [9413] = 9330, - [9414] = 9334, - [9415] = 9415, - [9416] = 9416, - [9417] = 9336, - [9418] = 9337, - [9419] = 9392, - [9420] = 2595, - [9421] = 9396, - [9422] = 2616, - [9423] = 2620, - [9424] = 2639, - [9425] = 2655, - [9426] = 2658, - [9427] = 2661, - [9428] = 2662, + [9407] = 9407, + [9408] = 2713, + [9409] = 9409, + [9410] = 9410, + [9411] = 9395, + [9412] = 9397, + [9413] = 9401, + [9414] = 9401, + [9415] = 9403, + [9416] = 9403, + [9417] = 9417, + [9418] = 9403, + [9419] = 2728, + [9420] = 2729, + [9421] = 2730, + [9422] = 2731, + [9423] = 2735, + [9424] = 2738, + [9425] = 9406, + [9426] = 9407, + [9427] = 9427, + [9428] = 9428, [9429] = 9429, - [9430] = 9336, - [9431] = 2638, - [9432] = 2699, - [9433] = 2711, - [9434] = 2714, - [9435] = 2717, - [9436] = 2718, - [9437] = 2732, - [9438] = 2742, - [9439] = 9439, - [9440] = 2759, - [9441] = 2767, - [9442] = 2544, - [9443] = 2545, - [9444] = 2546, - [9445] = 2547, - [9446] = 2549, - [9447] = 2550, - [9448] = 2551, - [9449] = 2553, - [9450] = 2554, - [9451] = 9332, - [9452] = 9452, + [9430] = 9409, + [9431] = 9431, + [9432] = 9410, + [9433] = 9394, + [9434] = 2055, + [9435] = 2055, + [9436] = 9395, + [9437] = 9437, + [9438] = 9438, + [9439] = 9397, + [9440] = 9406, + [9441] = 9407, + [9442] = 9442, + [9443] = 9443, + [9444] = 9444, + [9445] = 9445, + [9446] = 9446, + [9447] = 9447, + [9448] = 9401, + [9449] = 9449, + [9450] = 9428, + [9451] = 9429, + [9452] = 9449, [9453] = 9453, - [9454] = 9325, - [9455] = 9332, - [9456] = 2697, - [9457] = 2698, - [9458] = 9327, + [9454] = 9454, + [9455] = 9455, + [9456] = 9456, + [9457] = 9453, + [9458] = 9458, [9459] = 9459, - [9460] = 9329, - [9461] = 2582, - [9462] = 9462, - [9463] = 2569, - [9464] = 9330, - [9465] = 9334, - [9466] = 9325, - [9467] = 9336, - [9468] = 9337, - [9469] = 2051, - [9470] = 9332, - [9471] = 9325, - [9472] = 9327, - [9473] = 9329, - [9474] = 9337, - [9475] = 9378, - [9476] = 9330, - [9477] = 9334, - [9478] = 9378, - [9479] = 9379, - [9480] = 9380, - [9481] = 9481, - [9482] = 9383, - [9483] = 9384, - [9484] = 9385, - [9485] = 9327, - [9486] = 9336, - [9487] = 9337, - [9488] = 9338, - [9489] = 9388, - [9490] = 9389, - [9491] = 9390, - [9492] = 9363, - [9493] = 9392, - [9494] = 9396, + [9460] = 9460, + [9461] = 9461, + [9462] = 9403, + [9463] = 9463, + [9464] = 9406, + [9465] = 2565, + [9466] = 2637, + [9467] = 2777, + [9468] = 2746, + [9469] = 2771, + [9470] = 2553, + [9471] = 9407, + [9472] = 9406, + [9473] = 9407, + [9474] = 2567, + [9475] = 9409, + [9476] = 9410, + [9477] = 9477, + [9478] = 9406, + [9479] = 9407, + [9480] = 9409, + [9481] = 9410, + [9482] = 9482, + [9483] = 9409, + [9484] = 9410, + [9485] = 9395, + [9486] = 9486, + [9487] = 9487, + [9488] = 9443, + [9489] = 9395, + [9490] = 9444, + [9491] = 2600, + [9492] = 2695, + [9493] = 2073, + [9494] = 9395, [9495] = 9397, - [9496] = 9398, - [9497] = 9497, - [9498] = 9332, - [9499] = 9396, - [9500] = 9325, - [9501] = 9396, - [9502] = 9329, - [9503] = 9396, - [9504] = 9327, - [9505] = 9329, - [9506] = 9396, - [9507] = 9397, - [9508] = 9508, - [9509] = 9396, - [9510] = 9327, - [9511] = 9330, - [9512] = 9406, - [9513] = 9336, - [9514] = 9337, - [9515] = 9396, - [9516] = 9388, - [9517] = 9332, - [9518] = 9374, - [9519] = 9379, - [9520] = 9396, - [9521] = 9185, - [9522] = 9332, - [9523] = 9398, - [9524] = 9396, - [9525] = 9325, - [9526] = 9396, - [9527] = 2731, - [9528] = 9327, - [9529] = 9330, - [9530] = 9334, - [9531] = 9396, - [9532] = 9329, - [9533] = 9396, - [9534] = 9327, - [9535] = 9329, - [9536] = 9396, - [9537] = 9336, - [9538] = 9337, - [9539] = 9396, - [9540] = 9330, - [9541] = 9334, - [9542] = 9396, - [9543] = 9336, - [9544] = 9337, - [9545] = 9396, - [9546] = 9396, - [9547] = 2737, - [9548] = 9396, - [9549] = 9332, - [9550] = 9396, - [9551] = 9332, - [9552] = 9396, - [9553] = 9330, - [9554] = 9396, - [9555] = 9396, - [9556] = 9396, - [9557] = 9396, - [9558] = 9325, - [9559] = 9396, - [9560] = 9396, - [9561] = 9396, - [9562] = 9396, - [9563] = 9396, - [9564] = 9396, - [9565] = 9396, - [9566] = 9396, - [9567] = 9396, - [9568] = 9396, - [9569] = 9396, - [9570] = 9396, - [9571] = 9396, - [9572] = 9396, - [9573] = 9396, - [9574] = 9396, - [9575] = 9396, - [9576] = 9396, - [9577] = 9396, - [9578] = 9396, - [9579] = 9396, - [9580] = 9334, - [9581] = 9396, - [9582] = 9327, - [9583] = 2633, - [9584] = 9508, - [9585] = 9325, - [9586] = 9329, + [9496] = 9445, + [9497] = 9482, + [9498] = 9446, + [9499] = 2705, + [9500] = 2744, + [9501] = 9395, + [9502] = 9397, + [9503] = 2564, + [9504] = 9447, + [9505] = 2566, + [9506] = 2582, + [9507] = 9401, + [9508] = 9401, + [9509] = 2590, + [9510] = 9406, + [9511] = 9407, + [9512] = 9512, + [9513] = 9513, + [9514] = 9403, + [9515] = 9458, + [9516] = 9516, + [9517] = 2601, + [9518] = 9518, + [9519] = 2603, + [9520] = 9401, + [9521] = 2618, + [9522] = 9263, + [9523] = 9459, + [9524] = 9460, + [9525] = 9403, + [9526] = 9526, + [9527] = 9442, + [9528] = 9443, + [9529] = 9444, + [9530] = 9445, + [9531] = 9446, + [9532] = 9447, + [9533] = 9533, + [9534] = 9534, + [9535] = 2676, + [9536] = 9428, + [9537] = 9429, + [9538] = 9449, + [9539] = 9453, + [9540] = 2774, + [9541] = 2775, + [9542] = 9454, + [9543] = 9455, + [9544] = 2773, + [9545] = 9458, + [9546] = 9459, + [9547] = 9460, + [9548] = 2607, + [9549] = 2712, + [9550] = 2572, + [9551] = 9406, + [9552] = 9407, + [9553] = 2584, + [9554] = 2634, + [9555] = 2613, + [9556] = 9397, + [9557] = 9397, + [9558] = 9458, + [9559] = 9409, + [9560] = 9410, + [9561] = 9403, + [9562] = 2699, + [9563] = 2710, + [9564] = 2711, + [9565] = 2719, + [9566] = 9458, + [9567] = 2722, + [9568] = 2544, + [9569] = 9397, + [9570] = 2571, + [9571] = 2589, + [9572] = 9406, + [9573] = 9407, + [9574] = 2606, + [9575] = 2615, + [9576] = 2619, + [9577] = 9477, + [9578] = 9395, + [9579] = 9458, + [9580] = 9409, + [9581] = 9410, + [9582] = 9582, + [9583] = 9583, + [9584] = 9482, + [9585] = 9458, + [9586] = 9397, [9587] = 9587, - [9588] = 2051, - [9589] = 9330, - [9590] = 9334, - [9591] = 9336, - [9592] = 9337, - [9593] = 9389, - [9594] = 9327, - [9595] = 2740, - [9596] = 9596, - [9597] = 9332, - [9598] = 9325, - [9599] = 9390, - [9600] = 9329, - [9601] = 9374, - [9602] = 9327, - [9603] = 9329, - [9604] = 9508, - [9605] = 9508, - [9606] = 9508, - [9607] = 9607, - [9608] = 9508, - [9609] = 9609, - [9610] = 9508, - [9611] = 9330, - [9612] = 9508, - [9613] = 9334, - [9614] = 9508, - [9615] = 9615, - [9616] = 9508, - [9617] = 9508, - [9618] = 9336, - [9619] = 9337, - [9620] = 9336, - [9621] = 9508, - [9622] = 9337, - [9623] = 9623, - [9624] = 9330, - [9625] = 9508, - [9626] = 9334, - [9627] = 9508, - [9628] = 9628, - [9629] = 9508, - [9630] = 9508, - [9631] = 9508, - [9632] = 9508, - [9633] = 9508, - [9634] = 9508, - [9635] = 9508, - [9636] = 9508, - [9637] = 9508, - [9638] = 9508, - [9639] = 9508, - [9640] = 9508, - [9641] = 9508, - [9642] = 9508, - [9643] = 9508, - [9644] = 9508, - [9645] = 9508, - [9646] = 9508, - [9647] = 9508, - [9648] = 9508, - [9649] = 9508, - [9650] = 9508, - [9651] = 9508, - [9652] = 9508, - [9653] = 9508, - [9654] = 9508, - [9655] = 9508, - [9656] = 9508, - [9657] = 9508, - [9658] = 9508, - [9659] = 9508, - [9660] = 9508, - [9661] = 9508, - [9662] = 9508, - [9663] = 9380, - [9664] = 9332, - [9665] = 9336, - [9666] = 9337, - [9667] = 9334, - [9668] = 9668, + [9588] = 9458, + [9589] = 9589, + [9590] = 9590, + [9591] = 9458, + [9592] = 9395, + [9593] = 9401, + [9594] = 9458, + [9595] = 9397, + [9596] = 9458, + [9597] = 9403, + [9598] = 9458, + [9599] = 9458, + [9600] = 9401, + [9601] = 9458, + [9602] = 9401, + [9603] = 2641, + [9604] = 9458, + [9605] = 9406, + [9606] = 9407, + [9607] = 9458, + [9608] = 9458, + [9609] = 2547, + [9610] = 9458, + [9611] = 9403, + [9612] = 9458, + [9613] = 9409, + [9614] = 9410, + [9615] = 9403, + [9616] = 9458, + [9617] = 9458, + [9618] = 9458, + [9619] = 9458, + [9620] = 9454, + [9621] = 9458, + [9622] = 9458, + [9623] = 9458, + [9624] = 9458, + [9625] = 9458, + [9626] = 9458, + [9627] = 9627, + [9628] = 9458, + [9629] = 9458, + [9630] = 9458, + [9631] = 9458, + [9632] = 9458, + [9633] = 9458, + [9634] = 9458, + [9635] = 9458, + [9636] = 9458, + [9637] = 9458, + [9638] = 9458, + [9639] = 9458, + [9640] = 9458, + [9641] = 9458, + [9642] = 9642, + [9643] = 9458, + [9644] = 9458, + [9645] = 9458, + [9646] = 9458, + [9647] = 9458, + [9648] = 9395, + [9649] = 9406, + [9650] = 9407, + [9651] = 9394, + [9652] = 9409, + [9653] = 9409, + [9654] = 9410, + [9655] = 9442, + [9656] = 9397, + [9657] = 9657, + [9658] = 9395, + [9659] = 9397, + [9660] = 9660, + [9661] = 9401, + [9662] = 9401, + [9663] = 9403, + [9664] = 9406, + [9665] = 9455, + [9666] = 9403, + [9667] = 9407, + [9668] = 2734, [9669] = 9669, - [9670] = 9670, - [9671] = 9671, - [9672] = 2049, + [9670] = 9409, + [9671] = 9406, + [9672] = 9407, [9673] = 9673, - [9674] = 9674, - [9675] = 9675, + [9674] = 9409, + [9675] = 9410, [9676] = 9676, - [9677] = 9677, - [9678] = 9678, - [9679] = 9679, - [9680] = 9680, - [9681] = 9681, - [9682] = 9682, - [9683] = 9683, - [9684] = 9684, - [9685] = 9685, - [9686] = 9668, - [9687] = 9687, - [9688] = 9688, - [9689] = 9689, + [9677] = 9394, + [9678] = 9410, + [9679] = 9394, + [9680] = 9409, + [9681] = 9406, + [9682] = 9407, + [9683] = 9394, + [9684] = 9410, + [9685] = 9395, + [9686] = 9394, + [9687] = 9403, + [9688] = 9394, + [9689] = 9394, [9690] = 9690, - [9691] = 9691, - [9692] = 9692, - [9693] = 9693, - [9694] = 9694, - [9695] = 9695, - [9696] = 9696, - [9697] = 2697, - [9698] = 9698, + [9691] = 9409, + [9692] = 9410, + [9693] = 9394, + [9694] = 9397, + [9695] = 9394, + [9696] = 9410, + [9697] = 9394, + [9698] = 9477, [9699] = 9699, - [9700] = 9700, - [9701] = 9701, - [9702] = 9702, - [9703] = 9679, - [9704] = 9704, - [9705] = 9681, - [9706] = 9682, - [9707] = 9677, - [9708] = 9708, - [9709] = 9709, - [9710] = 9710, - [9711] = 9711, - [9712] = 9688, - [9713] = 9692, - [9714] = 9700, - [9715] = 9693, - [9716] = 2768, - [9717] = 9673, - [9718] = 9701, - [9719] = 2698, - [9720] = 9679, - [9721] = 9702, - [9722] = 9711, - [9723] = 9704, - [9724] = 9687, - [9725] = 9711, - [9726] = 9687, - [9727] = 9727, - [9728] = 9699, - [9729] = 9729, - [9730] = 9730, - [9731] = 9674, - [9732] = 9732, - [9733] = 9678, - [9734] = 9727, - [9735] = 9674, - [9736] = 2562, - [9737] = 2564, - [9738] = 9670, - [9739] = 2572, - [9740] = 9680, + [9700] = 9394, + [9701] = 9394, + [9702] = 9394, + [9703] = 9394, + [9704] = 9394, + [9705] = 9394, + [9706] = 9394, + [9707] = 9394, + [9708] = 9394, + [9709] = 9394, + [9710] = 9394, + [9711] = 9394, + [9712] = 9394, + [9713] = 9394, + [9714] = 9394, + [9715] = 9394, + [9716] = 9394, + [9717] = 9394, + [9718] = 9394, + [9719] = 9394, + [9720] = 9394, + [9721] = 9394, + [9722] = 9394, + [9723] = 9394, + [9724] = 9394, + [9725] = 9394, + [9726] = 9394, + [9727] = 9394, + [9728] = 9394, + [9729] = 9394, + [9730] = 9394, + [9731] = 9394, + [9732] = 9394, + [9733] = 9394, + [9734] = 9394, + [9735] = 9394, + [9736] = 9401, + [9737] = 9737, + [9738] = 9738, + [9739] = 9739, + [9740] = 9740, [9741] = 9741, - [9742] = 9671, - [9743] = 9675, - [9744] = 9676, - [9745] = 9745, - [9746] = 9746, - [9747] = 2607, - [9748] = 9727, + [9742] = 9742, + [9743] = 2699, + [9744] = 2710, + [9745] = 2711, + [9746] = 2719, + [9747] = 2722, + [9748] = 2544, [9749] = 9749, - [9750] = 9699, - [9751] = 9674, - [9752] = 9730, - [9753] = 9678, - [9754] = 9678, - [9755] = 9668, - [9756] = 9699, - [9757] = 9732, - [9758] = 9671, - [9759] = 9689, + [9750] = 9750, + [9751] = 9751, + [9752] = 9752, + [9753] = 9753, + [9754] = 2571, + [9755] = 2589, + [9756] = 2606, + [9757] = 2615, + [9758] = 2619, + [9759] = 9759, [9760] = 9760, - [9761] = 9730, + [9761] = 9761, [9762] = 9762, - [9763] = 9399, - [9764] = 9701, - [9765] = 9689, - [9766] = 9681, - [9767] = 9680, - [9768] = 9691, - [9769] = 9682, - [9770] = 9693, - [9771] = 2608, - [9772] = 9691, - [9773] = 9694, - [9774] = 2613, - [9775] = 9668, + [9763] = 9738, + [9764] = 9738, + [9765] = 9765, + [9766] = 9766, + [9767] = 9767, + [9768] = 9765, + [9769] = 9769, + [9770] = 9740, + [9771] = 9752, + [9772] = 9751, + [9773] = 2734, + [9774] = 9774, + [9775] = 9775, [9776] = 9776, - [9777] = 9681, - [9778] = 9682, - [9779] = 9688, - [9780] = 9689, - [9781] = 9679, - [9782] = 9681, - [9783] = 9682, - [9784] = 9688, - [9785] = 9692, - [9786] = 9700, - [9787] = 9701, - [9788] = 9702, - [9789] = 9704, - [9790] = 9692, - [9791] = 9687, - [9792] = 9688, - [9793] = 9727, - [9794] = 9699, + [9777] = 9775, + [9778] = 9778, + [9779] = 9779, + [9780] = 9780, + [9781] = 2634, + [9782] = 9782, + [9783] = 9783, + [9784] = 9784, + [9785] = 9776, + [9786] = 9786, + [9787] = 9779, + [9788] = 9788, + [9789] = 9750, + [9790] = 9790, + [9791] = 9790, + [9792] = 9739, + [9793] = 9782, + [9794] = 9794, [9795] = 9795, - [9796] = 9730, - [9797] = 9700, - [9798] = 9732, - [9799] = 9692, - [9800] = 9700, - [9801] = 9801, - [9802] = 9670, - [9803] = 9670, - [9804] = 9671, - [9805] = 9675, - [9806] = 9676, - [9807] = 9701, - [9808] = 9808, - [9809] = 9809, + [9796] = 9796, + [9797] = 9797, + [9798] = 9742, + [9799] = 9799, + [9800] = 9786, + [9801] = 9749, + [9802] = 9760, + [9803] = 9759, + [9804] = 9765, + [9805] = 9761, + [9806] = 9806, + [9807] = 9782, + [9808] = 9762, + [9809] = 9776, [9810] = 9810, - [9811] = 9702, - [9812] = 9691, - [9813] = 9813, - [9814] = 9693, - [9815] = 9741, - [9816] = 9702, - [9817] = 9727, - [9818] = 9694, - [9819] = 9708, - [9820] = 9708, - [9821] = 9699, - [9822] = 9710, - [9823] = 9823, - [9824] = 9696, - [9825] = 2740, - [9826] = 9730, + [9811] = 9779, + [9812] = 9812, + [9813] = 9806, + [9814] = 9738, + [9815] = 9796, + [9816] = 9776, + [9817] = 9779, + [9818] = 9818, + [9819] = 9739, + [9820] = 9820, + [9821] = 9821, + [9822] = 9822, + [9823] = 9799, + [9824] = 9740, + [9825] = 9752, + [9826] = 9826, [9827] = 9827, - [9828] = 9677, - [9829] = 9373, - [9830] = 9830, - [9831] = 9711, - [9832] = 9727, + [9828] = 9799, + [9829] = 9829, + [9830] = 9821, + [9831] = 9799, + [9832] = 9832, [9833] = 9833, - [9834] = 9674, - [9835] = 9679, - [9836] = 9678, - [9837] = 9695, - [9838] = 9680, - [9839] = 9681, - [9840] = 9682, - [9841] = 9688, - [9842] = 9668, - [9843] = 9671, - [9844] = 9689, - [9845] = 9692, - [9846] = 9691, - [9847] = 9693, - [9848] = 9700, - [9849] = 9694, - [9850] = 9850, - [9851] = 9729, - [9852] = 9730, - [9853] = 9679, - [9854] = 9741, - [9855] = 9681, - [9856] = 9682, - [9857] = 9688, - [9858] = 9692, - [9859] = 9701, - [9860] = 9700, - [9861] = 9701, - [9862] = 9702, - [9863] = 9704, - [9864] = 9823, - [9865] = 9687, - [9866] = 9670, - [9867] = 9702, - [9868] = 9727, - [9869] = 9699, - [9870] = 9668, - [9871] = 9730, - [9872] = 9691, - [9873] = 9701, - [9874] = 9823, - [9875] = 9875, - [9876] = 9704, - [9877] = 9732, - [9878] = 9671, - [9879] = 9675, - [9880] = 9670, - [9881] = 9668, - [9882] = 9695, - [9883] = 9668, - [9884] = 9671, - [9885] = 9691, - [9886] = 9701, - [9887] = 9675, - [9888] = 9676, - [9889] = 9668, - [9890] = 9691, - [9891] = 9701, - [9892] = 9729, - [9893] = 9701, - [9894] = 9676, - [9895] = 9702, - [9896] = 9691, - [9897] = 9701, - [9898] = 9691, - [9899] = 9701, - [9900] = 9704, - [9901] = 9687, - [9902] = 9668, - [9903] = 9687, - [9904] = 9691, - [9905] = 9701, - [9906] = 9691, - [9907] = 9701, - [9908] = 9675, - [9909] = 9909, - [9910] = 9910, + [9834] = 9760, + [9835] = 9765, + [9836] = 9760, + [9837] = 9782, + [9838] = 9838, + [9839] = 2744, + [9840] = 9806, + [9841] = 9765, + [9842] = 9821, + [9843] = 9760, + [9844] = 9844, + [9845] = 9765, + [9846] = 9820, + [9847] = 9847, + [9848] = 9848, + [9849] = 9782, + [9850] = 9822, + [9851] = 9780, + [9852] = 9832, + [9853] = 9782, + [9854] = 9806, + [9855] = 9822, + [9856] = 9856, + [9857] = 9767, + [9858] = 9740, + [9859] = 9752, + [9860] = 9821, + [9861] = 9822, + [9862] = 9788, + [9863] = 9822, + [9864] = 9794, + [9865] = 9806, + [9866] = 9740, + [9867] = 9867, + [9868] = 9868, + [9869] = 9752, + [9870] = 9742, + [9871] = 9796, + [9872] = 9742, + [9873] = 9780, + [9874] = 9749, + [9875] = 9751, + [9876] = 9788, + [9877] = 9794, + [9878] = 9759, + [9879] = 9796, + [9880] = 9742, + [9881] = 9749, + [9882] = 2713, + [9883] = 9761, + [9884] = 9884, + [9885] = 9885, + [9886] = 9886, + [9887] = 9887, + [9888] = 9797, + [9889] = 9762, + [9890] = 9827, + [9891] = 9891, + [9892] = 9738, + [9893] = 9759, + [9894] = 9761, + [9895] = 9762, + [9896] = 9738, + [9897] = 9795, + [9898] = 9780, + [9899] = 9899, + [9900] = 9767, + [9901] = 9780, + [9902] = 9767, + [9903] = 9751, + [9904] = 9518, + [9905] = 9751, + [9906] = 9775, + [9907] = 9775, + [9908] = 9775, + [9909] = 9821, + [9910] = 9788, [9911] = 9911, - [9912] = 9676, - [9913] = 9680, + [9912] = 9794, + [9913] = 9913, [9914] = 9914, - [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, + [9915] = 9783, + [9916] = 9796, + [9917] = 9917, + [9918] = 9783, + [9919] = 9767, + [9920] = 9786, + [9921] = 9742, + [9922] = 9583, + [9923] = 9751, + [9924] = 9806, + [9925] = 9925, + [9926] = 9750, + [9927] = 9749, + [9928] = 9790, + [9929] = 9786, + [9930] = 9739, + [9931] = 9750, + [9932] = 9759, + [9933] = 9761, + [9934] = 9762, + [9935] = 9738, + [9936] = 9741, + [9937] = 9806, + [9938] = 9822, + [9939] = 9759, + [9940] = 9775, + [9941] = 9740, + [9942] = 9790, + [9943] = 9739, + [9944] = 9783, + [9945] = 9767, + [9946] = 9822, + [9947] = 9751, + [9948] = 2728, [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] = 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] = 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] = 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] = 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] = 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] = 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] = 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] = 9688, - [10324] = 9700, - [10325] = 9702, - [10326] = 9692, - [10327] = 9711, - [10328] = 9727, - [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] = 10391, - [10392] = 10392, - [10393] = 10393, + [9950] = 9806, + [9951] = 9775, + [9952] = 2729, + [9953] = 2730, + [9954] = 9806, + [9955] = 9822, + [9956] = 9759, + [9957] = 9752, + [9958] = 9806, + [9959] = 9822, + [9960] = 9759, + [9961] = 9783, + [9962] = 2731, + [9963] = 9822, + [9964] = 9759, + [9965] = 9788, + [9966] = 9822, + [9967] = 9759, + [9968] = 9911, + [9969] = 9806, + [9970] = 9740, + [9971] = 9822, + [9972] = 9759, + [9973] = 9786, + [9974] = 9822, + [9975] = 9759, + [9976] = 9976, + [9977] = 9977, + [9978] = 9978, + [9979] = 9794, + [9980] = 9783, + [9981] = 2735, + [9982] = 9741, + [9983] = 9750, + [9984] = 9740, + [9985] = 9790, + [9986] = 9786, + [9987] = 2738, + [9988] = 9821, + [9989] = 9739, + [9990] = 9750, + [9991] = 9822, + [9992] = 9788, + [9993] = 9794, + [9994] = 9796, + [9995] = 9995, + [9996] = 9742, + [9997] = 9749, + [9998] = 9998, + [9999] = 9790, + [10000] = 9759, + [10001] = 10001, + [10002] = 9829, + [10003] = 9761, + [10004] = 9739, + [10005] = 9767, + [10006] = 9751, + [10007] = 9775, + [10008] = 9976, + [10009] = 9752, + [10010] = 9978, + [10011] = 9796, + [10012] = 9742, + [10013] = 9749, + [10014] = 9760, + [10015] = 10015, + [10016] = 10016, + [10017] = 9786, + [10018] = 9750, + [10019] = 10019, + [10020] = 9776, + [10021] = 9749, + [10022] = 9779, + [10023] = 10023, + [10024] = 9790, + [10025] = 9739, + [10026] = 9752, + [10027] = 9463, + [10028] = 9976, + [10029] = 9788, + [10030] = 10030, + [10031] = 10031, + [10032] = 9759, + [10033] = 9776, + [10034] = 9794, + [10035] = 2774, + [10036] = 9821, + [10037] = 9799, + [10038] = 9913, + [10039] = 9780, + [10040] = 2775, + [10041] = 9821, + [10042] = 9786, + [10043] = 10043, + [10044] = 9976, + [10045] = 9760, + [10046] = 9821, + [10047] = 9765, + [10048] = 9761, + [10049] = 9762, + [10050] = 9822, + [10051] = 9782, + [10052] = 9788, + [10053] = 9794, + [10054] = 9796, + [10055] = 9788, + [10056] = 9806, + [10057] = 9794, + [10058] = 9742, + [10059] = 9821, + [10060] = 9749, + [10061] = 9796, + [10062] = 9776, + [10063] = 9976, + [10064] = 9779, + [10065] = 9822, + [10066] = 9759, + [10067] = 9759, + [10068] = 9740, + [10069] = 9761, + [10070] = 9742, + [10071] = 10071, + [10072] = 9820, + [10073] = 9767, + [10074] = 9752, + [10075] = 9461, + [10076] = 9751, + [10077] = 9976, + [10078] = 9776, + [10079] = 9738, + [10080] = 9749, + [10081] = 9799, + [10082] = 9759, + [10083] = 9775, + [10084] = 9780, + [10085] = 9761, + [10086] = 9829, + [10087] = 9788, + [10088] = 9794, + [10089] = 9976, + [10090] = 9796, + [10091] = 9742, + [10092] = 9762, + [10093] = 9760, + [10094] = 9765, + [10095] = 9749, + [10096] = 9759, + [10097] = 9782, + [10098] = 10098, + [10099] = 9806, + [10100] = 9750, + [10101] = 9761, + [10102] = 9806, + [10103] = 9762, + [10104] = 9786, + [10105] = 9976, + [10106] = 9821, + [10107] = 9738, + [10108] = 9976, + [10109] = 9848, + [10110] = 9750, + [10111] = 9738, + [10112] = 9767, + [10113] = 9751, + [10114] = 9776, + [10115] = 10115, + [10116] = 9832, + [10117] = 9976, + [10118] = 9775, + [10119] = 9822, + [10120] = 9740, + [10121] = 9752, + [10122] = 9783, + [10123] = 9790, + [10124] = 9739, + [10125] = 9779, + [10126] = 9976, + [10127] = 9867, + [10128] = 9868, + [10129] = 9786, + [10130] = 9780, + [10131] = 9788, + [10132] = 9794, + [10133] = 2565, + [10134] = 9796, + [10135] = 9976, + [10136] = 9742, + [10137] = 9750, + [10138] = 9749, + [10139] = 9783, + [10140] = 9790, + [10141] = 9884, + [10142] = 9739, + [10143] = 9885, + [10144] = 9790, + [10145] = 9739, + [10146] = 9976, + [10147] = 9797, + [10148] = 10148, + [10149] = 9827, + [10150] = 9759, + [10151] = 9761, + [10152] = 9762, + [10153] = 2777, + [10154] = 9780, + [10155] = 9738, + [10156] = 9767, + [10157] = 9790, + [10158] = 9795, + [10159] = 9751, + [10160] = 2746, + [10161] = 2771, + [10162] = 9767, + [10163] = 9775, + [10164] = 9751, + [10165] = 2553, + [10166] = 9775, + [10167] = 9761, + [10168] = 9788, + [10169] = 9794, + [10170] = 9911, + [10171] = 9913, + [10172] = 9796, + [10173] = 9776, + [10174] = 9783, + [10175] = 2641, + [10176] = 2567, + [10177] = 9779, + [10178] = 9783, + [10179] = 9786, + [10180] = 9761, + [10181] = 9767, + [10182] = 9767, + [10183] = 9821, + [10184] = 9751, + [10185] = 9461, + [10186] = 9739, + [10187] = 9750, + [10188] = 9779, + [10189] = 9751, + [10190] = 9790, + [10191] = 2073, + [10192] = 9750, + [10193] = 9739, + [10194] = 9775, + [10195] = 9779, + [10196] = 9788, + [10197] = 9786, + [10198] = 9794, + [10199] = 9796, + [10200] = 10200, + [10201] = 9761, + [10202] = 9767, + [10203] = 9760, + [10204] = 9751, + [10205] = 10205, + [10206] = 9799, + [10207] = 10207, + [10208] = 9799, + [10209] = 9806, + [10210] = 9786, + [10211] = 9760, + [10212] = 9765, + [10213] = 9788, + [10214] = 9794, + [10215] = 2705, + [10216] = 9796, + [10217] = 9760, + [10218] = 9761, + [10219] = 9767, + [10220] = 10220, + [10221] = 9782, + [10222] = 9751, + [10223] = 9765, + [10224] = 9750, + [10225] = 9782, + [10226] = 9867, + [10227] = 9790, + [10228] = 9806, + [10229] = 10031, + [10230] = 9739, + [10231] = 9821, + [10232] = 9886, + [10233] = 9806, + [10234] = 9799, + [10235] = 9822, + [10236] = 9806, + [10237] = 9780, + [10238] = 9740, + [10239] = 9767, + [10240] = 9776, + [10241] = 9779, + [10242] = 9752, + [10243] = 9783, + [10244] = 9788, + [10245] = 9794, + [10246] = 9796, + [10247] = 9820, + [10248] = 9799, + [10249] = 9821, + [10250] = 9780, + [10251] = 9783, + [10252] = 9760, + [10253] = 9788, + [10254] = 9765, + [10255] = 9794, + [10256] = 9796, + [10257] = 9782, + [10258] = 10258, + [10259] = 10259, + [10260] = 9806, + [10261] = 9742, + [10262] = 9761, + [10263] = 10263, + [10264] = 9821, + [10265] = 9749, + [10266] = 10266, + [10267] = 9822, + [10268] = 9759, + [10269] = 2046, + [10270] = 9740, + [10271] = 9761, + [10272] = 9752, + [10273] = 10273, + [10274] = 9762, + [10275] = 10275, + [10276] = 9788, + [10277] = 9767, + [10278] = 9738, + [10279] = 9780, + [10280] = 9788, + [10281] = 9794, + [10282] = 9796, + [10283] = 9742, + [10284] = 9749, + [10285] = 9759, + [10286] = 9868, + [10287] = 9761, + [10288] = 9762, + [10289] = 9738, + [10290] = 9794, + [10291] = 9751, + [10292] = 9822, + [10293] = 9767, + [10294] = 9767, + [10295] = 9751, + [10296] = 9796, + [10297] = 9775, + [10298] = 9751, + [10299] = 9783, + [10300] = 9822, + [10301] = 9775, + [10302] = 9786, + [10303] = 2695, + [10304] = 9750, + [10305] = 9788, + [10306] = 9790, + [10307] = 9739, + [10308] = 9783, + [10309] = 9776, + [10310] = 9765, + [10311] = 9794, + [10312] = 9776, + [10313] = 9765, + [10314] = 9742, + [10315] = 9796, + [10316] = 9762, + [10317] = 9786, + [10318] = 10318, + [10319] = 9776, + [10320] = 9765, + [10321] = 9765, + [10322] = 9761, + [10323] = 9978, + [10324] = 9767, + [10325] = 9776, + [10326] = 9765, + [10327] = 9776, + [10328] = 9765, + [10329] = 9750, + [10330] = 9751, + [10331] = 9776, + [10332] = 9779, + [10333] = 9790, + [10334] = 9739, + [10335] = 9740, + [10336] = 10336, + [10337] = 10337, + [10338] = 9799, + [10339] = 9752, + [10340] = 9749, + [10341] = 10341, + [10342] = 10342, + [10343] = 10031, + [10344] = 9760, + [10345] = 9886, + [10346] = 9884, + [10347] = 9776, + [10348] = 9765, + [10349] = 10349, + [10350] = 9779, + [10351] = 9759, + [10352] = 9788, + [10353] = 9794, + [10354] = 9782, + [10355] = 9782, + [10356] = 9761, + [10357] = 10357, + [10358] = 9796, + [10359] = 2564, + [10360] = 9761, + [10361] = 9806, + [10362] = 2566, + [10363] = 9767, + [10364] = 9822, + [10365] = 9821, + [10366] = 9762, + [10367] = 9751, + [10368] = 2582, + [10369] = 9822, + [10370] = 9977, + [10371] = 9776, + [10372] = 9779, + [10373] = 9740, + [10374] = 2590, + [10375] = 9752, + [10376] = 2601, + [10377] = 2603, + [10378] = 2618, + [10379] = 9790, + [10380] = 9788, + [10381] = 9885, + [10382] = 9794, + [10383] = 9782, + [10384] = 9796, + [10385] = 9780, + [10386] = 9848, + [10387] = 9761, + [10388] = 9788, + [10389] = 9794, + [10390] = 9796, + [10391] = 9799, + [10392] = 9767, + [10393] = 9799, [10394] = 10394, - [10395] = 10395, - [10396] = 10396, - [10397] = 10376, - [10398] = 10394, - [10399] = 10394, - [10400] = 10392, - [10401] = 10394, - [10402] = 10394, - [10403] = 10376, - [10404] = 2574, - [10405] = 9628, - [10406] = 10406, - [10407] = 10407, - [10408] = 10376, - [10409] = 10409, - [10410] = 2063, - [10411] = 10411, - [10412] = 2063, - [10413] = 10413, - [10414] = 10376, - [10415] = 10415, - [10416] = 10392, - [10417] = 10376, - [10418] = 10396, - [10419] = 10376, - [10420] = 10420, - [10421] = 10421, - [10422] = 10422, - [10423] = 10394, - [10424] = 10424, - [10425] = 10391, - [10426] = 10391, - [10427] = 10427, - [10428] = 10376, - [10429] = 10376, - [10430] = 10376, - [10431] = 10431, - [10432] = 10376, - [10433] = 10433, - [10434] = 10434, - [10435] = 10435, - [10436] = 10436, - [10437] = 10376, - [10438] = 2588, - [10439] = 10394, - [10440] = 10391, - [10441] = 10394, - [10442] = 10391, - [10443] = 10443, - [10444] = 10376, + [10395] = 9751, + [10396] = 9799, + [10397] = 9742, + [10398] = 2649, + [10399] = 10399, + [10400] = 9788, + [10401] = 9794, + [10402] = 9749, + [10403] = 9796, + [10404] = 10404, + [10405] = 2676, + [10406] = 9759, + [10407] = 9761, + [10408] = 9767, + [10409] = 9780, + [10410] = 9751, + [10411] = 9786, + [10412] = 9750, + [10413] = 2547, + [10414] = 2773, + [10415] = 2607, + [10416] = 9788, + [10417] = 9794, + [10418] = 9796, + [10419] = 2712, + [10420] = 9761, + [10421] = 2572, + [10422] = 9767, + [10423] = 9788, + [10424] = 9751, + [10425] = 2584, + [10426] = 2613, + [10427] = 9794, + [10428] = 9796, + [10429] = 9976, + [10430] = 9977, + [10431] = 9761, + [10432] = 9762, + [10433] = 9760, + [10434] = 9738, + [10435] = 2600, + [10436] = 9978, + [10437] = 9765, + [10438] = 9767, + [10439] = 10439, + [10440] = 9751, + [10441] = 9775, + [10442] = 9776, + [10443] = 9765, + [10444] = 2637, [10445] = 10445, - [10446] = 10376, - [10447] = 10376, - [10448] = 10376, - [10449] = 10376, + [10446] = 10446, + [10447] = 10446, + [10448] = 10448, + [10449] = 10449, [10450] = 10450, - [10451] = 10451, - [10452] = 10376, - [10453] = 10391, - [10454] = 10391, - [10455] = 10391, - [10456] = 10394, - [10457] = 10394, - [10458] = 10391, - [10459] = 10376, - [10460] = 10391, + [10451] = 10448, + [10452] = 2568, + [10453] = 10453, + [10454] = 10454, + [10455] = 10455, + [10456] = 10456, + [10457] = 10457, + [10458] = 10458, + [10459] = 9737, + [10460] = 10460, [10461] = 10461, - [10462] = 10391, - [10463] = 10376, - [10464] = 10464, - [10465] = 10376, - [10466] = 10391, - [10467] = 10376, - [10468] = 10391, - [10469] = 10394, + [10462] = 10462, + [10463] = 10463, + [10464] = 10446, + [10465] = 10458, + [10466] = 10448, + [10467] = 10448, + [10468] = 10448, + [10469] = 10469, [10470] = 10470, - [10471] = 10471, - [10472] = 10391, - [10473] = 10394, + [10471] = 10446, + [10472] = 2073, + [10473] = 2599, [10474] = 10474, - [10475] = 10376, - [10476] = 10395, + [10475] = 10475, + [10476] = 10448, [10477] = 10477, - [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] = 10376, - [10491] = 10376, + [10478] = 10478, + [10479] = 10479, + [10480] = 10446, + [10481] = 10446, + [10482] = 10446, + [10483] = 10446, + [10484] = 10479, + [10485] = 10448, + [10486] = 10486, + [10487] = 10448, + [10488] = 10488, + [10489] = 10458, + [10490] = 10490, + [10491] = 10491, [10492] = 10492, - [10493] = 10394, - [10494] = 10394, - [10495] = 10376, - [10496] = 10376, - [10497] = 10497, - [10498] = 10498, + [10493] = 10458, + [10494] = 10446, + [10495] = 10495, + [10496] = 10446, + [10497] = 10458, + [10498] = 10458, [10499] = 10499, - [10500] = 10376, - [10501] = 10376, - [10502] = 10376, - [10503] = 10376, - [10504] = 10504, - [10505] = 10395, - [10506] = 10376, - [10507] = 10507, - [10508] = 10508, - [10509] = 10509, - [10510] = 10510, + [10500] = 10448, + [10501] = 10501, + [10502] = 10446, + [10503] = 10479, + [10504] = 10448, + [10505] = 10505, + [10506] = 10446, + [10507] = 10458, + [10508] = 10446, + [10509] = 10446, + [10510] = 10446, [10511] = 10511, - [10512] = 10512, - [10513] = 10513, + [10512] = 10458, + [10513] = 10492, [10514] = 10514, - [10515] = 10515, - [10516] = 10516, - [10517] = 10517, - [10518] = 10518, - [10519] = 10519, - [10520] = 10520, - [10521] = 10515, - [10522] = 10522, + [10515] = 10448, + [10516] = 10446, + [10517] = 10446, + [10518] = 10458, + [10519] = 10448, + [10520] = 10446, + [10521] = 2073, + [10522] = 10458, [10523] = 10523, - [10524] = 10524, + [10524] = 10458, [10525] = 10525, - [10526] = 10526, - [10527] = 10527, - [10528] = 10528, - [10529] = 10529, - [10530] = 10530, + [10526] = 10446, + [10527] = 10491, + [10528] = 10458, + [10529] = 10448, + [10530] = 10446, [10531] = 10531, [10532] = 10532, - [10533] = 10533, - [10534] = 10530, + [10533] = 10446, + [10534] = 10491, [10535] = 10535, - [10536] = 10536, - [10537] = 10520, + [10536] = 10446, + [10537] = 10446, [10538] = 10538, - [10539] = 10525, - [10540] = 10540, - [10541] = 10541, - [10542] = 10535, + [10539] = 10448, + [10540] = 10446, + [10541] = 10446, + [10542] = 10458, [10543] = 10543, - [10544] = 10544, - [10545] = 10545, - [10546] = 10546, - [10547] = 10524, + [10544] = 10458, + [10545] = 10495, + [10546] = 10446, + [10547] = 10446, [10548] = 10548, - [10549] = 10549, - [10550] = 10550, - [10551] = 10551, - [10552] = 10552, + [10549] = 10446, + [10550] = 10446, + [10551] = 10495, + [10552] = 10458, [10553] = 10553, - [10554] = 10554, - [10555] = 10555, - [10556] = 10512, - [10557] = 10557, - [10558] = 10558, - [10559] = 10559, - [10560] = 10517, - [10561] = 10529, - [10562] = 10522, - [10563] = 10563, - [10564] = 10564, - [10565] = 10565, - [10566] = 10550, - [10567] = 10513, - [10568] = 10513, - [10569] = 10514, - [10570] = 10514, - [10571] = 10571, - [10572] = 10572, - [10573] = 10573, - [10574] = 10574, - [10575] = 10519, - [10576] = 10527, + [10554] = 10448, + [10555] = 10446, + [10556] = 10446, + [10557] = 10446, + [10558] = 10446, + [10559] = 10446, + [10560] = 10492, + [10561] = 10448, + [10562] = 10446, + [10563] = 10446, + [10564] = 10446, + [10565] = 10446, + [10566] = 10446, + [10567] = 10446, + [10568] = 10446, + [10569] = 10446, + [10570] = 10446, + [10571] = 10446, + [10572] = 10446, + [10573] = 10458, + [10574] = 10446, + [10575] = 10446, + [10576] = 10446, [10577] = 10577, - [10578] = 10531, + [10578] = 10578, [10579] = 10579, [10580] = 10580, - [10581] = 10541, - [10582] = 10564, + [10581] = 10581, + [10582] = 10582, [10583] = 10583, - [10584] = 10527, - [10585] = 10541, - [10586] = 10543, - [10587] = 10519, + [10584] = 10582, + [10585] = 10585, + [10586] = 10586, + [10587] = 10587, [10588] = 10588, - [10589] = 10551, - [10590] = 10554, - [10591] = 10549, + [10589] = 10589, + [10590] = 10590, + [10591] = 10591, [10592] = 10592, [10593] = 10593, - [10594] = 10552, + [10594] = 10594, [10595] = 10595, - [10596] = 10517, - [10597] = 10530, - [10598] = 10528, - [10599] = 10528, - [10600] = 10525, - [10601] = 10535, - [10602] = 10553, - [10603] = 10549, - [10604] = 10557, - [10605] = 10565, - [10606] = 10571, + [10596] = 10596, + [10597] = 10597, + [10598] = 10598, + [10599] = 10599, + [10600] = 10600, + [10601] = 10601, + [10602] = 10602, + [10603] = 10590, + [10604] = 10604, + [10605] = 10605, + [10606] = 10590, [10607] = 10607, - [10608] = 10519, - [10609] = 10577, - [10610] = 10580, - [10611] = 10533, + [10608] = 10608, + [10609] = 10609, + [10610] = 10610, + [10611] = 10607, [10612] = 10612, - [10613] = 10518, - [10614] = 10536, + [10613] = 10613, + [10614] = 10614, [10615] = 10615, [10616] = 10616, - [10617] = 10530, - [10618] = 10520, - [10619] = 10528, - [10620] = 10595, + [10617] = 10613, + [10618] = 10594, + [10619] = 10619, + [10620] = 10620, [10621] = 10621, - [10622] = 10509, - [10623] = 10538, - [10624] = 10524, - [10625] = 10621, - [10626] = 10540, - [10627] = 10593, - [10628] = 10555, - [10629] = 10546, + [10622] = 10622, + [10623] = 10623, + [10624] = 10624, + [10625] = 10625, + [10626] = 10626, + [10627] = 10627, + [10628] = 10477, + [10629] = 10629, [10630] = 10630, - [10631] = 10509, - [10632] = 10525, - [10633] = 10517, + [10631] = 10631, + [10632] = 10579, + [10633] = 10633, [10634] = 10634, [10635] = 10635, [10636] = 10636, - [10637] = 10518, + [10637] = 10637, [10638] = 10638, - [10639] = 10533, - [10640] = 10640, - [10641] = 10593, - [10642] = 10544, - [10643] = 10526, - [10644] = 10536, - [10645] = 10532, - [10646] = 10646, - [10647] = 10513, - [10648] = 10535, - [10649] = 10524, - [10650] = 10630, + [10639] = 10639, + [10640] = 10591, + [10641] = 10641, + [10642] = 10642, + [10643] = 10643, + [10644] = 10644, + [10645] = 10645, + [10646] = 10608, + [10647] = 10647, + [10648] = 10648, + [10649] = 10639, + [10650] = 10577, [10651] = 10651, [10652] = 10652, - [10653] = 10653, - [10654] = 10520, - [10655] = 10538, + [10653] = 10598, + [10654] = 10585, + [10655] = 10655, [10656] = 10656, - [10657] = 10557, - [10658] = 10524, - [10659] = 10565, - [10660] = 10541, - [10661] = 10525, - [10662] = 10588, - [10663] = 10634, - [10664] = 10545, - [10665] = 10635, + [10657] = 10657, + [10658] = 10594, + [10659] = 10659, + [10660] = 10610, + [10661] = 10583, + [10662] = 10655, + [10663] = 10586, + [10664] = 10626, + [10665] = 10665, [10666] = 10666, - [10667] = 10524, - [10668] = 10668, - [10669] = 10636, - [10670] = 10516, - [10671] = 10524, - [10672] = 10523, - [10673] = 10540, - [10674] = 10522, - [10675] = 10638, - [10676] = 10564, - [10677] = 10533, - [10678] = 10535, - [10679] = 10528, - [10680] = 10640, - [10681] = 10550, - [10682] = 10555, - [10683] = 10552, - [10684] = 10530, - [10685] = 10536, - [10686] = 10538, - [10687] = 10553, - [10688] = 10546, - [10689] = 10525, - [10690] = 10514, - [10691] = 10535, - [10692] = 10517, - [10693] = 10518, - [10694] = 10555, - [10695] = 10549, - [10696] = 10557, - [10697] = 10565, - [10698] = 10571, - [10699] = 10571, - [10700] = 10513, - [10701] = 10607, - [10702] = 10702, - [10703] = 10607, - [10704] = 10536, - [10705] = 10519, - [10706] = 10646, - [10707] = 10541, + [10667] = 10657, + [10668] = 10612, + [10669] = 10669, + [10670] = 10579, + [10671] = 10671, + [10672] = 10672, + [10673] = 10609, + [10674] = 10674, + [10675] = 10675, + [10676] = 10676, + [10677] = 10677, + [10678] = 10678, + [10679] = 10679, + [10680] = 10680, + [10681] = 10681, + [10682] = 10682, + [10683] = 10683, + [10684] = 10614, + [10685] = 10627, + [10686] = 10629, + [10687] = 10643, + [10688] = 10626, + [10689] = 10586, + [10690] = 10690, + [10691] = 10691, + [10692] = 10692, + [10693] = 10693, + [10694] = 10694, + [10695] = 10627, + [10696] = 10696, + [10697] = 10615, + [10698] = 10619, + [10699] = 10666, + [10700] = 10637, + [10701] = 10590, + [10702] = 10659, + [10703] = 10703, + [10704] = 10704, + [10705] = 10613, + [10706] = 10706, + [10707] = 10583, [10708] = 10708, - [10709] = 10508, - [10710] = 10577, - [10711] = 10651, - [10712] = 10712, - [10713] = 10558, - [10714] = 10652, - [10715] = 10715, - [10716] = 10519, - [10717] = 10577, - [10718] = 10546, - [10719] = 10580, - [10720] = 10559, - [10721] = 10653, - [10722] = 10528, - [10723] = 10520, - [10724] = 10538, - [10725] = 10558, - [10726] = 10656, - [10727] = 10549, - [10728] = 10728, - [10729] = 10536, - [10730] = 10557, - [10731] = 10538, - [10732] = 10563, - [10733] = 10546, - [10734] = 10734, - [10735] = 10528, - [10736] = 10507, - [10737] = 10565, - [10738] = 10523, - [10739] = 10517, - [10740] = 10572, - [10741] = 10518, - [10742] = 10580, - [10743] = 10508, - [10744] = 10621, - [10745] = 10509, - [10746] = 10746, - [10747] = 10512, - [10748] = 10588, - [10749] = 10749, - [10750] = 10513, - [10751] = 10545, - [10752] = 10593, - [10753] = 10753, - [10754] = 10754, - [10755] = 10517, - [10756] = 10756, - [10757] = 10544, - [10758] = 10666, - [10759] = 10668, - [10760] = 10518, - [10761] = 10571, - [10762] = 10541, - [10763] = 10515, - [10764] = 10559, - [10765] = 10513, - [10766] = 10549, - [10767] = 10514, - [10768] = 10768, - [10769] = 10516, - [10770] = 10527, - [10771] = 10771, - [10772] = 10523, - [10773] = 10528, - [10774] = 10774, - [10775] = 10557, - [10776] = 10776, - [10777] = 10777, - [10778] = 10778, - [10779] = 10524, - [10780] = 10607, - [10781] = 10781, - [10782] = 10565, - [10783] = 10527, - [10784] = 10702, - [10785] = 10734, - [10786] = 10708, - [10787] = 10536, - [10788] = 10540, - [10789] = 10538, - [10790] = 10790, - [10791] = 10746, - [10792] = 10571, - [10793] = 10793, - [10794] = 10749, - [10795] = 10546, - [10796] = 10544, - [10797] = 10531, - [10798] = 10517, - [10799] = 10756, - [10800] = 10518, - [10801] = 10524, - [10802] = 10802, - [10803] = 10803, - [10804] = 10563, - [10805] = 10513, - [10806] = 10515, - [10807] = 10528, - [10808] = 10550, - [10809] = 10519, - [10810] = 10552, - [10811] = 10553, - [10812] = 10630, - [10813] = 10555, - [10814] = 10621, - [10815] = 10541, - [10816] = 10509, - [10817] = 10558, - [10818] = 10559, - [10819] = 10550, - [10820] = 10593, - [10821] = 10577, - [10822] = 10734, - [10823] = 10563, - [10824] = 10634, - [10825] = 10630, - [10826] = 10552, - [10827] = 10635, - [10828] = 10746, - [10829] = 10513, - [10830] = 10514, - [10831] = 10749, - [10832] = 10636, - [10833] = 10546, - [10834] = 10638, - [10835] = 10835, - [10836] = 10756, - [10837] = 10528, - [10838] = 10527, - [10839] = 10546, - [10840] = 10531, - [10841] = 10533, - [10842] = 10541, - [10843] = 10640, - [10844] = 10543, - [10845] = 10634, - [10846] = 10536, - [10847] = 10538, - [10848] = 10541, - [10849] = 10543, - [10850] = 10635, - [10851] = 10546, - [10852] = 10551, - [10853] = 10554, - [10854] = 10517, - [10855] = 10715, - [10856] = 10551, - [10857] = 10554, - [10858] = 10513, - [10859] = 10734, - [10860] = 10530, - [10861] = 10636, - [10862] = 10536, - [10863] = 10525, - [10864] = 10535, - [10865] = 10746, - [10866] = 10512, - [10867] = 10549, - [10868] = 10749, - [10869] = 10557, - [10870] = 10565, - [10871] = 10571, - [10872] = 10519, - [10873] = 10756, - [10874] = 10553, - [10875] = 10577, - [10876] = 10580, - [10877] = 10519, - [10878] = 10580, - [10879] = 10541, - [10880] = 10646, - [10881] = 10638, - [10882] = 10517, - [10883] = 10518, - [10884] = 10528, - [10885] = 10577, - [10886] = 10621, - [10887] = 10509, - [10888] = 10888, - [10889] = 10593, - [10890] = 10533, - [10891] = 10630, - [10892] = 10640, - [10893] = 10651, - [10894] = 10634, - [10895] = 10734, - [10896] = 10635, - [10897] = 10636, - [10898] = 10528, - [10899] = 10638, - [10900] = 10533, - [10901] = 10746, - [10902] = 10640, - [10903] = 10546, - [10904] = 10749, - [10905] = 10540, - [10906] = 10580, - [10907] = 10536, - [10908] = 10530, - [10909] = 10756, - [10910] = 10536, - [10911] = 10646, - [10912] = 10538, - [10913] = 10515, - [10914] = 10546, - [10915] = 10517, - [10916] = 10651, - [10917] = 10652, - [10918] = 10653, - [10919] = 10520, - [10920] = 10538, - [10921] = 10656, - [10922] = 10544, - [10923] = 10923, - [10924] = 10588, - [10925] = 10545, - [10926] = 10525, + [10709] = 10589, + [10710] = 10692, + [10711] = 10579, + [10712] = 10592, + [10713] = 10593, + [10714] = 10587, + [10715] = 10613, + [10716] = 10595, + [10717] = 10669, + [10718] = 10596, + [10719] = 10597, + [10720] = 10598, + [10721] = 10586, + [10722] = 10583, + [10723] = 10590, + [10724] = 10594, + [10725] = 10620, + [10726] = 10726, + [10727] = 10655, + [10728] = 10621, + [10729] = 10729, + [10730] = 10607, + [10731] = 10608, + [10732] = 10626, + [10733] = 10627, + [10734] = 10629, + [10735] = 10657, + [10736] = 10690, + [10737] = 10623, + [10738] = 10738, + [10739] = 10665, + [10740] = 10645, + [10741] = 10613, + [10742] = 10682, + [10743] = 10680, + [10744] = 10620, + [10745] = 10639, + [10746] = 10577, + [10747] = 10583, + [10748] = 10621, + [10749] = 10655, + [10750] = 10669, + [10751] = 10624, + [10752] = 10623, + [10753] = 10672, + [10754] = 10625, + [10755] = 10612, + [10756] = 10583, + [10757] = 10708, + [10758] = 10579, + [10759] = 10759, + [10760] = 10677, + [10761] = 10683, + [10762] = 10647, + [10763] = 10580, + [10764] = 10627, + [10765] = 10583, + [10766] = 10726, + [10767] = 10587, + [10768] = 10577, + [10769] = 10629, + [10770] = 10651, + [10771] = 10586, + [10772] = 10652, + [10773] = 10643, + [10774] = 10692, + [10775] = 10585, + [10776] = 10594, + [10777] = 10630, + [10778] = 10610, + [10779] = 10580, + [10780] = 10590, + [10781] = 10589, + [10782] = 10671, + [10783] = 10613, + [10784] = 10592, + [10785] = 10671, + [10786] = 10631, + [10787] = 10613, + [10788] = 10593, + [10789] = 10626, + [10790] = 10690, + [10791] = 10594, + [10792] = 10792, + [10793] = 10666, + [10794] = 10691, + [10795] = 10726, + [10796] = 10669, + [10797] = 10680, + [10798] = 10626, + [10799] = 10627, + [10800] = 10683, + [10801] = 10627, + [10802] = 10629, + [10803] = 10629, + [10804] = 10595, + [10805] = 10596, + [10806] = 10643, + [10807] = 10648, + [10808] = 10645, + [10809] = 10597, + [10810] = 10810, + [10811] = 10598, + [10812] = 10655, + [10813] = 10657, + [10814] = 10690, + [10815] = 10691, + [10816] = 10590, + [10817] = 10615, + [10818] = 10619, + [10819] = 10819, + [10820] = 10612, + [10821] = 10607, + [10822] = 10608, + [10823] = 10637, + [10824] = 10659, + [10825] = 10651, + [10826] = 10826, + [10827] = 10633, + [10828] = 10691, + [10829] = 10586, + [10830] = 10591, + [10831] = 10620, + [10832] = 10832, + [10833] = 10648, + [10834] = 10621, + [10835] = 10615, + [10836] = 10583, + [10837] = 10613, + [10838] = 10792, + [10839] = 10613, + [10840] = 10680, + [10841] = 10672, + [10842] = 10619, + [10843] = 10682, + [10844] = 10844, + [10845] = 10620, + [10846] = 10626, + [10847] = 10847, + [10848] = 10629, + [10849] = 10587, + [10850] = 10645, + [10851] = 10832, + [10852] = 10852, + [10853] = 10655, + [10854] = 10681, + [10855] = 10657, + [10856] = 10589, + [10857] = 10621, + [10858] = 10634, + [10859] = 10612, + [10860] = 10586, + [10861] = 10623, + [10862] = 10610, + [10863] = 10708, + [10864] = 10580, + [10865] = 10637, + [10866] = 10647, + [10867] = 10586, + [10868] = 10623, + [10869] = 10635, + [10870] = 10671, + [10871] = 10636, + [10872] = 10708, + [10873] = 10659, + [10874] = 10577, + [10875] = 10588, + [10876] = 10588, + [10877] = 10580, + [10878] = 10651, + [10879] = 10726, + [10880] = 10652, + [10881] = 10613, + [10882] = 10645, + [10883] = 10832, + [10884] = 10666, + [10885] = 10585, + [10886] = 10708, + [10887] = 10677, + [10888] = 10580, + [10889] = 10844, + [10890] = 10626, + [10891] = 10629, + [10892] = 10847, + [10893] = 10605, + [10894] = 10594, + [10895] = 10645, + [10896] = 10683, + [10897] = 10681, + [10898] = 10655, + [10899] = 10657, + [10900] = 10638, + [10901] = 10610, + [10902] = 10612, + [10903] = 10588, + [10904] = 10612, + [10905] = 10726, + [10906] = 10579, + [10907] = 10616, + [10908] = 10647, + [10909] = 10622, + [10910] = 10665, + [10911] = 10588, + [10912] = 10639, + [10913] = 10626, + [10914] = 10914, + [10915] = 10586, + [10916] = 10916, + [10917] = 10605, + [10918] = 10655, + [10919] = 10832, + [10920] = 10657, + [10921] = 10652, + [10922] = 10609, + [10923] = 10641, + [10924] = 10692, + [10925] = 10844, + [10926] = 10642, [10927] = 10666, - [10928] = 10668, - [10929] = 10513, - [10930] = 10516, - [10931] = 10734, - [10932] = 10523, - [10933] = 10933, - [10934] = 10934, - [10935] = 10555, - [10936] = 10936, - [10937] = 10746, - [10938] = 10938, - [10939] = 10652, - [10940] = 10749, - [10941] = 10531, - [10942] = 10653, - [10943] = 10520, - [10944] = 10538, - [10945] = 10756, - [10946] = 10524, - [10947] = 10656, - [10948] = 10558, - [10949] = 10541, - [10950] = 10588, - [10951] = 10535, - [10952] = 10545, - [10953] = 10934, - [10954] = 10954, - [10955] = 10803, - [10956] = 10536, - [10957] = 10550, - [10958] = 10536, - [10959] = 10666, - [10960] = 10668, - [10961] = 10549, - [10962] = 10516, - [10963] = 10552, - [10964] = 10546, - [10965] = 10528, - [10966] = 10523, - [10967] = 10734, - [10968] = 10557, - [10969] = 10565, - [10970] = 10571, - [10971] = 10536, - [10972] = 10746, - [10973] = 10538, - [10974] = 10528, - [10975] = 10749, - [10976] = 10546, - [10977] = 10517, - [10978] = 10536, - [10979] = 10538, - [10980] = 10756, - [10981] = 10536, - [10982] = 10507, - [10983] = 10621, - [10984] = 10508, - [10985] = 10509, - [10986] = 10538, - [10987] = 10536, - [10988] = 10538, - [10989] = 10512, - [10990] = 10593, - [10991] = 10991, - [10992] = 10753, - [10993] = 10754, - [10994] = 10517, - [10995] = 10518, - [10996] = 10536, - [10997] = 10580, - [10998] = 10515, - [10999] = 10538, - [11000] = 10753, - [11001] = 10536, - [11002] = 10734, - [11003] = 11003, - [11004] = 10538, - [11005] = 10536, - [11006] = 10538, - [11007] = 10746, - [11008] = 10536, - [11009] = 10538, - [11010] = 10749, - [11011] = 10536, - [11012] = 10538, - [11013] = 10923, - [11014] = 10768, - [11015] = 10756, - [11016] = 10536, - [11017] = 10538, - [11018] = 10536, - [11019] = 10771, - [11020] = 10538, - [11021] = 10536, - [11022] = 10538, - [11023] = 10536, - [11024] = 10540, - [11025] = 10774, - [11026] = 10538, - [11027] = 10776, - [11028] = 10544, - [11029] = 10536, - [11030] = 10538, - [11031] = 10777, - [11032] = 10524, - [11033] = 10778, - [11034] = 10536, - [11035] = 10550, - [11036] = 10538, - [11037] = 10734, - [11038] = 10552, - [11039] = 10553, - [11040] = 10781, - [11041] = 10555, - [11042] = 10746, - [11043] = 10536, - [11044] = 10538, - [11045] = 10749, - [11046] = 10536, - [11047] = 10558, - [11048] = 10559, - [11049] = 10538, - [11050] = 10756, - [11051] = 10536, - [11052] = 11052, - [11053] = 10790, - [11054] = 10538, - [11055] = 10563, - [11056] = 10536, - [11057] = 10538, - [11058] = 10536, - [11059] = 10793, - [11060] = 10538, - [11061] = 10536, - [11062] = 10538, - [11063] = 10513, - [11064] = 10536, - [11065] = 10514, - [11066] = 10802, - [11067] = 10538, - [11068] = 11068, - [11069] = 10630, - [11070] = 10536, - [11071] = 10527, - [11072] = 10734, - [11073] = 10538, - [11074] = 10531, - [11075] = 11075, - [11076] = 10536, - [11077] = 10746, - [11078] = 10538, - [11079] = 10607, - [11080] = 10749, - [11081] = 10519, - [11082] = 10553, - [11083] = 10577, - [11084] = 10541, - [11085] = 10756, - [11086] = 10558, - [11087] = 10543, - [11088] = 10559, - [11089] = 10634, - [11090] = 10551, - [11091] = 10580, - [11092] = 10554, - [11093] = 10702, - [11094] = 10513, - [11095] = 10514, - [11096] = 10656, - [11097] = 10712, - [11098] = 11098, - [11099] = 10530, - [11100] = 10528, - [11101] = 10635, - [11102] = 10525, - [11103] = 10535, - [11104] = 10507, - [11105] = 10549, - [11106] = 10557, - [11107] = 10734, - [11108] = 10565, - [11109] = 10571, - [11110] = 10519, - [11111] = 10577, - [11112] = 10746, - [11113] = 10580, - [11114] = 10636, - [11115] = 10749, - [11116] = 10541, - [11117] = 10543, - [11118] = 11118, - [11119] = 10550, - [11120] = 10756, - [11121] = 10646, - [11122] = 10528, - [11123] = 10528, - [11124] = 10551, - [11125] = 10621, - [11126] = 10621, - [11127] = 10509, - [11128] = 10512, - [11129] = 10593, - [11130] = 10509, - [11131] = 10630, - [11132] = 10638, - [11133] = 10554, - [11134] = 10634, - [11135] = 10635, - [11136] = 10636, - [11137] = 10508, - [11138] = 10638, - [11139] = 10533, - [11140] = 10640, - [11141] = 10513, - [11142] = 10734, - [11143] = 10835, - [11144] = 10563, - [11145] = 10536, - [11146] = 10533, - [11147] = 10746, - [11148] = 10646, - [11149] = 10593, - [11150] = 10749, - [11151] = 10546, - [11152] = 10651, - [11153] = 10652, - [11154] = 10653, - [11155] = 10756, - [11156] = 10512, - [11157] = 10520, - [11158] = 10538, - [11159] = 10656, - [11160] = 10630, - [11161] = 10621, - [11162] = 10519, - [11163] = 10588, - [11164] = 10545, - [11165] = 10634, - [11166] = 10666, - [11167] = 10668, - [11168] = 10635, - [11169] = 10516, - [11170] = 10523, - [11171] = 10746, - [11172] = 10640, - [11173] = 10749, - [11174] = 10636, - [11175] = 10651, - [11176] = 10638, - [11177] = 10756, - [11178] = 10518, - [11179] = 10728, - [11180] = 10552, - [11181] = 10536, - [11182] = 10533, - [11183] = 10646, - [11184] = 10640, - [11185] = 10652, - [11186] = 11186, - [11187] = 10507, - [11188] = 2635, - [11189] = 10508, - [11190] = 10651, - [11191] = 10746, - [11192] = 2670, - [11193] = 10749, - [11194] = 10509, - [11195] = 10512, - [11196] = 10756, - [11197] = 10536, - [11198] = 10653, - [11199] = 2451, - [11200] = 2515, + [10928] = 10847, + [10929] = 10591, + [10930] = 10577, + [10931] = 10669, + [10932] = 10729, + [10933] = 10681, + [10934] = 10680, + [10935] = 10614, + [10936] = 10613, + [10937] = 10683, + [10938] = 10627, + [10939] = 10629, + [10940] = 10644, + [10941] = 10605, + [10942] = 10626, + [10943] = 10629, + [10944] = 10643, + [10945] = 10645, + [10946] = 10708, + [10947] = 10655, + [10948] = 10605, + [10949] = 10657, + [10950] = 10651, + [10951] = 10690, + [10952] = 10612, + [10953] = 10691, + [10954] = 10580, + [10955] = 10615, + [10956] = 10832, + [10957] = 10619, + [10958] = 10648, + [10959] = 10645, + [10960] = 10960, + [10961] = 10586, + [10962] = 10844, + [10963] = 10675, + [10964] = 2621, + [10965] = 10847, + [10966] = 10637, + [10967] = 10591, + [10968] = 10612, + [10969] = 10659, + [10970] = 10681, + [10971] = 10579, + [10972] = 10652, + [10973] = 10613, + [10974] = 10592, + [10975] = 10583, + [10976] = 10672, + [10977] = 10593, + [10978] = 10586, + [10979] = 10729, + [10980] = 10682, + [10981] = 10626, + [10982] = 10587, + [10983] = 10629, + [10984] = 10627, + [10985] = 10671, + [10986] = 10616, + [10987] = 10665, + [10988] = 10622, + [10989] = 10726, + [10990] = 10645, + [10991] = 10639, + [10992] = 10832, + [10993] = 10655, + [10994] = 10629, + [10995] = 10647, + [10996] = 10585, + [10997] = 10708, + [10998] = 10844, + [10999] = 10612, + [11000] = 10580, + [11001] = 10847, + [11002] = 11002, + [11003] = 10677, + [11004] = 11004, + [11005] = 10599, + [11006] = 10681, + [11007] = 10613, + [11008] = 10586, + [11009] = 10672, + [11010] = 10588, + [11011] = 10677, + [11012] = 10594, + [11013] = 10610, + [11014] = 11014, + [11015] = 10609, + [11016] = 10600, + [11017] = 10605, + [11018] = 11014, + [11019] = 10588, + [11020] = 11020, + [11021] = 10613, + [11022] = 10655, + [11023] = 10657, + [11024] = 10612, + [11025] = 10579, + [11026] = 10692, + [11027] = 10614, + [11028] = 10832, + [11029] = 10626, + [11030] = 10679, + [11031] = 10588, + [11032] = 10729, + [11033] = 10626, + [11034] = 10844, + [11035] = 10609, + [11036] = 10629, + [11037] = 10847, + [11038] = 10614, + [11039] = 10585, + [11040] = 10759, + [11041] = 10645, + [11042] = 10681, + [11043] = 10655, + [11044] = 10589, + [11045] = 10666, + [11046] = 10645, + [11047] = 10612, + [11048] = 10622, + [11049] = 10594, + [11050] = 10586, + [11051] = 10665, + [11052] = 10669, + [11053] = 10639, + [11054] = 10586, + [11055] = 10577, + [11056] = 10672, + [11057] = 10680, + [11058] = 10677, + [11059] = 10682, + [11060] = 10683, + [11061] = 11061, + [11062] = 10655, + [11063] = 10657, + [11064] = 10832, + [11065] = 10627, + [11066] = 10612, + [11067] = 10613, + [11068] = 2742, + [11069] = 10844, + [11070] = 2743, + [11071] = 10589, + [11072] = 10847, + [11073] = 10648, + [11074] = 10626, + [11075] = 10648, + [11076] = 10592, + [11077] = 10681, + [11078] = 10629, + [11079] = 10645, + [11080] = 10592, + [11081] = 10591, + [11082] = 10593, + [11083] = 10655, + [11084] = 10626, + [11085] = 10629, + [11086] = 10595, + [11087] = 11087, + [11088] = 10596, + [11089] = 10626, + [11090] = 10597, + [11091] = 10598, + [11092] = 10590, + [11093] = 10607, + [11094] = 10608, + [11095] = 10593, + [11096] = 10852, + [11097] = 10629, + [11098] = 10626, + [11099] = 10832, + [11100] = 11100, + [11101] = 10629, + [11102] = 11102, + [11103] = 11103, + [11104] = 10844, + [11105] = 11105, + [11106] = 10626, + [11107] = 10847, + [11108] = 10595, + [11109] = 10629, + [11110] = 10613, + [11111] = 11111, + [11112] = 10681, + [11113] = 10626, + [11114] = 10629, + [11115] = 11115, + [11116] = 10626, + [11117] = 10620, + [11118] = 10629, + [11119] = 10621, + [11120] = 10583, + [11121] = 10626, + [11122] = 10629, + [11123] = 10623, + [11124] = 10682, + [11125] = 10626, + [11126] = 10587, + [11127] = 10671, + [11128] = 10647, + [11129] = 10596, + [11130] = 10726, + [11131] = 10629, + [11132] = 10615, + [11133] = 10708, + [11134] = 10832, + [11135] = 10580, + [11136] = 10577, + [11137] = 10626, + [11138] = 10651, + [11139] = 10844, + [11140] = 10652, + [11141] = 10629, + [11142] = 10847, + [11143] = 10588, + [11144] = 10585, + [11145] = 10594, + [11146] = 10626, + [11147] = 10681, + [11148] = 10629, + [11149] = 10605, + [11150] = 10626, + [11151] = 10610, + [11152] = 10629, + [11153] = 10626, + [11154] = 11154, + [11155] = 10629, + [11156] = 10626, + [11157] = 11157, + [11158] = 10597, + [11159] = 11159, + [11160] = 10629, + [11161] = 10612, + [11162] = 10579, + [11163] = 10626, + [11164] = 10598, + [11165] = 10666, + [11166] = 10651, + [11167] = 10626, + [11168] = 10600, + [11169] = 10832, + [11170] = 10609, + [11171] = 10669, + [11172] = 10629, + [11173] = 10614, + [11174] = 10844, + [11175] = 10680, + [11176] = 10683, + [11177] = 10847, + [11178] = 10627, + [11179] = 10629, + [11180] = 10626, + [11181] = 10629, + [11182] = 10681, + [11183] = 10626, + [11184] = 10629, + [11185] = 10626, + [11186] = 10586, + [11187] = 10643, + [11188] = 10629, + [11189] = 10665, + [11190] = 10626, + [11191] = 10629, + [11192] = 10672, + [11193] = 10590, + [11194] = 10677, + [11195] = 10626, + [11196] = 11196, + [11197] = 10690, + [11198] = 10652, + [11199] = 10629, + [11200] = 10691, [11201] = 11201, - [11202] = 10646, - [11203] = 10514, - [11204] = 10510, - [11205] = 10651, - [11206] = 11206, - [11207] = 10923, - [11208] = 10546, - [11209] = 10652, - [11210] = 10517, - [11211] = 10756, - [11212] = 10653, - [11213] = 10520, - [11214] = 10518, - [11215] = 10538, - [11216] = 10734, - [11217] = 10656, - [11218] = 10528, - [11219] = 10933, - [11220] = 10515, - [11221] = 10593, - [11222] = 10621, - [11223] = 10509, - [11224] = 10934, - [11225] = 10507, - [11226] = 10756, - [11227] = 10572, - [11228] = 10517, - [11229] = 10508, - [11230] = 10936, - [11231] = 10938, - [11232] = 10512, - [11233] = 10652, - [11234] = 10593, - [11235] = 10588, - [11236] = 10545, - [11237] = 10517, - [11238] = 10518, - [11239] = 10518, - [11240] = 10653, - [11241] = 10756, - [11242] = 10666, - [11243] = 10515, - [11244] = 10668, - [11245] = 10541, - [11246] = 10514, - [11247] = 10630, - [11248] = 10516, - [11249] = 10520, - [11250] = 10746, - [11251] = 10538, - [11252] = 10756, - [11253] = 10523, - [11254] = 10520, - [11255] = 10749, - [11256] = 10749, - [11257] = 10538, - [11258] = 10540, - [11259] = 10656, - [11260] = 10634, - [11261] = 10756, - [11262] = 10533, - [11263] = 10640, - [11264] = 10656, - [11265] = 10540, - [11266] = 10544, - [11267] = 10507, - [11268] = 11268, - [11269] = 10544, - [11270] = 10519, - [11271] = 10756, - [11272] = 10508, - [11273] = 10536, - [11274] = 10524, - [11275] = 11275, - [11276] = 10513, - [11277] = 10550, - [11278] = 10588, - [11279] = 10552, - [11280] = 10756, - [11281] = 10756, - [11282] = 10553, - [11283] = 10646, - [11284] = 10515, - [11285] = 10545, - [11286] = 10555, - [11287] = 10588, - [11288] = 11288, - [11289] = 10756, - [11290] = 10512, - [11291] = 10558, - [11292] = 10559, - [11293] = 10651, - [11294] = 10524, - [11295] = 10652, - [11296] = 10563, - [11297] = 10756, - [11298] = 10533, - [11299] = 10520, - [11300] = 10756, - [11301] = 11301, - [11302] = 10520, - [11303] = 10756, - [11304] = 10538, - [11305] = 10656, - [11306] = 10756, - [11307] = 10541, - [11308] = 10550, - [11309] = 10756, - [11310] = 10545, - [11311] = 10513, - [11312] = 10756, - [11313] = 10588, - [11314] = 10514, - [11315] = 10756, - [11316] = 10545, - [11317] = 10954, - [11318] = 10756, - [11319] = 10514, - [11320] = 10552, - [11321] = 10756, - [11322] = 10666, - [11323] = 10553, - [11324] = 10756, - [11325] = 10668, - [11326] = 10803, - [11327] = 10756, - [11328] = 10531, - [11329] = 10527, - [11330] = 10756, - [11331] = 10630, - [11332] = 11098, - [11333] = 10756, - [11334] = 11186, - [11335] = 10531, - [11336] = 10756, - [11337] = 10516, - [11338] = 10555, - [11339] = 10756, - [11340] = 10510, - [11341] = 10523, - [11342] = 10507, - [11343] = 10508, - [11344] = 10666, - [11345] = 10756, - [11346] = 11206, - [11347] = 10668, - [11348] = 10756, - [11349] = 10634, - [11350] = 10516, - [11351] = 10756, - [11352] = 10756, - [11353] = 10546, - [11354] = 10756, - [11355] = 11206, - [11356] = 10541, - [11357] = 10756, - [11358] = 10573, - [11359] = 10543, - [11360] = 10756, - [11361] = 10523, - [11362] = 10635, - [11363] = 10756, - [11364] = 10513, - [11365] = 10546, - [11366] = 10756, - [11367] = 10517, - [11368] = 10551, - [11369] = 10554, - [11370] = 10636, - [11371] = 10558, - [11372] = 10518, - [11373] = 10559, - [11374] = 10512, - [11375] = 10530, - [11376] = 11275, - [11377] = 10754, - [11378] = 10565, - [11379] = 11379, - [11380] = 11380, - [11381] = 11381, - [11382] = 10514, - [11383] = 10515, - [11384] = 10525, - [11385] = 10535, - [11386] = 11301, - [11387] = 11387, - [11388] = 10549, - [11389] = 10557, - [11390] = 10565, - [11391] = 10517, - [11392] = 10571, - [11393] = 10519, - [11394] = 10577, - [11395] = 10580, - [11396] = 10518, - [11397] = 10543, - [11398] = 10527, - [11399] = 10524, - [11400] = 11400, - [11401] = 10543, - [11402] = 10507, - [11403] = 10563, - [11404] = 11404, - [11405] = 11405, - [11406] = 10528, - [11407] = 10508, - [11408] = 10540, - [11409] = 11268, - [11410] = 10512, - [11411] = 10621, - [11412] = 10509, - [11413] = 10531, - [11414] = 10593, - [11415] = 10544, - [11416] = 10630, - [11417] = 10524, - [11418] = 10638, - [11419] = 10634, - [11420] = 10635, - [11421] = 10540, - [11422] = 10636, - [11423] = 10524, - [11424] = 10638, - [11425] = 10533, - [11426] = 10640, - [11427] = 10517, - [11428] = 10518, - [11429] = 10527, - [11430] = 10518, - [11431] = 11431, - [11432] = 10515, - [11433] = 10666, - [11434] = 10536, - [11435] = 10550, - [11436] = 10513, - [11437] = 10646, - [11438] = 10533, - [11439] = 10640, - [11440] = 10514, - [11441] = 10651, - [11442] = 10531, - [11443] = 10652, - [11444] = 10559, - [11445] = 10513, - [11446] = 10653, - [11447] = 10520, - [11448] = 10538, - [11449] = 10656, - [11450] = 10514, - [11451] = 10668, - [11452] = 10588, - [11453] = 10545, - [11454] = 10540, - [11455] = 10666, - [11456] = 10668, - [11457] = 10517, - [11458] = 10516, - [11459] = 10523, - [11460] = 11460, - [11461] = 10516, - [11462] = 10571, - [11463] = 10527, - [11464] = 10536, - [11465] = 10531, - [11466] = 10541, - [11467] = 10523, - [11468] = 11468, - [11469] = 10543, - [11470] = 10544, - [11471] = 10574, - [11472] = 10551, - [11473] = 10551, - [11474] = 10541, - [11475] = 10543, - [11476] = 10554, - [11477] = 10768, - [11478] = 10666, - [11479] = 10771, - [11480] = 10551, - [11481] = 10541, - [11482] = 10524, - [11483] = 10554, - [11484] = 11484, - [11485] = 11387, - [11486] = 10543, - [11487] = 10646, - [11488] = 10526, - [11489] = 10774, - [11490] = 10551, - [11491] = 10550, - [11492] = 10519, - [11493] = 11098, - [11494] = 10544, - [11495] = 10546, - [11496] = 10554, - [11497] = 10530, - [11498] = 10579, - [11499] = 10552, - [11500] = 10577, - [11501] = 10776, - [11502] = 10553, - [11503] = 10525, - [11504] = 10535, - [11505] = 10528, - [11506] = 10777, - [11507] = 10549, - [11508] = 10778, - [11509] = 10638, - [11510] = 11510, - [11511] = 10621, - [11512] = 10557, - [11513] = 10507, - [11514] = 10509, - [11515] = 10565, - [11516] = 10652, - [11517] = 10593, - [11518] = 10508, - [11519] = 10555, - [11520] = 10571, - [11521] = 10734, - [11522] = 10607, - [11523] = 10512, - [11524] = 10519, - [11525] = 10577, - [11526] = 10580, - [11527] = 10554, - [11528] = 10517, - [11529] = 10518, - [11530] = 10540, - [11531] = 10544, - [11532] = 10630, - [11533] = 10715, - [11534] = 11275, - [11535] = 10515, - [11536] = 10533, - [11537] = 10640, - [11538] = 11538, - [11539] = 10668, - [11540] = 10551, - [11541] = 10528, - [11542] = 10536, - [11543] = 10515, - [11544] = 11544, - [11545] = 10646, - [11546] = 10558, - [11547] = 10621, - [11548] = 10509, - [11549] = 10519, - [11550] = 10559, - [11551] = 10651, - [11552] = 10593, - [11553] = 10652, - [11554] = 10781, - [11555] = 10513, - [11556] = 10540, - [11557] = 10540, - [11558] = 10607, - [11559] = 10520, - [11560] = 10538, - [11561] = 10544, - [11562] = 10656, - [11563] = 10630, - [11564] = 10524, - [11565] = 10533, - [11566] = 10651, - [11567] = 10550, - [11568] = 10516, - [11569] = 10552, - [11570] = 10553, - [11571] = 10634, - [11572] = 10555, - [11573] = 10781, - [11574] = 10532, - [11575] = 10635, - [11576] = 10558, - [11577] = 10559, - [11578] = 10544, - [11579] = 10636, - [11580] = 10588, - [11581] = 10563, - [11582] = 10545, - [11583] = 10638, - [11584] = 10524, - [11585] = 10652, - [11586] = 10666, - [11587] = 10533, - [11588] = 10513, - [11589] = 10514, - [11590] = 10640, - [11591] = 10550, - [11592] = 10668, - [11593] = 10552, - [11594] = 10527, - [11595] = 10553, - [11596] = 10563, - [11597] = 10531, - [11598] = 10555, - [11599] = 10536, - [11600] = 10516, - [11601] = 10646, - [11602] = 10523, - [11603] = 10746, - [11604] = 11604, - [11605] = 10558, - [11606] = 10559, - [11607] = 10541, - [11608] = 11608, - [11609] = 10543, - [11610] = 10640, - [11611] = 10554, - [11612] = 11612, - [11613] = 10646, - [11614] = 10551, - [11615] = 10554, - [11616] = 11616, - [11617] = 10653, - [11618] = 10520, - [11619] = 10563, - [11620] = 10540, - [11621] = 10546, - [11622] = 10546, - [11623] = 10530, - [11624] = 10708, - [11625] = 10513, - [11626] = 10651, - [11627] = 10525, - [11628] = 10790, - [11629] = 10535, - [11630] = 10514, - [11631] = 10616, - [11632] = 10549, - [11633] = 10538, - [11634] = 10557, - [11635] = 10524, - [11636] = 11636, - [11637] = 10513, - [11638] = 10512, - [11639] = 10544, - [11640] = 10653, - [11641] = 10793, - [11642] = 10527, - [11643] = 10565, - [11644] = 10517, - [11645] = 10531, - [11646] = 10524, - [11647] = 10592, - [11648] = 10571, - [11649] = 10541, - [11650] = 10519, - [11651] = 10518, - [11652] = 10577, - [11653] = 10514, - [11654] = 10524, - [11655] = 11510, - [11656] = 10541, - [11657] = 10543, - [11658] = 11544, - [11659] = 10543, - [11660] = 10551, - [11661] = 10554, - [11662] = 10513, - [11663] = 11275, - [11664] = 10580, - [11665] = 10558, - [11666] = 10514, - [11667] = 10936, - [11668] = 10407, - [11669] = 10652, - [11670] = 10954, - [11671] = 10528, - [11672] = 10653, - [11673] = 10621, - [11674] = 10509, - [11675] = 10530, - [11676] = 10593, - [11677] = 10656, - [11678] = 10630, - [11679] = 10520, - [11680] = 10538, - [11681] = 10634, - [11682] = 10635, - [11683] = 10636, - [11684] = 10517, - [11685] = 10638, - [11686] = 10533, - [11687] = 10640, - [11688] = 10525, - [11689] = 10656, - [11690] = 10535, - [11691] = 10536, - [11692] = 10512, - [11693] = 10646, - [11694] = 10549, - [11695] = 10588, - [11696] = 10651, - [11697] = 11379, - [11698] = 11380, - [11699] = 11381, - [11700] = 10557, - [11701] = 10652, - [11702] = 10653, - [11703] = 11387, - [11704] = 10565, - [11705] = 10520, - [11706] = 10538, - [11707] = 11400, - [11708] = 11404, - [11709] = 10571, - [11710] = 10656, - [11711] = 10607, - [11712] = 10545, - [11713] = 11379, - [11714] = 11380, - [11715] = 11381, - [11716] = 10588, - [11717] = 10545, - [11718] = 11387, - [11719] = 10519, - [11720] = 10666, - [11721] = 11400, - [11722] = 11404, - [11723] = 10577, - [11724] = 10668, - [11725] = 10580, - [11726] = 10516, - [11727] = 11379, - [11728] = 11380, - [11729] = 11381, - [11730] = 10523, - [11731] = 2669, - [11732] = 11387, - [11733] = 10546, - [11734] = 10666, - [11735] = 11400, - [11736] = 11404, - [11737] = 10541, - [11738] = 10668, - [11739] = 10527, - [11740] = 10516, - [11741] = 11379, - [11742] = 11380, - [11743] = 11381, - [11744] = 10546, - [11745] = 10523, - [11746] = 11387, - [11747] = 11604, - [11748] = 10551, - [11749] = 11400, - [11750] = 11404, - [11751] = 10518, - [11752] = 10802, - [11753] = 11753, - [11754] = 11754, - [11755] = 11379, - [11756] = 11380, - [11757] = 11381, - [11758] = 10528, - [11759] = 10519, - [11760] = 11387, - [11761] = 10512, - [11762] = 10621, - [11763] = 11400, - [11764] = 11404, - [11765] = 10509, - [11766] = 11379, - [11767] = 10559, - [11768] = 10530, - [11769] = 11379, - [11770] = 11380, - [11771] = 11381, - [11772] = 11772, - [11773] = 10593, - [11774] = 11387, - [11775] = 10933, - [11776] = 10531, - [11777] = 11400, - [11778] = 11404, - [11779] = 10630, - [11780] = 10554, - [11781] = 10528, - [11782] = 11379, - [11783] = 11380, - [11784] = 11381, - [11785] = 10525, - [11786] = 10530, - [11787] = 11387, - [11788] = 10936, - [11789] = 10634, - [11790] = 11400, - [11791] = 11404, - [11792] = 10635, - [11793] = 11268, - [11794] = 10546, - [11795] = 10526, - [11796] = 11379, - [11797] = 11380, - [11798] = 11381, - [11799] = 10636, - [11800] = 10588, - [11801] = 11387, - [11802] = 10638, - [11803] = 10528, - [11804] = 11400, - [11805] = 11404, - [11806] = 10533, - [11807] = 10535, - [11808] = 10640, - [11809] = 10728, - [11810] = 11379, - [11811] = 11380, - [11812] = 11381, - [11813] = 10545, - [11814] = 10616, - [11815] = 11387, - [11816] = 10563, - [11817] = 10536, - [11818] = 11400, - [11819] = 11404, - [11820] = 10529, - [11821] = 10646, - [11822] = 10549, - [11823] = 10533, - [11824] = 11379, - [11825] = 11380, - [11826] = 11381, - [11827] = 10553, - [11828] = 11510, - [11829] = 11387, - [11830] = 10651, - [11831] = 10507, - [11832] = 11400, - [11833] = 11404, - [11834] = 10652, - [11835] = 11772, - [11836] = 10508, - [11837] = 10653, - [11838] = 11379, - [11839] = 11380, - [11840] = 11381, - [11841] = 10520, - [11842] = 10538, - [11843] = 11387, - [11844] = 10512, - [11845] = 10656, - [11846] = 11400, - [11847] = 11404, - [11848] = 10636, - [11849] = 11544, - [11850] = 2438, - [11851] = 2486, - [11852] = 11379, - [11853] = 11380, - [11854] = 11381, - [11855] = 11288, - [11856] = 10588, - [11857] = 11387, - [11858] = 11858, - [11859] = 10517, - [11860] = 11400, - [11861] = 11404, - [11862] = 10545, - [11863] = 10536, - [11864] = 11379, - [11865] = 11380, - [11866] = 11381, - [11867] = 11387, - [11868] = 10518, - [11869] = 10507, - [11870] = 11400, - [11871] = 11404, + [11202] = 11202, + [11203] = 10626, + [11204] = 10832, + [11205] = 11205, + [11206] = 10629, + [11207] = 10626, + [11208] = 10615, + [11209] = 10844, + [11210] = 11210, + [11211] = 10619, + [11212] = 10847, + [11213] = 11213, + [11214] = 10629, + [11215] = 10626, + [11216] = 10637, + [11217] = 10681, + [11218] = 10629, + [11219] = 10659, + [11220] = 10607, + [11221] = 10619, + [11222] = 10626, + [11223] = 10629, + [11224] = 11196, + [11225] = 11002, + [11226] = 10578, + [11227] = 10629, + [11228] = 10591, + [11229] = 10608, + [11230] = 10581, + [11231] = 10582, + [11232] = 10596, + [11233] = 10637, + [11234] = 10586, + [11235] = 10579, + [11236] = 10643, + [11237] = 10589, + [11238] = 10583, + [11239] = 10832, + [11240] = 10665, + [11241] = 10605, + [11242] = 10592, + [11243] = 10593, + [11244] = 10844, + [11245] = 10605, + [11246] = 10682, + [11247] = 10847, + [11248] = 10595, + [11249] = 10651, + [11250] = 10596, + [11251] = 10597, + [11252] = 10681, + [11253] = 10810, + [11254] = 10598, + [11255] = 10600, + [11256] = 10601, + [11257] = 10602, + [11258] = 10610, + [11259] = 10604, + [11260] = 10590, + [11261] = 10607, + [11262] = 10608, + [11263] = 10587, + [11264] = 10643, + [11265] = 10613, + [11266] = 10671, + [11267] = 10672, + [11268] = 10844, + [11269] = 10620, + [11270] = 10847, + [11271] = 10621, + [11272] = 10589, + [11273] = 10690, + [11274] = 10681, + [11275] = 10612, + [11276] = 10613, + [11277] = 10623, + [11278] = 10620, + [11279] = 10621, + [11280] = 10579, + [11281] = 10623, + [11282] = 10624, + [11283] = 10625, + [11284] = 10620, + [11285] = 10677, + [11286] = 10639, + [11287] = 10612, + [11288] = 10844, + [11289] = 10647, + [11290] = 10847, + [11291] = 10614, + [11292] = 10630, + [11293] = 10681, + [11294] = 10579, + [11295] = 10631, + [11296] = 10645, + [11297] = 10633, + [11298] = 10634, + [11299] = 10635, + [11300] = 10636, + [11301] = 10586, + [11302] = 10638, + [11303] = 10645, + [11304] = 10577, + [11305] = 10651, + [11306] = 11306, + [11307] = 10641, + [11308] = 10681, + [11309] = 10665, + [11310] = 10642, + [11311] = 10621, + [11312] = 10644, + [11313] = 10691, + [11314] = 10647, + [11315] = 11315, + [11316] = 10672, + [11317] = 10577, + [11318] = 10677, + [11319] = 10651, + [11320] = 10652, + [11321] = 10652, + [11322] = 10587, + [11323] = 10681, + [11324] = 10623, + [11325] = 10585, + [11326] = 10656, + [11327] = 10594, + [11328] = 10610, + [11329] = 10671, + [11330] = 11330, + [11331] = 10615, + [11332] = 10626, + [11333] = 10589, + [11334] = 10585, + [11335] = 10666, + [11336] = 10594, + [11337] = 10592, + [11338] = 10681, + [11339] = 10657, + [11340] = 10610, + [11341] = 10669, + [11342] = 10585, + [11343] = 10826, + [11344] = 10594, + [11345] = 10592, + [11346] = 10674, + [11347] = 10593, + [11348] = 10681, + [11349] = 10590, + [11350] = 10675, + [11351] = 10676, + [11352] = 10595, + [11353] = 10678, + [11354] = 10679, + [11355] = 10616, + [11356] = 10680, + [11357] = 10680, + [11358] = 10681, + [11359] = 10596, + [11360] = 11360, + [11361] = 10683, + [11362] = 10627, + [11363] = 10629, + [11364] = 10643, + [11365] = 10622, + [11366] = 10597, + [11367] = 10598, + [11368] = 10681, + [11369] = 10590, + [11370] = 10626, + [11371] = 10690, + [11372] = 10691, + [11373] = 10607, + [11374] = 10639, + [11375] = 10693, + [11376] = 10652, + [11377] = 10681, + [11378] = 10619, + [11379] = 10694, + [11380] = 10608, + [11381] = 10615, + [11382] = 10619, + [11383] = 10593, + [11384] = 11100, + [11385] = 11201, + [11386] = 10681, + [11387] = 10595, + [11388] = 10637, + [11389] = 10609, + [11390] = 10659, + [11391] = 10655, + [11392] = 10657, + [11393] = 10666, + [11394] = 10681, + [11395] = 10596, + [11396] = 10832, + [11397] = 10681, + [11398] = 10637, + [11399] = 11399, + [11400] = 10681, + [11401] = 10612, + [11402] = 11402, + [11403] = 10681, + [11404] = 10613, + [11405] = 10659, + [11406] = 10681, + [11407] = 10620, + [11408] = 10792, + [11409] = 10681, + [11410] = 10621, + [11411] = 10614, + [11412] = 10681, + [11413] = 10597, + [11414] = 10645, + [11415] = 10681, + [11416] = 10623, + [11417] = 10692, + [11418] = 10681, + [11419] = 11102, + [11420] = 10613, + [11421] = 10681, + [11422] = 10579, + [11423] = 11002, + [11424] = 10681, + [11425] = 10598, + [11426] = 10669, + [11427] = 10681, + [11428] = 10595, + [11429] = 10729, + [11430] = 10681, + [11431] = 10844, + [11432] = 10680, + [11433] = 10681, + [11434] = 10647, + [11435] = 10683, + [11436] = 10681, + [11437] = 10620, + [11438] = 10627, + [11439] = 10681, + [11440] = 10847, + [11441] = 10596, + [11442] = 10681, + [11443] = 10597, + [11444] = 11444, + [11445] = 10681, + [11446] = 10621, + [11447] = 10577, + [11448] = 10681, + [11449] = 10594, + [11450] = 10610, + [11451] = 10681, + [11452] = 10623, + [11453] = 10590, + [11454] = 10681, + [11455] = 10647, + [11456] = 10629, + [11457] = 10681, + [11458] = 10616, + [11459] = 11154, + [11460] = 10681, + [11461] = 11103, + [11462] = 10681, + [11463] = 10681, + [11464] = 10626, + [11465] = 10643, + [11466] = 10598, + [11467] = 10609, + [11468] = 10666, + [11469] = 10647, + [11470] = 10690, + [11471] = 10691, + [11472] = 10622, + [11473] = 10615, + [11474] = 10690, + [11475] = 10648, + [11476] = 11315, + [11477] = 11399, + [11478] = 11402, + [11479] = 10619, + [11480] = 10594, + [11481] = 11481, + [11482] = 10577, + [11483] = 10591, + [11484] = 10960, + [11485] = 10627, + [11486] = 10637, + [11487] = 10583, + [11488] = 10651, + [11489] = 10652, + [11490] = 11490, + [11491] = 10659, + [11492] = 10585, + [11493] = 10594, + [11494] = 10682, + [11495] = 10610, + [11496] = 10583, + [11497] = 11497, + [11498] = 10587, + [11499] = 10671, + [11500] = 10655, + [11501] = 11501, + [11502] = 10726, + [11503] = 10645, + [11504] = 10669, + [11505] = 10691, + [11506] = 10680, + [11507] = 10614, + [11508] = 11157, + [11509] = 10708, + [11510] = 10626, + [11511] = 10580, + [11512] = 2432, + [11513] = 10666, + [11514] = 10627, + [11515] = 10629, + [11516] = 10588, + [11517] = 10669, + [11518] = 10680, + [11519] = 11105, + [11520] = 10616, + [11521] = 10643, + [11522] = 10622, + [11523] = 10605, + [11524] = 10683, + [11525] = 10639, + [11526] = 10626, + [11527] = 10612, + [11528] = 10579, + [11529] = 11529, + [11530] = 11014, + [11531] = 10627, + [11532] = 10655, + [11533] = 10657, + [11534] = 10683, + [11535] = 11535, + [11536] = 10692, + [11537] = 10600, + [11538] = 11111, + [11539] = 10609, + [11540] = 10729, + [11541] = 10629, + [11542] = 10614, + [11543] = 10656, + [11544] = 10643, + [11545] = 10601, + [11546] = 10590, + [11547] = 2445, + [11548] = 10690, + [11549] = 10691, + [11550] = 10690, + [11551] = 10615, + [11552] = 10619, + [11553] = 10586, + [11554] = 10691, + [11555] = 10637, + [11556] = 10665, + [11557] = 10659, + [11558] = 10648, + [11559] = 10693, + [11560] = 10607, + [11561] = 10615, + [11562] = 10591, + [11563] = 10602, + [11564] = 10672, + [11565] = 11087, + [11566] = 10677, + [11567] = 10619, + [11568] = 11111, + [11569] = 10583, + [11570] = 10639, + [11571] = 10637, + [11572] = 10682, + [11573] = 10659, + [11574] = 10587, + [11575] = 10671, + [11576] = 2484, + [11577] = 10726, + [11578] = 10608, + [11579] = 10639, + [11580] = 10708, + [11581] = 10580, + [11582] = 10694, + [11583] = 10589, + [11584] = 10586, + [11585] = 10588, + [11586] = 10578, + [11587] = 10591, + [11588] = 10605, + [11589] = 10645, + [11590] = 10655, + [11591] = 10612, + [11592] = 10579, + [11593] = 10592, + [11594] = 10626, + [11595] = 10593, + [11596] = 10615, + [11597] = 10609, + [11598] = 10616, + [11599] = 10614, + [11600] = 10595, + [11601] = 10596, + [11602] = 10657, + [11603] = 10619, + [11604] = 10622, + [11605] = 10639, + [11606] = 10586, + [11607] = 10665, + [11608] = 10585, + [11609] = 10597, + [11610] = 10672, + [11611] = 10677, + [11612] = 10645, + [11613] = 11002, + [11614] = 11159, + [11615] = 10665, + [11616] = 10579, + [11617] = 10648, + [11618] = 10589, + [11619] = 10639, + [11620] = 10598, + [11621] = 10592, + [11622] = 10593, + [11623] = 10604, + [11624] = 10595, + [11625] = 10596, + [11626] = 10597, + [11627] = 10598, + [11628] = 10600, + [11629] = 10590, + [11630] = 10607, + [11631] = 10608, + [11632] = 10590, + [11633] = 10607, + [11634] = 10608, + [11635] = 10655, + [11636] = 2501, + [11637] = 10657, + [11638] = 10666, + [11639] = 10692, + [11640] = 10590, + [11641] = 10645, + [11642] = 10613, + [11643] = 10648, + [11644] = 10620, + [11645] = 10621, + [11646] = 10655, + [11647] = 10623, + [11648] = 10669, + [11649] = 10638, + [11650] = 10613, + [11651] = 10586, + [11652] = 10591, + [11653] = 10647, + [11654] = 10620, + [11655] = 10621, + [11656] = 10577, + [11657] = 10651, + [11658] = 10652, + [11659] = 10607, + [11660] = 10585, + [11661] = 10594, + [11662] = 10610, + [11663] = 10616, + [11664] = 10672, + [11665] = 10623, + [11666] = 10626, + [11667] = 10622, + [11668] = 10666, + [11669] = 10583, + [11670] = 10647, + [11671] = 10669, + [11672] = 10729, + [11673] = 10678, + [11674] = 10680, + [11675] = 10683, + [11676] = 10627, + [11677] = 10629, + [11678] = 10643, + [11679] = 10639, + [11680] = 10657, + [11681] = 10690, + [11682] = 10691, + [11683] = 10677, + [11684] = 10577, + [11685] = 10615, + [11686] = 10619, + [11687] = 10682, + [11688] = 10637, + [11689] = 10651, + [11690] = 10659, + [11691] = 10652, + [11692] = 10692, + [11693] = 10622, + [11694] = 10585, + [11695] = 10608, + [11696] = 10594, + [11697] = 10669, + [11698] = 10610, + [11699] = 11699, + [11700] = 10599, + [11701] = 11701, + [11702] = 10612, + [11703] = 10579, + [11704] = 10665, + [11705] = 10616, + [11706] = 10626, + [11707] = 11707, + [11708] = 10597, + [11709] = 10613, + [11710] = 10666, + [11711] = 10622, + [11712] = 11014, + [11713] = 10594, + [11714] = 10616, + [11715] = 10620, + [11716] = 10612, + [11717] = 10586, + [11718] = 10655, + [11719] = 10657, + [11720] = 10639, + [11721] = 10729, + [11722] = 10669, + [11723] = 10680, + [11724] = 10683, + [11725] = 10692, + [11726] = 10665, + [11727] = 10627, + [11728] = 10639, + [11729] = 10645, + [11730] = 11730, + [11731] = 10629, + [11732] = 10583, + [11733] = 10729, + [11734] = 10621, + [11735] = 10637, + [11736] = 10591, + [11737] = 10759, + [11738] = 10643, + [11739] = 10680, + [11740] = 10655, + [11741] = 10657, + [11742] = 11742, + [11743] = 10583, + [11744] = 10672, + [11745] = 10645, + [11746] = 10692, + [11747] = 10677, + [11748] = 10672, + [11749] = 10690, + [11750] = 11115, + [11751] = 10609, + [11752] = 10589, + [11753] = 10623, + [11754] = 11087, + [11755] = 10583, + [11756] = 10726, + [11757] = 11757, + [11758] = 10729, + [11759] = 10590, + [11760] = 10676, + [11761] = 11497, + [11762] = 10691, + [11763] = 10683, + [11764] = 10729, + [11765] = 10615, + [11766] = 10619, + [11767] = 10659, + [11768] = 10592, + [11769] = 10627, + [11770] = 10637, + [11771] = 10616, + [11772] = 10659, + [11773] = 10622, + [11774] = 10677, + [11775] = 10645, + [11776] = 10639, + [11777] = 10844, + [11778] = 10593, + [11779] = 10648, + [11780] = 10648, + [11781] = 10655, + [11782] = 10657, + [11783] = 11202, + [11784] = 10826, + [11785] = 10692, + [11786] = 10613, + [11787] = 10647, + [11788] = 10591, + [11789] = 10729, + [11790] = 10620, + [11791] = 10621, + [11792] = 11792, + [11793] = 11087, + [11794] = 11315, + [11795] = 11399, + [11796] = 11402, + [11797] = 10648, + [11798] = 11205, + [11799] = 10623, + [11800] = 10960, + [11801] = 10586, + [11802] = 10590, + [11803] = 10583, + [11804] = 11497, + [11805] = 11501, + [11806] = 10647, + [11807] = 10610, + [11808] = 10678, + [11809] = 10852, + [11810] = 11315, + [11811] = 11399, + [11812] = 11402, + [11813] = 10629, + [11814] = 10674, + [11815] = 10960, + [11816] = 10614, + [11817] = 11100, + [11818] = 11497, + [11819] = 11501, + [11820] = 11102, + [11821] = 11103, + [11822] = 11105, + [11823] = 10594, + [11824] = 11315, + [11825] = 11399, + [11826] = 11402, + [11827] = 10583, + [11828] = 11111, + [11829] = 10960, + [11830] = 10610, + [11831] = 11115, + [11832] = 11497, + [11833] = 11501, + [11834] = 10645, + [11835] = 10847, + [11836] = 10648, + [11837] = 10583, + [11838] = 11315, + [11839] = 11399, + [11840] = 11402, + [11841] = 10643, + [11842] = 10659, + [11843] = 10960, + [11844] = 10589, + [11845] = 10616, + [11846] = 11497, + [11847] = 11501, + [11848] = 10626, + [11849] = 10591, + [11850] = 10595, + [11851] = 10682, + [11852] = 11315, + [11853] = 11399, + [11854] = 11402, + [11855] = 10583, + [11856] = 10648, + [11857] = 10960, + [11858] = 10645, + [11859] = 11210, + [11860] = 11497, + [11861] = 11501, + [11862] = 10587, + [11863] = 10671, + [11864] = 10682, + [11865] = 10622, + [11866] = 11315, + [11867] = 11399, + [11868] = 11402, + [11869] = 10587, + [11870] = 10671, + [11871] = 10960, [11872] = 10666, - [11873] = 11404, - [11874] = 11379, - [11875] = 11387, - [11876] = 10515, - [11877] = 10668, - [11878] = 11400, - [11879] = 10520, - [11880] = 10630, - [11881] = 11379, - [11882] = 11387, - [11883] = 10516, - [11884] = 11884, - [11885] = 11379, - [11886] = 11387, - [11887] = 10523, - [11888] = 11604, - [11889] = 11379, - [11890] = 11387, - [11891] = 11772, - [11892] = 10538, - [11893] = 11379, - [11894] = 10508, - [11895] = 11400, - [11896] = 11379, - [11897] = 11288, - [11898] = 10508, - [11899] = 11379, - [11900] = 10835, - [11901] = 10651, - [11902] = 11379, - [11903] = 11068, - [11904] = 10546, - [11905] = 11379, - [11906] = 11288, - [11907] = 11379, - [11908] = 10512, - [11909] = 10524, - [11910] = 11206, - [11911] = 10666, - [11912] = 10546, - [11913] = 10573, - [11914] = 11068, - [11915] = 10550, - [11916] = 10574, - [11917] = 10552, - [11918] = 10553, - [11919] = 11381, - [11920] = 10668, - [11921] = 10579, - [11922] = 10555, - [11923] = 10512, - [11924] = 10541, - [11925] = 10517, - [11926] = 10518, - [11927] = 10558, - [11928] = 10559, - [11929] = 10517, - [11930] = 11380, - [11931] = 10592, - [11932] = 11387, - [11933] = 10546, - [11934] = 10635, - [11935] = 10563, - [11936] = 10634, - [11937] = 10524, - [11938] = 10557, - [11939] = 10712, - [11940] = 10512, - [11941] = 10595, - [11942] = 10518, - [11943] = 10938, - [11944] = 10524, - [11945] = 10543, - [11946] = 10538, - [11947] = 10513, - [11948] = 10540, - [11949] = 10507, - [11950] = 10514, - [11951] = 11951, - [11952] = 10544, - [11953] = 11301, - [11954] = 10563, - [11955] = 10524, - [11956] = 10551, - [11957] = 10554, - [11958] = 10550, - [11959] = 10541, - [11960] = 10552, - [11961] = 10553, - [11962] = 10511, - [11963] = 10507, - [11964] = 10621, - [11965] = 11186, - [11966] = 10555, - [11967] = 10511, - [11968] = 10511, - [11969] = 10511, - [11970] = 10511, - [11971] = 10511, - [11972] = 10511, - [11973] = 10511, - [11974] = 10511, - [11975] = 10511, - [11976] = 10511, - [11977] = 10511, - [11978] = 10511, - [11979] = 10511, - [11980] = 10756, - [11981] = 11981, - [11982] = 11982, + [11873] = 10645, + [11874] = 11497, + [11875] = 11501, + [11876] = 11213, + [11877] = 10682, + [11878] = 10726, + [11879] = 10591, + [11880] = 11315, + [11881] = 11399, + [11882] = 11402, + [11883] = 10592, + [11884] = 10708, + [11885] = 10960, + [11886] = 10639, + [11887] = 10593, + [11888] = 11497, + [11889] = 11501, + [11890] = 10609, + [11891] = 10580, + [11892] = 10726, + [11893] = 10577, + [11894] = 11315, + [11895] = 11399, + [11896] = 11402, + [11897] = 10591, + [11898] = 10588, + [11899] = 10960, + [11900] = 10708, + [11901] = 10657, + [11902] = 11497, + [11903] = 11501, + [11904] = 10580, + [11905] = 10616, + [11906] = 10669, + [11907] = 10605, + [11908] = 11315, + [11909] = 11399, + [11910] = 11402, + [11911] = 10680, + [11912] = 10627, + [11913] = 10960, + [11914] = 10622, + [11915] = 10655, + [11916] = 11497, + [11917] = 11501, + [11918] = 10588, + [11919] = 10612, + [11920] = 10579, + [11921] = 10657, + [11922] = 11315, + [11923] = 11399, + [11924] = 11402, + [11925] = 10639, + [11926] = 10583, + [11927] = 10960, + [11928] = 10629, + [11929] = 10605, + [11930] = 11497, + [11931] = 11501, + [11932] = 10643, + [11933] = 10665, + [11934] = 10609, + [11935] = 10596, + [11936] = 11315, + [11937] = 11399, + [11938] = 11402, + [11939] = 10614, + [11940] = 10655, + [11941] = 10960, + [11942] = 10657, + [11943] = 10583, + [11944] = 11497, + [11945] = 11501, + [11946] = 10682, + [11947] = 10692, + [11948] = 10682, + [11949] = 10587, + [11950] = 11315, + [11951] = 11399, + [11952] = 11402, + [11953] = 10671, + [11954] = 10690, + [11955] = 10960, + [11956] = 10692, + [11957] = 10726, + [11958] = 11497, + [11959] = 11501, + [11960] = 10691, + [11961] = 10586, + [11962] = 11315, + [11963] = 11399, + [11964] = 11402, + [11965] = 10960, + [11966] = 10581, + [11967] = 10648, + [11968] = 11497, + [11969] = 11501, + [11970] = 11154, + [11971] = 10665, + [11972] = 11315, + [11973] = 10960, + [11974] = 10729, + [11975] = 10595, + [11976] = 11497, + [11977] = 10615, + [11978] = 10708, + [11979] = 11315, + [11980] = 10960, + [11981] = 11157, + [11982] = 11159, + [11983] = 11315, + [11984] = 10960, + [11985] = 10619, + [11986] = 10672, + [11987] = 11315, + [11988] = 10960, + [11989] = 10612, + [11990] = 10677, + [11991] = 11315, + [11992] = 10580, + [11993] = 10579, + [11994] = 11315, + [11995] = 10651, + [11996] = 10637, + [11997] = 11315, + [11998] = 10659, + [11999] = 10607, + [12000] = 11315, + [12001] = 10629, + [12002] = 12002, + [12003] = 11315, + [12004] = 10588, + [12005] = 11315, + [12006] = 10609, + [12007] = 10682, + [12008] = 10614, + [12009] = 10587, + [12010] = 10597, + [12011] = 10587, + [12012] = 10666, + [12013] = 10690, + [12014] = 10645, + [12015] = 10671, + [12016] = 10671, + [12017] = 10691, + [12018] = 10586, + [12019] = 10665, + [12020] = 10598, + [12021] = 10605, + [12022] = 10672, + [12023] = 10677, + [12024] = 10639, + [12025] = 11196, + [12026] = 10608, + [12027] = 10726, + [12028] = 11501, + [12029] = 10655, + [12030] = 10960, + [12031] = 11201, + [12032] = 10589, + [12033] = 11202, + [12034] = 10657, + [12035] = 10592, + [12036] = 10593, + [12037] = 11205, + [12038] = 10595, + [12039] = 10596, + [12040] = 10597, + [12041] = 10598, + [12042] = 10583, + [12043] = 10600, + [12044] = 10590, + [12045] = 10607, + [12046] = 10608, + [12047] = 10652, + [12048] = 10612, + [12049] = 11210, + [12050] = 11213, + [12051] = 10583, + [12052] = 10600, + [12053] = 10613, + [12054] = 10616, + [12055] = 10620, + [12056] = 10621, + [12057] = 10810, + [12058] = 10623, + [12059] = 10708, + [12060] = 11444, + [12061] = 10612, + [12062] = 10647, + [12063] = 10579, + [12064] = 10729, + [12065] = 11444, + [12066] = 11444, + [12067] = 11444, + [12068] = 11444, + [12069] = 11444, + [12070] = 11444, + [12071] = 11444, + [12072] = 11444, + [12073] = 11444, + [12074] = 11444, + [12075] = 11444, + [12076] = 11444, + [12077] = 11444, + [12078] = 10626, + [12079] = 12079, + [12080] = 12080, }; static TSCharacterRange sym_ignored_backslash_character_set_1[] = { @@ -19928,390 +20040,400 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(115); END_STATE(); case 79: - if (lookahead == 'f') ADVANCE(116); + if (lookahead == 'e') ADVANCE(116); + if (lookahead == 'f') ADVANCE(117); END_STATE(); case 80: - if (lookahead == 'e') ADVANCE(117); + if (lookahead == 'e') ADVANCE(118); END_STATE(); case 81: - if (lookahead == 'u') ADVANCE(118); + if (lookahead == 'u') ADVANCE(119); END_STATE(); case 82: - if (lookahead == 'n') ADVANCE(119); + if (lookahead == 'n') ADVANCE(120); END_STATE(); case 83: - if (lookahead == 'e') ADVANCE(120); + if (lookahead == 'e') ADVANCE(121); END_STATE(); case 84: - if (lookahead == 'e') ADVANCE(121); + if (lookahead == 'e') ADVANCE(122); END_STATE(); case 85: - if (lookahead == 'i') ADVANCE(122); + if (lookahead == 'i') ADVANCE(123); END_STATE(); case 86: - if (lookahead == 'n') ADVANCE(123); + if (lookahead == 'n') ADVANCE(124); END_STATE(); case 87: - if (lookahead == 'l') ADVANCE(124); + if (lookahead == 'l') ADVANCE(125); END_STATE(); case 88: - if (lookahead == 'h') ADVANCE(125); + if (lookahead == 'h') ADVANCE(126); END_STATE(); case 89: - if (lookahead == 'l') ADVANCE(126); + if (lookahead == 'l') ADVANCE(127); END_STATE(); case 90: - if (lookahead == 'R') ADVANCE(127); + if (lookahead == 'R') ADVANCE(128); END_STATE(); case 91: - if (lookahead == 'D') ADVANCE(128); + if (lookahead == 'D') ADVANCE(129); END_STATE(); case 92: - if (lookahead == 'L') ADVANCE(129); + if (lookahead == 'L') ADVANCE(130); END_STATE(); case 93: - if (lookahead == 'N') ADVANCE(130); + if (lookahead == 'N') ADVANCE(131); END_STATE(); case 94: - if (lookahead == 'r') ADVANCE(131); + if (lookahead == 'r') ADVANCE(132); END_STATE(); case 95: - if (lookahead == 's') ADVANCE(132); + if (lookahead == 's') ADVANCE(133); END_STATE(); case 96: - if (lookahead == 't') ADVANCE(133); + if (lookahead == 't') ADVANCE(134); END_STATE(); case 97: - if (lookahead == 'n') ADVANCE(134); + if (lookahead == 'n') ADVANCE(135); END_STATE(); case 98: - if (lookahead == 'k') ADVANCE(135); + if (lookahead == 'k') ADVANCE(136); END_STATE(); case 99: ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 100: - if (lookahead == 's') ADVANCE(136); + if (lookahead == 's') ADVANCE(137); END_STATE(); case 101: ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 102: - if (lookahead == 'f') ADVANCE(137); + if (lookahead == 'f') ADVANCE(138); END_STATE(); case 103: ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 104: - if (lookahead == 'n') ADVANCE(138); + if (lookahead == 'n') ADVANCE(139); END_STATE(); case 105: - if (lookahead == 'e') ADVANCE(139); + if (lookahead == 'e') ADVANCE(140); END_STATE(); case 106: - if (lookahead == 'l') ADVANCE(140); + if (lookahead == 'l') ADVANCE(141); END_STATE(); case 107: - if (lookahead == 'u') ADVANCE(141); + if (lookahead == 'u') ADVANCE(142); END_STATE(); case 108: - if (lookahead == 'a') ADVANCE(142); + if (lookahead == 'a') ADVANCE(143); END_STATE(); case 109: - if (lookahead == 'l') ADVANCE(143); + if (lookahead == 'l') ADVANCE(144); END_STATE(); case 110: ACCEPT_TOKEN(anon_sym_next); END_STATE(); case 111: - if (lookahead == 'e') ADVANCE(144); + if (lookahead == 'e') ADVANCE(145); END_STATE(); case 112: - if (lookahead == 'a') ADVANCE(145); + if (lookahead == 'a') ADVANCE(146); END_STATE(); case 113: - if (lookahead == 'e') ADVANCE(146); + if (lookahead == 'e') ADVANCE(147); END_STATE(); case 114: - if (lookahead == 'i') ADVANCE(147); + if (lookahead == 'i') ADVANCE(148); END_STATE(); case 115: - if (lookahead == 'r') ADVANCE(148); + if (lookahead == 'r') ADVANCE(149); END_STATE(); case 116: - ACCEPT_TOKEN(sym_self); + if (lookahead == 'c') ADVANCE(150); END_STATE(); case 117: - if (lookahead == 'o') ADVANCE(149); + ACCEPT_TOKEN(sym_self); END_STATE(); case 118: - if (lookahead == 'c') ADVANCE(150); + if (lookahead == 'o') ADVANCE(151); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_then); + if (lookahead == 'c') ADVANCE(152); END_STATE(); case 120: - ACCEPT_TOKEN(sym_true); + ACCEPT_TOKEN(anon_sym_then); END_STATE(); case 121: - if (lookahead == 'o') ADVANCE(151); + ACCEPT_TOKEN(sym_true); END_STATE(); case 122: - if (lookahead == 'l') ADVANCE(152); + if (lookahead == 'o') ADVANCE(153); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_when); + if (lookahead == 'l') ADVANCE(154); END_STATE(); case 124: - if (lookahead == 'e') ADVANCE(153); + ACCEPT_TOKEN(anon_sym_when); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_with); + if (lookahead == 'e') ADVANCE(155); END_STATE(); case 126: - if (lookahead == 'd') ADVANCE(154); + ACCEPT_TOKEN(anon_sym_with); END_STATE(); case 127: - if (lookahead == '_') ADVANCE(155); + if (lookahead == 'd') ADVANCE(156); END_STATE(); case 128: - if (lookahead == '_') ADVANCE(156); + if (lookahead == '_') ADVANCE(157); END_STATE(); case 129: - if (lookahead == 'E') ADVANCE(157); + if (lookahead == '_') ADVANCE(158); END_STATE(); case 130: - if (lookahead == 'E') ADVANCE(158); + if (lookahead == 'E') ADVANCE(159); END_STATE(); case 131: - if (lookahead == 'a') ADVANCE(159); + if (lookahead == 'E') ADVANCE(160); END_STATE(); case 132: - ACCEPT_TOKEN(anon_sym_alias); + if (lookahead == 'a') ADVANCE(161); END_STATE(); case 133: - if (lookahead == 'a') ADVANCE(160); + ACCEPT_TOKEN(anon_sym_alias); END_STATE(); case 134: - ACCEPT_TOKEN(anon_sym_begin); + if (lookahead == 'a') ADVANCE(162); END_STATE(); case 135: - ACCEPT_TOKEN(anon_sym_break); + ACCEPT_TOKEN(anon_sym_begin); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_class); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 137: - ACCEPT_TOKEN(anon_sym_elsif); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 138: - if (lookahead == 'd') ADVANCE(161); + ACCEPT_TOKEN(anon_sym_elsif); END_STATE(); case 139: - ACCEPT_TOKEN(sym_false); + if (lookahead == 'd') ADVANCE(163); END_STATE(); case 140: - if (lookahead == 'l') ADVANCE(162); + ACCEPT_TOKEN(sym_false); END_STATE(); case 141: - if (lookahead == 'd') ADVANCE(163); + if (lookahead == 'l') ADVANCE(164); END_STATE(); case 142: - if (lookahead == 'n') ADVANCE(164); + if (lookahead == 'd') ADVANCE(165); END_STATE(); case 143: - if (lookahead == 'e') ADVANCE(165); + if (lookahead == 'n') ADVANCE(166); END_STATE(); case 144: - if (lookahead == 't') ADVANCE(166); + if (lookahead == 'e') ADVANCE(167); END_STATE(); case 145: - if (lookahead == 't') ADVANCE(167); + if (lookahead == 't') ADVANCE(168); END_STATE(); case 146: - if (lookahead == 'c') ADVANCE(168); + if (lookahead == 't') ADVANCE(169); END_STATE(); case 147: - if (lookahead == 'r') ADVANCE(169); + if (lookahead == 'c') ADVANCE(170); END_STATE(); case 148: - if (lookahead == 'n') ADVANCE(170); + if (lookahead == 'r') ADVANCE(171); END_STATE(); case 149: - if (lookahead == 'f') ADVANCE(171); + if (lookahead == 'n') ADVANCE(172); END_STATE(); case 150: - if (lookahead == 't') ADVANCE(172); + if (lookahead == 't') ADVANCE(173); END_STATE(); case 151: - if (lookahead == 'f') ADVANCE(173); + if (lookahead == 'f') ADVANCE(174); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_until); + if (lookahead == 't') ADVANCE(175); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_while); + if (lookahead == 'f') ADVANCE(176); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_yield); + ACCEPT_TOKEN(anon_sym_until); END_STATE(); case 155: - if (lookahead == '_') ADVANCE(174); + ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 156: - if (lookahead == 'L') ADVANCE(175); + ACCEPT_TOKEN(anon_sym_yield); END_STATE(); case 157: - if (lookahead == '_') ADVANCE(176); + if (lookahead == '_') ADVANCE(177); END_STATE(); case 158: - if (lookahead == '_') ADVANCE(177); + if (lookahead == 'L') ADVANCE(178); END_STATE(); case 159: - if (lookahead == 'c') ADVANCE(178); + if (lookahead == '_') ADVANCE(179); END_STATE(); case 160: - if (lookahead == 't') ADVANCE(179); + if (lookahead == '_') ADVANCE(180); END_STATE(); case 161: - ACCEPT_TOKEN(anon_sym_extend); + if (lookahead == 'c') ADVANCE(181); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_forall); + if (lookahead == 't') ADVANCE(182); END_STATE(); case 163: - if (lookahead == 'e') ADVANCE(180); + ACCEPT_TOKEN(anon_sym_extend); END_STATE(); case 164: - if (lookahead == 'c') ADVANCE(181); + ACCEPT_TOKEN(anon_sym_forall); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_module); + if (lookahead == 'e') ADVANCE(183); END_STATE(); case 166: - if (lookahead == 'o') ADVANCE(182); + if (lookahead == 'c') ADVANCE(184); END_STATE(); case 167: - if (lookahead == 'e') ADVANCE(183); + ACCEPT_TOKEN(anon_sym_module); END_STATE(); case 168: - if (lookahead == 't') ADVANCE(184); + if (lookahead == 'o') ADVANCE(185); END_STATE(); case 169: - if (lookahead == 'e') ADVANCE(185); + if (lookahead == 'e') ADVANCE(186); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_return); + if (lookahead == 't') ADVANCE(187); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_sizeof); + if (lookahead == 'e') ADVANCE(188); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_struct); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_typeof); + ACCEPT_TOKEN(anon_sym_select); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym___DIR__); + ACCEPT_TOKEN(anon_sym_sizeof); END_STATE(); case 175: - if (lookahead == 'I') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_struct); END_STATE(); case 176: - if (lookahead == '_') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_typeof); END_STATE(); case 177: - if (lookahead == '_') ADVANCE(188); + ACCEPT_TOKEN(anon_sym___DIR__); END_STATE(); case 178: - if (lookahead == 't') ADVANCE(189); + if (lookahead == 'I') ADVANCE(189); END_STATE(); case 179: - if (lookahead == 'i') ADVANCE(190); + if (lookahead == '_') ADVANCE(190); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_include); + if (lookahead == '_') ADVANCE(191); END_STATE(); case 181: - if (lookahead == 'e') ADVANCE(191); + if (lookahead == 't') ADVANCE(192); END_STATE(); case 182: - if (lookahead == 'f') ADVANCE(192); + if (lookahead == 'i') ADVANCE(193); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_private); + ACCEPT_TOKEN(anon_sym_include); END_STATE(); case 184: - if (lookahead == 'e') ADVANCE(193); + if (lookahead == 'e') ADVANCE(194); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_require); + if (lookahead == 'f') ADVANCE(195); END_STATE(); case 186: - if (lookahead == 'N') ADVANCE(194); + ACCEPT_TOKEN(anon_sym_private); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym___FILE__); + if (lookahead == 'e') ADVANCE(196); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym___LINE__); + ACCEPT_TOKEN(anon_sym_require); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_abstract); + if (lookahead == 'N') ADVANCE(197); END_STATE(); case 190: - if (lookahead == 'o') ADVANCE(195); + ACCEPT_TOKEN(anon_sym___FILE__); END_STATE(); case 191: - if (lookahead == '_') ADVANCE(196); + ACCEPT_TOKEN(anon_sym___LINE__); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_offsetof); + ACCEPT_TOKEN(anon_sym_abstract); END_STATE(); case 193: - if (lookahead == 'd') ADVANCE(197); + if (lookahead == 'o') ADVANCE(198); END_STATE(); case 194: - if (lookahead == 'E') ADVANCE(198); + if (lookahead == '_') ADVANCE(199); END_STATE(); case 195: - if (lookahead == 'n') ADVANCE(199); + ACCEPT_TOKEN(anon_sym_offsetof); END_STATE(); case 196: - if (lookahead == 's') ADVANCE(200); + if (lookahead == 'd') ADVANCE(200); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_protected); + if (lookahead == 'E') ADVANCE(201); END_STATE(); case 198: - if (lookahead == '_') ADVANCE(201); + if (lookahead == 'n') ADVANCE(202); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_annotation); + if (lookahead == 's') ADVANCE(203); END_STATE(); case 200: - if (lookahead == 'i') ADVANCE(202); + ACCEPT_TOKEN(anon_sym_protected); END_STATE(); case 201: - if (lookahead == '_') ADVANCE(203); + if (lookahead == '_') ADVANCE(204); END_STATE(); case 202: - if (lookahead == 'z') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_annotation); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym___END_LINE__); + if (lookahead == 'i') ADVANCE(205); END_STATE(); case 204: - if (lookahead == 'e') ADVANCE(205); + if (lookahead == '_') ADVANCE(206); END_STATE(); case 205: - if (lookahead == 'o') ADVANCE(206); + if (lookahead == 'z') ADVANCE(207); END_STATE(); case 206: - if (lookahead == 'f') ADVANCE(207); + ACCEPT_TOKEN(anon_sym___END_LINE__); END_STATE(); case 207: + if (lookahead == 'e') ADVANCE(208); + END_STATE(); + case 208: + if (lookahead == 'o') ADVANCE(209); + END_STATE(); + case 209: + if (lookahead == 'f') ADVANCE(210); + END_STATE(); + case 210: ACCEPT_TOKEN(anon_sym_instance_sizeof); END_STATE(); default: @@ -20339,32 +20461,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [16] = {.lex_state = 167, .external_lex_state = 5}, [17] = {.lex_state = 166, .external_lex_state = 6}, [18] = {.lex_state = 167, .external_lex_state = 5}, - [19] = {.lex_state = 166, .external_lex_state = 6}, - [20] = {.lex_state = 167, .external_lex_state = 5}, + [19] = {.lex_state = 167, .external_lex_state = 5}, + [20] = {.lex_state = 166, .external_lex_state = 6}, [21] = {.lex_state = 167, .external_lex_state = 5}, [22] = {.lex_state = 167, .external_lex_state = 6}, [23] = {.lex_state = 167, .external_lex_state = 6}, [24] = {.lex_state = 167, .external_lex_state = 6}, [25] = {.lex_state = 166, .external_lex_state = 7}, [26] = {.lex_state = 166, .external_lex_state = 7}, - [27] = {.lex_state = 18, .external_lex_state = 6}, + [27] = {.lex_state = 17, .external_lex_state = 6}, [28] = {.lex_state = 17, .external_lex_state = 6}, - [29] = {.lex_state = 17, .external_lex_state = 6}, + [29] = {.lex_state = 167, .external_lex_state = 7}, [30] = {.lex_state = 18, .external_lex_state = 6}, - [31] = {.lex_state = 167, .external_lex_state = 7}, + [31] = {.lex_state = 18, .external_lex_state = 6}, [32] = {.lex_state = 167, .external_lex_state = 7}, - [33] = {.lex_state = 19, .external_lex_state = 6}, + [33] = {.lex_state = 166, .external_lex_state = 8}, [34] = {.lex_state = 19, .external_lex_state = 6}, - [35] = {.lex_state = 166, .external_lex_state = 8}, - [36] = {.lex_state = 166, .external_lex_state = 8}, + [35] = {.lex_state = 19, .external_lex_state = 6}, + [36] = {.lex_state = 20, .external_lex_state = 6}, [37] = {.lex_state = 20, .external_lex_state = 6}, - [38] = {.lex_state = 20, .external_lex_state = 6}, + [38] = {.lex_state = 166, .external_lex_state = 8}, [39] = {.lex_state = 166, .external_lex_state = 6}, [40] = {.lex_state = 166, .external_lex_state = 6}, [41] = {.lex_state = 167, .external_lex_state = 8}, [42] = {.lex_state = 167, .external_lex_state = 8}, [43] = {.lex_state = 167, .external_lex_state = 7}, - [44] = {.lex_state = 167, .external_lex_state = 6}, + [44] = {.lex_state = 167, .external_lex_state = 8}, [45] = {.lex_state = 167, .external_lex_state = 6}, [46] = {.lex_state = 167, .external_lex_state = 6}, [47] = {.lex_state = 167, .external_lex_state = 6}, @@ -20373,7 +20495,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [50] = {.lex_state = 167, .external_lex_state = 6}, [51] = {.lex_state = 167, .external_lex_state = 6}, [52] = {.lex_state = 19, .external_lex_state = 6}, - [53] = {.lex_state = 167, .external_lex_state = 8}, + [53] = {.lex_state = 167, .external_lex_state = 6}, [54] = {.lex_state = 167, .external_lex_state = 6}, [55] = {.lex_state = 169, .external_lex_state = 3}, [56] = {.lex_state = 169, .external_lex_state = 3}, @@ -20390,48 +20512,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [67] = {.lex_state = 169, .external_lex_state = 3}, [68] = {.lex_state = 169, .external_lex_state = 4}, [69] = {.lex_state = 169, .external_lex_state = 4}, - [70] = {.lex_state = 169, .external_lex_state = 9}, + [70] = {.lex_state = 169, .external_lex_state = 4}, [71] = {.lex_state = 169, .external_lex_state = 4}, [72] = {.lex_state = 169, .external_lex_state = 4}, [73] = {.lex_state = 169, .external_lex_state = 9}, [74] = {.lex_state = 169, .external_lex_state = 4}, [75] = {.lex_state = 169, .external_lex_state = 4}, - [76] = {.lex_state = 169, .external_lex_state = 4}, + [76] = {.lex_state = 169, .external_lex_state = 9}, [77] = {.lex_state = 169, .external_lex_state = 4}, - [78] = {.lex_state = 169, .external_lex_state = 5}, - [79] = {.lex_state = 169, .external_lex_state = 9}, - [80] = {.lex_state = 169, .external_lex_state = 9}, - [81] = {.lex_state = 169, .external_lex_state = 5}, - [82] = {.lex_state = 169, .external_lex_state = 4}, - [83] = {.lex_state = 169, .external_lex_state = 4}, - [84] = {.lex_state = 169, .external_lex_state = 4}, + [78] = {.lex_state = 169, .external_lex_state = 4}, + [79] = {.lex_state = 169, .external_lex_state = 4}, + [80] = {.lex_state = 169, .external_lex_state = 5}, + [81] = {.lex_state = 169, .external_lex_state = 4}, + [82] = {.lex_state = 169, .external_lex_state = 9}, + [83] = {.lex_state = 169, .external_lex_state = 9}, + [84] = {.lex_state = 169, .external_lex_state = 5}, [85] = {.lex_state = 169, .external_lex_state = 5}, - [86] = {.lex_state = 169, .external_lex_state = 4}, - [87] = {.lex_state = 169, .external_lex_state = 5}, - [88] = {.lex_state = 169, .external_lex_state = 5}, - [89] = {.lex_state = 169, .external_lex_state = 6}, - [90] = {.lex_state = 169, .external_lex_state = 6}, - [91] = {.lex_state = 169, .external_lex_state = 4}, + [86] = {.lex_state = 169, .external_lex_state = 6}, + [87] = {.lex_state = 169, .external_lex_state = 6}, + [88] = {.lex_state = 169, .external_lex_state = 4}, + [89] = {.lex_state = 169, .external_lex_state = 5}, + [90] = {.lex_state = 169, .external_lex_state = 4}, + [91] = {.lex_state = 169, .external_lex_state = 5}, [92] = {.lex_state = 169, .external_lex_state = 5}, [93] = {.lex_state = 169, .external_lex_state = 5}, [94] = {.lex_state = 169, .external_lex_state = 5}, [95] = {.lex_state = 169, .external_lex_state = 6}, [96] = {.lex_state = 169, .external_lex_state = 6}, - [97] = {.lex_state = 169, .external_lex_state = 6}, + [97] = {.lex_state = 169, .external_lex_state = 5}, [98] = {.lex_state = 169, .external_lex_state = 6}, [99] = {.lex_state = 169, .external_lex_state = 5}, [100] = {.lex_state = 169, .external_lex_state = 6}, - [101] = {.lex_state = 169, .external_lex_state = 5}, + [101] = {.lex_state = 169, .external_lex_state = 6}, [102] = {.lex_state = 169, .external_lex_state = 5}, [103] = {.lex_state = 169, .external_lex_state = 6}, [104] = {.lex_state = 169, .external_lex_state = 5}, [105] = {.lex_state = 169, .external_lex_state = 5}, [106] = {.lex_state = 169, .external_lex_state = 10}, [107] = {.lex_state = 169, .external_lex_state = 10}, - [108] = {.lex_state = 175, .external_lex_state = 11}, - [109] = {.lex_state = 169, .external_lex_state = 6}, + [108] = {.lex_state = 169, .external_lex_state = 10}, + [109] = {.lex_state = 175, .external_lex_state = 11}, [110] = {.lex_state = 175, .external_lex_state = 11}, - [111] = {.lex_state = 169, .external_lex_state = 10}, + [111] = {.lex_state = 175, .external_lex_state = 11}, [112] = {.lex_state = 175, .external_lex_state = 11}, [113] = {.lex_state = 175, .external_lex_state = 11}, [114] = {.lex_state = 175, .external_lex_state = 11}, @@ -20439,294 +20561,294 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [116] = {.lex_state = 175, .external_lex_state = 11}, [117] = {.lex_state = 175, .external_lex_state = 11}, [118] = {.lex_state = 175, .external_lex_state = 11}, - [119] = {.lex_state = 175, .external_lex_state = 11}, + [119] = {.lex_state = 169, .external_lex_state = 6}, [120] = {.lex_state = 175, .external_lex_state = 11}, [121] = {.lex_state = 175, .external_lex_state = 11}, - [122] = {.lex_state = 169, .external_lex_state = 10}, + [122] = {.lex_state = 169, .external_lex_state = 6}, [123] = {.lex_state = 169, .external_lex_state = 6}, [124] = {.lex_state = 169, .external_lex_state = 6}, [125] = {.lex_state = 169, .external_lex_state = 6}, - [126] = {.lex_state = 175, .external_lex_state = 11}, - [127] = {.lex_state = 169, .external_lex_state = 6}, + [126] = {.lex_state = 169, .external_lex_state = 10}, + [127] = {.lex_state = 175, .external_lex_state = 11}, [128] = {.lex_state = 175, .external_lex_state = 11}, - [129] = {.lex_state = 169, .external_lex_state = 12}, - [130] = {.lex_state = 175, .external_lex_state = 13}, - [131] = {.lex_state = 169, .external_lex_state = 7}, - [132] = {.lex_state = 175, .external_lex_state = 13}, - [133] = {.lex_state = 175, .external_lex_state = 13}, - [134] = {.lex_state = 175, .external_lex_state = 13}, - [135] = {.lex_state = 175, .external_lex_state = 13}, - [136] = {.lex_state = 175, .external_lex_state = 13}, - [137] = {.lex_state = 175, .external_lex_state = 13}, - [138] = {.lex_state = 175, .external_lex_state = 13}, - [139] = {.lex_state = 175, .external_lex_state = 13}, - [140] = {.lex_state = 175, .external_lex_state = 13}, - [141] = {.lex_state = 175, .external_lex_state = 13}, - [142] = {.lex_state = 175, .external_lex_state = 13}, - [143] = {.lex_state = 175, .external_lex_state = 13}, - [144] = {.lex_state = 169, .external_lex_state = 12}, - [145] = {.lex_state = 169, .external_lex_state = 7}, - [146] = {.lex_state = 175, .external_lex_state = 13}, - [147] = {.lex_state = 175, .external_lex_state = 13}, - [148] = {.lex_state = 175, .external_lex_state = 13}, - [149] = {.lex_state = 175, .external_lex_state = 13}, - [150] = {.lex_state = 175, .external_lex_state = 13}, - [151] = {.lex_state = 175, .external_lex_state = 13}, - [152] = {.lex_state = 175, .external_lex_state = 13}, - [153] = {.lex_state = 169, .external_lex_state = 6}, - [154] = {.lex_state = 169, .external_lex_state = 14}, - [155] = {.lex_state = 175, .external_lex_state = 13}, - [156] = {.lex_state = 175, .external_lex_state = 13}, - [157] = {.lex_state = 169, .external_lex_state = 12}, - [158] = {.lex_state = 169, .external_lex_state = 6}, - [159] = {.lex_state = 175, .external_lex_state = 13}, - [160] = {.lex_state = 175, .external_lex_state = 13}, - [161] = {.lex_state = 23, .external_lex_state = 6}, - [162] = {.lex_state = 169, .external_lex_state = 12}, - [163] = {.lex_state = 175, .external_lex_state = 13}, - [164] = {.lex_state = 175, .external_lex_state = 13}, - [165] = {.lex_state = 175, .external_lex_state = 13}, - [166] = {.lex_state = 175, .external_lex_state = 13}, - [167] = {.lex_state = 169, .external_lex_state = 14}, - [168] = {.lex_state = 175, .external_lex_state = 13}, - [169] = {.lex_state = 175, .external_lex_state = 13}, - [170] = {.lex_state = 175, .external_lex_state = 13}, - [171] = {.lex_state = 175, .external_lex_state = 13}, - [172] = {.lex_state = 175, .external_lex_state = 13}, - [173] = {.lex_state = 23, .external_lex_state = 6}, - [174] = {.lex_state = 175, .external_lex_state = 13}, - [175] = {.lex_state = 175, .external_lex_state = 13}, - [176] = {.lex_state = 175, .external_lex_state = 13}, - [177] = {.lex_state = 175, .external_lex_state = 13}, - [178] = {.lex_state = 175, .external_lex_state = 13}, - [179] = {.lex_state = 175, .external_lex_state = 13}, - [180] = {.lex_state = 175, .external_lex_state = 13}, - [181] = {.lex_state = 175, .external_lex_state = 13}, - [182] = {.lex_state = 175, .external_lex_state = 13}, - [183] = {.lex_state = 175, .external_lex_state = 13}, - [184] = {.lex_state = 175, .external_lex_state = 13}, - [185] = {.lex_state = 175, .external_lex_state = 13}, - [186] = {.lex_state = 175, .external_lex_state = 13}, - [187] = {.lex_state = 175, .external_lex_state = 13}, - [188] = {.lex_state = 175, .external_lex_state = 13}, - [189] = {.lex_state = 175, .external_lex_state = 13}, - [190] = {.lex_state = 175, .external_lex_state = 13}, - [191] = {.lex_state = 169, .external_lex_state = 7}, - [192] = {.lex_state = 175, .external_lex_state = 13}, - [193] = {.lex_state = 169, .external_lex_state = 7}, + [129] = {.lex_state = 175, .external_lex_state = 12}, + [130] = {.lex_state = 175, .external_lex_state = 12}, + [131] = {.lex_state = 175, .external_lex_state = 12}, + [132] = {.lex_state = 175, .external_lex_state = 12}, + [133] = {.lex_state = 175, .external_lex_state = 12}, + [134] = {.lex_state = 175, .external_lex_state = 12}, + [135] = {.lex_state = 175, .external_lex_state = 12}, + [136] = {.lex_state = 175, .external_lex_state = 12}, + [137] = {.lex_state = 169, .external_lex_state = 7}, + [138] = {.lex_state = 175, .external_lex_state = 12}, + [139] = {.lex_state = 175, .external_lex_state = 12}, + [140] = {.lex_state = 175, .external_lex_state = 12}, + [141] = {.lex_state = 175, .external_lex_state = 12}, + [142] = {.lex_state = 169, .external_lex_state = 7}, + [143] = {.lex_state = 175, .external_lex_state = 12}, + [144] = {.lex_state = 175, .external_lex_state = 12}, + [145] = {.lex_state = 175, .external_lex_state = 12}, + [146] = {.lex_state = 175, .external_lex_state = 12}, + [147] = {.lex_state = 169, .external_lex_state = 13}, + [148] = {.lex_state = 169, .external_lex_state = 13}, + [149] = {.lex_state = 175, .external_lex_state = 12}, + [150] = {.lex_state = 169, .external_lex_state = 14}, + [151] = {.lex_state = 23, .external_lex_state = 6}, + [152] = {.lex_state = 169, .external_lex_state = 6}, + [153] = {.lex_state = 169, .external_lex_state = 14}, + [154] = {.lex_state = 175, .external_lex_state = 12}, + [155] = {.lex_state = 175, .external_lex_state = 12}, + [156] = {.lex_state = 175, .external_lex_state = 12}, + [157] = {.lex_state = 175, .external_lex_state = 12}, + [158] = {.lex_state = 175, .external_lex_state = 12}, + [159] = {.lex_state = 175, .external_lex_state = 12}, + [160] = {.lex_state = 175, .external_lex_state = 12}, + [161] = {.lex_state = 175, .external_lex_state = 12}, + [162] = {.lex_state = 175, .external_lex_state = 12}, + [163] = {.lex_state = 175, .external_lex_state = 12}, + [164] = {.lex_state = 175, .external_lex_state = 12}, + [165] = {.lex_state = 175, .external_lex_state = 12}, + [166] = {.lex_state = 175, .external_lex_state = 12}, + [167] = {.lex_state = 175, .external_lex_state = 12}, + [168] = {.lex_state = 175, .external_lex_state = 12}, + [169] = {.lex_state = 175, .external_lex_state = 12}, + [170] = {.lex_state = 175, .external_lex_state = 12}, + [171] = {.lex_state = 175, .external_lex_state = 12}, + [172] = {.lex_state = 175, .external_lex_state = 12}, + [173] = {.lex_state = 169, .external_lex_state = 7}, + [174] = {.lex_state = 169, .external_lex_state = 7}, + [175] = {.lex_state = 175, .external_lex_state = 12}, + [176] = {.lex_state = 175, .external_lex_state = 12}, + [177] = {.lex_state = 175, .external_lex_state = 12}, + [178] = {.lex_state = 175, .external_lex_state = 12}, + [179] = {.lex_state = 175, .external_lex_state = 12}, + [180] = {.lex_state = 175, .external_lex_state = 12}, + [181] = {.lex_state = 175, .external_lex_state = 12}, + [182] = {.lex_state = 175, .external_lex_state = 12}, + [183] = {.lex_state = 175, .external_lex_state = 12}, + [184] = {.lex_state = 175, .external_lex_state = 12}, + [185] = {.lex_state = 175, .external_lex_state = 12}, + [186] = {.lex_state = 169, .external_lex_state = 13}, + [187] = {.lex_state = 175, .external_lex_state = 12}, + [188] = {.lex_state = 175, .external_lex_state = 12}, + [189] = {.lex_state = 175, .external_lex_state = 12}, + [190] = {.lex_state = 175, .external_lex_state = 12}, + [191] = {.lex_state = 175, .external_lex_state = 12}, + [192] = {.lex_state = 175, .external_lex_state = 12}, + [193] = {.lex_state = 23, .external_lex_state = 6}, [194] = {.lex_state = 169, .external_lex_state = 7}, - [195] = {.lex_state = 169, .external_lex_state = 7}, - [196] = {.lex_state = 169, .external_lex_state = 7}, + [195] = {.lex_state = 169, .external_lex_state = 13}, + [196] = {.lex_state = 175, .external_lex_state = 12}, [197] = {.lex_state = 169, .external_lex_state = 7}, - [198] = {.lex_state = 175, .external_lex_state = 13}, - [199] = {.lex_state = 175, .external_lex_state = 13}, - [200] = {.lex_state = 175, .external_lex_state = 13}, - [201] = {.lex_state = 175, .external_lex_state = 13}, - [202] = {.lex_state = 175, .external_lex_state = 2}, - [203] = {.lex_state = 169, .external_lex_state = 8}, + [198] = {.lex_state = 169, .external_lex_state = 7}, + [199] = {.lex_state = 169, .external_lex_state = 7}, + [200] = {.lex_state = 169, .external_lex_state = 6}, + [201] = {.lex_state = 175, .external_lex_state = 12}, + [202] = {.lex_state = 23, .external_lex_state = 6}, + [203] = {.lex_state = 169, .external_lex_state = 6}, [204] = {.lex_state = 169, .external_lex_state = 6}, - [205] = {.lex_state = 23, .external_lex_state = 6}, - [206] = {.lex_state = 169, .external_lex_state = 6}, + [205] = {.lex_state = 169, .external_lex_state = 8}, + [206] = {.lex_state = 23, .external_lex_state = 6}, [207] = {.lex_state = 169, .external_lex_state = 6}, [208] = {.lex_state = 169, .external_lex_state = 6}, - [209] = {.lex_state = 23, .external_lex_state = 6}, - [210] = {.lex_state = 169, .external_lex_state = 6}, + [209] = {.lex_state = 169, .external_lex_state = 6}, + [210] = {.lex_state = 169, .external_lex_state = 8}, [211] = {.lex_state = 23, .external_lex_state = 6}, [212] = {.lex_state = 169, .external_lex_state = 6}, - [213] = {.lex_state = 169, .external_lex_state = 6}, + [213] = {.lex_state = 23, .external_lex_state = 6}, [214] = {.lex_state = 23, .external_lex_state = 6}, - [215] = {.lex_state = 23, .external_lex_state = 6}, + [215] = {.lex_state = 175, .external_lex_state = 2}, [216] = {.lex_state = 175, .external_lex_state = 2}, - [217] = {.lex_state = 169, .external_lex_state = 8}, + [217] = {.lex_state = 23, .external_lex_state = 6}, [218] = {.lex_state = 169, .external_lex_state = 6}, - [219] = {.lex_state = 23, .external_lex_state = 6}, - [220] = {.lex_state = 169, .external_lex_state = 7}, - [221] = {.lex_state = 175, .external_lex_state = 2}, + [219] = {.lex_state = 169, .external_lex_state = 6}, + [220] = {.lex_state = 175, .external_lex_state = 2}, + [221] = {.lex_state = 169, .external_lex_state = 8}, [222] = {.lex_state = 175, .external_lex_state = 2}, [223] = {.lex_state = 175, .external_lex_state = 2}, [224] = {.lex_state = 175, .external_lex_state = 2}, - [225] = {.lex_state = 169, .external_lex_state = 7}, - [226] = {.lex_state = 169, .external_lex_state = 8}, - [227] = {.lex_state = 175, .external_lex_state = 2}, - [228] = {.lex_state = 24, .external_lex_state = 6}, - [229] = {.lex_state = 175, .external_lex_state = 2}, + [225] = {.lex_state = 175, .external_lex_state = 2}, + [226] = {.lex_state = 175, .external_lex_state = 2}, + [227] = {.lex_state = 169, .external_lex_state = 8}, + [228] = {.lex_state = 169, .external_lex_state = 7}, + [229] = {.lex_state = 24, .external_lex_state = 6}, [230] = {.lex_state = 175, .external_lex_state = 2}, - [231] = {.lex_state = 169, .external_lex_state = 7}, + [231] = {.lex_state = 175, .external_lex_state = 2}, [232] = {.lex_state = 175, .external_lex_state = 2}, - [233] = {.lex_state = 169, .external_lex_state = 8}, + [233] = {.lex_state = 175, .external_lex_state = 2}, [234] = {.lex_state = 175, .external_lex_state = 2}, - [235] = {.lex_state = 175, .external_lex_state = 2}, + [235] = {.lex_state = 169, .external_lex_state = 7}, [236] = {.lex_state = 175, .external_lex_state = 2}, - [237] = {.lex_state = 175, .external_lex_state = 2}, - [238] = {.lex_state = 24, .external_lex_state = 6}, - [239] = {.lex_state = 175, .external_lex_state = 2}, - [240] = {.lex_state = 24, .external_lex_state = 6}, - [241] = {.lex_state = 175, .external_lex_state = 2}, - [242] = {.lex_state = 169, .external_lex_state = 14}, - [243] = {.lex_state = 169, .external_lex_state = 8}, - [244] = {.lex_state = 169, .external_lex_state = 7}, + [237] = {.lex_state = 24, .external_lex_state = 6}, + [238] = {.lex_state = 175, .external_lex_state = 2}, + [239] = {.lex_state = 169, .external_lex_state = 7}, + [240] = {.lex_state = 169, .external_lex_state = 8}, + [241] = {.lex_state = 169, .external_lex_state = 14}, + [242] = {.lex_state = 169, .external_lex_state = 8}, + [243] = {.lex_state = 24, .external_lex_state = 6}, + [244] = {.lex_state = 175, .external_lex_state = 2}, [245] = {.lex_state = 169, .external_lex_state = 14}, [246] = {.lex_state = 169, .external_lex_state = 8}, [247] = {.lex_state = 169, .external_lex_state = 8}, - [248] = {.lex_state = 175, .external_lex_state = 2}, - [249] = {.lex_state = 169, .external_lex_state = 7}, + [248] = {.lex_state = 169, .external_lex_state = 7}, + [249] = {.lex_state = 175, .external_lex_state = 2}, [250] = {.lex_state = 24, .external_lex_state = 6}, [251] = {.lex_state = 24, .external_lex_state = 6}, [252] = {.lex_state = 24, .external_lex_state = 6}, - [253] = {.lex_state = 169, .external_lex_state = 8}, - [254] = {.lex_state = 23, .external_lex_state = 6}, - [255] = {.lex_state = 173, .external_lex_state = 15}, - [256] = {.lex_state = 169, .external_lex_state = 8}, - [257] = {.lex_state = 169, .external_lex_state = 6}, + [253] = {.lex_state = 169, .external_lex_state = 7}, + [254] = {.lex_state = 169, .external_lex_state = 8}, + [255] = {.lex_state = 23, .external_lex_state = 6}, + [256] = {.lex_state = 173, .external_lex_state = 15}, + [257] = {.lex_state = 169, .external_lex_state = 8}, [258] = {.lex_state = 169, .external_lex_state = 6}, - [259] = {.lex_state = 173, .external_lex_state = 15}, + [259] = {.lex_state = 169, .external_lex_state = 6}, [260] = {.lex_state = 24, .external_lex_state = 6}, - [261] = {.lex_state = 169, .external_lex_state = 6}, - [262] = {.lex_state = 24, .external_lex_state = 6}, + [261] = {.lex_state = 169, .external_lex_state = 8}, + [262] = {.lex_state = 23, .external_lex_state = 6}, [263] = {.lex_state = 169, .external_lex_state = 6}, - [264] = {.lex_state = 169, .external_lex_state = 6}, - [265] = {.lex_state = 23, .external_lex_state = 6}, - [266] = {.lex_state = 169, .external_lex_state = 8}, - [267] = {.lex_state = 24, .external_lex_state = 6}, - [268] = {.lex_state = 169, .external_lex_state = 8}, + [264] = {.lex_state = 173, .external_lex_state = 15}, + [265] = {.lex_state = 169, .external_lex_state = 6}, + [266] = {.lex_state = 24, .external_lex_state = 6}, + [267] = {.lex_state = 169, .external_lex_state = 6}, + [268] = {.lex_state = 24, .external_lex_state = 6}, [269] = {.lex_state = 175, .external_lex_state = 2}, [270] = {.lex_state = 175, .external_lex_state = 2}, - [271] = {.lex_state = 173, .external_lex_state = 16}, + [271] = {.lex_state = 175, .external_lex_state = 2}, [272] = {.lex_state = 175, .external_lex_state = 2}, - [273] = {.lex_state = 175, .external_lex_state = 2}, + [273] = {.lex_state = 169, .external_lex_state = 8}, [274] = {.lex_state = 175, .external_lex_state = 2}, [275] = {.lex_state = 175, .external_lex_state = 2}, - [276] = {.lex_state = 175, .external_lex_state = 13}, - [277] = {.lex_state = 175, .external_lex_state = 2}, - [278] = {.lex_state = 24, .external_lex_state = 6}, - [279] = {.lex_state = 169, .external_lex_state = 17}, - [280] = {.lex_state = 175, .external_lex_state = 2}, - [281] = {.lex_state = 175, .external_lex_state = 2}, - [282] = {.lex_state = 24, .external_lex_state = 6}, - [283] = {.lex_state = 175, .external_lex_state = 2}, - [284] = {.lex_state = 175, .external_lex_state = 13}, - [285] = {.lex_state = 175, .external_lex_state = 2}, - [286] = {.lex_state = 169, .external_lex_state = 17}, - [287] = {.lex_state = 175, .external_lex_state = 13}, - [288] = {.lex_state = 175, .external_lex_state = 2}, - [289] = {.lex_state = 169, .external_lex_state = 8}, - [290] = {.lex_state = 169, .external_lex_state = 8}, + [276] = {.lex_state = 175, .external_lex_state = 2}, + [277] = {.lex_state = 169, .external_lex_state = 16}, + [278] = {.lex_state = 175, .external_lex_state = 2}, + [279] = {.lex_state = 175, .external_lex_state = 2}, + [280] = {.lex_state = 175, .external_lex_state = 12}, + [281] = {.lex_state = 175, .external_lex_state = 12}, + [282] = {.lex_state = 173, .external_lex_state = 17}, + [283] = {.lex_state = 24, .external_lex_state = 6}, + [284] = {.lex_state = 175, .external_lex_state = 2}, + [285] = {.lex_state = 169, .external_lex_state = 16}, + [286] = {.lex_state = 175, .external_lex_state = 2}, + [287] = {.lex_state = 175, .external_lex_state = 12}, + [288] = {.lex_state = 173, .external_lex_state = 17}, + [289] = {.lex_state = 175, .external_lex_state = 2}, + [290] = {.lex_state = 24, .external_lex_state = 6}, [291] = {.lex_state = 175, .external_lex_state = 2}, - [292] = {.lex_state = 175, .external_lex_state = 13}, - [293] = {.lex_state = 173, .external_lex_state = 16}, + [292] = {.lex_state = 169, .external_lex_state = 8}, + [293] = {.lex_state = 175, .external_lex_state = 12}, [294] = {.lex_state = 175, .external_lex_state = 2}, [295] = {.lex_state = 40, .external_lex_state = 2}, - [296] = {.lex_state = 40, .external_lex_state = 2}, + [296] = {.lex_state = 175, .external_lex_state = 12}, [297] = {.lex_state = 40, .external_lex_state = 2}, [298] = {.lex_state = 175, .external_lex_state = 2}, [299] = {.lex_state = 40, .external_lex_state = 2}, - [300] = {.lex_state = 175, .external_lex_state = 13}, - [301] = {.lex_state = 175, .external_lex_state = 2}, - [302] = {.lex_state = 173, .external_lex_state = 18}, + [300] = {.lex_state = 169, .external_lex_state = 14}, + [301] = {.lex_state = 23, .external_lex_state = 14}, + [302] = {.lex_state = 169, .external_lex_state = 14}, [303] = {.lex_state = 173, .external_lex_state = 18}, - [304] = {.lex_state = 40, .external_lex_state = 2}, - [305] = {.lex_state = 23, .external_lex_state = 14}, + [304] = {.lex_state = 173, .external_lex_state = 18}, + [305] = {.lex_state = 40, .external_lex_state = 2}, [306] = {.lex_state = 40, .external_lex_state = 2}, - [307] = {.lex_state = 175, .external_lex_state = 2}, - [308] = {.lex_state = 169, .external_lex_state = 14}, + [307] = {.lex_state = 40, .external_lex_state = 2}, + [308] = {.lex_state = 40, .external_lex_state = 2}, [309] = {.lex_state = 175, .external_lex_state = 2}, [310] = {.lex_state = 40, .external_lex_state = 2}, - [311] = {.lex_state = 40, .external_lex_state = 2}, - [312] = {.lex_state = 40, .external_lex_state = 2}, + [311] = {.lex_state = 175, .external_lex_state = 2}, + [312] = {.lex_state = 175, .external_lex_state = 2}, [313] = {.lex_state = 175, .external_lex_state = 2}, [314] = {.lex_state = 40, .external_lex_state = 2}, [315] = {.lex_state = 40, .external_lex_state = 2}, [316] = {.lex_state = 40, .external_lex_state = 2}, - [317] = {.lex_state = 23, .external_lex_state = 14}, - [318] = {.lex_state = 175, .external_lex_state = 13}, - [319] = {.lex_state = 40, .external_lex_state = 2}, + [317] = {.lex_state = 40, .external_lex_state = 2}, + [318] = {.lex_state = 40, .external_lex_state = 2}, + [319] = {.lex_state = 175, .external_lex_state = 12}, [320] = {.lex_state = 40, .external_lex_state = 2}, - [321] = {.lex_state = 40, .external_lex_state = 2}, + [321] = {.lex_state = 23, .external_lex_state = 14}, [322] = {.lex_state = 40, .external_lex_state = 2}, [323] = {.lex_state = 40, .external_lex_state = 2}, - [324] = {.lex_state = 169, .external_lex_state = 14}, + [324] = {.lex_state = 40, .external_lex_state = 2}, [325] = {.lex_state = 40, .external_lex_state = 2}, [326] = {.lex_state = 175, .external_lex_state = 2}, - [327] = {.lex_state = 175, .external_lex_state = 2}, + [327] = {.lex_state = 40, .external_lex_state = 2}, [328] = {.lex_state = 175, .external_lex_state = 2}, - [329] = {.lex_state = 40, .external_lex_state = 2}, - [330] = {.lex_state = 40, .external_lex_state = 2}, - [331] = {.lex_state = 40, .external_lex_state = 2}, - [332] = {.lex_state = 40, .external_lex_state = 2}, - [333] = {.lex_state = 40, .external_lex_state = 2}, - [334] = {.lex_state = 40, .external_lex_state = 2}, - [335] = {.lex_state = 175, .external_lex_state = 2}, + [329] = {.lex_state = 175, .external_lex_state = 2}, + [330] = {.lex_state = 169, .external_lex_state = 16}, + [331] = {.lex_state = 175, .external_lex_state = 2}, + [332] = {.lex_state = 24, .external_lex_state = 14}, + [333] = {.lex_state = 175, .external_lex_state = 2}, + [334] = {.lex_state = 173, .external_lex_state = 18}, + [335] = {.lex_state = 169, .external_lex_state = 16}, [336] = {.lex_state = 175, .external_lex_state = 2}, [337] = {.lex_state = 40, .external_lex_state = 2}, [338] = {.lex_state = 175, .external_lex_state = 2}, [339] = {.lex_state = 175, .external_lex_state = 2}, - [340] = {.lex_state = 24, .external_lex_state = 14}, - [341] = {.lex_state = 169, .external_lex_state = 17}, - [342] = {.lex_state = 175, .external_lex_state = 2}, - [343] = {.lex_state = 40, .external_lex_state = 2}, - [344] = {.lex_state = 40, .external_lex_state = 2}, + [340] = {.lex_state = 175, .external_lex_state = 2}, + [341] = {.lex_state = 175, .external_lex_state = 2}, + [342] = {.lex_state = 40, .external_lex_state = 2}, + [343] = {.lex_state = 175, .external_lex_state = 2}, + [344] = {.lex_state = 175, .external_lex_state = 2}, [345] = {.lex_state = 175, .external_lex_state = 2}, [346] = {.lex_state = 175, .external_lex_state = 2}, - [347] = {.lex_state = 175, .external_lex_state = 2}, - [348] = {.lex_state = 175, .external_lex_state = 2}, - [349] = {.lex_state = 40, .external_lex_state = 2}, + [347] = {.lex_state = 40, .external_lex_state = 2}, + [348] = {.lex_state = 40, .external_lex_state = 2}, + [349] = {.lex_state = 175, .external_lex_state = 2}, [350] = {.lex_state = 40, .external_lex_state = 2}, [351] = {.lex_state = 40, .external_lex_state = 2}, [352] = {.lex_state = 40, .external_lex_state = 2}, [353] = {.lex_state = 40, .external_lex_state = 2}, - [354] = {.lex_state = 40, .external_lex_state = 2}, + [354] = {.lex_state = 175, .external_lex_state = 2}, [355] = {.lex_state = 40, .external_lex_state = 2}, - [356] = {.lex_state = 175, .external_lex_state = 2}, + [356] = {.lex_state = 40, .external_lex_state = 2}, [357] = {.lex_state = 175, .external_lex_state = 2}, - [358] = {.lex_state = 169, .external_lex_state = 17}, + [358] = {.lex_state = 40, .external_lex_state = 2}, [359] = {.lex_state = 175, .external_lex_state = 2}, - [360] = {.lex_state = 175, .external_lex_state = 19}, + [360] = {.lex_state = 175, .external_lex_state = 2}, [361] = {.lex_state = 40, .external_lex_state = 2}, - [362] = {.lex_state = 173, .external_lex_state = 18}, + [362] = {.lex_state = 175, .external_lex_state = 2}, [363] = {.lex_state = 175, .external_lex_state = 2}, - [364] = {.lex_state = 40, .external_lex_state = 2}, + [364] = {.lex_state = 175, .external_lex_state = 2}, [365] = {.lex_state = 175, .external_lex_state = 2}, [366] = {.lex_state = 175, .external_lex_state = 2}, - [367] = {.lex_state = 175, .external_lex_state = 2}, - [368] = {.lex_state = 175, .external_lex_state = 2}, - [369] = {.lex_state = 175, .external_lex_state = 2}, + [367] = {.lex_state = 40, .external_lex_state = 2}, + [368] = {.lex_state = 40, .external_lex_state = 2}, + [369] = {.lex_state = 40, .external_lex_state = 2}, [370] = {.lex_state = 40, .external_lex_state = 2}, - [371] = {.lex_state = 175, .external_lex_state = 2}, - [372] = {.lex_state = 40, .external_lex_state = 2}, + [371] = {.lex_state = 40, .external_lex_state = 2}, + [372] = {.lex_state = 175, .external_lex_state = 2}, [373] = {.lex_state = 175, .external_lex_state = 2}, [374] = {.lex_state = 175, .external_lex_state = 2}, - [375] = {.lex_state = 40, .external_lex_state = 2}, + [375] = {.lex_state = 175, .external_lex_state = 2}, [376] = {.lex_state = 175, .external_lex_state = 2}, - [377] = {.lex_state = 175, .external_lex_state = 2}, - [378] = {.lex_state = 175, .external_lex_state = 2}, + [377] = {.lex_state = 40, .external_lex_state = 2}, + [378] = {.lex_state = 40, .external_lex_state = 2}, [379] = {.lex_state = 175, .external_lex_state = 2}, - [380] = {.lex_state = 175, .external_lex_state = 2}, + [380] = {.lex_state = 175, .external_lex_state = 19}, [381] = {.lex_state = 175, .external_lex_state = 2}, [382] = {.lex_state = 175, .external_lex_state = 2}, [383] = {.lex_state = 175, .external_lex_state = 2}, - [384] = {.lex_state = 173, .external_lex_state = 20}, - [385] = {.lex_state = 173, .external_lex_state = 20}, - [386] = {.lex_state = 175, .external_lex_state = 2}, + [384] = {.lex_state = 175, .external_lex_state = 2}, + [385] = {.lex_state = 175, .external_lex_state = 2}, + [386] = {.lex_state = 173, .external_lex_state = 18}, [387] = {.lex_state = 175, .external_lex_state = 2}, [388] = {.lex_state = 175, .external_lex_state = 2}, - [389] = {.lex_state = 175, .external_lex_state = 2}, - [390] = {.lex_state = 169, .external_lex_state = 21}, - [391] = {.lex_state = 173, .external_lex_state = 18}, + [389] = {.lex_state = 40, .external_lex_state = 2}, + [390] = {.lex_state = 175, .external_lex_state = 2}, + [391] = {.lex_state = 40, .external_lex_state = 2}, [392] = {.lex_state = 175, .external_lex_state = 2}, - [393] = {.lex_state = 175, .external_lex_state = 2}, - [394] = {.lex_state = 40, .external_lex_state = 2}, - [395] = {.lex_state = 175, .external_lex_state = 2}, - [396] = {.lex_state = 169, .external_lex_state = 21}, + [393] = {.lex_state = 173, .external_lex_state = 20}, + [394] = {.lex_state = 173, .external_lex_state = 20}, + [395] = {.lex_state = 40, .external_lex_state = 2}, + [396] = {.lex_state = 175, .external_lex_state = 2}, [397] = {.lex_state = 175, .external_lex_state = 2}, - [398] = {.lex_state = 175, .external_lex_state = 2}, - [399] = {.lex_state = 40, .external_lex_state = 2}, - [400] = {.lex_state = 24, .external_lex_state = 14}, - [401] = {.lex_state = 175, .external_lex_state = 2}, + [398] = {.lex_state = 169, .external_lex_state = 21}, + [399] = {.lex_state = 175, .external_lex_state = 2}, + [400] = {.lex_state = 169, .external_lex_state = 21}, + [401] = {.lex_state = 24, .external_lex_state = 14}, [402] = {.lex_state = 40, .external_lex_state = 2}, - [403] = {.lex_state = 175, .external_lex_state = 2}, - [404] = {.lex_state = 173, .external_lex_state = 22}, + [403] = {.lex_state = 24, .external_lex_state = 14}, + [404] = {.lex_state = 175, .external_lex_state = 2}, [405] = {.lex_state = 175, .external_lex_state = 2}, - [406] = {.lex_state = 175, .external_lex_state = 2}, + [406] = {.lex_state = 173, .external_lex_state = 22}, [407] = {.lex_state = 175, .external_lex_state = 2}, [408] = {.lex_state = 175, .external_lex_state = 2}, [409] = {.lex_state = 175, .external_lex_state = 2}, @@ -20734,10 +20856,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [411] = {.lex_state = 175, .external_lex_state = 2}, [412] = {.lex_state = 175, .external_lex_state = 2}, [413] = {.lex_state = 175, .external_lex_state = 2}, - [414] = {.lex_state = 175, .external_lex_state = 19}, - [415] = {.lex_state = 175, .external_lex_state = 2}, - [416] = {.lex_state = 173, .external_lex_state = 22}, - [417] = {.lex_state = 175, .external_lex_state = 2}, + [414] = {.lex_state = 175, .external_lex_state = 2}, + [415] = {.lex_state = 24, .external_lex_state = 14}, + [416] = {.lex_state = 175, .external_lex_state = 2}, + [417] = {.lex_state = 169, .external_lex_state = 21}, [418] = {.lex_state = 175, .external_lex_state = 2}, [419] = {.lex_state = 175, .external_lex_state = 2}, [420] = {.lex_state = 175, .external_lex_state = 2}, @@ -20746,7 +20868,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [423] = {.lex_state = 175, .external_lex_state = 2}, [424] = {.lex_state = 175, .external_lex_state = 2}, [425] = {.lex_state = 175, .external_lex_state = 2}, - [426] = {.lex_state = 175, .external_lex_state = 2}, + [426] = {.lex_state = 175, .external_lex_state = 19}, [427] = {.lex_state = 175, .external_lex_state = 2}, [428] = {.lex_state = 175, .external_lex_state = 2}, [429] = {.lex_state = 175, .external_lex_state = 2}, @@ -20754,9 +20876,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [431] = {.lex_state = 169, .external_lex_state = 21}, [432] = {.lex_state = 175, .external_lex_state = 2}, [433] = {.lex_state = 175, .external_lex_state = 2}, - [434] = {.lex_state = 175, .external_lex_state = 2}, + [434] = {.lex_state = 173, .external_lex_state = 20}, [435] = {.lex_state = 175, .external_lex_state = 2}, - [436] = {.lex_state = 24, .external_lex_state = 14}, + [436] = {.lex_state = 175, .external_lex_state = 2}, [437] = {.lex_state = 175, .external_lex_state = 2}, [438] = {.lex_state = 175, .external_lex_state = 2}, [439] = {.lex_state = 175, .external_lex_state = 2}, @@ -20768,12 +20890,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [445] = {.lex_state = 175, .external_lex_state = 2}, [446] = {.lex_state = 175, .external_lex_state = 2}, [447] = {.lex_state = 175, .external_lex_state = 2}, - [448] = {.lex_state = 169, .external_lex_state = 21}, + [448] = {.lex_state = 175, .external_lex_state = 2}, [449] = {.lex_state = 175, .external_lex_state = 2}, [450] = {.lex_state = 175, .external_lex_state = 2}, [451] = {.lex_state = 175, .external_lex_state = 2}, [452] = {.lex_state = 175, .external_lex_state = 2}, - [453] = {.lex_state = 175, .external_lex_state = 2}, + [453] = {.lex_state = 175, .external_lex_state = 19}, [454] = {.lex_state = 175, .external_lex_state = 2}, [455] = {.lex_state = 175, .external_lex_state = 2}, [456] = {.lex_state = 175, .external_lex_state = 2}, @@ -20783,7 +20905,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [460] = {.lex_state = 175, .external_lex_state = 2}, [461] = {.lex_state = 175, .external_lex_state = 2}, [462] = {.lex_state = 175, .external_lex_state = 2}, - [463] = {.lex_state = 24, .external_lex_state = 14}, + [463] = {.lex_state = 175, .external_lex_state = 2}, [464] = {.lex_state = 175, .external_lex_state = 2}, [465] = {.lex_state = 175, .external_lex_state = 2}, [466] = {.lex_state = 175, .external_lex_state = 2}, @@ -20798,16 +20920,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [475] = {.lex_state = 175, .external_lex_state = 2}, [476] = {.lex_state = 175, .external_lex_state = 2}, [477] = {.lex_state = 175, .external_lex_state = 2}, - [478] = {.lex_state = 169, .external_lex_state = 14}, + [478] = {.lex_state = 175, .external_lex_state = 2}, [479] = {.lex_state = 175, .external_lex_state = 2}, [480] = {.lex_state = 175, .external_lex_state = 2}, [481] = {.lex_state = 175, .external_lex_state = 2}, - [482] = {.lex_state = 175, .external_lex_state = 19}, - [483] = {.lex_state = 173, .external_lex_state = 20}, + [482] = {.lex_state = 175, .external_lex_state = 2}, + [483] = {.lex_state = 175, .external_lex_state = 2}, [484] = {.lex_state = 175, .external_lex_state = 2}, [485] = {.lex_state = 175, .external_lex_state = 2}, - [486] = {.lex_state = 169, .external_lex_state = 14}, - [487] = {.lex_state = 175, .external_lex_state = 2}, + [486] = {.lex_state = 175, .external_lex_state = 2}, + [487] = {.lex_state = 173, .external_lex_state = 20}, [488] = {.lex_state = 175, .external_lex_state = 2}, [489] = {.lex_state = 175, .external_lex_state = 2}, [490] = {.lex_state = 175, .external_lex_state = 2}, @@ -20816,105 +20938,105 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [493] = {.lex_state = 175, .external_lex_state = 2}, [494] = {.lex_state = 175, .external_lex_state = 2}, [495] = {.lex_state = 175, .external_lex_state = 2}, - [496] = {.lex_state = 175, .external_lex_state = 2}, + [496] = {.lex_state = 169, .external_lex_state = 14}, [497] = {.lex_state = 175, .external_lex_state = 2}, - [498] = {.lex_state = 175, .external_lex_state = 2}, - [499] = {.lex_state = 173, .external_lex_state = 20}, - [500] = {.lex_state = 175, .external_lex_state = 2}, + [498] = {.lex_state = 169, .external_lex_state = 14}, + [499] = {.lex_state = 175, .external_lex_state = 2}, + [500] = {.lex_state = 173, .external_lex_state = 22}, [501] = {.lex_state = 175, .external_lex_state = 2}, [502] = {.lex_state = 173, .external_lex_state = 23}, [503] = {.lex_state = 173, .external_lex_state = 23}, [504] = {.lex_state = 173, .external_lex_state = 24}, [505] = {.lex_state = 173, .external_lex_state = 25}, - [506] = {.lex_state = 173, .external_lex_state = 25}, - [507] = {.lex_state = 173, .external_lex_state = 24}, + [506] = {.lex_state = 173, .external_lex_state = 24}, + [507] = {.lex_state = 173, .external_lex_state = 25}, [508] = {.lex_state = 173, .external_lex_state = 26}, [509] = {.lex_state = 173, .external_lex_state = 27}, [510] = {.lex_state = 173, .external_lex_state = 24}, [511] = {.lex_state = 173, .external_lex_state = 28}, - [512] = {.lex_state = 173, .external_lex_state = 24}, + [512] = {.lex_state = 173, .external_lex_state = 27}, [513] = {.lex_state = 173, .external_lex_state = 28}, - [514] = {.lex_state = 173, .external_lex_state = 27}, - [515] = {.lex_state = 173, .external_lex_state = 26}, - [516] = {.lex_state = 173, .external_lex_state = 29}, + [514] = {.lex_state = 173, .external_lex_state = 26}, + [515] = {.lex_state = 173, .external_lex_state = 24}, + [516] = {.lex_state = 173, .external_lex_state = 28}, [517] = {.lex_state = 175, .external_lex_state = 2}, [518] = {.lex_state = 173, .external_lex_state = 29}, [519] = {.lex_state = 175, .external_lex_state = 2}, - [520] = {.lex_state = 173, .external_lex_state = 30}, + [520] = {.lex_state = 175, .external_lex_state = 2}, [521] = {.lex_state = 173, .external_lex_state = 30}, [522] = {.lex_state = 175, .external_lex_state = 2}, - [523] = {.lex_state = 173, .external_lex_state = 27}, + [523] = {.lex_state = 173, .external_lex_state = 30}, [524] = {.lex_state = 175, .external_lex_state = 2}, [525] = {.lex_state = 175, .external_lex_state = 2}, - [526] = {.lex_state = 175, .external_lex_state = 2}, - [527] = {.lex_state = 173, .external_lex_state = 27}, + [526] = {.lex_state = 173, .external_lex_state = 29}, + [527] = {.lex_state = 173, .external_lex_state = 28}, [528] = {.lex_state = 173, .external_lex_state = 31}, - [529] = {.lex_state = 173, .external_lex_state = 31}, - [530] = {.lex_state = 173, .external_lex_state = 29}, + [529] = {.lex_state = 173, .external_lex_state = 30}, + [530] = {.lex_state = 173, .external_lex_state = 30}, [531] = {.lex_state = 173, .external_lex_state = 32}, - [532] = {.lex_state = 173, .external_lex_state = 29}, - [533] = {.lex_state = 173, .external_lex_state = 32}, - [534] = {.lex_state = 173, .external_lex_state = 31}, + [532] = {.lex_state = 173, .external_lex_state = 32}, + [533] = {.lex_state = 173, .external_lex_state = 31}, + [534] = {.lex_state = 173, .external_lex_state = 33}, [535] = {.lex_state = 173, .external_lex_state = 33}, - [536] = {.lex_state = 173, .external_lex_state = 31}, - [537] = {.lex_state = 173, .external_lex_state = 33}, - [538] = {.lex_state = 173, .external_lex_state = 32}, + [536] = {.lex_state = 173, .external_lex_state = 32}, + [537] = {.lex_state = 173, .external_lex_state = 32}, + [538] = {.lex_state = 173, .external_lex_state = 31}, [539] = {.lex_state = 173, .external_lex_state = 34}, - [540] = {.lex_state = 173, .external_lex_state = 32}, - [541] = {.lex_state = 173, .external_lex_state = 34}, - [542] = {.lex_state = 173, .external_lex_state = 35}, - [543] = {.lex_state = 32, .external_lex_state = 26}, - [544] = {.lex_state = 173, .external_lex_state = 26}, - [545] = {.lex_state = 173, .external_lex_state = 33}, - [546] = {.lex_state = 173, .external_lex_state = 26}, - [547] = {.lex_state = 173, .external_lex_state = 33}, - [548] = {.lex_state = 32, .external_lex_state = 26}, - [549] = {.lex_state = 173, .external_lex_state = 35}, - [550] = {.lex_state = 32, .external_lex_state = 30}, - [551] = {.lex_state = 173, .external_lex_state = 36}, - [552] = {.lex_state = 173, .external_lex_state = 26}, - [553] = {.lex_state = 173, .external_lex_state = 36}, - [554] = {.lex_state = 173, .external_lex_state = 37}, - [555] = {.lex_state = 173, .external_lex_state = 26}, - [556] = {.lex_state = 173, .external_lex_state = 30}, - [557] = {.lex_state = 173, .external_lex_state = 37}, - [558] = {.lex_state = 32, .external_lex_state = 30}, - [559] = {.lex_state = 173, .external_lex_state = 30}, + [540] = {.lex_state = 173, .external_lex_state = 34}, + [541] = {.lex_state = 173, .external_lex_state = 31}, + [542] = {.lex_state = 173, .external_lex_state = 33}, + [543] = {.lex_state = 173, .external_lex_state = 26}, + [544] = {.lex_state = 32, .external_lex_state = 26}, + [545] = {.lex_state = 173, .external_lex_state = 35}, + [546] = {.lex_state = 32, .external_lex_state = 26}, + [547] = {.lex_state = 173, .external_lex_state = 35}, + [548] = {.lex_state = 173, .external_lex_state = 26}, + [549] = {.lex_state = 173, .external_lex_state = 33}, + [550] = {.lex_state = 173, .external_lex_state = 36}, + [551] = {.lex_state = 173, .external_lex_state = 29}, + [552] = {.lex_state = 173, .external_lex_state = 29}, + [553] = {.lex_state = 173, .external_lex_state = 26}, + [554] = {.lex_state = 32, .external_lex_state = 29}, + [555] = {.lex_state = 173, .external_lex_state = 37}, + [556] = {.lex_state = 173, .external_lex_state = 26}, + [557] = {.lex_state = 32, .external_lex_state = 29}, + [558] = {.lex_state = 173, .external_lex_state = 37}, + [559] = {.lex_state = 173, .external_lex_state = 36}, [560] = {.lex_state = 173, .external_lex_state = 38}, - [561] = {.lex_state = 32, .external_lex_state = 32}, - [562] = {.lex_state = 173, .external_lex_state = 30}, - [563] = {.lex_state = 173, .external_lex_state = 30}, - [564] = {.lex_state = 173, .external_lex_state = 32}, - [565] = {.lex_state = 173, .external_lex_state = 39}, - [566] = {.lex_state = 173, .external_lex_state = 38}, - [567] = {.lex_state = 173, .external_lex_state = 32}, - [568] = {.lex_state = 32, .external_lex_state = 32}, - [569] = {.lex_state = 173, .external_lex_state = 39}, - [570] = {.lex_state = 173, .external_lex_state = 32}, - [571] = {.lex_state = 173, .external_lex_state = 33}, - [572] = {.lex_state = 173, .external_lex_state = 37}, - [573] = {.lex_state = 173, .external_lex_state = 33}, + [561] = {.lex_state = 173, .external_lex_state = 29}, + [562] = {.lex_state = 173, .external_lex_state = 38}, + [563] = {.lex_state = 32, .external_lex_state = 31}, + [564] = {.lex_state = 173, .external_lex_state = 31}, + [565] = {.lex_state = 173, .external_lex_state = 29}, + [566] = {.lex_state = 173, .external_lex_state = 39}, + [567] = {.lex_state = 173, .external_lex_state = 31}, + [568] = {.lex_state = 173, .external_lex_state = 39}, + [569] = {.lex_state = 32, .external_lex_state = 31}, + [570] = {.lex_state = 173, .external_lex_state = 37}, + [571] = {.lex_state = 173, .external_lex_state = 37}, + [572] = {.lex_state = 173, .external_lex_state = 31}, + [573] = {.lex_state = 32, .external_lex_state = 33}, [574] = {.lex_state = 32, .external_lex_state = 33}, [575] = {.lex_state = 173, .external_lex_state = 40}, - [576] = {.lex_state = 173, .external_lex_state = 40}, - [577] = {.lex_state = 32, .external_lex_state = 33}, - [578] = {.lex_state = 173, .external_lex_state = 32}, - [579] = {.lex_state = 173, .external_lex_state = 37}, - [580] = {.lex_state = 173, .external_lex_state = 32}, + [576] = {.lex_state = 173, .external_lex_state = 33}, + [577] = {.lex_state = 173, .external_lex_state = 33}, + [578] = {.lex_state = 173, .external_lex_state = 40}, + [579] = {.lex_state = 173, .external_lex_state = 31}, + [580] = {.lex_state = 173, .external_lex_state = 31}, [581] = {.lex_state = 173, .external_lex_state = 40}, - [582] = {.lex_state = 173, .external_lex_state = 41}, - [583] = {.lex_state = 173, .external_lex_state = 41}, + [582] = {.lex_state = 173, .external_lex_state = 31}, + [583] = {.lex_state = 173, .external_lex_state = 31}, [584] = {.lex_state = 173, .external_lex_state = 38}, - [585] = {.lex_state = 173, .external_lex_state = 32}, - [586] = {.lex_state = 173, .external_lex_state = 32}, - [587] = {.lex_state = 173, .external_lex_state = 38}, + [585] = {.lex_state = 173, .external_lex_state = 38}, + [586] = {.lex_state = 173, .external_lex_state = 41}, + [587] = {.lex_state = 173, .external_lex_state = 41}, [588] = {.lex_state = 173, .external_lex_state = 40}, - [589] = {.lex_state = 173, .external_lex_state = 33}, - [590] = {.lex_state = 173, .external_lex_state = 32}, + [589] = {.lex_state = 173, .external_lex_state = 31}, + [590] = {.lex_state = 173, .external_lex_state = 33}, [591] = {.lex_state = 173, .external_lex_state = 33}, [592] = {.lex_state = 173, .external_lex_state = 33}, - [593] = {.lex_state = 173, .external_lex_state = 41}, - [594] = {.lex_state = 173, .external_lex_state = 33}, + [593] = {.lex_state = 173, .external_lex_state = 33}, + [594] = {.lex_state = 173, .external_lex_state = 41}, [595] = {.lex_state = 173, .external_lex_state = 33}, [596] = {.lex_state = 173, .external_lex_state = 33}, [597] = {.lex_state = 173, .external_lex_state = 41}, @@ -20929,14 +21051,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [606] = {.lex_state = 175, .external_lex_state = 45}, [607] = {.lex_state = 175, .external_lex_state = 45}, [608] = {.lex_state = 175, .external_lex_state = 45}, - [609] = {.lex_state = 166, .external_lex_state = 4}, - [610] = {.lex_state = 166, .external_lex_state = 4}, + [609] = {.lex_state = 175, .external_lex_state = 46}, + [610] = {.lex_state = 175, .external_lex_state = 46}, [611] = {.lex_state = 175, .external_lex_state = 46}, [612] = {.lex_state = 175, .external_lex_state = 46}, [613] = {.lex_state = 175, .external_lex_state = 46}, [614] = {.lex_state = 175, .external_lex_state = 46}, [615] = {.lex_state = 175, .external_lex_state = 46}, - [616] = {.lex_state = 175, .external_lex_state = 2}, + [616] = {.lex_state = 175, .external_lex_state = 46}, [617] = {.lex_state = 175, .external_lex_state = 46}, [618] = {.lex_state = 175, .external_lex_state = 46}, [619] = {.lex_state = 175, .external_lex_state = 46}, @@ -20949,7 +21071,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [626] = {.lex_state = 175, .external_lex_state = 46}, [627] = {.lex_state = 175, .external_lex_state = 46}, [628] = {.lex_state = 175, .external_lex_state = 46}, - [629] = {.lex_state = 175, .external_lex_state = 46}, + [629] = {.lex_state = 166, .external_lex_state = 4}, [630] = {.lex_state = 175, .external_lex_state = 46}, [631] = {.lex_state = 175, .external_lex_state = 46}, [632] = {.lex_state = 175, .external_lex_state = 46}, @@ -20957,7 +21079,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [634] = {.lex_state = 175, .external_lex_state = 46}, [635] = {.lex_state = 175, .external_lex_state = 46}, [636] = {.lex_state = 175, .external_lex_state = 46}, - [637] = {.lex_state = 175, .external_lex_state = 46}, + [637] = {.lex_state = 175, .external_lex_state = 47}, [638] = {.lex_state = 175, .external_lex_state = 46}, [639] = {.lex_state = 175, .external_lex_state = 46}, [640] = {.lex_state = 175, .external_lex_state = 46}, @@ -20965,17 +21087,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [642] = {.lex_state = 175, .external_lex_state = 46}, [643] = {.lex_state = 175, .external_lex_state = 46}, [644] = {.lex_state = 175, .external_lex_state = 46}, - [645] = {.lex_state = 175, .external_lex_state = 46}, + [645] = {.lex_state = 175, .external_lex_state = 2}, [646] = {.lex_state = 175, .external_lex_state = 46}, [647] = {.lex_state = 175, .external_lex_state = 46}, [648] = {.lex_state = 175, .external_lex_state = 46}, [649] = {.lex_state = 175, .external_lex_state = 46}, [650] = {.lex_state = 175, .external_lex_state = 46}, - [651] = {.lex_state = 175, .external_lex_state = 46}, + [651] = {.lex_state = 175, .external_lex_state = 47}, [652] = {.lex_state = 175, .external_lex_state = 46}, [653] = {.lex_state = 175, .external_lex_state = 46}, [654] = {.lex_state = 175, .external_lex_state = 46}, - [655] = {.lex_state = 175, .external_lex_state = 46}, + [655] = {.lex_state = 166, .external_lex_state = 4}, [656] = {.lex_state = 175, .external_lex_state = 46}, [657] = {.lex_state = 175, .external_lex_state = 46}, [658] = {.lex_state = 175, .external_lex_state = 46}, @@ -20997,8 +21119,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [674] = {.lex_state = 175, .external_lex_state = 46}, [675] = {.lex_state = 175, .external_lex_state = 46}, [676] = {.lex_state = 175, .external_lex_state = 47}, - [677] = {.lex_state = 175, .external_lex_state = 47}, - [678] = {.lex_state = 175, .external_lex_state = 47}, + [677] = {.lex_state = 175, .external_lex_state = 46}, + [678] = {.lex_state = 175, .external_lex_state = 46}, [679] = {.lex_state = 175, .external_lex_state = 46}, [680] = {.lex_state = 175, .external_lex_state = 46}, [681] = {.lex_state = 175, .external_lex_state = 46}, @@ -21020,17 +21142,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [697] = {.lex_state = 175, .external_lex_state = 46}, [698] = {.lex_state = 175, .external_lex_state = 46}, [699] = {.lex_state = 175, .external_lex_state = 46}, - [700] = {.lex_state = 175, .external_lex_state = 2}, + [700] = {.lex_state = 175, .external_lex_state = 46}, [701] = {.lex_state = 175, .external_lex_state = 46}, [702] = {.lex_state = 175, .external_lex_state = 46}, - [703] = {.lex_state = 166, .external_lex_state = 5}, + [703] = {.lex_state = 175, .external_lex_state = 2}, [704] = {.lex_state = 175, .external_lex_state = 46}, [705] = {.lex_state = 175, .external_lex_state = 2}, [706] = {.lex_state = 175, .external_lex_state = 46}, [707] = {.lex_state = 175, .external_lex_state = 46}, [708] = {.lex_state = 175, .external_lex_state = 46}, [709] = {.lex_state = 175, .external_lex_state = 46}, - [710] = {.lex_state = 175, .external_lex_state = 46}, + [710] = {.lex_state = 175, .external_lex_state = 2}, [711] = {.lex_state = 175, .external_lex_state = 46}, [712] = {.lex_state = 175, .external_lex_state = 46}, [713] = {.lex_state = 175, .external_lex_state = 46}, @@ -21043,7 +21165,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [720] = {.lex_state = 175, .external_lex_state = 46}, [721] = {.lex_state = 175, .external_lex_state = 46}, [722] = {.lex_state = 175, .external_lex_state = 46}, - [723] = {.lex_state = 175, .external_lex_state = 46}, + [723] = {.lex_state = 175, .external_lex_state = 48}, [724] = {.lex_state = 175, .external_lex_state = 46}, [725] = {.lex_state = 175, .external_lex_state = 46}, [726] = {.lex_state = 175, .external_lex_state = 46}, @@ -21069,7 +21191,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [746] = {.lex_state = 175, .external_lex_state = 46}, [747] = {.lex_state = 175, .external_lex_state = 46}, [748] = {.lex_state = 175, .external_lex_state = 46}, - [749] = {.lex_state = 175, .external_lex_state = 2}, + [749] = {.lex_state = 175, .external_lex_state = 46}, [750] = {.lex_state = 175, .external_lex_state = 46}, [751] = {.lex_state = 175, .external_lex_state = 46}, [752] = {.lex_state = 175, .external_lex_state = 46}, @@ -21085,8 +21207,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [762] = {.lex_state = 175, .external_lex_state = 46}, [763] = {.lex_state = 175, .external_lex_state = 46}, [764] = {.lex_state = 175, .external_lex_state = 46}, - [765] = {.lex_state = 175, .external_lex_state = 48}, - [766] = {.lex_state = 175, .external_lex_state = 46}, + [765] = {.lex_state = 175, .external_lex_state = 46}, + [766] = {.lex_state = 175, .external_lex_state = 2}, [767] = {.lex_state = 175, .external_lex_state = 46}, [768] = {.lex_state = 175, .external_lex_state = 46}, [769] = {.lex_state = 175, .external_lex_state = 46}, @@ -21094,12 +21216,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [771] = {.lex_state = 175, .external_lex_state = 46}, [772] = {.lex_state = 175, .external_lex_state = 46}, [773] = {.lex_state = 175, .external_lex_state = 46}, - [774] = {.lex_state = 175, .external_lex_state = 2}, + [774] = {.lex_state = 175, .external_lex_state = 46}, [775] = {.lex_state = 175, .external_lex_state = 46}, [776] = {.lex_state = 175, .external_lex_state = 46}, - [777] = {.lex_state = 175, .external_lex_state = 46}, + [777] = {.lex_state = 175, .external_lex_state = 48}, [778] = {.lex_state = 175, .external_lex_state = 46}, - [779] = {.lex_state = 175, .external_lex_state = 2}, + [779] = {.lex_state = 175, .external_lex_state = 46}, [780] = {.lex_state = 175, .external_lex_state = 46}, [781] = {.lex_state = 175, .external_lex_state = 46}, [782] = {.lex_state = 175, .external_lex_state = 46}, @@ -21108,15 +21230,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [785] = {.lex_state = 175, .external_lex_state = 46}, [786] = {.lex_state = 175, .external_lex_state = 46}, [787] = {.lex_state = 175, .external_lex_state = 46}, - [788] = {.lex_state = 167, .external_lex_state = 6}, + [788] = {.lex_state = 175, .external_lex_state = 46}, [789] = {.lex_state = 175, .external_lex_state = 46}, [790] = {.lex_state = 175, .external_lex_state = 46}, [791] = {.lex_state = 175, .external_lex_state = 46}, - [792] = {.lex_state = 175, .external_lex_state = 2}, + [792] = {.lex_state = 175, .external_lex_state = 46}, [793] = {.lex_state = 175, .external_lex_state = 46}, [794] = {.lex_state = 175, .external_lex_state = 46}, [795] = {.lex_state = 175, .external_lex_state = 46}, - [796] = {.lex_state = 175, .external_lex_state = 2}, + [796] = {.lex_state = 175, .external_lex_state = 46}, [797] = {.lex_state = 175, .external_lex_state = 46}, [798] = {.lex_state = 175, .external_lex_state = 46}, [799] = {.lex_state = 175, .external_lex_state = 46}, @@ -21126,7 +21248,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [803] = {.lex_state = 175, .external_lex_state = 46}, [804] = {.lex_state = 175, .external_lex_state = 46}, [805] = {.lex_state = 175, .external_lex_state = 46}, - [806] = {.lex_state = 175, .external_lex_state = 48}, + [806] = {.lex_state = 175, .external_lex_state = 46}, [807] = {.lex_state = 175, .external_lex_state = 46}, [808] = {.lex_state = 175, .external_lex_state = 46}, [809] = {.lex_state = 175, .external_lex_state = 46}, @@ -21141,7 +21263,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [818] = {.lex_state = 175, .external_lex_state = 46}, [819] = {.lex_state = 175, .external_lex_state = 46}, [820] = {.lex_state = 175, .external_lex_state = 46}, - [821] = {.lex_state = 175, .external_lex_state = 46}, + [821] = {.lex_state = 175, .external_lex_state = 2}, [822] = {.lex_state = 175, .external_lex_state = 46}, [823] = {.lex_state = 175, .external_lex_state = 46}, [824] = {.lex_state = 175, .external_lex_state = 46}, @@ -21159,7 +21281,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [836] = {.lex_state = 175, .external_lex_state = 46}, [837] = {.lex_state = 175, .external_lex_state = 46}, [838] = {.lex_state = 175, .external_lex_state = 46}, - [839] = {.lex_state = 175, .external_lex_state = 46}, + [839] = {.lex_state = 175, .external_lex_state = 2}, [840] = {.lex_state = 175, .external_lex_state = 46}, [841] = {.lex_state = 175, .external_lex_state = 46}, [842] = {.lex_state = 175, .external_lex_state = 46}, @@ -21173,20 +21295,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [850] = {.lex_state = 175, .external_lex_state = 46}, [851] = {.lex_state = 175, .external_lex_state = 46}, [852] = {.lex_state = 175, .external_lex_state = 46}, - [853] = {.lex_state = 175, .external_lex_state = 46}, + [853] = {.lex_state = 175, .external_lex_state = 2}, [854] = {.lex_state = 175, .external_lex_state = 46}, [855] = {.lex_state = 175, .external_lex_state = 46}, [856] = {.lex_state = 175, .external_lex_state = 46}, - [857] = {.lex_state = 175, .external_lex_state = 46}, - [858] = {.lex_state = 175, .external_lex_state = 46}, + [857] = {.lex_state = 175, .external_lex_state = 2}, + [858] = {.lex_state = 175, .external_lex_state = 2}, [859] = {.lex_state = 175, .external_lex_state = 46}, [860] = {.lex_state = 175, .external_lex_state = 46}, - [861] = {.lex_state = 166, .external_lex_state = 5}, + [861] = {.lex_state = 175, .external_lex_state = 46}, [862] = {.lex_state = 175, .external_lex_state = 46}, [863] = {.lex_state = 175, .external_lex_state = 46}, [864] = {.lex_state = 175, .external_lex_state = 46}, - [865] = {.lex_state = 175, .external_lex_state = 2}, - [866] = {.lex_state = 175, .external_lex_state = 2}, + [865] = {.lex_state = 175, .external_lex_state = 46}, + [866] = {.lex_state = 175, .external_lex_state = 46}, [867] = {.lex_state = 175, .external_lex_state = 46}, [868] = {.lex_state = 175, .external_lex_state = 46}, [869] = {.lex_state = 175, .external_lex_state = 46}, @@ -21199,32 +21321,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [876] = {.lex_state = 175, .external_lex_state = 46}, [877] = {.lex_state = 175, .external_lex_state = 46}, [878] = {.lex_state = 175, .external_lex_state = 46}, - [879] = {.lex_state = 175, .external_lex_state = 46}, - [880] = {.lex_state = 175, .external_lex_state = 46}, - [881] = {.lex_state = 175, .external_lex_state = 46}, + [879] = {.lex_state = 175, .external_lex_state = 48}, + [880] = {.lex_state = 175, .external_lex_state = 48}, + [881] = {.lex_state = 166, .external_lex_state = 5}, [882] = {.lex_state = 175, .external_lex_state = 48}, - [883] = {.lex_state = 175, .external_lex_state = 48}, - [884] = {.lex_state = 175, .external_lex_state = 2}, + [883] = {.lex_state = 175, .external_lex_state = 2}, + [884] = {.lex_state = 167, .external_lex_state = 6}, [885] = {.lex_state = 175, .external_lex_state = 2}, - [886] = {.lex_state = 175, .external_lex_state = 2}, + [886] = {.lex_state = 175, .external_lex_state = 48}, [887] = {.lex_state = 175, .external_lex_state = 2}, [888] = {.lex_state = 175, .external_lex_state = 2}, [889] = {.lex_state = 175, .external_lex_state = 2}, [890] = {.lex_state = 175, .external_lex_state = 2}, [891] = {.lex_state = 175, .external_lex_state = 2}, [892] = {.lex_state = 175, .external_lex_state = 2}, - [893] = {.lex_state = 175, .external_lex_state = 2}, - [894] = {.lex_state = 175, .external_lex_state = 48}, + [893] = {.lex_state = 175, .external_lex_state = 48}, + [894] = {.lex_state = 175, .external_lex_state = 2}, [895] = {.lex_state = 175, .external_lex_state = 2}, - [896] = {.lex_state = 175, .external_lex_state = 2}, + [896] = {.lex_state = 175, .external_lex_state = 48}, [897] = {.lex_state = 175, .external_lex_state = 2}, [898] = {.lex_state = 175, .external_lex_state = 2}, - [899] = {.lex_state = 41, .external_lex_state = 48}, + [899] = {.lex_state = 175, .external_lex_state = 2}, [900] = {.lex_state = 175, .external_lex_state = 48}, - [901] = {.lex_state = 41, .external_lex_state = 48}, - [902] = {.lex_state = 175, .external_lex_state = 2}, + [901] = {.lex_state = 175, .external_lex_state = 48}, + [902] = {.lex_state = 175, .external_lex_state = 48}, [903] = {.lex_state = 175, .external_lex_state = 48}, - [904] = {.lex_state = 175, .external_lex_state = 2}, + [904] = {.lex_state = 175, .external_lex_state = 48}, [905] = {.lex_state = 175, .external_lex_state = 48}, [906] = {.lex_state = 175, .external_lex_state = 48}, [907] = {.lex_state = 175, .external_lex_state = 48}, @@ -21238,7 +21360,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [915] = {.lex_state = 175, .external_lex_state = 48}, [916] = {.lex_state = 175, .external_lex_state = 48}, [917] = {.lex_state = 175, .external_lex_state = 48}, - [918] = {.lex_state = 175, .external_lex_state = 2}, + [918] = {.lex_state = 175, .external_lex_state = 48}, [919] = {.lex_state = 175, .external_lex_state = 48}, [920] = {.lex_state = 175, .external_lex_state = 48}, [921] = {.lex_state = 175, .external_lex_state = 48}, @@ -21253,29 +21375,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [930] = {.lex_state = 175, .external_lex_state = 48}, [931] = {.lex_state = 175, .external_lex_state = 48}, [932] = {.lex_state = 175, .external_lex_state = 48}, - [933] = {.lex_state = 175, .external_lex_state = 48}, - [934] = {.lex_state = 175, .external_lex_state = 48}, + [933] = {.lex_state = 175, .external_lex_state = 2}, + [934] = {.lex_state = 166, .external_lex_state = 5}, [935] = {.lex_state = 175, .external_lex_state = 48}, - [936] = {.lex_state = 175, .external_lex_state = 48}, - [937] = {.lex_state = 175, .external_lex_state = 48}, - [938] = {.lex_state = 175, .external_lex_state = 48}, - [939] = {.lex_state = 175, .external_lex_state = 2}, - [940] = {.lex_state = 175, .external_lex_state = 2}, - [941] = {.lex_state = 175, .external_lex_state = 48}, + [936] = {.lex_state = 175, .external_lex_state = 2}, + [937] = {.lex_state = 175, .external_lex_state = 2}, + [938] = {.lex_state = 175, .external_lex_state = 2}, + [939] = {.lex_state = 175, .external_lex_state = 48}, + [940] = {.lex_state = 175, .external_lex_state = 48}, + [941] = {.lex_state = 175, .external_lex_state = 2}, [942] = {.lex_state = 175, .external_lex_state = 2}, [943] = {.lex_state = 175, .external_lex_state = 2}, - [944] = {.lex_state = 175, .external_lex_state = 2}, + [944] = {.lex_state = 41, .external_lex_state = 48}, [945] = {.lex_state = 175, .external_lex_state = 2}, [946] = {.lex_state = 175, .external_lex_state = 2}, [947] = {.lex_state = 175, .external_lex_state = 2}, [948] = {.lex_state = 175, .external_lex_state = 2}, [949] = {.lex_state = 175, .external_lex_state = 2}, - [950] = {.lex_state = 175, .external_lex_state = 48}, - [951] = {.lex_state = 175, .external_lex_state = 48}, - [952] = {.lex_state = 175, .external_lex_state = 2}, + [950] = {.lex_state = 175, .external_lex_state = 2}, + [951] = {.lex_state = 175, .external_lex_state = 2}, + [952] = {.lex_state = 41, .external_lex_state = 48}, [953] = {.lex_state = 175, .external_lex_state = 2}, [954] = {.lex_state = 175, .external_lex_state = 2}, - [955] = {.lex_state = 175, .external_lex_state = 48}, + [955] = {.lex_state = 175, .external_lex_state = 2}, [956] = {.lex_state = 175, .external_lex_state = 48}, [957] = {.lex_state = 175, .external_lex_state = 48}, [958] = {.lex_state = 175, .external_lex_state = 48}, @@ -21310,16 +21432,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [987] = {.lex_state = 175, .external_lex_state = 2}, [988] = {.lex_state = 175, .external_lex_state = 2}, [989] = {.lex_state = 175, .external_lex_state = 2}, - [990] = {.lex_state = 38, .external_lex_state = 2}, + [990] = {.lex_state = 175, .external_lex_state = 2}, [991] = {.lex_state = 175, .external_lex_state = 2}, [992] = {.lex_state = 175, .external_lex_state = 2}, [993] = {.lex_state = 38, .external_lex_state = 2}, [994] = {.lex_state = 175, .external_lex_state = 2}, [995] = {.lex_state = 175, .external_lex_state = 2}, [996] = {.lex_state = 38, .external_lex_state = 2}, - [997] = {.lex_state = 38, .external_lex_state = 2}, + [997] = {.lex_state = 175, .external_lex_state = 2}, [998] = {.lex_state = 175, .external_lex_state = 2}, - [999] = {.lex_state = 38, .external_lex_state = 2}, + [999] = {.lex_state = 175, .external_lex_state = 2}, [1000] = {.lex_state = 175, .external_lex_state = 2}, [1001] = {.lex_state = 175, .external_lex_state = 2}, [1002] = {.lex_state = 175, .external_lex_state = 2}, @@ -21327,50 +21449,50 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1004] = {.lex_state = 175, .external_lex_state = 2}, [1005] = {.lex_state = 38, .external_lex_state = 2}, [1006] = {.lex_state = 38, .external_lex_state = 2}, - [1007] = {.lex_state = 175, .external_lex_state = 2}, + [1007] = {.lex_state = 38, .external_lex_state = 2}, [1008] = {.lex_state = 175, .external_lex_state = 2}, [1009] = {.lex_state = 175, .external_lex_state = 2}, - [1010] = {.lex_state = 38, .external_lex_state = 2}, - [1011] = {.lex_state = 175, .external_lex_state = 2}, - [1012] = {.lex_state = 166, .external_lex_state = 7}, - [1013] = {.lex_state = 175, .external_lex_state = 2}, + [1010] = {.lex_state = 175, .external_lex_state = 2}, + [1011] = {.lex_state = 38, .external_lex_state = 2}, + [1012] = {.lex_state = 175, .external_lex_state = 2}, + [1013] = {.lex_state = 38, .external_lex_state = 2}, [1014] = {.lex_state = 38, .external_lex_state = 2}, - [1015] = {.lex_state = 175, .external_lex_state = 2}, - [1016] = {.lex_state = 175, .external_lex_state = 2}, - [1017] = {.lex_state = 175, .external_lex_state = 2}, - [1018] = {.lex_state = 175, .external_lex_state = 2}, + [1015] = {.lex_state = 38, .external_lex_state = 2}, + [1016] = {.lex_state = 38, .external_lex_state = 2}, + [1017] = {.lex_state = 38, .external_lex_state = 2}, + [1018] = {.lex_state = 38, .external_lex_state = 2}, [1019] = {.lex_state = 175, .external_lex_state = 2}, [1020] = {.lex_state = 38, .external_lex_state = 2}, - [1021] = {.lex_state = 38, .external_lex_state = 2}, - [1022] = {.lex_state = 38, .external_lex_state = 2}, - [1023] = {.lex_state = 38, .external_lex_state = 2}, - [1024] = {.lex_state = 38, .external_lex_state = 2}, + [1021] = {.lex_state = 175, .external_lex_state = 2}, + [1022] = {.lex_state = 175, .external_lex_state = 2}, + [1023] = {.lex_state = 175, .external_lex_state = 2}, + [1024] = {.lex_state = 175, .external_lex_state = 2}, [1025] = {.lex_state = 38, .external_lex_state = 2}, - [1026] = {.lex_state = 175, .external_lex_state = 2}, + [1026] = {.lex_state = 38, .external_lex_state = 2}, [1027] = {.lex_state = 38, .external_lex_state = 2}, [1028] = {.lex_state = 175, .external_lex_state = 2}, - [1029] = {.lex_state = 38, .external_lex_state = 2}, + [1029] = {.lex_state = 175, .external_lex_state = 2}, [1030] = {.lex_state = 175, .external_lex_state = 2}, [1031] = {.lex_state = 38, .external_lex_state = 2}, - [1032] = {.lex_state = 175, .external_lex_state = 2}, + [1032] = {.lex_state = 38, .external_lex_state = 2}, [1033] = {.lex_state = 175, .external_lex_state = 2}, - [1034] = {.lex_state = 175, .external_lex_state = 2}, - [1035] = {.lex_state = 38, .external_lex_state = 2}, + [1034] = {.lex_state = 38, .external_lex_state = 2}, + [1035] = {.lex_state = 175, .external_lex_state = 2}, [1036] = {.lex_state = 175, .external_lex_state = 2}, [1037] = {.lex_state = 175, .external_lex_state = 2}, [1038] = {.lex_state = 175, .external_lex_state = 2}, - [1039] = {.lex_state = 175, .external_lex_state = 2}, + [1039] = {.lex_state = 38, .external_lex_state = 2}, [1040] = {.lex_state = 175, .external_lex_state = 2}, - [1041] = {.lex_state = 38, .external_lex_state = 2}, - [1042] = {.lex_state = 175, .external_lex_state = 2}, + [1041] = {.lex_state = 175, .external_lex_state = 2}, + [1042] = {.lex_state = 38, .external_lex_state = 2}, [1043] = {.lex_state = 175, .external_lex_state = 2}, - [1044] = {.lex_state = 38, .external_lex_state = 2}, + [1044] = {.lex_state = 175, .external_lex_state = 2}, [1045] = {.lex_state = 175, .external_lex_state = 2}, [1046] = {.lex_state = 175, .external_lex_state = 2}, - [1047] = {.lex_state = 38, .external_lex_state = 2}, - [1048] = {.lex_state = 38, .external_lex_state = 2}, + [1047] = {.lex_state = 175, .external_lex_state = 2}, + [1048] = {.lex_state = 175, .external_lex_state = 2}, [1049] = {.lex_state = 175, .external_lex_state = 2}, - [1050] = {.lex_state = 38, .external_lex_state = 2}, + [1050] = {.lex_state = 175, .external_lex_state = 2}, [1051] = {.lex_state = 38, .external_lex_state = 2}, [1052] = {.lex_state = 175, .external_lex_state = 2}, [1053] = {.lex_state = 175, .external_lex_state = 2}, @@ -21378,29 +21500,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1055] = {.lex_state = 175, .external_lex_state = 2}, [1056] = {.lex_state = 175, .external_lex_state = 2}, [1057] = {.lex_state = 175, .external_lex_state = 2}, - [1058] = {.lex_state = 175, .external_lex_state = 2}, + [1058] = {.lex_state = 38, .external_lex_state = 2}, [1059] = {.lex_state = 175, .external_lex_state = 2}, [1060] = {.lex_state = 175, .external_lex_state = 2}, [1061] = {.lex_state = 175, .external_lex_state = 2}, [1062] = {.lex_state = 38, .external_lex_state = 2}, [1063] = {.lex_state = 175, .external_lex_state = 2}, - [1064] = {.lex_state = 175, .external_lex_state = 2}, + [1064] = {.lex_state = 38, .external_lex_state = 2}, [1065] = {.lex_state = 175, .external_lex_state = 2}, [1066] = {.lex_state = 175, .external_lex_state = 2}, [1067] = {.lex_state = 175, .external_lex_state = 2}, [1068] = {.lex_state = 175, .external_lex_state = 2}, - [1069] = {.lex_state = 175, .external_lex_state = 2}, + [1069] = {.lex_state = 38, .external_lex_state = 2}, [1070] = {.lex_state = 175, .external_lex_state = 2}, [1071] = {.lex_state = 175, .external_lex_state = 2}, [1072] = {.lex_state = 175, .external_lex_state = 2}, [1073] = {.lex_state = 175, .external_lex_state = 2}, [1074] = {.lex_state = 175, .external_lex_state = 2}, - [1075] = {.lex_state = 41, .external_lex_state = 2}, - [1076] = {.lex_state = 41, .external_lex_state = 2}, + [1075] = {.lex_state = 175, .external_lex_state = 2}, + [1076] = {.lex_state = 175, .external_lex_state = 2}, [1077] = {.lex_state = 175, .external_lex_state = 2}, [1078] = {.lex_state = 175, .external_lex_state = 2}, [1079] = {.lex_state = 175, .external_lex_state = 2}, - [1080] = {.lex_state = 41, .external_lex_state = 2}, + [1080] = {.lex_state = 175, .external_lex_state = 2}, [1081] = {.lex_state = 175, .external_lex_state = 2}, [1082] = {.lex_state = 175, .external_lex_state = 2}, [1083] = {.lex_state = 175, .external_lex_state = 2}, @@ -21413,109 +21535,109 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1090] = {.lex_state = 175, .external_lex_state = 2}, [1091] = {.lex_state = 175, .external_lex_state = 2}, [1092] = {.lex_state = 175, .external_lex_state = 2}, - [1093] = {.lex_state = 175, .external_lex_state = 2}, - [1094] = {.lex_state = 175, .external_lex_state = 2}, - [1095] = {.lex_state = 41, .external_lex_state = 2}, + [1093] = {.lex_state = 41, .external_lex_state = 2}, + [1094] = {.lex_state = 41, .external_lex_state = 2}, + [1095] = {.lex_state = 166, .external_lex_state = 7}, [1096] = {.lex_state = 175, .external_lex_state = 2}, [1097] = {.lex_state = 175, .external_lex_state = 2}, [1098] = {.lex_state = 175, .external_lex_state = 2}, - [1099] = {.lex_state = 41, .external_lex_state = 2}, - [1100] = {.lex_state = 41, .external_lex_state = 2}, + [1099] = {.lex_state = 175, .external_lex_state = 2}, + [1100] = {.lex_state = 175, .external_lex_state = 2}, [1101] = {.lex_state = 175, .external_lex_state = 2}, [1102] = {.lex_state = 175, .external_lex_state = 2}, [1103] = {.lex_state = 175, .external_lex_state = 2}, [1104] = {.lex_state = 175, .external_lex_state = 2}, - [1105] = {.lex_state = 175, .external_lex_state = 2}, - [1106] = {.lex_state = 41, .external_lex_state = 2}, + [1105] = {.lex_state = 41, .external_lex_state = 2}, + [1106] = {.lex_state = 175, .external_lex_state = 2}, [1107] = {.lex_state = 41, .external_lex_state = 2}, - [1108] = {.lex_state = 41, .external_lex_state = 2}, - [1109] = {.lex_state = 41, .external_lex_state = 2}, + [1108] = {.lex_state = 175, .external_lex_state = 2}, + [1109] = {.lex_state = 175, .external_lex_state = 2}, [1110] = {.lex_state = 175, .external_lex_state = 2}, - [1111] = {.lex_state = 41, .external_lex_state = 2}, - [1112] = {.lex_state = 41, .external_lex_state = 2}, + [1111] = {.lex_state = 175, .external_lex_state = 2}, + [1112] = {.lex_state = 175, .external_lex_state = 2}, [1113] = {.lex_state = 175, .external_lex_state = 2}, - [1114] = {.lex_state = 41, .external_lex_state = 2}, - [1115] = {.lex_state = 41, .external_lex_state = 2}, - [1116] = {.lex_state = 41, .external_lex_state = 2}, - [1117] = {.lex_state = 41, .external_lex_state = 2}, - [1118] = {.lex_state = 41, .external_lex_state = 2}, - [1119] = {.lex_state = 41, .external_lex_state = 2}, - [1120] = {.lex_state = 41, .external_lex_state = 2}, - [1121] = {.lex_state = 41, .external_lex_state = 2}, - [1122] = {.lex_state = 41, .external_lex_state = 2}, + [1114] = {.lex_state = 175, .external_lex_state = 2}, + [1115] = {.lex_state = 175, .external_lex_state = 2}, + [1116] = {.lex_state = 175, .external_lex_state = 2}, + [1117] = {.lex_state = 175, .external_lex_state = 2}, + [1118] = {.lex_state = 175, .external_lex_state = 2}, + [1119] = {.lex_state = 175, .external_lex_state = 2}, + [1120] = {.lex_state = 175, .external_lex_state = 2}, + [1121] = {.lex_state = 175, .external_lex_state = 2}, + [1122] = {.lex_state = 175, .external_lex_state = 2}, [1123] = {.lex_state = 175, .external_lex_state = 2}, - [1124] = {.lex_state = 41, .external_lex_state = 2}, - [1125] = {.lex_state = 175, .external_lex_state = 2}, + [1124] = {.lex_state = 175, .external_lex_state = 2}, + [1125] = {.lex_state = 41, .external_lex_state = 2}, [1126] = {.lex_state = 175, .external_lex_state = 2}, - [1127] = {.lex_state = 175, .external_lex_state = 2}, + [1127] = {.lex_state = 41, .external_lex_state = 2}, [1128] = {.lex_state = 175, .external_lex_state = 2}, [1129] = {.lex_state = 175, .external_lex_state = 2}, - [1130] = {.lex_state = 41, .external_lex_state = 2}, - [1131] = {.lex_state = 175, .external_lex_state = 2}, - [1132] = {.lex_state = 41, .external_lex_state = 2}, + [1130] = {.lex_state = 175, .external_lex_state = 2}, + [1131] = {.lex_state = 41, .external_lex_state = 2}, + [1132] = {.lex_state = 175, .external_lex_state = 2}, [1133] = {.lex_state = 41, .external_lex_state = 2}, - [1134] = {.lex_state = 41, .external_lex_state = 2}, - [1135] = {.lex_state = 41, .external_lex_state = 2}, - [1136] = {.lex_state = 41, .external_lex_state = 2}, - [1137] = {.lex_state = 175, .external_lex_state = 2}, + [1134] = {.lex_state = 175, .external_lex_state = 2}, + [1135] = {.lex_state = 175, .external_lex_state = 2}, + [1136] = {.lex_state = 175, .external_lex_state = 2}, + [1137] = {.lex_state = 41, .external_lex_state = 2}, [1138] = {.lex_state = 175, .external_lex_state = 2}, - [1139] = {.lex_state = 175, .external_lex_state = 2}, - [1140] = {.lex_state = 41, .external_lex_state = 2}, + [1139] = {.lex_state = 41, .external_lex_state = 2}, + [1140] = {.lex_state = 175, .external_lex_state = 2}, [1141] = {.lex_state = 175, .external_lex_state = 2}, [1142] = {.lex_state = 175, .external_lex_state = 2}, - [1143] = {.lex_state = 175, .external_lex_state = 2}, + [1143] = {.lex_state = 41, .external_lex_state = 2}, [1144] = {.lex_state = 175, .external_lex_state = 2}, [1145] = {.lex_state = 41, .external_lex_state = 2}, [1146] = {.lex_state = 175, .external_lex_state = 2}, [1147] = {.lex_state = 175, .external_lex_state = 2}, [1148] = {.lex_state = 175, .external_lex_state = 2}, - [1149] = {.lex_state = 175, .external_lex_state = 2}, - [1150] = {.lex_state = 41, .external_lex_state = 2}, - [1151] = {.lex_state = 175, .external_lex_state = 2}, - [1152] = {.lex_state = 41, .external_lex_state = 2}, + [1149] = {.lex_state = 41, .external_lex_state = 2}, + [1150] = {.lex_state = 175, .external_lex_state = 2}, + [1151] = {.lex_state = 41, .external_lex_state = 2}, + [1152] = {.lex_state = 175, .external_lex_state = 2}, [1153] = {.lex_state = 175, .external_lex_state = 2}, [1154] = {.lex_state = 175, .external_lex_state = 2}, [1155] = {.lex_state = 41, .external_lex_state = 2}, [1156] = {.lex_state = 175, .external_lex_state = 2}, - [1157] = {.lex_state = 175, .external_lex_state = 2}, + [1157] = {.lex_state = 41, .external_lex_state = 2}, [1158] = {.lex_state = 175, .external_lex_state = 2}, - [1159] = {.lex_state = 41, .external_lex_state = 2}, + [1159] = {.lex_state = 175, .external_lex_state = 2}, [1160] = {.lex_state = 175, .external_lex_state = 2}, - [1161] = {.lex_state = 175, .external_lex_state = 2}, + [1161] = {.lex_state = 41, .external_lex_state = 2}, [1162] = {.lex_state = 175, .external_lex_state = 2}, [1163] = {.lex_state = 41, .external_lex_state = 2}, [1164] = {.lex_state = 175, .external_lex_state = 2}, [1165] = {.lex_state = 175, .external_lex_state = 2}, - [1166] = {.lex_state = 175, .external_lex_state = 2}, - [1167] = {.lex_state = 175, .external_lex_state = 2}, - [1168] = {.lex_state = 41, .external_lex_state = 2}, - [1169] = {.lex_state = 175, .external_lex_state = 2}, + [1166] = {.lex_state = 41, .external_lex_state = 2}, + [1167] = {.lex_state = 41, .external_lex_state = 2}, + [1168] = {.lex_state = 175, .external_lex_state = 2}, + [1169] = {.lex_state = 41, .external_lex_state = 2}, [1170] = {.lex_state = 175, .external_lex_state = 2}, - [1171] = {.lex_state = 41, .external_lex_state = 2}, - [1172] = {.lex_state = 41, .external_lex_state = 2}, - [1173] = {.lex_state = 175, .external_lex_state = 2}, + [1171] = {.lex_state = 175, .external_lex_state = 2}, + [1172] = {.lex_state = 175, .external_lex_state = 2}, + [1173] = {.lex_state = 41, .external_lex_state = 2}, [1174] = {.lex_state = 175, .external_lex_state = 2}, [1175] = {.lex_state = 41, .external_lex_state = 2}, - [1176] = {.lex_state = 18, .external_lex_state = 6}, + [1176] = {.lex_state = 175, .external_lex_state = 2}, [1177] = {.lex_state = 175, .external_lex_state = 2}, - [1178] = {.lex_state = 41, .external_lex_state = 2}, - [1179] = {.lex_state = 175, .external_lex_state = 2}, + [1178] = {.lex_state = 175, .external_lex_state = 2}, + [1179] = {.lex_state = 41, .external_lex_state = 2}, [1180] = {.lex_state = 175, .external_lex_state = 2}, [1181] = {.lex_state = 41, .external_lex_state = 2}, [1182] = {.lex_state = 175, .external_lex_state = 2}, [1183] = {.lex_state = 175, .external_lex_state = 2}, - [1184] = {.lex_state = 41, .external_lex_state = 2}, + [1184] = {.lex_state = 175, .external_lex_state = 2}, [1185] = {.lex_state = 41, .external_lex_state = 2}, - [1186] = {.lex_state = 41, .external_lex_state = 2}, + [1186] = {.lex_state = 175, .external_lex_state = 2}, [1187] = {.lex_state = 41, .external_lex_state = 2}, - [1188] = {.lex_state = 17, .external_lex_state = 6}, - [1189] = {.lex_state = 41, .external_lex_state = 2}, + [1188] = {.lex_state = 175, .external_lex_state = 2}, + [1189] = {.lex_state = 175, .external_lex_state = 2}, [1190] = {.lex_state = 175, .external_lex_state = 2}, - [1191] = {.lex_state = 41, .external_lex_state = 2}, + [1191] = {.lex_state = 175, .external_lex_state = 2}, [1192] = {.lex_state = 175, .external_lex_state = 2}, [1193] = {.lex_state = 41, .external_lex_state = 2}, - [1194] = {.lex_state = 41, .external_lex_state = 2}, - [1195] = {.lex_state = 175, .external_lex_state = 2}, + [1194] = {.lex_state = 175, .external_lex_state = 2}, + [1195] = {.lex_state = 41, .external_lex_state = 2}, [1196] = {.lex_state = 175, .external_lex_state = 2}, [1197] = {.lex_state = 175, .external_lex_state = 2}, [1198] = {.lex_state = 175, .external_lex_state = 2}, @@ -21540,41 +21662,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1217] = {.lex_state = 175, .external_lex_state = 2}, [1218] = {.lex_state = 175, .external_lex_state = 2}, [1219] = {.lex_state = 175, .external_lex_state = 2}, - [1220] = {.lex_state = 175, .external_lex_state = 2}, + [1220] = {.lex_state = 41, .external_lex_state = 2}, [1221] = {.lex_state = 175, .external_lex_state = 2}, - [1222] = {.lex_state = 175, .external_lex_state = 2}, - [1223] = {.lex_state = 175, .external_lex_state = 2}, - [1224] = {.lex_state = 175, .external_lex_state = 2}, - [1225] = {.lex_state = 175, .external_lex_state = 2}, - [1226] = {.lex_state = 175, .external_lex_state = 2}, + [1222] = {.lex_state = 41, .external_lex_state = 2}, + [1223] = {.lex_state = 41, .external_lex_state = 2}, + [1224] = {.lex_state = 41, .external_lex_state = 2}, + [1225] = {.lex_state = 41, .external_lex_state = 2}, + [1226] = {.lex_state = 41, .external_lex_state = 2}, [1227] = {.lex_state = 41, .external_lex_state = 2}, - [1228] = {.lex_state = 175, .external_lex_state = 2}, - [1229] = {.lex_state = 175, .external_lex_state = 2}, + [1228] = {.lex_state = 41, .external_lex_state = 2}, + [1229] = {.lex_state = 41, .external_lex_state = 2}, [1230] = {.lex_state = 41, .external_lex_state = 2}, - [1231] = {.lex_state = 175, .external_lex_state = 2}, - [1232] = {.lex_state = 175, .external_lex_state = 2}, + [1231] = {.lex_state = 41, .external_lex_state = 2}, + [1232] = {.lex_state = 41, .external_lex_state = 2}, [1233] = {.lex_state = 41, .external_lex_state = 2}, [1234] = {.lex_state = 41, .external_lex_state = 2}, - [1235] = {.lex_state = 175, .external_lex_state = 2}, - [1236] = {.lex_state = 175, .external_lex_state = 2}, + [1235] = {.lex_state = 41, .external_lex_state = 2}, + [1236] = {.lex_state = 41, .external_lex_state = 2}, [1237] = {.lex_state = 41, .external_lex_state = 2}, [1238] = {.lex_state = 41, .external_lex_state = 2}, - [1239] = {.lex_state = 175, .external_lex_state = 2}, + [1239] = {.lex_state = 41, .external_lex_state = 2}, [1240] = {.lex_state = 41, .external_lex_state = 2}, - [1241] = {.lex_state = 175, .external_lex_state = 2}, - [1242] = {.lex_state = 175, .external_lex_state = 2}, - [1243] = {.lex_state = 175, .external_lex_state = 2}, - [1244] = {.lex_state = 175, .external_lex_state = 2}, - [1245] = {.lex_state = 175, .external_lex_state = 2}, + [1241] = {.lex_state = 41, .external_lex_state = 2}, + [1242] = {.lex_state = 41, .external_lex_state = 2}, + [1243] = {.lex_state = 41, .external_lex_state = 2}, + [1244] = {.lex_state = 41, .external_lex_state = 2}, + [1245] = {.lex_state = 41, .external_lex_state = 2}, [1246] = {.lex_state = 41, .external_lex_state = 2}, [1247] = {.lex_state = 41, .external_lex_state = 2}, - [1248] = {.lex_state = 175, .external_lex_state = 2}, - [1249] = {.lex_state = 175, .external_lex_state = 2}, - [1250] = {.lex_state = 175, .external_lex_state = 2}, - [1251] = {.lex_state = 175, .external_lex_state = 2}, - [1252] = {.lex_state = 41, .external_lex_state = 2}, + [1248] = {.lex_state = 41, .external_lex_state = 2}, + [1249] = {.lex_state = 41, .external_lex_state = 2}, + [1250] = {.lex_state = 41, .external_lex_state = 2}, + [1251] = {.lex_state = 41, .external_lex_state = 2}, + [1252] = {.lex_state = 175, .external_lex_state = 2}, [1253] = {.lex_state = 175, .external_lex_state = 2}, - [1254] = {.lex_state = 41, .external_lex_state = 2}, + [1254] = {.lex_state = 175, .external_lex_state = 2}, [1255] = {.lex_state = 175, .external_lex_state = 2}, [1256] = {.lex_state = 175, .external_lex_state = 2}, [1257] = {.lex_state = 175, .external_lex_state = 2}, @@ -21730,7 +21852,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1407] = {.lex_state = 175, .external_lex_state = 2}, [1408] = {.lex_state = 175, .external_lex_state = 2}, [1409] = {.lex_state = 175, .external_lex_state = 2}, - [1410] = {.lex_state = 175, .external_lex_state = 2}, + [1410] = {.lex_state = 18, .external_lex_state = 6}, [1411] = {.lex_state = 175, .external_lex_state = 2}, [1412] = {.lex_state = 175, .external_lex_state = 2}, [1413] = {.lex_state = 175, .external_lex_state = 2}, @@ -21890,7 +22012,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1567] = {.lex_state = 175, .external_lex_state = 2}, [1568] = {.lex_state = 175, .external_lex_state = 2}, [1569] = {.lex_state = 175, .external_lex_state = 2}, - [1570] = {.lex_state = 175, .external_lex_state = 2}, + [1570] = {.lex_state = 17, .external_lex_state = 6}, [1571] = {.lex_state = 175, .external_lex_state = 2}, [1572] = {.lex_state = 175, .external_lex_state = 2}, [1573] = {.lex_state = 175, .external_lex_state = 2}, @@ -22141,7 +22263,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1818] = {.lex_state = 175, .external_lex_state = 2}, [1819] = {.lex_state = 175, .external_lex_state = 2}, [1820] = {.lex_state = 175, .external_lex_state = 2}, - [1821] = {.lex_state = 166, .external_lex_state = 8}, + [1821] = {.lex_state = 175, .external_lex_state = 2}, [1822] = {.lex_state = 175, .external_lex_state = 2}, [1823] = {.lex_state = 175, .external_lex_state = 2}, [1824] = {.lex_state = 175, .external_lex_state = 2}, @@ -22267,7 +22389,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1944] = {.lex_state = 175, .external_lex_state = 2}, [1945] = {.lex_state = 175, .external_lex_state = 2}, [1946] = {.lex_state = 175, .external_lex_state = 2}, - [1947] = {.lex_state = 175, .external_lex_state = 2}, + [1947] = {.lex_state = 166, .external_lex_state = 8}, [1948] = {.lex_state = 166, .external_lex_state = 6}, [1949] = {.lex_state = 170, .external_lex_state = 3}, [1950] = {.lex_state = 169, .external_lex_state = 3}, @@ -22275,10 +22397,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1952] = {.lex_state = 169, .external_lex_state = 3}, [1953] = {.lex_state = 169, .external_lex_state = 3}, [1954] = {.lex_state = 170, .external_lex_state = 4}, - [1955] = {.lex_state = 170, .external_lex_state = 5}, - [1956] = {.lex_state = 169, .external_lex_state = 4}, - [1957] = {.lex_state = 170, .external_lex_state = 6}, - [1958] = {.lex_state = 169, .external_lex_state = 4}, + [1955] = {.lex_state = 169, .external_lex_state = 4}, + [1956] = {.lex_state = 170, .external_lex_state = 5}, + [1957] = {.lex_state = 169, .external_lex_state = 4}, + [1958] = {.lex_state = 170, .external_lex_state = 6}, [1959] = {.lex_state = 169, .external_lex_state = 4}, [1960] = {.lex_state = 169, .external_lex_state = 4}, [1961] = {.lex_state = 24, .external_lex_state = 6}, @@ -22293,13 +22415,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1970] = {.lex_state = 41, .external_lex_state = 49}, [1971] = {.lex_state = 41, .external_lex_state = 49}, [1972] = {.lex_state = 170, .external_lex_state = 7}, - [1973] = {.lex_state = 25, .external_lex_state = 6}, - [1974] = {.lex_state = 26, .external_lex_state = 6}, + [1973] = {.lex_state = 26, .external_lex_state = 6}, + [1974] = {.lex_state = 25, .external_lex_state = 6}, [1975] = {.lex_state = 169, .external_lex_state = 7}, - [1976] = {.lex_state = 169, .external_lex_state = 7}, + [1976] = {.lex_state = 170, .external_lex_state = 8}, [1977] = {.lex_state = 169, .external_lex_state = 7}, [1978] = {.lex_state = 169, .external_lex_state = 7}, - [1979] = {.lex_state = 170, .external_lex_state = 8}, + [1979] = {.lex_state = 169, .external_lex_state = 7}, [1980] = {.lex_state = 23, .external_lex_state = 6}, [1981] = {.lex_state = 23, .external_lex_state = 6}, [1982] = {.lex_state = 23, .external_lex_state = 6}, @@ -22307,9 +22429,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1984] = {.lex_state = 175, .external_lex_state = 49}, [1985] = {.lex_state = 169, .external_lex_state = 8}, [1986] = {.lex_state = 169, .external_lex_state = 8}, - [1987] = {.lex_state = 169, .external_lex_state = 8}, + [1987] = {.lex_state = 175, .external_lex_state = 49}, [1988] = {.lex_state = 169, .external_lex_state = 8}, - [1989] = {.lex_state = 175, .external_lex_state = 49}, + [1989] = {.lex_state = 169, .external_lex_state = 8}, [1990] = {.lex_state = 41, .external_lex_state = 50}, [1991] = {.lex_state = 41, .external_lex_state = 50}, [1992] = {.lex_state = 41, .external_lex_state = 50}, @@ -22326,9 +22448,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2003] = {.lex_state = 41, .external_lex_state = 11}, [2004] = {.lex_state = 41, .external_lex_state = 11}, [2005] = {.lex_state = 40, .external_lex_state = 11}, - [2006] = {.lex_state = 40, .external_lex_state = 11}, + [2006] = {.lex_state = 41, .external_lex_state = 11}, [2007] = {.lex_state = 41, .external_lex_state = 11}, - [2008] = {.lex_state = 41, .external_lex_state = 11}, + [2008] = {.lex_state = 40, .external_lex_state = 11}, [2009] = {.lex_state = 41, .external_lex_state = 11}, [2010] = {.lex_state = 41, .external_lex_state = 11}, [2011] = {.lex_state = 41, .external_lex_state = 11}, @@ -22355,49 +22477,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2032] = {.lex_state = 41, .external_lex_state = 11}, [2033] = {.lex_state = 41, .external_lex_state = 11}, [2034] = {.lex_state = 41, .external_lex_state = 11}, - [2035] = {.lex_state = 175, .external_lex_state = 11}, - [2036] = {.lex_state = 175, .external_lex_state = 2}, + [2035] = {.lex_state = 40, .external_lex_state = 2}, + [2036] = {.lex_state = 175, .external_lex_state = 11}, [2037] = {.lex_state = 175, .external_lex_state = 11}, - [2038] = {.lex_state = 175, .external_lex_state = 11}, - [2039] = {.lex_state = 40, .external_lex_state = 2}, - [2040] = {.lex_state = 175, .external_lex_state = 11}, + [2038] = {.lex_state = 40, .external_lex_state = 2}, + [2039] = {.lex_state = 175, .external_lex_state = 11}, + [2040] = {.lex_state = 40, .external_lex_state = 2}, [2041] = {.lex_state = 40, .external_lex_state = 2}, - [2042] = {.lex_state = 40, .external_lex_state = 2}, + [2042] = {.lex_state = 175, .external_lex_state = 11}, [2043] = {.lex_state = 175, .external_lex_state = 11}, - [2044] = {.lex_state = 40, .external_lex_state = 2}, - [2045] = {.lex_state = 40, .external_lex_state = 2}, - [2046] = {.lex_state = 175, .external_lex_state = 11}, - [2047] = {.lex_state = 175, .external_lex_state = 2}, + [2044] = {.lex_state = 175, .external_lex_state = 2}, + [2045] = {.lex_state = 175, .external_lex_state = 2}, + [2046] = {.lex_state = 175, .external_lex_state = 2}, + [2047] = {.lex_state = 40, .external_lex_state = 2}, [2048] = {.lex_state = 175, .external_lex_state = 11}, - [2049] = {.lex_state = 175, .external_lex_state = 2}, + [2049] = {.lex_state = 175, .external_lex_state = 11}, [2050] = {.lex_state = 175, .external_lex_state = 11}, [2051] = {.lex_state = 175, .external_lex_state = 11}, - [2052] = {.lex_state = 40, .external_lex_state = 2}, - [2053] = {.lex_state = 41, .external_lex_state = 11}, - [2054] = {.lex_state = 175, .external_lex_state = 11}, + [2052] = {.lex_state = 175, .external_lex_state = 11}, + [2053] = {.lex_state = 40, .external_lex_state = 2}, + [2054] = {.lex_state = 41, .external_lex_state = 11}, [2055] = {.lex_state = 175, .external_lex_state = 11}, [2056] = {.lex_state = 175, .external_lex_state = 11}, - [2057] = {.lex_state = 175, .external_lex_state = 11}, - [2058] = {.lex_state = 175, .external_lex_state = 11}, - [2059] = {.lex_state = 41, .external_lex_state = 2}, + [2057] = {.lex_state = 41, .external_lex_state = 2}, + [2058] = {.lex_state = 41, .external_lex_state = 2}, + [2059] = {.lex_state = 175, .external_lex_state = 11}, [2060] = {.lex_state = 41, .external_lex_state = 2}, - [2061] = {.lex_state = 41, .external_lex_state = 2}, + [2061] = {.lex_state = 175, .external_lex_state = 11}, [2062] = {.lex_state = 175, .external_lex_state = 11}, [2063] = {.lex_state = 175, .external_lex_state = 11}, - [2064] = {.lex_state = 175, .external_lex_state = 11}, + [2064] = {.lex_state = 40, .external_lex_state = 2}, [2065] = {.lex_state = 175, .external_lex_state = 11}, - [2066] = {.lex_state = 175, .external_lex_state = 11}, + [2066] = {.lex_state = 41, .external_lex_state = 2}, [2067] = {.lex_state = 175, .external_lex_state = 11}, [2068] = {.lex_state = 175, .external_lex_state = 11}, [2069] = {.lex_state = 175, .external_lex_state = 11}, - [2070] = {.lex_state = 41, .external_lex_state = 2}, + [2070] = {.lex_state = 175, .external_lex_state = 11}, [2071] = {.lex_state = 41, .external_lex_state = 2}, - [2072] = {.lex_state = 41, .external_lex_state = 2}, - [2073] = {.lex_state = 41, .external_lex_state = 2}, - [2074] = {.lex_state = 175, .external_lex_state = 11}, - [2075] = {.lex_state = 41, .external_lex_state = 2}, - [2076] = {.lex_state = 175, .external_lex_state = 11}, - [2077] = {.lex_state = 40, .external_lex_state = 2}, + [2072] = {.lex_state = 175, .external_lex_state = 11}, + [2073] = {.lex_state = 175, .external_lex_state = 11}, + [2074] = {.lex_state = 41, .external_lex_state = 2}, + [2075] = {.lex_state = 175, .external_lex_state = 11}, + [2076] = {.lex_state = 41, .external_lex_state = 2}, + [2077] = {.lex_state = 41, .external_lex_state = 2}, [2078] = {.lex_state = 175, .external_lex_state = 11}, [2079] = {.lex_state = 41, .external_lex_state = 2}, [2080] = {.lex_state = 41, .external_lex_state = 2}, @@ -22418,51 +22540,51 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2095] = {.lex_state = 41, .external_lex_state = 2}, [2096] = {.lex_state = 41, .external_lex_state = 2}, [2097] = {.lex_state = 41, .external_lex_state = 2}, - [2098] = {.lex_state = 175, .external_lex_state = 13}, - [2099] = {.lex_state = 175, .external_lex_state = 13}, - [2100] = {.lex_state = 175, .external_lex_state = 13}, - [2101] = {.lex_state = 175, .external_lex_state = 13}, - [2102] = {.lex_state = 175, .external_lex_state = 13}, - [2103] = {.lex_state = 175, .external_lex_state = 13}, - [2104] = {.lex_state = 175, .external_lex_state = 13}, - [2105] = {.lex_state = 175, .external_lex_state = 13}, - [2106] = {.lex_state = 175, .external_lex_state = 13}, - [2107] = {.lex_state = 175, .external_lex_state = 13}, - [2108] = {.lex_state = 175, .external_lex_state = 13}, - [2109] = {.lex_state = 175, .external_lex_state = 13}, - [2110] = {.lex_state = 175, .external_lex_state = 13}, - [2111] = {.lex_state = 175, .external_lex_state = 13}, - [2112] = {.lex_state = 175, .external_lex_state = 13}, - [2113] = {.lex_state = 175, .external_lex_state = 13}, - [2114] = {.lex_state = 175, .external_lex_state = 13}, - [2115] = {.lex_state = 175, .external_lex_state = 13}, - [2116] = {.lex_state = 175, .external_lex_state = 13}, - [2117] = {.lex_state = 175, .external_lex_state = 13}, - [2118] = {.lex_state = 175, .external_lex_state = 13}, - [2119] = {.lex_state = 175, .external_lex_state = 13}, - [2120] = {.lex_state = 175, .external_lex_state = 13}, - [2121] = {.lex_state = 175, .external_lex_state = 13}, - [2122] = {.lex_state = 175, .external_lex_state = 13}, - [2123] = {.lex_state = 175, .external_lex_state = 13}, - [2124] = {.lex_state = 175, .external_lex_state = 13}, - [2125] = {.lex_state = 175, .external_lex_state = 13}, - [2126] = {.lex_state = 178, .external_lex_state = 51}, + [2098] = {.lex_state = 175, .external_lex_state = 12}, + [2099] = {.lex_state = 175, .external_lex_state = 12}, + [2100] = {.lex_state = 175, .external_lex_state = 12}, + [2101] = {.lex_state = 175, .external_lex_state = 12}, + [2102] = {.lex_state = 175, .external_lex_state = 12}, + [2103] = {.lex_state = 175, .external_lex_state = 12}, + [2104] = {.lex_state = 175, .external_lex_state = 12}, + [2105] = {.lex_state = 175, .external_lex_state = 12}, + [2106] = {.lex_state = 175, .external_lex_state = 12}, + [2107] = {.lex_state = 175, .external_lex_state = 12}, + [2108] = {.lex_state = 175, .external_lex_state = 12}, + [2109] = {.lex_state = 175, .external_lex_state = 12}, + [2110] = {.lex_state = 175, .external_lex_state = 12}, + [2111] = {.lex_state = 175, .external_lex_state = 12}, + [2112] = {.lex_state = 175, .external_lex_state = 12}, + [2113] = {.lex_state = 175, .external_lex_state = 12}, + [2114] = {.lex_state = 175, .external_lex_state = 12}, + [2115] = {.lex_state = 175, .external_lex_state = 12}, + [2116] = {.lex_state = 175, .external_lex_state = 12}, + [2117] = {.lex_state = 175, .external_lex_state = 12}, + [2118] = {.lex_state = 175, .external_lex_state = 12}, + [2119] = {.lex_state = 175, .external_lex_state = 12}, + [2120] = {.lex_state = 175, .external_lex_state = 12}, + [2121] = {.lex_state = 175, .external_lex_state = 12}, + [2122] = {.lex_state = 175, .external_lex_state = 12}, + [2123] = {.lex_state = 175, .external_lex_state = 12}, + [2124] = {.lex_state = 175, .external_lex_state = 12}, + [2125] = {.lex_state = 175, .external_lex_state = 12}, + [2126] = {.lex_state = 175, .external_lex_state = 2}, [2127] = {.lex_state = 178, .external_lex_state = 51}, [2128] = {.lex_state = 175, .external_lex_state = 2}, - [2129] = {.lex_state = 178, .external_lex_state = 51}, - [2130] = {.lex_state = 178, .external_lex_state = 51}, + [2129] = {.lex_state = 175, .external_lex_state = 19}, + [2130] = {.lex_state = 175, .external_lex_state = 19}, [2131] = {.lex_state = 178, .external_lex_state = 51}, - [2132] = {.lex_state = 178, .external_lex_state = 51}, + [2132] = {.lex_state = 175, .external_lex_state = 2}, [2133] = {.lex_state = 175, .external_lex_state = 2}, - [2134] = {.lex_state = 175, .external_lex_state = 2}, - [2135] = {.lex_state = 175, .external_lex_state = 19}, - [2136] = {.lex_state = 175, .external_lex_state = 2}, - [2137] = {.lex_state = 175, .external_lex_state = 19}, - [2138] = {.lex_state = 175, .external_lex_state = 19}, + [2134] = {.lex_state = 178, .external_lex_state = 51}, + [2135] = {.lex_state = 178, .external_lex_state = 51}, + [2136] = {.lex_state = 175, .external_lex_state = 19}, + [2137] = {.lex_state = 178, .external_lex_state = 51}, + [2138] = {.lex_state = 178, .external_lex_state = 51}, [2139] = {.lex_state = 175, .external_lex_state = 2}, - [2140] = {.lex_state = 178, .external_lex_state = 52}, - [2141] = {.lex_state = 178, .external_lex_state = 51}, - [2142] = {.lex_state = 178, .external_lex_state = 52}, + [2140] = {.lex_state = 175, .external_lex_state = 2}, + [2141] = {.lex_state = 175, .external_lex_state = 2}, + [2142] = {.lex_state = 175, .external_lex_state = 2}, [2143] = {.lex_state = 175, .external_lex_state = 2}, [2144] = {.lex_state = 175, .external_lex_state = 2}, [2145] = {.lex_state = 175, .external_lex_state = 2}, @@ -22474,18 +22596,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2151] = {.lex_state = 175, .external_lex_state = 2}, [2152] = {.lex_state = 175, .external_lex_state = 2}, [2153] = {.lex_state = 175, .external_lex_state = 2}, - [2154] = {.lex_state = 175, .external_lex_state = 2}, - [2155] = {.lex_state = 178, .external_lex_state = 52}, - [2156] = {.lex_state = 178, .external_lex_state = 51}, - [2157] = {.lex_state = 178, .external_lex_state = 52}, - [2158] = {.lex_state = 175, .external_lex_state = 2}, - [2159] = {.lex_state = 175, .external_lex_state = 2}, + [2154] = {.lex_state = 178, .external_lex_state = 52}, + [2155] = {.lex_state = 178, .external_lex_state = 51}, + [2156] = {.lex_state = 178, .external_lex_state = 52}, + [2157] = {.lex_state = 178, .external_lex_state = 51}, + [2158] = {.lex_state = 178, .external_lex_state = 52}, + [2159] = {.lex_state = 178, .external_lex_state = 52}, [2160] = {.lex_state = 178, .external_lex_state = 52}, [2161] = {.lex_state = 178, .external_lex_state = 52}, [2162] = {.lex_state = 178, .external_lex_state = 53}, - [2163] = {.lex_state = 178, .external_lex_state = 53}, + [2163] = {.lex_state = 178, .external_lex_state = 52}, [2164] = {.lex_state = 178, .external_lex_state = 52}, - [2165] = {.lex_state = 178, .external_lex_state = 52}, + [2165] = {.lex_state = 178, .external_lex_state = 53}, [2166] = {.lex_state = 178, .external_lex_state = 53}, [2167] = {.lex_state = 178, .external_lex_state = 53}, [2168] = {.lex_state = 178, .external_lex_state = 53}, @@ -22498,389 +22620,389 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2175] = {.lex_state = 52, .external_lex_state = 54}, [2176] = {.lex_state = 178, .external_lex_state = 55}, [2177] = {.lex_state = 178, .external_lex_state = 56}, - [2178] = {.lex_state = 178, .external_lex_state = 53}, - [2179] = {.lex_state = 178, .external_lex_state = 56}, - [2180] = {.lex_state = 178, .external_lex_state = 53}, - [2181] = {.lex_state = 178, .external_lex_state = 54}, - [2182] = {.lex_state = 178, .external_lex_state = 54}, + [2178] = {.lex_state = 178, .external_lex_state = 54}, + [2179] = {.lex_state = 178, .external_lex_state = 55}, + [2180] = {.lex_state = 178, .external_lex_state = 54}, + [2181] = {.lex_state = 178, .external_lex_state = 55}, + [2182] = {.lex_state = 178, .external_lex_state = 55}, [2183] = {.lex_state = 178, .external_lex_state = 54}, - [2184] = {.lex_state = 178, .external_lex_state = 55}, - [2185] = {.lex_state = 178, .external_lex_state = 56}, + [2184] = {.lex_state = 178, .external_lex_state = 54}, + [2185] = {.lex_state = 178, .external_lex_state = 55}, [2186] = {.lex_state = 178, .external_lex_state = 56}, [2187] = {.lex_state = 178, .external_lex_state = 56}, - [2188] = {.lex_state = 178, .external_lex_state = 55}, - [2189] = {.lex_state = 178, .external_lex_state = 55}, + [2188] = {.lex_state = 178, .external_lex_state = 56}, + [2189] = {.lex_state = 178, .external_lex_state = 53}, [2190] = {.lex_state = 178, .external_lex_state = 55}, - [2191] = {.lex_state = 178, .external_lex_state = 54}, + [2191] = {.lex_state = 178, .external_lex_state = 53}, [2192] = {.lex_state = 178, .external_lex_state = 54}, - [2193] = {.lex_state = 178, .external_lex_state = 54}, - [2194] = {.lex_state = 178, .external_lex_state = 55}, + [2193] = {.lex_state = 178, .external_lex_state = 56}, + [2194] = {.lex_state = 178, .external_lex_state = 54}, [2195] = {.lex_state = 178, .external_lex_state = 56}, [2196] = {.lex_state = 52, .external_lex_state = 57}, - [2197] = {.lex_state = 52, .external_lex_state = 57}, - [2198] = {.lex_state = 52, .external_lex_state = 57}, + [2197] = {.lex_state = 52, .external_lex_state = 54}, + [2198] = {.lex_state = 52, .external_lex_state = 54}, [2199] = {.lex_state = 52, .external_lex_state = 57}, - [2200] = {.lex_state = 176, .external_lex_state = 58}, - [2201] = {.lex_state = 52, .external_lex_state = 57}, - [2202] = {.lex_state = 52, .external_lex_state = 54}, + [2200] = {.lex_state = 52, .external_lex_state = 57}, + [2201] = {.lex_state = 176, .external_lex_state = 58}, + [2202] = {.lex_state = 52, .external_lex_state = 57}, [2203] = {.lex_state = 52, .external_lex_state = 57}, - [2204] = {.lex_state = 52, .external_lex_state = 54}, - [2205] = {.lex_state = 176, .external_lex_state = 58}, - [2206] = {.lex_state = 178, .external_lex_state = 55}, - [2207] = {.lex_state = 178, .external_lex_state = 54}, - [2208] = {.lex_state = 178, .external_lex_state = 59}, - [2209] = {.lex_state = 178, .external_lex_state = 59}, - [2210] = {.lex_state = 178, .external_lex_state = 59}, + [2204] = {.lex_state = 52, .external_lex_state = 57}, + [2205] = {.lex_state = 178, .external_lex_state = 57}, + [2206] = {.lex_state = 176, .external_lex_state = 58}, + [2207] = {.lex_state = 178, .external_lex_state = 57}, + [2208] = {.lex_state = 178, .external_lex_state = 57}, + [2209] = {.lex_state = 178, .external_lex_state = 57}, + [2210] = {.lex_state = 178, .external_lex_state = 55}, [2211] = {.lex_state = 178, .external_lex_state = 55}, - [2212] = {.lex_state = 178, .external_lex_state = 57}, + [2212] = {.lex_state = 178, .external_lex_state = 59}, [2213] = {.lex_state = 178, .external_lex_state = 57}, - [2214] = {.lex_state = 178, .external_lex_state = 57}, - [2215] = {.lex_state = 178, .external_lex_state = 57}, - [2216] = {.lex_state = 178, .external_lex_state = 57}, - [2217] = {.lex_state = 178, .external_lex_state = 57}, - [2218] = {.lex_state = 176, .external_lex_state = 58}, + [2214] = {.lex_state = 178, .external_lex_state = 59}, + [2215] = {.lex_state = 178, .external_lex_state = 59}, + [2216] = {.lex_state = 178, .external_lex_state = 59}, + [2217] = {.lex_state = 178, .external_lex_state = 59}, + [2218] = {.lex_state = 178, .external_lex_state = 56}, [2219] = {.lex_state = 178, .external_lex_state = 56}, - [2220] = {.lex_state = 178, .external_lex_state = 56}, + [2220] = {.lex_state = 178, .external_lex_state = 54}, [2221] = {.lex_state = 178, .external_lex_state = 59}, - [2222] = {.lex_state = 178, .external_lex_state = 59}, - [2223] = {.lex_state = 178, .external_lex_state = 59}, - [2224] = {.lex_state = 178, .external_lex_state = 54}, - [2225] = {.lex_state = 52, .external_lex_state = 57}, - [2226] = {.lex_state = 176, .external_lex_state = 60}, - [2227] = {.lex_state = 176, .external_lex_state = 60}, - [2228] = {.lex_state = 52, .external_lex_state = 57}, - [2229] = {.lex_state = 178, .external_lex_state = 57}, - [2230] = {.lex_state = 178, .external_lex_state = 59}, + [2222] = {.lex_state = 178, .external_lex_state = 57}, + [2223] = {.lex_state = 178, .external_lex_state = 54}, + [2224] = {.lex_state = 176, .external_lex_state = 58}, + [2225] = {.lex_state = 176, .external_lex_state = 60}, + [2226] = {.lex_state = 52, .external_lex_state = 57}, + [2227] = {.lex_state = 52, .external_lex_state = 57}, + [2228] = {.lex_state = 176, .external_lex_state = 60}, + [2229] = {.lex_state = 176, .external_lex_state = 60}, + [2230] = {.lex_state = 178, .external_lex_state = 57}, [2231] = {.lex_state = 178, .external_lex_state = 59}, [2232] = {.lex_state = 176, .external_lex_state = 60}, - [2233] = {.lex_state = 176, .external_lex_state = 60}, - [2234] = {.lex_state = 176, .external_lex_state = 60}, + [2233] = {.lex_state = 178, .external_lex_state = 57}, + [2234] = {.lex_state = 178, .external_lex_state = 59}, [2235] = {.lex_state = 176, .external_lex_state = 60}, - [2236] = {.lex_state = 178, .external_lex_state = 57}, + [2236] = {.lex_state = 176, .external_lex_state = 60}, [2237] = {.lex_state = 178, .external_lex_state = 61}, - [2238] = {.lex_state = 178, .external_lex_state = 61}, - [2239] = {.lex_state = 176, .external_lex_state = 60}, + [2238] = {.lex_state = 176, .external_lex_state = 60}, + [2239] = {.lex_state = 178, .external_lex_state = 61}, [2240] = {.lex_state = 178, .external_lex_state = 61}, - [2241] = {.lex_state = 178, .external_lex_state = 61}, + [2241] = {.lex_state = 176, .external_lex_state = 62}, [2242] = {.lex_state = 178, .external_lex_state = 61}, [2243] = {.lex_state = 178, .external_lex_state = 61}, - [2244] = {.lex_state = 176, .external_lex_state = 62}, + [2244] = {.lex_state = 178, .external_lex_state = 61}, [2245] = {.lex_state = 181, .external_lex_state = 54}, [2246] = {.lex_state = 181, .external_lex_state = 54}, [2247] = {.lex_state = 181, .external_lex_state = 54}, [2248] = {.lex_state = 176, .external_lex_state = 62}, - [2249] = {.lex_state = 176, .external_lex_state = 62}, + [2249] = {.lex_state = 181, .external_lex_state = 54}, [2250] = {.lex_state = 181, .external_lex_state = 54}, [2251] = {.lex_state = 181, .external_lex_state = 54}, - [2252] = {.lex_state = 181, .external_lex_state = 54}, + [2252] = {.lex_state = 176, .external_lex_state = 62}, [2253] = {.lex_state = 178, .external_lex_state = 63}, [2254] = {.lex_state = 178, .external_lex_state = 63}, - [2255] = {.lex_state = 178, .external_lex_state = 61}, - [2256] = {.lex_state = 178, .external_lex_state = 64}, - [2257] = {.lex_state = 178, .external_lex_state = 63}, - [2258] = {.lex_state = 176, .external_lex_state = 65}, - [2259] = {.lex_state = 176, .external_lex_state = 65}, - [2260] = {.lex_state = 178, .external_lex_state = 63}, - [2261] = {.lex_state = 178, .external_lex_state = 63}, - [2262] = {.lex_state = 178, .external_lex_state = 64}, - [2263] = {.lex_state = 178, .external_lex_state = 64}, - [2264] = {.lex_state = 178, .external_lex_state = 64}, - [2265] = {.lex_state = 176, .external_lex_state = 66}, - [2266] = {.lex_state = 178, .external_lex_state = 64}, - [2267] = {.lex_state = 178, .external_lex_state = 64}, + [2255] = {.lex_state = 178, .external_lex_state = 63}, + [2256] = {.lex_state = 176, .external_lex_state = 64}, + [2257] = {.lex_state = 178, .external_lex_state = 61}, + [2258] = {.lex_state = 178, .external_lex_state = 65}, + [2259] = {.lex_state = 178, .external_lex_state = 61}, + [2260] = {.lex_state = 176, .external_lex_state = 64}, + [2261] = {.lex_state = 178, .external_lex_state = 65}, + [2262] = {.lex_state = 178, .external_lex_state = 65}, + [2263] = {.lex_state = 178, .external_lex_state = 63}, + [2264] = {.lex_state = 176, .external_lex_state = 66}, + [2265] = {.lex_state = 178, .external_lex_state = 65}, + [2266] = {.lex_state = 178, .external_lex_state = 65}, + [2267] = {.lex_state = 178, .external_lex_state = 63}, [2268] = {.lex_state = 178, .external_lex_state = 63}, - [2269] = {.lex_state = 178, .external_lex_state = 61}, - [2270] = {.lex_state = 176, .external_lex_state = 66}, - [2271] = {.lex_state = 181, .external_lex_state = 54}, + [2269] = {.lex_state = 178, .external_lex_state = 65}, + [2270] = {.lex_state = 181, .external_lex_state = 57}, + [2271] = {.lex_state = 176, .external_lex_state = 64}, [2272] = {.lex_state = 181, .external_lex_state = 54}, - [2273] = {.lex_state = 181, .external_lex_state = 57}, - [2274] = {.lex_state = 176, .external_lex_state = 67}, - [2275] = {.lex_state = 176, .external_lex_state = 65}, + [2273] = {.lex_state = 176, .external_lex_state = 67}, + [2274] = {.lex_state = 181, .external_lex_state = 57}, + [2275] = {.lex_state = 181, .external_lex_state = 57}, [2276] = {.lex_state = 181, .external_lex_state = 57}, [2277] = {.lex_state = 181, .external_lex_state = 57}, - [2278] = {.lex_state = 176, .external_lex_state = 66}, - [2279] = {.lex_state = 176, .external_lex_state = 65}, - [2280] = {.lex_state = 176, .external_lex_state = 65}, - [2281] = {.lex_state = 176, .external_lex_state = 65}, - [2282] = {.lex_state = 176, .external_lex_state = 67}, - [2283] = {.lex_state = 181, .external_lex_state = 57}, - [2284] = {.lex_state = 181, .external_lex_state = 57}, - [2285] = {.lex_state = 181, .external_lex_state = 57}, - [2286] = {.lex_state = 178, .external_lex_state = 68}, - [2287] = {.lex_state = 176, .external_lex_state = 67}, - [2288] = {.lex_state = 178, .external_lex_state = 68}, - [2289] = {.lex_state = 178, .external_lex_state = 68}, - [2290] = {.lex_state = 176, .external_lex_state = 65}, - [2291] = {.lex_state = 178, .external_lex_state = 64}, - [2292] = {.lex_state = 178, .external_lex_state = 68}, - [2293] = {.lex_state = 178, .external_lex_state = 68}, + [2278] = {.lex_state = 181, .external_lex_state = 57}, + [2279] = {.lex_state = 176, .external_lex_state = 64}, + [2280] = {.lex_state = 176, .external_lex_state = 64}, + [2281] = {.lex_state = 176, .external_lex_state = 66}, + [2282] = {.lex_state = 176, .external_lex_state = 66}, + [2283] = {.lex_state = 176, .external_lex_state = 64}, + [2284] = {.lex_state = 176, .external_lex_state = 67}, + [2285] = {.lex_state = 181, .external_lex_state = 54}, + [2286] = {.lex_state = 178, .external_lex_state = 65}, + [2287] = {.lex_state = 178, .external_lex_state = 68}, + [2288] = {.lex_state = 176, .external_lex_state = 69}, + [2289] = {.lex_state = 176, .external_lex_state = 67}, + [2290] = {.lex_state = 178, .external_lex_state = 68}, + [2291] = {.lex_state = 178, .external_lex_state = 68}, + [2292] = {.lex_state = 178, .external_lex_state = 63}, + [2293] = {.lex_state = 176, .external_lex_state = 64}, [2294] = {.lex_state = 176, .external_lex_state = 69}, - [2295] = {.lex_state = 176, .external_lex_state = 69}, - [2296] = {.lex_state = 178, .external_lex_state = 63}, - [2297] = {.lex_state = 178, .external_lex_state = 63}, + [2295] = {.lex_state = 178, .external_lex_state = 63}, + [2296] = {.lex_state = 178, .external_lex_state = 65}, + [2297] = {.lex_state = 178, .external_lex_state = 68}, [2298] = {.lex_state = 178, .external_lex_state = 68}, - [2299] = {.lex_state = 178, .external_lex_state = 64}, + [2299] = {.lex_state = 178, .external_lex_state = 68}, [2300] = {.lex_state = 176, .external_lex_state = 69}, - [2301] = {.lex_state = 181, .external_lex_state = 57}, - [2302] = {.lex_state = 176, .external_lex_state = 70}, - [2303] = {.lex_state = 176, .external_lex_state = 69}, - [2304] = {.lex_state = 176, .external_lex_state = 69}, - [2305] = {.lex_state = 176, .external_lex_state = 69}, - [2306] = {.lex_state = 176, .external_lex_state = 70}, - [2307] = {.lex_state = 181, .external_lex_state = 57}, + [2301] = {.lex_state = 176, .external_lex_state = 69}, + [2302] = {.lex_state = 176, .external_lex_state = 69}, + [2303] = {.lex_state = 176, .external_lex_state = 70}, + [2304] = {.lex_state = 181, .external_lex_state = 57}, + [2305] = {.lex_state = 176, .external_lex_state = 70}, + [2306] = {.lex_state = 181, .external_lex_state = 57}, + [2307] = {.lex_state = 176, .external_lex_state = 69}, [2308] = {.lex_state = 178, .external_lex_state = 68}, - [2309] = {.lex_state = 178, .external_lex_state = 68}, - [2310] = {.lex_state = 176, .external_lex_state = 70}, - [2311] = {.lex_state = 176, .external_lex_state = 69}, - [2312] = {.lex_state = 176, .external_lex_state = 71}, - [2313] = {.lex_state = 176, .external_lex_state = 70}, + [2309] = {.lex_state = 176, .external_lex_state = 69}, + [2310] = {.lex_state = 178, .external_lex_state = 68}, + [2311] = {.lex_state = 176, .external_lex_state = 70}, + [2312] = {.lex_state = 176, .external_lex_state = 70}, + [2313] = {.lex_state = 176, .external_lex_state = 71}, [2314] = {.lex_state = 179, .external_lex_state = 58}, - [2315] = {.lex_state = 45, .external_lex_state = 67}, - [2316] = {.lex_state = 179, .external_lex_state = 58}, - [2317] = {.lex_state = 179, .external_lex_state = 58}, - [2318] = {.lex_state = 176, .external_lex_state = 71}, - [2319] = {.lex_state = 176, .external_lex_state = 71}, - [2320] = {.lex_state = 176, .external_lex_state = 70}, + [2315] = {.lex_state = 176, .external_lex_state = 70}, + [2316] = {.lex_state = 176, .external_lex_state = 71}, + [2317] = {.lex_state = 45, .external_lex_state = 67}, + [2318] = {.lex_state = 179, .external_lex_state = 58}, + [2319] = {.lex_state = 179, .external_lex_state = 58}, + [2320] = {.lex_state = 44, .external_lex_state = 67}, [2321] = {.lex_state = 179, .external_lex_state = 58}, - [2322] = {.lex_state = 44, .external_lex_state = 67}, + [2322] = {.lex_state = 176, .external_lex_state = 71}, [2323] = {.lex_state = 179, .external_lex_state = 58}, - [2324] = {.lex_state = 176, .external_lex_state = 72}, - [2325] = {.lex_state = 45, .external_lex_state = 67}, - [2326] = {.lex_state = 45, .external_lex_state = 67}, - [2327] = {.lex_state = 179, .external_lex_state = 58}, + [2324] = {.lex_state = 44, .external_lex_state = 67}, + [2325] = {.lex_state = 179, .external_lex_state = 58}, + [2326] = {.lex_state = 176, .external_lex_state = 72}, + [2327] = {.lex_state = 175, .external_lex_state = 2}, [2328] = {.lex_state = 176, .external_lex_state = 73}, [2329] = {.lex_state = 44, .external_lex_state = 67}, - [2330] = {.lex_state = 44, .external_lex_state = 67}, - [2331] = {.lex_state = 179, .external_lex_state = 60}, + [2330] = {.lex_state = 45, .external_lex_state = 67}, + [2331] = {.lex_state = 45, .external_lex_state = 67}, [2332] = {.lex_state = 179, .external_lex_state = 60}, - [2333] = {.lex_state = 176, .external_lex_state = 67}, - [2334] = {.lex_state = 176, .external_lex_state = 72}, - [2335] = {.lex_state = 178, .external_lex_state = 58}, + [2333] = {.lex_state = 178, .external_lex_state = 58}, + [2334] = {.lex_state = 179, .external_lex_state = 60}, + [2335] = {.lex_state = 45, .external_lex_state = 70}, [2336] = {.lex_state = 178, .external_lex_state = 58}, - [2337] = {.lex_state = 176, .external_lex_state = 73}, - [2338] = {.lex_state = 45, .external_lex_state = 70}, - [2339] = {.lex_state = 178, .external_lex_state = 58}, - [2340] = {.lex_state = 176, .external_lex_state = 67}, - [2341] = {.lex_state = 178, .external_lex_state = 58}, + [2337] = {.lex_state = 176, .external_lex_state = 72}, + [2338] = {.lex_state = 178, .external_lex_state = 58}, + [2339] = {.lex_state = 176, .external_lex_state = 73}, + [2340] = {.lex_state = 176, .external_lex_state = 72}, + [2341] = {.lex_state = 179, .external_lex_state = 60}, [2342] = {.lex_state = 176, .external_lex_state = 73}, - [2343] = {.lex_state = 178, .external_lex_state = 58}, + [2343] = {.lex_state = 179, .external_lex_state = 60}, [2344] = {.lex_state = 179, .external_lex_state = 60}, - [2345] = {.lex_state = 179, .external_lex_state = 60}, - [2346] = {.lex_state = 179, .external_lex_state = 58}, - [2347] = {.lex_state = 44, .external_lex_state = 70}, - [2348] = {.lex_state = 179, .external_lex_state = 60}, + [2345] = {.lex_state = 176, .external_lex_state = 67}, + [2346] = {.lex_state = 178, .external_lex_state = 58}, + [2347] = {.lex_state = 178, .external_lex_state = 58}, + [2348] = {.lex_state = 178, .external_lex_state = 58}, [2349] = {.lex_state = 178, .external_lex_state = 58}, - [2350] = {.lex_state = 178, .external_lex_state = 58}, - [2351] = {.lex_state = 175, .external_lex_state = 2}, - [2352] = {.lex_state = 178, .external_lex_state = 58}, - [2353] = {.lex_state = 176, .external_lex_state = 72}, + [2350] = {.lex_state = 175, .external_lex_state = 2}, + [2351] = {.lex_state = 179, .external_lex_state = 58}, + [2352] = {.lex_state = 176, .external_lex_state = 67}, + [2353] = {.lex_state = 44, .external_lex_state = 70}, [2354] = {.lex_state = 178, .external_lex_state = 58}, - [2355] = {.lex_state = 178, .external_lex_state = 58}, - [2356] = {.lex_state = 178, .external_lex_state = 58}, - [2357] = {.lex_state = 179, .external_lex_state = 58}, + [2355] = {.lex_state = 18, .external_lex_state = 70}, + [2356] = {.lex_state = 176, .external_lex_state = 74}, + [2357] = {.lex_state = 178, .external_lex_state = 58}, [2358] = {.lex_state = 178, .external_lex_state = 58}, [2359] = {.lex_state = 178, .external_lex_state = 58}, [2360] = {.lex_state = 178, .external_lex_state = 58}, [2361] = {.lex_state = 178, .external_lex_state = 58}, [2362] = {.lex_state = 178, .external_lex_state = 58}, - [2363] = {.lex_state = 18, .external_lex_state = 70}, + [2363] = {.lex_state = 183, .external_lex_state = 75}, [2364] = {.lex_state = 178, .external_lex_state = 58}, - [2365] = {.lex_state = 17, .external_lex_state = 70}, + [2365] = {.lex_state = 178, .external_lex_state = 58}, [2366] = {.lex_state = 178, .external_lex_state = 58}, - [2367] = {.lex_state = 178, .external_lex_state = 58}, + [2367] = {.lex_state = 179, .external_lex_state = 60}, [2368] = {.lex_state = 178, .external_lex_state = 58}, - [2369] = {.lex_state = 176, .external_lex_state = 74}, - [2370] = {.lex_state = 18, .external_lex_state = 70}, - [2371] = {.lex_state = 17, .external_lex_state = 70}, - [2372] = {.lex_state = 179, .external_lex_state = 60}, - [2373] = {.lex_state = 183, .external_lex_state = 75}, + [2369] = {.lex_state = 178, .external_lex_state = 58}, + [2370] = {.lex_state = 178, .external_lex_state = 58}, + [2371] = {.lex_state = 178, .external_lex_state = 58}, + [2372] = {.lex_state = 178, .external_lex_state = 58}, + [2373] = {.lex_state = 178, .external_lex_state = 58}, [2374] = {.lex_state = 178, .external_lex_state = 58}, [2375] = {.lex_state = 178, .external_lex_state = 58}, - [2376] = {.lex_state = 176, .external_lex_state = 73}, - [2377] = {.lex_state = 178, .external_lex_state = 58}, + [2376] = {.lex_state = 178, .external_lex_state = 58}, + [2377] = {.lex_state = 176, .external_lex_state = 72}, [2378] = {.lex_state = 178, .external_lex_state = 58}, - [2379] = {.lex_state = 175, .external_lex_state = 2}, - [2380] = {.lex_state = 178, .external_lex_state = 58}, + [2379] = {.lex_state = 178, .external_lex_state = 58}, + [2380] = {.lex_state = 18, .external_lex_state = 70}, [2381] = {.lex_state = 178, .external_lex_state = 58}, - [2382] = {.lex_state = 178, .external_lex_state = 58}, + [2382] = {.lex_state = 179, .external_lex_state = 58}, [2383] = {.lex_state = 178, .external_lex_state = 58}, [2384] = {.lex_state = 178, .external_lex_state = 58}, - [2385] = {.lex_state = 178, .external_lex_state = 58}, + [2385] = {.lex_state = 17, .external_lex_state = 70}, [2386] = {.lex_state = 178, .external_lex_state = 58}, - [2387] = {.lex_state = 178, .external_lex_state = 58}, + [2387] = {.lex_state = 17, .external_lex_state = 70}, [2388] = {.lex_state = 178, .external_lex_state = 58}, - [2389] = {.lex_state = 176, .external_lex_state = 70}, - [2390] = {.lex_state = 178, .external_lex_state = 60}, - [2391] = {.lex_state = 179, .external_lex_state = 60}, - [2392] = {.lex_state = 178, .external_lex_state = 75}, - [2393] = {.lex_state = 178, .external_lex_state = 60}, - [2394] = {.lex_state = 178, .external_lex_state = 60}, + [2389] = {.lex_state = 178, .external_lex_state = 60}, + [2390] = {.lex_state = 44, .external_lex_state = 70}, + [2391] = {.lex_state = 178, .external_lex_state = 58}, + [2392] = {.lex_state = 179, .external_lex_state = 62}, + [2393] = {.lex_state = 176, .external_lex_state = 74}, + [2394] = {.lex_state = 179, .external_lex_state = 60}, [2395] = {.lex_state = 178, .external_lex_state = 60}, - [2396] = {.lex_state = 176, .external_lex_state = 70}, + [2396] = {.lex_state = 179, .external_lex_state = 62}, [2397] = {.lex_state = 176, .external_lex_state = 70}, - [2398] = {.lex_state = 179, .external_lex_state = 62}, - [2399] = {.lex_state = 179, .external_lex_state = 62}, - [2400] = {.lex_state = 176, .external_lex_state = 74}, - [2401] = {.lex_state = 179, .external_lex_state = 62}, - [2402] = {.lex_state = 166, .external_lex_state = 73}, + [2398] = {.lex_state = 178, .external_lex_state = 75}, + [2399] = {.lex_state = 176, .external_lex_state = 70}, + [2400] = {.lex_state = 176, .external_lex_state = 70}, + [2401] = {.lex_state = 176, .external_lex_state = 70}, + [2402] = {.lex_state = 176, .external_lex_state = 70}, [2403] = {.lex_state = 176, .external_lex_state = 70}, - [2404] = {.lex_state = 166, .external_lex_state = 74}, + [2404] = {.lex_state = 166, .external_lex_state = 72}, [2405] = {.lex_state = 176, .external_lex_state = 70}, - [2406] = {.lex_state = 176, .external_lex_state = 70}, - [2407] = {.lex_state = 178, .external_lex_state = 60}, - [2408] = {.lex_state = 176, .external_lex_state = 70}, + [2406] = {.lex_state = 179, .external_lex_state = 62}, + [2407] = {.lex_state = 179, .external_lex_state = 62}, + [2408] = {.lex_state = 178, .external_lex_state = 60}, [2409] = {.lex_state = 178, .external_lex_state = 60}, - [2410] = {.lex_state = 178, .external_lex_state = 58}, - [2411] = {.lex_state = 176, .external_lex_state = 70}, - [2412] = {.lex_state = 178, .external_lex_state = 75}, - [2413] = {.lex_state = 166, .external_lex_state = 74}, + [2410] = {.lex_state = 166, .external_lex_state = 74}, + [2411] = {.lex_state = 178, .external_lex_state = 60}, + [2412] = {.lex_state = 179, .external_lex_state = 62}, + [2413] = {.lex_state = 178, .external_lex_state = 60}, [2414] = {.lex_state = 176, .external_lex_state = 70}, - [2415] = {.lex_state = 178, .external_lex_state = 60}, - [2416] = {.lex_state = 44, .external_lex_state = 70}, - [2417] = {.lex_state = 179, .external_lex_state = 62}, - [2418] = {.lex_state = 179, .external_lex_state = 62}, - [2419] = {.lex_state = 176, .external_lex_state = 70}, - [2420] = {.lex_state = 178, .external_lex_state = 60}, - [2421] = {.lex_state = 178, .external_lex_state = 75}, - [2422] = {.lex_state = 176, .external_lex_state = 70}, - [2423] = {.lex_state = 178, .external_lex_state = 60}, + [2415] = {.lex_state = 176, .external_lex_state = 70}, + [2416] = {.lex_state = 176, .external_lex_state = 70}, + [2417] = {.lex_state = 178, .external_lex_state = 75}, + [2418] = {.lex_state = 178, .external_lex_state = 60}, + [2419] = {.lex_state = 178, .external_lex_state = 60}, + [2420] = {.lex_state = 166, .external_lex_state = 74}, + [2421] = {.lex_state = 176, .external_lex_state = 70}, + [2422] = {.lex_state = 178, .external_lex_state = 75}, + [2423] = {.lex_state = 166, .external_lex_state = 70}, [2424] = {.lex_state = 178, .external_lex_state = 60}, - [2425] = {.lex_state = 166, .external_lex_state = 70}, - [2426] = {.lex_state = 178, .external_lex_state = 60}, - [2427] = {.lex_state = 176, .external_lex_state = 70}, - [2428] = {.lex_state = 178, .external_lex_state = 60}, - [2429] = {.lex_state = 178, .external_lex_state = 60}, - [2430] = {.lex_state = 178, .external_lex_state = 58}, - [2431] = {.lex_state = 178, .external_lex_state = 60}, - [2432] = {.lex_state = 178, .external_lex_state = 60}, - [2433] = {.lex_state = 178, .external_lex_state = 60}, - [2434] = {.lex_state = 178, .external_lex_state = 60}, - [2435] = {.lex_state = 178, .external_lex_state = 60}, + [2425] = {.lex_state = 178, .external_lex_state = 60}, + [2426] = {.lex_state = 176, .external_lex_state = 70}, + [2427] = {.lex_state = 178, .external_lex_state = 58}, + [2428] = {.lex_state = 178, .external_lex_state = 58}, + [2429] = {.lex_state = 178, .external_lex_state = 58}, + [2430] = {.lex_state = 176, .external_lex_state = 70}, + [2431] = {.lex_state = 166, .external_lex_state = 74}, + [2432] = {.lex_state = 183, .external_lex_state = 75}, + [2433] = {.lex_state = 179, .external_lex_state = 62}, + [2434] = {.lex_state = 178, .external_lex_state = 58}, + [2435] = {.lex_state = 166, .external_lex_state = 70}, [2436] = {.lex_state = 178, .external_lex_state = 60}, - [2437] = {.lex_state = 178, .external_lex_state = 58}, - [2438] = {.lex_state = 183, .external_lex_state = 75}, - [2439] = {.lex_state = 46, .external_lex_state = 67}, - [2440] = {.lex_state = 178, .external_lex_state = 60}, - [2441] = {.lex_state = 166, .external_lex_state = 70}, + [2437] = {.lex_state = 166, .external_lex_state = 70}, + [2438] = {.lex_state = 166, .external_lex_state = 70}, + [2439] = {.lex_state = 178, .external_lex_state = 58}, + [2440] = {.lex_state = 178, .external_lex_state = 58}, + [2441] = {.lex_state = 178, .external_lex_state = 60}, [2442] = {.lex_state = 178, .external_lex_state = 58}, - [2443] = {.lex_state = 178, .external_lex_state = 60}, - [2444] = {.lex_state = 166, .external_lex_state = 70}, - [2445] = {.lex_state = 178, .external_lex_state = 58}, - [2446] = {.lex_state = 46, .external_lex_state = 67}, - [2447] = {.lex_state = 178, .external_lex_state = 60}, - [2448] = {.lex_state = 179, .external_lex_state = 60}, - [2449] = {.lex_state = 166, .external_lex_state = 74}, - [2450] = {.lex_state = 166, .external_lex_state = 70}, - [2451] = {.lex_state = 183, .external_lex_state = 75}, - [2452] = {.lex_state = 46, .external_lex_state = 67}, + [2443] = {.lex_state = 178, .external_lex_state = 58}, + [2444] = {.lex_state = 17, .external_lex_state = 70}, + [2445] = {.lex_state = 183, .external_lex_state = 75}, + [2446] = {.lex_state = 166, .external_lex_state = 70}, + [2447] = {.lex_state = 178, .external_lex_state = 58}, + [2448] = {.lex_state = 178, .external_lex_state = 60}, + [2449] = {.lex_state = 178, .external_lex_state = 60}, + [2450] = {.lex_state = 178, .external_lex_state = 60}, + [2451] = {.lex_state = 46, .external_lex_state = 67}, + [2452] = {.lex_state = 178, .external_lex_state = 60}, [2453] = {.lex_state = 46, .external_lex_state = 67}, - [2454] = {.lex_state = 166, .external_lex_state = 70}, - [2455] = {.lex_state = 178, .external_lex_state = 58}, - [2456] = {.lex_state = 178, .external_lex_state = 60}, - [2457] = {.lex_state = 178, .external_lex_state = 58}, + [2454] = {.lex_state = 178, .external_lex_state = 60}, + [2455] = {.lex_state = 178, .external_lex_state = 60}, + [2456] = {.lex_state = 46, .external_lex_state = 67}, + [2457] = {.lex_state = 178, .external_lex_state = 60}, [2458] = {.lex_state = 178, .external_lex_state = 60}, [2459] = {.lex_state = 178, .external_lex_state = 60}, [2460] = {.lex_state = 178, .external_lex_state = 60}, - [2461] = {.lex_state = 178, .external_lex_state = 60}, - [2462] = {.lex_state = 178, .external_lex_state = 60}, - [2463] = {.lex_state = 17, .external_lex_state = 70}, - [2464] = {.lex_state = 178, .external_lex_state = 58}, - [2465] = {.lex_state = 178, .external_lex_state = 58}, - [2466] = {.lex_state = 178, .external_lex_state = 58}, + [2461] = {.lex_state = 183, .external_lex_state = 76}, + [2462] = {.lex_state = 166, .external_lex_state = 70}, + [2463] = {.lex_state = 178, .external_lex_state = 60}, + [2464] = {.lex_state = 46, .external_lex_state = 67}, + [2465] = {.lex_state = 179, .external_lex_state = 60}, + [2466] = {.lex_state = 178, .external_lex_state = 60}, [2467] = {.lex_state = 178, .external_lex_state = 60}, - [2468] = {.lex_state = 166, .external_lex_state = 70}, + [2468] = {.lex_state = 178, .external_lex_state = 60}, [2469] = {.lex_state = 178, .external_lex_state = 60}, [2470] = {.lex_state = 178, .external_lex_state = 60}, - [2471] = {.lex_state = 183, .external_lex_state = 76}, - [2472] = {.lex_state = 179, .external_lex_state = 62}, - [2473] = {.lex_state = 176, .external_lex_state = 70}, + [2471] = {.lex_state = 178, .external_lex_state = 60}, + [2472] = {.lex_state = 178, .external_lex_state = 60}, + [2473] = {.lex_state = 46, .external_lex_state = 67}, [2474] = {.lex_state = 178, .external_lex_state = 60}, [2475] = {.lex_state = 178, .external_lex_state = 60}, - [2476] = {.lex_state = 46, .external_lex_state = 67}, - [2477] = {.lex_state = 178, .external_lex_state = 62}, - [2478] = {.lex_state = 178, .external_lex_state = 60}, - [2479] = {.lex_state = 179, .external_lex_state = 65}, + [2476] = {.lex_state = 178, .external_lex_state = 60}, + [2477] = {.lex_state = 179, .external_lex_state = 66}, + [2478] = {.lex_state = 178, .external_lex_state = 58}, + [2479] = {.lex_state = 178, .external_lex_state = 58}, [2480] = {.lex_state = 178, .external_lex_state = 58}, - [2481] = {.lex_state = 179, .external_lex_state = 66}, - [2482] = {.lex_state = 179, .external_lex_state = 66}, + [2481] = {.lex_state = 178, .external_lex_state = 58}, + [2482] = {.lex_state = 178, .external_lex_state = 58}, [2483] = {.lex_state = 178, .external_lex_state = 58}, - [2484] = {.lex_state = 179, .external_lex_state = 66}, - [2485] = {.lex_state = 179, .external_lex_state = 66}, - [2486] = {.lex_state = 183, .external_lex_state = 58}, - [2487] = {.lex_state = 178, .external_lex_state = 76}, - [2488] = {.lex_state = 179, .external_lex_state = 62}, - [2489] = {.lex_state = 178, .external_lex_state = 62}, + [2484] = {.lex_state = 183, .external_lex_state = 58}, + [2485] = {.lex_state = 178, .external_lex_state = 58}, + [2486] = {.lex_state = 47, .external_lex_state = 67}, + [2487] = {.lex_state = 178, .external_lex_state = 62}, + [2488] = {.lex_state = 47, .external_lex_state = 67}, + [2489] = {.lex_state = 178, .external_lex_state = 58}, [2490] = {.lex_state = 178, .external_lex_state = 58}, - [2491] = {.lex_state = 183, .external_lex_state = 58}, - [2492] = {.lex_state = 179, .external_lex_state = 66}, - [2493] = {.lex_state = 178, .external_lex_state = 58}, - [2494] = {.lex_state = 178, .external_lex_state = 58}, - [2495] = {.lex_state = 178, .external_lex_state = 58}, - [2496] = {.lex_state = 47, .external_lex_state = 67}, - [2497] = {.lex_state = 47, .external_lex_state = 67}, - [2498] = {.lex_state = 47, .external_lex_state = 67}, - [2499] = {.lex_state = 46, .external_lex_state = 67}, - [2500] = {.lex_state = 178, .external_lex_state = 77}, - [2501] = {.lex_state = 178, .external_lex_state = 58}, + [2491] = {.lex_state = 178, .external_lex_state = 58}, + [2492] = {.lex_state = 179, .external_lex_state = 58}, + [2493] = {.lex_state = 178, .external_lex_state = 77}, + [2494] = {.lex_state = 179, .external_lex_state = 66}, + [2495] = {.lex_state = 46, .external_lex_state = 67}, + [2496] = {.lex_state = 178, .external_lex_state = 58}, + [2497] = {.lex_state = 178, .external_lex_state = 62}, + [2498] = {.lex_state = 179, .external_lex_state = 66}, + [2499] = {.lex_state = 178, .external_lex_state = 62}, + [2500] = {.lex_state = 179, .external_lex_state = 64}, + [2501] = {.lex_state = 183, .external_lex_state = 58}, [2502] = {.lex_state = 178, .external_lex_state = 58}, - [2503] = {.lex_state = 178, .external_lex_state = 58}, - [2504] = {.lex_state = 178, .external_lex_state = 58}, - [2505] = {.lex_state = 178, .external_lex_state = 58}, - [2506] = {.lex_state = 178, .external_lex_state = 58}, - [2507] = {.lex_state = 47, .external_lex_state = 67}, - [2508] = {.lex_state = 47, .external_lex_state = 67}, - [2509] = {.lex_state = 178, .external_lex_state = 75}, - [2510] = {.lex_state = 178, .external_lex_state = 62}, - [2511] = {.lex_state = 178, .external_lex_state = 62}, - [2512] = {.lex_state = 179, .external_lex_state = 65}, - [2513] = {.lex_state = 179, .external_lex_state = 65}, - [2514] = {.lex_state = 178, .external_lex_state = 58}, - [2515] = {.lex_state = 183, .external_lex_state = 58}, - [2516] = {.lex_state = 178, .external_lex_state = 62}, + [2503] = {.lex_state = 47, .external_lex_state = 67}, + [2504] = {.lex_state = 47, .external_lex_state = 67}, + [2505] = {.lex_state = 179, .external_lex_state = 66}, + [2506] = {.lex_state = 183, .external_lex_state = 58}, + [2507] = {.lex_state = 178, .external_lex_state = 58}, + [2508] = {.lex_state = 178, .external_lex_state = 58}, + [2509] = {.lex_state = 179, .external_lex_state = 64}, + [2510] = {.lex_state = 179, .external_lex_state = 64}, + [2511] = {.lex_state = 178, .external_lex_state = 58}, + [2512] = {.lex_state = 178, .external_lex_state = 62}, + [2513] = {.lex_state = 179, .external_lex_state = 66}, + [2514] = {.lex_state = 178, .external_lex_state = 76}, + [2515] = {.lex_state = 178, .external_lex_state = 58}, + [2516] = {.lex_state = 178, .external_lex_state = 75}, [2517] = {.lex_state = 178, .external_lex_state = 58}, - [2518] = {.lex_state = 178, .external_lex_state = 77}, - [2519] = {.lex_state = 178, .external_lex_state = 58}, - [2520] = {.lex_state = 178, .external_lex_state = 62}, - [2521] = {.lex_state = 178, .external_lex_state = 76}, - [2522] = {.lex_state = 178, .external_lex_state = 77}, - [2523] = {.lex_state = 178, .external_lex_state = 62}, + [2518] = {.lex_state = 178, .external_lex_state = 58}, + [2519] = {.lex_state = 179, .external_lex_state = 64}, + [2520] = {.lex_state = 179, .external_lex_state = 64}, + [2521] = {.lex_state = 47, .external_lex_state = 67}, + [2522] = {.lex_state = 179, .external_lex_state = 62}, + [2523] = {.lex_state = 178, .external_lex_state = 58}, [2524] = {.lex_state = 178, .external_lex_state = 62}, [2525] = {.lex_state = 178, .external_lex_state = 58}, - [2526] = {.lex_state = 179, .external_lex_state = 65}, - [2527] = {.lex_state = 178, .external_lex_state = 77}, + [2526] = {.lex_state = 178, .external_lex_state = 58}, + [2527] = {.lex_state = 178, .external_lex_state = 58}, [2528] = {.lex_state = 178, .external_lex_state = 58}, - [2529] = {.lex_state = 178, .external_lex_state = 58}, - [2530] = {.lex_state = 178, .external_lex_state = 58}, - [2531] = {.lex_state = 178, .external_lex_state = 60}, + [2529] = {.lex_state = 178, .external_lex_state = 77}, + [2530] = {.lex_state = 178, .external_lex_state = 77}, + [2531] = {.lex_state = 178, .external_lex_state = 62}, [2532] = {.lex_state = 178, .external_lex_state = 58}, - [2533] = {.lex_state = 178, .external_lex_state = 58}, - [2534] = {.lex_state = 178, .external_lex_state = 58}, - [2535] = {.lex_state = 178, .external_lex_state = 58}, + [2533] = {.lex_state = 178, .external_lex_state = 62}, + [2534] = {.lex_state = 178, .external_lex_state = 76}, + [2535] = {.lex_state = 178, .external_lex_state = 76}, [2536] = {.lex_state = 178, .external_lex_state = 58}, - [2537] = {.lex_state = 179, .external_lex_state = 65}, - [2538] = {.lex_state = 178, .external_lex_state = 58}, - [2539] = {.lex_state = 179, .external_lex_state = 58}, - [2540] = {.lex_state = 178, .external_lex_state = 58}, - [2541] = {.lex_state = 178, .external_lex_state = 58}, - [2542] = {.lex_state = 178, .external_lex_state = 76}, - [2543] = {.lex_state = 178, .external_lex_state = 62}, + [2537] = {.lex_state = 178, .external_lex_state = 62}, + [2538] = {.lex_state = 178, .external_lex_state = 60}, + [2539] = {.lex_state = 178, .external_lex_state = 58}, + [2540] = {.lex_state = 178, .external_lex_state = 77}, + [2541] = {.lex_state = 178, .external_lex_state = 60}, + [2542] = {.lex_state = 178, .external_lex_state = 58}, + [2543] = {.lex_state = 178, .external_lex_state = 58}, [2544] = {.lex_state = 178, .external_lex_state = 58}, [2545] = {.lex_state = 178, .external_lex_state = 58}, [2546] = {.lex_state = 178, .external_lex_state = 58}, [2547] = {.lex_state = 178, .external_lex_state = 58}, [2548] = {.lex_state = 178, .external_lex_state = 58}, [2549] = {.lex_state = 178, .external_lex_state = 58}, - [2550] = {.lex_state = 178, .external_lex_state = 58}, + [2550] = {.lex_state = 48, .external_lex_state = 67}, [2551] = {.lex_state = 178, .external_lex_state = 58}, [2552] = {.lex_state = 178, .external_lex_state = 58}, [2553] = {.lex_state = 178, .external_lex_state = 58}, [2554] = {.lex_state = 178, .external_lex_state = 58}, [2555] = {.lex_state = 178, .external_lex_state = 58}, - [2556] = {.lex_state = 178, .external_lex_state = 58}, + [2556] = {.lex_state = 178, .external_lex_state = 62}, [2557] = {.lex_state = 178, .external_lex_state = 58}, - [2558] = {.lex_state = 178, .external_lex_state = 58}, + [2558] = {.lex_state = 183, .external_lex_state = 76}, [2559] = {.lex_state = 178, .external_lex_state = 58}, - [2560] = {.lex_state = 178, .external_lex_state = 58}, + [2560] = {.lex_state = 46, .external_lex_state = 70}, [2561] = {.lex_state = 178, .external_lex_state = 58}, [2562] = {.lex_state = 178, .external_lex_state = 58}, [2563] = {.lex_state = 178, .external_lex_state = 58}, @@ -22889,7 +23011,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2566] = {.lex_state = 178, .external_lex_state = 58}, [2567] = {.lex_state = 178, .external_lex_state = 58}, [2568] = {.lex_state = 178, .external_lex_state = 58}, - [2569] = {.lex_state = 178, .external_lex_state = 58}, + [2569] = {.lex_state = 178, .external_lex_state = 62}, [2570] = {.lex_state = 178, .external_lex_state = 58}, [2571] = {.lex_state = 178, .external_lex_state = 58}, [2572] = {.lex_state = 178, .external_lex_state = 58}, @@ -22901,18 +23023,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2578] = {.lex_state = 178, .external_lex_state = 58}, [2579] = {.lex_state = 178, .external_lex_state = 58}, [2580] = {.lex_state = 178, .external_lex_state = 58}, - [2581] = {.lex_state = 178, .external_lex_state = 62}, + [2581] = {.lex_state = 178, .external_lex_state = 58}, [2582] = {.lex_state = 178, .external_lex_state = 58}, [2583] = {.lex_state = 178, .external_lex_state = 58}, - [2584] = {.lex_state = 178, .external_lex_state = 62}, - [2585] = {.lex_state = 178, .external_lex_state = 62}, - [2586] = {.lex_state = 178, .external_lex_state = 62}, - [2587] = {.lex_state = 178, .external_lex_state = 62}, + [2584] = {.lex_state = 178, .external_lex_state = 58}, + [2585] = {.lex_state = 178, .external_lex_state = 58}, + [2586] = {.lex_state = 178, .external_lex_state = 58}, + [2587] = {.lex_state = 178, .external_lex_state = 58}, [2588] = {.lex_state = 178, .external_lex_state = 58}, [2589] = {.lex_state = 178, .external_lex_state = 58}, [2590] = {.lex_state = 178, .external_lex_state = 58}, [2591] = {.lex_state = 178, .external_lex_state = 58}, - [2592] = {.lex_state = 178, .external_lex_state = 62}, + [2592] = {.lex_state = 178, .external_lex_state = 58}, [2593] = {.lex_state = 178, .external_lex_state = 58}, [2594] = {.lex_state = 178, .external_lex_state = 58}, [2595] = {.lex_state = 178, .external_lex_state = 58}, @@ -22922,48 +23044,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2599] = {.lex_state = 178, .external_lex_state = 58}, [2600] = {.lex_state = 178, .external_lex_state = 58}, [2601] = {.lex_state = 178, .external_lex_state = 58}, - [2602] = {.lex_state = 178, .external_lex_state = 62}, - [2603] = {.lex_state = 178, .external_lex_state = 62}, + [2602] = {.lex_state = 178, .external_lex_state = 58}, + [2603] = {.lex_state = 178, .external_lex_state = 58}, [2604] = {.lex_state = 48, .external_lex_state = 67}, [2605] = {.lex_state = 178, .external_lex_state = 58}, [2606] = {.lex_state = 178, .external_lex_state = 58}, [2607] = {.lex_state = 178, .external_lex_state = 58}, - [2608] = {.lex_state = 178, .external_lex_state = 58}, + [2608] = {.lex_state = 178, .external_lex_state = 60}, [2609] = {.lex_state = 178, .external_lex_state = 62}, - [2610] = {.lex_state = 178, .external_lex_state = 62}, - [2611] = {.lex_state = 178, .external_lex_state = 62}, + [2610] = {.lex_state = 178, .external_lex_state = 58}, + [2611] = {.lex_state = 178, .external_lex_state = 58}, [2612] = {.lex_state = 178, .external_lex_state = 58}, [2613] = {.lex_state = 178, .external_lex_state = 58}, - [2614] = {.lex_state = 178, .external_lex_state = 62}, - [2615] = {.lex_state = 48, .external_lex_state = 67}, + [2614] = {.lex_state = 178, .external_lex_state = 58}, + [2615] = {.lex_state = 178, .external_lex_state = 58}, [2616] = {.lex_state = 178, .external_lex_state = 58}, - [2617] = {.lex_state = 178, .external_lex_state = 62}, - [2618] = {.lex_state = 178, .external_lex_state = 62}, - [2619] = {.lex_state = 178, .external_lex_state = 62}, - [2620] = {.lex_state = 178, .external_lex_state = 58}, + [2617] = {.lex_state = 178, .external_lex_state = 58}, + [2618] = {.lex_state = 178, .external_lex_state = 58}, + [2619] = {.lex_state = 178, .external_lex_state = 58}, + [2620] = {.lex_state = 178, .external_lex_state = 62}, [2621] = {.lex_state = 178, .external_lex_state = 58}, [2622] = {.lex_state = 178, .external_lex_state = 58}, - [2623] = {.lex_state = 178, .external_lex_state = 62}, + [2623] = {.lex_state = 178, .external_lex_state = 58}, [2624] = {.lex_state = 178, .external_lex_state = 58}, - [2625] = {.lex_state = 48, .external_lex_state = 67}, - [2626] = {.lex_state = 178, .external_lex_state = 58}, - [2627] = {.lex_state = 178, .external_lex_state = 62}, - [2628] = {.lex_state = 178, .external_lex_state = 58}, - [2629] = {.lex_state = 178, .external_lex_state = 58}, - [2630] = {.lex_state = 48, .external_lex_state = 67}, + [2625] = {.lex_state = 178, .external_lex_state = 58}, + [2626] = {.lex_state = 48, .external_lex_state = 67}, + [2627] = {.lex_state = 179, .external_lex_state = 66}, + [2628] = {.lex_state = 179, .external_lex_state = 62}, + [2629] = {.lex_state = 178, .external_lex_state = 62}, + [2630] = {.lex_state = 178, .external_lex_state = 58}, [2631] = {.lex_state = 178, .external_lex_state = 58}, [2632] = {.lex_state = 178, .external_lex_state = 58}, [2633] = {.lex_state = 178, .external_lex_state = 58}, - [2634] = {.lex_state = 179, .external_lex_state = 65}, + [2634] = {.lex_state = 178, .external_lex_state = 58}, [2635] = {.lex_state = 178, .external_lex_state = 58}, - [2636] = {.lex_state = 178, .external_lex_state = 60}, + [2636] = {.lex_state = 48, .external_lex_state = 67}, [2637] = {.lex_state = 178, .external_lex_state = 58}, [2638] = {.lex_state = 178, .external_lex_state = 58}, [2639] = {.lex_state = 178, .external_lex_state = 58}, - [2640] = {.lex_state = 178, .external_lex_state = 62}, + [2640] = {.lex_state = 178, .external_lex_state = 58}, [2641] = {.lex_state = 178, .external_lex_state = 58}, [2642] = {.lex_state = 178, .external_lex_state = 58}, - [2643] = {.lex_state = 178, .external_lex_state = 62}, + [2643] = {.lex_state = 46, .external_lex_state = 70}, [2644] = {.lex_state = 178, .external_lex_state = 58}, [2645] = {.lex_state = 178, .external_lex_state = 58}, [2646] = {.lex_state = 178, .external_lex_state = 58}, @@ -22971,49 +23093,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2648] = {.lex_state = 178, .external_lex_state = 58}, [2649] = {.lex_state = 178, .external_lex_state = 58}, [2650] = {.lex_state = 178, .external_lex_state = 58}, - [2651] = {.lex_state = 179, .external_lex_state = 66}, + [2651] = {.lex_state = 178, .external_lex_state = 58}, [2652] = {.lex_state = 178, .external_lex_state = 58}, [2653] = {.lex_state = 178, .external_lex_state = 58}, [2654] = {.lex_state = 178, .external_lex_state = 58}, [2655] = {.lex_state = 178, .external_lex_state = 58}, - [2656] = {.lex_state = 46, .external_lex_state = 70}, - [2657] = {.lex_state = 178, .external_lex_state = 58}, + [2656] = {.lex_state = 178, .external_lex_state = 58}, + [2657] = {.lex_state = 48, .external_lex_state = 67}, [2658] = {.lex_state = 178, .external_lex_state = 58}, - [2659] = {.lex_state = 178, .external_lex_state = 58}, - [2660] = {.lex_state = 178, .external_lex_state = 58}, + [2659] = {.lex_state = 178, .external_lex_state = 62}, + [2660] = {.lex_state = 48, .external_lex_state = 67}, [2661] = {.lex_state = 178, .external_lex_state = 58}, [2662] = {.lex_state = 178, .external_lex_state = 58}, - [2663] = {.lex_state = 178, .external_lex_state = 58}, - [2664] = {.lex_state = 178, .external_lex_state = 58}, - [2665] = {.lex_state = 178, .external_lex_state = 58}, + [2663] = {.lex_state = 183, .external_lex_state = 78}, + [2664] = {.lex_state = 178, .external_lex_state = 62}, + [2665] = {.lex_state = 46, .external_lex_state = 70}, [2666] = {.lex_state = 178, .external_lex_state = 58}, [2667] = {.lex_state = 178, .external_lex_state = 58}, [2668] = {.lex_state = 178, .external_lex_state = 58}, [2669] = {.lex_state = 178, .external_lex_state = 58}, [2670] = {.lex_state = 178, .external_lex_state = 58}, - [2671] = {.lex_state = 178, .external_lex_state = 58}, + [2671] = {.lex_state = 178, .external_lex_state = 62}, [2672] = {.lex_state = 178, .external_lex_state = 58}, - [2673] = {.lex_state = 178, .external_lex_state = 58}, - [2674] = {.lex_state = 178, .external_lex_state = 58}, + [2673] = {.lex_state = 178, .external_lex_state = 62}, + [2674] = {.lex_state = 178, .external_lex_state = 62}, [2675] = {.lex_state = 178, .external_lex_state = 58}, - [2676] = {.lex_state = 48, .external_lex_state = 67}, - [2677] = {.lex_state = 48, .external_lex_state = 67}, - [2678] = {.lex_state = 178, .external_lex_state = 58}, - [2679] = {.lex_state = 178, .external_lex_state = 58}, - [2680] = {.lex_state = 46, .external_lex_state = 70}, - [2681] = {.lex_state = 178, .external_lex_state = 58}, + [2676] = {.lex_state = 178, .external_lex_state = 58}, + [2677] = {.lex_state = 178, .external_lex_state = 58}, + [2678] = {.lex_state = 178, .external_lex_state = 62}, + [2679] = {.lex_state = 178, .external_lex_state = 62}, + [2680] = {.lex_state = 178, .external_lex_state = 58}, + [2681] = {.lex_state = 178, .external_lex_state = 62}, [2682] = {.lex_state = 178, .external_lex_state = 58}, - [2683] = {.lex_state = 47, .external_lex_state = 67}, + [2683] = {.lex_state = 178, .external_lex_state = 58}, [2684] = {.lex_state = 178, .external_lex_state = 58}, [2685] = {.lex_state = 178, .external_lex_state = 58}, - [2686] = {.lex_state = 183, .external_lex_state = 76}, + [2686] = {.lex_state = 178, .external_lex_state = 58}, [2687] = {.lex_state = 178, .external_lex_state = 58}, [2688] = {.lex_state = 178, .external_lex_state = 58}, - [2689] = {.lex_state = 178, .external_lex_state = 58}, - [2690] = {.lex_state = 178, .external_lex_state = 62}, - [2691] = {.lex_state = 48, .external_lex_state = 67}, - [2692] = {.lex_state = 48, .external_lex_state = 67}, - [2693] = {.lex_state = 46, .external_lex_state = 70}, + [2689] = {.lex_state = 48, .external_lex_state = 67}, + [2690] = {.lex_state = 178, .external_lex_state = 58}, + [2691] = {.lex_state = 178, .external_lex_state = 58}, + [2692] = {.lex_state = 178, .external_lex_state = 62}, + [2693] = {.lex_state = 179, .external_lex_state = 64}, [2694] = {.lex_state = 178, .external_lex_state = 58}, [2695] = {.lex_state = 178, .external_lex_state = 58}, [2696] = {.lex_state = 178, .external_lex_state = 58}, @@ -23026,11 +23148,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2703] = {.lex_state = 178, .external_lex_state = 58}, [2704] = {.lex_state = 178, .external_lex_state = 58}, [2705] = {.lex_state = 178, .external_lex_state = 58}, - [2706] = {.lex_state = 183, .external_lex_state = 76}, + [2706] = {.lex_state = 178, .external_lex_state = 58}, [2707] = {.lex_state = 178, .external_lex_state = 58}, [2708] = {.lex_state = 178, .external_lex_state = 58}, [2709] = {.lex_state = 178, .external_lex_state = 58}, - [2710] = {.lex_state = 178, .external_lex_state = 62}, + [2710] = {.lex_state = 178, .external_lex_state = 58}, [2711] = {.lex_state = 178, .external_lex_state = 58}, [2712] = {.lex_state = 178, .external_lex_state = 58}, [2713] = {.lex_state = 178, .external_lex_state = 58}, @@ -23044,164 +23166,164 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2721] = {.lex_state = 178, .external_lex_state = 58}, [2722] = {.lex_state = 178, .external_lex_state = 58}, [2723] = {.lex_state = 178, .external_lex_state = 58}, - [2724] = {.lex_state = 178, .external_lex_state = 58}, - [2725] = {.lex_state = 46, .external_lex_state = 70}, + [2724] = {.lex_state = 46, .external_lex_state = 70}, + [2725] = {.lex_state = 178, .external_lex_state = 62}, [2726] = {.lex_state = 178, .external_lex_state = 58}, - [2727] = {.lex_state = 178, .external_lex_state = 58}, + [2727] = {.lex_state = 178, .external_lex_state = 62}, [2728] = {.lex_state = 178, .external_lex_state = 58}, [2729] = {.lex_state = 178, .external_lex_state = 58}, [2730] = {.lex_state = 178, .external_lex_state = 58}, [2731] = {.lex_state = 178, .external_lex_state = 58}, - [2732] = {.lex_state = 178, .external_lex_state = 58}, - [2733] = {.lex_state = 178, .external_lex_state = 58}, - [2734] = {.lex_state = 178, .external_lex_state = 62}, - [2735] = {.lex_state = 178, .external_lex_state = 62}, - [2736] = {.lex_state = 178, .external_lex_state = 58}, - [2737] = {.lex_state = 178, .external_lex_state = 58}, + [2732] = {.lex_state = 48, .external_lex_state = 67}, + [2733] = {.lex_state = 178, .external_lex_state = 62}, + [2734] = {.lex_state = 178, .external_lex_state = 58}, + [2735] = {.lex_state = 178, .external_lex_state = 58}, + [2736] = {.lex_state = 178, .external_lex_state = 62}, + [2737] = {.lex_state = 178, .external_lex_state = 62}, [2738] = {.lex_state = 178, .external_lex_state = 58}, - [2739] = {.lex_state = 179, .external_lex_state = 62}, + [2739] = {.lex_state = 178, .external_lex_state = 58}, [2740] = {.lex_state = 178, .external_lex_state = 58}, - [2741] = {.lex_state = 178, .external_lex_state = 58}, + [2741] = {.lex_state = 178, .external_lex_state = 62}, [2742] = {.lex_state = 178, .external_lex_state = 58}, [2743] = {.lex_state = 178, .external_lex_state = 58}, - [2744] = {.lex_state = 48, .external_lex_state = 67}, + [2744] = {.lex_state = 178, .external_lex_state = 58}, [2745] = {.lex_state = 178, .external_lex_state = 58}, [2746] = {.lex_state = 178, .external_lex_state = 58}, [2747] = {.lex_state = 178, .external_lex_state = 58}, - [2748] = {.lex_state = 178, .external_lex_state = 58}, + [2748] = {.lex_state = 178, .external_lex_state = 62}, [2749] = {.lex_state = 178, .external_lex_state = 58}, [2750] = {.lex_state = 178, .external_lex_state = 58}, [2751] = {.lex_state = 178, .external_lex_state = 58}, - [2752] = {.lex_state = 178, .external_lex_state = 58}, - [2753] = {.lex_state = 178, .external_lex_state = 58}, + [2752] = {.lex_state = 46, .external_lex_state = 70}, + [2753] = {.lex_state = 48, .external_lex_state = 67}, [2754] = {.lex_state = 178, .external_lex_state = 58}, [2755] = {.lex_state = 178, .external_lex_state = 58}, - [2756] = {.lex_state = 178, .external_lex_state = 58}, + [2756] = {.lex_state = 178, .external_lex_state = 62}, [2757] = {.lex_state = 178, .external_lex_state = 58}, [2758] = {.lex_state = 178, .external_lex_state = 58}, [2759] = {.lex_state = 178, .external_lex_state = 58}, [2760] = {.lex_state = 178, .external_lex_state = 58}, [2761] = {.lex_state = 178, .external_lex_state = 58}, [2762] = {.lex_state = 178, .external_lex_state = 58}, - [2763] = {.lex_state = 178, .external_lex_state = 58}, - [2764] = {.lex_state = 178, .external_lex_state = 58}, - [2765] = {.lex_state = 178, .external_lex_state = 58}, - [2766] = {.lex_state = 178, .external_lex_state = 58}, - [2767] = {.lex_state = 178, .external_lex_state = 58}, + [2763] = {.lex_state = 183, .external_lex_state = 76}, + [2764] = {.lex_state = 47, .external_lex_state = 67}, + [2765] = {.lex_state = 178, .external_lex_state = 62}, + [2766] = {.lex_state = 178, .external_lex_state = 62}, + [2767] = {.lex_state = 178, .external_lex_state = 62}, [2768] = {.lex_state = 178, .external_lex_state = 58}, - [2769] = {.lex_state = 183, .external_lex_state = 78}, + [2769] = {.lex_state = 178, .external_lex_state = 58}, [2770] = {.lex_state = 178, .external_lex_state = 58}, - [2771] = {.lex_state = 46, .external_lex_state = 70}, - [2772] = {.lex_state = 178, .external_lex_state = 62}, + [2771] = {.lex_state = 178, .external_lex_state = 58}, + [2772] = {.lex_state = 178, .external_lex_state = 58}, [2773] = {.lex_state = 178, .external_lex_state = 58}, [2774] = {.lex_state = 178, .external_lex_state = 58}, - [2775] = {.lex_state = 178, .external_lex_state = 60}, - [2776] = {.lex_state = 48, .external_lex_state = 67}, - [2777] = {.lex_state = 48, .external_lex_state = 67}, - [2778] = {.lex_state = 49, .external_lex_state = 67}, - [2779] = {.lex_state = 48, .external_lex_state = 67}, - [2780] = {.lex_state = 47, .external_lex_state = 70}, - [2781] = {.lex_state = 47, .external_lex_state = 70}, - [2782] = {.lex_state = 178, .external_lex_state = 60}, - [2783] = {.lex_state = 178, .external_lex_state = 65}, - [2784] = {.lex_state = 47, .external_lex_state = 70}, - [2785] = {.lex_state = 47, .external_lex_state = 70}, - [2786] = {.lex_state = 178, .external_lex_state = 65}, - [2787] = {.lex_state = 49, .external_lex_state = 67}, - [2788] = {.lex_state = 178, .external_lex_state = 79}, - [2789] = {.lex_state = 178, .external_lex_state = 65}, - [2790] = {.lex_state = 49, .external_lex_state = 67}, + [2775] = {.lex_state = 178, .external_lex_state = 58}, + [2776] = {.lex_state = 178, .external_lex_state = 58}, + [2777] = {.lex_state = 178, .external_lex_state = 58}, + [2778] = {.lex_state = 178, .external_lex_state = 79}, + [2779] = {.lex_state = 178, .external_lex_state = 79}, + [2780] = {.lex_state = 178, .external_lex_state = 78}, + [2781] = {.lex_state = 178, .external_lex_state = 78}, + [2782] = {.lex_state = 178, .external_lex_state = 78}, + [2783] = {.lex_state = 179, .external_lex_state = 60}, + [2784] = {.lex_state = 179, .external_lex_state = 64}, + [2785] = {.lex_state = 178, .external_lex_state = 64}, + [2786] = {.lex_state = 178, .external_lex_state = 64}, + [2787] = {.lex_state = 178, .external_lex_state = 64}, + [2788] = {.lex_state = 178, .external_lex_state = 64}, + [2789] = {.lex_state = 179, .external_lex_state = 69}, + [2790] = {.lex_state = 48, .external_lex_state = 67}, [2791] = {.lex_state = 48, .external_lex_state = 67}, [2792] = {.lex_state = 48, .external_lex_state = 67}, - [2793] = {.lex_state = 49, .external_lex_state = 67}, - [2794] = {.lex_state = 178, .external_lex_state = 65}, - [2795] = {.lex_state = 183, .external_lex_state = 60}, - [2796] = {.lex_state = 178, .external_lex_state = 60}, - [2797] = {.lex_state = 49, .external_lex_state = 67}, - [2798] = {.lex_state = 178, .external_lex_state = 78}, - [2799] = {.lex_state = 178, .external_lex_state = 60}, - [2800] = {.lex_state = 178, .external_lex_state = 62}, - [2801] = {.lex_state = 47, .external_lex_state = 70}, - [2802] = {.lex_state = 178, .external_lex_state = 60}, - [2803] = {.lex_state = 179, .external_lex_state = 66}, - [2804] = {.lex_state = 178, .external_lex_state = 66}, + [2793] = {.lex_state = 48, .external_lex_state = 67}, + [2794] = {.lex_state = 48, .external_lex_state = 67}, + [2795] = {.lex_state = 48, .external_lex_state = 67}, + [2796] = {.lex_state = 48, .external_lex_state = 67}, + [2797] = {.lex_state = 48, .external_lex_state = 67}, + [2798] = {.lex_state = 48, .external_lex_state = 67}, + [2799] = {.lex_state = 48, .external_lex_state = 67}, + [2800] = {.lex_state = 48, .external_lex_state = 67}, + [2801] = {.lex_state = 48, .external_lex_state = 67}, + [2802] = {.lex_state = 48, .external_lex_state = 67}, + [2803] = {.lex_state = 48, .external_lex_state = 67}, + [2804] = {.lex_state = 49, .external_lex_state = 67}, [2805] = {.lex_state = 49, .external_lex_state = 67}, - [2806] = {.lex_state = 178, .external_lex_state = 65}, + [2806] = {.lex_state = 178, .external_lex_state = 60}, [2807] = {.lex_state = 49, .external_lex_state = 67}, - [2808] = {.lex_state = 178, .external_lex_state = 60}, - [2809] = {.lex_state = 179, .external_lex_state = 69}, - [2810] = {.lex_state = 178, .external_lex_state = 60}, - [2811] = {.lex_state = 48, .external_lex_state = 67}, - [2812] = {.lex_state = 178, .external_lex_state = 60}, - [2813] = {.lex_state = 48, .external_lex_state = 67}, - [2814] = {.lex_state = 178, .external_lex_state = 60}, - [2815] = {.lex_state = 178, .external_lex_state = 65}, - [2816] = {.lex_state = 178, .external_lex_state = 60}, - [2817] = {.lex_state = 183, .external_lex_state = 60}, + [2808] = {.lex_state = 49, .external_lex_state = 67}, + [2809] = {.lex_state = 178, .external_lex_state = 64}, + [2810] = {.lex_state = 49, .external_lex_state = 67}, + [2811] = {.lex_state = 178, .external_lex_state = 64}, + [2812] = {.lex_state = 178, .external_lex_state = 64}, + [2813] = {.lex_state = 178, .external_lex_state = 64}, + [2814] = {.lex_state = 179, .external_lex_state = 69}, + [2815] = {.lex_state = 179, .external_lex_state = 69}, + [2816] = {.lex_state = 179, .external_lex_state = 69}, + [2817] = {.lex_state = 179, .external_lex_state = 69}, [2818] = {.lex_state = 178, .external_lex_state = 60}, [2819] = {.lex_state = 178, .external_lex_state = 60}, - [2820] = {.lex_state = 178, .external_lex_state = 60}, - [2821] = {.lex_state = 178, .external_lex_state = 60}, - [2822] = {.lex_state = 179, .external_lex_state = 69}, - [2823] = {.lex_state = 178, .external_lex_state = 65}, - [2824] = {.lex_state = 183, .external_lex_state = 60}, - [2825] = {.lex_state = 48, .external_lex_state = 67}, - [2826] = {.lex_state = 178, .external_lex_state = 60}, - [2827] = {.lex_state = 48, .external_lex_state = 67}, - [2828] = {.lex_state = 178, .external_lex_state = 66}, - [2829] = {.lex_state = 178, .external_lex_state = 60}, - [2830] = {.lex_state = 178, .external_lex_state = 66}, - [2831] = {.lex_state = 178, .external_lex_state = 78}, + [2820] = {.lex_state = 47, .external_lex_state = 70}, + [2821] = {.lex_state = 47, .external_lex_state = 70}, + [2822] = {.lex_state = 47, .external_lex_state = 70}, + [2823] = {.lex_state = 47, .external_lex_state = 70}, + [2824] = {.lex_state = 47, .external_lex_state = 70}, + [2825] = {.lex_state = 49, .external_lex_state = 67}, + [2826] = {.lex_state = 49, .external_lex_state = 67}, + [2827] = {.lex_state = 49, .external_lex_state = 67}, + [2828] = {.lex_state = 49, .external_lex_state = 67}, + [2829] = {.lex_state = 179, .external_lex_state = 66}, + [2830] = {.lex_state = 48, .external_lex_state = 67}, + [2831] = {.lex_state = 178, .external_lex_state = 66}, [2832] = {.lex_state = 178, .external_lex_state = 66}, - [2833] = {.lex_state = 178, .external_lex_state = 79}, - [2834] = {.lex_state = 49, .external_lex_state = 67}, - [2835] = {.lex_state = 179, .external_lex_state = 69}, - [2836] = {.lex_state = 179, .external_lex_state = 60}, - [2837] = {.lex_state = 178, .external_lex_state = 65}, - [2838] = {.lex_state = 48, .external_lex_state = 67}, - [2839] = {.lex_state = 46, .external_lex_state = 70}, - [2840] = {.lex_state = 178, .external_lex_state = 66}, - [2841] = {.lex_state = 178, .external_lex_state = 66}, - [2842] = {.lex_state = 178, .external_lex_state = 60}, - [2843] = {.lex_state = 48, .external_lex_state = 67}, - [2844] = {.lex_state = 48, .external_lex_state = 67}, - [2845] = {.lex_state = 48, .external_lex_state = 67}, - [2846] = {.lex_state = 178, .external_lex_state = 79}, - [2847] = {.lex_state = 49, .external_lex_state = 67}, - [2848] = {.lex_state = 178, .external_lex_state = 78}, - [2849] = {.lex_state = 178, .external_lex_state = 79}, - [2850] = {.lex_state = 48, .external_lex_state = 67}, - [2851] = {.lex_state = 48, .external_lex_state = 67}, + [2833] = {.lex_state = 178, .external_lex_state = 66}, + [2834] = {.lex_state = 178, .external_lex_state = 60}, + [2835] = {.lex_state = 178, .external_lex_state = 62}, + [2836] = {.lex_state = 178, .external_lex_state = 66}, + [2837] = {.lex_state = 178, .external_lex_state = 66}, + [2838] = {.lex_state = 178, .external_lex_state = 66}, + [2839] = {.lex_state = 178, .external_lex_state = 66}, + [2840] = {.lex_state = 178, .external_lex_state = 79}, + [2841] = {.lex_state = 183, .external_lex_state = 60}, + [2842] = {.lex_state = 178, .external_lex_state = 76}, + [2843] = {.lex_state = 179, .external_lex_state = 60}, + [2844] = {.lex_state = 178, .external_lex_state = 60}, + [2845] = {.lex_state = 183, .external_lex_state = 60}, + [2846] = {.lex_state = 178, .external_lex_state = 60}, + [2847] = {.lex_state = 178, .external_lex_state = 60}, + [2848] = {.lex_state = 178, .external_lex_state = 60}, + [2849] = {.lex_state = 46, .external_lex_state = 70}, + [2850] = {.lex_state = 178, .external_lex_state = 60}, + [2851] = {.lex_state = 178, .external_lex_state = 60}, [2852] = {.lex_state = 178, .external_lex_state = 60}, - [2853] = {.lex_state = 48, .external_lex_state = 67}, + [2853] = {.lex_state = 178, .external_lex_state = 79}, [2854] = {.lex_state = 48, .external_lex_state = 67}, [2855] = {.lex_state = 48, .external_lex_state = 67}, - [2856] = {.lex_state = 178, .external_lex_state = 66}, + [2856] = {.lex_state = 48, .external_lex_state = 67}, [2857] = {.lex_state = 48, .external_lex_state = 67}, - [2858] = {.lex_state = 179, .external_lex_state = 69}, - [2859] = {.lex_state = 178, .external_lex_state = 76}, + [2858] = {.lex_state = 48, .external_lex_state = 67}, + [2859] = {.lex_state = 183, .external_lex_state = 60}, [2860] = {.lex_state = 48, .external_lex_state = 67}, - [2861] = {.lex_state = 178, .external_lex_state = 60}, - [2862] = {.lex_state = 178, .external_lex_state = 60}, + [2861] = {.lex_state = 48, .external_lex_state = 67}, + [2862] = {.lex_state = 48, .external_lex_state = 67}, [2863] = {.lex_state = 178, .external_lex_state = 60}, - [2864] = {.lex_state = 48, .external_lex_state = 67}, - [2865] = {.lex_state = 179, .external_lex_state = 65}, - [2866] = {.lex_state = 179, .external_lex_state = 60}, - [2867] = {.lex_state = 48, .external_lex_state = 67}, - [2868] = {.lex_state = 179, .external_lex_state = 69}, - [2869] = {.lex_state = 48, .external_lex_state = 67}, + [2864] = {.lex_state = 178, .external_lex_state = 60}, + [2865] = {.lex_state = 178, .external_lex_state = 60}, + [2866] = {.lex_state = 178, .external_lex_state = 60}, + [2867] = {.lex_state = 178, .external_lex_state = 60}, + [2868] = {.lex_state = 178, .external_lex_state = 60}, + [2869] = {.lex_state = 178, .external_lex_state = 60}, [2870] = {.lex_state = 48, .external_lex_state = 67}, [2871] = {.lex_state = 48, .external_lex_state = 67}, - [2872] = {.lex_state = 178, .external_lex_state = 66}, + [2872] = {.lex_state = 178, .external_lex_state = 60}, [2873] = {.lex_state = 178, .external_lex_state = 60}, - [2874] = {.lex_state = 178, .external_lex_state = 66}, + [2874] = {.lex_state = 178, .external_lex_state = 60}, [2875] = {.lex_state = 178, .external_lex_state = 66}, [2876] = {.lex_state = 178, .external_lex_state = 60}, [2877] = {.lex_state = 178, .external_lex_state = 60}, - [2878] = {.lex_state = 178, .external_lex_state = 65}, - [2879] = {.lex_state = 178, .external_lex_state = 65}, + [2878] = {.lex_state = 48, .external_lex_state = 70}, + [2879] = {.lex_state = 178, .external_lex_state = 60}, [2880] = {.lex_state = 178, .external_lex_state = 60}, - [2881] = {.lex_state = 178, .external_lex_state = 65}, + [2881] = {.lex_state = 178, .external_lex_state = 60}, [2882] = {.lex_state = 178, .external_lex_state = 60}, [2883] = {.lex_state = 178, .external_lex_state = 60}, [2884] = {.lex_state = 178, .external_lex_state = 60}, @@ -23211,29 +23333,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2888] = {.lex_state = 178, .external_lex_state = 60}, [2889] = {.lex_state = 178, .external_lex_state = 60}, [2890] = {.lex_state = 178, .external_lex_state = 60}, - [2891] = {.lex_state = 178, .external_lex_state = 60}, - [2892] = {.lex_state = 178, .external_lex_state = 60}, + [2891] = {.lex_state = 183, .external_lex_state = 78}, + [2892] = {.lex_state = 183, .external_lex_state = 78}, [2893] = {.lex_state = 178, .external_lex_state = 60}, [2894] = {.lex_state = 178, .external_lex_state = 60}, [2895] = {.lex_state = 178, .external_lex_state = 60}, [2896] = {.lex_state = 178, .external_lex_state = 60}, - [2897] = {.lex_state = 178, .external_lex_state = 60}, - [2898] = {.lex_state = 178, .external_lex_state = 60}, - [2899] = {.lex_state = 178, .external_lex_state = 60}, - [2900] = {.lex_state = 178, .external_lex_state = 60}, - [2901] = {.lex_state = 178, .external_lex_state = 60}, - [2902] = {.lex_state = 178, .external_lex_state = 60}, - [2903] = {.lex_state = 178, .external_lex_state = 60}, - [2904] = {.lex_state = 178, .external_lex_state = 60}, - [2905] = {.lex_state = 178, .external_lex_state = 60}, - [2906] = {.lex_state = 178, .external_lex_state = 60}, - [2907] = {.lex_state = 178, .external_lex_state = 60}, - [2908] = {.lex_state = 178, .external_lex_state = 65}, - [2909] = {.lex_state = 178, .external_lex_state = 60}, - [2910] = {.lex_state = 178, .external_lex_state = 60}, + [2897] = {.lex_state = 178, .external_lex_state = 64}, + [2898] = {.lex_state = 178, .external_lex_state = 64}, + [2899] = {.lex_state = 178, .external_lex_state = 64}, + [2900] = {.lex_state = 178, .external_lex_state = 64}, + [2901] = {.lex_state = 178, .external_lex_state = 64}, + [2902] = {.lex_state = 178, .external_lex_state = 64}, + [2903] = {.lex_state = 178, .external_lex_state = 64}, + [2904] = {.lex_state = 178, .external_lex_state = 64}, + [2905] = {.lex_state = 178, .external_lex_state = 64}, + [2906] = {.lex_state = 178, .external_lex_state = 64}, + [2907] = {.lex_state = 178, .external_lex_state = 64}, + [2908] = {.lex_state = 178, .external_lex_state = 64}, + [2909] = {.lex_state = 179, .external_lex_state = 66}, + [2910] = {.lex_state = 183, .external_lex_state = 80}, [2911] = {.lex_state = 178, .external_lex_state = 60}, - [2912] = {.lex_state = 178, .external_lex_state = 60}, - [2913] = {.lex_state = 178, .external_lex_state = 60}, + [2912] = {.lex_state = 178, .external_lex_state = 64}, + [2913] = {.lex_state = 178, .external_lex_state = 64}, [2914] = {.lex_state = 178, .external_lex_state = 60}, [2915] = {.lex_state = 178, .external_lex_state = 60}, [2916] = {.lex_state = 178, .external_lex_state = 60}, @@ -23241,10 +23363,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2918] = {.lex_state = 178, .external_lex_state = 60}, [2919] = {.lex_state = 178, .external_lex_state = 60}, [2920] = {.lex_state = 178, .external_lex_state = 60}, - [2921] = {.lex_state = 178, .external_lex_state = 60}, - [2922] = {.lex_state = 178, .external_lex_state = 62}, - [2923] = {.lex_state = 178, .external_lex_state = 65}, - [2924] = {.lex_state = 178, .external_lex_state = 65}, + [2921] = {.lex_state = 48, .external_lex_state = 70}, + [2922] = {.lex_state = 178, .external_lex_state = 60}, + [2923] = {.lex_state = 178, .external_lex_state = 60}, + [2924] = {.lex_state = 48, .external_lex_state = 70}, [2925] = {.lex_state = 178, .external_lex_state = 60}, [2926] = {.lex_state = 178, .external_lex_state = 60}, [2927] = {.lex_state = 178, .external_lex_state = 60}, @@ -23253,7 +23375,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2930] = {.lex_state = 178, .external_lex_state = 60}, [2931] = {.lex_state = 178, .external_lex_state = 60}, [2932] = {.lex_state = 178, .external_lex_state = 60}, - [2933] = {.lex_state = 178, .external_lex_state = 60}, + [2933] = {.lex_state = 48, .external_lex_state = 70}, [2934] = {.lex_state = 178, .external_lex_state = 60}, [2935] = {.lex_state = 178, .external_lex_state = 60}, [2936] = {.lex_state = 178, .external_lex_state = 60}, @@ -23263,108 +23385,108 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2940] = {.lex_state = 178, .external_lex_state = 60}, [2941] = {.lex_state = 178, .external_lex_state = 60}, [2942] = {.lex_state = 178, .external_lex_state = 60}, - [2943] = {.lex_state = 178, .external_lex_state = 60}, - [2944] = {.lex_state = 183, .external_lex_state = 78}, + [2943] = {.lex_state = 49, .external_lex_state = 67}, + [2944] = {.lex_state = 178, .external_lex_state = 60}, [2945] = {.lex_state = 178, .external_lex_state = 60}, - [2946] = {.lex_state = 178, .external_lex_state = 60}, + [2946] = {.lex_state = 48, .external_lex_state = 70}, [2947] = {.lex_state = 178, .external_lex_state = 60}, [2948] = {.lex_state = 178, .external_lex_state = 60}, [2949] = {.lex_state = 178, .external_lex_state = 60}, [2950] = {.lex_state = 178, .external_lex_state = 60}, - [2951] = {.lex_state = 178, .external_lex_state = 65}, - [2952] = {.lex_state = 178, .external_lex_state = 60}, - [2953] = {.lex_state = 178, .external_lex_state = 60}, - [2954] = {.lex_state = 178, .external_lex_state = 60}, - [2955] = {.lex_state = 178, .external_lex_state = 60}, + [2951] = {.lex_state = 49, .external_lex_state = 67}, + [2952] = {.lex_state = 49, .external_lex_state = 67}, + [2953] = {.lex_state = 49, .external_lex_state = 67}, + [2954] = {.lex_state = 49, .external_lex_state = 67}, + [2955] = {.lex_state = 49, .external_lex_state = 67}, [2956] = {.lex_state = 178, .external_lex_state = 60}, - [2957] = {.lex_state = 178, .external_lex_state = 60}, + [2957] = {.lex_state = 49, .external_lex_state = 67}, [2958] = {.lex_state = 178, .external_lex_state = 60}, - [2959] = {.lex_state = 183, .external_lex_state = 78}, - [2960] = {.lex_state = 178, .external_lex_state = 60}, - [2961] = {.lex_state = 178, .external_lex_state = 60}, - [2962] = {.lex_state = 178, .external_lex_state = 60}, - [2963] = {.lex_state = 178, .external_lex_state = 60}, + [2959] = {.lex_state = 49, .external_lex_state = 67}, + [2960] = {.lex_state = 49, .external_lex_state = 67}, + [2961] = {.lex_state = 49, .external_lex_state = 67}, + [2962] = {.lex_state = 49, .external_lex_state = 67}, + [2963] = {.lex_state = 49, .external_lex_state = 67}, [2964] = {.lex_state = 178, .external_lex_state = 60}, [2965] = {.lex_state = 178, .external_lex_state = 60}, [2966] = {.lex_state = 178, .external_lex_state = 60}, - [2967] = {.lex_state = 178, .external_lex_state = 60}, + [2967] = {.lex_state = 179, .external_lex_state = 69}, [2968] = {.lex_state = 178, .external_lex_state = 60}, [2969] = {.lex_state = 178, .external_lex_state = 60}, [2970] = {.lex_state = 178, .external_lex_state = 60}, - [2971] = {.lex_state = 178, .external_lex_state = 60}, - [2972] = {.lex_state = 178, .external_lex_state = 60}, - [2973] = {.lex_state = 178, .external_lex_state = 60}, - [2974] = {.lex_state = 178, .external_lex_state = 60}, - [2975] = {.lex_state = 178, .external_lex_state = 60}, - [2976] = {.lex_state = 178, .external_lex_state = 60}, + [2971] = {.lex_state = 178, .external_lex_state = 66}, + [2972] = {.lex_state = 49, .external_lex_state = 67}, + [2973] = {.lex_state = 178, .external_lex_state = 66}, + [2974] = {.lex_state = 49, .external_lex_state = 67}, + [2975] = {.lex_state = 178, .external_lex_state = 66}, + [2976] = {.lex_state = 178, .external_lex_state = 62}, [2977] = {.lex_state = 178, .external_lex_state = 60}, - [2978] = {.lex_state = 178, .external_lex_state = 65}, + [2978] = {.lex_state = 178, .external_lex_state = 60}, [2979] = {.lex_state = 178, .external_lex_state = 60}, - [2980] = {.lex_state = 178, .external_lex_state = 60}, - [2981] = {.lex_state = 178, .external_lex_state = 60}, - [2982] = {.lex_state = 178, .external_lex_state = 65}, - [2983] = {.lex_state = 178, .external_lex_state = 65}, + [2980] = {.lex_state = 48, .external_lex_state = 67}, + [2981] = {.lex_state = 178, .external_lex_state = 66}, + [2982] = {.lex_state = 178, .external_lex_state = 66}, + [2983] = {.lex_state = 178, .external_lex_state = 60}, [2984] = {.lex_state = 178, .external_lex_state = 60}, [2985] = {.lex_state = 178, .external_lex_state = 60}, - [2986] = {.lex_state = 178, .external_lex_state = 65}, - [2987] = {.lex_state = 178, .external_lex_state = 65}, - [2988] = {.lex_state = 178, .external_lex_state = 65}, - [2989] = {.lex_state = 178, .external_lex_state = 65}, - [2990] = {.lex_state = 178, .external_lex_state = 60}, - [2991] = {.lex_state = 178, .external_lex_state = 60}, - [2992] = {.lex_state = 178, .external_lex_state = 65}, - [2993] = {.lex_state = 178, .external_lex_state = 65}, - [2994] = {.lex_state = 178, .external_lex_state = 60}, - [2995] = {.lex_state = 178, .external_lex_state = 60}, - [2996] = {.lex_state = 178, .external_lex_state = 65}, - [2997] = {.lex_state = 178, .external_lex_state = 65}, - [2998] = {.lex_state = 178, .external_lex_state = 65}, - [2999] = {.lex_state = 178, .external_lex_state = 60}, - [3000] = {.lex_state = 178, .external_lex_state = 60}, - [3001] = {.lex_state = 178, .external_lex_state = 60}, - [3002] = {.lex_state = 178, .external_lex_state = 60}, - [3003] = {.lex_state = 178, .external_lex_state = 60}, - [3004] = {.lex_state = 178, .external_lex_state = 60}, - [3005] = {.lex_state = 179, .external_lex_state = 66}, - [3006] = {.lex_state = 178, .external_lex_state = 60}, - [3007] = {.lex_state = 178, .external_lex_state = 60}, - [3008] = {.lex_state = 183, .external_lex_state = 80}, + [2986] = {.lex_state = 49, .external_lex_state = 67}, + [2987] = {.lex_state = 49, .external_lex_state = 67}, + [2988] = {.lex_state = 49, .external_lex_state = 67}, + [2989] = {.lex_state = 178, .external_lex_state = 60}, + [2990] = {.lex_state = 47, .external_lex_state = 70}, + [2991] = {.lex_state = 49, .external_lex_state = 67}, + [2992] = {.lex_state = 49, .external_lex_state = 67}, + [2993] = {.lex_state = 178, .external_lex_state = 66}, + [2994] = {.lex_state = 179, .external_lex_state = 64}, + [2995] = {.lex_state = 183, .external_lex_state = 81}, + [2996] = {.lex_state = 178, .external_lex_state = 66}, + [2997] = {.lex_state = 178, .external_lex_state = 66}, + [2998] = {.lex_state = 178, .external_lex_state = 66}, + [2999] = {.lex_state = 178, .external_lex_state = 66}, + [3000] = {.lex_state = 178, .external_lex_state = 66}, + [3001] = {.lex_state = 178, .external_lex_state = 66}, + [3002] = {.lex_state = 178, .external_lex_state = 66}, + [3003] = {.lex_state = 178, .external_lex_state = 66}, + [3004] = {.lex_state = 178, .external_lex_state = 66}, + [3005] = {.lex_state = 178, .external_lex_state = 66}, + [3006] = {.lex_state = 178, .external_lex_state = 66}, + [3007] = {.lex_state = 178, .external_lex_state = 66}, + [3008] = {.lex_state = 178, .external_lex_state = 66}, [3009] = {.lex_state = 178, .external_lex_state = 60}, [3010] = {.lex_state = 178, .external_lex_state = 60}, [3011] = {.lex_state = 178, .external_lex_state = 60}, [3012] = {.lex_state = 178, .external_lex_state = 60}, [3013] = {.lex_state = 178, .external_lex_state = 60}, [3014] = {.lex_state = 178, .external_lex_state = 60}, - [3015] = {.lex_state = 178, .external_lex_state = 60}, - [3016] = {.lex_state = 178, .external_lex_state = 60}, - [3017] = {.lex_state = 178, .external_lex_state = 60}, - [3018] = {.lex_state = 178, .external_lex_state = 60}, - [3019] = {.lex_state = 178, .external_lex_state = 60}, + [3015] = {.lex_state = 178, .external_lex_state = 64}, + [3016] = {.lex_state = 178, .external_lex_state = 64}, + [3017] = {.lex_state = 178, .external_lex_state = 64}, + [3018] = {.lex_state = 178, .external_lex_state = 64}, + [3019] = {.lex_state = 178, .external_lex_state = 62}, [3020] = {.lex_state = 178, .external_lex_state = 60}, [3021] = {.lex_state = 178, .external_lex_state = 60}, - [3022] = {.lex_state = 178, .external_lex_state = 65}, + [3022] = {.lex_state = 178, .external_lex_state = 60}, [3023] = {.lex_state = 178, .external_lex_state = 60}, - [3024] = {.lex_state = 178, .external_lex_state = 65}, + [3024] = {.lex_state = 178, .external_lex_state = 60}, [3025] = {.lex_state = 178, .external_lex_state = 60}, - [3026] = {.lex_state = 48, .external_lex_state = 70}, - [3027] = {.lex_state = 48, .external_lex_state = 70}, + [3026] = {.lex_state = 178, .external_lex_state = 60}, + [3027] = {.lex_state = 178, .external_lex_state = 60}, [3028] = {.lex_state = 178, .external_lex_state = 60}, [3029] = {.lex_state = 178, .external_lex_state = 60}, [3030] = {.lex_state = 178, .external_lex_state = 60}, [3031] = {.lex_state = 178, .external_lex_state = 60}, [3032] = {.lex_state = 178, .external_lex_state = 60}, - [3033] = {.lex_state = 48, .external_lex_state = 70}, - [3034] = {.lex_state = 48, .external_lex_state = 70}, + [3033] = {.lex_state = 178, .external_lex_state = 60}, + [3034] = {.lex_state = 178, .external_lex_state = 60}, [3035] = {.lex_state = 178, .external_lex_state = 60}, [3036] = {.lex_state = 178, .external_lex_state = 60}, [3037] = {.lex_state = 178, .external_lex_state = 60}, [3038] = {.lex_state = 178, .external_lex_state = 60}, [3039] = {.lex_state = 178, .external_lex_state = 60}, - [3040] = {.lex_state = 48, .external_lex_state = 70}, + [3040] = {.lex_state = 178, .external_lex_state = 60}, [3041] = {.lex_state = 178, .external_lex_state = 60}, [3042] = {.lex_state = 178, .external_lex_state = 60}, [3043] = {.lex_state = 178, .external_lex_state = 60}, - [3044] = {.lex_state = 178, .external_lex_state = 60}, + [3044] = {.lex_state = 48, .external_lex_state = 70}, [3045] = {.lex_state = 178, .external_lex_state = 60}, [3046] = {.lex_state = 178, .external_lex_state = 60}, [3047] = {.lex_state = 178, .external_lex_state = 60}, @@ -23390,49 +23512,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3067] = {.lex_state = 178, .external_lex_state = 60}, [3068] = {.lex_state = 178, .external_lex_state = 60}, [3069] = {.lex_state = 178, .external_lex_state = 60}, - [3070] = {.lex_state = 49, .external_lex_state = 67}, + [3070] = {.lex_state = 178, .external_lex_state = 60}, [3071] = {.lex_state = 178, .external_lex_state = 60}, [3072] = {.lex_state = 178, .external_lex_state = 60}, [3073] = {.lex_state = 178, .external_lex_state = 60}, - [3074] = {.lex_state = 178, .external_lex_state = 60}, + [3074] = {.lex_state = 178, .external_lex_state = 62}, [3075] = {.lex_state = 178, .external_lex_state = 60}, - [3076] = {.lex_state = 48, .external_lex_state = 70}, - [3077] = {.lex_state = 178, .external_lex_state = 62}, - [3078] = {.lex_state = 49, .external_lex_state = 67}, - [3079] = {.lex_state = 49, .external_lex_state = 67}, - [3080] = {.lex_state = 49, .external_lex_state = 67}, - [3081] = {.lex_state = 49, .external_lex_state = 67}, - [3082] = {.lex_state = 178, .external_lex_state = 66}, + [3076] = {.lex_state = 178, .external_lex_state = 64}, + [3077] = {.lex_state = 178, .external_lex_state = 64}, + [3078] = {.lex_state = 178, .external_lex_state = 60}, + [3079] = {.lex_state = 178, .external_lex_state = 60}, + [3080] = {.lex_state = 178, .external_lex_state = 60}, + [3081] = {.lex_state = 178, .external_lex_state = 60}, + [3082] = {.lex_state = 178, .external_lex_state = 60}, [3083] = {.lex_state = 178, .external_lex_state = 60}, - [3084] = {.lex_state = 178, .external_lex_state = 66}, - [3085] = {.lex_state = 178, .external_lex_state = 66}, - [3086] = {.lex_state = 178, .external_lex_state = 66}, - [3087] = {.lex_state = 178, .external_lex_state = 66}, + [3084] = {.lex_state = 178, .external_lex_state = 60}, + [3085] = {.lex_state = 178, .external_lex_state = 60}, + [3086] = {.lex_state = 178, .external_lex_state = 60}, + [3087] = {.lex_state = 178, .external_lex_state = 60}, [3088] = {.lex_state = 178, .external_lex_state = 60}, [3089] = {.lex_state = 178, .external_lex_state = 60}, - [3090] = {.lex_state = 178, .external_lex_state = 65}, - [3091] = {.lex_state = 48, .external_lex_state = 70}, - [3092] = {.lex_state = 49, .external_lex_state = 67}, + [3090] = {.lex_state = 178, .external_lex_state = 60}, + [3091] = {.lex_state = 178, .external_lex_state = 60}, + [3092] = {.lex_state = 178, .external_lex_state = 60}, [3093] = {.lex_state = 178, .external_lex_state = 60}, - [3094] = {.lex_state = 178, .external_lex_state = 62}, - [3095] = {.lex_state = 178, .external_lex_state = 62}, - [3096] = {.lex_state = 178, .external_lex_state = 65}, - [3097] = {.lex_state = 48, .external_lex_state = 70}, - [3098] = {.lex_state = 48, .external_lex_state = 70}, - [3099] = {.lex_state = 49, .external_lex_state = 67}, - [3100] = {.lex_state = 49, .external_lex_state = 67}, + [3094] = {.lex_state = 178, .external_lex_state = 60}, + [3095] = {.lex_state = 178, .external_lex_state = 60}, + [3096] = {.lex_state = 178, .external_lex_state = 60}, + [3097] = {.lex_state = 178, .external_lex_state = 60}, + [3098] = {.lex_state = 178, .external_lex_state = 60}, + [3099] = {.lex_state = 178, .external_lex_state = 60}, + [3100] = {.lex_state = 178, .external_lex_state = 60}, [3101] = {.lex_state = 178, .external_lex_state = 60}, - [3102] = {.lex_state = 49, .external_lex_state = 67}, - [3103] = {.lex_state = 49, .external_lex_state = 67}, - [3104] = {.lex_state = 49, .external_lex_state = 67}, + [3102] = {.lex_state = 178, .external_lex_state = 60}, + [3103] = {.lex_state = 178, .external_lex_state = 60}, + [3104] = {.lex_state = 178, .external_lex_state = 60}, [3105] = {.lex_state = 178, .external_lex_state = 60}, - [3106] = {.lex_state = 49, .external_lex_state = 67}, + [3106] = {.lex_state = 178, .external_lex_state = 60}, [3107] = {.lex_state = 178, .external_lex_state = 60}, - [3108] = {.lex_state = 49, .external_lex_state = 67}, - [3109] = {.lex_state = 49, .external_lex_state = 67}, - [3110] = {.lex_state = 49, .external_lex_state = 67}, - [3111] = {.lex_state = 49, .external_lex_state = 67}, - [3112] = {.lex_state = 49, .external_lex_state = 67}, + [3108] = {.lex_state = 178, .external_lex_state = 60}, + [3109] = {.lex_state = 178, .external_lex_state = 60}, + [3110] = {.lex_state = 178, .external_lex_state = 60}, + [3111] = {.lex_state = 178, .external_lex_state = 60}, + [3112] = {.lex_state = 178, .external_lex_state = 60}, [3113] = {.lex_state = 178, .external_lex_state = 60}, [3114] = {.lex_state = 178, .external_lex_state = 60}, [3115] = {.lex_state = 178, .external_lex_state = 60}, @@ -23442,312 +23564,312 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3119] = {.lex_state = 178, .external_lex_state = 60}, [3120] = {.lex_state = 178, .external_lex_state = 60}, [3121] = {.lex_state = 178, .external_lex_state = 60}, - [3122] = {.lex_state = 179, .external_lex_state = 65}, - [3123] = {.lex_state = 178, .external_lex_state = 60}, + [3122] = {.lex_state = 178, .external_lex_state = 60}, + [3123] = {.lex_state = 178, .external_lex_state = 62}, [3124] = {.lex_state = 178, .external_lex_state = 60}, - [3125] = {.lex_state = 183, .external_lex_state = 81}, + [3125] = {.lex_state = 178, .external_lex_state = 60}, [3126] = {.lex_state = 178, .external_lex_state = 60}, - [3127] = {.lex_state = 179, .external_lex_state = 69}, + [3127] = {.lex_state = 178, .external_lex_state = 60}, [3128] = {.lex_state = 178, .external_lex_state = 60}, [3129] = {.lex_state = 178, .external_lex_state = 60}, [3130] = {.lex_state = 178, .external_lex_state = 60}, - [3131] = {.lex_state = 178, .external_lex_state = 66}, - [3132] = {.lex_state = 49, .external_lex_state = 67}, + [3131] = {.lex_state = 178, .external_lex_state = 62}, + [3132] = {.lex_state = 178, .external_lex_state = 60}, [3133] = {.lex_state = 178, .external_lex_state = 60}, [3134] = {.lex_state = 178, .external_lex_state = 60}, - [3135] = {.lex_state = 178, .external_lex_state = 66}, - [3136] = {.lex_state = 49, .external_lex_state = 67}, - [3137] = {.lex_state = 178, .external_lex_state = 66}, - [3138] = {.lex_state = 178, .external_lex_state = 62}, - [3139] = {.lex_state = 178, .external_lex_state = 62}, + [3135] = {.lex_state = 178, .external_lex_state = 62}, + [3136] = {.lex_state = 178, .external_lex_state = 62}, + [3137] = {.lex_state = 178, .external_lex_state = 62}, + [3138] = {.lex_state = 178, .external_lex_state = 60}, + [3139] = {.lex_state = 178, .external_lex_state = 60}, [3140] = {.lex_state = 178, .external_lex_state = 60}, - [3141] = {.lex_state = 178, .external_lex_state = 62}, - [3142] = {.lex_state = 178, .external_lex_state = 62}, - [3143] = {.lex_state = 48, .external_lex_state = 67}, - [3144] = {.lex_state = 178, .external_lex_state = 62}, + [3141] = {.lex_state = 178, .external_lex_state = 60}, + [3142] = {.lex_state = 178, .external_lex_state = 60}, + [3143] = {.lex_state = 178, .external_lex_state = 60}, + [3144] = {.lex_state = 178, .external_lex_state = 60}, [3145] = {.lex_state = 178, .external_lex_state = 60}, - [3146] = {.lex_state = 178, .external_lex_state = 66}, - [3147] = {.lex_state = 178, .external_lex_state = 66}, - [3148] = {.lex_state = 178, .external_lex_state = 65}, - [3149] = {.lex_state = 49, .external_lex_state = 67}, - [3150] = {.lex_state = 178, .external_lex_state = 66}, - [3151] = {.lex_state = 178, .external_lex_state = 60}, + [3146] = {.lex_state = 178, .external_lex_state = 60}, + [3147] = {.lex_state = 178, .external_lex_state = 60}, + [3148] = {.lex_state = 178, .external_lex_state = 60}, + [3149] = {.lex_state = 178, .external_lex_state = 60}, + [3150] = {.lex_state = 178, .external_lex_state = 60}, + [3151] = {.lex_state = 178, .external_lex_state = 64}, [3152] = {.lex_state = 178, .external_lex_state = 60}, - [3153] = {.lex_state = 178, .external_lex_state = 60}, + [3153] = {.lex_state = 178, .external_lex_state = 64}, [3154] = {.lex_state = 178, .external_lex_state = 60}, [3155] = {.lex_state = 178, .external_lex_state = 60}, [3156] = {.lex_state = 178, .external_lex_state = 60}, - [3157] = {.lex_state = 49, .external_lex_state = 67}, + [3157] = {.lex_state = 178, .external_lex_state = 60}, [3158] = {.lex_state = 178, .external_lex_state = 60}, - [3159] = {.lex_state = 49, .external_lex_state = 67}, - [3160] = {.lex_state = 49, .external_lex_state = 67}, + [3159] = {.lex_state = 178, .external_lex_state = 60}, + [3160] = {.lex_state = 178, .external_lex_state = 64}, [3161] = {.lex_state = 178, .external_lex_state = 60}, [3162] = {.lex_state = 178, .external_lex_state = 60}, - [3163] = {.lex_state = 47, .external_lex_state = 70}, - [3164] = {.lex_state = 49, .external_lex_state = 67}, + [3163] = {.lex_state = 178, .external_lex_state = 60}, + [3164] = {.lex_state = 178, .external_lex_state = 64}, [3165] = {.lex_state = 49, .external_lex_state = 67}, - [3166] = {.lex_state = 178, .external_lex_state = 66}, - [3167] = {.lex_state = 178, .external_lex_state = 66}, - [3168] = {.lex_state = 178, .external_lex_state = 66}, - [3169] = {.lex_state = 178, .external_lex_state = 60}, - [3170] = {.lex_state = 178, .external_lex_state = 66}, + [3166] = {.lex_state = 178, .external_lex_state = 62}, + [3167] = {.lex_state = 49, .external_lex_state = 67}, + [3168] = {.lex_state = 49, .external_lex_state = 67}, + [3169] = {.lex_state = 49, .external_lex_state = 67}, + [3170] = {.lex_state = 49, .external_lex_state = 67}, [3171] = {.lex_state = 178, .external_lex_state = 66}, [3172] = {.lex_state = 178, .external_lex_state = 66}, [3173] = {.lex_state = 178, .external_lex_state = 66}, [3174] = {.lex_state = 178, .external_lex_state = 66}, [3175] = {.lex_state = 178, .external_lex_state = 66}, - [3176] = {.lex_state = 178, .external_lex_state = 66}, - [3177] = {.lex_state = 178, .external_lex_state = 66}, - [3178] = {.lex_state = 178, .external_lex_state = 66}, + [3176] = {.lex_state = 178, .external_lex_state = 64}, + [3177] = {.lex_state = 178, .external_lex_state = 60}, + [3178] = {.lex_state = 178, .external_lex_state = 60}, [3179] = {.lex_state = 178, .external_lex_state = 60}, - [3180] = {.lex_state = 178, .external_lex_state = 65}, - [3181] = {.lex_state = 178, .external_lex_state = 62}, - [3182] = {.lex_state = 178, .external_lex_state = 60}, - [3183] = {.lex_state = 178, .external_lex_state = 60}, + [3180] = {.lex_state = 48, .external_lex_state = 70}, + [3181] = {.lex_state = 49, .external_lex_state = 67}, + [3182] = {.lex_state = 48, .external_lex_state = 70}, + [3183] = {.lex_state = 178, .external_lex_state = 66}, [3184] = {.lex_state = 178, .external_lex_state = 60}, - [3185] = {.lex_state = 178, .external_lex_state = 62}, + [3185] = {.lex_state = 48, .external_lex_state = 70}, [3186] = {.lex_state = 178, .external_lex_state = 60}, - [3187] = {.lex_state = 52, .external_lex_state = 82}, - [3188] = {.lex_state = 178, .external_lex_state = 60}, - [3189] = {.lex_state = 178, .external_lex_state = 60}, - [3190] = {.lex_state = 178, .external_lex_state = 60}, - [3191] = {.lex_state = 178, .external_lex_state = 81}, - [3192] = {.lex_state = 178, .external_lex_state = 60}, - [3193] = {.lex_state = 178, .external_lex_state = 60}, - [3194] = {.lex_state = 178, .external_lex_state = 60}, - [3195] = {.lex_state = 178, .external_lex_state = 60}, - [3196] = {.lex_state = 52, .external_lex_state = 82}, - [3197] = {.lex_state = 178, .external_lex_state = 60}, - [3198] = {.lex_state = 48, .external_lex_state = 67}, - [3199] = {.lex_state = 178, .external_lex_state = 60}, - [3200] = {.lex_state = 48, .external_lex_state = 70}, - [3201] = {.lex_state = 48, .external_lex_state = 67}, - [3202] = {.lex_state = 178, .external_lex_state = 80}, - [3203] = {.lex_state = 178, .external_lex_state = 62}, - [3204] = {.lex_state = 178, .external_lex_state = 62}, - [3205] = {.lex_state = 183, .external_lex_state = 62}, - [3206] = {.lex_state = 52, .external_lex_state = 82}, - [3207] = {.lex_state = 48, .external_lex_state = 67}, - [3208] = {.lex_state = 178, .external_lex_state = 62}, - [3209] = {.lex_state = 179, .external_lex_state = 62}, - [3210] = {.lex_state = 178, .external_lex_state = 62}, - [3211] = {.lex_state = 48, .external_lex_state = 70}, + [3187] = {.lex_state = 178, .external_lex_state = 69}, + [3188] = {.lex_state = 178, .external_lex_state = 64}, + [3189] = {.lex_state = 48, .external_lex_state = 70}, + [3190] = {.lex_state = 178, .external_lex_state = 62}, + [3191] = {.lex_state = 179, .external_lex_state = 69}, + [3192] = {.lex_state = 178, .external_lex_state = 69}, + [3193] = {.lex_state = 178, .external_lex_state = 69}, + [3194] = {.lex_state = 178, .external_lex_state = 69}, + [3195] = {.lex_state = 178, .external_lex_state = 69}, + [3196] = {.lex_state = 178, .external_lex_state = 82}, + [3197] = {.lex_state = 178, .external_lex_state = 82}, + [3198] = {.lex_state = 49, .external_lex_state = 67}, + [3199] = {.lex_state = 178, .external_lex_state = 62}, + [3200] = {.lex_state = 178, .external_lex_state = 64}, + [3201] = {.lex_state = 178, .external_lex_state = 69}, + [3202] = {.lex_state = 178, .external_lex_state = 69}, + [3203] = {.lex_state = 48, .external_lex_state = 70}, + [3204] = {.lex_state = 178, .external_lex_state = 69}, + [3205] = {.lex_state = 48, .external_lex_state = 70}, + [3206] = {.lex_state = 48, .external_lex_state = 70}, + [3207] = {.lex_state = 48, .external_lex_state = 70}, + [3208] = {.lex_state = 48, .external_lex_state = 70}, + [3209] = {.lex_state = 178, .external_lex_state = 66}, + [3210] = {.lex_state = 178, .external_lex_state = 60}, + [3211] = {.lex_state = 178, .external_lex_state = 60}, [3212] = {.lex_state = 48, .external_lex_state = 70}, - [3213] = {.lex_state = 48, .external_lex_state = 70}, - [3214] = {.lex_state = 48, .external_lex_state = 70}, + [3213] = {.lex_state = 183, .external_lex_state = 62}, + [3214] = {.lex_state = 178, .external_lex_state = 62}, [3215] = {.lex_state = 178, .external_lex_state = 81}, - [3216] = {.lex_state = 48, .external_lex_state = 67}, - [3217] = {.lex_state = 48, .external_lex_state = 70}, - [3218] = {.lex_state = 178, .external_lex_state = 83}, - [3219] = {.lex_state = 48, .external_lex_state = 70}, - [3220] = {.lex_state = 178, .external_lex_state = 60}, - [3221] = {.lex_state = 48, .external_lex_state = 70}, - [3222] = {.lex_state = 178, .external_lex_state = 83}, - [3223] = {.lex_state = 48, .external_lex_state = 70}, - [3224] = {.lex_state = 48, .external_lex_state = 70}, - [3225] = {.lex_state = 48, .external_lex_state = 70}, - [3226] = {.lex_state = 179, .external_lex_state = 67}, - [3227] = {.lex_state = 183, .external_lex_state = 82}, - [3228] = {.lex_state = 178, .external_lex_state = 60}, - [3229] = {.lex_state = 178, .external_lex_state = 65}, - [3230] = {.lex_state = 48, .external_lex_state = 70}, - [3231] = {.lex_state = 178, .external_lex_state = 62}, - [3232] = {.lex_state = 48, .external_lex_state = 67}, - [3233] = {.lex_state = 178, .external_lex_state = 62}, - [3234] = {.lex_state = 48, .external_lex_state = 70}, - [3235] = {.lex_state = 48, .external_lex_state = 70}, - [3236] = {.lex_state = 48, .external_lex_state = 70}, - [3237] = {.lex_state = 48, .external_lex_state = 70}, - [3238] = {.lex_state = 48, .external_lex_state = 70}, - [3239] = {.lex_state = 49, .external_lex_state = 70}, - [3240] = {.lex_state = 178, .external_lex_state = 81}, + [3216] = {.lex_state = 178, .external_lex_state = 62}, + [3217] = {.lex_state = 178, .external_lex_state = 60}, + [3218] = {.lex_state = 183, .external_lex_state = 62}, + [3219] = {.lex_state = 178, .external_lex_state = 60}, + [3220] = {.lex_state = 183, .external_lex_state = 62}, + [3221] = {.lex_state = 178, .external_lex_state = 62}, + [3222] = {.lex_state = 49, .external_lex_state = 70}, + [3223] = {.lex_state = 49, .external_lex_state = 70}, + [3224] = {.lex_state = 49, .external_lex_state = 70}, + [3225] = {.lex_state = 49, .external_lex_state = 70}, + [3226] = {.lex_state = 178, .external_lex_state = 80}, + [3227] = {.lex_state = 178, .external_lex_state = 60}, + [3228] = {.lex_state = 178, .external_lex_state = 80}, + [3229] = {.lex_state = 178, .external_lex_state = 60}, + [3230] = {.lex_state = 178, .external_lex_state = 60}, + [3231] = {.lex_state = 178, .external_lex_state = 60}, + [3232] = {.lex_state = 178, .external_lex_state = 60}, + [3233] = {.lex_state = 178, .external_lex_state = 60}, + [3234] = {.lex_state = 178, .external_lex_state = 60}, + [3235] = {.lex_state = 178, .external_lex_state = 60}, + [3236] = {.lex_state = 178, .external_lex_state = 60}, + [3237] = {.lex_state = 178, .external_lex_state = 60}, + [3238] = {.lex_state = 178, .external_lex_state = 60}, + [3239] = {.lex_state = 178, .external_lex_state = 60}, + [3240] = {.lex_state = 178, .external_lex_state = 60}, [3241] = {.lex_state = 178, .external_lex_state = 60}, - [3242] = {.lex_state = 48, .external_lex_state = 70}, - [3243] = {.lex_state = 49, .external_lex_state = 70}, - [3244] = {.lex_state = 49, .external_lex_state = 70}, - [3245] = {.lex_state = 49, .external_lex_state = 70}, - [3246] = {.lex_state = 178, .external_lex_state = 62}, + [3242] = {.lex_state = 178, .external_lex_state = 60}, + [3243] = {.lex_state = 48, .external_lex_state = 67}, + [3244] = {.lex_state = 178, .external_lex_state = 60}, + [3245] = {.lex_state = 178, .external_lex_state = 60}, + [3246] = {.lex_state = 178, .external_lex_state = 60}, [3247] = {.lex_state = 48, .external_lex_state = 70}, - [3248] = {.lex_state = 183, .external_lex_state = 62}, - [3249] = {.lex_state = 178, .external_lex_state = 78}, - [3250] = {.lex_state = 48, .external_lex_state = 70}, - [3251] = {.lex_state = 178, .external_lex_state = 66}, - [3252] = {.lex_state = 178, .external_lex_state = 60}, - [3253] = {.lex_state = 178, .external_lex_state = 60}, - [3254] = {.lex_state = 178, .external_lex_state = 83}, - [3255] = {.lex_state = 178, .external_lex_state = 62}, - [3256] = {.lex_state = 179, .external_lex_state = 69}, - [3257] = {.lex_state = 178, .external_lex_state = 60}, - [3258] = {.lex_state = 178, .external_lex_state = 69}, - [3259] = {.lex_state = 178, .external_lex_state = 62}, - [3260] = {.lex_state = 178, .external_lex_state = 62}, - [3261] = {.lex_state = 178, .external_lex_state = 62}, - [3262] = {.lex_state = 178, .external_lex_state = 62}, - [3263] = {.lex_state = 178, .external_lex_state = 62}, - [3264] = {.lex_state = 178, .external_lex_state = 62}, - [3265] = {.lex_state = 178, .external_lex_state = 60}, - [3266] = {.lex_state = 48, .external_lex_state = 67}, - [3267] = {.lex_state = 183, .external_lex_state = 82}, - [3268] = {.lex_state = 178, .external_lex_state = 60}, - [3269] = {.lex_state = 178, .external_lex_state = 69}, - [3270] = {.lex_state = 178, .external_lex_state = 69}, - [3271] = {.lex_state = 178, .external_lex_state = 60}, - [3272] = {.lex_state = 48, .external_lex_state = 67}, - [3273] = {.lex_state = 49, .external_lex_state = 70}, - [3274] = {.lex_state = 49, .external_lex_state = 70}, - [3275] = {.lex_state = 178, .external_lex_state = 69}, + [3248] = {.lex_state = 48, .external_lex_state = 70}, + [3249] = {.lex_state = 178, .external_lex_state = 62}, + [3250] = {.lex_state = 178, .external_lex_state = 62}, + [3251] = {.lex_state = 178, .external_lex_state = 62}, + [3252] = {.lex_state = 178, .external_lex_state = 62}, + [3253] = {.lex_state = 178, .external_lex_state = 62}, + [3254] = {.lex_state = 178, .external_lex_state = 62}, + [3255] = {.lex_state = 178, .external_lex_state = 80}, + [3256] = {.lex_state = 178, .external_lex_state = 62}, + [3257] = {.lex_state = 178, .external_lex_state = 62}, + [3258] = {.lex_state = 48, .external_lex_state = 70}, + [3259] = {.lex_state = 179, .external_lex_state = 62}, + [3260] = {.lex_state = 178, .external_lex_state = 60}, + [3261] = {.lex_state = 178, .external_lex_state = 60}, + [3262] = {.lex_state = 48, .external_lex_state = 67}, + [3263] = {.lex_state = 48, .external_lex_state = 70}, + [3264] = {.lex_state = 48, .external_lex_state = 70}, + [3265] = {.lex_state = 48, .external_lex_state = 70}, + [3266] = {.lex_state = 48, .external_lex_state = 70}, + [3267] = {.lex_state = 48, .external_lex_state = 70}, + [3268] = {.lex_state = 178, .external_lex_state = 62}, + [3269] = {.lex_state = 49, .external_lex_state = 70}, + [3270] = {.lex_state = 49, .external_lex_state = 70}, + [3271] = {.lex_state = 48, .external_lex_state = 67}, + [3272] = {.lex_state = 183, .external_lex_state = 83}, + [3273] = {.lex_state = 178, .external_lex_state = 78}, + [3274] = {.lex_state = 48, .external_lex_state = 70}, + [3275] = {.lex_state = 48, .external_lex_state = 67}, [3276] = {.lex_state = 48, .external_lex_state = 67}, - [3277] = {.lex_state = 178, .external_lex_state = 60}, - [3278] = {.lex_state = 178, .external_lex_state = 60}, - [3279] = {.lex_state = 48, .external_lex_state = 70}, - [3280] = {.lex_state = 178, .external_lex_state = 80}, - [3281] = {.lex_state = 178, .external_lex_state = 60}, - [3282] = {.lex_state = 178, .external_lex_state = 62}, - [3283] = {.lex_state = 48, .external_lex_state = 70}, - [3284] = {.lex_state = 178, .external_lex_state = 65}, + [3277] = {.lex_state = 178, .external_lex_state = 62}, + [3278] = {.lex_state = 48, .external_lex_state = 67}, + [3279] = {.lex_state = 183, .external_lex_state = 83}, + [3280] = {.lex_state = 178, .external_lex_state = 62}, + [3281] = {.lex_state = 48, .external_lex_state = 70}, + [3282] = {.lex_state = 48, .external_lex_state = 70}, + [3283] = {.lex_state = 178, .external_lex_state = 81}, + [3284] = {.lex_state = 178, .external_lex_state = 81}, [3285] = {.lex_state = 178, .external_lex_state = 62}, - [3286] = {.lex_state = 178, .external_lex_state = 60}, - [3287] = {.lex_state = 183, .external_lex_state = 82}, - [3288] = {.lex_state = 178, .external_lex_state = 69}, - [3289] = {.lex_state = 178, .external_lex_state = 62}, - [3290] = {.lex_state = 183, .external_lex_state = 62}, - [3291] = {.lex_state = 48, .external_lex_state = 67}, - [3292] = {.lex_state = 178, .external_lex_state = 69}, - [3293] = {.lex_state = 178, .external_lex_state = 60}, - [3294] = {.lex_state = 178, .external_lex_state = 62}, - [3295] = {.lex_state = 178, .external_lex_state = 62}, - [3296] = {.lex_state = 178, .external_lex_state = 62}, - [3297] = {.lex_state = 178, .external_lex_state = 60}, - [3298] = {.lex_state = 49, .external_lex_state = 67}, - [3299] = {.lex_state = 178, .external_lex_state = 62}, - [3300] = {.lex_state = 49, .external_lex_state = 70}, - [3301] = {.lex_state = 49, .external_lex_state = 70}, - [3302] = {.lex_state = 178, .external_lex_state = 69}, + [3286] = {.lex_state = 48, .external_lex_state = 70}, + [3287] = {.lex_state = 178, .external_lex_state = 60}, + [3288] = {.lex_state = 178, .external_lex_state = 62}, + [3289] = {.lex_state = 48, .external_lex_state = 70}, + [3290] = {.lex_state = 178, .external_lex_state = 60}, + [3291] = {.lex_state = 178, .external_lex_state = 60}, + [3292] = {.lex_state = 179, .external_lex_state = 67}, + [3293] = {.lex_state = 183, .external_lex_state = 83}, + [3294] = {.lex_state = 48, .external_lex_state = 67}, + [3295] = {.lex_state = 52, .external_lex_state = 83}, + [3296] = {.lex_state = 48, .external_lex_state = 67}, + [3297] = {.lex_state = 48, .external_lex_state = 67}, + [3298] = {.lex_state = 178, .external_lex_state = 60}, + [3299] = {.lex_state = 52, .external_lex_state = 83}, + [3300] = {.lex_state = 178, .external_lex_state = 62}, + [3301] = {.lex_state = 48, .external_lex_state = 70}, + [3302] = {.lex_state = 178, .external_lex_state = 82}, [3303] = {.lex_state = 178, .external_lex_state = 60}, - [3304] = {.lex_state = 178, .external_lex_state = 69}, - [3305] = {.lex_state = 178, .external_lex_state = 60}, - [3306] = {.lex_state = 48, .external_lex_state = 70}, - [3307] = {.lex_state = 48, .external_lex_state = 70}, + [3304] = {.lex_state = 49, .external_lex_state = 70}, + [3305] = {.lex_state = 178, .external_lex_state = 82}, + [3306] = {.lex_state = 52, .external_lex_state = 83}, + [3307] = {.lex_state = 178, .external_lex_state = 62}, [3308] = {.lex_state = 48, .external_lex_state = 70}, - [3309] = {.lex_state = 49, .external_lex_state = 70}, + [3309] = {.lex_state = 178, .external_lex_state = 62}, [3310] = {.lex_state = 178, .external_lex_state = 62}, [3311] = {.lex_state = 178, .external_lex_state = 62}, [3312] = {.lex_state = 178, .external_lex_state = 62}, [3313] = {.lex_state = 178, .external_lex_state = 62}, - [3314] = {.lex_state = 178, .external_lex_state = 80}, - [3315] = {.lex_state = 178, .external_lex_state = 83}, - [3316] = {.lex_state = 178, .external_lex_state = 62}, - [3317] = {.lex_state = 178, .external_lex_state = 62}, - [3318] = {.lex_state = 178, .external_lex_state = 62}, - [3319] = {.lex_state = 178, .external_lex_state = 62}, + [3314] = {.lex_state = 178, .external_lex_state = 62}, + [3315] = {.lex_state = 48, .external_lex_state = 70}, + [3316] = {.lex_state = 49, .external_lex_state = 70}, + [3317] = {.lex_state = 48, .external_lex_state = 70}, + [3318] = {.lex_state = 48, .external_lex_state = 70}, + [3319] = {.lex_state = 49, .external_lex_state = 70}, [3320] = {.lex_state = 178, .external_lex_state = 62}, - [3321] = {.lex_state = 178, .external_lex_state = 62}, + [3321] = {.lex_state = 178, .external_lex_state = 60}, [3322] = {.lex_state = 178, .external_lex_state = 62}, - [3323] = {.lex_state = 179, .external_lex_state = 71}, - [3324] = {.lex_state = 179, .external_lex_state = 71}, - [3325] = {.lex_state = 178, .external_lex_state = 62}, + [3323] = {.lex_state = 178, .external_lex_state = 62}, + [3324] = {.lex_state = 178, .external_lex_state = 62}, + [3325] = {.lex_state = 178, .external_lex_state = 66}, [3326] = {.lex_state = 178, .external_lex_state = 62}, [3327] = {.lex_state = 178, .external_lex_state = 62}, - [3328] = {.lex_state = 178, .external_lex_state = 62}, + [3328] = {.lex_state = 178, .external_lex_state = 66}, [3329] = {.lex_state = 178, .external_lex_state = 62}, - [3330] = {.lex_state = 178, .external_lex_state = 62}, - [3331] = {.lex_state = 178, .external_lex_state = 62}, + [3330] = {.lex_state = 178, .external_lex_state = 66}, + [3331] = {.lex_state = 178, .external_lex_state = 69}, [3332] = {.lex_state = 178, .external_lex_state = 62}, [3333] = {.lex_state = 178, .external_lex_state = 62}, [3334] = {.lex_state = 178, .external_lex_state = 62}, - [3335] = {.lex_state = 178, .external_lex_state = 62}, + [3335] = {.lex_state = 178, .external_lex_state = 69}, [3336] = {.lex_state = 178, .external_lex_state = 62}, [3337] = {.lex_state = 178, .external_lex_state = 62}, - [3338] = {.lex_state = 178, .external_lex_state = 62}, - [3339] = {.lex_state = 178, .external_lex_state = 62}, - [3340] = {.lex_state = 178, .external_lex_state = 62}, + [3338] = {.lex_state = 178, .external_lex_state = 69}, + [3339] = {.lex_state = 178, .external_lex_state = 69}, + [3340] = {.lex_state = 178, .external_lex_state = 69}, [3341] = {.lex_state = 178, .external_lex_state = 62}, [3342] = {.lex_state = 178, .external_lex_state = 62}, - [3343] = {.lex_state = 178, .external_lex_state = 62}, - [3344] = {.lex_state = 178, .external_lex_state = 62}, - [3345] = {.lex_state = 178, .external_lex_state = 62}, - [3346] = {.lex_state = 178, .external_lex_state = 62}, - [3347] = {.lex_state = 178, .external_lex_state = 62}, - [3348] = {.lex_state = 178, .external_lex_state = 62}, - [3349] = {.lex_state = 178, .external_lex_state = 62}, - [3350] = {.lex_state = 178, .external_lex_state = 62}, + [3343] = {.lex_state = 179, .external_lex_state = 71}, + [3344] = {.lex_state = 179, .external_lex_state = 71}, + [3345] = {.lex_state = 178, .external_lex_state = 66}, + [3346] = {.lex_state = 178, .external_lex_state = 69}, + [3347] = {.lex_state = 178, .external_lex_state = 69}, + [3348] = {.lex_state = 178, .external_lex_state = 66}, + [3349] = {.lex_state = 178, .external_lex_state = 66}, + [3350] = {.lex_state = 178, .external_lex_state = 69}, [3351] = {.lex_state = 178, .external_lex_state = 62}, - [3352] = {.lex_state = 178, .external_lex_state = 62}, + [3352] = {.lex_state = 178, .external_lex_state = 69}, [3353] = {.lex_state = 178, .external_lex_state = 62}, [3354] = {.lex_state = 178, .external_lex_state = 62}, [3355] = {.lex_state = 178, .external_lex_state = 62}, - [3356] = {.lex_state = 179, .external_lex_state = 69}, - [3357] = {.lex_state = 183, .external_lex_state = 84}, + [3356] = {.lex_state = 179, .external_lex_state = 71}, + [3357] = {.lex_state = 179, .external_lex_state = 71}, [3358] = {.lex_state = 178, .external_lex_state = 62}, [3359] = {.lex_state = 178, .external_lex_state = 62}, - [3360] = {.lex_state = 178, .external_lex_state = 65}, - [3361] = {.lex_state = 178, .external_lex_state = 62}, + [3360] = {.lex_state = 178, .external_lex_state = 69}, + [3361] = {.lex_state = 178, .external_lex_state = 69}, [3362] = {.lex_state = 178, .external_lex_state = 62}, [3363] = {.lex_state = 178, .external_lex_state = 62}, [3364] = {.lex_state = 178, .external_lex_state = 62}, [3365] = {.lex_state = 178, .external_lex_state = 62}, - [3366] = {.lex_state = 49, .external_lex_state = 70}, + [3366] = {.lex_state = 178, .external_lex_state = 62}, [3367] = {.lex_state = 49, .external_lex_state = 70}, - [3368] = {.lex_state = 49, .external_lex_state = 70}, - [3369] = {.lex_state = 49, .external_lex_state = 70}, - [3370] = {.lex_state = 49, .external_lex_state = 70}, + [3368] = {.lex_state = 178, .external_lex_state = 62}, + [3369] = {.lex_state = 178, .external_lex_state = 62}, + [3370] = {.lex_state = 178, .external_lex_state = 62}, [3371] = {.lex_state = 49, .external_lex_state = 70}, - [3372] = {.lex_state = 49, .external_lex_state = 70}, - [3373] = {.lex_state = 178, .external_lex_state = 62}, - [3374] = {.lex_state = 49, .external_lex_state = 70}, - [3375] = {.lex_state = 178, .external_lex_state = 66}, - [3376] = {.lex_state = 48, .external_lex_state = 67}, - [3377] = {.lex_state = 48, .external_lex_state = 67}, - [3378] = {.lex_state = 183, .external_lex_state = 67}, - [3379] = {.lex_state = 178, .external_lex_state = 69}, - [3380] = {.lex_state = 49, .external_lex_state = 70}, + [3372] = {.lex_state = 178, .external_lex_state = 62}, + [3373] = {.lex_state = 178, .external_lex_state = 69}, + [3374] = {.lex_state = 178, .external_lex_state = 62}, + [3375] = {.lex_state = 178, .external_lex_state = 62}, + [3376] = {.lex_state = 178, .external_lex_state = 62}, + [3377] = {.lex_state = 178, .external_lex_state = 62}, + [3378] = {.lex_state = 178, .external_lex_state = 62}, + [3379] = {.lex_state = 178, .external_lex_state = 62}, + [3380] = {.lex_state = 178, .external_lex_state = 62}, [3381] = {.lex_state = 178, .external_lex_state = 69}, - [3382] = {.lex_state = 178, .external_lex_state = 69}, - [3383] = {.lex_state = 178, .external_lex_state = 66}, - [3384] = {.lex_state = 183, .external_lex_state = 67}, - [3385] = {.lex_state = 178, .external_lex_state = 66}, - [3386] = {.lex_state = 183, .external_lex_state = 80}, + [3382] = {.lex_state = 178, .external_lex_state = 62}, + [3383] = {.lex_state = 178, .external_lex_state = 62}, + [3384] = {.lex_state = 178, .external_lex_state = 62}, + [3385] = {.lex_state = 178, .external_lex_state = 62}, + [3386] = {.lex_state = 178, .external_lex_state = 62}, [3387] = {.lex_state = 178, .external_lex_state = 62}, [3388] = {.lex_state = 178, .external_lex_state = 62}, - [3389] = {.lex_state = 178, .external_lex_state = 62}, + [3389] = {.lex_state = 178, .external_lex_state = 66}, [3390] = {.lex_state = 178, .external_lex_state = 62}, [3391] = {.lex_state = 178, .external_lex_state = 62}, [3392] = {.lex_state = 178, .external_lex_state = 62}, [3393] = {.lex_state = 178, .external_lex_state = 62}, - [3394] = {.lex_state = 178, .external_lex_state = 62}, + [3394] = {.lex_state = 49, .external_lex_state = 70}, [3395] = {.lex_state = 178, .external_lex_state = 62}, - [3396] = {.lex_state = 183, .external_lex_state = 80}, - [3397] = {.lex_state = 178, .external_lex_state = 66}, - [3398] = {.lex_state = 48, .external_lex_state = 67}, + [3396] = {.lex_state = 49, .external_lex_state = 70}, + [3397] = {.lex_state = 178, .external_lex_state = 62}, + [3398] = {.lex_state = 178, .external_lex_state = 62}, [3399] = {.lex_state = 178, .external_lex_state = 62}, [3400] = {.lex_state = 178, .external_lex_state = 62}, [3401] = {.lex_state = 178, .external_lex_state = 62}, [3402] = {.lex_state = 178, .external_lex_state = 62}, [3403] = {.lex_state = 178, .external_lex_state = 62}, - [3404] = {.lex_state = 178, .external_lex_state = 66}, + [3404] = {.lex_state = 178, .external_lex_state = 62}, [3405] = {.lex_state = 178, .external_lex_state = 62}, [3406] = {.lex_state = 178, .external_lex_state = 62}, [3407] = {.lex_state = 178, .external_lex_state = 62}, - [3408] = {.lex_state = 48, .external_lex_state = 85}, - [3409] = {.lex_state = 183, .external_lex_state = 81}, + [3408] = {.lex_state = 178, .external_lex_state = 62}, + [3409] = {.lex_state = 178, .external_lex_state = 62}, [3410] = {.lex_state = 178, .external_lex_state = 62}, - [3411] = {.lex_state = 49, .external_lex_state = 70}, - [3412] = {.lex_state = 49, .external_lex_state = 70}, - [3413] = {.lex_state = 179, .external_lex_state = 71}, + [3411] = {.lex_state = 179, .external_lex_state = 69}, + [3412] = {.lex_state = 178, .external_lex_state = 62}, + [3413] = {.lex_state = 178, .external_lex_state = 66}, [3414] = {.lex_state = 178, .external_lex_state = 62}, - [3415] = {.lex_state = 178, .external_lex_state = 62}, - [3416] = {.lex_state = 48, .external_lex_state = 85}, + [3415] = {.lex_state = 183, .external_lex_state = 84}, + [3416] = {.lex_state = 178, .external_lex_state = 62}, [3417] = {.lex_state = 178, .external_lex_state = 62}, [3418] = {.lex_state = 178, .external_lex_state = 62}, [3419] = {.lex_state = 178, .external_lex_state = 62}, [3420] = {.lex_state = 178, .external_lex_state = 62}, - [3421] = {.lex_state = 178, .external_lex_state = 69}, - [3422] = {.lex_state = 48, .external_lex_state = 67}, - [3423] = {.lex_state = 178, .external_lex_state = 62}, - [3424] = {.lex_state = 178, .external_lex_state = 62}, - [3425] = {.lex_state = 178, .external_lex_state = 62}, - [3426] = {.lex_state = 48, .external_lex_state = 70}, - [3427] = {.lex_state = 178, .external_lex_state = 69}, + [3421] = {.lex_state = 178, .external_lex_state = 62}, + [3422] = {.lex_state = 178, .external_lex_state = 62}, + [3423] = {.lex_state = 178, .external_lex_state = 64}, + [3424] = {.lex_state = 49, .external_lex_state = 70}, + [3425] = {.lex_state = 49, .external_lex_state = 70}, + [3426] = {.lex_state = 178, .external_lex_state = 62}, + [3427] = {.lex_state = 178, .external_lex_state = 62}, [3428] = {.lex_state = 178, .external_lex_state = 62}, [3429] = {.lex_state = 178, .external_lex_state = 62}, [3430] = {.lex_state = 178, .external_lex_state = 62}, @@ -23756,30 +23878,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3433] = {.lex_state = 178, .external_lex_state = 62}, [3434] = {.lex_state = 178, .external_lex_state = 62}, [3435] = {.lex_state = 178, .external_lex_state = 62}, - [3436] = {.lex_state = 178, .external_lex_state = 69}, + [3436] = {.lex_state = 178, .external_lex_state = 62}, [3437] = {.lex_state = 178, .external_lex_state = 62}, - [3438] = {.lex_state = 49, .external_lex_state = 70}, - [3439] = {.lex_state = 49, .external_lex_state = 70}, - [3440] = {.lex_state = 178, .external_lex_state = 69}, - [3441] = {.lex_state = 178, .external_lex_state = 69}, + [3438] = {.lex_state = 178, .external_lex_state = 62}, + [3439] = {.lex_state = 178, .external_lex_state = 62}, + [3440] = {.lex_state = 49, .external_lex_state = 70}, + [3441] = {.lex_state = 49, .external_lex_state = 70}, [3442] = {.lex_state = 178, .external_lex_state = 69}, - [3443] = {.lex_state = 178, .external_lex_state = 69}, - [3444] = {.lex_state = 49, .external_lex_state = 70}, - [3445] = {.lex_state = 178, .external_lex_state = 62}, - [3446] = {.lex_state = 49, .external_lex_state = 67}, - [3447] = {.lex_state = 178, .external_lex_state = 62}, - [3448] = {.lex_state = 48, .external_lex_state = 82}, + [3443] = {.lex_state = 178, .external_lex_state = 62}, + [3444] = {.lex_state = 178, .external_lex_state = 62}, + [3445] = {.lex_state = 178, .external_lex_state = 69}, + [3446] = {.lex_state = 178, .external_lex_state = 62}, + [3447] = {.lex_state = 178, .external_lex_state = 69}, + [3448] = {.lex_state = 178, .external_lex_state = 62}, [3449] = {.lex_state = 178, .external_lex_state = 62}, [3450] = {.lex_state = 178, .external_lex_state = 62}, [3451] = {.lex_state = 178, .external_lex_state = 62}, [3452] = {.lex_state = 178, .external_lex_state = 62}, - [3453] = {.lex_state = 178, .external_lex_state = 62}, - [3454] = {.lex_state = 178, .external_lex_state = 62}, + [3453] = {.lex_state = 183, .external_lex_state = 80}, + [3454] = {.lex_state = 183, .external_lex_state = 80}, [3455] = {.lex_state = 178, .external_lex_state = 62}, - [3456] = {.lex_state = 178, .external_lex_state = 62}, + [3456] = {.lex_state = 48, .external_lex_state = 67}, [3457] = {.lex_state = 178, .external_lex_state = 62}, [3458] = {.lex_state = 178, .external_lex_state = 62}, - [3459] = {.lex_state = 178, .external_lex_state = 62}, + [3459] = {.lex_state = 48, .external_lex_state = 70}, [3460] = {.lex_state = 178, .external_lex_state = 62}, [3461] = {.lex_state = 178, .external_lex_state = 62}, [3462] = {.lex_state = 178, .external_lex_state = 62}, @@ -23788,7 +23910,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3465] = {.lex_state = 178, .external_lex_state = 62}, [3466] = {.lex_state = 178, .external_lex_state = 62}, [3467] = {.lex_state = 178, .external_lex_state = 62}, - [3468] = {.lex_state = 178, .external_lex_state = 62}, + [3468] = {.lex_state = 48, .external_lex_state = 67}, [3469] = {.lex_state = 178, .external_lex_state = 62}, [3470] = {.lex_state = 178, .external_lex_state = 62}, [3471] = {.lex_state = 178, .external_lex_state = 62}, @@ -23796,238 +23918,238 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3473] = {.lex_state = 178, .external_lex_state = 62}, [3474] = {.lex_state = 178, .external_lex_state = 62}, [3475] = {.lex_state = 178, .external_lex_state = 62}, - [3476] = {.lex_state = 48, .external_lex_state = 67}, + [3476] = {.lex_state = 178, .external_lex_state = 62}, [3477] = {.lex_state = 178, .external_lex_state = 62}, [3478] = {.lex_state = 178, .external_lex_state = 62}, [3479] = {.lex_state = 178, .external_lex_state = 62}, [3480] = {.lex_state = 178, .external_lex_state = 62}, - [3481] = {.lex_state = 48, .external_lex_state = 85}, + [3481] = {.lex_state = 178, .external_lex_state = 69}, [3482] = {.lex_state = 178, .external_lex_state = 62}, - [3483] = {.lex_state = 178, .external_lex_state = 62}, + [3483] = {.lex_state = 178, .external_lex_state = 69}, [3484] = {.lex_state = 178, .external_lex_state = 62}, - [3485] = {.lex_state = 183, .external_lex_state = 81}, + [3485] = {.lex_state = 178, .external_lex_state = 62}, [3486] = {.lex_state = 178, .external_lex_state = 62}, - [3487] = {.lex_state = 49, .external_lex_state = 70}, + [3487] = {.lex_state = 178, .external_lex_state = 62}, [3488] = {.lex_state = 178, .external_lex_state = 62}, [3489] = {.lex_state = 178, .external_lex_state = 62}, [3490] = {.lex_state = 178, .external_lex_state = 62}, [3491] = {.lex_state = 178, .external_lex_state = 62}, [3492] = {.lex_state = 178, .external_lex_state = 62}, - [3493] = {.lex_state = 49, .external_lex_state = 70}, - [3494] = {.lex_state = 48, .external_lex_state = 85}, + [3493] = {.lex_state = 178, .external_lex_state = 62}, + [3494] = {.lex_state = 178, .external_lex_state = 62}, [3495] = {.lex_state = 178, .external_lex_state = 62}, - [3496] = {.lex_state = 179, .external_lex_state = 71}, - [3497] = {.lex_state = 49, .external_lex_state = 70}, + [3496] = {.lex_state = 178, .external_lex_state = 62}, + [3497] = {.lex_state = 178, .external_lex_state = 62}, [3498] = {.lex_state = 178, .external_lex_state = 62}, [3499] = {.lex_state = 178, .external_lex_state = 62}, - [3500] = {.lex_state = 178, .external_lex_state = 62}, + [3500] = {.lex_state = 49, .external_lex_state = 70}, [3501] = {.lex_state = 178, .external_lex_state = 62}, [3502] = {.lex_state = 178, .external_lex_state = 62}, [3503] = {.lex_state = 178, .external_lex_state = 62}, - [3504] = {.lex_state = 49, .external_lex_state = 70}, + [3504] = {.lex_state = 178, .external_lex_state = 62}, [3505] = {.lex_state = 178, .external_lex_state = 62}, [3506] = {.lex_state = 178, .external_lex_state = 62}, - [3507] = {.lex_state = 178, .external_lex_state = 62}, - [3508] = {.lex_state = 49, .external_lex_state = 70}, - [3509] = {.lex_state = 178, .external_lex_state = 62}, - [3510] = {.lex_state = 178, .external_lex_state = 62}, - [3511] = {.lex_state = 178, .external_lex_state = 62}, - [3512] = {.lex_state = 178, .external_lex_state = 62}, - [3513] = {.lex_state = 178, .external_lex_state = 62}, - [3514] = {.lex_state = 178, .external_lex_state = 62}, - [3515] = {.lex_state = 178, .external_lex_state = 69}, - [3516] = {.lex_state = 179, .external_lex_state = 71}, - [3517] = {.lex_state = 178, .external_lex_state = 66}, - [3518] = {.lex_state = 178, .external_lex_state = 62}, - [3519] = {.lex_state = 178, .external_lex_state = 62}, - [3520] = {.lex_state = 48, .external_lex_state = 67}, - [3521] = {.lex_state = 48, .external_lex_state = 67}, - [3522] = {.lex_state = 178, .external_lex_state = 69}, - [3523] = {.lex_state = 178, .external_lex_state = 69}, - [3524] = {.lex_state = 49, .external_lex_state = 70}, - [3525] = {.lex_state = 178, .external_lex_state = 69}, - [3526] = {.lex_state = 178, .external_lex_state = 69}, - [3527] = {.lex_state = 178, .external_lex_state = 69}, - [3528] = {.lex_state = 178, .external_lex_state = 62}, - [3529] = {.lex_state = 178, .external_lex_state = 69}, - [3530] = {.lex_state = 178, .external_lex_state = 69}, - [3531] = {.lex_state = 48, .external_lex_state = 67}, - [3532] = {.lex_state = 178, .external_lex_state = 69}, - [3533] = {.lex_state = 178, .external_lex_state = 69}, - [3534] = {.lex_state = 178, .external_lex_state = 69}, - [3535] = {.lex_state = 178, .external_lex_state = 69}, - [3536] = {.lex_state = 178, .external_lex_state = 69}, - [3537] = {.lex_state = 178, .external_lex_state = 62}, + [3507] = {.lex_state = 49, .external_lex_state = 70}, + [3508] = {.lex_state = 48, .external_lex_state = 85}, + [3509] = {.lex_state = 183, .external_lex_state = 81}, + [3510] = {.lex_state = 48, .external_lex_state = 85}, + [3511] = {.lex_state = 49, .external_lex_state = 70}, + [3512] = {.lex_state = 49, .external_lex_state = 70}, + [3513] = {.lex_state = 49, .external_lex_state = 70}, + [3514] = {.lex_state = 48, .external_lex_state = 83}, + [3515] = {.lex_state = 49, .external_lex_state = 70}, + [3516] = {.lex_state = 178, .external_lex_state = 62}, + [3517] = {.lex_state = 49, .external_lex_state = 70}, + [3518] = {.lex_state = 48, .external_lex_state = 67}, + [3519] = {.lex_state = 48, .external_lex_state = 85}, + [3520] = {.lex_state = 183, .external_lex_state = 81}, + [3521] = {.lex_state = 48, .external_lex_state = 85}, + [3522] = {.lex_state = 48, .external_lex_state = 67}, + [3523] = {.lex_state = 49, .external_lex_state = 70}, + [3524] = {.lex_state = 49, .external_lex_state = 67}, + [3525] = {.lex_state = 49, .external_lex_state = 70}, + [3526] = {.lex_state = 178, .external_lex_state = 62}, + [3527] = {.lex_state = 49, .external_lex_state = 70}, + [3528] = {.lex_state = 48, .external_lex_state = 67}, + [3529] = {.lex_state = 48, .external_lex_state = 67}, + [3530] = {.lex_state = 178, .external_lex_state = 62}, + [3531] = {.lex_state = 49, .external_lex_state = 70}, + [3532] = {.lex_state = 178, .external_lex_state = 62}, + [3533] = {.lex_state = 178, .external_lex_state = 62}, + [3534] = {.lex_state = 178, .external_lex_state = 62}, + [3535] = {.lex_state = 178, .external_lex_state = 62}, + [3536] = {.lex_state = 178, .external_lex_state = 62}, + [3537] = {.lex_state = 178, .external_lex_state = 69}, [3538] = {.lex_state = 178, .external_lex_state = 62}, [3539] = {.lex_state = 178, .external_lex_state = 62}, - [3540] = {.lex_state = 49, .external_lex_state = 70}, + [3540] = {.lex_state = 178, .external_lex_state = 62}, [3541] = {.lex_state = 178, .external_lex_state = 62}, - [3542] = {.lex_state = 49, .external_lex_state = 70}, - [3543] = {.lex_state = 178, .external_lex_state = 69}, - [3544] = {.lex_state = 178, .external_lex_state = 62}, - [3545] = {.lex_state = 178, .external_lex_state = 66}, + [3542] = {.lex_state = 178, .external_lex_state = 62}, + [3543] = {.lex_state = 178, .external_lex_state = 62}, + [3544] = {.lex_state = 49, .external_lex_state = 70}, + [3545] = {.lex_state = 178, .external_lex_state = 69}, [3546] = {.lex_state = 178, .external_lex_state = 69}, - [3547] = {.lex_state = 178, .external_lex_state = 62}, - [3548] = {.lex_state = 178, .external_lex_state = 62}, + [3547] = {.lex_state = 178, .external_lex_state = 69}, + [3548] = {.lex_state = 178, .external_lex_state = 69}, [3549] = {.lex_state = 178, .external_lex_state = 62}, [3550] = {.lex_state = 178, .external_lex_state = 62}, [3551] = {.lex_state = 178, .external_lex_state = 62}, [3552] = {.lex_state = 178, .external_lex_state = 62}, [3553] = {.lex_state = 178, .external_lex_state = 62}, - [3554] = {.lex_state = 178, .external_lex_state = 66}, - [3555] = {.lex_state = 178, .external_lex_state = 62}, - [3556] = {.lex_state = 178, .external_lex_state = 62}, + [3554] = {.lex_state = 178, .external_lex_state = 62}, + [3555] = {.lex_state = 48, .external_lex_state = 67}, + [3556] = {.lex_state = 48, .external_lex_state = 67}, [3557] = {.lex_state = 178, .external_lex_state = 62}, [3558] = {.lex_state = 178, .external_lex_state = 62}, [3559] = {.lex_state = 178, .external_lex_state = 62}, [3560] = {.lex_state = 178, .external_lex_state = 62}, [3561] = {.lex_state = 178, .external_lex_state = 62}, - [3562] = {.lex_state = 178, .external_lex_state = 62}, + [3562] = {.lex_state = 183, .external_lex_state = 67}, [3563] = {.lex_state = 178, .external_lex_state = 62}, [3564] = {.lex_state = 178, .external_lex_state = 62}, [3565] = {.lex_state = 178, .external_lex_state = 62}, [3566] = {.lex_state = 178, .external_lex_state = 62}, [3567] = {.lex_state = 178, .external_lex_state = 62}, - [3568] = {.lex_state = 178, .external_lex_state = 62}, + [3568] = {.lex_state = 49, .external_lex_state = 70}, [3569] = {.lex_state = 178, .external_lex_state = 62}, [3570] = {.lex_state = 178, .external_lex_state = 62}, - [3571] = {.lex_state = 178, .external_lex_state = 62}, - [3572] = {.lex_state = 178, .external_lex_state = 66}, - [3573] = {.lex_state = 178, .external_lex_state = 62}, + [3571] = {.lex_state = 49, .external_lex_state = 70}, + [3572] = {.lex_state = 178, .external_lex_state = 62}, + [3573] = {.lex_state = 49, .external_lex_state = 70}, [3574] = {.lex_state = 178, .external_lex_state = 62}, [3575] = {.lex_state = 178, .external_lex_state = 62}, [3576] = {.lex_state = 178, .external_lex_state = 62}, - [3577] = {.lex_state = 49, .external_lex_state = 70}, - [3578] = {.lex_state = 178, .external_lex_state = 62}, - [3579] = {.lex_state = 178, .external_lex_state = 62}, - [3580] = {.lex_state = 49, .external_lex_state = 70}, + [3577] = {.lex_state = 178, .external_lex_state = 62}, + [3578] = {.lex_state = 183, .external_lex_state = 67}, + [3579] = {.lex_state = 49, .external_lex_state = 70}, + [3580] = {.lex_state = 178, .external_lex_state = 62}, [3581] = {.lex_state = 178, .external_lex_state = 62}, [3582] = {.lex_state = 178, .external_lex_state = 62}, [3583] = {.lex_state = 178, .external_lex_state = 62}, - [3584] = {.lex_state = 178, .external_lex_state = 62}, + [3584] = {.lex_state = 178, .external_lex_state = 69}, [3585] = {.lex_state = 178, .external_lex_state = 62}, [3586] = {.lex_state = 178, .external_lex_state = 62}, - [3587] = {.lex_state = 178, .external_lex_state = 62}, - [3588] = {.lex_state = 49, .external_lex_state = 70}, - [3589] = {.lex_state = 48, .external_lex_state = 67}, - [3590] = {.lex_state = 178, .external_lex_state = 65}, - [3591] = {.lex_state = 48, .external_lex_state = 67}, - [3592] = {.lex_state = 178, .external_lex_state = 65}, - [3593] = {.lex_state = 48, .external_lex_state = 67}, - [3594] = {.lex_state = 178, .external_lex_state = 66}, - [3595] = {.lex_state = 48, .external_lex_state = 67}, - [3596] = {.lex_state = 48, .external_lex_state = 67}, - [3597] = {.lex_state = 48, .external_lex_state = 67}, - [3598] = {.lex_state = 48, .external_lex_state = 67}, - [3599] = {.lex_state = 48, .external_lex_state = 67}, - [3600] = {.lex_state = 48, .external_lex_state = 67}, - [3601] = {.lex_state = 48, .external_lex_state = 67}, - [3602] = {.lex_state = 48, .external_lex_state = 67}, - [3603] = {.lex_state = 50, .external_lex_state = 67}, - [3604] = {.lex_state = 50, .external_lex_state = 67}, - [3605] = {.lex_state = 48, .external_lex_state = 67}, - [3606] = {.lex_state = 178, .external_lex_state = 66}, - [3607] = {.lex_state = 48, .external_lex_state = 67}, - [3608] = {.lex_state = 48, .external_lex_state = 67}, - [3609] = {.lex_state = 48, .external_lex_state = 67}, - [3610] = {.lex_state = 178, .external_lex_state = 65}, - [3611] = {.lex_state = 48, .external_lex_state = 67}, - [3612] = {.lex_state = 48, .external_lex_state = 67}, + [3587] = {.lex_state = 178, .external_lex_state = 69}, + [3588] = {.lex_state = 178, .external_lex_state = 62}, + [3589] = {.lex_state = 178, .external_lex_state = 62}, + [3590] = {.lex_state = 178, .external_lex_state = 62}, + [3591] = {.lex_state = 178, .external_lex_state = 62}, + [3592] = {.lex_state = 178, .external_lex_state = 66}, + [3593] = {.lex_state = 49, .external_lex_state = 70}, + [3594] = {.lex_state = 178, .external_lex_state = 62}, + [3595] = {.lex_state = 178, .external_lex_state = 62}, + [3596] = {.lex_state = 178, .external_lex_state = 62}, + [3597] = {.lex_state = 179, .external_lex_state = 71}, + [3598] = {.lex_state = 178, .external_lex_state = 66}, + [3599] = {.lex_state = 179, .external_lex_state = 64}, + [3600] = {.lex_state = 183, .external_lex_state = 66}, + [3601] = {.lex_state = 178, .external_lex_state = 64}, + [3602] = {.lex_state = 178, .external_lex_state = 66}, + [3603] = {.lex_state = 48, .external_lex_state = 67}, + [3604] = {.lex_state = 178, .external_lex_state = 64}, + [3605] = {.lex_state = 178, .external_lex_state = 64}, + [3606] = {.lex_state = 183, .external_lex_state = 64}, + [3607] = {.lex_state = 178, .external_lex_state = 64}, + [3608] = {.lex_state = 49, .external_lex_state = 67}, + [3609] = {.lex_state = 178, .external_lex_state = 84}, + [3610] = {.lex_state = 48, .external_lex_state = 67}, + [3611] = {.lex_state = 49, .external_lex_state = 70}, + [3612] = {.lex_state = 178, .external_lex_state = 84}, [3613] = {.lex_state = 48, .external_lex_state = 67}, [3614] = {.lex_state = 48, .external_lex_state = 67}, - [3615] = {.lex_state = 48, .external_lex_state = 67}, - [3616] = {.lex_state = 179, .external_lex_state = 71}, - [3617] = {.lex_state = 178, .external_lex_state = 65}, - [3618] = {.lex_state = 48, .external_lex_state = 67}, - [3619] = {.lex_state = 48, .external_lex_state = 67}, - [3620] = {.lex_state = 48, .external_lex_state = 67}, - [3621] = {.lex_state = 48, .external_lex_state = 67}, - [3622] = {.lex_state = 178, .external_lex_state = 81}, - [3623] = {.lex_state = 49, .external_lex_state = 67}, + [3615] = {.lex_state = 178, .external_lex_state = 66}, + [3616] = {.lex_state = 50, .external_lex_state = 67}, + [3617] = {.lex_state = 50, .external_lex_state = 67}, + [3618] = {.lex_state = 50, .external_lex_state = 67}, + [3619] = {.lex_state = 50, .external_lex_state = 67}, + [3620] = {.lex_state = 50, .external_lex_state = 67}, + [3621] = {.lex_state = 178, .external_lex_state = 69}, + [3622] = {.lex_state = 48, .external_lex_state = 67}, + [3623] = {.lex_state = 178, .external_lex_state = 69}, [3624] = {.lex_state = 48, .external_lex_state = 67}, - [3625] = {.lex_state = 48, .external_lex_state = 67}, - [3626] = {.lex_state = 178, .external_lex_state = 66}, - [3627] = {.lex_state = 48, .external_lex_state = 67}, + [3625] = {.lex_state = 179, .external_lex_state = 66}, + [3626] = {.lex_state = 178, .external_lex_state = 86}, + [3627] = {.lex_state = 178, .external_lex_state = 86}, [3628] = {.lex_state = 178, .external_lex_state = 66}, [3629] = {.lex_state = 48, .external_lex_state = 67}, - [3630] = {.lex_state = 178, .external_lex_state = 86}, - [3631] = {.lex_state = 48, .external_lex_state = 67}, - [3632] = {.lex_state = 48, .external_lex_state = 67}, - [3633] = {.lex_state = 48, .external_lex_state = 67}, - [3634] = {.lex_state = 178, .external_lex_state = 86}, - [3635] = {.lex_state = 178, .external_lex_state = 69}, - [3636] = {.lex_state = 48, .external_lex_state = 67}, - [3637] = {.lex_state = 48, .external_lex_state = 67}, - [3638] = {.lex_state = 48, .external_lex_state = 67}, + [3630] = {.lex_state = 48, .external_lex_state = 67}, + [3631] = {.lex_state = 178, .external_lex_state = 66}, + [3632] = {.lex_state = 178, .external_lex_state = 66}, + [3633] = {.lex_state = 178, .external_lex_state = 66}, + [3634] = {.lex_state = 178, .external_lex_state = 66}, + [3635] = {.lex_state = 178, .external_lex_state = 66}, + [3636] = {.lex_state = 178, .external_lex_state = 80}, + [3637] = {.lex_state = 178, .external_lex_state = 64}, + [3638] = {.lex_state = 178, .external_lex_state = 66}, [3639] = {.lex_state = 52, .external_lex_state = 87}, - [3640] = {.lex_state = 48, .external_lex_state = 67}, - [3641] = {.lex_state = 50, .external_lex_state = 67}, - [3642] = {.lex_state = 48, .external_lex_state = 67}, - [3643] = {.lex_state = 48, .external_lex_state = 67}, - [3644] = {.lex_state = 48, .external_lex_state = 67}, - [3645] = {.lex_state = 48, .external_lex_state = 67}, - [3646] = {.lex_state = 48, .external_lex_state = 67}, + [3640] = {.lex_state = 179, .external_lex_state = 64}, + [3641] = {.lex_state = 178, .external_lex_state = 86}, + [3642] = {.lex_state = 178, .external_lex_state = 64}, + [3643] = {.lex_state = 178, .external_lex_state = 86}, + [3644] = {.lex_state = 183, .external_lex_state = 87}, + [3645] = {.lex_state = 178, .external_lex_state = 66}, + [3646] = {.lex_state = 178, .external_lex_state = 66}, [3647] = {.lex_state = 178, .external_lex_state = 66}, - [3648] = {.lex_state = 48, .external_lex_state = 67}, - [3649] = {.lex_state = 48, .external_lex_state = 67}, - [3650] = {.lex_state = 48, .external_lex_state = 67}, + [3648] = {.lex_state = 179, .external_lex_state = 71}, + [3649] = {.lex_state = 52, .external_lex_state = 87}, + [3650] = {.lex_state = 183, .external_lex_state = 87}, [3651] = {.lex_state = 48, .external_lex_state = 67}, - [3652] = {.lex_state = 48, .external_lex_state = 67}, - [3653] = {.lex_state = 179, .external_lex_state = 66}, - [3654] = {.lex_state = 48, .external_lex_state = 67}, - [3655] = {.lex_state = 48, .external_lex_state = 67}, - [3656] = {.lex_state = 50, .external_lex_state = 67}, - [3657] = {.lex_state = 48, .external_lex_state = 67}, - [3658] = {.lex_state = 48, .external_lex_state = 67}, - [3659] = {.lex_state = 48, .external_lex_state = 67}, - [3660] = {.lex_state = 48, .external_lex_state = 67}, - [3661] = {.lex_state = 48, .external_lex_state = 67}, + [3652] = {.lex_state = 178, .external_lex_state = 88}, + [3653] = {.lex_state = 178, .external_lex_state = 88}, + [3654] = {.lex_state = 52, .external_lex_state = 87}, + [3655] = {.lex_state = 178, .external_lex_state = 81}, + [3656] = {.lex_state = 178, .external_lex_state = 66}, + [3657] = {.lex_state = 178, .external_lex_state = 88}, + [3658] = {.lex_state = 178, .external_lex_state = 88}, + [3659] = {.lex_state = 178, .external_lex_state = 66}, + [3660] = {.lex_state = 178, .external_lex_state = 66}, + [3661] = {.lex_state = 178, .external_lex_state = 66}, [3662] = {.lex_state = 48, .external_lex_state = 67}, [3663] = {.lex_state = 48, .external_lex_state = 67}, [3664] = {.lex_state = 48, .external_lex_state = 67}, - [3665] = {.lex_state = 183, .external_lex_state = 87}, - [3666] = {.lex_state = 48, .external_lex_state = 67}, + [3665] = {.lex_state = 48, .external_lex_state = 67}, + [3666] = {.lex_state = 178, .external_lex_state = 84}, [3667] = {.lex_state = 48, .external_lex_state = 67}, - [3668] = {.lex_state = 178, .external_lex_state = 88}, - [3669] = {.lex_state = 48, .external_lex_state = 67}, - [3670] = {.lex_state = 183, .external_lex_state = 66}, + [3668] = {.lex_state = 48, .external_lex_state = 67}, + [3669] = {.lex_state = 183, .external_lex_state = 64}, + [3670] = {.lex_state = 48, .external_lex_state = 67}, [3671] = {.lex_state = 48, .external_lex_state = 67}, - [3672] = {.lex_state = 178, .external_lex_state = 65}, + [3672] = {.lex_state = 48, .external_lex_state = 67}, [3673] = {.lex_state = 48, .external_lex_state = 67}, - [3674] = {.lex_state = 178, .external_lex_state = 88}, - [3675] = {.lex_state = 183, .external_lex_state = 65}, + [3674] = {.lex_state = 48, .external_lex_state = 67}, + [3675] = {.lex_state = 48, .external_lex_state = 67}, [3676] = {.lex_state = 48, .external_lex_state = 67}, - [3677] = {.lex_state = 48, .external_lex_state = 67}, - [3678] = {.lex_state = 48, .external_lex_state = 67}, - [3679] = {.lex_state = 48, .external_lex_state = 67}, + [3677] = {.lex_state = 179, .external_lex_state = 70}, + [3678] = {.lex_state = 178, .external_lex_state = 66}, + [3679] = {.lex_state = 183, .external_lex_state = 87}, [3680] = {.lex_state = 48, .external_lex_state = 67}, [3681] = {.lex_state = 48, .external_lex_state = 67}, [3682] = {.lex_state = 48, .external_lex_state = 67}, [3683] = {.lex_state = 48, .external_lex_state = 67}, [3684] = {.lex_state = 48, .external_lex_state = 67}, [3685] = {.lex_state = 48, .external_lex_state = 67}, - [3686] = {.lex_state = 178, .external_lex_state = 66}, + [3686] = {.lex_state = 48, .external_lex_state = 67}, [3687] = {.lex_state = 48, .external_lex_state = 67}, - [3688] = {.lex_state = 178, .external_lex_state = 66}, + [3688] = {.lex_state = 48, .external_lex_state = 67}, [3689] = {.lex_state = 48, .external_lex_state = 67}, [3690] = {.lex_state = 48, .external_lex_state = 67}, [3691] = {.lex_state = 48, .external_lex_state = 67}, - [3692] = {.lex_state = 48, .external_lex_state = 67}, - [3693] = {.lex_state = 183, .external_lex_state = 65}, + [3692] = {.lex_state = 178, .external_lex_state = 66}, + [3693] = {.lex_state = 48, .external_lex_state = 67}, [3694] = {.lex_state = 48, .external_lex_state = 67}, - [3695] = {.lex_state = 48, .external_lex_state = 67}, + [3695] = {.lex_state = 183, .external_lex_state = 64}, [3696] = {.lex_state = 48, .external_lex_state = 67}, - [3697] = {.lex_state = 178, .external_lex_state = 84}, + [3697] = {.lex_state = 48, .external_lex_state = 67}, [3698] = {.lex_state = 48, .external_lex_state = 67}, [3699] = {.lex_state = 48, .external_lex_state = 67}, [3700] = {.lex_state = 48, .external_lex_state = 67}, [3701] = {.lex_state = 48, .external_lex_state = 67}, - [3702] = {.lex_state = 48, .external_lex_state = 67}, + [3702] = {.lex_state = 178, .external_lex_state = 64}, [3703] = {.lex_state = 48, .external_lex_state = 67}, - [3704] = {.lex_state = 178, .external_lex_state = 66}, - [3705] = {.lex_state = 48, .external_lex_state = 67}, + [3704] = {.lex_state = 48, .external_lex_state = 67}, + [3705] = {.lex_state = 178, .external_lex_state = 64}, [3706] = {.lex_state = 48, .external_lex_state = 67}, - [3707] = {.lex_state = 48, .external_lex_state = 67}, + [3707] = {.lex_state = 178, .external_lex_state = 64}, [3708] = {.lex_state = 48, .external_lex_state = 67}, [3709] = {.lex_state = 48, .external_lex_state = 67}, [3710] = {.lex_state = 48, .external_lex_state = 67}, @@ -24036,42 +24158,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3713] = {.lex_state = 48, .external_lex_state = 67}, [3714] = {.lex_state = 48, .external_lex_state = 67}, [3715] = {.lex_state = 48, .external_lex_state = 67}, - [3716] = {.lex_state = 48, .external_lex_state = 70}, + [3716] = {.lex_state = 48, .external_lex_state = 67}, [3717] = {.lex_state = 48, .external_lex_state = 67}, [3718] = {.lex_state = 48, .external_lex_state = 67}, - [3719] = {.lex_state = 49, .external_lex_state = 70}, + [3719] = {.lex_state = 48, .external_lex_state = 67}, [3720] = {.lex_state = 48, .external_lex_state = 67}, - [3721] = {.lex_state = 178, .external_lex_state = 65}, - [3722] = {.lex_state = 178, .external_lex_state = 84}, - [3723] = {.lex_state = 178, .external_lex_state = 66}, + [3721] = {.lex_state = 48, .external_lex_state = 67}, + [3722] = {.lex_state = 48, .external_lex_state = 67}, + [3723] = {.lex_state = 48, .external_lex_state = 67}, [3724] = {.lex_state = 48, .external_lex_state = 67}, [3725] = {.lex_state = 48, .external_lex_state = 67}, [3726] = {.lex_state = 48, .external_lex_state = 67}, [3727] = {.lex_state = 48, .external_lex_state = 67}, - [3728] = {.lex_state = 178, .external_lex_state = 65}, - [3729] = {.lex_state = 178, .external_lex_state = 65}, - [3730] = {.lex_state = 178, .external_lex_state = 65}, - [3731] = {.lex_state = 178, .external_lex_state = 65}, - [3732] = {.lex_state = 178, .external_lex_state = 65}, - [3733] = {.lex_state = 178, .external_lex_state = 65}, - [3734] = {.lex_state = 178, .external_lex_state = 65}, - [3735] = {.lex_state = 178, .external_lex_state = 65}, - [3736] = {.lex_state = 178, .external_lex_state = 65}, - [3737] = {.lex_state = 178, .external_lex_state = 65}, - [3738] = {.lex_state = 48, .external_lex_state = 67}, + [3728] = {.lex_state = 48, .external_lex_state = 67}, + [3729] = {.lex_state = 48, .external_lex_state = 67}, + [3730] = {.lex_state = 48, .external_lex_state = 67}, + [3731] = {.lex_state = 48, .external_lex_state = 67}, + [3732] = {.lex_state = 48, .external_lex_state = 67}, + [3733] = {.lex_state = 48, .external_lex_state = 67}, + [3734] = {.lex_state = 178, .external_lex_state = 66}, + [3735] = {.lex_state = 48, .external_lex_state = 67}, + [3736] = {.lex_state = 48, .external_lex_state = 67}, + [3737] = {.lex_state = 48, .external_lex_state = 67}, + [3738] = {.lex_state = 178, .external_lex_state = 64}, [3739] = {.lex_state = 48, .external_lex_state = 67}, - [3740] = {.lex_state = 178, .external_lex_state = 66}, - [3741] = {.lex_state = 178, .external_lex_state = 66}, - [3742] = {.lex_state = 178, .external_lex_state = 66}, - [3743] = {.lex_state = 178, .external_lex_state = 66}, - [3744] = {.lex_state = 178, .external_lex_state = 66}, - [3745] = {.lex_state = 178, .external_lex_state = 66}, + [3740] = {.lex_state = 48, .external_lex_state = 67}, + [3741] = {.lex_state = 48, .external_lex_state = 67}, + [3742] = {.lex_state = 48, .external_lex_state = 67}, + [3743] = {.lex_state = 48, .external_lex_state = 67}, + [3744] = {.lex_state = 48, .external_lex_state = 67}, + [3745] = {.lex_state = 48, .external_lex_state = 67}, [3746] = {.lex_state = 48, .external_lex_state = 67}, [3747] = {.lex_state = 48, .external_lex_state = 67}, [3748] = {.lex_state = 48, .external_lex_state = 67}, - [3749] = {.lex_state = 178, .external_lex_state = 66}, + [3749] = {.lex_state = 48, .external_lex_state = 67}, [3750] = {.lex_state = 48, .external_lex_state = 67}, - [3751] = {.lex_state = 52, .external_lex_state = 87}, + [3751] = {.lex_state = 48, .external_lex_state = 67}, [3752] = {.lex_state = 48, .external_lex_state = 67}, [3753] = {.lex_state = 48, .external_lex_state = 67}, [3754] = {.lex_state = 48, .external_lex_state = 67}, @@ -24079,489 +24201,489 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3756] = {.lex_state = 48, .external_lex_state = 67}, [3757] = {.lex_state = 48, .external_lex_state = 67}, [3758] = {.lex_state = 48, .external_lex_state = 67}, - [3759] = {.lex_state = 178, .external_lex_state = 66}, + [3759] = {.lex_state = 48, .external_lex_state = 67}, [3760] = {.lex_state = 48, .external_lex_state = 67}, [3761] = {.lex_state = 48, .external_lex_state = 67}, - [3762] = {.lex_state = 178, .external_lex_state = 84}, - [3763] = {.lex_state = 50, .external_lex_state = 67}, + [3762] = {.lex_state = 48, .external_lex_state = 67}, + [3763] = {.lex_state = 48, .external_lex_state = 67}, [3764] = {.lex_state = 48, .external_lex_state = 67}, [3765] = {.lex_state = 48, .external_lex_state = 67}, [3766] = {.lex_state = 48, .external_lex_state = 67}, - [3767] = {.lex_state = 52, .external_lex_state = 87}, + [3767] = {.lex_state = 48, .external_lex_state = 67}, [3768] = {.lex_state = 48, .external_lex_state = 67}, - [3769] = {.lex_state = 178, .external_lex_state = 69}, - [3770] = {.lex_state = 183, .external_lex_state = 66}, + [3769] = {.lex_state = 48, .external_lex_state = 67}, + [3770] = {.lex_state = 48, .external_lex_state = 67}, [3771] = {.lex_state = 48, .external_lex_state = 67}, [3772] = {.lex_state = 48, .external_lex_state = 67}, - [3773] = {.lex_state = 178, .external_lex_state = 66}, - [3774] = {.lex_state = 183, .external_lex_state = 87}, - [3775] = {.lex_state = 178, .external_lex_state = 65}, - [3776] = {.lex_state = 179, .external_lex_state = 65}, + [3773] = {.lex_state = 48, .external_lex_state = 67}, + [3774] = {.lex_state = 48, .external_lex_state = 67}, + [3775] = {.lex_state = 48, .external_lex_state = 67}, + [3776] = {.lex_state = 48, .external_lex_state = 67}, [3777] = {.lex_state = 48, .external_lex_state = 67}, - [3778] = {.lex_state = 178, .external_lex_state = 66}, + [3778] = {.lex_state = 48, .external_lex_state = 67}, [3779] = {.lex_state = 48, .external_lex_state = 67}, [3780] = {.lex_state = 48, .external_lex_state = 67}, - [3781] = {.lex_state = 178, .external_lex_state = 80}, - [3782] = {.lex_state = 183, .external_lex_state = 65}, + [3781] = {.lex_state = 183, .external_lex_state = 66}, + [3782] = {.lex_state = 48, .external_lex_state = 67}, [3783] = {.lex_state = 48, .external_lex_state = 67}, [3784] = {.lex_state = 48, .external_lex_state = 67}, [3785] = {.lex_state = 48, .external_lex_state = 67}, - [3786] = {.lex_state = 179, .external_lex_state = 65}, + [3786] = {.lex_state = 48, .external_lex_state = 67}, [3787] = {.lex_state = 48, .external_lex_state = 67}, [3788] = {.lex_state = 48, .external_lex_state = 67}, [3789] = {.lex_state = 48, .external_lex_state = 67}, [3790] = {.lex_state = 48, .external_lex_state = 67}, [3791] = {.lex_state = 48, .external_lex_state = 67}, [3792] = {.lex_state = 48, .external_lex_state = 67}, - [3793] = {.lex_state = 178, .external_lex_state = 66}, - [3794] = {.lex_state = 178, .external_lex_state = 66}, - [3795] = {.lex_state = 48, .external_lex_state = 67}, + [3793] = {.lex_state = 48, .external_lex_state = 67}, + [3794] = {.lex_state = 48, .external_lex_state = 67}, + [3795] = {.lex_state = 178, .external_lex_state = 66}, [3796] = {.lex_state = 48, .external_lex_state = 67}, [3797] = {.lex_state = 48, .external_lex_state = 67}, - [3798] = {.lex_state = 178, .external_lex_state = 66}, + [3798] = {.lex_state = 48, .external_lex_state = 67}, [3799] = {.lex_state = 48, .external_lex_state = 67}, - [3800] = {.lex_state = 178, .external_lex_state = 65}, + [3800] = {.lex_state = 48, .external_lex_state = 67}, [3801] = {.lex_state = 48, .external_lex_state = 67}, [3802] = {.lex_state = 48, .external_lex_state = 67}, - [3803] = {.lex_state = 179, .external_lex_state = 70}, - [3804] = {.lex_state = 178, .external_lex_state = 65}, - [3805] = {.lex_state = 183, .external_lex_state = 87}, + [3803] = {.lex_state = 48, .external_lex_state = 67}, + [3804] = {.lex_state = 48, .external_lex_state = 67}, + [3805] = {.lex_state = 48, .external_lex_state = 67}, [3806] = {.lex_state = 48, .external_lex_state = 67}, - [3807] = {.lex_state = 178, .external_lex_state = 65}, + [3807] = {.lex_state = 48, .external_lex_state = 67}, [3808] = {.lex_state = 48, .external_lex_state = 67}, - [3809] = {.lex_state = 178, .external_lex_state = 65}, - [3810] = {.lex_state = 178, .external_lex_state = 66}, + [3809] = {.lex_state = 48, .external_lex_state = 67}, + [3810] = {.lex_state = 48, .external_lex_state = 67}, [3811] = {.lex_state = 48, .external_lex_state = 67}, [3812] = {.lex_state = 48, .external_lex_state = 67}, - [3813] = {.lex_state = 178, .external_lex_state = 66}, + [3813] = {.lex_state = 48, .external_lex_state = 67}, [3814] = {.lex_state = 48, .external_lex_state = 67}, - [3815] = {.lex_state = 178, .external_lex_state = 66}, - [3816] = {.lex_state = 178, .external_lex_state = 66}, - [3817] = {.lex_state = 178, .external_lex_state = 66}, + [3815] = {.lex_state = 48, .external_lex_state = 67}, + [3816] = {.lex_state = 48, .external_lex_state = 67}, + [3817] = {.lex_state = 48, .external_lex_state = 67}, [3818] = {.lex_state = 48, .external_lex_state = 67}, [3819] = {.lex_state = 48, .external_lex_state = 67}, [3820] = {.lex_state = 48, .external_lex_state = 67}, [3821] = {.lex_state = 48, .external_lex_state = 67}, - [3822] = {.lex_state = 183, .external_lex_state = 66}, - [3823] = {.lex_state = 178, .external_lex_state = 88}, + [3822] = {.lex_state = 48, .external_lex_state = 67}, + [3823] = {.lex_state = 48, .external_lex_state = 67}, [3824] = {.lex_state = 48, .external_lex_state = 67}, [3825] = {.lex_state = 48, .external_lex_state = 67}, - [3826] = {.lex_state = 178, .external_lex_state = 86}, - [3827] = {.lex_state = 48, .external_lex_state = 67}, - [3828] = {.lex_state = 48, .external_lex_state = 67}, - [3829] = {.lex_state = 48, .external_lex_state = 67}, - [3830] = {.lex_state = 48, .external_lex_state = 70}, - [3831] = {.lex_state = 48, .external_lex_state = 67}, - [3832] = {.lex_state = 178, .external_lex_state = 86}, - [3833] = {.lex_state = 48, .external_lex_state = 67}, - [3834] = {.lex_state = 178, .external_lex_state = 88}, - [3835] = {.lex_state = 48, .external_lex_state = 67}, - [3836] = {.lex_state = 178, .external_lex_state = 66}, - [3837] = {.lex_state = 178, .external_lex_state = 65}, - [3838] = {.lex_state = 178, .external_lex_state = 65}, - [3839] = {.lex_state = 48, .external_lex_state = 87}, - [3840] = {.lex_state = 178, .external_lex_state = 71}, - [3841] = {.lex_state = 178, .external_lex_state = 65}, - [3842] = {.lex_state = 178, .external_lex_state = 65}, - [3843] = {.lex_state = 178, .external_lex_state = 66}, - [3844] = {.lex_state = 178, .external_lex_state = 66}, - [3845] = {.lex_state = 178, .external_lex_state = 71}, - [3846] = {.lex_state = 178, .external_lex_state = 66}, - [3847] = {.lex_state = 178, .external_lex_state = 66}, + [3826] = {.lex_state = 178, .external_lex_state = 64}, + [3827] = {.lex_state = 178, .external_lex_state = 64}, + [3828] = {.lex_state = 178, .external_lex_state = 64}, + [3829] = {.lex_state = 178, .external_lex_state = 64}, + [3830] = {.lex_state = 178, .external_lex_state = 64}, + [3831] = {.lex_state = 178, .external_lex_state = 64}, + [3832] = {.lex_state = 178, .external_lex_state = 64}, + [3833] = {.lex_state = 178, .external_lex_state = 64}, + [3834] = {.lex_state = 178, .external_lex_state = 64}, + [3835] = {.lex_state = 178, .external_lex_state = 64}, + [3836] = {.lex_state = 183, .external_lex_state = 66}, + [3837] = {.lex_state = 178, .external_lex_state = 66}, + [3838] = {.lex_state = 178, .external_lex_state = 66}, + [3839] = {.lex_state = 178, .external_lex_state = 66}, + [3840] = {.lex_state = 178, .external_lex_state = 66}, + [3841] = {.lex_state = 178, .external_lex_state = 66}, + [3842] = {.lex_state = 178, .external_lex_state = 66}, + [3843] = {.lex_state = 48, .external_lex_state = 70}, + [3844] = {.lex_state = 178, .external_lex_state = 64}, + [3845] = {.lex_state = 48, .external_lex_state = 70}, + [3846] = {.lex_state = 48, .external_lex_state = 67}, + [3847] = {.lex_state = 48, .external_lex_state = 67}, [3848] = {.lex_state = 178, .external_lex_state = 66}, - [3849] = {.lex_state = 178, .external_lex_state = 65}, - [3850] = {.lex_state = 178, .external_lex_state = 65}, - [3851] = {.lex_state = 178, .external_lex_state = 65}, - [3852] = {.lex_state = 178, .external_lex_state = 66}, - [3853] = {.lex_state = 178, .external_lex_state = 66}, - [3854] = {.lex_state = 178, .external_lex_state = 66}, - [3855] = {.lex_state = 178, .external_lex_state = 65}, - [3856] = {.lex_state = 178, .external_lex_state = 66}, - [3857] = {.lex_state = 178, .external_lex_state = 66}, + [3849] = {.lex_state = 178, .external_lex_state = 64}, + [3850] = {.lex_state = 178, .external_lex_state = 69}, + [3851] = {.lex_state = 178, .external_lex_state = 64}, + [3852] = {.lex_state = 178, .external_lex_state = 71}, + [3853] = {.lex_state = 178, .external_lex_state = 71}, + [3854] = {.lex_state = 178, .external_lex_state = 71}, + [3855] = {.lex_state = 178, .external_lex_state = 71}, + [3856] = {.lex_state = 50, .external_lex_state = 67}, + [3857] = {.lex_state = 186, .external_lex_state = 89}, [3858] = {.lex_state = 178, .external_lex_state = 66}, [3859] = {.lex_state = 178, .external_lex_state = 66}, - [3860] = {.lex_state = 178, .external_lex_state = 65}, - [3861] = {.lex_state = 178, .external_lex_state = 71}, - [3862] = {.lex_state = 178, .external_lex_state = 65}, + [3860] = {.lex_state = 178, .external_lex_state = 66}, + [3861] = {.lex_state = 178, .external_lex_state = 66}, + [3862] = {.lex_state = 178, .external_lex_state = 66}, [3863] = {.lex_state = 178, .external_lex_state = 66}, [3864] = {.lex_state = 178, .external_lex_state = 66}, - [3865] = {.lex_state = 48, .external_lex_state = 70}, + [3865] = {.lex_state = 178, .external_lex_state = 66}, [3866] = {.lex_state = 178, .external_lex_state = 66}, [3867] = {.lex_state = 178, .external_lex_state = 66}, - [3868] = {.lex_state = 178, .external_lex_state = 65}, - [3869] = {.lex_state = 178, .external_lex_state = 65}, - [3870] = {.lex_state = 178, .external_lex_state = 65}, - [3871] = {.lex_state = 178, .external_lex_state = 65}, - [3872] = {.lex_state = 178, .external_lex_state = 66}, - [3873] = {.lex_state = 178, .external_lex_state = 66}, - [3874] = {.lex_state = 178, .external_lex_state = 66}, - [3875] = {.lex_state = 48, .external_lex_state = 70}, - [3876] = {.lex_state = 178, .external_lex_state = 65}, - [3877] = {.lex_state = 178, .external_lex_state = 65}, - [3878] = {.lex_state = 178, .external_lex_state = 66}, + [3868] = {.lex_state = 178, .external_lex_state = 66}, + [3869] = {.lex_state = 178, .external_lex_state = 66}, + [3870] = {.lex_state = 178, .external_lex_state = 66}, + [3871] = {.lex_state = 178, .external_lex_state = 66}, + [3872] = {.lex_state = 178, .external_lex_state = 67}, + [3873] = {.lex_state = 178, .external_lex_state = 67}, + [3874] = {.lex_state = 178, .external_lex_state = 67}, + [3875] = {.lex_state = 178, .external_lex_state = 67}, + [3876] = {.lex_state = 178, .external_lex_state = 67}, + [3877] = {.lex_state = 178, .external_lex_state = 67}, + [3878] = {.lex_state = 178, .external_lex_state = 67}, [3879] = {.lex_state = 178, .external_lex_state = 66}, - [3880] = {.lex_state = 178, .external_lex_state = 65}, + [3880] = {.lex_state = 178, .external_lex_state = 66}, [3881] = {.lex_state = 178, .external_lex_state = 66}, - [3882] = {.lex_state = 178, .external_lex_state = 65}, - [3883] = {.lex_state = 178, .external_lex_state = 65}, + [3882] = {.lex_state = 179, .external_lex_state = 72}, + [3883] = {.lex_state = 179, .external_lex_state = 72}, [3884] = {.lex_state = 178, .external_lex_state = 66}, - [3885] = {.lex_state = 178, .external_lex_state = 65}, - [3886] = {.lex_state = 178, .external_lex_state = 65}, + [3885] = {.lex_state = 179, .external_lex_state = 72}, + [3886] = {.lex_state = 178, .external_lex_state = 66}, [3887] = {.lex_state = 178, .external_lex_state = 66}, - [3888] = {.lex_state = 178, .external_lex_state = 65}, + [3888] = {.lex_state = 178, .external_lex_state = 66}, [3889] = {.lex_state = 178, .external_lex_state = 66}, [3890] = {.lex_state = 178, .external_lex_state = 66}, [3891] = {.lex_state = 178, .external_lex_state = 66}, - [3892] = {.lex_state = 178, .external_lex_state = 65}, + [3892] = {.lex_state = 178, .external_lex_state = 64}, [3893] = {.lex_state = 178, .external_lex_state = 66}, - [3894] = {.lex_state = 178, .external_lex_state = 65}, - [3895] = {.lex_state = 178, .external_lex_state = 65}, + [3894] = {.lex_state = 178, .external_lex_state = 64}, + [3895] = {.lex_state = 178, .external_lex_state = 66}, [3896] = {.lex_state = 178, .external_lex_state = 66}, [3897] = {.lex_state = 178, .external_lex_state = 66}, [3898] = {.lex_state = 178, .external_lex_state = 66}, - [3899] = {.lex_state = 178, .external_lex_state = 66}, + [3899] = {.lex_state = 179, .external_lex_state = 73}, [3900] = {.lex_state = 178, .external_lex_state = 66}, - [3901] = {.lex_state = 178, .external_lex_state = 65}, - [3902] = {.lex_state = 178, .external_lex_state = 65}, + [3901] = {.lex_state = 178, .external_lex_state = 66}, + [3902] = {.lex_state = 179, .external_lex_state = 73}, [3903] = {.lex_state = 178, .external_lex_state = 66}, - [3904] = {.lex_state = 178, .external_lex_state = 65}, + [3904] = {.lex_state = 178, .external_lex_state = 66}, [3905] = {.lex_state = 178, .external_lex_state = 66}, [3906] = {.lex_state = 178, .external_lex_state = 66}, - [3907] = {.lex_state = 178, .external_lex_state = 66}, - [3908] = {.lex_state = 178, .external_lex_state = 65}, - [3909] = {.lex_state = 178, .external_lex_state = 66}, - [3910] = {.lex_state = 178, .external_lex_state = 66}, + [3907] = {.lex_state = 48, .external_lex_state = 90}, + [3908] = {.lex_state = 178, .external_lex_state = 66}, + [3909] = {.lex_state = 183, .external_lex_state = 70}, + [3910] = {.lex_state = 48, .external_lex_state = 90}, [3911] = {.lex_state = 178, .external_lex_state = 66}, [3912] = {.lex_state = 178, .external_lex_state = 66}, - [3913] = {.lex_state = 178, .external_lex_state = 66}, - [3914] = {.lex_state = 178, .external_lex_state = 65}, - [3915] = {.lex_state = 178, .external_lex_state = 65}, - [3916] = {.lex_state = 178, .external_lex_state = 65}, - [3917] = {.lex_state = 178, .external_lex_state = 65}, - [3918] = {.lex_state = 178, .external_lex_state = 65}, + [3913] = {.lex_state = 178, .external_lex_state = 67}, + [3914] = {.lex_state = 178, .external_lex_state = 67}, + [3915] = {.lex_state = 178, .external_lex_state = 67}, + [3916] = {.lex_state = 178, .external_lex_state = 67}, + [3917] = {.lex_state = 178, .external_lex_state = 67}, + [3918] = {.lex_state = 178, .external_lex_state = 67}, [3919] = {.lex_state = 178, .external_lex_state = 66}, - [3920] = {.lex_state = 178, .external_lex_state = 65}, - [3921] = {.lex_state = 48, .external_lex_state = 70}, - [3922] = {.lex_state = 178, .external_lex_state = 65}, - [3923] = {.lex_state = 178, .external_lex_state = 65}, + [3920] = {.lex_state = 178, .external_lex_state = 66}, + [3921] = {.lex_state = 178, .external_lex_state = 66}, + [3922] = {.lex_state = 49, .external_lex_state = 70}, + [3923] = {.lex_state = 178, .external_lex_state = 66}, [3924] = {.lex_state = 178, .external_lex_state = 66}, [3925] = {.lex_state = 178, .external_lex_state = 66}, - [3926] = {.lex_state = 178, .external_lex_state = 65}, - [3927] = {.lex_state = 178, .external_lex_state = 65}, - [3928] = {.lex_state = 178, .external_lex_state = 65}, + [3926] = {.lex_state = 178, .external_lex_state = 66}, + [3927] = {.lex_state = 178, .external_lex_state = 66}, + [3928] = {.lex_state = 178, .external_lex_state = 66}, [3929] = {.lex_state = 178, .external_lex_state = 66}, [3930] = {.lex_state = 178, .external_lex_state = 66}, - [3931] = {.lex_state = 178, .external_lex_state = 65}, - [3932] = {.lex_state = 48, .external_lex_state = 89}, + [3931] = {.lex_state = 48, .external_lex_state = 87}, + [3932] = {.lex_state = 178, .external_lex_state = 66}, [3933] = {.lex_state = 178, .external_lex_state = 66}, - [3934] = {.lex_state = 178, .external_lex_state = 65}, - [3935] = {.lex_state = 178, .external_lex_state = 65}, + [3934] = {.lex_state = 178, .external_lex_state = 66}, + [3935] = {.lex_state = 178, .external_lex_state = 66}, [3936] = {.lex_state = 178, .external_lex_state = 66}, - [3937] = {.lex_state = 178, .external_lex_state = 65}, - [3938] = {.lex_state = 178, .external_lex_state = 65}, - [3939] = {.lex_state = 178, .external_lex_state = 65}, + [3937] = {.lex_state = 48, .external_lex_state = 70}, + [3938] = {.lex_state = 48, .external_lex_state = 90}, + [3939] = {.lex_state = 178, .external_lex_state = 66}, [3940] = {.lex_state = 183, .external_lex_state = 70}, - [3941] = {.lex_state = 178, .external_lex_state = 65}, - [3942] = {.lex_state = 178, .external_lex_state = 65}, + [3941] = {.lex_state = 48, .external_lex_state = 90}, + [3942] = {.lex_state = 48, .external_lex_state = 70}, [3943] = {.lex_state = 178, .external_lex_state = 66}, - [3944] = {.lex_state = 178, .external_lex_state = 65}, - [3945] = {.lex_state = 178, .external_lex_state = 65}, - [3946] = {.lex_state = 178, .external_lex_state = 66}, - [3947] = {.lex_state = 178, .external_lex_state = 65}, - [3948] = {.lex_state = 178, .external_lex_state = 65}, - [3949] = {.lex_state = 178, .external_lex_state = 65}, + [3944] = {.lex_state = 178, .external_lex_state = 64}, + [3945] = {.lex_state = 178, .external_lex_state = 66}, + [3946] = {.lex_state = 178, .external_lex_state = 64}, + [3947] = {.lex_state = 178, .external_lex_state = 64}, + [3948] = {.lex_state = 178, .external_lex_state = 64}, + [3949] = {.lex_state = 178, .external_lex_state = 64}, [3950] = {.lex_state = 178, .external_lex_state = 66}, - [3951] = {.lex_state = 48, .external_lex_state = 70}, - [3952] = {.lex_state = 48, .external_lex_state = 70}, - [3953] = {.lex_state = 179, .external_lex_state = 72}, - [3954] = {.lex_state = 179, .external_lex_state = 72}, - [3955] = {.lex_state = 178, .external_lex_state = 66}, - [3956] = {.lex_state = 178, .external_lex_state = 65}, - [3957] = {.lex_state = 178, .external_lex_state = 66}, - [3958] = {.lex_state = 178, .external_lex_state = 65}, - [3959] = {.lex_state = 178, .external_lex_state = 65}, - [3960] = {.lex_state = 178, .external_lex_state = 65}, - [3961] = {.lex_state = 178, .external_lex_state = 66}, - [3962] = {.lex_state = 178, .external_lex_state = 65}, - [3963] = {.lex_state = 178, .external_lex_state = 65}, - [3964] = {.lex_state = 178, .external_lex_state = 65}, - [3965] = {.lex_state = 178, .external_lex_state = 65}, - [3966] = {.lex_state = 178, .external_lex_state = 65}, - [3967] = {.lex_state = 178, .external_lex_state = 65}, - [3968] = {.lex_state = 178, .external_lex_state = 65}, - [3969] = {.lex_state = 178, .external_lex_state = 65}, - [3970] = {.lex_state = 178, .external_lex_state = 65}, - [3971] = {.lex_state = 178, .external_lex_state = 66}, + [3951] = {.lex_state = 178, .external_lex_state = 64}, + [3952] = {.lex_state = 178, .external_lex_state = 64}, + [3953] = {.lex_state = 178, .external_lex_state = 64}, + [3954] = {.lex_state = 178, .external_lex_state = 64}, + [3955] = {.lex_state = 178, .external_lex_state = 64}, + [3956] = {.lex_state = 178, .external_lex_state = 64}, + [3957] = {.lex_state = 178, .external_lex_state = 64}, + [3958] = {.lex_state = 178, .external_lex_state = 64}, + [3959] = {.lex_state = 178, .external_lex_state = 64}, + [3960] = {.lex_state = 178, .external_lex_state = 64}, + [3961] = {.lex_state = 178, .external_lex_state = 64}, + [3962] = {.lex_state = 178, .external_lex_state = 66}, + [3963] = {.lex_state = 178, .external_lex_state = 66}, + [3964] = {.lex_state = 178, .external_lex_state = 64}, + [3965] = {.lex_state = 178, .external_lex_state = 64}, + [3966] = {.lex_state = 178, .external_lex_state = 64}, + [3967] = {.lex_state = 178, .external_lex_state = 64}, + [3968] = {.lex_state = 178, .external_lex_state = 64}, + [3969] = {.lex_state = 179, .external_lex_state = 73}, + [3970] = {.lex_state = 178, .external_lex_state = 66}, + [3971] = {.lex_state = 179, .external_lex_state = 73}, [3972] = {.lex_state = 178, .external_lex_state = 66}, - [3973] = {.lex_state = 178, .external_lex_state = 66}, - [3974] = {.lex_state = 178, .external_lex_state = 65}, - [3975] = {.lex_state = 178, .external_lex_state = 66}, - [3976] = {.lex_state = 178, .external_lex_state = 65}, - [3977] = {.lex_state = 48, .external_lex_state = 89}, - [3978] = {.lex_state = 178, .external_lex_state = 65}, - [3979] = {.lex_state = 178, .external_lex_state = 65}, - [3980] = {.lex_state = 178, .external_lex_state = 65}, - [3981] = {.lex_state = 178, .external_lex_state = 65}, - [3982] = {.lex_state = 178, .external_lex_state = 65}, - [3983] = {.lex_state = 178, .external_lex_state = 65}, - [3984] = {.lex_state = 178, .external_lex_state = 65}, - [3985] = {.lex_state = 178, .external_lex_state = 65}, - [3986] = {.lex_state = 178, .external_lex_state = 65}, - [3987] = {.lex_state = 178, .external_lex_state = 65}, - [3988] = {.lex_state = 49, .external_lex_state = 70}, - [3989] = {.lex_state = 178, .external_lex_state = 66}, - [3990] = {.lex_state = 178, .external_lex_state = 66}, - [3991] = {.lex_state = 178, .external_lex_state = 65}, - [3992] = {.lex_state = 178, .external_lex_state = 66}, - [3993] = {.lex_state = 178, .external_lex_state = 66}, - [3994] = {.lex_state = 179, .external_lex_state = 72}, - [3995] = {.lex_state = 178, .external_lex_state = 65}, - [3996] = {.lex_state = 179, .external_lex_state = 72}, - [3997] = {.lex_state = 179, .external_lex_state = 72}, - [3998] = {.lex_state = 178, .external_lex_state = 65}, + [3973] = {.lex_state = 178, .external_lex_state = 64}, + [3974] = {.lex_state = 178, .external_lex_state = 66}, + [3975] = {.lex_state = 178, .external_lex_state = 64}, + [3976] = {.lex_state = 178, .external_lex_state = 64}, + [3977] = {.lex_state = 178, .external_lex_state = 64}, + [3978] = {.lex_state = 178, .external_lex_state = 64}, + [3979] = {.lex_state = 178, .external_lex_state = 64}, + [3980] = {.lex_state = 178, .external_lex_state = 64}, + [3981] = {.lex_state = 178, .external_lex_state = 64}, + [3982] = {.lex_state = 178, .external_lex_state = 66}, + [3983] = {.lex_state = 178, .external_lex_state = 64}, + [3984] = {.lex_state = 178, .external_lex_state = 64}, + [3985] = {.lex_state = 178, .external_lex_state = 64}, + [3986] = {.lex_state = 178, .external_lex_state = 64}, + [3987] = {.lex_state = 178, .external_lex_state = 64}, + [3988] = {.lex_state = 178, .external_lex_state = 64}, + [3989] = {.lex_state = 178, .external_lex_state = 64}, + [3990] = {.lex_state = 178, .external_lex_state = 64}, + [3991] = {.lex_state = 178, .external_lex_state = 64}, + [3992] = {.lex_state = 178, .external_lex_state = 64}, + [3993] = {.lex_state = 178, .external_lex_state = 64}, + [3994] = {.lex_state = 178, .external_lex_state = 64}, + [3995] = {.lex_state = 178, .external_lex_state = 66}, + [3996] = {.lex_state = 178, .external_lex_state = 66}, + [3997] = {.lex_state = 178, .external_lex_state = 66}, + [3998] = {.lex_state = 178, .external_lex_state = 66}, [3999] = {.lex_state = 178, .external_lex_state = 66}, - [4000] = {.lex_state = 50, .external_lex_state = 67}, + [4000] = {.lex_state = 178, .external_lex_state = 66}, [4001] = {.lex_state = 178, .external_lex_state = 66}, - [4002] = {.lex_state = 178, .external_lex_state = 66}, - [4003] = {.lex_state = 178, .external_lex_state = 65}, + [4002] = {.lex_state = 178, .external_lex_state = 64}, + [4003] = {.lex_state = 48, .external_lex_state = 70}, [4004] = {.lex_state = 178, .external_lex_state = 66}, - [4005] = {.lex_state = 178, .external_lex_state = 66}, + [4005] = {.lex_state = 178, .external_lex_state = 64}, [4006] = {.lex_state = 178, .external_lex_state = 66}, - [4007] = {.lex_state = 178, .external_lex_state = 65}, - [4008] = {.lex_state = 178, .external_lex_state = 65}, - [4009] = {.lex_state = 178, .external_lex_state = 65}, - [4010] = {.lex_state = 178, .external_lex_state = 66}, - [4011] = {.lex_state = 178, .external_lex_state = 65}, - [4012] = {.lex_state = 178, .external_lex_state = 65}, - [4013] = {.lex_state = 48, .external_lex_state = 70}, - [4014] = {.lex_state = 178, .external_lex_state = 65}, - [4015] = {.lex_state = 178, .external_lex_state = 65}, - [4016] = {.lex_state = 178, .external_lex_state = 65}, - [4017] = {.lex_state = 178, .external_lex_state = 65}, - [4018] = {.lex_state = 178, .external_lex_state = 66}, - [4019] = {.lex_state = 178, .external_lex_state = 65}, - [4020] = {.lex_state = 178, .external_lex_state = 66}, - [4021] = {.lex_state = 178, .external_lex_state = 65}, - [4022] = {.lex_state = 178, .external_lex_state = 65}, - [4023] = {.lex_state = 178, .external_lex_state = 66}, - [4024] = {.lex_state = 179, .external_lex_state = 73}, - [4025] = {.lex_state = 178, .external_lex_state = 65}, - [4026] = {.lex_state = 178, .external_lex_state = 66}, - [4027] = {.lex_state = 178, .external_lex_state = 66}, - [4028] = {.lex_state = 178, .external_lex_state = 66}, - [4029] = {.lex_state = 178, .external_lex_state = 66}, - [4030] = {.lex_state = 178, .external_lex_state = 66}, - [4031] = {.lex_state = 178, .external_lex_state = 66}, - [4032] = {.lex_state = 178, .external_lex_state = 65}, - [4033] = {.lex_state = 183, .external_lex_state = 84}, + [4007] = {.lex_state = 178, .external_lex_state = 64}, + [4008] = {.lex_state = 178, .external_lex_state = 64}, + [4009] = {.lex_state = 178, .external_lex_state = 64}, + [4010] = {.lex_state = 178, .external_lex_state = 64}, + [4011] = {.lex_state = 178, .external_lex_state = 64}, + [4012] = {.lex_state = 178, .external_lex_state = 64}, + [4013] = {.lex_state = 178, .external_lex_state = 64}, + [4014] = {.lex_state = 178, .external_lex_state = 64}, + [4015] = {.lex_state = 48, .external_lex_state = 70}, + [4016] = {.lex_state = 178, .external_lex_state = 66}, + [4017] = {.lex_state = 178, .external_lex_state = 64}, + [4018] = {.lex_state = 178, .external_lex_state = 64}, + [4019] = {.lex_state = 178, .external_lex_state = 64}, + [4020] = {.lex_state = 178, .external_lex_state = 64}, + [4021] = {.lex_state = 178, .external_lex_state = 64}, + [4022] = {.lex_state = 178, .external_lex_state = 64}, + [4023] = {.lex_state = 178, .external_lex_state = 64}, + [4024] = {.lex_state = 178, .external_lex_state = 64}, + [4025] = {.lex_state = 178, .external_lex_state = 64}, + [4026] = {.lex_state = 178, .external_lex_state = 64}, + [4027] = {.lex_state = 178, .external_lex_state = 64}, + [4028] = {.lex_state = 178, .external_lex_state = 64}, + [4029] = {.lex_state = 178, .external_lex_state = 64}, + [4030] = {.lex_state = 178, .external_lex_state = 64}, + [4031] = {.lex_state = 178, .external_lex_state = 64}, + [4032] = {.lex_state = 178, .external_lex_state = 64}, + [4033] = {.lex_state = 178, .external_lex_state = 64}, [4034] = {.lex_state = 178, .external_lex_state = 66}, - [4035] = {.lex_state = 178, .external_lex_state = 66}, - [4036] = {.lex_state = 178, .external_lex_state = 66}, - [4037] = {.lex_state = 178, .external_lex_state = 66}, - [4038] = {.lex_state = 178, .external_lex_state = 66}, - [4039] = {.lex_state = 178, .external_lex_state = 66}, - [4040] = {.lex_state = 178, .external_lex_state = 66}, + [4035] = {.lex_state = 178, .external_lex_state = 64}, + [4036] = {.lex_state = 178, .external_lex_state = 64}, + [4037] = {.lex_state = 178, .external_lex_state = 64}, + [4038] = {.lex_state = 178, .external_lex_state = 64}, + [4039] = {.lex_state = 178, .external_lex_state = 64}, + [4040] = {.lex_state = 178, .external_lex_state = 64}, [4041] = {.lex_state = 178, .external_lex_state = 66}, - [4042] = {.lex_state = 178, .external_lex_state = 65}, - [4043] = {.lex_state = 178, .external_lex_state = 66}, - [4044] = {.lex_state = 178, .external_lex_state = 65}, - [4045] = {.lex_state = 178, .external_lex_state = 65}, - [4046] = {.lex_state = 178, .external_lex_state = 66}, - [4047] = {.lex_state = 178, .external_lex_state = 65}, - [4048] = {.lex_state = 178, .external_lex_state = 66}, - [4049] = {.lex_state = 186, .external_lex_state = 90}, - [4050] = {.lex_state = 178, .external_lex_state = 66}, - [4051] = {.lex_state = 178, .external_lex_state = 66}, - [4052] = {.lex_state = 178, .external_lex_state = 65}, - [4053] = {.lex_state = 178, .external_lex_state = 66}, - [4054] = {.lex_state = 178, .external_lex_state = 66}, - [4055] = {.lex_state = 48, .external_lex_state = 70}, + [4042] = {.lex_state = 178, .external_lex_state = 64}, + [4043] = {.lex_state = 178, .external_lex_state = 64}, + [4044] = {.lex_state = 178, .external_lex_state = 64}, + [4045] = {.lex_state = 178, .external_lex_state = 64}, + [4046] = {.lex_state = 178, .external_lex_state = 64}, + [4047] = {.lex_state = 178, .external_lex_state = 64}, + [4048] = {.lex_state = 178, .external_lex_state = 64}, + [4049] = {.lex_state = 178, .external_lex_state = 64}, + [4050] = {.lex_state = 178, .external_lex_state = 64}, + [4051] = {.lex_state = 178, .external_lex_state = 64}, + [4052] = {.lex_state = 178, .external_lex_state = 64}, + [4053] = {.lex_state = 178, .external_lex_state = 64}, + [4054] = {.lex_state = 178, .external_lex_state = 64}, + [4055] = {.lex_state = 178, .external_lex_state = 64}, [4056] = {.lex_state = 178, .external_lex_state = 66}, - [4057] = {.lex_state = 178, .external_lex_state = 65}, - [4058] = {.lex_state = 178, .external_lex_state = 66}, - [4059] = {.lex_state = 178, .external_lex_state = 66}, - [4060] = {.lex_state = 178, .external_lex_state = 65}, - [4061] = {.lex_state = 178, .external_lex_state = 66}, - [4062] = {.lex_state = 178, .external_lex_state = 66}, - [4063] = {.lex_state = 179, .external_lex_state = 73}, - [4064] = {.lex_state = 179, .external_lex_state = 73}, - [4065] = {.lex_state = 178, .external_lex_state = 66}, - [4066] = {.lex_state = 178, .external_lex_state = 65}, - [4067] = {.lex_state = 178, .external_lex_state = 66}, - [4068] = {.lex_state = 178, .external_lex_state = 65}, - [4069] = {.lex_state = 178, .external_lex_state = 66}, - [4070] = {.lex_state = 178, .external_lex_state = 65}, - [4071] = {.lex_state = 178, .external_lex_state = 65}, - [4072] = {.lex_state = 178, .external_lex_state = 65}, - [4073] = {.lex_state = 178, .external_lex_state = 66}, - [4074] = {.lex_state = 178, .external_lex_state = 65}, - [4075] = {.lex_state = 178, .external_lex_state = 65}, - [4076] = {.lex_state = 178, .external_lex_state = 65}, - [4077] = {.lex_state = 178, .external_lex_state = 66}, - [4078] = {.lex_state = 178, .external_lex_state = 66}, - [4079] = {.lex_state = 178, .external_lex_state = 65}, - [4080] = {.lex_state = 183, .external_lex_state = 84}, - [4081] = {.lex_state = 178, .external_lex_state = 66}, - [4082] = {.lex_state = 178, .external_lex_state = 65}, - [4083] = {.lex_state = 178, .external_lex_state = 65}, - [4084] = {.lex_state = 178, .external_lex_state = 66}, - [4085] = {.lex_state = 178, .external_lex_state = 66}, - [4086] = {.lex_state = 178, .external_lex_state = 66}, - [4087] = {.lex_state = 178, .external_lex_state = 65}, - [4088] = {.lex_state = 178, .external_lex_state = 65}, - [4089] = {.lex_state = 178, .external_lex_state = 67}, - [4090] = {.lex_state = 178, .external_lex_state = 65}, - [4091] = {.lex_state = 178, .external_lex_state = 65}, - [4092] = {.lex_state = 178, .external_lex_state = 65}, - [4093] = {.lex_state = 178, .external_lex_state = 67}, - [4094] = {.lex_state = 178, .external_lex_state = 65}, - [4095] = {.lex_state = 178, .external_lex_state = 67}, - [4096] = {.lex_state = 178, .external_lex_state = 65}, - [4097] = {.lex_state = 178, .external_lex_state = 67}, - [4098] = {.lex_state = 178, .external_lex_state = 67}, - [4099] = {.lex_state = 178, .external_lex_state = 65}, - [4100] = {.lex_state = 178, .external_lex_state = 67}, - [4101] = {.lex_state = 178, .external_lex_state = 66}, - [4102] = {.lex_state = 178, .external_lex_state = 65}, - [4103] = {.lex_state = 178, .external_lex_state = 65}, - [4104] = {.lex_state = 178, .external_lex_state = 65}, - [4105] = {.lex_state = 178, .external_lex_state = 66}, - [4106] = {.lex_state = 178, .external_lex_state = 67}, - [4107] = {.lex_state = 178, .external_lex_state = 67}, - [4108] = {.lex_state = 178, .external_lex_state = 67}, - [4109] = {.lex_state = 183, .external_lex_state = 67}, - [4110] = {.lex_state = 178, .external_lex_state = 65}, - [4111] = {.lex_state = 178, .external_lex_state = 65}, - [4112] = {.lex_state = 178, .external_lex_state = 66}, - [4113] = {.lex_state = 178, .external_lex_state = 67}, + [4057] = {.lex_state = 178, .external_lex_state = 64}, + [4058] = {.lex_state = 178, .external_lex_state = 64}, + [4059] = {.lex_state = 178, .external_lex_state = 64}, + [4060] = {.lex_state = 178, .external_lex_state = 64}, + [4061] = {.lex_state = 178, .external_lex_state = 64}, + [4062] = {.lex_state = 178, .external_lex_state = 64}, + [4063] = {.lex_state = 178, .external_lex_state = 64}, + [4064] = {.lex_state = 178, .external_lex_state = 64}, + [4065] = {.lex_state = 178, .external_lex_state = 64}, + [4066] = {.lex_state = 178, .external_lex_state = 64}, + [4067] = {.lex_state = 178, .external_lex_state = 64}, + [4068] = {.lex_state = 178, .external_lex_state = 64}, + [4069] = {.lex_state = 178, .external_lex_state = 64}, + [4070] = {.lex_state = 178, .external_lex_state = 64}, + [4071] = {.lex_state = 178, .external_lex_state = 64}, + [4072] = {.lex_state = 178, .external_lex_state = 64}, + [4073] = {.lex_state = 178, .external_lex_state = 64}, + [4074] = {.lex_state = 178, .external_lex_state = 64}, + [4075] = {.lex_state = 178, .external_lex_state = 66}, + [4076] = {.lex_state = 178, .external_lex_state = 64}, + [4077] = {.lex_state = 178, .external_lex_state = 64}, + [4078] = {.lex_state = 178, .external_lex_state = 64}, + [4079] = {.lex_state = 178, .external_lex_state = 64}, + [4080] = {.lex_state = 178, .external_lex_state = 64}, + [4081] = {.lex_state = 178, .external_lex_state = 64}, + [4082] = {.lex_state = 178, .external_lex_state = 64}, + [4083] = {.lex_state = 178, .external_lex_state = 64}, + [4084] = {.lex_state = 178, .external_lex_state = 64}, + [4085] = {.lex_state = 178, .external_lex_state = 64}, + [4086] = {.lex_state = 178, .external_lex_state = 64}, + [4087] = {.lex_state = 178, .external_lex_state = 64}, + [4088] = {.lex_state = 178, .external_lex_state = 64}, + [4089] = {.lex_state = 178, .external_lex_state = 64}, + [4090] = {.lex_state = 178, .external_lex_state = 64}, + [4091] = {.lex_state = 178, .external_lex_state = 64}, + [4092] = {.lex_state = 178, .external_lex_state = 66}, + [4093] = {.lex_state = 178, .external_lex_state = 66}, + [4094] = {.lex_state = 49, .external_lex_state = 70}, + [4095] = {.lex_state = 178, .external_lex_state = 66}, + [4096] = {.lex_state = 178, .external_lex_state = 66}, + [4097] = {.lex_state = 178, .external_lex_state = 66}, + [4098] = {.lex_state = 178, .external_lex_state = 66}, + [4099] = {.lex_state = 178, .external_lex_state = 64}, + [4100] = {.lex_state = 178, .external_lex_state = 64}, + [4101] = {.lex_state = 178, .external_lex_state = 64}, + [4102] = {.lex_state = 178, .external_lex_state = 64}, + [4103] = {.lex_state = 178, .external_lex_state = 64}, + [4104] = {.lex_state = 178, .external_lex_state = 64}, + [4105] = {.lex_state = 178, .external_lex_state = 64}, + [4106] = {.lex_state = 178, .external_lex_state = 66}, + [4107] = {.lex_state = 178, .external_lex_state = 64}, + [4108] = {.lex_state = 178, .external_lex_state = 66}, + [4109] = {.lex_state = 178, .external_lex_state = 64}, + [4110] = {.lex_state = 178, .external_lex_state = 64}, + [4111] = {.lex_state = 178, .external_lex_state = 64}, + [4112] = {.lex_state = 178, .external_lex_state = 64}, + [4113] = {.lex_state = 178, .external_lex_state = 64}, [4114] = {.lex_state = 178, .external_lex_state = 66}, - [4115] = {.lex_state = 178, .external_lex_state = 67}, - [4116] = {.lex_state = 178, .external_lex_state = 67}, - [4117] = {.lex_state = 178, .external_lex_state = 66}, - [4118] = {.lex_state = 178, .external_lex_state = 69}, - [4119] = {.lex_state = 178, .external_lex_state = 65}, - [4120] = {.lex_state = 178, .external_lex_state = 66}, + [4115] = {.lex_state = 178, .external_lex_state = 64}, + [4116] = {.lex_state = 178, .external_lex_state = 64}, + [4117] = {.lex_state = 178, .external_lex_state = 64}, + [4118] = {.lex_state = 178, .external_lex_state = 64}, + [4119] = {.lex_state = 178, .external_lex_state = 66}, + [4120] = {.lex_state = 178, .external_lex_state = 64}, [4121] = {.lex_state = 178, .external_lex_state = 66}, - [4122] = {.lex_state = 178, .external_lex_state = 65}, - [4123] = {.lex_state = 178, .external_lex_state = 65}, - [4124] = {.lex_state = 178, .external_lex_state = 65}, - [4125] = {.lex_state = 178, .external_lex_state = 65}, - [4126] = {.lex_state = 178, .external_lex_state = 66}, - [4127] = {.lex_state = 178, .external_lex_state = 66}, - [4128] = {.lex_state = 178, .external_lex_state = 65}, - [4129] = {.lex_state = 178, .external_lex_state = 66}, - [4130] = {.lex_state = 178, .external_lex_state = 65}, - [4131] = {.lex_state = 178, .external_lex_state = 65}, - [4132] = {.lex_state = 178, .external_lex_state = 65}, - [4133] = {.lex_state = 178, .external_lex_state = 66}, - [4134] = {.lex_state = 178, .external_lex_state = 65}, - [4135] = {.lex_state = 178, .external_lex_state = 65}, - [4136] = {.lex_state = 178, .external_lex_state = 66}, - [4137] = {.lex_state = 178, .external_lex_state = 66}, - [4138] = {.lex_state = 178, .external_lex_state = 66}, - [4139] = {.lex_state = 186, .external_lex_state = 90}, - [4140] = {.lex_state = 186, .external_lex_state = 90}, - [4141] = {.lex_state = 178, .external_lex_state = 66}, - [4142] = {.lex_state = 178, .external_lex_state = 66}, - [4143] = {.lex_state = 178, .external_lex_state = 66}, - [4144] = {.lex_state = 178, .external_lex_state = 66}, - [4145] = {.lex_state = 178, .external_lex_state = 66}, - [4146] = {.lex_state = 178, .external_lex_state = 66}, - [4147] = {.lex_state = 178, .external_lex_state = 65}, + [4122] = {.lex_state = 178, .external_lex_state = 64}, + [4123] = {.lex_state = 178, .external_lex_state = 64}, + [4124] = {.lex_state = 178, .external_lex_state = 66}, + [4125] = {.lex_state = 178, .external_lex_state = 64}, + [4126] = {.lex_state = 178, .external_lex_state = 64}, + [4127] = {.lex_state = 178, .external_lex_state = 64}, + [4128] = {.lex_state = 178, .external_lex_state = 64}, + [4129] = {.lex_state = 178, .external_lex_state = 64}, + [4130] = {.lex_state = 178, .external_lex_state = 64}, + [4131] = {.lex_state = 178, .external_lex_state = 64}, + [4132] = {.lex_state = 178, .external_lex_state = 66}, + [4133] = {.lex_state = 178, .external_lex_state = 64}, + [4134] = {.lex_state = 178, .external_lex_state = 64}, + [4135] = {.lex_state = 178, .external_lex_state = 64}, + [4136] = {.lex_state = 178, .external_lex_state = 64}, + [4137] = {.lex_state = 178, .external_lex_state = 64}, + [4138] = {.lex_state = 178, .external_lex_state = 64}, + [4139] = {.lex_state = 178, .external_lex_state = 64}, + [4140] = {.lex_state = 178, .external_lex_state = 64}, + [4141] = {.lex_state = 178, .external_lex_state = 64}, + [4142] = {.lex_state = 178, .external_lex_state = 64}, + [4143] = {.lex_state = 178, .external_lex_state = 64}, + [4144] = {.lex_state = 178, .external_lex_state = 64}, + [4145] = {.lex_state = 178, .external_lex_state = 64}, + [4146] = {.lex_state = 178, .external_lex_state = 64}, + [4147] = {.lex_state = 178, .external_lex_state = 66}, [4148] = {.lex_state = 178, .external_lex_state = 66}, - [4149] = {.lex_state = 178, .external_lex_state = 66}, + [4149] = {.lex_state = 178, .external_lex_state = 64}, [4150] = {.lex_state = 178, .external_lex_state = 66}, [4151] = {.lex_state = 178, .external_lex_state = 66}, - [4152] = {.lex_state = 178, .external_lex_state = 66}, + [4152] = {.lex_state = 178, .external_lex_state = 64}, [4153] = {.lex_state = 178, .external_lex_state = 66}, - [4154] = {.lex_state = 178, .external_lex_state = 66}, + [4154] = {.lex_state = 48, .external_lex_state = 70}, [4155] = {.lex_state = 178, .external_lex_state = 66}, - [4156] = {.lex_state = 178, .external_lex_state = 71}, + [4156] = {.lex_state = 178, .external_lex_state = 66}, [4157] = {.lex_state = 178, .external_lex_state = 66}, [4158] = {.lex_state = 178, .external_lex_state = 66}, [4159] = {.lex_state = 178, .external_lex_state = 66}, [4160] = {.lex_state = 178, .external_lex_state = 66}, [4161] = {.lex_state = 178, .external_lex_state = 66}, - [4162] = {.lex_state = 178, .external_lex_state = 65}, - [4163] = {.lex_state = 178, .external_lex_state = 65}, - [4164] = {.lex_state = 178, .external_lex_state = 66}, - [4165] = {.lex_state = 178, .external_lex_state = 67}, - [4166] = {.lex_state = 178, .external_lex_state = 65}, - [4167] = {.lex_state = 48, .external_lex_state = 70}, + [4162] = {.lex_state = 178, .external_lex_state = 66}, + [4163] = {.lex_state = 178, .external_lex_state = 66}, + [4164] = {.lex_state = 183, .external_lex_state = 67}, + [4165] = {.lex_state = 178, .external_lex_state = 66}, + [4166] = {.lex_state = 178, .external_lex_state = 66}, + [4167] = {.lex_state = 178, .external_lex_state = 66}, [4168] = {.lex_state = 178, .external_lex_state = 66}, - [4169] = {.lex_state = 178, .external_lex_state = 65}, - [4170] = {.lex_state = 178, .external_lex_state = 65}, - [4171] = {.lex_state = 178, .external_lex_state = 65}, - [4172] = {.lex_state = 178, .external_lex_state = 65}, - [4173] = {.lex_state = 178, .external_lex_state = 71}, - [4174] = {.lex_state = 178, .external_lex_state = 65}, - [4175] = {.lex_state = 178, .external_lex_state = 65}, - [4176] = {.lex_state = 178, .external_lex_state = 65}, - [4177] = {.lex_state = 178, .external_lex_state = 65}, - [4178] = {.lex_state = 178, .external_lex_state = 65}, - [4179] = {.lex_state = 178, .external_lex_state = 65}, - [4180] = {.lex_state = 178, .external_lex_state = 65}, - [4181] = {.lex_state = 178, .external_lex_state = 65}, - [4182] = {.lex_state = 178, .external_lex_state = 65}, - [4183] = {.lex_state = 48, .external_lex_state = 89}, - [4184] = {.lex_state = 178, .external_lex_state = 65}, - [4185] = {.lex_state = 178, .external_lex_state = 65}, + [4169] = {.lex_state = 178, .external_lex_state = 66}, + [4170] = {.lex_state = 178, .external_lex_state = 66}, + [4171] = {.lex_state = 178, .external_lex_state = 66}, + [4172] = {.lex_state = 48, .external_lex_state = 70}, + [4173] = {.lex_state = 178, .external_lex_state = 66}, + [4174] = {.lex_state = 178, .external_lex_state = 66}, + [4175] = {.lex_state = 178, .external_lex_state = 66}, + [4176] = {.lex_state = 178, .external_lex_state = 66}, + [4177] = {.lex_state = 178, .external_lex_state = 66}, + [4178] = {.lex_state = 178, .external_lex_state = 66}, + [4179] = {.lex_state = 178, .external_lex_state = 66}, + [4180] = {.lex_state = 178, .external_lex_state = 66}, + [4181] = {.lex_state = 178, .external_lex_state = 66}, + [4182] = {.lex_state = 178, .external_lex_state = 66}, + [4183] = {.lex_state = 178, .external_lex_state = 66}, + [4184] = {.lex_state = 178, .external_lex_state = 66}, + [4185] = {.lex_state = 178, .external_lex_state = 66}, [4186] = {.lex_state = 178, .external_lex_state = 66}, - [4187] = {.lex_state = 178, .external_lex_state = 65}, - [4188] = {.lex_state = 178, .external_lex_state = 65}, - [4189] = {.lex_state = 49, .external_lex_state = 70}, - [4190] = {.lex_state = 178, .external_lex_state = 65}, - [4191] = {.lex_state = 178, .external_lex_state = 65}, - [4192] = {.lex_state = 178, .external_lex_state = 65}, - [4193] = {.lex_state = 178, .external_lex_state = 65}, - [4194] = {.lex_state = 178, .external_lex_state = 65}, - [4195] = {.lex_state = 178, .external_lex_state = 65}, - [4196] = {.lex_state = 178, .external_lex_state = 65}, - [4197] = {.lex_state = 178, .external_lex_state = 65}, - [4198] = {.lex_state = 178, .external_lex_state = 65}, - [4199] = {.lex_state = 178, .external_lex_state = 65}, - [4200] = {.lex_state = 178, .external_lex_state = 65}, - [4201] = {.lex_state = 178, .external_lex_state = 65}, - [4202] = {.lex_state = 178, .external_lex_state = 65}, - [4203] = {.lex_state = 178, .external_lex_state = 65}, - [4204] = {.lex_state = 178, .external_lex_state = 71}, - [4205] = {.lex_state = 178, .external_lex_state = 65}, - [4206] = {.lex_state = 178, .external_lex_state = 71}, - [4207] = {.lex_state = 178, .external_lex_state = 65}, - [4208] = {.lex_state = 178, .external_lex_state = 65}, - [4209] = {.lex_state = 183, .external_lex_state = 70}, - [4210] = {.lex_state = 178, .external_lex_state = 65}, - [4211] = {.lex_state = 179, .external_lex_state = 73}, - [4212] = {.lex_state = 179, .external_lex_state = 73}, - [4213] = {.lex_state = 178, .external_lex_state = 65}, - [4214] = {.lex_state = 178, .external_lex_state = 66}, - [4215] = {.lex_state = 48, .external_lex_state = 89}, - [4216] = {.lex_state = 178, .external_lex_state = 66}, - [4217] = {.lex_state = 178, .external_lex_state = 66}, - [4218] = {.lex_state = 178, .external_lex_state = 66}, - [4219] = {.lex_state = 178, .external_lex_state = 66}, - [4220] = {.lex_state = 178, .external_lex_state = 66}, - [4221] = {.lex_state = 178, .external_lex_state = 65}, - [4222] = {.lex_state = 178, .external_lex_state = 65}, - [4223] = {.lex_state = 178, .external_lex_state = 65}, - [4224] = {.lex_state = 178, .external_lex_state = 65}, + [4187] = {.lex_state = 178, .external_lex_state = 66}, + [4188] = {.lex_state = 178, .external_lex_state = 66}, + [4189] = {.lex_state = 178, .external_lex_state = 64}, + [4190] = {.lex_state = 178, .external_lex_state = 64}, + [4191] = {.lex_state = 178, .external_lex_state = 64}, + [4192] = {.lex_state = 178, .external_lex_state = 64}, + [4193] = {.lex_state = 178, .external_lex_state = 66}, + [4194] = {.lex_state = 178, .external_lex_state = 66}, + [4195] = {.lex_state = 178, .external_lex_state = 66}, + [4196] = {.lex_state = 178, .external_lex_state = 66}, + [4197] = {.lex_state = 178, .external_lex_state = 66}, + [4198] = {.lex_state = 178, .external_lex_state = 66}, + [4199] = {.lex_state = 178, .external_lex_state = 66}, + [4200] = {.lex_state = 178, .external_lex_state = 66}, + [4201] = {.lex_state = 48, .external_lex_state = 67}, + [4202] = {.lex_state = 48, .external_lex_state = 67}, + [4203] = {.lex_state = 48, .external_lex_state = 67}, + [4204] = {.lex_state = 178, .external_lex_state = 66}, + [4205] = {.lex_state = 178, .external_lex_state = 64}, + [4206] = {.lex_state = 178, .external_lex_state = 66}, + [4207] = {.lex_state = 178, .external_lex_state = 64}, + [4208] = {.lex_state = 178, .external_lex_state = 64}, + [4209] = {.lex_state = 178, .external_lex_state = 64}, + [4210] = {.lex_state = 178, .external_lex_state = 64}, + [4211] = {.lex_state = 178, .external_lex_state = 64}, + [4212] = {.lex_state = 178, .external_lex_state = 64}, + [4213] = {.lex_state = 178, .external_lex_state = 64}, + [4214] = {.lex_state = 178, .external_lex_state = 64}, + [4215] = {.lex_state = 178, .external_lex_state = 64}, + [4216] = {.lex_state = 178, .external_lex_state = 64}, + [4217] = {.lex_state = 178, .external_lex_state = 64}, + [4218] = {.lex_state = 178, .external_lex_state = 64}, + [4219] = {.lex_state = 178, .external_lex_state = 64}, + [4220] = {.lex_state = 178, .external_lex_state = 64}, + [4221] = {.lex_state = 178, .external_lex_state = 64}, + [4222] = {.lex_state = 178, .external_lex_state = 64}, + [4223] = {.lex_state = 178, .external_lex_state = 64}, + [4224] = {.lex_state = 178, .external_lex_state = 64}, [4225] = {.lex_state = 178, .external_lex_state = 66}, [4226] = {.lex_state = 178, .external_lex_state = 66}, - [4227] = {.lex_state = 179, .external_lex_state = 71}, + [4227] = {.lex_state = 178, .external_lex_state = 64}, [4228] = {.lex_state = 178, .external_lex_state = 66}, - [4229] = {.lex_state = 48, .external_lex_state = 67}, + [4229] = {.lex_state = 178, .external_lex_state = 64}, [4230] = {.lex_state = 178, .external_lex_state = 66}, - [4231] = {.lex_state = 48, .external_lex_state = 67}, - [4232] = {.lex_state = 48, .external_lex_state = 67}, + [4231] = {.lex_state = 178, .external_lex_state = 66}, + [4232] = {.lex_state = 178, .external_lex_state = 66}, [4233] = {.lex_state = 178, .external_lex_state = 66}, - [4234] = {.lex_state = 178, .external_lex_state = 71}, - [4235] = {.lex_state = 178, .external_lex_state = 65}, + [4234] = {.lex_state = 178, .external_lex_state = 66}, + [4235] = {.lex_state = 178, .external_lex_state = 66}, [4236] = {.lex_state = 178, .external_lex_state = 66}, [4237] = {.lex_state = 178, .external_lex_state = 66}, [4238] = {.lex_state = 178, .external_lex_state = 66}, [4239] = {.lex_state = 178, .external_lex_state = 66}, [4240] = {.lex_state = 178, .external_lex_state = 66}, - [4241] = {.lex_state = 178, .external_lex_state = 65}, + [4241] = {.lex_state = 178, .external_lex_state = 66}, [4242] = {.lex_state = 178, .external_lex_state = 66}, [4243] = {.lex_state = 178, .external_lex_state = 66}, [4244] = {.lex_state = 178, .external_lex_state = 66}, @@ -24570,145 +24692,145 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4247] = {.lex_state = 178, .external_lex_state = 66}, [4248] = {.lex_state = 178, .external_lex_state = 66}, [4249] = {.lex_state = 178, .external_lex_state = 66}, - [4250] = {.lex_state = 178, .external_lex_state = 65}, - [4251] = {.lex_state = 178, .external_lex_state = 65}, - [4252] = {.lex_state = 178, .external_lex_state = 65}, - [4253] = {.lex_state = 178, .external_lex_state = 65}, - [4254] = {.lex_state = 178, .external_lex_state = 65}, - [4255] = {.lex_state = 178, .external_lex_state = 65}, - [4256] = {.lex_state = 178, .external_lex_state = 66}, - [4257] = {.lex_state = 178, .external_lex_state = 65}, - [4258] = {.lex_state = 178, .external_lex_state = 65}, - [4259] = {.lex_state = 178, .external_lex_state = 65}, - [4260] = {.lex_state = 178, .external_lex_state = 65}, - [4261] = {.lex_state = 178, .external_lex_state = 65}, - [4262] = {.lex_state = 178, .external_lex_state = 65}, - [4263] = {.lex_state = 178, .external_lex_state = 65}, - [4264] = {.lex_state = 178, .external_lex_state = 65}, + [4250] = {.lex_state = 178, .external_lex_state = 66}, + [4251] = {.lex_state = 178, .external_lex_state = 66}, + [4252] = {.lex_state = 178, .external_lex_state = 66}, + [4253] = {.lex_state = 178, .external_lex_state = 66}, + [4254] = {.lex_state = 178, .external_lex_state = 64}, + [4255] = {.lex_state = 48, .external_lex_state = 70}, + [4256] = {.lex_state = 178, .external_lex_state = 64}, + [4257] = {.lex_state = 178, .external_lex_state = 66}, + [4258] = {.lex_state = 179, .external_lex_state = 71}, + [4259] = {.lex_state = 178, .external_lex_state = 71}, + [4260] = {.lex_state = 178, .external_lex_state = 66}, + [4261] = {.lex_state = 178, .external_lex_state = 66}, + [4262] = {.lex_state = 178, .external_lex_state = 66}, + [4263] = {.lex_state = 178, .external_lex_state = 66}, + [4264] = {.lex_state = 178, .external_lex_state = 66}, [4265] = {.lex_state = 178, .external_lex_state = 66}, - [4266] = {.lex_state = 178, .external_lex_state = 65}, - [4267] = {.lex_state = 178, .external_lex_state = 65}, - [4268] = {.lex_state = 178, .external_lex_state = 65}, - [4269] = {.lex_state = 178, .external_lex_state = 65}, + [4266] = {.lex_state = 178, .external_lex_state = 66}, + [4267] = {.lex_state = 178, .external_lex_state = 66}, + [4268] = {.lex_state = 178, .external_lex_state = 66}, + [4269] = {.lex_state = 178, .external_lex_state = 66}, [4270] = {.lex_state = 178, .external_lex_state = 66}, [4271] = {.lex_state = 178, .external_lex_state = 66}, - [4272] = {.lex_state = 178, .external_lex_state = 65}, + [4272] = {.lex_state = 178, .external_lex_state = 66}, [4273] = {.lex_state = 178, .external_lex_state = 66}, [4274] = {.lex_state = 178, .external_lex_state = 66}, [4275] = {.lex_state = 178, .external_lex_state = 66}, [4276] = {.lex_state = 178, .external_lex_state = 66}, - [4277] = {.lex_state = 178, .external_lex_state = 65}, - [4278] = {.lex_state = 178, .external_lex_state = 65}, - [4279] = {.lex_state = 178, .external_lex_state = 66}, + [4277] = {.lex_state = 183, .external_lex_state = 84}, + [4278] = {.lex_state = 178, .external_lex_state = 71}, + [4279] = {.lex_state = 178, .external_lex_state = 71}, [4280] = {.lex_state = 178, .external_lex_state = 66}, - [4281] = {.lex_state = 178, .external_lex_state = 66}, + [4281] = {.lex_state = 178, .external_lex_state = 71}, [4282] = {.lex_state = 178, .external_lex_state = 66}, - [4283] = {.lex_state = 178, .external_lex_state = 66}, - [4284] = {.lex_state = 178, .external_lex_state = 65}, - [4285] = {.lex_state = 178, .external_lex_state = 66}, - [4286] = {.lex_state = 178, .external_lex_state = 66}, - [4287] = {.lex_state = 178, .external_lex_state = 67}, - [4288] = {.lex_state = 48, .external_lex_state = 70}, - [4289] = {.lex_state = 178, .external_lex_state = 67}, - [4290] = {.lex_state = 178, .external_lex_state = 67}, - [4291] = {.lex_state = 178, .external_lex_state = 67}, - [4292] = {.lex_state = 178, .external_lex_state = 67}, - [4293] = {.lex_state = 178, .external_lex_state = 67}, - [4294] = {.lex_state = 178, .external_lex_state = 67}, - [4295] = {.lex_state = 178, .external_lex_state = 67}, - [4296] = {.lex_state = 178, .external_lex_state = 67}, - [4297] = {.lex_state = 178, .external_lex_state = 67}, - [4298] = {.lex_state = 178, .external_lex_state = 67}, - [4299] = {.lex_state = 178, .external_lex_state = 67}, + [4283] = {.lex_state = 178, .external_lex_state = 64}, + [4284] = {.lex_state = 178, .external_lex_state = 66}, + [4285] = {.lex_state = 179, .external_lex_state = 72}, + [4286] = {.lex_state = 178, .external_lex_state = 64}, + [4287] = {.lex_state = 178, .external_lex_state = 66}, + [4288] = {.lex_state = 178, .external_lex_state = 64}, + [4289] = {.lex_state = 178, .external_lex_state = 64}, + [4290] = {.lex_state = 178, .external_lex_state = 64}, + [4291] = {.lex_state = 178, .external_lex_state = 64}, + [4292] = {.lex_state = 178, .external_lex_state = 64}, + [4293] = {.lex_state = 178, .external_lex_state = 64}, + [4294] = {.lex_state = 178, .external_lex_state = 64}, + [4295] = {.lex_state = 186, .external_lex_state = 89}, + [4296] = {.lex_state = 178, .external_lex_state = 64}, + [4297] = {.lex_state = 183, .external_lex_state = 84}, + [4298] = {.lex_state = 179, .external_lex_state = 73}, + [4299] = {.lex_state = 186, .external_lex_state = 89}, [4300] = {.lex_state = 178, .external_lex_state = 67}, - [4301] = {.lex_state = 178, .external_lex_state = 67}, - [4302] = {.lex_state = 178, .external_lex_state = 67}, - [4303] = {.lex_state = 48, .external_lex_state = 70}, - [4304] = {.lex_state = 179, .external_lex_state = 73}, - [4305] = {.lex_state = 178, .external_lex_state = 67}, - [4306] = {.lex_state = 178, .external_lex_state = 67}, - [4307] = {.lex_state = 179, .external_lex_state = 69}, - [4308] = {.lex_state = 178, .external_lex_state = 91}, - [4309] = {.lex_state = 178, .external_lex_state = 91}, - [4310] = {.lex_state = 178, .external_lex_state = 69}, - [4311] = {.lex_state = 178, .external_lex_state = 84}, - [4312] = {.lex_state = 178, .external_lex_state = 91}, - [4313] = {.lex_state = 178, .external_lex_state = 91}, - [4314] = {.lex_state = 178, .external_lex_state = 69}, - [4315] = {.lex_state = 178, .external_lex_state = 69}, - [4316] = {.lex_state = 48, .external_lex_state = 70}, + [4301] = {.lex_state = 48, .external_lex_state = 70}, + [4302] = {.lex_state = 178, .external_lex_state = 64}, + [4303] = {.lex_state = 178, .external_lex_state = 64}, + [4304] = {.lex_state = 178, .external_lex_state = 64}, + [4305] = {.lex_state = 179, .external_lex_state = 72}, + [4306] = {.lex_state = 181, .external_lex_state = 67}, + [4307] = {.lex_state = 48, .external_lex_state = 70}, + [4308] = {.lex_state = 48, .external_lex_state = 70}, + [4309] = {.lex_state = 48, .external_lex_state = 70}, + [4310] = {.lex_state = 48, .external_lex_state = 70}, + [4311] = {.lex_state = 178, .external_lex_state = 67}, + [4312] = {.lex_state = 181, .external_lex_state = 67}, + [4313] = {.lex_state = 178, .external_lex_state = 67}, + [4314] = {.lex_state = 48, .external_lex_state = 70}, + [4315] = {.lex_state = 178, .external_lex_state = 67}, + [4316] = {.lex_state = 178, .external_lex_state = 67}, [4317] = {.lex_state = 48, .external_lex_state = 70}, - [4318] = {.lex_state = 178, .external_lex_state = 69}, - [4319] = {.lex_state = 178, .external_lex_state = 69}, - [4320] = {.lex_state = 183, .external_lex_state = 69}, - [4321] = {.lex_state = 178, .external_lex_state = 69}, - [4322] = {.lex_state = 183, .external_lex_state = 69}, + [4318] = {.lex_state = 181, .external_lex_state = 67}, + [4319] = {.lex_state = 48, .external_lex_state = 70}, + [4320] = {.lex_state = 48, .external_lex_state = 70}, + [4321] = {.lex_state = 181, .external_lex_state = 67}, + [4322] = {.lex_state = 48, .external_lex_state = 70}, [4323] = {.lex_state = 48, .external_lex_state = 70}, - [4324] = {.lex_state = 178, .external_lex_state = 69}, + [4324] = {.lex_state = 48, .external_lex_state = 70}, [4325] = {.lex_state = 48, .external_lex_state = 70}, - [4326] = {.lex_state = 183, .external_lex_state = 69}, - [4327] = {.lex_state = 179, .external_lex_state = 72}, - [4328] = {.lex_state = 178, .external_lex_state = 71}, - [4329] = {.lex_state = 178, .external_lex_state = 71}, - [4330] = {.lex_state = 178, .external_lex_state = 71}, - [4331] = {.lex_state = 178, .external_lex_state = 71}, - [4332] = {.lex_state = 178, .external_lex_state = 71}, - [4333] = {.lex_state = 178, .external_lex_state = 71}, - [4334] = {.lex_state = 178, .external_lex_state = 71}, - [4335] = {.lex_state = 178, .external_lex_state = 71}, - [4336] = {.lex_state = 178, .external_lex_state = 71}, - [4337] = {.lex_state = 178, .external_lex_state = 71}, - [4338] = {.lex_state = 178, .external_lex_state = 71}, - [4339] = {.lex_state = 178, .external_lex_state = 71}, - [4340] = {.lex_state = 178, .external_lex_state = 71}, - [4341] = {.lex_state = 178, .external_lex_state = 71}, - [4342] = {.lex_state = 178, .external_lex_state = 69}, - [4343] = {.lex_state = 186, .external_lex_state = 90}, - [4344] = {.lex_state = 23, .external_lex_state = 70}, - [4345] = {.lex_state = 23, .external_lex_state = 70}, - [4346] = {.lex_state = 23, .external_lex_state = 70}, - [4347] = {.lex_state = 50, .external_lex_state = 67}, - [4348] = {.lex_state = 181, .external_lex_state = 67}, - [4349] = {.lex_state = 23, .external_lex_state = 70}, - [4350] = {.lex_state = 23, .external_lex_state = 70}, - [4351] = {.lex_state = 181, .external_lex_state = 67}, - [4352] = {.lex_state = 181, .external_lex_state = 67}, - [4353] = {.lex_state = 181, .external_lex_state = 67}, - [4354] = {.lex_state = 186, .external_lex_state = 90}, - [4355] = {.lex_state = 186, .external_lex_state = 90}, - [4356] = {.lex_state = 181, .external_lex_state = 67}, - [4357] = {.lex_state = 181, .external_lex_state = 67}, - [4358] = {.lex_state = 181, .external_lex_state = 67}, - [4359] = {.lex_state = 181, .external_lex_state = 67}, - [4360] = {.lex_state = 178, .external_lex_state = 65}, - [4361] = {.lex_state = 178, .external_lex_state = 65}, - [4362] = {.lex_state = 178, .external_lex_state = 65}, - [4363] = {.lex_state = 178, .external_lex_state = 65}, - [4364] = {.lex_state = 179, .external_lex_state = 71}, - [4365] = {.lex_state = 183, .external_lex_state = 92}, - [4366] = {.lex_state = 178, .external_lex_state = 67}, - [4367] = {.lex_state = 178, .external_lex_state = 67}, - [4368] = {.lex_state = 178, .external_lex_state = 67}, - [4369] = {.lex_state = 178, .external_lex_state = 67}, - [4370] = {.lex_state = 178, .external_lex_state = 67}, - [4371] = {.lex_state = 178, .external_lex_state = 67}, + [4326] = {.lex_state = 48, .external_lex_state = 70}, + [4327] = {.lex_state = 178, .external_lex_state = 69}, + [4328] = {.lex_state = 48, .external_lex_state = 70}, + [4329] = {.lex_state = 48, .external_lex_state = 70}, + [4330] = {.lex_state = 48, .external_lex_state = 70}, + [4331] = {.lex_state = 48, .external_lex_state = 70}, + [4332] = {.lex_state = 48, .external_lex_state = 70}, + [4333] = {.lex_state = 178, .external_lex_state = 91}, + [4334] = {.lex_state = 48, .external_lex_state = 70}, + [4335] = {.lex_state = 48, .external_lex_state = 70}, + [4336] = {.lex_state = 48, .external_lex_state = 70}, + [4337] = {.lex_state = 48, .external_lex_state = 70}, + [4338] = {.lex_state = 48, .external_lex_state = 70}, + [4339] = {.lex_state = 49, .external_lex_state = 70}, + [4340] = {.lex_state = 48, .external_lex_state = 70}, + [4341] = {.lex_state = 48, .external_lex_state = 70}, + [4342] = {.lex_state = 48, .external_lex_state = 70}, + [4343] = {.lex_state = 48, .external_lex_state = 70}, + [4344] = {.lex_state = 48, .external_lex_state = 70}, + [4345] = {.lex_state = 48, .external_lex_state = 70}, + [4346] = {.lex_state = 48, .external_lex_state = 70}, + [4347] = {.lex_state = 48, .external_lex_state = 70}, + [4348] = {.lex_state = 48, .external_lex_state = 70}, + [4349] = {.lex_state = 48, .external_lex_state = 70}, + [4350] = {.lex_state = 48, .external_lex_state = 70}, + [4351] = {.lex_state = 48, .external_lex_state = 70}, + [4352] = {.lex_state = 48, .external_lex_state = 70}, + [4353] = {.lex_state = 48, .external_lex_state = 70}, + [4354] = {.lex_state = 48, .external_lex_state = 70}, + [4355] = {.lex_state = 48, .external_lex_state = 70}, + [4356] = {.lex_state = 48, .external_lex_state = 70}, + [4357] = {.lex_state = 178, .external_lex_state = 64}, + [4358] = {.lex_state = 48, .external_lex_state = 70}, + [4359] = {.lex_state = 178, .external_lex_state = 91}, + [4360] = {.lex_state = 48, .external_lex_state = 70}, + [4361] = {.lex_state = 48, .external_lex_state = 70}, + [4362] = {.lex_state = 48, .external_lex_state = 70}, + [4363] = {.lex_state = 48, .external_lex_state = 70}, + [4364] = {.lex_state = 48, .external_lex_state = 70}, + [4365] = {.lex_state = 48, .external_lex_state = 70}, + [4366] = {.lex_state = 48, .external_lex_state = 70}, + [4367] = {.lex_state = 48, .external_lex_state = 70}, + [4368] = {.lex_state = 48, .external_lex_state = 70}, + [4369] = {.lex_state = 48, .external_lex_state = 70}, + [4370] = {.lex_state = 48, .external_lex_state = 70}, + [4371] = {.lex_state = 48, .external_lex_state = 70}, [4372] = {.lex_state = 48, .external_lex_state = 70}, [4373] = {.lex_state = 48, .external_lex_state = 70}, [4374] = {.lex_state = 48, .external_lex_state = 70}, [4375] = {.lex_state = 48, .external_lex_state = 70}, - [4376] = {.lex_state = 178, .external_lex_state = 65}, - [4377] = {.lex_state = 48, .external_lex_state = 70}, - [4378] = {.lex_state = 48, .external_lex_state = 70}, - [4379] = {.lex_state = 48, .external_lex_state = 70}, - [4380] = {.lex_state = 48, .external_lex_state = 70}, + [4376] = {.lex_state = 48, .external_lex_state = 70}, + [4377] = {.lex_state = 178, .external_lex_state = 64}, + [4378] = {.lex_state = 178, .external_lex_state = 67}, + [4379] = {.lex_state = 178, .external_lex_state = 67}, + [4380] = {.lex_state = 178, .external_lex_state = 64}, [4381] = {.lex_state = 48, .external_lex_state = 70}, - [4382] = {.lex_state = 48, .external_lex_state = 70}, - [4383] = {.lex_state = 48, .external_lex_state = 70}, - [4384] = {.lex_state = 48, .external_lex_state = 70}, + [4382] = {.lex_state = 178, .external_lex_state = 64}, + [4383] = {.lex_state = 178, .external_lex_state = 64}, + [4384] = {.lex_state = 178, .external_lex_state = 64}, [4385] = {.lex_state = 48, .external_lex_state = 70}, - [4386] = {.lex_state = 178, .external_lex_state = 65}, - [4387] = {.lex_state = 178, .external_lex_state = 65}, - [4388] = {.lex_state = 178, .external_lex_state = 65}, + [4386] = {.lex_state = 178, .external_lex_state = 64}, + [4387] = {.lex_state = 48, .external_lex_state = 70}, + [4388] = {.lex_state = 178, .external_lex_state = 64}, [4389] = {.lex_state = 48, .external_lex_state = 70}, [4390] = {.lex_state = 48, .external_lex_state = 70}, [4391] = {.lex_state = 48, .external_lex_state = 70}, @@ -24716,304 +24838,304 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4393] = {.lex_state = 48, .external_lex_state = 70}, [4394] = {.lex_state = 48, .external_lex_state = 70}, [4395] = {.lex_state = 48, .external_lex_state = 70}, - [4396] = {.lex_state = 48, .external_lex_state = 70}, + [4396] = {.lex_state = 178, .external_lex_state = 67}, [4397] = {.lex_state = 48, .external_lex_state = 70}, - [4398] = {.lex_state = 48, .external_lex_state = 70}, - [4399] = {.lex_state = 48, .external_lex_state = 70}, - [4400] = {.lex_state = 48, .external_lex_state = 70}, - [4401] = {.lex_state = 48, .external_lex_state = 70}, - [4402] = {.lex_state = 48, .external_lex_state = 70}, - [4403] = {.lex_state = 48, .external_lex_state = 70}, - [4404] = {.lex_state = 48, .external_lex_state = 70}, - [4405] = {.lex_state = 48, .external_lex_state = 70}, + [4398] = {.lex_state = 186, .external_lex_state = 89}, + [4399] = {.lex_state = 179, .external_lex_state = 73}, + [4400] = {.lex_state = 178, .external_lex_state = 64}, + [4401] = {.lex_state = 178, .external_lex_state = 67}, + [4402] = {.lex_state = 178, .external_lex_state = 64}, + [4403] = {.lex_state = 183, .external_lex_state = 69}, + [4404] = {.lex_state = 183, .external_lex_state = 69}, + [4405] = {.lex_state = 178, .external_lex_state = 64}, [4406] = {.lex_state = 48, .external_lex_state = 70}, [4407] = {.lex_state = 48, .external_lex_state = 70}, - [4408] = {.lex_state = 48, .external_lex_state = 70}, - [4409] = {.lex_state = 48, .external_lex_state = 70}, - [4410] = {.lex_state = 48, .external_lex_state = 70}, - [4411] = {.lex_state = 48, .external_lex_state = 70}, - [4412] = {.lex_state = 48, .external_lex_state = 70}, - [4413] = {.lex_state = 48, .external_lex_state = 70}, - [4414] = {.lex_state = 48, .external_lex_state = 70}, - [4415] = {.lex_state = 48, .external_lex_state = 70}, - [4416] = {.lex_state = 48, .external_lex_state = 70}, - [4417] = {.lex_state = 48, .external_lex_state = 70}, - [4418] = {.lex_state = 48, .external_lex_state = 70}, - [4419] = {.lex_state = 178, .external_lex_state = 65}, - [4420] = {.lex_state = 48, .external_lex_state = 70}, + [4408] = {.lex_state = 178, .external_lex_state = 64}, + [4409] = {.lex_state = 178, .external_lex_state = 64}, + [4410] = {.lex_state = 178, .external_lex_state = 64}, + [4411] = {.lex_state = 178, .external_lex_state = 64}, + [4412] = {.lex_state = 178, .external_lex_state = 64}, + [4413] = {.lex_state = 178, .external_lex_state = 64}, + [4414] = {.lex_state = 178, .external_lex_state = 64}, + [4415] = {.lex_state = 178, .external_lex_state = 69}, + [4416] = {.lex_state = 178, .external_lex_state = 69}, + [4417] = {.lex_state = 178, .external_lex_state = 69}, + [4418] = {.lex_state = 178, .external_lex_state = 64}, + [4419] = {.lex_state = 178, .external_lex_state = 64}, + [4420] = {.lex_state = 178, .external_lex_state = 64}, [4421] = {.lex_state = 48, .external_lex_state = 70}, - [4422] = {.lex_state = 48, .external_lex_state = 70}, - [4423] = {.lex_state = 178, .external_lex_state = 65}, - [4424] = {.lex_state = 178, .external_lex_state = 65}, - [4425] = {.lex_state = 178, .external_lex_state = 65}, - [4426] = {.lex_state = 178, .external_lex_state = 65}, - [4427] = {.lex_state = 178, .external_lex_state = 65}, - [4428] = {.lex_state = 178, .external_lex_state = 65}, - [4429] = {.lex_state = 178, .external_lex_state = 65}, - [4430] = {.lex_state = 178, .external_lex_state = 65}, - [4431] = {.lex_state = 178, .external_lex_state = 65}, - [4432] = {.lex_state = 178, .external_lex_state = 65}, - [4433] = {.lex_state = 178, .external_lex_state = 65}, + [4422] = {.lex_state = 178, .external_lex_state = 64}, + [4423] = {.lex_state = 178, .external_lex_state = 64}, + [4424] = {.lex_state = 178, .external_lex_state = 64}, + [4425] = {.lex_state = 179, .external_lex_state = 71}, + [4426] = {.lex_state = 183, .external_lex_state = 92}, + [4427] = {.lex_state = 48, .external_lex_state = 70}, + [4428] = {.lex_state = 178, .external_lex_state = 69}, + [4429] = {.lex_state = 179, .external_lex_state = 69}, + [4430] = {.lex_state = 48, .external_lex_state = 70}, + [4431] = {.lex_state = 48, .external_lex_state = 70}, + [4432] = {.lex_state = 48, .external_lex_state = 70}, + [4433] = {.lex_state = 48, .external_lex_state = 70}, [4434] = {.lex_state = 48, .external_lex_state = 70}, - [4435] = {.lex_state = 178, .external_lex_state = 65}, - [4436] = {.lex_state = 178, .external_lex_state = 65}, - [4437] = {.lex_state = 178, .external_lex_state = 65}, - [4438] = {.lex_state = 178, .external_lex_state = 65}, - [4439] = {.lex_state = 178, .external_lex_state = 65}, - [4440] = {.lex_state = 48, .external_lex_state = 70}, + [4435] = {.lex_state = 178, .external_lex_state = 69}, + [4436] = {.lex_state = 48, .external_lex_state = 70}, + [4437] = {.lex_state = 48, .external_lex_state = 70}, + [4438] = {.lex_state = 48, .external_lex_state = 70}, + [4439] = {.lex_state = 23, .external_lex_state = 70}, + [4440] = {.lex_state = 178, .external_lex_state = 71}, [4441] = {.lex_state = 48, .external_lex_state = 70}, [4442] = {.lex_state = 48, .external_lex_state = 70}, - [4443] = {.lex_state = 178, .external_lex_state = 65}, - [4444] = {.lex_state = 178, .external_lex_state = 65}, - [4445] = {.lex_state = 48, .external_lex_state = 70}, + [4443] = {.lex_state = 178, .external_lex_state = 67}, + [4444] = {.lex_state = 48, .external_lex_state = 70}, + [4445] = {.lex_state = 23, .external_lex_state = 70}, [4446] = {.lex_state = 48, .external_lex_state = 70}, [4447] = {.lex_state = 48, .external_lex_state = 70}, - [4448] = {.lex_state = 178, .external_lex_state = 67}, - [4449] = {.lex_state = 48, .external_lex_state = 70}, - [4450] = {.lex_state = 48, .external_lex_state = 70}, - [4451] = {.lex_state = 48, .external_lex_state = 70}, + [4448] = {.lex_state = 48, .external_lex_state = 70}, + [4449] = {.lex_state = 178, .external_lex_state = 71}, + [4450] = {.lex_state = 23, .external_lex_state = 70}, + [4451] = {.lex_state = 178, .external_lex_state = 71}, [4452] = {.lex_state = 48, .external_lex_state = 70}, - [4453] = {.lex_state = 48, .external_lex_state = 70}, - [4454] = {.lex_state = 48, .external_lex_state = 70}, + [4453] = {.lex_state = 178, .external_lex_state = 71}, + [4454] = {.lex_state = 178, .external_lex_state = 71}, [4455] = {.lex_state = 48, .external_lex_state = 70}, [4456] = {.lex_state = 48, .external_lex_state = 70}, - [4457] = {.lex_state = 48, .external_lex_state = 70}, + [4457] = {.lex_state = 178, .external_lex_state = 67}, [4458] = {.lex_state = 48, .external_lex_state = 70}, [4459] = {.lex_state = 48, .external_lex_state = 70}, - [4460] = {.lex_state = 178, .external_lex_state = 65}, + [4460] = {.lex_state = 48, .external_lex_state = 70}, [4461] = {.lex_state = 48, .external_lex_state = 70}, [4462] = {.lex_state = 48, .external_lex_state = 70}, [4463] = {.lex_state = 48, .external_lex_state = 70}, - [4464] = {.lex_state = 48, .external_lex_state = 70}, + [4464] = {.lex_state = 50, .external_lex_state = 67}, [4465] = {.lex_state = 48, .external_lex_state = 70}, [4466] = {.lex_state = 48, .external_lex_state = 70}, [4467] = {.lex_state = 48, .external_lex_state = 70}, [4468] = {.lex_state = 48, .external_lex_state = 70}, [4469] = {.lex_state = 48, .external_lex_state = 70}, [4470] = {.lex_state = 48, .external_lex_state = 70}, - [4471] = {.lex_state = 48, .external_lex_state = 70}, - [4472] = {.lex_state = 48, .external_lex_state = 70}, - [4473] = {.lex_state = 178, .external_lex_state = 65}, - [4474] = {.lex_state = 48, .external_lex_state = 70}, - [4475] = {.lex_state = 48, .external_lex_state = 70}, - [4476] = {.lex_state = 48, .external_lex_state = 70}, - [4477] = {.lex_state = 48, .external_lex_state = 70}, - [4478] = {.lex_state = 48, .external_lex_state = 70}, - [4479] = {.lex_state = 178, .external_lex_state = 65}, - [4480] = {.lex_state = 48, .external_lex_state = 70}, - [4481] = {.lex_state = 48, .external_lex_state = 70}, + [4471] = {.lex_state = 23, .external_lex_state = 70}, + [4472] = {.lex_state = 178, .external_lex_state = 67}, + [4473] = {.lex_state = 178, .external_lex_state = 67}, + [4474] = {.lex_state = 178, .external_lex_state = 67}, + [4475] = {.lex_state = 178, .external_lex_state = 67}, + [4476] = {.lex_state = 178, .external_lex_state = 67}, + [4477] = {.lex_state = 178, .external_lex_state = 67}, + [4478] = {.lex_state = 178, .external_lex_state = 67}, + [4479] = {.lex_state = 178, .external_lex_state = 67}, + [4480] = {.lex_state = 178, .external_lex_state = 71}, + [4481] = {.lex_state = 23, .external_lex_state = 70}, [4482] = {.lex_state = 48, .external_lex_state = 70}, - [4483] = {.lex_state = 48, .external_lex_state = 70}, - [4484] = {.lex_state = 48, .external_lex_state = 70}, - [4485] = {.lex_state = 48, .external_lex_state = 70}, + [4483] = {.lex_state = 178, .external_lex_state = 71}, + [4484] = {.lex_state = 181, .external_lex_state = 67}, + [4485] = {.lex_state = 181, .external_lex_state = 67}, [4486] = {.lex_state = 48, .external_lex_state = 70}, - [4487] = {.lex_state = 48, .external_lex_state = 70}, + [4487] = {.lex_state = 178, .external_lex_state = 64}, [4488] = {.lex_state = 48, .external_lex_state = 70}, [4489] = {.lex_state = 48, .external_lex_state = 70}, - [4490] = {.lex_state = 48, .external_lex_state = 70}, - [4491] = {.lex_state = 48, .external_lex_state = 70}, - [4492] = {.lex_state = 48, .external_lex_state = 70}, - [4493] = {.lex_state = 48, .external_lex_state = 70}, - [4494] = {.lex_state = 48, .external_lex_state = 70}, - [4495] = {.lex_state = 48, .external_lex_state = 70}, - [4496] = {.lex_state = 48, .external_lex_state = 70}, - [4497] = {.lex_state = 48, .external_lex_state = 70}, + [4490] = {.lex_state = 178, .external_lex_state = 67}, + [4491] = {.lex_state = 178, .external_lex_state = 64}, + [4492] = {.lex_state = 178, .external_lex_state = 64}, + [4493] = {.lex_state = 178, .external_lex_state = 64}, + [4494] = {.lex_state = 178, .external_lex_state = 67}, + [4495] = {.lex_state = 181, .external_lex_state = 67}, + [4496] = {.lex_state = 178, .external_lex_state = 67}, + [4497] = {.lex_state = 186, .external_lex_state = 89}, [4498] = {.lex_state = 48, .external_lex_state = 70}, [4499] = {.lex_state = 48, .external_lex_state = 70}, [4500] = {.lex_state = 48, .external_lex_state = 70}, - [4501] = {.lex_state = 178, .external_lex_state = 71}, + [4501] = {.lex_state = 178, .external_lex_state = 69}, [4502] = {.lex_state = 48, .external_lex_state = 70}, [4503] = {.lex_state = 48, .external_lex_state = 70}, [4504] = {.lex_state = 48, .external_lex_state = 70}, [4505] = {.lex_state = 48, .external_lex_state = 70}, [4506] = {.lex_state = 48, .external_lex_state = 70}, - [4507] = {.lex_state = 48, .external_lex_state = 70}, - [4508] = {.lex_state = 178, .external_lex_state = 71}, - [4509] = {.lex_state = 178, .external_lex_state = 71}, - [4510] = {.lex_state = 178, .external_lex_state = 69}, - [4511] = {.lex_state = 178, .external_lex_state = 69}, - [4512] = {.lex_state = 178, .external_lex_state = 69}, - [4513] = {.lex_state = 48, .external_lex_state = 70}, - [4514] = {.lex_state = 48, .external_lex_state = 70}, - [4515] = {.lex_state = 48, .external_lex_state = 70}, - [4516] = {.lex_state = 48, .external_lex_state = 70}, - [4517] = {.lex_state = 48, .external_lex_state = 70}, + [4507] = {.lex_state = 186, .external_lex_state = 89}, + [4508] = {.lex_state = 48, .external_lex_state = 70}, + [4509] = {.lex_state = 48, .external_lex_state = 70}, + [4510] = {.lex_state = 48, .external_lex_state = 70}, + [4511] = {.lex_state = 48, .external_lex_state = 70}, + [4512] = {.lex_state = 178, .external_lex_state = 67}, + [4513] = {.lex_state = 178, .external_lex_state = 67}, + [4514] = {.lex_state = 178, .external_lex_state = 71}, + [4515] = {.lex_state = 178, .external_lex_state = 71}, + [4516] = {.lex_state = 178, .external_lex_state = 67}, + [4517] = {.lex_state = 178, .external_lex_state = 71}, [4518] = {.lex_state = 178, .external_lex_state = 71}, - [4519] = {.lex_state = 48, .external_lex_state = 70}, - [4520] = {.lex_state = 48, .external_lex_state = 70}, + [4519] = {.lex_state = 178, .external_lex_state = 71}, + [4520] = {.lex_state = 178, .external_lex_state = 64}, [4521] = {.lex_state = 48, .external_lex_state = 70}, - [4522] = {.lex_state = 48, .external_lex_state = 70}, + [4522] = {.lex_state = 178, .external_lex_state = 71}, [4523] = {.lex_state = 178, .external_lex_state = 71}, [4524] = {.lex_state = 178, .external_lex_state = 71}, [4525] = {.lex_state = 178, .external_lex_state = 71}, - [4526] = {.lex_state = 178, .external_lex_state = 71}, - [4527] = {.lex_state = 48, .external_lex_state = 70}, - [4528] = {.lex_state = 48, .external_lex_state = 70}, - [4529] = {.lex_state = 178, .external_lex_state = 67}, - [4530] = {.lex_state = 178, .external_lex_state = 67}, + [4526] = {.lex_state = 179, .external_lex_state = 72}, + [4527] = {.lex_state = 178, .external_lex_state = 71}, + [4528] = {.lex_state = 178, .external_lex_state = 69}, + [4529] = {.lex_state = 178, .external_lex_state = 71}, + [4530] = {.lex_state = 178, .external_lex_state = 71}, [4531] = {.lex_state = 178, .external_lex_state = 67}, - [4532] = {.lex_state = 178, .external_lex_state = 67}, - [4533] = {.lex_state = 178, .external_lex_state = 67}, - [4534] = {.lex_state = 178, .external_lex_state = 67}, + [4532] = {.lex_state = 179, .external_lex_state = 69}, + [4533] = {.lex_state = 178, .external_lex_state = 64}, + [4534] = {.lex_state = 48, .external_lex_state = 70}, [4535] = {.lex_state = 48, .external_lex_state = 70}, [4536] = {.lex_state = 48, .external_lex_state = 70}, - [4537] = {.lex_state = 48, .external_lex_state = 70}, - [4538] = {.lex_state = 48, .external_lex_state = 70}, + [4537] = {.lex_state = 178, .external_lex_state = 91}, + [4538] = {.lex_state = 178, .external_lex_state = 71}, [4539] = {.lex_state = 48, .external_lex_state = 70}, - [4540] = {.lex_state = 178, .external_lex_state = 71}, - [4541] = {.lex_state = 48, .external_lex_state = 70}, - [4542] = {.lex_state = 48, .external_lex_state = 70}, - [4543] = {.lex_state = 48, .external_lex_state = 70}, + [4540] = {.lex_state = 48, .external_lex_state = 70}, + [4541] = {.lex_state = 178, .external_lex_state = 91}, + [4542] = {.lex_state = 178, .external_lex_state = 69}, + [4543] = {.lex_state = 178, .external_lex_state = 67}, [4544] = {.lex_state = 48, .external_lex_state = 70}, [4545] = {.lex_state = 48, .external_lex_state = 70}, - [4546] = {.lex_state = 48, .external_lex_state = 70}, - [4547] = {.lex_state = 48, .external_lex_state = 70}, + [4546] = {.lex_state = 178, .external_lex_state = 69}, + [4547] = {.lex_state = 181, .external_lex_state = 67}, [4548] = {.lex_state = 48, .external_lex_state = 70}, - [4549] = {.lex_state = 178, .external_lex_state = 71}, + [4549] = {.lex_state = 48, .external_lex_state = 70}, [4550] = {.lex_state = 48, .external_lex_state = 70}, [4551] = {.lex_state = 48, .external_lex_state = 70}, [4552] = {.lex_state = 48, .external_lex_state = 70}, [4553] = {.lex_state = 48, .external_lex_state = 70}, - [4554] = {.lex_state = 178, .external_lex_state = 69}, - [4555] = {.lex_state = 178, .external_lex_state = 69}, - [4556] = {.lex_state = 178, .external_lex_state = 69}, - [4557] = {.lex_state = 178, .external_lex_state = 69}, - [4558] = {.lex_state = 178, .external_lex_state = 69}, - [4559] = {.lex_state = 178, .external_lex_state = 69}, - [4560] = {.lex_state = 178, .external_lex_state = 69}, - [4561] = {.lex_state = 178, .external_lex_state = 69}, - [4562] = {.lex_state = 178, .external_lex_state = 69}, - [4563] = {.lex_state = 178, .external_lex_state = 69}, - [4564] = {.lex_state = 178, .external_lex_state = 71}, + [4554] = {.lex_state = 48, .external_lex_state = 70}, + [4555] = {.lex_state = 183, .external_lex_state = 69}, + [4556] = {.lex_state = 48, .external_lex_state = 70}, + [4557] = {.lex_state = 48, .external_lex_state = 70}, + [4558] = {.lex_state = 48, .external_lex_state = 70}, + [4559] = {.lex_state = 48, .external_lex_state = 70}, + [4560] = {.lex_state = 48, .external_lex_state = 70}, + [4561] = {.lex_state = 178, .external_lex_state = 67}, + [4562] = {.lex_state = 178, .external_lex_state = 67}, + [4563] = {.lex_state = 48, .external_lex_state = 70}, + [4564] = {.lex_state = 48, .external_lex_state = 70}, [4565] = {.lex_state = 48, .external_lex_state = 70}, [4566] = {.lex_state = 48, .external_lex_state = 70}, [4567] = {.lex_state = 48, .external_lex_state = 70}, [4568] = {.lex_state = 48, .external_lex_state = 70}, [4569] = {.lex_state = 48, .external_lex_state = 70}, [4570] = {.lex_state = 48, .external_lex_state = 70}, - [4571] = {.lex_state = 48, .external_lex_state = 70}, - [4572] = {.lex_state = 48, .external_lex_state = 70}, - [4573] = {.lex_state = 48, .external_lex_state = 70}, + [4571] = {.lex_state = 178, .external_lex_state = 71}, + [4572] = {.lex_state = 178, .external_lex_state = 69}, + [4573] = {.lex_state = 178, .external_lex_state = 71}, [4574] = {.lex_state = 48, .external_lex_state = 70}, - [4575] = {.lex_state = 48, .external_lex_state = 70}, - [4576] = {.lex_state = 48, .external_lex_state = 70}, - [4577] = {.lex_state = 48, .external_lex_state = 70}, - [4578] = {.lex_state = 48, .external_lex_state = 70}, - [4579] = {.lex_state = 48, .external_lex_state = 70}, - [4580] = {.lex_state = 179, .external_lex_state = 69}, - [4581] = {.lex_state = 178, .external_lex_state = 67}, - [4582] = {.lex_state = 49, .external_lex_state = 70}, - [4583] = {.lex_state = 48, .external_lex_state = 70}, - [4584] = {.lex_state = 178, .external_lex_state = 69}, - [4585] = {.lex_state = 178, .external_lex_state = 69}, + [4575] = {.lex_state = 178, .external_lex_state = 69}, + [4576] = {.lex_state = 178, .external_lex_state = 69}, + [4577] = {.lex_state = 178, .external_lex_state = 69}, + [4578] = {.lex_state = 178, .external_lex_state = 69}, + [4579] = {.lex_state = 178, .external_lex_state = 69}, + [4580] = {.lex_state = 178, .external_lex_state = 69}, + [4581] = {.lex_state = 178, .external_lex_state = 69}, + [4582] = {.lex_state = 178, .external_lex_state = 69}, + [4583] = {.lex_state = 178, .external_lex_state = 69}, + [4584] = {.lex_state = 48, .external_lex_state = 70}, + [4585] = {.lex_state = 178, .external_lex_state = 71}, [4586] = {.lex_state = 178, .external_lex_state = 69}, - [4587] = {.lex_state = 178, .external_lex_state = 69}, - [4588] = {.lex_state = 178, .external_lex_state = 69}, - [4589] = {.lex_state = 178, .external_lex_state = 69}, - [4590] = {.lex_state = 178, .external_lex_state = 69}, - [4591] = {.lex_state = 178, .external_lex_state = 69}, - [4592] = {.lex_state = 178, .external_lex_state = 69}, - [4593] = {.lex_state = 178, .external_lex_state = 69}, - [4594] = {.lex_state = 178, .external_lex_state = 69}, - [4595] = {.lex_state = 178, .external_lex_state = 69}, - [4596] = {.lex_state = 178, .external_lex_state = 69}, - [4597] = {.lex_state = 178, .external_lex_state = 69}, - [4598] = {.lex_state = 178, .external_lex_state = 69}, - [4599] = {.lex_state = 178, .external_lex_state = 69}, - [4600] = {.lex_state = 178, .external_lex_state = 69}, - [4601] = {.lex_state = 178, .external_lex_state = 69}, - [4602] = {.lex_state = 178, .external_lex_state = 69}, - [4603] = {.lex_state = 178, .external_lex_state = 69}, - [4604] = {.lex_state = 178, .external_lex_state = 69}, + [4587] = {.lex_state = 178, .external_lex_state = 67}, + [4588] = {.lex_state = 48, .external_lex_state = 70}, + [4589] = {.lex_state = 48, .external_lex_state = 70}, + [4590] = {.lex_state = 178, .external_lex_state = 67}, + [4591] = {.lex_state = 178, .external_lex_state = 71}, + [4592] = {.lex_state = 48, .external_lex_state = 70}, + [4593] = {.lex_state = 48, .external_lex_state = 70}, + [4594] = {.lex_state = 48, .external_lex_state = 70}, + [4595] = {.lex_state = 178, .external_lex_state = 84}, + [4596] = {.lex_state = 48, .external_lex_state = 70}, + [4597] = {.lex_state = 48, .external_lex_state = 70}, + [4598] = {.lex_state = 48, .external_lex_state = 70}, + [4599] = {.lex_state = 48, .external_lex_state = 70}, + [4600] = {.lex_state = 48, .external_lex_state = 70}, + [4601] = {.lex_state = 48, .external_lex_state = 70}, + [4602] = {.lex_state = 178, .external_lex_state = 71}, + [4603] = {.lex_state = 48, .external_lex_state = 70}, + [4604] = {.lex_state = 48, .external_lex_state = 70}, [4605] = {.lex_state = 178, .external_lex_state = 69}, [4606] = {.lex_state = 178, .external_lex_state = 69}, [4607] = {.lex_state = 178, .external_lex_state = 69}, [4608] = {.lex_state = 178, .external_lex_state = 69}, [4609] = {.lex_state = 178, .external_lex_state = 69}, - [4610] = {.lex_state = 178, .external_lex_state = 69}, + [4610] = {.lex_state = 178, .external_lex_state = 70}, [4611] = {.lex_state = 178, .external_lex_state = 69}, [4612] = {.lex_state = 178, .external_lex_state = 69}, - [4613] = {.lex_state = 178, .external_lex_state = 69}, - [4614] = {.lex_state = 178, .external_lex_state = 69}, - [4615] = {.lex_state = 178, .external_lex_state = 69}, - [4616] = {.lex_state = 178, .external_lex_state = 69}, - [4617] = {.lex_state = 178, .external_lex_state = 69}, + [4613] = {.lex_state = 178, .external_lex_state = 70}, + [4614] = {.lex_state = 178, .external_lex_state = 73}, + [4615] = {.lex_state = 48, .external_lex_state = 70}, + [4616] = {.lex_state = 48, .external_lex_state = 70}, + [4617] = {.lex_state = 48, .external_lex_state = 70}, [4618] = {.lex_state = 178, .external_lex_state = 69}, [4619] = {.lex_state = 178, .external_lex_state = 69}, [4620] = {.lex_state = 178, .external_lex_state = 69}, [4621] = {.lex_state = 178, .external_lex_state = 69}, [4622] = {.lex_state = 178, .external_lex_state = 69}, [4623] = {.lex_state = 178, .external_lex_state = 69}, - [4624] = {.lex_state = 178, .external_lex_state = 69}, - [4625] = {.lex_state = 178, .external_lex_state = 69}, - [4626] = {.lex_state = 178, .external_lex_state = 69}, + [4624] = {.lex_state = 178, .external_lex_state = 70}, + [4625] = {.lex_state = 178, .external_lex_state = 73}, + [4626] = {.lex_state = 48, .external_lex_state = 70}, [4627] = {.lex_state = 178, .external_lex_state = 69}, - [4628] = {.lex_state = 178, .external_lex_state = 69}, - [4629] = {.lex_state = 178, .external_lex_state = 69}, + [4628] = {.lex_state = 48, .external_lex_state = 70}, + [4629] = {.lex_state = 48, .external_lex_state = 70}, [4630] = {.lex_state = 178, .external_lex_state = 69}, [4631] = {.lex_state = 178, .external_lex_state = 69}, [4632] = {.lex_state = 178, .external_lex_state = 69}, [4633] = {.lex_state = 178, .external_lex_state = 69}, - [4634] = {.lex_state = 178, .external_lex_state = 69}, + [4634] = {.lex_state = 178, .external_lex_state = 73}, [4635] = {.lex_state = 178, .external_lex_state = 69}, - [4636] = {.lex_state = 178, .external_lex_state = 69}, - [4637] = {.lex_state = 178, .external_lex_state = 69}, + [4636] = {.lex_state = 178, .external_lex_state = 70}, + [4637] = {.lex_state = 178, .external_lex_state = 92}, [4638] = {.lex_state = 178, .external_lex_state = 69}, - [4639] = {.lex_state = 51, .external_lex_state = 67}, + [4639] = {.lex_state = 178, .external_lex_state = 69}, [4640] = {.lex_state = 178, .external_lex_state = 69}, - [4641] = {.lex_state = 178, .external_lex_state = 69}, - [4642] = {.lex_state = 183, .external_lex_state = 82}, - [4643] = {.lex_state = 178, .external_lex_state = 69}, + [4641] = {.lex_state = 178, .external_lex_state = 73}, + [4642] = {.lex_state = 178, .external_lex_state = 70}, + [4643] = {.lex_state = 178, .external_lex_state = 73}, [4644] = {.lex_state = 178, .external_lex_state = 69}, - [4645] = {.lex_state = 178, .external_lex_state = 69}, - [4646] = {.lex_state = 178, .external_lex_state = 69}, + [4645] = {.lex_state = 183, .external_lex_state = 70}, + [4646] = {.lex_state = 181, .external_lex_state = 67}, [4647] = {.lex_state = 178, .external_lex_state = 69}, - [4648] = {.lex_state = 178, .external_lex_state = 69}, - [4649] = {.lex_state = 50, .external_lex_state = 67}, - [4650] = {.lex_state = 63, .external_lex_state = 82}, - [4651] = {.lex_state = 178, .external_lex_state = 70}, - [4652] = {.lex_state = 179, .external_lex_state = 72}, - [4653] = {.lex_state = 178, .external_lex_state = 72}, - [4654] = {.lex_state = 178, .external_lex_state = 72}, - [4655] = {.lex_state = 178, .external_lex_state = 72}, - [4656] = {.lex_state = 178, .external_lex_state = 72}, - [4657] = {.lex_state = 178, .external_lex_state = 71}, - [4658] = {.lex_state = 178, .external_lex_state = 73}, - [4659] = {.lex_state = 178, .external_lex_state = 72}, - [4660] = {.lex_state = 178, .external_lex_state = 72}, - [4661] = {.lex_state = 178, .external_lex_state = 72}, - [4662] = {.lex_state = 178, .external_lex_state = 72}, - [4663] = {.lex_state = 181, .external_lex_state = 67}, - [4664] = {.lex_state = 23, .external_lex_state = 70}, - [4665] = {.lex_state = 181, .external_lex_state = 67}, - [4666] = {.lex_state = 181, .external_lex_state = 67}, - [4667] = {.lex_state = 181, .external_lex_state = 67}, + [4648] = {.lex_state = 23, .external_lex_state = 70}, + [4649] = {.lex_state = 178, .external_lex_state = 70}, + [4650] = {.lex_state = 181, .external_lex_state = 67}, + [4651] = {.lex_state = 181, .external_lex_state = 67}, + [4652] = {.lex_state = 181, .external_lex_state = 67}, + [4653] = {.lex_state = 181, .external_lex_state = 67}, + [4654] = {.lex_state = 181, .external_lex_state = 67}, + [4655] = {.lex_state = 181, .external_lex_state = 67}, + [4656] = {.lex_state = 181, .external_lex_state = 67}, + [4657] = {.lex_state = 181, .external_lex_state = 67}, + [4658] = {.lex_state = 178, .external_lex_state = 69}, + [4659] = {.lex_state = 181, .external_lex_state = 67}, + [4660] = {.lex_state = 181, .external_lex_state = 67}, + [4661] = {.lex_state = 181, .external_lex_state = 67}, + [4662] = {.lex_state = 181, .external_lex_state = 67}, + [4663] = {.lex_state = 178, .external_lex_state = 69}, + [4664] = {.lex_state = 181, .external_lex_state = 67}, + [4665] = {.lex_state = 178, .external_lex_state = 72}, + [4666] = {.lex_state = 178, .external_lex_state = 70}, + [4667] = {.lex_state = 178, .external_lex_state = 72}, [4668] = {.lex_state = 181, .external_lex_state = 67}, - [4669] = {.lex_state = 181, .external_lex_state = 67}, + [4669] = {.lex_state = 178, .external_lex_state = 69}, [4670] = {.lex_state = 181, .external_lex_state = 67}, [4671] = {.lex_state = 181, .external_lex_state = 67}, - [4672] = {.lex_state = 181, .external_lex_state = 67}, - [4673] = {.lex_state = 181, .external_lex_state = 67}, - [4674] = {.lex_state = 181, .external_lex_state = 67}, + [4672] = {.lex_state = 178, .external_lex_state = 69}, + [4673] = {.lex_state = 178, .external_lex_state = 69}, + [4674] = {.lex_state = 178, .external_lex_state = 69}, [4675] = {.lex_state = 181, .external_lex_state = 67}, [4676] = {.lex_state = 181, .external_lex_state = 67}, - [4677] = {.lex_state = 181, .external_lex_state = 67}, - [4678] = {.lex_state = 181, .external_lex_state = 67}, - [4679] = {.lex_state = 181, .external_lex_state = 67}, - [4680] = {.lex_state = 181, .external_lex_state = 67}, - [4681] = {.lex_state = 181, .external_lex_state = 67}, - [4682] = {.lex_state = 181, .external_lex_state = 67}, - [4683] = {.lex_state = 178, .external_lex_state = 70}, - [4684] = {.lex_state = 178, .external_lex_state = 70}, - [4685] = {.lex_state = 178, .external_lex_state = 70}, - [4686] = {.lex_state = 178, .external_lex_state = 70}, - [4687] = {.lex_state = 178, .external_lex_state = 70}, - [4688] = {.lex_state = 178, .external_lex_state = 70}, - [4689] = {.lex_state = 178, .external_lex_state = 70}, - [4690] = {.lex_state = 178, .external_lex_state = 73}, + [4677] = {.lex_state = 178, .external_lex_state = 69}, + [4678] = {.lex_state = 178, .external_lex_state = 69}, + [4679] = {.lex_state = 178, .external_lex_state = 69}, + [4680] = {.lex_state = 178, .external_lex_state = 70}, + [4681] = {.lex_state = 178, .external_lex_state = 70}, + [4682] = {.lex_state = 178, .external_lex_state = 69}, + [4683] = {.lex_state = 178, .external_lex_state = 69}, + [4684] = {.lex_state = 178, .external_lex_state = 69}, + [4685] = {.lex_state = 178, .external_lex_state = 69}, + [4686] = {.lex_state = 178, .external_lex_state = 69}, + [4687] = {.lex_state = 178, .external_lex_state = 69}, + [4688] = {.lex_state = 178, .external_lex_state = 69}, + [4689] = {.lex_state = 178, .external_lex_state = 69}, + [4690] = {.lex_state = 178, .external_lex_state = 70}, [4691] = {.lex_state = 178, .external_lex_state = 69}, - [4692] = {.lex_state = 178, .external_lex_state = 70}, - [4693] = {.lex_state = 178, .external_lex_state = 73}, + [4692] = {.lex_state = 178, .external_lex_state = 69}, + [4693] = {.lex_state = 178, .external_lex_state = 69}, [4694] = {.lex_state = 178, .external_lex_state = 69}, [4695] = {.lex_state = 178, .external_lex_state = 69}, [4696] = {.lex_state = 178, .external_lex_state = 69}, @@ -25023,31 +25145,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4700] = {.lex_state = 178, .external_lex_state = 70}, [4701] = {.lex_state = 178, .external_lex_state = 69}, [4702] = {.lex_state = 178, .external_lex_state = 69}, - [4703] = {.lex_state = 178, .external_lex_state = 70}, + [4703] = {.lex_state = 178, .external_lex_state = 69}, [4704] = {.lex_state = 178, .external_lex_state = 69}, [4705] = {.lex_state = 178, .external_lex_state = 69}, [4706] = {.lex_state = 178, .external_lex_state = 69}, [4707] = {.lex_state = 178, .external_lex_state = 69}, [4708] = {.lex_state = 178, .external_lex_state = 69}, - [4709] = {.lex_state = 178, .external_lex_state = 70}, - [4710] = {.lex_state = 178, .external_lex_state = 70}, - [4711] = {.lex_state = 183, .external_lex_state = 70}, - [4712] = {.lex_state = 178, .external_lex_state = 70}, + [4709] = {.lex_state = 178, .external_lex_state = 69}, + [4710] = {.lex_state = 178, .external_lex_state = 69}, + [4711] = {.lex_state = 178, .external_lex_state = 69}, + [4712] = {.lex_state = 178, .external_lex_state = 69}, [4713] = {.lex_state = 178, .external_lex_state = 69}, [4714] = {.lex_state = 178, .external_lex_state = 69}, [4715] = {.lex_state = 178, .external_lex_state = 69}, - [4716] = {.lex_state = 178, .external_lex_state = 69}, - [4717] = {.lex_state = 178, .external_lex_state = 69}, - [4718] = {.lex_state = 178, .external_lex_state = 69}, + [4716] = {.lex_state = 50, .external_lex_state = 67}, + [4717] = {.lex_state = 63, .external_lex_state = 83}, + [4718] = {.lex_state = 178, .external_lex_state = 70}, [4719] = {.lex_state = 178, .external_lex_state = 69}, [4720] = {.lex_state = 178, .external_lex_state = 69}, [4721] = {.lex_state = 178, .external_lex_state = 69}, [4722] = {.lex_state = 178, .external_lex_state = 69}, [4723] = {.lex_state = 178, .external_lex_state = 69}, - [4724] = {.lex_state = 178, .external_lex_state = 70}, + [4724] = {.lex_state = 178, .external_lex_state = 69}, [4725] = {.lex_state = 178, .external_lex_state = 69}, - [4726] = {.lex_state = 178, .external_lex_state = 70}, - [4727] = {.lex_state = 178, .external_lex_state = 70}, + [4726] = {.lex_state = 178, .external_lex_state = 69}, + [4727] = {.lex_state = 178, .external_lex_state = 69}, [4728] = {.lex_state = 178, .external_lex_state = 69}, [4729] = {.lex_state = 178, .external_lex_state = 69}, [4730] = {.lex_state = 178, .external_lex_state = 69}, @@ -25061,46 +25183,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4738] = {.lex_state = 178, .external_lex_state = 69}, [4739] = {.lex_state = 178, .external_lex_state = 69}, [4740] = {.lex_state = 178, .external_lex_state = 69}, - [4741] = {.lex_state = 178, .external_lex_state = 70}, + [4741] = {.lex_state = 178, .external_lex_state = 69}, [4742] = {.lex_state = 178, .external_lex_state = 69}, - [4743] = {.lex_state = 178, .external_lex_state = 70}, + [4743] = {.lex_state = 178, .external_lex_state = 69}, [4744] = {.lex_state = 178, .external_lex_state = 69}, [4745] = {.lex_state = 178, .external_lex_state = 69}, - [4746] = {.lex_state = 178, .external_lex_state = 73}, + [4746] = {.lex_state = 178, .external_lex_state = 69}, [4747] = {.lex_state = 178, .external_lex_state = 70}, - [4748] = {.lex_state = 178, .external_lex_state = 70}, + [4748] = {.lex_state = 178, .external_lex_state = 69}, [4749] = {.lex_state = 178, .external_lex_state = 69}, - [4750] = {.lex_state = 178, .external_lex_state = 69}, + [4750] = {.lex_state = 178, .external_lex_state = 72}, [4751] = {.lex_state = 178, .external_lex_state = 69}, [4752] = {.lex_state = 178, .external_lex_state = 69}, [4753] = {.lex_state = 178, .external_lex_state = 69}, [4754] = {.lex_state = 178, .external_lex_state = 69}, [4755] = {.lex_state = 178, .external_lex_state = 69}, - [4756] = {.lex_state = 178, .external_lex_state = 70}, + [4756] = {.lex_state = 178, .external_lex_state = 69}, [4757] = {.lex_state = 178, .external_lex_state = 69}, [4758] = {.lex_state = 178, .external_lex_state = 69}, [4759] = {.lex_state = 178, .external_lex_state = 69}, [4760] = {.lex_state = 178, .external_lex_state = 69}, - [4761] = {.lex_state = 178, .external_lex_state = 69}, - [4762] = {.lex_state = 23, .external_lex_state = 74}, + [4761] = {.lex_state = 178, .external_lex_state = 70}, + [4762] = {.lex_state = 178, .external_lex_state = 69}, [4763] = {.lex_state = 178, .external_lex_state = 69}, [4764] = {.lex_state = 178, .external_lex_state = 69}, - [4765] = {.lex_state = 178, .external_lex_state = 69}, - [4766] = {.lex_state = 23, .external_lex_state = 74}, - [4767] = {.lex_state = 23, .external_lex_state = 74}, - [4768] = {.lex_state = 178, .external_lex_state = 92}, - [4769] = {.lex_state = 48, .external_lex_state = 70}, - [4770] = {.lex_state = 48, .external_lex_state = 70}, - [4771] = {.lex_state = 48, .external_lex_state = 70}, + [4765] = {.lex_state = 181, .external_lex_state = 67}, + [4766] = {.lex_state = 178, .external_lex_state = 69}, + [4767] = {.lex_state = 178, .external_lex_state = 69}, + [4768] = {.lex_state = 178, .external_lex_state = 69}, + [4769] = {.lex_state = 178, .external_lex_state = 73}, + [4770] = {.lex_state = 178, .external_lex_state = 69}, + [4771] = {.lex_state = 178, .external_lex_state = 69}, [4772] = {.lex_state = 178, .external_lex_state = 69}, [4773] = {.lex_state = 178, .external_lex_state = 69}, [4774] = {.lex_state = 178, .external_lex_state = 69}, - [4775] = {.lex_state = 48, .external_lex_state = 70}, - [4776] = {.lex_state = 48, .external_lex_state = 70}, - [4777] = {.lex_state = 23, .external_lex_state = 74}, - [4778] = {.lex_state = 23, .external_lex_state = 74}, - [4779] = {.lex_state = 48, .external_lex_state = 70}, - [4780] = {.lex_state = 178, .external_lex_state = 92}, + [4775] = {.lex_state = 178, .external_lex_state = 69}, + [4776] = {.lex_state = 181, .external_lex_state = 67}, + [4777] = {.lex_state = 181, .external_lex_state = 67}, + [4778] = {.lex_state = 181, .external_lex_state = 67}, + [4779] = {.lex_state = 181, .external_lex_state = 67}, + [4780] = {.lex_state = 178, .external_lex_state = 69}, [4781] = {.lex_state = 178, .external_lex_state = 69}, [4782] = {.lex_state = 178, .external_lex_state = 69}, [4783] = {.lex_state = 178, .external_lex_state = 69}, @@ -25109,12 +25231,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4786] = {.lex_state = 178, .external_lex_state = 69}, [4787] = {.lex_state = 178, .external_lex_state = 69}, [4788] = {.lex_state = 178, .external_lex_state = 69}, - [4789] = {.lex_state = 178, .external_lex_state = 69}, + [4789] = {.lex_state = 178, .external_lex_state = 72}, [4790] = {.lex_state = 178, .external_lex_state = 69}, - [4791] = {.lex_state = 178, .external_lex_state = 69}, - [4792] = {.lex_state = 178, .external_lex_state = 69}, - [4793] = {.lex_state = 178, .external_lex_state = 69}, - [4794] = {.lex_state = 178, .external_lex_state = 69}, + [4791] = {.lex_state = 179, .external_lex_state = 72}, + [4792] = {.lex_state = 178, .external_lex_state = 70}, + [4793] = {.lex_state = 178, .external_lex_state = 72}, + [4794] = {.lex_state = 178, .external_lex_state = 72}, [4795] = {.lex_state = 178, .external_lex_state = 69}, [4796] = {.lex_state = 178, .external_lex_state = 69}, [4797] = {.lex_state = 178, .external_lex_state = 69}, @@ -25128,41 +25250,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4805] = {.lex_state = 178, .external_lex_state = 69}, [4806] = {.lex_state = 178, .external_lex_state = 69}, [4807] = {.lex_state = 178, .external_lex_state = 69}, - [4808] = {.lex_state = 178, .external_lex_state = 69}, + [4808] = {.lex_state = 178, .external_lex_state = 70}, [4809] = {.lex_state = 178, .external_lex_state = 69}, [4810] = {.lex_state = 178, .external_lex_state = 69}, [4811] = {.lex_state = 178, .external_lex_state = 69}, [4812] = {.lex_state = 178, .external_lex_state = 69}, [4813] = {.lex_state = 178, .external_lex_state = 69}, [4814] = {.lex_state = 178, .external_lex_state = 69}, - [4815] = {.lex_state = 178, .external_lex_state = 92}, + [4815] = {.lex_state = 178, .external_lex_state = 69}, [4816] = {.lex_state = 178, .external_lex_state = 69}, [4817] = {.lex_state = 178, .external_lex_state = 69}, [4818] = {.lex_state = 178, .external_lex_state = 69}, [4819] = {.lex_state = 178, .external_lex_state = 69}, - [4820] = {.lex_state = 178, .external_lex_state = 69}, + [4820] = {.lex_state = 178, .external_lex_state = 70}, [4821] = {.lex_state = 178, .external_lex_state = 69}, - [4822] = {.lex_state = 181, .external_lex_state = 67}, - [4823] = {.lex_state = 178, .external_lex_state = 69}, - [4824] = {.lex_state = 181, .external_lex_state = 67}, - [4825] = {.lex_state = 181, .external_lex_state = 67}, - [4826] = {.lex_state = 181, .external_lex_state = 67}, - [4827] = {.lex_state = 181, .external_lex_state = 67}, + [4822] = {.lex_state = 178, .external_lex_state = 70}, + [4823] = {.lex_state = 178, .external_lex_state = 70}, + [4824] = {.lex_state = 178, .external_lex_state = 70}, + [4825] = {.lex_state = 178, .external_lex_state = 70}, + [4826] = {.lex_state = 178, .external_lex_state = 69}, + [4827] = {.lex_state = 178, .external_lex_state = 69}, [4828] = {.lex_state = 178, .external_lex_state = 69}, [4829] = {.lex_state = 178, .external_lex_state = 69}, [4830] = {.lex_state = 178, .external_lex_state = 69}, [4831] = {.lex_state = 178, .external_lex_state = 69}, - [4832] = {.lex_state = 178, .external_lex_state = 69}, - [4833] = {.lex_state = 178, .external_lex_state = 69}, - [4834] = {.lex_state = 179, .external_lex_state = 73}, - [4835] = {.lex_state = 178, .external_lex_state = 73}, - [4836] = {.lex_state = 178, .external_lex_state = 69}, + [4832] = {.lex_state = 178, .external_lex_state = 73}, + [4833] = {.lex_state = 178, .external_lex_state = 73}, + [4834] = {.lex_state = 51, .external_lex_state = 67}, + [4835] = {.lex_state = 178, .external_lex_state = 69}, + [4836] = {.lex_state = 183, .external_lex_state = 83}, [4837] = {.lex_state = 178, .external_lex_state = 69}, - [4838] = {.lex_state = 178, .external_lex_state = 69}, - [4839] = {.lex_state = 178, .external_lex_state = 69}, + [4838] = {.lex_state = 178, .external_lex_state = 72}, + [4839] = {.lex_state = 178, .external_lex_state = 72}, [4840] = {.lex_state = 178, .external_lex_state = 69}, - [4841] = {.lex_state = 178, .external_lex_state = 73}, - [4842] = {.lex_state = 178, .external_lex_state = 73}, + [4841] = {.lex_state = 178, .external_lex_state = 69}, + [4842] = {.lex_state = 178, .external_lex_state = 69}, [4843] = {.lex_state = 178, .external_lex_state = 69}, [4844] = {.lex_state = 178, .external_lex_state = 69}, [4845] = {.lex_state = 178, .external_lex_state = 69}, @@ -25171,10 +25293,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4848] = {.lex_state = 178, .external_lex_state = 69}, [4849] = {.lex_state = 178, .external_lex_state = 69}, [4850] = {.lex_state = 178, .external_lex_state = 69}, - [4851] = {.lex_state = 178, .external_lex_state = 73}, - [4852] = {.lex_state = 48, .external_lex_state = 70}, - [4853] = {.lex_state = 48, .external_lex_state = 70}, - [4854] = {.lex_state = 48, .external_lex_state = 70}, + [4851] = {.lex_state = 178, .external_lex_state = 69}, + [4852] = {.lex_state = 23, .external_lex_state = 74}, + [4853] = {.lex_state = 178, .external_lex_state = 69}, + [4854] = {.lex_state = 178, .external_lex_state = 69}, [4855] = {.lex_state = 178, .external_lex_state = 69}, [4856] = {.lex_state = 178, .external_lex_state = 69}, [4857] = {.lex_state = 178, .external_lex_state = 69}, @@ -25182,15 +25304,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4859] = {.lex_state = 178, .external_lex_state = 69}, [4860] = {.lex_state = 178, .external_lex_state = 69}, [4861] = {.lex_state = 178, .external_lex_state = 69}, - [4862] = {.lex_state = 181, .external_lex_state = 67}, - [4863] = {.lex_state = 178, .external_lex_state = 69}, - [4864] = {.lex_state = 178, .external_lex_state = 69}, - [4865] = {.lex_state = 178, .external_lex_state = 69}, - [4866] = {.lex_state = 178, .external_lex_state = 69}, + [4862] = {.lex_state = 23, .external_lex_state = 74}, + [4863] = {.lex_state = 23, .external_lex_state = 74}, + [4864] = {.lex_state = 48, .external_lex_state = 70}, + [4865] = {.lex_state = 48, .external_lex_state = 70}, + [4866] = {.lex_state = 48, .external_lex_state = 70}, [4867] = {.lex_state = 178, .external_lex_state = 69}, [4868] = {.lex_state = 178, .external_lex_state = 69}, [4869] = {.lex_state = 178, .external_lex_state = 69}, - [4870] = {.lex_state = 178, .external_lex_state = 69}, + [4870] = {.lex_state = 178, .external_lex_state = 92}, [4871] = {.lex_state = 178, .external_lex_state = 69}, [4872] = {.lex_state = 178, .external_lex_state = 69}, [4873] = {.lex_state = 178, .external_lex_state = 69}, @@ -25199,354 +25321,354 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4876] = {.lex_state = 178, .external_lex_state = 69}, [4877] = {.lex_state = 178, .external_lex_state = 69}, [4878] = {.lex_state = 178, .external_lex_state = 69}, - [4879] = {.lex_state = 178, .external_lex_state = 72}, - [4880] = {.lex_state = 178, .external_lex_state = 72}, - [4881] = {.lex_state = 178, .external_lex_state = 72}, - [4882] = {.lex_state = 178, .external_lex_state = 72}, - [4883] = {.lex_state = 178, .external_lex_state = 72}, - [4884] = {.lex_state = 178, .external_lex_state = 72}, - [4885] = {.lex_state = 178, .external_lex_state = 72}, - [4886] = {.lex_state = 23, .external_lex_state = 70}, + [4879] = {.lex_state = 178, .external_lex_state = 69}, + [4880] = {.lex_state = 178, .external_lex_state = 69}, + [4881] = {.lex_state = 178, .external_lex_state = 69}, + [4882] = {.lex_state = 178, .external_lex_state = 69}, + [4883] = {.lex_state = 178, .external_lex_state = 69}, + [4884] = {.lex_state = 178, .external_lex_state = 69}, + [4885] = {.lex_state = 178, .external_lex_state = 69}, + [4886] = {.lex_state = 178, .external_lex_state = 70}, [4887] = {.lex_state = 178, .external_lex_state = 69}, - [4888] = {.lex_state = 23, .external_lex_state = 70}, - [4889] = {.lex_state = 178, .external_lex_state = 71}, - [4890] = {.lex_state = 23, .external_lex_state = 70}, - [4891] = {.lex_state = 178, .external_lex_state = 70}, - [4892] = {.lex_state = 23, .external_lex_state = 70}, - [4893] = {.lex_state = 23, .external_lex_state = 70}, - [4894] = {.lex_state = 178, .external_lex_state = 71}, - [4895] = {.lex_state = 178, .external_lex_state = 72}, + [4888] = {.lex_state = 178, .external_lex_state = 69}, + [4889] = {.lex_state = 178, .external_lex_state = 69}, + [4890] = {.lex_state = 178, .external_lex_state = 69}, + [4891] = {.lex_state = 178, .external_lex_state = 69}, + [4892] = {.lex_state = 178, .external_lex_state = 71}, + [4893] = {.lex_state = 179, .external_lex_state = 73}, + [4894] = {.lex_state = 181, .external_lex_state = 67}, + [4895] = {.lex_state = 178, .external_lex_state = 69}, [4896] = {.lex_state = 178, .external_lex_state = 69}, [4897] = {.lex_state = 178, .external_lex_state = 69}, - [4898] = {.lex_state = 178, .external_lex_state = 69}, - [4899] = {.lex_state = 178, .external_lex_state = 69}, - [4900] = {.lex_state = 178, .external_lex_state = 71}, - [4901] = {.lex_state = 178, .external_lex_state = 69}, - [4902] = {.lex_state = 178, .external_lex_state = 71}, - [4903] = {.lex_state = 178, .external_lex_state = 71}, - [4904] = {.lex_state = 178, .external_lex_state = 72}, - [4905] = {.lex_state = 178, .external_lex_state = 69}, - [4906] = {.lex_state = 178, .external_lex_state = 69}, - [4907] = {.lex_state = 178, .external_lex_state = 69}, - [4908] = {.lex_state = 178, .external_lex_state = 69}, - [4909] = {.lex_state = 178, .external_lex_state = 69}, - [4910] = {.lex_state = 178, .external_lex_state = 69}, - [4911] = {.lex_state = 23, .external_lex_state = 74}, - [4912] = {.lex_state = 178, .external_lex_state = 72}, - [4913] = {.lex_state = 178, .external_lex_state = 69}, - [4914] = {.lex_state = 178, .external_lex_state = 69}, - [4915] = {.lex_state = 178, .external_lex_state = 69}, - [4916] = {.lex_state = 178, .external_lex_state = 70}, - [4917] = {.lex_state = 178, .external_lex_state = 69}, - [4918] = {.lex_state = 178, .external_lex_state = 69}, - [4919] = {.lex_state = 178, .external_lex_state = 70}, - [4920] = {.lex_state = 178, .external_lex_state = 73}, - [4921] = {.lex_state = 181, .external_lex_state = 82}, - [4922] = {.lex_state = 178, .external_lex_state = 70}, + [4898] = {.lex_state = 23, .external_lex_state = 74}, + [4899] = {.lex_state = 23, .external_lex_state = 74}, + [4900] = {.lex_state = 178, .external_lex_state = 69}, + [4901] = {.lex_state = 178, .external_lex_state = 92}, + [4902] = {.lex_state = 178, .external_lex_state = 69}, + [4903] = {.lex_state = 178, .external_lex_state = 73}, + [4904] = {.lex_state = 178, .external_lex_state = 69}, + [4905] = {.lex_state = 183, .external_lex_state = 92}, + [4906] = {.lex_state = 178, .external_lex_state = 72}, + [4907] = {.lex_state = 178, .external_lex_state = 70}, + [4908] = {.lex_state = 178, .external_lex_state = 70}, + [4909] = {.lex_state = 178, .external_lex_state = 70}, + [4910] = {.lex_state = 23, .external_lex_state = 70}, + [4911] = {.lex_state = 179, .external_lex_state = 72}, + [4912] = {.lex_state = 178, .external_lex_state = 69}, + [4913] = {.lex_state = 181, .external_lex_state = 83}, + [4914] = {.lex_state = 183, .external_lex_state = 93}, + [4915] = {.lex_state = 178, .external_lex_state = 71}, + [4916] = {.lex_state = 178, .external_lex_state = 72}, + [4917] = {.lex_state = 178, .external_lex_state = 72}, + [4918] = {.lex_state = 178, .external_lex_state = 70}, + [4919] = {.lex_state = 179, .external_lex_state = 67}, + [4920] = {.lex_state = 183, .external_lex_state = 83}, + [4921] = {.lex_state = 178, .external_lex_state = 70}, + [4922] = {.lex_state = 178, .external_lex_state = 69}, [4923] = {.lex_state = 178, .external_lex_state = 70}, [4924] = {.lex_state = 178, .external_lex_state = 70}, - [4925] = {.lex_state = 23, .external_lex_state = 70}, - [4926] = {.lex_state = 23, .external_lex_state = 70}, - [4927] = {.lex_state = 23, .external_lex_state = 70}, - [4928] = {.lex_state = 23, .external_lex_state = 70}, - [4929] = {.lex_state = 178, .external_lex_state = 73}, - [4930] = {.lex_state = 178, .external_lex_state = 73}, - [4931] = {.lex_state = 178, .external_lex_state = 73}, - [4932] = {.lex_state = 178, .external_lex_state = 73}, - [4933] = {.lex_state = 181, .external_lex_state = 67}, - [4934] = {.lex_state = 178, .external_lex_state = 70}, - [4935] = {.lex_state = 178, .external_lex_state = 69}, - [4936] = {.lex_state = 178, .external_lex_state = 69}, + [4925] = {.lex_state = 178, .external_lex_state = 69}, + [4926] = {.lex_state = 178, .external_lex_state = 72}, + [4927] = {.lex_state = 178, .external_lex_state = 70}, + [4928] = {.lex_state = 178, .external_lex_state = 70}, + [4929] = {.lex_state = 178, .external_lex_state = 72}, + [4930] = {.lex_state = 178, .external_lex_state = 70}, + [4931] = {.lex_state = 178, .external_lex_state = 71}, + [4932] = {.lex_state = 178, .external_lex_state = 70}, + [4933] = {.lex_state = 178, .external_lex_state = 73}, + [4934] = {.lex_state = 178, .external_lex_state = 72}, + [4935] = {.lex_state = 178, .external_lex_state = 73}, + [4936] = {.lex_state = 178, .external_lex_state = 72}, [4937] = {.lex_state = 178, .external_lex_state = 69}, [4938] = {.lex_state = 178, .external_lex_state = 70}, - [4939] = {.lex_state = 178, .external_lex_state = 70}, - [4940] = {.lex_state = 178, .external_lex_state = 70}, + [4939] = {.lex_state = 178, .external_lex_state = 69}, + [4940] = {.lex_state = 178, .external_lex_state = 69}, [4941] = {.lex_state = 178, .external_lex_state = 70}, - [4942] = {.lex_state = 178, .external_lex_state = 71}, + [4942] = {.lex_state = 178, .external_lex_state = 72}, [4943] = {.lex_state = 178, .external_lex_state = 70}, [4944] = {.lex_state = 178, .external_lex_state = 72}, [4945] = {.lex_state = 178, .external_lex_state = 72}, [4946] = {.lex_state = 178, .external_lex_state = 69}, - [4947] = {.lex_state = 178, .external_lex_state = 72}, - [4948] = {.lex_state = 178, .external_lex_state = 71}, - [4949] = {.lex_state = 178, .external_lex_state = 73}, + [4947] = {.lex_state = 178, .external_lex_state = 70}, + [4948] = {.lex_state = 178, .external_lex_state = 70}, + [4949] = {.lex_state = 178, .external_lex_state = 72}, [4950] = {.lex_state = 178, .external_lex_state = 72}, - [4951] = {.lex_state = 178, .external_lex_state = 72}, - [4952] = {.lex_state = 178, .external_lex_state = 72}, - [4953] = {.lex_state = 178, .external_lex_state = 72}, - [4954] = {.lex_state = 179, .external_lex_state = 72}, - [4955] = {.lex_state = 183, .external_lex_state = 93}, - [4956] = {.lex_state = 178, .external_lex_state = 70}, - [4957] = {.lex_state = 178, .external_lex_state = 70}, - [4958] = {.lex_state = 178, .external_lex_state = 70}, - [4959] = {.lex_state = 178, .external_lex_state = 70}, - [4960] = {.lex_state = 178, .external_lex_state = 70}, - [4961] = {.lex_state = 178, .external_lex_state = 70}, + [4951] = {.lex_state = 178, .external_lex_state = 70}, + [4952] = {.lex_state = 178, .external_lex_state = 69}, + [4953] = {.lex_state = 178, .external_lex_state = 70}, + [4954] = {.lex_state = 178, .external_lex_state = 69}, + [4955] = {.lex_state = 178, .external_lex_state = 73}, + [4956] = {.lex_state = 178, .external_lex_state = 73}, + [4957] = {.lex_state = 178, .external_lex_state = 71}, + [4958] = {.lex_state = 178, .external_lex_state = 73}, + [4959] = {.lex_state = 183, .external_lex_state = 92}, + [4960] = {.lex_state = 178, .external_lex_state = 73}, + [4961] = {.lex_state = 178, .external_lex_state = 69}, [4962] = {.lex_state = 178, .external_lex_state = 73}, - [4963] = {.lex_state = 178, .external_lex_state = 73}, - [4964] = {.lex_state = 178, .external_lex_state = 70}, - [4965] = {.lex_state = 178, .external_lex_state = 70}, - [4966] = {.lex_state = 179, .external_lex_state = 67}, - [4967] = {.lex_state = 183, .external_lex_state = 82}, - [4968] = {.lex_state = 178, .external_lex_state = 73}, - [4969] = {.lex_state = 178, .external_lex_state = 70}, - [4970] = {.lex_state = 178, .external_lex_state = 70}, - [4971] = {.lex_state = 181, .external_lex_state = 82}, - [4972] = {.lex_state = 178, .external_lex_state = 72}, - [4973] = {.lex_state = 181, .external_lex_state = 82}, - [4974] = {.lex_state = 178, .external_lex_state = 73}, - [4975] = {.lex_state = 178, .external_lex_state = 73}, - [4976] = {.lex_state = 178, .external_lex_state = 69}, - [4977] = {.lex_state = 178, .external_lex_state = 69}, - [4978] = {.lex_state = 178, .external_lex_state = 69}, - [4979] = {.lex_state = 178, .external_lex_state = 73}, - [4980] = {.lex_state = 178, .external_lex_state = 73}, - [4981] = {.lex_state = 178, .external_lex_state = 73}, + [4963] = {.lex_state = 178, .external_lex_state = 69}, + [4964] = {.lex_state = 178, .external_lex_state = 73}, + [4965] = {.lex_state = 178, .external_lex_state = 69}, + [4966] = {.lex_state = 178, .external_lex_state = 73}, + [4967] = {.lex_state = 179, .external_lex_state = 73}, + [4968] = {.lex_state = 178, .external_lex_state = 69}, + [4969] = {.lex_state = 178, .external_lex_state = 73}, + [4970] = {.lex_state = 178, .external_lex_state = 72}, + [4971] = {.lex_state = 178, .external_lex_state = 72}, + [4972] = {.lex_state = 178, .external_lex_state = 69}, + [4973] = {.lex_state = 178, .external_lex_state = 73}, + [4974] = {.lex_state = 23, .external_lex_state = 70}, + [4975] = {.lex_state = 181, .external_lex_state = 83}, + [4976] = {.lex_state = 178, .external_lex_state = 72}, + [4977] = {.lex_state = 23, .external_lex_state = 70}, + [4978] = {.lex_state = 178, .external_lex_state = 73}, + [4979] = {.lex_state = 23, .external_lex_state = 70}, + [4980] = {.lex_state = 23, .external_lex_state = 70}, + [4981] = {.lex_state = 178, .external_lex_state = 71}, [4982] = {.lex_state = 178, .external_lex_state = 73}, [4983] = {.lex_state = 178, .external_lex_state = 73}, - [4984] = {.lex_state = 178, .external_lex_state = 71}, + [4984] = {.lex_state = 178, .external_lex_state = 73}, [4985] = {.lex_state = 178, .external_lex_state = 73}, - [4986] = {.lex_state = 178, .external_lex_state = 70}, - [4987] = {.lex_state = 178, .external_lex_state = 70}, - [4988] = {.lex_state = 178, .external_lex_state = 70}, + [4986] = {.lex_state = 178, .external_lex_state = 71}, + [4987] = {.lex_state = 178, .external_lex_state = 71}, + [4988] = {.lex_state = 178, .external_lex_state = 71}, [4989] = {.lex_state = 178, .external_lex_state = 70}, [4990] = {.lex_state = 178, .external_lex_state = 73}, - [4991] = {.lex_state = 178, .external_lex_state = 73}, - [4992] = {.lex_state = 178, .external_lex_state = 73}, - [4993] = {.lex_state = 178, .external_lex_state = 73}, + [4991] = {.lex_state = 178, .external_lex_state = 70}, + [4992] = {.lex_state = 178, .external_lex_state = 70}, + [4993] = {.lex_state = 178, .external_lex_state = 69}, [4994] = {.lex_state = 178, .external_lex_state = 71}, - [4995] = {.lex_state = 178, .external_lex_state = 69}, - [4996] = {.lex_state = 178, .external_lex_state = 69}, - [4997] = {.lex_state = 178, .external_lex_state = 70}, + [4995] = {.lex_state = 178, .external_lex_state = 73}, + [4996] = {.lex_state = 178, .external_lex_state = 70}, + [4997] = {.lex_state = 178, .external_lex_state = 69}, [4998] = {.lex_state = 178, .external_lex_state = 73}, - [4999] = {.lex_state = 178, .external_lex_state = 73}, + [4999] = {.lex_state = 178, .external_lex_state = 72}, [5000] = {.lex_state = 178, .external_lex_state = 72}, - [5001] = {.lex_state = 179, .external_lex_state = 73}, - [5002] = {.lex_state = 183, .external_lex_state = 94}, - [5003] = {.lex_state = 178, .external_lex_state = 72}, - [5004] = {.lex_state = 178, .external_lex_state = 73}, - [5005] = {.lex_state = 178, .external_lex_state = 73}, - [5006] = {.lex_state = 183, .external_lex_state = 92}, - [5007] = {.lex_state = 178, .external_lex_state = 69}, - [5008] = {.lex_state = 178, .external_lex_state = 72}, + [5001] = {.lex_state = 178, .external_lex_state = 73}, + [5002] = {.lex_state = 178, .external_lex_state = 69}, + [5003] = {.lex_state = 178, .external_lex_state = 69}, + [5004] = {.lex_state = 178, .external_lex_state = 69}, + [5005] = {.lex_state = 178, .external_lex_state = 69}, + [5006] = {.lex_state = 178, .external_lex_state = 72}, + [5007] = {.lex_state = 178, .external_lex_state = 71}, + [5008] = {.lex_state = 178, .external_lex_state = 70}, [5009] = {.lex_state = 178, .external_lex_state = 72}, [5010] = {.lex_state = 178, .external_lex_state = 72}, - [5011] = {.lex_state = 178, .external_lex_state = 72}, - [5012] = {.lex_state = 178, .external_lex_state = 72}, - [5013] = {.lex_state = 178, .external_lex_state = 69}, - [5014] = {.lex_state = 178, .external_lex_state = 70}, - [5015] = {.lex_state = 183, .external_lex_state = 92}, - [5016] = {.lex_state = 178, .external_lex_state = 70}, - [5017] = {.lex_state = 178, .external_lex_state = 69}, - [5018] = {.lex_state = 178, .external_lex_state = 69}, - [5019] = {.lex_state = 178, .external_lex_state = 70}, - [5020] = {.lex_state = 178, .external_lex_state = 71}, - [5021] = {.lex_state = 63, .external_lex_state = 82}, - [5022] = {.lex_state = 23, .external_lex_state = 70}, - [5023] = {.lex_state = 181, .external_lex_state = 67}, - [5024] = {.lex_state = 63, .external_lex_state = 82}, + [5011] = {.lex_state = 183, .external_lex_state = 94}, + [5012] = {.lex_state = 178, .external_lex_state = 73}, + [5013] = {.lex_state = 178, .external_lex_state = 72}, + [5014] = {.lex_state = 23, .external_lex_state = 70}, + [5015] = {.lex_state = 178, .external_lex_state = 73}, + [5016] = {.lex_state = 178, .external_lex_state = 72}, + [5017] = {.lex_state = 178, .external_lex_state = 73}, + [5018] = {.lex_state = 178, .external_lex_state = 72}, + [5019] = {.lex_state = 178, .external_lex_state = 73}, + [5020] = {.lex_state = 178, .external_lex_state = 72}, + [5021] = {.lex_state = 23, .external_lex_state = 70}, + [5022] = {.lex_state = 178, .external_lex_state = 72}, + [5023] = {.lex_state = 178, .external_lex_state = 70}, + [5024] = {.lex_state = 178, .external_lex_state = 70}, [5025] = {.lex_state = 23, .external_lex_state = 74}, - [5026] = {.lex_state = 178, .external_lex_state = 71}, - [5027] = {.lex_state = 178, .external_lex_state = 71}, - [5028] = {.lex_state = 181, .external_lex_state = 67}, - [5029] = {.lex_state = 23, .external_lex_state = 74}, - [5030] = {.lex_state = 23, .external_lex_state = 70}, - [5031] = {.lex_state = 178, .external_lex_state = 71}, - [5032] = {.lex_state = 48, .external_lex_state = 82}, - [5033] = {.lex_state = 178, .external_lex_state = 93}, - [5034] = {.lex_state = 48, .external_lex_state = 82}, - [5035] = {.lex_state = 48, .external_lex_state = 82}, - [5036] = {.lex_state = 183, .external_lex_state = 71}, + [5026] = {.lex_state = 178, .external_lex_state = 70}, + [5027] = {.lex_state = 178, .external_lex_state = 70}, + [5028] = {.lex_state = 178, .external_lex_state = 69}, + [5029] = {.lex_state = 178, .external_lex_state = 70}, + [5030] = {.lex_state = 178, .external_lex_state = 69}, + [5031] = {.lex_state = 178, .external_lex_state = 69}, + [5032] = {.lex_state = 178, .external_lex_state = 70}, + [5033] = {.lex_state = 178, .external_lex_state = 69}, + [5034] = {.lex_state = 178, .external_lex_state = 69}, + [5035] = {.lex_state = 178, .external_lex_state = 69}, + [5036] = {.lex_state = 178, .external_lex_state = 70}, [5037] = {.lex_state = 23, .external_lex_state = 70}, [5038] = {.lex_state = 23, .external_lex_state = 70}, - [5039] = {.lex_state = 178, .external_lex_state = 73}, - [5040] = {.lex_state = 178, .external_lex_state = 72}, - [5041] = {.lex_state = 181, .external_lex_state = 67}, - [5042] = {.lex_state = 181, .external_lex_state = 67}, - [5043] = {.lex_state = 178, .external_lex_state = 93}, - [5044] = {.lex_state = 23, .external_lex_state = 70}, - [5045] = {.lex_state = 23, .external_lex_state = 70}, - [5046] = {.lex_state = 178, .external_lex_state = 71}, - [5047] = {.lex_state = 178, .external_lex_state = 71}, - [5048] = {.lex_state = 23, .external_lex_state = 74}, - [5049] = {.lex_state = 23, .external_lex_state = 74}, - [5050] = {.lex_state = 178, .external_lex_state = 95}, - [5051] = {.lex_state = 178, .external_lex_state = 95}, - [5052] = {.lex_state = 181, .external_lex_state = 67}, - [5053] = {.lex_state = 23, .external_lex_state = 74}, - [5054] = {.lex_state = 23, .external_lex_state = 70}, - [5055] = {.lex_state = 23, .external_lex_state = 70}, - [5056] = {.lex_state = 23, .external_lex_state = 74}, + [5039] = {.lex_state = 181, .external_lex_state = 83}, + [5040] = {.lex_state = 178, .external_lex_state = 69}, + [5041] = {.lex_state = 178, .external_lex_state = 69}, + [5042] = {.lex_state = 178, .external_lex_state = 69}, + [5043] = {.lex_state = 181, .external_lex_state = 67}, + [5044] = {.lex_state = 178, .external_lex_state = 95}, + [5045] = {.lex_state = 181, .external_lex_state = 67}, + [5046] = {.lex_state = 178, .external_lex_state = 72}, + [5047] = {.lex_state = 178, .external_lex_state = 70}, + [5048] = {.lex_state = 178, .external_lex_state = 92}, + [5049] = {.lex_state = 48, .external_lex_state = 83}, + [5050] = {.lex_state = 23, .external_lex_state = 70}, + [5051] = {.lex_state = 61, .external_lex_state = 83}, + [5052] = {.lex_state = 178, .external_lex_state = 71}, + [5053] = {.lex_state = 178, .external_lex_state = 71}, + [5054] = {.lex_state = 186, .external_lex_state = 96}, + [5055] = {.lex_state = 178, .external_lex_state = 71}, + [5056] = {.lex_state = 178, .external_lex_state = 71}, [5057] = {.lex_state = 178, .external_lex_state = 71}, - [5058] = {.lex_state = 186, .external_lex_state = 96}, - [5059] = {.lex_state = 178, .external_lex_state = 92}, + [5058] = {.lex_state = 63, .external_lex_state = 83}, + [5059] = {.lex_state = 178, .external_lex_state = 71}, [5060] = {.lex_state = 23, .external_lex_state = 70}, - [5061] = {.lex_state = 178, .external_lex_state = 94}, - [5062] = {.lex_state = 23, .external_lex_state = 70}, + [5061] = {.lex_state = 23, .external_lex_state = 70}, + [5062] = {.lex_state = 63, .external_lex_state = 83}, [5063] = {.lex_state = 178, .external_lex_state = 71}, - [5064] = {.lex_state = 50, .external_lex_state = 70}, - [5065] = {.lex_state = 178, .external_lex_state = 95}, - [5066] = {.lex_state = 178, .external_lex_state = 95}, - [5067] = {.lex_state = 178, .external_lex_state = 71}, - [5068] = {.lex_state = 183, .external_lex_state = 71}, - [5069] = {.lex_state = 178, .external_lex_state = 71}, - [5070] = {.lex_state = 178, .external_lex_state = 70}, - [5071] = {.lex_state = 178, .external_lex_state = 71}, - [5072] = {.lex_state = 178, .external_lex_state = 71}, - [5073] = {.lex_state = 178, .external_lex_state = 71}, - [5074] = {.lex_state = 178, .external_lex_state = 71}, - [5075] = {.lex_state = 178, .external_lex_state = 71}, - [5076] = {.lex_state = 178, .external_lex_state = 71}, - [5077] = {.lex_state = 23, .external_lex_state = 70}, - [5078] = {.lex_state = 23, .external_lex_state = 70}, - [5079] = {.lex_state = 181, .external_lex_state = 67}, - [5080] = {.lex_state = 181, .external_lex_state = 67}, - [5081] = {.lex_state = 23, .external_lex_state = 70}, - [5082] = {.lex_state = 186, .external_lex_state = 96}, - [5083] = {.lex_state = 23, .external_lex_state = 74}, + [5064] = {.lex_state = 178, .external_lex_state = 71}, + [5065] = {.lex_state = 178, .external_lex_state = 94}, + [5066] = {.lex_state = 178, .external_lex_state = 71}, + [5067] = {.lex_state = 23, .external_lex_state = 70}, + [5068] = {.lex_state = 23, .external_lex_state = 70}, + [5069] = {.lex_state = 178, .external_lex_state = 94}, + [5070] = {.lex_state = 181, .external_lex_state = 67}, + [5071] = {.lex_state = 48, .external_lex_state = 83}, + [5072] = {.lex_state = 23, .external_lex_state = 74}, + [5073] = {.lex_state = 23, .external_lex_state = 70}, + [5074] = {.lex_state = 183, .external_lex_state = 71}, + [5075] = {.lex_state = 51, .external_lex_state = 70}, + [5076] = {.lex_state = 23, .external_lex_state = 70}, + [5077] = {.lex_state = 48, .external_lex_state = 83}, + [5078] = {.lex_state = 183, .external_lex_state = 87}, + [5079] = {.lex_state = 23, .external_lex_state = 70}, + [5080] = {.lex_state = 23, .external_lex_state = 74}, + [5081] = {.lex_state = 178, .external_lex_state = 93}, + [5082] = {.lex_state = 178, .external_lex_state = 71}, + [5083] = {.lex_state = 23, .external_lex_state = 70}, [5084] = {.lex_state = 23, .external_lex_state = 70}, - [5085] = {.lex_state = 179, .external_lex_state = 71}, + [5085] = {.lex_state = 23, .external_lex_state = 70}, [5086] = {.lex_state = 23, .external_lex_state = 70}, - [5087] = {.lex_state = 23, .external_lex_state = 70}, - [5088] = {.lex_state = 23, .external_lex_state = 70}, - [5089] = {.lex_state = 61, .external_lex_state = 82}, - [5090] = {.lex_state = 61, .external_lex_state = 82}, - [5091] = {.lex_state = 23, .external_lex_state = 70}, - [5092] = {.lex_state = 183, .external_lex_state = 87}, - [5093] = {.lex_state = 178, .external_lex_state = 94}, - [5094] = {.lex_state = 23, .external_lex_state = 70}, - [5095] = {.lex_state = 186, .external_lex_state = 96}, + [5087] = {.lex_state = 181, .external_lex_state = 67}, + [5088] = {.lex_state = 178, .external_lex_state = 71}, + [5089] = {.lex_state = 178, .external_lex_state = 93}, + [5090] = {.lex_state = 178, .external_lex_state = 71}, + [5091] = {.lex_state = 178, .external_lex_state = 71}, + [5092] = {.lex_state = 178, .external_lex_state = 71}, + [5093] = {.lex_state = 178, .external_lex_state = 95}, + [5094] = {.lex_state = 178, .external_lex_state = 71}, + [5095] = {.lex_state = 178, .external_lex_state = 71}, [5096] = {.lex_state = 181, .external_lex_state = 67}, - [5097] = {.lex_state = 23, .external_lex_state = 74}, - [5098] = {.lex_state = 178, .external_lex_state = 93}, - [5099] = {.lex_state = 178, .external_lex_state = 71}, - [5100] = {.lex_state = 63, .external_lex_state = 87}, - [5101] = {.lex_state = 23, .external_lex_state = 70}, - [5102] = {.lex_state = 178, .external_lex_state = 71}, - [5103] = {.lex_state = 183, .external_lex_state = 71}, - [5104] = {.lex_state = 23, .external_lex_state = 70}, + [5097] = {.lex_state = 23, .external_lex_state = 70}, + [5098] = {.lex_state = 23, .external_lex_state = 70}, + [5099] = {.lex_state = 23, .external_lex_state = 70}, + [5100] = {.lex_state = 178, .external_lex_state = 71}, + [5101] = {.lex_state = 23, .external_lex_state = 74}, + [5102] = {.lex_state = 178, .external_lex_state = 93}, + [5103] = {.lex_state = 23, .external_lex_state = 70}, + [5104] = {.lex_state = 178, .external_lex_state = 94}, [5105] = {.lex_state = 178, .external_lex_state = 71}, - [5106] = {.lex_state = 178, .external_lex_state = 71}, - [5107] = {.lex_state = 23, .external_lex_state = 74}, - [5108] = {.lex_state = 178, .external_lex_state = 71}, - [5109] = {.lex_state = 178, .external_lex_state = 71}, - [5110] = {.lex_state = 51, .external_lex_state = 70}, - [5111] = {.lex_state = 178, .external_lex_state = 94}, - [5112] = {.lex_state = 23, .external_lex_state = 70}, - [5113] = {.lex_state = 23, .external_lex_state = 70}, - [5114] = {.lex_state = 23, .external_lex_state = 70}, - [5115] = {.lex_state = 23, .external_lex_state = 70}, - [5116] = {.lex_state = 181, .external_lex_state = 67}, - [5117] = {.lex_state = 178, .external_lex_state = 71}, - [5118] = {.lex_state = 178, .external_lex_state = 73}, - [5119] = {.lex_state = 23, .external_lex_state = 87}, - [5120] = {.lex_state = 23, .external_lex_state = 74}, - [5121] = {.lex_state = 183, .external_lex_state = 94}, - [5122] = {.lex_state = 23, .external_lex_state = 87}, - [5123] = {.lex_state = 52, .external_lex_state = 67}, - [5124] = {.lex_state = 23, .external_lex_state = 74}, - [5125] = {.lex_state = 178, .external_lex_state = 71}, - [5126] = {.lex_state = 183, .external_lex_state = 67}, - [5127] = {.lex_state = 52, .external_lex_state = 67}, - [5128] = {.lex_state = 178, .external_lex_state = 71}, - [5129] = {.lex_state = 181, .external_lex_state = 67}, - [5130] = {.lex_state = 178, .external_lex_state = 71}, - [5131] = {.lex_state = 23, .external_lex_state = 87}, - [5132] = {.lex_state = 178, .external_lex_state = 72}, - [5133] = {.lex_state = 178, .external_lex_state = 72}, - [5134] = {.lex_state = 178, .external_lex_state = 72}, - [5135] = {.lex_state = 183, .external_lex_state = 94}, - [5136] = {.lex_state = 23, .external_lex_state = 70}, + [5106] = {.lex_state = 23, .external_lex_state = 70}, + [5107] = {.lex_state = 50, .external_lex_state = 70}, + [5108] = {.lex_state = 186, .external_lex_state = 96}, + [5109] = {.lex_state = 183, .external_lex_state = 71}, + [5110] = {.lex_state = 178, .external_lex_state = 95}, + [5111] = {.lex_state = 23, .external_lex_state = 70}, + [5112] = {.lex_state = 178, .external_lex_state = 95}, + [5113] = {.lex_state = 23, .external_lex_state = 74}, + [5114] = {.lex_state = 181, .external_lex_state = 67}, + [5115] = {.lex_state = 23, .external_lex_state = 74}, + [5116] = {.lex_state = 23, .external_lex_state = 70}, + [5117] = {.lex_state = 178, .external_lex_state = 73}, + [5118] = {.lex_state = 183, .external_lex_state = 71}, + [5119] = {.lex_state = 63, .external_lex_state = 87}, + [5120] = {.lex_state = 181, .external_lex_state = 67}, + [5121] = {.lex_state = 181, .external_lex_state = 67}, + [5122] = {.lex_state = 178, .external_lex_state = 71}, + [5123] = {.lex_state = 178, .external_lex_state = 71}, + [5124] = {.lex_state = 23, .external_lex_state = 70}, + [5125] = {.lex_state = 23, .external_lex_state = 70}, + [5126] = {.lex_state = 186, .external_lex_state = 96}, + [5127] = {.lex_state = 179, .external_lex_state = 71}, + [5128] = {.lex_state = 23, .external_lex_state = 74}, + [5129] = {.lex_state = 23, .external_lex_state = 70}, + [5130] = {.lex_state = 61, .external_lex_state = 83}, + [5131] = {.lex_state = 23, .external_lex_state = 70}, + [5132] = {.lex_state = 23, .external_lex_state = 74}, + [5133] = {.lex_state = 181, .external_lex_state = 67}, + [5134] = {.lex_state = 23, .external_lex_state = 70}, + [5135] = {.lex_state = 181, .external_lex_state = 67}, + [5136] = {.lex_state = 23, .external_lex_state = 74}, [5137] = {.lex_state = 23, .external_lex_state = 74}, - [5138] = {.lex_state = 23, .external_lex_state = 74}, - [5139] = {.lex_state = 23, .external_lex_state = 74}, - [5140] = {.lex_state = 23, .external_lex_state = 74}, - [5141] = {.lex_state = 52, .external_lex_state = 67}, - [5142] = {.lex_state = 186, .external_lex_state = 96}, - [5143] = {.lex_state = 186, .external_lex_state = 96}, - [5144] = {.lex_state = 186, .external_lex_state = 96}, - [5145] = {.lex_state = 52, .external_lex_state = 67}, + [5138] = {.lex_state = 178, .external_lex_state = 71}, + [5139] = {.lex_state = 23, .external_lex_state = 70}, + [5140] = {.lex_state = 178, .external_lex_state = 71}, + [5141] = {.lex_state = 178, .external_lex_state = 71}, + [5142] = {.lex_state = 23, .external_lex_state = 74}, + [5143] = {.lex_state = 178, .external_lex_state = 71}, + [5144] = {.lex_state = 178, .external_lex_state = 71}, + [5145] = {.lex_state = 183, .external_lex_state = 94}, [5146] = {.lex_state = 52, .external_lex_state = 67}, [5147] = {.lex_state = 178, .external_lex_state = 71}, [5148] = {.lex_state = 178, .external_lex_state = 71}, - [5149] = {.lex_state = 178, .external_lex_state = 71}, - [5150] = {.lex_state = 178, .external_lex_state = 71}, - [5151] = {.lex_state = 178, .external_lex_state = 71}, + [5149] = {.lex_state = 23, .external_lex_state = 74}, + [5150] = {.lex_state = 52, .external_lex_state = 67}, + [5151] = {.lex_state = 23, .external_lex_state = 74}, [5152] = {.lex_state = 178, .external_lex_state = 71}, [5153] = {.lex_state = 178, .external_lex_state = 71}, [5154] = {.lex_state = 178, .external_lex_state = 71}, - [5155] = {.lex_state = 178, .external_lex_state = 71}, + [5155] = {.lex_state = 23, .external_lex_state = 74}, [5156] = {.lex_state = 178, .external_lex_state = 71}, [5157] = {.lex_state = 178, .external_lex_state = 71}, - [5158] = {.lex_state = 50, .external_lex_state = 67}, - [5159] = {.lex_state = 181, .external_lex_state = 85}, - [5160] = {.lex_state = 61, .external_lex_state = 67}, - [5161] = {.lex_state = 178, .external_lex_state = 72}, - [5162] = {.lex_state = 181, .external_lex_state = 85}, - [5163] = {.lex_state = 179, .external_lex_state = 70}, - [5164] = {.lex_state = 183, .external_lex_state = 87}, - [5165] = {.lex_state = 23, .external_lex_state = 74}, + [5158] = {.lex_state = 178, .external_lex_state = 71}, + [5159] = {.lex_state = 183, .external_lex_state = 94}, + [5160] = {.lex_state = 181, .external_lex_state = 67}, + [5161] = {.lex_state = 23, .external_lex_state = 87}, + [5162] = {.lex_state = 178, .external_lex_state = 71}, + [5163] = {.lex_state = 178, .external_lex_state = 71}, + [5164] = {.lex_state = 178, .external_lex_state = 73}, + [5165] = {.lex_state = 178, .external_lex_state = 71}, [5166] = {.lex_state = 23, .external_lex_state = 74}, - [5167] = {.lex_state = 178, .external_lex_state = 71}, - [5168] = {.lex_state = 178, .external_lex_state = 71}, + [5167] = {.lex_state = 23, .external_lex_state = 70}, + [5168] = {.lex_state = 23, .external_lex_state = 87}, [5169] = {.lex_state = 23, .external_lex_state = 74}, [5170] = {.lex_state = 178, .external_lex_state = 71}, - [5171] = {.lex_state = 178, .external_lex_state = 71}, + [5171] = {.lex_state = 23, .external_lex_state = 74}, [5172] = {.lex_state = 23, .external_lex_state = 74}, - [5173] = {.lex_state = 23, .external_lex_state = 74}, - [5174] = {.lex_state = 23, .external_lex_state = 74}, - [5175] = {.lex_state = 181, .external_lex_state = 67}, - [5176] = {.lex_state = 181, .external_lex_state = 67}, - [5177] = {.lex_state = 181, .external_lex_state = 67}, - [5178] = {.lex_state = 181, .external_lex_state = 67}, - [5179] = {.lex_state = 181, .external_lex_state = 67}, - [5180] = {.lex_state = 181, .external_lex_state = 67}, - [5181] = {.lex_state = 23, .external_lex_state = 74}, - [5182] = {.lex_state = 178, .external_lex_state = 71}, - [5183] = {.lex_state = 52, .external_lex_state = 67}, - [5184] = {.lex_state = 52, .external_lex_state = 67}, - [5185] = {.lex_state = 52, .external_lex_state = 67}, - [5186] = {.lex_state = 52, .external_lex_state = 67}, - [5187] = {.lex_state = 52, .external_lex_state = 67}, - [5188] = {.lex_state = 52, .external_lex_state = 67}, + [5173] = {.lex_state = 186, .external_lex_state = 96}, + [5174] = {.lex_state = 186, .external_lex_state = 96}, + [5175] = {.lex_state = 186, .external_lex_state = 96}, + [5176] = {.lex_state = 23, .external_lex_state = 74}, + [5177] = {.lex_state = 178, .external_lex_state = 71}, + [5178] = {.lex_state = 178, .external_lex_state = 71}, + [5179] = {.lex_state = 178, .external_lex_state = 71}, + [5180] = {.lex_state = 178, .external_lex_state = 71}, + [5181] = {.lex_state = 178, .external_lex_state = 71}, + [5182] = {.lex_state = 178, .external_lex_state = 72}, + [5183] = {.lex_state = 23, .external_lex_state = 87}, + [5184] = {.lex_state = 178, .external_lex_state = 71}, + [5185] = {.lex_state = 178, .external_lex_state = 73}, + [5186] = {.lex_state = 178, .external_lex_state = 71}, + [5187] = {.lex_state = 179, .external_lex_state = 70}, + [5188] = {.lex_state = 183, .external_lex_state = 87}, [5189] = {.lex_state = 178, .external_lex_state = 71}, - [5190] = {.lex_state = 181, .external_lex_state = 82}, - [5191] = {.lex_state = 183, .external_lex_state = 93}, - [5192] = {.lex_state = 181, .external_lex_state = 67}, - [5193] = {.lex_state = 181, .external_lex_state = 85}, - [5194] = {.lex_state = 61, .external_lex_state = 67}, - [5195] = {.lex_state = 181, .external_lex_state = 85}, + [5190] = {.lex_state = 23, .external_lex_state = 74}, + [5191] = {.lex_state = 23, .external_lex_state = 74}, + [5192] = {.lex_state = 178, .external_lex_state = 73}, + [5193] = {.lex_state = 178, .external_lex_state = 73}, + [5194] = {.lex_state = 181, .external_lex_state = 67}, + [5195] = {.lex_state = 181, .external_lex_state = 67}, [5196] = {.lex_state = 181, .external_lex_state = 67}, - [5197] = {.lex_state = 183, .external_lex_state = 93}, + [5197] = {.lex_state = 181, .external_lex_state = 67}, [5198] = {.lex_state = 181, .external_lex_state = 67}, - [5199] = {.lex_state = 23, .external_lex_state = 74}, - [5200] = {.lex_state = 181, .external_lex_state = 67}, - [5201] = {.lex_state = 181, .external_lex_state = 67}, + [5199] = {.lex_state = 181, .external_lex_state = 67}, + [5200] = {.lex_state = 23, .external_lex_state = 74}, + [5201] = {.lex_state = 178, .external_lex_state = 71}, [5202] = {.lex_state = 178, .external_lex_state = 71}, [5203] = {.lex_state = 178, .external_lex_state = 71}, - [5204] = {.lex_state = 178, .external_lex_state = 71}, - [5205] = {.lex_state = 181, .external_lex_state = 67}, - [5206] = {.lex_state = 178, .external_lex_state = 71}, - [5207] = {.lex_state = 178, .external_lex_state = 71}, - [5208] = {.lex_state = 178, .external_lex_state = 71}, - [5209] = {.lex_state = 178, .external_lex_state = 71}, - [5210] = {.lex_state = 178, .external_lex_state = 71}, - [5211] = {.lex_state = 178, .external_lex_state = 71}, - [5212] = {.lex_state = 178, .external_lex_state = 71}, - [5213] = {.lex_state = 178, .external_lex_state = 71}, - [5214] = {.lex_state = 178, .external_lex_state = 71}, - [5215] = {.lex_state = 178, .external_lex_state = 71}, - [5216] = {.lex_state = 178, .external_lex_state = 71}, - [5217] = {.lex_state = 178, .external_lex_state = 71}, - [5218] = {.lex_state = 178, .external_lex_state = 71}, - [5219] = {.lex_state = 178, .external_lex_state = 71}, - [5220] = {.lex_state = 179, .external_lex_state = 74}, - [5221] = {.lex_state = 183, .external_lex_state = 97}, - [5222] = {.lex_state = 178, .external_lex_state = 71}, - [5223] = {.lex_state = 178, .external_lex_state = 71}, - [5224] = {.lex_state = 178, .external_lex_state = 71}, - [5225] = {.lex_state = 178, .external_lex_state = 71}, - [5226] = {.lex_state = 178, .external_lex_state = 71}, + [5204] = {.lex_state = 50, .external_lex_state = 67}, + [5205] = {.lex_state = 52, .external_lex_state = 67}, + [5206] = {.lex_state = 52, .external_lex_state = 67}, + [5207] = {.lex_state = 52, .external_lex_state = 67}, + [5208] = {.lex_state = 52, .external_lex_state = 67}, + [5209] = {.lex_state = 52, .external_lex_state = 67}, + [5210] = {.lex_state = 52, .external_lex_state = 67}, + [5211] = {.lex_state = 181, .external_lex_state = 85}, + [5212] = {.lex_state = 61, .external_lex_state = 67}, + [5213] = {.lex_state = 181, .external_lex_state = 85}, + [5214] = {.lex_state = 178, .external_lex_state = 73}, + [5215] = {.lex_state = 23, .external_lex_state = 74}, + [5216] = {.lex_state = 23, .external_lex_state = 74}, + [5217] = {.lex_state = 23, .external_lex_state = 74}, + [5218] = {.lex_state = 181, .external_lex_state = 83}, + [5219] = {.lex_state = 181, .external_lex_state = 67}, + [5220] = {.lex_state = 181, .external_lex_state = 85}, + [5221] = {.lex_state = 61, .external_lex_state = 67}, + [5222] = {.lex_state = 181, .external_lex_state = 85}, + [5223] = {.lex_state = 181, .external_lex_state = 67}, + [5224] = {.lex_state = 23, .external_lex_state = 72}, + [5225] = {.lex_state = 181, .external_lex_state = 67}, + [5226] = {.lex_state = 181, .external_lex_state = 67}, [5227] = {.lex_state = 178, .external_lex_state = 71}, [5228] = {.lex_state = 178, .external_lex_state = 71}, [5229] = {.lex_state = 178, .external_lex_state = 71}, @@ -25554,9 +25676,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5231] = {.lex_state = 178, .external_lex_state = 71}, [5232] = {.lex_state = 178, .external_lex_state = 71}, [5233] = {.lex_state = 178, .external_lex_state = 71}, - [5234] = {.lex_state = 178, .external_lex_state = 71}, - [5235] = {.lex_state = 178, .external_lex_state = 71}, - [5236] = {.lex_state = 178, .external_lex_state = 71}, + [5234] = {.lex_state = 178, .external_lex_state = 72}, + [5235] = {.lex_state = 181, .external_lex_state = 67}, + [5236] = {.lex_state = 181, .external_lex_state = 67}, [5237] = {.lex_state = 178, .external_lex_state = 71}, [5238] = {.lex_state = 178, .external_lex_state = 71}, [5239] = {.lex_state = 178, .external_lex_state = 71}, @@ -25568,10 +25690,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5245] = {.lex_state = 178, .external_lex_state = 71}, [5246] = {.lex_state = 178, .external_lex_state = 71}, [5247] = {.lex_state = 178, .external_lex_state = 71}, - [5248] = {.lex_state = 178, .external_lex_state = 71}, - [5249] = {.lex_state = 178, .external_lex_state = 71}, - [5250] = {.lex_state = 178, .external_lex_state = 71}, - [5251] = {.lex_state = 178, .external_lex_state = 71}, + [5248] = {.lex_state = 23, .external_lex_state = 74}, + [5249] = {.lex_state = 23, .external_lex_state = 74}, + [5250] = {.lex_state = 23, .external_lex_state = 74}, + [5251] = {.lex_state = 23, .external_lex_state = 74}, [5252] = {.lex_state = 178, .external_lex_state = 71}, [5253] = {.lex_state = 178, .external_lex_state = 71}, [5254] = {.lex_state = 178, .external_lex_state = 71}, @@ -25589,49 +25711,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5266] = {.lex_state = 178, .external_lex_state = 71}, [5267] = {.lex_state = 178, .external_lex_state = 71}, [5268] = {.lex_state = 178, .external_lex_state = 71}, - [5269] = {.lex_state = 178, .external_lex_state = 70}, - [5270] = {.lex_state = 178, .external_lex_state = 70}, + [5269] = {.lex_state = 178, .external_lex_state = 71}, + [5270] = {.lex_state = 178, .external_lex_state = 71}, [5271] = {.lex_state = 178, .external_lex_state = 71}, - [5272] = {.lex_state = 178, .external_lex_state = 70}, - [5273] = {.lex_state = 178, .external_lex_state = 70}, - [5274] = {.lex_state = 178, .external_lex_state = 70}, - [5275] = {.lex_state = 178, .external_lex_state = 70}, - [5276] = {.lex_state = 178, .external_lex_state = 70}, - [5277] = {.lex_state = 178, .external_lex_state = 70}, - [5278] = {.lex_state = 178, .external_lex_state = 71}, - [5279] = {.lex_state = 178, .external_lex_state = 70}, - [5280] = {.lex_state = 178, .external_lex_state = 70}, - [5281] = {.lex_state = 178, .external_lex_state = 70}, - [5282] = {.lex_state = 178, .external_lex_state = 70}, - [5283] = {.lex_state = 178, .external_lex_state = 70}, - [5284] = {.lex_state = 178, .external_lex_state = 70}, - [5285] = {.lex_state = 178, .external_lex_state = 70}, - [5286] = {.lex_state = 23, .external_lex_state = 74}, - [5287] = {.lex_state = 178, .external_lex_state = 71}, + [5272] = {.lex_state = 178, .external_lex_state = 71}, + [5273] = {.lex_state = 178, .external_lex_state = 71}, + [5274] = {.lex_state = 178, .external_lex_state = 71}, + [5275] = {.lex_state = 23, .external_lex_state = 74}, + [5276] = {.lex_state = 181, .external_lex_state = 67}, + [5277] = {.lex_state = 23, .external_lex_state = 74}, + [5278] = {.lex_state = 63, .external_lex_state = 67}, + [5279] = {.lex_state = 178, .external_lex_state = 71}, + [5280] = {.lex_state = 23, .external_lex_state = 74}, + [5281] = {.lex_state = 178, .external_lex_state = 71}, + [5282] = {.lex_state = 178, .external_lex_state = 71}, + [5283] = {.lex_state = 178, .external_lex_state = 71}, + [5284] = {.lex_state = 178, .external_lex_state = 71}, + [5285] = {.lex_state = 178, .external_lex_state = 71}, + [5286] = {.lex_state = 178, .external_lex_state = 70}, + [5287] = {.lex_state = 178, .external_lex_state = 70}, [5288] = {.lex_state = 178, .external_lex_state = 70}, - [5289] = {.lex_state = 178, .external_lex_state = 72}, + [5289] = {.lex_state = 178, .external_lex_state = 70}, [5290] = {.lex_state = 178, .external_lex_state = 70}, [5291] = {.lex_state = 178, .external_lex_state = 70}, - [5292] = {.lex_state = 178, .external_lex_state = 71}, - [5293] = {.lex_state = 178, .external_lex_state = 71}, - [5294] = {.lex_state = 52, .external_lex_state = 67}, - [5295] = {.lex_state = 178, .external_lex_state = 71}, - [5296] = {.lex_state = 178, .external_lex_state = 71}, - [5297] = {.lex_state = 52, .external_lex_state = 67}, - [5298] = {.lex_state = 178, .external_lex_state = 71}, - [5299] = {.lex_state = 178, .external_lex_state = 71}, - [5300] = {.lex_state = 178, .external_lex_state = 71}, - [5301] = {.lex_state = 178, .external_lex_state = 71}, - [5302] = {.lex_state = 178, .external_lex_state = 71}, - [5303] = {.lex_state = 178, .external_lex_state = 71}, - [5304] = {.lex_state = 178, .external_lex_state = 71}, - [5305] = {.lex_state = 178, .external_lex_state = 71}, - [5306] = {.lex_state = 178, .external_lex_state = 71}, + [5292] = {.lex_state = 178, .external_lex_state = 70}, + [5293] = {.lex_state = 178, .external_lex_state = 70}, + [5294] = {.lex_state = 178, .external_lex_state = 70}, + [5295] = {.lex_state = 178, .external_lex_state = 70}, + [5296] = {.lex_state = 178, .external_lex_state = 70}, + [5297] = {.lex_state = 178, .external_lex_state = 70}, + [5298] = {.lex_state = 178, .external_lex_state = 70}, + [5299] = {.lex_state = 178, .external_lex_state = 70}, + [5300] = {.lex_state = 178, .external_lex_state = 70}, + [5301] = {.lex_state = 178, .external_lex_state = 70}, + [5302] = {.lex_state = 178, .external_lex_state = 70}, + [5303] = {.lex_state = 178, .external_lex_state = 70}, + [5304] = {.lex_state = 23, .external_lex_state = 74}, + [5305] = {.lex_state = 23, .external_lex_state = 74}, + [5306] = {.lex_state = 181, .external_lex_state = 67}, [5307] = {.lex_state = 178, .external_lex_state = 71}, [5308] = {.lex_state = 178, .external_lex_state = 71}, [5309] = {.lex_state = 181, .external_lex_state = 67}, - [5310] = {.lex_state = 63, .external_lex_state = 67}, - [5311] = {.lex_state = 178, .external_lex_state = 71}, + [5310] = {.lex_state = 181, .external_lex_state = 67}, + [5311] = {.lex_state = 181, .external_lex_state = 67}, [5312] = {.lex_state = 178, .external_lex_state = 71}, [5313] = {.lex_state = 178, .external_lex_state = 71}, [5314] = {.lex_state = 178, .external_lex_state = 71}, @@ -25639,36 +25761,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5316] = {.lex_state = 178, .external_lex_state = 71}, [5317] = {.lex_state = 178, .external_lex_state = 71}, [5318] = {.lex_state = 178, .external_lex_state = 71}, - [5319] = {.lex_state = 52, .external_lex_state = 67}, - [5320] = {.lex_state = 23, .external_lex_state = 74}, - [5321] = {.lex_state = 23, .external_lex_state = 74}, - [5322] = {.lex_state = 178, .external_lex_state = 71}, - [5323] = {.lex_state = 178, .external_lex_state = 71}, + [5319] = {.lex_state = 178, .external_lex_state = 71}, + [5320] = {.lex_state = 181, .external_lex_state = 67}, + [5321] = {.lex_state = 181, .external_lex_state = 67}, + [5322] = {.lex_state = 183, .external_lex_state = 93}, + [5323] = {.lex_state = 181, .external_lex_state = 67}, [5324] = {.lex_state = 178, .external_lex_state = 71}, [5325] = {.lex_state = 178, .external_lex_state = 71}, [5326] = {.lex_state = 178, .external_lex_state = 71}, [5327] = {.lex_state = 178, .external_lex_state = 71}, - [5328] = {.lex_state = 178, .external_lex_state = 71}, - [5329] = {.lex_state = 178, .external_lex_state = 71}, - [5330] = {.lex_state = 23, .external_lex_state = 74}, - [5331] = {.lex_state = 178, .external_lex_state = 71}, - [5332] = {.lex_state = 178, .external_lex_state = 71}, - [5333] = {.lex_state = 178, .external_lex_state = 71}, - [5334] = {.lex_state = 178, .external_lex_state = 71}, + [5328] = {.lex_state = 63, .external_lex_state = 67}, + [5329] = {.lex_state = 52, .external_lex_state = 67}, + [5330] = {.lex_state = 183, .external_lex_state = 67}, + [5331] = {.lex_state = 52, .external_lex_state = 67}, + [5332] = {.lex_state = 178, .external_lex_state = 73}, + [5333] = {.lex_state = 178, .external_lex_state = 70}, + [5334] = {.lex_state = 63, .external_lex_state = 67}, [5335] = {.lex_state = 178, .external_lex_state = 71}, [5336] = {.lex_state = 178, .external_lex_state = 71}, [5337] = {.lex_state = 178, .external_lex_state = 71}, [5338] = {.lex_state = 178, .external_lex_state = 71}, - [5339] = {.lex_state = 178, .external_lex_state = 71}, - [5340] = {.lex_state = 178, .external_lex_state = 71}, + [5339] = {.lex_state = 178, .external_lex_state = 73}, + [5340] = {.lex_state = 178, .external_lex_state = 73}, [5341] = {.lex_state = 178, .external_lex_state = 71}, [5342] = {.lex_state = 178, .external_lex_state = 71}, [5343] = {.lex_state = 178, .external_lex_state = 71}, [5344] = {.lex_state = 178, .external_lex_state = 71}, - [5345] = {.lex_state = 178, .external_lex_state = 71}, + [5345] = {.lex_state = 183, .external_lex_state = 93}, [5346] = {.lex_state = 178, .external_lex_state = 71}, [5347] = {.lex_state = 178, .external_lex_state = 71}, - [5348] = {.lex_state = 178, .external_lex_state = 71}, + [5348] = {.lex_state = 178, .external_lex_state = 73}, [5349] = {.lex_state = 178, .external_lex_state = 71}, [5350] = {.lex_state = 178, .external_lex_state = 71}, [5351] = {.lex_state = 178, .external_lex_state = 71}, @@ -25689,8 +25811,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5366] = {.lex_state = 178, .external_lex_state = 71}, [5367] = {.lex_state = 178, .external_lex_state = 71}, [5368] = {.lex_state = 178, .external_lex_state = 71}, - [5369] = {.lex_state = 178, .external_lex_state = 71}, - [5370] = {.lex_state = 178, .external_lex_state = 71}, + [5369] = {.lex_state = 179, .external_lex_state = 74}, + [5370] = {.lex_state = 183, .external_lex_state = 97}, [5371] = {.lex_state = 178, .external_lex_state = 71}, [5372] = {.lex_state = 178, .external_lex_state = 71}, [5373] = {.lex_state = 178, .external_lex_state = 71}, @@ -25698,26 +25820,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5375] = {.lex_state = 178, .external_lex_state = 71}, [5376] = {.lex_state = 178, .external_lex_state = 71}, [5377] = {.lex_state = 178, .external_lex_state = 71}, - [5378] = {.lex_state = 23, .external_lex_state = 74}, + [5378] = {.lex_state = 52, .external_lex_state = 67}, [5379] = {.lex_state = 178, .external_lex_state = 71}, - [5380] = {.lex_state = 181, .external_lex_state = 67}, + [5380] = {.lex_state = 178, .external_lex_state = 71}, [5381] = {.lex_state = 178, .external_lex_state = 71}, - [5382] = {.lex_state = 181, .external_lex_state = 67}, - [5383] = {.lex_state = 181, .external_lex_state = 67}, + [5382] = {.lex_state = 178, .external_lex_state = 71}, + [5383] = {.lex_state = 52, .external_lex_state = 67}, [5384] = {.lex_state = 178, .external_lex_state = 71}, [5385] = {.lex_state = 178, .external_lex_state = 71}, - [5386] = {.lex_state = 178, .external_lex_state = 71}, - [5387] = {.lex_state = 181, .external_lex_state = 67}, - [5388] = {.lex_state = 23, .external_lex_state = 74}, - [5389] = {.lex_state = 181, .external_lex_state = 67}, - [5390] = {.lex_state = 181, .external_lex_state = 67}, - [5391] = {.lex_state = 181, .external_lex_state = 67}, - [5392] = {.lex_state = 178, .external_lex_state = 70}, - [5393] = {.lex_state = 178, .external_lex_state = 72}, - [5394] = {.lex_state = 178, .external_lex_state = 72}, - [5395] = {.lex_state = 178, .external_lex_state = 72}, + [5386] = {.lex_state = 52, .external_lex_state = 67}, + [5387] = {.lex_state = 178, .external_lex_state = 71}, + [5388] = {.lex_state = 178, .external_lex_state = 71}, + [5389] = {.lex_state = 178, .external_lex_state = 71}, + [5390] = {.lex_state = 178, .external_lex_state = 71}, + [5391] = {.lex_state = 178, .external_lex_state = 71}, + [5392] = {.lex_state = 178, .external_lex_state = 71}, + [5393] = {.lex_state = 178, .external_lex_state = 71}, + [5394] = {.lex_state = 178, .external_lex_state = 71}, + [5395] = {.lex_state = 178, .external_lex_state = 71}, [5396] = {.lex_state = 178, .external_lex_state = 71}, - [5397] = {.lex_state = 178, .external_lex_state = 73}, + [5397] = {.lex_state = 178, .external_lex_state = 71}, [5398] = {.lex_state = 178, .external_lex_state = 71}, [5399] = {.lex_state = 178, .external_lex_state = 71}, [5400] = {.lex_state = 178, .external_lex_state = 71}, @@ -25734,156 +25856,156 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5411] = {.lex_state = 178, .external_lex_state = 71}, [5412] = {.lex_state = 178, .external_lex_state = 71}, [5413] = {.lex_state = 178, .external_lex_state = 71}, - [5414] = {.lex_state = 63, .external_lex_state = 67}, - [5415] = {.lex_state = 63, .external_lex_state = 67}, - [5416] = {.lex_state = 23, .external_lex_state = 74}, - [5417] = {.lex_state = 23, .external_lex_state = 74}, - [5418] = {.lex_state = 23, .external_lex_state = 74}, + [5414] = {.lex_state = 178, .external_lex_state = 71}, + [5415] = {.lex_state = 178, .external_lex_state = 71}, + [5416] = {.lex_state = 178, .external_lex_state = 71}, + [5417] = {.lex_state = 178, .external_lex_state = 71}, + [5418] = {.lex_state = 178, .external_lex_state = 71}, [5419] = {.lex_state = 178, .external_lex_state = 71}, [5420] = {.lex_state = 178, .external_lex_state = 71}, - [5421] = {.lex_state = 23, .external_lex_state = 74}, + [5421] = {.lex_state = 178, .external_lex_state = 71}, [5422] = {.lex_state = 178, .external_lex_state = 71}, - [5423] = {.lex_state = 178, .external_lex_state = 72}, - [5424] = {.lex_state = 23, .external_lex_state = 74}, - [5425] = {.lex_state = 23, .external_lex_state = 73}, + [5423] = {.lex_state = 178, .external_lex_state = 71}, + [5424] = {.lex_state = 178, .external_lex_state = 71}, + [5425] = {.lex_state = 178, .external_lex_state = 71}, [5426] = {.lex_state = 178, .external_lex_state = 71}, - [5427] = {.lex_state = 181, .external_lex_state = 67}, - [5428] = {.lex_state = 181, .external_lex_state = 67}, - [5429] = {.lex_state = 178, .external_lex_state = 73}, - [5430] = {.lex_state = 181, .external_lex_state = 67}, - [5431] = {.lex_state = 52, .external_lex_state = 67}, - [5432] = {.lex_state = 178, .external_lex_state = 73}, - [5433] = {.lex_state = 52, .external_lex_state = 67}, - [5434] = {.lex_state = 181, .external_lex_state = 67}, - [5435] = {.lex_state = 181, .external_lex_state = 67}, - [5436] = {.lex_state = 178, .external_lex_state = 67}, - [5437] = {.lex_state = 48, .external_lex_state = 67}, - [5438] = {.lex_state = 178, .external_lex_state = 67}, - [5439] = {.lex_state = 48, .external_lex_state = 67}, - [5440] = {.lex_state = 48, .external_lex_state = 67}, - [5441] = {.lex_state = 48, .external_lex_state = 67}, - [5442] = {.lex_state = 181, .external_lex_state = 67}, - [5443] = {.lex_state = 181, .external_lex_state = 67}, - [5444] = {.lex_state = 178, .external_lex_state = 72}, - [5445] = {.lex_state = 181, .external_lex_state = 67}, - [5446] = {.lex_state = 181, .external_lex_state = 67}, - [5447] = {.lex_state = 181, .external_lex_state = 67}, - [5448] = {.lex_state = 181, .external_lex_state = 67}, - [5449] = {.lex_state = 181, .external_lex_state = 67}, - [5450] = {.lex_state = 181, .external_lex_state = 67}, - [5451] = {.lex_state = 178, .external_lex_state = 72}, - [5452] = {.lex_state = 48, .external_lex_state = 67}, - [5453] = {.lex_state = 48, .external_lex_state = 67}, - [5454] = {.lex_state = 52, .external_lex_state = 67}, + [5427] = {.lex_state = 178, .external_lex_state = 71}, + [5428] = {.lex_state = 178, .external_lex_state = 71}, + [5429] = {.lex_state = 178, .external_lex_state = 71}, + [5430] = {.lex_state = 178, .external_lex_state = 71}, + [5431] = {.lex_state = 178, .external_lex_state = 71}, + [5432] = {.lex_state = 178, .external_lex_state = 71}, + [5433] = {.lex_state = 178, .external_lex_state = 71}, + [5434] = {.lex_state = 178, .external_lex_state = 71}, + [5435] = {.lex_state = 178, .external_lex_state = 71}, + [5436] = {.lex_state = 52, .external_lex_state = 67}, + [5437] = {.lex_state = 178, .external_lex_state = 71}, + [5438] = {.lex_state = 178, .external_lex_state = 71}, + [5439] = {.lex_state = 178, .external_lex_state = 71}, + [5440] = {.lex_state = 178, .external_lex_state = 71}, + [5441] = {.lex_state = 178, .external_lex_state = 71}, + [5442] = {.lex_state = 178, .external_lex_state = 71}, + [5443] = {.lex_state = 178, .external_lex_state = 71}, + [5444] = {.lex_state = 178, .external_lex_state = 71}, + [5445] = {.lex_state = 178, .external_lex_state = 71}, + [5446] = {.lex_state = 178, .external_lex_state = 71}, + [5447] = {.lex_state = 178, .external_lex_state = 71}, + [5448] = {.lex_state = 178, .external_lex_state = 71}, + [5449] = {.lex_state = 178, .external_lex_state = 71}, + [5450] = {.lex_state = 178, .external_lex_state = 71}, + [5451] = {.lex_state = 178, .external_lex_state = 71}, + [5452] = {.lex_state = 178, .external_lex_state = 71}, + [5453] = {.lex_state = 23, .external_lex_state = 74}, + [5454] = {.lex_state = 181, .external_lex_state = 67}, [5455] = {.lex_state = 181, .external_lex_state = 67}, - [5456] = {.lex_state = 181, .external_lex_state = 67}, - [5457] = {.lex_state = 181, .external_lex_state = 67}, + [5456] = {.lex_state = 178, .external_lex_state = 73}, + [5457] = {.lex_state = 48, .external_lex_state = 87}, [5458] = {.lex_state = 181, .external_lex_state = 67}, - [5459] = {.lex_state = 181, .external_lex_state = 67}, - [5460] = {.lex_state = 181, .external_lex_state = 67}, - [5461] = {.lex_state = 181, .external_lex_state = 67}, - [5462] = {.lex_state = 52, .external_lex_state = 67}, + [5459] = {.lex_state = 48, .external_lex_state = 87}, + [5460] = {.lex_state = 52, .external_lex_state = 67}, + [5461] = {.lex_state = 52, .external_lex_state = 67}, + [5462] = {.lex_state = 178, .external_lex_state = 72}, [5463] = {.lex_state = 178, .external_lex_state = 72}, - [5464] = {.lex_state = 181, .external_lex_state = 67}, - [5465] = {.lex_state = 181, .external_lex_state = 67}, - [5466] = {.lex_state = 181, .external_lex_state = 67}, + [5464] = {.lex_state = 52, .external_lex_state = 67}, + [5465] = {.lex_state = 178, .external_lex_state = 72}, + [5466] = {.lex_state = 52, .external_lex_state = 67}, [5467] = {.lex_state = 181, .external_lex_state = 67}, [5468] = {.lex_state = 181, .external_lex_state = 67}, - [5469] = {.lex_state = 178, .external_lex_state = 72}, - [5470] = {.lex_state = 181, .external_lex_state = 67}, - [5471] = {.lex_state = 178, .external_lex_state = 72}, + [5469] = {.lex_state = 181, .external_lex_state = 67}, + [5470] = {.lex_state = 52, .external_lex_state = 67}, + [5471] = {.lex_state = 181, .external_lex_state = 67}, [5472] = {.lex_state = 181, .external_lex_state = 67}, - [5473] = {.lex_state = 181, .external_lex_state = 67}, - [5474] = {.lex_state = 178, .external_lex_state = 72}, + [5473] = {.lex_state = 178, .external_lex_state = 93}, + [5474] = {.lex_state = 178, .external_lex_state = 98}, [5475] = {.lex_state = 181, .external_lex_state = 67}, [5476] = {.lex_state = 181, .external_lex_state = 67}, [5477] = {.lex_state = 181, .external_lex_state = 67}, [5478] = {.lex_state = 181, .external_lex_state = 67}, - [5479] = {.lex_state = 181, .external_lex_state = 67}, - [5480] = {.lex_state = 181, .external_lex_state = 67}, - [5481] = {.lex_state = 181, .external_lex_state = 67}, - [5482] = {.lex_state = 33, .external_lex_state = 98}, - [5483] = {.lex_state = 178, .external_lex_state = 90}, - [5484] = {.lex_state = 181, .external_lex_state = 67}, - [5485] = {.lex_state = 178, .external_lex_state = 94}, + [5479] = {.lex_state = 178, .external_lex_state = 67}, + [5480] = {.lex_state = 48, .external_lex_state = 67}, + [5481] = {.lex_state = 178, .external_lex_state = 67}, + [5482] = {.lex_state = 48, .external_lex_state = 67}, + [5483] = {.lex_state = 48, .external_lex_state = 67}, + [5484] = {.lex_state = 48, .external_lex_state = 67}, + [5485] = {.lex_state = 33, .external_lex_state = 99}, [5486] = {.lex_state = 181, .external_lex_state = 67}, [5487] = {.lex_state = 181, .external_lex_state = 67}, [5488] = {.lex_state = 181, .external_lex_state = 67}, [5489] = {.lex_state = 181, .external_lex_state = 67}, - [5490] = {.lex_state = 178, .external_lex_state = 90}, - [5491] = {.lex_state = 52, .external_lex_state = 67}, + [5490] = {.lex_state = 169, .external_lex_state = 97}, + [5491] = {.lex_state = 181, .external_lex_state = 67}, [5492] = {.lex_state = 181, .external_lex_state = 67}, [5493] = {.lex_state = 181, .external_lex_state = 67}, - [5494] = {.lex_state = 181, .external_lex_state = 67}, + [5494] = {.lex_state = 178, .external_lex_state = 73}, [5495] = {.lex_state = 181, .external_lex_state = 67}, [5496] = {.lex_state = 181, .external_lex_state = 67}, [5497] = {.lex_state = 181, .external_lex_state = 67}, - [5498] = {.lex_state = 181, .external_lex_state = 67}, - [5499] = {.lex_state = 181, .external_lex_state = 67}, - [5500] = {.lex_state = 52, .external_lex_state = 67}, + [5498] = {.lex_state = 178, .external_lex_state = 100}, + [5499] = {.lex_state = 186, .external_lex_state = 101}, + [5500] = {.lex_state = 181, .external_lex_state = 67}, [5501] = {.lex_state = 181, .external_lex_state = 67}, - [5502] = {.lex_state = 169, .external_lex_state = 97}, - [5503] = {.lex_state = 181, .external_lex_state = 67}, - [5504] = {.lex_state = 181, .external_lex_state = 67}, - [5505] = {.lex_state = 33, .external_lex_state = 98}, + [5502] = {.lex_state = 178, .external_lex_state = 73}, + [5503] = {.lex_state = 48, .external_lex_state = 67}, + [5504] = {.lex_state = 48, .external_lex_state = 67}, + [5505] = {.lex_state = 181, .external_lex_state = 67}, [5506] = {.lex_state = 181, .external_lex_state = 67}, - [5507] = {.lex_state = 23, .external_lex_state = 74}, - [5508] = {.lex_state = 23, .external_lex_state = 70}, - [5509] = {.lex_state = 186, .external_lex_state = 99}, + [5507] = {.lex_state = 181, .external_lex_state = 67}, + [5508] = {.lex_state = 181, .external_lex_state = 67}, + [5509] = {.lex_state = 181, .external_lex_state = 67}, [5510] = {.lex_state = 181, .external_lex_state = 67}, [5511] = {.lex_state = 181, .external_lex_state = 67}, [5512] = {.lex_state = 181, .external_lex_state = 67}, - [5513] = {.lex_state = 186, .external_lex_state = 99}, - [5514] = {.lex_state = 186, .external_lex_state = 99}, + [5513] = {.lex_state = 181, .external_lex_state = 67}, + [5514] = {.lex_state = 181, .external_lex_state = 67}, [5515] = {.lex_state = 181, .external_lex_state = 67}, [5516] = {.lex_state = 181, .external_lex_state = 67}, - [5517] = {.lex_state = 179, .external_lex_state = 72}, - [5518] = {.lex_state = 49, .external_lex_state = 67}, - [5519] = {.lex_state = 169, .external_lex_state = 97}, - [5520] = {.lex_state = 183, .external_lex_state = 73}, + [5517] = {.lex_state = 181, .external_lex_state = 67}, + [5518] = {.lex_state = 181, .external_lex_state = 67}, + [5519] = {.lex_state = 181, .external_lex_state = 67}, + [5520] = {.lex_state = 181, .external_lex_state = 67}, [5521] = {.lex_state = 181, .external_lex_state = 67}, [5522] = {.lex_state = 181, .external_lex_state = 67}, [5523] = {.lex_state = 181, .external_lex_state = 67}, [5524] = {.lex_state = 181, .external_lex_state = 67}, - [5525] = {.lex_state = 52, .external_lex_state = 67}, + [5525] = {.lex_state = 181, .external_lex_state = 67}, [5526] = {.lex_state = 181, .external_lex_state = 67}, - [5527] = {.lex_state = 181, .external_lex_state = 67}, + [5527] = {.lex_state = 183, .external_lex_state = 72}, [5528] = {.lex_state = 181, .external_lex_state = 67}, - [5529] = {.lex_state = 178, .external_lex_state = 73}, + [5529] = {.lex_state = 181, .external_lex_state = 67}, [5530] = {.lex_state = 181, .external_lex_state = 67}, - [5531] = {.lex_state = 33, .external_lex_state = 98}, + [5531] = {.lex_state = 181, .external_lex_state = 67}, [5532] = {.lex_state = 181, .external_lex_state = 67}, [5533] = {.lex_state = 181, .external_lex_state = 67}, [5534] = {.lex_state = 181, .external_lex_state = 67}, - [5535] = {.lex_state = 23, .external_lex_state = 74}, + [5535] = {.lex_state = 181, .external_lex_state = 67}, [5536] = {.lex_state = 181, .external_lex_state = 67}, - [5537] = {.lex_state = 178, .external_lex_state = 72}, + [5537] = {.lex_state = 181, .external_lex_state = 67}, [5538] = {.lex_state = 181, .external_lex_state = 67}, [5539] = {.lex_state = 181, .external_lex_state = 67}, [5540] = {.lex_state = 181, .external_lex_state = 67}, [5541] = {.lex_state = 181, .external_lex_state = 67}, - [5542] = {.lex_state = 52, .external_lex_state = 67}, + [5542] = {.lex_state = 181, .external_lex_state = 67}, [5543] = {.lex_state = 181, .external_lex_state = 67}, [5544] = {.lex_state = 181, .external_lex_state = 67}, - [5545] = {.lex_state = 52, .external_lex_state = 67}, - [5546] = {.lex_state = 52, .external_lex_state = 67}, + [5545] = {.lex_state = 178, .external_lex_state = 89}, + [5546] = {.lex_state = 181, .external_lex_state = 67}, [5547] = {.lex_state = 181, .external_lex_state = 67}, [5548] = {.lex_state = 181, .external_lex_state = 67}, [5549] = {.lex_state = 181, .external_lex_state = 67}, [5550] = {.lex_state = 181, .external_lex_state = 67}, [5551] = {.lex_state = 181, .external_lex_state = 67}, - [5552] = {.lex_state = 181, .external_lex_state = 67}, + [5552] = {.lex_state = 23, .external_lex_state = 70}, [5553] = {.lex_state = 181, .external_lex_state = 67}, [5554] = {.lex_state = 181, .external_lex_state = 67}, [5555] = {.lex_state = 181, .external_lex_state = 67}, [5556] = {.lex_state = 181, .external_lex_state = 67}, [5557] = {.lex_state = 181, .external_lex_state = 67}, - [5558] = {.lex_state = 48, .external_lex_state = 67}, + [5558] = {.lex_state = 181, .external_lex_state = 67}, [5559] = {.lex_state = 181, .external_lex_state = 67}, - [5560] = {.lex_state = 33, .external_lex_state = 98}, + [5560] = {.lex_state = 181, .external_lex_state = 67}, [5561] = {.lex_state = 181, .external_lex_state = 67}, - [5562] = {.lex_state = 169, .external_lex_state = 97}, - [5563] = {.lex_state = 52, .external_lex_state = 67}, + [5562] = {.lex_state = 181, .external_lex_state = 67}, + [5563] = {.lex_state = 181, .external_lex_state = 67}, [5564] = {.lex_state = 181, .external_lex_state = 67}, [5565] = {.lex_state = 181, .external_lex_state = 67}, [5566] = {.lex_state = 181, .external_lex_state = 67}, @@ -25899,843 +26021,843 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5576] = {.lex_state = 181, .external_lex_state = 67}, [5577] = {.lex_state = 181, .external_lex_state = 67}, [5578] = {.lex_state = 181, .external_lex_state = 67}, - [5579] = {.lex_state = 183, .external_lex_state = 73}, - [5580] = {.lex_state = 181, .external_lex_state = 67}, - [5581] = {.lex_state = 181, .external_lex_state = 67}, + [5579] = {.lex_state = 181, .external_lex_state = 67}, + [5580] = {.lex_state = 178, .external_lex_state = 100}, + [5581] = {.lex_state = 178, .external_lex_state = 73}, [5582] = {.lex_state = 181, .external_lex_state = 67}, - [5583] = {.lex_state = 181, .external_lex_state = 67}, + [5583] = {.lex_state = 178, .external_lex_state = 73}, [5584] = {.lex_state = 181, .external_lex_state = 67}, - [5585] = {.lex_state = 48, .external_lex_state = 87}, - [5586] = {.lex_state = 178, .external_lex_state = 72}, + [5585] = {.lex_state = 181, .external_lex_state = 67}, + [5586] = {.lex_state = 181, .external_lex_state = 67}, [5587] = {.lex_state = 181, .external_lex_state = 67}, - [5588] = {.lex_state = 178, .external_lex_state = 100}, - [5589] = {.lex_state = 181, .external_lex_state = 67}, - [5590] = {.lex_state = 181, .external_lex_state = 67}, + [5588] = {.lex_state = 181, .external_lex_state = 67}, + [5589] = {.lex_state = 178, .external_lex_state = 67}, + [5590] = {.lex_state = 178, .external_lex_state = 67}, [5591] = {.lex_state = 181, .external_lex_state = 67}, [5592] = {.lex_state = 181, .external_lex_state = 67}, [5593] = {.lex_state = 181, .external_lex_state = 67}, [5594] = {.lex_state = 181, .external_lex_state = 67}, - [5595] = {.lex_state = 178, .external_lex_state = 101}, + [5595] = {.lex_state = 181, .external_lex_state = 67}, [5596] = {.lex_state = 181, .external_lex_state = 67}, - [5597] = {.lex_state = 178, .external_lex_state = 72}, + [5597] = {.lex_state = 181, .external_lex_state = 67}, [5598] = {.lex_state = 181, .external_lex_state = 67}, - [5599] = {.lex_state = 181, .external_lex_state = 67}, - [5600] = {.lex_state = 181, .external_lex_state = 67}, - [5601] = {.lex_state = 181, .external_lex_state = 67}, + [5599] = {.lex_state = 183, .external_lex_state = 67}, + [5600] = {.lex_state = 178, .external_lex_state = 89}, + [5601] = {.lex_state = 169, .external_lex_state = 97}, [5602] = {.lex_state = 181, .external_lex_state = 67}, [5603] = {.lex_state = 181, .external_lex_state = 67}, [5604] = {.lex_state = 181, .external_lex_state = 67}, - [5605] = {.lex_state = 178, .external_lex_state = 101}, - [5606] = {.lex_state = 181, .external_lex_state = 67}, - [5607] = {.lex_state = 52, .external_lex_state = 67}, - [5608] = {.lex_state = 181, .external_lex_state = 67}, - [5609] = {.lex_state = 178, .external_lex_state = 72}, + [5605] = {.lex_state = 181, .external_lex_state = 67}, + [5606] = {.lex_state = 178, .external_lex_state = 73}, + [5607] = {.lex_state = 181, .external_lex_state = 67}, + [5608] = {.lex_state = 186, .external_lex_state = 101}, + [5609] = {.lex_state = 33, .external_lex_state = 99}, [5610] = {.lex_state = 181, .external_lex_state = 67}, - [5611] = {.lex_state = 183, .external_lex_state = 72}, - [5612] = {.lex_state = 181, .external_lex_state = 67}, - [5613] = {.lex_state = 181, .external_lex_state = 67}, - [5614] = {.lex_state = 181, .external_lex_state = 67}, - [5615] = {.lex_state = 181, .external_lex_state = 67}, - [5616] = {.lex_state = 178, .external_lex_state = 72}, - [5617] = {.lex_state = 181, .external_lex_state = 67}, - [5618] = {.lex_state = 181, .external_lex_state = 67}, - [5619] = {.lex_state = 181, .external_lex_state = 67}, - [5620] = {.lex_state = 181, .external_lex_state = 67}, + [5611] = {.lex_state = 181, .external_lex_state = 67}, + [5612] = {.lex_state = 63, .external_lex_state = 87}, + [5613] = {.lex_state = 178, .external_lex_state = 73}, + [5614] = {.lex_state = 183, .external_lex_state = 72}, + [5615] = {.lex_state = 186, .external_lex_state = 101}, + [5616] = {.lex_state = 183, .external_lex_state = 73}, + [5617] = {.lex_state = 63, .external_lex_state = 87}, + [5618] = {.lex_state = 178, .external_lex_state = 73}, + [5619] = {.lex_state = 178, .external_lex_state = 72}, + [5620] = {.lex_state = 52, .external_lex_state = 67}, [5621] = {.lex_state = 181, .external_lex_state = 67}, [5622] = {.lex_state = 181, .external_lex_state = 67}, [5623] = {.lex_state = 181, .external_lex_state = 67}, [5624] = {.lex_state = 181, .external_lex_state = 67}, - [5625] = {.lex_state = 178, .external_lex_state = 67}, - [5626] = {.lex_state = 178, .external_lex_state = 67}, - [5627] = {.lex_state = 178, .external_lex_state = 93}, + [5625] = {.lex_state = 181, .external_lex_state = 67}, + [5626] = {.lex_state = 179, .external_lex_state = 73}, + [5627] = {.lex_state = 181, .external_lex_state = 67}, [5628] = {.lex_state = 181, .external_lex_state = 67}, - [5629] = {.lex_state = 52, .external_lex_state = 67}, + [5629] = {.lex_state = 181, .external_lex_state = 67}, [5630] = {.lex_state = 181, .external_lex_state = 67}, - [5631] = {.lex_state = 178, .external_lex_state = 72}, + [5631] = {.lex_state = 181, .external_lex_state = 67}, [5632] = {.lex_state = 181, .external_lex_state = 67}, - [5633] = {.lex_state = 181, .external_lex_state = 67}, - [5634] = {.lex_state = 183, .external_lex_state = 67}, - [5635] = {.lex_state = 178, .external_lex_state = 72}, - [5636] = {.lex_state = 178, .external_lex_state = 101}, + [5633] = {.lex_state = 48, .external_lex_state = 87}, + [5634] = {.lex_state = 181, .external_lex_state = 67}, + [5635] = {.lex_state = 181, .external_lex_state = 67}, + [5636] = {.lex_state = 181, .external_lex_state = 67}, [5637] = {.lex_state = 181, .external_lex_state = 67}, - [5638] = {.lex_state = 178, .external_lex_state = 101}, - [5639] = {.lex_state = 178, .external_lex_state = 72}, + [5638] = {.lex_state = 181, .external_lex_state = 67}, + [5639] = {.lex_state = 181, .external_lex_state = 67}, [5640] = {.lex_state = 181, .external_lex_state = 67}, [5641] = {.lex_state = 181, .external_lex_state = 67}, - [5642] = {.lex_state = 181, .external_lex_state = 67}, - [5643] = {.lex_state = 178, .external_lex_state = 73}, + [5642] = {.lex_state = 178, .external_lex_state = 98}, + [5643] = {.lex_state = 52, .external_lex_state = 67}, [5644] = {.lex_state = 52, .external_lex_state = 67}, - [5645] = {.lex_state = 48, .external_lex_state = 87}, + [5645] = {.lex_state = 178, .external_lex_state = 73}, [5646] = {.lex_state = 181, .external_lex_state = 67}, - [5647] = {.lex_state = 178, .external_lex_state = 72}, - [5648] = {.lex_state = 181, .external_lex_state = 67}, - [5649] = {.lex_state = 178, .external_lex_state = 72}, - [5650] = {.lex_state = 48, .external_lex_state = 87}, + [5647] = {.lex_state = 178, .external_lex_state = 73}, + [5648] = {.lex_state = 183, .external_lex_state = 72}, + [5649] = {.lex_state = 178, .external_lex_state = 98}, + [5650] = {.lex_state = 181, .external_lex_state = 67}, [5651] = {.lex_state = 181, .external_lex_state = 67}, - [5652] = {.lex_state = 181, .external_lex_state = 67}, - [5653] = {.lex_state = 181, .external_lex_state = 67}, - [5654] = {.lex_state = 181, .external_lex_state = 67}, - [5655] = {.lex_state = 52, .external_lex_state = 67}, - [5656] = {.lex_state = 52, .external_lex_state = 67}, - [5657] = {.lex_state = 52, .external_lex_state = 67}, - [5658] = {.lex_state = 48, .external_lex_state = 67}, - [5659] = {.lex_state = 48, .external_lex_state = 67}, - [5660] = {.lex_state = 48, .external_lex_state = 67}, - [5661] = {.lex_state = 48, .external_lex_state = 67}, - [5662] = {.lex_state = 181, .external_lex_state = 67}, - [5663] = {.lex_state = 181, .external_lex_state = 67}, - [5664] = {.lex_state = 178, .external_lex_state = 72}, - [5665] = {.lex_state = 181, .external_lex_state = 67}, - [5666] = {.lex_state = 181, .external_lex_state = 67}, + [5652] = {.lex_state = 178, .external_lex_state = 73}, + [5653] = {.lex_state = 178, .external_lex_state = 72}, + [5654] = {.lex_state = 178, .external_lex_state = 72}, + [5655] = {.lex_state = 178, .external_lex_state = 72}, + [5656] = {.lex_state = 178, .external_lex_state = 72}, + [5657] = {.lex_state = 181, .external_lex_state = 67}, + [5658] = {.lex_state = 52, .external_lex_state = 67}, + [5659] = {.lex_state = 52, .external_lex_state = 67}, + [5660] = {.lex_state = 52, .external_lex_state = 67}, + [5661] = {.lex_state = 52, .external_lex_state = 67}, + [5662] = {.lex_state = 52, .external_lex_state = 67}, + [5663] = {.lex_state = 52, .external_lex_state = 67}, + [5664] = {.lex_state = 181, .external_lex_state = 67}, + [5665] = {.lex_state = 183, .external_lex_state = 73}, + [5666] = {.lex_state = 178, .external_lex_state = 72}, [5667] = {.lex_state = 178, .external_lex_state = 72}, - [5668] = {.lex_state = 181, .external_lex_state = 67}, - [5669] = {.lex_state = 181, .external_lex_state = 67}, - [5670] = {.lex_state = 181, .external_lex_state = 67}, - [5671] = {.lex_state = 181, .external_lex_state = 67}, - [5672] = {.lex_state = 181, .external_lex_state = 67}, - [5673] = {.lex_state = 181, .external_lex_state = 67}, - [5674] = {.lex_state = 181, .external_lex_state = 67}, - [5675] = {.lex_state = 181, .external_lex_state = 67}, + [5668] = {.lex_state = 178, .external_lex_state = 72}, + [5669] = {.lex_state = 178, .external_lex_state = 72}, + [5670] = {.lex_state = 178, .external_lex_state = 72}, + [5671] = {.lex_state = 178, .external_lex_state = 72}, + [5672] = {.lex_state = 178, .external_lex_state = 100}, + [5673] = {.lex_state = 178, .external_lex_state = 94}, + [5674] = {.lex_state = 183, .external_lex_state = 73}, + [5675] = {.lex_state = 52, .external_lex_state = 67}, [5676] = {.lex_state = 181, .external_lex_state = 67}, [5677] = {.lex_state = 181, .external_lex_state = 67}, - [5678] = {.lex_state = 181, .external_lex_state = 67}, - [5679] = {.lex_state = 48, .external_lex_state = 67}, - [5680] = {.lex_state = 181, .external_lex_state = 67}, - [5681] = {.lex_state = 178, .external_lex_state = 72}, - [5682] = {.lex_state = 178, .external_lex_state = 72}, - [5683] = {.lex_state = 48, .external_lex_state = 67}, + [5678] = {.lex_state = 178, .external_lex_state = 73}, + [5679] = {.lex_state = 178, .external_lex_state = 73}, + [5680] = {.lex_state = 178, .external_lex_state = 73}, + [5681] = {.lex_state = 178, .external_lex_state = 73}, + [5682] = {.lex_state = 178, .external_lex_state = 73}, + [5683] = {.lex_state = 178, .external_lex_state = 73}, [5684] = {.lex_state = 181, .external_lex_state = 67}, [5685] = {.lex_state = 52, .external_lex_state = 67}, [5686] = {.lex_state = 181, .external_lex_state = 67}, [5687] = {.lex_state = 181, .external_lex_state = 67}, - [5688] = {.lex_state = 52, .external_lex_state = 67}, + [5688] = {.lex_state = 181, .external_lex_state = 67}, [5689] = {.lex_state = 181, .external_lex_state = 67}, [5690] = {.lex_state = 181, .external_lex_state = 67}, [5691] = {.lex_state = 181, .external_lex_state = 67}, - [5692] = {.lex_state = 52, .external_lex_state = 67}, - [5693] = {.lex_state = 52, .external_lex_state = 67}, - [5694] = {.lex_state = 178, .external_lex_state = 73}, - [5695] = {.lex_state = 178, .external_lex_state = 73}, - [5696] = {.lex_state = 178, .external_lex_state = 73}, - [5697] = {.lex_state = 178, .external_lex_state = 73}, - [5698] = {.lex_state = 52, .external_lex_state = 67}, - [5699] = {.lex_state = 52, .external_lex_state = 67}, + [5692] = {.lex_state = 181, .external_lex_state = 67}, + [5693] = {.lex_state = 181, .external_lex_state = 67}, + [5694] = {.lex_state = 181, .external_lex_state = 67}, + [5695] = {.lex_state = 181, .external_lex_state = 67}, + [5696] = {.lex_state = 181, .external_lex_state = 67}, + [5697] = {.lex_state = 181, .external_lex_state = 67}, + [5698] = {.lex_state = 169, .external_lex_state = 97}, + [5699] = {.lex_state = 178, .external_lex_state = 100}, [5700] = {.lex_state = 52, .external_lex_state = 67}, [5701] = {.lex_state = 52, .external_lex_state = 67}, - [5702] = {.lex_state = 52, .external_lex_state = 67}, - [5703] = {.lex_state = 52, .external_lex_state = 67}, - [5704] = {.lex_state = 52, .external_lex_state = 67}, - [5705] = {.lex_state = 178, .external_lex_state = 73}, - [5706] = {.lex_state = 178, .external_lex_state = 73}, - [5707] = {.lex_state = 178, .external_lex_state = 73}, - [5708] = {.lex_state = 178, .external_lex_state = 73}, - [5709] = {.lex_state = 178, .external_lex_state = 73}, - [5710] = {.lex_state = 178, .external_lex_state = 73}, - [5711] = {.lex_state = 52, .external_lex_state = 67}, - [5712] = {.lex_state = 181, .external_lex_state = 67}, - [5713] = {.lex_state = 181, .external_lex_state = 67}, - [5714] = {.lex_state = 181, .external_lex_state = 67}, - [5715] = {.lex_state = 181, .external_lex_state = 67}, - [5716] = {.lex_state = 181, .external_lex_state = 67}, + [5702] = {.lex_state = 178, .external_lex_state = 73}, + [5703] = {.lex_state = 178, .external_lex_state = 73}, + [5704] = {.lex_state = 178, .external_lex_state = 73}, + [5705] = {.lex_state = 52, .external_lex_state = 67}, + [5706] = {.lex_state = 52, .external_lex_state = 67}, + [5707] = {.lex_state = 52, .external_lex_state = 67}, + [5708] = {.lex_state = 48, .external_lex_state = 67}, + [5709] = {.lex_state = 48, .external_lex_state = 67}, + [5710] = {.lex_state = 48, .external_lex_state = 67}, + [5711] = {.lex_state = 48, .external_lex_state = 67}, + [5712] = {.lex_state = 48, .external_lex_state = 67}, + [5713] = {.lex_state = 48, .external_lex_state = 67}, + [5714] = {.lex_state = 48, .external_lex_state = 67}, + [5715] = {.lex_state = 178, .external_lex_state = 73}, + [5716] = {.lex_state = 178, .external_lex_state = 73}, [5717] = {.lex_state = 181, .external_lex_state = 67}, - [5718] = {.lex_state = 181, .external_lex_state = 67}, + [5718] = {.lex_state = 33, .external_lex_state = 99}, [5719] = {.lex_state = 181, .external_lex_state = 67}, [5720] = {.lex_state = 181, .external_lex_state = 67}, - [5721] = {.lex_state = 178, .external_lex_state = 72}, - [5722] = {.lex_state = 178, .external_lex_state = 72}, - [5723] = {.lex_state = 178, .external_lex_state = 72}, - [5724] = {.lex_state = 178, .external_lex_state = 72}, - [5725] = {.lex_state = 178, .external_lex_state = 72}, - [5726] = {.lex_state = 178, .external_lex_state = 72}, - [5727] = {.lex_state = 181, .external_lex_state = 67}, - [5728] = {.lex_state = 181, .external_lex_state = 67}, + [5721] = {.lex_state = 178, .external_lex_state = 73}, + [5722] = {.lex_state = 52, .external_lex_state = 67}, + [5723] = {.lex_state = 52, .external_lex_state = 67}, + [5724] = {.lex_state = 52, .external_lex_state = 67}, + [5725] = {.lex_state = 52, .external_lex_state = 67}, + [5726] = {.lex_state = 52, .external_lex_state = 67}, + [5727] = {.lex_state = 52, .external_lex_state = 67}, + [5728] = {.lex_state = 52, .external_lex_state = 67}, [5729] = {.lex_state = 52, .external_lex_state = 67}, - [5730] = {.lex_state = 63, .external_lex_state = 87}, + [5730] = {.lex_state = 52, .external_lex_state = 67}, [5731] = {.lex_state = 52, .external_lex_state = 67}, - [5732] = {.lex_state = 63, .external_lex_state = 87}, - [5733] = {.lex_state = 183, .external_lex_state = 73}, - [5734] = {.lex_state = 178, .external_lex_state = 72}, - [5735] = {.lex_state = 52, .external_lex_state = 67}, - [5736] = {.lex_state = 48, .external_lex_state = 67}, - [5737] = {.lex_state = 48, .external_lex_state = 67}, - [5738] = {.lex_state = 48, .external_lex_state = 67}, - [5739] = {.lex_state = 48, .external_lex_state = 67}, - [5740] = {.lex_state = 48, .external_lex_state = 67}, - [5741] = {.lex_state = 48, .external_lex_state = 67}, - [5742] = {.lex_state = 183, .external_lex_state = 72}, - [5743] = {.lex_state = 179, .external_lex_state = 73}, - [5744] = {.lex_state = 178, .external_lex_state = 73}, - [5745] = {.lex_state = 183, .external_lex_state = 72}, - [5746] = {.lex_state = 178, .external_lex_state = 100}, - [5747] = {.lex_state = 178, .external_lex_state = 100}, - [5748] = {.lex_state = 52, .external_lex_state = 67}, - [5749] = {.lex_state = 178, .external_lex_state = 100}, - [5750] = {.lex_state = 178, .external_lex_state = 73}, - [5751] = {.lex_state = 178, .external_lex_state = 72}, - [5752] = {.lex_state = 169, .external_lex_state = 70}, - [5753] = {.lex_state = 178, .external_lex_state = 73}, - [5754] = {.lex_state = 175, .external_lex_state = 102}, - [5755] = {.lex_state = 178, .external_lex_state = 72}, - [5756] = {.lex_state = 178, .external_lex_state = 72}, - [5757] = {.lex_state = 178, .external_lex_state = 72}, + [5732] = {.lex_state = 52, .external_lex_state = 67}, + [5733] = {.lex_state = 181, .external_lex_state = 67}, + [5734] = {.lex_state = 181, .external_lex_state = 67}, + [5735] = {.lex_state = 181, .external_lex_state = 67}, + [5736] = {.lex_state = 181, .external_lex_state = 67}, + [5737] = {.lex_state = 181, .external_lex_state = 67}, + [5738] = {.lex_state = 181, .external_lex_state = 67}, + [5739] = {.lex_state = 181, .external_lex_state = 67}, + [5740] = {.lex_state = 181, .external_lex_state = 67}, + [5741] = {.lex_state = 181, .external_lex_state = 67}, + [5742] = {.lex_state = 181, .external_lex_state = 67}, + [5743] = {.lex_state = 181, .external_lex_state = 67}, + [5744] = {.lex_state = 181, .external_lex_state = 67}, + [5745] = {.lex_state = 181, .external_lex_state = 67}, + [5746] = {.lex_state = 181, .external_lex_state = 67}, + [5747] = {.lex_state = 181, .external_lex_state = 67}, + [5748] = {.lex_state = 181, .external_lex_state = 67}, + [5749] = {.lex_state = 178, .external_lex_state = 73}, + [5750] = {.lex_state = 178, .external_lex_state = 72}, + [5751] = {.lex_state = 178, .external_lex_state = 73}, + [5752] = {.lex_state = 181, .external_lex_state = 67}, + [5753] = {.lex_state = 49, .external_lex_state = 67}, + [5754] = {.lex_state = 181, .external_lex_state = 67}, + [5755] = {.lex_state = 178, .external_lex_state = 73}, + [5756] = {.lex_state = 178, .external_lex_state = 98}, + [5757] = {.lex_state = 181, .external_lex_state = 67}, [5758] = {.lex_state = 178, .external_lex_state = 73}, - [5759] = {.lex_state = 175, .external_lex_state = 102}, - [5760] = {.lex_state = 178, .external_lex_state = 73}, - [5761] = {.lex_state = 178, .external_lex_state = 72}, - [5762] = {.lex_state = 178, .external_lex_state = 72}, - [5763] = {.lex_state = 169, .external_lex_state = 70}, - [5764] = {.lex_state = 178, .external_lex_state = 73}, - [5765] = {.lex_state = 181, .external_lex_state = 70}, - [5766] = {.lex_state = 181, .external_lex_state = 70}, - [5767] = {.lex_state = 175, .external_lex_state = 102}, - [5768] = {.lex_state = 169, .external_lex_state = 73}, - [5769] = {.lex_state = 169, .external_lex_state = 73}, - [5770] = {.lex_state = 169, .external_lex_state = 70}, - [5771] = {.lex_state = 178, .external_lex_state = 73}, - [5772] = {.lex_state = 178, .external_lex_state = 73}, - [5773] = {.lex_state = 169, .external_lex_state = 70}, - [5774] = {.lex_state = 175, .external_lex_state = 102}, - [5775] = {.lex_state = 63, .external_lex_state = 70}, - [5776] = {.lex_state = 178, .external_lex_state = 73}, - [5777] = {.lex_state = 178, .external_lex_state = 73}, - [5778] = {.lex_state = 178, .external_lex_state = 73}, - [5779] = {.lex_state = 178, .external_lex_state = 73}, - [5780] = {.lex_state = 175, .external_lex_state = 102}, - [5781] = {.lex_state = 175, .external_lex_state = 102}, + [5759] = {.lex_state = 181, .external_lex_state = 67}, + [5760] = {.lex_state = 181, .external_lex_state = 67}, + [5761] = {.lex_state = 181, .external_lex_state = 67}, + [5762] = {.lex_state = 181, .external_lex_state = 67}, + [5763] = {.lex_state = 23, .external_lex_state = 74}, + [5764] = {.lex_state = 181, .external_lex_state = 67}, + [5765] = {.lex_state = 48, .external_lex_state = 67}, + [5766] = {.lex_state = 48, .external_lex_state = 67}, + [5767] = {.lex_state = 48, .external_lex_state = 67}, + [5768] = {.lex_state = 48, .external_lex_state = 67}, + [5769] = {.lex_state = 48, .external_lex_state = 67}, + [5770] = {.lex_state = 48, .external_lex_state = 67}, + [5771] = {.lex_state = 179, .external_lex_state = 72}, + [5772] = {.lex_state = 33, .external_lex_state = 99}, + [5773] = {.lex_state = 181, .external_lex_state = 67}, + [5774] = {.lex_state = 52, .external_lex_state = 67}, + [5775] = {.lex_state = 23, .external_lex_state = 74}, + [5776] = {.lex_state = 181, .external_lex_state = 67}, + [5777] = {.lex_state = 181, .external_lex_state = 67}, + [5778] = {.lex_state = 181, .external_lex_state = 67}, + [5779] = {.lex_state = 181, .external_lex_state = 67}, + [5780] = {.lex_state = 178, .external_lex_state = 73}, + [5781] = {.lex_state = 178, .external_lex_state = 72}, [5782] = {.lex_state = 178, .external_lex_state = 73}, - [5783] = {.lex_state = 178, .external_lex_state = 73}, - [5784] = {.lex_state = 178, .external_lex_state = 72}, + [5783] = {.lex_state = 175, .external_lex_state = 102}, + [5784] = {.lex_state = 183, .external_lex_state = 97}, [5785] = {.lex_state = 178, .external_lex_state = 73}, [5786] = {.lex_state = 178, .external_lex_state = 73}, - [5787] = {.lex_state = 175, .external_lex_state = 102}, - [5788] = {.lex_state = 178, .external_lex_state = 73}, + [5787] = {.lex_state = 178, .external_lex_state = 73}, + [5788] = {.lex_state = 178, .external_lex_state = 72}, [5789] = {.lex_state = 178, .external_lex_state = 73}, - [5790] = {.lex_state = 175, .external_lex_state = 102}, - [5791] = {.lex_state = 178, .external_lex_state = 73}, + [5790] = {.lex_state = 178, .external_lex_state = 72}, + [5791] = {.lex_state = 169, .external_lex_state = 70}, [5792] = {.lex_state = 178, .external_lex_state = 73}, - [5793] = {.lex_state = 169, .external_lex_state = 73}, - [5794] = {.lex_state = 178, .external_lex_state = 73}, - [5795] = {.lex_state = 178, .external_lex_state = 73}, - [5796] = {.lex_state = 23, .external_lex_state = 70}, - [5797] = {.lex_state = 23, .external_lex_state = 70}, + [5793] = {.lex_state = 178, .external_lex_state = 72}, + [5794] = {.lex_state = 175, .external_lex_state = 102}, + [5795] = {.lex_state = 178, .external_lex_state = 72}, + [5796] = {.lex_state = 169, .external_lex_state = 70}, + [5797] = {.lex_state = 178, .external_lex_state = 73}, [5798] = {.lex_state = 178, .external_lex_state = 73}, - [5799] = {.lex_state = 23, .external_lex_state = 70}, - [5800] = {.lex_state = 23, .external_lex_state = 70}, - [5801] = {.lex_state = 175, .external_lex_state = 102}, + [5799] = {.lex_state = 178, .external_lex_state = 73}, + [5800] = {.lex_state = 178, .external_lex_state = 73}, + [5801] = {.lex_state = 181, .external_lex_state = 70}, [5802] = {.lex_state = 178, .external_lex_state = 73}, - [5803] = {.lex_state = 178, .external_lex_state = 73}, - [5804] = {.lex_state = 178, .external_lex_state = 73}, - [5805] = {.lex_state = 178, .external_lex_state = 73}, - [5806] = {.lex_state = 178, .external_lex_state = 73}, - [5807] = {.lex_state = 175, .external_lex_state = 102}, - [5808] = {.lex_state = 178, .external_lex_state = 73}, - [5809] = {.lex_state = 175, .external_lex_state = 102}, - [5810] = {.lex_state = 48, .external_lex_state = 67}, - [5811] = {.lex_state = 175, .external_lex_state = 102}, - [5812] = {.lex_state = 178, .external_lex_state = 73}, - [5813] = {.lex_state = 48, .external_lex_state = 67}, - [5814] = {.lex_state = 48, .external_lex_state = 67}, - [5815] = {.lex_state = 175, .external_lex_state = 102}, - [5816] = {.lex_state = 178, .external_lex_state = 73}, - [5817] = {.lex_state = 178, .external_lex_state = 73}, - [5818] = {.lex_state = 48, .external_lex_state = 67}, - [5819] = {.lex_state = 48, .external_lex_state = 67}, - [5820] = {.lex_state = 178, .external_lex_state = 73}, - [5821] = {.lex_state = 48, .external_lex_state = 67}, - [5822] = {.lex_state = 178, .external_lex_state = 73}, + [5803] = {.lex_state = 178, .external_lex_state = 72}, + [5804] = {.lex_state = 178, .external_lex_state = 72}, + [5805] = {.lex_state = 178, .external_lex_state = 72}, + [5806] = {.lex_state = 169, .external_lex_state = 72}, + [5807] = {.lex_state = 178, .external_lex_state = 72}, + [5808] = {.lex_state = 169, .external_lex_state = 70}, + [5809] = {.lex_state = 169, .external_lex_state = 72}, + [5810] = {.lex_state = 175, .external_lex_state = 102}, + [5811] = {.lex_state = 23, .external_lex_state = 70}, + [5812] = {.lex_state = 181, .external_lex_state = 70}, + [5813] = {.lex_state = 178, .external_lex_state = 72}, + [5814] = {.lex_state = 178, .external_lex_state = 73}, + [5815] = {.lex_state = 178, .external_lex_state = 73}, + [5816] = {.lex_state = 178, .external_lex_state = 72}, + [5817] = {.lex_state = 178, .external_lex_state = 72}, + [5818] = {.lex_state = 178, .external_lex_state = 72}, + [5819] = {.lex_state = 178, .external_lex_state = 73}, + [5820] = {.lex_state = 178, .external_lex_state = 72}, + [5821] = {.lex_state = 178, .external_lex_state = 73}, + [5822] = {.lex_state = 169, .external_lex_state = 70}, [5823] = {.lex_state = 178, .external_lex_state = 73}, - [5824] = {.lex_state = 178, .external_lex_state = 73}, + [5824] = {.lex_state = 178, .external_lex_state = 72}, [5825] = {.lex_state = 178, .external_lex_state = 73}, - [5826] = {.lex_state = 48, .external_lex_state = 67}, - [5827] = {.lex_state = 178, .external_lex_state = 73}, + [5826] = {.lex_state = 175, .external_lex_state = 102}, + [5827] = {.lex_state = 178, .external_lex_state = 72}, [5828] = {.lex_state = 178, .external_lex_state = 73}, - [5829] = {.lex_state = 183, .external_lex_state = 70}, - [5830] = {.lex_state = 178, .external_lex_state = 73}, + [5829] = {.lex_state = 178, .external_lex_state = 72}, + [5830] = {.lex_state = 183, .external_lex_state = 70}, [5831] = {.lex_state = 178, .external_lex_state = 73}, [5832] = {.lex_state = 178, .external_lex_state = 73}, - [5833] = {.lex_state = 23, .external_lex_state = 89}, - [5834] = {.lex_state = 169, .external_lex_state = 70}, - [5835] = {.lex_state = 178, .external_lex_state = 73}, - [5836] = {.lex_state = 23, .external_lex_state = 89}, + [5833] = {.lex_state = 178, .external_lex_state = 73}, + [5834] = {.lex_state = 178, .external_lex_state = 73}, + [5835] = {.lex_state = 169, .external_lex_state = 70}, + [5836] = {.lex_state = 178, .external_lex_state = 73}, [5837] = {.lex_state = 175, .external_lex_state = 102}, - [5838] = {.lex_state = 178, .external_lex_state = 73}, + [5838] = {.lex_state = 178, .external_lex_state = 72}, [5839] = {.lex_state = 178, .external_lex_state = 73}, - [5840] = {.lex_state = 178, .external_lex_state = 73}, - [5841] = {.lex_state = 178, .external_lex_state = 72}, + [5840] = {.lex_state = 178, .external_lex_state = 72}, + [5841] = {.lex_state = 169, .external_lex_state = 70}, [5842] = {.lex_state = 178, .external_lex_state = 73}, - [5843] = {.lex_state = 178, .external_lex_state = 73}, + [5843] = {.lex_state = 178, .external_lex_state = 72}, [5844] = {.lex_state = 178, .external_lex_state = 72}, - [5845] = {.lex_state = 178, .external_lex_state = 72}, - [5846] = {.lex_state = 178, .external_lex_state = 72}, - [5847] = {.lex_state = 178, .external_lex_state = 72}, - [5848] = {.lex_state = 178, .external_lex_state = 73}, - [5849] = {.lex_state = 178, .external_lex_state = 73}, - [5850] = {.lex_state = 169, .external_lex_state = 70}, - [5851] = {.lex_state = 178, .external_lex_state = 73}, + [5845] = {.lex_state = 178, .external_lex_state = 73}, + [5846] = {.lex_state = 183, .external_lex_state = 97}, + [5847] = {.lex_state = 175, .external_lex_state = 102}, + [5848] = {.lex_state = 178, .external_lex_state = 72}, + [5849] = {.lex_state = 181, .external_lex_state = 70}, + [5850] = {.lex_state = 178, .external_lex_state = 72}, + [5851] = {.lex_state = 178, .external_lex_state = 72}, [5852] = {.lex_state = 178, .external_lex_state = 72}, - [5853] = {.lex_state = 178, .external_lex_state = 73}, + [5853] = {.lex_state = 178, .external_lex_state = 72}, [5854] = {.lex_state = 178, .external_lex_state = 73}, - [5855] = {.lex_state = 178, .external_lex_state = 73}, - [5856] = {.lex_state = 178, .external_lex_state = 72}, - [5857] = {.lex_state = 178, .external_lex_state = 72}, - [5858] = {.lex_state = 178, .external_lex_state = 72}, - [5859] = {.lex_state = 175, .external_lex_state = 102}, - [5860] = {.lex_state = 23, .external_lex_state = 70}, + [5855] = {.lex_state = 175, .external_lex_state = 102}, + [5856] = {.lex_state = 181, .external_lex_state = 70}, + [5857] = {.lex_state = 63, .external_lex_state = 70}, + [5858] = {.lex_state = 175, .external_lex_state = 102}, + [5859] = {.lex_state = 169, .external_lex_state = 70}, + [5860] = {.lex_state = 178, .external_lex_state = 73}, [5861] = {.lex_state = 178, .external_lex_state = 72}, [5862] = {.lex_state = 178, .external_lex_state = 73}, - [5863] = {.lex_state = 178, .external_lex_state = 73}, - [5864] = {.lex_state = 23, .external_lex_state = 70}, - [5865] = {.lex_state = 178, .external_lex_state = 73}, - [5866] = {.lex_state = 178, .external_lex_state = 73}, - [5867] = {.lex_state = 178, .external_lex_state = 73}, - [5868] = {.lex_state = 178, .external_lex_state = 73}, - [5869] = {.lex_state = 178, .external_lex_state = 72}, + [5863] = {.lex_state = 175, .external_lex_state = 102}, + [5864] = {.lex_state = 178, .external_lex_state = 72}, + [5865] = {.lex_state = 178, .external_lex_state = 72}, + [5866] = {.lex_state = 178, .external_lex_state = 72}, + [5867] = {.lex_state = 178, .external_lex_state = 72}, + [5868] = {.lex_state = 23, .external_lex_state = 70}, + [5869] = {.lex_state = 175, .external_lex_state = 102}, [5870] = {.lex_state = 178, .external_lex_state = 72}, [5871] = {.lex_state = 178, .external_lex_state = 72}, - [5872] = {.lex_state = 178, .external_lex_state = 73}, - [5873] = {.lex_state = 178, .external_lex_state = 73}, - [5874] = {.lex_state = 178, .external_lex_state = 73}, - [5875] = {.lex_state = 23, .external_lex_state = 87}, - [5876] = {.lex_state = 178, .external_lex_state = 73}, - [5877] = {.lex_state = 178, .external_lex_state = 73}, + [5872] = {.lex_state = 178, .external_lex_state = 72}, + [5873] = {.lex_state = 175, .external_lex_state = 102}, + [5874] = {.lex_state = 178, .external_lex_state = 72}, + [5875] = {.lex_state = 178, .external_lex_state = 72}, + [5876] = {.lex_state = 178, .external_lex_state = 72}, + [5877] = {.lex_state = 178, .external_lex_state = 72}, [5878] = {.lex_state = 178, .external_lex_state = 72}, - [5879] = {.lex_state = 178, .external_lex_state = 72}, + [5879] = {.lex_state = 175, .external_lex_state = 102}, [5880] = {.lex_state = 178, .external_lex_state = 72}, [5881] = {.lex_state = 178, .external_lex_state = 72}, [5882] = {.lex_state = 178, .external_lex_state = 72}, [5883] = {.lex_state = 178, .external_lex_state = 72}, - [5884] = {.lex_state = 178, .external_lex_state = 73}, - [5885] = {.lex_state = 178, .external_lex_state = 73}, - [5886] = {.lex_state = 178, .external_lex_state = 73}, - [5887] = {.lex_state = 178, .external_lex_state = 73}, - [5888] = {.lex_state = 169, .external_lex_state = 73}, + [5884] = {.lex_state = 178, .external_lex_state = 72}, + [5885] = {.lex_state = 175, .external_lex_state = 102}, + [5886] = {.lex_state = 63, .external_lex_state = 70}, + [5887] = {.lex_state = 175, .external_lex_state = 102}, + [5888] = {.lex_state = 175, .external_lex_state = 102}, [5889] = {.lex_state = 178, .external_lex_state = 73}, - [5890] = {.lex_state = 178, .external_lex_state = 73}, - [5891] = {.lex_state = 186, .external_lex_state = 99}, + [5890] = {.lex_state = 178, .external_lex_state = 72}, + [5891] = {.lex_state = 178, .external_lex_state = 72}, [5892] = {.lex_state = 178, .external_lex_state = 73}, - [5893] = {.lex_state = 178, .external_lex_state = 72}, - [5894] = {.lex_state = 169, .external_lex_state = 70}, + [5893] = {.lex_state = 178, .external_lex_state = 73}, + [5894] = {.lex_state = 178, .external_lex_state = 73}, [5895] = {.lex_state = 178, .external_lex_state = 73}, - [5896] = {.lex_state = 186, .external_lex_state = 99}, + [5896] = {.lex_state = 178, .external_lex_state = 73}, [5897] = {.lex_state = 178, .external_lex_state = 72}, - [5898] = {.lex_state = 178, .external_lex_state = 72}, - [5899] = {.lex_state = 175, .external_lex_state = 102}, - [5900] = {.lex_state = 186, .external_lex_state = 99}, - [5901] = {.lex_state = 48, .external_lex_state = 67}, - [5902] = {.lex_state = 178, .external_lex_state = 73}, - [5903] = {.lex_state = 178, .external_lex_state = 73}, + [5898] = {.lex_state = 23, .external_lex_state = 70}, + [5899] = {.lex_state = 23, .external_lex_state = 70}, + [5900] = {.lex_state = 178, .external_lex_state = 72}, + [5901] = {.lex_state = 178, .external_lex_state = 72}, + [5902] = {.lex_state = 178, .external_lex_state = 72}, + [5903] = {.lex_state = 178, .external_lex_state = 72}, [5904] = {.lex_state = 178, .external_lex_state = 73}, [5905] = {.lex_state = 178, .external_lex_state = 73}, [5906] = {.lex_state = 178, .external_lex_state = 73}, - [5907] = {.lex_state = 178, .external_lex_state = 73}, - [5908] = {.lex_state = 181, .external_lex_state = 70}, - [5909] = {.lex_state = 178, .external_lex_state = 73}, - [5910] = {.lex_state = 178, .external_lex_state = 73}, + [5907] = {.lex_state = 178, .external_lex_state = 72}, + [5908] = {.lex_state = 178, .external_lex_state = 72}, + [5909] = {.lex_state = 23, .external_lex_state = 70}, + [5910] = {.lex_state = 23, .external_lex_state = 70}, [5911] = {.lex_state = 178, .external_lex_state = 72}, - [5912] = {.lex_state = 178, .external_lex_state = 72}, - [5913] = {.lex_state = 178, .external_lex_state = 72}, - [5914] = {.lex_state = 178, .external_lex_state = 72}, - [5915] = {.lex_state = 178, .external_lex_state = 73}, - [5916] = {.lex_state = 169, .external_lex_state = 70}, + [5912] = {.lex_state = 178, .external_lex_state = 73}, + [5913] = {.lex_state = 178, .external_lex_state = 73}, + [5914] = {.lex_state = 178, .external_lex_state = 73}, + [5915] = {.lex_state = 178, .external_lex_state = 72}, + [5916] = {.lex_state = 178, .external_lex_state = 72}, [5917] = {.lex_state = 178, .external_lex_state = 73}, - [5918] = {.lex_state = 169, .external_lex_state = 70}, - [5919] = {.lex_state = 178, .external_lex_state = 73}, + [5918] = {.lex_state = 178, .external_lex_state = 72}, + [5919] = {.lex_state = 178, .external_lex_state = 72}, [5920] = {.lex_state = 178, .external_lex_state = 72}, - [5921] = {.lex_state = 178, .external_lex_state = 73}, + [5921] = {.lex_state = 178, .external_lex_state = 72}, [5922] = {.lex_state = 178, .external_lex_state = 72}, [5923] = {.lex_state = 178, .external_lex_state = 72}, [5924] = {.lex_state = 178, .external_lex_state = 72}, [5925] = {.lex_state = 178, .external_lex_state = 72}, - [5926] = {.lex_state = 175, .external_lex_state = 102}, + [5926] = {.lex_state = 178, .external_lex_state = 72}, [5927] = {.lex_state = 178, .external_lex_state = 72}, - [5928] = {.lex_state = 175, .external_lex_state = 102}, - [5929] = {.lex_state = 23, .external_lex_state = 89}, - [5930] = {.lex_state = 23, .external_lex_state = 89}, - [5931] = {.lex_state = 181, .external_lex_state = 70}, + [5928] = {.lex_state = 178, .external_lex_state = 73}, + [5929] = {.lex_state = 178, .external_lex_state = 72}, + [5930] = {.lex_state = 178, .external_lex_state = 72}, + [5931] = {.lex_state = 178, .external_lex_state = 72}, [5932] = {.lex_state = 178, .external_lex_state = 72}, - [5933] = {.lex_state = 178, .external_lex_state = 73}, - [5934] = {.lex_state = 178, .external_lex_state = 73}, + [5933] = {.lex_state = 178, .external_lex_state = 72}, + [5934] = {.lex_state = 178, .external_lex_state = 72}, [5935] = {.lex_state = 178, .external_lex_state = 72}, - [5936] = {.lex_state = 178, .external_lex_state = 72}, + [5936] = {.lex_state = 178, .external_lex_state = 73}, [5937] = {.lex_state = 178, .external_lex_state = 72}, [5938] = {.lex_state = 178, .external_lex_state = 72}, - [5939] = {.lex_state = 178, .external_lex_state = 73}, + [5939] = {.lex_state = 178, .external_lex_state = 72}, [5940] = {.lex_state = 178, .external_lex_state = 72}, [5941] = {.lex_state = 178, .external_lex_state = 72}, [5942] = {.lex_state = 178, .external_lex_state = 72}, [5943] = {.lex_state = 178, .external_lex_state = 72}, - [5944] = {.lex_state = 178, .external_lex_state = 72}, - [5945] = {.lex_state = 178, .external_lex_state = 73}, + [5944] = {.lex_state = 178, .external_lex_state = 73}, + [5945] = {.lex_state = 178, .external_lex_state = 72}, [5946] = {.lex_state = 178, .external_lex_state = 72}, - [5947] = {.lex_state = 178, .external_lex_state = 73}, - [5948] = {.lex_state = 178, .external_lex_state = 73}, - [5949] = {.lex_state = 178, .external_lex_state = 73}, + [5947] = {.lex_state = 178, .external_lex_state = 72}, + [5948] = {.lex_state = 178, .external_lex_state = 72}, + [5949] = {.lex_state = 178, .external_lex_state = 72}, [5950] = {.lex_state = 178, .external_lex_state = 73}, [5951] = {.lex_state = 178, .external_lex_state = 73}, [5952] = {.lex_state = 178, .external_lex_state = 72}, - [5953] = {.lex_state = 178, .external_lex_state = 72}, - [5954] = {.lex_state = 178, .external_lex_state = 72}, + [5953] = {.lex_state = 178, .external_lex_state = 73}, + [5954] = {.lex_state = 178, .external_lex_state = 73}, [5955] = {.lex_state = 178, .external_lex_state = 73}, - [5956] = {.lex_state = 178, .external_lex_state = 73}, + [5956] = {.lex_state = 23, .external_lex_state = 70}, [5957] = {.lex_state = 178, .external_lex_state = 73}, - [5958] = {.lex_state = 178, .external_lex_state = 72}, + [5958] = {.lex_state = 178, .external_lex_state = 73}, [5959] = {.lex_state = 178, .external_lex_state = 73}, - [5960] = {.lex_state = 169, .external_lex_state = 70}, - [5961] = {.lex_state = 178, .external_lex_state = 73}, + [5960] = {.lex_state = 178, .external_lex_state = 73}, + [5961] = {.lex_state = 178, .external_lex_state = 72}, [5962] = {.lex_state = 178, .external_lex_state = 72}, - [5963] = {.lex_state = 178, .external_lex_state = 73}, - [5964] = {.lex_state = 178, .external_lex_state = 73}, + [5963] = {.lex_state = 178, .external_lex_state = 72}, + [5964] = {.lex_state = 178, .external_lex_state = 72}, [5965] = {.lex_state = 178, .external_lex_state = 72}, [5966] = {.lex_state = 178, .external_lex_state = 72}, [5967] = {.lex_state = 178, .external_lex_state = 72}, [5968] = {.lex_state = 178, .external_lex_state = 72}, [5969] = {.lex_state = 178, .external_lex_state = 72}, [5970] = {.lex_state = 178, .external_lex_state = 72}, - [5971] = {.lex_state = 178, .external_lex_state = 72}, - [5972] = {.lex_state = 178, .external_lex_state = 73}, - [5973] = {.lex_state = 178, .external_lex_state = 73}, + [5971] = {.lex_state = 178, .external_lex_state = 73}, + [5972] = {.lex_state = 178, .external_lex_state = 72}, + [5973] = {.lex_state = 178, .external_lex_state = 72}, [5974] = {.lex_state = 178, .external_lex_state = 73}, [5975] = {.lex_state = 178, .external_lex_state = 73}, - [5976] = {.lex_state = 178, .external_lex_state = 73}, + [5976] = {.lex_state = 178, .external_lex_state = 72}, [5977] = {.lex_state = 178, .external_lex_state = 73}, - [5978] = {.lex_state = 178, .external_lex_state = 73}, - [5979] = {.lex_state = 23, .external_lex_state = 70}, - [5980] = {.lex_state = 178, .external_lex_state = 73}, + [5978] = {.lex_state = 178, .external_lex_state = 72}, + [5979] = {.lex_state = 178, .external_lex_state = 72}, + [5980] = {.lex_state = 178, .external_lex_state = 72}, [5981] = {.lex_state = 178, .external_lex_state = 73}, [5982] = {.lex_state = 178, .external_lex_state = 73}, [5983] = {.lex_state = 178, .external_lex_state = 73}, [5984] = {.lex_state = 178, .external_lex_state = 73}, - [5985] = {.lex_state = 169, .external_lex_state = 70}, - [5986] = {.lex_state = 178, .external_lex_state = 72}, - [5987] = {.lex_state = 178, .external_lex_state = 72}, - [5988] = {.lex_state = 178, .external_lex_state = 72}, - [5989] = {.lex_state = 178, .external_lex_state = 72}, - [5990] = {.lex_state = 178, .external_lex_state = 72}, + [5985] = {.lex_state = 178, .external_lex_state = 73}, + [5986] = {.lex_state = 178, .external_lex_state = 73}, + [5987] = {.lex_state = 178, .external_lex_state = 73}, + [5988] = {.lex_state = 169, .external_lex_state = 70}, + [5989] = {.lex_state = 178, .external_lex_state = 73}, + [5990] = {.lex_state = 178, .external_lex_state = 73}, [5991] = {.lex_state = 178, .external_lex_state = 73}, [5992] = {.lex_state = 178, .external_lex_state = 73}, [5993] = {.lex_state = 178, .external_lex_state = 73}, - [5994] = {.lex_state = 178, .external_lex_state = 72}, - [5995] = {.lex_state = 178, .external_lex_state = 72}, + [5994] = {.lex_state = 178, .external_lex_state = 73}, + [5995] = {.lex_state = 178, .external_lex_state = 73}, [5996] = {.lex_state = 178, .external_lex_state = 72}, [5997] = {.lex_state = 178, .external_lex_state = 72}, - [5998] = {.lex_state = 178, .external_lex_state = 72}, - [5999] = {.lex_state = 178, .external_lex_state = 72}, - [6000] = {.lex_state = 178, .external_lex_state = 72}, - [6001] = {.lex_state = 178, .external_lex_state = 73}, - [6002] = {.lex_state = 178, .external_lex_state = 72}, - [6003] = {.lex_state = 178, .external_lex_state = 72}, - [6004] = {.lex_state = 178, .external_lex_state = 72}, - [6005] = {.lex_state = 178, .external_lex_state = 72}, + [5998] = {.lex_state = 175, .external_lex_state = 102}, + [5999] = {.lex_state = 169, .external_lex_state = 72}, + [6000] = {.lex_state = 169, .external_lex_state = 72}, + [6001] = {.lex_state = 178, .external_lex_state = 72}, + [6002] = {.lex_state = 169, .external_lex_state = 72}, + [6003] = {.lex_state = 178, .external_lex_state = 73}, + [6004] = {.lex_state = 169, .external_lex_state = 70}, + [6005] = {.lex_state = 178, .external_lex_state = 73}, [6006] = {.lex_state = 178, .external_lex_state = 72}, - [6007] = {.lex_state = 175, .external_lex_state = 102}, + [6007] = {.lex_state = 178, .external_lex_state = 72}, [6008] = {.lex_state = 178, .external_lex_state = 73}, - [6009] = {.lex_state = 178, .external_lex_state = 73}, + [6009] = {.lex_state = 178, .external_lex_state = 72}, [6010] = {.lex_state = 178, .external_lex_state = 72}, - [6011] = {.lex_state = 178, .external_lex_state = 72}, - [6012] = {.lex_state = 178, .external_lex_state = 72}, - [6013] = {.lex_state = 178, .external_lex_state = 72}, - [6014] = {.lex_state = 183, .external_lex_state = 97}, + [6011] = {.lex_state = 178, .external_lex_state = 73}, + [6012] = {.lex_state = 169, .external_lex_state = 70}, + [6013] = {.lex_state = 169, .external_lex_state = 70}, + [6014] = {.lex_state = 178, .external_lex_state = 72}, [6015] = {.lex_state = 178, .external_lex_state = 73}, - [6016] = {.lex_state = 169, .external_lex_state = 70}, + [6016] = {.lex_state = 178, .external_lex_state = 73}, [6017] = {.lex_state = 178, .external_lex_state = 72}, - [6018] = {.lex_state = 178, .external_lex_state = 73}, + [6018] = {.lex_state = 178, .external_lex_state = 72}, [6019] = {.lex_state = 178, .external_lex_state = 72}, [6020] = {.lex_state = 178, .external_lex_state = 72}, - [6021] = {.lex_state = 178, .external_lex_state = 72}, - [6022] = {.lex_state = 178, .external_lex_state = 72}, - [6023] = {.lex_state = 178, .external_lex_state = 72}, - [6024] = {.lex_state = 175, .external_lex_state = 102}, - [6025] = {.lex_state = 178, .external_lex_state = 72}, + [6021] = {.lex_state = 178, .external_lex_state = 73}, + [6022] = {.lex_state = 178, .external_lex_state = 73}, + [6023] = {.lex_state = 178, .external_lex_state = 73}, + [6024] = {.lex_state = 178, .external_lex_state = 72}, + [6025] = {.lex_state = 178, .external_lex_state = 73}, [6026] = {.lex_state = 178, .external_lex_state = 72}, [6027] = {.lex_state = 178, .external_lex_state = 72}, - [6028] = {.lex_state = 178, .external_lex_state = 72}, - [6029] = {.lex_state = 178, .external_lex_state = 72}, - [6030] = {.lex_state = 178, .external_lex_state = 72}, - [6031] = {.lex_state = 178, .external_lex_state = 72}, - [6032] = {.lex_state = 178, .external_lex_state = 72}, - [6033] = {.lex_state = 178, .external_lex_state = 72}, - [6034] = {.lex_state = 178, .external_lex_state = 72}, - [6035] = {.lex_state = 178, .external_lex_state = 72}, - [6036] = {.lex_state = 178, .external_lex_state = 72}, + [6028] = {.lex_state = 23, .external_lex_state = 70}, + [6029] = {.lex_state = 48, .external_lex_state = 67}, + [6030] = {.lex_state = 48, .external_lex_state = 67}, + [6031] = {.lex_state = 178, .external_lex_state = 73}, + [6032] = {.lex_state = 178, .external_lex_state = 73}, + [6033] = {.lex_state = 48, .external_lex_state = 67}, + [6034] = {.lex_state = 48, .external_lex_state = 67}, + [6035] = {.lex_state = 23, .external_lex_state = 90}, + [6036] = {.lex_state = 48, .external_lex_state = 67}, [6037] = {.lex_state = 178, .external_lex_state = 73}, [6038] = {.lex_state = 178, .external_lex_state = 73}, - [6039] = {.lex_state = 178, .external_lex_state = 72}, - [6040] = {.lex_state = 178, .external_lex_state = 73}, - [6041] = {.lex_state = 178, .external_lex_state = 72}, - [6042] = {.lex_state = 178, .external_lex_state = 72}, - [6043] = {.lex_state = 178, .external_lex_state = 72}, - [6044] = {.lex_state = 178, .external_lex_state = 72}, - [6045] = {.lex_state = 178, .external_lex_state = 72}, - [6046] = {.lex_state = 178, .external_lex_state = 72}, - [6047] = {.lex_state = 63, .external_lex_state = 70}, - [6048] = {.lex_state = 178, .external_lex_state = 72}, + [6039] = {.lex_state = 48, .external_lex_state = 67}, + [6040] = {.lex_state = 23, .external_lex_state = 90}, + [6041] = {.lex_state = 169, .external_lex_state = 70}, + [6042] = {.lex_state = 178, .external_lex_state = 73}, + [6043] = {.lex_state = 178, .external_lex_state = 73}, + [6044] = {.lex_state = 178, .external_lex_state = 73}, + [6045] = {.lex_state = 178, .external_lex_state = 73}, + [6046] = {.lex_state = 178, .external_lex_state = 73}, + [6047] = {.lex_state = 178, .external_lex_state = 73}, + [6048] = {.lex_state = 178, .external_lex_state = 73}, [6049] = {.lex_state = 178, .external_lex_state = 73}, - [6050] = {.lex_state = 169, .external_lex_state = 70}, - [6051] = {.lex_state = 178, .external_lex_state = 73}, + [6050] = {.lex_state = 178, .external_lex_state = 73}, + [6051] = {.lex_state = 175, .external_lex_state = 102}, [6052] = {.lex_state = 178, .external_lex_state = 73}, - [6053] = {.lex_state = 178, .external_lex_state = 73}, - [6054] = {.lex_state = 178, .external_lex_state = 73}, - [6055] = {.lex_state = 178, .external_lex_state = 73}, + [6053] = {.lex_state = 178, .external_lex_state = 72}, + [6054] = {.lex_state = 169, .external_lex_state = 70}, + [6055] = {.lex_state = 178, .external_lex_state = 72}, [6056] = {.lex_state = 178, .external_lex_state = 73}, - [6057] = {.lex_state = 178, .external_lex_state = 73}, - [6058] = {.lex_state = 178, .external_lex_state = 72}, - [6059] = {.lex_state = 178, .external_lex_state = 72}, + [6057] = {.lex_state = 178, .external_lex_state = 72}, + [6058] = {.lex_state = 178, .external_lex_state = 73}, + [6059] = {.lex_state = 178, .external_lex_state = 73}, [6060] = {.lex_state = 178, .external_lex_state = 72}, [6061] = {.lex_state = 178, .external_lex_state = 73}, - [6062] = {.lex_state = 178, .external_lex_state = 72}, + [6062] = {.lex_state = 63, .external_lex_state = 70}, [6063] = {.lex_state = 178, .external_lex_state = 73}, - [6064] = {.lex_state = 178, .external_lex_state = 72}, - [6065] = {.lex_state = 178, .external_lex_state = 72}, + [6064] = {.lex_state = 169, .external_lex_state = 72}, + [6065] = {.lex_state = 178, .external_lex_state = 73}, [6066] = {.lex_state = 178, .external_lex_state = 72}, - [6067] = {.lex_state = 178, .external_lex_state = 73}, + [6067] = {.lex_state = 178, .external_lex_state = 72}, [6068] = {.lex_state = 178, .external_lex_state = 72}, - [6069] = {.lex_state = 169, .external_lex_state = 70}, - [6070] = {.lex_state = 178, .external_lex_state = 73}, - [6071] = {.lex_state = 23, .external_lex_state = 70}, - [6072] = {.lex_state = 169, .external_lex_state = 70}, - [6073] = {.lex_state = 169, .external_lex_state = 70}, - [6074] = {.lex_state = 175, .external_lex_state = 102}, - [6075] = {.lex_state = 178, .external_lex_state = 72}, + [6069] = {.lex_state = 178, .external_lex_state = 73}, + [6070] = {.lex_state = 178, .external_lex_state = 72}, + [6071] = {.lex_state = 178, .external_lex_state = 72}, + [6072] = {.lex_state = 178, .external_lex_state = 72}, + [6073] = {.lex_state = 23, .external_lex_state = 70}, + [6074] = {.lex_state = 178, .external_lex_state = 72}, + [6075] = {.lex_state = 178, .external_lex_state = 73}, [6076] = {.lex_state = 178, .external_lex_state = 72}, - [6077] = {.lex_state = 178, .external_lex_state = 72}, - [6078] = {.lex_state = 178, .external_lex_state = 72}, + [6077] = {.lex_state = 178, .external_lex_state = 73}, + [6078] = {.lex_state = 169, .external_lex_state = 70}, [6079] = {.lex_state = 178, .external_lex_state = 73}, [6080] = {.lex_state = 178, .external_lex_state = 73}, [6081] = {.lex_state = 178, .external_lex_state = 73}, - [6082] = {.lex_state = 23, .external_lex_state = 74}, - [6083] = {.lex_state = 169, .external_lex_state = 70}, - [6084] = {.lex_state = 63, .external_lex_state = 70}, - [6085] = {.lex_state = 178, .external_lex_state = 73}, + [6082] = {.lex_state = 178, .external_lex_state = 72}, + [6083] = {.lex_state = 178, .external_lex_state = 73}, + [6084] = {.lex_state = 178, .external_lex_state = 72}, + [6085] = {.lex_state = 178, .external_lex_state = 72}, [6086] = {.lex_state = 178, .external_lex_state = 72}, [6087] = {.lex_state = 178, .external_lex_state = 72}, [6088] = {.lex_state = 178, .external_lex_state = 72}, [6089] = {.lex_state = 178, .external_lex_state = 72}, [6090] = {.lex_state = 178, .external_lex_state = 72}, - [6091] = {.lex_state = 178, .external_lex_state = 72}, - [6092] = {.lex_state = 178, .external_lex_state = 73}, - [6093] = {.lex_state = 178, .external_lex_state = 73}, - [6094] = {.lex_state = 178, .external_lex_state = 73}, + [6091] = {.lex_state = 175, .external_lex_state = 102}, + [6092] = {.lex_state = 178, .external_lex_state = 72}, + [6093] = {.lex_state = 178, .external_lex_state = 72}, + [6094] = {.lex_state = 178, .external_lex_state = 72}, [6095] = {.lex_state = 178, .external_lex_state = 72}, [6096] = {.lex_state = 178, .external_lex_state = 72}, - [6097] = {.lex_state = 178, .external_lex_state = 72}, - [6098] = {.lex_state = 169, .external_lex_state = 70}, - [6099] = {.lex_state = 178, .external_lex_state = 72}, - [6100] = {.lex_state = 178, .external_lex_state = 73}, + [6097] = {.lex_state = 178, .external_lex_state = 73}, + [6098] = {.lex_state = 178, .external_lex_state = 72}, + [6099] = {.lex_state = 178, .external_lex_state = 73}, + [6100] = {.lex_state = 178, .external_lex_state = 72}, [6101] = {.lex_state = 178, .external_lex_state = 72}, - [6102] = {.lex_state = 178, .external_lex_state = 73}, - [6103] = {.lex_state = 175, .external_lex_state = 102}, + [6102] = {.lex_state = 178, .external_lex_state = 72}, + [6103] = {.lex_state = 178, .external_lex_state = 72}, [6104] = {.lex_state = 178, .external_lex_state = 73}, - [6105] = {.lex_state = 178, .external_lex_state = 72}, - [6106] = {.lex_state = 169, .external_lex_state = 70}, - [6107] = {.lex_state = 178, .external_lex_state = 72}, - [6108] = {.lex_state = 178, .external_lex_state = 72}, - [6109] = {.lex_state = 178, .external_lex_state = 72}, + [6105] = {.lex_state = 48, .external_lex_state = 67}, + [6106] = {.lex_state = 178, .external_lex_state = 72}, + [6107] = {.lex_state = 178, .external_lex_state = 73}, + [6108] = {.lex_state = 178, .external_lex_state = 73}, + [6109] = {.lex_state = 178, .external_lex_state = 73}, [6110] = {.lex_state = 178, .external_lex_state = 73}, - [6111] = {.lex_state = 23, .external_lex_state = 70}, + [6111] = {.lex_state = 178, .external_lex_state = 72}, [6112] = {.lex_state = 178, .external_lex_state = 72}, - [6113] = {.lex_state = 169, .external_lex_state = 70}, - [6114] = {.lex_state = 178, .external_lex_state = 73}, - [6115] = {.lex_state = 169, .external_lex_state = 70}, - [6116] = {.lex_state = 178, .external_lex_state = 73}, + [6113] = {.lex_state = 178, .external_lex_state = 73}, + [6114] = {.lex_state = 48, .external_lex_state = 67}, + [6115] = {.lex_state = 178, .external_lex_state = 73}, + [6116] = {.lex_state = 178, .external_lex_state = 72}, [6117] = {.lex_state = 178, .external_lex_state = 73}, - [6118] = {.lex_state = 175, .external_lex_state = 102}, - [6119] = {.lex_state = 178, .external_lex_state = 73}, - [6120] = {.lex_state = 178, .external_lex_state = 73}, - [6121] = {.lex_state = 178, .external_lex_state = 73}, - [6122] = {.lex_state = 178, .external_lex_state = 73}, - [6123] = {.lex_state = 178, .external_lex_state = 72}, + [6118] = {.lex_state = 178, .external_lex_state = 72}, + [6119] = {.lex_state = 48, .external_lex_state = 67}, + [6120] = {.lex_state = 48, .external_lex_state = 67}, + [6121] = {.lex_state = 48, .external_lex_state = 67}, + [6122] = {.lex_state = 48, .external_lex_state = 67}, + [6123] = {.lex_state = 48, .external_lex_state = 67}, [6124] = {.lex_state = 178, .external_lex_state = 72}, - [6125] = {.lex_state = 178, .external_lex_state = 72}, - [6126] = {.lex_state = 178, .external_lex_state = 72}, - [6127] = {.lex_state = 178, .external_lex_state = 72}, - [6128] = {.lex_state = 178, .external_lex_state = 72}, - [6129] = {.lex_state = 178, .external_lex_state = 72}, - [6130] = {.lex_state = 178, .external_lex_state = 72}, - [6131] = {.lex_state = 169, .external_lex_state = 70}, - [6132] = {.lex_state = 178, .external_lex_state = 73}, - [6133] = {.lex_state = 183, .external_lex_state = 97}, - [6134] = {.lex_state = 178, .external_lex_state = 73}, + [6125] = {.lex_state = 48, .external_lex_state = 67}, + [6126] = {.lex_state = 178, .external_lex_state = 73}, + [6127] = {.lex_state = 48, .external_lex_state = 67}, + [6128] = {.lex_state = 48, .external_lex_state = 67}, + [6129] = {.lex_state = 48, .external_lex_state = 67}, + [6130] = {.lex_state = 48, .external_lex_state = 67}, + [6131] = {.lex_state = 48, .external_lex_state = 67}, + [6132] = {.lex_state = 175, .external_lex_state = 102}, + [6133] = {.lex_state = 48, .external_lex_state = 67}, + [6134] = {.lex_state = 178, .external_lex_state = 72}, [6135] = {.lex_state = 178, .external_lex_state = 73}, - [6136] = {.lex_state = 169, .external_lex_state = 73}, - [6137] = {.lex_state = 178, .external_lex_state = 73}, - [6138] = {.lex_state = 178, .external_lex_state = 72}, - [6139] = {.lex_state = 48, .external_lex_state = 67}, - [6140] = {.lex_state = 178, .external_lex_state = 72}, + [6136] = {.lex_state = 48, .external_lex_state = 67}, + [6137] = {.lex_state = 169, .external_lex_state = 70}, + [6138] = {.lex_state = 178, .external_lex_state = 73}, + [6139] = {.lex_state = 178, .external_lex_state = 73}, + [6140] = {.lex_state = 178, .external_lex_state = 73}, [6141] = {.lex_state = 178, .external_lex_state = 72}, - [6142] = {.lex_state = 178, .external_lex_state = 72}, - [6143] = {.lex_state = 178, .external_lex_state = 72}, + [6142] = {.lex_state = 178, .external_lex_state = 73}, + [6143] = {.lex_state = 175, .external_lex_state = 102}, [6144] = {.lex_state = 178, .external_lex_state = 72}, - [6145] = {.lex_state = 178, .external_lex_state = 72}, + [6145] = {.lex_state = 178, .external_lex_state = 73}, [6146] = {.lex_state = 178, .external_lex_state = 72}, - [6147] = {.lex_state = 181, .external_lex_state = 70}, - [6148] = {.lex_state = 178, .external_lex_state = 72}, - [6149] = {.lex_state = 178, .external_lex_state = 72}, - [6150] = {.lex_state = 23, .external_lex_state = 70}, + [6147] = {.lex_state = 178, .external_lex_state = 72}, + [6148] = {.lex_state = 178, .external_lex_state = 73}, + [6149] = {.lex_state = 169, .external_lex_state = 70}, + [6150] = {.lex_state = 178, .external_lex_state = 72}, [6151] = {.lex_state = 178, .external_lex_state = 73}, - [6152] = {.lex_state = 178, .external_lex_state = 72}, - [6153] = {.lex_state = 178, .external_lex_state = 72}, + [6152] = {.lex_state = 178, .external_lex_state = 73}, + [6153] = {.lex_state = 48, .external_lex_state = 67}, [6154] = {.lex_state = 178, .external_lex_state = 72}, [6155] = {.lex_state = 178, .external_lex_state = 72}, - [6156] = {.lex_state = 178, .external_lex_state = 72}, - [6157] = {.lex_state = 178, .external_lex_state = 72}, + [6156] = {.lex_state = 178, .external_lex_state = 73}, + [6157] = {.lex_state = 178, .external_lex_state = 73}, [6158] = {.lex_state = 178, .external_lex_state = 72}, - [6159] = {.lex_state = 178, .external_lex_state = 72}, + [6159] = {.lex_state = 178, .external_lex_state = 73}, [6160] = {.lex_state = 178, .external_lex_state = 72}, - [6161] = {.lex_state = 178, .external_lex_state = 72}, - [6162] = {.lex_state = 178, .external_lex_state = 72}, + [6161] = {.lex_state = 169, .external_lex_state = 70}, + [6162] = {.lex_state = 23, .external_lex_state = 87}, [6163] = {.lex_state = 178, .external_lex_state = 72}, [6164] = {.lex_state = 178, .external_lex_state = 72}, - [6165] = {.lex_state = 178, .external_lex_state = 72}, - [6166] = {.lex_state = 178, .external_lex_state = 72}, + [6165] = {.lex_state = 23, .external_lex_state = 74}, + [6166] = {.lex_state = 48, .external_lex_state = 67}, [6167] = {.lex_state = 178, .external_lex_state = 73}, [6168] = {.lex_state = 178, .external_lex_state = 72}, - [6169] = {.lex_state = 169, .external_lex_state = 73}, - [6170] = {.lex_state = 178, .external_lex_state = 72}, - [6171] = {.lex_state = 178, .external_lex_state = 72}, - [6172] = {.lex_state = 178, .external_lex_state = 72}, - [6173] = {.lex_state = 178, .external_lex_state = 72}, + [6169] = {.lex_state = 178, .external_lex_state = 72}, + [6170] = {.lex_state = 169, .external_lex_state = 70}, + [6171] = {.lex_state = 178, .external_lex_state = 73}, + [6172] = {.lex_state = 178, .external_lex_state = 73}, + [6173] = {.lex_state = 178, .external_lex_state = 73}, [6174] = {.lex_state = 178, .external_lex_state = 72}, - [6175] = {.lex_state = 178, .external_lex_state = 73}, - [6176] = {.lex_state = 175, .external_lex_state = 102}, - [6177] = {.lex_state = 178, .external_lex_state = 73}, - [6178] = {.lex_state = 181, .external_lex_state = 70}, - [6179] = {.lex_state = 48, .external_lex_state = 67}, - [6180] = {.lex_state = 178, .external_lex_state = 73}, + [6175] = {.lex_state = 181, .external_lex_state = 70}, + [6176] = {.lex_state = 178, .external_lex_state = 72}, + [6177] = {.lex_state = 178, .external_lex_state = 72}, + [6178] = {.lex_state = 175, .external_lex_state = 102}, + [6179] = {.lex_state = 178, .external_lex_state = 73}, + [6180] = {.lex_state = 48, .external_lex_state = 67}, [6181] = {.lex_state = 178, .external_lex_state = 73}, - [6182] = {.lex_state = 48, .external_lex_state = 67}, - [6183] = {.lex_state = 23, .external_lex_state = 70}, + [6182] = {.lex_state = 178, .external_lex_state = 73}, + [6183] = {.lex_state = 178, .external_lex_state = 73}, [6184] = {.lex_state = 178, .external_lex_state = 72}, - [6185] = {.lex_state = 169, .external_lex_state = 70}, - [6186] = {.lex_state = 178, .external_lex_state = 73}, - [6187] = {.lex_state = 169, .external_lex_state = 70}, + [6185] = {.lex_state = 178, .external_lex_state = 73}, + [6186] = {.lex_state = 178, .external_lex_state = 72}, + [6187] = {.lex_state = 178, .external_lex_state = 73}, [6188] = {.lex_state = 178, .external_lex_state = 73}, - [6189] = {.lex_state = 48, .external_lex_state = 67}, - [6190] = {.lex_state = 48, .external_lex_state = 67}, - [6191] = {.lex_state = 48, .external_lex_state = 67}, - [6192] = {.lex_state = 48, .external_lex_state = 67}, + [6189] = {.lex_state = 23, .external_lex_state = 70}, + [6190] = {.lex_state = 178, .external_lex_state = 73}, + [6191] = {.lex_state = 178, .external_lex_state = 73}, + [6192] = {.lex_state = 178, .external_lex_state = 73}, [6193] = {.lex_state = 178, .external_lex_state = 73}, - [6194] = {.lex_state = 48, .external_lex_state = 67}, - [6195] = {.lex_state = 48, .external_lex_state = 67}, - [6196] = {.lex_state = 48, .external_lex_state = 67}, - [6197] = {.lex_state = 48, .external_lex_state = 67}, - [6198] = {.lex_state = 48, .external_lex_state = 67}, - [6199] = {.lex_state = 48, .external_lex_state = 67}, - [6200] = {.lex_state = 178, .external_lex_state = 73}, + [6194] = {.lex_state = 178, .external_lex_state = 73}, + [6195] = {.lex_state = 178, .external_lex_state = 73}, + [6196] = {.lex_state = 178, .external_lex_state = 72}, + [6197] = {.lex_state = 178, .external_lex_state = 73}, + [6198] = {.lex_state = 178, .external_lex_state = 73}, + [6199] = {.lex_state = 178, .external_lex_state = 73}, + [6200] = {.lex_state = 23, .external_lex_state = 90}, [6201] = {.lex_state = 178, .external_lex_state = 73}, [6202] = {.lex_state = 178, .external_lex_state = 73}, [6203] = {.lex_state = 178, .external_lex_state = 73}, - [6204] = {.lex_state = 48, .external_lex_state = 67}, - [6205] = {.lex_state = 48, .external_lex_state = 67}, - [6206] = {.lex_state = 178, .external_lex_state = 72}, - [6207] = {.lex_state = 178, .external_lex_state = 72}, - [6208] = {.lex_state = 178, .external_lex_state = 73}, - [6209] = {.lex_state = 178, .external_lex_state = 73}, + [6204] = {.lex_state = 178, .external_lex_state = 73}, + [6205] = {.lex_state = 178, .external_lex_state = 72}, + [6206] = {.lex_state = 178, .external_lex_state = 73}, + [6207] = {.lex_state = 178, .external_lex_state = 73}, + [6208] = {.lex_state = 178, .external_lex_state = 72}, + [6209] = {.lex_state = 169, .external_lex_state = 70}, [6210] = {.lex_state = 178, .external_lex_state = 73}, - [6211] = {.lex_state = 178, .external_lex_state = 73}, - [6212] = {.lex_state = 178, .external_lex_state = 72}, - [6213] = {.lex_state = 178, .external_lex_state = 72}, - [6214] = {.lex_state = 178, .external_lex_state = 72}, + [6211] = {.lex_state = 175, .external_lex_state = 102}, + [6212] = {.lex_state = 178, .external_lex_state = 73}, + [6213] = {.lex_state = 178, .external_lex_state = 73}, + [6214] = {.lex_state = 178, .external_lex_state = 73}, [6215] = {.lex_state = 178, .external_lex_state = 73}, [6216] = {.lex_state = 178, .external_lex_state = 73}, [6217] = {.lex_state = 178, .external_lex_state = 73}, [6218] = {.lex_state = 178, .external_lex_state = 73}, - [6219] = {.lex_state = 178, .external_lex_state = 73}, + [6219] = {.lex_state = 23, .external_lex_state = 90}, [6220] = {.lex_state = 178, .external_lex_state = 73}, [6221] = {.lex_state = 178, .external_lex_state = 73}, - [6222] = {.lex_state = 178, .external_lex_state = 73}, - [6223] = {.lex_state = 178, .external_lex_state = 73}, - [6224] = {.lex_state = 178, .external_lex_state = 72}, - [6225] = {.lex_state = 178, .external_lex_state = 73}, - [6226] = {.lex_state = 178, .external_lex_state = 73}, - [6227] = {.lex_state = 178, .external_lex_state = 72}, - [6228] = {.lex_state = 178, .external_lex_state = 73}, - [6229] = {.lex_state = 178, .external_lex_state = 72}, - [6230] = {.lex_state = 48, .external_lex_state = 67}, - [6231] = {.lex_state = 175, .external_lex_state = 102}, - [6232] = {.lex_state = 23, .external_lex_state = 70}, - [6233] = {.lex_state = 48, .external_lex_state = 70}, - [6234] = {.lex_state = 169, .external_lex_state = 103}, - [6235] = {.lex_state = 23, .external_lex_state = 70}, - [6236] = {.lex_state = 23, .external_lex_state = 70}, - [6237] = {.lex_state = 169, .external_lex_state = 70}, - [6238] = {.lex_state = 169, .external_lex_state = 70}, - [6239] = {.lex_state = 169, .external_lex_state = 73}, - [6240] = {.lex_state = 23, .external_lex_state = 70}, - [6241] = {.lex_state = 23, .external_lex_state = 70}, - [6242] = {.lex_state = 23, .external_lex_state = 70}, - [6243] = {.lex_state = 23, .external_lex_state = 70}, - [6244] = {.lex_state = 23, .external_lex_state = 70}, - [6245] = {.lex_state = 169, .external_lex_state = 73}, - [6246] = {.lex_state = 23, .external_lex_state = 70}, - [6247] = {.lex_state = 23, .external_lex_state = 70}, - [6248] = {.lex_state = 23, .external_lex_state = 70}, - [6249] = {.lex_state = 23, .external_lex_state = 70}, - [6250] = {.lex_state = 23, .external_lex_state = 70}, - [6251] = {.lex_state = 23, .external_lex_state = 70}, - [6252] = {.lex_state = 23, .external_lex_state = 70}, - [6253] = {.lex_state = 23, .external_lex_state = 70}, - [6254] = {.lex_state = 23, .external_lex_state = 70}, - [6255] = {.lex_state = 169, .external_lex_state = 73}, + [6222] = {.lex_state = 178, .external_lex_state = 72}, + [6223] = {.lex_state = 169, .external_lex_state = 70}, + [6224] = {.lex_state = 178, .external_lex_state = 73}, + [6225] = {.lex_state = 175, .external_lex_state = 102}, + [6226] = {.lex_state = 178, .external_lex_state = 72}, + [6227] = {.lex_state = 178, .external_lex_state = 73}, + [6228] = {.lex_state = 178, .external_lex_state = 72}, + [6229] = {.lex_state = 186, .external_lex_state = 101}, + [6230] = {.lex_state = 178, .external_lex_state = 73}, + [6231] = {.lex_state = 186, .external_lex_state = 101}, + [6232] = {.lex_state = 178, .external_lex_state = 73}, + [6233] = {.lex_state = 178, .external_lex_state = 73}, + [6234] = {.lex_state = 186, .external_lex_state = 101}, + [6235] = {.lex_state = 181, .external_lex_state = 70}, + [6236] = {.lex_state = 178, .external_lex_state = 72}, + [6237] = {.lex_state = 178, .external_lex_state = 72}, + [6238] = {.lex_state = 178, .external_lex_state = 73}, + [6239] = {.lex_state = 178, .external_lex_state = 73}, + [6240] = {.lex_state = 169, .external_lex_state = 70}, + [6241] = {.lex_state = 178, .external_lex_state = 72}, + [6242] = {.lex_state = 178, .external_lex_state = 73}, + [6243] = {.lex_state = 178, .external_lex_state = 73}, + [6244] = {.lex_state = 175, .external_lex_state = 102}, + [6245] = {.lex_state = 169, .external_lex_state = 70}, + [6246] = {.lex_state = 169, .external_lex_state = 70}, + [6247] = {.lex_state = 178, .external_lex_state = 73}, + [6248] = {.lex_state = 178, .external_lex_state = 72}, + [6249] = {.lex_state = 175, .external_lex_state = 102}, + [6250] = {.lex_state = 178, .external_lex_state = 72}, + [6251] = {.lex_state = 178, .external_lex_state = 73}, + [6252] = {.lex_state = 178, .external_lex_state = 72}, + [6253] = {.lex_state = 178, .external_lex_state = 73}, + [6254] = {.lex_state = 178, .external_lex_state = 72}, + [6255] = {.lex_state = 178, .external_lex_state = 72}, [6256] = {.lex_state = 178, .external_lex_state = 73}, - [6257] = {.lex_state = 23, .external_lex_state = 70}, - [6258] = {.lex_state = 23, .external_lex_state = 70}, - [6259] = {.lex_state = 23, .external_lex_state = 70}, - [6260] = {.lex_state = 23, .external_lex_state = 70}, - [6261] = {.lex_state = 23, .external_lex_state = 70}, - [6262] = {.lex_state = 23, .external_lex_state = 70}, + [6257] = {.lex_state = 178, .external_lex_state = 73}, + [6258] = {.lex_state = 178, .external_lex_state = 72}, + [6259] = {.lex_state = 178, .external_lex_state = 72}, + [6260] = {.lex_state = 178, .external_lex_state = 73}, + [6261] = {.lex_state = 178, .external_lex_state = 73}, + [6262] = {.lex_state = 178, .external_lex_state = 73}, [6263] = {.lex_state = 178, .external_lex_state = 73}, - [6264] = {.lex_state = 23, .external_lex_state = 70}, - [6265] = {.lex_state = 23, .external_lex_state = 70}, + [6264] = {.lex_state = 178, .external_lex_state = 73}, + [6265] = {.lex_state = 169, .external_lex_state = 70}, [6266] = {.lex_state = 23, .external_lex_state = 70}, - [6267] = {.lex_state = 23, .external_lex_state = 70}, + [6267] = {.lex_state = 178, .external_lex_state = 72}, [6268] = {.lex_state = 23, .external_lex_state = 70}, [6269] = {.lex_state = 23, .external_lex_state = 70}, - [6270] = {.lex_state = 23, .external_lex_state = 70}, - [6271] = {.lex_state = 23, .external_lex_state = 70}, - [6272] = {.lex_state = 23, .external_lex_state = 70}, - [6273] = {.lex_state = 183, .external_lex_state = 74}, - [6274] = {.lex_state = 23, .external_lex_state = 70}, + [6270] = {.lex_state = 169, .external_lex_state = 74}, + [6271] = {.lex_state = 169, .external_lex_state = 70}, + [6272] = {.lex_state = 169, .external_lex_state = 70}, + [6273] = {.lex_state = 23, .external_lex_state = 70}, + [6274] = {.lex_state = 169, .external_lex_state = 70}, [6275] = {.lex_state = 23, .external_lex_state = 70}, - [6276] = {.lex_state = 23, .external_lex_state = 70}, + [6276] = {.lex_state = 169, .external_lex_state = 70}, [6277] = {.lex_state = 23, .external_lex_state = 70}, [6278] = {.lex_state = 23, .external_lex_state = 70}, - [6279] = {.lex_state = 23, .external_lex_state = 70}, - [6280] = {.lex_state = 23, .external_lex_state = 70}, - [6281] = {.lex_state = 169, .external_lex_state = 73}, - [6282] = {.lex_state = 169, .external_lex_state = 73}, - [6283] = {.lex_state = 23, .external_lex_state = 70}, - [6284] = {.lex_state = 23, .external_lex_state = 70}, - [6285] = {.lex_state = 23, .external_lex_state = 70}, - [6286] = {.lex_state = 169, .external_lex_state = 70}, - [6287] = {.lex_state = 23, .external_lex_state = 70}, - [6288] = {.lex_state = 23, .external_lex_state = 70}, - [6289] = {.lex_state = 169, .external_lex_state = 70}, + [6279] = {.lex_state = 169, .external_lex_state = 70}, + [6280] = {.lex_state = 169, .external_lex_state = 70}, + [6281] = {.lex_state = 169, .external_lex_state = 70}, + [6282] = {.lex_state = 169, .external_lex_state = 70}, + [6283] = {.lex_state = 178, .external_lex_state = 72}, + [6284] = {.lex_state = 169, .external_lex_state = 70}, + [6285] = {.lex_state = 183, .external_lex_state = 74}, + [6286] = {.lex_state = 23, .external_lex_state = 70}, + [6287] = {.lex_state = 169, .external_lex_state = 70}, + [6288] = {.lex_state = 169, .external_lex_state = 70}, + [6289] = {.lex_state = 178, .external_lex_state = 72}, [6290] = {.lex_state = 169, .external_lex_state = 70}, [6291] = {.lex_state = 169, .external_lex_state = 70}, [6292] = {.lex_state = 169, .external_lex_state = 70}, [6293] = {.lex_state = 23, .external_lex_state = 70}, [6294] = {.lex_state = 23, .external_lex_state = 70}, - [6295] = {.lex_state = 23, .external_lex_state = 70}, - [6296] = {.lex_state = 23, .external_lex_state = 70}, - [6297] = {.lex_state = 23, .external_lex_state = 70}, + [6295] = {.lex_state = 169, .external_lex_state = 70}, + [6296] = {.lex_state = 169, .external_lex_state = 70}, + [6297] = {.lex_state = 169, .external_lex_state = 70}, [6298] = {.lex_state = 23, .external_lex_state = 70}, [6299] = {.lex_state = 23, .external_lex_state = 70}, - [6300] = {.lex_state = 23, .external_lex_state = 70}, + [6300] = {.lex_state = 169, .external_lex_state = 70}, [6301] = {.lex_state = 23, .external_lex_state = 70}, - [6302] = {.lex_state = 23, .external_lex_state = 70}, - [6303] = {.lex_state = 23, .external_lex_state = 70}, + [6302] = {.lex_state = 169, .external_lex_state = 70}, + [6303] = {.lex_state = 169, .external_lex_state = 70}, [6304] = {.lex_state = 169, .external_lex_state = 70}, [6305] = {.lex_state = 23, .external_lex_state = 70}, - [6306] = {.lex_state = 23, .external_lex_state = 70}, - [6307] = {.lex_state = 23, .external_lex_state = 70}, + [6306] = {.lex_state = 169, .external_lex_state = 70}, + [6307] = {.lex_state = 169, .external_lex_state = 70}, [6308] = {.lex_state = 23, .external_lex_state = 70}, - [6309] = {.lex_state = 169, .external_lex_state = 97}, + [6309] = {.lex_state = 169, .external_lex_state = 70}, [6310] = {.lex_state = 169, .external_lex_state = 70}, - [6311] = {.lex_state = 169, .external_lex_state = 70}, - [6312] = {.lex_state = 183, .external_lex_state = 70}, - [6313] = {.lex_state = 23, .external_lex_state = 70}, - [6314] = {.lex_state = 169, .external_lex_state = 103}, + [6311] = {.lex_state = 23, .external_lex_state = 70}, + [6312] = {.lex_state = 23, .external_lex_state = 70}, + [6313] = {.lex_state = 169, .external_lex_state = 70}, + [6314] = {.lex_state = 23, .external_lex_state = 70}, [6315] = {.lex_state = 23, .external_lex_state = 70}, - [6316] = {.lex_state = 23, .external_lex_state = 70}, - [6317] = {.lex_state = 23, .external_lex_state = 70}, + [6316] = {.lex_state = 169, .external_lex_state = 72}, + [6317] = {.lex_state = 169, .external_lex_state = 72}, [6318] = {.lex_state = 23, .external_lex_state = 70}, - [6319] = {.lex_state = 23, .external_lex_state = 70}, - [6320] = {.lex_state = 23, .external_lex_state = 70}, + [6319] = {.lex_state = 169, .external_lex_state = 72}, + [6320] = {.lex_state = 169, .external_lex_state = 72}, [6321] = {.lex_state = 23, .external_lex_state = 70}, [6322] = {.lex_state = 23, .external_lex_state = 70}, [6323] = {.lex_state = 23, .external_lex_state = 70}, [6324] = {.lex_state = 23, .external_lex_state = 70}, - [6325] = {.lex_state = 23, .external_lex_state = 70}, - [6326] = {.lex_state = 48, .external_lex_state = 70}, - [6327] = {.lex_state = 23, .external_lex_state = 70}, - [6328] = {.lex_state = 23, .external_lex_state = 70}, - [6329] = {.lex_state = 23, .external_lex_state = 70}, - [6330] = {.lex_state = 23, .external_lex_state = 70}, - [6331] = {.lex_state = 169, .external_lex_state = 103}, + [6325] = {.lex_state = 169, .external_lex_state = 74}, + [6326] = {.lex_state = 169, .external_lex_state = 72}, + [6327] = {.lex_state = 169, .external_lex_state = 72}, + [6328] = {.lex_state = 169, .external_lex_state = 72}, + [6329] = {.lex_state = 169, .external_lex_state = 72}, + [6330] = {.lex_state = 169, .external_lex_state = 97}, + [6331] = {.lex_state = 23, .external_lex_state = 70}, [6332] = {.lex_state = 169, .external_lex_state = 70}, - [6333] = {.lex_state = 169, .external_lex_state = 70}, - [6334] = {.lex_state = 169, .external_lex_state = 70}, - [6335] = {.lex_state = 169, .external_lex_state = 70}, - [6336] = {.lex_state = 169, .external_lex_state = 70}, + [6333] = {.lex_state = 169, .external_lex_state = 72}, + [6334] = {.lex_state = 23, .external_lex_state = 70}, + [6335] = {.lex_state = 169, .external_lex_state = 72}, + [6336] = {.lex_state = 169, .external_lex_state = 72}, [6337] = {.lex_state = 23, .external_lex_state = 70}, - [6338] = {.lex_state = 169, .external_lex_state = 70}, - [6339] = {.lex_state = 169, .external_lex_state = 70}, + [6338] = {.lex_state = 169, .external_lex_state = 72}, + [6339] = {.lex_state = 169, .external_lex_state = 72}, [6340] = {.lex_state = 23, .external_lex_state = 70}, [6341] = {.lex_state = 23, .external_lex_state = 70}, [6342] = {.lex_state = 23, .external_lex_state = 70}, [6343] = {.lex_state = 23, .external_lex_state = 70}, [6344] = {.lex_state = 23, .external_lex_state = 70}, - [6345] = {.lex_state = 48, .external_lex_state = 70}, - [6346] = {.lex_state = 48, .external_lex_state = 70}, - [6347] = {.lex_state = 48, .external_lex_state = 70}, - [6348] = {.lex_state = 48, .external_lex_state = 70}, - [6349] = {.lex_state = 48, .external_lex_state = 70}, - [6350] = {.lex_state = 23, .external_lex_state = 70}, + [6345] = {.lex_state = 23, .external_lex_state = 70}, + [6346] = {.lex_state = 169, .external_lex_state = 72}, + [6347] = {.lex_state = 169, .external_lex_state = 72}, + [6348] = {.lex_state = 169, .external_lex_state = 72}, + [6349] = {.lex_state = 169, .external_lex_state = 72}, + [6350] = {.lex_state = 178, .external_lex_state = 74}, [6351] = {.lex_state = 23, .external_lex_state = 70}, [6352] = {.lex_state = 23, .external_lex_state = 70}, - [6353] = {.lex_state = 178, .external_lex_state = 73}, - [6354] = {.lex_state = 169, .external_lex_state = 70}, - [6355] = {.lex_state = 23, .external_lex_state = 70}, - [6356] = {.lex_state = 169, .external_lex_state = 70}, - [6357] = {.lex_state = 169, .external_lex_state = 70}, - [6358] = {.lex_state = 169, .external_lex_state = 70}, - [6359] = {.lex_state = 169, .external_lex_state = 70}, + [6353] = {.lex_state = 23, .external_lex_state = 70}, + [6354] = {.lex_state = 23, .external_lex_state = 70}, + [6355] = {.lex_state = 169, .external_lex_state = 72}, + [6356] = {.lex_state = 169, .external_lex_state = 72}, + [6357] = {.lex_state = 169, .external_lex_state = 72}, + [6358] = {.lex_state = 169, .external_lex_state = 72}, + [6359] = {.lex_state = 23, .external_lex_state = 70}, [6360] = {.lex_state = 23, .external_lex_state = 70}, [6361] = {.lex_state = 169, .external_lex_state = 70}, [6362] = {.lex_state = 169, .external_lex_state = 70}, - [6363] = {.lex_state = 169, .external_lex_state = 70}, - [6364] = {.lex_state = 178, .external_lex_state = 73}, - [6365] = {.lex_state = 23, .external_lex_state = 70}, - [6366] = {.lex_state = 23, .external_lex_state = 73}, - [6367] = {.lex_state = 169, .external_lex_state = 70}, - [6368] = {.lex_state = 169, .external_lex_state = 70}, - [6369] = {.lex_state = 169, .external_lex_state = 70}, - [6370] = {.lex_state = 169, .external_lex_state = 74}, - [6371] = {.lex_state = 169, .external_lex_state = 70}, - [6372] = {.lex_state = 169, .external_lex_state = 70}, - [6373] = {.lex_state = 169, .external_lex_state = 70}, - [6374] = {.lex_state = 169, .external_lex_state = 70}, + [6363] = {.lex_state = 169, .external_lex_state = 72}, + [6364] = {.lex_state = 169, .external_lex_state = 72}, + [6365] = {.lex_state = 169, .external_lex_state = 72}, + [6366] = {.lex_state = 169, .external_lex_state = 72}, + [6367] = {.lex_state = 23, .external_lex_state = 70}, + [6368] = {.lex_state = 169, .external_lex_state = 72}, + [6369] = {.lex_state = 169, .external_lex_state = 72}, + [6370] = {.lex_state = 23, .external_lex_state = 70}, + [6371] = {.lex_state = 169, .external_lex_state = 72}, + [6372] = {.lex_state = 169, .external_lex_state = 72}, + [6373] = {.lex_state = 169, .external_lex_state = 103}, + [6374] = {.lex_state = 178, .external_lex_state = 72}, [6375] = {.lex_state = 169, .external_lex_state = 70}, [6376] = {.lex_state = 169, .external_lex_state = 70}, - [6377] = {.lex_state = 169, .external_lex_state = 70}, - [6378] = {.lex_state = 169, .external_lex_state = 70}, - [6379] = {.lex_state = 169, .external_lex_state = 70}, - [6380] = {.lex_state = 169, .external_lex_state = 70}, - [6381] = {.lex_state = 169, .external_lex_state = 70}, - [6382] = {.lex_state = 169, .external_lex_state = 70}, + [6377] = {.lex_state = 169, .external_lex_state = 72}, + [6378] = {.lex_state = 169, .external_lex_state = 72}, + [6379] = {.lex_state = 23, .external_lex_state = 70}, + [6380] = {.lex_state = 169, .external_lex_state = 72}, + [6381] = {.lex_state = 169, .external_lex_state = 72}, + [6382] = {.lex_state = 169, .external_lex_state = 103}, [6383] = {.lex_state = 169, .external_lex_state = 70}, - [6384] = {.lex_state = 169, .external_lex_state = 70}, - [6385] = {.lex_state = 169, .external_lex_state = 70}, - [6386] = {.lex_state = 169, .external_lex_state = 70}, - [6387] = {.lex_state = 169, .external_lex_state = 70}, - [6388] = {.lex_state = 169, .external_lex_state = 70}, - [6389] = {.lex_state = 169, .external_lex_state = 70}, - [6390] = {.lex_state = 169, .external_lex_state = 74}, - [6391] = {.lex_state = 169, .external_lex_state = 70}, - [6392] = {.lex_state = 169, .external_lex_state = 70}, - [6393] = {.lex_state = 169, .external_lex_state = 70}, - [6394] = {.lex_state = 169, .external_lex_state = 74}, - [6395] = {.lex_state = 169, .external_lex_state = 70}, - [6396] = {.lex_state = 169, .external_lex_state = 70}, - [6397] = {.lex_state = 23, .external_lex_state = 70}, - [6398] = {.lex_state = 169, .external_lex_state = 70}, - [6399] = {.lex_state = 169, .external_lex_state = 70}, - [6400] = {.lex_state = 169, .external_lex_state = 70}, - [6401] = {.lex_state = 169, .external_lex_state = 70}, - [6402] = {.lex_state = 169, .external_lex_state = 74}, - [6403] = {.lex_state = 169, .external_lex_state = 70}, - [6404] = {.lex_state = 169, .external_lex_state = 70}, - [6405] = {.lex_state = 169, .external_lex_state = 74}, + [6384] = {.lex_state = 169, .external_lex_state = 72}, + [6385] = {.lex_state = 169, .external_lex_state = 72}, + [6386] = {.lex_state = 169, .external_lex_state = 72}, + [6387] = {.lex_state = 169, .external_lex_state = 72}, + [6388] = {.lex_state = 169, .external_lex_state = 72}, + [6389] = {.lex_state = 169, .external_lex_state = 72}, + [6390] = {.lex_state = 169, .external_lex_state = 72}, + [6391] = {.lex_state = 169, .external_lex_state = 72}, + [6392] = {.lex_state = 23, .external_lex_state = 70}, + [6393] = {.lex_state = 23, .external_lex_state = 70}, + [6394] = {.lex_state = 23, .external_lex_state = 70}, + [6395] = {.lex_state = 23, .external_lex_state = 70}, + [6396] = {.lex_state = 169, .external_lex_state = 72}, + [6397] = {.lex_state = 169, .external_lex_state = 72}, + [6398] = {.lex_state = 23, .external_lex_state = 70}, + [6399] = {.lex_state = 169, .external_lex_state = 72}, + [6400] = {.lex_state = 169, .external_lex_state = 72}, + [6401] = {.lex_state = 23, .external_lex_state = 70}, + [6402] = {.lex_state = 23, .external_lex_state = 70}, + [6403] = {.lex_state = 23, .external_lex_state = 70}, + [6404] = {.lex_state = 178, .external_lex_state = 74}, + [6405] = {.lex_state = 23, .external_lex_state = 70}, [6406] = {.lex_state = 23, .external_lex_state = 70}, - [6407] = {.lex_state = 169, .external_lex_state = 70}, - [6408] = {.lex_state = 169, .external_lex_state = 70}, - [6409] = {.lex_state = 169, .external_lex_state = 70}, - [6410] = {.lex_state = 169, .external_lex_state = 70}, - [6411] = {.lex_state = 23, .external_lex_state = 70}, + [6407] = {.lex_state = 169, .external_lex_state = 72}, + [6408] = {.lex_state = 169, .external_lex_state = 72}, + [6409] = {.lex_state = 178, .external_lex_state = 74}, + [6410] = {.lex_state = 169, .external_lex_state = 72}, + [6411] = {.lex_state = 169, .external_lex_state = 72}, [6412] = {.lex_state = 23, .external_lex_state = 70}, - [6413] = {.lex_state = 169, .external_lex_state = 70}, - [6414] = {.lex_state = 169, .external_lex_state = 70}, - [6415] = {.lex_state = 23, .external_lex_state = 70}, + [6413] = {.lex_state = 23, .external_lex_state = 70}, + [6414] = {.lex_state = 23, .external_lex_state = 70}, + [6415] = {.lex_state = 169, .external_lex_state = 70}, [6416] = {.lex_state = 23, .external_lex_state = 70}, [6417] = {.lex_state = 23, .external_lex_state = 70}, [6418] = {.lex_state = 23, .external_lex_state = 70}, @@ -26747,182 +26869,182 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6424] = {.lex_state = 23, .external_lex_state = 70}, [6425] = {.lex_state = 23, .external_lex_state = 70}, [6426] = {.lex_state = 169, .external_lex_state = 70}, - [6427] = {.lex_state = 169, .external_lex_state = 70}, - [6428] = {.lex_state = 23, .external_lex_state = 70}, - [6429] = {.lex_state = 23, .external_lex_state = 70}, - [6430] = {.lex_state = 169, .external_lex_state = 70}, - [6431] = {.lex_state = 169, .external_lex_state = 70}, - [6432] = {.lex_state = 169, .external_lex_state = 70}, - [6433] = {.lex_state = 169, .external_lex_state = 70}, - [6434] = {.lex_state = 169, .external_lex_state = 70}, + [6427] = {.lex_state = 23, .external_lex_state = 70}, + [6428] = {.lex_state = 169, .external_lex_state = 70}, + [6429] = {.lex_state = 169, .external_lex_state = 70}, + [6430] = {.lex_state = 23, .external_lex_state = 70}, + [6431] = {.lex_state = 23, .external_lex_state = 70}, + [6432] = {.lex_state = 48, .external_lex_state = 70}, + [6433] = {.lex_state = 178, .external_lex_state = 72}, + [6434] = {.lex_state = 23, .external_lex_state = 70}, [6435] = {.lex_state = 169, .external_lex_state = 70}, - [6436] = {.lex_state = 178, .external_lex_state = 73}, - [6437] = {.lex_state = 169, .external_lex_state = 70}, - [6438] = {.lex_state = 169, .external_lex_state = 70}, - [6439] = {.lex_state = 169, .external_lex_state = 70}, + [6436] = {.lex_state = 23, .external_lex_state = 70}, + [6437] = {.lex_state = 23, .external_lex_state = 70}, + [6438] = {.lex_state = 23, .external_lex_state = 70}, + [6439] = {.lex_state = 23, .external_lex_state = 70}, [6440] = {.lex_state = 169, .external_lex_state = 70}, [6441] = {.lex_state = 169, .external_lex_state = 70}, - [6442] = {.lex_state = 23, .external_lex_state = 70}, + [6442] = {.lex_state = 23, .external_lex_state = 72}, [6443] = {.lex_state = 169, .external_lex_state = 70}, - [6444] = {.lex_state = 23, .external_lex_state = 70}, + [6444] = {.lex_state = 169, .external_lex_state = 72}, [6445] = {.lex_state = 23, .external_lex_state = 70}, - [6446] = {.lex_state = 169, .external_lex_state = 70}, - [6447] = {.lex_state = 169, .external_lex_state = 74}, - [6448] = {.lex_state = 183, .external_lex_state = 74}, - [6449] = {.lex_state = 169, .external_lex_state = 70}, - [6450] = {.lex_state = 169, .external_lex_state = 70}, - [6451] = {.lex_state = 169, .external_lex_state = 73}, - [6452] = {.lex_state = 169, .external_lex_state = 73}, - [6453] = {.lex_state = 169, .external_lex_state = 73}, - [6454] = {.lex_state = 169, .external_lex_state = 73}, - [6455] = {.lex_state = 23, .external_lex_state = 70}, - [6456] = {.lex_state = 169, .external_lex_state = 74}, - [6457] = {.lex_state = 23, .external_lex_state = 70}, - [6458] = {.lex_state = 23, .external_lex_state = 70}, - [6459] = {.lex_state = 23, .external_lex_state = 70}, - [6460] = {.lex_state = 178, .external_lex_state = 74}, - [6461] = {.lex_state = 178, .external_lex_state = 74}, + [6446] = {.lex_state = 169, .external_lex_state = 72}, + [6447] = {.lex_state = 23, .external_lex_state = 70}, + [6448] = {.lex_state = 23, .external_lex_state = 70}, + [6449] = {.lex_state = 23, .external_lex_state = 70}, + [6450] = {.lex_state = 23, .external_lex_state = 70}, + [6451] = {.lex_state = 23, .external_lex_state = 70}, + [6452] = {.lex_state = 23, .external_lex_state = 70}, + [6453] = {.lex_state = 23, .external_lex_state = 70}, + [6454] = {.lex_state = 169, .external_lex_state = 74}, + [6455] = {.lex_state = 169, .external_lex_state = 70}, + [6456] = {.lex_state = 169, .external_lex_state = 70}, + [6457] = {.lex_state = 169, .external_lex_state = 70}, + [6458] = {.lex_state = 183, .external_lex_state = 74}, + [6459] = {.lex_state = 169, .external_lex_state = 74}, + [6460] = {.lex_state = 23, .external_lex_state = 70}, + [6461] = {.lex_state = 23, .external_lex_state = 70}, [6462] = {.lex_state = 23, .external_lex_state = 70}, - [6463] = {.lex_state = 178, .external_lex_state = 74}, - [6464] = {.lex_state = 23, .external_lex_state = 70}, + [6463] = {.lex_state = 169, .external_lex_state = 70}, + [6464] = {.lex_state = 169, .external_lex_state = 74}, [6465] = {.lex_state = 23, .external_lex_state = 70}, [6466] = {.lex_state = 23, .external_lex_state = 70}, - [6467] = {.lex_state = 23, .external_lex_state = 70}, - [6468] = {.lex_state = 48, .external_lex_state = 70}, - [6469] = {.lex_state = 23, .external_lex_state = 70}, + [6467] = {.lex_state = 169, .external_lex_state = 72}, + [6468] = {.lex_state = 23, .external_lex_state = 70}, + [6469] = {.lex_state = 169, .external_lex_state = 72}, [6470] = {.lex_state = 23, .external_lex_state = 70}, - [6471] = {.lex_state = 169, .external_lex_state = 70}, - [6472] = {.lex_state = 23, .external_lex_state = 70}, - [6473] = {.lex_state = 23, .external_lex_state = 70}, - [6474] = {.lex_state = 23, .external_lex_state = 70}, - [6475] = {.lex_state = 23, .external_lex_state = 70}, - [6476] = {.lex_state = 23, .external_lex_state = 70}, - [6477] = {.lex_state = 23, .external_lex_state = 70}, - [6478] = {.lex_state = 23, .external_lex_state = 70}, - [6479] = {.lex_state = 23, .external_lex_state = 70}, + [6471] = {.lex_state = 23, .external_lex_state = 70}, + [6472] = {.lex_state = 169, .external_lex_state = 70}, + [6473] = {.lex_state = 169, .external_lex_state = 74}, + [6474] = {.lex_state = 169, .external_lex_state = 70}, + [6475] = {.lex_state = 169, .external_lex_state = 70}, + [6476] = {.lex_state = 23, .external_lex_state = 74}, + [6477] = {.lex_state = 169, .external_lex_state = 70}, + [6478] = {.lex_state = 169, .external_lex_state = 70}, + [6479] = {.lex_state = 169, .external_lex_state = 70}, [6480] = {.lex_state = 23, .external_lex_state = 70}, - [6481] = {.lex_state = 23, .external_lex_state = 70}, + [6481] = {.lex_state = 169, .external_lex_state = 70}, [6482] = {.lex_state = 23, .external_lex_state = 70}, - [6483] = {.lex_state = 23, .external_lex_state = 74}, + [6483] = {.lex_state = 23, .external_lex_state = 70}, [6484] = {.lex_state = 23, .external_lex_state = 70}, [6485] = {.lex_state = 23, .external_lex_state = 70}, - [6486] = {.lex_state = 23, .external_lex_state = 70}, + [6486] = {.lex_state = 169, .external_lex_state = 70}, [6487] = {.lex_state = 23, .external_lex_state = 70}, [6488] = {.lex_state = 23, .external_lex_state = 70}, [6489] = {.lex_state = 23, .external_lex_state = 70}, - [6490] = {.lex_state = 23, .external_lex_state = 70}, + [6490] = {.lex_state = 178, .external_lex_state = 74}, [6491] = {.lex_state = 23, .external_lex_state = 70}, - [6492] = {.lex_state = 23, .external_lex_state = 70}, + [6492] = {.lex_state = 169, .external_lex_state = 70}, [6493] = {.lex_state = 23, .external_lex_state = 70}, - [6494] = {.lex_state = 23, .external_lex_state = 70}, - [6495] = {.lex_state = 23, .external_lex_state = 70}, + [6494] = {.lex_state = 178, .external_lex_state = 74}, + [6495] = {.lex_state = 169, .external_lex_state = 70}, [6496] = {.lex_state = 23, .external_lex_state = 70}, - [6497] = {.lex_state = 23, .external_lex_state = 70}, + [6497] = {.lex_state = 178, .external_lex_state = 74}, [6498] = {.lex_state = 23, .external_lex_state = 70}, [6499] = {.lex_state = 23, .external_lex_state = 70}, - [6500] = {.lex_state = 23, .external_lex_state = 70}, + [6500] = {.lex_state = 169, .external_lex_state = 70}, [6501] = {.lex_state = 23, .external_lex_state = 70}, - [6502] = {.lex_state = 23, .external_lex_state = 70}, - [6503] = {.lex_state = 23, .external_lex_state = 70}, + [6502] = {.lex_state = 169, .external_lex_state = 72}, + [6503] = {.lex_state = 169, .external_lex_state = 72}, [6504] = {.lex_state = 23, .external_lex_state = 70}, - [6505] = {.lex_state = 23, .external_lex_state = 70}, - [6506] = {.lex_state = 23, .external_lex_state = 70}, - [6507] = {.lex_state = 23, .external_lex_state = 70}, - [6508] = {.lex_state = 23, .external_lex_state = 70}, - [6509] = {.lex_state = 23, .external_lex_state = 70}, - [6510] = {.lex_state = 23, .external_lex_state = 70}, - [6511] = {.lex_state = 23, .external_lex_state = 70}, + [6505] = {.lex_state = 169, .external_lex_state = 70}, + [6506] = {.lex_state = 169, .external_lex_state = 70}, + [6507] = {.lex_state = 183, .external_lex_state = 70}, + [6508] = {.lex_state = 169, .external_lex_state = 70}, + [6509] = {.lex_state = 23, .external_lex_state = 74}, + [6510] = {.lex_state = 169, .external_lex_state = 70}, + [6511] = {.lex_state = 169, .external_lex_state = 70}, [6512] = {.lex_state = 23, .external_lex_state = 70}, - [6513] = {.lex_state = 23, .external_lex_state = 70}, + [6513] = {.lex_state = 169, .external_lex_state = 70}, [6514] = {.lex_state = 23, .external_lex_state = 70}, - [6515] = {.lex_state = 23, .external_lex_state = 70}, - [6516] = {.lex_state = 23, .external_lex_state = 70}, - [6517] = {.lex_state = 23, .external_lex_state = 70}, + [6515] = {.lex_state = 169, .external_lex_state = 70}, + [6516] = {.lex_state = 48, .external_lex_state = 87}, + [6517] = {.lex_state = 169, .external_lex_state = 70}, [6518] = {.lex_state = 23, .external_lex_state = 70}, - [6519] = {.lex_state = 23, .external_lex_state = 70}, + [6519] = {.lex_state = 169, .external_lex_state = 74}, [6520] = {.lex_state = 23, .external_lex_state = 70}, - [6521] = {.lex_state = 169, .external_lex_state = 70}, - [6522] = {.lex_state = 169, .external_lex_state = 70}, - [6523] = {.lex_state = 169, .external_lex_state = 70}, + [6521] = {.lex_state = 169, .external_lex_state = 74}, + [6522] = {.lex_state = 169, .external_lex_state = 74}, + [6523] = {.lex_state = 169, .external_lex_state = 74}, [6524] = {.lex_state = 169, .external_lex_state = 70}, - [6525] = {.lex_state = 169, .external_lex_state = 70}, - [6526] = {.lex_state = 169, .external_lex_state = 70}, - [6527] = {.lex_state = 169, .external_lex_state = 70}, - [6528] = {.lex_state = 169, .external_lex_state = 70}, - [6529] = {.lex_state = 169, .external_lex_state = 70}, - [6530] = {.lex_state = 169, .external_lex_state = 70}, - [6531] = {.lex_state = 169, .external_lex_state = 70}, - [6532] = {.lex_state = 169, .external_lex_state = 70}, - [6533] = {.lex_state = 169, .external_lex_state = 73}, - [6534] = {.lex_state = 169, .external_lex_state = 73}, - [6535] = {.lex_state = 169, .external_lex_state = 73}, - [6536] = {.lex_state = 169, .external_lex_state = 73}, - [6537] = {.lex_state = 169, .external_lex_state = 73}, - [6538] = {.lex_state = 169, .external_lex_state = 73}, - [6539] = {.lex_state = 169, .external_lex_state = 73}, - [6540] = {.lex_state = 169, .external_lex_state = 73}, - [6541] = {.lex_state = 169, .external_lex_state = 73}, - [6542] = {.lex_state = 169, .external_lex_state = 73}, - [6543] = {.lex_state = 169, .external_lex_state = 73}, - [6544] = {.lex_state = 169, .external_lex_state = 73}, - [6545] = {.lex_state = 169, .external_lex_state = 73}, - [6546] = {.lex_state = 169, .external_lex_state = 73}, - [6547] = {.lex_state = 169, .external_lex_state = 73}, - [6548] = {.lex_state = 169, .external_lex_state = 73}, - [6549] = {.lex_state = 169, .external_lex_state = 73}, - [6550] = {.lex_state = 169, .external_lex_state = 73}, - [6551] = {.lex_state = 169, .external_lex_state = 73}, - [6552] = {.lex_state = 169, .external_lex_state = 73}, - [6553] = {.lex_state = 169, .external_lex_state = 73}, - [6554] = {.lex_state = 169, .external_lex_state = 73}, - [6555] = {.lex_state = 169, .external_lex_state = 73}, - [6556] = {.lex_state = 169, .external_lex_state = 73}, - [6557] = {.lex_state = 169, .external_lex_state = 73}, - [6558] = {.lex_state = 169, .external_lex_state = 73}, - [6559] = {.lex_state = 169, .external_lex_state = 73}, - [6560] = {.lex_state = 169, .external_lex_state = 73}, - [6561] = {.lex_state = 169, .external_lex_state = 73}, - [6562] = {.lex_state = 169, .external_lex_state = 73}, - [6563] = {.lex_state = 169, .external_lex_state = 73}, - [6564] = {.lex_state = 169, .external_lex_state = 73}, - [6565] = {.lex_state = 169, .external_lex_state = 70}, - [6566] = {.lex_state = 169, .external_lex_state = 73}, - [6567] = {.lex_state = 169, .external_lex_state = 73}, - [6568] = {.lex_state = 169, .external_lex_state = 73}, - [6569] = {.lex_state = 169, .external_lex_state = 73}, - [6570] = {.lex_state = 169, .external_lex_state = 73}, - [6571] = {.lex_state = 169, .external_lex_state = 73}, - [6572] = {.lex_state = 169, .external_lex_state = 73}, - [6573] = {.lex_state = 169, .external_lex_state = 73}, - [6574] = {.lex_state = 169, .external_lex_state = 73}, - [6575] = {.lex_state = 169, .external_lex_state = 73}, - [6576] = {.lex_state = 169, .external_lex_state = 73}, - [6577] = {.lex_state = 169, .external_lex_state = 73}, - [6578] = {.lex_state = 169, .external_lex_state = 70}, - [6579] = {.lex_state = 169, .external_lex_state = 73}, - [6580] = {.lex_state = 169, .external_lex_state = 73}, - [6581] = {.lex_state = 169, .external_lex_state = 73}, - [6582] = {.lex_state = 169, .external_lex_state = 73}, - [6583] = {.lex_state = 169, .external_lex_state = 70}, - [6584] = {.lex_state = 169, .external_lex_state = 70}, - [6585] = {.lex_state = 169, .external_lex_state = 70}, - [6586] = {.lex_state = 169, .external_lex_state = 70}, - [6587] = {.lex_state = 169, .external_lex_state = 70}, + [6525] = {.lex_state = 169, .external_lex_state = 74}, + [6526] = {.lex_state = 23, .external_lex_state = 70}, + [6527] = {.lex_state = 169, .external_lex_state = 74}, + [6528] = {.lex_state = 23, .external_lex_state = 70}, + [6529] = {.lex_state = 178, .external_lex_state = 72}, + [6530] = {.lex_state = 23, .external_lex_state = 70}, + [6531] = {.lex_state = 169, .external_lex_state = 103}, + [6532] = {.lex_state = 48, .external_lex_state = 87}, + [6533] = {.lex_state = 169, .external_lex_state = 70}, + [6534] = {.lex_state = 169, .external_lex_state = 70}, + [6535] = {.lex_state = 169, .external_lex_state = 70}, + [6536] = {.lex_state = 23, .external_lex_state = 70}, + [6537] = {.lex_state = 23, .external_lex_state = 70}, + [6538] = {.lex_state = 23, .external_lex_state = 70}, + [6539] = {.lex_state = 23, .external_lex_state = 70}, + [6540] = {.lex_state = 23, .external_lex_state = 70}, + [6541] = {.lex_state = 23, .external_lex_state = 70}, + [6542] = {.lex_state = 23, .external_lex_state = 70}, + [6543] = {.lex_state = 23, .external_lex_state = 70}, + [6544] = {.lex_state = 23, .external_lex_state = 70}, + [6545] = {.lex_state = 23, .external_lex_state = 70}, + [6546] = {.lex_state = 23, .external_lex_state = 70}, + [6547] = {.lex_state = 23, .external_lex_state = 70}, + [6548] = {.lex_state = 23, .external_lex_state = 70}, + [6549] = {.lex_state = 23, .external_lex_state = 70}, + [6550] = {.lex_state = 23, .external_lex_state = 70}, + [6551] = {.lex_state = 23, .external_lex_state = 70}, + [6552] = {.lex_state = 23, .external_lex_state = 70}, + [6553] = {.lex_state = 169, .external_lex_state = 70}, + [6554] = {.lex_state = 23, .external_lex_state = 70}, + [6555] = {.lex_state = 23, .external_lex_state = 70}, + [6556] = {.lex_state = 183, .external_lex_state = 74}, + [6557] = {.lex_state = 23, .external_lex_state = 70}, + [6558] = {.lex_state = 178, .external_lex_state = 72}, + [6559] = {.lex_state = 169, .external_lex_state = 70}, + [6560] = {.lex_state = 23, .external_lex_state = 70}, + [6561] = {.lex_state = 23, .external_lex_state = 70}, + [6562] = {.lex_state = 23, .external_lex_state = 70}, + [6563] = {.lex_state = 23, .external_lex_state = 70}, + [6564] = {.lex_state = 169, .external_lex_state = 70}, + [6565] = {.lex_state = 23, .external_lex_state = 70}, + [6566] = {.lex_state = 23, .external_lex_state = 70}, + [6567] = {.lex_state = 23, .external_lex_state = 70}, + [6568] = {.lex_state = 169, .external_lex_state = 70}, + [6569] = {.lex_state = 169, .external_lex_state = 74}, + [6570] = {.lex_state = 169, .external_lex_state = 70}, + [6571] = {.lex_state = 169, .external_lex_state = 103}, + [6572] = {.lex_state = 169, .external_lex_state = 70}, + [6573] = {.lex_state = 169, .external_lex_state = 70}, + [6574] = {.lex_state = 49, .external_lex_state = 70}, + [6575] = {.lex_state = 48, .external_lex_state = 70}, + [6576] = {.lex_state = 23, .external_lex_state = 70}, + [6577] = {.lex_state = 23, .external_lex_state = 70}, + [6578] = {.lex_state = 23, .external_lex_state = 70}, + [6579] = {.lex_state = 169, .external_lex_state = 70}, + [6580] = {.lex_state = 48, .external_lex_state = 70}, + [6581] = {.lex_state = 48, .external_lex_state = 70}, + [6582] = {.lex_state = 48, .external_lex_state = 70}, + [6583] = {.lex_state = 48, .external_lex_state = 70}, + [6584] = {.lex_state = 23, .external_lex_state = 70}, + [6585] = {.lex_state = 23, .external_lex_state = 70}, + [6586] = {.lex_state = 23, .external_lex_state = 70}, + [6587] = {.lex_state = 48, .external_lex_state = 70}, [6588] = {.lex_state = 169, .external_lex_state = 70}, [6589] = {.lex_state = 169, .external_lex_state = 70}, [6590] = {.lex_state = 23, .external_lex_state = 70}, - [6591] = {.lex_state = 178, .external_lex_state = 74}, - [6592] = {.lex_state = 178, .external_lex_state = 74}, - [6593] = {.lex_state = 178, .external_lex_state = 74}, + [6591] = {.lex_state = 23, .external_lex_state = 70}, + [6592] = {.lex_state = 23, .external_lex_state = 70}, + [6593] = {.lex_state = 23, .external_lex_state = 70}, [6594] = {.lex_state = 23, .external_lex_state = 70}, - [6595] = {.lex_state = 23, .external_lex_state = 74}, - [6596] = {.lex_state = 169, .external_lex_state = 74}, - [6597] = {.lex_state = 169, .external_lex_state = 74}, - [6598] = {.lex_state = 169, .external_lex_state = 74}, - [6599] = {.lex_state = 169, .external_lex_state = 74}, - [6600] = {.lex_state = 169, .external_lex_state = 74}, - [6601] = {.lex_state = 169, .external_lex_state = 74}, - [6602] = {.lex_state = 183, .external_lex_state = 74}, + [6595] = {.lex_state = 23, .external_lex_state = 70}, + [6596] = {.lex_state = 48, .external_lex_state = 70}, + [6597] = {.lex_state = 169, .external_lex_state = 70}, + [6598] = {.lex_state = 23, .external_lex_state = 70}, + [6599] = {.lex_state = 48, .external_lex_state = 70}, + [6600] = {.lex_state = 23, .external_lex_state = 70}, + [6601] = {.lex_state = 48, .external_lex_state = 70}, + [6602] = {.lex_state = 48, .external_lex_state = 70}, [6603] = {.lex_state = 23, .external_lex_state = 70}, [6604] = {.lex_state = 23, .external_lex_state = 70}, [6605] = {.lex_state = 23, .external_lex_state = 70}, @@ -26934,94 +27056,94 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6611] = {.lex_state = 23, .external_lex_state = 70}, [6612] = {.lex_state = 23, .external_lex_state = 70}, [6613] = {.lex_state = 23, .external_lex_state = 70}, - [6614] = {.lex_state = 23, .external_lex_state = 70}, - [6615] = {.lex_state = 23, .external_lex_state = 70}, - [6616] = {.lex_state = 169, .external_lex_state = 74}, - [6617] = {.lex_state = 49, .external_lex_state = 70}, - [6618] = {.lex_state = 48, .external_lex_state = 70}, - [6619] = {.lex_state = 48, .external_lex_state = 70}, - [6620] = {.lex_state = 48, .external_lex_state = 70}, - [6621] = {.lex_state = 48, .external_lex_state = 70}, - [6622] = {.lex_state = 48, .external_lex_state = 70}, - [6623] = {.lex_state = 23, .external_lex_state = 70}, - [6624] = {.lex_state = 169, .external_lex_state = 103}, + [6614] = {.lex_state = 169, .external_lex_state = 70}, + [6615] = {.lex_state = 169, .external_lex_state = 70}, + [6616] = {.lex_state = 23, .external_lex_state = 70}, + [6617] = {.lex_state = 23, .external_lex_state = 70}, + [6618] = {.lex_state = 23, .external_lex_state = 70}, + [6619] = {.lex_state = 23, .external_lex_state = 70}, + [6620] = {.lex_state = 23, .external_lex_state = 70}, + [6621] = {.lex_state = 23, .external_lex_state = 70}, + [6622] = {.lex_state = 23, .external_lex_state = 70}, + [6623] = {.lex_state = 169, .external_lex_state = 70}, + [6624] = {.lex_state = 23, .external_lex_state = 70}, [6625] = {.lex_state = 23, .external_lex_state = 70}, [6626] = {.lex_state = 23, .external_lex_state = 70}, - [6627] = {.lex_state = 23, .external_lex_state = 70}, - [6628] = {.lex_state = 178, .external_lex_state = 73}, - [6629] = {.lex_state = 48, .external_lex_state = 87}, - [6630] = {.lex_state = 48, .external_lex_state = 87}, - [6631] = {.lex_state = 23, .external_lex_state = 70}, - [6632] = {.lex_state = 169, .external_lex_state = 74}, - [6633] = {.lex_state = 169, .external_lex_state = 74}, - [6634] = {.lex_state = 169, .external_lex_state = 74}, - [6635] = {.lex_state = 33, .external_lex_state = 98}, - [6636] = {.lex_state = 169, .external_lex_state = 74}, - [6637] = {.lex_state = 169, .external_lex_state = 74}, + [6627] = {.lex_state = 169, .external_lex_state = 70}, + [6628] = {.lex_state = 23, .external_lex_state = 70}, + [6629] = {.lex_state = 169, .external_lex_state = 70}, + [6630] = {.lex_state = 169, .external_lex_state = 70}, + [6631] = {.lex_state = 169, .external_lex_state = 70}, + [6632] = {.lex_state = 169, .external_lex_state = 70}, + [6633] = {.lex_state = 169, .external_lex_state = 70}, + [6634] = {.lex_state = 169, .external_lex_state = 70}, + [6635] = {.lex_state = 169, .external_lex_state = 70}, + [6636] = {.lex_state = 23, .external_lex_state = 70}, + [6637] = {.lex_state = 23, .external_lex_state = 70}, [6638] = {.lex_state = 169, .external_lex_state = 70}, - [6639] = {.lex_state = 48, .external_lex_state = 70}, - [6640] = {.lex_state = 169, .external_lex_state = 74}, - [6641] = {.lex_state = 169, .external_lex_state = 74}, - [6642] = {.lex_state = 169, .external_lex_state = 73}, - [6643] = {.lex_state = 169, .external_lex_state = 74}, + [6639] = {.lex_state = 169, .external_lex_state = 70}, + [6640] = {.lex_state = 23, .external_lex_state = 70}, + [6641] = {.lex_state = 23, .external_lex_state = 70}, + [6642] = {.lex_state = 23, .external_lex_state = 70}, + [6643] = {.lex_state = 23, .external_lex_state = 70}, [6644] = {.lex_state = 169, .external_lex_state = 74}, - [6645] = {.lex_state = 169, .external_lex_state = 73}, - [6646] = {.lex_state = 169, .external_lex_state = 74}, - [6647] = {.lex_state = 169, .external_lex_state = 74}, - [6648] = {.lex_state = 178, .external_lex_state = 74}, - [6649] = {.lex_state = 169, .external_lex_state = 74}, - [6650] = {.lex_state = 169, .external_lex_state = 74}, - [6651] = {.lex_state = 169, .external_lex_state = 74}, + [6645] = {.lex_state = 169, .external_lex_state = 72}, + [6646] = {.lex_state = 169, .external_lex_state = 70}, + [6647] = {.lex_state = 169, .external_lex_state = 70}, + [6648] = {.lex_state = 169, .external_lex_state = 70}, + [6649] = {.lex_state = 169, .external_lex_state = 70}, + [6650] = {.lex_state = 169, .external_lex_state = 70}, + [6651] = {.lex_state = 169, .external_lex_state = 70}, [6652] = {.lex_state = 169, .external_lex_state = 70}, - [6653] = {.lex_state = 169, .external_lex_state = 74}, - [6654] = {.lex_state = 169, .external_lex_state = 74}, - [6655] = {.lex_state = 169, .external_lex_state = 73}, - [6656] = {.lex_state = 33, .external_lex_state = 98}, - [6657] = {.lex_state = 169, .external_lex_state = 74}, - [6658] = {.lex_state = 169, .external_lex_state = 74}, - [6659] = {.lex_state = 169, .external_lex_state = 74}, - [6660] = {.lex_state = 169, .external_lex_state = 74}, - [6661] = {.lex_state = 169, .external_lex_state = 74}, - [6662] = {.lex_state = 169, .external_lex_state = 74}, - [6663] = {.lex_state = 169, .external_lex_state = 74}, - [6664] = {.lex_state = 178, .external_lex_state = 74}, - [6665] = {.lex_state = 33, .external_lex_state = 98}, - [6666] = {.lex_state = 169, .external_lex_state = 74}, - [6667] = {.lex_state = 169, .external_lex_state = 74}, - [6668] = {.lex_state = 169, .external_lex_state = 74}, - [6669] = {.lex_state = 169, .external_lex_state = 74}, - [6670] = {.lex_state = 169, .external_lex_state = 74}, - [6671] = {.lex_state = 169, .external_lex_state = 73}, + [6653] = {.lex_state = 23, .external_lex_state = 70}, + [6654] = {.lex_state = 23, .external_lex_state = 70}, + [6655] = {.lex_state = 23, .external_lex_state = 70}, + [6656] = {.lex_state = 169, .external_lex_state = 70}, + [6657] = {.lex_state = 169, .external_lex_state = 70}, + [6658] = {.lex_state = 169, .external_lex_state = 70}, + [6659] = {.lex_state = 169, .external_lex_state = 70}, + [6660] = {.lex_state = 23, .external_lex_state = 70}, + [6661] = {.lex_state = 23, .external_lex_state = 70}, + [6662] = {.lex_state = 23, .external_lex_state = 70}, + [6663] = {.lex_state = 23, .external_lex_state = 70}, + [6664] = {.lex_state = 48, .external_lex_state = 70}, + [6665] = {.lex_state = 169, .external_lex_state = 72}, + [6666] = {.lex_state = 23, .external_lex_state = 70}, + [6667] = {.lex_state = 23, .external_lex_state = 70}, + [6668] = {.lex_state = 169, .external_lex_state = 70}, + [6669] = {.lex_state = 23, .external_lex_state = 70}, + [6670] = {.lex_state = 48, .external_lex_state = 70}, + [6671] = {.lex_state = 169, .external_lex_state = 74}, [6672] = {.lex_state = 169, .external_lex_state = 74}, [6673] = {.lex_state = 169, .external_lex_state = 74}, [6674] = {.lex_state = 169, .external_lex_state = 74}, - [6675] = {.lex_state = 169, .external_lex_state = 74}, - [6676] = {.lex_state = 169, .external_lex_state = 70}, - [6677] = {.lex_state = 169, .external_lex_state = 70}, - [6678] = {.lex_state = 33, .external_lex_state = 98}, - [6679] = {.lex_state = 33, .external_lex_state = 98}, - [6680] = {.lex_state = 48, .external_lex_state = 70}, - [6681] = {.lex_state = 48, .external_lex_state = 70}, - [6682] = {.lex_state = 169, .external_lex_state = 70}, + [6675] = {.lex_state = 169, .external_lex_state = 72}, + [6676] = {.lex_state = 169, .external_lex_state = 74}, + [6677] = {.lex_state = 48, .external_lex_state = 70}, + [6678] = {.lex_state = 169, .external_lex_state = 72}, + [6679] = {.lex_state = 169, .external_lex_state = 70}, + [6680] = {.lex_state = 33, .external_lex_state = 99}, + [6681] = {.lex_state = 169, .external_lex_state = 74}, + [6682] = {.lex_state = 169, .external_lex_state = 74}, [6683] = {.lex_state = 169, .external_lex_state = 74}, [6684] = {.lex_state = 169, .external_lex_state = 74}, - [6685] = {.lex_state = 169, .external_lex_state = 70}, - [6686] = {.lex_state = 169, .external_lex_state = 70}, - [6687] = {.lex_state = 33, .external_lex_state = 98}, - [6688] = {.lex_state = 169, .external_lex_state = 74}, + [6685] = {.lex_state = 169, .external_lex_state = 74}, + [6686] = {.lex_state = 169, .external_lex_state = 74}, + [6687] = {.lex_state = 169, .external_lex_state = 70}, + [6688] = {.lex_state = 169, .external_lex_state = 70}, [6689] = {.lex_state = 169, .external_lex_state = 74}, [6690] = {.lex_state = 169, .external_lex_state = 74}, - [6691] = {.lex_state = 169, .external_lex_state = 74}, + [6691] = {.lex_state = 169, .external_lex_state = 72}, [6692] = {.lex_state = 169, .external_lex_state = 74}, - [6693] = {.lex_state = 169, .external_lex_state = 74}, + [6693] = {.lex_state = 169, .external_lex_state = 70}, [6694] = {.lex_state = 169, .external_lex_state = 74}, - [6695] = {.lex_state = 169, .external_lex_state = 74}, - [6696] = {.lex_state = 48, .external_lex_state = 70}, + [6695] = {.lex_state = 178, .external_lex_state = 74}, + [6696] = {.lex_state = 169, .external_lex_state = 74}, [6697] = {.lex_state = 169, .external_lex_state = 74}, - [6698] = {.lex_state = 169, .external_lex_state = 74}, + [6698] = {.lex_state = 33, .external_lex_state = 99}, [6699] = {.lex_state = 169, .external_lex_state = 74}, [6700] = {.lex_state = 169, .external_lex_state = 74}, - [6701] = {.lex_state = 169, .external_lex_state = 74}, + [6701] = {.lex_state = 169, .external_lex_state = 72}, [6702] = {.lex_state = 169, .external_lex_state = 74}, [6703] = {.lex_state = 169, .external_lex_state = 74}, [6704] = {.lex_state = 169, .external_lex_state = 74}, @@ -27031,47 +27153,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6708] = {.lex_state = 169, .external_lex_state = 74}, [6709] = {.lex_state = 169, .external_lex_state = 74}, [6710] = {.lex_state = 169, .external_lex_state = 74}, - [6711] = {.lex_state = 48, .external_lex_state = 70}, + [6711] = {.lex_state = 169, .external_lex_state = 74}, [6712] = {.lex_state = 169, .external_lex_state = 74}, - [6713] = {.lex_state = 169, .external_lex_state = 74}, - [6714] = {.lex_state = 169, .external_lex_state = 73}, + [6713] = {.lex_state = 169, .external_lex_state = 70}, + [6714] = {.lex_state = 169, .external_lex_state = 74}, [6715] = {.lex_state = 169, .external_lex_state = 74}, [6716] = {.lex_state = 169, .external_lex_state = 74}, [6717] = {.lex_state = 169, .external_lex_state = 74}, [6718] = {.lex_state = 169, .external_lex_state = 74}, [6719] = {.lex_state = 169, .external_lex_state = 74}, - [6720] = {.lex_state = 169, .external_lex_state = 74}, - [6721] = {.lex_state = 169, .external_lex_state = 73}, - [6722] = {.lex_state = 169, .external_lex_state = 73}, + [6720] = {.lex_state = 48, .external_lex_state = 70}, + [6721] = {.lex_state = 169, .external_lex_state = 74}, + [6722] = {.lex_state = 169, .external_lex_state = 74}, [6723] = {.lex_state = 169, .external_lex_state = 74}, [6724] = {.lex_state = 169, .external_lex_state = 74}, [6725] = {.lex_state = 169, .external_lex_state = 74}, [6726] = {.lex_state = 169, .external_lex_state = 74}, - [6727] = {.lex_state = 169, .external_lex_state = 74}, + [6727] = {.lex_state = 169, .external_lex_state = 70}, [6728] = {.lex_state = 169, .external_lex_state = 74}, - [6729] = {.lex_state = 169, .external_lex_state = 74}, - [6730] = {.lex_state = 169, .external_lex_state = 74}, + [6729] = {.lex_state = 33, .external_lex_state = 99}, + [6730] = {.lex_state = 48, .external_lex_state = 70}, [6731] = {.lex_state = 169, .external_lex_state = 74}, [6732] = {.lex_state = 169, .external_lex_state = 74}, [6733] = {.lex_state = 169, .external_lex_state = 74}, - [6734] = {.lex_state = 33, .external_lex_state = 98}, + [6734] = {.lex_state = 169, .external_lex_state = 74}, [6735] = {.lex_state = 169, .external_lex_state = 74}, - [6736] = {.lex_state = 169, .external_lex_state = 74}, + [6736] = {.lex_state = 49, .external_lex_state = 70}, [6737] = {.lex_state = 169, .external_lex_state = 74}, [6738] = {.lex_state = 169, .external_lex_state = 74}, [6739] = {.lex_state = 169, .external_lex_state = 74}, - [6740] = {.lex_state = 169, .external_lex_state = 70}, + [6740] = {.lex_state = 169, .external_lex_state = 74}, [6741] = {.lex_state = 169, .external_lex_state = 74}, - [6742] = {.lex_state = 169, .external_lex_state = 74}, + [6742] = {.lex_state = 169, .external_lex_state = 72}, [6743] = {.lex_state = 169, .external_lex_state = 74}, [6744] = {.lex_state = 169, .external_lex_state = 74}, - [6745] = {.lex_state = 169, .external_lex_state = 74}, - [6746] = {.lex_state = 33, .external_lex_state = 98}, - [6747] = {.lex_state = 169, .external_lex_state = 73}, - [6748] = {.lex_state = 169, .external_lex_state = 74}, - [6749] = {.lex_state = 169, .external_lex_state = 73}, - [6750] = {.lex_state = 169, .external_lex_state = 73}, - [6751] = {.lex_state = 33, .external_lex_state = 98}, + [6745] = {.lex_state = 169, .external_lex_state = 72}, + [6746] = {.lex_state = 169, .external_lex_state = 70}, + [6747] = {.lex_state = 169, .external_lex_state = 74}, + [6748] = {.lex_state = 33, .external_lex_state = 99}, + [6749] = {.lex_state = 169, .external_lex_state = 74}, + [6750] = {.lex_state = 169, .external_lex_state = 74}, + [6751] = {.lex_state = 169, .external_lex_state = 74}, [6752] = {.lex_state = 169, .external_lex_state = 74}, [6753] = {.lex_state = 169, .external_lex_state = 74}, [6754] = {.lex_state = 169, .external_lex_state = 74}, @@ -27080,74 +27202,74 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6757] = {.lex_state = 169, .external_lex_state = 74}, [6758] = {.lex_state = 169, .external_lex_state = 74}, [6759] = {.lex_state = 169, .external_lex_state = 74}, - [6760] = {.lex_state = 178, .external_lex_state = 74}, + [6760] = {.lex_state = 169, .external_lex_state = 74}, [6761] = {.lex_state = 169, .external_lex_state = 74}, [6762] = {.lex_state = 169, .external_lex_state = 74}, - [6763] = {.lex_state = 178, .external_lex_state = 74}, - [6764] = {.lex_state = 169, .external_lex_state = 74}, + [6763] = {.lex_state = 169, .external_lex_state = 74}, + [6764] = {.lex_state = 169, .external_lex_state = 72}, [6765] = {.lex_state = 169, .external_lex_state = 74}, [6766] = {.lex_state = 169, .external_lex_state = 74}, [6767] = {.lex_state = 169, .external_lex_state = 74}, - [6768] = {.lex_state = 169, .external_lex_state = 74}, - [6769] = {.lex_state = 33, .external_lex_state = 98}, + [6768] = {.lex_state = 48, .external_lex_state = 70}, + [6769] = {.lex_state = 33, .external_lex_state = 99}, [6770] = {.lex_state = 169, .external_lex_state = 74}, [6771] = {.lex_state = 169, .external_lex_state = 74}, - [6772] = {.lex_state = 169, .external_lex_state = 70}, - [6773] = {.lex_state = 169, .external_lex_state = 70}, + [6772] = {.lex_state = 169, .external_lex_state = 74}, + [6773] = {.lex_state = 48, .external_lex_state = 70}, [6774] = {.lex_state = 169, .external_lex_state = 74}, [6775] = {.lex_state = 169, .external_lex_state = 74}, [6776] = {.lex_state = 169, .external_lex_state = 74}, [6777] = {.lex_state = 169, .external_lex_state = 74}, - [6778] = {.lex_state = 169, .external_lex_state = 73}, - [6779] = {.lex_state = 169, .external_lex_state = 73}, + [6778] = {.lex_state = 169, .external_lex_state = 70}, + [6779] = {.lex_state = 169, .external_lex_state = 74}, [6780] = {.lex_state = 169, .external_lex_state = 74}, - [6781] = {.lex_state = 169, .external_lex_state = 74}, + [6781] = {.lex_state = 169, .external_lex_state = 72}, [6782] = {.lex_state = 169, .external_lex_state = 74}, - [6783] = {.lex_state = 48, .external_lex_state = 70}, - [6784] = {.lex_state = 169, .external_lex_state = 73}, + [6783] = {.lex_state = 169, .external_lex_state = 74}, + [6784] = {.lex_state = 169, .external_lex_state = 74}, [6785] = {.lex_state = 169, .external_lex_state = 74}, [6786] = {.lex_state = 169, .external_lex_state = 74}, [6787] = {.lex_state = 169, .external_lex_state = 74}, [6788] = {.lex_state = 169, .external_lex_state = 74}, - [6789] = {.lex_state = 169, .external_lex_state = 73}, - [6790] = {.lex_state = 169, .external_lex_state = 73}, - [6791] = {.lex_state = 48, .external_lex_state = 70}, - [6792] = {.lex_state = 169, .external_lex_state = 74}, - [6793] = {.lex_state = 169, .external_lex_state = 74}, + [6789] = {.lex_state = 169, .external_lex_state = 74}, + [6790] = {.lex_state = 169, .external_lex_state = 74}, + [6791] = {.lex_state = 169, .external_lex_state = 74}, + [6792] = {.lex_state = 169, .external_lex_state = 72}, + [6793] = {.lex_state = 169, .external_lex_state = 72}, [6794] = {.lex_state = 169, .external_lex_state = 74}, - [6795] = {.lex_state = 169, .external_lex_state = 73}, + [6795] = {.lex_state = 169, .external_lex_state = 74}, [6796] = {.lex_state = 169, .external_lex_state = 74}, [6797] = {.lex_state = 169, .external_lex_state = 74}, [6798] = {.lex_state = 169, .external_lex_state = 74}, [6799] = {.lex_state = 169, .external_lex_state = 74}, [6800] = {.lex_state = 169, .external_lex_state = 74}, - [6801] = {.lex_state = 169, .external_lex_state = 74}, + [6801] = {.lex_state = 33, .external_lex_state = 99}, [6802] = {.lex_state = 169, .external_lex_state = 74}, [6803] = {.lex_state = 169, .external_lex_state = 74}, [6804] = {.lex_state = 169, .external_lex_state = 74}, [6805] = {.lex_state = 169, .external_lex_state = 74}, - [6806] = {.lex_state = 169, .external_lex_state = 74}, + [6806] = {.lex_state = 33, .external_lex_state = 99}, [6807] = {.lex_state = 169, .external_lex_state = 74}, [6808] = {.lex_state = 169, .external_lex_state = 74}, [6809] = {.lex_state = 169, .external_lex_state = 74}, [6810] = {.lex_state = 169, .external_lex_state = 74}, [6811] = {.lex_state = 169, .external_lex_state = 74}, [6812] = {.lex_state = 169, .external_lex_state = 74}, - [6813] = {.lex_state = 169, .external_lex_state = 74}, + [6813] = {.lex_state = 33, .external_lex_state = 99}, [6814] = {.lex_state = 169, .external_lex_state = 74}, [6815] = {.lex_state = 169, .external_lex_state = 74}, - [6816] = {.lex_state = 169, .external_lex_state = 70}, + [6816] = {.lex_state = 33, .external_lex_state = 99}, [6817] = {.lex_state = 169, .external_lex_state = 74}, [6818] = {.lex_state = 169, .external_lex_state = 74}, [6819] = {.lex_state = 169, .external_lex_state = 74}, [6820] = {.lex_state = 169, .external_lex_state = 74}, - [6821] = {.lex_state = 169, .external_lex_state = 74}, + [6821] = {.lex_state = 178, .external_lex_state = 74}, [6822] = {.lex_state = 169, .external_lex_state = 74}, [6823] = {.lex_state = 169, .external_lex_state = 74}, [6824] = {.lex_state = 169, .external_lex_state = 74}, - [6825] = {.lex_state = 169, .external_lex_state = 74}, - [6826] = {.lex_state = 169, .external_lex_state = 74}, - [6827] = {.lex_state = 23, .external_lex_state = 74}, + [6825] = {.lex_state = 169, .external_lex_state = 70}, + [6826] = {.lex_state = 48, .external_lex_state = 70}, + [6827] = {.lex_state = 48, .external_lex_state = 70}, [6828] = {.lex_state = 169, .external_lex_state = 74}, [6829] = {.lex_state = 169, .external_lex_state = 74}, [6830] = {.lex_state = 169, .external_lex_state = 74}, @@ -27159,255 +27281,255 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6836] = {.lex_state = 169, .external_lex_state = 74}, [6837] = {.lex_state = 169, .external_lex_state = 74}, [6838] = {.lex_state = 169, .external_lex_state = 74}, - [6839] = {.lex_state = 169, .external_lex_state = 74}, + [6839] = {.lex_state = 178, .external_lex_state = 74}, [6840] = {.lex_state = 169, .external_lex_state = 74}, [6841] = {.lex_state = 169, .external_lex_state = 74}, [6842] = {.lex_state = 169, .external_lex_state = 74}, [6843] = {.lex_state = 169, .external_lex_state = 74}, - [6844] = {.lex_state = 169, .external_lex_state = 74}, + [6844] = {.lex_state = 33, .external_lex_state = 99}, [6845] = {.lex_state = 169, .external_lex_state = 74}, [6846] = {.lex_state = 169, .external_lex_state = 74}, [6847] = {.lex_state = 169, .external_lex_state = 74}, - [6848] = {.lex_state = 48, .external_lex_state = 70}, - [6849] = {.lex_state = 48, .external_lex_state = 70}, - [6850] = {.lex_state = 48, .external_lex_state = 70}, - [6851] = {.lex_state = 48, .external_lex_state = 70}, - [6852] = {.lex_state = 48, .external_lex_state = 70}, - [6853] = {.lex_state = 48, .external_lex_state = 70}, - [6854] = {.lex_state = 48, .external_lex_state = 70}, - [6855] = {.lex_state = 48, .external_lex_state = 70}, - [6856] = {.lex_state = 48, .external_lex_state = 70}, - [6857] = {.lex_state = 48, .external_lex_state = 70}, - [6858] = {.lex_state = 48, .external_lex_state = 70}, - [6859] = {.lex_state = 48, .external_lex_state = 70}, - [6860] = {.lex_state = 48, .external_lex_state = 70}, - [6861] = {.lex_state = 48, .external_lex_state = 70}, - [6862] = {.lex_state = 48, .external_lex_state = 70}, - [6863] = {.lex_state = 48, .external_lex_state = 70}, + [6848] = {.lex_state = 169, .external_lex_state = 74}, + [6849] = {.lex_state = 178, .external_lex_state = 74}, + [6850] = {.lex_state = 169, .external_lex_state = 74}, + [6851] = {.lex_state = 169, .external_lex_state = 74}, + [6852] = {.lex_state = 169, .external_lex_state = 74}, + [6853] = {.lex_state = 169, .external_lex_state = 74}, + [6854] = {.lex_state = 169, .external_lex_state = 72}, + [6855] = {.lex_state = 169, .external_lex_state = 70}, + [6856] = {.lex_state = 169, .external_lex_state = 72}, + [6857] = {.lex_state = 169, .external_lex_state = 74}, + [6858] = {.lex_state = 169, .external_lex_state = 74}, + [6859] = {.lex_state = 169, .external_lex_state = 72}, + [6860] = {.lex_state = 169, .external_lex_state = 74}, + [6861] = {.lex_state = 169, .external_lex_state = 74}, + [6862] = {.lex_state = 169, .external_lex_state = 74}, + [6863] = {.lex_state = 169, .external_lex_state = 72}, [6864] = {.lex_state = 169, .external_lex_state = 74}, - [6865] = {.lex_state = 48, .external_lex_state = 70}, - [6866] = {.lex_state = 48, .external_lex_state = 70}, + [6865] = {.lex_state = 178, .external_lex_state = 74}, + [6866] = {.lex_state = 169, .external_lex_state = 74}, [6867] = {.lex_state = 169, .external_lex_state = 74}, [6868] = {.lex_state = 169, .external_lex_state = 74}, [6869] = {.lex_state = 169, .external_lex_state = 74}, - [6870] = {.lex_state = 169, .external_lex_state = 73}, - [6871] = {.lex_state = 169, .external_lex_state = 73}, - [6872] = {.lex_state = 169, .external_lex_state = 74}, - [6873] = {.lex_state = 169, .external_lex_state = 74}, + [6870] = {.lex_state = 169, .external_lex_state = 74}, + [6871] = {.lex_state = 169, .external_lex_state = 74}, + [6872] = {.lex_state = 33, .external_lex_state = 99}, + [6873] = {.lex_state = 169, .external_lex_state = 70}, [6874] = {.lex_state = 169, .external_lex_state = 74}, - [6875] = {.lex_state = 169, .external_lex_state = 74}, + [6875] = {.lex_state = 169, .external_lex_state = 72}, [6876] = {.lex_state = 169, .external_lex_state = 74}, - [6877] = {.lex_state = 48, .external_lex_state = 70}, - [6878] = {.lex_state = 33, .external_lex_state = 98}, + [6877] = {.lex_state = 169, .external_lex_state = 74}, + [6878] = {.lex_state = 169, .external_lex_state = 74}, [6879] = {.lex_state = 169, .external_lex_state = 74}, [6880] = {.lex_state = 169, .external_lex_state = 74}, [6881] = {.lex_state = 169, .external_lex_state = 74}, [6882] = {.lex_state = 169, .external_lex_state = 74}, [6883] = {.lex_state = 169, .external_lex_state = 74}, - [6884] = {.lex_state = 33, .external_lex_state = 98}, + [6884] = {.lex_state = 169, .external_lex_state = 74}, [6885] = {.lex_state = 169, .external_lex_state = 74}, [6886] = {.lex_state = 169, .external_lex_state = 74}, - [6887] = {.lex_state = 178, .external_lex_state = 74}, - [6888] = {.lex_state = 169, .external_lex_state = 74}, + [6887] = {.lex_state = 169, .external_lex_state = 72}, + [6888] = {.lex_state = 169, .external_lex_state = 72}, [6889] = {.lex_state = 169, .external_lex_state = 74}, - [6890] = {.lex_state = 169, .external_lex_state = 73}, - [6891] = {.lex_state = 169, .external_lex_state = 70}, - [6892] = {.lex_state = 169, .external_lex_state = 70}, - [6893] = {.lex_state = 178, .external_lex_state = 74}, - [6894] = {.lex_state = 49, .external_lex_state = 70}, - [6895] = {.lex_state = 169, .external_lex_state = 74}, - [6896] = {.lex_state = 169, .external_lex_state = 74}, - [6897] = {.lex_state = 169, .external_lex_state = 74}, - [6898] = {.lex_state = 169, .external_lex_state = 74}, - [6899] = {.lex_state = 169, .external_lex_state = 74}, + [6890] = {.lex_state = 48, .external_lex_state = 70}, + [6891] = {.lex_state = 48, .external_lex_state = 70}, + [6892] = {.lex_state = 48, .external_lex_state = 70}, + [6893] = {.lex_state = 48, .external_lex_state = 70}, + [6894] = {.lex_state = 48, .external_lex_state = 70}, + [6895] = {.lex_state = 48, .external_lex_state = 70}, + [6896] = {.lex_state = 48, .external_lex_state = 70}, + [6897] = {.lex_state = 48, .external_lex_state = 70}, + [6898] = {.lex_state = 48, .external_lex_state = 70}, + [6899] = {.lex_state = 48, .external_lex_state = 70}, [6900] = {.lex_state = 48, .external_lex_state = 70}, - [6901] = {.lex_state = 169, .external_lex_state = 74}, + [6901] = {.lex_state = 48, .external_lex_state = 70}, [6902] = {.lex_state = 48, .external_lex_state = 70}, - [6903] = {.lex_state = 169, .external_lex_state = 74}, + [6903] = {.lex_state = 48, .external_lex_state = 70}, [6904] = {.lex_state = 48, .external_lex_state = 70}, - [6905] = {.lex_state = 169, .external_lex_state = 74}, + [6905] = {.lex_state = 48, .external_lex_state = 70}, [6906] = {.lex_state = 169, .external_lex_state = 74}, [6907] = {.lex_state = 48, .external_lex_state = 70}, [6908] = {.lex_state = 48, .external_lex_state = 70}, - [6909] = {.lex_state = 48, .external_lex_state = 70}, - [6910] = {.lex_state = 169, .external_lex_state = 70}, + [6909] = {.lex_state = 169, .external_lex_state = 72}, + [6910] = {.lex_state = 169, .external_lex_state = 74}, [6911] = {.lex_state = 169, .external_lex_state = 74}, - [6912] = {.lex_state = 169, .external_lex_state = 70}, - [6913] = {.lex_state = 48, .external_lex_state = 70}, + [6912] = {.lex_state = 169, .external_lex_state = 74}, + [6913] = {.lex_state = 169, .external_lex_state = 74}, [6914] = {.lex_state = 169, .external_lex_state = 74}, - [6915] = {.lex_state = 169, .external_lex_state = 70}, - [6916] = {.lex_state = 169, .external_lex_state = 70}, - [6917] = {.lex_state = 169, .external_lex_state = 70}, + [6915] = {.lex_state = 169, .external_lex_state = 74}, + [6916] = {.lex_state = 169, .external_lex_state = 74}, + [6917] = {.lex_state = 178, .external_lex_state = 74}, [6918] = {.lex_state = 169, .external_lex_state = 70}, - [6919] = {.lex_state = 169, .external_lex_state = 70}, - [6920] = {.lex_state = 169, .external_lex_state = 70}, - [6921] = {.lex_state = 169, .external_lex_state = 70}, - [6922] = {.lex_state = 169, .external_lex_state = 70}, + [6919] = {.lex_state = 23, .external_lex_state = 74}, + [6920] = {.lex_state = 48, .external_lex_state = 70}, + [6921] = {.lex_state = 169, .external_lex_state = 74}, + [6922] = {.lex_state = 169, .external_lex_state = 74}, [6923] = {.lex_state = 169, .external_lex_state = 70}, - [6924] = {.lex_state = 169, .external_lex_state = 70}, - [6925] = {.lex_state = 169, .external_lex_state = 70}, - [6926] = {.lex_state = 169, .external_lex_state = 70}, - [6927] = {.lex_state = 169, .external_lex_state = 70}, - [6928] = {.lex_state = 169, .external_lex_state = 70}, - [6929] = {.lex_state = 169, .external_lex_state = 70}, - [6930] = {.lex_state = 169, .external_lex_state = 70}, - [6931] = {.lex_state = 169, .external_lex_state = 70}, - [6932] = {.lex_state = 169, .external_lex_state = 70}, - [6933] = {.lex_state = 48, .external_lex_state = 70}, - [6934] = {.lex_state = 169, .external_lex_state = 70}, - [6935] = {.lex_state = 48, .external_lex_state = 70}, - [6936] = {.lex_state = 48, .external_lex_state = 70}, + [6924] = {.lex_state = 169, .external_lex_state = 74}, + [6925] = {.lex_state = 169, .external_lex_state = 74}, + [6926] = {.lex_state = 169, .external_lex_state = 74}, + [6927] = {.lex_state = 169, .external_lex_state = 74}, + [6928] = {.lex_state = 169, .external_lex_state = 74}, + [6929] = {.lex_state = 169, .external_lex_state = 74}, + [6930] = {.lex_state = 33, .external_lex_state = 99}, + [6931] = {.lex_state = 169, .external_lex_state = 74}, + [6932] = {.lex_state = 169, .external_lex_state = 74}, + [6933] = {.lex_state = 169, .external_lex_state = 74}, + [6934] = {.lex_state = 169, .external_lex_state = 72}, + [6935] = {.lex_state = 169, .external_lex_state = 74}, + [6936] = {.lex_state = 169, .external_lex_state = 74}, [6937] = {.lex_state = 169, .external_lex_state = 70}, [6938] = {.lex_state = 169, .external_lex_state = 70}, [6939] = {.lex_state = 48, .external_lex_state = 70}, - [6940] = {.lex_state = 48, .external_lex_state = 70}, - [6941] = {.lex_state = 48, .external_lex_state = 70}, - [6942] = {.lex_state = 48, .external_lex_state = 70}, - [6943] = {.lex_state = 48, .external_lex_state = 70}, - [6944] = {.lex_state = 48, .external_lex_state = 70}, + [6940] = {.lex_state = 169, .external_lex_state = 74}, + [6941] = {.lex_state = 169, .external_lex_state = 74}, + [6942] = {.lex_state = 169, .external_lex_state = 70}, + [6943] = {.lex_state = 169, .external_lex_state = 74}, + [6944] = {.lex_state = 169, .external_lex_state = 70}, [6945] = {.lex_state = 48, .external_lex_state = 70}, - [6946] = {.lex_state = 48, .external_lex_state = 70}, + [6946] = {.lex_state = 169, .external_lex_state = 74}, [6947] = {.lex_state = 48, .external_lex_state = 70}, - [6948] = {.lex_state = 48, .external_lex_state = 70}, + [6948] = {.lex_state = 169, .external_lex_state = 74}, [6949] = {.lex_state = 48, .external_lex_state = 70}, - [6950] = {.lex_state = 48, .external_lex_state = 70}, - [6951] = {.lex_state = 48, .external_lex_state = 70}, - [6952] = {.lex_state = 48, .external_lex_state = 70}, - [6953] = {.lex_state = 48, .external_lex_state = 70}, - [6954] = {.lex_state = 178, .external_lex_state = 96}, - [6955] = {.lex_state = 169, .external_lex_state = 70}, + [6950] = {.lex_state = 169, .external_lex_state = 74}, + [6951] = {.lex_state = 169, .external_lex_state = 74}, + [6952] = {.lex_state = 169, .external_lex_state = 74}, + [6953] = {.lex_state = 169, .external_lex_state = 70}, + [6954] = {.lex_state = 169, .external_lex_state = 74}, + [6955] = {.lex_state = 169, .external_lex_state = 74}, [6956] = {.lex_state = 169, .external_lex_state = 74}, - [6957] = {.lex_state = 48, .external_lex_state = 70}, - [6958] = {.lex_state = 48, .external_lex_state = 70}, - [6959] = {.lex_state = 178, .external_lex_state = 96}, + [6957] = {.lex_state = 169, .external_lex_state = 74}, + [6958] = {.lex_state = 169, .external_lex_state = 74}, + [6959] = {.lex_state = 48, .external_lex_state = 70}, [6960] = {.lex_state = 48, .external_lex_state = 70}, - [6961] = {.lex_state = 169, .external_lex_state = 70}, + [6961] = {.lex_state = 48, .external_lex_state = 70}, [6962] = {.lex_state = 48, .external_lex_state = 70}, [6963] = {.lex_state = 48, .external_lex_state = 70}, - [6964] = {.lex_state = 169, .external_lex_state = 74}, - [6965] = {.lex_state = 33, .external_lex_state = 98}, - [6966] = {.lex_state = 48, .external_lex_state = 70}, + [6964] = {.lex_state = 169, .external_lex_state = 70}, + [6965] = {.lex_state = 48, .external_lex_state = 70}, + [6966] = {.lex_state = 169, .external_lex_state = 74}, [6967] = {.lex_state = 48, .external_lex_state = 70}, [6968] = {.lex_state = 48, .external_lex_state = 70}, - [6969] = {.lex_state = 33, .external_lex_state = 98}, + [6969] = {.lex_state = 178, .external_lex_state = 96}, [6970] = {.lex_state = 48, .external_lex_state = 70}, [6971] = {.lex_state = 48, .external_lex_state = 70}, - [6972] = {.lex_state = 48, .external_lex_state = 70}, + [6972] = {.lex_state = 169, .external_lex_state = 70}, [6973] = {.lex_state = 48, .external_lex_state = 70}, - [6974] = {.lex_state = 169, .external_lex_state = 74}, + [6974] = {.lex_state = 169, .external_lex_state = 70}, [6975] = {.lex_state = 48, .external_lex_state = 70}, - [6976] = {.lex_state = 169, .external_lex_state = 74}, - [6977] = {.lex_state = 169, .external_lex_state = 74}, - [6978] = {.lex_state = 169, .external_lex_state = 74}, - [6979] = {.lex_state = 169, .external_lex_state = 74}, - [6980] = {.lex_state = 169, .external_lex_state = 74}, + [6976] = {.lex_state = 169, .external_lex_state = 70}, + [6977] = {.lex_state = 169, .external_lex_state = 70}, + [6978] = {.lex_state = 48, .external_lex_state = 70}, + [6979] = {.lex_state = 48, .external_lex_state = 70}, + [6980] = {.lex_state = 169, .external_lex_state = 70}, [6981] = {.lex_state = 48, .external_lex_state = 70}, - [6982] = {.lex_state = 169, .external_lex_state = 74}, - [6983] = {.lex_state = 169, .external_lex_state = 74}, + [6982] = {.lex_state = 169, .external_lex_state = 70}, + [6983] = {.lex_state = 48, .external_lex_state = 70}, [6984] = {.lex_state = 169, .external_lex_state = 74}, - [6985] = {.lex_state = 169, .external_lex_state = 74}, - [6986] = {.lex_state = 169, .external_lex_state = 74}, - [6987] = {.lex_state = 48, .external_lex_state = 70}, - [6988] = {.lex_state = 169, .external_lex_state = 74}, - [6989] = {.lex_state = 169, .external_lex_state = 74}, - [6990] = {.lex_state = 169, .external_lex_state = 74}, + [6985] = {.lex_state = 169, .external_lex_state = 70}, + [6986] = {.lex_state = 48, .external_lex_state = 70}, + [6987] = {.lex_state = 169, .external_lex_state = 74}, + [6988] = {.lex_state = 48, .external_lex_state = 70}, + [6989] = {.lex_state = 48, .external_lex_state = 70}, + [6990] = {.lex_state = 169, .external_lex_state = 70}, [6991] = {.lex_state = 169, .external_lex_state = 74}, - [6992] = {.lex_state = 169, .external_lex_state = 74}, + [6992] = {.lex_state = 169, .external_lex_state = 70}, [6993] = {.lex_state = 169, .external_lex_state = 74}, - [6994] = {.lex_state = 169, .external_lex_state = 74}, - [6995] = {.lex_state = 169, .external_lex_state = 74}, + [6994] = {.lex_state = 169, .external_lex_state = 70}, + [6995] = {.lex_state = 48, .external_lex_state = 70}, [6996] = {.lex_state = 169, .external_lex_state = 74}, - [6997] = {.lex_state = 169, .external_lex_state = 74}, - [6998] = {.lex_state = 48, .external_lex_state = 70}, - [6999] = {.lex_state = 169, .external_lex_state = 70}, - [7000] = {.lex_state = 169, .external_lex_state = 70}, + [6997] = {.lex_state = 48, .external_lex_state = 70}, + [6998] = {.lex_state = 169, .external_lex_state = 70}, + [6999] = {.lex_state = 169, .external_lex_state = 74}, + [7000] = {.lex_state = 48, .external_lex_state = 70}, [7001] = {.lex_state = 48, .external_lex_state = 70}, [7002] = {.lex_state = 169, .external_lex_state = 74}, - [7003] = {.lex_state = 169, .external_lex_state = 74}, - [7004] = {.lex_state = 48, .external_lex_state = 70}, + [7003] = {.lex_state = 169, .external_lex_state = 70}, + [7004] = {.lex_state = 169, .external_lex_state = 70}, [7005] = {.lex_state = 169, .external_lex_state = 74}, - [7006] = {.lex_state = 48, .external_lex_state = 70}, + [7006] = {.lex_state = 169, .external_lex_state = 74}, [7007] = {.lex_state = 169, .external_lex_state = 74}, [7008] = {.lex_state = 169, .external_lex_state = 74}, - [7009] = {.lex_state = 48, .external_lex_state = 70}, - [7010] = {.lex_state = 169, .external_lex_state = 74}, - [7011] = {.lex_state = 169, .external_lex_state = 74}, - [7012] = {.lex_state = 169, .external_lex_state = 74}, + [7009] = {.lex_state = 169, .external_lex_state = 74}, + [7010] = {.lex_state = 178, .external_lex_state = 96}, + [7011] = {.lex_state = 169, .external_lex_state = 70}, + [7012] = {.lex_state = 169, .external_lex_state = 70}, [7013] = {.lex_state = 169, .external_lex_state = 74}, - [7014] = {.lex_state = 33, .external_lex_state = 98}, - [7015] = {.lex_state = 169, .external_lex_state = 74}, + [7014] = {.lex_state = 169, .external_lex_state = 74}, + [7015] = {.lex_state = 169, .external_lex_state = 70}, [7016] = {.lex_state = 169, .external_lex_state = 74}, - [7017] = {.lex_state = 33, .external_lex_state = 98}, - [7018] = {.lex_state = 169, .external_lex_state = 70}, - [7019] = {.lex_state = 178, .external_lex_state = 99}, - [7020] = {.lex_state = 186, .external_lex_state = 104}, - [7021] = {.lex_state = 186, .external_lex_state = 104}, - [7022] = {.lex_state = 186, .external_lex_state = 104}, - [7023] = {.lex_state = 186, .external_lex_state = 104}, - [7024] = {.lex_state = 178, .external_lex_state = 99}, - [7025] = {.lex_state = 186, .external_lex_state = 104}, - [7026] = {.lex_state = 178, .external_lex_state = 105}, - [7027] = {.lex_state = 186, .external_lex_state = 104}, - [7028] = {.lex_state = 186, .external_lex_state = 106}, - [7029] = {.lex_state = 186, .external_lex_state = 105}, - [7030] = {.lex_state = 186, .external_lex_state = 106}, - [7031] = {.lex_state = 70, .external_lex_state = 104}, - [7032] = {.lex_state = 186, .external_lex_state = 106}, - [7033] = {.lex_state = 70, .external_lex_state = 104}, - [7034] = {.lex_state = 70, .external_lex_state = 104}, - [7035] = {.lex_state = 186, .external_lex_state = 105}, - [7036] = {.lex_state = 186, .external_lex_state = 105}, - [7037] = {.lex_state = 70, .external_lex_state = 104}, - [7038] = {.lex_state = 70, .external_lex_state = 104}, - [7039] = {.lex_state = 70, .external_lex_state = 104}, - [7040] = {.lex_state = 186, .external_lex_state = 105}, - [7041] = {.lex_state = 186, .external_lex_state = 105}, - [7042] = {.lex_state = 186, .external_lex_state = 106}, - [7043] = {.lex_state = 186, .external_lex_state = 105}, - [7044] = {.lex_state = 186, .external_lex_state = 106}, - [7045] = {.lex_state = 186, .external_lex_state = 106}, - [7046] = {.lex_state = 178, .external_lex_state = 104}, - [7047] = {.lex_state = 178, .external_lex_state = 104}, - [7048] = {.lex_state = 178, .external_lex_state = 104}, - [7049] = {.lex_state = 178, .external_lex_state = 104}, - [7050] = {.lex_state = 178, .external_lex_state = 104}, - [7051] = {.lex_state = 178, .external_lex_state = 104}, - [7052] = {.lex_state = 178, .external_lex_state = 104}, - [7053] = {.lex_state = 178, .external_lex_state = 104}, - [7054] = {.lex_state = 178, .external_lex_state = 104}, - [7055] = {.lex_state = 178, .external_lex_state = 104}, - [7056] = {.lex_state = 178, .external_lex_state = 104}, - [7057] = {.lex_state = 178, .external_lex_state = 104}, - [7058] = {.lex_state = 178, .external_lex_state = 104}, - [7059] = {.lex_state = 178, .external_lex_state = 104}, - [7060] = {.lex_state = 178, .external_lex_state = 104}, - [7061] = {.lex_state = 178, .external_lex_state = 104}, - [7062] = {.lex_state = 178, .external_lex_state = 104}, - [7063] = {.lex_state = 178, .external_lex_state = 104}, - [7064] = {.lex_state = 178, .external_lex_state = 104}, - [7065] = {.lex_state = 178, .external_lex_state = 104}, - [7066] = {.lex_state = 178, .external_lex_state = 104}, - [7067] = {.lex_state = 178, .external_lex_state = 104}, - [7068] = {.lex_state = 178, .external_lex_state = 104}, - [7069] = {.lex_state = 178, .external_lex_state = 104}, - [7070] = {.lex_state = 178, .external_lex_state = 104}, - [7071] = {.lex_state = 178, .external_lex_state = 104}, - [7072] = {.lex_state = 178, .external_lex_state = 104}, - [7073] = {.lex_state = 178, .external_lex_state = 104}, - [7074] = {.lex_state = 178, .external_lex_state = 104}, - [7075] = {.lex_state = 178, .external_lex_state = 104}, - [7076] = {.lex_state = 178, .external_lex_state = 104}, - [7077] = {.lex_state = 178, .external_lex_state = 104}, - [7078] = {.lex_state = 178, .external_lex_state = 104}, - [7079] = {.lex_state = 178, .external_lex_state = 104}, - [7080] = {.lex_state = 178, .external_lex_state = 104}, - [7081] = {.lex_state = 178, .external_lex_state = 104}, - [7082] = {.lex_state = 178, .external_lex_state = 104}, - [7083] = {.lex_state = 178, .external_lex_state = 104}, - [7084] = {.lex_state = 178, .external_lex_state = 104}, - [7085] = {.lex_state = 178, .external_lex_state = 104}, - [7086] = {.lex_state = 178, .external_lex_state = 104}, - [7087] = {.lex_state = 178, .external_lex_state = 104}, + [7017] = {.lex_state = 169, .external_lex_state = 70}, + [7018] = {.lex_state = 48, .external_lex_state = 70}, + [7019] = {.lex_state = 48, .external_lex_state = 70}, + [7020] = {.lex_state = 169, .external_lex_state = 74}, + [7021] = {.lex_state = 169, .external_lex_state = 74}, + [7022] = {.lex_state = 169, .external_lex_state = 74}, + [7023] = {.lex_state = 48, .external_lex_state = 70}, + [7024] = {.lex_state = 169, .external_lex_state = 74}, + [7025] = {.lex_state = 33, .external_lex_state = 99}, + [7026] = {.lex_state = 169, .external_lex_state = 74}, + [7027] = {.lex_state = 169, .external_lex_state = 74}, + [7028] = {.lex_state = 48, .external_lex_state = 70}, + [7029] = {.lex_state = 169, .external_lex_state = 74}, + [7030] = {.lex_state = 169, .external_lex_state = 74}, + [7031] = {.lex_state = 48, .external_lex_state = 70}, + [7032] = {.lex_state = 169, .external_lex_state = 74}, + [7033] = {.lex_state = 169, .external_lex_state = 74}, + [7034] = {.lex_state = 33, .external_lex_state = 99}, + [7035] = {.lex_state = 33, .external_lex_state = 99}, + [7036] = {.lex_state = 169, .external_lex_state = 70}, + [7037] = {.lex_state = 169, .external_lex_state = 70}, + [7038] = {.lex_state = 48, .external_lex_state = 70}, + [7039] = {.lex_state = 169, .external_lex_state = 74}, + [7040] = {.lex_state = 169, .external_lex_state = 74}, + [7041] = {.lex_state = 169, .external_lex_state = 74}, + [7042] = {.lex_state = 169, .external_lex_state = 70}, + [7043] = {.lex_state = 33, .external_lex_state = 99}, + [7044] = {.lex_state = 48, .external_lex_state = 70}, + [7045] = {.lex_state = 48, .external_lex_state = 70}, + [7046] = {.lex_state = 48, .external_lex_state = 70}, + [7047] = {.lex_state = 48, .external_lex_state = 70}, + [7048] = {.lex_state = 169, .external_lex_state = 70}, + [7049] = {.lex_state = 48, .external_lex_state = 70}, + [7050] = {.lex_state = 48, .external_lex_state = 70}, + [7051] = {.lex_state = 48, .external_lex_state = 70}, + [7052] = {.lex_state = 169, .external_lex_state = 74}, + [7053] = {.lex_state = 169, .external_lex_state = 74}, + [7054] = {.lex_state = 48, .external_lex_state = 70}, + [7055] = {.lex_state = 48, .external_lex_state = 70}, + [7056] = {.lex_state = 48, .external_lex_state = 70}, + [7057] = {.lex_state = 169, .external_lex_state = 74}, + [7058] = {.lex_state = 48, .external_lex_state = 70}, + [7059] = {.lex_state = 48, .external_lex_state = 70}, + [7060] = {.lex_state = 169, .external_lex_state = 70}, + [7061] = {.lex_state = 186, .external_lex_state = 104}, + [7062] = {.lex_state = 178, .external_lex_state = 101}, + [7063] = {.lex_state = 186, .external_lex_state = 104}, + [7064] = {.lex_state = 186, .external_lex_state = 104}, + [7065] = {.lex_state = 186, .external_lex_state = 104}, + [7066] = {.lex_state = 186, .external_lex_state = 104}, + [7067] = {.lex_state = 178, .external_lex_state = 101}, + [7068] = {.lex_state = 178, .external_lex_state = 105}, + [7069] = {.lex_state = 186, .external_lex_state = 104}, + [7070] = {.lex_state = 70, .external_lex_state = 104}, + [7071] = {.lex_state = 186, .external_lex_state = 105}, + [7072] = {.lex_state = 186, .external_lex_state = 106}, + [7073] = {.lex_state = 70, .external_lex_state = 104}, + [7074] = {.lex_state = 70, .external_lex_state = 104}, + [7075] = {.lex_state = 70, .external_lex_state = 104}, + [7076] = {.lex_state = 70, .external_lex_state = 104}, + [7077] = {.lex_state = 186, .external_lex_state = 105}, + [7078] = {.lex_state = 186, .external_lex_state = 105}, + [7079] = {.lex_state = 186, .external_lex_state = 106}, + [7080] = {.lex_state = 186, .external_lex_state = 106}, + [7081] = {.lex_state = 70, .external_lex_state = 104}, + [7082] = {.lex_state = 186, .external_lex_state = 106}, + [7083] = {.lex_state = 186, .external_lex_state = 106}, + [7084] = {.lex_state = 186, .external_lex_state = 106}, + [7085] = {.lex_state = 186, .external_lex_state = 105}, + [7086] = {.lex_state = 186, .external_lex_state = 105}, + [7087] = {.lex_state = 186, .external_lex_state = 105}, [7088] = {.lex_state = 178, .external_lex_state = 104}, [7089] = {.lex_state = 178, .external_lex_state = 104}, [7090] = {.lex_state = 178, .external_lex_state = 104}, @@ -27876,7 +27998,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7553] = {.lex_state = 178, .external_lex_state = 104}, [7554] = {.lex_state = 178, .external_lex_state = 104}, [7555] = {.lex_state = 178, .external_lex_state = 104}, - [7556] = {.lex_state = 52, .external_lex_state = 104}, + [7556] = {.lex_state = 178, .external_lex_state = 104}, [7557] = {.lex_state = 178, .external_lex_state = 104}, [7558] = {.lex_state = 178, .external_lex_state = 104}, [7559] = {.lex_state = 178, .external_lex_state = 104}, @@ -27899,7 +28021,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7576] = {.lex_state = 178, .external_lex_state = 104}, [7577] = {.lex_state = 178, .external_lex_state = 104}, [7578] = {.lex_state = 178, .external_lex_state = 104}, - [7579] = {.lex_state = 52, .external_lex_state = 104}, + [7579] = {.lex_state = 178, .external_lex_state = 104}, [7580] = {.lex_state = 178, .external_lex_state = 104}, [7581] = {.lex_state = 178, .external_lex_state = 104}, [7582] = {.lex_state = 178, .external_lex_state = 104}, @@ -27912,7 +28034,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7589] = {.lex_state = 178, .external_lex_state = 104}, [7590] = {.lex_state = 178, .external_lex_state = 104}, [7591] = {.lex_state = 178, .external_lex_state = 104}, - [7592] = {.lex_state = 178, .external_lex_state = 104}, + [7592] = {.lex_state = 52, .external_lex_state = 104}, [7593] = {.lex_state = 178, .external_lex_state = 104}, [7594] = {.lex_state = 178, .external_lex_state = 104}, [7595] = {.lex_state = 178, .external_lex_state = 104}, @@ -27925,7 +28047,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7602] = {.lex_state = 178, .external_lex_state = 104}, [7603] = {.lex_state = 178, .external_lex_state = 104}, [7604] = {.lex_state = 178, .external_lex_state = 104}, - [7605] = {.lex_state = 70, .external_lex_state = 104}, + [7605] = {.lex_state = 178, .external_lex_state = 104}, [7606] = {.lex_state = 178, .external_lex_state = 104}, [7607] = {.lex_state = 178, .external_lex_state = 104}, [7608] = {.lex_state = 178, .external_lex_state = 104}, @@ -27933,7 +28055,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7610] = {.lex_state = 178, .external_lex_state = 104}, [7611] = {.lex_state = 178, .external_lex_state = 104}, [7612] = {.lex_state = 178, .external_lex_state = 104}, - [7613] = {.lex_state = 70, .external_lex_state = 104}, + [7613] = {.lex_state = 178, .external_lex_state = 104}, [7614] = {.lex_state = 178, .external_lex_state = 104}, [7615] = {.lex_state = 178, .external_lex_state = 104}, [7616] = {.lex_state = 178, .external_lex_state = 104}, @@ -27947,17 +28069,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7624] = {.lex_state = 178, .external_lex_state = 104}, [7625] = {.lex_state = 178, .external_lex_state = 104}, [7626] = {.lex_state = 178, .external_lex_state = 104}, - [7627] = {.lex_state = 185, .external_lex_state = 107}, - [7628] = {.lex_state = 178, .external_lex_state = 106}, - [7629] = {.lex_state = 178, .external_lex_state = 106}, - [7630] = {.lex_state = 178, .external_lex_state = 105}, - [7631] = {.lex_state = 185, .external_lex_state = 107}, - [7632] = {.lex_state = 185, .external_lex_state = 107}, - [7633] = {.lex_state = 185, .external_lex_state = 107}, - [7634] = {.lex_state = 185, .external_lex_state = 107}, - [7635] = {.lex_state = 178, .external_lex_state = 105}, - [7636] = {.lex_state = 185, .external_lex_state = 107}, - [7637] = {.lex_state = 186, .external_lex_state = 107}, + [7627] = {.lex_state = 178, .external_lex_state = 104}, + [7628] = {.lex_state = 52, .external_lex_state = 104}, + [7629] = {.lex_state = 178, .external_lex_state = 104}, + [7630] = {.lex_state = 178, .external_lex_state = 104}, + [7631] = {.lex_state = 178, .external_lex_state = 104}, + [7632] = {.lex_state = 178, .external_lex_state = 104}, + [7633] = {.lex_state = 178, .external_lex_state = 104}, + [7634] = {.lex_state = 178, .external_lex_state = 104}, + [7635] = {.lex_state = 178, .external_lex_state = 104}, + [7636] = {.lex_state = 178, .external_lex_state = 104}, + [7637] = {.lex_state = 178, .external_lex_state = 104}, [7638] = {.lex_state = 178, .external_lex_state = 104}, [7639] = {.lex_state = 178, .external_lex_state = 104}, [7640] = {.lex_state = 178, .external_lex_state = 104}, @@ -27971,61 +28093,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7648] = {.lex_state = 178, .external_lex_state = 104}, [7649] = {.lex_state = 178, .external_lex_state = 104}, [7650] = {.lex_state = 178, .external_lex_state = 104}, - [7651] = {.lex_state = 178, .external_lex_state = 104}, + [7651] = {.lex_state = 70, .external_lex_state = 104}, [7652] = {.lex_state = 178, .external_lex_state = 104}, - [7653] = {.lex_state = 186, .external_lex_state = 107}, + [7653] = {.lex_state = 178, .external_lex_state = 104}, [7654] = {.lex_state = 178, .external_lex_state = 104}, [7655] = {.lex_state = 178, .external_lex_state = 104}, [7656] = {.lex_state = 178, .external_lex_state = 104}, [7657] = {.lex_state = 178, .external_lex_state = 104}, [7658] = {.lex_state = 178, .external_lex_state = 104}, - [7659] = {.lex_state = 186, .external_lex_state = 107}, + [7659] = {.lex_state = 70, .external_lex_state = 104}, [7660] = {.lex_state = 178, .external_lex_state = 104}, [7661] = {.lex_state = 178, .external_lex_state = 104}, - [7662] = {.lex_state = 185, .external_lex_state = 107}, + [7662] = {.lex_state = 178, .external_lex_state = 104}, [7663] = {.lex_state = 178, .external_lex_state = 104}, [7664] = {.lex_state = 178, .external_lex_state = 104}, [7665] = {.lex_state = 178, .external_lex_state = 104}, [7666] = {.lex_state = 178, .external_lex_state = 104}, [7667] = {.lex_state = 178, .external_lex_state = 104}, [7668] = {.lex_state = 178, .external_lex_state = 104}, - [7669] = {.lex_state = 178, .external_lex_state = 104}, - [7670] = {.lex_state = 178, .external_lex_state = 104}, - [7671] = {.lex_state = 178, .external_lex_state = 104}, - [7672] = {.lex_state = 178, .external_lex_state = 104}, - [7673] = {.lex_state = 178, .external_lex_state = 104}, - [7674] = {.lex_state = 178, .external_lex_state = 104}, - [7675] = {.lex_state = 178, .external_lex_state = 104}, - [7676] = {.lex_state = 178, .external_lex_state = 104}, - [7677] = {.lex_state = 178, .external_lex_state = 104}, - [7678] = {.lex_state = 178, .external_lex_state = 104}, + [7669] = {.lex_state = 185, .external_lex_state = 107}, + [7670] = {.lex_state = 178, .external_lex_state = 105}, + [7671] = {.lex_state = 178, .external_lex_state = 106}, + [7672] = {.lex_state = 178, .external_lex_state = 105}, + [7673] = {.lex_state = 178, .external_lex_state = 106}, + [7674] = {.lex_state = 185, .external_lex_state = 107}, + [7675] = {.lex_state = 185, .external_lex_state = 107}, + [7676] = {.lex_state = 185, .external_lex_state = 107}, + [7677] = {.lex_state = 185, .external_lex_state = 107}, + [7678] = {.lex_state = 185, .external_lex_state = 107}, [7679] = {.lex_state = 178, .external_lex_state = 104}, [7680] = {.lex_state = 178, .external_lex_state = 104}, - [7681] = {.lex_state = 178, .external_lex_state = 104}, - [7682] = {.lex_state = 178, .external_lex_state = 104}, + [7681] = {.lex_state = 186, .external_lex_state = 107}, + [7682] = {.lex_state = 186, .external_lex_state = 107}, [7683] = {.lex_state = 178, .external_lex_state = 104}, [7684] = {.lex_state = 178, .external_lex_state = 104}, [7685] = {.lex_state = 178, .external_lex_state = 104}, [7686] = {.lex_state = 178, .external_lex_state = 104}, - [7687] = {.lex_state = 186, .external_lex_state = 107}, + [7687] = {.lex_state = 178, .external_lex_state = 104}, [7688] = {.lex_state = 178, .external_lex_state = 104}, [7689] = {.lex_state = 178, .external_lex_state = 104}, [7690] = {.lex_state = 178, .external_lex_state = 104}, [7691] = {.lex_state = 178, .external_lex_state = 104}, - [7692] = {.lex_state = 178, .external_lex_state = 104}, + [7692] = {.lex_state = 185, .external_lex_state = 107}, [7693] = {.lex_state = 178, .external_lex_state = 104}, [7694] = {.lex_state = 178, .external_lex_state = 104}, [7695] = {.lex_state = 178, .external_lex_state = 104}, [7696] = {.lex_state = 178, .external_lex_state = 104}, [7697] = {.lex_state = 178, .external_lex_state = 104}, - [7698] = {.lex_state = 186, .external_lex_state = 107}, - [7699] = {.lex_state = 178, .external_lex_state = 104}, - [7700] = {.lex_state = 178, .external_lex_state = 104}, + [7698] = {.lex_state = 178, .external_lex_state = 104}, + [7699] = {.lex_state = 186, .external_lex_state = 107}, + [7700] = {.lex_state = 186, .external_lex_state = 107}, [7701] = {.lex_state = 178, .external_lex_state = 104}, [7702] = {.lex_state = 178, .external_lex_state = 104}, [7703] = {.lex_state = 178, .external_lex_state = 104}, [7704] = {.lex_state = 178, .external_lex_state = 104}, - [7705] = {.lex_state = 186, .external_lex_state = 107}, + [7705] = {.lex_state = 178, .external_lex_state = 104}, [7706] = {.lex_state = 178, .external_lex_state = 104}, [7707] = {.lex_state = 178, .external_lex_state = 104}, [7708] = {.lex_state = 178, .external_lex_state = 104}, @@ -28033,289 +28155,289 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7710] = {.lex_state = 178, .external_lex_state = 104}, [7711] = {.lex_state = 178, .external_lex_state = 104}, [7712] = {.lex_state = 178, .external_lex_state = 104}, - [7713] = {.lex_state = 186, .external_lex_state = 107}, + [7713] = {.lex_state = 178, .external_lex_state = 104}, [7714] = {.lex_state = 178, .external_lex_state = 104}, [7715] = {.lex_state = 178, .external_lex_state = 104}, [7716] = {.lex_state = 178, .external_lex_state = 104}, - [7717] = {.lex_state = 186, .external_lex_state = 107}, + [7717] = {.lex_state = 178, .external_lex_state = 104}, [7718] = {.lex_state = 178, .external_lex_state = 104}, [7719] = {.lex_state = 178, .external_lex_state = 104}, - [7720] = {.lex_state = 186, .external_lex_state = 107}, - [7721] = {.lex_state = 186, .external_lex_state = 107}, - [7722] = {.lex_state = 186, .external_lex_state = 107}, + [7720] = {.lex_state = 178, .external_lex_state = 104}, + [7721] = {.lex_state = 178, .external_lex_state = 104}, + [7722] = {.lex_state = 178, .external_lex_state = 104}, [7723] = {.lex_state = 186, .external_lex_state = 107}, - [7724] = {.lex_state = 186, .external_lex_state = 107}, - [7725] = {.lex_state = 186, .external_lex_state = 107}, - [7726] = {.lex_state = 186, .external_lex_state = 107}, - [7727] = {.lex_state = 186, .external_lex_state = 107}, - [7728] = {.lex_state = 186, .external_lex_state = 107}, - [7729] = {.lex_state = 186, .external_lex_state = 107}, - [7730] = {.lex_state = 186, .external_lex_state = 107}, - [7731] = {.lex_state = 186, .external_lex_state = 107}, - [7732] = {.lex_state = 186, .external_lex_state = 107}, - [7733] = {.lex_state = 186, .external_lex_state = 107}, - [7734] = {.lex_state = 186, .external_lex_state = 107}, + [7724] = {.lex_state = 178, .external_lex_state = 104}, + [7725] = {.lex_state = 178, .external_lex_state = 104}, + [7726] = {.lex_state = 178, .external_lex_state = 104}, + [7727] = {.lex_state = 178, .external_lex_state = 104}, + [7728] = {.lex_state = 178, .external_lex_state = 104}, + [7729] = {.lex_state = 178, .external_lex_state = 104}, + [7730] = {.lex_state = 178, .external_lex_state = 104}, + [7731] = {.lex_state = 178, .external_lex_state = 104}, + [7732] = {.lex_state = 178, .external_lex_state = 104}, + [7733] = {.lex_state = 178, .external_lex_state = 104}, + [7734] = {.lex_state = 178, .external_lex_state = 104}, [7735] = {.lex_state = 186, .external_lex_state = 107}, - [7736] = {.lex_state = 186, .external_lex_state = 107}, - [7737] = {.lex_state = 185, .external_lex_state = 108}, + [7736] = {.lex_state = 178, .external_lex_state = 104}, + [7737] = {.lex_state = 178, .external_lex_state = 104}, [7738] = {.lex_state = 186, .external_lex_state = 107}, - [7739] = {.lex_state = 186, .external_lex_state = 107}, - [7740] = {.lex_state = 186, .external_lex_state = 107}, - [7741] = {.lex_state = 185, .external_lex_state = 108}, - [7742] = {.lex_state = 185, .external_lex_state = 108}, - [7743] = {.lex_state = 186, .external_lex_state = 107}, - [7744] = {.lex_state = 186, .external_lex_state = 107}, - [7745] = {.lex_state = 186, .external_lex_state = 107}, - [7746] = {.lex_state = 186, .external_lex_state = 107}, - [7747] = {.lex_state = 186, .external_lex_state = 107}, - [7748] = {.lex_state = 185, .external_lex_state = 108}, - [7749] = {.lex_state = 185, .external_lex_state = 108}, - [7750] = {.lex_state = 185, .external_lex_state = 108}, - [7751] = {.lex_state = 38, .external_lex_state = 98}, - [7752] = {.lex_state = 185, .external_lex_state = 109}, - [7753] = {.lex_state = 186, .external_lex_state = 108}, - [7754] = {.lex_state = 186, .external_lex_state = 108}, - [7755] = {.lex_state = 38, .external_lex_state = 98}, - [7756] = {.lex_state = 186, .external_lex_state = 108}, - [7757] = {.lex_state = 181, .external_lex_state = 107}, - [7758] = {.lex_state = 38, .external_lex_state = 98}, - [7759] = {.lex_state = 185, .external_lex_state = 109}, - [7760] = {.lex_state = 185, .external_lex_state = 109}, - [7761] = {.lex_state = 181, .external_lex_state = 107}, - [7762] = {.lex_state = 185, .external_lex_state = 109}, - [7763] = {.lex_state = 38, .external_lex_state = 98}, - [7764] = {.lex_state = 38, .external_lex_state = 98}, - [7765] = {.lex_state = 186, .external_lex_state = 108}, - [7766] = {.lex_state = 38, .external_lex_state = 98}, - [7767] = {.lex_state = 186, .external_lex_state = 108}, - [7768] = {.lex_state = 186, .external_lex_state = 108}, - [7769] = {.lex_state = 186, .external_lex_state = 108}, - [7770] = {.lex_state = 186, .external_lex_state = 108}, - [7771] = {.lex_state = 38, .external_lex_state = 98}, - [7772] = {.lex_state = 38, .external_lex_state = 98}, - [7773] = {.lex_state = 38, .external_lex_state = 98}, - [7774] = {.lex_state = 185, .external_lex_state = 109}, - [7775] = {.lex_state = 185, .external_lex_state = 108}, - [7776] = {.lex_state = 38, .external_lex_state = 98}, - [7777] = {.lex_state = 38, .external_lex_state = 98}, - [7778] = {.lex_state = 38, .external_lex_state = 98}, - [7779] = {.lex_state = 186, .external_lex_state = 108}, - [7780] = {.lex_state = 38, .external_lex_state = 98}, - [7781] = {.lex_state = 38, .external_lex_state = 98}, - [7782] = {.lex_state = 38, .external_lex_state = 98}, - [7783] = {.lex_state = 186, .external_lex_state = 108}, - [7784] = {.lex_state = 186, .external_lex_state = 108}, - [7785] = {.lex_state = 38, .external_lex_state = 98}, - [7786] = {.lex_state = 181, .external_lex_state = 107}, - [7787] = {.lex_state = 186, .external_lex_state = 108}, - [7788] = {.lex_state = 186, .external_lex_state = 108}, - [7789] = {.lex_state = 186, .external_lex_state = 108}, - [7790] = {.lex_state = 186, .external_lex_state = 108}, - [7791] = {.lex_state = 186, .external_lex_state = 108}, - [7792] = {.lex_state = 178, .external_lex_state = 107}, - [7793] = {.lex_state = 186, .external_lex_state = 108}, - [7794] = {.lex_state = 186, .external_lex_state = 108}, - [7795] = {.lex_state = 186, .external_lex_state = 108}, + [7739] = {.lex_state = 178, .external_lex_state = 104}, + [7740] = {.lex_state = 178, .external_lex_state = 104}, + [7741] = {.lex_state = 186, .external_lex_state = 107}, + [7742] = {.lex_state = 178, .external_lex_state = 104}, + [7743] = {.lex_state = 178, .external_lex_state = 104}, + [7744] = {.lex_state = 178, .external_lex_state = 104}, + [7745] = {.lex_state = 178, .external_lex_state = 104}, + [7746] = {.lex_state = 178, .external_lex_state = 104}, + [7747] = {.lex_state = 178, .external_lex_state = 104}, + [7748] = {.lex_state = 178, .external_lex_state = 104}, + [7749] = {.lex_state = 178, .external_lex_state = 104}, + [7750] = {.lex_state = 178, .external_lex_state = 104}, + [7751] = {.lex_state = 178, .external_lex_state = 104}, + [7752] = {.lex_state = 178, .external_lex_state = 104}, + [7753] = {.lex_state = 178, .external_lex_state = 104}, + [7754] = {.lex_state = 178, .external_lex_state = 104}, + [7755] = {.lex_state = 178, .external_lex_state = 104}, + [7756] = {.lex_state = 178, .external_lex_state = 104}, + [7757] = {.lex_state = 178, .external_lex_state = 104}, + [7758] = {.lex_state = 178, .external_lex_state = 104}, + [7759] = {.lex_state = 178, .external_lex_state = 104}, + [7760] = {.lex_state = 178, .external_lex_state = 104}, + [7761] = {.lex_state = 178, .external_lex_state = 104}, + [7762] = {.lex_state = 186, .external_lex_state = 107}, + [7763] = {.lex_state = 186, .external_lex_state = 107}, + [7764] = {.lex_state = 186, .external_lex_state = 107}, + [7765] = {.lex_state = 186, .external_lex_state = 107}, + [7766] = {.lex_state = 186, .external_lex_state = 107}, + [7767] = {.lex_state = 186, .external_lex_state = 107}, + [7768] = {.lex_state = 186, .external_lex_state = 107}, + [7769] = {.lex_state = 186, .external_lex_state = 107}, + [7770] = {.lex_state = 186, .external_lex_state = 107}, + [7771] = {.lex_state = 186, .external_lex_state = 107}, + [7772] = {.lex_state = 186, .external_lex_state = 107}, + [7773] = {.lex_state = 186, .external_lex_state = 107}, + [7774] = {.lex_state = 186, .external_lex_state = 107}, + [7775] = {.lex_state = 186, .external_lex_state = 107}, + [7776] = {.lex_state = 186, .external_lex_state = 107}, + [7777] = {.lex_state = 186, .external_lex_state = 107}, + [7778] = {.lex_state = 186, .external_lex_state = 107}, + [7779] = {.lex_state = 186, .external_lex_state = 107}, + [7780] = {.lex_state = 185, .external_lex_state = 108}, + [7781] = {.lex_state = 186, .external_lex_state = 107}, + [7782] = {.lex_state = 185, .external_lex_state = 108}, + [7783] = {.lex_state = 185, .external_lex_state = 108}, + [7784] = {.lex_state = 185, .external_lex_state = 108}, + [7785] = {.lex_state = 186, .external_lex_state = 107}, + [7786] = {.lex_state = 186, .external_lex_state = 107}, + [7787] = {.lex_state = 186, .external_lex_state = 107}, + [7788] = {.lex_state = 186, .external_lex_state = 107}, + [7789] = {.lex_state = 185, .external_lex_state = 108}, + [7790] = {.lex_state = 186, .external_lex_state = 107}, + [7791] = {.lex_state = 186, .external_lex_state = 107}, + [7792] = {.lex_state = 185, .external_lex_state = 108}, + [7793] = {.lex_state = 38, .external_lex_state = 99}, + [7794] = {.lex_state = 185, .external_lex_state = 109}, + [7795] = {.lex_state = 185, .external_lex_state = 109}, [7796] = {.lex_state = 186, .external_lex_state = 108}, - [7797] = {.lex_state = 186, .external_lex_state = 108}, - [7798] = {.lex_state = 38, .external_lex_state = 98}, - [7799] = {.lex_state = 185, .external_lex_state = 109}, - [7800] = {.lex_state = 38, .external_lex_state = 98}, - [7801] = {.lex_state = 186, .external_lex_state = 108}, - [7802] = {.lex_state = 38, .external_lex_state = 98}, - [7803] = {.lex_state = 186, .external_lex_state = 108}, - [7804] = {.lex_state = 38, .external_lex_state = 98}, - [7805] = {.lex_state = 38, .external_lex_state = 98}, - [7806] = {.lex_state = 38, .external_lex_state = 98}, - [7807] = {.lex_state = 38, .external_lex_state = 98}, - [7808] = {.lex_state = 38, .external_lex_state = 98}, - [7809] = {.lex_state = 38, .external_lex_state = 98}, - [7810] = {.lex_state = 38, .external_lex_state = 98}, - [7811] = {.lex_state = 38, .external_lex_state = 98}, - [7812] = {.lex_state = 38, .external_lex_state = 98}, - [7813] = {.lex_state = 38, .external_lex_state = 98}, + [7797] = {.lex_state = 181, .external_lex_state = 107}, + [7798] = {.lex_state = 38, .external_lex_state = 99}, + [7799] = {.lex_state = 38, .external_lex_state = 99}, + [7800] = {.lex_state = 185, .external_lex_state = 109}, + [7801] = {.lex_state = 185, .external_lex_state = 109}, + [7802] = {.lex_state = 186, .external_lex_state = 108}, + [7803] = {.lex_state = 185, .external_lex_state = 108}, + [7804] = {.lex_state = 186, .external_lex_state = 108}, + [7805] = {.lex_state = 186, .external_lex_state = 108}, + [7806] = {.lex_state = 181, .external_lex_state = 107}, + [7807] = {.lex_state = 186, .external_lex_state = 108}, + [7808] = {.lex_state = 38, .external_lex_state = 99}, + [7809] = {.lex_state = 186, .external_lex_state = 108}, + [7810] = {.lex_state = 185, .external_lex_state = 109}, + [7811] = {.lex_state = 38, .external_lex_state = 99}, + [7812] = {.lex_state = 38, .external_lex_state = 99}, + [7813] = {.lex_state = 186, .external_lex_state = 108}, [7814] = {.lex_state = 186, .external_lex_state = 108}, - [7815] = {.lex_state = 186, .external_lex_state = 108}, - [7816] = {.lex_state = 38, .external_lex_state = 98}, - [7817] = {.lex_state = 38, .external_lex_state = 98}, - [7818] = {.lex_state = 38, .external_lex_state = 98}, - [7819] = {.lex_state = 38, .external_lex_state = 98}, - [7820] = {.lex_state = 181, .external_lex_state = 107}, - [7821] = {.lex_state = 181, .external_lex_state = 107}, - [7822] = {.lex_state = 38, .external_lex_state = 98}, - [7823] = {.lex_state = 38, .external_lex_state = 98}, - [7824] = {.lex_state = 181, .external_lex_state = 107}, - [7825] = {.lex_state = 186, .external_lex_state = 108}, + [7815] = {.lex_state = 38, .external_lex_state = 99}, + [7816] = {.lex_state = 38, .external_lex_state = 99}, + [7817] = {.lex_state = 38, .external_lex_state = 99}, + [7818] = {.lex_state = 38, .external_lex_state = 99}, + [7819] = {.lex_state = 186, .external_lex_state = 108}, + [7820] = {.lex_state = 186, .external_lex_state = 108}, + [7821] = {.lex_state = 186, .external_lex_state = 108}, + [7822] = {.lex_state = 181, .external_lex_state = 107}, + [7823] = {.lex_state = 38, .external_lex_state = 99}, + [7824] = {.lex_state = 38, .external_lex_state = 99}, + [7825] = {.lex_state = 38, .external_lex_state = 99}, [7826] = {.lex_state = 186, .external_lex_state = 108}, - [7827] = {.lex_state = 186, .external_lex_state = 108}, + [7827] = {.lex_state = 178, .external_lex_state = 107}, [7828] = {.lex_state = 186, .external_lex_state = 108}, [7829] = {.lex_state = 186, .external_lex_state = 108}, - [7830] = {.lex_state = 186, .external_lex_state = 109}, - [7831] = {.lex_state = 178, .external_lex_state = 107}, - [7832] = {.lex_state = 178, .external_lex_state = 107}, - [7833] = {.lex_state = 178, .external_lex_state = 107}, - [7834] = {.lex_state = 186, .external_lex_state = 109}, - [7835] = {.lex_state = 186, .external_lex_state = 109}, - [7836] = {.lex_state = 185, .external_lex_state = 109}, - [7837] = {.lex_state = 186, .external_lex_state = 108}, - [7838] = {.lex_state = 186, .external_lex_state = 109}, - [7839] = {.lex_state = 186, .external_lex_state = 109}, - [7840] = {.lex_state = 181, .external_lex_state = 107}, - [7841] = {.lex_state = 186, .external_lex_state = 109}, - [7842] = {.lex_state = 186, .external_lex_state = 109}, + [7830] = {.lex_state = 38, .external_lex_state = 99}, + [7831] = {.lex_state = 38, .external_lex_state = 99}, + [7832] = {.lex_state = 38, .external_lex_state = 99}, + [7833] = {.lex_state = 186, .external_lex_state = 108}, + [7834] = {.lex_state = 186, .external_lex_state = 108}, + [7835] = {.lex_state = 38, .external_lex_state = 99}, + [7836] = {.lex_state = 38, .external_lex_state = 99}, + [7837] = {.lex_state = 38, .external_lex_state = 99}, + [7838] = {.lex_state = 181, .external_lex_state = 107}, + [7839] = {.lex_state = 181, .external_lex_state = 107}, + [7840] = {.lex_state = 38, .external_lex_state = 99}, + [7841] = {.lex_state = 185, .external_lex_state = 109}, + [7842] = {.lex_state = 38, .external_lex_state = 99}, [7843] = {.lex_state = 186, .external_lex_state = 108}, - [7844] = {.lex_state = 178, .external_lex_state = 107}, - [7845] = {.lex_state = 178, .external_lex_state = 107}, - [7846] = {.lex_state = 186, .external_lex_state = 108}, - [7847] = {.lex_state = 178, .external_lex_state = 107}, - [7848] = {.lex_state = 178, .external_lex_state = 107}, - [7849] = {.lex_state = 186, .external_lex_state = 109}, - [7850] = {.lex_state = 186, .external_lex_state = 109}, - [7851] = {.lex_state = 186, .external_lex_state = 109}, - [7852] = {.lex_state = 186, .external_lex_state = 109}, - [7853] = {.lex_state = 186, .external_lex_state = 109}, - [7854] = {.lex_state = 186, .external_lex_state = 109}, - [7855] = {.lex_state = 186, .external_lex_state = 109}, - [7856] = {.lex_state = 186, .external_lex_state = 109}, - [7857] = {.lex_state = 186, .external_lex_state = 109}, - [7858] = {.lex_state = 186, .external_lex_state = 109}, - [7859] = {.lex_state = 186, .external_lex_state = 109}, - [7860] = {.lex_state = 186, .external_lex_state = 109}, - [7861] = {.lex_state = 186, .external_lex_state = 109}, - [7862] = {.lex_state = 178, .external_lex_state = 107}, - [7863] = {.lex_state = 178, .external_lex_state = 107}, - [7864] = {.lex_state = 186, .external_lex_state = 109}, - [7865] = {.lex_state = 178, .external_lex_state = 107}, - [7866] = {.lex_state = 186, .external_lex_state = 109}, - [7867] = {.lex_state = 186, .external_lex_state = 109}, + [7844] = {.lex_state = 38, .external_lex_state = 99}, + [7845] = {.lex_state = 38, .external_lex_state = 99}, + [7846] = {.lex_state = 38, .external_lex_state = 99}, + [7847] = {.lex_state = 38, .external_lex_state = 99}, + [7848] = {.lex_state = 38, .external_lex_state = 99}, + [7849] = {.lex_state = 38, .external_lex_state = 99}, + [7850] = {.lex_state = 38, .external_lex_state = 99}, + [7851] = {.lex_state = 38, .external_lex_state = 99}, + [7852] = {.lex_state = 186, .external_lex_state = 108}, + [7853] = {.lex_state = 186, .external_lex_state = 108}, + [7854] = {.lex_state = 181, .external_lex_state = 107}, + [7855] = {.lex_state = 38, .external_lex_state = 99}, + [7856] = {.lex_state = 38, .external_lex_state = 99}, + [7857] = {.lex_state = 186, .external_lex_state = 108}, + [7858] = {.lex_state = 186, .external_lex_state = 108}, + [7859] = {.lex_state = 38, .external_lex_state = 99}, + [7860] = {.lex_state = 38, .external_lex_state = 99}, + [7861] = {.lex_state = 186, .external_lex_state = 108}, + [7862] = {.lex_state = 186, .external_lex_state = 108}, + [7863] = {.lex_state = 38, .external_lex_state = 99}, + [7864] = {.lex_state = 38, .external_lex_state = 99}, + [7865] = {.lex_state = 186, .external_lex_state = 108}, + [7866] = {.lex_state = 186, .external_lex_state = 108}, + [7867] = {.lex_state = 186, .external_lex_state = 108}, [7868] = {.lex_state = 186, .external_lex_state = 109}, [7869] = {.lex_state = 186, .external_lex_state = 109}, - [7870] = {.lex_state = 176, .external_lex_state = 107}, - [7871] = {.lex_state = 69, .external_lex_state = 98}, + [7870] = {.lex_state = 185, .external_lex_state = 109}, + [7871] = {.lex_state = 186, .external_lex_state = 109}, [7872] = {.lex_state = 186, .external_lex_state = 109}, - [7873] = {.lex_state = 69, .external_lex_state = 98}, - [7874] = {.lex_state = 178, .external_lex_state = 107}, - [7875] = {.lex_state = 69, .external_lex_state = 98}, - [7876] = {.lex_state = 178, .external_lex_state = 107}, - [7877] = {.lex_state = 178, .external_lex_state = 107}, + [7873] = {.lex_state = 178, .external_lex_state = 107}, + [7874] = {.lex_state = 186, .external_lex_state = 109}, + [7875] = {.lex_state = 178, .external_lex_state = 107}, + [7876] = {.lex_state = 186, .external_lex_state = 109}, + [7877] = {.lex_state = 186, .external_lex_state = 109}, [7878] = {.lex_state = 178, .external_lex_state = 107}, [7879] = {.lex_state = 178, .external_lex_state = 107}, - [7880] = {.lex_state = 69, .external_lex_state = 98}, + [7880] = {.lex_state = 186, .external_lex_state = 108}, [7881] = {.lex_state = 178, .external_lex_state = 107}, - [7882] = {.lex_state = 178, .external_lex_state = 107}, - [7883] = {.lex_state = 186, .external_lex_state = 109}, - [7884] = {.lex_state = 186, .external_lex_state = 109}, - [7885] = {.lex_state = 186, .external_lex_state = 109}, - [7886] = {.lex_state = 69, .external_lex_state = 98}, - [7887] = {.lex_state = 178, .external_lex_state = 107}, - [7888] = {.lex_state = 181, .external_lex_state = 108}, - [7889] = {.lex_state = 178, .external_lex_state = 107}, - [7890] = {.lex_state = 186, .external_lex_state = 109}, + [7882] = {.lex_state = 181, .external_lex_state = 107}, + [7883] = {.lex_state = 186, .external_lex_state = 108}, + [7884] = {.lex_state = 186, .external_lex_state = 108}, + [7885] = {.lex_state = 186, .external_lex_state = 108}, + [7886] = {.lex_state = 186, .external_lex_state = 108}, + [7887] = {.lex_state = 186, .external_lex_state = 108}, + [7888] = {.lex_state = 178, .external_lex_state = 107}, + [7889] = {.lex_state = 186, .external_lex_state = 109}, + [7890] = {.lex_state = 186, .external_lex_state = 108}, [7891] = {.lex_state = 178, .external_lex_state = 107}, [7892] = {.lex_state = 186, .external_lex_state = 109}, [7893] = {.lex_state = 186, .external_lex_state = 109}, - [7894] = {.lex_state = 69, .external_lex_state = 98}, - [7895] = {.lex_state = 178, .external_lex_state = 107}, + [7894] = {.lex_state = 186, .external_lex_state = 109}, + [7895] = {.lex_state = 186, .external_lex_state = 109}, [7896] = {.lex_state = 186, .external_lex_state = 109}, - [7897] = {.lex_state = 178, .external_lex_state = 107}, - [7898] = {.lex_state = 178, .external_lex_state = 107}, - [7899] = {.lex_state = 178, .external_lex_state = 107}, - [7900] = {.lex_state = 176, .external_lex_state = 107}, + [7897] = {.lex_state = 186, .external_lex_state = 109}, + [7898] = {.lex_state = 186, .external_lex_state = 109}, + [7899] = {.lex_state = 186, .external_lex_state = 109}, + [7900] = {.lex_state = 186, .external_lex_state = 109}, [7901] = {.lex_state = 178, .external_lex_state = 107}, - [7902] = {.lex_state = 69, .external_lex_state = 98}, - [7903] = {.lex_state = 181, .external_lex_state = 108}, - [7904] = {.lex_state = 69, .external_lex_state = 98}, - [7905] = {.lex_state = 178, .external_lex_state = 107}, - [7906] = {.lex_state = 178, .external_lex_state = 107}, - [7907] = {.lex_state = 178, .external_lex_state = 107}, + [7902] = {.lex_state = 178, .external_lex_state = 107}, + [7903] = {.lex_state = 186, .external_lex_state = 109}, + [7904] = {.lex_state = 186, .external_lex_state = 109}, + [7905] = {.lex_state = 186, .external_lex_state = 109}, + [7906] = {.lex_state = 186, .external_lex_state = 109}, + [7907] = {.lex_state = 186, .external_lex_state = 109}, [7908] = {.lex_state = 178, .external_lex_state = 107}, - [7909] = {.lex_state = 178, .external_lex_state = 107}, - [7910] = {.lex_state = 181, .external_lex_state = 108}, - [7911] = {.lex_state = 178, .external_lex_state = 107}, + [7909] = {.lex_state = 186, .external_lex_state = 109}, + [7910] = {.lex_state = 186, .external_lex_state = 109}, + [7911] = {.lex_state = 186, .external_lex_state = 109}, [7912] = {.lex_state = 178, .external_lex_state = 107}, - [7913] = {.lex_state = 181, .external_lex_state = 108}, - [7914] = {.lex_state = 178, .external_lex_state = 107}, - [7915] = {.lex_state = 178, .external_lex_state = 107}, - [7916] = {.lex_state = 178, .external_lex_state = 107}, - [7917] = {.lex_state = 178, .external_lex_state = 107}, + [7913] = {.lex_state = 186, .external_lex_state = 109}, + [7914] = {.lex_state = 186, .external_lex_state = 109}, + [7915] = {.lex_state = 186, .external_lex_state = 109}, + [7916] = {.lex_state = 186, .external_lex_state = 109}, + [7917] = {.lex_state = 186, .external_lex_state = 109}, [7918] = {.lex_state = 178, .external_lex_state = 107}, [7919] = {.lex_state = 178, .external_lex_state = 107}, - [7920] = {.lex_state = 178, .external_lex_state = 107}, - [7921] = {.lex_state = 178, .external_lex_state = 110}, - [7922] = {.lex_state = 178, .external_lex_state = 107}, + [7920] = {.lex_state = 69, .external_lex_state = 99}, + [7921] = {.lex_state = 69, .external_lex_state = 99}, + [7922] = {.lex_state = 69, .external_lex_state = 99}, [7923] = {.lex_state = 178, .external_lex_state = 107}, [7924] = {.lex_state = 178, .external_lex_state = 107}, [7925] = {.lex_state = 178, .external_lex_state = 107}, [7926] = {.lex_state = 178, .external_lex_state = 107}, - [7927] = {.lex_state = 178, .external_lex_state = 110}, - [7928] = {.lex_state = 178, .external_lex_state = 107}, - [7929] = {.lex_state = 178, .external_lex_state = 107}, + [7927] = {.lex_state = 178, .external_lex_state = 107}, + [7928] = {.lex_state = 186, .external_lex_state = 109}, + [7929] = {.lex_state = 176, .external_lex_state = 107}, [7930] = {.lex_state = 178, .external_lex_state = 107}, [7931] = {.lex_state = 178, .external_lex_state = 107}, - [7932] = {.lex_state = 178, .external_lex_state = 110}, - [7933] = {.lex_state = 178, .external_lex_state = 107}, - [7934] = {.lex_state = 178, .external_lex_state = 110}, - [7935] = {.lex_state = 178, .external_lex_state = 107}, - [7936] = {.lex_state = 178, .external_lex_state = 107}, - [7937] = {.lex_state = 178, .external_lex_state = 107}, - [7938] = {.lex_state = 178, .external_lex_state = 107}, - [7939] = {.lex_state = 178, .external_lex_state = 107}, - [7940] = {.lex_state = 178, .external_lex_state = 110}, + [7932] = {.lex_state = 178, .external_lex_state = 107}, + [7933] = {.lex_state = 69, .external_lex_state = 99}, + [7934] = {.lex_state = 69, .external_lex_state = 99}, + [7935] = {.lex_state = 69, .external_lex_state = 99}, + [7936] = {.lex_state = 181, .external_lex_state = 108}, + [7937] = {.lex_state = 181, .external_lex_state = 108}, + [7938] = {.lex_state = 69, .external_lex_state = 99}, + [7939] = {.lex_state = 186, .external_lex_state = 109}, + [7940] = {.lex_state = 176, .external_lex_state = 107}, [7941] = {.lex_state = 178, .external_lex_state = 107}, [7942] = {.lex_state = 178, .external_lex_state = 107}, - [7943] = {.lex_state = 178, .external_lex_state = 110}, - [7944] = {.lex_state = 178, .external_lex_state = 107}, + [7943] = {.lex_state = 69, .external_lex_state = 99}, + [7944] = {.lex_state = 186, .external_lex_state = 109}, [7945] = {.lex_state = 178, .external_lex_state = 107}, [7946] = {.lex_state = 178, .external_lex_state = 107}, [7947] = {.lex_state = 178, .external_lex_state = 107}, - [7948] = {.lex_state = 178, .external_lex_state = 110}, + [7948] = {.lex_state = 178, .external_lex_state = 107}, [7949] = {.lex_state = 178, .external_lex_state = 107}, - [7950] = {.lex_state = 181, .external_lex_state = 108}, - [7951] = {.lex_state = 178, .external_lex_state = 110}, + [7950] = {.lex_state = 178, .external_lex_state = 107}, + [7951] = {.lex_state = 178, .external_lex_state = 107}, [7952] = {.lex_state = 178, .external_lex_state = 107}, [7953] = {.lex_state = 178, .external_lex_state = 107}, - [7954] = {.lex_state = 178, .external_lex_state = 110}, + [7954] = {.lex_state = 178, .external_lex_state = 107}, [7955] = {.lex_state = 178, .external_lex_state = 107}, [7956] = {.lex_state = 178, .external_lex_state = 107}, - [7957] = {.lex_state = 178, .external_lex_state = 110}, + [7957] = {.lex_state = 178, .external_lex_state = 107}, [7958] = {.lex_state = 178, .external_lex_state = 107}, - [7959] = {.lex_state = 178, .external_lex_state = 110}, - [7960] = {.lex_state = 69, .external_lex_state = 98}, + [7959] = {.lex_state = 178, .external_lex_state = 107}, + [7960] = {.lex_state = 178, .external_lex_state = 107}, [7961] = {.lex_state = 178, .external_lex_state = 107}, [7962] = {.lex_state = 178, .external_lex_state = 107}, [7963] = {.lex_state = 178, .external_lex_state = 107}, [7964] = {.lex_state = 178, .external_lex_state = 107}, [7965] = {.lex_state = 178, .external_lex_state = 107}, - [7966] = {.lex_state = 178, .external_lex_state = 110}, + [7966] = {.lex_state = 178, .external_lex_state = 107}, [7967] = {.lex_state = 178, .external_lex_state = 107}, - [7968] = {.lex_state = 178, .external_lex_state = 110}, + [7968] = {.lex_state = 178, .external_lex_state = 107}, [7969] = {.lex_state = 178, .external_lex_state = 107}, - [7970] = {.lex_state = 185, .external_lex_state = 111}, - [7971] = {.lex_state = 178, .external_lex_state = 107}, + [7970] = {.lex_state = 178, .external_lex_state = 107}, + [7971] = {.lex_state = 69, .external_lex_state = 99}, [7972] = {.lex_state = 178, .external_lex_state = 107}, [7973] = {.lex_state = 178, .external_lex_state = 107}, - [7974] = {.lex_state = 178, .external_lex_state = 110}, + [7974] = {.lex_state = 178, .external_lex_state = 107}, [7975] = {.lex_state = 178, .external_lex_state = 107}, [7976] = {.lex_state = 178, .external_lex_state = 107}, - [7977] = {.lex_state = 178, .external_lex_state = 110}, + [7977] = {.lex_state = 178, .external_lex_state = 107}, [7978] = {.lex_state = 178, .external_lex_state = 107}, - [7979] = {.lex_state = 178, .external_lex_state = 110}, + [7979] = {.lex_state = 178, .external_lex_state = 107}, [7980] = {.lex_state = 178, .external_lex_state = 107}, - [7981] = {.lex_state = 178, .external_lex_state = 110}, - [7982] = {.lex_state = 178, .external_lex_state = 107}, - [7983] = {.lex_state = 178, .external_lex_state = 107}, + [7981] = {.lex_state = 178, .external_lex_state = 107}, + [7982] = {.lex_state = 178, .external_lex_state = 110}, + [7983] = {.lex_state = 178, .external_lex_state = 108}, [7984] = {.lex_state = 178, .external_lex_state = 107}, [7985] = {.lex_state = 178, .external_lex_state = 107}, - [7986] = {.lex_state = 185, .external_lex_state = 111}, - [7987] = {.lex_state = 178, .external_lex_state = 110}, + [7986] = {.lex_state = 178, .external_lex_state = 107}, + [7987] = {.lex_state = 178, .external_lex_state = 107}, [7988] = {.lex_state = 178, .external_lex_state = 107}, - [7989] = {.lex_state = 178, .external_lex_state = 110}, - [7990] = {.lex_state = 178, .external_lex_state = 110}, - [7991] = {.lex_state = 178, .external_lex_state = 110}, - [7992] = {.lex_state = 178, .external_lex_state = 107}, - [7993] = {.lex_state = 178, .external_lex_state = 110}, - [7994] = {.lex_state = 178, .external_lex_state = 110}, - [7995] = {.lex_state = 178, .external_lex_state = 110}, + [7989] = {.lex_state = 178, .external_lex_state = 107}, + [7990] = {.lex_state = 178, .external_lex_state = 107}, + [7991] = {.lex_state = 178, .external_lex_state = 107}, + [7992] = {.lex_state = 181, .external_lex_state = 108}, + [7993] = {.lex_state = 178, .external_lex_state = 107}, + [7994] = {.lex_state = 178, .external_lex_state = 107}, + [7995] = {.lex_state = 178, .external_lex_state = 107}, [7996] = {.lex_state = 178, .external_lex_state = 107}, [7997] = {.lex_state = 178, .external_lex_state = 107}, [7998] = {.lex_state = 178, .external_lex_state = 107}, @@ -28326,19 +28448,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8003] = {.lex_state = 178, .external_lex_state = 107}, [8004] = {.lex_state = 178, .external_lex_state = 107}, [8005] = {.lex_state = 178, .external_lex_state = 107}, - [8006] = {.lex_state = 178, .external_lex_state = 107}, + [8006] = {.lex_state = 181, .external_lex_state = 108}, [8007] = {.lex_state = 178, .external_lex_state = 107}, [8008] = {.lex_state = 178, .external_lex_state = 107}, [8009] = {.lex_state = 178, .external_lex_state = 107}, [8010] = {.lex_state = 178, .external_lex_state = 107}, [8011] = {.lex_state = 178, .external_lex_state = 107}, - [8012] = {.lex_state = 178, .external_lex_state = 107}, - [8013] = {.lex_state = 69, .external_lex_state = 98}, - [8014] = {.lex_state = 185, .external_lex_state = 111}, - [8015] = {.lex_state = 178, .external_lex_state = 107}, + [8012] = {.lex_state = 181, .external_lex_state = 108}, + [8013] = {.lex_state = 178, .external_lex_state = 107}, + [8014] = {.lex_state = 178, .external_lex_state = 107}, + [8015] = {.lex_state = 178, .external_lex_state = 110}, [8016] = {.lex_state = 178, .external_lex_state = 107}, [8017] = {.lex_state = 178, .external_lex_state = 107}, - [8018] = {.lex_state = 178, .external_lex_state = 107}, + [8018] = {.lex_state = 181, .external_lex_state = 108}, [8019] = {.lex_state = 178, .external_lex_state = 107}, [8020] = {.lex_state = 178, .external_lex_state = 107}, [8021] = {.lex_state = 178, .external_lex_state = 107}, @@ -28346,19 +28468,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8023] = {.lex_state = 178, .external_lex_state = 107}, [8024] = {.lex_state = 178, .external_lex_state = 107}, [8025] = {.lex_state = 178, .external_lex_state = 107}, - [8026] = {.lex_state = 178, .external_lex_state = 107}, + [8026] = {.lex_state = 185, .external_lex_state = 111}, [8027] = {.lex_state = 178, .external_lex_state = 107}, [8028] = {.lex_state = 178, .external_lex_state = 107}, [8029] = {.lex_state = 178, .external_lex_state = 107}, [8030] = {.lex_state = 178, .external_lex_state = 107}, [8031] = {.lex_state = 178, .external_lex_state = 107}, - [8032] = {.lex_state = 178, .external_lex_state = 107}, - [8033] = {.lex_state = 178, .external_lex_state = 107}, + [8032] = {.lex_state = 185, .external_lex_state = 111}, + [8033] = {.lex_state = 185, .external_lex_state = 111}, [8034] = {.lex_state = 178, .external_lex_state = 107}, [8035] = {.lex_state = 178, .external_lex_state = 107}, - [8036] = {.lex_state = 185, .external_lex_state = 111}, - [8037] = {.lex_state = 178, .external_lex_state = 107}, - [8038] = {.lex_state = 178, .external_lex_state = 107}, + [8036] = {.lex_state = 178, .external_lex_state = 107}, + [8037] = {.lex_state = 185, .external_lex_state = 111}, + [8038] = {.lex_state = 185, .external_lex_state = 111}, [8039] = {.lex_state = 178, .external_lex_state = 107}, [8040] = {.lex_state = 178, .external_lex_state = 107}, [8041] = {.lex_state = 178, .external_lex_state = 107}, @@ -28368,225 +28490,225 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8045] = {.lex_state = 178, .external_lex_state = 107}, [8046] = {.lex_state = 178, .external_lex_state = 107}, [8047] = {.lex_state = 178, .external_lex_state = 107}, - [8048] = {.lex_state = 178, .external_lex_state = 110}, + [8048] = {.lex_state = 178, .external_lex_state = 107}, [8049] = {.lex_state = 178, .external_lex_state = 107}, [8050] = {.lex_state = 178, .external_lex_state = 107}, - [8051] = {.lex_state = 178, .external_lex_state = 107}, + [8051] = {.lex_state = 178, .external_lex_state = 110}, [8052] = {.lex_state = 178, .external_lex_state = 107}, [8053] = {.lex_state = 178, .external_lex_state = 107}, [8054] = {.lex_state = 178, .external_lex_state = 107}, - [8055] = {.lex_state = 178, .external_lex_state = 107}, - [8056] = {.lex_state = 178, .external_lex_state = 107}, + [8055] = {.lex_state = 69, .external_lex_state = 99}, + [8056] = {.lex_state = 178, .external_lex_state = 110}, [8057] = {.lex_state = 178, .external_lex_state = 107}, [8058] = {.lex_state = 178, .external_lex_state = 107}, - [8059] = {.lex_state = 178, .external_lex_state = 108}, - [8060] = {.lex_state = 178, .external_lex_state = 107}, - [8061] = {.lex_state = 181, .external_lex_state = 108}, + [8059] = {.lex_state = 178, .external_lex_state = 107}, + [8060] = {.lex_state = 178, .external_lex_state = 110}, + [8061] = {.lex_state = 178, .external_lex_state = 107}, [8062] = {.lex_state = 178, .external_lex_state = 107}, [8063] = {.lex_state = 178, .external_lex_state = 107}, - [8064] = {.lex_state = 185, .external_lex_state = 111}, - [8065] = {.lex_state = 178, .external_lex_state = 108}, - [8066] = {.lex_state = 178, .external_lex_state = 108}, - [8067] = {.lex_state = 185, .external_lex_state = 111}, - [8068] = {.lex_state = 178, .external_lex_state = 108}, - [8069] = {.lex_state = 178, .external_lex_state = 108}, - [8070] = {.lex_state = 40, .external_lex_state = 98}, - [8071] = {.lex_state = 69, .external_lex_state = 98}, - [8072] = {.lex_state = 181, .external_lex_state = 108}, - [8073] = {.lex_state = 40, .external_lex_state = 98}, - [8074] = {.lex_state = 181, .external_lex_state = 109}, - [8075] = {.lex_state = 178, .external_lex_state = 108}, - [8076] = {.lex_state = 40, .external_lex_state = 98}, - [8077] = {.lex_state = 69, .external_lex_state = 98}, - [8078] = {.lex_state = 40, .external_lex_state = 98}, - [8079] = {.lex_state = 40, .external_lex_state = 98}, - [8080] = {.lex_state = 178, .external_lex_state = 108}, - [8081] = {.lex_state = 181, .external_lex_state = 109}, - [8082] = {.lex_state = 178, .external_lex_state = 108}, - [8083] = {.lex_state = 185, .external_lex_state = 98}, - [8084] = {.lex_state = 185, .external_lex_state = 98}, - [8085] = {.lex_state = 185, .external_lex_state = 98}, - [8086] = {.lex_state = 178, .external_lex_state = 109}, - [8087] = {.lex_state = 185, .external_lex_state = 98}, - [8088] = {.lex_state = 181, .external_lex_state = 109}, - [8089] = {.lex_state = 178, .external_lex_state = 108}, - [8090] = {.lex_state = 178, .external_lex_state = 108}, - [8091] = {.lex_state = 185, .external_lex_state = 112}, - [8092] = {.lex_state = 185, .external_lex_state = 112}, - [8093] = {.lex_state = 178, .external_lex_state = 108}, - [8094] = {.lex_state = 185, .external_lex_state = 112}, - [8095] = {.lex_state = 185, .external_lex_state = 98}, - [8096] = {.lex_state = 181, .external_lex_state = 109}, - [8097] = {.lex_state = 185, .external_lex_state = 112}, - [8098] = {.lex_state = 185, .external_lex_state = 112}, - [8099] = {.lex_state = 181, .external_lex_state = 109}, - [8100] = {.lex_state = 40, .external_lex_state = 98}, - [8101] = {.lex_state = 181, .external_lex_state = 109}, - [8102] = {.lex_state = 185, .external_lex_state = 98}, - [8103] = {.lex_state = 178, .external_lex_state = 108}, - [8104] = {.lex_state = 178, .external_lex_state = 108}, - [8105] = {.lex_state = 40, .external_lex_state = 98}, - [8106] = {.lex_state = 178, .external_lex_state = 109}, - [8107] = {.lex_state = 178, .external_lex_state = 109}, - [8108] = {.lex_state = 185, .external_lex_state = 98}, - [8109] = {.lex_state = 40, .external_lex_state = 98}, - [8110] = {.lex_state = 178, .external_lex_state = 108}, + [8064] = {.lex_state = 178, .external_lex_state = 110}, + [8065] = {.lex_state = 178, .external_lex_state = 110}, + [8066] = {.lex_state = 178, .external_lex_state = 110}, + [8067] = {.lex_state = 178, .external_lex_state = 107}, + [8068] = {.lex_state = 178, .external_lex_state = 110}, + [8069] = {.lex_state = 178, .external_lex_state = 110}, + [8070] = {.lex_state = 178, .external_lex_state = 110}, + [8071] = {.lex_state = 178, .external_lex_state = 107}, + [8072] = {.lex_state = 178, .external_lex_state = 107}, + [8073] = {.lex_state = 178, .external_lex_state = 110}, + [8074] = {.lex_state = 178, .external_lex_state = 107}, + [8075] = {.lex_state = 178, .external_lex_state = 107}, + [8076] = {.lex_state = 178, .external_lex_state = 110}, + [8077] = {.lex_state = 178, .external_lex_state = 110}, + [8078] = {.lex_state = 178, .external_lex_state = 107}, + [8079] = {.lex_state = 178, .external_lex_state = 110}, + [8080] = {.lex_state = 178, .external_lex_state = 110}, + [8081] = {.lex_state = 178, .external_lex_state = 110}, + [8082] = {.lex_state = 178, .external_lex_state = 110}, + [8083] = {.lex_state = 178, .external_lex_state = 110}, + [8084] = {.lex_state = 178, .external_lex_state = 110}, + [8085] = {.lex_state = 178, .external_lex_state = 110}, + [8086] = {.lex_state = 178, .external_lex_state = 110}, + [8087] = {.lex_state = 178, .external_lex_state = 110}, + [8088] = {.lex_state = 178, .external_lex_state = 110}, + [8089] = {.lex_state = 178, .external_lex_state = 110}, + [8090] = {.lex_state = 178, .external_lex_state = 107}, + [8091] = {.lex_state = 178, .external_lex_state = 107}, + [8092] = {.lex_state = 178, .external_lex_state = 107}, + [8093] = {.lex_state = 178, .external_lex_state = 107}, + [8094] = {.lex_state = 178, .external_lex_state = 107}, + [8095] = {.lex_state = 178, .external_lex_state = 107}, + [8096] = {.lex_state = 178, .external_lex_state = 107}, + [8097] = {.lex_state = 178, .external_lex_state = 107}, + [8098] = {.lex_state = 178, .external_lex_state = 107}, + [8099] = {.lex_state = 178, .external_lex_state = 107}, + [8100] = {.lex_state = 178, .external_lex_state = 107}, + [8101] = {.lex_state = 178, .external_lex_state = 107}, + [8102] = {.lex_state = 178, .external_lex_state = 107}, + [8103] = {.lex_state = 178, .external_lex_state = 107}, + [8104] = {.lex_state = 178, .external_lex_state = 107}, + [8105] = {.lex_state = 178, .external_lex_state = 107}, + [8106] = {.lex_state = 178, .external_lex_state = 107}, + [8107] = {.lex_state = 181, .external_lex_state = 109}, + [8108] = {.lex_state = 69, .external_lex_state = 99}, + [8109] = {.lex_state = 40, .external_lex_state = 99}, + [8110] = {.lex_state = 40, .external_lex_state = 99}, [8111] = {.lex_state = 178, .external_lex_state = 108}, [8112] = {.lex_state = 178, .external_lex_state = 108}, - [8113] = {.lex_state = 178, .external_lex_state = 108}, - [8114] = {.lex_state = 183, .external_lex_state = 98}, - [8115] = {.lex_state = 40, .external_lex_state = 98}, - [8116] = {.lex_state = 40, .external_lex_state = 98}, - [8117] = {.lex_state = 178, .external_lex_state = 108}, - [8118] = {.lex_state = 178, .external_lex_state = 109}, - [8119] = {.lex_state = 178, .external_lex_state = 108}, - [8120] = {.lex_state = 178, .external_lex_state = 108}, - [8121] = {.lex_state = 40, .external_lex_state = 98}, - [8122] = {.lex_state = 40, .external_lex_state = 98}, - [8123] = {.lex_state = 178, .external_lex_state = 108}, - [8124] = {.lex_state = 181, .external_lex_state = 109}, - [8125] = {.lex_state = 176, .external_lex_state = 108}, - [8126] = {.lex_state = 40, .external_lex_state = 98}, - [8127] = {.lex_state = 178, .external_lex_state = 109}, - [8128] = {.lex_state = 178, .external_lex_state = 108}, - [8129] = {.lex_state = 185, .external_lex_state = 112}, - [8130] = {.lex_state = 178, .external_lex_state = 109}, - [8131] = {.lex_state = 178, .external_lex_state = 108}, - [8132] = {.lex_state = 176, .external_lex_state = 108}, - [8133] = {.lex_state = 178, .external_lex_state = 108}, - [8134] = {.lex_state = 40, .external_lex_state = 98}, + [8113] = {.lex_state = 40, .external_lex_state = 99}, + [8114] = {.lex_state = 40, .external_lex_state = 99}, + [8115] = {.lex_state = 178, .external_lex_state = 108}, + [8116] = {.lex_state = 178, .external_lex_state = 108}, + [8117] = {.lex_state = 181, .external_lex_state = 108}, + [8118] = {.lex_state = 181, .external_lex_state = 109}, + [8119] = {.lex_state = 185, .external_lex_state = 111}, + [8120] = {.lex_state = 69, .external_lex_state = 99}, + [8121] = {.lex_state = 178, .external_lex_state = 108}, + [8122] = {.lex_state = 178, .external_lex_state = 108}, + [8123] = {.lex_state = 40, .external_lex_state = 99}, + [8124] = {.lex_state = 178, .external_lex_state = 108}, + [8125] = {.lex_state = 185, .external_lex_state = 112}, + [8126] = {.lex_state = 178, .external_lex_state = 108}, + [8127] = {.lex_state = 185, .external_lex_state = 112}, + [8128] = {.lex_state = 185, .external_lex_state = 99}, + [8129] = {.lex_state = 185, .external_lex_state = 99}, + [8130] = {.lex_state = 185, .external_lex_state = 99}, + [8131] = {.lex_state = 185, .external_lex_state = 99}, + [8132] = {.lex_state = 181, .external_lex_state = 109}, + [8133] = {.lex_state = 185, .external_lex_state = 99}, + [8134] = {.lex_state = 185, .external_lex_state = 112}, [8135] = {.lex_state = 178, .external_lex_state = 109}, - [8136] = {.lex_state = 178, .external_lex_state = 109}, - [8137] = {.lex_state = 178, .external_lex_state = 108}, + [8136] = {.lex_state = 40, .external_lex_state = 99}, + [8137] = {.lex_state = 181, .external_lex_state = 109}, [8138] = {.lex_state = 178, .external_lex_state = 108}, - [8139] = {.lex_state = 178, .external_lex_state = 108}, - [8140] = {.lex_state = 40, .external_lex_state = 98}, + [8139] = {.lex_state = 185, .external_lex_state = 112}, + [8140] = {.lex_state = 181, .external_lex_state = 109}, [8141] = {.lex_state = 178, .external_lex_state = 108}, - [8142] = {.lex_state = 40, .external_lex_state = 98}, - [8143] = {.lex_state = 185, .external_lex_state = 98}, - [8144] = {.lex_state = 41, .external_lex_state = 98}, - [8145] = {.lex_state = 41, .external_lex_state = 98}, - [8146] = {.lex_state = 40, .external_lex_state = 111}, - [8147] = {.lex_state = 186, .external_lex_state = 111}, - [8148] = {.lex_state = 178, .external_lex_state = 108}, + [8142] = {.lex_state = 185, .external_lex_state = 112}, + [8143] = {.lex_state = 185, .external_lex_state = 99}, + [8144] = {.lex_state = 181, .external_lex_state = 109}, + [8145] = {.lex_state = 40, .external_lex_state = 99}, + [8146] = {.lex_state = 178, .external_lex_state = 108}, + [8147] = {.lex_state = 178, .external_lex_state = 108}, + [8148] = {.lex_state = 178, .external_lex_state = 109}, [8149] = {.lex_state = 178, .external_lex_state = 108}, - [8150] = {.lex_state = 178, .external_lex_state = 109}, - [8151] = {.lex_state = 41, .external_lex_state = 98}, - [8152] = {.lex_state = 41, .external_lex_state = 98}, - [8153] = {.lex_state = 178, .external_lex_state = 108}, - [8154] = {.lex_state = 178, .external_lex_state = 108}, - [8155] = {.lex_state = 40, .external_lex_state = 98}, - [8156] = {.lex_state = 178, .external_lex_state = 108}, + [8150] = {.lex_state = 178, .external_lex_state = 108}, + [8151] = {.lex_state = 178, .external_lex_state = 108}, + [8152] = {.lex_state = 178, .external_lex_state = 108}, + [8153] = {.lex_state = 185, .external_lex_state = 99}, + [8154] = {.lex_state = 40, .external_lex_state = 99}, + [8155] = {.lex_state = 40, .external_lex_state = 99}, + [8156] = {.lex_state = 181, .external_lex_state = 109}, [8157] = {.lex_state = 178, .external_lex_state = 108}, - [8158] = {.lex_state = 178, .external_lex_state = 108}, - [8159] = {.lex_state = 186, .external_lex_state = 112}, - [8160] = {.lex_state = 186, .external_lex_state = 112}, - [8161] = {.lex_state = 178, .external_lex_state = 108}, - [8162] = {.lex_state = 41, .external_lex_state = 98}, - [8163] = {.lex_state = 178, .external_lex_state = 108}, + [8158] = {.lex_state = 178, .external_lex_state = 109}, + [8159] = {.lex_state = 178, .external_lex_state = 108}, + [8160] = {.lex_state = 178, .external_lex_state = 109}, + [8161] = {.lex_state = 40, .external_lex_state = 99}, + [8162] = {.lex_state = 178, .external_lex_state = 108}, + [8163] = {.lex_state = 178, .external_lex_state = 109}, [8164] = {.lex_state = 178, .external_lex_state = 108}, - [8165] = {.lex_state = 178, .external_lex_state = 108}, + [8165] = {.lex_state = 178, .external_lex_state = 109}, [8166] = {.lex_state = 178, .external_lex_state = 108}, - [8167] = {.lex_state = 178, .external_lex_state = 108}, - [8168] = {.lex_state = 178, .external_lex_state = 108}, - [8169] = {.lex_state = 178, .external_lex_state = 108}, - [8170] = {.lex_state = 178, .external_lex_state = 108}, - [8171] = {.lex_state = 178, .external_lex_state = 108}, + [8167] = {.lex_state = 176, .external_lex_state = 108}, + [8168] = {.lex_state = 40, .external_lex_state = 99}, + [8169] = {.lex_state = 40, .external_lex_state = 99}, + [8170] = {.lex_state = 178, .external_lex_state = 109}, + [8171] = {.lex_state = 176, .external_lex_state = 108}, [8172] = {.lex_state = 178, .external_lex_state = 108}, - [8173] = {.lex_state = 178, .external_lex_state = 108}, + [8173] = {.lex_state = 40, .external_lex_state = 99}, [8174] = {.lex_state = 178, .external_lex_state = 108}, - [8175] = {.lex_state = 178, .external_lex_state = 108}, - [8176] = {.lex_state = 178, .external_lex_state = 108}, - [8177] = {.lex_state = 178, .external_lex_state = 108}, - [8178] = {.lex_state = 40, .external_lex_state = 111}, + [8175] = {.lex_state = 183, .external_lex_state = 99}, + [8176] = {.lex_state = 185, .external_lex_state = 112}, + [8177] = {.lex_state = 178, .external_lex_state = 109}, + [8178] = {.lex_state = 40, .external_lex_state = 99}, [8179] = {.lex_state = 178, .external_lex_state = 108}, - [8180] = {.lex_state = 178, .external_lex_state = 108}, - [8181] = {.lex_state = 40, .external_lex_state = 111}, + [8180] = {.lex_state = 40, .external_lex_state = 99}, + [8181] = {.lex_state = 178, .external_lex_state = 108}, [8182] = {.lex_state = 178, .external_lex_state = 108}, [8183] = {.lex_state = 178, .external_lex_state = 108}, - [8184] = {.lex_state = 40, .external_lex_state = 111}, - [8185] = {.lex_state = 178, .external_lex_state = 108}, - [8186] = {.lex_state = 178, .external_lex_state = 108}, + [8184] = {.lex_state = 178, .external_lex_state = 108}, + [8185] = {.lex_state = 40, .external_lex_state = 111}, + [8186] = {.lex_state = 186, .external_lex_state = 111}, [8187] = {.lex_state = 178, .external_lex_state = 108}, [8188] = {.lex_state = 178, .external_lex_state = 108}, - [8189] = {.lex_state = 178, .external_lex_state = 108}, - [8190] = {.lex_state = 178, .external_lex_state = 108}, - [8191] = {.lex_state = 178, .external_lex_state = 108}, - [8192] = {.lex_state = 185, .external_lex_state = 112}, - [8193] = {.lex_state = 178, .external_lex_state = 108}, - [8194] = {.lex_state = 186, .external_lex_state = 112}, - [8195] = {.lex_state = 40, .external_lex_state = 111}, - [8196] = {.lex_state = 40, .external_lex_state = 98}, + [8189] = {.lex_state = 40, .external_lex_state = 111}, + [8190] = {.lex_state = 40, .external_lex_state = 99}, + [8191] = {.lex_state = 40, .external_lex_state = 99}, + [8192] = {.lex_state = 40, .external_lex_state = 111}, + [8193] = {.lex_state = 40, .external_lex_state = 111}, + [8194] = {.lex_state = 178, .external_lex_state = 108}, + [8195] = {.lex_state = 178, .external_lex_state = 108}, + [8196] = {.lex_state = 178, .external_lex_state = 108}, [8197] = {.lex_state = 178, .external_lex_state = 108}, [8198] = {.lex_state = 178, .external_lex_state = 108}, [8199] = {.lex_state = 178, .external_lex_state = 108}, - [8200] = {.lex_state = 40, .external_lex_state = 111}, + [8200] = {.lex_state = 178, .external_lex_state = 108}, [8201] = {.lex_state = 178, .external_lex_state = 108}, - [8202] = {.lex_state = 186, .external_lex_state = 112}, - [8203] = {.lex_state = 178, .external_lex_state = 98}, + [8202] = {.lex_state = 178, .external_lex_state = 99}, + [8203] = {.lex_state = 178, .external_lex_state = 108}, [8204] = {.lex_state = 178, .external_lex_state = 108}, - [8205] = {.lex_state = 178, .external_lex_state = 108}, + [8205] = {.lex_state = 41, .external_lex_state = 99}, [8206] = {.lex_state = 178, .external_lex_state = 108}, [8207] = {.lex_state = 178, .external_lex_state = 108}, [8208] = {.lex_state = 178, .external_lex_state = 108}, [8209] = {.lex_state = 178, .external_lex_state = 108}, - [8210] = {.lex_state = 40, .external_lex_state = 98}, - [8211] = {.lex_state = 40, .external_lex_state = 98}, - [8212] = {.lex_state = 178, .external_lex_state = 98}, + [8210] = {.lex_state = 178, .external_lex_state = 108}, + [8211] = {.lex_state = 178, .external_lex_state = 108}, + [8212] = {.lex_state = 178, .external_lex_state = 108}, [8213] = {.lex_state = 178, .external_lex_state = 108}, - [8214] = {.lex_state = 186, .external_lex_state = 112}, + [8214] = {.lex_state = 178, .external_lex_state = 108}, [8215] = {.lex_state = 178, .external_lex_state = 108}, [8216] = {.lex_state = 178, .external_lex_state = 108}, [8217] = {.lex_state = 178, .external_lex_state = 108}, - [8218] = {.lex_state = 40, .external_lex_state = 98}, - [8219] = {.lex_state = 178, .external_lex_state = 108}, - [8220] = {.lex_state = 40, .external_lex_state = 98}, - [8221] = {.lex_state = 40, .external_lex_state = 98}, + [8218] = {.lex_state = 40, .external_lex_state = 99}, + [8219] = {.lex_state = 40, .external_lex_state = 99}, + [8220] = {.lex_state = 178, .external_lex_state = 108}, + [8221] = {.lex_state = 178, .external_lex_state = 109}, [8222] = {.lex_state = 178, .external_lex_state = 108}, - [8223] = {.lex_state = 178, .external_lex_state = 108}, + [8223] = {.lex_state = 40, .external_lex_state = 111}, [8224] = {.lex_state = 178, .external_lex_state = 108}, - [8225] = {.lex_state = 186, .external_lex_state = 112}, + [8225] = {.lex_state = 41, .external_lex_state = 99}, [8226] = {.lex_state = 178, .external_lex_state = 108}, [8227] = {.lex_state = 178, .external_lex_state = 108}, - [8228] = {.lex_state = 40, .external_lex_state = 98}, - [8229] = {.lex_state = 186, .external_lex_state = 112}, - [8230] = {.lex_state = 40, .external_lex_state = 98}, - [8231] = {.lex_state = 40, .external_lex_state = 98}, - [8232] = {.lex_state = 40, .external_lex_state = 98}, - [8233] = {.lex_state = 40, .external_lex_state = 98}, - [8234] = {.lex_state = 41, .external_lex_state = 98}, - [8235] = {.lex_state = 40, .external_lex_state = 98}, + [8228] = {.lex_state = 178, .external_lex_state = 108}, + [8229] = {.lex_state = 178, .external_lex_state = 108}, + [8230] = {.lex_state = 178, .external_lex_state = 108}, + [8231] = {.lex_state = 178, .external_lex_state = 108}, + [8232] = {.lex_state = 178, .external_lex_state = 108}, + [8233] = {.lex_state = 178, .external_lex_state = 108}, + [8234] = {.lex_state = 178, .external_lex_state = 108}, + [8235] = {.lex_state = 178, .external_lex_state = 108}, [8236] = {.lex_state = 178, .external_lex_state = 108}, [8237] = {.lex_state = 178, .external_lex_state = 108}, - [8238] = {.lex_state = 41, .external_lex_state = 98}, + [8238] = {.lex_state = 186, .external_lex_state = 111}, [8239] = {.lex_state = 178, .external_lex_state = 108}, [8240] = {.lex_state = 178, .external_lex_state = 108}, - [8241] = {.lex_state = 178, .external_lex_state = 108}, - [8242] = {.lex_state = 40, .external_lex_state = 98}, + [8241] = {.lex_state = 186, .external_lex_state = 112}, + [8242] = {.lex_state = 178, .external_lex_state = 108}, [8243] = {.lex_state = 178, .external_lex_state = 108}, - [8244] = {.lex_state = 178, .external_lex_state = 108}, - [8245] = {.lex_state = 178, .external_lex_state = 108}, - [8246] = {.lex_state = 40, .external_lex_state = 98}, - [8247] = {.lex_state = 178, .external_lex_state = 109}, - [8248] = {.lex_state = 40, .external_lex_state = 98}, + [8244] = {.lex_state = 40, .external_lex_state = 111}, + [8245] = {.lex_state = 40, .external_lex_state = 99}, + [8246] = {.lex_state = 178, .external_lex_state = 108}, + [8247] = {.lex_state = 178, .external_lex_state = 108}, + [8248] = {.lex_state = 178, .external_lex_state = 108}, [8249] = {.lex_state = 178, .external_lex_state = 108}, - [8250] = {.lex_state = 178, .external_lex_state = 108}, - [8251] = {.lex_state = 40, .external_lex_state = 98}, - [8252] = {.lex_state = 40, .external_lex_state = 98}, - [8253] = {.lex_state = 186, .external_lex_state = 112}, - [8254] = {.lex_state = 40, .external_lex_state = 98}, - [8255] = {.lex_state = 186, .external_lex_state = 111}, - [8256] = {.lex_state = 178, .external_lex_state = 108}, - [8257] = {.lex_state = 178, .external_lex_state = 108}, + [8250] = {.lex_state = 178, .external_lex_state = 109}, + [8251] = {.lex_state = 185, .external_lex_state = 99}, + [8252] = {.lex_state = 40, .external_lex_state = 99}, + [8253] = {.lex_state = 40, .external_lex_state = 99}, + [8254] = {.lex_state = 40, .external_lex_state = 99}, + [8255] = {.lex_state = 40, .external_lex_state = 99}, + [8256] = {.lex_state = 41, .external_lex_state = 99}, + [8257] = {.lex_state = 40, .external_lex_state = 99}, [8258] = {.lex_state = 178, .external_lex_state = 108}, [8259] = {.lex_state = 178, .external_lex_state = 108}, - [8260] = {.lex_state = 40, .external_lex_state = 98}, + [8260] = {.lex_state = 178, .external_lex_state = 108}, [8261] = {.lex_state = 178, .external_lex_state = 108}, [8262] = {.lex_state = 178, .external_lex_state = 108}, [8263] = {.lex_state = 178, .external_lex_state = 108}, [8264] = {.lex_state = 178, .external_lex_state = 108}, [8265] = {.lex_state = 178, .external_lex_state = 108}, - [8266] = {.lex_state = 178, .external_lex_state = 108}, + [8266] = {.lex_state = 186, .external_lex_state = 112}, [8267] = {.lex_state = 178, .external_lex_state = 108}, [8268] = {.lex_state = 178, .external_lex_state = 108}, [8269] = {.lex_state = 178, .external_lex_state = 108}, @@ -28596,3713 +28718,3811 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8273] = {.lex_state = 178, .external_lex_state = 108}, [8274] = {.lex_state = 178, .external_lex_state = 108}, [8275] = {.lex_state = 178, .external_lex_state = 108}, - [8276] = {.lex_state = 40, .external_lex_state = 98}, + [8276] = {.lex_state = 178, .external_lex_state = 108}, [8277] = {.lex_state = 178, .external_lex_state = 108}, - [8278] = {.lex_state = 178, .external_lex_state = 108}, + [8278] = {.lex_state = 41, .external_lex_state = 99}, [8279] = {.lex_state = 178, .external_lex_state = 108}, [8280] = {.lex_state = 178, .external_lex_state = 108}, - [8281] = {.lex_state = 178, .external_lex_state = 108}, + [8281] = {.lex_state = 186, .external_lex_state = 112}, [8282] = {.lex_state = 178, .external_lex_state = 108}, - [8283] = {.lex_state = 178, .external_lex_state = 108}, - [8284] = {.lex_state = 178, .external_lex_state = 108}, - [8285] = {.lex_state = 178, .external_lex_state = 108}, - [8286] = {.lex_state = 178, .external_lex_state = 108}, - [8287] = {.lex_state = 178, .external_lex_state = 108}, - [8288] = {.lex_state = 178, .external_lex_state = 108}, - [8289] = {.lex_state = 178, .external_lex_state = 108}, - [8290] = {.lex_state = 178, .external_lex_state = 108}, - [8291] = {.lex_state = 40, .external_lex_state = 98}, + [8283] = {.lex_state = 186, .external_lex_state = 112}, + [8284] = {.lex_state = 40, .external_lex_state = 99}, + [8285] = {.lex_state = 178, .external_lex_state = 109}, + [8286] = {.lex_state = 41, .external_lex_state = 99}, + [8287] = {.lex_state = 40, .external_lex_state = 111}, + [8288] = {.lex_state = 41, .external_lex_state = 99}, + [8289] = {.lex_state = 40, .external_lex_state = 99}, + [8290] = {.lex_state = 41, .external_lex_state = 99}, + [8291] = {.lex_state = 178, .external_lex_state = 108}, [8292] = {.lex_state = 178, .external_lex_state = 108}, - [8293] = {.lex_state = 178, .external_lex_state = 108}, + [8293] = {.lex_state = 40, .external_lex_state = 111}, [8294] = {.lex_state = 178, .external_lex_state = 108}, [8295] = {.lex_state = 178, .external_lex_state = 108}, [8296] = {.lex_state = 178, .external_lex_state = 108}, [8297] = {.lex_state = 178, .external_lex_state = 108}, [8298] = {.lex_state = 178, .external_lex_state = 108}, - [8299] = {.lex_state = 178, .external_lex_state = 108}, + [8299] = {.lex_state = 185, .external_lex_state = 112}, [8300] = {.lex_state = 178, .external_lex_state = 108}, [8301] = {.lex_state = 178, .external_lex_state = 108}, [8302] = {.lex_state = 178, .external_lex_state = 108}, [8303] = {.lex_state = 178, .external_lex_state = 108}, [8304] = {.lex_state = 178, .external_lex_state = 108}, - [8305] = {.lex_state = 40, .external_lex_state = 111}, + [8305] = {.lex_state = 178, .external_lex_state = 108}, [8306] = {.lex_state = 178, .external_lex_state = 108}, - [8307] = {.lex_state = 178, .external_lex_state = 108}, + [8307] = {.lex_state = 186, .external_lex_state = 112}, [8308] = {.lex_state = 178, .external_lex_state = 108}, [8309] = {.lex_state = 178, .external_lex_state = 108}, - [8310] = {.lex_state = 178, .external_lex_state = 98}, - [8311] = {.lex_state = 178, .external_lex_state = 109}, - [8312] = {.lex_state = 40, .external_lex_state = 111}, + [8310] = {.lex_state = 40, .external_lex_state = 99}, + [8311] = {.lex_state = 40, .external_lex_state = 99}, + [8312] = {.lex_state = 178, .external_lex_state = 108}, [8313] = {.lex_state = 178, .external_lex_state = 108}, - [8314] = {.lex_state = 40, .external_lex_state = 98}, - [8315] = {.lex_state = 40, .external_lex_state = 111}, - [8316] = {.lex_state = 178, .external_lex_state = 108}, - [8317] = {.lex_state = 40, .external_lex_state = 98}, - [8318] = {.lex_state = 41, .external_lex_state = 98}, - [8319] = {.lex_state = 178, .external_lex_state = 108}, - [8320] = {.lex_state = 178, .external_lex_state = 108}, + [8314] = {.lex_state = 178, .external_lex_state = 108}, + [8315] = {.lex_state = 178, .external_lex_state = 108}, + [8316] = {.lex_state = 178, .external_lex_state = 99}, + [8317] = {.lex_state = 178, .external_lex_state = 108}, + [8318] = {.lex_state = 178, .external_lex_state = 99}, + [8319] = {.lex_state = 186, .external_lex_state = 112}, + [8320] = {.lex_state = 186, .external_lex_state = 112}, [8321] = {.lex_state = 178, .external_lex_state = 108}, [8322] = {.lex_state = 178, .external_lex_state = 108}, - [8323] = {.lex_state = 175, .external_lex_state = 113}, - [8324] = {.lex_state = 175, .external_lex_state = 113}, - [8325] = {.lex_state = 41, .external_lex_state = 98}, - [8326] = {.lex_state = 178, .external_lex_state = 109}, - [8327] = {.lex_state = 175, .external_lex_state = 113}, - [8328] = {.lex_state = 175, .external_lex_state = 113}, - [8329] = {.lex_state = 178, .external_lex_state = 109}, - [8330] = {.lex_state = 175, .external_lex_state = 113}, - [8331] = {.lex_state = 41, .external_lex_state = 98}, - [8332] = {.lex_state = 175, .external_lex_state = 113}, - [8333] = {.lex_state = 175, .external_lex_state = 113}, - [8334] = {.lex_state = 41, .external_lex_state = 98}, - [8335] = {.lex_state = 40, .external_lex_state = 111}, - [8336] = {.lex_state = 175, .external_lex_state = 113}, - [8337] = {.lex_state = 41, .external_lex_state = 98}, - [8338] = {.lex_state = 178, .external_lex_state = 109}, - [8339] = {.lex_state = 175, .external_lex_state = 113}, - [8340] = {.lex_state = 175, .external_lex_state = 113}, - [8341] = {.lex_state = 175, .external_lex_state = 113}, - [8342] = {.lex_state = 41, .external_lex_state = 98}, - [8343] = {.lex_state = 41, .external_lex_state = 98}, - [8344] = {.lex_state = 178, .external_lex_state = 98}, - [8345] = {.lex_state = 178, .external_lex_state = 109}, - [8346] = {.lex_state = 175, .external_lex_state = 113}, - [8347] = {.lex_state = 41, .external_lex_state = 98}, - [8348] = {.lex_state = 41, .external_lex_state = 98}, - [8349] = {.lex_state = 175, .external_lex_state = 113}, - [8350] = {.lex_state = 178, .external_lex_state = 98}, - [8351] = {.lex_state = 178, .external_lex_state = 109}, - [8352] = {.lex_state = 41, .external_lex_state = 98}, - [8353] = {.lex_state = 175, .external_lex_state = 113}, - [8354] = {.lex_state = 178, .external_lex_state = 109}, - [8355] = {.lex_state = 175, .external_lex_state = 113}, - [8356] = {.lex_state = 175, .external_lex_state = 113}, - [8357] = {.lex_state = 175, .external_lex_state = 113}, - [8358] = {.lex_state = 175, .external_lex_state = 113}, - [8359] = {.lex_state = 178, .external_lex_state = 98}, - [8360] = {.lex_state = 40, .external_lex_state = 111}, - [8361] = {.lex_state = 175, .external_lex_state = 113}, - [8362] = {.lex_state = 175, .external_lex_state = 113}, - [8363] = {.lex_state = 175, .external_lex_state = 113}, - [8364] = {.lex_state = 178, .external_lex_state = 98}, - [8365] = {.lex_state = 186, .external_lex_state = 112}, - [8366] = {.lex_state = 40, .external_lex_state = 111}, - [8367] = {.lex_state = 175, .external_lex_state = 113}, - [8368] = {.lex_state = 178, .external_lex_state = 109}, - [8369] = {.lex_state = 175, .external_lex_state = 113}, + [8323] = {.lex_state = 178, .external_lex_state = 108}, + [8324] = {.lex_state = 178, .external_lex_state = 108}, + [8325] = {.lex_state = 178, .external_lex_state = 108}, + [8326] = {.lex_state = 40, .external_lex_state = 99}, + [8327] = {.lex_state = 40, .external_lex_state = 99}, + [8328] = {.lex_state = 40, .external_lex_state = 99}, + [8329] = {.lex_state = 40, .external_lex_state = 99}, + [8330] = {.lex_state = 40, .external_lex_state = 99}, + [8331] = {.lex_state = 178, .external_lex_state = 108}, + [8332] = {.lex_state = 178, .external_lex_state = 108}, + [8333] = {.lex_state = 178, .external_lex_state = 108}, + [8334] = {.lex_state = 178, .external_lex_state = 108}, + [8335] = {.lex_state = 178, .external_lex_state = 108}, + [8336] = {.lex_state = 178, .external_lex_state = 108}, + [8337] = {.lex_state = 178, .external_lex_state = 108}, + [8338] = {.lex_state = 178, .external_lex_state = 108}, + [8339] = {.lex_state = 178, .external_lex_state = 108}, + [8340] = {.lex_state = 178, .external_lex_state = 108}, + [8341] = {.lex_state = 178, .external_lex_state = 108}, + [8342] = {.lex_state = 40, .external_lex_state = 99}, + [8343] = {.lex_state = 178, .external_lex_state = 108}, + [8344] = {.lex_state = 178, .external_lex_state = 108}, + [8345] = {.lex_state = 178, .external_lex_state = 108}, + [8346] = {.lex_state = 178, .external_lex_state = 108}, + [8347] = {.lex_state = 40, .external_lex_state = 99}, + [8348] = {.lex_state = 178, .external_lex_state = 108}, + [8349] = {.lex_state = 178, .external_lex_state = 108}, + [8350] = {.lex_state = 178, .external_lex_state = 108}, + [8351] = {.lex_state = 178, .external_lex_state = 108}, + [8352] = {.lex_state = 40, .external_lex_state = 99}, + [8353] = {.lex_state = 186, .external_lex_state = 112}, + [8354] = {.lex_state = 40, .external_lex_state = 99}, + [8355] = {.lex_state = 40, .external_lex_state = 99}, + [8356] = {.lex_state = 40, .external_lex_state = 99}, + [8357] = {.lex_state = 178, .external_lex_state = 108}, + [8358] = {.lex_state = 178, .external_lex_state = 108}, + [8359] = {.lex_state = 178, .external_lex_state = 108}, + [8360] = {.lex_state = 178, .external_lex_state = 108}, + [8361] = {.lex_state = 178, .external_lex_state = 108}, + [8362] = {.lex_state = 178, .external_lex_state = 108}, + [8363] = {.lex_state = 40, .external_lex_state = 111}, + [8364] = {.lex_state = 41, .external_lex_state = 99}, + [8365] = {.lex_state = 175, .external_lex_state = 113}, + [8366] = {.lex_state = 41, .external_lex_state = 99}, + [8367] = {.lex_state = 41, .external_lex_state = 99}, + [8368] = {.lex_state = 41, .external_lex_state = 99}, + [8369] = {.lex_state = 41, .external_lex_state = 99}, [8370] = {.lex_state = 175, .external_lex_state = 113}, - [8371] = {.lex_state = 175, .external_lex_state = 113}, - [8372] = {.lex_state = 178, .external_lex_state = 109}, + [8371] = {.lex_state = 41, .external_lex_state = 99}, + [8372] = {.lex_state = 175, .external_lex_state = 113}, [8373] = {.lex_state = 175, .external_lex_state = 113}, - [8374] = {.lex_state = 175, .external_lex_state = 113}, - [8375] = {.lex_state = 41, .external_lex_state = 98}, - [8376] = {.lex_state = 178, .external_lex_state = 98}, - [8377] = {.lex_state = 178, .external_lex_state = 109}, + [8374] = {.lex_state = 41, .external_lex_state = 99}, + [8375] = {.lex_state = 41, .external_lex_state = 99}, + [8376] = {.lex_state = 41, .external_lex_state = 99}, + [8377] = {.lex_state = 41, .external_lex_state = 99}, [8378] = {.lex_state = 175, .external_lex_state = 113}, - [8379] = {.lex_state = 175, .external_lex_state = 113}, - [8380] = {.lex_state = 175, .external_lex_state = 113}, - [8381] = {.lex_state = 41, .external_lex_state = 98}, - [8382] = {.lex_state = 178, .external_lex_state = 98}, - [8383] = {.lex_state = 175, .external_lex_state = 113}, - [8384] = {.lex_state = 40, .external_lex_state = 111}, - [8385] = {.lex_state = 186, .external_lex_state = 112}, + [8379] = {.lex_state = 41, .external_lex_state = 99}, + [8380] = {.lex_state = 41, .external_lex_state = 99}, + [8381] = {.lex_state = 41, .external_lex_state = 99}, + [8382] = {.lex_state = 175, .external_lex_state = 113}, + [8383] = {.lex_state = 41, .external_lex_state = 99}, + [8384] = {.lex_state = 175, .external_lex_state = 113}, + [8385] = {.lex_state = 40, .external_lex_state = 111}, [8386] = {.lex_state = 175, .external_lex_state = 113}, [8387] = {.lex_state = 40, .external_lex_state = 111}, [8388] = {.lex_state = 175, .external_lex_state = 113}, - [8389] = {.lex_state = 178, .external_lex_state = 98}, - [8390] = {.lex_state = 186, .external_lex_state = 112}, + [8389] = {.lex_state = 175, .external_lex_state = 113}, + [8390] = {.lex_state = 40, .external_lex_state = 111}, [8391] = {.lex_state = 175, .external_lex_state = 113}, [8392] = {.lex_state = 175, .external_lex_state = 113}, - [8393] = {.lex_state = 178, .external_lex_state = 98}, - [8394] = {.lex_state = 186, .external_lex_state = 112}, + [8393] = {.lex_state = 175, .external_lex_state = 113}, + [8394] = {.lex_state = 175, .external_lex_state = 113}, [8395] = {.lex_state = 175, .external_lex_state = 113}, - [8396] = {.lex_state = 186, .external_lex_state = 112}, - [8397] = {.lex_state = 186, .external_lex_state = 112}, + [8396] = {.lex_state = 175, .external_lex_state = 113}, + [8397] = {.lex_state = 178, .external_lex_state = 99}, [8398] = {.lex_state = 175, .external_lex_state = 113}, [8399] = {.lex_state = 186, .external_lex_state = 112}, [8400] = {.lex_state = 175, .external_lex_state = 113}, [8401] = {.lex_state = 175, .external_lex_state = 113}, - [8402] = {.lex_state = 186, .external_lex_state = 112}, - [8403] = {.lex_state = 178, .external_lex_state = 98}, - [8404] = {.lex_state = 175, .external_lex_state = 113}, - [8405] = {.lex_state = 178, .external_lex_state = 109}, - [8406] = {.lex_state = 41, .external_lex_state = 98}, - [8407] = {.lex_state = 175, .external_lex_state = 113}, - [8408] = {.lex_state = 41, .external_lex_state = 98}, + [8402] = {.lex_state = 175, .external_lex_state = 113}, + [8403] = {.lex_state = 40, .external_lex_state = 111}, + [8404] = {.lex_state = 40, .external_lex_state = 111}, + [8405] = {.lex_state = 175, .external_lex_state = 113}, + [8406] = {.lex_state = 40, .external_lex_state = 111}, + [8407] = {.lex_state = 186, .external_lex_state = 112}, + [8408] = {.lex_state = 186, .external_lex_state = 112}, [8409] = {.lex_state = 175, .external_lex_state = 113}, - [8410] = {.lex_state = 175, .external_lex_state = 113}, - [8411] = {.lex_state = 186, .external_lex_state = 112}, - [8412] = {.lex_state = 186, .external_lex_state = 112}, + [8410] = {.lex_state = 178, .external_lex_state = 109}, + [8411] = {.lex_state = 175, .external_lex_state = 113}, + [8412] = {.lex_state = 175, .external_lex_state = 113}, [8413] = {.lex_state = 40, .external_lex_state = 111}, - [8414] = {.lex_state = 186, .external_lex_state = 112}, - [8415] = {.lex_state = 175, .external_lex_state = 113}, + [8414] = {.lex_state = 175, .external_lex_state = 113}, + [8415] = {.lex_state = 186, .external_lex_state = 112}, [8416] = {.lex_state = 175, .external_lex_state = 113}, [8417] = {.lex_state = 175, .external_lex_state = 113}, - [8418] = {.lex_state = 41, .external_lex_state = 98}, - [8419] = {.lex_state = 41, .external_lex_state = 98}, - [8420] = {.lex_state = 186, .external_lex_state = 112}, - [8421] = {.lex_state = 40, .external_lex_state = 111}, + [8418] = {.lex_state = 186, .external_lex_state = 112}, + [8419] = {.lex_state = 186, .external_lex_state = 112}, + [8420] = {.lex_state = 175, .external_lex_state = 113}, + [8421] = {.lex_state = 178, .external_lex_state = 99}, [8422] = {.lex_state = 175, .external_lex_state = 113}, [8423] = {.lex_state = 175, .external_lex_state = 113}, [8424] = {.lex_state = 175, .external_lex_state = 113}, [8425] = {.lex_state = 175, .external_lex_state = 113}, - [8426] = {.lex_state = 41, .external_lex_state = 98}, - [8427] = {.lex_state = 186, .external_lex_state = 112}, - [8428] = {.lex_state = 175, .external_lex_state = 113}, - [8429] = {.lex_state = 41, .external_lex_state = 98}, - [8430] = {.lex_state = 175, .external_lex_state = 113}, + [8426] = {.lex_state = 175, .external_lex_state = 113}, + [8427] = {.lex_state = 175, .external_lex_state = 113}, + [8428] = {.lex_state = 186, .external_lex_state = 112}, + [8429] = {.lex_state = 175, .external_lex_state = 113}, + [8430] = {.lex_state = 186, .external_lex_state = 112}, [8431] = {.lex_state = 175, .external_lex_state = 113}, - [8432] = {.lex_state = 41, .external_lex_state = 98}, + [8432] = {.lex_state = 186, .external_lex_state = 112}, [8433] = {.lex_state = 175, .external_lex_state = 113}, - [8434] = {.lex_state = 40, .external_lex_state = 111}, - [8435] = {.lex_state = 175, .external_lex_state = 113}, - [8436] = {.lex_state = 178, .external_lex_state = 98}, + [8434] = {.lex_state = 186, .external_lex_state = 112}, + [8435] = {.lex_state = 186, .external_lex_state = 112}, + [8436] = {.lex_state = 40, .external_lex_state = 111}, [8437] = {.lex_state = 40, .external_lex_state = 111}, [8438] = {.lex_state = 178, .external_lex_state = 109}, - [8439] = {.lex_state = 175, .external_lex_state = 113}, + [8439] = {.lex_state = 176, .external_lex_state = 109}, [8440] = {.lex_state = 175, .external_lex_state = 113}, - [8441] = {.lex_state = 175, .external_lex_state = 113}, - [8442] = {.lex_state = 178, .external_lex_state = 109}, - [8443] = {.lex_state = 175, .external_lex_state = 113}, + [8441] = {.lex_state = 178, .external_lex_state = 109}, + [8442] = {.lex_state = 175, .external_lex_state = 113}, + [8443] = {.lex_state = 176, .external_lex_state = 109}, [8444] = {.lex_state = 175, .external_lex_state = 113}, - [8445] = {.lex_state = 41, .external_lex_state = 98}, - [8446] = {.lex_state = 41, .external_lex_state = 98}, - [8447] = {.lex_state = 175, .external_lex_state = 113}, - [8448] = {.lex_state = 40, .external_lex_state = 111}, - [8449] = {.lex_state = 186, .external_lex_state = 112}, + [8445] = {.lex_state = 175, .external_lex_state = 113}, + [8446] = {.lex_state = 175, .external_lex_state = 113}, + [8447] = {.lex_state = 178, .external_lex_state = 99}, + [8448] = {.lex_state = 186, .external_lex_state = 112}, + [8449] = {.lex_state = 175, .external_lex_state = 113}, [8450] = {.lex_state = 175, .external_lex_state = 113}, - [8451] = {.lex_state = 186, .external_lex_state = 112}, + [8451] = {.lex_state = 178, .external_lex_state = 99}, [8452] = {.lex_state = 175, .external_lex_state = 113}, [8453] = {.lex_state = 186, .external_lex_state = 112}, - [8454] = {.lex_state = 41, .external_lex_state = 98}, - [8455] = {.lex_state = 175, .external_lex_state = 113}, - [8456] = {.lex_state = 175, .external_lex_state = 113}, - [8457] = {.lex_state = 40, .external_lex_state = 111}, - [8458] = {.lex_state = 41, .external_lex_state = 98}, + [8454] = {.lex_state = 178, .external_lex_state = 99}, + [8455] = {.lex_state = 41, .external_lex_state = 99}, + [8456] = {.lex_state = 41, .external_lex_state = 99}, + [8457] = {.lex_state = 175, .external_lex_state = 113}, + [8458] = {.lex_state = 41, .external_lex_state = 99}, [8459] = {.lex_state = 175, .external_lex_state = 113}, - [8460] = {.lex_state = 175, .external_lex_state = 113}, - [8461] = {.lex_state = 175, .external_lex_state = 113}, - [8462] = {.lex_state = 178, .external_lex_state = 98}, - [8463] = {.lex_state = 175, .external_lex_state = 113}, - [8464] = {.lex_state = 175, .external_lex_state = 113}, - [8465] = {.lex_state = 69, .external_lex_state = 98}, - [8466] = {.lex_state = 178, .external_lex_state = 109}, - [8467] = {.lex_state = 40, .external_lex_state = 111}, + [8460] = {.lex_state = 41, .external_lex_state = 99}, + [8461] = {.lex_state = 41, .external_lex_state = 99}, + [8462] = {.lex_state = 175, .external_lex_state = 113}, + [8463] = {.lex_state = 178, .external_lex_state = 99}, + [8464] = {.lex_state = 178, .external_lex_state = 99}, + [8465] = {.lex_state = 175, .external_lex_state = 113}, + [8466] = {.lex_state = 178, .external_lex_state = 99}, + [8467] = {.lex_state = 178, .external_lex_state = 109}, [8468] = {.lex_state = 178, .external_lex_state = 109}, - [8469] = {.lex_state = 175, .external_lex_state = 113}, - [8470] = {.lex_state = 178, .external_lex_state = 98}, - [8471] = {.lex_state = 41, .external_lex_state = 98}, - [8472] = {.lex_state = 175, .external_lex_state = 113}, + [8469] = {.lex_state = 178, .external_lex_state = 109}, + [8470] = {.lex_state = 175, .external_lex_state = 113}, + [8471] = {.lex_state = 69, .external_lex_state = 99}, + [8472] = {.lex_state = 178, .external_lex_state = 99}, [8473] = {.lex_state = 175, .external_lex_state = 113}, - [8474] = {.lex_state = 175, .external_lex_state = 113}, - [8475] = {.lex_state = 40, .external_lex_state = 111}, - [8476] = {.lex_state = 175, .external_lex_state = 113}, - [8477] = {.lex_state = 178, .external_lex_state = 109}, - [8478] = {.lex_state = 175, .external_lex_state = 113}, - [8479] = {.lex_state = 40, .external_lex_state = 111}, - [8480] = {.lex_state = 40, .external_lex_state = 111}, - [8481] = {.lex_state = 69, .external_lex_state = 98}, - [8482] = {.lex_state = 175, .external_lex_state = 113}, - [8483] = {.lex_state = 175, .external_lex_state = 113}, - [8484] = {.lex_state = 41, .external_lex_state = 98}, - [8485] = {.lex_state = 186, .external_lex_state = 112}, - [8486] = {.lex_state = 176, .external_lex_state = 109}, - [8487] = {.lex_state = 178, .external_lex_state = 98}, - [8488] = {.lex_state = 41, .external_lex_state = 98}, - [8489] = {.lex_state = 178, .external_lex_state = 98}, + [8474] = {.lex_state = 186, .external_lex_state = 112}, + [8475] = {.lex_state = 178, .external_lex_state = 99}, + [8476] = {.lex_state = 40, .external_lex_state = 111}, + [8477] = {.lex_state = 40, .external_lex_state = 111}, + [8478] = {.lex_state = 40, .external_lex_state = 111}, + [8479] = {.lex_state = 178, .external_lex_state = 99}, + [8480] = {.lex_state = 175, .external_lex_state = 113}, + [8481] = {.lex_state = 40, .external_lex_state = 111}, + [8482] = {.lex_state = 178, .external_lex_state = 99}, + [8483] = {.lex_state = 178, .external_lex_state = 109}, + [8484] = {.lex_state = 175, .external_lex_state = 113}, + [8485] = {.lex_state = 178, .external_lex_state = 99}, + [8486] = {.lex_state = 175, .external_lex_state = 113}, + [8487] = {.lex_state = 178, .external_lex_state = 109}, + [8488] = {.lex_state = 178, .external_lex_state = 99}, + [8489] = {.lex_state = 178, .external_lex_state = 109}, [8490] = {.lex_state = 175, .external_lex_state = 113}, - [8491] = {.lex_state = 178, .external_lex_state = 109}, - [8492] = {.lex_state = 176, .external_lex_state = 109}, + [8491] = {.lex_state = 175, .external_lex_state = 113}, + [8492] = {.lex_state = 175, .external_lex_state = 113}, [8493] = {.lex_state = 175, .external_lex_state = 113}, - [8494] = {.lex_state = 178, .external_lex_state = 114}, - [8495] = {.lex_state = 178, .external_lex_state = 114}, - [8496] = {.lex_state = 178, .external_lex_state = 114}, - [8497] = {.lex_state = 178, .external_lex_state = 114}, - [8498] = {.lex_state = 178, .external_lex_state = 114}, - [8499] = {.lex_state = 178, .external_lex_state = 109}, - [8500] = {.lex_state = 178, .external_lex_state = 114}, + [8494] = {.lex_state = 186, .external_lex_state = 112}, + [8495] = {.lex_state = 178, .external_lex_state = 109}, + [8496] = {.lex_state = 178, .external_lex_state = 109}, + [8497] = {.lex_state = 175, .external_lex_state = 113}, + [8498] = {.lex_state = 178, .external_lex_state = 109}, + [8499] = {.lex_state = 175, .external_lex_state = 113}, + [8500] = {.lex_state = 175, .external_lex_state = 113}, [8501] = {.lex_state = 178, .external_lex_state = 109}, - [8502] = {.lex_state = 178, .external_lex_state = 114}, - [8503] = {.lex_state = 178, .external_lex_state = 109}, - [8504] = {.lex_state = 175, .external_lex_state = 107}, + [8502] = {.lex_state = 178, .external_lex_state = 109}, + [8503] = {.lex_state = 175, .external_lex_state = 113}, + [8504] = {.lex_state = 175, .external_lex_state = 113}, [8505] = {.lex_state = 178, .external_lex_state = 109}, - [8506] = {.lex_state = 175, .external_lex_state = 113}, + [8506] = {.lex_state = 41, .external_lex_state = 99}, [8507] = {.lex_state = 178, .external_lex_state = 109}, - [8508] = {.lex_state = 178, .external_lex_state = 109}, - [8509] = {.lex_state = 178, .external_lex_state = 114}, - [8510] = {.lex_state = 183, .external_lex_state = 98}, - [8511] = {.lex_state = 178, .external_lex_state = 114}, - [8512] = {.lex_state = 178, .external_lex_state = 114}, - [8513] = {.lex_state = 178, .external_lex_state = 109}, - [8514] = {.lex_state = 178, .external_lex_state = 114}, - [8515] = {.lex_state = 178, .external_lex_state = 109}, - [8516] = {.lex_state = 175, .external_lex_state = 113}, - [8517] = {.lex_state = 178, .external_lex_state = 114}, - [8518] = {.lex_state = 178, .external_lex_state = 109}, - [8519] = {.lex_state = 178, .external_lex_state = 114}, - [8520] = {.lex_state = 178, .external_lex_state = 109}, - [8521] = {.lex_state = 178, .external_lex_state = 114}, - [8522] = {.lex_state = 178, .external_lex_state = 109}, - [8523] = {.lex_state = 40, .external_lex_state = 98}, - [8524] = {.lex_state = 178, .external_lex_state = 109}, - [8525] = {.lex_state = 178, .external_lex_state = 114}, - [8526] = {.lex_state = 178, .external_lex_state = 109}, - [8527] = {.lex_state = 178, .external_lex_state = 114}, - [8528] = {.lex_state = 178, .external_lex_state = 114}, - [8529] = {.lex_state = 178, .external_lex_state = 109}, + [8508] = {.lex_state = 175, .external_lex_state = 113}, + [8509] = {.lex_state = 175, .external_lex_state = 113}, + [8510] = {.lex_state = 175, .external_lex_state = 113}, + [8511] = {.lex_state = 175, .external_lex_state = 113}, + [8512] = {.lex_state = 69, .external_lex_state = 99}, + [8513] = {.lex_state = 175, .external_lex_state = 113}, + [8514] = {.lex_state = 175, .external_lex_state = 113}, + [8515] = {.lex_state = 186, .external_lex_state = 112}, + [8516] = {.lex_state = 186, .external_lex_state = 112}, + [8517] = {.lex_state = 175, .external_lex_state = 113}, + [8518] = {.lex_state = 175, .external_lex_state = 113}, + [8519] = {.lex_state = 175, .external_lex_state = 113}, + [8520] = {.lex_state = 175, .external_lex_state = 113}, + [8521] = {.lex_state = 41, .external_lex_state = 99}, + [8522] = {.lex_state = 175, .external_lex_state = 113}, + [8523] = {.lex_state = 41, .external_lex_state = 99}, + [8524] = {.lex_state = 40, .external_lex_state = 111}, + [8525] = {.lex_state = 175, .external_lex_state = 113}, + [8526] = {.lex_state = 41, .external_lex_state = 99}, + [8527] = {.lex_state = 175, .external_lex_state = 113}, + [8528] = {.lex_state = 175, .external_lex_state = 113}, + [8529] = {.lex_state = 41, .external_lex_state = 99}, [8530] = {.lex_state = 175, .external_lex_state = 113}, - [8531] = {.lex_state = 178, .external_lex_state = 114}, - [8532] = {.lex_state = 178, .external_lex_state = 114}, - [8533] = {.lex_state = 178, .external_lex_state = 109}, - [8534] = {.lex_state = 178, .external_lex_state = 109}, - [8535] = {.lex_state = 178, .external_lex_state = 114}, - [8536] = {.lex_state = 178, .external_lex_state = 109}, + [8531] = {.lex_state = 175, .external_lex_state = 113}, + [8532] = {.lex_state = 175, .external_lex_state = 113}, + [8533] = {.lex_state = 41, .external_lex_state = 99}, + [8534] = {.lex_state = 40, .external_lex_state = 111}, + [8535] = {.lex_state = 41, .external_lex_state = 99}, + [8536] = {.lex_state = 178, .external_lex_state = 114}, [8537] = {.lex_state = 178, .external_lex_state = 114}, - [8538] = {.lex_state = 40, .external_lex_state = 111}, + [8538] = {.lex_state = 178, .external_lex_state = 114}, [8539] = {.lex_state = 178, .external_lex_state = 109}, - [8540] = {.lex_state = 178, .external_lex_state = 109}, - [8541] = {.lex_state = 178, .external_lex_state = 114}, - [8542] = {.lex_state = 178, .external_lex_state = 114}, - [8543] = {.lex_state = 175, .external_lex_state = 113}, - [8544] = {.lex_state = 178, .external_lex_state = 114}, + [8540] = {.lex_state = 175, .external_lex_state = 113}, + [8541] = {.lex_state = 178, .external_lex_state = 109}, + [8542] = {.lex_state = 178, .external_lex_state = 109}, + [8543] = {.lex_state = 178, .external_lex_state = 114}, + [8544] = {.lex_state = 175, .external_lex_state = 113}, [8545] = {.lex_state = 178, .external_lex_state = 114}, [8546] = {.lex_state = 178, .external_lex_state = 109}, - [8547] = {.lex_state = 178, .external_lex_state = 114}, - [8548] = {.lex_state = 178, .external_lex_state = 109}, - [8549] = {.lex_state = 178, .external_lex_state = 109}, - [8550] = {.lex_state = 175, .external_lex_state = 113}, - [8551] = {.lex_state = 178, .external_lex_state = 109}, - [8552] = {.lex_state = 178, .external_lex_state = 109}, - [8553] = {.lex_state = 178, .external_lex_state = 109}, - [8554] = {.lex_state = 178, .external_lex_state = 109}, - [8555] = {.lex_state = 178, .external_lex_state = 114}, - [8556] = {.lex_state = 175, .external_lex_state = 113}, - [8557] = {.lex_state = 178, .external_lex_state = 114}, - [8558] = {.lex_state = 175, .external_lex_state = 107}, - [8559] = {.lex_state = 175, .external_lex_state = 113}, + [8547] = {.lex_state = 186, .external_lex_state = 112}, + [8548] = {.lex_state = 178, .external_lex_state = 114}, + [8549] = {.lex_state = 178, .external_lex_state = 114}, + [8550] = {.lex_state = 178, .external_lex_state = 109}, + [8551] = {.lex_state = 178, .external_lex_state = 114}, + [8552] = {.lex_state = 178, .external_lex_state = 114}, + [8553] = {.lex_state = 178, .external_lex_state = 114}, + [8554] = {.lex_state = 178, .external_lex_state = 114}, + [8555] = {.lex_state = 186, .external_lex_state = 112}, + [8556] = {.lex_state = 178, .external_lex_state = 114}, + [8557] = {.lex_state = 178, .external_lex_state = 99}, + [8558] = {.lex_state = 178, .external_lex_state = 109}, + [8559] = {.lex_state = 178, .external_lex_state = 114}, [8560] = {.lex_state = 178, .external_lex_state = 114}, [8561] = {.lex_state = 178, .external_lex_state = 114}, [8562] = {.lex_state = 178, .external_lex_state = 114}, [8563] = {.lex_state = 178, .external_lex_state = 114}, - [8564] = {.lex_state = 178, .external_lex_state = 114}, + [8564] = {.lex_state = 178, .external_lex_state = 109}, [8565] = {.lex_state = 178, .external_lex_state = 114}, - [8566] = {.lex_state = 178, .external_lex_state = 114}, - [8567] = {.lex_state = 178, .external_lex_state = 114}, + [8566] = {.lex_state = 186, .external_lex_state = 112}, + [8567] = {.lex_state = 183, .external_lex_state = 99}, [8568] = {.lex_state = 178, .external_lex_state = 109}, [8569] = {.lex_state = 178, .external_lex_state = 109}, - [8570] = {.lex_state = 178, .external_lex_state = 114}, - [8571] = {.lex_state = 178, .external_lex_state = 114}, - [8572] = {.lex_state = 40, .external_lex_state = 111}, - [8573] = {.lex_state = 175, .external_lex_state = 113}, - [8574] = {.lex_state = 178, .external_lex_state = 109}, - [8575] = {.lex_state = 178, .external_lex_state = 109}, - [8576] = {.lex_state = 178, .external_lex_state = 114}, - [8577] = {.lex_state = 178, .external_lex_state = 114}, - [8578] = {.lex_state = 40, .external_lex_state = 111}, + [8570] = {.lex_state = 178, .external_lex_state = 109}, + [8571] = {.lex_state = 175, .external_lex_state = 107}, + [8572] = {.lex_state = 178, .external_lex_state = 109}, + [8573] = {.lex_state = 41, .external_lex_state = 99}, + [8574] = {.lex_state = 178, .external_lex_state = 114}, + [8575] = {.lex_state = 40, .external_lex_state = 99}, + [8576] = {.lex_state = 178, .external_lex_state = 109}, + [8577] = {.lex_state = 178, .external_lex_state = 109}, + [8578] = {.lex_state = 178, .external_lex_state = 109}, [8579] = {.lex_state = 178, .external_lex_state = 114}, [8580] = {.lex_state = 178, .external_lex_state = 114}, - [8581] = {.lex_state = 175, .external_lex_state = 113}, + [8581] = {.lex_state = 40, .external_lex_state = 99}, [8582] = {.lex_state = 178, .external_lex_state = 114}, - [8583] = {.lex_state = 178, .external_lex_state = 114}, - [8584] = {.lex_state = 178, .external_lex_state = 109}, + [8583] = {.lex_state = 178, .external_lex_state = 109}, + [8584] = {.lex_state = 178, .external_lex_state = 114}, [8585] = {.lex_state = 178, .external_lex_state = 114}, - [8586] = {.lex_state = 178, .external_lex_state = 109}, + [8586] = {.lex_state = 178, .external_lex_state = 114}, [8587] = {.lex_state = 178, .external_lex_state = 109}, [8588] = {.lex_state = 178, .external_lex_state = 109}, - [8589] = {.lex_state = 178, .external_lex_state = 114}, - [8590] = {.lex_state = 175, .external_lex_state = 113}, - [8591] = {.lex_state = 178, .external_lex_state = 114}, - [8592] = {.lex_state = 178, .external_lex_state = 114}, - [8593] = {.lex_state = 178, .external_lex_state = 114}, + [8589] = {.lex_state = 178, .external_lex_state = 109}, + [8590] = {.lex_state = 178, .external_lex_state = 109}, + [8591] = {.lex_state = 178, .external_lex_state = 109}, + [8592] = {.lex_state = 178, .external_lex_state = 109}, + [8593] = {.lex_state = 40, .external_lex_state = 111}, [8594] = {.lex_state = 178, .external_lex_state = 114}, - [8595] = {.lex_state = 186, .external_lex_state = 112}, - [8596] = {.lex_state = 178, .external_lex_state = 109}, - [8597] = {.lex_state = 178, .external_lex_state = 109}, - [8598] = {.lex_state = 175, .external_lex_state = 113}, + [8595] = {.lex_state = 178, .external_lex_state = 114}, + [8596] = {.lex_state = 178, .external_lex_state = 114}, + [8597] = {.lex_state = 40, .external_lex_state = 111}, + [8598] = {.lex_state = 178, .external_lex_state = 109}, [8599] = {.lex_state = 178, .external_lex_state = 114}, [8600] = {.lex_state = 178, .external_lex_state = 114}, - [8601] = {.lex_state = 178, .external_lex_state = 114}, + [8601] = {.lex_state = 178, .external_lex_state = 109}, [8602] = {.lex_state = 178, .external_lex_state = 109}, - [8603] = {.lex_state = 175, .external_lex_state = 113}, + [8603] = {.lex_state = 178, .external_lex_state = 109}, [8604] = {.lex_state = 178, .external_lex_state = 109}, - [8605] = {.lex_state = 178, .external_lex_state = 98}, - [8606] = {.lex_state = 175, .external_lex_state = 113}, - [8607] = {.lex_state = 40, .external_lex_state = 111}, - [8608] = {.lex_state = 178, .external_lex_state = 109}, + [8605] = {.lex_state = 178, .external_lex_state = 109}, + [8606] = {.lex_state = 178, .external_lex_state = 114}, + [8607] = {.lex_state = 178, .external_lex_state = 109}, + [8608] = {.lex_state = 178, .external_lex_state = 114}, [8609] = {.lex_state = 178, .external_lex_state = 109}, [8610] = {.lex_state = 178, .external_lex_state = 109}, - [8611] = {.lex_state = 178, .external_lex_state = 109}, + [8611] = {.lex_state = 178, .external_lex_state = 114}, [8612] = {.lex_state = 175, .external_lex_state = 113}, - [8613] = {.lex_state = 178, .external_lex_state = 114}, - [8614] = {.lex_state = 175, .external_lex_state = 113}, - [8615] = {.lex_state = 175, .external_lex_state = 107}, - [8616] = {.lex_state = 175, .external_lex_state = 107}, - [8617] = {.lex_state = 175, .external_lex_state = 113}, - [8618] = {.lex_state = 175, .external_lex_state = 107}, + [8613] = {.lex_state = 175, .external_lex_state = 113}, + [8614] = {.lex_state = 40, .external_lex_state = 111}, + [8615] = {.lex_state = 178, .external_lex_state = 109}, + [8616] = {.lex_state = 178, .external_lex_state = 114}, + [8617] = {.lex_state = 178, .external_lex_state = 114}, + [8618] = {.lex_state = 178, .external_lex_state = 109}, [8619] = {.lex_state = 178, .external_lex_state = 114}, - [8620] = {.lex_state = 178, .external_lex_state = 109}, + [8620] = {.lex_state = 178, .external_lex_state = 114}, [8621] = {.lex_state = 178, .external_lex_state = 114}, [8622] = {.lex_state = 178, .external_lex_state = 114}, [8623] = {.lex_state = 178, .external_lex_state = 114}, [8624] = {.lex_state = 178, .external_lex_state = 109}, - [8625] = {.lex_state = 175, .external_lex_state = 113}, - [8626] = {.lex_state = 178, .external_lex_state = 114}, + [8625] = {.lex_state = 178, .external_lex_state = 109}, + [8626] = {.lex_state = 178, .external_lex_state = 109}, [8627] = {.lex_state = 178, .external_lex_state = 114}, - [8628] = {.lex_state = 178, .external_lex_state = 109}, - [8629] = {.lex_state = 178, .external_lex_state = 114}, - [8630] = {.lex_state = 175, .external_lex_state = 113}, - [8631] = {.lex_state = 178, .external_lex_state = 114}, + [8628] = {.lex_state = 175, .external_lex_state = 107}, + [8629] = {.lex_state = 175, .external_lex_state = 113}, + [8630] = {.lex_state = 178, .external_lex_state = 114}, + [8631] = {.lex_state = 178, .external_lex_state = 115}, [8632] = {.lex_state = 178, .external_lex_state = 114}, [8633] = {.lex_state = 178, .external_lex_state = 114}, - [8634] = {.lex_state = 178, .external_lex_state = 114}, + [8634] = {.lex_state = 178, .external_lex_state = 109}, [8635] = {.lex_state = 178, .external_lex_state = 114}, [8636] = {.lex_state = 178, .external_lex_state = 114}, - [8637] = {.lex_state = 178, .external_lex_state = 114}, - [8638] = {.lex_state = 178, .external_lex_state = 114}, - [8639] = {.lex_state = 178, .external_lex_state = 109}, + [8637] = {.lex_state = 175, .external_lex_state = 107}, + [8638] = {.lex_state = 178, .external_lex_state = 109}, + [8639] = {.lex_state = 175, .external_lex_state = 113}, [8640] = {.lex_state = 178, .external_lex_state = 109}, [8641] = {.lex_state = 178, .external_lex_state = 114}, [8642] = {.lex_state = 178, .external_lex_state = 114}, - [8643] = {.lex_state = 175, .external_lex_state = 113}, - [8644] = {.lex_state = 178, .external_lex_state = 109}, - [8645] = {.lex_state = 178, .external_lex_state = 109}, - [8646] = {.lex_state = 178, .external_lex_state = 109}, - [8647] = {.lex_state = 178, .external_lex_state = 114}, - [8648] = {.lex_state = 178, .external_lex_state = 109}, - [8649] = {.lex_state = 175, .external_lex_state = 113}, + [8643] = {.lex_state = 178, .external_lex_state = 114}, + [8644] = {.lex_state = 178, .external_lex_state = 114}, + [8645] = {.lex_state = 178, .external_lex_state = 114}, + [8646] = {.lex_state = 178, .external_lex_state = 114}, + [8647] = {.lex_state = 178, .external_lex_state = 109}, + [8648] = {.lex_state = 175, .external_lex_state = 113}, + [8649] = {.lex_state = 178, .external_lex_state = 109}, [8650] = {.lex_state = 178, .external_lex_state = 114}, [8651] = {.lex_state = 178, .external_lex_state = 109}, - [8652] = {.lex_state = 178, .external_lex_state = 109}, + [8652] = {.lex_state = 175, .external_lex_state = 113}, [8653] = {.lex_state = 178, .external_lex_state = 114}, [8654] = {.lex_state = 178, .external_lex_state = 114}, - [8655] = {.lex_state = 186, .external_lex_state = 112}, - [8656] = {.lex_state = 178, .external_lex_state = 109}, - [8657] = {.lex_state = 178, .external_lex_state = 114}, - [8658] = {.lex_state = 175, .external_lex_state = 113}, + [8655] = {.lex_state = 178, .external_lex_state = 109}, + [8656] = {.lex_state = 175, .external_lex_state = 107}, + [8657] = {.lex_state = 178, .external_lex_state = 109}, + [8658] = {.lex_state = 178, .external_lex_state = 114}, [8659] = {.lex_state = 178, .external_lex_state = 114}, - [8660] = {.lex_state = 178, .external_lex_state = 114}, - [8661] = {.lex_state = 175, .external_lex_state = 107}, + [8660] = {.lex_state = 178, .external_lex_state = 109}, + [8661] = {.lex_state = 178, .external_lex_state = 114}, [8662] = {.lex_state = 178, .external_lex_state = 114}, - [8663] = {.lex_state = 178, .external_lex_state = 114}, + [8663] = {.lex_state = 178, .external_lex_state = 109}, [8664] = {.lex_state = 178, .external_lex_state = 109}, - [8665] = {.lex_state = 186, .external_lex_state = 112}, + [8665] = {.lex_state = 175, .external_lex_state = 113}, [8666] = {.lex_state = 178, .external_lex_state = 109}, - [8667] = {.lex_state = 175, .external_lex_state = 113}, + [8667] = {.lex_state = 178, .external_lex_state = 109}, [8668] = {.lex_state = 178, .external_lex_state = 114}, - [8669] = {.lex_state = 178, .external_lex_state = 114}, - [8670] = {.lex_state = 178, .external_lex_state = 109}, + [8669] = {.lex_state = 178, .external_lex_state = 109}, + [8670] = {.lex_state = 178, .external_lex_state = 114}, [8671] = {.lex_state = 178, .external_lex_state = 114}, - [8672] = {.lex_state = 178, .external_lex_state = 114}, - [8673] = {.lex_state = 178, .external_lex_state = 109}, - [8674] = {.lex_state = 178, .external_lex_state = 114}, - [8675] = {.lex_state = 175, .external_lex_state = 113}, - [8676] = {.lex_state = 178, .external_lex_state = 114}, - [8677] = {.lex_state = 178, .external_lex_state = 114}, - [8678] = {.lex_state = 178, .external_lex_state = 109}, - [8679] = {.lex_state = 40, .external_lex_state = 111}, - [8680] = {.lex_state = 175, .external_lex_state = 113}, - [8681] = {.lex_state = 178, .external_lex_state = 114}, - [8682] = {.lex_state = 178, .external_lex_state = 109}, - [8683] = {.lex_state = 40, .external_lex_state = 111}, - [8684] = {.lex_state = 175, .external_lex_state = 107}, - [8685] = {.lex_state = 175, .external_lex_state = 113}, - [8686] = {.lex_state = 186, .external_lex_state = 112}, - [8687] = {.lex_state = 178, .external_lex_state = 114}, - [8688] = {.lex_state = 178, .external_lex_state = 114}, + [8672] = {.lex_state = 178, .external_lex_state = 109}, + [8673] = {.lex_state = 175, .external_lex_state = 107}, + [8674] = {.lex_state = 175, .external_lex_state = 113}, + [8675] = {.lex_state = 178, .external_lex_state = 114}, + [8676] = {.lex_state = 175, .external_lex_state = 113}, + [8677] = {.lex_state = 178, .external_lex_state = 109}, + [8678] = {.lex_state = 175, .external_lex_state = 113}, + [8679] = {.lex_state = 175, .external_lex_state = 113}, + [8680] = {.lex_state = 178, .external_lex_state = 109}, + [8681] = {.lex_state = 175, .external_lex_state = 107}, + [8682] = {.lex_state = 175, .external_lex_state = 113}, + [8683] = {.lex_state = 178, .external_lex_state = 114}, + [8684] = {.lex_state = 178, .external_lex_state = 114}, + [8685] = {.lex_state = 178, .external_lex_state = 114}, + [8686] = {.lex_state = 178, .external_lex_state = 114}, + [8687] = {.lex_state = 175, .external_lex_state = 113}, + [8688] = {.lex_state = 178, .external_lex_state = 109}, [8689] = {.lex_state = 178, .external_lex_state = 109}, [8690] = {.lex_state = 178, .external_lex_state = 114}, [8691] = {.lex_state = 178, .external_lex_state = 114}, [8692] = {.lex_state = 178, .external_lex_state = 109}, - [8693] = {.lex_state = 175, .external_lex_state = 113}, + [8693] = {.lex_state = 178, .external_lex_state = 114}, [8694] = {.lex_state = 178, .external_lex_state = 114}, - [8695] = {.lex_state = 178, .external_lex_state = 114}, + [8695] = {.lex_state = 175, .external_lex_state = 113}, [8696] = {.lex_state = 178, .external_lex_state = 114}, [8697] = {.lex_state = 178, .external_lex_state = 114}, - [8698] = {.lex_state = 178, .external_lex_state = 114}, + [8698] = {.lex_state = 41, .external_lex_state = 99}, [8699] = {.lex_state = 178, .external_lex_state = 114}, [8700] = {.lex_state = 178, .external_lex_state = 114}, - [8701] = {.lex_state = 40, .external_lex_state = 111}, + [8701] = {.lex_state = 178, .external_lex_state = 109}, [8702] = {.lex_state = 178, .external_lex_state = 114}, [8703] = {.lex_state = 175, .external_lex_state = 113}, [8704] = {.lex_state = 178, .external_lex_state = 109}, [8705] = {.lex_state = 178, .external_lex_state = 109}, - [8706] = {.lex_state = 175, .external_lex_state = 113}, + [8706] = {.lex_state = 178, .external_lex_state = 114}, [8707] = {.lex_state = 178, .external_lex_state = 114}, - [8708] = {.lex_state = 178, .external_lex_state = 114}, - [8709] = {.lex_state = 175, .external_lex_state = 113}, - [8710] = {.lex_state = 178, .external_lex_state = 114}, - [8711] = {.lex_state = 178, .external_lex_state = 114}, - [8712] = {.lex_state = 178, .external_lex_state = 114}, - [8713] = {.lex_state = 178, .external_lex_state = 114}, - [8714] = {.lex_state = 41, .external_lex_state = 98}, - [8715] = {.lex_state = 178, .external_lex_state = 114}, - [8716] = {.lex_state = 175, .external_lex_state = 113}, - [8717] = {.lex_state = 178, .external_lex_state = 109}, + [8708] = {.lex_state = 178, .external_lex_state = 109}, + [8709] = {.lex_state = 178, .external_lex_state = 109}, + [8710] = {.lex_state = 175, .external_lex_state = 107}, + [8711] = {.lex_state = 175, .external_lex_state = 113}, + [8712] = {.lex_state = 178, .external_lex_state = 109}, + [8713] = {.lex_state = 175, .external_lex_state = 113}, + [8714] = {.lex_state = 175, .external_lex_state = 107}, + [8715] = {.lex_state = 40, .external_lex_state = 111}, + [8716] = {.lex_state = 178, .external_lex_state = 114}, + [8717] = {.lex_state = 175, .external_lex_state = 113}, [8718] = {.lex_state = 178, .external_lex_state = 114}, - [8719] = {.lex_state = 178, .external_lex_state = 109}, - [8720] = {.lex_state = 175, .external_lex_state = 107}, - [8721] = {.lex_state = 175, .external_lex_state = 113}, - [8722] = {.lex_state = 178, .external_lex_state = 109}, - [8723] = {.lex_state = 175, .external_lex_state = 113}, + [8719] = {.lex_state = 178, .external_lex_state = 114}, + [8720] = {.lex_state = 178, .external_lex_state = 114}, + [8721] = {.lex_state = 178, .external_lex_state = 114}, + [8722] = {.lex_state = 178, .external_lex_state = 114}, + [8723] = {.lex_state = 178, .external_lex_state = 114}, [8724] = {.lex_state = 178, .external_lex_state = 114}, [8725] = {.lex_state = 178, .external_lex_state = 114}, - [8726] = {.lex_state = 175, .external_lex_state = 113}, - [8727] = {.lex_state = 178, .external_lex_state = 109}, - [8728] = {.lex_state = 178, .external_lex_state = 109}, + [8726] = {.lex_state = 178, .external_lex_state = 114}, + [8727] = {.lex_state = 175, .external_lex_state = 113}, + [8728] = {.lex_state = 178, .external_lex_state = 114}, [8729] = {.lex_state = 178, .external_lex_state = 114}, - [8730] = {.lex_state = 175, .external_lex_state = 113}, - [8731] = {.lex_state = 186, .external_lex_state = 112}, + [8730] = {.lex_state = 178, .external_lex_state = 109}, + [8731] = {.lex_state = 178, .external_lex_state = 114}, [8732] = {.lex_state = 175, .external_lex_state = 113}, - [8733] = {.lex_state = 175, .external_lex_state = 113}, - [8734] = {.lex_state = 175, .external_lex_state = 107}, - [8735] = {.lex_state = 178, .external_lex_state = 109}, - [8736] = {.lex_state = 178, .external_lex_state = 115}, + [8733] = {.lex_state = 178, .external_lex_state = 114}, + [8734] = {.lex_state = 178, .external_lex_state = 114}, + [8735] = {.lex_state = 178, .external_lex_state = 114}, + [8736] = {.lex_state = 40, .external_lex_state = 111}, [8737] = {.lex_state = 178, .external_lex_state = 114}, [8738] = {.lex_state = 178, .external_lex_state = 114}, [8739] = {.lex_state = 178, .external_lex_state = 114}, - [8740] = {.lex_state = 178, .external_lex_state = 114}, + [8740] = {.lex_state = 175, .external_lex_state = 113}, [8741] = {.lex_state = 178, .external_lex_state = 114}, - [8742] = {.lex_state = 178, .external_lex_state = 114}, + [8742] = {.lex_state = 178, .external_lex_state = 99}, [8743] = {.lex_state = 178, .external_lex_state = 109}, - [8744] = {.lex_state = 175, .external_lex_state = 113}, - [8745] = {.lex_state = 178, .external_lex_state = 114}, + [8744] = {.lex_state = 178, .external_lex_state = 114}, + [8745] = {.lex_state = 175, .external_lex_state = 113}, [8746] = {.lex_state = 178, .external_lex_state = 114}, [8747] = {.lex_state = 178, .external_lex_state = 114}, [8748] = {.lex_state = 178, .external_lex_state = 114}, [8749] = {.lex_state = 178, .external_lex_state = 114}, [8750] = {.lex_state = 178, .external_lex_state = 114}, - [8751] = {.lex_state = 175, .external_lex_state = 107}, - [8752] = {.lex_state = 178, .external_lex_state = 109}, - [8753] = {.lex_state = 178, .external_lex_state = 109}, + [8751] = {.lex_state = 178, .external_lex_state = 114}, + [8752] = {.lex_state = 175, .external_lex_state = 113}, + [8753] = {.lex_state = 178, .external_lex_state = 114}, [8754] = {.lex_state = 178, .external_lex_state = 114}, - [8755] = {.lex_state = 178, .external_lex_state = 114}, - [8756] = {.lex_state = 178, .external_lex_state = 114}, - [8757] = {.lex_state = 178, .external_lex_state = 109}, - [8758] = {.lex_state = 178, .external_lex_state = 109}, + [8755] = {.lex_state = 175, .external_lex_state = 113}, + [8756] = {.lex_state = 40, .external_lex_state = 111}, + [8757] = {.lex_state = 178, .external_lex_state = 114}, + [8758] = {.lex_state = 178, .external_lex_state = 114}, [8759] = {.lex_state = 178, .external_lex_state = 109}, - [8760] = {.lex_state = 178, .external_lex_state = 109}, - [8761] = {.lex_state = 178, .external_lex_state = 109}, - [8762] = {.lex_state = 178, .external_lex_state = 114}, - [8763] = {.lex_state = 178, .external_lex_state = 114}, - [8764] = {.lex_state = 178, .external_lex_state = 114}, - [8765] = {.lex_state = 178, .external_lex_state = 114}, - [8766] = {.lex_state = 178, .external_lex_state = 114}, - [8767] = {.lex_state = 178, .external_lex_state = 109}, - [8768] = {.lex_state = 178, .external_lex_state = 114}, + [8760] = {.lex_state = 175, .external_lex_state = 113}, + [8761] = {.lex_state = 178, .external_lex_state = 114}, + [8762] = {.lex_state = 178, .external_lex_state = 109}, + [8763] = {.lex_state = 178, .external_lex_state = 109}, + [8764] = {.lex_state = 178, .external_lex_state = 109}, + [8765] = {.lex_state = 178, .external_lex_state = 109}, + [8766] = {.lex_state = 40, .external_lex_state = 111}, + [8767] = {.lex_state = 175, .external_lex_state = 113}, + [8768] = {.lex_state = 178, .external_lex_state = 109}, [8769] = {.lex_state = 178, .external_lex_state = 114}, [8770] = {.lex_state = 178, .external_lex_state = 114}, [8771] = {.lex_state = 178, .external_lex_state = 114}, - [8772] = {.lex_state = 178, .external_lex_state = 109}, + [8772] = {.lex_state = 178, .external_lex_state = 114}, [8773] = {.lex_state = 178, .external_lex_state = 114}, - [8774] = {.lex_state = 178, .external_lex_state = 114}, - [8775] = {.lex_state = 178, .external_lex_state = 109}, + [8774] = {.lex_state = 175, .external_lex_state = 113}, + [8775] = {.lex_state = 178, .external_lex_state = 114}, [8776] = {.lex_state = 178, .external_lex_state = 109}, - [8777] = {.lex_state = 178, .external_lex_state = 109}, - [8778] = {.lex_state = 178, .external_lex_state = 114}, - [8779] = {.lex_state = 178, .external_lex_state = 109}, - [8780] = {.lex_state = 178, .external_lex_state = 109}, - [8781] = {.lex_state = 178, .external_lex_state = 114}, - [8782] = {.lex_state = 186, .external_lex_state = 112}, - [8783] = {.lex_state = 178, .external_lex_state = 109}, - [8784] = {.lex_state = 178, .external_lex_state = 114}, - [8785] = {.lex_state = 178, .external_lex_state = 114}, - [8786] = {.lex_state = 178, .external_lex_state = 98}, - [8787] = {.lex_state = 178, .external_lex_state = 109}, + [8777] = {.lex_state = 175, .external_lex_state = 113}, + [8778] = {.lex_state = 178, .external_lex_state = 109}, + [8779] = {.lex_state = 178, .external_lex_state = 114}, + [8780] = {.lex_state = 178, .external_lex_state = 114}, + [8781] = {.lex_state = 178, .external_lex_state = 109}, + [8782] = {.lex_state = 178, .external_lex_state = 109}, + [8783] = {.lex_state = 175, .external_lex_state = 113}, + [8784] = {.lex_state = 178, .external_lex_state = 109}, + [8785] = {.lex_state = 178, .external_lex_state = 109}, + [8786] = {.lex_state = 178, .external_lex_state = 109}, + [8787] = {.lex_state = 175, .external_lex_state = 107}, [8788] = {.lex_state = 178, .external_lex_state = 114}, - [8789] = {.lex_state = 41, .external_lex_state = 98}, - [8790] = {.lex_state = 178, .external_lex_state = 109}, - [8791] = {.lex_state = 178, .external_lex_state = 109}, + [8789] = {.lex_state = 175, .external_lex_state = 113}, + [8790] = {.lex_state = 178, .external_lex_state = 114}, + [8791] = {.lex_state = 178, .external_lex_state = 114}, [8792] = {.lex_state = 178, .external_lex_state = 109}, - [8793] = {.lex_state = 178, .external_lex_state = 114}, - [8794] = {.lex_state = 178, .external_lex_state = 114}, + [8793] = {.lex_state = 175, .external_lex_state = 113}, + [8794] = {.lex_state = 178, .external_lex_state = 109}, [8795] = {.lex_state = 178, .external_lex_state = 109}, - [8796] = {.lex_state = 41, .external_lex_state = 98}, - [8797] = {.lex_state = 175, .external_lex_state = 107}, - [8798] = {.lex_state = 178, .external_lex_state = 114}, - [8799] = {.lex_state = 40, .external_lex_state = 111}, + [8796] = {.lex_state = 175, .external_lex_state = 113}, + [8797] = {.lex_state = 178, .external_lex_state = 114}, + [8798] = {.lex_state = 186, .external_lex_state = 112}, + [8799] = {.lex_state = 178, .external_lex_state = 114}, [8800] = {.lex_state = 175, .external_lex_state = 113}, - [8801] = {.lex_state = 41, .external_lex_state = 98}, - [8802] = {.lex_state = 41, .external_lex_state = 98}, - [8803] = {.lex_state = 178, .external_lex_state = 109}, - [8804] = {.lex_state = 178, .external_lex_state = 114}, - [8805] = {.lex_state = 178, .external_lex_state = 114}, + [8801] = {.lex_state = 178, .external_lex_state = 109}, + [8802] = {.lex_state = 175, .external_lex_state = 113}, + [8803] = {.lex_state = 175, .external_lex_state = 107}, + [8804] = {.lex_state = 175, .external_lex_state = 113}, + [8805] = {.lex_state = 178, .external_lex_state = 109}, [8806] = {.lex_state = 178, .external_lex_state = 114}, - [8807] = {.lex_state = 178, .external_lex_state = 114}, + [8807] = {.lex_state = 175, .external_lex_state = 113}, [8808] = {.lex_state = 178, .external_lex_state = 109}, - [8809] = {.lex_state = 178, .external_lex_state = 114}, - [8810] = {.lex_state = 178, .external_lex_state = 109}, + [8809] = {.lex_state = 178, .external_lex_state = 109}, + [8810] = {.lex_state = 175, .external_lex_state = 113}, [8811] = {.lex_state = 178, .external_lex_state = 109}, - [8812] = {.lex_state = 175, .external_lex_state = 107}, + [8812] = {.lex_state = 175, .external_lex_state = 113}, [8813] = {.lex_state = 178, .external_lex_state = 114}, - [8814] = {.lex_state = 178, .external_lex_state = 114}, + [8814] = {.lex_state = 178, .external_lex_state = 109}, [8815] = {.lex_state = 178, .external_lex_state = 114}, [8816] = {.lex_state = 178, .external_lex_state = 114}, - [8817] = {.lex_state = 178, .external_lex_state = 114}, - [8818] = {.lex_state = 178, .external_lex_state = 114}, - [8819] = {.lex_state = 178, .external_lex_state = 109}, - [8820] = {.lex_state = 178, .external_lex_state = 109}, - [8821] = {.lex_state = 178, .external_lex_state = 114}, + [8817] = {.lex_state = 178, .external_lex_state = 109}, + [8818] = {.lex_state = 178, .external_lex_state = 109}, + [8819] = {.lex_state = 178, .external_lex_state = 114}, + [8820] = {.lex_state = 175, .external_lex_state = 113}, + [8821] = {.lex_state = 178, .external_lex_state = 109}, [8822] = {.lex_state = 178, .external_lex_state = 109}, - [8823] = {.lex_state = 178, .external_lex_state = 109}, + [8823] = {.lex_state = 178, .external_lex_state = 114}, [8824] = {.lex_state = 178, .external_lex_state = 114}, [8825] = {.lex_state = 178, .external_lex_state = 114}, - [8826] = {.lex_state = 178, .external_lex_state = 114}, + [8826] = {.lex_state = 178, .external_lex_state = 109}, [8827] = {.lex_state = 178, .external_lex_state = 114}, [8828] = {.lex_state = 178, .external_lex_state = 114}, [8829] = {.lex_state = 178, .external_lex_state = 114}, [8830] = {.lex_state = 178, .external_lex_state = 109}, - [8831] = {.lex_state = 178, .external_lex_state = 114}, - [8832] = {.lex_state = 178, .external_lex_state = 114}, + [8831] = {.lex_state = 178, .external_lex_state = 109}, + [8832] = {.lex_state = 178, .external_lex_state = 109}, [8833] = {.lex_state = 178, .external_lex_state = 114}, - [8834] = {.lex_state = 178, .external_lex_state = 114}, - [8835] = {.lex_state = 178, .external_lex_state = 114}, - [8836] = {.lex_state = 175, .external_lex_state = 113}, - [8837] = {.lex_state = 178, .external_lex_state = 114}, - [8838] = {.lex_state = 178, .external_lex_state = 109}, + [8834] = {.lex_state = 178, .external_lex_state = 109}, + [8835] = {.lex_state = 178, .external_lex_state = 109}, + [8836] = {.lex_state = 186, .external_lex_state = 112}, + [8837] = {.lex_state = 178, .external_lex_state = 109}, + [8838] = {.lex_state = 178, .external_lex_state = 114}, [8839] = {.lex_state = 178, .external_lex_state = 114}, [8840] = {.lex_state = 178, .external_lex_state = 109}, [8841] = {.lex_state = 178, .external_lex_state = 109}, - [8842] = {.lex_state = 178, .external_lex_state = 114}, - [8843] = {.lex_state = 186, .external_lex_state = 112}, - [8844] = {.lex_state = 178, .external_lex_state = 114}, + [8842] = {.lex_state = 178, .external_lex_state = 109}, + [8843] = {.lex_state = 175, .external_lex_state = 107}, + [8844] = {.lex_state = 178, .external_lex_state = 109}, [8845] = {.lex_state = 178, .external_lex_state = 114}, - [8846] = {.lex_state = 178, .external_lex_state = 114}, + [8846] = {.lex_state = 178, .external_lex_state = 109}, [8847] = {.lex_state = 178, .external_lex_state = 109}, - [8848] = {.lex_state = 178, .external_lex_state = 109}, + [8848] = {.lex_state = 178, .external_lex_state = 114}, [8849] = {.lex_state = 178, .external_lex_state = 114}, - [8850] = {.lex_state = 175, .external_lex_state = 107}, + [8850] = {.lex_state = 178, .external_lex_state = 114}, [8851] = {.lex_state = 178, .external_lex_state = 114}, - [8852] = {.lex_state = 178, .external_lex_state = 114}, - [8853] = {.lex_state = 178, .external_lex_state = 114}, + [8852] = {.lex_state = 178, .external_lex_state = 109}, + [8853] = {.lex_state = 178, .external_lex_state = 109}, [8854] = {.lex_state = 178, .external_lex_state = 109}, [8855] = {.lex_state = 178, .external_lex_state = 109}, [8856] = {.lex_state = 178, .external_lex_state = 114}, - [8857] = {.lex_state = 175, .external_lex_state = 113}, - [8858] = {.lex_state = 178, .external_lex_state = 109}, - [8859] = {.lex_state = 178, .external_lex_state = 109}, - [8860] = {.lex_state = 178, .external_lex_state = 109}, - [8861] = {.lex_state = 186, .external_lex_state = 112}, - [8862] = {.lex_state = 178, .external_lex_state = 109}, - [8863] = {.lex_state = 178, .external_lex_state = 114}, - [8864] = {.lex_state = 175, .external_lex_state = 113}, - [8865] = {.lex_state = 178, .external_lex_state = 114}, - [8866] = {.lex_state = 178, .external_lex_state = 114}, + [8857] = {.lex_state = 178, .external_lex_state = 109}, + [8858] = {.lex_state = 178, .external_lex_state = 114}, + [8859] = {.lex_state = 178, .external_lex_state = 114}, + [8860] = {.lex_state = 178, .external_lex_state = 114}, + [8861] = {.lex_state = 178, .external_lex_state = 114}, + [8862] = {.lex_state = 178, .external_lex_state = 114}, + [8863] = {.lex_state = 178, .external_lex_state = 109}, + [8864] = {.lex_state = 178, .external_lex_state = 109}, + [8865] = {.lex_state = 178, .external_lex_state = 109}, + [8866] = {.lex_state = 41, .external_lex_state = 99}, [8867] = {.lex_state = 178, .external_lex_state = 114}, - [8868] = {.lex_state = 40, .external_lex_state = 98}, - [8869] = {.lex_state = 175, .external_lex_state = 107}, - [8870] = {.lex_state = 178, .external_lex_state = 109}, + [8868] = {.lex_state = 178, .external_lex_state = 114}, + [8869] = {.lex_state = 178, .external_lex_state = 114}, + [8870] = {.lex_state = 178, .external_lex_state = 114}, [8871] = {.lex_state = 178, .external_lex_state = 109}, - [8872] = {.lex_state = 178, .external_lex_state = 109}, + [8872] = {.lex_state = 178, .external_lex_state = 114}, [8873] = {.lex_state = 178, .external_lex_state = 114}, [8874] = {.lex_state = 178, .external_lex_state = 114}, - [8875] = {.lex_state = 178, .external_lex_state = 109}, - [8876] = {.lex_state = 178, .external_lex_state = 109}, - [8877] = {.lex_state = 178, .external_lex_state = 109}, + [8875] = {.lex_state = 178, .external_lex_state = 114}, + [8876] = {.lex_state = 178, .external_lex_state = 114}, + [8877] = {.lex_state = 178, .external_lex_state = 114}, [8878] = {.lex_state = 178, .external_lex_state = 109}, - [8879] = {.lex_state = 178, .external_lex_state = 109}, - [8880] = {.lex_state = 178, .external_lex_state = 109}, - [8881] = {.lex_state = 178, .external_lex_state = 109}, - [8882] = {.lex_state = 178, .external_lex_state = 114}, - [8883] = {.lex_state = 178, .external_lex_state = 114}, + [8879] = {.lex_state = 178, .external_lex_state = 114}, + [8880] = {.lex_state = 178, .external_lex_state = 114}, + [8881] = {.lex_state = 178, .external_lex_state = 114}, + [8882] = {.lex_state = 178, .external_lex_state = 109}, + [8883] = {.lex_state = 178, .external_lex_state = 109}, [8884] = {.lex_state = 178, .external_lex_state = 114}, [8885] = {.lex_state = 178, .external_lex_state = 114}, - [8886] = {.lex_state = 178, .external_lex_state = 114}, + [8886] = {.lex_state = 178, .external_lex_state = 109}, [8887] = {.lex_state = 178, .external_lex_state = 114}, [8888] = {.lex_state = 178, .external_lex_state = 114}, - [8889] = {.lex_state = 178, .external_lex_state = 109}, + [8889] = {.lex_state = 178, .external_lex_state = 114}, [8890] = {.lex_state = 178, .external_lex_state = 114}, - [8891] = {.lex_state = 66, .external_lex_state = 116}, - [8892] = {.lex_state = 66, .external_lex_state = 116}, - [8893] = {.lex_state = 66, .external_lex_state = 116}, - [8894] = {.lex_state = 67, .external_lex_state = 116}, - [8895] = {.lex_state = 67, .external_lex_state = 116}, - [8896] = {.lex_state = 67, .external_lex_state = 116}, - [8897] = {.lex_state = 66, .external_lex_state = 116}, - [8898] = {.lex_state = 73, .external_lex_state = 98}, - [8899] = {.lex_state = 66, .external_lex_state = 116}, - [8900] = {.lex_state = 66, .external_lex_state = 117}, - [8901] = {.lex_state = 66, .external_lex_state = 117}, - [8902] = {.lex_state = 66, .external_lex_state = 116}, - [8903] = {.lex_state = 66, .external_lex_state = 116}, - [8904] = {.lex_state = 67, .external_lex_state = 116}, - [8905] = {.lex_state = 66, .external_lex_state = 116}, - [8906] = {.lex_state = 66, .external_lex_state = 116}, - [8907] = {.lex_state = 67, .external_lex_state = 116}, - [8908] = {.lex_state = 67, .external_lex_state = 116}, - [8909] = {.lex_state = 73, .external_lex_state = 98}, - [8910] = {.lex_state = 66, .external_lex_state = 117}, - [8911] = {.lex_state = 66, .external_lex_state = 116}, - [8912] = {.lex_state = 73, .external_lex_state = 98}, - [8913] = {.lex_state = 66, .external_lex_state = 116}, - [8914] = {.lex_state = 67, .external_lex_state = 116}, - [8915] = {.lex_state = 69, .external_lex_state = 98}, - [8916] = {.lex_state = 73, .external_lex_state = 98}, - [8917] = {.lex_state = 69, .external_lex_state = 98}, - [8918] = {.lex_state = 73, .external_lex_state = 98}, - [8919] = {.lex_state = 66, .external_lex_state = 117}, - [8920] = {.lex_state = 186, .external_lex_state = 98}, - [8921] = {.lex_state = 66, .external_lex_state = 117}, - [8922] = {.lex_state = 66, .external_lex_state = 117}, - [8923] = {.lex_state = 176, .external_lex_state = 111}, - [8924] = {.lex_state = 66, .external_lex_state = 116}, - [8925] = {.lex_state = 66, .external_lex_state = 116}, - [8926] = {.lex_state = 178, .external_lex_state = 115}, - [8927] = {.lex_state = 67, .external_lex_state = 116}, - [8928] = {.lex_state = 66, .external_lex_state = 117}, - [8929] = {.lex_state = 73, .external_lex_state = 98}, - [8930] = {.lex_state = 66, .external_lex_state = 116}, - [8931] = {.lex_state = 66, .external_lex_state = 117}, - [8932] = {.lex_state = 66, .external_lex_state = 117}, - [8933] = {.lex_state = 66, .external_lex_state = 116}, + [8891] = {.lex_state = 178, .external_lex_state = 109}, + [8892] = {.lex_state = 178, .external_lex_state = 114}, + [8893] = {.lex_state = 186, .external_lex_state = 112}, + [8894] = {.lex_state = 178, .external_lex_state = 114}, + [8895] = {.lex_state = 178, .external_lex_state = 114}, + [8896] = {.lex_state = 178, .external_lex_state = 109}, + [8897] = {.lex_state = 178, .external_lex_state = 114}, + [8898] = {.lex_state = 178, .external_lex_state = 109}, + [8899] = {.lex_state = 178, .external_lex_state = 114}, + [8900] = {.lex_state = 178, .external_lex_state = 114}, + [8901] = {.lex_state = 178, .external_lex_state = 109}, + [8902] = {.lex_state = 175, .external_lex_state = 107}, + [8903] = {.lex_state = 178, .external_lex_state = 114}, + [8904] = {.lex_state = 41, .external_lex_state = 99}, + [8905] = {.lex_state = 175, .external_lex_state = 107}, + [8906] = {.lex_state = 41, .external_lex_state = 99}, + [8907] = {.lex_state = 40, .external_lex_state = 111}, + [8908] = {.lex_state = 178, .external_lex_state = 114}, + [8909] = {.lex_state = 178, .external_lex_state = 114}, + [8910] = {.lex_state = 178, .external_lex_state = 109}, + [8911] = {.lex_state = 175, .external_lex_state = 107}, + [8912] = {.lex_state = 178, .external_lex_state = 109}, + [8913] = {.lex_state = 178, .external_lex_state = 109}, + [8914] = {.lex_state = 178, .external_lex_state = 114}, + [8915] = {.lex_state = 178, .external_lex_state = 114}, + [8916] = {.lex_state = 178, .external_lex_state = 114}, + [8917] = {.lex_state = 186, .external_lex_state = 112}, + [8918] = {.lex_state = 178, .external_lex_state = 114}, + [8919] = {.lex_state = 178, .external_lex_state = 114}, + [8920] = {.lex_state = 178, .external_lex_state = 114}, + [8921] = {.lex_state = 178, .external_lex_state = 114}, + [8922] = {.lex_state = 178, .external_lex_state = 114}, + [8923] = {.lex_state = 178, .external_lex_state = 114}, + [8924] = {.lex_state = 178, .external_lex_state = 114}, + [8925] = {.lex_state = 178, .external_lex_state = 114}, + [8926] = {.lex_state = 178, .external_lex_state = 114}, + [8927] = {.lex_state = 178, .external_lex_state = 114}, + [8928] = {.lex_state = 178, .external_lex_state = 114}, + [8929] = {.lex_state = 178, .external_lex_state = 114}, + [8930] = {.lex_state = 186, .external_lex_state = 112}, + [8931] = {.lex_state = 178, .external_lex_state = 114}, + [8932] = {.lex_state = 178, .external_lex_state = 114}, + [8933] = {.lex_state = 178, .external_lex_state = 99}, [8934] = {.lex_state = 66, .external_lex_state = 116}, - [8935] = {.lex_state = 67, .external_lex_state = 116}, + [8935] = {.lex_state = 73, .external_lex_state = 99}, [8936] = {.lex_state = 66, .external_lex_state = 116}, - [8937] = {.lex_state = 41, .external_lex_state = 98}, - [8938] = {.lex_state = 73, .external_lex_state = 98}, - [8939] = {.lex_state = 67, .external_lex_state = 116}, + [8937] = {.lex_state = 178, .external_lex_state = 115}, + [8938] = {.lex_state = 69, .external_lex_state = 99}, + [8939] = {.lex_state = 66, .external_lex_state = 117}, [8940] = {.lex_state = 66, .external_lex_state = 116}, [8941] = {.lex_state = 66, .external_lex_state = 116}, - [8942] = {.lex_state = 67, .external_lex_state = 116}, - [8943] = {.lex_state = 66, .external_lex_state = 117}, - [8944] = {.lex_state = 66, .external_lex_state = 116}, - [8945] = {.lex_state = 73, .external_lex_state = 98}, - [8946] = {.lex_state = 66, .external_lex_state = 117}, - [8947] = {.lex_state = 178, .external_lex_state = 98}, - [8948] = {.lex_state = 178, .external_lex_state = 98}, - [8949] = {.lex_state = 66, .external_lex_state = 116}, - [8950] = {.lex_state = 66, .external_lex_state = 116}, + [8942] = {.lex_state = 66, .external_lex_state = 117}, + [8943] = {.lex_state = 67, .external_lex_state = 117}, + [8944] = {.lex_state = 66, .external_lex_state = 117}, + [8945] = {.lex_state = 69, .external_lex_state = 99}, + [8946] = {.lex_state = 66, .external_lex_state = 116}, + [8947] = {.lex_state = 66, .external_lex_state = 116}, + [8948] = {.lex_state = 73, .external_lex_state = 99}, + [8949] = {.lex_state = 67, .external_lex_state = 117}, + [8950] = {.lex_state = 41, .external_lex_state = 99}, [8951] = {.lex_state = 66, .external_lex_state = 116}, - [8952] = {.lex_state = 67, .external_lex_state = 116}, - [8953] = {.lex_state = 73, .external_lex_state = 98}, - [8954] = {.lex_state = 175, .external_lex_state = 107}, - [8955] = {.lex_state = 73, .external_lex_state = 98}, - [8956] = {.lex_state = 66, .external_lex_state = 117}, - [8957] = {.lex_state = 73, .external_lex_state = 98}, - [8958] = {.lex_state = 73, .external_lex_state = 98}, + [8952] = {.lex_state = 66, .external_lex_state = 116}, + [8953] = {.lex_state = 66, .external_lex_state = 117}, + [8954] = {.lex_state = 66, .external_lex_state = 117}, + [8955] = {.lex_state = 67, .external_lex_state = 117}, + [8956] = {.lex_state = 66, .external_lex_state = 116}, + [8957] = {.lex_state = 66, .external_lex_state = 116}, + [8958] = {.lex_state = 66, .external_lex_state = 117}, [8959] = {.lex_state = 66, .external_lex_state = 117}, [8960] = {.lex_state = 66, .external_lex_state = 116}, - [8961] = {.lex_state = 66, .external_lex_state = 116}, - [8962] = {.lex_state = 66, .external_lex_state = 117}, - [8963] = {.lex_state = 66, .external_lex_state = 117}, - [8964] = {.lex_state = 175, .external_lex_state = 107}, - [8965] = {.lex_state = 67, .external_lex_state = 116}, - [8966] = {.lex_state = 66, .external_lex_state = 117}, - [8967] = {.lex_state = 66, .external_lex_state = 116}, - [8968] = {.lex_state = 66, .external_lex_state = 117}, - [8969] = {.lex_state = 70, .external_lex_state = 98}, - [8970] = {.lex_state = 66, .external_lex_state = 116}, - [8971] = {.lex_state = 66, .external_lex_state = 116}, - [8972] = {.lex_state = 66, .external_lex_state = 116}, - [8973] = {.lex_state = 178, .external_lex_state = 98}, - [8974] = {.lex_state = 67, .external_lex_state = 116}, + [8961] = {.lex_state = 67, .external_lex_state = 117}, + [8962] = {.lex_state = 66, .external_lex_state = 118}, + [8963] = {.lex_state = 73, .external_lex_state = 99}, + [8964] = {.lex_state = 66, .external_lex_state = 117}, + [8965] = {.lex_state = 66, .external_lex_state = 117}, + [8966] = {.lex_state = 67, .external_lex_state = 117}, + [8967] = {.lex_state = 66, .external_lex_state = 118}, + [8968] = {.lex_state = 66, .external_lex_state = 116}, + [8969] = {.lex_state = 66, .external_lex_state = 116}, + [8970] = {.lex_state = 66, .external_lex_state = 117}, + [8971] = {.lex_state = 73, .external_lex_state = 99}, + [8972] = {.lex_state = 66, .external_lex_state = 117}, + [8973] = {.lex_state = 67, .external_lex_state = 117}, + [8974] = {.lex_state = 73, .external_lex_state = 99}, [8975] = {.lex_state = 66, .external_lex_state = 116}, - [8976] = {.lex_state = 73, .external_lex_state = 98}, - [8977] = {.lex_state = 175, .external_lex_state = 98}, - [8978] = {.lex_state = 66, .external_lex_state = 116}, + [8976] = {.lex_state = 66, .external_lex_state = 117}, + [8977] = {.lex_state = 66, .external_lex_state = 117}, + [8978] = {.lex_state = 67, .external_lex_state = 117}, [8979] = {.lex_state = 66, .external_lex_state = 116}, - [8980] = {.lex_state = 73, .external_lex_state = 98}, - [8981] = {.lex_state = 67, .external_lex_state = 116}, + [8980] = {.lex_state = 73, .external_lex_state = 99}, + [8981] = {.lex_state = 66, .external_lex_state = 117}, [8982] = {.lex_state = 66, .external_lex_state = 117}, - [8983] = {.lex_state = 67, .external_lex_state = 116}, - [8984] = {.lex_state = 66, .external_lex_state = 116}, - [8985] = {.lex_state = 66, .external_lex_state = 116}, - [8986] = {.lex_state = 66, .external_lex_state = 117}, - [8987] = {.lex_state = 66, .external_lex_state = 117}, - [8988] = {.lex_state = 66, .external_lex_state = 116}, - [8989] = {.lex_state = 178, .external_lex_state = 98}, - [8990] = {.lex_state = 67, .external_lex_state = 116}, - [8991] = {.lex_state = 73, .external_lex_state = 98}, - [8992] = {.lex_state = 66, .external_lex_state = 116}, - [8993] = {.lex_state = 66, .external_lex_state = 117}, - [8994] = {.lex_state = 66, .external_lex_state = 117}, + [8983] = {.lex_state = 67, .external_lex_state = 117}, + [8984] = {.lex_state = 73, .external_lex_state = 99}, + [8985] = {.lex_state = 73, .external_lex_state = 99}, + [8986] = {.lex_state = 178, .external_lex_state = 99}, + [8987] = {.lex_state = 66, .external_lex_state = 116}, + [8988] = {.lex_state = 66, .external_lex_state = 117}, + [8989] = {.lex_state = 66, .external_lex_state = 117}, + [8990] = {.lex_state = 67, .external_lex_state = 117}, + [8991] = {.lex_state = 175, .external_lex_state = 99}, + [8992] = {.lex_state = 66, .external_lex_state = 117}, + [8993] = {.lex_state = 176, .external_lex_state = 111}, + [8994] = {.lex_state = 73, .external_lex_state = 99}, [8995] = {.lex_state = 66, .external_lex_state = 116}, - [8996] = {.lex_state = 178, .external_lex_state = 112}, - [8997] = {.lex_state = 186, .external_lex_state = 98}, - [8998] = {.lex_state = 178, .external_lex_state = 115}, - [8999] = {.lex_state = 66, .external_lex_state = 117}, - [9000] = {.lex_state = 73, .external_lex_state = 98}, - [9001] = {.lex_state = 67, .external_lex_state = 116}, - [9002] = {.lex_state = 66, .external_lex_state = 116}, - [9003] = {.lex_state = 66, .external_lex_state = 116}, - [9004] = {.lex_state = 70, .external_lex_state = 98}, - [9005] = {.lex_state = 66, .external_lex_state = 116}, - [9006] = {.lex_state = 67, .external_lex_state = 116}, - [9007] = {.lex_state = 66, .external_lex_state = 117}, - [9008] = {.lex_state = 66, .external_lex_state = 116}, - [9009] = {.lex_state = 73, .external_lex_state = 98}, + [8996] = {.lex_state = 66, .external_lex_state = 117}, + [8997] = {.lex_state = 178, .external_lex_state = 115}, + [8998] = {.lex_state = 66, .external_lex_state = 117}, + [8999] = {.lex_state = 178, .external_lex_state = 115}, + [9000] = {.lex_state = 67, .external_lex_state = 117}, + [9001] = {.lex_state = 73, .external_lex_state = 99}, + [9002] = {.lex_state = 73, .external_lex_state = 99}, + [9003] = {.lex_state = 66, .external_lex_state = 117}, + [9004] = {.lex_state = 66, .external_lex_state = 116}, + [9005] = {.lex_state = 66, .external_lex_state = 117}, + [9006] = {.lex_state = 66, .external_lex_state = 117}, + [9007] = {.lex_state = 67, .external_lex_state = 117}, + [9008] = {.lex_state = 73, .external_lex_state = 99}, + [9009] = {.lex_state = 178, .external_lex_state = 99}, [9010] = {.lex_state = 66, .external_lex_state = 116}, - [9011] = {.lex_state = 66, .external_lex_state = 117}, - [9012] = {.lex_state = 67, .external_lex_state = 116}, + [9011] = {.lex_state = 66, .external_lex_state = 116}, + [9012] = {.lex_state = 66, .external_lex_state = 117}, [9013] = {.lex_state = 66, .external_lex_state = 117}, [9014] = {.lex_state = 66, .external_lex_state = 116}, - [9015] = {.lex_state = 66, .external_lex_state = 116}, - [9016] = {.lex_state = 67, .external_lex_state = 116}, - [9017] = {.lex_state = 73, .external_lex_state = 98}, - [9018] = {.lex_state = 73, .external_lex_state = 98}, - [9019] = {.lex_state = 73, .external_lex_state = 98}, - [9020] = {.lex_state = 67, .external_lex_state = 116}, + [9015] = {.lex_state = 66, .external_lex_state = 117}, + [9016] = {.lex_state = 66, .external_lex_state = 117}, + [9017] = {.lex_state = 67, .external_lex_state = 117}, + [9018] = {.lex_state = 67, .external_lex_state = 117}, + [9019] = {.lex_state = 73, .external_lex_state = 99}, + [9020] = {.lex_state = 73, .external_lex_state = 99}, [9021] = {.lex_state = 66, .external_lex_state = 117}, [9022] = {.lex_state = 66, .external_lex_state = 117}, [9023] = {.lex_state = 66, .external_lex_state = 116}, - [9024] = {.lex_state = 66, .external_lex_state = 116}, - [9025] = {.lex_state = 66, .external_lex_state = 116}, - [9026] = {.lex_state = 67, .external_lex_state = 116}, - [9027] = {.lex_state = 66, .external_lex_state = 117}, - [9028] = {.lex_state = 66, .external_lex_state = 117}, - [9029] = {.lex_state = 66, .external_lex_state = 116}, - [9030] = {.lex_state = 66, .external_lex_state = 116}, - [9031] = {.lex_state = 66, .external_lex_state = 116}, - [9032] = {.lex_state = 73, .external_lex_state = 98}, - [9033] = {.lex_state = 175, .external_lex_state = 107}, - [9034] = {.lex_state = 66, .external_lex_state = 117}, - [9035] = {.lex_state = 67, .external_lex_state = 116}, - [9036] = {.lex_state = 67, .external_lex_state = 116}, - [9037] = {.lex_state = 178, .external_lex_state = 115}, - [9038] = {.lex_state = 66, .external_lex_state = 117}, - [9039] = {.lex_state = 73, .external_lex_state = 98}, - [9040] = {.lex_state = 66, .external_lex_state = 116}, - [9041] = {.lex_state = 66, .external_lex_state = 116}, - [9042] = {.lex_state = 67, .external_lex_state = 116}, - [9043] = {.lex_state = 73, .external_lex_state = 98}, - [9044] = {.lex_state = 73, .external_lex_state = 98}, - [9045] = {.lex_state = 66, .external_lex_state = 117}, - [9046] = {.lex_state = 66, .external_lex_state = 117}, - [9047] = {.lex_state = 178, .external_lex_state = 98}, - [9048] = {.lex_state = 178, .external_lex_state = 98}, - [9049] = {.lex_state = 66, .external_lex_state = 118}, - [9050] = {.lex_state = 66, .external_lex_state = 116}, - [9051] = {.lex_state = 66, .external_lex_state = 116}, - [9052] = {.lex_state = 178, .external_lex_state = 98}, - [9053] = {.lex_state = 178, .external_lex_state = 98}, - [9054] = {.lex_state = 73, .external_lex_state = 98}, - [9055] = {.lex_state = 66, .external_lex_state = 116}, - [9056] = {.lex_state = 178, .external_lex_state = 98}, - [9057] = {.lex_state = 178, .external_lex_state = 98}, - [9058] = {.lex_state = 69, .external_lex_state = 98}, - [9059] = {.lex_state = 67, .external_lex_state = 116}, - [9060] = {.lex_state = 66, .external_lex_state = 118}, - [9061] = {.lex_state = 66, .external_lex_state = 117}, - [9062] = {.lex_state = 178, .external_lex_state = 98}, - [9063] = {.lex_state = 178, .external_lex_state = 98}, - [9064] = {.lex_state = 66, .external_lex_state = 116}, + [9024] = {.lex_state = 66, .external_lex_state = 117}, + [9025] = {.lex_state = 66, .external_lex_state = 117}, + [9026] = {.lex_state = 67, .external_lex_state = 117}, + [9027] = {.lex_state = 67, .external_lex_state = 117}, + [9028] = {.lex_state = 73, .external_lex_state = 99}, + [9029] = {.lex_state = 66, .external_lex_state = 117}, + [9030] = {.lex_state = 73, .external_lex_state = 99}, + [9031] = {.lex_state = 70, .external_lex_state = 99}, + [9032] = {.lex_state = 73, .external_lex_state = 99}, + [9033] = {.lex_state = 66, .external_lex_state = 118}, + [9034] = {.lex_state = 66, .external_lex_state = 116}, + [9035] = {.lex_state = 66, .external_lex_state = 117}, + [9036] = {.lex_state = 66, .external_lex_state = 117}, + [9037] = {.lex_state = 67, .external_lex_state = 117}, + [9038] = {.lex_state = 73, .external_lex_state = 99}, + [9039] = {.lex_state = 66, .external_lex_state = 116}, + [9040] = {.lex_state = 66, .external_lex_state = 117}, + [9041] = {.lex_state = 66, .external_lex_state = 117}, + [9042] = {.lex_state = 67, .external_lex_state = 117}, + [9043] = {.lex_state = 73, .external_lex_state = 99}, + [9044] = {.lex_state = 66, .external_lex_state = 117}, + [9045] = {.lex_state = 66, .external_lex_state = 116}, + [9046] = {.lex_state = 66, .external_lex_state = 116}, + [9047] = {.lex_state = 66, .external_lex_state = 117}, + [9048] = {.lex_state = 66, .external_lex_state = 117}, + [9049] = {.lex_state = 67, .external_lex_state = 117}, + [9050] = {.lex_state = 178, .external_lex_state = 99}, + [9051] = {.lex_state = 178, .external_lex_state = 99}, + [9052] = {.lex_state = 73, .external_lex_state = 99}, + [9053] = {.lex_state = 66, .external_lex_state = 117}, + [9054] = {.lex_state = 66, .external_lex_state = 117}, + [9055] = {.lex_state = 67, .external_lex_state = 117}, + [9056] = {.lex_state = 66, .external_lex_state = 116}, + [9057] = {.lex_state = 66, .external_lex_state = 117}, + [9058] = {.lex_state = 66, .external_lex_state = 117}, + [9059] = {.lex_state = 67, .external_lex_state = 117}, + [9060] = {.lex_state = 73, .external_lex_state = 99}, + [9061] = {.lex_state = 70, .external_lex_state = 99}, + [9062] = {.lex_state = 67, .external_lex_state = 117}, + [9063] = {.lex_state = 178, .external_lex_state = 115}, + [9064] = {.lex_state = 175, .external_lex_state = 107}, [9065] = {.lex_state = 66, .external_lex_state = 116}, - [9066] = {.lex_state = 178, .external_lex_state = 98}, - [9067] = {.lex_state = 178, .external_lex_state = 98}, - [9068] = {.lex_state = 178, .external_lex_state = 115}, + [9066] = {.lex_state = 66, .external_lex_state = 117}, + [9067] = {.lex_state = 73, .external_lex_state = 99}, + [9068] = {.lex_state = 66, .external_lex_state = 116}, [9069] = {.lex_state = 66, .external_lex_state = 117}, - [9070] = {.lex_state = 178, .external_lex_state = 98}, - [9071] = {.lex_state = 178, .external_lex_state = 98}, - [9072] = {.lex_state = 67, .external_lex_state = 116}, - [9073] = {.lex_state = 73, .external_lex_state = 98}, - [9074] = {.lex_state = 178, .external_lex_state = 98}, - [9075] = {.lex_state = 178, .external_lex_state = 98}, + [9070] = {.lex_state = 178, .external_lex_state = 115}, + [9071] = {.lex_state = 186, .external_lex_state = 99}, + [9072] = {.lex_state = 67, .external_lex_state = 117}, + [9073] = {.lex_state = 66, .external_lex_state = 117}, + [9074] = {.lex_state = 69, .external_lex_state = 99}, + [9075] = {.lex_state = 66, .external_lex_state = 116}, [9076] = {.lex_state = 66, .external_lex_state = 117}, - [9077] = {.lex_state = 73, .external_lex_state = 98}, - [9078] = {.lex_state = 178, .external_lex_state = 98}, - [9079] = {.lex_state = 178, .external_lex_state = 98}, - [9080] = {.lex_state = 66, .external_lex_state = 118}, - [9081] = {.lex_state = 178, .external_lex_state = 98}, - [9082] = {.lex_state = 178, .external_lex_state = 98}, - [9083] = {.lex_state = 66, .external_lex_state = 116}, - [9084] = {.lex_state = 178, .external_lex_state = 98}, - [9085] = {.lex_state = 178, .external_lex_state = 98}, + [9077] = {.lex_state = 66, .external_lex_state = 117}, + [9078] = {.lex_state = 67, .external_lex_state = 117}, + [9079] = {.lex_state = 73, .external_lex_state = 99}, + [9080] = {.lex_state = 73, .external_lex_state = 99}, + [9081] = {.lex_state = 67, .external_lex_state = 117}, + [9082] = {.lex_state = 66, .external_lex_state = 116}, + [9083] = {.lex_state = 178, .external_lex_state = 112}, + [9084] = {.lex_state = 66, .external_lex_state = 116}, + [9085] = {.lex_state = 66, .external_lex_state = 117}, [9086] = {.lex_state = 66, .external_lex_state = 116}, - [9087] = {.lex_state = 66, .external_lex_state = 116}, - [9088] = {.lex_state = 67, .external_lex_state = 116}, - [9089] = {.lex_state = 178, .external_lex_state = 98}, - [9090] = {.lex_state = 178, .external_lex_state = 98}, - [9091] = {.lex_state = 178, .external_lex_state = 98}, - [9092] = {.lex_state = 178, .external_lex_state = 98}, - [9093] = {.lex_state = 178, .external_lex_state = 98}, - [9094] = {.lex_state = 178, .external_lex_state = 98}, - [9095] = {.lex_state = 66, .external_lex_state = 116}, - [9096] = {.lex_state = 178, .external_lex_state = 98}, - [9097] = {.lex_state = 178, .external_lex_state = 98}, + [9087] = {.lex_state = 66, .external_lex_state = 117}, + [9088] = {.lex_state = 175, .external_lex_state = 107}, + [9089] = {.lex_state = 66, .external_lex_state = 116}, + [9090] = {.lex_state = 66, .external_lex_state = 117}, + [9091] = {.lex_state = 66, .external_lex_state = 116}, + [9092] = {.lex_state = 66, .external_lex_state = 116}, + [9093] = {.lex_state = 66, .external_lex_state = 117}, + [9094] = {.lex_state = 66, .external_lex_state = 117}, + [9095] = {.lex_state = 67, .external_lex_state = 117}, + [9096] = {.lex_state = 73, .external_lex_state = 99}, + [9097] = {.lex_state = 73, .external_lex_state = 99}, [9098] = {.lex_state = 66, .external_lex_state = 117}, - [9099] = {.lex_state = 66, .external_lex_state = 117}, - [9100] = {.lex_state = 66, .external_lex_state = 116}, - [9101] = {.lex_state = 73, .external_lex_state = 98}, - [9102] = {.lex_state = 66, .external_lex_state = 117}, - [9103] = {.lex_state = 178, .external_lex_state = 115}, - [9104] = {.lex_state = 66, .external_lex_state = 116}, - [9105] = {.lex_state = 73, .external_lex_state = 98}, - [9106] = {.lex_state = 66, .external_lex_state = 117}, - [9107] = {.lex_state = 178, .external_lex_state = 98}, - [9108] = {.lex_state = 74, .external_lex_state = 98}, - [9109] = {.lex_state = 178, .external_lex_state = 98}, - [9110] = {.lex_state = 74, .external_lex_state = 98}, - [9111] = {.lex_state = 178, .external_lex_state = 115}, - [9112] = {.lex_state = 74, .external_lex_state = 98}, - [9113] = {.lex_state = 178, .external_lex_state = 98}, - [9114] = {.lex_state = 178, .external_lex_state = 111}, - [9115] = {.lex_state = 178, .external_lex_state = 114}, - [9116] = {.lex_state = 178, .external_lex_state = 112}, - [9117] = {.lex_state = 178, .external_lex_state = 98}, - [9118] = {.lex_state = 74, .external_lex_state = 98}, - [9119] = {.lex_state = 178, .external_lex_state = 115}, - [9120] = {.lex_state = 74, .external_lex_state = 98}, - [9121] = {.lex_state = 74, .external_lex_state = 98}, - [9122] = {.lex_state = 74, .external_lex_state = 98}, - [9123] = {.lex_state = 74, .external_lex_state = 98}, - [9124] = {.lex_state = 175, .external_lex_state = 98}, - [9125] = {.lex_state = 178, .external_lex_state = 98}, - [9126] = {.lex_state = 178, .external_lex_state = 111}, - [9127] = {.lex_state = 175, .external_lex_state = 98}, - [9128] = {.lex_state = 178, .external_lex_state = 115}, - [9129] = {.lex_state = 178, .external_lex_state = 98}, - [9130] = {.lex_state = 186, .external_lex_state = 112}, - [9131] = {.lex_state = 74, .external_lex_state = 98}, - [9132] = {.lex_state = 186, .external_lex_state = 112}, - [9133] = {.lex_state = 178, .external_lex_state = 111}, - [9134] = {.lex_state = 178, .external_lex_state = 98}, - [9135] = {.lex_state = 178, .external_lex_state = 111}, - [9136] = {.lex_state = 186, .external_lex_state = 112}, - [9137] = {.lex_state = 74, .external_lex_state = 98}, - [9138] = {.lex_state = 186, .external_lex_state = 112}, - [9139] = {.lex_state = 74, .external_lex_state = 98}, - [9140] = {.lex_state = 178, .external_lex_state = 111}, - [9141] = {.lex_state = 178, .external_lex_state = 98}, - [9142] = {.lex_state = 178, .external_lex_state = 98}, - [9143] = {.lex_state = 74, .external_lex_state = 98}, - [9144] = {.lex_state = 178, .external_lex_state = 98}, - [9145] = {.lex_state = 74, .external_lex_state = 98}, - [9146] = {.lex_state = 186, .external_lex_state = 112}, - [9147] = {.lex_state = 74, .external_lex_state = 98}, - [9148] = {.lex_state = 74, .external_lex_state = 98}, - [9149] = {.lex_state = 74, .external_lex_state = 98}, - [9150] = {.lex_state = 178, .external_lex_state = 98}, - [9151] = {.lex_state = 74, .external_lex_state = 98}, - [9152] = {.lex_state = 178, .external_lex_state = 98}, - [9153] = {.lex_state = 74, .external_lex_state = 98}, - [9154] = {.lex_state = 186, .external_lex_state = 112}, - [9155] = {.lex_state = 178, .external_lex_state = 115}, - [9156] = {.lex_state = 186, .external_lex_state = 112}, + [9099] = {.lex_state = 66, .external_lex_state = 116}, + [9100] = {.lex_state = 66, .external_lex_state = 117}, + [9101] = {.lex_state = 66, .external_lex_state = 117}, + [9102] = {.lex_state = 67, .external_lex_state = 117}, + [9103] = {.lex_state = 66, .external_lex_state = 117}, + [9104] = {.lex_state = 73, .external_lex_state = 99}, + [9105] = {.lex_state = 67, .external_lex_state = 117}, + [9106] = {.lex_state = 73, .external_lex_state = 99}, + [9107] = {.lex_state = 186, .external_lex_state = 99}, + [9108] = {.lex_state = 66, .external_lex_state = 117}, + [9109] = {.lex_state = 178, .external_lex_state = 99}, + [9110] = {.lex_state = 178, .external_lex_state = 99}, + [9111] = {.lex_state = 67, .external_lex_state = 117}, + [9112] = {.lex_state = 178, .external_lex_state = 99}, + [9113] = {.lex_state = 178, .external_lex_state = 99}, + [9114] = {.lex_state = 175, .external_lex_state = 107}, + [9115] = {.lex_state = 178, .external_lex_state = 99}, + [9116] = {.lex_state = 178, .external_lex_state = 99}, + [9117] = {.lex_state = 178, .external_lex_state = 99}, + [9118] = {.lex_state = 178, .external_lex_state = 99}, + [9119] = {.lex_state = 66, .external_lex_state = 116}, + [9120] = {.lex_state = 178, .external_lex_state = 99}, + [9121] = {.lex_state = 178, .external_lex_state = 99}, + [9122] = {.lex_state = 178, .external_lex_state = 99}, + [9123] = {.lex_state = 178, .external_lex_state = 99}, + [9124] = {.lex_state = 178, .external_lex_state = 99}, + [9125] = {.lex_state = 66, .external_lex_state = 117}, + [9126] = {.lex_state = 66, .external_lex_state = 116}, + [9127] = {.lex_state = 66, .external_lex_state = 117}, + [9128] = {.lex_state = 178, .external_lex_state = 99}, + [9129] = {.lex_state = 66, .external_lex_state = 116}, + [9130] = {.lex_state = 178, .external_lex_state = 99}, + [9131] = {.lex_state = 178, .external_lex_state = 99}, + [9132] = {.lex_state = 66, .external_lex_state = 117}, + [9133] = {.lex_state = 178, .external_lex_state = 99}, + [9134] = {.lex_state = 178, .external_lex_state = 99}, + [9135] = {.lex_state = 66, .external_lex_state = 117}, + [9136] = {.lex_state = 178, .external_lex_state = 99}, + [9137] = {.lex_state = 178, .external_lex_state = 99}, + [9138] = {.lex_state = 67, .external_lex_state = 117}, + [9139] = {.lex_state = 178, .external_lex_state = 99}, + [9140] = {.lex_state = 178, .external_lex_state = 99}, + [9141] = {.lex_state = 178, .external_lex_state = 99}, + [9142] = {.lex_state = 178, .external_lex_state = 99}, + [9143] = {.lex_state = 178, .external_lex_state = 99}, + [9144] = {.lex_state = 178, .external_lex_state = 99}, + [9145] = {.lex_state = 178, .external_lex_state = 99}, + [9146] = {.lex_state = 178, .external_lex_state = 99}, + [9147] = {.lex_state = 66, .external_lex_state = 117}, + [9148] = {.lex_state = 73, .external_lex_state = 99}, + [9149] = {.lex_state = 66, .external_lex_state = 116}, + [9150] = {.lex_state = 178, .external_lex_state = 99}, + [9151] = {.lex_state = 74, .external_lex_state = 99}, + [9152] = {.lex_state = 178, .external_lex_state = 99}, + [9153] = {.lex_state = 178, .external_lex_state = 99}, + [9154] = {.lex_state = 74, .external_lex_state = 99}, + [9155] = {.lex_state = 178, .external_lex_state = 99}, + [9156] = {.lex_state = 178, .external_lex_state = 99}, [9157] = {.lex_state = 186, .external_lex_state = 112}, - [9158] = {.lex_state = 181, .external_lex_state = 98}, - [9159] = {.lex_state = 181, .external_lex_state = 98}, - [9160] = {.lex_state = 186, .external_lex_state = 112}, - [9161] = {.lex_state = 74, .external_lex_state = 98}, + [9158] = {.lex_state = 74, .external_lex_state = 99}, + [9159] = {.lex_state = 178, .external_lex_state = 99}, + [9160] = {.lex_state = 178, .external_lex_state = 99}, + [9161] = {.lex_state = 186, .external_lex_state = 112}, [9162] = {.lex_state = 186, .external_lex_state = 112}, - [9163] = {.lex_state = 178, .external_lex_state = 98}, - [9164] = {.lex_state = 74, .external_lex_state = 98}, - [9165] = {.lex_state = 178, .external_lex_state = 111}, - [9166] = {.lex_state = 178, .external_lex_state = 98}, - [9167] = {.lex_state = 74, .external_lex_state = 98}, - [9168] = {.lex_state = 74, .external_lex_state = 98}, - [9169] = {.lex_state = 178, .external_lex_state = 98}, - [9170] = {.lex_state = 74, .external_lex_state = 98}, - [9171] = {.lex_state = 74, .external_lex_state = 98}, - [9172] = {.lex_state = 186, .external_lex_state = 112}, - [9173] = {.lex_state = 74, .external_lex_state = 98}, - [9174] = {.lex_state = 186, .external_lex_state = 112}, - [9175] = {.lex_state = 74, .external_lex_state = 98}, - [9176] = {.lex_state = 74, .external_lex_state = 98}, - [9177] = {.lex_state = 186, .external_lex_state = 112}, - [9178] = {.lex_state = 178, .external_lex_state = 115}, - [9179] = {.lex_state = 178, .external_lex_state = 98}, - [9180] = {.lex_state = 186, .external_lex_state = 112}, - [9181] = {.lex_state = 178, .external_lex_state = 98}, - [9182] = {.lex_state = 74, .external_lex_state = 98}, - [9183] = {.lex_state = 74, .external_lex_state = 98}, - [9184] = {.lex_state = 186, .external_lex_state = 112}, - [9185] = {.lex_state = 67, .external_lex_state = 116}, - [9186] = {.lex_state = 65, .external_lex_state = 98}, + [9163] = {.lex_state = 178, .external_lex_state = 99}, + [9164] = {.lex_state = 186, .external_lex_state = 112}, + [9165] = {.lex_state = 178, .external_lex_state = 99}, + [9166] = {.lex_state = 178, .external_lex_state = 111}, + [9167] = {.lex_state = 178, .external_lex_state = 99}, + [9168] = {.lex_state = 178, .external_lex_state = 111}, + [9169] = {.lex_state = 178, .external_lex_state = 99}, + [9170] = {.lex_state = 74, .external_lex_state = 99}, + [9171] = {.lex_state = 74, .external_lex_state = 99}, + [9172] = {.lex_state = 74, .external_lex_state = 99}, + [9173] = {.lex_state = 178, .external_lex_state = 99}, + [9174] = {.lex_state = 181, .external_lex_state = 99}, + [9175] = {.lex_state = 178, .external_lex_state = 99}, + [9176] = {.lex_state = 74, .external_lex_state = 99}, + [9177] = {.lex_state = 178, .external_lex_state = 99}, + [9178] = {.lex_state = 178, .external_lex_state = 99}, + [9179] = {.lex_state = 178, .external_lex_state = 99}, + [9180] = {.lex_state = 74, .external_lex_state = 99}, + [9181] = {.lex_state = 178, .external_lex_state = 111}, + [9182] = {.lex_state = 186, .external_lex_state = 112}, + [9183] = {.lex_state = 178, .external_lex_state = 99}, + [9184] = {.lex_state = 178, .external_lex_state = 99}, + [9185] = {.lex_state = 178, .external_lex_state = 99}, + [9186] = {.lex_state = 74, .external_lex_state = 99}, [9187] = {.lex_state = 186, .external_lex_state = 112}, - [9188] = {.lex_state = 178, .external_lex_state = 111}, - [9189] = {.lex_state = 178, .external_lex_state = 111}, - [9190] = {.lex_state = 178, .external_lex_state = 110}, - [9191] = {.lex_state = 186, .external_lex_state = 98}, - [9192] = {.lex_state = 65, .external_lex_state = 98}, - [9193] = {.lex_state = 178, .external_lex_state = 110}, - [9194] = {.lex_state = 186, .external_lex_state = 112}, - [9195] = {.lex_state = 186, .external_lex_state = 112}, - [9196] = {.lex_state = 186, .external_lex_state = 112}, - [9197] = {.lex_state = 186, .external_lex_state = 112}, - [9198] = {.lex_state = 178, .external_lex_state = 98}, - [9199] = {.lex_state = 178, .external_lex_state = 110}, - [9200] = {.lex_state = 178, .external_lex_state = 98}, - [9201] = {.lex_state = 178, .external_lex_state = 111}, - [9202] = {.lex_state = 178, .external_lex_state = 110}, - [9203] = {.lex_state = 186, .external_lex_state = 98}, - [9204] = {.lex_state = 176, .external_lex_state = 111}, - [9205] = {.lex_state = 175, .external_lex_state = 98}, - [9206] = {.lex_state = 178, .external_lex_state = 98}, - [9207] = {.lex_state = 178, .external_lex_state = 98}, - [9208] = {.lex_state = 175, .external_lex_state = 111}, - [9209] = {.lex_state = 178, .external_lex_state = 112}, - [9210] = {.lex_state = 65, .external_lex_state = 98}, - [9211] = {.lex_state = 178, .external_lex_state = 112}, - [9212] = {.lex_state = 178, .external_lex_state = 112}, - [9213] = {.lex_state = 175, .external_lex_state = 98}, - [9214] = {.lex_state = 65, .external_lex_state = 98}, - [9215] = {.lex_state = 178, .external_lex_state = 112}, - [9216] = {.lex_state = 178, .external_lex_state = 110}, - [9217] = {.lex_state = 65, .external_lex_state = 98}, - [9218] = {.lex_state = 178, .external_lex_state = 111}, - [9219] = {.lex_state = 178, .external_lex_state = 110}, - [9220] = {.lex_state = 178, .external_lex_state = 98}, - [9221] = {.lex_state = 178, .external_lex_state = 98}, - [9222] = {.lex_state = 186, .external_lex_state = 112}, - [9223] = {.lex_state = 66, .external_lex_state = 117}, - [9224] = {.lex_state = 65, .external_lex_state = 98}, - [9225] = {.lex_state = 65, .external_lex_state = 98}, - [9226] = {.lex_state = 178, .external_lex_state = 98}, - [9227] = {.lex_state = 178, .external_lex_state = 111}, - [9228] = {.lex_state = 65, .external_lex_state = 98}, - [9229] = {.lex_state = 178, .external_lex_state = 110}, - [9230] = {.lex_state = 186, .external_lex_state = 112}, - [9231] = {.lex_state = 186, .external_lex_state = 112}, - [9232] = {.lex_state = 65, .external_lex_state = 98}, - [9233] = {.lex_state = 178, .external_lex_state = 98}, - [9234] = {.lex_state = 65, .external_lex_state = 98}, - [9235] = {.lex_state = 178, .external_lex_state = 98}, - [9236] = {.lex_state = 178, .external_lex_state = 98}, - [9237] = {.lex_state = 65, .external_lex_state = 98}, - [9238] = {.lex_state = 178, .external_lex_state = 110}, - [9239] = {.lex_state = 186, .external_lex_state = 112}, - [9240] = {.lex_state = 178, .external_lex_state = 98}, - [9241] = {.lex_state = 66, .external_lex_state = 118}, - [9242] = {.lex_state = 175, .external_lex_state = 119}, - [9243] = {.lex_state = 175, .external_lex_state = 98}, - [9244] = {.lex_state = 178, .external_lex_state = 112}, - [9245] = {.lex_state = 178, .external_lex_state = 98}, - [9246] = {.lex_state = 186, .external_lex_state = 112}, - [9247] = {.lex_state = 186, .external_lex_state = 112}, - [9248] = {.lex_state = 178, .external_lex_state = 98}, - [9249] = {.lex_state = 178, .external_lex_state = 110}, - [9250] = {.lex_state = 65, .external_lex_state = 98}, - [9251] = {.lex_state = 178, .external_lex_state = 110}, - [9252] = {.lex_state = 73, .external_lex_state = 98}, - [9253] = {.lex_state = 186, .external_lex_state = 112}, - [9254] = {.lex_state = 186, .external_lex_state = 112}, - [9255] = {.lex_state = 65, .external_lex_state = 98}, - [9256] = {.lex_state = 65, .external_lex_state = 98}, + [9188] = {.lex_state = 178, .external_lex_state = 99}, + [9189] = {.lex_state = 178, .external_lex_state = 99}, + [9190] = {.lex_state = 178, .external_lex_state = 99}, + [9191] = {.lex_state = 74, .external_lex_state = 99}, + [9192] = {.lex_state = 175, .external_lex_state = 99}, + [9193] = {.lex_state = 178, .external_lex_state = 115}, + [9194] = {.lex_state = 178, .external_lex_state = 99}, + [9195] = {.lex_state = 74, .external_lex_state = 99}, + [9196] = {.lex_state = 178, .external_lex_state = 115}, + [9197] = {.lex_state = 178, .external_lex_state = 99}, + [9198] = {.lex_state = 186, .external_lex_state = 112}, + [9199] = {.lex_state = 74, .external_lex_state = 99}, + [9200] = {.lex_state = 178, .external_lex_state = 112}, + [9201] = {.lex_state = 178, .external_lex_state = 99}, + [9202] = {.lex_state = 178, .external_lex_state = 99}, + [9203] = {.lex_state = 178, .external_lex_state = 99}, + [9204] = {.lex_state = 178, .external_lex_state = 111}, + [9205] = {.lex_state = 186, .external_lex_state = 112}, + [9206] = {.lex_state = 74, .external_lex_state = 99}, + [9207] = {.lex_state = 178, .external_lex_state = 99}, + [9208] = {.lex_state = 178, .external_lex_state = 99}, + [9209] = {.lex_state = 186, .external_lex_state = 112}, + [9210] = {.lex_state = 178, .external_lex_state = 99}, + [9211] = {.lex_state = 74, .external_lex_state = 99}, + [9212] = {.lex_state = 178, .external_lex_state = 111}, + [9213] = {.lex_state = 178, .external_lex_state = 111}, + [9214] = {.lex_state = 74, .external_lex_state = 99}, + [9215] = {.lex_state = 74, .external_lex_state = 99}, + [9216] = {.lex_state = 74, .external_lex_state = 99}, + [9217] = {.lex_state = 74, .external_lex_state = 99}, + [9218] = {.lex_state = 178, .external_lex_state = 115}, + [9219] = {.lex_state = 178, .external_lex_state = 99}, + [9220] = {.lex_state = 175, .external_lex_state = 99}, + [9221] = {.lex_state = 186, .external_lex_state = 112}, + [9222] = {.lex_state = 178, .external_lex_state = 99}, + [9223] = {.lex_state = 74, .external_lex_state = 99}, + [9224] = {.lex_state = 178, .external_lex_state = 115}, + [9225] = {.lex_state = 178, .external_lex_state = 99}, + [9226] = {.lex_state = 178, .external_lex_state = 99}, + [9227] = {.lex_state = 186, .external_lex_state = 112}, + [9228] = {.lex_state = 178, .external_lex_state = 99}, + [9229] = {.lex_state = 181, .external_lex_state = 99}, + [9230] = {.lex_state = 178, .external_lex_state = 99}, + [9231] = {.lex_state = 178, .external_lex_state = 99}, + [9232] = {.lex_state = 74, .external_lex_state = 99}, + [9233] = {.lex_state = 74, .external_lex_state = 99}, + [9234] = {.lex_state = 178, .external_lex_state = 99}, + [9235] = {.lex_state = 74, .external_lex_state = 99}, + [9236] = {.lex_state = 74, .external_lex_state = 99}, + [9237] = {.lex_state = 74, .external_lex_state = 99}, + [9238] = {.lex_state = 186, .external_lex_state = 112}, + [9239] = {.lex_state = 178, .external_lex_state = 99}, + [9240] = {.lex_state = 178, .external_lex_state = 99}, + [9241] = {.lex_state = 74, .external_lex_state = 99}, + [9242] = {.lex_state = 74, .external_lex_state = 99}, + [9243] = {.lex_state = 74, .external_lex_state = 99}, + [9244] = {.lex_state = 178, .external_lex_state = 99}, + [9245] = {.lex_state = 178, .external_lex_state = 99}, + [9246] = {.lex_state = 178, .external_lex_state = 99}, + [9247] = {.lex_state = 74, .external_lex_state = 99}, + [9248] = {.lex_state = 178, .external_lex_state = 114}, + [9249] = {.lex_state = 178, .external_lex_state = 115}, + [9250] = {.lex_state = 186, .external_lex_state = 112}, + [9251] = {.lex_state = 186, .external_lex_state = 112}, + [9252] = {.lex_state = 178, .external_lex_state = 99}, + [9253] = {.lex_state = 74, .external_lex_state = 99}, + [9254] = {.lex_state = 178, .external_lex_state = 110}, + [9255] = {.lex_state = 178, .external_lex_state = 110}, + [9256] = {.lex_state = 186, .external_lex_state = 112}, [9257] = {.lex_state = 186, .external_lex_state = 112}, - [9258] = {.lex_state = 65, .external_lex_state = 98}, - [9259] = {.lex_state = 186, .external_lex_state = 112}, - [9260] = {.lex_state = 65, .external_lex_state = 98}, - [9261] = {.lex_state = 178, .external_lex_state = 110}, + [9258] = {.lex_state = 65, .external_lex_state = 99}, + [9259] = {.lex_state = 178, .external_lex_state = 112}, + [9260] = {.lex_state = 178, .external_lex_state = 112}, + [9261] = {.lex_state = 65, .external_lex_state = 99}, [9262] = {.lex_state = 178, .external_lex_state = 112}, - [9263] = {.lex_state = 65, .external_lex_state = 98}, - [9264] = {.lex_state = 178, .external_lex_state = 112}, - [9265] = {.lex_state = 186, .external_lex_state = 112}, + [9263] = {.lex_state = 73, .external_lex_state = 99}, + [9264] = {.lex_state = 178, .external_lex_state = 99}, + [9265] = {.lex_state = 178, .external_lex_state = 111}, [9266] = {.lex_state = 186, .external_lex_state = 112}, - [9267] = {.lex_state = 65, .external_lex_state = 98}, - [9268] = {.lex_state = 178, .external_lex_state = 98}, - [9269] = {.lex_state = 67, .external_lex_state = 116}, - [9270] = {.lex_state = 65, .external_lex_state = 98}, - [9271] = {.lex_state = 178, .external_lex_state = 111}, - [9272] = {.lex_state = 66, .external_lex_state = 118}, - [9273] = {.lex_state = 65, .external_lex_state = 98}, - [9274] = {.lex_state = 178, .external_lex_state = 98}, - [9275] = {.lex_state = 65, .external_lex_state = 98}, - [9276] = {.lex_state = 178, .external_lex_state = 98}, - [9277] = {.lex_state = 178, .external_lex_state = 110}, - [9278] = {.lex_state = 66, .external_lex_state = 116}, - [9279] = {.lex_state = 166, .external_lex_state = 98}, - [9280] = {.lex_state = 178, .external_lex_state = 111}, - [9281] = {.lex_state = 178, .external_lex_state = 112}, - [9282] = {.lex_state = 178, .external_lex_state = 112}, - [9283] = {.lex_state = 186, .external_lex_state = 112}, - [9284] = {.lex_state = 186, .external_lex_state = 112}, - [9285] = {.lex_state = 178, .external_lex_state = 111}, - [9286] = {.lex_state = 178, .external_lex_state = 112}, - [9287] = {.lex_state = 175, .external_lex_state = 119}, - [9288] = {.lex_state = 65, .external_lex_state = 98}, - [9289] = {.lex_state = 178, .external_lex_state = 110}, - [9290] = {.lex_state = 65, .external_lex_state = 98}, - [9291] = {.lex_state = 73, .external_lex_state = 98}, - [9292] = {.lex_state = 65, .external_lex_state = 98}, - [9293] = {.lex_state = 65, .external_lex_state = 98}, - [9294] = {.lex_state = 178, .external_lex_state = 112}, - [9295] = {.lex_state = 41, .external_lex_state = 98}, - [9296] = {.lex_state = 65, .external_lex_state = 98}, - [9297] = {.lex_state = 178, .external_lex_state = 98}, - [9298] = {.lex_state = 186, .external_lex_state = 112}, - [9299] = {.lex_state = 178, .external_lex_state = 98}, - [9300] = {.lex_state = 186, .external_lex_state = 112}, - [9301] = {.lex_state = 186, .external_lex_state = 112}, - [9302] = {.lex_state = 175, .external_lex_state = 98}, - [9303] = {.lex_state = 186, .external_lex_state = 112}, - [9304] = {.lex_state = 186, .external_lex_state = 112}, - [9305] = {.lex_state = 178, .external_lex_state = 112}, - [9306] = {.lex_state = 178, .external_lex_state = 112}, - [9307] = {.lex_state = 178, .external_lex_state = 110}, - [9308] = {.lex_state = 178, .external_lex_state = 98}, - [9309] = {.lex_state = 65, .external_lex_state = 98}, + [9267] = {.lex_state = 178, .external_lex_state = 99}, + [9268] = {.lex_state = 175, .external_lex_state = 119}, + [9269] = {.lex_state = 65, .external_lex_state = 99}, + [9270] = {.lex_state = 178, .external_lex_state = 112}, + [9271] = {.lex_state = 178, .external_lex_state = 99}, + [9272] = {.lex_state = 178, .external_lex_state = 111}, + [9273] = {.lex_state = 186, .external_lex_state = 112}, + [9274] = {.lex_state = 175, .external_lex_state = 99}, + [9275] = {.lex_state = 175, .external_lex_state = 119}, + [9276] = {.lex_state = 66, .external_lex_state = 116}, + [9277] = {.lex_state = 178, .external_lex_state = 112}, + [9278] = {.lex_state = 178, .external_lex_state = 112}, + [9279] = {.lex_state = 178, .external_lex_state = 112}, + [9280] = {.lex_state = 178, .external_lex_state = 112}, + [9281] = {.lex_state = 186, .external_lex_state = 112}, + [9282] = {.lex_state = 65, .external_lex_state = 99}, + [9283] = {.lex_state = 65, .external_lex_state = 99}, + [9284] = {.lex_state = 178, .external_lex_state = 110}, + [9285] = {.lex_state = 186, .external_lex_state = 112}, + [9286] = {.lex_state = 178, .external_lex_state = 99}, + [9287] = {.lex_state = 65, .external_lex_state = 99}, + [9288] = {.lex_state = 175, .external_lex_state = 99}, + [9289] = {.lex_state = 186, .external_lex_state = 112}, + [9290] = {.lex_state = 178, .external_lex_state = 110}, + [9291] = {.lex_state = 178, .external_lex_state = 110}, + [9292] = {.lex_state = 175, .external_lex_state = 111}, + [9293] = {.lex_state = 178, .external_lex_state = 111}, + [9294] = {.lex_state = 65, .external_lex_state = 99}, + [9295] = {.lex_state = 186, .external_lex_state = 112}, + [9296] = {.lex_state = 186, .external_lex_state = 112}, + [9297] = {.lex_state = 176, .external_lex_state = 111}, + [9298] = {.lex_state = 178, .external_lex_state = 99}, + [9299] = {.lex_state = 65, .external_lex_state = 99}, + [9300] = {.lex_state = 178, .external_lex_state = 112}, + [9301] = {.lex_state = 178, .external_lex_state = 112}, + [9302] = {.lex_state = 178, .external_lex_state = 112}, + [9303] = {.lex_state = 178, .external_lex_state = 110}, + [9304] = {.lex_state = 178, .external_lex_state = 99}, + [9305] = {.lex_state = 178, .external_lex_state = 111}, + [9306] = {.lex_state = 178, .external_lex_state = 99}, + [9307] = {.lex_state = 186, .external_lex_state = 99}, + [9308] = {.lex_state = 178, .external_lex_state = 111}, + [9309] = {.lex_state = 65, .external_lex_state = 99}, [9310] = {.lex_state = 178, .external_lex_state = 110}, - [9311] = {.lex_state = 66, .external_lex_state = 117}, - [9312] = {.lex_state = 178, .external_lex_state = 112}, - [9313] = {.lex_state = 178, .external_lex_state = 98}, - [9314] = {.lex_state = 178, .external_lex_state = 111}, - [9315] = {.lex_state = 66, .external_lex_state = 116}, - [9316] = {.lex_state = 175, .external_lex_state = 119}, - [9317] = {.lex_state = 65, .external_lex_state = 98}, - [9318] = {.lex_state = 178, .external_lex_state = 98}, - [9319] = {.lex_state = 186, .external_lex_state = 112}, - [9320] = {.lex_state = 186, .external_lex_state = 112}, - [9321] = {.lex_state = 186, .external_lex_state = 112}, - [9322] = {.lex_state = 178, .external_lex_state = 98}, - [9323] = {.lex_state = 65, .external_lex_state = 98}, - [9324] = {.lex_state = 178, .external_lex_state = 111}, - [9325] = {.lex_state = 178, .external_lex_state = 98}, - [9326] = {.lex_state = 41, .external_lex_state = 98}, - [9327] = {.lex_state = 178, .external_lex_state = 112}, - [9328] = {.lex_state = 41, .external_lex_state = 98}, - [9329] = {.lex_state = 178, .external_lex_state = 112}, - [9330] = {.lex_state = 175, .external_lex_state = 120}, - [9331] = {.lex_state = 65, .external_lex_state = 98}, - [9332] = {.lex_state = 178, .external_lex_state = 112}, - [9333] = {.lex_state = 175, .external_lex_state = 120}, - [9334] = {.lex_state = 175, .external_lex_state = 120}, - [9335] = {.lex_state = 175, .external_lex_state = 98}, - [9336] = {.lex_state = 175, .external_lex_state = 120}, - [9337] = {.lex_state = 175, .external_lex_state = 120}, - [9338] = {.lex_state = 175, .external_lex_state = 98}, - [9339] = {.lex_state = 178, .external_lex_state = 114}, - [9340] = {.lex_state = 178, .external_lex_state = 98}, - [9341] = {.lex_state = 178, .external_lex_state = 112}, - [9342] = {.lex_state = 178, .external_lex_state = 98}, - [9343] = {.lex_state = 178, .external_lex_state = 112}, - [9344] = {.lex_state = 178, .external_lex_state = 112}, - [9345] = {.lex_state = 178, .external_lex_state = 112}, - [9346] = {.lex_state = 175, .external_lex_state = 120}, - [9347] = {.lex_state = 178, .external_lex_state = 112}, - [9348] = {.lex_state = 178, .external_lex_state = 111}, - [9349] = {.lex_state = 178, .external_lex_state = 98}, - [9350] = {.lex_state = 178, .external_lex_state = 112}, - [9351] = {.lex_state = 178, .external_lex_state = 111}, - [9352] = {.lex_state = 175, .external_lex_state = 120}, - [9353] = {.lex_state = 175, .external_lex_state = 120}, - [9354] = {.lex_state = 178, .external_lex_state = 111}, - [9355] = {.lex_state = 178, .external_lex_state = 111}, - [9356] = {.lex_state = 175, .external_lex_state = 120}, - [9357] = {.lex_state = 175, .external_lex_state = 120}, - [9358] = {.lex_state = 175, .external_lex_state = 98}, - [9359] = {.lex_state = 178, .external_lex_state = 111}, - [9360] = {.lex_state = 178, .external_lex_state = 111}, + [9311] = {.lex_state = 186, .external_lex_state = 112}, + [9312] = {.lex_state = 178, .external_lex_state = 110}, + [9313] = {.lex_state = 66, .external_lex_state = 117}, + [9314] = {.lex_state = 65, .external_lex_state = 99}, + [9315] = {.lex_state = 66, .external_lex_state = 118}, + [9316] = {.lex_state = 66, .external_lex_state = 116}, + [9317] = {.lex_state = 65, .external_lex_state = 99}, + [9318] = {.lex_state = 175, .external_lex_state = 119}, + [9319] = {.lex_state = 65, .external_lex_state = 99}, + [9320] = {.lex_state = 178, .external_lex_state = 112}, + [9321] = {.lex_state = 65, .external_lex_state = 99}, + [9322] = {.lex_state = 186, .external_lex_state = 112}, + [9323] = {.lex_state = 186, .external_lex_state = 112}, + [9324] = {.lex_state = 178, .external_lex_state = 110}, + [9325] = {.lex_state = 186, .external_lex_state = 112}, + [9326] = {.lex_state = 65, .external_lex_state = 99}, + [9327] = {.lex_state = 67, .external_lex_state = 117}, + [9328] = {.lex_state = 186, .external_lex_state = 112}, + [9329] = {.lex_state = 178, .external_lex_state = 99}, + [9330] = {.lex_state = 186, .external_lex_state = 112}, + [9331] = {.lex_state = 73, .external_lex_state = 99}, + [9332] = {.lex_state = 178, .external_lex_state = 111}, + [9333] = {.lex_state = 178, .external_lex_state = 99}, + [9334] = {.lex_state = 65, .external_lex_state = 99}, + [9335] = {.lex_state = 186, .external_lex_state = 99}, + [9336] = {.lex_state = 178, .external_lex_state = 110}, + [9337] = {.lex_state = 178, .external_lex_state = 99}, + [9338] = {.lex_state = 65, .external_lex_state = 99}, + [9339] = {.lex_state = 186, .external_lex_state = 112}, + [9340] = {.lex_state = 65, .external_lex_state = 99}, + [9341] = {.lex_state = 186, .external_lex_state = 112}, + [9342] = {.lex_state = 178, .external_lex_state = 110}, + [9343] = {.lex_state = 178, .external_lex_state = 110}, + [9344] = {.lex_state = 186, .external_lex_state = 112}, + [9345] = {.lex_state = 65, .external_lex_state = 99}, + [9346] = {.lex_state = 175, .external_lex_state = 99}, + [9347] = {.lex_state = 186, .external_lex_state = 112}, + [9348] = {.lex_state = 65, .external_lex_state = 99}, + [9349] = {.lex_state = 67, .external_lex_state = 117}, + [9350] = {.lex_state = 65, .external_lex_state = 99}, + [9351] = {.lex_state = 178, .external_lex_state = 99}, + [9352] = {.lex_state = 186, .external_lex_state = 112}, + [9353] = {.lex_state = 41, .external_lex_state = 99}, + [9354] = {.lex_state = 186, .external_lex_state = 112}, + [9355] = {.lex_state = 186, .external_lex_state = 112}, + [9356] = {.lex_state = 178, .external_lex_state = 110}, + [9357] = {.lex_state = 65, .external_lex_state = 99}, + [9358] = {.lex_state = 178, .external_lex_state = 99}, + [9359] = {.lex_state = 186, .external_lex_state = 112}, + [9360] = {.lex_state = 186, .external_lex_state = 112}, [9361] = {.lex_state = 178, .external_lex_state = 111}, - [9362] = {.lex_state = 178, .external_lex_state = 111}, - [9363] = {.lex_state = 175, .external_lex_state = 98}, - [9364] = {.lex_state = 178, .external_lex_state = 112}, - [9365] = {.lex_state = 178, .external_lex_state = 111}, + [9362] = {.lex_state = 178, .external_lex_state = 112}, + [9363] = {.lex_state = 65, .external_lex_state = 99}, + [9364] = {.lex_state = 66, .external_lex_state = 118}, + [9365] = {.lex_state = 175, .external_lex_state = 99}, [9366] = {.lex_state = 178, .external_lex_state = 111}, - [9367] = {.lex_state = 178, .external_lex_state = 111}, - [9368] = {.lex_state = 178, .external_lex_state = 114}, - [9369] = {.lex_state = 178, .external_lex_state = 111}, - [9370] = {.lex_state = 175, .external_lex_state = 120}, - [9371] = {.lex_state = 175, .external_lex_state = 120}, - [9372] = {.lex_state = 178, .external_lex_state = 98}, - [9373] = {.lex_state = 175, .external_lex_state = 98}, - [9374] = {.lex_state = 178, .external_lex_state = 98}, - [9375] = {.lex_state = 178, .external_lex_state = 98}, - [9376] = {.lex_state = 178, .external_lex_state = 112}, - [9377] = {.lex_state = 178, .external_lex_state = 98}, - [9378] = {.lex_state = 175, .external_lex_state = 98}, - [9379] = {.lex_state = 175, .external_lex_state = 98}, - [9380] = {.lex_state = 175, .external_lex_state = 98}, - [9381] = {.lex_state = 178, .external_lex_state = 112}, - [9382] = {.lex_state = 175, .external_lex_state = 98}, - [9383] = {.lex_state = 175, .external_lex_state = 98}, - [9384] = {.lex_state = 175, .external_lex_state = 98}, - [9385] = {.lex_state = 175, .external_lex_state = 98}, - [9386] = {.lex_state = 178, .external_lex_state = 112}, - [9387] = {.lex_state = 175, .external_lex_state = 98}, - [9388] = {.lex_state = 175, .external_lex_state = 98}, - [9389] = {.lex_state = 175, .external_lex_state = 98}, - [9390] = {.lex_state = 175, .external_lex_state = 98}, - [9391] = {.lex_state = 175, .external_lex_state = 98}, - [9392] = {.lex_state = 175, .external_lex_state = 98}, - [9393] = {.lex_state = 175, .external_lex_state = 120}, - [9394] = {.lex_state = 175, .external_lex_state = 120}, - [9395] = {.lex_state = 178, .external_lex_state = 114}, - [9396] = {.lex_state = 175, .external_lex_state = 98}, - [9397] = {.lex_state = 175, .external_lex_state = 98}, - [9398] = {.lex_state = 175, .external_lex_state = 98}, - [9399] = {.lex_state = 175, .external_lex_state = 98}, - [9400] = {.lex_state = 178, .external_lex_state = 111}, - [9401] = {.lex_state = 178, .external_lex_state = 111}, - [9402] = {.lex_state = 178, .external_lex_state = 111}, - [9403] = {.lex_state = 178, .external_lex_state = 111}, - [9404] = {.lex_state = 178, .external_lex_state = 111}, - [9405] = {.lex_state = 178, .external_lex_state = 111}, - [9406] = {.lex_state = 178, .external_lex_state = 98}, - [9407] = {.lex_state = 178, .external_lex_state = 111}, - [9408] = {.lex_state = 175, .external_lex_state = 98}, - [9409] = {.lex_state = 178, .external_lex_state = 98}, - [9410] = {.lex_state = 175, .external_lex_state = 98}, - [9411] = {.lex_state = 175, .external_lex_state = 98}, - [9412] = {.lex_state = 178, .external_lex_state = 111}, - [9413] = {.lex_state = 175, .external_lex_state = 120}, - [9414] = {.lex_state = 175, .external_lex_state = 120}, - [9415] = {.lex_state = 175, .external_lex_state = 119}, - [9416] = {.lex_state = 178, .external_lex_state = 111}, - [9417] = {.lex_state = 175, .external_lex_state = 120}, - [9418] = {.lex_state = 175, .external_lex_state = 120}, - [9419] = {.lex_state = 175, .external_lex_state = 98}, + [9367] = {.lex_state = 178, .external_lex_state = 99}, + [9368] = {.lex_state = 178, .external_lex_state = 110}, + [9369] = {.lex_state = 178, .external_lex_state = 99}, + [9370] = {.lex_state = 186, .external_lex_state = 112}, + [9371] = {.lex_state = 186, .external_lex_state = 112}, + [9372] = {.lex_state = 166, .external_lex_state = 99}, + [9373] = {.lex_state = 65, .external_lex_state = 99}, + [9374] = {.lex_state = 65, .external_lex_state = 99}, + [9375] = {.lex_state = 178, .external_lex_state = 99}, + [9376] = {.lex_state = 178, .external_lex_state = 99}, + [9377] = {.lex_state = 65, .external_lex_state = 99}, + [9378] = {.lex_state = 178, .external_lex_state = 99}, + [9379] = {.lex_state = 186, .external_lex_state = 112}, + [9380] = {.lex_state = 186, .external_lex_state = 112}, + [9381] = {.lex_state = 178, .external_lex_state = 99}, + [9382] = {.lex_state = 65, .external_lex_state = 99}, + [9383] = {.lex_state = 178, .external_lex_state = 99}, + [9384] = {.lex_state = 178, .external_lex_state = 99}, + [9385] = {.lex_state = 178, .external_lex_state = 99}, + [9386] = {.lex_state = 178, .external_lex_state = 99}, + [9387] = {.lex_state = 178, .external_lex_state = 110}, + [9388] = {.lex_state = 65, .external_lex_state = 99}, + [9389] = {.lex_state = 66, .external_lex_state = 117}, + [9390] = {.lex_state = 178, .external_lex_state = 112}, + [9391] = {.lex_state = 65, .external_lex_state = 99}, + [9392] = {.lex_state = 178, .external_lex_state = 111}, + [9393] = {.lex_state = 65, .external_lex_state = 99}, + [9394] = {.lex_state = 175, .external_lex_state = 99}, + [9395] = {.lex_state = 178, .external_lex_state = 112}, + [9396] = {.lex_state = 178, .external_lex_state = 112}, + [9397] = {.lex_state = 178, .external_lex_state = 99}, + [9398] = {.lex_state = 41, .external_lex_state = 99}, + [9399] = {.lex_state = 178, .external_lex_state = 111}, + [9400] = {.lex_state = 178, .external_lex_state = 112}, + [9401] = {.lex_state = 178, .external_lex_state = 112}, + [9402] = {.lex_state = 178, .external_lex_state = 112}, + [9403] = {.lex_state = 178, .external_lex_state = 112}, + [9404] = {.lex_state = 178, .external_lex_state = 112}, + [9405] = {.lex_state = 178, .external_lex_state = 99}, + [9406] = {.lex_state = 175, .external_lex_state = 120}, + [9407] = {.lex_state = 175, .external_lex_state = 120}, + [9408] = {.lex_state = 178, .external_lex_state = 111}, + [9409] = {.lex_state = 175, .external_lex_state = 120}, + [9410] = {.lex_state = 175, .external_lex_state = 120}, + [9411] = {.lex_state = 178, .external_lex_state = 112}, + [9412] = {.lex_state = 178, .external_lex_state = 99}, + [9413] = {.lex_state = 178, .external_lex_state = 112}, + [9414] = {.lex_state = 178, .external_lex_state = 112}, + [9415] = {.lex_state = 178, .external_lex_state = 112}, + [9416] = {.lex_state = 178, .external_lex_state = 112}, + [9417] = {.lex_state = 41, .external_lex_state = 99}, + [9418] = {.lex_state = 178, .external_lex_state = 112}, + [9419] = {.lex_state = 178, .external_lex_state = 111}, [9420] = {.lex_state = 178, .external_lex_state = 111}, - [9421] = {.lex_state = 175, .external_lex_state = 98}, + [9421] = {.lex_state = 178, .external_lex_state = 111}, [9422] = {.lex_state = 178, .external_lex_state = 111}, [9423] = {.lex_state = 178, .external_lex_state = 111}, [9424] = {.lex_state = 178, .external_lex_state = 111}, - [9425] = {.lex_state = 178, .external_lex_state = 111}, - [9426] = {.lex_state = 178, .external_lex_state = 111}, - [9427] = {.lex_state = 178, .external_lex_state = 111}, - [9428] = {.lex_state = 178, .external_lex_state = 111}, - [9429] = {.lex_state = 175, .external_lex_state = 98}, + [9425] = {.lex_state = 175, .external_lex_state = 120}, + [9426] = {.lex_state = 175, .external_lex_state = 120}, + [9427] = {.lex_state = 65, .external_lex_state = 99}, + [9428] = {.lex_state = 175, .external_lex_state = 99}, + [9429] = {.lex_state = 175, .external_lex_state = 99}, [9430] = {.lex_state = 175, .external_lex_state = 120}, - [9431] = {.lex_state = 178, .external_lex_state = 111}, - [9432] = {.lex_state = 178, .external_lex_state = 111}, - [9433] = {.lex_state = 178, .external_lex_state = 111}, - [9434] = {.lex_state = 178, .external_lex_state = 111}, - [9435] = {.lex_state = 178, .external_lex_state = 111}, - [9436] = {.lex_state = 178, .external_lex_state = 111}, - [9437] = {.lex_state = 178, .external_lex_state = 111}, - [9438] = {.lex_state = 178, .external_lex_state = 111}, - [9439] = {.lex_state = 41, .external_lex_state = 98}, - [9440] = {.lex_state = 178, .external_lex_state = 111}, - [9441] = {.lex_state = 178, .external_lex_state = 111}, - [9442] = {.lex_state = 178, .external_lex_state = 111}, - [9443] = {.lex_state = 178, .external_lex_state = 111}, - [9444] = {.lex_state = 178, .external_lex_state = 111}, - [9445] = {.lex_state = 178, .external_lex_state = 111}, - [9446] = {.lex_state = 178, .external_lex_state = 111}, - [9447] = {.lex_state = 178, .external_lex_state = 111}, - [9448] = {.lex_state = 178, .external_lex_state = 111}, - [9449] = {.lex_state = 178, .external_lex_state = 111}, - [9450] = {.lex_state = 178, .external_lex_state = 111}, - [9451] = {.lex_state = 178, .external_lex_state = 112}, - [9452] = {.lex_state = 175, .external_lex_state = 98}, - [9453] = {.lex_state = 175, .external_lex_state = 98}, - [9454] = {.lex_state = 178, .external_lex_state = 98}, - [9455] = {.lex_state = 178, .external_lex_state = 112}, - [9456] = {.lex_state = 178, .external_lex_state = 111}, - [9457] = {.lex_state = 178, .external_lex_state = 111}, - [9458] = {.lex_state = 178, .external_lex_state = 112}, - [9459] = {.lex_state = 175, .external_lex_state = 120}, - [9460] = {.lex_state = 178, .external_lex_state = 112}, - [9461] = {.lex_state = 178, .external_lex_state = 111}, - [9462] = {.lex_state = 175, .external_lex_state = 120}, - [9463] = {.lex_state = 178, .external_lex_state = 111}, + [9431] = {.lex_state = 178, .external_lex_state = 114}, + [9432] = {.lex_state = 175, .external_lex_state = 120}, + [9433] = {.lex_state = 175, .external_lex_state = 99}, + [9434] = {.lex_state = 41, .external_lex_state = 99}, + [9435] = {.lex_state = 175, .external_lex_state = 111}, + [9436] = {.lex_state = 178, .external_lex_state = 112}, + [9437] = {.lex_state = 178, .external_lex_state = 114}, + [9438] = {.lex_state = 175, .external_lex_state = 120}, + [9439] = {.lex_state = 178, .external_lex_state = 99}, + [9440] = {.lex_state = 175, .external_lex_state = 120}, + [9441] = {.lex_state = 175, .external_lex_state = 120}, + [9442] = {.lex_state = 175, .external_lex_state = 99}, + [9443] = {.lex_state = 175, .external_lex_state = 99}, + [9444] = {.lex_state = 175, .external_lex_state = 99}, + [9445] = {.lex_state = 175, .external_lex_state = 99}, + [9446] = {.lex_state = 175, .external_lex_state = 99}, + [9447] = {.lex_state = 175, .external_lex_state = 99}, + [9448] = {.lex_state = 178, .external_lex_state = 112}, + [9449] = {.lex_state = 175, .external_lex_state = 99}, + [9450] = {.lex_state = 175, .external_lex_state = 99}, + [9451] = {.lex_state = 175, .external_lex_state = 99}, + [9452] = {.lex_state = 175, .external_lex_state = 99}, + [9453] = {.lex_state = 175, .external_lex_state = 99}, + [9454] = {.lex_state = 175, .external_lex_state = 99}, + [9455] = {.lex_state = 175, .external_lex_state = 99}, + [9456] = {.lex_state = 178, .external_lex_state = 99}, + [9457] = {.lex_state = 175, .external_lex_state = 99}, + [9458] = {.lex_state = 175, .external_lex_state = 99}, + [9459] = {.lex_state = 175, .external_lex_state = 99}, + [9460] = {.lex_state = 175, .external_lex_state = 99}, + [9461] = {.lex_state = 175, .external_lex_state = 99}, + [9462] = {.lex_state = 178, .external_lex_state = 112}, + [9463] = {.lex_state = 175, .external_lex_state = 99}, [9464] = {.lex_state = 175, .external_lex_state = 120}, - [9465] = {.lex_state = 175, .external_lex_state = 120}, - [9466] = {.lex_state = 178, .external_lex_state = 98}, - [9467] = {.lex_state = 175, .external_lex_state = 120}, - [9468] = {.lex_state = 175, .external_lex_state = 120}, - [9469] = {.lex_state = 175, .external_lex_state = 111}, - [9470] = {.lex_state = 178, .external_lex_state = 112}, - [9471] = {.lex_state = 178, .external_lex_state = 98}, - [9472] = {.lex_state = 178, .external_lex_state = 112}, - [9473] = {.lex_state = 178, .external_lex_state = 112}, - [9474] = {.lex_state = 175, .external_lex_state = 120}, - [9475] = {.lex_state = 175, .external_lex_state = 98}, + [9465] = {.lex_state = 178, .external_lex_state = 111}, + [9466] = {.lex_state = 178, .external_lex_state = 111}, + [9467] = {.lex_state = 178, .external_lex_state = 111}, + [9468] = {.lex_state = 178, .external_lex_state = 111}, + [9469] = {.lex_state = 178, .external_lex_state = 111}, + [9470] = {.lex_state = 178, .external_lex_state = 111}, + [9471] = {.lex_state = 175, .external_lex_state = 120}, + [9472] = {.lex_state = 175, .external_lex_state = 120}, + [9473] = {.lex_state = 175, .external_lex_state = 120}, + [9474] = {.lex_state = 178, .external_lex_state = 111}, + [9475] = {.lex_state = 175, .external_lex_state = 120}, [9476] = {.lex_state = 175, .external_lex_state = 120}, - [9477] = {.lex_state = 175, .external_lex_state = 120}, - [9478] = {.lex_state = 175, .external_lex_state = 98}, - [9479] = {.lex_state = 175, .external_lex_state = 98}, - [9480] = {.lex_state = 175, .external_lex_state = 98}, - [9481] = {.lex_state = 41, .external_lex_state = 98}, - [9482] = {.lex_state = 175, .external_lex_state = 98}, - [9483] = {.lex_state = 175, .external_lex_state = 98}, - [9484] = {.lex_state = 175, .external_lex_state = 98}, + [9477] = {.lex_state = 178, .external_lex_state = 99}, + [9478] = {.lex_state = 175, .external_lex_state = 120}, + [9479] = {.lex_state = 175, .external_lex_state = 120}, + [9480] = {.lex_state = 175, .external_lex_state = 120}, + [9481] = {.lex_state = 175, .external_lex_state = 120}, + [9482] = {.lex_state = 178, .external_lex_state = 99}, + [9483] = {.lex_state = 175, .external_lex_state = 120}, + [9484] = {.lex_state = 175, .external_lex_state = 120}, [9485] = {.lex_state = 178, .external_lex_state = 112}, - [9486] = {.lex_state = 175, .external_lex_state = 120}, + [9486] = {.lex_state = 175, .external_lex_state = 99}, [9487] = {.lex_state = 175, .external_lex_state = 120}, - [9488] = {.lex_state = 175, .external_lex_state = 98}, - [9489] = {.lex_state = 175, .external_lex_state = 98}, - [9490] = {.lex_state = 175, .external_lex_state = 98}, - [9491] = {.lex_state = 175, .external_lex_state = 98}, - [9492] = {.lex_state = 175, .external_lex_state = 98}, - [9493] = {.lex_state = 175, .external_lex_state = 98}, - [9494] = {.lex_state = 175, .external_lex_state = 98}, - [9495] = {.lex_state = 175, .external_lex_state = 98}, - [9496] = {.lex_state = 175, .external_lex_state = 98}, - [9497] = {.lex_state = 41, .external_lex_state = 98}, - [9498] = {.lex_state = 178, .external_lex_state = 112}, - [9499] = {.lex_state = 175, .external_lex_state = 98}, - [9500] = {.lex_state = 178, .external_lex_state = 98}, - [9501] = {.lex_state = 175, .external_lex_state = 98}, - [9502] = {.lex_state = 178, .external_lex_state = 112}, - [9503] = {.lex_state = 175, .external_lex_state = 98}, - [9504] = {.lex_state = 178, .external_lex_state = 112}, - [9505] = {.lex_state = 178, .external_lex_state = 112}, - [9506] = {.lex_state = 175, .external_lex_state = 98}, - [9507] = {.lex_state = 175, .external_lex_state = 98}, - [9508] = {.lex_state = 175, .external_lex_state = 98}, - [9509] = {.lex_state = 175, .external_lex_state = 98}, - [9510] = {.lex_state = 178, .external_lex_state = 112}, + [9488] = {.lex_state = 175, .external_lex_state = 99}, + [9489] = {.lex_state = 178, .external_lex_state = 112}, + [9490] = {.lex_state = 175, .external_lex_state = 99}, + [9491] = {.lex_state = 178, .external_lex_state = 111}, + [9492] = {.lex_state = 178, .external_lex_state = 111}, + [9493] = {.lex_state = 175, .external_lex_state = 99}, + [9494] = {.lex_state = 178, .external_lex_state = 112}, + [9495] = {.lex_state = 178, .external_lex_state = 99}, + [9496] = {.lex_state = 175, .external_lex_state = 99}, + [9497] = {.lex_state = 178, .external_lex_state = 99}, + [9498] = {.lex_state = 175, .external_lex_state = 99}, + [9499] = {.lex_state = 178, .external_lex_state = 111}, + [9500] = {.lex_state = 178, .external_lex_state = 111}, + [9501] = {.lex_state = 178, .external_lex_state = 112}, + [9502] = {.lex_state = 178, .external_lex_state = 99}, + [9503] = {.lex_state = 178, .external_lex_state = 111}, + [9504] = {.lex_state = 175, .external_lex_state = 99}, + [9505] = {.lex_state = 178, .external_lex_state = 111}, + [9506] = {.lex_state = 178, .external_lex_state = 111}, + [9507] = {.lex_state = 178, .external_lex_state = 112}, + [9508] = {.lex_state = 178, .external_lex_state = 112}, + [9509] = {.lex_state = 178, .external_lex_state = 111}, + [9510] = {.lex_state = 175, .external_lex_state = 120}, [9511] = {.lex_state = 175, .external_lex_state = 120}, - [9512] = {.lex_state = 178, .external_lex_state = 98}, - [9513] = {.lex_state = 175, .external_lex_state = 120}, - [9514] = {.lex_state = 175, .external_lex_state = 120}, - [9515] = {.lex_state = 175, .external_lex_state = 98}, - [9516] = {.lex_state = 175, .external_lex_state = 98}, - [9517] = {.lex_state = 178, .external_lex_state = 112}, - [9518] = {.lex_state = 178, .external_lex_state = 98}, - [9519] = {.lex_state = 175, .external_lex_state = 98}, - [9520] = {.lex_state = 175, .external_lex_state = 98}, - [9521] = {.lex_state = 74, .external_lex_state = 98}, - [9522] = {.lex_state = 178, .external_lex_state = 112}, - [9523] = {.lex_state = 175, .external_lex_state = 98}, - [9524] = {.lex_state = 175, .external_lex_state = 98}, - [9525] = {.lex_state = 178, .external_lex_state = 98}, - [9526] = {.lex_state = 175, .external_lex_state = 98}, - [9527] = {.lex_state = 178, .external_lex_state = 111}, - [9528] = {.lex_state = 178, .external_lex_state = 112}, - [9529] = {.lex_state = 175, .external_lex_state = 120}, - [9530] = {.lex_state = 175, .external_lex_state = 120}, - [9531] = {.lex_state = 175, .external_lex_state = 98}, - [9532] = {.lex_state = 178, .external_lex_state = 112}, - [9533] = {.lex_state = 175, .external_lex_state = 98}, - [9534] = {.lex_state = 178, .external_lex_state = 112}, - [9535] = {.lex_state = 178, .external_lex_state = 112}, - [9536] = {.lex_state = 175, .external_lex_state = 98}, - [9537] = {.lex_state = 175, .external_lex_state = 120}, - [9538] = {.lex_state = 175, .external_lex_state = 120}, - [9539] = {.lex_state = 175, .external_lex_state = 98}, - [9540] = {.lex_state = 175, .external_lex_state = 120}, - [9541] = {.lex_state = 175, .external_lex_state = 120}, - [9542] = {.lex_state = 175, .external_lex_state = 98}, - [9543] = {.lex_state = 175, .external_lex_state = 120}, - [9544] = {.lex_state = 175, .external_lex_state = 120}, - [9545] = {.lex_state = 175, .external_lex_state = 98}, - [9546] = {.lex_state = 175, .external_lex_state = 98}, - [9547] = {.lex_state = 178, .external_lex_state = 111}, - [9548] = {.lex_state = 175, .external_lex_state = 98}, - [9549] = {.lex_state = 178, .external_lex_state = 112}, - [9550] = {.lex_state = 175, .external_lex_state = 98}, - [9551] = {.lex_state = 178, .external_lex_state = 112}, - [9552] = {.lex_state = 175, .external_lex_state = 98}, - [9553] = {.lex_state = 175, .external_lex_state = 120}, - [9554] = {.lex_state = 175, .external_lex_state = 98}, - [9555] = {.lex_state = 175, .external_lex_state = 98}, - [9556] = {.lex_state = 175, .external_lex_state = 98}, - [9557] = {.lex_state = 175, .external_lex_state = 98}, - [9558] = {.lex_state = 178, .external_lex_state = 98}, - [9559] = {.lex_state = 175, .external_lex_state = 98}, - [9560] = {.lex_state = 175, .external_lex_state = 98}, - [9561] = {.lex_state = 175, .external_lex_state = 98}, - [9562] = {.lex_state = 175, .external_lex_state = 98}, - [9563] = {.lex_state = 175, .external_lex_state = 98}, - [9564] = {.lex_state = 175, .external_lex_state = 98}, - [9565] = {.lex_state = 175, .external_lex_state = 98}, - [9566] = {.lex_state = 175, .external_lex_state = 98}, - [9567] = {.lex_state = 175, .external_lex_state = 98}, - [9568] = {.lex_state = 175, .external_lex_state = 98}, - [9569] = {.lex_state = 175, .external_lex_state = 98}, - [9570] = {.lex_state = 175, .external_lex_state = 98}, - [9571] = {.lex_state = 175, .external_lex_state = 98}, - [9572] = {.lex_state = 175, .external_lex_state = 98}, - [9573] = {.lex_state = 175, .external_lex_state = 98}, - [9574] = {.lex_state = 175, .external_lex_state = 98}, - [9575] = {.lex_state = 175, .external_lex_state = 98}, - [9576] = {.lex_state = 175, .external_lex_state = 98}, - [9577] = {.lex_state = 175, .external_lex_state = 98}, - [9578] = {.lex_state = 175, .external_lex_state = 98}, - [9579] = {.lex_state = 175, .external_lex_state = 98}, + [9512] = {.lex_state = 40, .external_lex_state = 111}, + [9513] = {.lex_state = 41, .external_lex_state = 99}, + [9514] = {.lex_state = 178, .external_lex_state = 112}, + [9515] = {.lex_state = 175, .external_lex_state = 99}, + [9516] = {.lex_state = 175, .external_lex_state = 99}, + [9517] = {.lex_state = 178, .external_lex_state = 111}, + [9518] = {.lex_state = 175, .external_lex_state = 99}, + [9519] = {.lex_state = 178, .external_lex_state = 111}, + [9520] = {.lex_state = 178, .external_lex_state = 112}, + [9521] = {.lex_state = 178, .external_lex_state = 111}, + [9522] = {.lex_state = 74, .external_lex_state = 99}, + [9523] = {.lex_state = 175, .external_lex_state = 99}, + [9524] = {.lex_state = 175, .external_lex_state = 99}, + [9525] = {.lex_state = 178, .external_lex_state = 112}, + [9526] = {.lex_state = 178, .external_lex_state = 114}, + [9527] = {.lex_state = 175, .external_lex_state = 99}, + [9528] = {.lex_state = 175, .external_lex_state = 99}, + [9529] = {.lex_state = 175, .external_lex_state = 99}, + [9530] = {.lex_state = 175, .external_lex_state = 99}, + [9531] = {.lex_state = 175, .external_lex_state = 99}, + [9532] = {.lex_state = 175, .external_lex_state = 99}, + [9533] = {.lex_state = 41, .external_lex_state = 99}, + [9534] = {.lex_state = 178, .external_lex_state = 111}, + [9535] = {.lex_state = 178, .external_lex_state = 111}, + [9536] = {.lex_state = 175, .external_lex_state = 99}, + [9537] = {.lex_state = 175, .external_lex_state = 99}, + [9538] = {.lex_state = 175, .external_lex_state = 99}, + [9539] = {.lex_state = 175, .external_lex_state = 99}, + [9540] = {.lex_state = 178, .external_lex_state = 111}, + [9541] = {.lex_state = 178, .external_lex_state = 111}, + [9542] = {.lex_state = 175, .external_lex_state = 99}, + [9543] = {.lex_state = 175, .external_lex_state = 99}, + [9544] = {.lex_state = 178, .external_lex_state = 111}, + [9545] = {.lex_state = 175, .external_lex_state = 99}, + [9546] = {.lex_state = 175, .external_lex_state = 99}, + [9547] = {.lex_state = 175, .external_lex_state = 99}, + [9548] = {.lex_state = 178, .external_lex_state = 111}, + [9549] = {.lex_state = 178, .external_lex_state = 111}, + [9550] = {.lex_state = 178, .external_lex_state = 111}, + [9551] = {.lex_state = 175, .external_lex_state = 120}, + [9552] = {.lex_state = 175, .external_lex_state = 120}, + [9553] = {.lex_state = 178, .external_lex_state = 111}, + [9554] = {.lex_state = 178, .external_lex_state = 111}, + [9555] = {.lex_state = 178, .external_lex_state = 111}, + [9556] = {.lex_state = 178, .external_lex_state = 99}, + [9557] = {.lex_state = 178, .external_lex_state = 99}, + [9558] = {.lex_state = 175, .external_lex_state = 99}, + [9559] = {.lex_state = 175, .external_lex_state = 120}, + [9560] = {.lex_state = 175, .external_lex_state = 120}, + [9561] = {.lex_state = 178, .external_lex_state = 112}, + [9562] = {.lex_state = 178, .external_lex_state = 111}, + [9563] = {.lex_state = 178, .external_lex_state = 111}, + [9564] = {.lex_state = 178, .external_lex_state = 111}, + [9565] = {.lex_state = 178, .external_lex_state = 111}, + [9566] = {.lex_state = 175, .external_lex_state = 99}, + [9567] = {.lex_state = 178, .external_lex_state = 111}, + [9568] = {.lex_state = 178, .external_lex_state = 111}, + [9569] = {.lex_state = 178, .external_lex_state = 99}, + [9570] = {.lex_state = 178, .external_lex_state = 111}, + [9571] = {.lex_state = 178, .external_lex_state = 111}, + [9572] = {.lex_state = 175, .external_lex_state = 120}, + [9573] = {.lex_state = 175, .external_lex_state = 120}, + [9574] = {.lex_state = 178, .external_lex_state = 111}, + [9575] = {.lex_state = 178, .external_lex_state = 111}, + [9576] = {.lex_state = 178, .external_lex_state = 111}, + [9577] = {.lex_state = 178, .external_lex_state = 99}, + [9578] = {.lex_state = 178, .external_lex_state = 112}, + [9579] = {.lex_state = 175, .external_lex_state = 99}, [9580] = {.lex_state = 175, .external_lex_state = 120}, - [9581] = {.lex_state = 175, .external_lex_state = 98}, - [9582] = {.lex_state = 178, .external_lex_state = 112}, - [9583] = {.lex_state = 178, .external_lex_state = 111}, - [9584] = {.lex_state = 175, .external_lex_state = 98}, - [9585] = {.lex_state = 178, .external_lex_state = 98}, - [9586] = {.lex_state = 178, .external_lex_state = 112}, - [9587] = {.lex_state = 175, .external_lex_state = 98}, - [9588] = {.lex_state = 178, .external_lex_state = 112}, - [9589] = {.lex_state = 175, .external_lex_state = 120}, - [9590] = {.lex_state = 175, .external_lex_state = 120}, - [9591] = {.lex_state = 175, .external_lex_state = 120}, - [9592] = {.lex_state = 175, .external_lex_state = 120}, - [9593] = {.lex_state = 175, .external_lex_state = 98}, - [9594] = {.lex_state = 178, .external_lex_state = 112}, - [9595] = {.lex_state = 178, .external_lex_state = 111}, - [9596] = {.lex_state = 178, .external_lex_state = 114}, + [9581] = {.lex_state = 175, .external_lex_state = 120}, + [9582] = {.lex_state = 178, .external_lex_state = 111}, + [9583] = {.lex_state = 175, .external_lex_state = 99}, + [9584] = {.lex_state = 178, .external_lex_state = 99}, + [9585] = {.lex_state = 175, .external_lex_state = 99}, + [9586] = {.lex_state = 178, .external_lex_state = 99}, + [9587] = {.lex_state = 175, .external_lex_state = 119}, + [9588] = {.lex_state = 175, .external_lex_state = 99}, + [9589] = {.lex_state = 178, .external_lex_state = 114}, + [9590] = {.lex_state = 178, .external_lex_state = 114}, + [9591] = {.lex_state = 175, .external_lex_state = 99}, + [9592] = {.lex_state = 178, .external_lex_state = 112}, + [9593] = {.lex_state = 178, .external_lex_state = 112}, + [9594] = {.lex_state = 175, .external_lex_state = 99}, + [9595] = {.lex_state = 178, .external_lex_state = 99}, + [9596] = {.lex_state = 175, .external_lex_state = 99}, [9597] = {.lex_state = 178, .external_lex_state = 112}, - [9598] = {.lex_state = 178, .external_lex_state = 98}, - [9599] = {.lex_state = 175, .external_lex_state = 98}, + [9598] = {.lex_state = 175, .external_lex_state = 99}, + [9599] = {.lex_state = 175, .external_lex_state = 99}, [9600] = {.lex_state = 178, .external_lex_state = 112}, - [9601] = {.lex_state = 178, .external_lex_state = 98}, + [9601] = {.lex_state = 175, .external_lex_state = 99}, [9602] = {.lex_state = 178, .external_lex_state = 112}, - [9603] = {.lex_state = 178, .external_lex_state = 112}, - [9604] = {.lex_state = 175, .external_lex_state = 98}, - [9605] = {.lex_state = 175, .external_lex_state = 98}, - [9606] = {.lex_state = 175, .external_lex_state = 98}, - [9607] = {.lex_state = 74, .external_lex_state = 98}, - [9608] = {.lex_state = 175, .external_lex_state = 98}, - [9609] = {.lex_state = 178, .external_lex_state = 114}, - [9610] = {.lex_state = 175, .external_lex_state = 98}, - [9611] = {.lex_state = 175, .external_lex_state = 120}, - [9612] = {.lex_state = 175, .external_lex_state = 98}, + [9603] = {.lex_state = 178, .external_lex_state = 111}, + [9604] = {.lex_state = 175, .external_lex_state = 99}, + [9605] = {.lex_state = 175, .external_lex_state = 120}, + [9606] = {.lex_state = 175, .external_lex_state = 120}, + [9607] = {.lex_state = 175, .external_lex_state = 99}, + [9608] = {.lex_state = 175, .external_lex_state = 99}, + [9609] = {.lex_state = 178, .external_lex_state = 111}, + [9610] = {.lex_state = 175, .external_lex_state = 99}, + [9611] = {.lex_state = 178, .external_lex_state = 112}, + [9612] = {.lex_state = 175, .external_lex_state = 99}, [9613] = {.lex_state = 175, .external_lex_state = 120}, - [9614] = {.lex_state = 175, .external_lex_state = 98}, - [9615] = {.lex_state = 178, .external_lex_state = 111}, - [9616] = {.lex_state = 175, .external_lex_state = 98}, - [9617] = {.lex_state = 175, .external_lex_state = 98}, - [9618] = {.lex_state = 175, .external_lex_state = 120}, - [9619] = {.lex_state = 175, .external_lex_state = 120}, - [9620] = {.lex_state = 175, .external_lex_state = 120}, - [9621] = {.lex_state = 175, .external_lex_state = 98}, - [9622] = {.lex_state = 175, .external_lex_state = 120}, - [9623] = {.lex_state = 40, .external_lex_state = 111}, - [9624] = {.lex_state = 175, .external_lex_state = 120}, - [9625] = {.lex_state = 175, .external_lex_state = 98}, - [9626] = {.lex_state = 175, .external_lex_state = 120}, - [9627] = {.lex_state = 175, .external_lex_state = 98}, - [9628] = {.lex_state = 175, .external_lex_state = 98}, - [9629] = {.lex_state = 175, .external_lex_state = 98}, - [9630] = {.lex_state = 175, .external_lex_state = 98}, - [9631] = {.lex_state = 175, .external_lex_state = 98}, - [9632] = {.lex_state = 175, .external_lex_state = 98}, - [9633] = {.lex_state = 175, .external_lex_state = 98}, - [9634] = {.lex_state = 175, .external_lex_state = 98}, - [9635] = {.lex_state = 175, .external_lex_state = 98}, - [9636] = {.lex_state = 175, .external_lex_state = 98}, - [9637] = {.lex_state = 175, .external_lex_state = 98}, - [9638] = {.lex_state = 175, .external_lex_state = 98}, - [9639] = {.lex_state = 175, .external_lex_state = 98}, - [9640] = {.lex_state = 175, .external_lex_state = 98}, - [9641] = {.lex_state = 175, .external_lex_state = 98}, - [9642] = {.lex_state = 175, .external_lex_state = 98}, - [9643] = {.lex_state = 175, .external_lex_state = 98}, - [9644] = {.lex_state = 175, .external_lex_state = 98}, - [9645] = {.lex_state = 175, .external_lex_state = 98}, - [9646] = {.lex_state = 175, .external_lex_state = 98}, - [9647] = {.lex_state = 175, .external_lex_state = 98}, - [9648] = {.lex_state = 175, .external_lex_state = 98}, - [9649] = {.lex_state = 175, .external_lex_state = 98}, - [9650] = {.lex_state = 175, .external_lex_state = 98}, - [9651] = {.lex_state = 175, .external_lex_state = 98}, - [9652] = {.lex_state = 175, .external_lex_state = 98}, - [9653] = {.lex_state = 175, .external_lex_state = 98}, - [9654] = {.lex_state = 175, .external_lex_state = 98}, - [9655] = {.lex_state = 175, .external_lex_state = 98}, - [9656] = {.lex_state = 175, .external_lex_state = 98}, - [9657] = {.lex_state = 175, .external_lex_state = 98}, - [9658] = {.lex_state = 175, .external_lex_state = 98}, - [9659] = {.lex_state = 175, .external_lex_state = 98}, - [9660] = {.lex_state = 175, .external_lex_state = 98}, - [9661] = {.lex_state = 175, .external_lex_state = 98}, - [9662] = {.lex_state = 175, .external_lex_state = 98}, - [9663] = {.lex_state = 175, .external_lex_state = 98}, - [9664] = {.lex_state = 178, .external_lex_state = 112}, - [9665] = {.lex_state = 175, .external_lex_state = 120}, - [9666] = {.lex_state = 175, .external_lex_state = 120}, + [9614] = {.lex_state = 175, .external_lex_state = 120}, + [9615] = {.lex_state = 178, .external_lex_state = 112}, + [9616] = {.lex_state = 175, .external_lex_state = 99}, + [9617] = {.lex_state = 175, .external_lex_state = 99}, + [9618] = {.lex_state = 175, .external_lex_state = 99}, + [9619] = {.lex_state = 175, .external_lex_state = 99}, + [9620] = {.lex_state = 175, .external_lex_state = 99}, + [9621] = {.lex_state = 175, .external_lex_state = 99}, + [9622] = {.lex_state = 175, .external_lex_state = 99}, + [9623] = {.lex_state = 175, .external_lex_state = 99}, + [9624] = {.lex_state = 175, .external_lex_state = 99}, + [9625] = {.lex_state = 175, .external_lex_state = 99}, + [9626] = {.lex_state = 175, .external_lex_state = 99}, + [9627] = {.lex_state = 178, .external_lex_state = 111}, + [9628] = {.lex_state = 175, .external_lex_state = 99}, + [9629] = {.lex_state = 175, .external_lex_state = 99}, + [9630] = {.lex_state = 175, .external_lex_state = 99}, + [9631] = {.lex_state = 175, .external_lex_state = 99}, + [9632] = {.lex_state = 175, .external_lex_state = 99}, + [9633] = {.lex_state = 175, .external_lex_state = 99}, + [9634] = {.lex_state = 175, .external_lex_state = 99}, + [9635] = {.lex_state = 175, .external_lex_state = 99}, + [9636] = {.lex_state = 175, .external_lex_state = 99}, + [9637] = {.lex_state = 175, .external_lex_state = 99}, + [9638] = {.lex_state = 175, .external_lex_state = 99}, + [9639] = {.lex_state = 175, .external_lex_state = 99}, + [9640] = {.lex_state = 175, .external_lex_state = 99}, + [9641] = {.lex_state = 175, .external_lex_state = 99}, + [9642] = {.lex_state = 178, .external_lex_state = 111}, + [9643] = {.lex_state = 175, .external_lex_state = 99}, + [9644] = {.lex_state = 175, .external_lex_state = 99}, + [9645] = {.lex_state = 175, .external_lex_state = 99}, + [9646] = {.lex_state = 175, .external_lex_state = 99}, + [9647] = {.lex_state = 175, .external_lex_state = 99}, + [9648] = {.lex_state = 178, .external_lex_state = 112}, + [9649] = {.lex_state = 175, .external_lex_state = 120}, + [9650] = {.lex_state = 175, .external_lex_state = 120}, + [9651] = {.lex_state = 175, .external_lex_state = 99}, + [9652] = {.lex_state = 175, .external_lex_state = 120}, + [9653] = {.lex_state = 175, .external_lex_state = 120}, + [9654] = {.lex_state = 175, .external_lex_state = 120}, + [9655] = {.lex_state = 175, .external_lex_state = 99}, + [9656] = {.lex_state = 178, .external_lex_state = 99}, + [9657] = {.lex_state = 178, .external_lex_state = 111}, + [9658] = {.lex_state = 178, .external_lex_state = 112}, + [9659] = {.lex_state = 178, .external_lex_state = 99}, + [9660] = {.lex_state = 175, .external_lex_state = 99}, + [9661] = {.lex_state = 178, .external_lex_state = 112}, + [9662] = {.lex_state = 178, .external_lex_state = 112}, + [9663] = {.lex_state = 178, .external_lex_state = 112}, + [9664] = {.lex_state = 175, .external_lex_state = 120}, + [9665] = {.lex_state = 175, .external_lex_state = 99}, + [9666] = {.lex_state = 178, .external_lex_state = 112}, [9667] = {.lex_state = 175, .external_lex_state = 120}, - [9668] = {.lex_state = 166, .external_lex_state = 98}, - [9669] = {.lex_state = 41, .external_lex_state = 98}, - [9670] = {.lex_state = 178, .external_lex_state = 121}, - [9671] = {.lex_state = 178, .external_lex_state = 121}, - [9672] = {.lex_state = 178, .external_lex_state = 111}, - [9673] = {.lex_state = 178, .external_lex_state = 121}, - [9674] = {.lex_state = 175, .external_lex_state = 98}, - [9675] = {.lex_state = 178, .external_lex_state = 121}, - [9676] = {.lex_state = 178, .external_lex_state = 121}, - [9677] = {.lex_state = 178, .external_lex_state = 121}, - [9678] = {.lex_state = 175, .external_lex_state = 98}, - [9679] = {.lex_state = 178, .external_lex_state = 98}, - [9680] = {.lex_state = 175, .external_lex_state = 98}, - [9681] = {.lex_state = 175, .external_lex_state = 98}, - [9682] = {.lex_state = 175, .external_lex_state = 98}, - [9683] = {.lex_state = 175, .external_lex_state = 98}, - [9684] = {.lex_state = 175, .external_lex_state = 98}, - [9685] = {.lex_state = 175, .external_lex_state = 98}, - [9686] = {.lex_state = 166, .external_lex_state = 98}, - [9687] = {.lex_state = 178, .external_lex_state = 121}, - [9688] = {.lex_state = 175, .external_lex_state = 98}, - [9689] = {.lex_state = 178, .external_lex_state = 121}, - [9690] = {.lex_state = 175, .external_lex_state = 98}, - [9691] = {.lex_state = 175, .external_lex_state = 98}, - [9692] = {.lex_state = 178, .external_lex_state = 121}, - [9693] = {.lex_state = 178, .external_lex_state = 121}, - [9694] = {.lex_state = 178, .external_lex_state = 121}, - [9695] = {.lex_state = 178, .external_lex_state = 121}, - [9696] = {.lex_state = 178, .external_lex_state = 121}, - [9697] = {.lex_state = 175, .external_lex_state = 98}, - [9698] = {.lex_state = 173, .external_lex_state = 98}, - [9699] = {.lex_state = 175, .external_lex_state = 98}, - [9700] = {.lex_state = 178, .external_lex_state = 121}, - [9701] = {.lex_state = 175, .external_lex_state = 98}, - [9702] = {.lex_state = 175, .external_lex_state = 98}, - [9703] = {.lex_state = 178, .external_lex_state = 98}, - [9704] = {.lex_state = 178, .external_lex_state = 121}, - [9705] = {.lex_state = 175, .external_lex_state = 98}, - [9706] = {.lex_state = 175, .external_lex_state = 98}, - [9707] = {.lex_state = 178, .external_lex_state = 121}, - [9708] = {.lex_state = 175, .external_lex_state = 98}, - [9709] = {.lex_state = 175, .external_lex_state = 98}, - [9710] = {.lex_state = 175, .external_lex_state = 98}, - [9711] = {.lex_state = 178, .external_lex_state = 121}, - [9712] = {.lex_state = 175, .external_lex_state = 98}, - [9713] = {.lex_state = 178, .external_lex_state = 121}, - [9714] = {.lex_state = 178, .external_lex_state = 121}, - [9715] = {.lex_state = 178, .external_lex_state = 121}, - [9716] = {.lex_state = 175, .external_lex_state = 98}, - [9717] = {.lex_state = 178, .external_lex_state = 121}, - [9718] = {.lex_state = 175, .external_lex_state = 98}, - [9719] = {.lex_state = 175, .external_lex_state = 98}, - [9720] = {.lex_state = 178, .external_lex_state = 98}, - [9721] = {.lex_state = 175, .external_lex_state = 98}, - [9722] = {.lex_state = 178, .external_lex_state = 121}, - [9723] = {.lex_state = 178, .external_lex_state = 121}, - [9724] = {.lex_state = 178, .external_lex_state = 121}, - [9725] = {.lex_state = 178, .external_lex_state = 121}, - [9726] = {.lex_state = 178, .external_lex_state = 121}, - [9727] = {.lex_state = 175, .external_lex_state = 98}, - [9728] = {.lex_state = 175, .external_lex_state = 98}, - [9729] = {.lex_state = 178, .external_lex_state = 121}, - [9730] = {.lex_state = 178, .external_lex_state = 121}, - [9731] = {.lex_state = 175, .external_lex_state = 98}, - [9732] = {.lex_state = 178, .external_lex_state = 121}, - [9733] = {.lex_state = 175, .external_lex_state = 98}, - [9734] = {.lex_state = 175, .external_lex_state = 98}, - [9735] = {.lex_state = 175, .external_lex_state = 98}, - [9736] = {.lex_state = 175, .external_lex_state = 98}, - [9737] = {.lex_state = 175, .external_lex_state = 98}, + [9668] = {.lex_state = 178, .external_lex_state = 111}, + [9669] = {.lex_state = 175, .external_lex_state = 99}, + [9670] = {.lex_state = 175, .external_lex_state = 120}, + [9671] = {.lex_state = 175, .external_lex_state = 120}, + [9672] = {.lex_state = 175, .external_lex_state = 120}, + [9673] = {.lex_state = 74, .external_lex_state = 99}, + [9674] = {.lex_state = 175, .external_lex_state = 120}, + [9675] = {.lex_state = 175, .external_lex_state = 120}, + [9676] = {.lex_state = 178, .external_lex_state = 111}, + [9677] = {.lex_state = 175, .external_lex_state = 99}, + [9678] = {.lex_state = 175, .external_lex_state = 120}, + [9679] = {.lex_state = 175, .external_lex_state = 99}, + [9680] = {.lex_state = 175, .external_lex_state = 120}, + [9681] = {.lex_state = 175, .external_lex_state = 120}, + [9682] = {.lex_state = 175, .external_lex_state = 120}, + [9683] = {.lex_state = 175, .external_lex_state = 99}, + [9684] = {.lex_state = 175, .external_lex_state = 120}, + [9685] = {.lex_state = 178, .external_lex_state = 112}, + [9686] = {.lex_state = 175, .external_lex_state = 99}, + [9687] = {.lex_state = 178, .external_lex_state = 112}, + [9688] = {.lex_state = 175, .external_lex_state = 99}, + [9689] = {.lex_state = 175, .external_lex_state = 99}, + [9690] = {.lex_state = 178, .external_lex_state = 111}, + [9691] = {.lex_state = 175, .external_lex_state = 120}, + [9692] = {.lex_state = 175, .external_lex_state = 120}, + [9693] = {.lex_state = 175, .external_lex_state = 99}, + [9694] = {.lex_state = 178, .external_lex_state = 99}, + [9695] = {.lex_state = 175, .external_lex_state = 99}, + [9696] = {.lex_state = 175, .external_lex_state = 120}, + [9697] = {.lex_state = 175, .external_lex_state = 99}, + [9698] = {.lex_state = 178, .external_lex_state = 99}, + [9699] = {.lex_state = 178, .external_lex_state = 111}, + [9700] = {.lex_state = 175, .external_lex_state = 99}, + [9701] = {.lex_state = 175, .external_lex_state = 99}, + [9702] = {.lex_state = 175, .external_lex_state = 99}, + [9703] = {.lex_state = 175, .external_lex_state = 99}, + [9704] = {.lex_state = 175, .external_lex_state = 99}, + [9705] = {.lex_state = 175, .external_lex_state = 99}, + [9706] = {.lex_state = 175, .external_lex_state = 99}, + [9707] = {.lex_state = 175, .external_lex_state = 99}, + [9708] = {.lex_state = 175, .external_lex_state = 99}, + [9709] = {.lex_state = 175, .external_lex_state = 99}, + [9710] = {.lex_state = 175, .external_lex_state = 99}, + [9711] = {.lex_state = 175, .external_lex_state = 99}, + [9712] = {.lex_state = 175, .external_lex_state = 99}, + [9713] = {.lex_state = 175, .external_lex_state = 99}, + [9714] = {.lex_state = 175, .external_lex_state = 99}, + [9715] = {.lex_state = 175, .external_lex_state = 99}, + [9716] = {.lex_state = 175, .external_lex_state = 99}, + [9717] = {.lex_state = 175, .external_lex_state = 99}, + [9718] = {.lex_state = 175, .external_lex_state = 99}, + [9719] = {.lex_state = 175, .external_lex_state = 99}, + [9720] = {.lex_state = 175, .external_lex_state = 99}, + [9721] = {.lex_state = 175, .external_lex_state = 99}, + [9722] = {.lex_state = 175, .external_lex_state = 99}, + [9723] = {.lex_state = 175, .external_lex_state = 99}, + [9724] = {.lex_state = 175, .external_lex_state = 99}, + [9725] = {.lex_state = 175, .external_lex_state = 99}, + [9726] = {.lex_state = 175, .external_lex_state = 99}, + [9727] = {.lex_state = 175, .external_lex_state = 99}, + [9728] = {.lex_state = 175, .external_lex_state = 99}, + [9729] = {.lex_state = 175, .external_lex_state = 99}, + [9730] = {.lex_state = 175, .external_lex_state = 99}, + [9731] = {.lex_state = 175, .external_lex_state = 99}, + [9732] = {.lex_state = 175, .external_lex_state = 99}, + [9733] = {.lex_state = 175, .external_lex_state = 99}, + [9734] = {.lex_state = 175, .external_lex_state = 99}, + [9735] = {.lex_state = 175, .external_lex_state = 99}, + [9736] = {.lex_state = 178, .external_lex_state = 112}, + [9737] = {.lex_state = 175, .external_lex_state = 99}, [9738] = {.lex_state = 178, .external_lex_state = 121}, - [9739] = {.lex_state = 175, .external_lex_state = 98}, - [9740] = {.lex_state = 175, .external_lex_state = 98}, - [9741] = {.lex_state = 178, .external_lex_state = 121}, + [9739] = {.lex_state = 178, .external_lex_state = 121}, + [9740] = {.lex_state = 178, .external_lex_state = 121}, + [9741] = {.lex_state = 178, .external_lex_state = 99}, [9742] = {.lex_state = 178, .external_lex_state = 121}, - [9743] = {.lex_state = 178, .external_lex_state = 121}, - [9744] = {.lex_state = 178, .external_lex_state = 121}, - [9745] = {.lex_state = 175, .external_lex_state = 98}, - [9746] = {.lex_state = 178, .external_lex_state = 98}, - [9747] = {.lex_state = 175, .external_lex_state = 98}, - [9748] = {.lex_state = 175, .external_lex_state = 98}, - [9749] = {.lex_state = 175, .external_lex_state = 98}, - [9750] = {.lex_state = 175, .external_lex_state = 98}, - [9751] = {.lex_state = 175, .external_lex_state = 98}, + [9743] = {.lex_state = 175, .external_lex_state = 99}, + [9744] = {.lex_state = 175, .external_lex_state = 99}, + [9745] = {.lex_state = 175, .external_lex_state = 99}, + [9746] = {.lex_state = 175, .external_lex_state = 99}, + [9747] = {.lex_state = 175, .external_lex_state = 99}, + [9748] = {.lex_state = 175, .external_lex_state = 99}, + [9749] = {.lex_state = 178, .external_lex_state = 121}, + [9750] = {.lex_state = 178, .external_lex_state = 121}, + [9751] = {.lex_state = 175, .external_lex_state = 99}, [9752] = {.lex_state = 178, .external_lex_state = 121}, - [9753] = {.lex_state = 175, .external_lex_state = 98}, - [9754] = {.lex_state = 175, .external_lex_state = 98}, - [9755] = {.lex_state = 166, .external_lex_state = 98}, - [9756] = {.lex_state = 175, .external_lex_state = 98}, - [9757] = {.lex_state = 178, .external_lex_state = 121}, - [9758] = {.lex_state = 178, .external_lex_state = 121}, - [9759] = {.lex_state = 178, .external_lex_state = 121}, - [9760] = {.lex_state = 175, .external_lex_state = 98}, - [9761] = {.lex_state = 178, .external_lex_state = 121}, - [9762] = {.lex_state = 175, .external_lex_state = 98}, - [9763] = {.lex_state = 166, .external_lex_state = 98}, - [9764] = {.lex_state = 175, .external_lex_state = 98}, - [9765] = {.lex_state = 178, .external_lex_state = 121}, - [9766] = {.lex_state = 175, .external_lex_state = 98}, - [9767] = {.lex_state = 175, .external_lex_state = 98}, - [9768] = {.lex_state = 175, .external_lex_state = 98}, - [9769] = {.lex_state = 175, .external_lex_state = 98}, + [9753] = {.lex_state = 178, .external_lex_state = 99}, + [9754] = {.lex_state = 175, .external_lex_state = 99}, + [9755] = {.lex_state = 175, .external_lex_state = 99}, + [9756] = {.lex_state = 175, .external_lex_state = 99}, + [9757] = {.lex_state = 175, .external_lex_state = 99}, + [9758] = {.lex_state = 175, .external_lex_state = 99}, + [9759] = {.lex_state = 175, .external_lex_state = 99}, + [9760] = {.lex_state = 175, .external_lex_state = 99}, + [9761] = {.lex_state = 175, .external_lex_state = 99}, + [9762] = {.lex_state = 178, .external_lex_state = 121}, + [9763] = {.lex_state = 178, .external_lex_state = 121}, + [9764] = {.lex_state = 178, .external_lex_state = 121}, + [9765] = {.lex_state = 175, .external_lex_state = 99}, + [9766] = {.lex_state = 175, .external_lex_state = 99}, + [9767] = {.lex_state = 175, .external_lex_state = 99}, + [9768] = {.lex_state = 175, .external_lex_state = 99}, + [9769] = {.lex_state = 178, .external_lex_state = 99}, [9770] = {.lex_state = 178, .external_lex_state = 121}, - [9771] = {.lex_state = 175, .external_lex_state = 98}, - [9772] = {.lex_state = 175, .external_lex_state = 98}, - [9773] = {.lex_state = 178, .external_lex_state = 121}, - [9774] = {.lex_state = 175, .external_lex_state = 98}, - [9775] = {.lex_state = 166, .external_lex_state = 98}, - [9776] = {.lex_state = 175, .external_lex_state = 98}, - [9777] = {.lex_state = 175, .external_lex_state = 98}, - [9778] = {.lex_state = 175, .external_lex_state = 98}, - [9779] = {.lex_state = 175, .external_lex_state = 98}, - [9780] = {.lex_state = 178, .external_lex_state = 121}, - [9781] = {.lex_state = 178, .external_lex_state = 98}, - [9782] = {.lex_state = 175, .external_lex_state = 98}, - [9783] = {.lex_state = 175, .external_lex_state = 98}, - [9784] = {.lex_state = 175, .external_lex_state = 98}, - [9785] = {.lex_state = 178, .external_lex_state = 121}, + [9771] = {.lex_state = 178, .external_lex_state = 121}, + [9772] = {.lex_state = 175, .external_lex_state = 99}, + [9773] = {.lex_state = 175, .external_lex_state = 99}, + [9774] = {.lex_state = 175, .external_lex_state = 99}, + [9775] = {.lex_state = 178, .external_lex_state = 121}, + [9776] = {.lex_state = 175, .external_lex_state = 99}, + [9777] = {.lex_state = 178, .external_lex_state = 121}, + [9778] = {.lex_state = 175, .external_lex_state = 99}, + [9779] = {.lex_state = 175, .external_lex_state = 99}, + [9780] = {.lex_state = 178, .external_lex_state = 99}, + [9781] = {.lex_state = 175, .external_lex_state = 99}, + [9782] = {.lex_state = 175, .external_lex_state = 99}, + [9783] = {.lex_state = 178, .external_lex_state = 121}, + [9784] = {.lex_state = 178, .external_lex_state = 99}, + [9785] = {.lex_state = 175, .external_lex_state = 99}, [9786] = {.lex_state = 178, .external_lex_state = 121}, - [9787] = {.lex_state = 175, .external_lex_state = 98}, - [9788] = {.lex_state = 175, .external_lex_state = 98}, + [9787] = {.lex_state = 175, .external_lex_state = 99}, + [9788] = {.lex_state = 175, .external_lex_state = 99}, [9789] = {.lex_state = 178, .external_lex_state = 121}, [9790] = {.lex_state = 178, .external_lex_state = 121}, [9791] = {.lex_state = 178, .external_lex_state = 121}, - [9792] = {.lex_state = 175, .external_lex_state = 98}, - [9793] = {.lex_state = 175, .external_lex_state = 98}, - [9794] = {.lex_state = 175, .external_lex_state = 98}, - [9795] = {.lex_state = 175, .external_lex_state = 98}, - [9796] = {.lex_state = 178, .external_lex_state = 121}, + [9792] = {.lex_state = 178, .external_lex_state = 121}, + [9793] = {.lex_state = 175, .external_lex_state = 99}, + [9794] = {.lex_state = 175, .external_lex_state = 99}, + [9795] = {.lex_state = 178, .external_lex_state = 121}, + [9796] = {.lex_state = 175, .external_lex_state = 99}, [9797] = {.lex_state = 178, .external_lex_state = 121}, [9798] = {.lex_state = 178, .external_lex_state = 121}, [9799] = {.lex_state = 178, .external_lex_state = 121}, [9800] = {.lex_state = 178, .external_lex_state = 121}, [9801] = {.lex_state = 178, .external_lex_state = 121}, - [9802] = {.lex_state = 178, .external_lex_state = 121}, - [9803] = {.lex_state = 178, .external_lex_state = 121}, - [9804] = {.lex_state = 178, .external_lex_state = 121}, - [9805] = {.lex_state = 178, .external_lex_state = 121}, - [9806] = {.lex_state = 178, .external_lex_state = 121}, - [9807] = {.lex_state = 175, .external_lex_state = 98}, - [9808] = {.lex_state = 175, .external_lex_state = 98}, - [9809] = {.lex_state = 178, .external_lex_state = 121}, - [9810] = {.lex_state = 178, .external_lex_state = 98}, - [9811] = {.lex_state = 175, .external_lex_state = 98}, - [9812] = {.lex_state = 175, .external_lex_state = 98}, - [9813] = {.lex_state = 178, .external_lex_state = 111}, + [9802] = {.lex_state = 175, .external_lex_state = 99}, + [9803] = {.lex_state = 175, .external_lex_state = 99}, + [9804] = {.lex_state = 175, .external_lex_state = 99}, + [9805] = {.lex_state = 175, .external_lex_state = 99}, + [9806] = {.lex_state = 166, .external_lex_state = 99}, + [9807] = {.lex_state = 175, .external_lex_state = 99}, + [9808] = {.lex_state = 178, .external_lex_state = 121}, + [9809] = {.lex_state = 175, .external_lex_state = 99}, + [9810] = {.lex_state = 23, .external_lex_state = 99}, + [9811] = {.lex_state = 175, .external_lex_state = 99}, + [9812] = {.lex_state = 175, .external_lex_state = 99}, + [9813] = {.lex_state = 166, .external_lex_state = 99}, [9814] = {.lex_state = 178, .external_lex_state = 121}, - [9815] = {.lex_state = 178, .external_lex_state = 121}, - [9816] = {.lex_state = 175, .external_lex_state = 98}, - [9817] = {.lex_state = 175, .external_lex_state = 98}, - [9818] = {.lex_state = 178, .external_lex_state = 121}, - [9819] = {.lex_state = 175, .external_lex_state = 98}, - [9820] = {.lex_state = 175, .external_lex_state = 98}, - [9821] = {.lex_state = 175, .external_lex_state = 98}, - [9822] = {.lex_state = 175, .external_lex_state = 98}, + [9815] = {.lex_state = 175, .external_lex_state = 99}, + [9816] = {.lex_state = 175, .external_lex_state = 99}, + [9817] = {.lex_state = 175, .external_lex_state = 99}, + [9818] = {.lex_state = 23, .external_lex_state = 99}, + [9819] = {.lex_state = 178, .external_lex_state = 121}, + [9820] = {.lex_state = 173, .external_lex_state = 99}, + [9821] = {.lex_state = 178, .external_lex_state = 121}, + [9822] = {.lex_state = 175, .external_lex_state = 99}, [9823] = {.lex_state = 178, .external_lex_state = 121}, [9824] = {.lex_state = 178, .external_lex_state = 121}, - [9825] = {.lex_state = 175, .external_lex_state = 98}, - [9826] = {.lex_state = 178, .external_lex_state = 121}, - [9827] = {.lex_state = 178, .external_lex_state = 98}, + [9825] = {.lex_state = 178, .external_lex_state = 121}, + [9826] = {.lex_state = 175, .external_lex_state = 99}, + [9827] = {.lex_state = 178, .external_lex_state = 121}, [9828] = {.lex_state = 178, .external_lex_state = 121}, - [9829] = {.lex_state = 166, .external_lex_state = 98}, - [9830] = {.lex_state = 178, .external_lex_state = 98}, + [9829] = {.lex_state = 178, .external_lex_state = 121}, + [9830] = {.lex_state = 178, .external_lex_state = 121}, [9831] = {.lex_state = 178, .external_lex_state = 121}, - [9832] = {.lex_state = 175, .external_lex_state = 98}, - [9833] = {.lex_state = 178, .external_lex_state = 98}, - [9834] = {.lex_state = 175, .external_lex_state = 98}, - [9835] = {.lex_state = 178, .external_lex_state = 98}, - [9836] = {.lex_state = 175, .external_lex_state = 98}, - [9837] = {.lex_state = 178, .external_lex_state = 121}, - [9838] = {.lex_state = 175, .external_lex_state = 98}, - [9839] = {.lex_state = 175, .external_lex_state = 98}, - [9840] = {.lex_state = 175, .external_lex_state = 98}, - [9841] = {.lex_state = 175, .external_lex_state = 98}, - [9842] = {.lex_state = 166, .external_lex_state = 98}, - [9843] = {.lex_state = 178, .external_lex_state = 121}, - [9844] = {.lex_state = 178, .external_lex_state = 121}, - [9845] = {.lex_state = 178, .external_lex_state = 121}, - [9846] = {.lex_state = 175, .external_lex_state = 98}, - [9847] = {.lex_state = 178, .external_lex_state = 121}, + [9832] = {.lex_state = 178, .external_lex_state = 121}, + [9833] = {.lex_state = 178, .external_lex_state = 99}, + [9834] = {.lex_state = 175, .external_lex_state = 99}, + [9835] = {.lex_state = 175, .external_lex_state = 99}, + [9836] = {.lex_state = 175, .external_lex_state = 99}, + [9837] = {.lex_state = 175, .external_lex_state = 99}, + [9838] = {.lex_state = 178, .external_lex_state = 99}, + [9839] = {.lex_state = 175, .external_lex_state = 99}, + [9840] = {.lex_state = 166, .external_lex_state = 99}, + [9841] = {.lex_state = 175, .external_lex_state = 99}, + [9842] = {.lex_state = 178, .external_lex_state = 121}, + [9843] = {.lex_state = 175, .external_lex_state = 99}, + [9844] = {.lex_state = 178, .external_lex_state = 99}, + [9845] = {.lex_state = 175, .external_lex_state = 99}, + [9846] = {.lex_state = 173, .external_lex_state = 99}, + [9847] = {.lex_state = 178, .external_lex_state = 99}, [9848] = {.lex_state = 178, .external_lex_state = 121}, - [9849] = {.lex_state = 178, .external_lex_state = 121}, - [9850] = {.lex_state = 175, .external_lex_state = 98}, - [9851] = {.lex_state = 178, .external_lex_state = 121}, + [9849] = {.lex_state = 175, .external_lex_state = 99}, + [9850] = {.lex_state = 175, .external_lex_state = 99}, + [9851] = {.lex_state = 178, .external_lex_state = 99}, [9852] = {.lex_state = 178, .external_lex_state = 121}, - [9853] = {.lex_state = 178, .external_lex_state = 98}, - [9854] = {.lex_state = 178, .external_lex_state = 121}, - [9855] = {.lex_state = 175, .external_lex_state = 98}, - [9856] = {.lex_state = 175, .external_lex_state = 98}, - [9857] = {.lex_state = 175, .external_lex_state = 98}, + [9853] = {.lex_state = 175, .external_lex_state = 99}, + [9854] = {.lex_state = 166, .external_lex_state = 99}, + [9855] = {.lex_state = 175, .external_lex_state = 99}, + [9856] = {.lex_state = 175, .external_lex_state = 99}, + [9857] = {.lex_state = 175, .external_lex_state = 99}, [9858] = {.lex_state = 178, .external_lex_state = 121}, - [9859] = {.lex_state = 175, .external_lex_state = 98}, + [9859] = {.lex_state = 178, .external_lex_state = 121}, [9860] = {.lex_state = 178, .external_lex_state = 121}, - [9861] = {.lex_state = 175, .external_lex_state = 98}, - [9862] = {.lex_state = 175, .external_lex_state = 98}, - [9863] = {.lex_state = 178, .external_lex_state = 121}, - [9864] = {.lex_state = 178, .external_lex_state = 121}, - [9865] = {.lex_state = 178, .external_lex_state = 121}, + [9861] = {.lex_state = 175, .external_lex_state = 99}, + [9862] = {.lex_state = 175, .external_lex_state = 99}, + [9863] = {.lex_state = 175, .external_lex_state = 99}, + [9864] = {.lex_state = 175, .external_lex_state = 99}, + [9865] = {.lex_state = 166, .external_lex_state = 99}, [9866] = {.lex_state = 178, .external_lex_state = 121}, - [9867] = {.lex_state = 175, .external_lex_state = 98}, - [9868] = {.lex_state = 175, .external_lex_state = 98}, - [9869] = {.lex_state = 175, .external_lex_state = 98}, - [9870] = {.lex_state = 166, .external_lex_state = 98}, - [9871] = {.lex_state = 178, .external_lex_state = 121}, - [9872] = {.lex_state = 175, .external_lex_state = 98}, - [9873] = {.lex_state = 175, .external_lex_state = 98}, + [9867] = {.lex_state = 178, .external_lex_state = 121}, + [9868] = {.lex_state = 178, .external_lex_state = 121}, + [9869] = {.lex_state = 178, .external_lex_state = 121}, + [9870] = {.lex_state = 178, .external_lex_state = 121}, + [9871] = {.lex_state = 175, .external_lex_state = 99}, + [9872] = {.lex_state = 178, .external_lex_state = 121}, + [9873] = {.lex_state = 178, .external_lex_state = 99}, [9874] = {.lex_state = 178, .external_lex_state = 121}, - [9875] = {.lex_state = 175, .external_lex_state = 98}, - [9876] = {.lex_state = 178, .external_lex_state = 121}, - [9877] = {.lex_state = 178, .external_lex_state = 121}, - [9878] = {.lex_state = 178, .external_lex_state = 121}, - [9879] = {.lex_state = 178, .external_lex_state = 121}, + [9875] = {.lex_state = 175, .external_lex_state = 99}, + [9876] = {.lex_state = 175, .external_lex_state = 99}, + [9877] = {.lex_state = 175, .external_lex_state = 99}, + [9878] = {.lex_state = 175, .external_lex_state = 99}, + [9879] = {.lex_state = 175, .external_lex_state = 99}, [9880] = {.lex_state = 178, .external_lex_state = 121}, - [9881] = {.lex_state = 166, .external_lex_state = 98}, - [9882] = {.lex_state = 178, .external_lex_state = 121}, - [9883] = {.lex_state = 166, .external_lex_state = 98}, + [9881] = {.lex_state = 178, .external_lex_state = 121}, + [9882] = {.lex_state = 175, .external_lex_state = 99}, + [9883] = {.lex_state = 175, .external_lex_state = 99}, [9884] = {.lex_state = 178, .external_lex_state = 121}, - [9885] = {.lex_state = 175, .external_lex_state = 98}, - [9886] = {.lex_state = 175, .external_lex_state = 98}, - [9887] = {.lex_state = 178, .external_lex_state = 121}, + [9885] = {.lex_state = 178, .external_lex_state = 121}, + [9886] = {.lex_state = 175, .external_lex_state = 99}, + [9887] = {.lex_state = 175, .external_lex_state = 99}, [9888] = {.lex_state = 178, .external_lex_state = 121}, - [9889] = {.lex_state = 166, .external_lex_state = 98}, - [9890] = {.lex_state = 175, .external_lex_state = 98}, - [9891] = {.lex_state = 175, .external_lex_state = 98}, + [9889] = {.lex_state = 178, .external_lex_state = 121}, + [9890] = {.lex_state = 178, .external_lex_state = 121}, + [9891] = {.lex_state = 175, .external_lex_state = 99}, [9892] = {.lex_state = 178, .external_lex_state = 121}, - [9893] = {.lex_state = 175, .external_lex_state = 98}, - [9894] = {.lex_state = 178, .external_lex_state = 121}, - [9895] = {.lex_state = 175, .external_lex_state = 98}, - [9896] = {.lex_state = 175, .external_lex_state = 98}, - [9897] = {.lex_state = 175, .external_lex_state = 98}, - [9898] = {.lex_state = 175, .external_lex_state = 98}, - [9899] = {.lex_state = 175, .external_lex_state = 98}, - [9900] = {.lex_state = 178, .external_lex_state = 121}, - [9901] = {.lex_state = 178, .external_lex_state = 121}, - [9902] = {.lex_state = 166, .external_lex_state = 98}, - [9903] = {.lex_state = 178, .external_lex_state = 121}, - [9904] = {.lex_state = 175, .external_lex_state = 98}, - [9905] = {.lex_state = 175, .external_lex_state = 98}, - [9906] = {.lex_state = 175, .external_lex_state = 98}, - [9907] = {.lex_state = 175, .external_lex_state = 98}, + [9893] = {.lex_state = 175, .external_lex_state = 99}, + [9894] = {.lex_state = 175, .external_lex_state = 99}, + [9895] = {.lex_state = 178, .external_lex_state = 121}, + [9896] = {.lex_state = 178, .external_lex_state = 121}, + [9897] = {.lex_state = 178, .external_lex_state = 121}, + [9898] = {.lex_state = 178, .external_lex_state = 99}, + [9899] = {.lex_state = 41, .external_lex_state = 99}, + [9900] = {.lex_state = 175, .external_lex_state = 99}, + [9901] = {.lex_state = 178, .external_lex_state = 99}, + [9902] = {.lex_state = 175, .external_lex_state = 99}, + [9903] = {.lex_state = 175, .external_lex_state = 99}, + [9904] = {.lex_state = 175, .external_lex_state = 99}, + [9905] = {.lex_state = 175, .external_lex_state = 99}, + [9906] = {.lex_state = 178, .external_lex_state = 121}, + [9907] = {.lex_state = 178, .external_lex_state = 121}, [9908] = {.lex_state = 178, .external_lex_state = 121}, - [9909] = {.lex_state = 75, .external_lex_state = 122}, - [9910] = {.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}, + [9909] = {.lex_state = 178, .external_lex_state = 121}, + [9910] = {.lex_state = 175, .external_lex_state = 99}, + [9911] = {.lex_state = 178, .external_lex_state = 121}, + [9912] = {.lex_state = 175, .external_lex_state = 99}, + [9913] = {.lex_state = 178, .external_lex_state = 121}, + [9914] = {.lex_state = 175, .external_lex_state = 99}, [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 = 175, .external_lex_state = 98}, - [9924] = {.lex_state = 178, .external_lex_state = 121}, - [9925] = {.lex_state = 175, .external_lex_state = 98}, - [9926] = {.lex_state = 175, .external_lex_state = 98}, + [9916] = {.lex_state = 175, .external_lex_state = 99}, + [9917] = {.lex_state = 175, .external_lex_state = 111}, + [9918] = {.lex_state = 178, .external_lex_state = 121}, + [9919] = {.lex_state = 175, .external_lex_state = 99}, + [9920] = {.lex_state = 178, .external_lex_state = 121}, + [9921] = {.lex_state = 178, .external_lex_state = 121}, + [9922] = {.lex_state = 166, .external_lex_state = 99}, + [9923] = {.lex_state = 175, .external_lex_state = 99}, + [9924] = {.lex_state = 166, .external_lex_state = 99}, + [9925] = {.lex_state = 175, .external_lex_state = 99}, + [9926] = {.lex_state = 178, .external_lex_state = 121}, [9927] = {.lex_state = 178, .external_lex_state = 121}, - [9928] = {.lex_state = 175, .external_lex_state = 98}, + [9928] = {.lex_state = 178, .external_lex_state = 121}, [9929] = {.lex_state = 178, .external_lex_state = 121}, - [9930] = {.lex_state = 175, .external_lex_state = 98}, + [9930] = {.lex_state = 178, .external_lex_state = 121}, [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 = 75, .external_lex_state = 122}, - [9936] = {.lex_state = 175, .external_lex_state = 98}, - [9937] = {.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}, - [9942] = {.lex_state = 175, .external_lex_state = 98}, - [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 = 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 = 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}, + [9932] = {.lex_state = 175, .external_lex_state = 99}, + [9933] = {.lex_state = 175, .external_lex_state = 99}, + [9934] = {.lex_state = 178, .external_lex_state = 121}, + [9935] = {.lex_state = 178, .external_lex_state = 121}, + [9936] = {.lex_state = 178, .external_lex_state = 99}, + [9937] = {.lex_state = 166, .external_lex_state = 99}, + [9938] = {.lex_state = 175, .external_lex_state = 99}, + [9939] = {.lex_state = 175, .external_lex_state = 99}, + [9940] = {.lex_state = 178, .external_lex_state = 121}, + [9941] = {.lex_state = 178, .external_lex_state = 121}, + [9942] = {.lex_state = 178, .external_lex_state = 121}, + [9943] = {.lex_state = 178, .external_lex_state = 121}, + [9944] = {.lex_state = 178, .external_lex_state = 121}, + [9945] = {.lex_state = 175, .external_lex_state = 99}, + [9946] = {.lex_state = 175, .external_lex_state = 99}, + [9947] = {.lex_state = 175, .external_lex_state = 99}, + [9948] = {.lex_state = 175, .external_lex_state = 99}, + [9949] = {.lex_state = 175, .external_lex_state = 99}, + [9950] = {.lex_state = 166, .external_lex_state = 99}, + [9951] = {.lex_state = 178, .external_lex_state = 121}, + [9952] = {.lex_state = 175, .external_lex_state = 99}, + [9953] = {.lex_state = 175, .external_lex_state = 99}, + [9954] = {.lex_state = 166, .external_lex_state = 99}, + [9955] = {.lex_state = 175, .external_lex_state = 99}, + [9956] = {.lex_state = 175, .external_lex_state = 99}, [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 = 175, .external_lex_state = 98}, - [9969] = {.lex_state = 175, .external_lex_state = 98}, + [9958] = {.lex_state = 166, .external_lex_state = 99}, + [9959] = {.lex_state = 175, .external_lex_state = 99}, + [9960] = {.lex_state = 175, .external_lex_state = 99}, + [9961] = {.lex_state = 178, .external_lex_state = 121}, + [9962] = {.lex_state = 175, .external_lex_state = 99}, + [9963] = {.lex_state = 175, .external_lex_state = 99}, + [9964] = {.lex_state = 175, .external_lex_state = 99}, + [9965] = {.lex_state = 175, .external_lex_state = 99}, + [9966] = {.lex_state = 175, .external_lex_state = 99}, + [9967] = {.lex_state = 175, .external_lex_state = 99}, + [9968] = {.lex_state = 178, .external_lex_state = 121}, + [9969] = {.lex_state = 166, .external_lex_state = 99}, [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 = 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 = 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}, + [9971] = {.lex_state = 175, .external_lex_state = 99}, + [9972] = {.lex_state = 175, .external_lex_state = 99}, + [9973] = {.lex_state = 178, .external_lex_state = 121}, + [9974] = {.lex_state = 175, .external_lex_state = 99}, + [9975] = {.lex_state = 175, .external_lex_state = 99}, + [9976] = {.lex_state = 75, .external_lex_state = 122}, + [9977] = {.lex_state = 175, .external_lex_state = 99}, + [9978] = {.lex_state = 175, .external_lex_state = 99}, + [9979] = {.lex_state = 175, .external_lex_state = 99}, + [9980] = {.lex_state = 178, .external_lex_state = 121}, + [9981] = {.lex_state = 175, .external_lex_state = 99}, + [9982] = {.lex_state = 178, .external_lex_state = 99}, [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 = 175, .external_lex_state = 98}, - [9987] = {.lex_state = 178, .external_lex_state = 98}, + [9986] = {.lex_state = 178, .external_lex_state = 121}, + [9987] = {.lex_state = 175, .external_lex_state = 99}, [9988] = {.lex_state = 178, .external_lex_state = 121}, [9989] = {.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 = 178, .external_lex_state = 121}, - [9994] = {.lex_state = 175, .external_lex_state = 98}, - [9995] = {.lex_state = 178, .external_lex_state = 121}, + [9990] = {.lex_state = 178, .external_lex_state = 121}, + [9991] = {.lex_state = 175, .external_lex_state = 99}, + [9992] = {.lex_state = 175, .external_lex_state = 99}, + [9993] = {.lex_state = 175, .external_lex_state = 99}, + [9994] = {.lex_state = 175, .external_lex_state = 99}, + [9995] = {.lex_state = 175, .external_lex_state = 99}, [9996] = {.lex_state = 178, .external_lex_state = 121}, [9997] = {.lex_state = 178, .external_lex_state = 121}, - [9998] = {.lex_state = 75, .external_lex_state = 122}, + [9998] = {.lex_state = 175, .external_lex_state = 99}, [9999] = {.lex_state = 178, .external_lex_state = 121}, - [10000] = {.lex_state = 175, .external_lex_state = 98}, - [10001] = {.lex_state = 178, .external_lex_state = 121}, + [10000] = {.lex_state = 175, .external_lex_state = 99}, + [10001] = {.lex_state = 175, .external_lex_state = 99}, [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 = 175, .external_lex_state = 98}, - [10008] = {.lex_state = 175, .external_lex_state = 98}, - [10009] = {.lex_state = 175, .external_lex_state = 98}, - [10010] = {.lex_state = 178, .external_lex_state = 121}, - [10011] = {.lex_state = 178, .external_lex_state = 121}, + [10003] = {.lex_state = 175, .external_lex_state = 99}, + [10004] = {.lex_state = 178, .external_lex_state = 121}, + [10005] = {.lex_state = 175, .external_lex_state = 99}, + [10006] = {.lex_state = 175, .external_lex_state = 99}, + [10007] = {.lex_state = 178, .external_lex_state = 121}, + [10008] = {.lex_state = 75, .external_lex_state = 122}, + [10009] = {.lex_state = 178, .external_lex_state = 121}, + [10010] = {.lex_state = 175, .external_lex_state = 99}, + [10011] = {.lex_state = 175, .external_lex_state = 99}, [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 = 178, .external_lex_state = 121}, - [10016] = {.lex_state = 175, .external_lex_state = 98}, + [10013] = {.lex_state = 178, .external_lex_state = 121}, + [10014] = {.lex_state = 175, .external_lex_state = 99}, + [10015] = {.lex_state = 23, .external_lex_state = 99}, + [10016] = {.lex_state = 23, .external_lex_state = 99}, [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 = 175, .external_lex_state = 98}, - [10022] = {.lex_state = 175, .external_lex_state = 98}, - [10023] = {.lex_state = 175, .external_lex_state = 98}, - [10024] = {.lex_state = 175, .external_lex_state = 98}, - [10025] = {.lex_state = 175, .external_lex_state = 98}, - [10026] = {.lex_state = 175, .external_lex_state = 98}, - [10027] = {.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 = 178, .external_lex_state = 121}, - [10034] = {.lex_state = 175, .external_lex_state = 98}, - [10035] = {.lex_state = 75, .external_lex_state = 122}, + [10019] = {.lex_state = 175, .external_lex_state = 99}, + [10020] = {.lex_state = 175, .external_lex_state = 99}, + [10021] = {.lex_state = 178, .external_lex_state = 121}, + [10022] = {.lex_state = 175, .external_lex_state = 99}, + [10023] = {.lex_state = 178, .external_lex_state = 99}, + [10024] = {.lex_state = 178, .external_lex_state = 121}, + [10025] = {.lex_state = 178, .external_lex_state = 121}, + [10026] = {.lex_state = 178, .external_lex_state = 121}, + [10027] = {.lex_state = 166, .external_lex_state = 99}, + [10028] = {.lex_state = 75, .external_lex_state = 122}, + [10029] = {.lex_state = 175, .external_lex_state = 99}, + [10030] = {.lex_state = 41, .external_lex_state = 99}, + [10031] = {.lex_state = 175, .external_lex_state = 99}, + [10032] = {.lex_state = 175, .external_lex_state = 99}, + [10033] = {.lex_state = 175, .external_lex_state = 99}, + [10034] = {.lex_state = 175, .external_lex_state = 99}, + [10035] = {.lex_state = 175, .external_lex_state = 99}, [10036] = {.lex_state = 178, .external_lex_state = 121}, - [10037] = {.lex_state = 175, .external_lex_state = 98}, + [10037] = {.lex_state = 178, .external_lex_state = 121}, [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 = 75, .external_lex_state = 122}, - [10042] = {.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 = 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 = 175, .external_lex_state = 98}, - [10053] = {.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 = 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 = 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}, + [10039] = {.lex_state = 178, .external_lex_state = 99}, + [10040] = {.lex_state = 175, .external_lex_state = 99}, + [10041] = {.lex_state = 178, .external_lex_state = 121}, + [10042] = {.lex_state = 178, .external_lex_state = 121}, + [10043] = {.lex_state = 178, .external_lex_state = 111}, + [10044] = {.lex_state = 75, .external_lex_state = 122}, + [10045] = {.lex_state = 175, .external_lex_state = 99}, + [10046] = {.lex_state = 178, .external_lex_state = 121}, + [10047] = {.lex_state = 175, .external_lex_state = 99}, + [10048] = {.lex_state = 175, .external_lex_state = 99}, + [10049] = {.lex_state = 178, .external_lex_state = 121}, + [10050] = {.lex_state = 175, .external_lex_state = 99}, + [10051] = {.lex_state = 175, .external_lex_state = 99}, + [10052] = {.lex_state = 175, .external_lex_state = 99}, + [10053] = {.lex_state = 175, .external_lex_state = 99}, + [10054] = {.lex_state = 175, .external_lex_state = 99}, + [10055] = {.lex_state = 175, .external_lex_state = 99}, + [10056] = {.lex_state = 166, .external_lex_state = 99}, + [10057] = {.lex_state = 175, .external_lex_state = 99}, + [10058] = {.lex_state = 178, .external_lex_state = 121}, + [10059] = {.lex_state = 178, .external_lex_state = 121}, + [10060] = {.lex_state = 178, .external_lex_state = 121}, + [10061] = {.lex_state = 175, .external_lex_state = 99}, + [10062] = {.lex_state = 175, .external_lex_state = 99}, + [10063] = {.lex_state = 75, .external_lex_state = 122}, + [10064] = {.lex_state = 175, .external_lex_state = 99}, + [10065] = {.lex_state = 175, .external_lex_state = 99}, + [10066] = {.lex_state = 175, .external_lex_state = 99}, + [10067] = {.lex_state = 175, .external_lex_state = 99}, [10068] = {.lex_state = 178, .external_lex_state = 121}, - [10069] = {.lex_state = 75, .external_lex_state = 122}, + [10069] = {.lex_state = 175, .external_lex_state = 99}, [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}, + [10071] = {.lex_state = 178, .external_lex_state = 99}, + [10072] = {.lex_state = 173, .external_lex_state = 99}, + [10073] = {.lex_state = 175, .external_lex_state = 99}, [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 = 178, .external_lex_state = 121}, + [10075] = {.lex_state = 175, .external_lex_state = 99}, + [10076] = {.lex_state = 175, .external_lex_state = 99}, + [10077] = {.lex_state = 75, .external_lex_state = 122}, + [10078] = {.lex_state = 175, .external_lex_state = 99}, [10079] = {.lex_state = 178, .external_lex_state = 121}, [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 = 41, .external_lex_state = 98}, - [10084] = {.lex_state = 175, .external_lex_state = 98}, - [10085] = {.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 = 178, .external_lex_state = 121}, - [10089] = {.lex_state = 175, .external_lex_state = 98}, - [10090] = {.lex_state = 175, .external_lex_state = 98}, - [10091] = {.lex_state = 175, .external_lex_state = 98}, + [10081] = {.lex_state = 178, .external_lex_state = 121}, + [10082] = {.lex_state = 175, .external_lex_state = 99}, + [10083] = {.lex_state = 178, .external_lex_state = 121}, + [10084] = {.lex_state = 178, .external_lex_state = 99}, + [10085] = {.lex_state = 175, .external_lex_state = 99}, + [10086] = {.lex_state = 178, .external_lex_state = 121}, + [10087] = {.lex_state = 175, .external_lex_state = 99}, + [10088] = {.lex_state = 175, .external_lex_state = 99}, + [10089] = {.lex_state = 75, .external_lex_state = 122}, + [10090] = {.lex_state = 175, .external_lex_state = 99}, + [10091] = {.lex_state = 178, .external_lex_state = 121}, [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 = 173, .external_lex_state = 98}, - [10097] = {.lex_state = 175, .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}, + [10093] = {.lex_state = 175, .external_lex_state = 99}, + [10094] = {.lex_state = 175, .external_lex_state = 99}, + [10095] = {.lex_state = 178, .external_lex_state = 121}, + [10096] = {.lex_state = 175, .external_lex_state = 99}, + [10097] = {.lex_state = 175, .external_lex_state = 99}, + [10098] = {.lex_state = 175, .external_lex_state = 111}, + [10099] = {.lex_state = 166, .external_lex_state = 99}, + [10100] = {.lex_state = 178, .external_lex_state = 121}, + [10101] = {.lex_state = 175, .external_lex_state = 99}, + [10102] = {.lex_state = 166, .external_lex_state = 99}, + [10103] = {.lex_state = 178, .external_lex_state = 121}, [10104] = {.lex_state = 178, .external_lex_state = 121}, - [10105] = {.lex_state = 175, .external_lex_state = 98}, - [10106] = {.lex_state = 173, .external_lex_state = 98}, - [10107] = {.lex_state = 175, .external_lex_state = 98}, - [10108] = {.lex_state = 175, .external_lex_state = 98}, - [10109] = {.lex_state = 175, .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 = 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}, + [10105] = {.lex_state = 75, .external_lex_state = 122}, + [10106] = {.lex_state = 178, .external_lex_state = 121}, + [10107] = {.lex_state = 178, .external_lex_state = 121}, + [10108] = {.lex_state = 75, .external_lex_state = 122}, + [10109] = {.lex_state = 178, .external_lex_state = 121}, + [10110] = {.lex_state = 178, .external_lex_state = 121}, + [10111] = {.lex_state = 178, .external_lex_state = 121}, + [10112] = {.lex_state = 175, .external_lex_state = 99}, + [10113] = {.lex_state = 175, .external_lex_state = 99}, + [10114] = {.lex_state = 175, .external_lex_state = 99}, + [10115] = {.lex_state = 175, .external_lex_state = 99}, + [10116] = {.lex_state = 178, .external_lex_state = 121}, + [10117] = {.lex_state = 75, .external_lex_state = 122}, + [10118] = {.lex_state = 178, .external_lex_state = 121}, + [10119] = {.lex_state = 175, .external_lex_state = 99}, + [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 = 178, .external_lex_state = 121}, - [10124] = {.lex_state = 166, .external_lex_state = 98}, - [10125] = {.lex_state = 175, .external_lex_state = 98}, - [10126] = {.lex_state = 178, .external_lex_state = 121}, + [10124] = {.lex_state = 178, .external_lex_state = 121}, + [10125] = {.lex_state = 175, .external_lex_state = 99}, + [10126] = {.lex_state = 75, .external_lex_state = 122}, [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 = 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 = 175, .external_lex_state = 98}, - [10141] = {.lex_state = 175, .external_lex_state = 98}, - [10142] = {.lex_state = 175, .external_lex_state = 98}, - [10143] = {.lex_state = 175, .external_lex_state = 98}, + [10128] = {.lex_state = 178, .external_lex_state = 121}, + [10129] = {.lex_state = 178, .external_lex_state = 121}, + [10130] = {.lex_state = 178, .external_lex_state = 99}, + [10131] = {.lex_state = 175, .external_lex_state = 99}, + [10132] = {.lex_state = 175, .external_lex_state = 99}, + [10133] = {.lex_state = 175, .external_lex_state = 99}, + [10134] = {.lex_state = 175, .external_lex_state = 99}, + [10135] = {.lex_state = 75, .external_lex_state = 122}, + [10136] = {.lex_state = 178, .external_lex_state = 121}, + [10137] = {.lex_state = 178, .external_lex_state = 121}, + [10138] = {.lex_state = 178, .external_lex_state = 121}, + [10139] = {.lex_state = 178, .external_lex_state = 121}, + [10140] = {.lex_state = 178, .external_lex_state = 121}, + [10141] = {.lex_state = 178, .external_lex_state = 121}, + [10142] = {.lex_state = 178, .external_lex_state = 121}, + [10143] = {.lex_state = 178, .external_lex_state = 121}, [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}, + [10146] = {.lex_state = 75, .external_lex_state = 122}, + [10147] = {.lex_state = 178, .external_lex_state = 121}, + [10148] = {.lex_state = 175, .external_lex_state = 99}, [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 = 175, .external_lex_state = 98}, - [10153] = {.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 = 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 = 175, .external_lex_state = 98}, - [10162] = {.lex_state = 175, .external_lex_state = 98}, + [10150] = {.lex_state = 175, .external_lex_state = 99}, + [10151] = {.lex_state = 175, .external_lex_state = 99}, + [10152] = {.lex_state = 178, .external_lex_state = 121}, + [10153] = {.lex_state = 175, .external_lex_state = 99}, + [10154] = {.lex_state = 178, .external_lex_state = 99}, + [10155] = {.lex_state = 178, .external_lex_state = 121}, + [10156] = {.lex_state = 175, .external_lex_state = 99}, + [10157] = {.lex_state = 178, .external_lex_state = 121}, + [10158] = {.lex_state = 178, .external_lex_state = 121}, + [10159] = {.lex_state = 175, .external_lex_state = 99}, + [10160] = {.lex_state = 175, .external_lex_state = 99}, + [10161] = {.lex_state = 175, .external_lex_state = 99}, + [10162] = {.lex_state = 175, .external_lex_state = 99}, [10163] = {.lex_state = 178, .external_lex_state = 121}, - [10164] = {.lex_state = 175, .external_lex_state = 98}, - [10165] = {.lex_state = 178, .external_lex_state = 121}, + [10164] = {.lex_state = 175, .external_lex_state = 99}, + [10165] = {.lex_state = 175, .external_lex_state = 99}, [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}, + [10167] = {.lex_state = 175, .external_lex_state = 99}, + [10168] = {.lex_state = 175, .external_lex_state = 99}, + [10169] = {.lex_state = 175, .external_lex_state = 99}, [10170] = {.lex_state = 178, .external_lex_state = 121}, [10171] = {.lex_state = 178, .external_lex_state = 121}, - [10172] = {.lex_state = 178, .external_lex_state = 121}, - [10173] = {.lex_state = 175, .external_lex_state = 98}, + [10172] = {.lex_state = 175, .external_lex_state = 99}, + [10173] = {.lex_state = 175, .external_lex_state = 99}, [10174] = {.lex_state = 178, .external_lex_state = 121}, - [10175] = {.lex_state = 175, .external_lex_state = 98}, - [10176] = {.lex_state = 166, .external_lex_state = 98}, - [10177] = {.lex_state = 175, .external_lex_state = 98}, + [10175] = {.lex_state = 175, .external_lex_state = 99}, + [10176] = {.lex_state = 175, .external_lex_state = 99}, + [10177] = {.lex_state = 175, .external_lex_state = 99}, [10178] = {.lex_state = 178, .external_lex_state = 121}, - [10179] = {.lex_state = 175, .external_lex_state = 98}, - [10180] = {.lex_state = 175, .external_lex_state = 98}, - [10181] = {.lex_state = 175, .external_lex_state = 98}, - [10182] = {.lex_state = 175, .external_lex_state = 98}, + [10179] = {.lex_state = 178, .external_lex_state = 121}, + [10180] = {.lex_state = 175, .external_lex_state = 99}, + [10181] = {.lex_state = 175, .external_lex_state = 99}, + [10182] = {.lex_state = 175, .external_lex_state = 99}, [10183] = {.lex_state = 178, .external_lex_state = 121}, - [10184] = {.lex_state = 175, .external_lex_state = 98}, - [10185] = {.lex_state = 175, .external_lex_state = 98}, + [10184] = {.lex_state = 175, .external_lex_state = 99}, + [10185] = {.lex_state = 166, .external_lex_state = 99}, [10186] = {.lex_state = 178, .external_lex_state = 121}, - [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}, + [10187] = {.lex_state = 178, .external_lex_state = 121}, + [10188] = {.lex_state = 175, .external_lex_state = 99}, + [10189] = {.lex_state = 175, .external_lex_state = 99}, + [10190] = {.lex_state = 178, .external_lex_state = 121}, + [10191] = {.lex_state = 41, .external_lex_state = 99}, + [10192] = {.lex_state = 178, .external_lex_state = 121}, [10193] = {.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 = 175, .external_lex_state = 98}, + [10194] = {.lex_state = 178, .external_lex_state = 121}, + [10195] = {.lex_state = 175, .external_lex_state = 99}, + [10196] = {.lex_state = 175, .external_lex_state = 99}, [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 = 175, .external_lex_state = 98}, - [10205] = {.lex_state = 175, .external_lex_state = 98}, + [10198] = {.lex_state = 175, .external_lex_state = 99}, + [10199] = {.lex_state = 175, .external_lex_state = 99}, + [10200] = {.lex_state = 175, .external_lex_state = 99}, + [10201] = {.lex_state = 175, .external_lex_state = 99}, + [10202] = {.lex_state = 175, .external_lex_state = 99}, + [10203] = {.lex_state = 175, .external_lex_state = 99}, + [10204] = {.lex_state = 175, .external_lex_state = 99}, + [10205] = {.lex_state = 175, .external_lex_state = 99}, [10206] = {.lex_state = 178, .external_lex_state = 121}, - [10207] = {.lex_state = 178, .external_lex_state = 121}, - [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 = 175, .external_lex_state = 98}, - [10213] = {.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 = 23, .external_lex_state = 98}, - [10222] = {.lex_state = 23, .external_lex_state = 98}, - [10223] = {.lex_state = 175, .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}, + [10207] = {.lex_state = 175, .external_lex_state = 99}, + [10208] = {.lex_state = 178, .external_lex_state = 121}, + [10209] = {.lex_state = 166, .external_lex_state = 99}, + [10210] = {.lex_state = 178, .external_lex_state = 121}, + [10211] = {.lex_state = 175, .external_lex_state = 99}, + [10212] = {.lex_state = 175, .external_lex_state = 99}, + [10213] = {.lex_state = 175, .external_lex_state = 99}, + [10214] = {.lex_state = 175, .external_lex_state = 99}, + [10215] = {.lex_state = 175, .external_lex_state = 99}, + [10216] = {.lex_state = 175, .external_lex_state = 99}, + [10217] = {.lex_state = 175, .external_lex_state = 99}, + [10218] = {.lex_state = 175, .external_lex_state = 99}, + [10219] = {.lex_state = 175, .external_lex_state = 99}, + [10220] = {.lex_state = 178, .external_lex_state = 99}, + [10221] = {.lex_state = 175, .external_lex_state = 99}, + [10222] = {.lex_state = 175, .external_lex_state = 99}, + [10223] = {.lex_state = 175, .external_lex_state = 99}, + [10224] = {.lex_state = 178, .external_lex_state = 121}, + [10225] = {.lex_state = 175, .external_lex_state = 99}, + [10226] = {.lex_state = 178, .external_lex_state = 121}, [10227] = {.lex_state = 178, .external_lex_state = 121}, - [10228] = {.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 = 178, .external_lex_state = 121}, - [10236] = {.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 = 178, .external_lex_state = 121}, - [10241] = {.lex_state = 175, .external_lex_state = 98}, + [10228] = {.lex_state = 166, .external_lex_state = 99}, + [10229] = {.lex_state = 175, .external_lex_state = 99}, + [10230] = {.lex_state = 178, .external_lex_state = 121}, + [10231] = {.lex_state = 178, .external_lex_state = 121}, + [10232] = {.lex_state = 175, .external_lex_state = 99}, + [10233] = {.lex_state = 166, .external_lex_state = 99}, + [10234] = {.lex_state = 178, .external_lex_state = 121}, + [10235] = {.lex_state = 175, .external_lex_state = 99}, + [10236] = {.lex_state = 166, .external_lex_state = 99}, + [10237] = {.lex_state = 178, .external_lex_state = 99}, + [10238] = {.lex_state = 178, .external_lex_state = 121}, + [10239] = {.lex_state = 175, .external_lex_state = 99}, + [10240] = {.lex_state = 175, .external_lex_state = 99}, + [10241] = {.lex_state = 175, .external_lex_state = 99}, [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 = 175, .external_lex_state = 98}, - [10247] = {.lex_state = 175, .external_lex_state = 98}, - [10248] = {.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 = 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 = 178, .external_lex_state = 121}, - [10259] = {.lex_state = 178, .external_lex_state = 121}, - [10260] = {.lex_state = 178, .external_lex_state = 121}, - [10261] = {.lex_state = 175, .external_lex_state = 98}, - [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 = 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 = 175, .external_lex_state = 98}, + [10244] = {.lex_state = 175, .external_lex_state = 99}, + [10245] = {.lex_state = 175, .external_lex_state = 99}, + [10246] = {.lex_state = 175, .external_lex_state = 99}, + [10247] = {.lex_state = 173, .external_lex_state = 99}, + [10248] = {.lex_state = 178, .external_lex_state = 121}, + [10249] = {.lex_state = 178, .external_lex_state = 121}, + [10250] = {.lex_state = 178, .external_lex_state = 99}, + [10251] = {.lex_state = 178, .external_lex_state = 121}, + [10252] = {.lex_state = 175, .external_lex_state = 99}, + [10253] = {.lex_state = 175, .external_lex_state = 99}, + [10254] = {.lex_state = 175, .external_lex_state = 99}, + [10255] = {.lex_state = 175, .external_lex_state = 99}, + [10256] = {.lex_state = 175, .external_lex_state = 99}, + [10257] = {.lex_state = 175, .external_lex_state = 99}, + [10258] = {.lex_state = 175, .external_lex_state = 99}, + [10259] = {.lex_state = 175, .external_lex_state = 99}, + [10260] = {.lex_state = 166, .external_lex_state = 99}, + [10261] = {.lex_state = 178, .external_lex_state = 121}, + [10262] = {.lex_state = 175, .external_lex_state = 99}, + [10263] = {.lex_state = 175, .external_lex_state = 99}, + [10264] = {.lex_state = 178, .external_lex_state = 121}, + [10265] = {.lex_state = 178, .external_lex_state = 121}, + [10266] = {.lex_state = 175, .external_lex_state = 99}, + [10267] = {.lex_state = 175, .external_lex_state = 99}, + [10268] = {.lex_state = 175, .external_lex_state = 99}, + [10269] = {.lex_state = 178, .external_lex_state = 111}, + [10270] = {.lex_state = 178, .external_lex_state = 121}, + [10271] = {.lex_state = 175, .external_lex_state = 99}, [10272] = {.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 = 175, .external_lex_state = 98}, - [10276] = {.lex_state = 178, .external_lex_state = 121}, - [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 = 178, .external_lex_state = 121}, - [10282] = {.lex_state = 175, .external_lex_state = 98}, - [10283] = {.lex_state = 175, .external_lex_state = 98}, + [10273] = {.lex_state = 175, .external_lex_state = 99}, + [10274] = {.lex_state = 178, .external_lex_state = 121}, + [10275] = {.lex_state = 175, .external_lex_state = 99}, + [10276] = {.lex_state = 175, .external_lex_state = 99}, + [10277] = {.lex_state = 175, .external_lex_state = 99}, + [10278] = {.lex_state = 178, .external_lex_state = 121}, + [10279] = {.lex_state = 178, .external_lex_state = 99}, + [10280] = {.lex_state = 175, .external_lex_state = 99}, + [10281] = {.lex_state = 175, .external_lex_state = 99}, + [10282] = {.lex_state = 175, .external_lex_state = 99}, + [10283] = {.lex_state = 178, .external_lex_state = 121}, [10284] = {.lex_state = 178, .external_lex_state = 121}, - [10285] = {.lex_state = 178, .external_lex_state = 121}, + [10285] = {.lex_state = 175, .external_lex_state = 99}, [10286] = {.lex_state = 178, .external_lex_state = 121}, - [10287] = {.lex_state = 175, .external_lex_state = 98}, + [10287] = {.lex_state = 175, .external_lex_state = 99}, [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 = 178, .external_lex_state = 121}, - [10292] = {.lex_state = 178, .external_lex_state = 98}, - [10293] = {.lex_state = 175, .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 = 178, .external_lex_state = 98}, - [10301] = {.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}, + [10290] = {.lex_state = 175, .external_lex_state = 99}, + [10291] = {.lex_state = 175, .external_lex_state = 99}, + [10292] = {.lex_state = 175, .external_lex_state = 99}, + [10293] = {.lex_state = 175, .external_lex_state = 99}, + [10294] = {.lex_state = 175, .external_lex_state = 99}, + [10295] = {.lex_state = 175, .external_lex_state = 99}, + [10296] = {.lex_state = 175, .external_lex_state = 99}, + [10297] = {.lex_state = 178, .external_lex_state = 121}, + [10298] = {.lex_state = 175, .external_lex_state = 99}, + [10299] = {.lex_state = 178, .external_lex_state = 121}, + [10300] = {.lex_state = 175, .external_lex_state = 99}, + [10301] = {.lex_state = 178, .external_lex_state = 121}, + [10302] = {.lex_state = 178, .external_lex_state = 121}, + [10303] = {.lex_state = 175, .external_lex_state = 99}, + [10304] = {.lex_state = 178, .external_lex_state = 121}, + [10305] = {.lex_state = 175, .external_lex_state = 99}, + [10306] = {.lex_state = 178, .external_lex_state = 121}, [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 = 175, .external_lex_state = 98}, - [10312] = {.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}, + [10308] = {.lex_state = 178, .external_lex_state = 121}, + [10309] = {.lex_state = 175, .external_lex_state = 99}, + [10310] = {.lex_state = 175, .external_lex_state = 99}, + [10311] = {.lex_state = 175, .external_lex_state = 99}, + [10312] = {.lex_state = 175, .external_lex_state = 99}, + [10313] = {.lex_state = 175, .external_lex_state = 99}, + [10314] = {.lex_state = 178, .external_lex_state = 121}, + [10315] = {.lex_state = 175, .external_lex_state = 99}, [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 = 166, .external_lex_state = 98}, - [10320] = {.lex_state = 175, .external_lex_state = 98}, - [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 = 178, .external_lex_state = 121}, - [10325] = {.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 = 175, .external_lex_state = 98}, - [10333] = {.lex_state = 175, .external_lex_state = 98}, + [10318] = {.lex_state = 175, .external_lex_state = 99}, + [10319] = {.lex_state = 175, .external_lex_state = 99}, + [10320] = {.lex_state = 175, .external_lex_state = 99}, + [10321] = {.lex_state = 175, .external_lex_state = 99}, + [10322] = {.lex_state = 175, .external_lex_state = 99}, + [10323] = {.lex_state = 175, .external_lex_state = 99}, + [10324] = {.lex_state = 175, .external_lex_state = 99}, + [10325] = {.lex_state = 175, .external_lex_state = 99}, + [10326] = {.lex_state = 175, .external_lex_state = 99}, + [10327] = {.lex_state = 175, .external_lex_state = 99}, + [10328] = {.lex_state = 175, .external_lex_state = 99}, + [10329] = {.lex_state = 178, .external_lex_state = 121}, + [10330] = {.lex_state = 175, .external_lex_state = 99}, + [10331] = {.lex_state = 175, .external_lex_state = 99}, + [10332] = {.lex_state = 175, .external_lex_state = 99}, + [10333] = {.lex_state = 178, .external_lex_state = 121}, [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 = 175, .external_lex_state = 98}, - [10338] = {.lex_state = 175, .external_lex_state = 98}, - [10339] = {.lex_state = 175, .external_lex_state = 98}, + [10335] = {.lex_state = 178, .external_lex_state = 121}, + [10336] = {.lex_state = 178, .external_lex_state = 99}, + [10337] = {.lex_state = 175, .external_lex_state = 99}, + [10338] = {.lex_state = 178, .external_lex_state = 121}, + [10339] = {.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}, + [10341] = {.lex_state = 175, .external_lex_state = 99}, + [10342] = {.lex_state = 175, .external_lex_state = 99}, + [10343] = {.lex_state = 175, .external_lex_state = 99}, + [10344] = {.lex_state = 175, .external_lex_state = 99}, + [10345] = {.lex_state = 175, .external_lex_state = 99}, [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 = 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 = 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 = 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 = 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 = 98}, - [10373] = {.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 = 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}, - [10382] = {.lex_state = 175, .external_lex_state = 98}, - [10383] = {.lex_state = 175, .external_lex_state = 98}, - [10384] = {.lex_state = 175, .external_lex_state = 98}, - [10385] = {.lex_state = 175, .external_lex_state = 98}, - [10386] = {.lex_state = 175, .external_lex_state = 98}, - [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 = 175, .external_lex_state = 98}, - [10391] = {.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 = 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 = 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 = 98}, - [10403] = {.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 = 178, .external_lex_state = 121}, - [10408] = {.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 = 111}, - [10413] = {.lex_state = 175, .external_lex_state = 98}, - [10414] = {.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 = 175, .external_lex_state = 98}, - [10421] = {.lex_state = 175, .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 = 178, .external_lex_state = 98}, - [10428] = {.lex_state = 175, .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 = 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 = 166, .external_lex_state = 98}, - [10439] = {.lex_state = 175, .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 = 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 = 175, .external_lex_state = 98}, - [10451] = {.lex_state = 178, .external_lex_state = 98}, - [10452] = {.lex_state = 175, .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 = 98}, - [10457] = {.lex_state = 175, .external_lex_state = 98}, - [10458] = {.lex_state = 175, .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 = 98}, - [10464] = {.lex_state = 175, .external_lex_state = 98}, - [10465] = {.lex_state = 175, .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 = 175, .external_lex_state = 98}, - [10470] = {.lex_state = 175, .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 = 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 = 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 = 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 = 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 = 178, .external_lex_state = 98}, - [10498] = {.lex_state = 175, .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 = 175, .external_lex_state = 98}, - [10503] = {.lex_state = 175, .external_lex_state = 98}, - [10504] = {.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}, - [10509] = {.lex_state = 178, .external_lex_state = 98}, - [10510] = {.lex_state = 178, .external_lex_state = 98}, - [10511] = {.lex_state = 175, .external_lex_state = 98}, - [10512] = {.lex_state = 178, .external_lex_state = 98}, - [10513] = {.lex_state = 175, .external_lex_state = 98}, - [10514] = {.lex_state = 175, .external_lex_state = 98}, - [10515] = {.lex_state = 178, .external_lex_state = 98}, - [10516] = {.lex_state = 178, .external_lex_state = 98}, - [10517] = {.lex_state = 175, .external_lex_state = 98}, - [10518] = {.lex_state = 72, .external_lex_state = 98}, - [10519] = {.lex_state = 175, .external_lex_state = 98}, - [10520] = {.lex_state = 175, .external_lex_state = 98}, - [10521] = {.lex_state = 178, .external_lex_state = 98}, - [10522] = {.lex_state = 178, .external_lex_state = 98}, - [10523] = {.lex_state = 178, .external_lex_state = 98}, - [10524] = {.lex_state = 178, .external_lex_state = 98}, - [10525] = {.lex_state = 178, .external_lex_state = 98}, - [10526] = {.lex_state = 175, .external_lex_state = 98}, - [10527] = {.lex_state = 178, .external_lex_state = 98}, - [10528] = {.lex_state = 166, .external_lex_state = 98}, - [10529] = {.lex_state = 178, .external_lex_state = 98}, - [10530] = {.lex_state = 178, .external_lex_state = 98}, - [10531] = {.lex_state = 178, .external_lex_state = 98}, - [10532] = {.lex_state = 178, .external_lex_state = 98}, - [10533] = {.lex_state = 175, .external_lex_state = 98}, - [10534] = {.lex_state = 178, .external_lex_state = 98}, - [10535] = {.lex_state = 178, .external_lex_state = 98}, - [10536] = {.lex_state = 175, .external_lex_state = 98}, - [10537] = {.lex_state = 175, .external_lex_state = 98}, - [10538] = {.lex_state = 175, .external_lex_state = 98}, - [10539] = {.lex_state = 178, .external_lex_state = 98}, - [10540] = {.lex_state = 175, .external_lex_state = 98}, - [10541] = {.lex_state = 178, .external_lex_state = 98}, - [10542] = {.lex_state = 178, .external_lex_state = 98}, - [10543] = {.lex_state = 178, .external_lex_state = 98}, - [10544] = {.lex_state = 178, .external_lex_state = 98}, - [10545] = {.lex_state = 178, .external_lex_state = 98}, - [10546] = {.lex_state = 175, .external_lex_state = 98}, - [10547] = {.lex_state = 178, .external_lex_state = 98}, - [10548] = {.lex_state = 178, .external_lex_state = 98}, - [10549] = {.lex_state = 178, .external_lex_state = 98}, - [10550] = {.lex_state = 175, .external_lex_state = 98}, - [10551] = {.lex_state = 178, .external_lex_state = 98}, - [10552] = {.lex_state = 175, .external_lex_state = 98}, - [10553] = {.lex_state = 175, .external_lex_state = 98}, - [10554] = {.lex_state = 178, .external_lex_state = 98}, - [10555] = {.lex_state = 178, .external_lex_state = 98}, - [10556] = {.lex_state = 178, .external_lex_state = 98}, - [10557] = {.lex_state = 178, .external_lex_state = 98}, - [10558] = {.lex_state = 178, .external_lex_state = 98}, - [10559] = {.lex_state = 178, .external_lex_state = 98}, - [10560] = {.lex_state = 175, .external_lex_state = 98}, - [10561] = {.lex_state = 178, .external_lex_state = 98}, - [10562] = {.lex_state = 178, .external_lex_state = 98}, - [10563] = {.lex_state = 178, .external_lex_state = 98}, - [10564] = {.lex_state = 178, .external_lex_state = 98}, - [10565] = {.lex_state = 178, .external_lex_state = 98}, - [10566] = {.lex_state = 175, .external_lex_state = 98}, - [10567] = {.lex_state = 175, .external_lex_state = 98}, - [10568] = {.lex_state = 175, .external_lex_state = 98}, - [10569] = {.lex_state = 175, .external_lex_state = 98}, - [10570] = {.lex_state = 175, .external_lex_state = 98}, - [10571] = {.lex_state = 178, .external_lex_state = 98}, - [10572] = {.lex_state = 41, .external_lex_state = 98}, - [10573] = {.lex_state = 178, .external_lex_state = 98}, - [10574] = {.lex_state = 178, .external_lex_state = 98}, - [10575] = {.lex_state = 175, .external_lex_state = 98}, - [10576] = {.lex_state = 178, .external_lex_state = 98}, - [10577] = {.lex_state = 178, .external_lex_state = 98}, - [10578] = {.lex_state = 178, .external_lex_state = 98}, - [10579] = {.lex_state = 178, .external_lex_state = 98}, - [10580] = {.lex_state = 178, .external_lex_state = 98}, - [10581] = {.lex_state = 178, .external_lex_state = 98}, - [10582] = {.lex_state = 178, .external_lex_state = 98}, - [10583] = {.lex_state = 175, .external_lex_state = 98}, - [10584] = {.lex_state = 178, .external_lex_state = 98}, - [10585] = {.lex_state = 178, .external_lex_state = 98}, - [10586] = {.lex_state = 178, .external_lex_state = 98}, - [10587] = {.lex_state = 175, .external_lex_state = 98}, - [10588] = {.lex_state = 178, .external_lex_state = 98}, - [10589] = {.lex_state = 178, .external_lex_state = 98}, - [10590] = {.lex_state = 178, .external_lex_state = 98}, - [10591] = {.lex_state = 178, .external_lex_state = 98}, - [10592] = {.lex_state = 178, .external_lex_state = 98}, - [10593] = {.lex_state = 178, .external_lex_state = 98}, - [10594] = {.lex_state = 175, .external_lex_state = 98}, - [10595] = {.lex_state = 178, .external_lex_state = 98}, - [10596] = {.lex_state = 175, .external_lex_state = 98}, - [10597] = {.lex_state = 178, .external_lex_state = 98}, - [10598] = {.lex_state = 166, .external_lex_state = 98}, - [10599] = {.lex_state = 166, .external_lex_state = 98}, - [10600] = {.lex_state = 178, .external_lex_state = 98}, - [10601] = {.lex_state = 178, .external_lex_state = 98}, - [10602] = {.lex_state = 175, .external_lex_state = 98}, - [10603] = {.lex_state = 178, .external_lex_state = 98}, - [10604] = {.lex_state = 178, .external_lex_state = 98}, - [10605] = {.lex_state = 178, .external_lex_state = 98}, - [10606] = {.lex_state = 178, .external_lex_state = 98}, - [10607] = {.lex_state = 166, .external_lex_state = 98}, - [10608] = {.lex_state = 175, .external_lex_state = 98}, - [10609] = {.lex_state = 178, .external_lex_state = 98}, - [10610] = {.lex_state = 178, .external_lex_state = 98}, - [10611] = {.lex_state = 175, .external_lex_state = 98}, - [10612] = {.lex_state = 175, .external_lex_state = 98}, - [10613] = {.lex_state = 72, .external_lex_state = 98}, - [10614] = {.lex_state = 175, .external_lex_state = 98}, - [10615] = {.lex_state = 166, .external_lex_state = 98}, - [10616] = {.lex_state = 178, .external_lex_state = 98}, - [10617] = {.lex_state = 178, .external_lex_state = 98}, - [10618] = {.lex_state = 175, .external_lex_state = 98}, - [10619] = {.lex_state = 166, .external_lex_state = 98}, - [10620] = {.lex_state = 178, .external_lex_state = 98}, - [10621] = {.lex_state = 178, .external_lex_state = 98}, - [10622] = {.lex_state = 178, .external_lex_state = 98}, - [10623] = {.lex_state = 175, .external_lex_state = 98}, - [10624] = {.lex_state = 178, .external_lex_state = 98}, - [10625] = {.lex_state = 178, .external_lex_state = 98}, - [10626] = {.lex_state = 175, .external_lex_state = 98}, - [10627] = {.lex_state = 178, .external_lex_state = 98}, - [10628] = {.lex_state = 178, .external_lex_state = 98}, - [10629] = {.lex_state = 175, .external_lex_state = 98}, - [10630] = {.lex_state = 175, .external_lex_state = 98}, - [10631] = {.lex_state = 178, .external_lex_state = 98}, - [10632] = {.lex_state = 178, .external_lex_state = 98}, - [10633] = {.lex_state = 175, .external_lex_state = 98}, - [10634] = {.lex_state = 175, .external_lex_state = 98}, - [10635] = {.lex_state = 178, .external_lex_state = 98}, - [10636] = {.lex_state = 178, .external_lex_state = 98}, - [10637] = {.lex_state = 72, .external_lex_state = 98}, - [10638] = {.lex_state = 178, .external_lex_state = 98}, - [10639] = {.lex_state = 175, .external_lex_state = 98}, - [10640] = {.lex_state = 175, .external_lex_state = 98}, - [10641] = {.lex_state = 178, .external_lex_state = 98}, - [10642] = {.lex_state = 178, .external_lex_state = 98}, - [10643] = {.lex_state = 175, .external_lex_state = 98}, - [10644] = {.lex_state = 175, .external_lex_state = 98}, - [10645] = {.lex_state = 178, .external_lex_state = 98}, - [10646] = {.lex_state = 178, .external_lex_state = 98}, - [10647] = {.lex_state = 175, .external_lex_state = 98}, - [10648] = {.lex_state = 178, .external_lex_state = 98}, - [10649] = {.lex_state = 178, .external_lex_state = 98}, - [10650] = {.lex_state = 175, .external_lex_state = 98}, - [10651] = {.lex_state = 178, .external_lex_state = 98}, - [10652] = {.lex_state = 175, .external_lex_state = 98}, - [10653] = {.lex_state = 178, .external_lex_state = 98}, - [10654] = {.lex_state = 175, .external_lex_state = 98}, - [10655] = {.lex_state = 175, .external_lex_state = 98}, - [10656] = {.lex_state = 178, .external_lex_state = 98}, - [10657] = {.lex_state = 178, .external_lex_state = 98}, - [10658] = {.lex_state = 178, .external_lex_state = 98}, - [10659] = {.lex_state = 178, .external_lex_state = 98}, - [10660] = {.lex_state = 178, .external_lex_state = 98}, - [10661] = {.lex_state = 178, .external_lex_state = 98}, - [10662] = {.lex_state = 178, .external_lex_state = 98}, - [10663] = {.lex_state = 175, .external_lex_state = 98}, - [10664] = {.lex_state = 178, .external_lex_state = 98}, - [10665] = {.lex_state = 178, .external_lex_state = 98}, - [10666] = {.lex_state = 178, .external_lex_state = 98}, - [10667] = {.lex_state = 178, .external_lex_state = 98}, - [10668] = {.lex_state = 178, .external_lex_state = 98}, - [10669] = {.lex_state = 178, .external_lex_state = 98}, - [10670] = {.lex_state = 178, .external_lex_state = 98}, - [10671] = {.lex_state = 178, .external_lex_state = 98}, - [10672] = {.lex_state = 178, .external_lex_state = 98}, - [10673] = {.lex_state = 175, .external_lex_state = 98}, - [10674] = {.lex_state = 178, .external_lex_state = 98}, - [10675] = {.lex_state = 178, .external_lex_state = 98}, - [10676] = {.lex_state = 178, .external_lex_state = 98}, - [10677] = {.lex_state = 175, .external_lex_state = 98}, - [10678] = {.lex_state = 178, .external_lex_state = 98}, - [10679] = {.lex_state = 166, .external_lex_state = 98}, - [10680] = {.lex_state = 175, .external_lex_state = 98}, - [10681] = {.lex_state = 175, .external_lex_state = 98}, - [10682] = {.lex_state = 178, .external_lex_state = 98}, - [10683] = {.lex_state = 175, .external_lex_state = 98}, - [10684] = {.lex_state = 178, .external_lex_state = 98}, - [10685] = {.lex_state = 175, .external_lex_state = 98}, - [10686] = {.lex_state = 175, .external_lex_state = 98}, - [10687] = {.lex_state = 175, .external_lex_state = 98}, - [10688] = {.lex_state = 175, .external_lex_state = 98}, - [10689] = {.lex_state = 178, .external_lex_state = 98}, - [10690] = {.lex_state = 175, .external_lex_state = 98}, - [10691] = {.lex_state = 178, .external_lex_state = 98}, - [10692] = {.lex_state = 175, .external_lex_state = 98}, - [10693] = {.lex_state = 72, .external_lex_state = 98}, - [10694] = {.lex_state = 178, .external_lex_state = 98}, - [10695] = {.lex_state = 178, .external_lex_state = 98}, - [10696] = {.lex_state = 178, .external_lex_state = 98}, - [10697] = {.lex_state = 178, .external_lex_state = 98}, - [10698] = {.lex_state = 178, .external_lex_state = 98}, - [10699] = {.lex_state = 178, .external_lex_state = 98}, - [10700] = {.lex_state = 175, .external_lex_state = 98}, - [10701] = {.lex_state = 166, .external_lex_state = 98}, - [10702] = {.lex_state = 178, .external_lex_state = 98}, - [10703] = {.lex_state = 166, .external_lex_state = 98}, - [10704] = {.lex_state = 175, .external_lex_state = 98}, - [10705] = {.lex_state = 175, .external_lex_state = 98}, - [10706] = {.lex_state = 178, .external_lex_state = 98}, - [10707] = {.lex_state = 178, .external_lex_state = 98}, - [10708] = {.lex_state = 178, .external_lex_state = 98}, - [10709] = {.lex_state = 178, .external_lex_state = 98}, - [10710] = {.lex_state = 178, .external_lex_state = 98}, - [10711] = {.lex_state = 178, .external_lex_state = 98}, - [10712] = {.lex_state = 175, .external_lex_state = 98}, - [10713] = {.lex_state = 178, .external_lex_state = 98}, - [10714] = {.lex_state = 175, .external_lex_state = 98}, - [10715] = {.lex_state = 178, .external_lex_state = 98}, - [10716] = {.lex_state = 175, .external_lex_state = 98}, - [10717] = {.lex_state = 178, .external_lex_state = 98}, - [10718] = {.lex_state = 175, .external_lex_state = 98}, - [10719] = {.lex_state = 178, .external_lex_state = 98}, - [10720] = {.lex_state = 178, .external_lex_state = 98}, - [10721] = {.lex_state = 178, .external_lex_state = 98}, - [10722] = {.lex_state = 166, .external_lex_state = 98}, - [10723] = {.lex_state = 175, .external_lex_state = 98}, - [10724] = {.lex_state = 175, .external_lex_state = 98}, - [10725] = {.lex_state = 178, .external_lex_state = 98}, - [10726] = {.lex_state = 178, .external_lex_state = 98}, - [10727] = {.lex_state = 178, .external_lex_state = 98}, - [10728] = {.lex_state = 41, .external_lex_state = 98}, - [10729] = {.lex_state = 175, .external_lex_state = 98}, - [10730] = {.lex_state = 178, .external_lex_state = 98}, - [10731] = {.lex_state = 175, .external_lex_state = 98}, - [10732] = {.lex_state = 178, .external_lex_state = 98}, - [10733] = {.lex_state = 175, .external_lex_state = 98}, - [10734] = {.lex_state = 175, .external_lex_state = 98}, - [10735] = {.lex_state = 166, .external_lex_state = 98}, - [10736] = {.lex_state = 175, .external_lex_state = 98}, - [10737] = {.lex_state = 178, .external_lex_state = 98}, - [10738] = {.lex_state = 178, .external_lex_state = 98}, - [10739] = {.lex_state = 175, .external_lex_state = 98}, - [10740] = {.lex_state = 41, .external_lex_state = 98}, - [10741] = {.lex_state = 72, .external_lex_state = 98}, - [10742] = {.lex_state = 178, .external_lex_state = 98}, - [10743] = {.lex_state = 178, .external_lex_state = 98}, - [10744] = {.lex_state = 178, .external_lex_state = 98}, - [10745] = {.lex_state = 178, .external_lex_state = 98}, - [10746] = {.lex_state = 175, .external_lex_state = 98}, - [10747] = {.lex_state = 178, .external_lex_state = 98}, - [10748] = {.lex_state = 178, .external_lex_state = 98}, - [10749] = {.lex_state = 175, .external_lex_state = 98}, - [10750] = {.lex_state = 175, .external_lex_state = 98}, - [10751] = {.lex_state = 178, .external_lex_state = 98}, - [10752] = {.lex_state = 178, .external_lex_state = 98}, - [10753] = {.lex_state = 178, .external_lex_state = 98}, - [10754] = {.lex_state = 178, .external_lex_state = 98}, - [10755] = {.lex_state = 175, .external_lex_state = 98}, - [10756] = {.lex_state = 175, .external_lex_state = 98}, - [10757] = {.lex_state = 178, .external_lex_state = 98}, - [10758] = {.lex_state = 178, .external_lex_state = 98}, - [10759] = {.lex_state = 178, .external_lex_state = 98}, - [10760] = {.lex_state = 72, .external_lex_state = 98}, - [10761] = {.lex_state = 178, .external_lex_state = 98}, - [10762] = {.lex_state = 178, .external_lex_state = 98}, - [10763] = {.lex_state = 178, .external_lex_state = 98}, - [10764] = {.lex_state = 178, .external_lex_state = 98}, - [10765] = {.lex_state = 175, .external_lex_state = 98}, - [10766] = {.lex_state = 178, .external_lex_state = 98}, - [10767] = {.lex_state = 175, .external_lex_state = 98}, - [10768] = {.lex_state = 178, .external_lex_state = 98}, - [10769] = {.lex_state = 178, .external_lex_state = 98}, - [10770] = {.lex_state = 178, .external_lex_state = 98}, - [10771] = {.lex_state = 178, .external_lex_state = 98}, - [10772] = {.lex_state = 178, .external_lex_state = 98}, - [10773] = {.lex_state = 166, .external_lex_state = 98}, - [10774] = {.lex_state = 178, .external_lex_state = 98}, - [10775] = {.lex_state = 178, .external_lex_state = 98}, - [10776] = {.lex_state = 178, .external_lex_state = 98}, - [10777] = {.lex_state = 178, .external_lex_state = 98}, - [10778] = {.lex_state = 178, .external_lex_state = 98}, - [10779] = {.lex_state = 178, .external_lex_state = 98}, - [10780] = {.lex_state = 166, .external_lex_state = 98}, - [10781] = {.lex_state = 175, .external_lex_state = 98}, - [10782] = {.lex_state = 178, .external_lex_state = 98}, - [10783] = {.lex_state = 178, .external_lex_state = 98}, - [10784] = {.lex_state = 178, .external_lex_state = 98}, - [10785] = {.lex_state = 175, .external_lex_state = 98}, - [10786] = {.lex_state = 178, .external_lex_state = 98}, - [10787] = {.lex_state = 175, .external_lex_state = 98}, - [10788] = {.lex_state = 175, .external_lex_state = 98}, - [10789] = {.lex_state = 175, .external_lex_state = 98}, - [10790] = {.lex_state = 178, .external_lex_state = 98}, - [10791] = {.lex_state = 175, .external_lex_state = 98}, - [10792] = {.lex_state = 178, .external_lex_state = 98}, - [10793] = {.lex_state = 178, .external_lex_state = 98}, - [10794] = {.lex_state = 175, .external_lex_state = 98}, - [10795] = {.lex_state = 175, .external_lex_state = 98}, - [10796] = {.lex_state = 178, .external_lex_state = 98}, - [10797] = {.lex_state = 178, .external_lex_state = 98}, - [10798] = {.lex_state = 175, .external_lex_state = 98}, - [10799] = {.lex_state = 175, .external_lex_state = 98}, - [10800] = {.lex_state = 72, .external_lex_state = 98}, - [10801] = {.lex_state = 178, .external_lex_state = 98}, - [10802] = {.lex_state = 178, .external_lex_state = 98}, - [10803] = {.lex_state = 178, .external_lex_state = 98}, - [10804] = {.lex_state = 178, .external_lex_state = 98}, - [10805] = {.lex_state = 175, .external_lex_state = 98}, - [10806] = {.lex_state = 178, .external_lex_state = 98}, - [10807] = {.lex_state = 166, .external_lex_state = 98}, - [10808] = {.lex_state = 175, .external_lex_state = 98}, - [10809] = {.lex_state = 175, .external_lex_state = 98}, - [10810] = {.lex_state = 175, .external_lex_state = 98}, - [10811] = {.lex_state = 175, .external_lex_state = 98}, - [10812] = {.lex_state = 175, .external_lex_state = 98}, - [10813] = {.lex_state = 178, .external_lex_state = 98}, - [10814] = {.lex_state = 178, .external_lex_state = 98}, - [10815] = {.lex_state = 178, .external_lex_state = 98}, - [10816] = {.lex_state = 178, .external_lex_state = 98}, - [10817] = {.lex_state = 178, .external_lex_state = 98}, - [10818] = {.lex_state = 178, .external_lex_state = 98}, - [10819] = {.lex_state = 175, .external_lex_state = 98}, - [10820] = {.lex_state = 178, .external_lex_state = 98}, - [10821] = {.lex_state = 178, .external_lex_state = 98}, - [10822] = {.lex_state = 175, .external_lex_state = 98}, - [10823] = {.lex_state = 178, .external_lex_state = 98}, - [10824] = {.lex_state = 175, .external_lex_state = 98}, - [10825] = {.lex_state = 175, .external_lex_state = 98}, - [10826] = {.lex_state = 175, .external_lex_state = 98}, - [10827] = {.lex_state = 178, .external_lex_state = 98}, - [10828] = {.lex_state = 175, .external_lex_state = 98}, - [10829] = {.lex_state = 175, .external_lex_state = 98}, - [10830] = {.lex_state = 175, .external_lex_state = 98}, - [10831] = {.lex_state = 175, .external_lex_state = 98}, - [10832] = {.lex_state = 178, .external_lex_state = 98}, - [10833] = {.lex_state = 175, .external_lex_state = 98}, - [10834] = {.lex_state = 178, .external_lex_state = 98}, - [10835] = {.lex_state = 178, .external_lex_state = 98}, - [10836] = {.lex_state = 175, .external_lex_state = 98}, - [10837] = {.lex_state = 166, .external_lex_state = 98}, - [10838] = {.lex_state = 178, .external_lex_state = 98}, - [10839] = {.lex_state = 175, .external_lex_state = 98}, - [10840] = {.lex_state = 178, .external_lex_state = 98}, - [10841] = {.lex_state = 175, .external_lex_state = 98}, - [10842] = {.lex_state = 178, .external_lex_state = 98}, - [10843] = {.lex_state = 175, .external_lex_state = 98}, - [10844] = {.lex_state = 178, .external_lex_state = 98}, - [10845] = {.lex_state = 175, .external_lex_state = 98}, - [10846] = {.lex_state = 175, .external_lex_state = 98}, - [10847] = {.lex_state = 175, .external_lex_state = 98}, - [10848] = {.lex_state = 178, .external_lex_state = 98}, - [10849] = {.lex_state = 178, .external_lex_state = 98}, - [10850] = {.lex_state = 178, .external_lex_state = 98}, - [10851] = {.lex_state = 175, .external_lex_state = 98}, - [10852] = {.lex_state = 178, .external_lex_state = 98}, - [10853] = {.lex_state = 178, .external_lex_state = 98}, - [10854] = {.lex_state = 175, .external_lex_state = 98}, - [10855] = {.lex_state = 178, .external_lex_state = 98}, - [10856] = {.lex_state = 178, .external_lex_state = 98}, - [10857] = {.lex_state = 178, .external_lex_state = 98}, - [10858] = {.lex_state = 175, .external_lex_state = 98}, - [10859] = {.lex_state = 175, .external_lex_state = 98}, - [10860] = {.lex_state = 178, .external_lex_state = 98}, - [10861] = {.lex_state = 178, .external_lex_state = 98}, - [10862] = {.lex_state = 175, .external_lex_state = 98}, - [10863] = {.lex_state = 178, .external_lex_state = 98}, - [10864] = {.lex_state = 178, .external_lex_state = 98}, - [10865] = {.lex_state = 175, .external_lex_state = 98}, - [10866] = {.lex_state = 178, .external_lex_state = 98}, - [10867] = {.lex_state = 178, .external_lex_state = 98}, - [10868] = {.lex_state = 175, .external_lex_state = 98}, - [10869] = {.lex_state = 178, .external_lex_state = 98}, - [10870] = {.lex_state = 178, .external_lex_state = 98}, - [10871] = {.lex_state = 178, .external_lex_state = 98}, - [10872] = {.lex_state = 175, .external_lex_state = 98}, - [10873] = {.lex_state = 175, .external_lex_state = 98}, - [10874] = {.lex_state = 175, .external_lex_state = 98}, - [10875] = {.lex_state = 178, .external_lex_state = 98}, - [10876] = {.lex_state = 178, .external_lex_state = 98}, - [10877] = {.lex_state = 175, .external_lex_state = 98}, - [10878] = {.lex_state = 178, .external_lex_state = 98}, - [10879] = {.lex_state = 178, .external_lex_state = 98}, - [10880] = {.lex_state = 178, .external_lex_state = 98}, - [10881] = {.lex_state = 178, .external_lex_state = 98}, - [10882] = {.lex_state = 175, .external_lex_state = 98}, - [10883] = {.lex_state = 72, .external_lex_state = 98}, - [10884] = {.lex_state = 166, .external_lex_state = 98}, - [10885] = {.lex_state = 178, .external_lex_state = 98}, - [10886] = {.lex_state = 178, .external_lex_state = 98}, - [10887] = {.lex_state = 178, .external_lex_state = 98}, - [10888] = {.lex_state = 175, .external_lex_state = 98}, - [10889] = {.lex_state = 178, .external_lex_state = 98}, - [10890] = {.lex_state = 175, .external_lex_state = 98}, - [10891] = {.lex_state = 175, .external_lex_state = 98}, - [10892] = {.lex_state = 175, .external_lex_state = 98}, - [10893] = {.lex_state = 178, .external_lex_state = 98}, - [10894] = {.lex_state = 175, .external_lex_state = 98}, - [10895] = {.lex_state = 175, .external_lex_state = 98}, - [10896] = {.lex_state = 178, .external_lex_state = 98}, - [10897] = {.lex_state = 178, .external_lex_state = 98}, - [10898] = {.lex_state = 166, .external_lex_state = 98}, - [10899] = {.lex_state = 178, .external_lex_state = 98}, - [10900] = {.lex_state = 175, .external_lex_state = 98}, - [10901] = {.lex_state = 175, .external_lex_state = 98}, - [10902] = {.lex_state = 175, .external_lex_state = 98}, - [10903] = {.lex_state = 175, .external_lex_state = 98}, - [10904] = {.lex_state = 175, .external_lex_state = 98}, - [10905] = {.lex_state = 175, .external_lex_state = 98}, - [10906] = {.lex_state = 178, .external_lex_state = 98}, - [10907] = {.lex_state = 175, .external_lex_state = 98}, - [10908] = {.lex_state = 178, .external_lex_state = 98}, - [10909] = {.lex_state = 175, .external_lex_state = 98}, - [10910] = {.lex_state = 175, .external_lex_state = 98}, - [10911] = {.lex_state = 178, .external_lex_state = 98}, - [10912] = {.lex_state = 175, .external_lex_state = 98}, - [10913] = {.lex_state = 178, .external_lex_state = 98}, - [10914] = {.lex_state = 175, .external_lex_state = 98}, - [10915] = {.lex_state = 175, .external_lex_state = 98}, - [10916] = {.lex_state = 178, .external_lex_state = 98}, - [10917] = {.lex_state = 175, .external_lex_state = 98}, - [10918] = {.lex_state = 178, .external_lex_state = 98}, - [10919] = {.lex_state = 175, .external_lex_state = 98}, - [10920] = {.lex_state = 175, .external_lex_state = 98}, - [10921] = {.lex_state = 178, .external_lex_state = 98}, - [10922] = {.lex_state = 178, .external_lex_state = 98}, - [10923] = {.lex_state = 178, .external_lex_state = 98}, - [10924] = {.lex_state = 178, .external_lex_state = 98}, - [10925] = {.lex_state = 178, .external_lex_state = 98}, - [10926] = {.lex_state = 178, .external_lex_state = 98}, - [10927] = {.lex_state = 178, .external_lex_state = 98}, - [10928] = {.lex_state = 178, .external_lex_state = 98}, - [10929] = {.lex_state = 175, .external_lex_state = 98}, - [10930] = {.lex_state = 178, .external_lex_state = 98}, - [10931] = {.lex_state = 175, .external_lex_state = 98}, - [10932] = {.lex_state = 178, .external_lex_state = 98}, - [10933] = {.lex_state = 178, .external_lex_state = 98}, - [10934] = {.lex_state = 178, .external_lex_state = 98}, - [10935] = {.lex_state = 178, .external_lex_state = 98}, - [10936] = {.lex_state = 175, .external_lex_state = 98}, - [10937] = {.lex_state = 175, .external_lex_state = 98}, - [10938] = {.lex_state = 178, .external_lex_state = 98}, - [10939] = {.lex_state = 175, .external_lex_state = 98}, - [10940] = {.lex_state = 175, .external_lex_state = 98}, - [10941] = {.lex_state = 178, .external_lex_state = 98}, - [10942] = {.lex_state = 178, .external_lex_state = 98}, - [10943] = {.lex_state = 175, .external_lex_state = 98}, - [10944] = {.lex_state = 175, .external_lex_state = 98}, - [10945] = {.lex_state = 175, .external_lex_state = 98}, - [10946] = {.lex_state = 178, .external_lex_state = 98}, - [10947] = {.lex_state = 178, .external_lex_state = 98}, - [10948] = {.lex_state = 178, .external_lex_state = 98}, - [10949] = {.lex_state = 178, .external_lex_state = 98}, - [10950] = {.lex_state = 178, .external_lex_state = 98}, - [10951] = {.lex_state = 178, .external_lex_state = 98}, - [10952] = {.lex_state = 178, .external_lex_state = 98}, - [10953] = {.lex_state = 178, .external_lex_state = 98}, - [10954] = {.lex_state = 178, .external_lex_state = 98}, - [10955] = {.lex_state = 178, .external_lex_state = 98}, - [10956] = {.lex_state = 175, .external_lex_state = 98}, - [10957] = {.lex_state = 175, .external_lex_state = 98}, - [10958] = {.lex_state = 175, .external_lex_state = 98}, - [10959] = {.lex_state = 178, .external_lex_state = 98}, - [10960] = {.lex_state = 178, .external_lex_state = 98}, - [10961] = {.lex_state = 178, .external_lex_state = 98}, - [10962] = {.lex_state = 178, .external_lex_state = 98}, - [10963] = {.lex_state = 175, .external_lex_state = 98}, - [10964] = {.lex_state = 175, .external_lex_state = 98}, - [10965] = {.lex_state = 166, .external_lex_state = 98}, - [10966] = {.lex_state = 178, .external_lex_state = 98}, - [10967] = {.lex_state = 175, .external_lex_state = 98}, - [10968] = {.lex_state = 178, .external_lex_state = 98}, - [10969] = {.lex_state = 178, .external_lex_state = 98}, - [10970] = {.lex_state = 178, .external_lex_state = 98}, - [10971] = {.lex_state = 175, .external_lex_state = 98}, - [10972] = {.lex_state = 175, .external_lex_state = 98}, - [10973] = {.lex_state = 175, .external_lex_state = 98}, - [10974] = {.lex_state = 166, .external_lex_state = 98}, - [10975] = {.lex_state = 175, .external_lex_state = 98}, - [10976] = {.lex_state = 175, .external_lex_state = 98}, - [10977] = {.lex_state = 175, .external_lex_state = 98}, - [10978] = {.lex_state = 175, .external_lex_state = 98}, - [10979] = {.lex_state = 175, .external_lex_state = 98}, - [10980] = {.lex_state = 175, .external_lex_state = 98}, - [10981] = {.lex_state = 175, .external_lex_state = 98}, - [10982] = {.lex_state = 175, .external_lex_state = 98}, - [10983] = {.lex_state = 178, .external_lex_state = 98}, - [10984] = {.lex_state = 178, .external_lex_state = 98}, - [10985] = {.lex_state = 178, .external_lex_state = 98}, - [10986] = {.lex_state = 175, .external_lex_state = 98}, - [10987] = {.lex_state = 175, .external_lex_state = 98}, - [10988] = {.lex_state = 175, .external_lex_state = 98}, - [10989] = {.lex_state = 178, .external_lex_state = 98}, - [10990] = {.lex_state = 178, .external_lex_state = 98}, - [10991] = {.lex_state = 175, .external_lex_state = 98}, - [10992] = {.lex_state = 178, .external_lex_state = 98}, - [10993] = {.lex_state = 178, .external_lex_state = 98}, - [10994] = {.lex_state = 175, .external_lex_state = 98}, - [10995] = {.lex_state = 72, .external_lex_state = 98}, - [10996] = {.lex_state = 175, .external_lex_state = 98}, - [10997] = {.lex_state = 178, .external_lex_state = 98}, - [10998] = {.lex_state = 178, .external_lex_state = 98}, - [10999] = {.lex_state = 175, .external_lex_state = 98}, - [11000] = {.lex_state = 178, .external_lex_state = 98}, - [11001] = {.lex_state = 175, .external_lex_state = 98}, - [11002] = {.lex_state = 175, .external_lex_state = 98}, - [11003] = {.lex_state = 183, .external_lex_state = 98}, - [11004] = {.lex_state = 175, .external_lex_state = 98}, - [11005] = {.lex_state = 175, .external_lex_state = 98}, - [11006] = {.lex_state = 175, .external_lex_state = 98}, - [11007] = {.lex_state = 175, .external_lex_state = 98}, - [11008] = {.lex_state = 175, .external_lex_state = 98}, - [11009] = {.lex_state = 175, .external_lex_state = 98}, - [11010] = {.lex_state = 175, .external_lex_state = 98}, - [11011] = {.lex_state = 175, .external_lex_state = 98}, - [11012] = {.lex_state = 175, .external_lex_state = 98}, - [11013] = {.lex_state = 178, .external_lex_state = 98}, - [11014] = {.lex_state = 178, .external_lex_state = 98}, - [11015] = {.lex_state = 175, .external_lex_state = 98}, - [11016] = {.lex_state = 175, .external_lex_state = 98}, - [11017] = {.lex_state = 175, .external_lex_state = 98}, - [11018] = {.lex_state = 175, .external_lex_state = 98}, - [11019] = {.lex_state = 178, .external_lex_state = 98}, - [11020] = {.lex_state = 175, .external_lex_state = 98}, - [11021] = {.lex_state = 175, .external_lex_state = 98}, - [11022] = {.lex_state = 175, .external_lex_state = 98}, - [11023] = {.lex_state = 175, .external_lex_state = 98}, - [11024] = {.lex_state = 175, .external_lex_state = 98}, - [11025] = {.lex_state = 178, .external_lex_state = 98}, - [11026] = {.lex_state = 175, .external_lex_state = 98}, - [11027] = {.lex_state = 178, .external_lex_state = 98}, - [11028] = {.lex_state = 178, .external_lex_state = 98}, - [11029] = {.lex_state = 175, .external_lex_state = 98}, - [11030] = {.lex_state = 175, .external_lex_state = 98}, - [11031] = {.lex_state = 178, .external_lex_state = 98}, - [11032] = {.lex_state = 178, .external_lex_state = 98}, - [11033] = {.lex_state = 178, .external_lex_state = 98}, - [11034] = {.lex_state = 175, .external_lex_state = 98}, - [11035] = {.lex_state = 175, .external_lex_state = 98}, - [11036] = {.lex_state = 175, .external_lex_state = 98}, - [11037] = {.lex_state = 175, .external_lex_state = 98}, - [11038] = {.lex_state = 175, .external_lex_state = 98}, - [11039] = {.lex_state = 175, .external_lex_state = 98}, - [11040] = {.lex_state = 175, .external_lex_state = 98}, - [11041] = {.lex_state = 178, .external_lex_state = 98}, - [11042] = {.lex_state = 175, .external_lex_state = 98}, - [11043] = {.lex_state = 175, .external_lex_state = 98}, - [11044] = {.lex_state = 175, .external_lex_state = 98}, - [11045] = {.lex_state = 175, .external_lex_state = 98}, - [11046] = {.lex_state = 175, .external_lex_state = 98}, - [11047] = {.lex_state = 178, .external_lex_state = 98}, - [11048] = {.lex_state = 178, .external_lex_state = 98}, - [11049] = {.lex_state = 175, .external_lex_state = 98}, - [11050] = {.lex_state = 175, .external_lex_state = 98}, - [11051] = {.lex_state = 175, .external_lex_state = 98}, - [11052] = {.lex_state = 175, .external_lex_state = 98}, - [11053] = {.lex_state = 178, .external_lex_state = 98}, - [11054] = {.lex_state = 175, .external_lex_state = 98}, - [11055] = {.lex_state = 178, .external_lex_state = 98}, - [11056] = {.lex_state = 175, .external_lex_state = 98}, - [11057] = {.lex_state = 175, .external_lex_state = 98}, - [11058] = {.lex_state = 175, .external_lex_state = 98}, - [11059] = {.lex_state = 178, .external_lex_state = 98}, - [11060] = {.lex_state = 175, .external_lex_state = 98}, - [11061] = {.lex_state = 175, .external_lex_state = 98}, - [11062] = {.lex_state = 175, .external_lex_state = 98}, - [11063] = {.lex_state = 175, .external_lex_state = 98}, - [11064] = {.lex_state = 175, .external_lex_state = 98}, - [11065] = {.lex_state = 175, .external_lex_state = 98}, - [11066] = {.lex_state = 178, .external_lex_state = 98}, - [11067] = {.lex_state = 175, .external_lex_state = 98}, - [11068] = {.lex_state = 178, .external_lex_state = 98}, - [11069] = {.lex_state = 175, .external_lex_state = 98}, - [11070] = {.lex_state = 175, .external_lex_state = 98}, - [11071] = {.lex_state = 178, .external_lex_state = 98}, - [11072] = {.lex_state = 175, .external_lex_state = 98}, - [11073] = {.lex_state = 175, .external_lex_state = 98}, - [11074] = {.lex_state = 178, .external_lex_state = 98}, - [11075] = {.lex_state = 178, .external_lex_state = 98}, - [11076] = {.lex_state = 175, .external_lex_state = 98}, - [11077] = {.lex_state = 175, .external_lex_state = 98}, - [11078] = {.lex_state = 175, .external_lex_state = 98}, - [11079] = {.lex_state = 166, .external_lex_state = 98}, - [11080] = {.lex_state = 175, .external_lex_state = 98}, - [11081] = {.lex_state = 175, .external_lex_state = 98}, - [11082] = {.lex_state = 175, .external_lex_state = 98}, - [11083] = {.lex_state = 178, .external_lex_state = 98}, - [11084] = {.lex_state = 178, .external_lex_state = 98}, - [11085] = {.lex_state = 175, .external_lex_state = 98}, - [11086] = {.lex_state = 178, .external_lex_state = 98}, - [11087] = {.lex_state = 178, .external_lex_state = 98}, - [11088] = {.lex_state = 178, .external_lex_state = 98}, - [11089] = {.lex_state = 175, .external_lex_state = 98}, - [11090] = {.lex_state = 178, .external_lex_state = 98}, - [11091] = {.lex_state = 178, .external_lex_state = 98}, - [11092] = {.lex_state = 178, .external_lex_state = 98}, - [11093] = {.lex_state = 178, .external_lex_state = 98}, - [11094] = {.lex_state = 175, .external_lex_state = 98}, - [11095] = {.lex_state = 175, .external_lex_state = 98}, - [11096] = {.lex_state = 178, .external_lex_state = 98}, - [11097] = {.lex_state = 175, .external_lex_state = 98}, - [11098] = {.lex_state = 41, .external_lex_state = 98}, - [11099] = {.lex_state = 178, .external_lex_state = 98}, - [11100] = {.lex_state = 166, .external_lex_state = 98}, - [11101] = {.lex_state = 178, .external_lex_state = 98}, - [11102] = {.lex_state = 178, .external_lex_state = 98}, - [11103] = {.lex_state = 178, .external_lex_state = 98}, - [11104] = {.lex_state = 175, .external_lex_state = 98}, - [11105] = {.lex_state = 178, .external_lex_state = 98}, - [11106] = {.lex_state = 178, .external_lex_state = 98}, - [11107] = {.lex_state = 175, .external_lex_state = 98}, - [11108] = {.lex_state = 178, .external_lex_state = 98}, - [11109] = {.lex_state = 178, .external_lex_state = 98}, - [11110] = {.lex_state = 175, .external_lex_state = 98}, - [11111] = {.lex_state = 178, .external_lex_state = 98}, - [11112] = {.lex_state = 175, .external_lex_state = 98}, - [11113] = {.lex_state = 178, .external_lex_state = 98}, - [11114] = {.lex_state = 178, .external_lex_state = 98}, - [11115] = {.lex_state = 175, .external_lex_state = 98}, - [11116] = {.lex_state = 178, .external_lex_state = 98}, - [11117] = {.lex_state = 178, .external_lex_state = 98}, - [11118] = {.lex_state = 178, .external_lex_state = 98}, - [11119] = {.lex_state = 175, .external_lex_state = 98}, - [11120] = {.lex_state = 175, .external_lex_state = 98}, - [11121] = {.lex_state = 178, .external_lex_state = 98}, - [11122] = {.lex_state = 166, .external_lex_state = 98}, - [11123] = {.lex_state = 166, .external_lex_state = 98}, - [11124] = {.lex_state = 178, .external_lex_state = 98}, - [11125] = {.lex_state = 178, .external_lex_state = 98}, - [11126] = {.lex_state = 178, .external_lex_state = 98}, - [11127] = {.lex_state = 178, .external_lex_state = 98}, - [11128] = {.lex_state = 178, .external_lex_state = 98}, - [11129] = {.lex_state = 178, .external_lex_state = 98}, - [11130] = {.lex_state = 178, .external_lex_state = 98}, - [11131] = {.lex_state = 175, .external_lex_state = 98}, - [11132] = {.lex_state = 178, .external_lex_state = 98}, - [11133] = {.lex_state = 178, .external_lex_state = 98}, - [11134] = {.lex_state = 175, .external_lex_state = 98}, - [11135] = {.lex_state = 178, .external_lex_state = 98}, - [11136] = {.lex_state = 178, .external_lex_state = 98}, - [11137] = {.lex_state = 178, .external_lex_state = 98}, - [11138] = {.lex_state = 178, .external_lex_state = 98}, - [11139] = {.lex_state = 175, .external_lex_state = 98}, - [11140] = {.lex_state = 175, .external_lex_state = 98}, - [11141] = {.lex_state = 175, .external_lex_state = 98}, - [11142] = {.lex_state = 175, .external_lex_state = 98}, - [11143] = {.lex_state = 178, .external_lex_state = 98}, - [11144] = {.lex_state = 178, .external_lex_state = 98}, - [11145] = {.lex_state = 175, .external_lex_state = 98}, - [11146] = {.lex_state = 175, .external_lex_state = 98}, - [11147] = {.lex_state = 175, .external_lex_state = 98}, - [11148] = {.lex_state = 178, .external_lex_state = 98}, - [11149] = {.lex_state = 178, .external_lex_state = 98}, - [11150] = {.lex_state = 175, .external_lex_state = 98}, - [11151] = {.lex_state = 175, .external_lex_state = 98}, - [11152] = {.lex_state = 178, .external_lex_state = 98}, - [11153] = {.lex_state = 175, .external_lex_state = 98}, - [11154] = {.lex_state = 178, .external_lex_state = 98}, - [11155] = {.lex_state = 175, .external_lex_state = 98}, - [11156] = {.lex_state = 178, .external_lex_state = 98}, - [11157] = {.lex_state = 175, .external_lex_state = 98}, - [11158] = {.lex_state = 175, .external_lex_state = 98}, - [11159] = {.lex_state = 178, .external_lex_state = 98}, - [11160] = {.lex_state = 175, .external_lex_state = 98}, - [11161] = {.lex_state = 178, .external_lex_state = 98}, - [11162] = {.lex_state = 175, .external_lex_state = 98}, - [11163] = {.lex_state = 178, .external_lex_state = 98}, - [11164] = {.lex_state = 178, .external_lex_state = 98}, - [11165] = {.lex_state = 175, .external_lex_state = 98}, - [11166] = {.lex_state = 178, .external_lex_state = 98}, - [11167] = {.lex_state = 178, .external_lex_state = 98}, - [11168] = {.lex_state = 178, .external_lex_state = 98}, - [11169] = {.lex_state = 178, .external_lex_state = 98}, - [11170] = {.lex_state = 178, .external_lex_state = 98}, - [11171] = {.lex_state = 175, .external_lex_state = 98}, - [11172] = {.lex_state = 175, .external_lex_state = 98}, - [11173] = {.lex_state = 175, .external_lex_state = 98}, - [11174] = {.lex_state = 178, .external_lex_state = 98}, - [11175] = {.lex_state = 178, .external_lex_state = 98}, - [11176] = {.lex_state = 178, .external_lex_state = 98}, - [11177] = {.lex_state = 175, .external_lex_state = 98}, - [11178] = {.lex_state = 72, .external_lex_state = 98}, - [11179] = {.lex_state = 41, .external_lex_state = 98}, - [11180] = {.lex_state = 175, .external_lex_state = 98}, - [11181] = {.lex_state = 175, .external_lex_state = 98}, - [11182] = {.lex_state = 175, .external_lex_state = 98}, - [11183] = {.lex_state = 178, .external_lex_state = 98}, - [11184] = {.lex_state = 175, .external_lex_state = 98}, - [11185] = {.lex_state = 175, .external_lex_state = 98}, - [11186] = {.lex_state = 178, .external_lex_state = 98}, - [11187] = {.lex_state = 175, .external_lex_state = 98}, - [11188] = {.lex_state = 166, .external_lex_state = 98}, - [11189] = {.lex_state = 178, .external_lex_state = 98}, - [11190] = {.lex_state = 178, .external_lex_state = 98}, - [11191] = {.lex_state = 175, .external_lex_state = 98}, - [11192] = {.lex_state = 166, .external_lex_state = 98}, - [11193] = {.lex_state = 175, .external_lex_state = 98}, - [11194] = {.lex_state = 178, .external_lex_state = 98}, - [11195] = {.lex_state = 178, .external_lex_state = 98}, - [11196] = {.lex_state = 175, .external_lex_state = 98}, - [11197] = {.lex_state = 175, .external_lex_state = 98}, - [11198] = {.lex_state = 178, .external_lex_state = 98}, - [11199] = {.lex_state = 183, .external_lex_state = 98}, - [11200] = {.lex_state = 183, .external_lex_state = 98}, - [11201] = {.lex_state = 183, .external_lex_state = 98}, - [11202] = {.lex_state = 178, .external_lex_state = 98}, - [11203] = {.lex_state = 175, .external_lex_state = 98}, - [11204] = {.lex_state = 178, .external_lex_state = 98}, - [11205] = {.lex_state = 178, .external_lex_state = 98}, - [11206] = {.lex_state = 166, .external_lex_state = 98}, - [11207] = {.lex_state = 178, .external_lex_state = 98}, - [11208] = {.lex_state = 175, .external_lex_state = 98}, - [11209] = {.lex_state = 175, .external_lex_state = 98}, - [11210] = {.lex_state = 175, .external_lex_state = 98}, - [11211] = {.lex_state = 175, .external_lex_state = 98}, - [11212] = {.lex_state = 178, .external_lex_state = 98}, - [11213] = {.lex_state = 175, .external_lex_state = 98}, - [11214] = {.lex_state = 72, .external_lex_state = 98}, - [11215] = {.lex_state = 175, .external_lex_state = 98}, - [11216] = {.lex_state = 175, .external_lex_state = 98}, - [11217] = {.lex_state = 178, .external_lex_state = 98}, - [11218] = {.lex_state = 166, .external_lex_state = 98}, - [11219] = {.lex_state = 178, .external_lex_state = 98}, - [11220] = {.lex_state = 178, .external_lex_state = 98}, - [11221] = {.lex_state = 178, .external_lex_state = 98}, - [11222] = {.lex_state = 178, .external_lex_state = 98}, - [11223] = {.lex_state = 178, .external_lex_state = 98}, - [11224] = {.lex_state = 178, .external_lex_state = 98}, - [11225] = {.lex_state = 175, .external_lex_state = 98}, - [11226] = {.lex_state = 175, .external_lex_state = 98}, - [11227] = {.lex_state = 41, .external_lex_state = 98}, - [11228] = {.lex_state = 175, .external_lex_state = 98}, - [11229] = {.lex_state = 178, .external_lex_state = 98}, - [11230] = {.lex_state = 175, .external_lex_state = 98}, - [11231] = {.lex_state = 178, .external_lex_state = 98}, - [11232] = {.lex_state = 178, .external_lex_state = 98}, - [11233] = {.lex_state = 175, .external_lex_state = 98}, - [11234] = {.lex_state = 178, .external_lex_state = 98}, - [11235] = {.lex_state = 178, .external_lex_state = 98}, - [11236] = {.lex_state = 178, .external_lex_state = 98}, - [11237] = {.lex_state = 175, .external_lex_state = 98}, - [11238] = {.lex_state = 72, .external_lex_state = 98}, - [11239] = {.lex_state = 72, .external_lex_state = 98}, - [11240] = {.lex_state = 178, .external_lex_state = 98}, - [11241] = {.lex_state = 175, .external_lex_state = 98}, - [11242] = {.lex_state = 178, .external_lex_state = 98}, - [11243] = {.lex_state = 178, .external_lex_state = 98}, - [11244] = {.lex_state = 178, .external_lex_state = 98}, - [11245] = {.lex_state = 178, .external_lex_state = 98}, - [11246] = {.lex_state = 175, .external_lex_state = 98}, - [11247] = {.lex_state = 175, .external_lex_state = 98}, - [11248] = {.lex_state = 178, .external_lex_state = 98}, - [11249] = {.lex_state = 175, .external_lex_state = 98}, - [11250] = {.lex_state = 175, .external_lex_state = 98}, - [11251] = {.lex_state = 175, .external_lex_state = 98}, - [11252] = {.lex_state = 175, .external_lex_state = 98}, - [11253] = {.lex_state = 178, .external_lex_state = 98}, - [11254] = {.lex_state = 175, .external_lex_state = 98}, - [11255] = {.lex_state = 175, .external_lex_state = 98}, - [11256] = {.lex_state = 175, .external_lex_state = 98}, - [11257] = {.lex_state = 175, .external_lex_state = 98}, - [11258] = {.lex_state = 175, .external_lex_state = 98}, - [11259] = {.lex_state = 178, .external_lex_state = 98}, - [11260] = {.lex_state = 175, .external_lex_state = 98}, - [11261] = {.lex_state = 175, .external_lex_state = 98}, - [11262] = {.lex_state = 175, .external_lex_state = 98}, - [11263] = {.lex_state = 175, .external_lex_state = 98}, - [11264] = {.lex_state = 178, .external_lex_state = 98}, - [11265] = {.lex_state = 175, .external_lex_state = 98}, - [11266] = {.lex_state = 178, .external_lex_state = 98}, - [11267] = {.lex_state = 175, .external_lex_state = 98}, - [11268] = {.lex_state = 178, .external_lex_state = 98}, - [11269] = {.lex_state = 178, .external_lex_state = 98}, - [11270] = {.lex_state = 175, .external_lex_state = 98}, - [11271] = {.lex_state = 175, .external_lex_state = 98}, - [11272] = {.lex_state = 178, .external_lex_state = 98}, - [11273] = {.lex_state = 175, .external_lex_state = 98}, - [11274] = {.lex_state = 178, .external_lex_state = 98}, - [11275] = {.lex_state = 166, .external_lex_state = 98}, - [11276] = {.lex_state = 175, .external_lex_state = 98}, - [11277] = {.lex_state = 175, .external_lex_state = 98}, - [11278] = {.lex_state = 178, .external_lex_state = 98}, - [11279] = {.lex_state = 175, .external_lex_state = 98}, - [11280] = {.lex_state = 175, .external_lex_state = 98}, - [11281] = {.lex_state = 175, .external_lex_state = 98}, - [11282] = {.lex_state = 175, .external_lex_state = 98}, - [11283] = {.lex_state = 178, .external_lex_state = 98}, - [11284] = {.lex_state = 178, .external_lex_state = 98}, - [11285] = {.lex_state = 178, .external_lex_state = 98}, - [11286] = {.lex_state = 178, .external_lex_state = 98}, - [11287] = {.lex_state = 178, .external_lex_state = 98}, - [11288] = {.lex_state = 175, .external_lex_state = 98}, - [11289] = {.lex_state = 175, .external_lex_state = 98}, - [11290] = {.lex_state = 178, .external_lex_state = 98}, - [11291] = {.lex_state = 178, .external_lex_state = 98}, - [11292] = {.lex_state = 178, .external_lex_state = 98}, - [11293] = {.lex_state = 178, .external_lex_state = 98}, - [11294] = {.lex_state = 178, .external_lex_state = 98}, - [11295] = {.lex_state = 175, .external_lex_state = 98}, - [11296] = {.lex_state = 178, .external_lex_state = 98}, - [11297] = {.lex_state = 175, .external_lex_state = 98}, - [11298] = {.lex_state = 175, .external_lex_state = 98}, - [11299] = {.lex_state = 175, .external_lex_state = 98}, - [11300] = {.lex_state = 175, .external_lex_state = 98}, - [11301] = {.lex_state = 178, .external_lex_state = 98}, - [11302] = {.lex_state = 175, .external_lex_state = 98}, - [11303] = {.lex_state = 175, .external_lex_state = 98}, - [11304] = {.lex_state = 175, .external_lex_state = 98}, - [11305] = {.lex_state = 178, .external_lex_state = 98}, - [11306] = {.lex_state = 175, .external_lex_state = 98}, - [11307] = {.lex_state = 178, .external_lex_state = 98}, - [11308] = {.lex_state = 175, .external_lex_state = 98}, - [11309] = {.lex_state = 175, .external_lex_state = 98}, - [11310] = {.lex_state = 178, .external_lex_state = 98}, - [11311] = {.lex_state = 175, .external_lex_state = 98}, - [11312] = {.lex_state = 175, .external_lex_state = 98}, - [11313] = {.lex_state = 178, .external_lex_state = 98}, - [11314] = {.lex_state = 175, .external_lex_state = 98}, - [11315] = {.lex_state = 175, .external_lex_state = 98}, - [11316] = {.lex_state = 178, .external_lex_state = 98}, - [11317] = {.lex_state = 178, .external_lex_state = 98}, - [11318] = {.lex_state = 175, .external_lex_state = 98}, - [11319] = {.lex_state = 175, .external_lex_state = 98}, - [11320] = {.lex_state = 175, .external_lex_state = 98}, - [11321] = {.lex_state = 175, .external_lex_state = 98}, - [11322] = {.lex_state = 178, .external_lex_state = 98}, - [11323] = {.lex_state = 175, .external_lex_state = 98}, - [11324] = {.lex_state = 175, .external_lex_state = 98}, - [11325] = {.lex_state = 178, .external_lex_state = 98}, - [11326] = {.lex_state = 178, .external_lex_state = 98}, - [11327] = {.lex_state = 175, .external_lex_state = 98}, - [11328] = {.lex_state = 178, .external_lex_state = 98}, - [11329] = {.lex_state = 178, .external_lex_state = 98}, - [11330] = {.lex_state = 175, .external_lex_state = 98}, - [11331] = {.lex_state = 175, .external_lex_state = 98}, - [11332] = {.lex_state = 41, .external_lex_state = 98}, - [11333] = {.lex_state = 175, .external_lex_state = 98}, - [11334] = {.lex_state = 178, .external_lex_state = 98}, - [11335] = {.lex_state = 178, .external_lex_state = 98}, - [11336] = {.lex_state = 175, .external_lex_state = 98}, - [11337] = {.lex_state = 178, .external_lex_state = 98}, - [11338] = {.lex_state = 178, .external_lex_state = 98}, - [11339] = {.lex_state = 175, .external_lex_state = 98}, - [11340] = {.lex_state = 178, .external_lex_state = 98}, - [11341] = {.lex_state = 178, .external_lex_state = 98}, - [11342] = {.lex_state = 175, .external_lex_state = 98}, - [11343] = {.lex_state = 178, .external_lex_state = 98}, - [11344] = {.lex_state = 178, .external_lex_state = 98}, - [11345] = {.lex_state = 175, .external_lex_state = 98}, - [11346] = {.lex_state = 166, .external_lex_state = 98}, - [11347] = {.lex_state = 178, .external_lex_state = 98}, - [11348] = {.lex_state = 175, .external_lex_state = 98}, - [11349] = {.lex_state = 175, .external_lex_state = 98}, - [11350] = {.lex_state = 178, .external_lex_state = 98}, - [11351] = {.lex_state = 175, .external_lex_state = 98}, - [11352] = {.lex_state = 175, .external_lex_state = 98}, - [11353] = {.lex_state = 175, .external_lex_state = 98}, - [11354] = {.lex_state = 175, .external_lex_state = 98}, - [11355] = {.lex_state = 166, .external_lex_state = 98}, - [11356] = {.lex_state = 178, .external_lex_state = 98}, - [11357] = {.lex_state = 175, .external_lex_state = 98}, - [11358] = {.lex_state = 178, .external_lex_state = 98}, - [11359] = {.lex_state = 178, .external_lex_state = 98}, - [11360] = {.lex_state = 175, .external_lex_state = 98}, - [11361] = {.lex_state = 178, .external_lex_state = 98}, - [11362] = {.lex_state = 178, .external_lex_state = 98}, - [11363] = {.lex_state = 175, .external_lex_state = 98}, - [11364] = {.lex_state = 175, .external_lex_state = 98}, - [11365] = {.lex_state = 175, .external_lex_state = 98}, - [11366] = {.lex_state = 175, .external_lex_state = 98}, - [11367] = {.lex_state = 175, .external_lex_state = 98}, - [11368] = {.lex_state = 178, .external_lex_state = 98}, - [11369] = {.lex_state = 178, .external_lex_state = 98}, - [11370] = {.lex_state = 178, .external_lex_state = 98}, - [11371] = {.lex_state = 178, .external_lex_state = 98}, - [11372] = {.lex_state = 72, .external_lex_state = 98}, - [11373] = {.lex_state = 178, .external_lex_state = 98}, - [11374] = {.lex_state = 178, .external_lex_state = 98}, - [11375] = {.lex_state = 178, .external_lex_state = 98}, - [11376] = {.lex_state = 166, .external_lex_state = 98}, - [11377] = {.lex_state = 178, .external_lex_state = 98}, - [11378] = {.lex_state = 178, .external_lex_state = 98}, - [11379] = {.lex_state = 175, .external_lex_state = 98}, - [11380] = {.lex_state = 175, .external_lex_state = 98}, - [11381] = {.lex_state = 175, .external_lex_state = 98}, - [11382] = {.lex_state = 175, .external_lex_state = 98}, - [11383] = {.lex_state = 178, .external_lex_state = 98}, - [11384] = {.lex_state = 178, .external_lex_state = 98}, - [11385] = {.lex_state = 178, .external_lex_state = 98}, - [11386] = {.lex_state = 178, .external_lex_state = 98}, - [11387] = {.lex_state = 178, .external_lex_state = 98}, - [11388] = {.lex_state = 178, .external_lex_state = 98}, - [11389] = {.lex_state = 178, .external_lex_state = 98}, - [11390] = {.lex_state = 178, .external_lex_state = 98}, - [11391] = {.lex_state = 175, .external_lex_state = 98}, - [11392] = {.lex_state = 178, .external_lex_state = 98}, - [11393] = {.lex_state = 175, .external_lex_state = 98}, - [11394] = {.lex_state = 178, .external_lex_state = 98}, - [11395] = {.lex_state = 178, .external_lex_state = 98}, - [11396] = {.lex_state = 72, .external_lex_state = 98}, - [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 = 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}, - [11404] = {.lex_state = 175, .external_lex_state = 98}, - [11405] = {.lex_state = 175, .external_lex_state = 98}, - [11406] = {.lex_state = 166, .external_lex_state = 98}, - [11407] = {.lex_state = 178, .external_lex_state = 98}, - [11408] = {.lex_state = 175, .external_lex_state = 98}, - [11409] = {.lex_state = 178, .external_lex_state = 98}, - [11410] = {.lex_state = 178, .external_lex_state = 98}, - [11411] = {.lex_state = 178, .external_lex_state = 98}, - [11412] = {.lex_state = 178, .external_lex_state = 98}, - [11413] = {.lex_state = 178, .external_lex_state = 98}, - [11414] = {.lex_state = 178, .external_lex_state = 98}, - [11415] = {.lex_state = 178, .external_lex_state = 98}, - [11416] = {.lex_state = 175, .external_lex_state = 98}, - [11417] = {.lex_state = 178, .external_lex_state = 98}, - [11418] = {.lex_state = 178, .external_lex_state = 98}, - [11419] = {.lex_state = 175, .external_lex_state = 98}, - [11420] = {.lex_state = 178, .external_lex_state = 98}, - [11421] = {.lex_state = 175, .external_lex_state = 98}, - [11422] = {.lex_state = 178, .external_lex_state = 98}, - [11423] = {.lex_state = 178, .external_lex_state = 98}, - [11424] = {.lex_state = 178, .external_lex_state = 98}, - [11425] = {.lex_state = 175, .external_lex_state = 98}, - [11426] = {.lex_state = 175, .external_lex_state = 98}, - [11427] = {.lex_state = 175, .external_lex_state = 98}, - [11428] = {.lex_state = 72, .external_lex_state = 98}, - [11429] = {.lex_state = 178, .external_lex_state = 98}, - [11430] = {.lex_state = 72, .external_lex_state = 98}, - [11431] = {.lex_state = 166, .external_lex_state = 98}, - [11432] = {.lex_state = 178, .external_lex_state = 98}, - [11433] = {.lex_state = 178, .external_lex_state = 98}, - [11434] = {.lex_state = 175, .external_lex_state = 98}, - [11435] = {.lex_state = 175, .external_lex_state = 98}, - [11436] = {.lex_state = 175, .external_lex_state = 98}, - [11437] = {.lex_state = 178, .external_lex_state = 98}, - [11438] = {.lex_state = 175, .external_lex_state = 98}, - [11439] = {.lex_state = 175, .external_lex_state = 98}, - [11440] = {.lex_state = 175, .external_lex_state = 98}, - [11441] = {.lex_state = 178, .external_lex_state = 98}, - [11442] = {.lex_state = 178, .external_lex_state = 98}, - [11443] = {.lex_state = 175, .external_lex_state = 98}, - [11444] = {.lex_state = 178, .external_lex_state = 98}, - [11445] = {.lex_state = 175, .external_lex_state = 98}, - [11446] = {.lex_state = 178, .external_lex_state = 98}, - [11447] = {.lex_state = 175, .external_lex_state = 98}, - [11448] = {.lex_state = 175, .external_lex_state = 98}, - [11449] = {.lex_state = 178, .external_lex_state = 98}, - [11450] = {.lex_state = 175, .external_lex_state = 98}, - [11451] = {.lex_state = 178, .external_lex_state = 98}, - [11452] = {.lex_state = 178, .external_lex_state = 98}, - [11453] = {.lex_state = 178, .external_lex_state = 98}, - [11454] = {.lex_state = 175, .external_lex_state = 98}, - [11455] = {.lex_state = 178, .external_lex_state = 98}, - [11456] = {.lex_state = 178, .external_lex_state = 98}, - [11457] = {.lex_state = 175, .external_lex_state = 98}, - [11458] = {.lex_state = 178, .external_lex_state = 98}, - [11459] = {.lex_state = 178, .external_lex_state = 98}, - [11460] = {.lex_state = 175, .external_lex_state = 98}, - [11461] = {.lex_state = 178, .external_lex_state = 98}, - [11462] = {.lex_state = 178, .external_lex_state = 98}, - [11463] = {.lex_state = 178, .external_lex_state = 98}, - [11464] = {.lex_state = 175, .external_lex_state = 98}, - [11465] = {.lex_state = 178, .external_lex_state = 98}, - [11466] = {.lex_state = 178, .external_lex_state = 98}, - [11467] = {.lex_state = 178, .external_lex_state = 98}, - [11468] = {.lex_state = 183, .external_lex_state = 98}, - [11469] = {.lex_state = 178, .external_lex_state = 98}, - [11470] = {.lex_state = 178, .external_lex_state = 98}, - [11471] = {.lex_state = 178, .external_lex_state = 98}, - [11472] = {.lex_state = 178, .external_lex_state = 98}, - [11473] = {.lex_state = 178, .external_lex_state = 98}, - [11474] = {.lex_state = 178, .external_lex_state = 98}, - [11475] = {.lex_state = 178, .external_lex_state = 98}, - [11476] = {.lex_state = 178, .external_lex_state = 98}, - [11477] = {.lex_state = 178, .external_lex_state = 98}, - [11478] = {.lex_state = 178, .external_lex_state = 98}, - [11479] = {.lex_state = 178, .external_lex_state = 98}, - [11480] = {.lex_state = 178, .external_lex_state = 98}, - [11481] = {.lex_state = 178, .external_lex_state = 98}, - [11482] = {.lex_state = 178, .external_lex_state = 98}, - [11483] = {.lex_state = 178, .external_lex_state = 98}, - [11484] = {.lex_state = 178, .external_lex_state = 98}, - [11485] = {.lex_state = 178, .external_lex_state = 98}, - [11486] = {.lex_state = 178, .external_lex_state = 98}, - [11487] = {.lex_state = 178, .external_lex_state = 98}, - [11488] = {.lex_state = 175, .external_lex_state = 98}, - [11489] = {.lex_state = 178, .external_lex_state = 98}, - [11490] = {.lex_state = 178, .external_lex_state = 98}, - [11491] = {.lex_state = 175, .external_lex_state = 98}, - [11492] = {.lex_state = 175, .external_lex_state = 98}, - [11493] = {.lex_state = 41, .external_lex_state = 98}, - [11494] = {.lex_state = 178, .external_lex_state = 98}, - [11495] = {.lex_state = 175, .external_lex_state = 98}, - [11496] = {.lex_state = 178, .external_lex_state = 98}, - [11497] = {.lex_state = 178, .external_lex_state = 98}, - [11498] = {.lex_state = 178, .external_lex_state = 98}, - [11499] = {.lex_state = 175, .external_lex_state = 98}, - [11500] = {.lex_state = 178, .external_lex_state = 98}, - [11501] = {.lex_state = 178, .external_lex_state = 98}, - [11502] = {.lex_state = 175, .external_lex_state = 98}, - [11503] = {.lex_state = 178, .external_lex_state = 98}, - [11504] = {.lex_state = 178, .external_lex_state = 98}, - [11505] = {.lex_state = 166, .external_lex_state = 98}, - [11506] = {.lex_state = 178, .external_lex_state = 98}, - [11507] = {.lex_state = 178, .external_lex_state = 98}, - [11508] = {.lex_state = 178, .external_lex_state = 98}, - [11509] = {.lex_state = 178, .external_lex_state = 98}, - [11510] = {.lex_state = 178, .external_lex_state = 98}, - [11511] = {.lex_state = 178, .external_lex_state = 98}, - [11512] = {.lex_state = 178, .external_lex_state = 98}, - [11513] = {.lex_state = 175, .external_lex_state = 98}, - [11514] = {.lex_state = 178, .external_lex_state = 98}, - [11515] = {.lex_state = 178, .external_lex_state = 98}, - [11516] = {.lex_state = 175, .external_lex_state = 98}, - [11517] = {.lex_state = 178, .external_lex_state = 98}, - [11518] = {.lex_state = 178, .external_lex_state = 98}, - [11519] = {.lex_state = 178, .external_lex_state = 98}, - [11520] = {.lex_state = 178, .external_lex_state = 98}, - [11521] = {.lex_state = 175, .external_lex_state = 98}, - [11522] = {.lex_state = 166, .external_lex_state = 98}, - [11523] = {.lex_state = 178, .external_lex_state = 98}, - [11524] = {.lex_state = 175, .external_lex_state = 98}, - [11525] = {.lex_state = 178, .external_lex_state = 98}, - [11526] = {.lex_state = 178, .external_lex_state = 98}, - [11527] = {.lex_state = 178, .external_lex_state = 98}, - [11528] = {.lex_state = 175, .external_lex_state = 98}, - [11529] = {.lex_state = 72, .external_lex_state = 98}, - [11530] = {.lex_state = 175, .external_lex_state = 98}, - [11531] = {.lex_state = 178, .external_lex_state = 98}, - [11532] = {.lex_state = 175, .external_lex_state = 98}, - [11533] = {.lex_state = 178, .external_lex_state = 98}, - [11534] = {.lex_state = 166, .external_lex_state = 98}, - [11535] = {.lex_state = 178, .external_lex_state = 98}, - [11536] = {.lex_state = 175, .external_lex_state = 98}, - [11537] = {.lex_state = 175, .external_lex_state = 98}, - [11538] = {.lex_state = 175, .external_lex_state = 98}, - [11539] = {.lex_state = 178, .external_lex_state = 98}, - [11540] = {.lex_state = 178, .external_lex_state = 98}, - [11541] = {.lex_state = 166, .external_lex_state = 98}, - [11542] = {.lex_state = 175, .external_lex_state = 98}, - [11543] = {.lex_state = 178, .external_lex_state = 98}, - [11544] = {.lex_state = 178, .external_lex_state = 98}, - [11545] = {.lex_state = 178, .external_lex_state = 98}, - [11546] = {.lex_state = 178, .external_lex_state = 98}, - [11547] = {.lex_state = 178, .external_lex_state = 98}, - [11548] = {.lex_state = 178, .external_lex_state = 98}, - [11549] = {.lex_state = 175, .external_lex_state = 98}, - [11550] = {.lex_state = 178, .external_lex_state = 98}, - [11551] = {.lex_state = 178, .external_lex_state = 98}, - [11552] = {.lex_state = 178, .external_lex_state = 98}, - [11553] = {.lex_state = 175, .external_lex_state = 98}, - [11554] = {.lex_state = 175, .external_lex_state = 98}, - [11555] = {.lex_state = 175, .external_lex_state = 98}, - [11556] = {.lex_state = 175, .external_lex_state = 98}, - [11557] = {.lex_state = 175, .external_lex_state = 98}, - [11558] = {.lex_state = 166, .external_lex_state = 98}, - [11559] = {.lex_state = 175, .external_lex_state = 98}, - [11560] = {.lex_state = 175, .external_lex_state = 98}, - [11561] = {.lex_state = 178, .external_lex_state = 98}, - [11562] = {.lex_state = 178, .external_lex_state = 98}, - [11563] = {.lex_state = 175, .external_lex_state = 98}, - [11564] = {.lex_state = 178, .external_lex_state = 98}, - [11565] = {.lex_state = 175, .external_lex_state = 98}, - [11566] = {.lex_state = 178, .external_lex_state = 98}, - [11567] = {.lex_state = 175, .external_lex_state = 98}, - [11568] = {.lex_state = 178, .external_lex_state = 98}, - [11569] = {.lex_state = 175, .external_lex_state = 98}, - [11570] = {.lex_state = 175, .external_lex_state = 98}, - [11571] = {.lex_state = 175, .external_lex_state = 98}, - [11572] = {.lex_state = 178, .external_lex_state = 98}, - [11573] = {.lex_state = 175, .external_lex_state = 98}, - [11574] = {.lex_state = 178, .external_lex_state = 98}, - [11575] = {.lex_state = 178, .external_lex_state = 98}, - [11576] = {.lex_state = 178, .external_lex_state = 98}, - [11577] = {.lex_state = 178, .external_lex_state = 98}, - [11578] = {.lex_state = 178, .external_lex_state = 98}, - [11579] = {.lex_state = 178, .external_lex_state = 98}, - [11580] = {.lex_state = 178, .external_lex_state = 98}, - [11581] = {.lex_state = 178, .external_lex_state = 98}, - [11582] = {.lex_state = 178, .external_lex_state = 98}, - [11583] = {.lex_state = 178, .external_lex_state = 98}, - [11584] = {.lex_state = 178, .external_lex_state = 98}, - [11585] = {.lex_state = 175, .external_lex_state = 98}, - [11586] = {.lex_state = 178, .external_lex_state = 98}, - [11587] = {.lex_state = 175, .external_lex_state = 98}, - [11588] = {.lex_state = 175, .external_lex_state = 98}, - [11589] = {.lex_state = 175, .external_lex_state = 98}, - [11590] = {.lex_state = 175, .external_lex_state = 98}, - [11591] = {.lex_state = 175, .external_lex_state = 98}, - [11592] = {.lex_state = 178, .external_lex_state = 98}, - [11593] = {.lex_state = 175, .external_lex_state = 98}, - [11594] = {.lex_state = 178, .external_lex_state = 98}, - [11595] = {.lex_state = 175, .external_lex_state = 98}, - [11596] = {.lex_state = 178, .external_lex_state = 98}, - [11597] = {.lex_state = 178, .external_lex_state = 98}, - [11598] = {.lex_state = 178, .external_lex_state = 98}, - [11599] = {.lex_state = 175, .external_lex_state = 98}, - [11600] = {.lex_state = 178, .external_lex_state = 98}, - [11601] = {.lex_state = 178, .external_lex_state = 98}, - [11602] = {.lex_state = 178, .external_lex_state = 98}, - [11603] = {.lex_state = 175, .external_lex_state = 98}, - [11604] = {.lex_state = 178, .external_lex_state = 98}, - [11605] = {.lex_state = 178, .external_lex_state = 98}, - [11606] = {.lex_state = 178, .external_lex_state = 98}, - [11607] = {.lex_state = 178, .external_lex_state = 98}, - [11608] = {.lex_state = 175, .external_lex_state = 98}, - [11609] = {.lex_state = 178, .external_lex_state = 98}, - [11610] = {.lex_state = 175, .external_lex_state = 98}, - [11611] = {.lex_state = 178, .external_lex_state = 98}, - [11612] = {.lex_state = 52, .external_lex_state = 98}, - [11613] = {.lex_state = 178, .external_lex_state = 98}, - [11614] = {.lex_state = 178, .external_lex_state = 98}, - [11615] = {.lex_state = 178, .external_lex_state = 98}, - [11616] = {.lex_state = 175, .external_lex_state = 98}, - [11617] = {.lex_state = 178, .external_lex_state = 98}, - [11618] = {.lex_state = 175, .external_lex_state = 98}, - [11619] = {.lex_state = 178, .external_lex_state = 98}, - [11620] = {.lex_state = 175, .external_lex_state = 98}, - [11621] = {.lex_state = 175, .external_lex_state = 98}, - [11622] = {.lex_state = 175, .external_lex_state = 98}, - [11623] = {.lex_state = 178, .external_lex_state = 98}, - [11624] = {.lex_state = 178, .external_lex_state = 98}, - [11625] = {.lex_state = 175, .external_lex_state = 98}, - [11626] = {.lex_state = 178, .external_lex_state = 98}, - [11627] = {.lex_state = 178, .external_lex_state = 98}, - [11628] = {.lex_state = 178, .external_lex_state = 98}, - [11629] = {.lex_state = 178, .external_lex_state = 98}, - [11630] = {.lex_state = 175, .external_lex_state = 98}, - [11631] = {.lex_state = 178, .external_lex_state = 98}, - [11632] = {.lex_state = 178, .external_lex_state = 98}, - [11633] = {.lex_state = 175, .external_lex_state = 98}, - [11634] = {.lex_state = 178, .external_lex_state = 98}, - [11635] = {.lex_state = 178, .external_lex_state = 98}, - [11636] = {.lex_state = 166, .external_lex_state = 98}, - [11637] = {.lex_state = 175, .external_lex_state = 98}, - [11638] = {.lex_state = 178, .external_lex_state = 98}, - [11639] = {.lex_state = 178, .external_lex_state = 98}, - [11640] = {.lex_state = 178, .external_lex_state = 98}, - [11641] = {.lex_state = 178, .external_lex_state = 98}, - [11642] = {.lex_state = 178, .external_lex_state = 98}, - [11643] = {.lex_state = 178, .external_lex_state = 98}, - [11644] = {.lex_state = 175, .external_lex_state = 98}, - [11645] = {.lex_state = 178, .external_lex_state = 98}, - [11646] = {.lex_state = 178, .external_lex_state = 98}, - [11647] = {.lex_state = 178, .external_lex_state = 98}, - [11648] = {.lex_state = 178, .external_lex_state = 98}, - [11649] = {.lex_state = 178, .external_lex_state = 98}, - [11650] = {.lex_state = 175, .external_lex_state = 98}, - [11651] = {.lex_state = 72, .external_lex_state = 98}, - [11652] = {.lex_state = 178, .external_lex_state = 98}, - [11653] = {.lex_state = 175, .external_lex_state = 98}, - [11654] = {.lex_state = 178, .external_lex_state = 98}, - [11655] = {.lex_state = 178, .external_lex_state = 98}, - [11656] = {.lex_state = 178, .external_lex_state = 98}, - [11657] = {.lex_state = 178, .external_lex_state = 98}, - [11658] = {.lex_state = 178, .external_lex_state = 98}, - [11659] = {.lex_state = 178, .external_lex_state = 98}, - [11660] = {.lex_state = 178, .external_lex_state = 98}, - [11661] = {.lex_state = 178, .external_lex_state = 98}, - [11662] = {.lex_state = 175, .external_lex_state = 98}, - [11663] = {.lex_state = 166, .external_lex_state = 98}, - [11664] = {.lex_state = 178, .external_lex_state = 98}, - [11665] = {.lex_state = 178, .external_lex_state = 98}, - [11666] = {.lex_state = 175, .external_lex_state = 98}, - [11667] = {.lex_state = 175, .external_lex_state = 98}, - [11668] = {.lex_state = 178, .external_lex_state = 98}, - [11669] = {.lex_state = 175, .external_lex_state = 98}, - [11670] = {.lex_state = 178, .external_lex_state = 98}, - [11671] = {.lex_state = 166, .external_lex_state = 98}, - [11672] = {.lex_state = 178, .external_lex_state = 98}, - [11673] = {.lex_state = 178, .external_lex_state = 98}, - [11674] = {.lex_state = 178, .external_lex_state = 98}, - [11675] = {.lex_state = 178, .external_lex_state = 98}, - [11676] = {.lex_state = 178, .external_lex_state = 98}, - [11677] = {.lex_state = 178, .external_lex_state = 98}, - [11678] = {.lex_state = 175, .external_lex_state = 98}, - [11679] = {.lex_state = 175, .external_lex_state = 98}, - [11680] = {.lex_state = 175, .external_lex_state = 98}, - [11681] = {.lex_state = 175, .external_lex_state = 98}, - [11682] = {.lex_state = 178, .external_lex_state = 98}, - [11683] = {.lex_state = 178, .external_lex_state = 98}, - [11684] = {.lex_state = 175, .external_lex_state = 98}, - [11685] = {.lex_state = 178, .external_lex_state = 98}, - [11686] = {.lex_state = 175, .external_lex_state = 98}, - [11687] = {.lex_state = 175, .external_lex_state = 98}, - [11688] = {.lex_state = 178, .external_lex_state = 98}, - [11689] = {.lex_state = 178, .external_lex_state = 98}, - [11690] = {.lex_state = 178, .external_lex_state = 98}, - [11691] = {.lex_state = 175, .external_lex_state = 98}, - [11692] = {.lex_state = 178, .external_lex_state = 98}, - [11693] = {.lex_state = 178, .external_lex_state = 98}, - [11694] = {.lex_state = 178, .external_lex_state = 98}, - [11695] = {.lex_state = 178, .external_lex_state = 98}, - [11696] = {.lex_state = 178, .external_lex_state = 98}, - [11697] = {.lex_state = 175, .external_lex_state = 98}, - [11698] = {.lex_state = 175, .external_lex_state = 98}, - [11699] = {.lex_state = 175, .external_lex_state = 98}, - [11700] = {.lex_state = 178, .external_lex_state = 98}, - [11701] = {.lex_state = 175, .external_lex_state = 98}, - [11702] = {.lex_state = 178, .external_lex_state = 98}, - [11703] = {.lex_state = 178, .external_lex_state = 98}, - [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 = 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}, - [11711] = {.lex_state = 166, .external_lex_state = 98}, - [11712] = {.lex_state = 178, .external_lex_state = 98}, - [11713] = {.lex_state = 175, .external_lex_state = 98}, - [11714] = {.lex_state = 175, .external_lex_state = 98}, - [11715] = {.lex_state = 175, .external_lex_state = 98}, - [11716] = {.lex_state = 178, .external_lex_state = 98}, - [11717] = {.lex_state = 178, .external_lex_state = 98}, - [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 = 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}, - [11725] = {.lex_state = 178, .external_lex_state = 98}, - [11726] = {.lex_state = 178, .external_lex_state = 98}, - [11727] = {.lex_state = 175, .external_lex_state = 98}, - [11728] = {.lex_state = 175, .external_lex_state = 98}, - [11729] = {.lex_state = 175, .external_lex_state = 98}, - [11730] = {.lex_state = 178, .external_lex_state = 98}, - [11731] = {.lex_state = 166, .external_lex_state = 98}, - [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 = 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}, - [11739] = {.lex_state = 178, .external_lex_state = 98}, - [11740] = {.lex_state = 178, .external_lex_state = 98}, - [11741] = {.lex_state = 175, .external_lex_state = 98}, - [11742] = {.lex_state = 175, .external_lex_state = 98}, - [11743] = {.lex_state = 175, .external_lex_state = 98}, - [11744] = {.lex_state = 175, .external_lex_state = 98}, - [11745] = {.lex_state = 178, .external_lex_state = 98}, - [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 = 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}, - [11753] = {.lex_state = 166, .external_lex_state = 98}, - [11754] = {.lex_state = 175, .external_lex_state = 98}, - [11755] = {.lex_state = 175, .external_lex_state = 98}, - [11756] = {.lex_state = 175, .external_lex_state = 98}, - [11757] = {.lex_state = 175, .external_lex_state = 98}, - [11758] = {.lex_state = 166, .external_lex_state = 98}, - [11759] = {.lex_state = 175, .external_lex_state = 98}, - [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 = 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}, - [11767] = {.lex_state = 178, .external_lex_state = 98}, - [11768] = {.lex_state = 178, .external_lex_state = 98}, - [11769] = {.lex_state = 175, .external_lex_state = 98}, - [11770] = {.lex_state = 175, .external_lex_state = 98}, - [11771] = {.lex_state = 175, .external_lex_state = 98}, - [11772] = {.lex_state = 178, .external_lex_state = 98}, - [11773] = {.lex_state = 178, .external_lex_state = 98}, - [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 = 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}, - [11781] = {.lex_state = 166, .external_lex_state = 98}, - [11782] = {.lex_state = 175, .external_lex_state = 98}, - [11783] = {.lex_state = 175, .external_lex_state = 98}, - [11784] = {.lex_state = 175, .external_lex_state = 98}, - [11785] = {.lex_state = 178, .external_lex_state = 98}, - [11786] = {.lex_state = 178, .external_lex_state = 98}, - [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 = 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}, - [11794] = {.lex_state = 175, .external_lex_state = 98}, - [11795] = {.lex_state = 175, .external_lex_state = 98}, - [11796] = {.lex_state = 175, .external_lex_state = 98}, - [11797] = {.lex_state = 175, .external_lex_state = 98}, - [11798] = {.lex_state = 175, .external_lex_state = 98}, - [11799] = {.lex_state = 178, .external_lex_state = 98}, - [11800] = {.lex_state = 178, .external_lex_state = 98}, - [11801] = {.lex_state = 178, .external_lex_state = 98}, - [11802] = {.lex_state = 178, .external_lex_state = 98}, - [11803] = {.lex_state = 166, .external_lex_state = 98}, + [10347] = {.lex_state = 175, .external_lex_state = 99}, + [10348] = {.lex_state = 175, .external_lex_state = 99}, + [10349] = {.lex_state = 175, .external_lex_state = 99}, + [10350] = {.lex_state = 175, .external_lex_state = 99}, + [10351] = {.lex_state = 175, .external_lex_state = 99}, + [10352] = {.lex_state = 175, .external_lex_state = 99}, + [10353] = {.lex_state = 175, .external_lex_state = 99}, + [10354] = {.lex_state = 175, .external_lex_state = 99}, + [10355] = {.lex_state = 175, .external_lex_state = 99}, + [10356] = {.lex_state = 175, .external_lex_state = 99}, + [10357] = {.lex_state = 41, .external_lex_state = 99}, + [10358] = {.lex_state = 175, .external_lex_state = 99}, + [10359] = {.lex_state = 175, .external_lex_state = 99}, + [10360] = {.lex_state = 175, .external_lex_state = 99}, + [10361] = {.lex_state = 166, .external_lex_state = 99}, + [10362] = {.lex_state = 175, .external_lex_state = 99}, + [10363] = {.lex_state = 175, .external_lex_state = 99}, + [10364] = {.lex_state = 175, .external_lex_state = 99}, + [10365] = {.lex_state = 178, .external_lex_state = 121}, + [10366] = {.lex_state = 178, .external_lex_state = 121}, + [10367] = {.lex_state = 175, .external_lex_state = 99}, + [10368] = {.lex_state = 175, .external_lex_state = 99}, + [10369] = {.lex_state = 175, .external_lex_state = 99}, + [10370] = {.lex_state = 175, .external_lex_state = 99}, + [10371] = {.lex_state = 175, .external_lex_state = 99}, + [10372] = {.lex_state = 175, .external_lex_state = 99}, + [10373] = {.lex_state = 178, .external_lex_state = 121}, + [10374] = {.lex_state = 175, .external_lex_state = 99}, + [10375] = {.lex_state = 178, .external_lex_state = 121}, + [10376] = {.lex_state = 175, .external_lex_state = 99}, + [10377] = {.lex_state = 175, .external_lex_state = 99}, + [10378] = {.lex_state = 175, .external_lex_state = 99}, + [10379] = {.lex_state = 178, .external_lex_state = 121}, + [10380] = {.lex_state = 175, .external_lex_state = 99}, + [10381] = {.lex_state = 178, .external_lex_state = 121}, + [10382] = {.lex_state = 175, .external_lex_state = 99}, + [10383] = {.lex_state = 175, .external_lex_state = 99}, + [10384] = {.lex_state = 175, .external_lex_state = 99}, + [10385] = {.lex_state = 178, .external_lex_state = 99}, + [10386] = {.lex_state = 178, .external_lex_state = 121}, + [10387] = {.lex_state = 175, .external_lex_state = 99}, + [10388] = {.lex_state = 175, .external_lex_state = 99}, + [10389] = {.lex_state = 175, .external_lex_state = 99}, + [10390] = {.lex_state = 175, .external_lex_state = 99}, + [10391] = {.lex_state = 178, .external_lex_state = 121}, + [10392] = {.lex_state = 175, .external_lex_state = 99}, + [10393] = {.lex_state = 178, .external_lex_state = 121}, + [10394] = {.lex_state = 175, .external_lex_state = 99}, + [10395] = {.lex_state = 175, .external_lex_state = 99}, + [10396] = {.lex_state = 178, .external_lex_state = 121}, + [10397] = {.lex_state = 178, .external_lex_state = 121}, + [10398] = {.lex_state = 175, .external_lex_state = 99}, + [10399] = {.lex_state = 175, .external_lex_state = 99}, + [10400] = {.lex_state = 175, .external_lex_state = 99}, + [10401] = {.lex_state = 175, .external_lex_state = 99}, + [10402] = {.lex_state = 178, .external_lex_state = 121}, + [10403] = {.lex_state = 175, .external_lex_state = 99}, + [10404] = {.lex_state = 41, .external_lex_state = 99}, + [10405] = {.lex_state = 175, .external_lex_state = 99}, + [10406] = {.lex_state = 175, .external_lex_state = 99}, + [10407] = {.lex_state = 175, .external_lex_state = 99}, + [10408] = {.lex_state = 175, .external_lex_state = 99}, + [10409] = {.lex_state = 178, .external_lex_state = 99}, + [10410] = {.lex_state = 175, .external_lex_state = 99}, + [10411] = {.lex_state = 178, .external_lex_state = 121}, + [10412] = {.lex_state = 178, .external_lex_state = 121}, + [10413] = {.lex_state = 175, .external_lex_state = 99}, + [10414] = {.lex_state = 175, .external_lex_state = 99}, + [10415] = {.lex_state = 175, .external_lex_state = 99}, + [10416] = {.lex_state = 175, .external_lex_state = 99}, + [10417] = {.lex_state = 175, .external_lex_state = 99}, + [10418] = {.lex_state = 175, .external_lex_state = 99}, + [10419] = {.lex_state = 175, .external_lex_state = 99}, + [10420] = {.lex_state = 175, .external_lex_state = 99}, + [10421] = {.lex_state = 175, .external_lex_state = 99}, + [10422] = {.lex_state = 175, .external_lex_state = 99}, + [10423] = {.lex_state = 175, .external_lex_state = 99}, + [10424] = {.lex_state = 175, .external_lex_state = 99}, + [10425] = {.lex_state = 175, .external_lex_state = 99}, + [10426] = {.lex_state = 175, .external_lex_state = 99}, + [10427] = {.lex_state = 175, .external_lex_state = 99}, + [10428] = {.lex_state = 175, .external_lex_state = 99}, + [10429] = {.lex_state = 75, .external_lex_state = 122}, + [10430] = {.lex_state = 175, .external_lex_state = 99}, + [10431] = {.lex_state = 175, .external_lex_state = 99}, + [10432] = {.lex_state = 178, .external_lex_state = 121}, + [10433] = {.lex_state = 175, .external_lex_state = 99}, + [10434] = {.lex_state = 178, .external_lex_state = 121}, + [10435] = {.lex_state = 175, .external_lex_state = 99}, + [10436] = {.lex_state = 175, .external_lex_state = 99}, + [10437] = {.lex_state = 175, .external_lex_state = 99}, + [10438] = {.lex_state = 175, .external_lex_state = 99}, + [10439] = {.lex_state = 175, .external_lex_state = 99}, + [10440] = {.lex_state = 175, .external_lex_state = 99}, + [10441] = {.lex_state = 178, .external_lex_state = 121}, + [10442] = {.lex_state = 175, .external_lex_state = 99}, + [10443] = {.lex_state = 175, .external_lex_state = 99}, + [10444] = {.lex_state = 175, .external_lex_state = 99}, + [10445] = {.lex_state = 175, .external_lex_state = 99}, + [10446] = {.lex_state = 175, .external_lex_state = 99}, + [10447] = {.lex_state = 175, .external_lex_state = 99}, + [10448] = {.lex_state = 175, .external_lex_state = 99}, + [10449] = {.lex_state = 178, .external_lex_state = 99}, + [10450] = {.lex_state = 178, .external_lex_state = 99}, + [10451] = {.lex_state = 175, .external_lex_state = 99}, + [10452] = {.lex_state = 166, .external_lex_state = 99}, + [10453] = {.lex_state = 175, .external_lex_state = 99}, + [10454] = {.lex_state = 175, .external_lex_state = 99}, + [10455] = {.lex_state = 175, .external_lex_state = 99}, + [10456] = {.lex_state = 178, .external_lex_state = 99}, + [10457] = {.lex_state = 178, .external_lex_state = 99}, + [10458] = {.lex_state = 175, .external_lex_state = 99}, + [10459] = {.lex_state = 166, .external_lex_state = 99}, + [10460] = {.lex_state = 178, .external_lex_state = 99}, + [10461] = {.lex_state = 175, .external_lex_state = 99}, + [10462] = {.lex_state = 175, .external_lex_state = 120}, + [10463] = {.lex_state = 178, .external_lex_state = 99}, + [10464] = {.lex_state = 175, .external_lex_state = 99}, + [10465] = {.lex_state = 175, .external_lex_state = 99}, + [10466] = {.lex_state = 175, .external_lex_state = 99}, + [10467] = {.lex_state = 175, .external_lex_state = 99}, + [10468] = {.lex_state = 175, .external_lex_state = 99}, + [10469] = {.lex_state = 175, .external_lex_state = 99}, + [10470] = {.lex_state = 175, .external_lex_state = 99}, + [10471] = {.lex_state = 175, .external_lex_state = 99}, + [10472] = {.lex_state = 178, .external_lex_state = 112}, + [10473] = {.lex_state = 166, .external_lex_state = 99}, + [10474] = {.lex_state = 175, .external_lex_state = 99}, + [10475] = {.lex_state = 175, .external_lex_state = 99}, + [10476] = {.lex_state = 175, .external_lex_state = 99}, + [10477] = {.lex_state = 178, .external_lex_state = 121}, + [10478] = {.lex_state = 175, .external_lex_state = 99}, + [10479] = {.lex_state = 178, .external_lex_state = 99}, + [10480] = {.lex_state = 175, .external_lex_state = 99}, + [10481] = {.lex_state = 175, .external_lex_state = 99}, + [10482] = {.lex_state = 175, .external_lex_state = 99}, + [10483] = {.lex_state = 175, .external_lex_state = 99}, + [10484] = {.lex_state = 178, .external_lex_state = 99}, + [10485] = {.lex_state = 175, .external_lex_state = 99}, + [10486] = {.lex_state = 175, .external_lex_state = 99}, + [10487] = {.lex_state = 175, .external_lex_state = 99}, + [10488] = {.lex_state = 175, .external_lex_state = 99}, + [10489] = {.lex_state = 175, .external_lex_state = 99}, + [10490] = {.lex_state = 178, .external_lex_state = 99}, + [10491] = {.lex_state = 175, .external_lex_state = 123}, + [10492] = {.lex_state = 41, .external_lex_state = 99}, + [10493] = {.lex_state = 175, .external_lex_state = 99}, + [10494] = {.lex_state = 175, .external_lex_state = 99}, + [10495] = {.lex_state = 41, .external_lex_state = 99}, + [10496] = {.lex_state = 175, .external_lex_state = 99}, + [10497] = {.lex_state = 175, .external_lex_state = 99}, + [10498] = {.lex_state = 175, .external_lex_state = 99}, + [10499] = {.lex_state = 175, .external_lex_state = 99}, + [10500] = {.lex_state = 175, .external_lex_state = 99}, + [10501] = {.lex_state = 175, .external_lex_state = 99}, + [10502] = {.lex_state = 175, .external_lex_state = 99}, + [10503] = {.lex_state = 178, .external_lex_state = 99}, + [10504] = {.lex_state = 175, .external_lex_state = 99}, + [10505] = {.lex_state = 175, .external_lex_state = 99}, + [10506] = {.lex_state = 175, .external_lex_state = 99}, + [10507] = {.lex_state = 175, .external_lex_state = 99}, + [10508] = {.lex_state = 175, .external_lex_state = 99}, + [10509] = {.lex_state = 175, .external_lex_state = 99}, + [10510] = {.lex_state = 175, .external_lex_state = 99}, + [10511] = {.lex_state = 175, .external_lex_state = 120}, + [10512] = {.lex_state = 175, .external_lex_state = 99}, + [10513] = {.lex_state = 41, .external_lex_state = 99}, + [10514] = {.lex_state = 175, .external_lex_state = 99}, + [10515] = {.lex_state = 175, .external_lex_state = 99}, + [10516] = {.lex_state = 175, .external_lex_state = 99}, + [10517] = {.lex_state = 175, .external_lex_state = 99}, + [10518] = {.lex_state = 175, .external_lex_state = 99}, + [10519] = {.lex_state = 175, .external_lex_state = 99}, + [10520] = {.lex_state = 175, .external_lex_state = 99}, + [10521] = {.lex_state = 175, .external_lex_state = 111}, + [10522] = {.lex_state = 175, .external_lex_state = 99}, + [10523] = {.lex_state = 175, .external_lex_state = 99}, + [10524] = {.lex_state = 175, .external_lex_state = 99}, + [10525] = {.lex_state = 175, .external_lex_state = 99}, + [10526] = {.lex_state = 175, .external_lex_state = 99}, + [10527] = {.lex_state = 175, .external_lex_state = 123}, + [10528] = {.lex_state = 175, .external_lex_state = 99}, + [10529] = {.lex_state = 175, .external_lex_state = 99}, + [10530] = {.lex_state = 175, .external_lex_state = 99}, + [10531] = {.lex_state = 178, .external_lex_state = 99}, + [10532] = {.lex_state = 175, .external_lex_state = 99}, + [10533] = {.lex_state = 175, .external_lex_state = 99}, + [10534] = {.lex_state = 175, .external_lex_state = 123}, + [10535] = {.lex_state = 175, .external_lex_state = 99}, + [10536] = {.lex_state = 175, .external_lex_state = 99}, + [10537] = {.lex_state = 175, .external_lex_state = 99}, + [10538] = {.lex_state = 175, .external_lex_state = 99}, + [10539] = {.lex_state = 175, .external_lex_state = 99}, + [10540] = {.lex_state = 175, .external_lex_state = 99}, + [10541] = {.lex_state = 175, .external_lex_state = 99}, + [10542] = {.lex_state = 175, .external_lex_state = 99}, + [10543] = {.lex_state = 175, .external_lex_state = 99}, + [10544] = {.lex_state = 175, .external_lex_state = 99}, + [10545] = {.lex_state = 41, .external_lex_state = 99}, + [10546] = {.lex_state = 175, .external_lex_state = 99}, + [10547] = {.lex_state = 175, .external_lex_state = 99}, + [10548] = {.lex_state = 175, .external_lex_state = 120}, + [10549] = {.lex_state = 175, .external_lex_state = 99}, + [10550] = {.lex_state = 175, .external_lex_state = 99}, + [10551] = {.lex_state = 41, .external_lex_state = 99}, + [10552] = {.lex_state = 175, .external_lex_state = 99}, + [10553] = {.lex_state = 175, .external_lex_state = 120}, + [10554] = {.lex_state = 175, .external_lex_state = 99}, + [10555] = {.lex_state = 175, .external_lex_state = 99}, + [10556] = {.lex_state = 175, .external_lex_state = 99}, + [10557] = {.lex_state = 175, .external_lex_state = 99}, + [10558] = {.lex_state = 175, .external_lex_state = 99}, + [10559] = {.lex_state = 175, .external_lex_state = 99}, + [10560] = {.lex_state = 41, .external_lex_state = 99}, + [10561] = {.lex_state = 175, .external_lex_state = 99}, + [10562] = {.lex_state = 175, .external_lex_state = 99}, + [10563] = {.lex_state = 175, .external_lex_state = 99}, + [10564] = {.lex_state = 175, .external_lex_state = 99}, + [10565] = {.lex_state = 175, .external_lex_state = 99}, + [10566] = {.lex_state = 175, .external_lex_state = 99}, + [10567] = {.lex_state = 175, .external_lex_state = 99}, + [10568] = {.lex_state = 175, .external_lex_state = 99}, + [10569] = {.lex_state = 175, .external_lex_state = 99}, + [10570] = {.lex_state = 175, .external_lex_state = 99}, + [10571] = {.lex_state = 175, .external_lex_state = 99}, + [10572] = {.lex_state = 175, .external_lex_state = 99}, + [10573] = {.lex_state = 175, .external_lex_state = 99}, + [10574] = {.lex_state = 175, .external_lex_state = 99}, + [10575] = {.lex_state = 175, .external_lex_state = 99}, + [10576] = {.lex_state = 175, .external_lex_state = 99}, + [10577] = {.lex_state = 175, .external_lex_state = 99}, + [10578] = {.lex_state = 178, .external_lex_state = 99}, + [10579] = {.lex_state = 175, .external_lex_state = 99}, + [10580] = {.lex_state = 178, .external_lex_state = 99}, + [10581] = {.lex_state = 178, .external_lex_state = 99}, + [10582] = {.lex_state = 178, .external_lex_state = 99}, + [10583] = {.lex_state = 178, .external_lex_state = 99}, + [10584] = {.lex_state = 178, .external_lex_state = 99}, + [10585] = {.lex_state = 178, .external_lex_state = 99}, + [10586] = {.lex_state = 178, .external_lex_state = 99}, + [10587] = {.lex_state = 175, .external_lex_state = 99}, + [10588] = {.lex_state = 178, .external_lex_state = 99}, + [10589] = {.lex_state = 178, .external_lex_state = 99}, + [10590] = {.lex_state = 175, .external_lex_state = 99}, + [10591] = {.lex_state = 178, .external_lex_state = 99}, + [10592] = {.lex_state = 178, .external_lex_state = 99}, + [10593] = {.lex_state = 178, .external_lex_state = 99}, + [10594] = {.lex_state = 175, .external_lex_state = 99}, + [10595] = {.lex_state = 178, .external_lex_state = 99}, + [10596] = {.lex_state = 178, .external_lex_state = 99}, + [10597] = {.lex_state = 178, .external_lex_state = 99}, + [10598] = {.lex_state = 178, .external_lex_state = 99}, + [10599] = {.lex_state = 41, .external_lex_state = 99}, + [10600] = {.lex_state = 166, .external_lex_state = 99}, + [10601] = {.lex_state = 178, .external_lex_state = 99}, + [10602] = {.lex_state = 178, .external_lex_state = 99}, + [10603] = {.lex_state = 175, .external_lex_state = 99}, + [10604] = {.lex_state = 178, .external_lex_state = 99}, + [10605] = {.lex_state = 178, .external_lex_state = 99}, + [10606] = {.lex_state = 175, .external_lex_state = 99}, + [10607] = {.lex_state = 178, .external_lex_state = 99}, + [10608] = {.lex_state = 178, .external_lex_state = 99}, + [10609] = {.lex_state = 178, .external_lex_state = 99}, + [10610] = {.lex_state = 175, .external_lex_state = 99}, + [10611] = {.lex_state = 178, .external_lex_state = 99}, + [10612] = {.lex_state = 175, .external_lex_state = 99}, + [10613] = {.lex_state = 166, .external_lex_state = 99}, + [10614] = {.lex_state = 178, .external_lex_state = 99}, + [10615] = {.lex_state = 178, .external_lex_state = 99}, + [10616] = {.lex_state = 175, .external_lex_state = 99}, + [10617] = {.lex_state = 166, .external_lex_state = 99}, + [10618] = {.lex_state = 175, .external_lex_state = 99}, + [10619] = {.lex_state = 178, .external_lex_state = 99}, + [10620] = {.lex_state = 178, .external_lex_state = 99}, + [10621] = {.lex_state = 178, .external_lex_state = 99}, + [10622] = {.lex_state = 178, .external_lex_state = 99}, + [10623] = {.lex_state = 178, .external_lex_state = 99}, + [10624] = {.lex_state = 178, .external_lex_state = 99}, + [10625] = {.lex_state = 178, .external_lex_state = 99}, + [10626] = {.lex_state = 175, .external_lex_state = 99}, + [10627] = {.lex_state = 175, .external_lex_state = 99}, + [10628] = {.lex_state = 178, .external_lex_state = 99}, + [10629] = {.lex_state = 175, .external_lex_state = 99}, + [10630] = {.lex_state = 178, .external_lex_state = 99}, + [10631] = {.lex_state = 178, .external_lex_state = 99}, + [10632] = {.lex_state = 175, .external_lex_state = 99}, + [10633] = {.lex_state = 178, .external_lex_state = 99}, + [10634] = {.lex_state = 178, .external_lex_state = 99}, + [10635] = {.lex_state = 178, .external_lex_state = 99}, + [10636] = {.lex_state = 178, .external_lex_state = 99}, + [10637] = {.lex_state = 178, .external_lex_state = 99}, + [10638] = {.lex_state = 175, .external_lex_state = 99}, + [10639] = {.lex_state = 178, .external_lex_state = 99}, + [10640] = {.lex_state = 178, .external_lex_state = 99}, + [10641] = {.lex_state = 178, .external_lex_state = 99}, + [10642] = {.lex_state = 178, .external_lex_state = 99}, + [10643] = {.lex_state = 178, .external_lex_state = 99}, + [10644] = {.lex_state = 178, .external_lex_state = 99}, + [10645] = {.lex_state = 175, .external_lex_state = 99}, + [10646] = {.lex_state = 178, .external_lex_state = 99}, + [10647] = {.lex_state = 175, .external_lex_state = 99}, + [10648] = {.lex_state = 175, .external_lex_state = 99}, + [10649] = {.lex_state = 178, .external_lex_state = 99}, + [10650] = {.lex_state = 175, .external_lex_state = 99}, + [10651] = {.lex_state = 178, .external_lex_state = 99}, + [10652] = {.lex_state = 178, .external_lex_state = 99}, + [10653] = {.lex_state = 178, .external_lex_state = 99}, + [10654] = {.lex_state = 178, .external_lex_state = 99}, + [10655] = {.lex_state = 175, .external_lex_state = 99}, + [10656] = {.lex_state = 178, .external_lex_state = 99}, + [10657] = {.lex_state = 72, .external_lex_state = 99}, + [10658] = {.lex_state = 175, .external_lex_state = 99}, + [10659] = {.lex_state = 178, .external_lex_state = 99}, + [10660] = {.lex_state = 175, .external_lex_state = 99}, + [10661] = {.lex_state = 178, .external_lex_state = 99}, + [10662] = {.lex_state = 175, .external_lex_state = 99}, + [10663] = {.lex_state = 178, .external_lex_state = 99}, + [10664] = {.lex_state = 175, .external_lex_state = 99}, + [10665] = {.lex_state = 178, .external_lex_state = 99}, + [10666] = {.lex_state = 178, .external_lex_state = 99}, + [10667] = {.lex_state = 72, .external_lex_state = 99}, + [10668] = {.lex_state = 175, .external_lex_state = 99}, + [10669] = {.lex_state = 178, .external_lex_state = 99}, + [10670] = {.lex_state = 175, .external_lex_state = 99}, + [10671] = {.lex_state = 175, .external_lex_state = 99}, + [10672] = {.lex_state = 178, .external_lex_state = 99}, + [10673] = {.lex_state = 178, .external_lex_state = 99}, + [10674] = {.lex_state = 178, .external_lex_state = 99}, + [10675] = {.lex_state = 178, .external_lex_state = 99}, + [10676] = {.lex_state = 178, .external_lex_state = 99}, + [10677] = {.lex_state = 178, .external_lex_state = 99}, + [10678] = {.lex_state = 175, .external_lex_state = 99}, + [10679] = {.lex_state = 178, .external_lex_state = 99}, + [10680] = {.lex_state = 175, .external_lex_state = 99}, + [10681] = {.lex_state = 175, .external_lex_state = 99}, + [10682] = {.lex_state = 175, .external_lex_state = 99}, + [10683] = {.lex_state = 178, .external_lex_state = 99}, + [10684] = {.lex_state = 178, .external_lex_state = 99}, + [10685] = {.lex_state = 175, .external_lex_state = 99}, + [10686] = {.lex_state = 175, .external_lex_state = 99}, + [10687] = {.lex_state = 178, .external_lex_state = 99}, + [10688] = {.lex_state = 175, .external_lex_state = 99}, + [10689] = {.lex_state = 178, .external_lex_state = 99}, + [10690] = {.lex_state = 178, .external_lex_state = 99}, + [10691] = {.lex_state = 178, .external_lex_state = 99}, + [10692] = {.lex_state = 178, .external_lex_state = 99}, + [10693] = {.lex_state = 178, .external_lex_state = 99}, + [10694] = {.lex_state = 178, .external_lex_state = 99}, + [10695] = {.lex_state = 175, .external_lex_state = 99}, + [10696] = {.lex_state = 178, .external_lex_state = 99}, + [10697] = {.lex_state = 178, .external_lex_state = 99}, + [10698] = {.lex_state = 178, .external_lex_state = 99}, + [10699] = {.lex_state = 178, .external_lex_state = 99}, + [10700] = {.lex_state = 178, .external_lex_state = 99}, + [10701] = {.lex_state = 175, .external_lex_state = 99}, + [10702] = {.lex_state = 178, .external_lex_state = 99}, + [10703] = {.lex_state = 52, .external_lex_state = 99}, + [10704] = {.lex_state = 166, .external_lex_state = 99}, + [10705] = {.lex_state = 166, .external_lex_state = 99}, + [10706] = {.lex_state = 166, .external_lex_state = 99}, + [10707] = {.lex_state = 178, .external_lex_state = 99}, + [10708] = {.lex_state = 178, .external_lex_state = 99}, + [10709] = {.lex_state = 178, .external_lex_state = 99}, + [10710] = {.lex_state = 178, .external_lex_state = 99}, + [10711] = {.lex_state = 175, .external_lex_state = 99}, + [10712] = {.lex_state = 178, .external_lex_state = 99}, + [10713] = {.lex_state = 178, .external_lex_state = 99}, + [10714] = {.lex_state = 175, .external_lex_state = 99}, + [10715] = {.lex_state = 166, .external_lex_state = 99}, + [10716] = {.lex_state = 178, .external_lex_state = 99}, + [10717] = {.lex_state = 178, .external_lex_state = 99}, + [10718] = {.lex_state = 178, .external_lex_state = 99}, + [10719] = {.lex_state = 178, .external_lex_state = 99}, + [10720] = {.lex_state = 178, .external_lex_state = 99}, + [10721] = {.lex_state = 178, .external_lex_state = 99}, + [10722] = {.lex_state = 178, .external_lex_state = 99}, + [10723] = {.lex_state = 175, .external_lex_state = 99}, + [10724] = {.lex_state = 175, .external_lex_state = 99}, + [10725] = {.lex_state = 178, .external_lex_state = 99}, + [10726] = {.lex_state = 178, .external_lex_state = 99}, + [10727] = {.lex_state = 175, .external_lex_state = 99}, + [10728] = {.lex_state = 178, .external_lex_state = 99}, + [10729] = {.lex_state = 178, .external_lex_state = 99}, + [10730] = {.lex_state = 178, .external_lex_state = 99}, + [10731] = {.lex_state = 178, .external_lex_state = 99}, + [10732] = {.lex_state = 175, .external_lex_state = 99}, + [10733] = {.lex_state = 175, .external_lex_state = 99}, + [10734] = {.lex_state = 175, .external_lex_state = 99}, + [10735] = {.lex_state = 72, .external_lex_state = 99}, + [10736] = {.lex_state = 178, .external_lex_state = 99}, + [10737] = {.lex_state = 178, .external_lex_state = 99}, + [10738] = {.lex_state = 166, .external_lex_state = 99}, + [10739] = {.lex_state = 178, .external_lex_state = 99}, + [10740] = {.lex_state = 175, .external_lex_state = 99}, + [10741] = {.lex_state = 166, .external_lex_state = 99}, + [10742] = {.lex_state = 175, .external_lex_state = 99}, + [10743] = {.lex_state = 175, .external_lex_state = 99}, + [10744] = {.lex_state = 178, .external_lex_state = 99}, + [10745] = {.lex_state = 178, .external_lex_state = 99}, + [10746] = {.lex_state = 175, .external_lex_state = 99}, + [10747] = {.lex_state = 178, .external_lex_state = 99}, + [10748] = {.lex_state = 178, .external_lex_state = 99}, + [10749] = {.lex_state = 175, .external_lex_state = 99}, + [10750] = {.lex_state = 178, .external_lex_state = 99}, + [10751] = {.lex_state = 178, .external_lex_state = 99}, + [10752] = {.lex_state = 178, .external_lex_state = 99}, + [10753] = {.lex_state = 178, .external_lex_state = 99}, + [10754] = {.lex_state = 178, .external_lex_state = 99}, + [10755] = {.lex_state = 175, .external_lex_state = 99}, + [10756] = {.lex_state = 178, .external_lex_state = 99}, + [10757] = {.lex_state = 178, .external_lex_state = 99}, + [10758] = {.lex_state = 175, .external_lex_state = 99}, + [10759] = {.lex_state = 178, .external_lex_state = 99}, + [10760] = {.lex_state = 178, .external_lex_state = 99}, + [10761] = {.lex_state = 178, .external_lex_state = 99}, + [10762] = {.lex_state = 175, .external_lex_state = 99}, + [10763] = {.lex_state = 178, .external_lex_state = 99}, + [10764] = {.lex_state = 175, .external_lex_state = 99}, + [10765] = {.lex_state = 178, .external_lex_state = 99}, + [10766] = {.lex_state = 178, .external_lex_state = 99}, + [10767] = {.lex_state = 175, .external_lex_state = 99}, + [10768] = {.lex_state = 175, .external_lex_state = 99}, + [10769] = {.lex_state = 175, .external_lex_state = 99}, + [10770] = {.lex_state = 178, .external_lex_state = 99}, + [10771] = {.lex_state = 178, .external_lex_state = 99}, + [10772] = {.lex_state = 178, .external_lex_state = 99}, + [10773] = {.lex_state = 178, .external_lex_state = 99}, + [10774] = {.lex_state = 178, .external_lex_state = 99}, + [10775] = {.lex_state = 178, .external_lex_state = 99}, + [10776] = {.lex_state = 175, .external_lex_state = 99}, + [10777] = {.lex_state = 178, .external_lex_state = 99}, + [10778] = {.lex_state = 175, .external_lex_state = 99}, + [10779] = {.lex_state = 178, .external_lex_state = 99}, + [10780] = {.lex_state = 175, .external_lex_state = 99}, + [10781] = {.lex_state = 178, .external_lex_state = 99}, + [10782] = {.lex_state = 175, .external_lex_state = 99}, + [10783] = {.lex_state = 166, .external_lex_state = 99}, + [10784] = {.lex_state = 178, .external_lex_state = 99}, + [10785] = {.lex_state = 175, .external_lex_state = 99}, + [10786] = {.lex_state = 178, .external_lex_state = 99}, + [10787] = {.lex_state = 166, .external_lex_state = 99}, + [10788] = {.lex_state = 178, .external_lex_state = 99}, + [10789] = {.lex_state = 175, .external_lex_state = 99}, + [10790] = {.lex_state = 178, .external_lex_state = 99}, + [10791] = {.lex_state = 175, .external_lex_state = 99}, + [10792] = {.lex_state = 41, .external_lex_state = 99}, + [10793] = {.lex_state = 178, .external_lex_state = 99}, + [10794] = {.lex_state = 178, .external_lex_state = 99}, + [10795] = {.lex_state = 178, .external_lex_state = 99}, + [10796] = {.lex_state = 178, .external_lex_state = 99}, + [10797] = {.lex_state = 175, .external_lex_state = 99}, + [10798] = {.lex_state = 175, .external_lex_state = 99}, + [10799] = {.lex_state = 175, .external_lex_state = 99}, + [10800] = {.lex_state = 178, .external_lex_state = 99}, + [10801] = {.lex_state = 175, .external_lex_state = 99}, + [10802] = {.lex_state = 175, .external_lex_state = 99}, + [10803] = {.lex_state = 175, .external_lex_state = 99}, + [10804] = {.lex_state = 178, .external_lex_state = 99}, + [10805] = {.lex_state = 178, .external_lex_state = 99}, + [10806] = {.lex_state = 178, .external_lex_state = 99}, + [10807] = {.lex_state = 175, .external_lex_state = 99}, + [10808] = {.lex_state = 175, .external_lex_state = 99}, + [10809] = {.lex_state = 178, .external_lex_state = 99}, + [10810] = {.lex_state = 175, .external_lex_state = 99}, + [10811] = {.lex_state = 178, .external_lex_state = 99}, + [10812] = {.lex_state = 175, .external_lex_state = 99}, + [10813] = {.lex_state = 72, .external_lex_state = 99}, + [10814] = {.lex_state = 178, .external_lex_state = 99}, + [10815] = {.lex_state = 178, .external_lex_state = 99}, + [10816] = {.lex_state = 175, .external_lex_state = 99}, + [10817] = {.lex_state = 178, .external_lex_state = 99}, + [10818] = {.lex_state = 178, .external_lex_state = 99}, + [10819] = {.lex_state = 175, .external_lex_state = 99}, + [10820] = {.lex_state = 175, .external_lex_state = 99}, + [10821] = {.lex_state = 178, .external_lex_state = 99}, + [10822] = {.lex_state = 178, .external_lex_state = 99}, + [10823] = {.lex_state = 178, .external_lex_state = 99}, + [10824] = {.lex_state = 178, .external_lex_state = 99}, + [10825] = {.lex_state = 178, .external_lex_state = 99}, + [10826] = {.lex_state = 41, .external_lex_state = 99}, + [10827] = {.lex_state = 178, .external_lex_state = 99}, + [10828] = {.lex_state = 178, .external_lex_state = 99}, + [10829] = {.lex_state = 178, .external_lex_state = 99}, + [10830] = {.lex_state = 178, .external_lex_state = 99}, + [10831] = {.lex_state = 178, .external_lex_state = 99}, + [10832] = {.lex_state = 175, .external_lex_state = 99}, + [10833] = {.lex_state = 175, .external_lex_state = 99}, + [10834] = {.lex_state = 178, .external_lex_state = 99}, + [10835] = {.lex_state = 178, .external_lex_state = 99}, + [10836] = {.lex_state = 178, .external_lex_state = 99}, + [10837] = {.lex_state = 166, .external_lex_state = 99}, + [10838] = {.lex_state = 41, .external_lex_state = 99}, + [10839] = {.lex_state = 166, .external_lex_state = 99}, + [10840] = {.lex_state = 175, .external_lex_state = 99}, + [10841] = {.lex_state = 178, .external_lex_state = 99}, + [10842] = {.lex_state = 178, .external_lex_state = 99}, + [10843] = {.lex_state = 175, .external_lex_state = 99}, + [10844] = {.lex_state = 175, .external_lex_state = 99}, + [10845] = {.lex_state = 178, .external_lex_state = 99}, + [10846] = {.lex_state = 175, .external_lex_state = 99}, + [10847] = {.lex_state = 175, .external_lex_state = 99}, + [10848] = {.lex_state = 175, .external_lex_state = 99}, + [10849] = {.lex_state = 175, .external_lex_state = 99}, + [10850] = {.lex_state = 175, .external_lex_state = 99}, + [10851] = {.lex_state = 175, .external_lex_state = 99}, + [10852] = {.lex_state = 178, .external_lex_state = 99}, + [10853] = {.lex_state = 175, .external_lex_state = 99}, + [10854] = {.lex_state = 175, .external_lex_state = 99}, + [10855] = {.lex_state = 72, .external_lex_state = 99}, + [10856] = {.lex_state = 178, .external_lex_state = 99}, + [10857] = {.lex_state = 178, .external_lex_state = 99}, + [10858] = {.lex_state = 178, .external_lex_state = 99}, + [10859] = {.lex_state = 175, .external_lex_state = 99}, + [10860] = {.lex_state = 178, .external_lex_state = 99}, + [10861] = {.lex_state = 178, .external_lex_state = 99}, + [10862] = {.lex_state = 175, .external_lex_state = 99}, + [10863] = {.lex_state = 178, .external_lex_state = 99}, + [10864] = {.lex_state = 178, .external_lex_state = 99}, + [10865] = {.lex_state = 178, .external_lex_state = 99}, + [10866] = {.lex_state = 175, .external_lex_state = 99}, + [10867] = {.lex_state = 178, .external_lex_state = 99}, + [10868] = {.lex_state = 178, .external_lex_state = 99}, + [10869] = {.lex_state = 178, .external_lex_state = 99}, + [10870] = {.lex_state = 175, .external_lex_state = 99}, + [10871] = {.lex_state = 178, .external_lex_state = 99}, + [10872] = {.lex_state = 178, .external_lex_state = 99}, + [10873] = {.lex_state = 178, .external_lex_state = 99}, + [10874] = {.lex_state = 175, .external_lex_state = 99}, + [10875] = {.lex_state = 178, .external_lex_state = 99}, + [10876] = {.lex_state = 178, .external_lex_state = 99}, + [10877] = {.lex_state = 178, .external_lex_state = 99}, + [10878] = {.lex_state = 178, .external_lex_state = 99}, + [10879] = {.lex_state = 178, .external_lex_state = 99}, + [10880] = {.lex_state = 178, .external_lex_state = 99}, + [10881] = {.lex_state = 166, .external_lex_state = 99}, + [10882] = {.lex_state = 175, .external_lex_state = 99}, + [10883] = {.lex_state = 175, .external_lex_state = 99}, + [10884] = {.lex_state = 178, .external_lex_state = 99}, + [10885] = {.lex_state = 178, .external_lex_state = 99}, + [10886] = {.lex_state = 178, .external_lex_state = 99}, + [10887] = {.lex_state = 178, .external_lex_state = 99}, + [10888] = {.lex_state = 178, .external_lex_state = 99}, + [10889] = {.lex_state = 175, .external_lex_state = 99}, + [10890] = {.lex_state = 175, .external_lex_state = 99}, + [10891] = {.lex_state = 175, .external_lex_state = 99}, + [10892] = {.lex_state = 175, .external_lex_state = 99}, + [10893] = {.lex_state = 178, .external_lex_state = 99}, + [10894] = {.lex_state = 175, .external_lex_state = 99}, + [10895] = {.lex_state = 175, .external_lex_state = 99}, + [10896] = {.lex_state = 178, .external_lex_state = 99}, + [10897] = {.lex_state = 175, .external_lex_state = 99}, + [10898] = {.lex_state = 175, .external_lex_state = 99}, + [10899] = {.lex_state = 72, .external_lex_state = 99}, + [10900] = {.lex_state = 175, .external_lex_state = 99}, + [10901] = {.lex_state = 175, .external_lex_state = 99}, + [10902] = {.lex_state = 175, .external_lex_state = 99}, + [10903] = {.lex_state = 178, .external_lex_state = 99}, + [10904] = {.lex_state = 175, .external_lex_state = 99}, + [10905] = {.lex_state = 178, .external_lex_state = 99}, + [10906] = {.lex_state = 175, .external_lex_state = 99}, + [10907] = {.lex_state = 175, .external_lex_state = 99}, + [10908] = {.lex_state = 175, .external_lex_state = 99}, + [10909] = {.lex_state = 178, .external_lex_state = 99}, + [10910] = {.lex_state = 178, .external_lex_state = 99}, + [10911] = {.lex_state = 178, .external_lex_state = 99}, + [10912] = {.lex_state = 178, .external_lex_state = 99}, + [10913] = {.lex_state = 175, .external_lex_state = 99}, + [10914] = {.lex_state = 178, .external_lex_state = 99}, + [10915] = {.lex_state = 178, .external_lex_state = 99}, + [10916] = {.lex_state = 175, .external_lex_state = 99}, + [10917] = {.lex_state = 178, .external_lex_state = 99}, + [10918] = {.lex_state = 175, .external_lex_state = 99}, + [10919] = {.lex_state = 175, .external_lex_state = 99}, + [10920] = {.lex_state = 72, .external_lex_state = 99}, + [10921] = {.lex_state = 178, .external_lex_state = 99}, + [10922] = {.lex_state = 178, .external_lex_state = 99}, + [10923] = {.lex_state = 178, .external_lex_state = 99}, + [10924] = {.lex_state = 178, .external_lex_state = 99}, + [10925] = {.lex_state = 175, .external_lex_state = 99}, + [10926] = {.lex_state = 178, .external_lex_state = 99}, + [10927] = {.lex_state = 178, .external_lex_state = 99}, + [10928] = {.lex_state = 175, .external_lex_state = 99}, + [10929] = {.lex_state = 178, .external_lex_state = 99}, + [10930] = {.lex_state = 175, .external_lex_state = 99}, + [10931] = {.lex_state = 178, .external_lex_state = 99}, + [10932] = {.lex_state = 178, .external_lex_state = 99}, + [10933] = {.lex_state = 175, .external_lex_state = 99}, + [10934] = {.lex_state = 175, .external_lex_state = 99}, + [10935] = {.lex_state = 178, .external_lex_state = 99}, + [10936] = {.lex_state = 166, .external_lex_state = 99}, + [10937] = {.lex_state = 178, .external_lex_state = 99}, + [10938] = {.lex_state = 175, .external_lex_state = 99}, + [10939] = {.lex_state = 175, .external_lex_state = 99}, + [10940] = {.lex_state = 178, .external_lex_state = 99}, + [10941] = {.lex_state = 178, .external_lex_state = 99}, + [10942] = {.lex_state = 175, .external_lex_state = 99}, + [10943] = {.lex_state = 175, .external_lex_state = 99}, + [10944] = {.lex_state = 178, .external_lex_state = 99}, + [10945] = {.lex_state = 175, .external_lex_state = 99}, + [10946] = {.lex_state = 178, .external_lex_state = 99}, + [10947] = {.lex_state = 175, .external_lex_state = 99}, + [10948] = {.lex_state = 178, .external_lex_state = 99}, + [10949] = {.lex_state = 72, .external_lex_state = 99}, + [10950] = {.lex_state = 178, .external_lex_state = 99}, + [10951] = {.lex_state = 178, .external_lex_state = 99}, + [10952] = {.lex_state = 175, .external_lex_state = 99}, + [10953] = {.lex_state = 178, .external_lex_state = 99}, + [10954] = {.lex_state = 178, .external_lex_state = 99}, + [10955] = {.lex_state = 178, .external_lex_state = 99}, + [10956] = {.lex_state = 175, .external_lex_state = 99}, + [10957] = {.lex_state = 178, .external_lex_state = 99}, + [10958] = {.lex_state = 175, .external_lex_state = 99}, + [10959] = {.lex_state = 175, .external_lex_state = 99}, + [10960] = {.lex_state = 178, .external_lex_state = 99}, + [10961] = {.lex_state = 178, .external_lex_state = 99}, + [10962] = {.lex_state = 175, .external_lex_state = 99}, + [10963] = {.lex_state = 178, .external_lex_state = 99}, + [10964] = {.lex_state = 166, .external_lex_state = 99}, + [10965] = {.lex_state = 175, .external_lex_state = 99}, + [10966] = {.lex_state = 178, .external_lex_state = 99}, + [10967] = {.lex_state = 178, .external_lex_state = 99}, + [10968] = {.lex_state = 175, .external_lex_state = 99}, + [10969] = {.lex_state = 178, .external_lex_state = 99}, + [10970] = {.lex_state = 175, .external_lex_state = 99}, + [10971] = {.lex_state = 175, .external_lex_state = 99}, + [10972] = {.lex_state = 178, .external_lex_state = 99}, + [10973] = {.lex_state = 166, .external_lex_state = 99}, + [10974] = {.lex_state = 178, .external_lex_state = 99}, + [10975] = {.lex_state = 178, .external_lex_state = 99}, + [10976] = {.lex_state = 178, .external_lex_state = 99}, + [10977] = {.lex_state = 178, .external_lex_state = 99}, + [10978] = {.lex_state = 178, .external_lex_state = 99}, + [10979] = {.lex_state = 178, .external_lex_state = 99}, + [10980] = {.lex_state = 175, .external_lex_state = 99}, + [10981] = {.lex_state = 175, .external_lex_state = 99}, + [10982] = {.lex_state = 175, .external_lex_state = 99}, + [10983] = {.lex_state = 175, .external_lex_state = 99}, + [10984] = {.lex_state = 175, .external_lex_state = 99}, + [10985] = {.lex_state = 175, .external_lex_state = 99}, + [10986] = {.lex_state = 175, .external_lex_state = 99}, + [10987] = {.lex_state = 178, .external_lex_state = 99}, + [10988] = {.lex_state = 178, .external_lex_state = 99}, + [10989] = {.lex_state = 178, .external_lex_state = 99}, + [10990] = {.lex_state = 175, .external_lex_state = 99}, + [10991] = {.lex_state = 178, .external_lex_state = 99}, + [10992] = {.lex_state = 175, .external_lex_state = 99}, + [10993] = {.lex_state = 175, .external_lex_state = 99}, + [10994] = {.lex_state = 175, .external_lex_state = 99}, + [10995] = {.lex_state = 175, .external_lex_state = 99}, + [10996] = {.lex_state = 178, .external_lex_state = 99}, + [10997] = {.lex_state = 178, .external_lex_state = 99}, + [10998] = {.lex_state = 175, .external_lex_state = 99}, + [10999] = {.lex_state = 175, .external_lex_state = 99}, + [11000] = {.lex_state = 178, .external_lex_state = 99}, + [11001] = {.lex_state = 175, .external_lex_state = 99}, + [11002] = {.lex_state = 175, .external_lex_state = 99}, + [11003] = {.lex_state = 178, .external_lex_state = 99}, + [11004] = {.lex_state = 175, .external_lex_state = 99}, + [11005] = {.lex_state = 41, .external_lex_state = 99}, + [11006] = {.lex_state = 175, .external_lex_state = 99}, + [11007] = {.lex_state = 166, .external_lex_state = 99}, + [11008] = {.lex_state = 178, .external_lex_state = 99}, + [11009] = {.lex_state = 178, .external_lex_state = 99}, + [11010] = {.lex_state = 178, .external_lex_state = 99}, + [11011] = {.lex_state = 178, .external_lex_state = 99}, + [11012] = {.lex_state = 175, .external_lex_state = 99}, + [11013] = {.lex_state = 175, .external_lex_state = 99}, + [11014] = {.lex_state = 166, .external_lex_state = 99}, + [11015] = {.lex_state = 178, .external_lex_state = 99}, + [11016] = {.lex_state = 166, .external_lex_state = 99}, + [11017] = {.lex_state = 178, .external_lex_state = 99}, + [11018] = {.lex_state = 166, .external_lex_state = 99}, + [11019] = {.lex_state = 178, .external_lex_state = 99}, + [11020] = {.lex_state = 178, .external_lex_state = 99}, + [11021] = {.lex_state = 166, .external_lex_state = 99}, + [11022] = {.lex_state = 175, .external_lex_state = 99}, + [11023] = {.lex_state = 72, .external_lex_state = 99}, + [11024] = {.lex_state = 175, .external_lex_state = 99}, + [11025] = {.lex_state = 175, .external_lex_state = 99}, + [11026] = {.lex_state = 178, .external_lex_state = 99}, + [11027] = {.lex_state = 178, .external_lex_state = 99}, + [11028] = {.lex_state = 175, .external_lex_state = 99}, + [11029] = {.lex_state = 175, .external_lex_state = 99}, + [11030] = {.lex_state = 178, .external_lex_state = 99}, + [11031] = {.lex_state = 178, .external_lex_state = 99}, + [11032] = {.lex_state = 178, .external_lex_state = 99}, + [11033] = {.lex_state = 175, .external_lex_state = 99}, + [11034] = {.lex_state = 175, .external_lex_state = 99}, + [11035] = {.lex_state = 178, .external_lex_state = 99}, + [11036] = {.lex_state = 175, .external_lex_state = 99}, + [11037] = {.lex_state = 175, .external_lex_state = 99}, + [11038] = {.lex_state = 178, .external_lex_state = 99}, + [11039] = {.lex_state = 178, .external_lex_state = 99}, + [11040] = {.lex_state = 178, .external_lex_state = 99}, + [11041] = {.lex_state = 175, .external_lex_state = 99}, + [11042] = {.lex_state = 175, .external_lex_state = 99}, + [11043] = {.lex_state = 175, .external_lex_state = 99}, + [11044] = {.lex_state = 178, .external_lex_state = 99}, + [11045] = {.lex_state = 178, .external_lex_state = 99}, + [11046] = {.lex_state = 175, .external_lex_state = 99}, + [11047] = {.lex_state = 175, .external_lex_state = 99}, + [11048] = {.lex_state = 178, .external_lex_state = 99}, + [11049] = {.lex_state = 175, .external_lex_state = 99}, + [11050] = {.lex_state = 178, .external_lex_state = 99}, + [11051] = {.lex_state = 178, .external_lex_state = 99}, + [11052] = {.lex_state = 178, .external_lex_state = 99}, + [11053] = {.lex_state = 178, .external_lex_state = 99}, + [11054] = {.lex_state = 178, .external_lex_state = 99}, + [11055] = {.lex_state = 175, .external_lex_state = 99}, + [11056] = {.lex_state = 178, .external_lex_state = 99}, + [11057] = {.lex_state = 175, .external_lex_state = 99}, + [11058] = {.lex_state = 178, .external_lex_state = 99}, + [11059] = {.lex_state = 175, .external_lex_state = 99}, + [11060] = {.lex_state = 178, .external_lex_state = 99}, + [11061] = {.lex_state = 166, .external_lex_state = 99}, + [11062] = {.lex_state = 175, .external_lex_state = 99}, + [11063] = {.lex_state = 72, .external_lex_state = 99}, + [11064] = {.lex_state = 175, .external_lex_state = 99}, + [11065] = {.lex_state = 175, .external_lex_state = 99}, + [11066] = {.lex_state = 175, .external_lex_state = 99}, + [11067] = {.lex_state = 166, .external_lex_state = 99}, + [11068] = {.lex_state = 166, .external_lex_state = 99}, + [11069] = {.lex_state = 175, .external_lex_state = 99}, + [11070] = {.lex_state = 166, .external_lex_state = 99}, + [11071] = {.lex_state = 178, .external_lex_state = 99}, + [11072] = {.lex_state = 175, .external_lex_state = 99}, + [11073] = {.lex_state = 175, .external_lex_state = 99}, + [11074] = {.lex_state = 175, .external_lex_state = 99}, + [11075] = {.lex_state = 175, .external_lex_state = 99}, + [11076] = {.lex_state = 178, .external_lex_state = 99}, + [11077] = {.lex_state = 175, .external_lex_state = 99}, + [11078] = {.lex_state = 175, .external_lex_state = 99}, + [11079] = {.lex_state = 175, .external_lex_state = 99}, + [11080] = {.lex_state = 178, .external_lex_state = 99}, + [11081] = {.lex_state = 178, .external_lex_state = 99}, + [11082] = {.lex_state = 178, .external_lex_state = 99}, + [11083] = {.lex_state = 175, .external_lex_state = 99}, + [11084] = {.lex_state = 175, .external_lex_state = 99}, + [11085] = {.lex_state = 175, .external_lex_state = 99}, + [11086] = {.lex_state = 178, .external_lex_state = 99}, + [11087] = {.lex_state = 166, .external_lex_state = 99}, + [11088] = {.lex_state = 178, .external_lex_state = 99}, + [11089] = {.lex_state = 175, .external_lex_state = 99}, + [11090] = {.lex_state = 178, .external_lex_state = 99}, + [11091] = {.lex_state = 178, .external_lex_state = 99}, + [11092] = {.lex_state = 175, .external_lex_state = 99}, + [11093] = {.lex_state = 178, .external_lex_state = 99}, + [11094] = {.lex_state = 178, .external_lex_state = 99}, + [11095] = {.lex_state = 178, .external_lex_state = 99}, + [11096] = {.lex_state = 178, .external_lex_state = 99}, + [11097] = {.lex_state = 175, .external_lex_state = 99}, + [11098] = {.lex_state = 175, .external_lex_state = 99}, + [11099] = {.lex_state = 175, .external_lex_state = 99}, + [11100] = {.lex_state = 178, .external_lex_state = 99}, + [11101] = {.lex_state = 175, .external_lex_state = 99}, + [11102] = {.lex_state = 178, .external_lex_state = 99}, + [11103] = {.lex_state = 178, .external_lex_state = 99}, + [11104] = {.lex_state = 175, .external_lex_state = 99}, + [11105] = {.lex_state = 178, .external_lex_state = 99}, + [11106] = {.lex_state = 175, .external_lex_state = 99}, + [11107] = {.lex_state = 175, .external_lex_state = 99}, + [11108] = {.lex_state = 178, .external_lex_state = 99}, + [11109] = {.lex_state = 175, .external_lex_state = 99}, + [11110] = {.lex_state = 166, .external_lex_state = 99}, + [11111] = {.lex_state = 175, .external_lex_state = 99}, + [11112] = {.lex_state = 175, .external_lex_state = 99}, + [11113] = {.lex_state = 175, .external_lex_state = 99}, + [11114] = {.lex_state = 175, .external_lex_state = 99}, + [11115] = {.lex_state = 178, .external_lex_state = 99}, + [11116] = {.lex_state = 175, .external_lex_state = 99}, + [11117] = {.lex_state = 178, .external_lex_state = 99}, + [11118] = {.lex_state = 175, .external_lex_state = 99}, + [11119] = {.lex_state = 178, .external_lex_state = 99}, + [11120] = {.lex_state = 178, .external_lex_state = 99}, + [11121] = {.lex_state = 175, .external_lex_state = 99}, + [11122] = {.lex_state = 175, .external_lex_state = 99}, + [11123] = {.lex_state = 178, .external_lex_state = 99}, + [11124] = {.lex_state = 175, .external_lex_state = 99}, + [11125] = {.lex_state = 175, .external_lex_state = 99}, + [11126] = {.lex_state = 175, .external_lex_state = 99}, + [11127] = {.lex_state = 175, .external_lex_state = 99}, + [11128] = {.lex_state = 175, .external_lex_state = 99}, + [11129] = {.lex_state = 178, .external_lex_state = 99}, + [11130] = {.lex_state = 178, .external_lex_state = 99}, + [11131] = {.lex_state = 175, .external_lex_state = 99}, + [11132] = {.lex_state = 178, .external_lex_state = 99}, + [11133] = {.lex_state = 178, .external_lex_state = 99}, + [11134] = {.lex_state = 175, .external_lex_state = 99}, + [11135] = {.lex_state = 178, .external_lex_state = 99}, + [11136] = {.lex_state = 175, .external_lex_state = 99}, + [11137] = {.lex_state = 175, .external_lex_state = 99}, + [11138] = {.lex_state = 178, .external_lex_state = 99}, + [11139] = {.lex_state = 175, .external_lex_state = 99}, + [11140] = {.lex_state = 178, .external_lex_state = 99}, + [11141] = {.lex_state = 175, .external_lex_state = 99}, + [11142] = {.lex_state = 175, .external_lex_state = 99}, + [11143] = {.lex_state = 178, .external_lex_state = 99}, + [11144] = {.lex_state = 178, .external_lex_state = 99}, + [11145] = {.lex_state = 175, .external_lex_state = 99}, + [11146] = {.lex_state = 175, .external_lex_state = 99}, + [11147] = {.lex_state = 175, .external_lex_state = 99}, + [11148] = {.lex_state = 175, .external_lex_state = 99}, + [11149] = {.lex_state = 178, .external_lex_state = 99}, + [11150] = {.lex_state = 175, .external_lex_state = 99}, + [11151] = {.lex_state = 175, .external_lex_state = 99}, + [11152] = {.lex_state = 175, .external_lex_state = 99}, + [11153] = {.lex_state = 175, .external_lex_state = 99}, + [11154] = {.lex_state = 178, .external_lex_state = 99}, + [11155] = {.lex_state = 175, .external_lex_state = 99}, + [11156] = {.lex_state = 175, .external_lex_state = 99}, + [11157] = {.lex_state = 178, .external_lex_state = 99}, + [11158] = {.lex_state = 178, .external_lex_state = 99}, + [11159] = {.lex_state = 178, .external_lex_state = 99}, + [11160] = {.lex_state = 175, .external_lex_state = 99}, + [11161] = {.lex_state = 175, .external_lex_state = 99}, + [11162] = {.lex_state = 175, .external_lex_state = 99}, + [11163] = {.lex_state = 175, .external_lex_state = 99}, + [11164] = {.lex_state = 178, .external_lex_state = 99}, + [11165] = {.lex_state = 178, .external_lex_state = 99}, + [11166] = {.lex_state = 178, .external_lex_state = 99}, + [11167] = {.lex_state = 175, .external_lex_state = 99}, + [11168] = {.lex_state = 166, .external_lex_state = 99}, + [11169] = {.lex_state = 175, .external_lex_state = 99}, + [11170] = {.lex_state = 178, .external_lex_state = 99}, + [11171] = {.lex_state = 178, .external_lex_state = 99}, + [11172] = {.lex_state = 175, .external_lex_state = 99}, + [11173] = {.lex_state = 178, .external_lex_state = 99}, + [11174] = {.lex_state = 175, .external_lex_state = 99}, + [11175] = {.lex_state = 175, .external_lex_state = 99}, + [11176] = {.lex_state = 178, .external_lex_state = 99}, + [11177] = {.lex_state = 175, .external_lex_state = 99}, + [11178] = {.lex_state = 175, .external_lex_state = 99}, + [11179] = {.lex_state = 175, .external_lex_state = 99}, + [11180] = {.lex_state = 175, .external_lex_state = 99}, + [11181] = {.lex_state = 175, .external_lex_state = 99}, + [11182] = {.lex_state = 175, .external_lex_state = 99}, + [11183] = {.lex_state = 175, .external_lex_state = 99}, + [11184] = {.lex_state = 175, .external_lex_state = 99}, + [11185] = {.lex_state = 175, .external_lex_state = 99}, + [11186] = {.lex_state = 178, .external_lex_state = 99}, + [11187] = {.lex_state = 178, .external_lex_state = 99}, + [11188] = {.lex_state = 175, .external_lex_state = 99}, + [11189] = {.lex_state = 178, .external_lex_state = 99}, + [11190] = {.lex_state = 175, .external_lex_state = 99}, + [11191] = {.lex_state = 175, .external_lex_state = 99}, + [11192] = {.lex_state = 178, .external_lex_state = 99}, + [11193] = {.lex_state = 175, .external_lex_state = 99}, + [11194] = {.lex_state = 178, .external_lex_state = 99}, + [11195] = {.lex_state = 175, .external_lex_state = 99}, + [11196] = {.lex_state = 178, .external_lex_state = 99}, + [11197] = {.lex_state = 178, .external_lex_state = 99}, + [11198] = {.lex_state = 178, .external_lex_state = 99}, + [11199] = {.lex_state = 175, .external_lex_state = 99}, + [11200] = {.lex_state = 178, .external_lex_state = 99}, + [11201] = {.lex_state = 178, .external_lex_state = 99}, + [11202] = {.lex_state = 178, .external_lex_state = 99}, + [11203] = {.lex_state = 175, .external_lex_state = 99}, + [11204] = {.lex_state = 175, .external_lex_state = 99}, + [11205] = {.lex_state = 178, .external_lex_state = 99}, + [11206] = {.lex_state = 175, .external_lex_state = 99}, + [11207] = {.lex_state = 175, .external_lex_state = 99}, + [11208] = {.lex_state = 178, .external_lex_state = 99}, + [11209] = {.lex_state = 175, .external_lex_state = 99}, + [11210] = {.lex_state = 178, .external_lex_state = 99}, + [11211] = {.lex_state = 178, .external_lex_state = 99}, + [11212] = {.lex_state = 175, .external_lex_state = 99}, + [11213] = {.lex_state = 178, .external_lex_state = 99}, + [11214] = {.lex_state = 175, .external_lex_state = 99}, + [11215] = {.lex_state = 175, .external_lex_state = 99}, + [11216] = {.lex_state = 178, .external_lex_state = 99}, + [11217] = {.lex_state = 175, .external_lex_state = 99}, + [11218] = {.lex_state = 175, .external_lex_state = 99}, + [11219] = {.lex_state = 178, .external_lex_state = 99}, + [11220] = {.lex_state = 178, .external_lex_state = 99}, + [11221] = {.lex_state = 178, .external_lex_state = 99}, + [11222] = {.lex_state = 175, .external_lex_state = 99}, + [11223] = {.lex_state = 175, .external_lex_state = 99}, + [11224] = {.lex_state = 178, .external_lex_state = 99}, + [11225] = {.lex_state = 175, .external_lex_state = 99}, + [11226] = {.lex_state = 178, .external_lex_state = 99}, + [11227] = {.lex_state = 175, .external_lex_state = 99}, + [11228] = {.lex_state = 178, .external_lex_state = 99}, + [11229] = {.lex_state = 178, .external_lex_state = 99}, + [11230] = {.lex_state = 178, .external_lex_state = 99}, + [11231] = {.lex_state = 178, .external_lex_state = 99}, + [11232] = {.lex_state = 178, .external_lex_state = 99}, + [11233] = {.lex_state = 178, .external_lex_state = 99}, + [11234] = {.lex_state = 178, .external_lex_state = 99}, + [11235] = {.lex_state = 175, .external_lex_state = 99}, + [11236] = {.lex_state = 178, .external_lex_state = 99}, + [11237] = {.lex_state = 178, .external_lex_state = 99}, + [11238] = {.lex_state = 178, .external_lex_state = 99}, + [11239] = {.lex_state = 175, .external_lex_state = 99}, + [11240] = {.lex_state = 178, .external_lex_state = 99}, + [11241] = {.lex_state = 178, .external_lex_state = 99}, + [11242] = {.lex_state = 178, .external_lex_state = 99}, + [11243] = {.lex_state = 178, .external_lex_state = 99}, + [11244] = {.lex_state = 175, .external_lex_state = 99}, + [11245] = {.lex_state = 178, .external_lex_state = 99}, + [11246] = {.lex_state = 175, .external_lex_state = 99}, + [11247] = {.lex_state = 175, .external_lex_state = 99}, + [11248] = {.lex_state = 178, .external_lex_state = 99}, + [11249] = {.lex_state = 178, .external_lex_state = 99}, + [11250] = {.lex_state = 178, .external_lex_state = 99}, + [11251] = {.lex_state = 178, .external_lex_state = 99}, + [11252] = {.lex_state = 175, .external_lex_state = 99}, + [11253] = {.lex_state = 175, .external_lex_state = 99}, + [11254] = {.lex_state = 178, .external_lex_state = 99}, + [11255] = {.lex_state = 166, .external_lex_state = 99}, + [11256] = {.lex_state = 178, .external_lex_state = 99}, + [11257] = {.lex_state = 178, .external_lex_state = 99}, + [11258] = {.lex_state = 175, .external_lex_state = 99}, + [11259] = {.lex_state = 178, .external_lex_state = 99}, + [11260] = {.lex_state = 175, .external_lex_state = 99}, + [11261] = {.lex_state = 178, .external_lex_state = 99}, + [11262] = {.lex_state = 178, .external_lex_state = 99}, + [11263] = {.lex_state = 175, .external_lex_state = 99}, + [11264] = {.lex_state = 178, .external_lex_state = 99}, + [11265] = {.lex_state = 166, .external_lex_state = 99}, + [11266] = {.lex_state = 175, .external_lex_state = 99}, + [11267] = {.lex_state = 178, .external_lex_state = 99}, + [11268] = {.lex_state = 175, .external_lex_state = 99}, + [11269] = {.lex_state = 178, .external_lex_state = 99}, + [11270] = {.lex_state = 175, .external_lex_state = 99}, + [11271] = {.lex_state = 178, .external_lex_state = 99}, + [11272] = {.lex_state = 178, .external_lex_state = 99}, + [11273] = {.lex_state = 178, .external_lex_state = 99}, + [11274] = {.lex_state = 175, .external_lex_state = 99}, + [11275] = {.lex_state = 175, .external_lex_state = 99}, + [11276] = {.lex_state = 166, .external_lex_state = 99}, + [11277] = {.lex_state = 178, .external_lex_state = 99}, + [11278] = {.lex_state = 178, .external_lex_state = 99}, + [11279] = {.lex_state = 178, .external_lex_state = 99}, + [11280] = {.lex_state = 175, .external_lex_state = 99}, + [11281] = {.lex_state = 178, .external_lex_state = 99}, + [11282] = {.lex_state = 178, .external_lex_state = 99}, + [11283] = {.lex_state = 178, .external_lex_state = 99}, + [11284] = {.lex_state = 178, .external_lex_state = 99}, + [11285] = {.lex_state = 178, .external_lex_state = 99}, + [11286] = {.lex_state = 178, .external_lex_state = 99}, + [11287] = {.lex_state = 175, .external_lex_state = 99}, + [11288] = {.lex_state = 175, .external_lex_state = 99}, + [11289] = {.lex_state = 175, .external_lex_state = 99}, + [11290] = {.lex_state = 175, .external_lex_state = 99}, + [11291] = {.lex_state = 178, .external_lex_state = 99}, + [11292] = {.lex_state = 178, .external_lex_state = 99}, + [11293] = {.lex_state = 175, .external_lex_state = 99}, + [11294] = {.lex_state = 175, .external_lex_state = 99}, + [11295] = {.lex_state = 178, .external_lex_state = 99}, + [11296] = {.lex_state = 175, .external_lex_state = 99}, + [11297] = {.lex_state = 178, .external_lex_state = 99}, + [11298] = {.lex_state = 178, .external_lex_state = 99}, + [11299] = {.lex_state = 178, .external_lex_state = 99}, + [11300] = {.lex_state = 178, .external_lex_state = 99}, + [11301] = {.lex_state = 178, .external_lex_state = 99}, + [11302] = {.lex_state = 175, .external_lex_state = 99}, + [11303] = {.lex_state = 175, .external_lex_state = 99}, + [11304] = {.lex_state = 175, .external_lex_state = 99}, + [11305] = {.lex_state = 178, .external_lex_state = 99}, + [11306] = {.lex_state = 175, .external_lex_state = 99}, + [11307] = {.lex_state = 178, .external_lex_state = 99}, + [11308] = {.lex_state = 175, .external_lex_state = 99}, + [11309] = {.lex_state = 178, .external_lex_state = 99}, + [11310] = {.lex_state = 178, .external_lex_state = 99}, + [11311] = {.lex_state = 178, .external_lex_state = 99}, + [11312] = {.lex_state = 178, .external_lex_state = 99}, + [11313] = {.lex_state = 178, .external_lex_state = 99}, + [11314] = {.lex_state = 175, .external_lex_state = 99}, + [11315] = {.lex_state = 175, .external_lex_state = 99}, + [11316] = {.lex_state = 178, .external_lex_state = 99}, + [11317] = {.lex_state = 175, .external_lex_state = 99}, + [11318] = {.lex_state = 178, .external_lex_state = 99}, + [11319] = {.lex_state = 178, .external_lex_state = 99}, + [11320] = {.lex_state = 178, .external_lex_state = 99}, + [11321] = {.lex_state = 178, .external_lex_state = 99}, + [11322] = {.lex_state = 175, .external_lex_state = 99}, + [11323] = {.lex_state = 175, .external_lex_state = 99}, + [11324] = {.lex_state = 178, .external_lex_state = 99}, + [11325] = {.lex_state = 178, .external_lex_state = 99}, + [11326] = {.lex_state = 178, .external_lex_state = 99}, + [11327] = {.lex_state = 175, .external_lex_state = 99}, + [11328] = {.lex_state = 175, .external_lex_state = 99}, + [11329] = {.lex_state = 175, .external_lex_state = 99}, + [11330] = {.lex_state = 183, .external_lex_state = 99}, + [11331] = {.lex_state = 178, .external_lex_state = 99}, + [11332] = {.lex_state = 175, .external_lex_state = 99}, + [11333] = {.lex_state = 178, .external_lex_state = 99}, + [11334] = {.lex_state = 178, .external_lex_state = 99}, + [11335] = {.lex_state = 178, .external_lex_state = 99}, + [11336] = {.lex_state = 175, .external_lex_state = 99}, + [11337] = {.lex_state = 178, .external_lex_state = 99}, + [11338] = {.lex_state = 175, .external_lex_state = 99}, + [11339] = {.lex_state = 72, .external_lex_state = 99}, + [11340] = {.lex_state = 175, .external_lex_state = 99}, + [11341] = {.lex_state = 178, .external_lex_state = 99}, + [11342] = {.lex_state = 178, .external_lex_state = 99}, + [11343] = {.lex_state = 41, .external_lex_state = 99}, + [11344] = {.lex_state = 175, .external_lex_state = 99}, + [11345] = {.lex_state = 178, .external_lex_state = 99}, + [11346] = {.lex_state = 178, .external_lex_state = 99}, + [11347] = {.lex_state = 178, .external_lex_state = 99}, + [11348] = {.lex_state = 175, .external_lex_state = 99}, + [11349] = {.lex_state = 175, .external_lex_state = 99}, + [11350] = {.lex_state = 178, .external_lex_state = 99}, + [11351] = {.lex_state = 178, .external_lex_state = 99}, + [11352] = {.lex_state = 178, .external_lex_state = 99}, + [11353] = {.lex_state = 175, .external_lex_state = 99}, + [11354] = {.lex_state = 178, .external_lex_state = 99}, + [11355] = {.lex_state = 175, .external_lex_state = 99}, + [11356] = {.lex_state = 175, .external_lex_state = 99}, + [11357] = {.lex_state = 175, .external_lex_state = 99}, + [11358] = {.lex_state = 175, .external_lex_state = 99}, + [11359] = {.lex_state = 178, .external_lex_state = 99}, + [11360] = {.lex_state = 183, .external_lex_state = 99}, + [11361] = {.lex_state = 178, .external_lex_state = 99}, + [11362] = {.lex_state = 175, .external_lex_state = 99}, + [11363] = {.lex_state = 175, .external_lex_state = 99}, + [11364] = {.lex_state = 178, .external_lex_state = 99}, + [11365] = {.lex_state = 178, .external_lex_state = 99}, + [11366] = {.lex_state = 178, .external_lex_state = 99}, + [11367] = {.lex_state = 178, .external_lex_state = 99}, + [11368] = {.lex_state = 175, .external_lex_state = 99}, + [11369] = {.lex_state = 175, .external_lex_state = 99}, + [11370] = {.lex_state = 175, .external_lex_state = 99}, + [11371] = {.lex_state = 178, .external_lex_state = 99}, + [11372] = {.lex_state = 178, .external_lex_state = 99}, + [11373] = {.lex_state = 178, .external_lex_state = 99}, + [11374] = {.lex_state = 178, .external_lex_state = 99}, + [11375] = {.lex_state = 178, .external_lex_state = 99}, + [11376] = {.lex_state = 178, .external_lex_state = 99}, + [11377] = {.lex_state = 175, .external_lex_state = 99}, + [11378] = {.lex_state = 178, .external_lex_state = 99}, + [11379] = {.lex_state = 178, .external_lex_state = 99}, + [11380] = {.lex_state = 178, .external_lex_state = 99}, + [11381] = {.lex_state = 178, .external_lex_state = 99}, + [11382] = {.lex_state = 178, .external_lex_state = 99}, + [11383] = {.lex_state = 178, .external_lex_state = 99}, + [11384] = {.lex_state = 178, .external_lex_state = 99}, + [11385] = {.lex_state = 178, .external_lex_state = 99}, + [11386] = {.lex_state = 175, .external_lex_state = 99}, + [11387] = {.lex_state = 178, .external_lex_state = 99}, + [11388] = {.lex_state = 178, .external_lex_state = 99}, + [11389] = {.lex_state = 178, .external_lex_state = 99}, + [11390] = {.lex_state = 178, .external_lex_state = 99}, + [11391] = {.lex_state = 175, .external_lex_state = 99}, + [11392] = {.lex_state = 72, .external_lex_state = 99}, + [11393] = {.lex_state = 178, .external_lex_state = 99}, + [11394] = {.lex_state = 175, .external_lex_state = 99}, + [11395] = {.lex_state = 178, .external_lex_state = 99}, + [11396] = {.lex_state = 175, .external_lex_state = 99}, + [11397] = {.lex_state = 175, .external_lex_state = 99}, + [11398] = {.lex_state = 178, .external_lex_state = 99}, + [11399] = {.lex_state = 175, .external_lex_state = 99}, + [11400] = {.lex_state = 175, .external_lex_state = 99}, + [11401] = {.lex_state = 175, .external_lex_state = 99}, + [11402] = {.lex_state = 175, .external_lex_state = 99}, + [11403] = {.lex_state = 175, .external_lex_state = 99}, + [11404] = {.lex_state = 166, .external_lex_state = 99}, + [11405] = {.lex_state = 178, .external_lex_state = 99}, + [11406] = {.lex_state = 175, .external_lex_state = 99}, + [11407] = {.lex_state = 178, .external_lex_state = 99}, + [11408] = {.lex_state = 41, .external_lex_state = 99}, + [11409] = {.lex_state = 175, .external_lex_state = 99}, + [11410] = {.lex_state = 178, .external_lex_state = 99}, + [11411] = {.lex_state = 178, .external_lex_state = 99}, + [11412] = {.lex_state = 175, .external_lex_state = 99}, + [11413] = {.lex_state = 178, .external_lex_state = 99}, + [11414] = {.lex_state = 175, .external_lex_state = 99}, + [11415] = {.lex_state = 175, .external_lex_state = 99}, + [11416] = {.lex_state = 178, .external_lex_state = 99}, + [11417] = {.lex_state = 178, .external_lex_state = 99}, + [11418] = {.lex_state = 175, .external_lex_state = 99}, + [11419] = {.lex_state = 178, .external_lex_state = 99}, + [11420] = {.lex_state = 166, .external_lex_state = 99}, + [11421] = {.lex_state = 175, .external_lex_state = 99}, + [11422] = {.lex_state = 175, .external_lex_state = 99}, + [11423] = {.lex_state = 175, .external_lex_state = 99}, + [11424] = {.lex_state = 175, .external_lex_state = 99}, + [11425] = {.lex_state = 178, .external_lex_state = 99}, + [11426] = {.lex_state = 178, .external_lex_state = 99}, + [11427] = {.lex_state = 175, .external_lex_state = 99}, + [11428] = {.lex_state = 178, .external_lex_state = 99}, + [11429] = {.lex_state = 178, .external_lex_state = 99}, + [11430] = {.lex_state = 175, .external_lex_state = 99}, + [11431] = {.lex_state = 175, .external_lex_state = 99}, + [11432] = {.lex_state = 175, .external_lex_state = 99}, + [11433] = {.lex_state = 175, .external_lex_state = 99}, + [11434] = {.lex_state = 175, .external_lex_state = 99}, + [11435] = {.lex_state = 178, .external_lex_state = 99}, + [11436] = {.lex_state = 175, .external_lex_state = 99}, + [11437] = {.lex_state = 178, .external_lex_state = 99}, + [11438] = {.lex_state = 175, .external_lex_state = 99}, + [11439] = {.lex_state = 175, .external_lex_state = 99}, + [11440] = {.lex_state = 175, .external_lex_state = 99}, + [11441] = {.lex_state = 178, .external_lex_state = 99}, + [11442] = {.lex_state = 175, .external_lex_state = 99}, + [11443] = {.lex_state = 178, .external_lex_state = 99}, + [11444] = {.lex_state = 175, .external_lex_state = 99}, + [11445] = {.lex_state = 175, .external_lex_state = 99}, + [11446] = {.lex_state = 178, .external_lex_state = 99}, + [11447] = {.lex_state = 175, .external_lex_state = 99}, + [11448] = {.lex_state = 175, .external_lex_state = 99}, + [11449] = {.lex_state = 175, .external_lex_state = 99}, + [11450] = {.lex_state = 175, .external_lex_state = 99}, + [11451] = {.lex_state = 175, .external_lex_state = 99}, + [11452] = {.lex_state = 178, .external_lex_state = 99}, + [11453] = {.lex_state = 175, .external_lex_state = 99}, + [11454] = {.lex_state = 175, .external_lex_state = 99}, + [11455] = {.lex_state = 175, .external_lex_state = 99}, + [11456] = {.lex_state = 175, .external_lex_state = 99}, + [11457] = {.lex_state = 175, .external_lex_state = 99}, + [11458] = {.lex_state = 175, .external_lex_state = 99}, + [11459] = {.lex_state = 178, .external_lex_state = 99}, + [11460] = {.lex_state = 175, .external_lex_state = 99}, + [11461] = {.lex_state = 178, .external_lex_state = 99}, + [11462] = {.lex_state = 175, .external_lex_state = 99}, + [11463] = {.lex_state = 175, .external_lex_state = 99}, + [11464] = {.lex_state = 175, .external_lex_state = 99}, + [11465] = {.lex_state = 178, .external_lex_state = 99}, + [11466] = {.lex_state = 178, .external_lex_state = 99}, + [11467] = {.lex_state = 178, .external_lex_state = 99}, + [11468] = {.lex_state = 178, .external_lex_state = 99}, + [11469] = {.lex_state = 175, .external_lex_state = 99}, + [11470] = {.lex_state = 178, .external_lex_state = 99}, + [11471] = {.lex_state = 178, .external_lex_state = 99}, + [11472] = {.lex_state = 178, .external_lex_state = 99}, + [11473] = {.lex_state = 178, .external_lex_state = 99}, + [11474] = {.lex_state = 178, .external_lex_state = 99}, + [11475] = {.lex_state = 175, .external_lex_state = 99}, + [11476] = {.lex_state = 175, .external_lex_state = 99}, + [11477] = {.lex_state = 175, .external_lex_state = 99}, + [11478] = {.lex_state = 175, .external_lex_state = 99}, + [11479] = {.lex_state = 178, .external_lex_state = 99}, + [11480] = {.lex_state = 175, .external_lex_state = 99}, + [11481] = {.lex_state = 166, .external_lex_state = 99}, + [11482] = {.lex_state = 175, .external_lex_state = 99}, + [11483] = {.lex_state = 178, .external_lex_state = 99}, + [11484] = {.lex_state = 178, .external_lex_state = 99}, + [11485] = {.lex_state = 175, .external_lex_state = 99}, + [11486] = {.lex_state = 178, .external_lex_state = 99}, + [11487] = {.lex_state = 178, .external_lex_state = 99}, + [11488] = {.lex_state = 178, .external_lex_state = 99}, + [11489] = {.lex_state = 178, .external_lex_state = 99}, + [11490] = {.lex_state = 175, .external_lex_state = 99}, + [11491] = {.lex_state = 178, .external_lex_state = 99}, + [11492] = {.lex_state = 178, .external_lex_state = 99}, + [11493] = {.lex_state = 175, .external_lex_state = 99}, + [11494] = {.lex_state = 175, .external_lex_state = 99}, + [11495] = {.lex_state = 175, .external_lex_state = 99}, + [11496] = {.lex_state = 178, .external_lex_state = 99}, + [11497] = {.lex_state = 175, .external_lex_state = 124}, + [11498] = {.lex_state = 175, .external_lex_state = 99}, + [11499] = {.lex_state = 175, .external_lex_state = 99}, + [11500] = {.lex_state = 175, .external_lex_state = 99}, + [11501] = {.lex_state = 175, .external_lex_state = 99}, + [11502] = {.lex_state = 178, .external_lex_state = 99}, + [11503] = {.lex_state = 175, .external_lex_state = 99}, + [11504] = {.lex_state = 178, .external_lex_state = 99}, + [11505] = {.lex_state = 178, .external_lex_state = 99}, + [11506] = {.lex_state = 175, .external_lex_state = 99}, + [11507] = {.lex_state = 178, .external_lex_state = 99}, + [11508] = {.lex_state = 178, .external_lex_state = 99}, + [11509] = {.lex_state = 178, .external_lex_state = 99}, + [11510] = {.lex_state = 175, .external_lex_state = 99}, + [11511] = {.lex_state = 178, .external_lex_state = 99}, + [11512] = {.lex_state = 183, .external_lex_state = 99}, + [11513] = {.lex_state = 178, .external_lex_state = 99}, + [11514] = {.lex_state = 175, .external_lex_state = 99}, + [11515] = {.lex_state = 175, .external_lex_state = 99}, + [11516] = {.lex_state = 178, .external_lex_state = 99}, + [11517] = {.lex_state = 178, .external_lex_state = 99}, + [11518] = {.lex_state = 175, .external_lex_state = 99}, + [11519] = {.lex_state = 178, .external_lex_state = 99}, + [11520] = {.lex_state = 175, .external_lex_state = 99}, + [11521] = {.lex_state = 178, .external_lex_state = 99}, + [11522] = {.lex_state = 178, .external_lex_state = 99}, + [11523] = {.lex_state = 178, .external_lex_state = 99}, + [11524] = {.lex_state = 178, .external_lex_state = 99}, + [11525] = {.lex_state = 178, .external_lex_state = 99}, + [11526] = {.lex_state = 175, .external_lex_state = 99}, + [11527] = {.lex_state = 175, .external_lex_state = 99}, + [11528] = {.lex_state = 175, .external_lex_state = 99}, + [11529] = {.lex_state = 175, .external_lex_state = 99}, + [11530] = {.lex_state = 166, .external_lex_state = 99}, + [11531] = {.lex_state = 175, .external_lex_state = 99}, + [11532] = {.lex_state = 175, .external_lex_state = 99}, + [11533] = {.lex_state = 72, .external_lex_state = 99}, + [11534] = {.lex_state = 178, .external_lex_state = 99}, + [11535] = {.lex_state = 178, .external_lex_state = 99}, + [11536] = {.lex_state = 178, .external_lex_state = 99}, + [11537] = {.lex_state = 166, .external_lex_state = 99}, + [11538] = {.lex_state = 175, .external_lex_state = 99}, + [11539] = {.lex_state = 178, .external_lex_state = 99}, + [11540] = {.lex_state = 178, .external_lex_state = 99}, + [11541] = {.lex_state = 175, .external_lex_state = 99}, + [11542] = {.lex_state = 178, .external_lex_state = 99}, + [11543] = {.lex_state = 178, .external_lex_state = 99}, + [11544] = {.lex_state = 178, .external_lex_state = 99}, + [11545] = {.lex_state = 178, .external_lex_state = 99}, + [11546] = {.lex_state = 175, .external_lex_state = 99}, + [11547] = {.lex_state = 183, .external_lex_state = 99}, + [11548] = {.lex_state = 178, .external_lex_state = 99}, + [11549] = {.lex_state = 178, .external_lex_state = 99}, + [11550] = {.lex_state = 178, .external_lex_state = 99}, + [11551] = {.lex_state = 178, .external_lex_state = 99}, + [11552] = {.lex_state = 178, .external_lex_state = 99}, + [11553] = {.lex_state = 178, .external_lex_state = 99}, + [11554] = {.lex_state = 178, .external_lex_state = 99}, + [11555] = {.lex_state = 178, .external_lex_state = 99}, + [11556] = {.lex_state = 178, .external_lex_state = 99}, + [11557] = {.lex_state = 178, .external_lex_state = 99}, + [11558] = {.lex_state = 175, .external_lex_state = 99}, + [11559] = {.lex_state = 178, .external_lex_state = 99}, + [11560] = {.lex_state = 178, .external_lex_state = 99}, + [11561] = {.lex_state = 178, .external_lex_state = 99}, + [11562] = {.lex_state = 178, .external_lex_state = 99}, + [11563] = {.lex_state = 178, .external_lex_state = 99}, + [11564] = {.lex_state = 178, .external_lex_state = 99}, + [11565] = {.lex_state = 166, .external_lex_state = 99}, + [11566] = {.lex_state = 178, .external_lex_state = 99}, + [11567] = {.lex_state = 178, .external_lex_state = 99}, + [11568] = {.lex_state = 175, .external_lex_state = 99}, + [11569] = {.lex_state = 178, .external_lex_state = 99}, + [11570] = {.lex_state = 178, .external_lex_state = 99}, + [11571] = {.lex_state = 178, .external_lex_state = 99}, + [11572] = {.lex_state = 175, .external_lex_state = 99}, + [11573] = {.lex_state = 178, .external_lex_state = 99}, + [11574] = {.lex_state = 175, .external_lex_state = 99}, + [11575] = {.lex_state = 175, .external_lex_state = 99}, + [11576] = {.lex_state = 183, .external_lex_state = 99}, + [11577] = {.lex_state = 178, .external_lex_state = 99}, + [11578] = {.lex_state = 178, .external_lex_state = 99}, + [11579] = {.lex_state = 178, .external_lex_state = 99}, + [11580] = {.lex_state = 178, .external_lex_state = 99}, + [11581] = {.lex_state = 178, .external_lex_state = 99}, + [11582] = {.lex_state = 178, .external_lex_state = 99}, + [11583] = {.lex_state = 178, .external_lex_state = 99}, + [11584] = {.lex_state = 178, .external_lex_state = 99}, + [11585] = {.lex_state = 178, .external_lex_state = 99}, + [11586] = {.lex_state = 178, .external_lex_state = 99}, + [11587] = {.lex_state = 178, .external_lex_state = 99}, + [11588] = {.lex_state = 178, .external_lex_state = 99}, + [11589] = {.lex_state = 175, .external_lex_state = 99}, + [11590] = {.lex_state = 175, .external_lex_state = 99}, + [11591] = {.lex_state = 175, .external_lex_state = 99}, + [11592] = {.lex_state = 175, .external_lex_state = 99}, + [11593] = {.lex_state = 178, .external_lex_state = 99}, + [11594] = {.lex_state = 175, .external_lex_state = 99}, + [11595] = {.lex_state = 178, .external_lex_state = 99}, + [11596] = {.lex_state = 178, .external_lex_state = 99}, + [11597] = {.lex_state = 178, .external_lex_state = 99}, + [11598] = {.lex_state = 175, .external_lex_state = 99}, + [11599] = {.lex_state = 178, .external_lex_state = 99}, + [11600] = {.lex_state = 178, .external_lex_state = 99}, + [11601] = {.lex_state = 178, .external_lex_state = 99}, + [11602] = {.lex_state = 72, .external_lex_state = 99}, + [11603] = {.lex_state = 178, .external_lex_state = 99}, + [11604] = {.lex_state = 178, .external_lex_state = 99}, + [11605] = {.lex_state = 178, .external_lex_state = 99}, + [11606] = {.lex_state = 178, .external_lex_state = 99}, + [11607] = {.lex_state = 178, .external_lex_state = 99}, + [11608] = {.lex_state = 178, .external_lex_state = 99}, + [11609] = {.lex_state = 178, .external_lex_state = 99}, + [11610] = {.lex_state = 178, .external_lex_state = 99}, + [11611] = {.lex_state = 178, .external_lex_state = 99}, + [11612] = {.lex_state = 175, .external_lex_state = 99}, + [11613] = {.lex_state = 175, .external_lex_state = 99}, + [11614] = {.lex_state = 178, .external_lex_state = 99}, + [11615] = {.lex_state = 178, .external_lex_state = 99}, + [11616] = {.lex_state = 175, .external_lex_state = 99}, + [11617] = {.lex_state = 175, .external_lex_state = 99}, + [11618] = {.lex_state = 178, .external_lex_state = 99}, + [11619] = {.lex_state = 178, .external_lex_state = 99}, + [11620] = {.lex_state = 178, .external_lex_state = 99}, + [11621] = {.lex_state = 178, .external_lex_state = 99}, + [11622] = {.lex_state = 178, .external_lex_state = 99}, + [11623] = {.lex_state = 178, .external_lex_state = 99}, + [11624] = {.lex_state = 178, .external_lex_state = 99}, + [11625] = {.lex_state = 178, .external_lex_state = 99}, + [11626] = {.lex_state = 178, .external_lex_state = 99}, + [11627] = {.lex_state = 178, .external_lex_state = 99}, + [11628] = {.lex_state = 166, .external_lex_state = 99}, + [11629] = {.lex_state = 175, .external_lex_state = 99}, + [11630] = {.lex_state = 178, .external_lex_state = 99}, + [11631] = {.lex_state = 178, .external_lex_state = 99}, + [11632] = {.lex_state = 175, .external_lex_state = 99}, + [11633] = {.lex_state = 178, .external_lex_state = 99}, + [11634] = {.lex_state = 178, .external_lex_state = 99}, + [11635] = {.lex_state = 175, .external_lex_state = 99}, + [11636] = {.lex_state = 183, .external_lex_state = 99}, + [11637] = {.lex_state = 72, .external_lex_state = 99}, + [11638] = {.lex_state = 178, .external_lex_state = 99}, + [11639] = {.lex_state = 178, .external_lex_state = 99}, + [11640] = {.lex_state = 175, .external_lex_state = 99}, + [11641] = {.lex_state = 175, .external_lex_state = 99}, + [11642] = {.lex_state = 166, .external_lex_state = 99}, + [11643] = {.lex_state = 175, .external_lex_state = 99}, + [11644] = {.lex_state = 178, .external_lex_state = 99}, + [11645] = {.lex_state = 178, .external_lex_state = 99}, + [11646] = {.lex_state = 175, .external_lex_state = 99}, + [11647] = {.lex_state = 178, .external_lex_state = 99}, + [11648] = {.lex_state = 178, .external_lex_state = 99}, + [11649] = {.lex_state = 175, .external_lex_state = 99}, + [11650] = {.lex_state = 166, .external_lex_state = 99}, + [11651] = {.lex_state = 178, .external_lex_state = 99}, + [11652] = {.lex_state = 178, .external_lex_state = 99}, + [11653] = {.lex_state = 175, .external_lex_state = 99}, + [11654] = {.lex_state = 178, .external_lex_state = 99}, + [11655] = {.lex_state = 178, .external_lex_state = 99}, + [11656] = {.lex_state = 175, .external_lex_state = 99}, + [11657] = {.lex_state = 178, .external_lex_state = 99}, + [11658] = {.lex_state = 178, .external_lex_state = 99}, + [11659] = {.lex_state = 178, .external_lex_state = 99}, + [11660] = {.lex_state = 178, .external_lex_state = 99}, + [11661] = {.lex_state = 175, .external_lex_state = 99}, + [11662] = {.lex_state = 175, .external_lex_state = 99}, + [11663] = {.lex_state = 175, .external_lex_state = 99}, + [11664] = {.lex_state = 178, .external_lex_state = 99}, + [11665] = {.lex_state = 178, .external_lex_state = 99}, + [11666] = {.lex_state = 175, .external_lex_state = 99}, + [11667] = {.lex_state = 178, .external_lex_state = 99}, + [11668] = {.lex_state = 178, .external_lex_state = 99}, + [11669] = {.lex_state = 178, .external_lex_state = 99}, + [11670] = {.lex_state = 175, .external_lex_state = 99}, + [11671] = {.lex_state = 178, .external_lex_state = 99}, + [11672] = {.lex_state = 178, .external_lex_state = 99}, + [11673] = {.lex_state = 175, .external_lex_state = 99}, + [11674] = {.lex_state = 175, .external_lex_state = 99}, + [11675] = {.lex_state = 178, .external_lex_state = 99}, + [11676] = {.lex_state = 175, .external_lex_state = 99}, + [11677] = {.lex_state = 175, .external_lex_state = 99}, + [11678] = {.lex_state = 178, .external_lex_state = 99}, + [11679] = {.lex_state = 178, .external_lex_state = 99}, + [11680] = {.lex_state = 72, .external_lex_state = 99}, + [11681] = {.lex_state = 178, .external_lex_state = 99}, + [11682] = {.lex_state = 178, .external_lex_state = 99}, + [11683] = {.lex_state = 178, .external_lex_state = 99}, + [11684] = {.lex_state = 175, .external_lex_state = 99}, + [11685] = {.lex_state = 178, .external_lex_state = 99}, + [11686] = {.lex_state = 178, .external_lex_state = 99}, + [11687] = {.lex_state = 175, .external_lex_state = 99}, + [11688] = {.lex_state = 178, .external_lex_state = 99}, + [11689] = {.lex_state = 178, .external_lex_state = 99}, + [11690] = {.lex_state = 178, .external_lex_state = 99}, + [11691] = {.lex_state = 178, .external_lex_state = 99}, + [11692] = {.lex_state = 178, .external_lex_state = 99}, + [11693] = {.lex_state = 178, .external_lex_state = 99}, + [11694] = {.lex_state = 178, .external_lex_state = 99}, + [11695] = {.lex_state = 178, .external_lex_state = 99}, + [11696] = {.lex_state = 175, .external_lex_state = 99}, + [11697] = {.lex_state = 178, .external_lex_state = 99}, + [11698] = {.lex_state = 175, .external_lex_state = 99}, + [11699] = {.lex_state = 183, .external_lex_state = 99}, + [11700] = {.lex_state = 41, .external_lex_state = 99}, + [11701] = {.lex_state = 183, .external_lex_state = 99}, + [11702] = {.lex_state = 175, .external_lex_state = 99}, + [11703] = {.lex_state = 175, .external_lex_state = 99}, + [11704] = {.lex_state = 178, .external_lex_state = 99}, + [11705] = {.lex_state = 175, .external_lex_state = 99}, + [11706] = {.lex_state = 175, .external_lex_state = 99}, + [11707] = {.lex_state = 175, .external_lex_state = 99}, + [11708] = {.lex_state = 178, .external_lex_state = 99}, + [11709] = {.lex_state = 166, .external_lex_state = 99}, + [11710] = {.lex_state = 178, .external_lex_state = 99}, + [11711] = {.lex_state = 178, .external_lex_state = 99}, + [11712] = {.lex_state = 166, .external_lex_state = 99}, + [11713] = {.lex_state = 175, .external_lex_state = 99}, + [11714] = {.lex_state = 175, .external_lex_state = 99}, + [11715] = {.lex_state = 178, .external_lex_state = 99}, + [11716] = {.lex_state = 175, .external_lex_state = 99}, + [11717] = {.lex_state = 178, .external_lex_state = 99}, + [11718] = {.lex_state = 175, .external_lex_state = 99}, + [11719] = {.lex_state = 72, .external_lex_state = 99}, + [11720] = {.lex_state = 178, .external_lex_state = 99}, + [11721] = {.lex_state = 178, .external_lex_state = 99}, + [11722] = {.lex_state = 178, .external_lex_state = 99}, + [11723] = {.lex_state = 175, .external_lex_state = 99}, + [11724] = {.lex_state = 178, .external_lex_state = 99}, + [11725] = {.lex_state = 178, .external_lex_state = 99}, + [11726] = {.lex_state = 178, .external_lex_state = 99}, + [11727] = {.lex_state = 175, .external_lex_state = 99}, + [11728] = {.lex_state = 178, .external_lex_state = 99}, + [11729] = {.lex_state = 175, .external_lex_state = 99}, + [11730] = {.lex_state = 175, .external_lex_state = 99}, + [11731] = {.lex_state = 175, .external_lex_state = 99}, + [11732] = {.lex_state = 178, .external_lex_state = 99}, + [11733] = {.lex_state = 178, .external_lex_state = 99}, + [11734] = {.lex_state = 178, .external_lex_state = 99}, + [11735] = {.lex_state = 178, .external_lex_state = 99}, + [11736] = {.lex_state = 178, .external_lex_state = 99}, + [11737] = {.lex_state = 178, .external_lex_state = 99}, + [11738] = {.lex_state = 178, .external_lex_state = 99}, + [11739] = {.lex_state = 175, .external_lex_state = 99}, + [11740] = {.lex_state = 175, .external_lex_state = 99}, + [11741] = {.lex_state = 72, .external_lex_state = 99}, + [11742] = {.lex_state = 175, .external_lex_state = 99}, + [11743] = {.lex_state = 178, .external_lex_state = 99}, + [11744] = {.lex_state = 178, .external_lex_state = 99}, + [11745] = {.lex_state = 175, .external_lex_state = 99}, + [11746] = {.lex_state = 178, .external_lex_state = 99}, + [11747] = {.lex_state = 178, .external_lex_state = 99}, + [11748] = {.lex_state = 178, .external_lex_state = 99}, + [11749] = {.lex_state = 178, .external_lex_state = 99}, + [11750] = {.lex_state = 178, .external_lex_state = 99}, + [11751] = {.lex_state = 178, .external_lex_state = 99}, + [11752] = {.lex_state = 178, .external_lex_state = 99}, + [11753] = {.lex_state = 178, .external_lex_state = 99}, + [11754] = {.lex_state = 166, .external_lex_state = 99}, + [11755] = {.lex_state = 178, .external_lex_state = 99}, + [11756] = {.lex_state = 178, .external_lex_state = 99}, + [11757] = {.lex_state = 175, .external_lex_state = 99}, + [11758] = {.lex_state = 178, .external_lex_state = 99}, + [11759] = {.lex_state = 175, .external_lex_state = 99}, + [11760] = {.lex_state = 178, .external_lex_state = 99}, + [11761] = {.lex_state = 175, .external_lex_state = 124}, + [11762] = {.lex_state = 178, .external_lex_state = 99}, + [11763] = {.lex_state = 178, .external_lex_state = 99}, + [11764] = {.lex_state = 178, .external_lex_state = 99}, + [11765] = {.lex_state = 178, .external_lex_state = 99}, + [11766] = {.lex_state = 178, .external_lex_state = 99}, + [11767] = {.lex_state = 178, .external_lex_state = 99}, + [11768] = {.lex_state = 178, .external_lex_state = 99}, + [11769] = {.lex_state = 175, .external_lex_state = 99}, + [11770] = {.lex_state = 178, .external_lex_state = 99}, + [11771] = {.lex_state = 175, .external_lex_state = 99}, + [11772] = {.lex_state = 178, .external_lex_state = 99}, + [11773] = {.lex_state = 178, .external_lex_state = 99}, + [11774] = {.lex_state = 178, .external_lex_state = 99}, + [11775] = {.lex_state = 175, .external_lex_state = 99}, + [11776] = {.lex_state = 178, .external_lex_state = 99}, + [11777] = {.lex_state = 175, .external_lex_state = 99}, + [11778] = {.lex_state = 178, .external_lex_state = 99}, + [11779] = {.lex_state = 175, .external_lex_state = 99}, + [11780] = {.lex_state = 175, .external_lex_state = 99}, + [11781] = {.lex_state = 175, .external_lex_state = 99}, + [11782] = {.lex_state = 72, .external_lex_state = 99}, + [11783] = {.lex_state = 178, .external_lex_state = 99}, + [11784] = {.lex_state = 41, .external_lex_state = 99}, + [11785] = {.lex_state = 178, .external_lex_state = 99}, + [11786] = {.lex_state = 166, .external_lex_state = 99}, + [11787] = {.lex_state = 175, .external_lex_state = 99}, + [11788] = {.lex_state = 178, .external_lex_state = 99}, + [11789] = {.lex_state = 178, .external_lex_state = 99}, + [11790] = {.lex_state = 178, .external_lex_state = 99}, + [11791] = {.lex_state = 178, .external_lex_state = 99}, + [11792] = {.lex_state = 175, .external_lex_state = 99}, + [11793] = {.lex_state = 166, .external_lex_state = 99}, + [11794] = {.lex_state = 175, .external_lex_state = 99}, + [11795] = {.lex_state = 175, .external_lex_state = 99}, + [11796] = {.lex_state = 175, .external_lex_state = 99}, + [11797] = {.lex_state = 175, .external_lex_state = 99}, + [11798] = {.lex_state = 178, .external_lex_state = 99}, + [11799] = {.lex_state = 178, .external_lex_state = 99}, + [11800] = {.lex_state = 178, .external_lex_state = 99}, + [11801] = {.lex_state = 178, .external_lex_state = 99}, + [11802] = {.lex_state = 175, .external_lex_state = 99}, + [11803] = {.lex_state = 178, .external_lex_state = 99}, [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}, - [11808] = {.lex_state = 175, .external_lex_state = 98}, - [11809] = {.lex_state = 41, .external_lex_state = 98}, - [11810] = {.lex_state = 175, .external_lex_state = 98}, - [11811] = {.lex_state = 175, .external_lex_state = 98}, - [11812] = {.lex_state = 175, .external_lex_state = 98}, - [11813] = {.lex_state = 178, .external_lex_state = 98}, - [11814] = {.lex_state = 178, .external_lex_state = 98}, - [11815] = {.lex_state = 178, .external_lex_state = 98}, - [11816] = {.lex_state = 178, .external_lex_state = 98}, - [11817] = {.lex_state = 175, .external_lex_state = 98}, + [11805] = {.lex_state = 175, .external_lex_state = 99}, + [11806] = {.lex_state = 175, .external_lex_state = 99}, + [11807] = {.lex_state = 175, .external_lex_state = 99}, + [11808] = {.lex_state = 175, .external_lex_state = 99}, + [11809] = {.lex_state = 178, .external_lex_state = 99}, + [11810] = {.lex_state = 175, .external_lex_state = 99}, + [11811] = {.lex_state = 175, .external_lex_state = 99}, + [11812] = {.lex_state = 175, .external_lex_state = 99}, + [11813] = {.lex_state = 175, .external_lex_state = 99}, + [11814] = {.lex_state = 178, .external_lex_state = 99}, + [11815] = {.lex_state = 178, .external_lex_state = 99}, + [11816] = {.lex_state = 178, .external_lex_state = 99}, + [11817] = {.lex_state = 178, .external_lex_state = 99}, [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}, - [11822] = {.lex_state = 178, .external_lex_state = 98}, - [11823] = {.lex_state = 175, .external_lex_state = 98}, - [11824] = {.lex_state = 175, .external_lex_state = 98}, - [11825] = {.lex_state = 175, .external_lex_state = 98}, - [11826] = {.lex_state = 175, .external_lex_state = 98}, - [11827] = {.lex_state = 175, .external_lex_state = 98}, - [11828] = {.lex_state = 178, .external_lex_state = 98}, - [11829] = {.lex_state = 178, .external_lex_state = 98}, - [11830] = {.lex_state = 178, .external_lex_state = 98}, - [11831] = {.lex_state = 175, .external_lex_state = 98}, + [11819] = {.lex_state = 175, .external_lex_state = 99}, + [11820] = {.lex_state = 178, .external_lex_state = 99}, + [11821] = {.lex_state = 178, .external_lex_state = 99}, + [11822] = {.lex_state = 178, .external_lex_state = 99}, + [11823] = {.lex_state = 175, .external_lex_state = 99}, + [11824] = {.lex_state = 175, .external_lex_state = 99}, + [11825] = {.lex_state = 175, .external_lex_state = 99}, + [11826] = {.lex_state = 175, .external_lex_state = 99}, + [11827] = {.lex_state = 178, .external_lex_state = 99}, + [11828] = {.lex_state = 175, .external_lex_state = 99}, + [11829] = {.lex_state = 178, .external_lex_state = 99}, + [11830] = {.lex_state = 175, .external_lex_state = 99}, + [11831] = {.lex_state = 178, .external_lex_state = 99}, [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}, - [11836] = {.lex_state = 178, .external_lex_state = 98}, - [11837] = {.lex_state = 178, .external_lex_state = 98}, - [11838] = {.lex_state = 175, .external_lex_state = 98}, - [11839] = {.lex_state = 175, .external_lex_state = 98}, - [11840] = {.lex_state = 175, .external_lex_state = 98}, - [11841] = {.lex_state = 175, .external_lex_state = 98}, - [11842] = {.lex_state = 175, .external_lex_state = 98}, - [11843] = {.lex_state = 178, .external_lex_state = 98}, - [11844] = {.lex_state = 178, .external_lex_state = 98}, - [11845] = {.lex_state = 178, .external_lex_state = 98}, + [11833] = {.lex_state = 175, .external_lex_state = 99}, + [11834] = {.lex_state = 175, .external_lex_state = 99}, + [11835] = {.lex_state = 175, .external_lex_state = 99}, + [11836] = {.lex_state = 175, .external_lex_state = 99}, + [11837] = {.lex_state = 178, .external_lex_state = 99}, + [11838] = {.lex_state = 175, .external_lex_state = 99}, + [11839] = {.lex_state = 175, .external_lex_state = 99}, + [11840] = {.lex_state = 175, .external_lex_state = 99}, + [11841] = {.lex_state = 178, .external_lex_state = 99}, + [11842] = {.lex_state = 178, .external_lex_state = 99}, + [11843] = {.lex_state = 178, .external_lex_state = 99}, + [11844] = {.lex_state = 178, .external_lex_state = 99}, + [11845] = {.lex_state = 175, .external_lex_state = 99}, [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}, - [11850] = {.lex_state = 183, .external_lex_state = 98}, - [11851] = {.lex_state = 183, .external_lex_state = 98}, - [11852] = {.lex_state = 175, .external_lex_state = 98}, - [11853] = {.lex_state = 175, .external_lex_state = 98}, - [11854] = {.lex_state = 175, .external_lex_state = 98}, - [11855] = {.lex_state = 175, .external_lex_state = 98}, - [11856] = {.lex_state = 178, .external_lex_state = 98}, - [11857] = {.lex_state = 178, .external_lex_state = 98}, - [11858] = {.lex_state = 175, .external_lex_state = 98}, - [11859] = {.lex_state = 175, .external_lex_state = 98}, + [11847] = {.lex_state = 175, .external_lex_state = 99}, + [11848] = {.lex_state = 175, .external_lex_state = 99}, + [11849] = {.lex_state = 178, .external_lex_state = 99}, + [11850] = {.lex_state = 178, .external_lex_state = 99}, + [11851] = {.lex_state = 175, .external_lex_state = 99}, + [11852] = {.lex_state = 175, .external_lex_state = 99}, + [11853] = {.lex_state = 175, .external_lex_state = 99}, + [11854] = {.lex_state = 175, .external_lex_state = 99}, + [11855] = {.lex_state = 178, .external_lex_state = 99}, + [11856] = {.lex_state = 175, .external_lex_state = 99}, + [11857] = {.lex_state = 178, .external_lex_state = 99}, + [11858] = {.lex_state = 175, .external_lex_state = 99}, + [11859] = {.lex_state = 178, .external_lex_state = 99}, [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}, - [11864] = {.lex_state = 175, .external_lex_state = 98}, - [11865] = {.lex_state = 175, .external_lex_state = 98}, - [11866] = {.lex_state = 175, .external_lex_state = 98}, - [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 = 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}, - [11874] = {.lex_state = 175, .external_lex_state = 98}, - [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 = 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}, - [11882] = {.lex_state = 178, .external_lex_state = 98}, - [11883] = {.lex_state = 178, .external_lex_state = 98}, - [11884] = {.lex_state = 183, .external_lex_state = 98}, - [11885] = {.lex_state = 175, .external_lex_state = 98}, - [11886] = {.lex_state = 178, .external_lex_state = 98}, - [11887] = {.lex_state = 178, .external_lex_state = 98}, - [11888] = {.lex_state = 178, .external_lex_state = 98}, - [11889] = {.lex_state = 175, .external_lex_state = 98}, - [11890] = {.lex_state = 178, .external_lex_state = 98}, - [11891] = {.lex_state = 178, .external_lex_state = 98}, - [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 = 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}, - [11899] = {.lex_state = 175, .external_lex_state = 98}, - [11900] = {.lex_state = 178, .external_lex_state = 98}, - [11901] = {.lex_state = 178, .external_lex_state = 98}, - [11902] = {.lex_state = 175, .external_lex_state = 98}, - [11903] = {.lex_state = 178, .external_lex_state = 98}, - [11904] = {.lex_state = 175, .external_lex_state = 98}, - [11905] = {.lex_state = 175, .external_lex_state = 98}, - [11906] = {.lex_state = 175, .external_lex_state = 98}, - [11907] = {.lex_state = 175, .external_lex_state = 98}, - [11908] = {.lex_state = 178, .external_lex_state = 98}, - [11909] = {.lex_state = 178, .external_lex_state = 98}, - [11910] = {.lex_state = 166, .external_lex_state = 98}, - [11911] = {.lex_state = 178, .external_lex_state = 98}, - [11912] = {.lex_state = 175, .external_lex_state = 98}, - [11913] = {.lex_state = 178, .external_lex_state = 98}, - [11914] = {.lex_state = 178, .external_lex_state = 98}, - [11915] = {.lex_state = 175, .external_lex_state = 98}, - [11916] = {.lex_state = 178, .external_lex_state = 98}, - [11917] = {.lex_state = 175, .external_lex_state = 98}, - [11918] = {.lex_state = 175, .external_lex_state = 98}, - [11919] = {.lex_state = 175, .external_lex_state = 98}, - [11920] = {.lex_state = 178, .external_lex_state = 98}, - [11921] = {.lex_state = 178, .external_lex_state = 98}, - [11922] = {.lex_state = 178, .external_lex_state = 98}, - [11923] = {.lex_state = 178, .external_lex_state = 98}, - [11924] = {.lex_state = 178, .external_lex_state = 98}, - [11925] = {.lex_state = 175, .external_lex_state = 98}, - [11926] = {.lex_state = 72, .external_lex_state = 98}, - [11927] = {.lex_state = 178, .external_lex_state = 98}, - [11928] = {.lex_state = 178, .external_lex_state = 98}, - [11929] = {.lex_state = 175, .external_lex_state = 98}, - [11930] = {.lex_state = 175, .external_lex_state = 98}, - [11931] = {.lex_state = 178, .external_lex_state = 98}, - [11932] = {.lex_state = 178, .external_lex_state = 98}, - [11933] = {.lex_state = 175, .external_lex_state = 98}, - [11934] = {.lex_state = 178, .external_lex_state = 98}, - [11935] = {.lex_state = 178, .external_lex_state = 98}, - [11936] = {.lex_state = 175, .external_lex_state = 98}, - [11937] = {.lex_state = 178, .external_lex_state = 98}, - [11938] = {.lex_state = 178, .external_lex_state = 98}, - [11939] = {.lex_state = 175, .external_lex_state = 98}, - [11940] = {.lex_state = 178, .external_lex_state = 98}, - [11941] = {.lex_state = 178, .external_lex_state = 98}, - [11942] = {.lex_state = 72, .external_lex_state = 98}, - [11943] = {.lex_state = 178, .external_lex_state = 98}, - [11944] = {.lex_state = 178, .external_lex_state = 98}, - [11945] = {.lex_state = 178, .external_lex_state = 98}, - [11946] = {.lex_state = 175, .external_lex_state = 98}, - [11947] = {.lex_state = 175, .external_lex_state = 98}, - [11948] = {.lex_state = 175, .external_lex_state = 98}, - [11949] = {.lex_state = 175, .external_lex_state = 98}, - [11950] = {.lex_state = 175, .external_lex_state = 98}, - [11951] = {.lex_state = 166, .external_lex_state = 98}, - [11952] = {.lex_state = 178, .external_lex_state = 98}, - [11953] = {.lex_state = 178, .external_lex_state = 98}, - [11954] = {.lex_state = 178, .external_lex_state = 98}, - [11955] = {.lex_state = 178, .external_lex_state = 98}, - [11956] = {.lex_state = 178, .external_lex_state = 98}, - [11957] = {.lex_state = 178, .external_lex_state = 98}, - [11958] = {.lex_state = 175, .external_lex_state = 98}, - [11959] = {.lex_state = 178, .external_lex_state = 98}, - [11960] = {.lex_state = 175, .external_lex_state = 98}, - [11961] = {.lex_state = 175, .external_lex_state = 98}, - [11962] = {.lex_state = 175, .external_lex_state = 98}, - [11963] = {.lex_state = 175, .external_lex_state = 98}, - [11964] = {.lex_state = 178, .external_lex_state = 98}, - [11965] = {.lex_state = 178, .external_lex_state = 98}, - [11966] = {.lex_state = 178, .external_lex_state = 98}, - [11967] = {.lex_state = 175, .external_lex_state = 98}, - [11968] = {.lex_state = 175, .external_lex_state = 98}, - [11969] = {.lex_state = 175, .external_lex_state = 98}, - [11970] = {.lex_state = 175, .external_lex_state = 98}, - [11971] = {.lex_state = 175, .external_lex_state = 98}, - [11972] = {.lex_state = 175, .external_lex_state = 98}, - [11973] = {.lex_state = 175, .external_lex_state = 98}, - [11974] = {.lex_state = 175, .external_lex_state = 98}, - [11975] = {.lex_state = 175, .external_lex_state = 98}, - [11976] = {.lex_state = 175, .external_lex_state = 98}, - [11977] = {.lex_state = 175, .external_lex_state = 98}, - [11978] = {.lex_state = 175, .external_lex_state = 98}, - [11979] = {.lex_state = 175, .external_lex_state = 98}, - [11980] = {.lex_state = 175, .external_lex_state = 98}, - [11981] = {(TSStateId)(-1)}, - [11982] = {(TSStateId)(-1)}, + [11861] = {.lex_state = 175, .external_lex_state = 99}, + [11862] = {.lex_state = 175, .external_lex_state = 99}, + [11863] = {.lex_state = 175, .external_lex_state = 99}, + [11864] = {.lex_state = 175, .external_lex_state = 99}, + [11865] = {.lex_state = 178, .external_lex_state = 99}, + [11866] = {.lex_state = 175, .external_lex_state = 99}, + [11867] = {.lex_state = 175, .external_lex_state = 99}, + [11868] = {.lex_state = 175, .external_lex_state = 99}, + [11869] = {.lex_state = 175, .external_lex_state = 99}, + [11870] = {.lex_state = 175, .external_lex_state = 99}, + [11871] = {.lex_state = 178, .external_lex_state = 99}, + [11872] = {.lex_state = 178, .external_lex_state = 99}, + [11873] = {.lex_state = 175, .external_lex_state = 99}, + [11874] = {.lex_state = 175, .external_lex_state = 124}, + [11875] = {.lex_state = 175, .external_lex_state = 99}, + [11876] = {.lex_state = 178, .external_lex_state = 99}, + [11877] = {.lex_state = 175, .external_lex_state = 99}, + [11878] = {.lex_state = 178, .external_lex_state = 99}, + [11879] = {.lex_state = 178, .external_lex_state = 99}, + [11880] = {.lex_state = 175, .external_lex_state = 99}, + [11881] = {.lex_state = 175, .external_lex_state = 99}, + [11882] = {.lex_state = 175, .external_lex_state = 99}, + [11883] = {.lex_state = 178, .external_lex_state = 99}, + [11884] = {.lex_state = 178, .external_lex_state = 99}, + [11885] = {.lex_state = 178, .external_lex_state = 99}, + [11886] = {.lex_state = 178, .external_lex_state = 99}, + [11887] = {.lex_state = 178, .external_lex_state = 99}, + [11888] = {.lex_state = 175, .external_lex_state = 124}, + [11889] = {.lex_state = 175, .external_lex_state = 99}, + [11890] = {.lex_state = 178, .external_lex_state = 99}, + [11891] = {.lex_state = 178, .external_lex_state = 99}, + [11892] = {.lex_state = 178, .external_lex_state = 99}, + [11893] = {.lex_state = 175, .external_lex_state = 99}, + [11894] = {.lex_state = 175, .external_lex_state = 99}, + [11895] = {.lex_state = 175, .external_lex_state = 99}, + [11896] = {.lex_state = 175, .external_lex_state = 99}, + [11897] = {.lex_state = 178, .external_lex_state = 99}, + [11898] = {.lex_state = 178, .external_lex_state = 99}, + [11899] = {.lex_state = 178, .external_lex_state = 99}, + [11900] = {.lex_state = 178, .external_lex_state = 99}, + [11901] = {.lex_state = 72, .external_lex_state = 99}, + [11902] = {.lex_state = 175, .external_lex_state = 124}, + [11903] = {.lex_state = 175, .external_lex_state = 99}, + [11904] = {.lex_state = 178, .external_lex_state = 99}, + [11905] = {.lex_state = 175, .external_lex_state = 99}, + [11906] = {.lex_state = 178, .external_lex_state = 99}, + [11907] = {.lex_state = 178, .external_lex_state = 99}, + [11908] = {.lex_state = 175, .external_lex_state = 99}, + [11909] = {.lex_state = 175, .external_lex_state = 99}, + [11910] = {.lex_state = 175, .external_lex_state = 99}, + [11911] = {.lex_state = 175, .external_lex_state = 99}, + [11912] = {.lex_state = 175, .external_lex_state = 99}, + [11913] = {.lex_state = 178, .external_lex_state = 99}, + [11914] = {.lex_state = 178, .external_lex_state = 99}, + [11915] = {.lex_state = 175, .external_lex_state = 99}, + [11916] = {.lex_state = 175, .external_lex_state = 124}, + [11917] = {.lex_state = 175, .external_lex_state = 99}, + [11918] = {.lex_state = 178, .external_lex_state = 99}, + [11919] = {.lex_state = 175, .external_lex_state = 99}, + [11920] = {.lex_state = 175, .external_lex_state = 99}, + [11921] = {.lex_state = 72, .external_lex_state = 99}, + [11922] = {.lex_state = 175, .external_lex_state = 99}, + [11923] = {.lex_state = 175, .external_lex_state = 99}, + [11924] = {.lex_state = 175, .external_lex_state = 99}, + [11925] = {.lex_state = 178, .external_lex_state = 99}, + [11926] = {.lex_state = 178, .external_lex_state = 99}, + [11927] = {.lex_state = 178, .external_lex_state = 99}, + [11928] = {.lex_state = 175, .external_lex_state = 99}, + [11929] = {.lex_state = 178, .external_lex_state = 99}, + [11930] = {.lex_state = 175, .external_lex_state = 124}, + [11931] = {.lex_state = 175, .external_lex_state = 99}, + [11932] = {.lex_state = 178, .external_lex_state = 99}, + [11933] = {.lex_state = 178, .external_lex_state = 99}, + [11934] = {.lex_state = 178, .external_lex_state = 99}, + [11935] = {.lex_state = 178, .external_lex_state = 99}, + [11936] = {.lex_state = 175, .external_lex_state = 99}, + [11937] = {.lex_state = 175, .external_lex_state = 99}, + [11938] = {.lex_state = 175, .external_lex_state = 99}, + [11939] = {.lex_state = 178, .external_lex_state = 99}, + [11940] = {.lex_state = 175, .external_lex_state = 99}, + [11941] = {.lex_state = 178, .external_lex_state = 99}, + [11942] = {.lex_state = 72, .external_lex_state = 99}, + [11943] = {.lex_state = 178, .external_lex_state = 99}, + [11944] = {.lex_state = 175, .external_lex_state = 124}, + [11945] = {.lex_state = 175, .external_lex_state = 99}, + [11946] = {.lex_state = 175, .external_lex_state = 99}, + [11947] = {.lex_state = 178, .external_lex_state = 99}, + [11948] = {.lex_state = 175, .external_lex_state = 99}, + [11949] = {.lex_state = 175, .external_lex_state = 99}, + [11950] = {.lex_state = 175, .external_lex_state = 99}, + [11951] = {.lex_state = 175, .external_lex_state = 99}, + [11952] = {.lex_state = 175, .external_lex_state = 99}, + [11953] = {.lex_state = 175, .external_lex_state = 99}, + [11954] = {.lex_state = 178, .external_lex_state = 99}, + [11955] = {.lex_state = 178, .external_lex_state = 99}, + [11956] = {.lex_state = 178, .external_lex_state = 99}, + [11957] = {.lex_state = 178, .external_lex_state = 99}, + [11958] = {.lex_state = 175, .external_lex_state = 124}, + [11959] = {.lex_state = 175, .external_lex_state = 99}, + [11960] = {.lex_state = 178, .external_lex_state = 99}, + [11961] = {.lex_state = 178, .external_lex_state = 99}, + [11962] = {.lex_state = 175, .external_lex_state = 99}, + [11963] = {.lex_state = 175, .external_lex_state = 99}, + [11964] = {.lex_state = 175, .external_lex_state = 99}, + [11965] = {.lex_state = 178, .external_lex_state = 99}, + [11966] = {.lex_state = 178, .external_lex_state = 99}, + [11967] = {.lex_state = 175, .external_lex_state = 99}, + [11968] = {.lex_state = 175, .external_lex_state = 124}, + [11969] = {.lex_state = 175, .external_lex_state = 99}, + [11970] = {.lex_state = 178, .external_lex_state = 99}, + [11971] = {.lex_state = 178, .external_lex_state = 99}, + [11972] = {.lex_state = 175, .external_lex_state = 99}, + [11973] = {.lex_state = 178, .external_lex_state = 99}, + [11974] = {.lex_state = 178, .external_lex_state = 99}, + [11975] = {.lex_state = 178, .external_lex_state = 99}, + [11976] = {.lex_state = 175, .external_lex_state = 124}, + [11977] = {.lex_state = 178, .external_lex_state = 99}, + [11978] = {.lex_state = 178, .external_lex_state = 99}, + [11979] = {.lex_state = 175, .external_lex_state = 99}, + [11980] = {.lex_state = 178, .external_lex_state = 99}, + [11981] = {.lex_state = 178, .external_lex_state = 99}, + [11982] = {.lex_state = 178, .external_lex_state = 99}, + [11983] = {.lex_state = 175, .external_lex_state = 99}, + [11984] = {.lex_state = 178, .external_lex_state = 99}, + [11985] = {.lex_state = 178, .external_lex_state = 99}, + [11986] = {.lex_state = 178, .external_lex_state = 99}, + [11987] = {.lex_state = 175, .external_lex_state = 99}, + [11988] = {.lex_state = 178, .external_lex_state = 99}, + [11989] = {.lex_state = 175, .external_lex_state = 99}, + [11990] = {.lex_state = 178, .external_lex_state = 99}, + [11991] = {.lex_state = 175, .external_lex_state = 99}, + [11992] = {.lex_state = 178, .external_lex_state = 99}, + [11993] = {.lex_state = 175, .external_lex_state = 99}, + [11994] = {.lex_state = 175, .external_lex_state = 99}, + [11995] = {.lex_state = 178, .external_lex_state = 99}, + [11996] = {.lex_state = 178, .external_lex_state = 99}, + [11997] = {.lex_state = 175, .external_lex_state = 99}, + [11998] = {.lex_state = 178, .external_lex_state = 99}, + [11999] = {.lex_state = 178, .external_lex_state = 99}, + [12000] = {.lex_state = 175, .external_lex_state = 99}, + [12001] = {.lex_state = 175, .external_lex_state = 99}, + [12002] = {.lex_state = 175, .external_lex_state = 99}, + [12003] = {.lex_state = 175, .external_lex_state = 99}, + [12004] = {.lex_state = 178, .external_lex_state = 99}, + [12005] = {.lex_state = 175, .external_lex_state = 99}, + [12006] = {.lex_state = 178, .external_lex_state = 99}, + [12007] = {.lex_state = 175, .external_lex_state = 99}, + [12008] = {.lex_state = 178, .external_lex_state = 99}, + [12009] = {.lex_state = 175, .external_lex_state = 99}, + [12010] = {.lex_state = 178, .external_lex_state = 99}, + [12011] = {.lex_state = 175, .external_lex_state = 99}, + [12012] = {.lex_state = 178, .external_lex_state = 99}, + [12013] = {.lex_state = 178, .external_lex_state = 99}, + [12014] = {.lex_state = 175, .external_lex_state = 99}, + [12015] = {.lex_state = 175, .external_lex_state = 99}, + [12016] = {.lex_state = 175, .external_lex_state = 99}, + [12017] = {.lex_state = 178, .external_lex_state = 99}, + [12018] = {.lex_state = 178, .external_lex_state = 99}, + [12019] = {.lex_state = 178, .external_lex_state = 99}, + [12020] = {.lex_state = 178, .external_lex_state = 99}, + [12021] = {.lex_state = 178, .external_lex_state = 99}, + [12022] = {.lex_state = 178, .external_lex_state = 99}, + [12023] = {.lex_state = 178, .external_lex_state = 99}, + [12024] = {.lex_state = 178, .external_lex_state = 99}, + [12025] = {.lex_state = 178, .external_lex_state = 99}, + [12026] = {.lex_state = 178, .external_lex_state = 99}, + [12027] = {.lex_state = 178, .external_lex_state = 99}, + [12028] = {.lex_state = 175, .external_lex_state = 99}, + [12029] = {.lex_state = 175, .external_lex_state = 99}, + [12030] = {.lex_state = 178, .external_lex_state = 99}, + [12031] = {.lex_state = 178, .external_lex_state = 99}, + [12032] = {.lex_state = 178, .external_lex_state = 99}, + [12033] = {.lex_state = 178, .external_lex_state = 99}, + [12034] = {.lex_state = 72, .external_lex_state = 99}, + [12035] = {.lex_state = 178, .external_lex_state = 99}, + [12036] = {.lex_state = 178, .external_lex_state = 99}, + [12037] = {.lex_state = 178, .external_lex_state = 99}, + [12038] = {.lex_state = 178, .external_lex_state = 99}, + [12039] = {.lex_state = 178, .external_lex_state = 99}, + [12040] = {.lex_state = 178, .external_lex_state = 99}, + [12041] = {.lex_state = 178, .external_lex_state = 99}, + [12042] = {.lex_state = 178, .external_lex_state = 99}, + [12043] = {.lex_state = 166, .external_lex_state = 99}, + [12044] = {.lex_state = 175, .external_lex_state = 99}, + [12045] = {.lex_state = 178, .external_lex_state = 99}, + [12046] = {.lex_state = 178, .external_lex_state = 99}, + [12047] = {.lex_state = 178, .external_lex_state = 99}, + [12048] = {.lex_state = 175, .external_lex_state = 99}, + [12049] = {.lex_state = 178, .external_lex_state = 99}, + [12050] = {.lex_state = 178, .external_lex_state = 99}, + [12051] = {.lex_state = 178, .external_lex_state = 99}, + [12052] = {.lex_state = 166, .external_lex_state = 99}, + [12053] = {.lex_state = 166, .external_lex_state = 99}, + [12054] = {.lex_state = 175, .external_lex_state = 99}, + [12055] = {.lex_state = 178, .external_lex_state = 99}, + [12056] = {.lex_state = 178, .external_lex_state = 99}, + [12057] = {.lex_state = 175, .external_lex_state = 99}, + [12058] = {.lex_state = 178, .external_lex_state = 99}, + [12059] = {.lex_state = 178, .external_lex_state = 99}, + [12060] = {.lex_state = 175, .external_lex_state = 99}, + [12061] = {.lex_state = 175, .external_lex_state = 99}, + [12062] = {.lex_state = 175, .external_lex_state = 99}, + [12063] = {.lex_state = 175, .external_lex_state = 99}, + [12064] = {.lex_state = 178, .external_lex_state = 99}, + [12065] = {.lex_state = 175, .external_lex_state = 99}, + [12066] = {.lex_state = 175, .external_lex_state = 99}, + [12067] = {.lex_state = 175, .external_lex_state = 99}, + [12068] = {.lex_state = 175, .external_lex_state = 99}, + [12069] = {.lex_state = 175, .external_lex_state = 99}, + [12070] = {.lex_state = 175, .external_lex_state = 99}, + [12071] = {.lex_state = 175, .external_lex_state = 99}, + [12072] = {.lex_state = 175, .external_lex_state = 99}, + [12073] = {.lex_state = 175, .external_lex_state = 99}, + [12074] = {.lex_state = 175, .external_lex_state = 99}, + [12075] = {.lex_state = 175, .external_lex_state = 99}, + [12076] = {.lex_state = 175, .external_lex_state = 99}, + [12077] = {.lex_state = 175, .external_lex_state = 99}, + [12078] = {.lex_state = 175, .external_lex_state = 99}, + [12079] = {(TSStateId)(-1)}, + [12080] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -32437,6 +32657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_when] = ACTIONS(1), [anon_sym_then] = ACTIONS(1), [anon_sym_case] = ACTIONS(1), + [anon_sym_select] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), [sym__line_break] = ACTIONS(1), [sym__line_continuation] = ACTIONS(5), @@ -32496,95 +32717,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_recovery] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(11460), - [sym__statements] = STATE(11538), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym_source_file] = STATE(11529), + [sym__statements] = STATE(11757), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [ts_builtin_sym_end] = ACTIONS(9), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), @@ -32643,5148 +32865,5395 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [2] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2533), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2478), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(2), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2535), - [sym_double_splat] = STATE(2535), - [sym_named_expr] = STATE(2535), - [sym_argument_list_no_parens] = STATE(2457), - [sym_argument_list_no_parens_with_block] = STATE(2663), - [sym_argument_list_with_parens] = STATE(2457), - [sym_argument_list_with_parens_and_block] = STATE(2663), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_do_end_block] = STATE(2664), - [sym_brace_block] = STATE(2665), - [sym_block_argument] = STATE(2638), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(133), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(133), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(163), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_COLON] = ACTIONS(187), - [anon_sym_LPAREN2] = ACTIONS(189), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(191), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(191), - [anon_sym_DASH_EQ] = ACTIONS(191), - [anon_sym_AMP_DASH_EQ] = ACTIONS(191), - [anon_sym_STAR_EQ] = ACTIONS(191), - [anon_sym_AMP_STAR_EQ] = ACTIONS(191), - [anon_sym_SLASH_EQ] = ACTIONS(191), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(191), - [anon_sym_PERCENT_EQ] = ACTIONS(191), - [anon_sym_PIPE_EQ] = ACTIONS(191), - [anon_sym_AMP_EQ] = ACTIONS(191), - [anon_sym_CARET_EQ] = ACTIONS(191), - [anon_sym_STAR_STAR_EQ] = ACTIONS(191), - [anon_sym_LT_LT_EQ] = ACTIONS(191), - [anon_sym_GT_GT_EQ] = ACTIONS(191), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(191), - [anon_sym_AMP_AMP_EQ] = ACTIONS(191), - [anon_sym_COLON2] = ACTIONS(193), - [anon_sym_do] = ACTIONS(155), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(155), - [anon_sym_else] = ACTIONS(155), - [anon_sym_when] = ACTIONS(155), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(155), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(203), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(213), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(215), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(217), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(239), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2479), + [sym_double_splat] = STATE(2479), + [sym_named_expr] = STATE(2479), + [sym_argument_list_no_parens] = STATE(2447), + [sym_argument_list_no_parens_with_block] = STATE(2894), + [sym_argument_list_with_parens] = STATE(2447), + [sym_argument_list_with_parens_and_block] = STATE(2894), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_do_end_block] = STATE(2895), + [sym_brace_block] = STATE(2896), + [sym_block_argument] = STATE(3125), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(135), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(135), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(189), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(193), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(193), + [anon_sym_DASH_EQ] = ACTIONS(193), + [anon_sym_AMP_DASH_EQ] = ACTIONS(193), + [anon_sym_STAR_EQ] = ACTIONS(193), + [anon_sym_AMP_STAR_EQ] = ACTIONS(193), + [anon_sym_SLASH_EQ] = ACTIONS(193), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(193), + [anon_sym_PERCENT_EQ] = ACTIONS(193), + [anon_sym_PIPE_EQ] = ACTIONS(193), + [anon_sym_AMP_EQ] = ACTIONS(193), + [anon_sym_CARET_EQ] = ACTIONS(193), + [anon_sym_STAR_STAR_EQ] = ACTIONS(193), + [anon_sym_LT_LT_EQ] = ACTIONS(193), + [anon_sym_GT_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(193), + [anon_sym_AMP_AMP_EQ] = ACTIONS(193), + [anon_sym_COLON2] = ACTIONS(195), + [anon_sym_do] = ACTIONS(197), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(157), + [anon_sym_else] = ACTIONS(157), + [anon_sym_when] = ACTIONS(157), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(157), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(209), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(219), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(221), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(223), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(245), }, [3] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2501), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2507), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(3), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2502), - [sym_double_splat] = STATE(2502), - [sym_named_expr] = STATE(2502), - [sym_argument_list_no_parens] = STATE(2445), - [sym_argument_list_no_parens_with_block] = STATE(3107), - [sym_argument_list_with_parens] = STATE(2445), - [sym_argument_list_with_parens_and_block] = STATE(3107), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_do_end_block] = STATE(3120), - [sym_brace_block] = STATE(3140), - [sym_block_argument] = STATE(3029), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(133), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(133), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(241), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_COLON] = ACTIONS(243), - [anon_sym_LPAREN2] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(247), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(247), - [anon_sym_DASH_EQ] = ACTIONS(247), - [anon_sym_AMP_DASH_EQ] = ACTIONS(247), - [anon_sym_STAR_EQ] = ACTIONS(247), - [anon_sym_AMP_STAR_EQ] = ACTIONS(247), - [anon_sym_SLASH_EQ] = ACTIONS(247), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(247), - [anon_sym_PERCENT_EQ] = ACTIONS(247), - [anon_sym_PIPE_EQ] = ACTIONS(247), - [anon_sym_AMP_EQ] = ACTIONS(247), - [anon_sym_CARET_EQ] = ACTIONS(247), - [anon_sym_STAR_STAR_EQ] = ACTIONS(247), - [anon_sym_LT_LT_EQ] = ACTIONS(247), - [anon_sym_GT_GT_EQ] = ACTIONS(247), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(247), - [anon_sym_AMP_AMP_EQ] = ACTIONS(247), - [anon_sym_COLON2] = ACTIONS(249), - [anon_sym_do] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(155), - [anon_sym_else] = ACTIONS(155), - [anon_sym_when] = ACTIONS(155), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(155), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(253), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(213), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(215), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(255), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(257), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2518), + [sym_double_splat] = STATE(2518), + [sym_named_expr] = STATE(2518), + [sym_argument_list_no_parens] = STATE(2439), + [sym_argument_list_no_parens_with_block] = STATE(2546), + [sym_argument_list_with_parens] = STATE(2439), + [sym_argument_list_with_parens_and_block] = STATE(2546), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_do_end_block] = STATE(2548), + [sym_brace_block] = STATE(2552), + [sym_block_argument] = STATE(2705), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(135), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(135), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(249), + [anon_sym_LPAREN2] = ACTIONS(251), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_AMP_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_AMP_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(253), + [anon_sym_PERCENT_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_CARET_EQ] = ACTIONS(253), + [anon_sym_STAR_STAR_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(253), + [anon_sym_AMP_AMP_EQ] = ACTIONS(253), + [anon_sym_COLON2] = ACTIONS(255), + [anon_sym_do] = ACTIONS(157), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(157), + [anon_sym_else] = ACTIONS(157), + [anon_sym_when] = ACTIONS(157), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(157), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(257), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(219), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(221), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(259), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(261), }, [4] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2533), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2507), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(4), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2535), - [sym_double_splat] = STATE(2535), - [sym_named_expr] = STATE(2535), - [sym_argument_list_no_parens] = STATE(2457), - [sym_argument_list_no_parens_with_block] = STATE(2663), - [sym_argument_list_with_parens] = STATE(2457), - [sym_argument_list_with_parens_and_block] = STATE(2663), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_do_end_block] = STATE(2664), - [sym_brace_block] = STATE(2665), - [sym_block_argument] = STATE(2638), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(133), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(133), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(163), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_LPAREN2] = ACTIONS(189), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(191), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(191), - [anon_sym_DASH_EQ] = ACTIONS(191), - [anon_sym_AMP_DASH_EQ] = ACTIONS(191), - [anon_sym_STAR_EQ] = ACTIONS(191), - [anon_sym_AMP_STAR_EQ] = ACTIONS(191), - [anon_sym_SLASH_EQ] = ACTIONS(191), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(191), - [anon_sym_PERCENT_EQ] = ACTIONS(191), - [anon_sym_PIPE_EQ] = ACTIONS(191), - [anon_sym_AMP_EQ] = ACTIONS(191), - [anon_sym_CARET_EQ] = ACTIONS(191), - [anon_sym_STAR_STAR_EQ] = ACTIONS(191), - [anon_sym_LT_LT_EQ] = ACTIONS(191), - [anon_sym_GT_GT_EQ] = ACTIONS(191), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(191), - [anon_sym_AMP_AMP_EQ] = ACTIONS(191), - [anon_sym_COLON2] = ACTIONS(193), - [anon_sym_do] = ACTIONS(155), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(155), - [anon_sym_else] = ACTIONS(155), - [anon_sym_when] = ACTIONS(155), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(155), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(203), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(213), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(215), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(217), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(239), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2518), + [sym_double_splat] = STATE(2518), + [sym_named_expr] = STATE(2518), + [sym_argument_list_no_parens] = STATE(2439), + [sym_argument_list_no_parens_with_block] = STATE(2546), + [sym_argument_list_with_parens] = STATE(2439), + [sym_argument_list_with_parens_and_block] = STATE(2546), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_do_end_block] = STATE(2548), + [sym_brace_block] = STATE(2552), + [sym_block_argument] = STATE(2705), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(135), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(135), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_LPAREN2] = ACTIONS(251), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_AMP_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_AMP_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(253), + [anon_sym_PERCENT_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_CARET_EQ] = ACTIONS(253), + [anon_sym_STAR_STAR_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(253), + [anon_sym_AMP_AMP_EQ] = ACTIONS(253), + [anon_sym_COLON2] = ACTIONS(255), + [anon_sym_do] = ACTIONS(157), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(157), + [anon_sym_else] = ACTIONS(157), + [anon_sym_when] = ACTIONS(157), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(157), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(257), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(219), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(221), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(259), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(261), }, [5] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2532), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2542), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(5), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2483), - [sym_double_splat] = STATE(2483), - [sym_named_expr] = STATE(2483), - [sym_argument_list_no_parens] = STATE(2445), - [sym_argument_list_no_parens_with_block] = STATE(3107), - [sym_argument_list_with_parens] = STATE(2445), - [sym_argument_list_with_parens_and_block] = STATE(3107), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_do_end_block] = STATE(3120), - [sym_brace_block] = STATE(3140), - [sym_block_argument] = STATE(3029), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(133), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(133), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(259), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(261), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_LPAREN2] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(263), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(263), - [anon_sym_DASH_EQ] = ACTIONS(263), - [anon_sym_AMP_DASH_EQ] = ACTIONS(263), - [anon_sym_STAR_EQ] = ACTIONS(263), - [anon_sym_AMP_STAR_EQ] = ACTIONS(263), - [anon_sym_SLASH_EQ] = ACTIONS(263), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(263), - [anon_sym_PERCENT_EQ] = ACTIONS(263), - [anon_sym_PIPE_EQ] = ACTIONS(263), - [anon_sym_AMP_EQ] = ACTIONS(263), - [anon_sym_CARET_EQ] = ACTIONS(263), - [anon_sym_STAR_STAR_EQ] = ACTIONS(263), - [anon_sym_LT_LT_EQ] = ACTIONS(263), - [anon_sym_GT_GT_EQ] = ACTIONS(263), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(263), - [anon_sym_AMP_AMP_EQ] = ACTIONS(263), - [anon_sym_COLON2] = ACTIONS(265), - [anon_sym_do] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(155), - [anon_sym_else] = ACTIONS(155), - [anon_sym_when] = ACTIONS(155), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(155), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(253), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(213), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(215), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(267), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(269), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2525), + [sym_double_splat] = STATE(2525), + [sym_named_expr] = STATE(2525), + [sym_argument_list_no_parens] = STATE(2447), + [sym_argument_list_no_parens_with_block] = STATE(2894), + [sym_argument_list_with_parens] = STATE(2447), + [sym_argument_list_with_parens_and_block] = STATE(2894), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_do_end_block] = STATE(2895), + [sym_brace_block] = STATE(2896), + [sym_block_argument] = STATE(3125), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(135), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(135), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(265), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(267), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(267), + [anon_sym_DASH_EQ] = ACTIONS(267), + [anon_sym_AMP_DASH_EQ] = ACTIONS(267), + [anon_sym_STAR_EQ] = ACTIONS(267), + [anon_sym_AMP_STAR_EQ] = ACTIONS(267), + [anon_sym_SLASH_EQ] = ACTIONS(267), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(267), + [anon_sym_PERCENT_EQ] = ACTIONS(267), + [anon_sym_PIPE_EQ] = ACTIONS(267), + [anon_sym_AMP_EQ] = ACTIONS(267), + [anon_sym_CARET_EQ] = ACTIONS(267), + [anon_sym_STAR_STAR_EQ] = ACTIONS(267), + [anon_sym_LT_LT_EQ] = ACTIONS(267), + [anon_sym_GT_GT_EQ] = ACTIONS(267), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(267), + [anon_sym_AMP_AMP_EQ] = ACTIONS(267), + [anon_sym_COLON2] = ACTIONS(269), + [anon_sym_do] = ACTIONS(197), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(157), + [anon_sym_else] = ACTIONS(157), + [anon_sym_when] = ACTIONS(157), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(157), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(209), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(219), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(221), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(271), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(273), }, [6] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2501), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2478), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(6), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2502), - [sym_double_splat] = STATE(2502), - [sym_named_expr] = STATE(2502), - [sym_argument_list_no_parens] = STATE(2445), - [sym_argument_list_no_parens_with_block] = STATE(3107), - [sym_argument_list_with_parens] = STATE(2445), - [sym_argument_list_with_parens_and_block] = STATE(3107), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_do_end_block] = STATE(3120), - [sym_brace_block] = STATE(3140), - [sym_block_argument] = STATE(3029), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(133), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(133), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(241), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_LPAREN2] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(247), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(247), - [anon_sym_DASH_EQ] = ACTIONS(247), - [anon_sym_AMP_DASH_EQ] = ACTIONS(247), - [anon_sym_STAR_EQ] = ACTIONS(247), - [anon_sym_AMP_STAR_EQ] = ACTIONS(247), - [anon_sym_SLASH_EQ] = ACTIONS(247), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(247), - [anon_sym_PERCENT_EQ] = ACTIONS(247), - [anon_sym_PIPE_EQ] = ACTIONS(247), - [anon_sym_AMP_EQ] = ACTIONS(247), - [anon_sym_CARET_EQ] = ACTIONS(247), - [anon_sym_STAR_STAR_EQ] = ACTIONS(247), - [anon_sym_LT_LT_EQ] = ACTIONS(247), - [anon_sym_GT_GT_EQ] = ACTIONS(247), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(247), - [anon_sym_AMP_AMP_EQ] = ACTIONS(247), - [anon_sym_COLON2] = ACTIONS(249), - [anon_sym_do] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(155), - [anon_sym_else] = ACTIONS(155), - [anon_sym_when] = ACTIONS(155), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(155), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(253), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(213), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(215), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(255), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(257), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2479), + [sym_double_splat] = STATE(2479), + [sym_named_expr] = STATE(2479), + [sym_argument_list_no_parens] = STATE(2447), + [sym_argument_list_no_parens_with_block] = STATE(2894), + [sym_argument_list_with_parens] = STATE(2447), + [sym_argument_list_with_parens_and_block] = STATE(2894), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_do_end_block] = STATE(2895), + [sym_brace_block] = STATE(2896), + [sym_block_argument] = STATE(3125), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(135), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(135), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(193), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(193), + [anon_sym_DASH_EQ] = ACTIONS(193), + [anon_sym_AMP_DASH_EQ] = ACTIONS(193), + [anon_sym_STAR_EQ] = ACTIONS(193), + [anon_sym_AMP_STAR_EQ] = ACTIONS(193), + [anon_sym_SLASH_EQ] = ACTIONS(193), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(193), + [anon_sym_PERCENT_EQ] = ACTIONS(193), + [anon_sym_PIPE_EQ] = ACTIONS(193), + [anon_sym_AMP_EQ] = ACTIONS(193), + [anon_sym_CARET_EQ] = ACTIONS(193), + [anon_sym_STAR_STAR_EQ] = ACTIONS(193), + [anon_sym_LT_LT_EQ] = ACTIONS(193), + [anon_sym_GT_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(193), + [anon_sym_AMP_AMP_EQ] = ACTIONS(193), + [anon_sym_COLON2] = ACTIONS(195), + [anon_sym_do] = ACTIONS(197), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(157), + [anon_sym_else] = ACTIONS(157), + [anon_sym_when] = ACTIONS(157), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(157), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(209), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(219), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(221), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(223), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(245), }, [7] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2532), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2542), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(7), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2483), - [sym_double_splat] = STATE(2483), - [sym_named_expr] = STATE(2483), - [sym_argument_list_no_parens] = STATE(2445), - [sym_argument_list_no_parens_with_block] = STATE(3107), - [sym_argument_list_with_parens] = STATE(2445), - [sym_argument_list_with_parens_and_block] = STATE(3107), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_do_end_block] = STATE(3120), - [sym_brace_block] = STATE(3140), - [sym_block_argument] = STATE(3029), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(133), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(133), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(261), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_LPAREN2] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(263), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(263), - [anon_sym_DASH_EQ] = ACTIONS(263), - [anon_sym_AMP_DASH_EQ] = ACTIONS(263), - [anon_sym_STAR_EQ] = ACTIONS(263), - [anon_sym_AMP_STAR_EQ] = ACTIONS(263), - [anon_sym_SLASH_EQ] = ACTIONS(263), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(263), - [anon_sym_PERCENT_EQ] = ACTIONS(263), - [anon_sym_PIPE_EQ] = ACTIONS(263), - [anon_sym_AMP_EQ] = ACTIONS(263), - [anon_sym_CARET_EQ] = ACTIONS(263), - [anon_sym_STAR_STAR_EQ] = ACTIONS(263), - [anon_sym_LT_LT_EQ] = ACTIONS(263), - [anon_sym_GT_GT_EQ] = ACTIONS(263), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(263), - [anon_sym_AMP_AMP_EQ] = ACTIONS(263), - [anon_sym_COLON2] = ACTIONS(265), - [anon_sym_do] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(155), - [anon_sym_else] = ACTIONS(155), - [anon_sym_when] = ACTIONS(155), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(155), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(253), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(213), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(215), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(267), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(269), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2525), + [sym_double_splat] = STATE(2525), + [sym_named_expr] = STATE(2525), + [sym_argument_list_no_parens] = STATE(2447), + [sym_argument_list_no_parens_with_block] = STATE(2894), + [sym_argument_list_with_parens] = STATE(2447), + [sym_argument_list_with_parens_and_block] = STATE(2894), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_do_end_block] = STATE(2895), + [sym_brace_block] = STATE(2896), + [sym_block_argument] = STATE(3125), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(135), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(135), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(265), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(267), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(267), + [anon_sym_DASH_EQ] = ACTIONS(267), + [anon_sym_AMP_DASH_EQ] = ACTIONS(267), + [anon_sym_STAR_EQ] = ACTIONS(267), + [anon_sym_AMP_STAR_EQ] = ACTIONS(267), + [anon_sym_SLASH_EQ] = ACTIONS(267), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(267), + [anon_sym_PERCENT_EQ] = ACTIONS(267), + [anon_sym_PIPE_EQ] = ACTIONS(267), + [anon_sym_AMP_EQ] = ACTIONS(267), + [anon_sym_CARET_EQ] = ACTIONS(267), + [anon_sym_STAR_STAR_EQ] = ACTIONS(267), + [anon_sym_LT_LT_EQ] = ACTIONS(267), + [anon_sym_GT_GT_EQ] = ACTIONS(267), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(267), + [anon_sym_AMP_AMP_EQ] = ACTIONS(267), + [anon_sym_COLON2] = ACTIONS(269), + [anon_sym_do] = ACTIONS(197), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(157), + [anon_sym_else] = ACTIONS(157), + [anon_sym_when] = ACTIONS(157), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(157), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(209), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(219), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(221), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(271), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(273), }, [8] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3263), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3253), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(8), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3259), - [sym_double_splat] = STATE(3259), - [sym_named_expr] = STATE(3259), - [sym_argument_list_no_parens] = STATE(3077), - [sym_argument_list_no_parens_with_block] = STATE(3895), - [sym_argument_list_with_parens] = STATE(3077), - [sym_argument_list_with_parens_and_block] = STATE(3895), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_do_end_block] = STATE(3901), - [sym_brace_block] = STATE(3902), - [sym_block_argument] = STATE(3883), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_COLON] = ACTIONS(321), - [anon_sym_LPAREN2] = ACTIONS(323), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(325), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(325), - [anon_sym_DASH_EQ] = ACTIONS(325), - [anon_sym_AMP_DASH_EQ] = ACTIONS(325), - [anon_sym_STAR_EQ] = ACTIONS(325), - [anon_sym_AMP_STAR_EQ] = ACTIONS(325), - [anon_sym_SLASH_EQ] = ACTIONS(325), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(325), - [anon_sym_PERCENT_EQ] = ACTIONS(325), - [anon_sym_PIPE_EQ] = ACTIONS(325), - [anon_sym_AMP_EQ] = ACTIONS(325), - [anon_sym_CARET_EQ] = ACTIONS(325), - [anon_sym_STAR_STAR_EQ] = ACTIONS(325), - [anon_sym_LT_LT_EQ] = ACTIONS(325), - [anon_sym_GT_GT_EQ] = ACTIONS(325), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(325), - [anon_sym_AMP_AMP_EQ] = ACTIONS(325), - [anon_sym_COLON2] = ACTIONS(327), - [anon_sym_do] = ACTIONS(329), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(155), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(339), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(349), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(351), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(353), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__regular_rescue_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(375), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3249), + [sym_double_splat] = STATE(3249), + [sym_named_expr] = STATE(3249), + [sym_argument_list_no_parens] = STATE(3019), + [sym_argument_list_no_parens_with_block] = STATE(3543), + [sym_argument_list_with_parens] = STATE(3019), + [sym_argument_list_with_parens_and_block] = STATE(3543), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_do_end_block] = STATE(3560), + [sym_brace_block] = STATE(3561), + [sym_block_argument] = STATE(3498), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(301), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(325), + [anon_sym_LPAREN2] = ACTIONS(327), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(329), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(329), + [anon_sym_DASH_EQ] = ACTIONS(329), + [anon_sym_AMP_DASH_EQ] = ACTIONS(329), + [anon_sym_STAR_EQ] = ACTIONS(329), + [anon_sym_AMP_STAR_EQ] = ACTIONS(329), + [anon_sym_SLASH_EQ] = ACTIONS(329), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(329), + [anon_sym_PERCENT_EQ] = ACTIONS(329), + [anon_sym_PIPE_EQ] = ACTIONS(329), + [anon_sym_AMP_EQ] = ACTIONS(329), + [anon_sym_CARET_EQ] = ACTIONS(329), + [anon_sym_STAR_STAR_EQ] = ACTIONS(329), + [anon_sym_LT_LT_EQ] = ACTIONS(329), + [anon_sym_GT_GT_EQ] = ACTIONS(329), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(329), + [anon_sym_AMP_AMP_EQ] = ACTIONS(329), + [anon_sym_COLON2] = ACTIONS(331), + [anon_sym_do] = ACTIONS(157), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(157), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(343), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(353), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(355), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(357), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__regular_rescue_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(379), }, [9] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3185), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3313), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(9), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3310), - [sym_double_splat] = STATE(3310), - [sym_named_expr] = STATE(3310), - [sym_argument_list_no_parens] = STATE(3138), - [sym_argument_list_no_parens_with_block] = STATE(3489), - [sym_argument_list_with_parens] = STATE(3138), - [sym_argument_list_with_parens_and_block] = STATE(3489), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_do_end_block] = STATE(3490), - [sym_brace_block] = STATE(3491), - [sym_block_argument] = STATE(3480), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_COLON] = ACTIONS(379), - [anon_sym_LPAREN2] = ACTIONS(381), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(383), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(383), - [anon_sym_DASH_EQ] = ACTIONS(383), - [anon_sym_AMP_DASH_EQ] = ACTIONS(383), - [anon_sym_STAR_EQ] = ACTIONS(383), - [anon_sym_AMP_STAR_EQ] = ACTIONS(383), - [anon_sym_SLASH_EQ] = ACTIONS(383), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(383), - [anon_sym_PERCENT_EQ] = ACTIONS(383), - [anon_sym_PIPE_EQ] = ACTIONS(383), - [anon_sym_AMP_EQ] = ACTIONS(383), - [anon_sym_CARET_EQ] = ACTIONS(383), - [anon_sym_STAR_STAR_EQ] = ACTIONS(383), - [anon_sym_LT_LT_EQ] = ACTIONS(383), - [anon_sym_GT_GT_EQ] = ACTIONS(383), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(383), - [anon_sym_AMP_AMP_EQ] = ACTIONS(383), - [anon_sym_COLON2] = ACTIONS(385), - [anon_sym_do] = ACTIONS(155), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(155), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(387), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(349), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(351), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(389), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__regular_rescue_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(391), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3309), + [sym_double_splat] = STATE(3309), + [sym_named_expr] = STATE(3309), + [sym_argument_list_no_parens] = STATE(3135), + [sym_argument_list_no_parens_with_block] = STATE(3964), + [sym_argument_list_with_parens] = STATE(3135), + [sym_argument_list_with_parens_and_block] = STATE(3964), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_do_end_block] = STATE(3965), + [sym_brace_block] = STATE(3966), + [sym_block_argument] = STATE(3961), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(383), + [anon_sym_LPAREN2] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_AMP_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_AMP_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_STAR_STAR_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(387), + [anon_sym_AMP_AMP_EQ] = ACTIONS(387), + [anon_sym_COLON2] = ACTIONS(389), + [anon_sym_do] = ACTIONS(391), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(157), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(393), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(353), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(355), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(395), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__regular_rescue_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(397), }, [10] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3231), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3216), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(10), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3233), - [sym_double_splat] = STATE(3233), - [sym_named_expr] = STATE(3233), - [sym_argument_list_no_parens] = STATE(3077), - [sym_argument_list_no_parens_with_block] = STATE(3895), - [sym_argument_list_with_parens] = STATE(3077), - [sym_argument_list_with_parens_and_block] = STATE(3895), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_do_end_block] = STATE(3901), - [sym_brace_block] = STATE(3902), - [sym_block_argument] = STATE(3883), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(259), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_LPAREN2] = ACTIONS(323), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_AMP_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_AMP_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_STAR_STAR_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(395), - [anon_sym_AMP_AMP_EQ] = ACTIONS(395), - [anon_sym_COLON2] = ACTIONS(397), - [anon_sym_do] = ACTIONS(329), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(155), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(339), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(349), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(351), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(399), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__regular_rescue_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(401), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3199), + [sym_double_splat] = STATE(3199), + [sym_named_expr] = STATE(3199), + [sym_argument_list_no_parens] = STATE(3135), + [sym_argument_list_no_parens_with_block] = STATE(3964), + [sym_argument_list_with_parens] = STATE(3135), + [sym_argument_list_with_parens_and_block] = STATE(3964), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_do_end_block] = STATE(3965), + [sym_brace_block] = STATE(3966), + [sym_block_argument] = STATE(3961), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_AMP_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_AMP_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_STAR_STAR_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(401), + [anon_sym_AMP_AMP_EQ] = ACTIONS(401), + [anon_sym_COLON2] = ACTIONS(403), + [anon_sym_do] = ACTIONS(391), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(157), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(393), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(353), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(355), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(405), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__regular_rescue_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(407), }, [11] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3185), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3253), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(11), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3310), - [sym_double_splat] = STATE(3310), - [sym_named_expr] = STATE(3310), - [sym_argument_list_no_parens] = STATE(3138), - [sym_argument_list_no_parens_with_block] = STATE(3489), - [sym_argument_list_with_parens] = STATE(3138), - [sym_argument_list_with_parens_and_block] = STATE(3489), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_do_end_block] = STATE(3490), - [sym_brace_block] = STATE(3491), - [sym_block_argument] = STATE(3480), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_LPAREN2] = ACTIONS(381), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(383), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(383), - [anon_sym_DASH_EQ] = ACTIONS(383), - [anon_sym_AMP_DASH_EQ] = ACTIONS(383), - [anon_sym_STAR_EQ] = ACTIONS(383), - [anon_sym_AMP_STAR_EQ] = ACTIONS(383), - [anon_sym_SLASH_EQ] = ACTIONS(383), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(383), - [anon_sym_PERCENT_EQ] = ACTIONS(383), - [anon_sym_PIPE_EQ] = ACTIONS(383), - [anon_sym_AMP_EQ] = ACTIONS(383), - [anon_sym_CARET_EQ] = ACTIONS(383), - [anon_sym_STAR_STAR_EQ] = ACTIONS(383), - [anon_sym_LT_LT_EQ] = ACTIONS(383), - [anon_sym_GT_GT_EQ] = ACTIONS(383), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(383), - [anon_sym_AMP_AMP_EQ] = ACTIONS(383), - [anon_sym_COLON2] = ACTIONS(385), - [anon_sym_do] = ACTIONS(155), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(155), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(387), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(349), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(351), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(389), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__regular_rescue_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(391), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3249), + [sym_double_splat] = STATE(3249), + [sym_named_expr] = STATE(3249), + [sym_argument_list_no_parens] = STATE(3019), + [sym_argument_list_no_parens_with_block] = STATE(3543), + [sym_argument_list_with_parens] = STATE(3019), + [sym_argument_list_with_parens_and_block] = STATE(3543), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_do_end_block] = STATE(3560), + [sym_brace_block] = STATE(3561), + [sym_block_argument] = STATE(3498), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(301), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(327), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(329), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(329), + [anon_sym_DASH_EQ] = ACTIONS(329), + [anon_sym_AMP_DASH_EQ] = ACTIONS(329), + [anon_sym_STAR_EQ] = ACTIONS(329), + [anon_sym_AMP_STAR_EQ] = ACTIONS(329), + [anon_sym_SLASH_EQ] = ACTIONS(329), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(329), + [anon_sym_PERCENT_EQ] = ACTIONS(329), + [anon_sym_PIPE_EQ] = ACTIONS(329), + [anon_sym_AMP_EQ] = ACTIONS(329), + [anon_sym_CARET_EQ] = ACTIONS(329), + [anon_sym_STAR_STAR_EQ] = ACTIONS(329), + [anon_sym_LT_LT_EQ] = ACTIONS(329), + [anon_sym_GT_GT_EQ] = ACTIONS(329), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(329), + [anon_sym_AMP_AMP_EQ] = ACTIONS(329), + [anon_sym_COLON2] = ACTIONS(331), + [anon_sym_do] = ACTIONS(157), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(157), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(343), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(353), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(355), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(357), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__regular_rescue_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(379), }, [12] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3263), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3313), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(12), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3259), - [sym_double_splat] = STATE(3259), - [sym_named_expr] = STATE(3259), - [sym_argument_list_no_parens] = STATE(3077), - [sym_argument_list_no_parens_with_block] = STATE(3895), - [sym_argument_list_with_parens] = STATE(3077), - [sym_argument_list_with_parens_and_block] = STATE(3895), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_do_end_block] = STATE(3901), - [sym_brace_block] = STATE(3902), - [sym_block_argument] = STATE(3883), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_LPAREN2] = ACTIONS(323), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(325), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(325), - [anon_sym_DASH_EQ] = ACTIONS(325), - [anon_sym_AMP_DASH_EQ] = ACTIONS(325), - [anon_sym_STAR_EQ] = ACTIONS(325), - [anon_sym_AMP_STAR_EQ] = ACTIONS(325), - [anon_sym_SLASH_EQ] = ACTIONS(325), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(325), - [anon_sym_PERCENT_EQ] = ACTIONS(325), - [anon_sym_PIPE_EQ] = ACTIONS(325), - [anon_sym_AMP_EQ] = ACTIONS(325), - [anon_sym_CARET_EQ] = ACTIONS(325), - [anon_sym_STAR_STAR_EQ] = ACTIONS(325), - [anon_sym_LT_LT_EQ] = ACTIONS(325), - [anon_sym_GT_GT_EQ] = ACTIONS(325), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(325), - [anon_sym_AMP_AMP_EQ] = ACTIONS(325), - [anon_sym_COLON2] = ACTIONS(327), - [anon_sym_do] = ACTIONS(329), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(155), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(339), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(349), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(351), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(353), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__regular_rescue_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(375), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3309), + [sym_double_splat] = STATE(3309), + [sym_named_expr] = STATE(3309), + [sym_argument_list_no_parens] = STATE(3135), + [sym_argument_list_no_parens_with_block] = STATE(3964), + [sym_argument_list_with_parens] = STATE(3135), + [sym_argument_list_with_parens_and_block] = STATE(3964), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_do_end_block] = STATE(3965), + [sym_brace_block] = STATE(3966), + [sym_block_argument] = STATE(3961), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_AMP_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_AMP_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_STAR_STAR_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(387), + [anon_sym_AMP_AMP_EQ] = ACTIONS(387), + [anon_sym_COLON2] = ACTIONS(389), + [anon_sym_do] = ACTIONS(391), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(157), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(393), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(353), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(355), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(395), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__regular_rescue_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(397), }, [13] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3231), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3216), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(13), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3233), - [sym_double_splat] = STATE(3233), - [sym_named_expr] = STATE(3233), - [sym_argument_list_no_parens] = STATE(3077), - [sym_argument_list_no_parens_with_block] = STATE(3895), - [sym_argument_list_with_parens] = STATE(3077), - [sym_argument_list_with_parens_and_block] = STATE(3895), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_do_end_block] = STATE(3901), - [sym_brace_block] = STATE(3902), - [sym_block_argument] = STATE(3883), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_LPAREN2] = ACTIONS(323), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_AMP_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_AMP_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_STAR_STAR_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(395), - [anon_sym_AMP_AMP_EQ] = ACTIONS(395), - [anon_sym_COLON2] = ACTIONS(397), - [anon_sym_do] = ACTIONS(329), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(155), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(339), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(349), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(351), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(399), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__regular_rescue_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(401), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3199), + [sym_double_splat] = STATE(3199), + [sym_named_expr] = STATE(3199), + [sym_argument_list_no_parens] = STATE(3135), + [sym_argument_list_no_parens_with_block] = STATE(3964), + [sym_argument_list_with_parens] = STATE(3135), + [sym_argument_list_with_parens_and_block] = STATE(3964), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_do_end_block] = STATE(3965), + [sym_brace_block] = STATE(3966), + [sym_block_argument] = STATE(3961), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_AMP_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_AMP_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_STAR_STAR_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(401), + [anon_sym_AMP_AMP_EQ] = ACTIONS(401), + [anon_sym_COLON2] = ACTIONS(403), + [anon_sym_do] = ACTIONS(391), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(157), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(393), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(353), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(355), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(405), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__regular_rescue_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(407), }, [14] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3744), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3841), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(14), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3740), - [sym_double_splat] = STATE(3740), - [sym_named_expr] = STATE(3740), - [sym_argument_list_no_parens] = STATE(3375), - [sym_argument_list_no_parens_with_block] = STATE(4715), - [sym_argument_list_with_parens] = STATE(3375), - [sym_argument_list_with_parens_and_block] = STATE(4715), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_do_end_block] = STATE(4716), - [sym_brace_block] = STATE(4717), - [sym_block_argument] = STATE(4714), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(429), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_COLON] = ACTIONS(453), - [anon_sym_LPAREN2] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_AMP_DASH_EQ] = ACTIONS(457), - [anon_sym_STAR_EQ] = ACTIONS(457), - [anon_sym_AMP_STAR_EQ] = ACTIONS(457), - [anon_sym_SLASH_EQ] = ACTIONS(457), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(457), - [anon_sym_PERCENT_EQ] = ACTIONS(457), - [anon_sym_PIPE_EQ] = ACTIONS(457), - [anon_sym_AMP_EQ] = ACTIONS(457), - [anon_sym_CARET_EQ] = ACTIONS(457), - [anon_sym_STAR_STAR_EQ] = ACTIONS(457), - [anon_sym_LT_LT_EQ] = ACTIONS(457), - [anon_sym_GT_GT_EQ] = ACTIONS(457), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(457), - [anon_sym_AMP_AMP_EQ] = ACTIONS(457), - [anon_sym_COLON2] = ACTIONS(459), - [anon_sym_do] = ACTIONS(461), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(471), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(481), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(483), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(485), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(507), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3837), + [sym_double_splat] = STATE(3837), + [sym_named_expr] = STATE(3837), + [sym_argument_list_no_parens] = STATE(3325), + [sym_argument_list_no_parens_with_block] = STATE(4875), + [sym_argument_list_with_parens] = STATE(3325), + [sym_argument_list_with_parens_and_block] = STATE(4875), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_do_end_block] = STATE(4876), + [sym_brace_block] = STATE(4881), + [sym_block_argument] = STATE(4874), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(435), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_COLON] = ACTIONS(459), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(463), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(463), + [anon_sym_DASH_EQ] = ACTIONS(463), + [anon_sym_AMP_DASH_EQ] = ACTIONS(463), + [anon_sym_STAR_EQ] = ACTIONS(463), + [anon_sym_AMP_STAR_EQ] = ACTIONS(463), + [anon_sym_SLASH_EQ] = ACTIONS(463), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(463), + [anon_sym_PERCENT_EQ] = ACTIONS(463), + [anon_sym_PIPE_EQ] = ACTIONS(463), + [anon_sym_AMP_EQ] = ACTIONS(463), + [anon_sym_CARET_EQ] = ACTIONS(463), + [anon_sym_STAR_STAR_EQ] = ACTIONS(463), + [anon_sym_LT_LT_EQ] = ACTIONS(463), + [anon_sym_GT_GT_EQ] = ACTIONS(463), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(463), + [anon_sym_AMP_AMP_EQ] = ACTIONS(463), + [anon_sym_COLON2] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(479), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(489), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(491), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(493), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(515), }, [15] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3816), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3634), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(15), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3793), - [sym_double_splat] = STATE(3793), - [sym_named_expr] = STATE(3793), - [sym_argument_list_no_parens] = STATE(3517), - [sym_argument_list_no_parens_with_block] = STATE(4136), - [sym_argument_list_with_parens] = STATE(3517), - [sym_argument_list_with_parens_and_block] = STATE(4136), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_do_end_block] = STATE(4137), - [sym_brace_block] = STATE(4138), - [sym_block_argument] = STATE(4054), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(509), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_COLON] = ACTIONS(511), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(515), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(515), - [anon_sym_DASH_EQ] = ACTIONS(515), - [anon_sym_AMP_DASH_EQ] = ACTIONS(515), - [anon_sym_STAR_EQ] = ACTIONS(515), - [anon_sym_AMP_STAR_EQ] = ACTIONS(515), - [anon_sym_SLASH_EQ] = ACTIONS(515), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(515), - [anon_sym_PERCENT_EQ] = ACTIONS(515), - [anon_sym_PIPE_EQ] = ACTIONS(515), - [anon_sym_AMP_EQ] = ACTIONS(515), - [anon_sym_CARET_EQ] = ACTIONS(515), - [anon_sym_STAR_STAR_EQ] = ACTIONS(515), - [anon_sym_LT_LT_EQ] = ACTIONS(515), - [anon_sym_GT_GT_EQ] = ACTIONS(515), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(515), - [anon_sym_AMP_AMP_EQ] = ACTIONS(515), - [anon_sym_COLON2] = ACTIONS(517), - [anon_sym_do] = ACTIONS(155), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(519), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(481), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(483), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(521), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(523), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3598), + [sym_double_splat] = STATE(3598), + [sym_named_expr] = STATE(3598), + [sym_argument_list_no_parens] = STATE(3345), + [sym_argument_list_no_parens_with_block] = STATE(3886), + [sym_argument_list_with_parens] = STATE(3345), + [sym_argument_list_with_parens_and_block] = STATE(3886), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_do_end_block] = STATE(3887), + [sym_brace_block] = STATE(3888), + [sym_block_argument] = STATE(3891), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(517), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_COLON] = ACTIONS(519), + [anon_sym_LPAREN2] = ACTIONS(521), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(523), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(523), + [anon_sym_DASH_EQ] = ACTIONS(523), + [anon_sym_AMP_DASH_EQ] = ACTIONS(523), + [anon_sym_STAR_EQ] = ACTIONS(523), + [anon_sym_AMP_STAR_EQ] = ACTIONS(523), + [anon_sym_SLASH_EQ] = ACTIONS(523), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(523), + [anon_sym_PERCENT_EQ] = ACTIONS(523), + [anon_sym_PIPE_EQ] = ACTIONS(523), + [anon_sym_AMP_EQ] = ACTIONS(523), + [anon_sym_CARET_EQ] = ACTIONS(523), + [anon_sym_STAR_STAR_EQ] = ACTIONS(523), + [anon_sym_LT_LT_EQ] = ACTIONS(523), + [anon_sym_GT_GT_EQ] = ACTIONS(523), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(523), + [anon_sym_AMP_AMP_EQ] = ACTIONS(523), + [anon_sym_COLON2] = ACTIONS(525), + [anon_sym_do] = ACTIONS(157), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(527), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(489), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(491), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(529), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(531), }, [16] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3744), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3841), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(16), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3740), - [sym_double_splat] = STATE(3740), - [sym_named_expr] = STATE(3740), - [sym_argument_list_no_parens] = STATE(3375), - [sym_argument_list_no_parens_with_block] = STATE(4715), - [sym_argument_list_with_parens] = STATE(3375), - [sym_argument_list_with_parens_and_block] = STATE(4715), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_do_end_block] = STATE(4716), - [sym_brace_block] = STATE(4717), - [sym_block_argument] = STATE(4714), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(429), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_LPAREN2] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_AMP_DASH_EQ] = ACTIONS(457), - [anon_sym_STAR_EQ] = ACTIONS(457), - [anon_sym_AMP_STAR_EQ] = ACTIONS(457), - [anon_sym_SLASH_EQ] = ACTIONS(457), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(457), - [anon_sym_PERCENT_EQ] = ACTIONS(457), - [anon_sym_PIPE_EQ] = ACTIONS(457), - [anon_sym_AMP_EQ] = ACTIONS(457), - [anon_sym_CARET_EQ] = ACTIONS(457), - [anon_sym_STAR_STAR_EQ] = ACTIONS(457), - [anon_sym_LT_LT_EQ] = ACTIONS(457), - [anon_sym_GT_GT_EQ] = ACTIONS(457), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(457), - [anon_sym_AMP_AMP_EQ] = ACTIONS(457), - [anon_sym_COLON2] = ACTIONS(459), - [anon_sym_do] = ACTIONS(461), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(471), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(481), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(483), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(485), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(507), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3837), + [sym_double_splat] = STATE(3837), + [sym_named_expr] = STATE(3837), + [sym_argument_list_no_parens] = STATE(3325), + [sym_argument_list_no_parens_with_block] = STATE(4875), + [sym_argument_list_with_parens] = STATE(3325), + [sym_argument_list_with_parens_and_block] = STATE(4875), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_do_end_block] = STATE(4876), + [sym_brace_block] = STATE(4881), + [sym_block_argument] = STATE(4874), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(435), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(463), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(463), + [anon_sym_DASH_EQ] = ACTIONS(463), + [anon_sym_AMP_DASH_EQ] = ACTIONS(463), + [anon_sym_STAR_EQ] = ACTIONS(463), + [anon_sym_AMP_STAR_EQ] = ACTIONS(463), + [anon_sym_SLASH_EQ] = ACTIONS(463), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(463), + [anon_sym_PERCENT_EQ] = ACTIONS(463), + [anon_sym_PIPE_EQ] = ACTIONS(463), + [anon_sym_AMP_EQ] = ACTIONS(463), + [anon_sym_CARET_EQ] = ACTIONS(463), + [anon_sym_STAR_STAR_EQ] = ACTIONS(463), + [anon_sym_LT_LT_EQ] = ACTIONS(463), + [anon_sym_GT_GT_EQ] = ACTIONS(463), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(463), + [anon_sym_AMP_AMP_EQ] = ACTIONS(463), + [anon_sym_COLON2] = ACTIONS(465), + [anon_sym_do] = ACTIONS(467), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(479), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(489), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(491), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(493), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(515), }, [17] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4089), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(3872), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(17), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4095), - [sym_double_splat] = STATE(4095), - [sym_named_expr] = STATE(4095), - [sym_argument_list_no_parens] = STATE(3276), - [sym_argument_list_no_parens_with_block] = STATE(3811), - [sym_argument_list_with_parens] = STATE(3276), - [sym_argument_list_with_parens_and_block] = STATE(3811), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(3814), - [sym_brace_block] = STATE(3829), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(133), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_RBRACK] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(551), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_COLON] = ACTIONS(575), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(579), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(579), - [anon_sym_DASH_EQ] = ACTIONS(579), - [anon_sym_AMP_DASH_EQ] = ACTIONS(579), - [anon_sym_STAR_EQ] = ACTIONS(579), - [anon_sym_AMP_STAR_EQ] = ACTIONS(579), - [anon_sym_SLASH_EQ] = ACTIONS(579), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(579), - [anon_sym_PERCENT_EQ] = ACTIONS(579), - [anon_sym_PIPE_EQ] = ACTIONS(579), - [anon_sym_AMP_EQ] = ACTIONS(579), - [anon_sym_CARET_EQ] = ACTIONS(579), - [anon_sym_STAR_STAR_EQ] = ACTIONS(579), - [anon_sym_LT_LT_EQ] = ACTIONS(579), - [anon_sym_GT_GT_EQ] = ACTIONS(579), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(579), - [anon_sym_AMP_AMP_EQ] = ACTIONS(579), - [anon_sym_COLON2] = ACTIONS(581), - [anon_sym_do] = ACTIONS(155), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(155), - [anon_sym_when] = ACTIONS(155), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(155), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(591), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(605), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(627), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3873), + [sym_double_splat] = STATE(3873), + [sym_named_expr] = STATE(3873), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(135), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_RBRACK] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(559), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(583), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_AMP_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_AMP_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_STAR_STAR_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(587), + [anon_sym_AMP_AMP_EQ] = ACTIONS(587), + [anon_sym_COLON2] = ACTIONS(589), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(157), + [anon_sym_when] = ACTIONS(157), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(157), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(617), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(639), }, [18] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3816), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3634), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(18), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3793), - [sym_double_splat] = STATE(3793), - [sym_named_expr] = STATE(3793), - [sym_argument_list_no_parens] = STATE(3517), - [sym_argument_list_no_parens_with_block] = STATE(4136), - [sym_argument_list_with_parens] = STATE(3517), - [sym_argument_list_with_parens_and_block] = STATE(4136), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_do_end_block] = STATE(4137), - [sym_brace_block] = STATE(4138), - [sym_block_argument] = STATE(4054), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(509), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(515), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(515), - [anon_sym_DASH_EQ] = ACTIONS(515), - [anon_sym_AMP_DASH_EQ] = ACTIONS(515), - [anon_sym_STAR_EQ] = ACTIONS(515), - [anon_sym_AMP_STAR_EQ] = ACTIONS(515), - [anon_sym_SLASH_EQ] = ACTIONS(515), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(515), - [anon_sym_PERCENT_EQ] = ACTIONS(515), - [anon_sym_PIPE_EQ] = ACTIONS(515), - [anon_sym_AMP_EQ] = ACTIONS(515), - [anon_sym_CARET_EQ] = ACTIONS(515), - [anon_sym_STAR_STAR_EQ] = ACTIONS(515), - [anon_sym_LT_LT_EQ] = ACTIONS(515), - [anon_sym_GT_GT_EQ] = ACTIONS(515), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(515), - [anon_sym_AMP_AMP_EQ] = ACTIONS(515), - [anon_sym_COLON2] = ACTIONS(517), - [anon_sym_do] = ACTIONS(155), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(519), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(481), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(483), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(521), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(523), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3598), + [sym_double_splat] = STATE(3598), + [sym_named_expr] = STATE(3598), + [sym_argument_list_no_parens] = STATE(3345), + [sym_argument_list_no_parens_with_block] = STATE(3886), + [sym_argument_list_with_parens] = STATE(3345), + [sym_argument_list_with_parens_and_block] = STATE(3886), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_do_end_block] = STATE(3887), + [sym_brace_block] = STATE(3888), + [sym_block_argument] = STATE(3891), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(517), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(521), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(523), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(523), + [anon_sym_DASH_EQ] = ACTIONS(523), + [anon_sym_AMP_DASH_EQ] = ACTIONS(523), + [anon_sym_STAR_EQ] = ACTIONS(523), + [anon_sym_AMP_STAR_EQ] = ACTIONS(523), + [anon_sym_SLASH_EQ] = ACTIONS(523), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(523), + [anon_sym_PERCENT_EQ] = ACTIONS(523), + [anon_sym_PIPE_EQ] = ACTIONS(523), + [anon_sym_AMP_EQ] = ACTIONS(523), + [anon_sym_CARET_EQ] = ACTIONS(523), + [anon_sym_STAR_STAR_EQ] = ACTIONS(523), + [anon_sym_LT_LT_EQ] = ACTIONS(523), + [anon_sym_GT_GT_EQ] = ACTIONS(523), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(523), + [anon_sym_AMP_AMP_EQ] = ACTIONS(523), + [anon_sym_COLON2] = ACTIONS(525), + [anon_sym_do] = ACTIONS(157), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(527), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(489), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(491), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(529), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(531), }, [19] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4287), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3795), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(19), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4093), - [sym_double_splat] = STATE(4093), - [sym_named_expr] = STATE(4093), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(133), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_RBRACK] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(629), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_COLON] = ACTIONS(631), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(635), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(635), - [anon_sym_DASH_EQ] = ACTIONS(635), - [anon_sym_AMP_DASH_EQ] = ACTIONS(635), - [anon_sym_STAR_EQ] = ACTIONS(635), - [anon_sym_AMP_STAR_EQ] = ACTIONS(635), - [anon_sym_SLASH_EQ] = ACTIONS(635), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(635), - [anon_sym_PERCENT_EQ] = ACTIONS(635), - [anon_sym_PIPE_EQ] = ACTIONS(635), - [anon_sym_AMP_EQ] = ACTIONS(635), - [anon_sym_CARET_EQ] = ACTIONS(635), - [anon_sym_STAR_STAR_EQ] = ACTIONS(635), - [anon_sym_LT_LT_EQ] = ACTIONS(635), - [anon_sym_GT_GT_EQ] = ACTIONS(635), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(635), - [anon_sym_AMP_AMP_EQ] = ACTIONS(635), - [anon_sym_COLON2] = ACTIONS(637), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(155), - [anon_sym_when] = ACTIONS(155), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(155), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(643), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(645), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3628), + [sym_double_splat] = STATE(3628), + [sym_named_expr] = STATE(3628), + [sym_argument_list_no_parens] = STATE(3325), + [sym_argument_list_no_parens_with_block] = STATE(4875), + [sym_argument_list_with_parens] = STATE(3325), + [sym_argument_list_with_parens_and_block] = STATE(4875), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_do_end_block] = STATE(4876), + [sym_brace_block] = STATE(4881), + [sym_block_argument] = STATE(4874), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(641), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(643), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(643), + [anon_sym_DASH_EQ] = ACTIONS(643), + [anon_sym_AMP_DASH_EQ] = ACTIONS(643), + [anon_sym_STAR_EQ] = ACTIONS(643), + [anon_sym_AMP_STAR_EQ] = ACTIONS(643), + [anon_sym_SLASH_EQ] = ACTIONS(643), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(643), + [anon_sym_PERCENT_EQ] = ACTIONS(643), + [anon_sym_PIPE_EQ] = ACTIONS(643), + [anon_sym_AMP_EQ] = ACTIONS(643), + [anon_sym_CARET_EQ] = ACTIONS(643), + [anon_sym_STAR_STAR_EQ] = ACTIONS(643), + [anon_sym_LT_LT_EQ] = ACTIONS(643), + [anon_sym_GT_GT_EQ] = ACTIONS(643), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(643), + [anon_sym_AMP_AMP_EQ] = ACTIONS(643), + [anon_sym_COLON2] = ACTIONS(645), + [anon_sym_do] = ACTIONS(467), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(479), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(489), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(491), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(647), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(649), }, [20] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3778), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(3913), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(20), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3704), - [sym_double_splat] = STATE(3704), - [sym_named_expr] = STATE(3704), - [sym_argument_list_no_parens] = STATE(3375), - [sym_argument_list_no_parens_with_block] = STATE(4715), - [sym_argument_list_with_parens] = STATE(3375), - [sym_argument_list_with_parens_and_block] = STATE(4715), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_do_end_block] = STATE(4716), - [sym_brace_block] = STATE(4717), - [sym_block_argument] = STATE(4714), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(259), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(647), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_LPAREN2] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(649), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(649), - [anon_sym_DASH_EQ] = ACTIONS(649), - [anon_sym_AMP_DASH_EQ] = ACTIONS(649), - [anon_sym_STAR_EQ] = ACTIONS(649), - [anon_sym_AMP_STAR_EQ] = ACTIONS(649), - [anon_sym_SLASH_EQ] = ACTIONS(649), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(649), - [anon_sym_PERCENT_EQ] = ACTIONS(649), - [anon_sym_PIPE_EQ] = ACTIONS(649), - [anon_sym_AMP_EQ] = ACTIONS(649), - [anon_sym_CARET_EQ] = ACTIONS(649), - [anon_sym_STAR_STAR_EQ] = ACTIONS(649), - [anon_sym_LT_LT_EQ] = ACTIONS(649), - [anon_sym_GT_GT_EQ] = ACTIONS(649), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(649), - [anon_sym_AMP_AMP_EQ] = ACTIONS(649), - [anon_sym_COLON2] = ACTIONS(651), - [anon_sym_do] = ACTIONS(461), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(471), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(481), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(483), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(653), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(655), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3914), + [sym_double_splat] = STATE(3914), + [sym_named_expr] = STATE(3914), + [sym_argument_list_no_parens] = STATE(3294), + [sym_argument_list_no_parens_with_block] = STATE(3682), + [sym_argument_list_with_parens] = STATE(3294), + [sym_argument_list_with_parens_and_block] = STATE(3682), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(3683), + [sym_brace_block] = STATE(3684), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(135), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_RBRACK] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(653), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(657), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(657), + [anon_sym_DASH_EQ] = ACTIONS(657), + [anon_sym_AMP_DASH_EQ] = ACTIONS(657), + [anon_sym_STAR_EQ] = ACTIONS(657), + [anon_sym_AMP_STAR_EQ] = ACTIONS(657), + [anon_sym_SLASH_EQ] = ACTIONS(657), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(657), + [anon_sym_PERCENT_EQ] = ACTIONS(657), + [anon_sym_PIPE_EQ] = ACTIONS(657), + [anon_sym_AMP_EQ] = ACTIONS(657), + [anon_sym_CARET_EQ] = ACTIONS(657), + [anon_sym_STAR_STAR_EQ] = ACTIONS(657), + [anon_sym_LT_LT_EQ] = ACTIONS(657), + [anon_sym_GT_GT_EQ] = ACTIONS(657), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(657), + [anon_sym_AMP_AMP_EQ] = ACTIONS(657), + [anon_sym_COLON2] = ACTIONS(659), + [anon_sym_do] = ACTIONS(157), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(157), + [anon_sym_when] = ACTIONS(157), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(157), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(661), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(663), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(665), }, [21] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3778), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3795), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(21), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3704), - [sym_double_splat] = STATE(3704), - [sym_named_expr] = STATE(3704), - [sym_argument_list_no_parens] = STATE(3375), - [sym_argument_list_no_parens_with_block] = STATE(4715), - [sym_argument_list_with_parens] = STATE(3375), - [sym_argument_list_with_parens_and_block] = STATE(4715), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_do_end_block] = STATE(4716), - [sym_brace_block] = STATE(4717), - [sym_block_argument] = STATE(4714), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(647), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_LPAREN2] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(649), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(649), - [anon_sym_DASH_EQ] = ACTIONS(649), - [anon_sym_AMP_DASH_EQ] = ACTIONS(649), - [anon_sym_STAR_EQ] = ACTIONS(649), - [anon_sym_AMP_STAR_EQ] = ACTIONS(649), - [anon_sym_SLASH_EQ] = ACTIONS(649), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(649), - [anon_sym_PERCENT_EQ] = ACTIONS(649), - [anon_sym_PIPE_EQ] = ACTIONS(649), - [anon_sym_AMP_EQ] = ACTIONS(649), - [anon_sym_CARET_EQ] = ACTIONS(649), - [anon_sym_STAR_STAR_EQ] = ACTIONS(649), - [anon_sym_LT_LT_EQ] = ACTIONS(649), - [anon_sym_GT_GT_EQ] = ACTIONS(649), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(649), - [anon_sym_AMP_AMP_EQ] = ACTIONS(649), - [anon_sym_COLON2] = ACTIONS(651), - [anon_sym_do] = ACTIONS(461), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(471), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(481), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(483), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(653), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(655), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3628), + [sym_double_splat] = STATE(3628), + [sym_named_expr] = STATE(3628), + [sym_argument_list_no_parens] = STATE(3325), + [sym_argument_list_no_parens_with_block] = STATE(4875), + [sym_argument_list_with_parens] = STATE(3325), + [sym_argument_list_with_parens_and_block] = STATE(4875), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_do_end_block] = STATE(4876), + [sym_brace_block] = STATE(4881), + [sym_block_argument] = STATE(4874), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(641), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(643), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(643), + [anon_sym_DASH_EQ] = ACTIONS(643), + [anon_sym_AMP_DASH_EQ] = ACTIONS(643), + [anon_sym_STAR_EQ] = ACTIONS(643), + [anon_sym_AMP_STAR_EQ] = ACTIONS(643), + [anon_sym_SLASH_EQ] = ACTIONS(643), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(643), + [anon_sym_PERCENT_EQ] = ACTIONS(643), + [anon_sym_PIPE_EQ] = ACTIONS(643), + [anon_sym_AMP_EQ] = ACTIONS(643), + [anon_sym_CARET_EQ] = ACTIONS(643), + [anon_sym_STAR_STAR_EQ] = ACTIONS(643), + [anon_sym_LT_LT_EQ] = ACTIONS(643), + [anon_sym_GT_GT_EQ] = ACTIONS(643), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(643), + [anon_sym_AMP_AMP_EQ] = ACTIONS(643), + [anon_sym_COLON2] = ACTIONS(645), + [anon_sym_do] = ACTIONS(467), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(479), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(489), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(491), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(647), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(649), }, [22] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4089), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(3913), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(22), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4095), - [sym_double_splat] = STATE(4095), - [sym_named_expr] = STATE(4095), - [sym_argument_list_no_parens] = STATE(3276), - [sym_argument_list_no_parens_with_block] = STATE(3811), - [sym_argument_list_with_parens] = STATE(3276), - [sym_argument_list_with_parens_and_block] = STATE(3811), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(3814), - [sym_brace_block] = STATE(3829), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(133), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_RBRACK] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(551), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(579), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(579), - [anon_sym_DASH_EQ] = ACTIONS(579), - [anon_sym_AMP_DASH_EQ] = ACTIONS(579), - [anon_sym_STAR_EQ] = ACTIONS(579), - [anon_sym_AMP_STAR_EQ] = ACTIONS(579), - [anon_sym_SLASH_EQ] = ACTIONS(579), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(579), - [anon_sym_PERCENT_EQ] = ACTIONS(579), - [anon_sym_PIPE_EQ] = ACTIONS(579), - [anon_sym_AMP_EQ] = ACTIONS(579), - [anon_sym_CARET_EQ] = ACTIONS(579), - [anon_sym_STAR_STAR_EQ] = ACTIONS(579), - [anon_sym_LT_LT_EQ] = ACTIONS(579), - [anon_sym_GT_GT_EQ] = ACTIONS(579), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(579), - [anon_sym_AMP_AMP_EQ] = ACTIONS(579), - [anon_sym_COLON2] = ACTIONS(581), - [anon_sym_do] = ACTIONS(155), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(155), - [anon_sym_when] = ACTIONS(155), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(155), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(591), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(605), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(627), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3914), + [sym_double_splat] = STATE(3914), + [sym_named_expr] = STATE(3914), + [sym_argument_list_no_parens] = STATE(3294), + [sym_argument_list_no_parens_with_block] = STATE(3682), + [sym_argument_list_with_parens] = STATE(3294), + [sym_argument_list_with_parens_and_block] = STATE(3682), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(3683), + [sym_brace_block] = STATE(3684), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(135), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_RBRACK] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(657), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(657), + [anon_sym_DASH_EQ] = ACTIONS(657), + [anon_sym_AMP_DASH_EQ] = ACTIONS(657), + [anon_sym_STAR_EQ] = ACTIONS(657), + [anon_sym_AMP_STAR_EQ] = ACTIONS(657), + [anon_sym_SLASH_EQ] = ACTIONS(657), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(657), + [anon_sym_PERCENT_EQ] = ACTIONS(657), + [anon_sym_PIPE_EQ] = ACTIONS(657), + [anon_sym_AMP_EQ] = ACTIONS(657), + [anon_sym_CARET_EQ] = ACTIONS(657), + [anon_sym_STAR_STAR_EQ] = ACTIONS(657), + [anon_sym_LT_LT_EQ] = ACTIONS(657), + [anon_sym_GT_GT_EQ] = ACTIONS(657), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(657), + [anon_sym_AMP_AMP_EQ] = ACTIONS(657), + [anon_sym_COLON2] = ACTIONS(659), + [anon_sym_do] = ACTIONS(157), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(157), + [anon_sym_when] = ACTIONS(157), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(157), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(661), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(663), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(665), }, [23] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4287), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(3872), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(23), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4093), - [sym_double_splat] = STATE(4093), - [sym_named_expr] = STATE(4093), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(133), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_RBRACK] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(629), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(635), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(635), - [anon_sym_DASH_EQ] = ACTIONS(635), - [anon_sym_AMP_DASH_EQ] = ACTIONS(635), - [anon_sym_STAR_EQ] = ACTIONS(635), - [anon_sym_AMP_STAR_EQ] = ACTIONS(635), - [anon_sym_SLASH_EQ] = ACTIONS(635), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(635), - [anon_sym_PERCENT_EQ] = ACTIONS(635), - [anon_sym_PIPE_EQ] = ACTIONS(635), - [anon_sym_AMP_EQ] = ACTIONS(635), - [anon_sym_CARET_EQ] = ACTIONS(635), - [anon_sym_STAR_STAR_EQ] = ACTIONS(635), - [anon_sym_LT_LT_EQ] = ACTIONS(635), - [anon_sym_GT_GT_EQ] = ACTIONS(635), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(635), - [anon_sym_AMP_AMP_EQ] = ACTIONS(635), - [anon_sym_COLON2] = ACTIONS(637), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(155), - [anon_sym_when] = ACTIONS(155), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(155), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(643), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(645), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3873), + [sym_double_splat] = STATE(3873), + [sym_named_expr] = STATE(3873), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(135), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_RBRACK] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(559), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(587), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(587), + [anon_sym_DASH_EQ] = ACTIONS(587), + [anon_sym_AMP_DASH_EQ] = ACTIONS(587), + [anon_sym_STAR_EQ] = ACTIONS(587), + [anon_sym_AMP_STAR_EQ] = ACTIONS(587), + [anon_sym_SLASH_EQ] = ACTIONS(587), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(587), + [anon_sym_PERCENT_EQ] = ACTIONS(587), + [anon_sym_PIPE_EQ] = ACTIONS(587), + [anon_sym_AMP_EQ] = ACTIONS(587), + [anon_sym_CARET_EQ] = ACTIONS(587), + [anon_sym_STAR_STAR_EQ] = ACTIONS(587), + [anon_sym_LT_LT_EQ] = ACTIONS(587), + [anon_sym_GT_GT_EQ] = ACTIONS(587), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(587), + [anon_sym_AMP_AMP_EQ] = ACTIONS(587), + [anon_sym_COLON2] = ACTIONS(589), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(157), + [anon_sym_when] = ACTIONS(157), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(157), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(617), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(639), }, [24] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4529), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4473), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(24), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4530), - [sym_double_splat] = STATE(4530), - [sym_named_expr] = STATE(4530), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(133), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(155), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(659), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(659), - [anon_sym_DASH_EQ] = ACTIONS(659), - [anon_sym_AMP_DASH_EQ] = ACTIONS(659), - [anon_sym_STAR_EQ] = ACTIONS(659), - [anon_sym_AMP_STAR_EQ] = ACTIONS(659), - [anon_sym_SLASH_EQ] = ACTIONS(659), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(659), - [anon_sym_PERCENT_EQ] = ACTIONS(659), - [anon_sym_PIPE_EQ] = ACTIONS(659), - [anon_sym_AMP_EQ] = ACTIONS(659), - [anon_sym_CARET_EQ] = ACTIONS(659), - [anon_sym_STAR_STAR_EQ] = ACTIONS(659), - [anon_sym_LT_LT_EQ] = ACTIONS(659), - [anon_sym_GT_GT_EQ] = ACTIONS(659), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(659), - [anon_sym_AMP_AMP_EQ] = ACTIONS(659), - [anon_sym_COLON2] = ACTIONS(661), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(155), - [anon_sym_when] = ACTIONS(155), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(155), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(663), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(665), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(4474), + [sym_double_splat] = STATE(4474), + [sym_named_expr] = STATE(4474), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(135), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(157), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(667), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(669), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(669), + [anon_sym_DASH_EQ] = ACTIONS(669), + [anon_sym_AMP_DASH_EQ] = ACTIONS(669), + [anon_sym_STAR_EQ] = ACTIONS(669), + [anon_sym_AMP_STAR_EQ] = ACTIONS(669), + [anon_sym_SLASH_EQ] = ACTIONS(669), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(669), + [anon_sym_PERCENT_EQ] = ACTIONS(669), + [anon_sym_PIPE_EQ] = ACTIONS(669), + [anon_sym_AMP_EQ] = ACTIONS(669), + [anon_sym_CARET_EQ] = ACTIONS(669), + [anon_sym_STAR_STAR_EQ] = ACTIONS(669), + [anon_sym_LT_LT_EQ] = ACTIONS(669), + [anon_sym_GT_GT_EQ] = ACTIONS(669), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(669), + [anon_sym_AMP_AMP_EQ] = ACTIONS(669), + [anon_sym_COLON2] = ACTIONS(671), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(157), + [anon_sym_when] = ACTIONS(157), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(157), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(673), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(675), }, [25] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5099), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5052), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(25), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5102), - [sym_double_splat] = STATE(5102), - [sym_named_expr] = STATE(5102), - [sym_argument_list_no_parens] = STATE(4900), - [sym_argument_list_no_parens_with_block] = STATE(5224), - [sym_argument_list_with_parens] = STATE(4900), - [sym_argument_list_with_parens_and_block] = STATE(5224), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_do_end_block] = STATE(5225), - [sym_brace_block] = STATE(5226), - [sym_block_argument] = STATE(5223), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_COLON] = ACTIONS(717), - [anon_sym_LPAREN2] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(721), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(721), - [anon_sym_DASH_EQ] = ACTIONS(721), - [anon_sym_AMP_DASH_EQ] = ACTIONS(721), - [anon_sym_STAR_EQ] = ACTIONS(721), - [anon_sym_AMP_STAR_EQ] = ACTIONS(721), - [anon_sym_SLASH_EQ] = ACTIONS(721), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(721), - [anon_sym_PERCENT_EQ] = ACTIONS(721), - [anon_sym_PIPE_EQ] = ACTIONS(721), - [anon_sym_AMP_EQ] = ACTIONS(721), - [anon_sym_CARET_EQ] = ACTIONS(721), - [anon_sym_STAR_STAR_EQ] = ACTIONS(721), - [anon_sym_LT_LT_EQ] = ACTIONS(721), - [anon_sym_GT_GT_EQ] = ACTIONS(721), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(721), - [anon_sym_AMP_AMP_EQ] = ACTIONS(721), - [anon_sym_COLON2] = ACTIONS(723), - [anon_sym_do] = ACTIONS(155), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_then] = ACTIONS(155), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(733), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(743), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(745), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(747), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(769), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5053), + [sym_double_splat] = STATE(5053), + [sym_named_expr] = STATE(5053), + [sym_argument_list_no_parens] = STATE(4931), + [sym_argument_list_no_parens_with_block] = STATE(6082), + [sym_argument_list_with_parens] = STATE(4931), + [sym_argument_list_with_parens_and_block] = STATE(6082), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_do_end_block] = STATE(6084), + [sym_brace_block] = STATE(6196), + [sym_block_argument] = STATE(5978), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(679), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(703), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(727), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_AMP_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_COLON2] = ACTIONS(733), + [anon_sym_do] = ACTIONS(735), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_then] = ACTIONS(157), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(747), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(757), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(759), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(761), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(783), }, [26] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5020), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5088), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(26), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5117), - [sym_double_splat] = STATE(5117), - [sym_named_expr] = STATE(5117), - [sym_argument_list_no_parens] = STATE(4984), - [sym_argument_list_no_parens_with_block] = STATE(5921), - [sym_argument_list_with_parens] = STATE(4984), - [sym_argument_list_with_parens_and_block] = STATE(5921), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_do_end_block] = STATE(5947), - [sym_brace_block] = STATE(6040), - [sym_block_argument] = STATE(5842), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(771), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_COLON] = ACTIONS(773), - [anon_sym_LPAREN2] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(777), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(777), - [anon_sym_DASH_EQ] = ACTIONS(777), - [anon_sym_AMP_DASH_EQ] = ACTIONS(777), - [anon_sym_STAR_EQ] = ACTIONS(777), - [anon_sym_AMP_STAR_EQ] = ACTIONS(777), - [anon_sym_SLASH_EQ] = ACTIONS(777), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(777), - [anon_sym_PERCENT_EQ] = ACTIONS(777), - [anon_sym_PIPE_EQ] = ACTIONS(777), - [anon_sym_AMP_EQ] = ACTIONS(777), - [anon_sym_CARET_EQ] = ACTIONS(777), - [anon_sym_STAR_STAR_EQ] = ACTIONS(777), - [anon_sym_LT_LT_EQ] = ACTIONS(777), - [anon_sym_GT_GT_EQ] = ACTIONS(777), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(777), - [anon_sym_AMP_AMP_EQ] = ACTIONS(777), - [anon_sym_COLON2] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_then] = ACTIONS(155), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(783), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(743), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(745), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(785), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(787), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5090), + [sym_double_splat] = STATE(5090), + [sym_named_expr] = STATE(5090), + [sym_argument_list_no_parens] = STATE(4981), + [sym_argument_list_no_parens_with_block] = STATE(5373), + [sym_argument_list_with_parens] = STATE(4981), + [sym_argument_list_with_parens_and_block] = STATE(5373), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_do_end_block] = STATE(5374), + [sym_brace_block] = STATE(5375), + [sym_block_argument] = STATE(5372), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(679), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(785), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(787), + [anon_sym_LPAREN2] = ACTIONS(789), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(791), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(791), + [anon_sym_DASH_EQ] = ACTIONS(791), + [anon_sym_AMP_DASH_EQ] = ACTIONS(791), + [anon_sym_STAR_EQ] = ACTIONS(791), + [anon_sym_AMP_STAR_EQ] = ACTIONS(791), + [anon_sym_SLASH_EQ] = ACTIONS(791), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(791), + [anon_sym_PERCENT_EQ] = ACTIONS(791), + [anon_sym_PIPE_EQ] = ACTIONS(791), + [anon_sym_AMP_EQ] = ACTIONS(791), + [anon_sym_CARET_EQ] = ACTIONS(791), + [anon_sym_STAR_STAR_EQ] = ACTIONS(791), + [anon_sym_LT_LT_EQ] = ACTIONS(791), + [anon_sym_GT_GT_EQ] = ACTIONS(791), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(791), + [anon_sym_AMP_AMP_EQ] = ACTIONS(791), + [anon_sym_COLON2] = ACTIONS(793), + [anon_sym_do] = ACTIONS(157), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_then] = ACTIONS(157), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(795), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(757), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(759), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(797), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(799), }, [27] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5309), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5205), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(27), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5380), - [sym_double_splat] = STATE(5380), - [sym_named_expr] = STATE(5380), - [sym_argument_list_no_parens] = STATE(5096), - [sym_argument_list_no_parens_with_block] = STATE(6625), - [sym_argument_list_with_parens] = STATE(5096), - [sym_argument_list_with_parens_and_block] = STATE(6625), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_do_end_block] = STATE(6626), - [sym_brace_block] = STATE(6627), - [sym_block_argument] = STATE(6462), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(791), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_RBRACK] = ACTIONS(155), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_COLON] = ACTIONS(839), - [anon_sym_LPAREN2] = ACTIONS(841), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_RBRACK_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5206), + [sym_double_splat] = STATE(5206), + [sym_named_expr] = STATE(5206), + [sym_argument_list_no_parens] = STATE(3294), + [sym_argument_list_no_parens_with_block] = STATE(3682), + [sym_argument_list_with_parens] = STATE(3294), + [sym_argument_list_with_parens_and_block] = STATE(3682), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(3683), + [sym_brace_block] = STATE(3684), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(135), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_EQ_GT] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(807), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(819), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(821), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(821), + [anon_sym_DASH_EQ] = ACTIONS(821), + [anon_sym_AMP_DASH_EQ] = ACTIONS(821), + [anon_sym_STAR_EQ] = ACTIONS(821), + [anon_sym_AMP_STAR_EQ] = ACTIONS(821), + [anon_sym_SLASH_EQ] = ACTIONS(821), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(821), + [anon_sym_PERCENT_EQ] = ACTIONS(821), + [anon_sym_PIPE_EQ] = ACTIONS(821), + [anon_sym_AMP_EQ] = ACTIONS(821), + [anon_sym_CARET_EQ] = ACTIONS(821), + [anon_sym_STAR_STAR_EQ] = ACTIONS(821), + [anon_sym_LT_LT_EQ] = ACTIONS(821), + [anon_sym_GT_GT_EQ] = ACTIONS(821), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(821), + [anon_sym_AMP_AMP_EQ] = ACTIONS(821), + [anon_sym_COLON2] = ACTIONS(823), + [anon_sym_do] = ACTIONS(157), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(661), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(829), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(831), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(833), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(837), + }, + [28] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5329), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(28), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5331), + [sym_double_splat] = STATE(5331), + [sym_named_expr] = STATE(5331), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(135), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_EQ_GT] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(839), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(841), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(843), [anon_sym_AMP_PLUS_EQ] = ACTIONS(843), [anon_sym_DASH_EQ] = ACTIONS(843), @@ -37803,1913 +38272,1156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(843), [anon_sym_AMP_AMP_EQ] = ACTIONS(843), [anon_sym_COLON2] = ACTIONS(845), - [anon_sym_do] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(857), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(867), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(869), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(871), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(893), - }, - [28] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5183), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(28), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5184), - [sym_double_splat] = STATE(5184), - [sym_named_expr] = STATE(5184), - [sym_argument_list_no_parens] = STATE(3276), - [sym_argument_list_no_parens_with_block] = STATE(3811), - [sym_argument_list_with_parens] = STATE(3276), - [sym_argument_list_with_parens_and_block] = STATE(3811), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(3814), - [sym_brace_block] = STATE(3829), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(133), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_EQ_GT] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(901), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_COLON] = ACTIONS(913), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(915), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(915), - [anon_sym_DASH_EQ] = ACTIONS(915), - [anon_sym_AMP_DASH_EQ] = ACTIONS(915), - [anon_sym_STAR_EQ] = ACTIONS(915), - [anon_sym_AMP_STAR_EQ] = ACTIONS(915), - [anon_sym_SLASH_EQ] = ACTIONS(915), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(915), - [anon_sym_PERCENT_EQ] = ACTIONS(915), - [anon_sym_PIPE_EQ] = ACTIONS(915), - [anon_sym_AMP_EQ] = ACTIONS(915), - [anon_sym_CARET_EQ] = ACTIONS(915), - [anon_sym_STAR_STAR_EQ] = ACTIONS(915), - [anon_sym_LT_LT_EQ] = ACTIONS(915), - [anon_sym_GT_GT_EQ] = ACTIONS(915), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(915), - [anon_sym_AMP_AMP_EQ] = ACTIONS(915), - [anon_sym_COLON2] = ACTIONS(917), - [anon_sym_do] = ACTIONS(155), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(591), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(923), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(925), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(927), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(931), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(829), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(831), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(847), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(849), }, [29] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5123), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5088), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(29), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5127), - [sym_double_splat] = STATE(5127), - [sym_named_expr] = STATE(5127), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(133), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_EQ_GT] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(933), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_COLON] = ACTIONS(935), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(937), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(937), - [anon_sym_DASH_EQ] = ACTIONS(937), - [anon_sym_AMP_DASH_EQ] = ACTIONS(937), - [anon_sym_STAR_EQ] = ACTIONS(937), - [anon_sym_AMP_STAR_EQ] = ACTIONS(937), - [anon_sym_SLASH_EQ] = ACTIONS(937), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(937), - [anon_sym_PERCENT_EQ] = ACTIONS(937), - [anon_sym_PIPE_EQ] = ACTIONS(937), - [anon_sym_AMP_EQ] = ACTIONS(937), - [anon_sym_CARET_EQ] = ACTIONS(937), - [anon_sym_STAR_STAR_EQ] = ACTIONS(937), - [anon_sym_LT_LT_EQ] = ACTIONS(937), - [anon_sym_GT_GT_EQ] = ACTIONS(937), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(937), - [anon_sym_AMP_AMP_EQ] = ACTIONS(937), - [anon_sym_COLON2] = ACTIONS(939), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(923), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(925), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(941), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(943), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5090), + [sym_double_splat] = STATE(5090), + [sym_named_expr] = STATE(5090), + [sym_argument_list_no_parens] = STATE(4981), + [sym_argument_list_no_parens_with_block] = STATE(5373), + [sym_argument_list_with_parens] = STATE(4981), + [sym_argument_list_with_parens_and_block] = STATE(5373), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_do_end_block] = STATE(5374), + [sym_brace_block] = STATE(5375), + [sym_block_argument] = STATE(5372), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(679), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(785), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_LPAREN2] = ACTIONS(789), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(791), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(791), + [anon_sym_DASH_EQ] = ACTIONS(791), + [anon_sym_AMP_DASH_EQ] = ACTIONS(791), + [anon_sym_STAR_EQ] = ACTIONS(791), + [anon_sym_AMP_STAR_EQ] = ACTIONS(791), + [anon_sym_SLASH_EQ] = ACTIONS(791), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(791), + [anon_sym_PERCENT_EQ] = ACTIONS(791), + [anon_sym_PIPE_EQ] = ACTIONS(791), + [anon_sym_AMP_EQ] = ACTIONS(791), + [anon_sym_CARET_EQ] = ACTIONS(791), + [anon_sym_STAR_STAR_EQ] = ACTIONS(791), + [anon_sym_LT_LT_EQ] = ACTIONS(791), + [anon_sym_GT_GT_EQ] = ACTIONS(791), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(791), + [anon_sym_AMP_AMP_EQ] = ACTIONS(791), + [anon_sym_COLON2] = ACTIONS(793), + [anon_sym_do] = ACTIONS(157), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_then] = ACTIONS(157), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(795), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(757), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(759), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(797), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(799), }, [30] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5175), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5276), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(30), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5176), - [sym_double_splat] = STATE(5176), - [sym_named_expr] = STATE(5176), - [sym_argument_list_no_parens] = STATE(5080), - [sym_argument_list_no_parens_with_block] = STATE(5532), - [sym_argument_list_with_parens] = STATE(5080), - [sym_argument_list_with_parens_and_block] = STATE(5532), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_do_end_block] = STATE(5533), - [sym_brace_block] = STATE(5534), - [sym_block_argument] = STATE(5573), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(791), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_RBRACK] = ACTIONS(155), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_COLON] = ACTIONS(947), - [anon_sym_LPAREN2] = ACTIONS(949), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_RBRACK_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_AMP_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_COLON2] = ACTIONS(953), - [anon_sym_do] = ACTIONS(155), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(955), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(867), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(869), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(957), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(959), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5306), + [sym_double_splat] = STATE(5306), + [sym_named_expr] = STATE(5306), + [sym_argument_list_no_parens] = STATE(5120), + [sym_argument_list_no_parens_with_block] = STATE(6359), + [sym_argument_list_with_parens] = STATE(5120), + [sym_argument_list_with_parens_and_block] = STATE(6359), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_do_end_block] = STATE(6360), + [sym_brace_block] = STATE(6421), + [sym_block_argument] = STATE(6308), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(901), + [anon_sym_LPAREN2] = ACTIONS(903), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_RBRACK_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(905), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(905), + [anon_sym_DASH_EQ] = ACTIONS(905), + [anon_sym_AMP_DASH_EQ] = ACTIONS(905), + [anon_sym_STAR_EQ] = ACTIONS(905), + [anon_sym_AMP_STAR_EQ] = ACTIONS(905), + [anon_sym_SLASH_EQ] = ACTIONS(905), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(905), + [anon_sym_PERCENT_EQ] = ACTIONS(905), + [anon_sym_PIPE_EQ] = ACTIONS(905), + [anon_sym_AMP_EQ] = ACTIONS(905), + [anon_sym_CARET_EQ] = ACTIONS(905), + [anon_sym_STAR_STAR_EQ] = ACTIONS(905), + [anon_sym_LT_LT_EQ] = ACTIONS(905), + [anon_sym_GT_GT_EQ] = ACTIONS(905), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(905), + [anon_sym_AMP_AMP_EQ] = ACTIONS(905), + [anon_sym_COLON2] = ACTIONS(907), + [anon_sym_do] = ACTIONS(909), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(921), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(931), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(933), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(935), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(957), }, [31] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5099), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5194), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(31), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5102), - [sym_double_splat] = STATE(5102), - [sym_named_expr] = STATE(5102), - [sym_argument_list_no_parens] = STATE(4900), - [sym_argument_list_no_parens_with_block] = STATE(5224), - [sym_argument_list_with_parens] = STATE(4900), - [sym_argument_list_with_parens_and_block] = STATE(5224), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_do_end_block] = STATE(5225), - [sym_brace_block] = STATE(5226), - [sym_block_argument] = STATE(5223), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_LPAREN2] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(721), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(721), - [anon_sym_DASH_EQ] = ACTIONS(721), - [anon_sym_AMP_DASH_EQ] = ACTIONS(721), - [anon_sym_STAR_EQ] = ACTIONS(721), - [anon_sym_AMP_STAR_EQ] = ACTIONS(721), - [anon_sym_SLASH_EQ] = ACTIONS(721), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(721), - [anon_sym_PERCENT_EQ] = ACTIONS(721), - [anon_sym_PIPE_EQ] = ACTIONS(721), - [anon_sym_AMP_EQ] = ACTIONS(721), - [anon_sym_CARET_EQ] = ACTIONS(721), - [anon_sym_STAR_STAR_EQ] = ACTIONS(721), - [anon_sym_LT_LT_EQ] = ACTIONS(721), - [anon_sym_GT_GT_EQ] = ACTIONS(721), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(721), - [anon_sym_AMP_AMP_EQ] = ACTIONS(721), - [anon_sym_COLON2] = ACTIONS(723), - [anon_sym_do] = ACTIONS(155), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_then] = ACTIONS(155), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(733), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(743), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(745), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(747), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(769), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5195), + [sym_double_splat] = STATE(5195), + [sym_named_expr] = STATE(5195), + [sym_argument_list_no_parens] = STATE(5133), + [sym_argument_list_no_parens_with_block] = STATE(5757), + [sym_argument_list_with_parens] = STATE(5133), + [sym_argument_list_with_parens_and_block] = STATE(5757), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_do_end_block] = STATE(5759), + [sym_brace_block] = STATE(5760), + [sym_block_argument] = STATE(5489), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(959), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(961), + [anon_sym_LPAREN2] = ACTIONS(963), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_RBRACK_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(965), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(965), + [anon_sym_DASH_EQ] = ACTIONS(965), + [anon_sym_AMP_DASH_EQ] = ACTIONS(965), + [anon_sym_STAR_EQ] = ACTIONS(965), + [anon_sym_AMP_STAR_EQ] = ACTIONS(965), + [anon_sym_SLASH_EQ] = ACTIONS(965), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(965), + [anon_sym_PERCENT_EQ] = ACTIONS(965), + [anon_sym_PIPE_EQ] = ACTIONS(965), + [anon_sym_AMP_EQ] = ACTIONS(965), + [anon_sym_CARET_EQ] = ACTIONS(965), + [anon_sym_STAR_STAR_EQ] = ACTIONS(965), + [anon_sym_LT_LT_EQ] = ACTIONS(965), + [anon_sym_GT_GT_EQ] = ACTIONS(965), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(965), + [anon_sym_AMP_AMP_EQ] = ACTIONS(965), + [anon_sym_COLON2] = ACTIONS(967), + [anon_sym_do] = ACTIONS(157), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(969), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(931), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(933), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(971), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(973), }, [32] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5020), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5052), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(32), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5117), - [sym_double_splat] = STATE(5117), - [sym_named_expr] = STATE(5117), - [sym_argument_list_no_parens] = STATE(4984), - [sym_argument_list_no_parens_with_block] = STATE(5921), - [sym_argument_list_with_parens] = STATE(4984), - [sym_argument_list_with_parens_and_block] = STATE(5921), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_do_end_block] = STATE(5947), - [sym_brace_block] = STATE(6040), - [sym_block_argument] = STATE(5842), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(771), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_LPAREN2] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(777), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(777), - [anon_sym_DASH_EQ] = ACTIONS(777), - [anon_sym_AMP_DASH_EQ] = ACTIONS(777), - [anon_sym_STAR_EQ] = ACTIONS(777), - [anon_sym_AMP_STAR_EQ] = ACTIONS(777), - [anon_sym_SLASH_EQ] = ACTIONS(777), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(777), - [anon_sym_PERCENT_EQ] = ACTIONS(777), - [anon_sym_PIPE_EQ] = ACTIONS(777), - [anon_sym_AMP_EQ] = ACTIONS(777), - [anon_sym_CARET_EQ] = ACTIONS(777), - [anon_sym_STAR_STAR_EQ] = ACTIONS(777), - [anon_sym_LT_LT_EQ] = ACTIONS(777), - [anon_sym_GT_GT_EQ] = ACTIONS(777), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(777), - [anon_sym_AMP_AMP_EQ] = ACTIONS(777), - [anon_sym_COLON2] = ACTIONS(779), - [anon_sym_do] = ACTIONS(781), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_then] = ACTIONS(155), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(783), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(743), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(745), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(785), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(787), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5053), + [sym_double_splat] = STATE(5053), + [sym_named_expr] = STATE(5053), + [sym_argument_list_no_parens] = STATE(4931), + [sym_argument_list_no_parens_with_block] = STATE(6082), + [sym_argument_list_with_parens] = STATE(4931), + [sym_argument_list_with_parens_and_block] = STATE(6082), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_do_end_block] = STATE(6084), + [sym_brace_block] = STATE(6196), + [sym_block_argument] = STATE(5978), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(679), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(703), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(731), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(731), + [anon_sym_DASH_EQ] = ACTIONS(731), + [anon_sym_AMP_DASH_EQ] = ACTIONS(731), + [anon_sym_STAR_EQ] = ACTIONS(731), + [anon_sym_AMP_STAR_EQ] = ACTIONS(731), + [anon_sym_SLASH_EQ] = ACTIONS(731), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(731), + [anon_sym_PERCENT_EQ] = ACTIONS(731), + [anon_sym_PIPE_EQ] = ACTIONS(731), + [anon_sym_AMP_EQ] = ACTIONS(731), + [anon_sym_CARET_EQ] = ACTIONS(731), + [anon_sym_STAR_STAR_EQ] = ACTIONS(731), + [anon_sym_LT_LT_EQ] = ACTIONS(731), + [anon_sym_GT_GT_EQ] = ACTIONS(731), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(731), + [anon_sym_AMP_AMP_EQ] = ACTIONS(731), + [anon_sym_COLON2] = ACTIONS(733), + [anon_sym_do] = ACTIONS(735), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_then] = ACTIONS(157), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(747), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(757), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(759), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(761), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(783), }, [33] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5183), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5682), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(33), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5184), - [sym_double_splat] = STATE(5184), - [sym_named_expr] = STATE(5184), - [sym_argument_list_no_parens] = STATE(3276), - [sym_argument_list_no_parens_with_block] = STATE(3811), - [sym_argument_list_with_parens] = STATE(3276), - [sym_argument_list_with_parens_and_block] = STATE(3811), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(3814), - [sym_brace_block] = STATE(3829), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(133), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_EQ_GT] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(901), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(915), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(915), - [anon_sym_DASH_EQ] = ACTIONS(915), - [anon_sym_AMP_DASH_EQ] = ACTIONS(915), - [anon_sym_STAR_EQ] = ACTIONS(915), - [anon_sym_AMP_STAR_EQ] = ACTIONS(915), - [anon_sym_SLASH_EQ] = ACTIONS(915), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(915), - [anon_sym_PERCENT_EQ] = ACTIONS(915), - [anon_sym_PIPE_EQ] = ACTIONS(915), - [anon_sym_AMP_EQ] = ACTIONS(915), - [anon_sym_CARET_EQ] = ACTIONS(915), - [anon_sym_STAR_STAR_EQ] = ACTIONS(915), - [anon_sym_LT_LT_EQ] = ACTIONS(915), - [anon_sym_GT_GT_EQ] = ACTIONS(915), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(915), - [anon_sym_AMP_AMP_EQ] = ACTIONS(915), - [anon_sym_COLON2] = ACTIONS(917), - [anon_sym_do] = ACTIONS(155), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(591), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(923), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(925), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(927), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(931), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5678), + [sym_double_splat] = STATE(5678), + [sym_named_expr] = STATE(5678), + [sym_argument_list_no_parens] = STATE(5332), + [sym_argument_list_no_parens_with_block] = STATE(6787), + [sym_argument_list_with_parens] = STATE(5332), + [sym_argument_list_with_parens_and_block] = STATE(6787), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_do_end_block] = STATE(6788), + [sym_brace_block] = STATE(6789), + [sym_block_argument] = STATE(6785), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(1001), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_COLON] = ACTIONS(1025), + [anon_sym_LPAREN2] = ACTIONS(1027), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(1029), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(1029), + [anon_sym_DASH_EQ] = ACTIONS(1029), + [anon_sym_AMP_DASH_EQ] = ACTIONS(1029), + [anon_sym_STAR_EQ] = ACTIONS(1029), + [anon_sym_AMP_STAR_EQ] = ACTIONS(1029), + [anon_sym_SLASH_EQ] = ACTIONS(1029), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1029), + [anon_sym_PERCENT_EQ] = ACTIONS(1029), + [anon_sym_PIPE_EQ] = ACTIONS(1029), + [anon_sym_AMP_EQ] = ACTIONS(1029), + [anon_sym_CARET_EQ] = ACTIONS(1029), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1029), + [anon_sym_LT_LT_EQ] = ACTIONS(1029), + [anon_sym_GT_GT_EQ] = ACTIONS(1029), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1029), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1029), + [anon_sym_COLON2] = ACTIONS(1031), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1045), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(135), + [sym__end_of_with_expression] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(1055), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(1057), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(1059), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1081), }, [34] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5123), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5329), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(34), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5127), - [sym_double_splat] = STATE(5127), - [sym_named_expr] = STATE(5127), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(133), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_EQ_GT] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(933), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(937), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(937), - [anon_sym_DASH_EQ] = ACTIONS(937), - [anon_sym_AMP_DASH_EQ] = ACTIONS(937), - [anon_sym_STAR_EQ] = ACTIONS(937), - [anon_sym_AMP_STAR_EQ] = ACTIONS(937), - [anon_sym_SLASH_EQ] = ACTIONS(937), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(937), - [anon_sym_PERCENT_EQ] = ACTIONS(937), - [anon_sym_PIPE_EQ] = ACTIONS(937), - [anon_sym_AMP_EQ] = ACTIONS(937), - [anon_sym_CARET_EQ] = ACTIONS(937), - [anon_sym_STAR_STAR_EQ] = ACTIONS(937), - [anon_sym_LT_LT_EQ] = ACTIONS(937), - [anon_sym_GT_GT_EQ] = ACTIONS(937), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(937), - [anon_sym_AMP_AMP_EQ] = ACTIONS(937), - [anon_sym_COLON2] = ACTIONS(939), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(923), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(925), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(941), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(943), - }, - [35] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5725), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), - [sym_heredoc_body] = STATE(35), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5721), - [sym_double_splat] = STATE(5721), - [sym_named_expr] = STATE(5721), - [sym_argument_list_no_parens] = STATE(5132), - [sym_argument_list_no_parens_with_block] = STATE(6657), - [sym_argument_list_with_parens] = STATE(5132), - [sym_argument_list_with_parens_and_block] = STATE(6657), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_do_end_block] = STATE(6668), - [sym_brace_block] = STATE(6669), - [sym_block_argument] = STATE(6672), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(987), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_COLON] = ACTIONS(1011), - [anon_sym_LPAREN2] = ACTIONS(1013), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(1015), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(1015), - [anon_sym_DASH_EQ] = ACTIONS(1015), - [anon_sym_AMP_DASH_EQ] = ACTIONS(1015), - [anon_sym_STAR_EQ] = ACTIONS(1015), - [anon_sym_AMP_STAR_EQ] = ACTIONS(1015), - [anon_sym_SLASH_EQ] = ACTIONS(1015), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1015), - [anon_sym_PERCENT_EQ] = ACTIONS(1015), - [anon_sym_PIPE_EQ] = ACTIONS(1015), - [anon_sym_AMP_EQ] = ACTIONS(1015), - [anon_sym_CARET_EQ] = ACTIONS(1015), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1015), - [anon_sym_LT_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_GT_EQ] = ACTIONS(1015), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1015), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1015), - [anon_sym_COLON2] = ACTIONS(1017), - [anon_sym_do] = ACTIONS(1019), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1029), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(133), - [sym__end_of_with_expression] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(1039), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(1041), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(1043), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1065), - }, - [36] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5463), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), - [sym_heredoc_body] = STATE(36), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5586), - [sym_double_splat] = STATE(5586), - [sym_named_expr] = STATE(5586), - [sym_argument_list_no_parens] = STATE(5393), - [sym_argument_list_no_parens_with_block] = STATE(5911), - [sym_argument_list_with_parens] = STATE(5393), - [sym_argument_list_with_parens_and_block] = STATE(5911), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_do_end_block] = STATE(5912), - [sym_brace_block] = STATE(5913), - [sym_block_argument] = STATE(5898), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(1067), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_COLON] = ACTIONS(1069), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(1073), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(1073), - [anon_sym_DASH_EQ] = ACTIONS(1073), - [anon_sym_AMP_DASH_EQ] = ACTIONS(1073), - [anon_sym_STAR_EQ] = ACTIONS(1073), - [anon_sym_AMP_STAR_EQ] = ACTIONS(1073), - [anon_sym_SLASH_EQ] = ACTIONS(1073), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1073), - [anon_sym_PERCENT_EQ] = ACTIONS(1073), - [anon_sym_PIPE_EQ] = ACTIONS(1073), - [anon_sym_AMP_EQ] = ACTIONS(1073), - [anon_sym_CARET_EQ] = ACTIONS(1073), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1073), - [anon_sym_LT_LT_EQ] = ACTIONS(1073), - [anon_sym_GT_GT_EQ] = ACTIONS(1073), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1073), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1073), - [anon_sym_COLON2] = ACTIONS(1075), - [anon_sym_do] = ACTIONS(155), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(133), - [sym__end_of_with_expression] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(1039), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(1041), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(1079), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1081), - }, - [37] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5309), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), - [sym_heredoc_body] = STATE(37), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5380), - [sym_double_splat] = STATE(5380), - [sym_named_expr] = STATE(5380), - [sym_argument_list_no_parens] = STATE(5096), - [sym_argument_list_no_parens_with_block] = STATE(6625), - [sym_argument_list_with_parens] = STATE(5096), - [sym_argument_list_with_parens_and_block] = STATE(6625), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_do_end_block] = STATE(6626), - [sym_brace_block] = STATE(6627), - [sym_block_argument] = STATE(6462), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(791), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_RBRACK] = ACTIONS(155), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(815), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(841), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_RBRACK_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5331), + [sym_double_splat] = STATE(5331), + [sym_named_expr] = STATE(5331), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(135), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_EQ_GT] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(839), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(843), [anon_sym_AMP_PLUS_EQ] = ACTIONS(843), [anon_sym_DASH_EQ] = ACTIONS(843), @@ -39728,6122 +39440,7319 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_PIPE_EQ] = ACTIONS(843), [anon_sym_AMP_AMP_EQ] = ACTIONS(843), [anon_sym_COLON2] = ACTIONS(845), - [anon_sym_do] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(857), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(867), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(869), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(871), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(893), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(829), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(831), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(847), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(849), + }, + [35] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5205), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(35), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5206), + [sym_double_splat] = STATE(5206), + [sym_named_expr] = STATE(5206), + [sym_argument_list_no_parens] = STATE(3294), + [sym_argument_list_no_parens_with_block] = STATE(3682), + [sym_argument_list_with_parens] = STATE(3294), + [sym_argument_list_with_parens_and_block] = STATE(3682), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(3683), + [sym_brace_block] = STATE(3684), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(135), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_EQ_GT] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(807), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(821), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(821), + [anon_sym_DASH_EQ] = ACTIONS(821), + [anon_sym_AMP_DASH_EQ] = ACTIONS(821), + [anon_sym_STAR_EQ] = ACTIONS(821), + [anon_sym_AMP_STAR_EQ] = ACTIONS(821), + [anon_sym_SLASH_EQ] = ACTIONS(821), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(821), + [anon_sym_PERCENT_EQ] = ACTIONS(821), + [anon_sym_PIPE_EQ] = ACTIONS(821), + [anon_sym_AMP_EQ] = ACTIONS(821), + [anon_sym_CARET_EQ] = ACTIONS(821), + [anon_sym_STAR_STAR_EQ] = ACTIONS(821), + [anon_sym_LT_LT_EQ] = ACTIONS(821), + [anon_sym_GT_GT_EQ] = ACTIONS(821), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(821), + [anon_sym_AMP_AMP_EQ] = ACTIONS(821), + [anon_sym_COLON2] = ACTIONS(823), + [anon_sym_do] = ACTIONS(157), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(661), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(829), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(831), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(833), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(837), + }, + [36] = { + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5276), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), + [sym_heredoc_body] = STATE(36), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5306), + [sym_double_splat] = STATE(5306), + [sym_named_expr] = STATE(5306), + [sym_argument_list_no_parens] = STATE(5120), + [sym_argument_list_no_parens_with_block] = STATE(6359), + [sym_argument_list_with_parens] = STATE(5120), + [sym_argument_list_with_parens_and_block] = STATE(6359), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_do_end_block] = STATE(6360), + [sym_brace_block] = STATE(6421), + [sym_block_argument] = STATE(6308), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(877), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_LPAREN2] = ACTIONS(903), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_RBRACK_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(905), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(905), + [anon_sym_DASH_EQ] = ACTIONS(905), + [anon_sym_AMP_DASH_EQ] = ACTIONS(905), + [anon_sym_STAR_EQ] = ACTIONS(905), + [anon_sym_AMP_STAR_EQ] = ACTIONS(905), + [anon_sym_SLASH_EQ] = ACTIONS(905), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(905), + [anon_sym_PERCENT_EQ] = ACTIONS(905), + [anon_sym_PIPE_EQ] = ACTIONS(905), + [anon_sym_AMP_EQ] = ACTIONS(905), + [anon_sym_CARET_EQ] = ACTIONS(905), + [anon_sym_STAR_STAR_EQ] = ACTIONS(905), + [anon_sym_LT_LT_EQ] = ACTIONS(905), + [anon_sym_GT_GT_EQ] = ACTIONS(905), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(905), + [anon_sym_AMP_AMP_EQ] = ACTIONS(905), + [anon_sym_COLON2] = ACTIONS(907), + [anon_sym_do] = ACTIONS(909), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(921), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(931), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(933), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(935), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(957), + }, + [37] = { + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5194), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), + [sym_heredoc_body] = STATE(37), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5195), + [sym_double_splat] = STATE(5195), + [sym_named_expr] = STATE(5195), + [sym_argument_list_no_parens] = STATE(5133), + [sym_argument_list_no_parens_with_block] = STATE(5757), + [sym_argument_list_with_parens] = STATE(5133), + [sym_argument_list_with_parens_and_block] = STATE(5757), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_do_end_block] = STATE(5759), + [sym_brace_block] = STATE(5760), + [sym_block_argument] = STATE(5489), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_RBRACK] = ACTIONS(157), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(959), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_LPAREN2] = ACTIONS(963), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_RBRACK_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(965), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(965), + [anon_sym_DASH_EQ] = ACTIONS(965), + [anon_sym_AMP_DASH_EQ] = ACTIONS(965), + [anon_sym_STAR_EQ] = ACTIONS(965), + [anon_sym_AMP_STAR_EQ] = ACTIONS(965), + [anon_sym_SLASH_EQ] = ACTIONS(965), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(965), + [anon_sym_PERCENT_EQ] = ACTIONS(965), + [anon_sym_PIPE_EQ] = ACTIONS(965), + [anon_sym_AMP_EQ] = ACTIONS(965), + [anon_sym_CARET_EQ] = ACTIONS(965), + [anon_sym_STAR_STAR_EQ] = ACTIONS(965), + [anon_sym_LT_LT_EQ] = ACTIONS(965), + [anon_sym_GT_GT_EQ] = ACTIONS(965), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(965), + [anon_sym_AMP_AMP_EQ] = ACTIONS(965), + [anon_sym_COLON2] = ACTIONS(967), + [anon_sym_do] = ACTIONS(157), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(969), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(931), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(933), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(971), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(973), }, [38] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5175), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5749), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(38), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5176), - [sym_double_splat] = STATE(5176), - [sym_named_expr] = STATE(5176), - [sym_argument_list_no_parens] = STATE(5080), - [sym_argument_list_no_parens_with_block] = STATE(5532), - [sym_argument_list_with_parens] = STATE(5080), - [sym_argument_list_with_parens_and_block] = STATE(5532), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_do_end_block] = STATE(5533), - [sym_brace_block] = STATE(5534), - [sym_block_argument] = STATE(5573), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(791), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_RBRACK] = ACTIONS(155), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(945), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(949), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_RBRACK_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_AMP_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_AMP_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_STAR_STAR_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(951), - [anon_sym_AMP_AMP_EQ] = ACTIONS(951), - [anon_sym_COLON2] = ACTIONS(953), - [anon_sym_do] = ACTIONS(155), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(955), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(867), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(869), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(957), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(959), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5703), + [sym_double_splat] = STATE(5703), + [sym_named_expr] = STATE(5703), + [sym_argument_list_no_parens] = STATE(5164), + [sym_argument_list_no_parens_with_block] = STATE(6159), + [sym_argument_list_with_parens] = STATE(5164), + [sym_argument_list_with_parens_and_block] = STATE(6159), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_do_end_block] = STATE(6190), + [sym_brace_block] = STATE(6210), + [sym_block_argument] = STATE(6037), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(1083), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_COLON] = ACTIONS(1085), + [anon_sym_LPAREN2] = ACTIONS(1087), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(1089), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(1089), + [anon_sym_DASH_EQ] = ACTIONS(1089), + [anon_sym_AMP_DASH_EQ] = ACTIONS(1089), + [anon_sym_STAR_EQ] = ACTIONS(1089), + [anon_sym_AMP_STAR_EQ] = ACTIONS(1089), + [anon_sym_SLASH_EQ] = ACTIONS(1089), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1089), + [anon_sym_PERCENT_EQ] = ACTIONS(1089), + [anon_sym_PIPE_EQ] = ACTIONS(1089), + [anon_sym_AMP_EQ] = ACTIONS(1089), + [anon_sym_CARET_EQ] = ACTIONS(1089), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1089), + [anon_sym_LT_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_GT_EQ] = ACTIONS(1089), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1089), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1089), + [anon_sym_COLON2] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(157), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1093), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(135), + [sym__end_of_with_expression] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(1055), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(1057), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(1095), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1097), }, [39] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5736), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5709), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(39), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5737), - [sym_double_splat] = STATE(5737), - [sym_named_expr] = STATE(5737), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_COLON] = ACTIONS(1101), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(1103), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(1103), - [anon_sym_DASH_EQ] = ACTIONS(1103), - [anon_sym_AMP_DASH_EQ] = ACTIONS(1103), - [anon_sym_STAR_EQ] = ACTIONS(1103), - [anon_sym_AMP_STAR_EQ] = ACTIONS(1103), - [anon_sym_SLASH_EQ] = ACTIONS(1103), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1103), - [anon_sym_PERCENT_EQ] = ACTIONS(1103), - [anon_sym_PIPE_EQ] = ACTIONS(1103), - [anon_sym_AMP_EQ] = ACTIONS(1103), - [anon_sym_CARET_EQ] = ACTIONS(1103), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1103), - [anon_sym_LT_LT_EQ] = ACTIONS(1103), - [anon_sym_GT_GT_EQ] = ACTIONS(1103), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1103), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1103), - [anon_sym_COLON2] = ACTIONS(155), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(1109), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(1111), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(1113), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1117), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5710), + [sym_double_splat] = STATE(5710), + [sym_named_expr] = STATE(5710), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(1105), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(1117), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(1119), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(1119), + [anon_sym_DASH_EQ] = ACTIONS(1119), + [anon_sym_AMP_DASH_EQ] = ACTIONS(1119), + [anon_sym_STAR_EQ] = ACTIONS(1119), + [anon_sym_AMP_STAR_EQ] = ACTIONS(1119), + [anon_sym_SLASH_EQ] = ACTIONS(1119), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1119), + [anon_sym_PERCENT_EQ] = ACTIONS(1119), + [anon_sym_PIPE_EQ] = ACTIONS(1119), + [anon_sym_AMP_EQ] = ACTIONS(1119), + [anon_sym_CARET_EQ] = ACTIONS(1119), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1119), + [anon_sym_LT_LT_EQ] = ACTIONS(1119), + [anon_sym_GT_GT_EQ] = ACTIONS(1119), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1119), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1119), + [anon_sym_COLON2] = ACTIONS(157), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(1125), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(1127), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(1129), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1133), }, [40] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5452), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5503), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(40), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5437), - [sym_double_splat] = STATE(5437), - [sym_named_expr] = STATE(5437), - [sym_argument_list_no_parens] = STATE(3276), - [sym_argument_list_no_parens_with_block] = STATE(3811), - [sym_argument_list_with_parens] = STATE(3276), - [sym_argument_list_with_parens_and_block] = STATE(3811), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(3814), - [sym_brace_block] = STATE(3829), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(1119), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_COLON] = ACTIONS(1121), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_AMP_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_AMP_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_PIPE_EQ] = ACTIONS(1123), - [anon_sym_AMP_EQ] = ACTIONS(1123), - [anon_sym_CARET_EQ] = ACTIONS(1123), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1123), - [anon_sym_LT_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_GT_EQ] = ACTIONS(1123), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1123), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1123), - [anon_sym_COLON2] = ACTIONS(155), - [anon_sym_do] = ACTIONS(155), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(591), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(1109), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(1111), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(1125), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1127), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5480), + [sym_double_splat] = STATE(5480), + [sym_named_expr] = STATE(5480), + [sym_argument_list_no_parens] = STATE(3294), + [sym_argument_list_no_parens_with_block] = STATE(3682), + [sym_argument_list_with_parens] = STATE(3294), + [sym_argument_list_with_parens_and_block] = STATE(3682), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(3683), + [sym_brace_block] = STATE(3684), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(1135), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(1137), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(1139), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(1139), + [anon_sym_DASH_EQ] = ACTIONS(1139), + [anon_sym_AMP_DASH_EQ] = ACTIONS(1139), + [anon_sym_STAR_EQ] = ACTIONS(1139), + [anon_sym_AMP_STAR_EQ] = ACTIONS(1139), + [anon_sym_SLASH_EQ] = ACTIONS(1139), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1139), + [anon_sym_PERCENT_EQ] = ACTIONS(1139), + [anon_sym_PIPE_EQ] = ACTIONS(1139), + [anon_sym_AMP_EQ] = ACTIONS(1139), + [anon_sym_CARET_EQ] = ACTIONS(1139), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1139), + [anon_sym_LT_LT_EQ] = ACTIONS(1139), + [anon_sym_GT_GT_EQ] = ACTIONS(1139), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1139), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1139), + [anon_sym_COLON2] = ACTIONS(157), + [anon_sym_do] = ACTIONS(157), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(661), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(1125), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(1127), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(1141), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1143), }, [41] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5725), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5682), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(41), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5721), - [sym_double_splat] = STATE(5721), - [sym_named_expr] = STATE(5721), - [sym_argument_list_no_parens] = STATE(5132), - [sym_argument_list_no_parens_with_block] = STATE(6657), - [sym_argument_list_with_parens] = STATE(5132), - [sym_argument_list_with_parens_and_block] = STATE(6657), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_do_end_block] = STATE(6668), - [sym_brace_block] = STATE(6669), - [sym_block_argument] = STATE(6672), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(987), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_LPAREN2] = ACTIONS(1013), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(1015), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(1015), - [anon_sym_DASH_EQ] = ACTIONS(1015), - [anon_sym_AMP_DASH_EQ] = ACTIONS(1015), - [anon_sym_STAR_EQ] = ACTIONS(1015), - [anon_sym_AMP_STAR_EQ] = ACTIONS(1015), - [anon_sym_SLASH_EQ] = ACTIONS(1015), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1015), - [anon_sym_PERCENT_EQ] = ACTIONS(1015), - [anon_sym_PIPE_EQ] = ACTIONS(1015), - [anon_sym_AMP_EQ] = ACTIONS(1015), - [anon_sym_CARET_EQ] = ACTIONS(1015), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1015), - [anon_sym_LT_LT_EQ] = ACTIONS(1015), - [anon_sym_GT_GT_EQ] = ACTIONS(1015), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1015), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1015), - [anon_sym_COLON2] = ACTIONS(1017), - [anon_sym_do] = ACTIONS(1019), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1029), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(133), - [sym__end_of_with_expression] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(1039), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(1041), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(1043), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1065), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5678), + [sym_double_splat] = STATE(5678), + [sym_named_expr] = STATE(5678), + [sym_argument_list_no_parens] = STATE(5332), + [sym_argument_list_no_parens_with_block] = STATE(6787), + [sym_argument_list_with_parens] = STATE(5332), + [sym_argument_list_with_parens_and_block] = STATE(6787), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_do_end_block] = STATE(6788), + [sym_brace_block] = STATE(6789), + [sym_block_argument] = STATE(6785), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(1001), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_LPAREN2] = ACTIONS(1027), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(1029), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(1029), + [anon_sym_DASH_EQ] = ACTIONS(1029), + [anon_sym_AMP_DASH_EQ] = ACTIONS(1029), + [anon_sym_STAR_EQ] = ACTIONS(1029), + [anon_sym_AMP_STAR_EQ] = ACTIONS(1029), + [anon_sym_SLASH_EQ] = ACTIONS(1029), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1029), + [anon_sym_PERCENT_EQ] = ACTIONS(1029), + [anon_sym_PIPE_EQ] = ACTIONS(1029), + [anon_sym_AMP_EQ] = ACTIONS(1029), + [anon_sym_CARET_EQ] = ACTIONS(1029), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1029), + [anon_sym_LT_LT_EQ] = ACTIONS(1029), + [anon_sym_GT_GT_EQ] = ACTIONS(1029), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1029), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1029), + [anon_sym_COLON2] = ACTIONS(1031), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1045), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(135), + [sym__end_of_with_expression] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(1055), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(1057), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(1059), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1081), }, [42] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5463), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5749), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(42), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5586), - [sym_double_splat] = STATE(5586), - [sym_named_expr] = STATE(5586), - [sym_argument_list_no_parens] = STATE(5393), - [sym_argument_list_no_parens_with_block] = STATE(5911), - [sym_argument_list_with_parens] = STATE(5393), - [sym_argument_list_with_parens_and_block] = STATE(5911), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_do_end_block] = STATE(5912), - [sym_brace_block] = STATE(5913), - [sym_block_argument] = STATE(5898), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(1067), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(1073), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(1073), - [anon_sym_DASH_EQ] = ACTIONS(1073), - [anon_sym_AMP_DASH_EQ] = ACTIONS(1073), - [anon_sym_STAR_EQ] = ACTIONS(1073), - [anon_sym_AMP_STAR_EQ] = ACTIONS(1073), - [anon_sym_SLASH_EQ] = ACTIONS(1073), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1073), - [anon_sym_PERCENT_EQ] = ACTIONS(1073), - [anon_sym_PIPE_EQ] = ACTIONS(1073), - [anon_sym_AMP_EQ] = ACTIONS(1073), - [anon_sym_CARET_EQ] = ACTIONS(1073), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1073), - [anon_sym_LT_LT_EQ] = ACTIONS(1073), - [anon_sym_GT_GT_EQ] = ACTIONS(1073), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1073), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1073), - [anon_sym_COLON2] = ACTIONS(1075), - [anon_sym_do] = ACTIONS(155), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(133), - [sym__end_of_with_expression] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(1039), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(1041), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(1079), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1081), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5703), + [sym_double_splat] = STATE(5703), + [sym_named_expr] = STATE(5703), + [sym_argument_list_no_parens] = STATE(5164), + [sym_argument_list_no_parens_with_block] = STATE(6159), + [sym_argument_list_with_parens] = STATE(5164), + [sym_argument_list_with_parens_and_block] = STATE(6159), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_do_end_block] = STATE(6190), + [sym_brace_block] = STATE(6210), + [sym_block_argument] = STATE(6037), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(1083), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_LPAREN2] = ACTIONS(1087), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(1089), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(1089), + [anon_sym_DASH_EQ] = ACTIONS(1089), + [anon_sym_AMP_DASH_EQ] = ACTIONS(1089), + [anon_sym_STAR_EQ] = ACTIONS(1089), + [anon_sym_AMP_STAR_EQ] = ACTIONS(1089), + [anon_sym_SLASH_EQ] = ACTIONS(1089), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1089), + [anon_sym_PERCENT_EQ] = ACTIONS(1089), + [anon_sym_PIPE_EQ] = ACTIONS(1089), + [anon_sym_AMP_EQ] = ACTIONS(1089), + [anon_sym_CARET_EQ] = ACTIONS(1089), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1089), + [anon_sym_LT_LT_EQ] = ACTIONS(1089), + [anon_sym_GT_GT_EQ] = ACTIONS(1089), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1089), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1089), + [anon_sym_COLON2] = ACTIONS(1091), + [anon_sym_do] = ACTIONS(157), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1093), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(135), + [sym__end_of_with_expression] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(1055), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(1057), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(1095), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1097), }, [43] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5147), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5227), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(43), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5149), - [sym_double_splat] = STATE(5149), - [sym_named_expr] = STATE(5149), - [sym_argument_list_no_parens] = STATE(4984), - [sym_argument_list_no_parens_with_block] = STATE(5921), - [sym_argument_list_with_parens] = STATE(4984), - [sym_argument_list_with_parens_and_block] = STATE(5921), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_do_end_block] = STATE(5947), - [sym_brace_block] = STATE(6040), - [sym_block_argument] = STATE(5842), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(1129), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_LPAREN2] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(1131), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(1131), - [anon_sym_DASH_EQ] = ACTIONS(1131), - [anon_sym_AMP_DASH_EQ] = ACTIONS(1131), - [anon_sym_STAR_EQ] = ACTIONS(1131), - [anon_sym_AMP_STAR_EQ] = ACTIONS(1131), - [anon_sym_SLASH_EQ] = ACTIONS(1131), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1131), - [anon_sym_PERCENT_EQ] = ACTIONS(1131), - [anon_sym_PIPE_EQ] = ACTIONS(1131), - [anon_sym_AMP_EQ] = ACTIONS(1131), - [anon_sym_CARET_EQ] = ACTIONS(1131), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1131), - [anon_sym_LT_LT_EQ] = ACTIONS(1131), - [anon_sym_GT_GT_EQ] = ACTIONS(1131), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1131), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1131), - [anon_sym_COLON2] = ACTIONS(1133), - [anon_sym_do] = ACTIONS(781), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(783), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(743), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(745), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(1135), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1137), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5231), + [sym_double_splat] = STATE(5231), + [sym_named_expr] = STATE(5231), + [sym_argument_list_no_parens] = STATE(4931), + [sym_argument_list_no_parens_with_block] = STATE(6082), + [sym_argument_list_with_parens] = STATE(4931), + [sym_argument_list_with_parens_and_block] = STATE(6082), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_do_end_block] = STATE(6084), + [sym_brace_block] = STATE(6196), + [sym_block_argument] = STATE(5978), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(679), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(1145), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(1147), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(1147), + [anon_sym_DASH_EQ] = ACTIONS(1147), + [anon_sym_AMP_DASH_EQ] = ACTIONS(1147), + [anon_sym_STAR_EQ] = ACTIONS(1147), + [anon_sym_AMP_STAR_EQ] = ACTIONS(1147), + [anon_sym_SLASH_EQ] = ACTIONS(1147), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1147), + [anon_sym_PERCENT_EQ] = ACTIONS(1147), + [anon_sym_PIPE_EQ] = ACTIONS(1147), + [anon_sym_AMP_EQ] = ACTIONS(1147), + [anon_sym_CARET_EQ] = ACTIONS(1147), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1147), + [anon_sym_LT_LT_EQ] = ACTIONS(1147), + [anon_sym_GT_GT_EQ] = ACTIONS(1147), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1147), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1147), + [anon_sym_COLON2] = ACTIONS(1149), + [anon_sym_do] = ACTIONS(735), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(747), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(757), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(759), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(1151), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1153), }, [44] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4529), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5647), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(44), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4530), - [sym_double_splat] = STATE(4530), - [sym_named_expr] = STATE(4530), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(1141), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(659), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(659), - [anon_sym_DASH_EQ] = ACTIONS(659), - [anon_sym_AMP_DASH_EQ] = ACTIONS(659), - [anon_sym_STAR_EQ] = ACTIONS(659), - [anon_sym_AMP_STAR_EQ] = ACTIONS(659), - [anon_sym_SLASH_EQ] = ACTIONS(659), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(659), - [anon_sym_PERCENT_EQ] = ACTIONS(659), - [anon_sym_PIPE_EQ] = ACTIONS(659), - [anon_sym_AMP_EQ] = ACTIONS(659), - [anon_sym_CARET_EQ] = ACTIONS(659), - [anon_sym_STAR_STAR_EQ] = ACTIONS(659), - [anon_sym_LT_LT_EQ] = ACTIONS(659), - [anon_sym_GT_GT_EQ] = ACTIONS(659), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(659), - [anon_sym_AMP_AMP_EQ] = ACTIONS(659), - [anon_sym_COLON2] = ACTIONS(661), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(663), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(665), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5645), + [sym_double_splat] = STATE(5645), + [sym_named_expr] = STATE(5645), + [sym_argument_list_no_parens] = STATE(5332), + [sym_argument_list_no_parens_with_block] = STATE(6787), + [sym_argument_list_with_parens] = STATE(5332), + [sym_argument_list_with_parens_and_block] = STATE(6787), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_do_end_block] = STATE(6788), + [sym_brace_block] = STATE(6789), + [sym_block_argument] = STATE(6785), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(1155), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_LPAREN2] = ACTIONS(1027), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(1157), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(1157), + [anon_sym_DASH_EQ] = ACTIONS(1157), + [anon_sym_AMP_DASH_EQ] = ACTIONS(1157), + [anon_sym_STAR_EQ] = ACTIONS(1157), + [anon_sym_AMP_STAR_EQ] = ACTIONS(1157), + [anon_sym_SLASH_EQ] = ACTIONS(1157), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1157), + [anon_sym_PERCENT_EQ] = ACTIONS(1157), + [anon_sym_PIPE_EQ] = ACTIONS(1157), + [anon_sym_AMP_EQ] = ACTIONS(1157), + [anon_sym_CARET_EQ] = ACTIONS(1157), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1157), + [anon_sym_LT_LT_EQ] = ACTIONS(1157), + [anon_sym_GT_GT_EQ] = ACTIONS(1157), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1157), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1157), + [anon_sym_COLON2] = ACTIONS(1159), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1045), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(135), + [sym__end_of_with_expression] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(1055), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(1057), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(1161), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1163), }, [45] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4529), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4473), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(45), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4530), - [sym_double_splat] = STATE(4530), - [sym_named_expr] = STATE(4530), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(259), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(659), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(659), - [anon_sym_DASH_EQ] = ACTIONS(659), - [anon_sym_AMP_DASH_EQ] = ACTIONS(659), - [anon_sym_STAR_EQ] = ACTIONS(659), - [anon_sym_AMP_STAR_EQ] = ACTIONS(659), - [anon_sym_SLASH_EQ] = ACTIONS(659), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(659), - [anon_sym_PERCENT_EQ] = ACTIONS(659), - [anon_sym_PIPE_EQ] = ACTIONS(659), - [anon_sym_AMP_EQ] = ACTIONS(659), - [anon_sym_CARET_EQ] = ACTIONS(659), - [anon_sym_STAR_STAR_EQ] = ACTIONS(659), - [anon_sym_LT_LT_EQ] = ACTIONS(659), - [anon_sym_GT_GT_EQ] = ACTIONS(659), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(659), - [anon_sym_AMP_AMP_EQ] = ACTIONS(659), - [anon_sym_COLON2] = ACTIONS(661), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(663), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(665), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(4474), + [sym_double_splat] = STATE(4474), + [sym_named_expr] = STATE(4474), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(1165), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(669), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(669), + [anon_sym_DASH_EQ] = ACTIONS(669), + [anon_sym_AMP_DASH_EQ] = ACTIONS(669), + [anon_sym_STAR_EQ] = ACTIONS(669), + [anon_sym_AMP_STAR_EQ] = ACTIONS(669), + [anon_sym_SLASH_EQ] = ACTIONS(669), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(669), + [anon_sym_PERCENT_EQ] = ACTIONS(669), + [anon_sym_PIPE_EQ] = ACTIONS(669), + [anon_sym_AMP_EQ] = ACTIONS(669), + [anon_sym_CARET_EQ] = ACTIONS(669), + [anon_sym_STAR_STAR_EQ] = ACTIONS(669), + [anon_sym_LT_LT_EQ] = ACTIONS(669), + [anon_sym_GT_GT_EQ] = ACTIONS(669), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(669), + [anon_sym_AMP_AMP_EQ] = ACTIONS(669), + [anon_sym_COLON2] = ACTIONS(671), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(673), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(675), }, [46] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4529), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4473), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(46), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4530), - [sym_double_splat] = STATE(4530), - [sym_named_expr] = STATE(4530), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(259), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(1143), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(659), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(659), - [anon_sym_DASH_EQ] = ACTIONS(659), - [anon_sym_AMP_DASH_EQ] = ACTIONS(659), - [anon_sym_STAR_EQ] = ACTIONS(659), - [anon_sym_AMP_STAR_EQ] = ACTIONS(659), - [anon_sym_SLASH_EQ] = ACTIONS(659), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(659), - [anon_sym_PERCENT_EQ] = ACTIONS(659), - [anon_sym_PIPE_EQ] = ACTIONS(659), - [anon_sym_AMP_EQ] = ACTIONS(659), - [anon_sym_CARET_EQ] = ACTIONS(659), - [anon_sym_STAR_STAR_EQ] = ACTIONS(659), - [anon_sym_LT_LT_EQ] = ACTIONS(659), - [anon_sym_GT_GT_EQ] = ACTIONS(659), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(659), - [anon_sym_AMP_AMP_EQ] = ACTIONS(659), - [anon_sym_COLON2] = ACTIONS(661), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(663), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(665), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(4474), + [sym_double_splat] = STATE(4474), + [sym_named_expr] = STATE(4474), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1167), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(667), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(669), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(669), + [anon_sym_DASH_EQ] = ACTIONS(669), + [anon_sym_AMP_DASH_EQ] = ACTIONS(669), + [anon_sym_STAR_EQ] = ACTIONS(669), + [anon_sym_AMP_STAR_EQ] = ACTIONS(669), + [anon_sym_SLASH_EQ] = ACTIONS(669), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(669), + [anon_sym_PERCENT_EQ] = ACTIONS(669), + [anon_sym_PIPE_EQ] = ACTIONS(669), + [anon_sym_AMP_EQ] = ACTIONS(669), + [anon_sym_CARET_EQ] = ACTIONS(669), + [anon_sym_STAR_STAR_EQ] = ACTIONS(669), + [anon_sym_LT_LT_EQ] = ACTIONS(669), + [anon_sym_GT_GT_EQ] = ACTIONS(669), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(669), + [anon_sym_AMP_AMP_EQ] = ACTIONS(669), + [anon_sym_COLON2] = ACTIONS(671), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(673), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(675), }, [47] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5452), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4473), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(47), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5437), - [sym_double_splat] = STATE(5437), - [sym_named_expr] = STATE(5437), - [sym_argument_list_no_parens] = STATE(3276), - [sym_argument_list_no_parens_with_block] = STATE(3811), - [sym_argument_list_with_parens] = STATE(3276), - [sym_argument_list_with_parens_and_block] = STATE(3811), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(3814), - [sym_brace_block] = STATE(3829), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(1119), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(1123), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(1123), - [anon_sym_DASH_EQ] = ACTIONS(1123), - [anon_sym_AMP_DASH_EQ] = ACTIONS(1123), - [anon_sym_STAR_EQ] = ACTIONS(1123), - [anon_sym_AMP_STAR_EQ] = ACTIONS(1123), - [anon_sym_SLASH_EQ] = ACTIONS(1123), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1123), - [anon_sym_PERCENT_EQ] = ACTIONS(1123), - [anon_sym_PIPE_EQ] = ACTIONS(1123), - [anon_sym_AMP_EQ] = ACTIONS(1123), - [anon_sym_CARET_EQ] = ACTIONS(1123), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1123), - [anon_sym_LT_LT_EQ] = ACTIONS(1123), - [anon_sym_GT_GT_EQ] = ACTIONS(1123), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1123), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1123), - [anon_sym_COLON2] = ACTIONS(155), - [anon_sym_do] = ACTIONS(155), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(591), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(1109), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(1111), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(1125), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1127), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(4474), + [sym_double_splat] = STATE(4474), + [sym_named_expr] = STATE(4474), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(667), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(669), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(669), + [anon_sym_DASH_EQ] = ACTIONS(669), + [anon_sym_AMP_DASH_EQ] = ACTIONS(669), + [anon_sym_STAR_EQ] = ACTIONS(669), + [anon_sym_AMP_STAR_EQ] = ACTIONS(669), + [anon_sym_SLASH_EQ] = ACTIONS(669), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(669), + [anon_sym_PERCENT_EQ] = ACTIONS(669), + [anon_sym_PIPE_EQ] = ACTIONS(669), + [anon_sym_AMP_EQ] = ACTIONS(669), + [anon_sym_CARET_EQ] = ACTIONS(669), + [anon_sym_STAR_STAR_EQ] = ACTIONS(669), + [anon_sym_LT_LT_EQ] = ACTIONS(669), + [anon_sym_GT_GT_EQ] = ACTIONS(669), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(669), + [anon_sym_AMP_AMP_EQ] = ACTIONS(669), + [anon_sym_COLON2] = ACTIONS(671), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(673), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(675), }, [48] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4529), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4473), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(48), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4530), - [sym_double_splat] = STATE(4530), - [sym_named_expr] = STATE(4530), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(259), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(1145), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(659), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(659), - [anon_sym_DASH_EQ] = ACTIONS(659), - [anon_sym_AMP_DASH_EQ] = ACTIONS(659), - [anon_sym_STAR_EQ] = ACTIONS(659), - [anon_sym_AMP_STAR_EQ] = ACTIONS(659), - [anon_sym_SLASH_EQ] = ACTIONS(659), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(659), - [anon_sym_PERCENT_EQ] = ACTIONS(659), - [anon_sym_PIPE_EQ] = ACTIONS(659), - [anon_sym_AMP_EQ] = ACTIONS(659), - [anon_sym_CARET_EQ] = ACTIONS(659), - [anon_sym_STAR_STAR_EQ] = ACTIONS(659), - [anon_sym_LT_LT_EQ] = ACTIONS(659), - [anon_sym_GT_GT_EQ] = ACTIONS(659), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(659), - [anon_sym_AMP_AMP_EQ] = ACTIONS(659), - [anon_sym_COLON2] = ACTIONS(661), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(663), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(665), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(4474), + [sym_double_splat] = STATE(4474), + [sym_named_expr] = STATE(4474), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1167), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(1169), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(669), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(669), + [anon_sym_DASH_EQ] = ACTIONS(669), + [anon_sym_AMP_DASH_EQ] = ACTIONS(669), + [anon_sym_STAR_EQ] = ACTIONS(669), + [anon_sym_AMP_STAR_EQ] = ACTIONS(669), + [anon_sym_SLASH_EQ] = ACTIONS(669), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(669), + [anon_sym_PERCENT_EQ] = ACTIONS(669), + [anon_sym_PIPE_EQ] = ACTIONS(669), + [anon_sym_AMP_EQ] = ACTIONS(669), + [anon_sym_CARET_EQ] = ACTIONS(669), + [anon_sym_STAR_STAR_EQ] = ACTIONS(669), + [anon_sym_LT_LT_EQ] = ACTIONS(669), + [anon_sym_GT_GT_EQ] = ACTIONS(669), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(669), + [anon_sym_AMP_AMP_EQ] = ACTIONS(669), + [anon_sym_COLON2] = ACTIONS(671), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(673), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(675), }, [49] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4529), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4473), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(49), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4530), - [sym_double_splat] = STATE(4530), - [sym_named_expr] = STATE(4530), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(259), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(1147), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(659), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(659), - [anon_sym_DASH_EQ] = ACTIONS(659), - [anon_sym_AMP_DASH_EQ] = ACTIONS(659), - [anon_sym_STAR_EQ] = ACTIONS(659), - [anon_sym_AMP_STAR_EQ] = ACTIONS(659), - [anon_sym_SLASH_EQ] = ACTIONS(659), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(659), - [anon_sym_PERCENT_EQ] = ACTIONS(659), - [anon_sym_PIPE_EQ] = ACTIONS(659), - [anon_sym_AMP_EQ] = ACTIONS(659), - [anon_sym_CARET_EQ] = ACTIONS(659), - [anon_sym_STAR_STAR_EQ] = ACTIONS(659), - [anon_sym_LT_LT_EQ] = ACTIONS(659), - [anon_sym_GT_GT_EQ] = ACTIONS(659), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(659), - [anon_sym_AMP_AMP_EQ] = ACTIONS(659), - [anon_sym_COLON2] = ACTIONS(661), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(663), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(665), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(4474), + [sym_double_splat] = STATE(4474), + [sym_named_expr] = STATE(4474), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(1171), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(669), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(669), + [anon_sym_DASH_EQ] = ACTIONS(669), + [anon_sym_AMP_DASH_EQ] = ACTIONS(669), + [anon_sym_STAR_EQ] = ACTIONS(669), + [anon_sym_AMP_STAR_EQ] = ACTIONS(669), + [anon_sym_SLASH_EQ] = ACTIONS(669), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(669), + [anon_sym_PERCENT_EQ] = ACTIONS(669), + [anon_sym_PIPE_EQ] = ACTIONS(669), + [anon_sym_AMP_EQ] = ACTIONS(669), + [anon_sym_CARET_EQ] = ACTIONS(669), + [anon_sym_STAR_STAR_EQ] = ACTIONS(669), + [anon_sym_LT_LT_EQ] = ACTIONS(669), + [anon_sym_GT_GT_EQ] = ACTIONS(669), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(669), + [anon_sym_AMP_AMP_EQ] = ACTIONS(669), + [anon_sym_COLON2] = ACTIONS(671), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(673), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(675), }, [50] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5736), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5503), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(50), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5737), - [sym_double_splat] = STATE(5737), - [sym_named_expr] = STATE(5737), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(1089), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(1103), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(1103), - [anon_sym_DASH_EQ] = ACTIONS(1103), - [anon_sym_AMP_DASH_EQ] = ACTIONS(1103), - [anon_sym_STAR_EQ] = ACTIONS(1103), - [anon_sym_AMP_STAR_EQ] = ACTIONS(1103), - [anon_sym_SLASH_EQ] = ACTIONS(1103), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1103), - [anon_sym_PERCENT_EQ] = ACTIONS(1103), - [anon_sym_PIPE_EQ] = ACTIONS(1103), - [anon_sym_AMP_EQ] = ACTIONS(1103), - [anon_sym_CARET_EQ] = ACTIONS(1103), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1103), - [anon_sym_LT_LT_EQ] = ACTIONS(1103), - [anon_sym_GT_GT_EQ] = ACTIONS(1103), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1103), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1103), - [anon_sym_COLON2] = ACTIONS(155), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(1109), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(1111), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(1113), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1117), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5480), + [sym_double_splat] = STATE(5480), + [sym_named_expr] = STATE(5480), + [sym_argument_list_no_parens] = STATE(3294), + [sym_argument_list_no_parens_with_block] = STATE(3682), + [sym_argument_list_with_parens] = STATE(3294), + [sym_argument_list_with_parens_and_block] = STATE(3682), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(3683), + [sym_brace_block] = STATE(3684), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(1135), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(1139), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(1139), + [anon_sym_DASH_EQ] = ACTIONS(1139), + [anon_sym_AMP_DASH_EQ] = ACTIONS(1139), + [anon_sym_STAR_EQ] = ACTIONS(1139), + [anon_sym_AMP_STAR_EQ] = ACTIONS(1139), + [anon_sym_SLASH_EQ] = ACTIONS(1139), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1139), + [anon_sym_PERCENT_EQ] = ACTIONS(1139), + [anon_sym_PIPE_EQ] = ACTIONS(1139), + [anon_sym_AMP_EQ] = ACTIONS(1139), + [anon_sym_CARET_EQ] = ACTIONS(1139), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1139), + [anon_sym_LT_LT_EQ] = ACTIONS(1139), + [anon_sym_GT_GT_EQ] = ACTIONS(1139), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1139), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1139), + [anon_sym_COLON2] = ACTIONS(157), + [anon_sym_do] = ACTIONS(157), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(661), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(1125), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(1127), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(1141), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1143), }, [51] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4529), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4473), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(51), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4530), - [sym_double_splat] = STATE(4530), - [sym_named_expr] = STATE(4530), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1139), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(657), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(659), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(659), - [anon_sym_DASH_EQ] = ACTIONS(659), - [anon_sym_AMP_DASH_EQ] = ACTIONS(659), - [anon_sym_STAR_EQ] = ACTIONS(659), - [anon_sym_AMP_STAR_EQ] = ACTIONS(659), - [anon_sym_SLASH_EQ] = ACTIONS(659), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(659), - [anon_sym_PERCENT_EQ] = ACTIONS(659), - [anon_sym_PIPE_EQ] = ACTIONS(659), - [anon_sym_AMP_EQ] = ACTIONS(659), - [anon_sym_CARET_EQ] = ACTIONS(659), - [anon_sym_STAR_STAR_EQ] = ACTIONS(659), - [anon_sym_LT_LT_EQ] = ACTIONS(659), - [anon_sym_GT_GT_EQ] = ACTIONS(659), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(659), - [anon_sym_AMP_AMP_EQ] = ACTIONS(659), - [anon_sym_COLON2] = ACTIONS(661), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(663), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(665), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(4474), + [sym_double_splat] = STATE(4474), + [sym_named_expr] = STATE(4474), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(1173), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(669), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(669), + [anon_sym_DASH_EQ] = ACTIONS(669), + [anon_sym_AMP_DASH_EQ] = ACTIONS(669), + [anon_sym_STAR_EQ] = ACTIONS(669), + [anon_sym_AMP_STAR_EQ] = ACTIONS(669), + [anon_sym_SLASH_EQ] = ACTIONS(669), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(669), + [anon_sym_PERCENT_EQ] = ACTIONS(669), + [anon_sym_PIPE_EQ] = ACTIONS(669), + [anon_sym_AMP_EQ] = ACTIONS(669), + [anon_sym_CARET_EQ] = ACTIONS(669), + [anon_sym_STAR_STAR_EQ] = ACTIONS(669), + [anon_sym_LT_LT_EQ] = ACTIONS(669), + [anon_sym_GT_GT_EQ] = ACTIONS(669), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(669), + [anon_sym_AMP_AMP_EQ] = ACTIONS(669), + [anon_sym_COLON2] = ACTIONS(671), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(673), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(675), }, [52] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5698), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5658), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(52), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5699), - [sym_double_splat] = STATE(5699), - [sym_named_expr] = STATE(5699), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_EQ_GT] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(1149), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(1151), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(1151), - [anon_sym_DASH_EQ] = ACTIONS(1151), - [anon_sym_AMP_DASH_EQ] = ACTIONS(1151), - [anon_sym_STAR_EQ] = ACTIONS(1151), - [anon_sym_AMP_STAR_EQ] = ACTIONS(1151), - [anon_sym_SLASH_EQ] = ACTIONS(1151), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1151), - [anon_sym_PERCENT_EQ] = ACTIONS(1151), - [anon_sym_PIPE_EQ] = ACTIONS(1151), - [anon_sym_AMP_EQ] = ACTIONS(1151), - [anon_sym_CARET_EQ] = ACTIONS(1151), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1151), - [anon_sym_LT_LT_EQ] = ACTIONS(1151), - [anon_sym_GT_GT_EQ] = ACTIONS(1151), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1151), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1151), - [anon_sym_COLON2] = ACTIONS(1153), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(923), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(925), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(1155), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1157), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5659), + [sym_double_splat] = STATE(5659), + [sym_named_expr] = STATE(5659), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_EQ_GT] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(1177), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(1177), + [anon_sym_DASH_EQ] = ACTIONS(1177), + [anon_sym_AMP_DASH_EQ] = ACTIONS(1177), + [anon_sym_STAR_EQ] = ACTIONS(1177), + [anon_sym_AMP_STAR_EQ] = ACTIONS(1177), + [anon_sym_SLASH_EQ] = ACTIONS(1177), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1177), + [anon_sym_PERCENT_EQ] = ACTIONS(1177), + [anon_sym_PIPE_EQ] = ACTIONS(1177), + [anon_sym_AMP_EQ] = ACTIONS(1177), + [anon_sym_CARET_EQ] = ACTIONS(1177), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1177), + [anon_sym_LT_LT_EQ] = ACTIONS(1177), + [anon_sym_GT_GT_EQ] = ACTIONS(1177), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1177), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1177), + [anon_sym_COLON2] = ACTIONS(1179), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(829), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(831), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(1181), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1183), }, [53] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5609), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5709), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(53), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5537), - [sym_double_splat] = STATE(5537), - [sym_named_expr] = STATE(5537), - [sym_argument_list_no_parens] = STATE(5132), - [sym_argument_list_no_parens_with_block] = STATE(6657), - [sym_argument_list_with_parens] = STATE(5132), - [sym_argument_list_with_parens_and_block] = STATE(6657), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_do_end_block] = STATE(6668), - [sym_brace_block] = STATE(6669), - [sym_block_argument] = STATE(6672), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(1159), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_LPAREN2] = ACTIONS(1013), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(1161), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(1161), - [anon_sym_DASH_EQ] = ACTIONS(1161), - [anon_sym_AMP_DASH_EQ] = ACTIONS(1161), - [anon_sym_STAR_EQ] = ACTIONS(1161), - [anon_sym_AMP_STAR_EQ] = ACTIONS(1161), - [anon_sym_SLASH_EQ] = ACTIONS(1161), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1161), - [anon_sym_PERCENT_EQ] = ACTIONS(1161), - [anon_sym_PIPE_EQ] = ACTIONS(1161), - [anon_sym_AMP_EQ] = ACTIONS(1161), - [anon_sym_CARET_EQ] = ACTIONS(1161), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1161), - [anon_sym_LT_LT_EQ] = ACTIONS(1161), - [anon_sym_GT_GT_EQ] = ACTIONS(1161), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1161), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1161), - [anon_sym_COLON2] = ACTIONS(1163), - [anon_sym_do] = ACTIONS(1019), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1029), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(133), - [sym__end_of_with_expression] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(1039), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(1041), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(1165), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1167), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5710), + [sym_double_splat] = STATE(5710), + [sym_named_expr] = STATE(5710), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(1105), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(1119), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(1119), + [anon_sym_DASH_EQ] = ACTIONS(1119), + [anon_sym_AMP_DASH_EQ] = ACTIONS(1119), + [anon_sym_STAR_EQ] = ACTIONS(1119), + [anon_sym_AMP_STAR_EQ] = ACTIONS(1119), + [anon_sym_SLASH_EQ] = ACTIONS(1119), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1119), + [anon_sym_PERCENT_EQ] = ACTIONS(1119), + [anon_sym_PIPE_EQ] = ACTIONS(1119), + [anon_sym_AMP_EQ] = ACTIONS(1119), + [anon_sym_CARET_EQ] = ACTIONS(1119), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1119), + [anon_sym_LT_LT_EQ] = ACTIONS(1119), + [anon_sym_GT_GT_EQ] = ACTIONS(1119), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1119), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1119), + [anon_sym_COLON2] = ACTIONS(157), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(1125), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(1127), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(1129), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1133), }, [54] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5658), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5765), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(54), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5659), - [sym_double_splat] = STATE(5659), - [sym_named_expr] = STATE(5659), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(1169), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(1171), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(1171), - [anon_sym_DASH_EQ] = ACTIONS(1171), - [anon_sym_AMP_DASH_EQ] = ACTIONS(1171), - [anon_sym_STAR_EQ] = ACTIONS(1171), - [anon_sym_AMP_STAR_EQ] = ACTIONS(1171), - [anon_sym_SLASH_EQ] = ACTIONS(1171), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1171), - [anon_sym_PERCENT_EQ] = ACTIONS(1171), - [anon_sym_PIPE_EQ] = ACTIONS(1171), - [anon_sym_AMP_EQ] = ACTIONS(1171), - [anon_sym_CARET_EQ] = ACTIONS(1171), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1171), - [anon_sym_LT_LT_EQ] = ACTIONS(1171), - [anon_sym_GT_GT_EQ] = ACTIONS(1171), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1171), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1171), - [anon_sym_COLON2] = ACTIONS(155), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__unary_star] = ACTIONS(1109), - [sym__binary_star] = ACTIONS(133), - [sym__unary_double_star] = ACTIONS(1111), - [sym__binary_double_star] = ACTIONS(133), - [sym__block_ampersand] = ACTIONS(1173), - [sym_binary_ampersand] = ACTIONS(133), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(133), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1175), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5766), + [sym_double_splat] = STATE(5766), + [sym_named_expr] = STATE(5766), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(1187), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(1187), + [anon_sym_DASH_EQ] = ACTIONS(1187), + [anon_sym_AMP_DASH_EQ] = ACTIONS(1187), + [anon_sym_STAR_EQ] = ACTIONS(1187), + [anon_sym_AMP_STAR_EQ] = ACTIONS(1187), + [anon_sym_SLASH_EQ] = ACTIONS(1187), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1187), + [anon_sym_PERCENT_EQ] = ACTIONS(1187), + [anon_sym_PIPE_EQ] = ACTIONS(1187), + [anon_sym_AMP_EQ] = ACTIONS(1187), + [anon_sym_CARET_EQ] = ACTIONS(1187), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1187), + [anon_sym_LT_LT_EQ] = ACTIONS(1187), + [anon_sym_GT_GT_EQ] = ACTIONS(1187), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1187), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1187), + [anon_sym_COLON2] = ACTIONS(157), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__unary_star] = ACTIONS(1125), + [sym__binary_star] = ACTIONS(135), + [sym__unary_double_star] = ACTIONS(1127), + [sym__binary_double_star] = ACTIONS(135), + [sym__block_ampersand] = ACTIONS(1189), + [sym_binary_ampersand] = ACTIONS(135), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(135), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1191), }, [55] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2501), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2507), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(55), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2502), - [sym_double_splat] = STATE(2502), - [sym_named_expr] = STATE(2502), - [sym_argument_list_no_parens] = STATE(2445), - [sym_argument_list_no_parens_with_block] = STATE(3107), - [sym_argument_list_with_parens] = STATE(2445), - [sym_argument_list_with_parens_and_block] = STATE(3107), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_do_end_block] = STATE(3120), - [sym_brace_block] = STATE(3140), - [sym_block_argument] = STATE(3029), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(1177), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(1177), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(1177), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_COLON] = ACTIONS(1181), - [anon_sym_LPAREN2] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_when] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(1179), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(253), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(213), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(215), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(255), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(1177), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(1177), - [sym__modifier_rescue_keyword] = ACTIONS(1177), - [sym__modifier_ensure_keyword] = ACTIONS(1177), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(257), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2518), + [sym_double_splat] = STATE(2518), + [sym_named_expr] = STATE(2518), + [sym_argument_list_no_parens] = STATE(2439), + [sym_argument_list_no_parens_with_block] = STATE(2546), + [sym_argument_list_with_parens] = STATE(2439), + [sym_argument_list_with_parens_and_block] = STATE(2546), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_do_end_block] = STATE(2548), + [sym_brace_block] = STATE(2552), + [sym_block_argument] = STATE(2705), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(1193), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(1193), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(1197), + [anon_sym_LPAREN2] = ACTIONS(251), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_when] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(1195), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(257), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(219), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(221), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(259), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(1193), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(1193), + [sym__modifier_rescue_keyword] = ACTIONS(1193), + [sym__modifier_ensure_keyword] = ACTIONS(1193), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(261), }, [56] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2533), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2478), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(56), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2535), - [sym_double_splat] = STATE(2535), - [sym_named_expr] = STATE(2535), - [sym_argument_list_no_parens] = STATE(2457), - [sym_argument_list_no_parens_with_block] = STATE(2663), - [sym_argument_list_with_parens] = STATE(2457), - [sym_argument_list_with_parens_and_block] = STATE(2663), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_do_end_block] = STATE(2664), - [sym_brace_block] = STATE(2665), - [sym_block_argument] = STATE(2638), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(1177), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(1177), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(1177), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_COLON] = ACTIONS(1183), - [anon_sym_LPAREN2] = ACTIONS(189), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_when] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(1179), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(203), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(213), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(215), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(217), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(1177), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(1177), - [sym__modifier_rescue_keyword] = ACTIONS(1177), - [sym__modifier_ensure_keyword] = ACTIONS(1177), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(239), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2479), + [sym_double_splat] = STATE(2479), + [sym_named_expr] = STATE(2479), + [sym_argument_list_no_parens] = STATE(2447), + [sym_argument_list_no_parens_with_block] = STATE(2894), + [sym_argument_list_with_parens] = STATE(2447), + [sym_argument_list_with_parens_and_block] = STATE(2894), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_do_end_block] = STATE(2895), + [sym_brace_block] = STATE(2896), + [sym_block_argument] = STATE(3125), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(1193), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(1193), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_COLON] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(197), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_when] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(1195), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(209), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(219), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(221), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(223), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(1193), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(1193), + [sym__modifier_rescue_keyword] = ACTIONS(1193), + [sym__modifier_ensure_keyword] = ACTIONS(1193), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(245), }, [57] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2501), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2478), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(57), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2502), - [sym_double_splat] = STATE(2502), - [sym_named_expr] = STATE(2502), - [sym_argument_list_no_parens] = STATE(2442), - [sym_argument_list_no_parens_with_block] = STATE(3053), - [sym_argument_list_with_parens] = STATE(2464), - [sym_argument_list_with_parens_and_block] = STATE(3055), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_do_end_block] = STATE(3056), - [sym_brace_block] = STATE(3061), - [sym_block_argument] = STATE(3029), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(1185), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(1185), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(1185), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_LPAREN2] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(1187), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_when] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(1187), - [sym__line_break] = ACTIONS(1185), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(253), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(213), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(215), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(255), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(1185), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(1185), - [sym__modifier_rescue_keyword] = ACTIONS(1185), - [sym__modifier_ensure_keyword] = ACTIONS(1185), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(257), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2479), + [sym_double_splat] = STATE(2479), + [sym_named_expr] = STATE(2479), + [sym_argument_list_no_parens] = STATE(2434), + [sym_argument_list_no_parens_with_block] = STATE(3120), + [sym_argument_list_with_parens] = STATE(2434), + [sym_argument_list_with_parens_and_block] = STATE(3120), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_do_end_block] = STATE(3121), + [sym_brace_block] = STATE(3121), + [sym_block_argument] = STATE(3125), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(1201), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1201), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(1201), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(197), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_when] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(1203), + [sym__line_break] = ACTIONS(1201), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(209), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(219), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(221), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(223), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(1201), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(1201), + [sym__modifier_rescue_keyword] = ACTIONS(1201), + [sym__modifier_ensure_keyword] = ACTIONS(1201), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(245), }, [58] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2533), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2507), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(58), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2535), - [sym_double_splat] = STATE(2535), - [sym_named_expr] = STATE(2535), - [sym_argument_list_no_parens] = STATE(2430), - [sym_argument_list_no_parens_with_block] = STATE(2697), - [sym_argument_list_with_parens] = STATE(2430), - [sym_argument_list_with_parens_and_block] = STATE(2697), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_do_end_block] = STATE(2698), - [sym_brace_block] = STATE(2698), - [sym_block_argument] = STATE(2638), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(1189), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(1189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(1189), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(1191), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_LPAREN2] = ACTIONS(189), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1193), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(1191), - [anon_sym_else] = ACTIONS(1191), - [anon_sym_when] = ACTIONS(1191), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(1191), - [sym__line_break] = ACTIONS(1189), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(203), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(213), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(215), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(217), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(1189), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(1189), - [sym__modifier_rescue_keyword] = ACTIONS(1189), - [sym__modifier_ensure_keyword] = ACTIONS(1189), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(239), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2518), + [sym_double_splat] = STATE(2518), + [sym_named_expr] = STATE(2518), + [sym_argument_list_no_parens] = STATE(2439), + [sym_argument_list_no_parens_with_block] = STATE(2546), + [sym_argument_list_with_parens] = STATE(2439), + [sym_argument_list_with_parens_and_block] = STATE(2546), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_do_end_block] = STATE(2548), + [sym_brace_block] = STATE(2552), + [sym_block_argument] = STATE(2705), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(1193), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(1193), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_LPAREN2] = ACTIONS(251), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_when] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(1195), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(257), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(219), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(221), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(259), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(1193), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(1193), + [sym__modifier_rescue_keyword] = ACTIONS(1193), + [sym__modifier_ensure_keyword] = ACTIONS(1193), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(261), }, [59] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2533), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2507), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(59), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2535), - [sym_double_splat] = STATE(2535), - [sym_named_expr] = STATE(2535), - [sym_argument_list_no_parens] = STATE(2465), - [sym_argument_list_no_parens_with_block] = STATE(2695), - [sym_argument_list_with_parens] = STATE(2466), - [sym_argument_list_with_parens_and_block] = STATE(2701), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_do_end_block] = STATE(2702), - [sym_brace_block] = STATE(2703), - [sym_block_argument] = STATE(2638), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(1185), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(1185), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(1185), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_LPAREN2] = ACTIONS(189), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(1187), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_when] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(1187), - [sym__line_break] = ACTIONS(1185), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(203), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(213), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(215), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(217), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(1185), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(1185), - [sym__modifier_rescue_keyword] = ACTIONS(1185), - [sym__modifier_ensure_keyword] = ACTIONS(1185), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(239), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2518), + [sym_double_splat] = STATE(2518), + [sym_named_expr] = STATE(2518), + [sym_argument_list_no_parens] = STATE(2442), + [sym_argument_list_no_parens_with_block] = STATE(2573), + [sym_argument_list_with_parens] = STATE(2443), + [sym_argument_list_with_parens_and_block] = STATE(2576), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_do_end_block] = STATE(2577), + [sym_brace_block] = STATE(2578), + [sym_block_argument] = STATE(2705), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(1205), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1205), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(1205), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(1207), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_LPAREN2] = ACTIONS(251), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_when] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(1207), + [sym__line_break] = ACTIONS(1205), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(257), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(219), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(221), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(259), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(1205), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(1205), + [sym__modifier_rescue_keyword] = ACTIONS(1205), + [sym__modifier_ensure_keyword] = ACTIONS(1205), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(261), }, [60] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2501), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2507), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(60), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2502), - [sym_double_splat] = STATE(2502), - [sym_named_expr] = STATE(2502), - [sym_argument_list_no_parens] = STATE(2437), - [sym_argument_list_no_parens_with_block] = STATE(2902), - [sym_argument_list_with_parens] = STATE(2437), - [sym_argument_list_with_parens_and_block] = STATE(2902), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_do_end_block] = STATE(2921), - [sym_brace_block] = STATE(2921), - [sym_block_argument] = STATE(3029), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(1189), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(1189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(1189), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(1191), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_LPAREN2] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(1191), - [anon_sym_else] = ACTIONS(1191), - [anon_sym_when] = ACTIONS(1191), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(1191), - [sym__line_break] = ACTIONS(1189), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(253), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(213), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(215), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(255), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(1189), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(1189), - [sym__modifier_rescue_keyword] = ACTIONS(1189), - [sym__modifier_ensure_keyword] = ACTIONS(1189), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(257), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2518), + [sym_double_splat] = STATE(2518), + [sym_named_expr] = STATE(2518), + [sym_argument_list_no_parens] = STATE(2428), + [sym_argument_list_no_parens_with_block] = STATE(2774), + [sym_argument_list_with_parens] = STATE(2428), + [sym_argument_list_with_parens_and_block] = STATE(2774), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_do_end_block] = STATE(2775), + [sym_brace_block] = STATE(2775), + [sym_block_argument] = STATE(2705), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(1201), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1201), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(1201), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_LPAREN2] = ACTIONS(251), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1209), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_when] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(1203), + [sym__line_break] = ACTIONS(1201), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(257), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(219), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(221), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(259), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(1201), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(1201), + [sym__modifier_rescue_keyword] = ACTIONS(1201), + [sym__modifier_ensure_keyword] = ACTIONS(1201), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(261), }, [61] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2533), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2478), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(61), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2535), - [sym_double_splat] = STATE(2535), - [sym_named_expr] = STATE(2535), - [sym_argument_list_no_parens] = STATE(2457), - [sym_argument_list_no_parens_with_block] = STATE(2663), - [sym_argument_list_with_parens] = STATE(2457), - [sym_argument_list_with_parens_and_block] = STATE(2663), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_do_end_block] = STATE(2664), - [sym_brace_block] = STATE(2665), - [sym_block_argument] = STATE(2638), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(1177), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(1177), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(1177), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_LPAREN2] = ACTIONS(189), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_when] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(1179), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(203), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(213), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(215), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(217), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(1177), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(1177), - [sym__modifier_rescue_keyword] = ACTIONS(1177), - [sym__modifier_ensure_keyword] = ACTIONS(1177), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(239), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2479), + [sym_double_splat] = STATE(2479), + [sym_named_expr] = STATE(2479), + [sym_argument_list_no_parens] = STATE(2447), + [sym_argument_list_no_parens_with_block] = STATE(2894), + [sym_argument_list_with_parens] = STATE(2447), + [sym_argument_list_with_parens_and_block] = STATE(2894), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_do_end_block] = STATE(2895), + [sym_brace_block] = STATE(2896), + [sym_block_argument] = STATE(3125), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(1193), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(1193), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(197), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_when] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(1195), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(209), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(219), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(221), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(223), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(1193), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(1193), + [sym__modifier_rescue_keyword] = ACTIONS(1193), + [sym__modifier_ensure_keyword] = ACTIONS(1193), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(245), }, [62] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2501), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2478), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(62), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2502), - [sym_double_splat] = STATE(2502), - [sym_named_expr] = STATE(2502), - [sym_argument_list_no_parens] = STATE(2445), - [sym_argument_list_no_parens_with_block] = STATE(3107), - [sym_argument_list_with_parens] = STATE(2445), - [sym_argument_list_with_parens_and_block] = STATE(3107), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_do_end_block] = STATE(3120), - [sym_brace_block] = STATE(3140), - [sym_block_argument] = STATE(3029), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(1177), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(1177), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(1177), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_LPAREN2] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_when] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(1179), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(253), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(213), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(215), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(255), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(1177), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(1177), - [sym__modifier_rescue_keyword] = ACTIONS(1177), - [sym__modifier_ensure_keyword] = ACTIONS(1177), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(257), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2479), + [sym_double_splat] = STATE(2479), + [sym_named_expr] = STATE(2479), + [sym_argument_list_no_parens] = STATE(2427), + [sym_argument_list_no_parens_with_block] = STATE(3111), + [sym_argument_list_with_parens] = STATE(2429), + [sym_argument_list_with_parens_and_block] = STATE(3112), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_do_end_block] = STATE(3113), + [sym_brace_block] = STATE(3114), + [sym_block_argument] = STATE(3125), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(1205), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1205), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(1205), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(1207), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(197), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_when] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(1207), + [sym__line_break] = ACTIONS(1205), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(209), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(219), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(221), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(223), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(1205), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(1205), + [sym__modifier_rescue_keyword] = ACTIONS(1205), + [sym__modifier_ensure_keyword] = ACTIONS(1205), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(245), }, [63] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2532), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2542), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(63), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2483), - [sym_double_splat] = STATE(2483), - [sym_named_expr] = STATE(2483), - [sym_argument_list_no_parens] = STATE(2442), - [sym_argument_list_no_parens_with_block] = STATE(3053), - [sym_argument_list_with_parens] = STATE(2464), - [sym_argument_list_with_parens_and_block] = STATE(3055), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_do_end_block] = STATE(3056), - [sym_brace_block] = STATE(3061), - [sym_block_argument] = STATE(3029), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(1185), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(1185), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(1185), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_LPAREN2] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(1187), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_when] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(1187), - [sym__line_break] = ACTIONS(1185), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(253), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(213), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(215), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(267), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(1185), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(1185), - [sym__modifier_rescue_keyword] = ACTIONS(1185), - [sym__modifier_ensure_keyword] = ACTIONS(1185), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(269), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2525), + [sym_double_splat] = STATE(2525), + [sym_named_expr] = STATE(2525), + [sym_argument_list_no_parens] = STATE(2434), + [sym_argument_list_no_parens_with_block] = STATE(3120), + [sym_argument_list_with_parens] = STATE(2434), + [sym_argument_list_with_parens_and_block] = STATE(3120), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_do_end_block] = STATE(3121), + [sym_brace_block] = STATE(3121), + [sym_block_argument] = STATE(3125), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(1201), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1201), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(1201), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(197), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(1203), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_when] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(1203), + [sym__line_break] = ACTIONS(1201), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(209), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(219), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(221), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(271), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(1201), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(1201), + [sym__modifier_rescue_keyword] = ACTIONS(1201), + [sym__modifier_ensure_keyword] = ACTIONS(1201), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(273), }, [64] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2532), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2542), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(64), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2483), - [sym_double_splat] = STATE(2483), - [sym_named_expr] = STATE(2483), - [sym_argument_list_no_parens] = STATE(2445), - [sym_argument_list_no_parens_with_block] = STATE(3107), - [sym_argument_list_with_parens] = STATE(2445), - [sym_argument_list_with_parens_and_block] = STATE(3107), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_do_end_block] = STATE(3120), - [sym_brace_block] = STATE(3140), - [sym_block_argument] = STATE(3029), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(1177), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(1177), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(1177), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_LPAREN2] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_when] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(1179), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(253), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(213), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(215), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(267), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(1177), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(1177), - [sym__modifier_rescue_keyword] = ACTIONS(1177), - [sym__modifier_ensure_keyword] = ACTIONS(1177), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(269), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2525), + [sym_double_splat] = STATE(2525), + [sym_named_expr] = STATE(2525), + [sym_argument_list_no_parens] = STATE(2427), + [sym_argument_list_no_parens_with_block] = STATE(3111), + [sym_argument_list_with_parens] = STATE(2429), + [sym_argument_list_with_parens_and_block] = STATE(3112), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_do_end_block] = STATE(3113), + [sym_brace_block] = STATE(3114), + [sym_block_argument] = STATE(3125), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(1205), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1205), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(1205), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(1207), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(197), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_when] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(1207), + [sym__line_break] = ACTIONS(1205), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(209), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(219), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(221), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(271), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(1205), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(1205), + [sym__modifier_rescue_keyword] = ACTIONS(1205), + [sym__modifier_ensure_keyword] = ACTIONS(1205), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(273), }, [65] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2532), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2542), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(65), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2483), - [sym_double_splat] = STATE(2483), - [sym_named_expr] = STATE(2483), - [sym_argument_list_no_parens] = STATE(2437), - [sym_argument_list_no_parens_with_block] = STATE(2902), - [sym_argument_list_with_parens] = STATE(2437), - [sym_argument_list_with_parens_and_block] = STATE(2902), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_do_end_block] = STATE(2921), - [sym_brace_block] = STATE(2921), - [sym_block_argument] = STATE(3029), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(1189), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(1189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(1189), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(1191), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_LPAREN2] = ACTIONS(245), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(251), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(1191), - [anon_sym_else] = ACTIONS(1191), - [anon_sym_when] = ACTIONS(1191), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(1191), - [sym__line_break] = ACTIONS(1189), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(253), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(213), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(215), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(267), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(1189), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(1189), - [sym__modifier_rescue_keyword] = ACTIONS(1189), - [sym__modifier_ensure_keyword] = ACTIONS(1189), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(269), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2525), + [sym_double_splat] = STATE(2525), + [sym_named_expr] = STATE(2525), + [sym_argument_list_no_parens] = STATE(2447), + [sym_argument_list_no_parens_with_block] = STATE(2894), + [sym_argument_list_with_parens] = STATE(2447), + [sym_argument_list_with_parens_and_block] = STATE(2894), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_do_end_block] = STATE(2895), + [sym_brace_block] = STATE(2896), + [sym_block_argument] = STATE(3125), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(1193), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(1193), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_LPAREN2] = ACTIONS(191), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(197), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(1195), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_when] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(1195), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(209), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(219), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(221), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(271), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(1193), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(1193), + [sym__modifier_rescue_keyword] = ACTIONS(1193), + [sym__modifier_ensure_keyword] = ACTIONS(1193), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(273), }, [66] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2533), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2507), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(66), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2535), - [sym_double_splat] = STATE(2535), - [sym_named_expr] = STATE(2535), - [sym_argument_list_no_parens] = STATE(2637), - [sym_argument_list_no_parens_with_block] = STATE(2637), - [sym_argument_list_with_parens] = STATE(2637), - [sym_argument_list_with_parens_and_block] = STATE(2637), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_block_argument] = STATE(2638), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(1195), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(1195), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(1195), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_LPAREN2] = ACTIONS(189), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_when] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(1197), - [sym__line_break] = ACTIONS(1195), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1195), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(213), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(215), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(217), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(1195), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(1195), - [sym__modifier_rescue_keyword] = ACTIONS(1195), - [sym__modifier_ensure_keyword] = ACTIONS(1195), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(239), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2518), + [sym_double_splat] = STATE(2518), + [sym_named_expr] = STATE(2518), + [sym_argument_list_no_parens] = STATE(2559), + [sym_argument_list_no_parens_with_block] = STATE(2559), + [sym_argument_list_with_parens] = STATE(2559), + [sym_argument_list_with_parens_and_block] = STATE(2559), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_block_argument] = STATE(2705), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(1211), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1211), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(1211), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(1213), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_LPAREN2] = ACTIONS(251), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(1213), + [anon_sym_else] = ACTIONS(1213), + [anon_sym_when] = ACTIONS(1213), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(1213), + [sym__line_break] = ACTIONS(1211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1211), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(219), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(221), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(259), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(1211), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(1211), + [sym__modifier_rescue_keyword] = ACTIONS(1211), + [sym__modifier_ensure_keyword] = ACTIONS(1211), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(261), }, [67] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2533), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2507), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(67), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2535), - [sym_double_splat] = STATE(2535), - [sym_named_expr] = STATE(2535), - [sym_argument_list_no_parens] = STATE(2684), - [sym_argument_list_no_parens_with_block] = STATE(2684), - [sym_argument_list_with_parens] = STATE(2684), - [sym_argument_list_with_parens_and_block] = STATE(2684), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_block_argument] = STATE(2638), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(1199), - [sym_identifier] = ACTIONS(135), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(137), - [anon_sym_RPAREN] = ACTIONS(1199), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(1199), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_LPAREN2] = ACTIONS(189), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_do] = ACTIONS(1201), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(1201), - [anon_sym_else] = ACTIONS(1201), - [anon_sym_when] = ACTIONS(1201), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(1201), - [sym__line_break] = ACTIONS(1199), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1199), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(213), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(215), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(217), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(1199), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(1199), - [sym__modifier_rescue_keyword] = ACTIONS(1199), - [sym__modifier_ensure_keyword] = ACTIONS(1199), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(239), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2518), + [sym_double_splat] = STATE(2518), + [sym_named_expr] = STATE(2518), + [sym_argument_list_no_parens] = STATE(2698), + [sym_argument_list_no_parens_with_block] = STATE(2698), + [sym_argument_list_with_parens] = STATE(2698), + [sym_argument_list_with_parens_and_block] = STATE(2698), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_block_argument] = STATE(2705), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(1215), + [sym_identifier] = ACTIONS(137), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(139), + [anon_sym_RPAREN] = ACTIONS(1215), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(1215), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_LPAREN2] = ACTIONS(251), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(1217), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_when] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(1217), + [sym__line_break] = ACTIONS(1215), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1215), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(219), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(221), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(259), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(1215), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(1215), + [sym__modifier_rescue_keyword] = ACTIONS(1215), + [sym__modifier_ensure_keyword] = ACTIONS(1215), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(261), }, [68] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3185), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3313), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(68), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3310), - [sym_double_splat] = STATE(3310), - [sym_named_expr] = STATE(3310), - [sym_argument_list_no_parens] = STATE(3138), - [sym_argument_list_no_parens_with_block] = STATE(3489), - [sym_argument_list_with_parens] = STATE(3138), - [sym_argument_list_with_parens_and_block] = STATE(3489), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_do_end_block] = STATE(3490), - [sym_brace_block] = STATE(3491), - [sym_block_argument] = STATE(3480), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_COLON] = ACTIONS(1203), - [anon_sym_LPAREN2] = ACTIONS(381), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(387), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(349), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(351), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(389), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(1177), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(1177), - [sym__regular_rescue_keyword] = ACTIONS(1177), - [sym__modifier_rescue_keyword] = ACTIONS(1177), - [sym__regular_ensure_keyword] = ACTIONS(1177), - [sym__modifier_ensure_keyword] = ACTIONS(1177), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(391), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3309), + [sym_double_splat] = STATE(3309), + [sym_named_expr] = STATE(3309), + [sym_argument_list_no_parens] = STATE(3135), + [sym_argument_list_no_parens_with_block] = STATE(3964), + [sym_argument_list_with_parens] = STATE(3135), + [sym_argument_list_with_parens_and_block] = STATE(3964), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_do_end_block] = STATE(3965), + [sym_brace_block] = STATE(3966), + [sym_block_argument] = STATE(3961), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(1219), + [anon_sym_LPAREN2] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(391), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(393), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(353), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(355), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(395), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(1193), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(1193), + [sym__regular_rescue_keyword] = ACTIONS(1193), + [sym__modifier_rescue_keyword] = ACTIONS(1193), + [sym__regular_ensure_keyword] = ACTIONS(1193), + [sym__modifier_ensure_keyword] = ACTIONS(1193), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(397), }, [69] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3263), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3253), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(69), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3259), - [sym_double_splat] = STATE(3259), - [sym_named_expr] = STATE(3259), - [sym_argument_list_no_parens] = STATE(3077), - [sym_argument_list_no_parens_with_block] = STATE(3895), - [sym_argument_list_with_parens] = STATE(3077), - [sym_argument_list_with_parens_and_block] = STATE(3895), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_do_end_block] = STATE(3901), - [sym_brace_block] = STATE(3902), - [sym_block_argument] = STATE(3883), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_COLON] = ACTIONS(1205), - [anon_sym_LPAREN2] = ACTIONS(323), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(329), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(339), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(349), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(351), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(353), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(1177), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(1177), - [sym__regular_rescue_keyword] = ACTIONS(1177), - [sym__modifier_rescue_keyword] = ACTIONS(1177), - [sym__regular_ensure_keyword] = ACTIONS(1177), - [sym__modifier_ensure_keyword] = ACTIONS(1177), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(375), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3249), + [sym_double_splat] = STATE(3249), + [sym_named_expr] = STATE(3249), + [sym_argument_list_no_parens] = STATE(3019), + [sym_argument_list_no_parens_with_block] = STATE(3543), + [sym_argument_list_with_parens] = STATE(3019), + [sym_argument_list_with_parens_and_block] = STATE(3543), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_do_end_block] = STATE(3560), + [sym_brace_block] = STATE(3561), + [sym_block_argument] = STATE(3498), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_COLON] = ACTIONS(1221), + [anon_sym_LPAREN2] = ACTIONS(327), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(343), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(353), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(355), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(357), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(1193), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(1193), + [sym__regular_rescue_keyword] = ACTIONS(1193), + [sym__modifier_rescue_keyword] = ACTIONS(1193), + [sym__regular_ensure_keyword] = ACTIONS(1193), + [sym__modifier_ensure_keyword] = ACTIONS(1193), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(379), }, [70] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2810), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2471), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2795), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3253), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(70), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_splat] = STATE(2812), - [sym_double_splat] = STATE(2812), - [sym_named_expr] = STATE(2812), - [sym_argument_list_no_parens] = STATE(3028), - [sym_argument_list_no_parens_with_block] = STATE(3028), - [sym_argument_list_with_parens] = STATE(3028), - [sym_argument_list_with_parens_and_block] = STATE(3028), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_block_argument] = STATE(3029), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [ts_builtin_sym_end] = ACTIONS(1195), - [sym_identifier] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_RPAREN] = ACTIONS(1195), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3249), + [sym_double_splat] = STATE(3249), + [sym_named_expr] = STATE(3249), + [sym_argument_list_no_parens] = STATE(3019), + [sym_argument_list_no_parens_with_block] = STATE(3543), + [sym_argument_list_with_parens] = STATE(3019), + [sym_argument_list_with_parens_and_block] = STATE(3543), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_do_end_block] = STATE(3560), + [sym_brace_block] = STATE(3561), + [sym_block_argument] = STATE(3498), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(327), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(343), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(353), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(355), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(357), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(1193), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(1193), + [sym__regular_rescue_keyword] = ACTIONS(1193), + [sym__modifier_rescue_keyword] = ACTIONS(1193), + [sym__regular_ensure_keyword] = ACTIONS(1193), + [sym__modifier_ensure_keyword] = ACTIONS(1193), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(379), + }, + [71] = { + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3253), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), + [sym_heredoc_body] = STATE(71), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3249), + [sym_double_splat] = STATE(3249), + [sym_named_expr] = STATE(3249), + [sym_argument_list_no_parens] = STATE(3123), + [sym_argument_list_no_parens_with_block] = STATE(3463), + [sym_argument_list_with_parens] = STATE(3131), + [sym_argument_list_with_parens_and_block] = STATE(3502), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_do_end_block] = STATE(3503), + [sym_brace_block] = STATE(3505), + [sym_block_argument] = STATE(3498), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_LPAREN] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(1207), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(327), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(1205), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(343), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(353), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(355), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(357), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(1205), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(1205), + [sym__regular_rescue_keyword] = ACTIONS(1205), + [sym__modifier_rescue_keyword] = ACTIONS(1205), + [sym__regular_ensure_keyword] = ACTIONS(1205), + [sym__modifier_ensure_keyword] = ACTIONS(1205), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(379), + }, + [72] = { + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3313), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), + [sym_heredoc_body] = STATE(72), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3309), + [sym_double_splat] = STATE(3309), + [sym_named_expr] = STATE(3309), + [sym_argument_list_no_parens] = STATE(3166), + [sym_argument_list_no_parens_with_block] = STATE(4303), + [sym_argument_list_with_parens] = STATE(3166), + [sym_argument_list_with_parens_and_block] = STATE(4303), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_do_end_block] = STATE(4304), + [sym_brace_block] = STATE(4304), + [sym_block_argument] = STATE(3961), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(391), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(1201), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(393), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(353), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(355), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(395), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(1201), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(1201), + [sym__regular_rescue_keyword] = ACTIONS(1201), + [sym__modifier_rescue_keyword] = ACTIONS(1201), + [sym__regular_ensure_keyword] = ACTIONS(1201), + [sym__modifier_ensure_keyword] = ACTIONS(1201), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(397), + }, + [73] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(2863), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2461), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(2845), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(73), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_splat] = STATE(2864), + [sym_double_splat] = STATE(2864), + [sym_named_expr] = STATE(2864), + [sym_argument_list_no_parens] = STATE(2911), + [sym_argument_list_no_parens_with_block] = STATE(2911), + [sym_argument_list_with_parens] = STATE(2911), + [sym_argument_list_with_parens_and_block] = STATE(2911), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_block_argument] = STATE(3125), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [ts_builtin_sym_end] = ACTIONS(1211), + [sym_identifier] = ACTIONS(1223), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1211), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -45851,542 +46760,548 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1195), + [anon_sym_RBRACE] = ACTIONS(1211), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_end] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_end] = ACTIONS(1213), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(1221), + [sym__constant_segment] = ACTIONS(1237), [anon_sym_COLON_COLON] = ACTIONS(85), [anon_sym___LINE__] = ACTIONS(87), [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1223), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(1239), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1243), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_when] = ACTIONS(1197), + [anon_sym_elsif] = ACTIONS(1213), + [anon_sym_else] = ACTIONS(1213), + [anon_sym_when] = ACTIONS(1213), [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(1197), - [sym__line_break] = ACTIONS(1195), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(1235), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(1237), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(255), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__modifier_if_keyword] = ACTIONS(1195), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__modifier_unless_keyword] = ACTIONS(1195), - [sym__modifier_rescue_keyword] = ACTIONS(1195), - [sym__modifier_ensure_keyword] = ACTIONS(1195), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(1213), + [sym__line_break] = ACTIONS(1211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(1251), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(1253), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(223), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__modifier_if_keyword] = ACTIONS(1211), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__modifier_unless_keyword] = ACTIONS(1211), + [sym__modifier_rescue_keyword] = ACTIONS(1211), + [sym__modifier_ensure_keyword] = ACTIONS(1211), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1241), + [sym__start_of_parenless_args] = ACTIONS(1257), }, - [71] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3263), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(71), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), + [74] = { + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3253), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), + [sym_heredoc_body] = STATE(74), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3259), - [sym_double_splat] = STATE(3259), - [sym_named_expr] = STATE(3259), - [sym_argument_list_no_parens] = STATE(3094), - [sym_argument_list_no_parens_with_block] = STATE(3934), - [sym_argument_list_with_parens] = STATE(3095), - [sym_argument_list_with_parens_and_block] = STATE(3937), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_do_end_block] = STATE(3938), - [sym_brace_block] = STATE(3939), - [sym_block_argument] = STATE(3883), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_LPAREN2] = ACTIONS(323), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(329), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(1185), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(339), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(349), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(351), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(353), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(1185), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(1185), - [sym__regular_rescue_keyword] = ACTIONS(1185), - [sym__modifier_rescue_keyword] = ACTIONS(1185), - [sym__regular_ensure_keyword] = ACTIONS(1185), - [sym__modifier_ensure_keyword] = ACTIONS(1185), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(375), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3249), + [sym_double_splat] = STATE(3249), + [sym_named_expr] = STATE(3249), + [sym_argument_list_no_parens] = STATE(3074), + [sym_argument_list_no_parens_with_block] = STATE(3401), + [sym_argument_list_with_parens] = STATE(3074), + [sym_argument_list_with_parens_and_block] = STATE(3401), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_do_end_block] = STATE(3402), + [sym_brace_block] = STATE(3402), + [sym_block_argument] = STATE(3498), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(327), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1259), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(1201), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(343), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(353), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(355), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(357), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(1201), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(1201), + [sym__regular_rescue_keyword] = ACTIONS(1201), + [sym__modifier_rescue_keyword] = ACTIONS(1201), + [sym__regular_ensure_keyword] = ACTIONS(1201), + [sym__modifier_ensure_keyword] = ACTIONS(1201), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(379), }, - [72] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3185), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(72), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), + [75] = { + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3313), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), + [sym_heredoc_body] = STATE(75), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3310), - [sym_double_splat] = STATE(3310), - [sym_named_expr] = STATE(3310), - [sym_argument_list_no_parens] = STATE(3141), - [sym_argument_list_no_parens_with_block] = STATE(3495), - [sym_argument_list_with_parens] = STATE(3142), - [sym_argument_list_with_parens_and_block] = STATE(3498), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_do_end_block] = STATE(3499), - [sym_brace_block] = STATE(3500), - [sym_block_argument] = STATE(3480), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_LPAREN2] = ACTIONS(381), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(1185), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(387), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(349), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(351), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(389), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(1185), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(1185), - [sym__regular_rescue_keyword] = ACTIONS(1185), - [sym__modifier_rescue_keyword] = ACTIONS(1185), - [sym__regular_ensure_keyword] = ACTIONS(1185), - [sym__modifier_ensure_keyword] = ACTIONS(1185), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(391), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3309), + [sym_double_splat] = STATE(3309), + [sym_named_expr] = STATE(3309), + [sym_argument_list_no_parens] = STATE(3135), + [sym_argument_list_no_parens_with_block] = STATE(3964), + [sym_argument_list_with_parens] = STATE(3135), + [sym_argument_list_with_parens_and_block] = STATE(3964), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_do_end_block] = STATE(3965), + [sym_brace_block] = STATE(3966), + [sym_block_argument] = STATE(3961), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(391), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(393), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(353), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(355), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(395), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(1193), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(1193), + [sym__regular_rescue_keyword] = ACTIONS(1193), + [sym__modifier_rescue_keyword] = ACTIONS(1193), + [sym__regular_ensure_keyword] = ACTIONS(1193), + [sym__modifier_ensure_keyword] = ACTIONS(1193), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(397), }, - [73] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2810), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2471), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2795), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(73), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_splat] = STATE(2812), - [sym_double_splat] = STATE(2812), - [sym_named_expr] = STATE(2812), - [sym_argument_list_no_parens] = STATE(2940), - [sym_argument_list_no_parens_with_block] = STATE(2940), - [sym_argument_list_with_parens] = STATE(2940), - [sym_argument_list_with_parens_and_block] = STATE(2940), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_block_argument] = STATE(3029), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [ts_builtin_sym_end] = ACTIONS(1199), - [sym_identifier] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_RPAREN] = ACTIONS(1199), + [76] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(2863), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2461), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(2845), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(76), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_splat] = STATE(2864), + [sym_double_splat] = STATE(2864), + [sym_named_expr] = STATE(2864), + [sym_argument_list_no_parens] = STATE(3119), + [sym_argument_list_no_parens_with_block] = STATE(3119), + [sym_argument_list_with_parens] = STATE(3119), + [sym_argument_list_with_parens_and_block] = STATE(3119), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_block_argument] = STATE(3125), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [ts_builtin_sym_end] = ACTIONS(1215), + [sym_identifier] = ACTIONS(1223), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1215), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -46394,1084 +47309,1093 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1199), + [anon_sym_RBRACE] = ACTIONS(1215), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_COMMA] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_end] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_end] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(1221), + [sym__constant_segment] = ACTIONS(1237), [anon_sym_COLON_COLON] = ACTIONS(85), [anon_sym___LINE__] = ACTIONS(87), [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1223), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(1239), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(1243), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1201), - [anon_sym_else] = ACTIONS(1201), - [anon_sym_when] = ACTIONS(1201), + [anon_sym_elsif] = ACTIONS(1217), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_when] = ACTIONS(1217), [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(1201), - [sym__line_break] = ACTIONS(1199), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(1235), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(1237), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(255), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__modifier_if_keyword] = ACTIONS(1199), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__modifier_unless_keyword] = ACTIONS(1199), - [sym__modifier_rescue_keyword] = ACTIONS(1199), - [sym__modifier_ensure_keyword] = ACTIONS(1199), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(1217), + [sym__line_break] = ACTIONS(1215), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(1251), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(1253), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(223), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__modifier_if_keyword] = ACTIONS(1215), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__modifier_unless_keyword] = ACTIONS(1215), + [sym__modifier_rescue_keyword] = ACTIONS(1215), + [sym__modifier_ensure_keyword] = ACTIONS(1215), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1241), - }, - [74] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3185), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(74), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3310), - [sym_double_splat] = STATE(3310), - [sym_named_expr] = STATE(3310), - [sym_argument_list_no_parens] = STATE(3138), - [sym_argument_list_no_parens_with_block] = STATE(3489), - [sym_argument_list_with_parens] = STATE(3138), - [sym_argument_list_with_parens_and_block] = STATE(3489), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_do_end_block] = STATE(3490), - [sym_brace_block] = STATE(3491), - [sym_block_argument] = STATE(3480), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_LPAREN2] = ACTIONS(381), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(387), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(349), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(351), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(389), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(1177), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(1177), - [sym__regular_rescue_keyword] = ACTIONS(1177), - [sym__modifier_rescue_keyword] = ACTIONS(1177), - [sym__regular_ensure_keyword] = ACTIONS(1177), - [sym__modifier_ensure_keyword] = ACTIONS(1177), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(391), - }, - [75] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3263), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(75), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3259), - [sym_double_splat] = STATE(3259), - [sym_named_expr] = STATE(3259), - [sym_argument_list_no_parens] = STATE(3144), - [sym_argument_list_no_parens_with_block] = STATE(4135), - [sym_argument_list_with_parens] = STATE(3144), - [sym_argument_list_with_parens_and_block] = STATE(4135), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_do_end_block] = STATE(4210), - [sym_brace_block] = STATE(4210), - [sym_block_argument] = STATE(3883), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(1191), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_LPAREN2] = ACTIONS(323), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(329), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(1191), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(1189), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(339), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(349), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(351), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(353), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(1189), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(1189), - [sym__regular_rescue_keyword] = ACTIONS(1189), - [sym__modifier_rescue_keyword] = ACTIONS(1189), - [sym__regular_ensure_keyword] = ACTIONS(1189), - [sym__modifier_ensure_keyword] = ACTIONS(1189), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(375), - }, - [76] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3185), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(76), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3310), - [sym_double_splat] = STATE(3310), - [sym_named_expr] = STATE(3310), - [sym_argument_list_no_parens] = STATE(2922), - [sym_argument_list_no_parens_with_block] = STATE(3342), - [sym_argument_list_with_parens] = STATE(2922), - [sym_argument_list_with_parens_and_block] = STATE(3342), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_do_end_block] = STATE(3343), - [sym_brace_block] = STATE(3343), - [sym_block_argument] = STATE(3480), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(1191), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_LPAREN2] = ACTIONS(381), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1243), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(1191), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(1189), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(387), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(349), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(351), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(389), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(1189), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(1189), - [sym__regular_rescue_keyword] = ACTIONS(1189), - [sym__modifier_rescue_keyword] = ACTIONS(1189), - [sym__regular_ensure_keyword] = ACTIONS(1189), - [sym__modifier_ensure_keyword] = ACTIONS(1189), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(391), + [sym__start_of_parenless_args] = ACTIONS(1257), }, [77] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3263), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3313), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(77), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3259), - [sym_double_splat] = STATE(3259), - [sym_named_expr] = STATE(3259), - [sym_argument_list_no_parens] = STATE(3077), - [sym_argument_list_no_parens_with_block] = STATE(3895), - [sym_argument_list_with_parens] = STATE(3077), - [sym_argument_list_with_parens_and_block] = STATE(3895), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_do_end_block] = STATE(3901), - [sym_brace_block] = STATE(3902), - [sym_block_argument] = STATE(3883), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_LPAREN2] = ACTIONS(323), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(329), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(339), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(349), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(351), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(353), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(1177), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(1177), - [sym__regular_rescue_keyword] = ACTIONS(1177), - [sym__modifier_rescue_keyword] = ACTIONS(1177), - [sym__regular_ensure_keyword] = ACTIONS(1177), - [sym__modifier_ensure_keyword] = ACTIONS(1177), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(375), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3309), + [sym_double_splat] = STATE(3309), + [sym_named_expr] = STATE(3309), + [sym_argument_list_no_parens] = STATE(3136), + [sym_argument_list_no_parens_with_block] = STATE(3973), + [sym_argument_list_with_parens] = STATE(3137), + [sym_argument_list_with_parens_and_block] = STATE(3975), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_do_end_block] = STATE(3976), + [sym_brace_block] = STATE(3977), + [sym_block_argument] = STATE(3961), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_LPAREN] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(1207), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(391), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(1205), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(393), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(353), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(355), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(395), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(1205), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(1205), + [sym__regular_rescue_keyword] = ACTIONS(1205), + [sym__modifier_rescue_keyword] = ACTIONS(1205), + [sym__regular_ensure_keyword] = ACTIONS(1205), + [sym__modifier_ensure_keyword] = ACTIONS(1205), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(397), }, [78] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3744), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3216), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(78), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3740), - [sym_double_splat] = STATE(3740), - [sym_named_expr] = STATE(3740), - [sym_argument_list_no_parens] = STATE(3375), - [sym_argument_list_no_parens_with_block] = STATE(4715), - [sym_argument_list_with_parens] = STATE(3375), - [sym_argument_list_with_parens_and_block] = STATE(4715), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_do_end_block] = STATE(4716), - [sym_brace_block] = STATE(4717), - [sym_block_argument] = STATE(4714), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_COLON] = ACTIONS(1245), - [anon_sym_LPAREN2] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(461), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(471), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(481), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(483), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(485), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(1177), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(1177), - [sym__modifier_rescue_keyword] = ACTIONS(1177), - [sym__regular_ensure_keyword] = ACTIONS(1177), - [sym__modifier_ensure_keyword] = ACTIONS(1177), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(507), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3199), + [sym_double_splat] = STATE(3199), + [sym_named_expr] = STATE(3199), + [sym_argument_list_no_parens] = STATE(3166), + [sym_argument_list_no_parens_with_block] = STATE(4303), + [sym_argument_list_with_parens] = STATE(3166), + [sym_argument_list_with_parens_and_block] = STATE(4303), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_do_end_block] = STATE(4304), + [sym_brace_block] = STATE(4304), + [sym_block_argument] = STATE(3961), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(391), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(1201), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(393), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(353), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(355), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(405), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(1201), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(1201), + [sym__regular_rescue_keyword] = ACTIONS(1201), + [sym__modifier_rescue_keyword] = ACTIONS(1201), + [sym__regular_ensure_keyword] = ACTIONS(1201), + [sym__modifier_ensure_keyword] = ACTIONS(1201), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(407), }, [79] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2775), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2471), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2795), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3216), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(79), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_splat] = STATE(2829), - [sym_double_splat] = STATE(2829), - [sym_named_expr] = STATE(2829), - [sym_argument_list_no_parens] = STATE(2940), - [sym_argument_list_no_parens_with_block] = STATE(2940), - [sym_argument_list_with_parens] = STATE(2940), - [sym_argument_list_with_parens_and_block] = STATE(2940), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_block_argument] = STATE(3029), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [ts_builtin_sym_end] = ACTIONS(1199), - [sym_identifier] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_RPAREN] = ACTIONS(1199), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3199), + [sym_double_splat] = STATE(3199), + [sym_named_expr] = STATE(3199), + [sym_argument_list_no_parens] = STATE(3136), + [sym_argument_list_no_parens_with_block] = STATE(3973), + [sym_argument_list_with_parens] = STATE(3137), + [sym_argument_list_with_parens_and_block] = STATE(3975), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_do_end_block] = STATE(3976), + [sym_brace_block] = STATE(3977), + [sym_block_argument] = STATE(3961), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_LPAREN] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(1207), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(391), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(1205), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(393), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(353), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(355), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(405), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(1205), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(1205), + [sym__regular_rescue_keyword] = ACTIONS(1205), + [sym__modifier_rescue_keyword] = ACTIONS(1205), + [sym__regular_ensure_keyword] = ACTIONS(1205), + [sym__modifier_ensure_keyword] = ACTIONS(1205), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(407), + }, + [80] = { + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3634), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), + [sym_heredoc_body] = STATE(80), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3598), + [sym_double_splat] = STATE(3598), + [sym_named_expr] = STATE(3598), + [sym_argument_list_no_parens] = STATE(3345), + [sym_argument_list_no_parens_with_block] = STATE(3886), + [sym_argument_list_with_parens] = STATE(3345), + [sym_argument_list_with_parens_and_block] = STATE(3886), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_do_end_block] = STATE(3887), + [sym_brace_block] = STATE(3888), + [sym_block_argument] = STATE(3891), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_COLON] = ACTIONS(1261), + [anon_sym_LPAREN2] = ACTIONS(521), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(527), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(489), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(491), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(529), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(1193), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(1193), + [sym__modifier_rescue_keyword] = ACTIONS(1193), + [sym__regular_ensure_keyword] = ACTIONS(1193), + [sym__modifier_ensure_keyword] = ACTIONS(1193), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(531), + }, + [81] = { + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3216), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), + [sym_heredoc_body] = STATE(81), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3199), + [sym_double_splat] = STATE(3199), + [sym_named_expr] = STATE(3199), + [sym_argument_list_no_parens] = STATE(3135), + [sym_argument_list_no_parens_with_block] = STATE(3964), + [sym_argument_list_with_parens] = STATE(3135), + [sym_argument_list_with_parens_and_block] = STATE(3964), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_do_end_block] = STATE(3965), + [sym_brace_block] = STATE(3966), + [sym_block_argument] = STATE(3961), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(385), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(391), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(393), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(353), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(355), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(405), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(1193), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(1193), + [sym__regular_rescue_keyword] = ACTIONS(1193), + [sym__modifier_rescue_keyword] = ACTIONS(1193), + [sym__regular_ensure_keyword] = ACTIONS(1193), + [sym__modifier_ensure_keyword] = ACTIONS(1193), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(407), + }, + [82] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(2844), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2461), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(2845), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(82), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_splat] = STATE(2846), + [sym_double_splat] = STATE(2846), + [sym_named_expr] = STATE(2846), + [sym_argument_list_no_parens] = STATE(2911), + [sym_argument_list_no_parens_with_block] = STATE(2911), + [sym_argument_list_with_parens] = STATE(2911), + [sym_argument_list_with_parens_and_block] = STATE(2911), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_block_argument] = STATE(3125), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [ts_builtin_sym_end] = ACTIONS(1211), + [sym_identifier] = ACTIONS(1223), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1211), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -47479,179 +48403,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1199), + [anon_sym_RBRACE] = ACTIONS(1211), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_end] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_end] = ACTIONS(1213), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(1221), + [sym__constant_segment] = ACTIONS(1237), [anon_sym_COLON_COLON] = ACTIONS(85), [anon_sym___LINE__] = ACTIONS(87), [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1223), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(1239), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), + [anon_sym_LPAREN2] = ACTIONS(1243), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1201), - [anon_sym_else] = ACTIONS(1201), - [anon_sym_when] = ACTIONS(1201), + [anon_sym_elsif] = ACTIONS(1213), + [anon_sym_else] = ACTIONS(1213), + [anon_sym_when] = ACTIONS(1213), [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(1201), - [sym__line_break] = ACTIONS(1199), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(1235), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(1237), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(267), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__modifier_if_keyword] = ACTIONS(1199), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__modifier_unless_keyword] = ACTIONS(1199), - [sym__modifier_rescue_keyword] = ACTIONS(1199), - [sym__modifier_ensure_keyword] = ACTIONS(1199), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(1213), + [sym__line_break] = ACTIONS(1211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(1251), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(1253), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(271), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__modifier_if_keyword] = ACTIONS(1211), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__modifier_unless_keyword] = ACTIONS(1211), + [sym__modifier_rescue_keyword] = ACTIONS(1211), + [sym__modifier_ensure_keyword] = ACTIONS(1211), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1247), + [sym__start_of_parenless_args] = ACTIONS(1263), }, - [80] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2775), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2471), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2795), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(80), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_splat] = STATE(2829), - [sym_double_splat] = STATE(2829), - [sym_named_expr] = STATE(2829), - [sym_argument_list_no_parens] = STATE(3028), - [sym_argument_list_no_parens_with_block] = STATE(3028), - [sym_argument_list_with_parens] = STATE(3028), - [sym_argument_list_with_parens_and_block] = STATE(3028), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_block_argument] = STATE(3029), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [ts_builtin_sym_end] = ACTIONS(1195), - [sym_identifier] = ACTIONS(1207), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1209), - [anon_sym_RPAREN] = ACTIONS(1195), + [83] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(2844), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2461), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(2845), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(83), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_splat] = STATE(2846), + [sym_double_splat] = STATE(2846), + [sym_named_expr] = STATE(2846), + [sym_argument_list_no_parens] = STATE(3119), + [sym_argument_list_no_parens_with_block] = STATE(3119), + [sym_argument_list_with_parens] = STATE(3119), + [sym_argument_list_with_parens_and_block] = STATE(3119), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_block_argument] = STATE(3125), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [ts_builtin_sym_end] = ACTIONS(1215), + [sym_identifier] = ACTIONS(1223), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1215), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -47659,23857 +48585,23408 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1195), + [anon_sym_RBRACE] = ACTIONS(1215), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_end] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_end] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(1221), + [sym__constant_segment] = ACTIONS(1237), [anon_sym_COLON_COLON] = ACTIONS(85), [anon_sym___LINE__] = ACTIONS(87), [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1223), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(1239), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), + [anon_sym_LPAREN2] = ACTIONS(1243), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1197), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_when] = ACTIONS(1197), + [anon_sym_elsif] = ACTIONS(1217), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_when] = ACTIONS(1217), [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(1197), - [sym__line_break] = ACTIONS(1195), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(1235), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(1237), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(267), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__modifier_if_keyword] = ACTIONS(1195), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__modifier_unless_keyword] = ACTIONS(1195), - [sym__modifier_rescue_keyword] = ACTIONS(1195), - [sym__modifier_ensure_keyword] = ACTIONS(1195), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(1217), + [sym__line_break] = ACTIONS(1215), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(1251), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(1253), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(271), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__modifier_if_keyword] = ACTIONS(1215), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__modifier_unless_keyword] = ACTIONS(1215), + [sym__modifier_rescue_keyword] = ACTIONS(1215), + [sym__modifier_ensure_keyword] = ACTIONS(1215), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1247), - }, - [81] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3816), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), - [sym_heredoc_body] = STATE(81), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3793), - [sym_double_splat] = STATE(3793), - [sym_named_expr] = STATE(3793), - [sym_argument_list_no_parens] = STATE(3517), - [sym_argument_list_no_parens_with_block] = STATE(4136), - [sym_argument_list_with_parens] = STATE(3517), - [sym_argument_list_with_parens_and_block] = STATE(4136), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_do_end_block] = STATE(4137), - [sym_brace_block] = STATE(4138), - [sym_block_argument] = STATE(4054), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_COLON] = ACTIONS(1249), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(519), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(481), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(483), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(521), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(1177), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(1177), - [sym__modifier_rescue_keyword] = ACTIONS(1177), - [sym__regular_ensure_keyword] = ACTIONS(1177), - [sym__modifier_ensure_keyword] = ACTIONS(1177), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(523), - }, - [82] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3231), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(82), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3233), - [sym_double_splat] = STATE(3233), - [sym_named_expr] = STATE(3233), - [sym_argument_list_no_parens] = STATE(3094), - [sym_argument_list_no_parens_with_block] = STATE(3934), - [sym_argument_list_with_parens] = STATE(3095), - [sym_argument_list_with_parens_and_block] = STATE(3937), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_do_end_block] = STATE(3938), - [sym_brace_block] = STATE(3939), - [sym_block_argument] = STATE(3883), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_LPAREN2] = ACTIONS(323), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(329), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(1185), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(339), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(349), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(351), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(399), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(1185), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(1185), - [sym__regular_rescue_keyword] = ACTIONS(1185), - [sym__modifier_rescue_keyword] = ACTIONS(1185), - [sym__regular_ensure_keyword] = ACTIONS(1185), - [sym__modifier_ensure_keyword] = ACTIONS(1185), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(401), - }, - [83] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3231), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(83), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3233), - [sym_double_splat] = STATE(3233), - [sym_named_expr] = STATE(3233), - [sym_argument_list_no_parens] = STATE(3077), - [sym_argument_list_no_parens_with_block] = STATE(3895), - [sym_argument_list_with_parens] = STATE(3077), - [sym_argument_list_with_parens_and_block] = STATE(3895), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_do_end_block] = STATE(3901), - [sym_brace_block] = STATE(3902), - [sym_block_argument] = STATE(3883), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_LPAREN2] = ACTIONS(323), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(329), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(339), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(349), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(351), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(399), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(1177), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(1177), - [sym__regular_rescue_keyword] = ACTIONS(1177), - [sym__modifier_rescue_keyword] = ACTIONS(1177), - [sym__regular_ensure_keyword] = ACTIONS(1177), - [sym__modifier_ensure_keyword] = ACTIONS(1177), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(401), + [sym__start_of_parenless_args] = ACTIONS(1263), }, [84] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3231), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3841), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(84), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3233), - [sym_double_splat] = STATE(3233), - [sym_named_expr] = STATE(3233), - [sym_argument_list_no_parens] = STATE(3144), - [sym_argument_list_no_parens_with_block] = STATE(4135), - [sym_argument_list_with_parens] = STATE(3144), - [sym_argument_list_with_parens_and_block] = STATE(4135), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_do_end_block] = STATE(4210), - [sym_brace_block] = STATE(4210), - [sym_block_argument] = STATE(3883), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(1191), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_LPAREN2] = ACTIONS(323), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(329), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(1191), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(1189), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(339), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(349), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(351), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(399), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(1189), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(1189), - [sym__regular_rescue_keyword] = ACTIONS(1189), - [sym__modifier_rescue_keyword] = ACTIONS(1189), - [sym__regular_ensure_keyword] = ACTIONS(1189), - [sym__modifier_ensure_keyword] = ACTIONS(1189), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(401), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3837), + [sym_double_splat] = STATE(3837), + [sym_named_expr] = STATE(3837), + [sym_argument_list_no_parens] = STATE(3325), + [sym_argument_list_no_parens_with_block] = STATE(4875), + [sym_argument_list_with_parens] = STATE(3325), + [sym_argument_list_with_parens_and_block] = STATE(4875), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_do_end_block] = STATE(4876), + [sym_brace_block] = STATE(4881), + [sym_block_argument] = STATE(4874), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_COLON] = ACTIONS(1265), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(467), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(479), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(489), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(491), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(493), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(1193), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(1193), + [sym__modifier_rescue_keyword] = ACTIONS(1193), + [sym__regular_ensure_keyword] = ACTIONS(1193), + [sym__modifier_ensure_keyword] = ACTIONS(1193), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(515), }, [85] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3816), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3841), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(85), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3793), - [sym_double_splat] = STATE(3793), - [sym_named_expr] = STATE(3793), - [sym_argument_list_no_parens] = STATE(3545), - [sym_argument_list_no_parens_with_block] = STATE(4228), - [sym_argument_list_with_parens] = STATE(3554), - [sym_argument_list_with_parens_and_block] = STATE(4237), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_do_end_block] = STATE(4245), - [sym_brace_block] = STATE(4247), - [sym_block_argument] = STATE(4054), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(1185), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(519), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(481), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(483), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(521), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(1185), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(1185), - [sym__modifier_rescue_keyword] = ACTIONS(1185), - [sym__regular_ensure_keyword] = ACTIONS(1185), - [sym__modifier_ensure_keyword] = ACTIONS(1185), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(523), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3837), + [sym_double_splat] = STATE(3837), + [sym_named_expr] = STATE(3837), + [sym_argument_list_no_parens] = STATE(3592), + [sym_argument_list_no_parens_with_block] = STATE(4829), + [sym_argument_list_with_parens] = STATE(3592), + [sym_argument_list_with_parens_and_block] = STATE(4829), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_do_end_block] = STATE(4830), + [sym_brace_block] = STATE(4830), + [sym_block_argument] = STATE(4874), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(467), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(1201), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(479), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(489), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(491), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(493), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(1201), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(1201), + [sym__modifier_rescue_keyword] = ACTIONS(1201), + [sym__regular_ensure_keyword] = ACTIONS(1201), + [sym__modifier_ensure_keyword] = ACTIONS(1201), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(515), }, [86] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3185), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(3872), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(86), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3310), - [sym_double_splat] = STATE(3310), - [sym_named_expr] = STATE(3310), - [sym_argument_list_no_parens] = STATE(3400), - [sym_argument_list_no_parens_with_block] = STATE(3400), - [sym_argument_list_with_parens] = STATE(3400), - [sym_argument_list_with_parens_and_block] = STATE(3400), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_block_argument] = STATE(3480), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_LPAREN2] = ACTIONS(381), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_do] = ACTIONS(1201), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(1201), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(1199), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1199), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(349), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(351), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(389), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(1199), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(1199), - [sym__regular_rescue_keyword] = ACTIONS(1199), - [sym__modifier_rescue_keyword] = ACTIONS(1199), - [sym__regular_ensure_keyword] = ACTIONS(1199), - [sym__modifier_ensure_keyword] = ACTIONS(1199), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(391), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3873), + [sym_double_splat] = STATE(3873), + [sym_named_expr] = STATE(3873), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1193), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_RBRACK] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(1267), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_when] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(1195), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(617), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(639), }, [87] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3816), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(3913), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(87), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3793), - [sym_double_splat] = STATE(3793), - [sym_named_expr] = STATE(3793), - [sym_argument_list_no_parens] = STATE(3404), - [sym_argument_list_no_parens_with_block] = STATE(4004), - [sym_argument_list_with_parens] = STATE(3404), - [sym_argument_list_with_parens_and_block] = STATE(4004), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_do_end_block] = STATE(4005), - [sym_brace_block] = STATE(4005), - [sym_block_argument] = STATE(4054), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(1191), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1251), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(1189), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(519), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(481), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(483), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(521), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(1189), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(1189), - [sym__modifier_rescue_keyword] = ACTIONS(1189), - [sym__regular_ensure_keyword] = ACTIONS(1189), - [sym__modifier_ensure_keyword] = ACTIONS(1189), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(523), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3914), + [sym_double_splat] = STATE(3914), + [sym_named_expr] = STATE(3914), + [sym_argument_list_no_parens] = STATE(3294), + [sym_argument_list_no_parens_with_block] = STATE(3682), + [sym_argument_list_with_parens] = STATE(3294), + [sym_argument_list_with_parens_and_block] = STATE(3682), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(3683), + [sym_brace_block] = STATE(3684), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1193), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_RBRACK] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(1269), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_when] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(1195), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(661), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(663), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(665), }, [88] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3816), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3253), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(88), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3793), - [sym_double_splat] = STATE(3793), - [sym_named_expr] = STATE(3793), - [sym_argument_list_no_parens] = STATE(3517), - [sym_argument_list_no_parens_with_block] = STATE(4136), - [sym_argument_list_with_parens] = STATE(3517), - [sym_argument_list_with_parens_and_block] = STATE(4136), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_do_end_block] = STATE(4137), - [sym_brace_block] = STATE(4138), - [sym_block_argument] = STATE(4054), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(519), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(481), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(483), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(521), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(1177), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(1177), - [sym__modifier_rescue_keyword] = ACTIONS(1177), - [sym__regular_ensure_keyword] = ACTIONS(1177), - [sym__modifier_ensure_keyword] = ACTIONS(1177), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(523), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3249), + [sym_double_splat] = STATE(3249), + [sym_named_expr] = STATE(3249), + [sym_argument_list_no_parens] = STATE(3489), + [sym_argument_list_no_parens_with_block] = STATE(3489), + [sym_argument_list_with_parens] = STATE(3489), + [sym_argument_list_with_parens_and_block] = STATE(3489), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_block_argument] = STATE(3498), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(327), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(1215), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1215), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(353), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(355), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(357), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(1215), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(1215), + [sym__regular_rescue_keyword] = ACTIONS(1215), + [sym__modifier_rescue_keyword] = ACTIONS(1215), + [sym__regular_ensure_keyword] = ACTIONS(1215), + [sym__modifier_ensure_keyword] = ACTIONS(1215), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(379), }, [89] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4287), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3634), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(89), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4093), - [sym_double_splat] = STATE(4093), - [sym_named_expr] = STATE(4093), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(1177), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1177), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_RBRACK] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_COLON] = ACTIONS(1253), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_when] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(1179), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(643), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(645), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3598), + [sym_double_splat] = STATE(3598), + [sym_named_expr] = STATE(3598), + [sym_argument_list_no_parens] = STATE(3345), + [sym_argument_list_no_parens_with_block] = STATE(3886), + [sym_argument_list_with_parens] = STATE(3345), + [sym_argument_list_with_parens_and_block] = STATE(3886), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_do_end_block] = STATE(3887), + [sym_brace_block] = STATE(3888), + [sym_block_argument] = STATE(3891), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(521), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(527), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(489), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(491), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(529), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(1193), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(1193), + [sym__modifier_rescue_keyword] = ACTIONS(1193), + [sym__regular_ensure_keyword] = ACTIONS(1193), + [sym__modifier_ensure_keyword] = ACTIONS(1193), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(531), }, [90] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4089), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3253), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(90), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4095), - [sym_double_splat] = STATE(4095), - [sym_named_expr] = STATE(4095), - [sym_argument_list_no_parens] = STATE(3276), - [sym_argument_list_no_parens_with_block] = STATE(3811), - [sym_argument_list_with_parens] = STATE(3276), - [sym_argument_list_with_parens_and_block] = STATE(3811), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(3814), - [sym_brace_block] = STATE(3829), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(1177), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1177), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_RBRACK] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_COLON] = ACTIONS(1255), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_when] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(1179), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(591), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(605), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(627), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3249), + [sym_double_splat] = STATE(3249), + [sym_named_expr] = STATE(3249), + [sym_argument_list_no_parens] = STATE(3570), + [sym_argument_list_no_parens_with_block] = STATE(3570), + [sym_argument_list_with_parens] = STATE(3570), + [sym_argument_list_with_parens_and_block] = STATE(3570), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_block_argument] = STATE(3498), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(1213), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_LPAREN2] = ACTIONS(327), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(1213), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(1211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1211), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(353), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(355), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(357), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(1211), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(1211), + [sym__regular_rescue_keyword] = ACTIONS(1211), + [sym__modifier_rescue_keyword] = ACTIONS(1211), + [sym__regular_ensure_keyword] = ACTIONS(1211), + [sym__modifier_ensure_keyword] = ACTIONS(1211), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(379), }, [91] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3185), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3634), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(91), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3310), - [sym_double_splat] = STATE(3310), - [sym_named_expr] = STATE(3310), - [sym_argument_list_no_parens] = STATE(3479), - [sym_argument_list_no_parens_with_block] = STATE(3479), - [sym_argument_list_with_parens] = STATE(3479), - [sym_argument_list_with_parens_and_block] = STATE(3479), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_block_argument] = STATE(3480), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_LPAREN2] = ACTIONS(381), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(1195), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1195), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(349), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(351), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(389), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(1195), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(1195), - [sym__regular_rescue_keyword] = ACTIONS(1195), - [sym__modifier_rescue_keyword] = ACTIONS(1195), - [sym__regular_ensure_keyword] = ACTIONS(1195), - [sym__modifier_ensure_keyword] = ACTIONS(1195), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(391), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3598), + [sym_double_splat] = STATE(3598), + [sym_named_expr] = STATE(3598), + [sym_argument_list_no_parens] = STATE(3348), + [sym_argument_list_no_parens_with_block] = STATE(3893), + [sym_argument_list_with_parens] = STATE(3349), + [sym_argument_list_with_parens_and_block] = STATE(3895), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_do_end_block] = STATE(3896), + [sym_brace_block] = STATE(3897), + [sym_block_argument] = STATE(3891), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(1207), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(521), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(1205), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(527), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(489), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(491), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(529), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(1205), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(1205), + [sym__modifier_rescue_keyword] = ACTIONS(1205), + [sym__regular_ensure_keyword] = ACTIONS(1205), + [sym__modifier_ensure_keyword] = ACTIONS(1205), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(531), }, [92] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3744), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3634), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(92), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3740), - [sym_double_splat] = STATE(3740), - [sym_named_expr] = STATE(3740), - [sym_argument_list_no_parens] = STATE(3397), - [sym_argument_list_no_parens_with_block] = STATE(4644), - [sym_argument_list_with_parens] = STATE(3397), - [sym_argument_list_with_parens_and_block] = STATE(4644), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_do_end_block] = STATE(4645), - [sym_brace_block] = STATE(4645), - [sym_block_argument] = STATE(4714), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(1191), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_LPAREN2] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(461), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(1189), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(471), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(481), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(483), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(485), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(1189), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(1189), - [sym__modifier_rescue_keyword] = ACTIONS(1189), - [sym__regular_ensure_keyword] = ACTIONS(1189), - [sym__modifier_ensure_keyword] = ACTIONS(1189), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(507), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3598), + [sym_double_splat] = STATE(3598), + [sym_named_expr] = STATE(3598), + [sym_argument_list_no_parens] = STATE(3389), + [sym_argument_list_no_parens_with_block] = STATE(4148), + [sym_argument_list_with_parens] = STATE(3389), + [sym_argument_list_with_parens_and_block] = STATE(4148), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_do_end_block] = STATE(4151), + [sym_brace_block] = STATE(4151), + [sym_block_argument] = STATE(3891), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(521), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1271), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(1201), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(527), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(489), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(491), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(529), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(1201), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(1201), + [sym__modifier_rescue_keyword] = ACTIONS(1201), + [sym__regular_ensure_keyword] = ACTIONS(1201), + [sym__modifier_ensure_keyword] = ACTIONS(1201), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(531), }, [93] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3744), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3841), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(93), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3740), - [sym_double_splat] = STATE(3740), - [sym_named_expr] = STATE(3740), - [sym_argument_list_no_parens] = STATE(3375), - [sym_argument_list_no_parens_with_block] = STATE(4715), - [sym_argument_list_with_parens] = STATE(3375), - [sym_argument_list_with_parens_and_block] = STATE(4715), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_do_end_block] = STATE(4716), - [sym_brace_block] = STATE(4717), - [sym_block_argument] = STATE(4714), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_LPAREN2] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(461), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(471), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(481), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(483), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(485), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(1177), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(1177), - [sym__modifier_rescue_keyword] = ACTIONS(1177), - [sym__regular_ensure_keyword] = ACTIONS(1177), - [sym__modifier_ensure_keyword] = ACTIONS(1177), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(507), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3837), + [sym_double_splat] = STATE(3837), + [sym_named_expr] = STATE(3837), + [sym_argument_list_no_parens] = STATE(3325), + [sym_argument_list_no_parens_with_block] = STATE(4875), + [sym_argument_list_with_parens] = STATE(3325), + [sym_argument_list_with_parens_and_block] = STATE(4875), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_do_end_block] = STATE(4876), + [sym_brace_block] = STATE(4881), + [sym_block_argument] = STATE(4874), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(467), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(479), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(489), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(491), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(493), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(1193), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(1193), + [sym__modifier_rescue_keyword] = ACTIONS(1193), + [sym__regular_ensure_keyword] = ACTIONS(1193), + [sym__modifier_ensure_keyword] = ACTIONS(1193), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(515), }, [94] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3744), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3841), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(94), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3740), - [sym_double_splat] = STATE(3740), - [sym_named_expr] = STATE(3740), - [sym_argument_list_no_parens] = STATE(3383), - [sym_argument_list_no_parens_with_block] = STATE(4719), - [sym_argument_list_with_parens] = STATE(3385), - [sym_argument_list_with_parens_and_block] = STATE(4720), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_do_end_block] = STATE(4721), - [sym_brace_block] = STATE(4722), - [sym_block_argument] = STATE(4714), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_LPAREN2] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(461), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(1185), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(471), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(481), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(483), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(485), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(1185), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(1185), - [sym__modifier_rescue_keyword] = ACTIONS(1185), - [sym__regular_ensure_keyword] = ACTIONS(1185), - [sym__modifier_ensure_keyword] = ACTIONS(1185), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(507), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3837), + [sym_double_splat] = STATE(3837), + [sym_named_expr] = STATE(3837), + [sym_argument_list_no_parens] = STATE(3328), + [sym_argument_list_no_parens_with_block] = STATE(4647), + [sym_argument_list_with_parens] = STATE(3330), + [sym_argument_list_with_parens_and_block] = STATE(4826), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_do_end_block] = STATE(4827), + [sym_brace_block] = STATE(4828), + [sym_block_argument] = STATE(4874), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(1207), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(467), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(1205), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(479), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(489), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(491), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(493), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(1205), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(1205), + [sym__modifier_rescue_keyword] = ACTIONS(1205), + [sym__regular_ensure_keyword] = ACTIONS(1205), + [sym__modifier_ensure_keyword] = ACTIONS(1205), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(515), }, [95] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4287), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(3913), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(95), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4093), - [sym_double_splat] = STATE(4093), - [sym_named_expr] = STATE(4093), - [sym_argument_list_no_parens] = STATE(3266), - [sym_argument_list_no_parens_with_block] = STATE(4395), - [sym_argument_list_with_parens] = STATE(3272), - [sym_argument_list_with_parens_and_block] = STATE(4396), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4397), - [sym_brace_block] = STATE(4398), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(1185), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1185), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_RBRACK] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_when] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(1187), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(643), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(645), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3914), + [sym_double_splat] = STATE(3914), + [sym_named_expr] = STATE(3914), + [sym_argument_list_no_parens] = STATE(3296), + [sym_argument_list_no_parens_with_block] = STATE(3687), + [sym_argument_list_with_parens] = STATE(3297), + [sym_argument_list_with_parens_and_block] = STATE(3688), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(3689), + [sym_brace_block] = STATE(3690), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(1205), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1205), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(1207), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_when] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(1207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(661), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(663), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(665), }, [96] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4089), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(3913), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(96), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4095), - [sym_double_splat] = STATE(4095), - [sym_named_expr] = STATE(4095), - [sym_argument_list_no_parens] = STATE(3276), - [sym_argument_list_no_parens_with_block] = STATE(3811), - [sym_argument_list_with_parens] = STATE(3276), - [sym_argument_list_with_parens_and_block] = STATE(3811), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(3814), - [sym_brace_block] = STATE(3829), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(1177), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1177), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_RBRACK] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_when] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(1179), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(591), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(605), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(627), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3914), + [sym_double_splat] = STATE(3914), + [sym_named_expr] = STATE(3914), + [sym_argument_list_no_parens] = STATE(3243), + [sym_argument_list_no_parens_with_block] = STATE(3629), + [sym_argument_list_with_parens] = STATE(3243), + [sym_argument_list_with_parens_and_block] = STATE(3629), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(3630), + [sym_brace_block] = STATE(3630), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(1201), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1201), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_RBRACK] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1273), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_when] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(1203), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(661), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(663), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(665), }, [97] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4287), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3795), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(97), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4093), - [sym_double_splat] = STATE(4093), - [sym_named_expr] = STATE(4093), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(1177), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1177), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_RBRACK] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_when] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(1179), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(643), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(645), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3628), + [sym_double_splat] = STATE(3628), + [sym_named_expr] = STATE(3628), + [sym_argument_list_no_parens] = STATE(3328), + [sym_argument_list_no_parens_with_block] = STATE(4647), + [sym_argument_list_with_parens] = STATE(3330), + [sym_argument_list_with_parens_and_block] = STATE(4826), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_do_end_block] = STATE(4827), + [sym_brace_block] = STATE(4828), + [sym_block_argument] = STATE(4874), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(1207), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(467), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(1205), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(479), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(489), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(491), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(647), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(1205), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(1205), + [sym__modifier_rescue_keyword] = ACTIONS(1205), + [sym__regular_ensure_keyword] = ACTIONS(1205), + [sym__modifier_ensure_keyword] = ACTIONS(1205), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(649), }, [98] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4089), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(3913), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(98), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4095), - [sym_double_splat] = STATE(4095), - [sym_named_expr] = STATE(4095), - [sym_argument_list_no_parens] = STATE(3291), - [sym_argument_list_no_parens_with_block] = STATE(3608), - [sym_argument_list_with_parens] = STATE(3291), - [sym_argument_list_with_parens_and_block] = STATE(3608), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(3609), - [sym_brace_block] = STATE(3609), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(1189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1189), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_RBRACK] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(1191), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1257), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(1191), - [anon_sym_when] = ACTIONS(1191), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(1191), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(591), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(605), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(627), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3914), + [sym_double_splat] = STATE(3914), + [sym_named_expr] = STATE(3914), + [sym_argument_list_no_parens] = STATE(3294), + [sym_argument_list_no_parens_with_block] = STATE(3682), + [sym_argument_list_with_parens] = STATE(3294), + [sym_argument_list_with_parens_and_block] = STATE(3682), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(3683), + [sym_brace_block] = STATE(3684), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1193), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_RBRACK] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_when] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(1195), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(661), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(663), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(665), }, [99] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3778), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3795), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(99), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3704), - [sym_double_splat] = STATE(3704), - [sym_named_expr] = STATE(3704), - [sym_argument_list_no_parens] = STATE(3397), - [sym_argument_list_no_parens_with_block] = STATE(4644), - [sym_argument_list_with_parens] = STATE(3397), - [sym_argument_list_with_parens_and_block] = STATE(4644), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_do_end_block] = STATE(4645), - [sym_brace_block] = STATE(4645), - [sym_block_argument] = STATE(4714), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(1191), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_LPAREN2] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(461), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(1189), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(471), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(481), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(483), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(653), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(1189), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(1189), - [sym__modifier_rescue_keyword] = ACTIONS(1189), - [sym__regular_ensure_keyword] = ACTIONS(1189), - [sym__modifier_ensure_keyword] = ACTIONS(1189), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(655), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3628), + [sym_double_splat] = STATE(3628), + [sym_named_expr] = STATE(3628), + [sym_argument_list_no_parens] = STATE(3592), + [sym_argument_list_no_parens_with_block] = STATE(4829), + [sym_argument_list_with_parens] = STATE(3592), + [sym_argument_list_with_parens_and_block] = STATE(4829), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_do_end_block] = STATE(4830), + [sym_brace_block] = STATE(4830), + [sym_block_argument] = STATE(4874), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(467), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(1201), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(479), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(489), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(491), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(647), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(1201), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(1201), + [sym__modifier_rescue_keyword] = ACTIONS(1201), + [sym__regular_ensure_keyword] = ACTIONS(1201), + [sym__modifier_ensure_keyword] = ACTIONS(1201), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(649), }, [100] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4287), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(3872), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(100), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4093), - [sym_double_splat] = STATE(4093), - [sym_named_expr] = STATE(4093), - [sym_argument_list_no_parens] = STATE(3232), - [sym_argument_list_no_parens_with_block] = STATE(4461), - [sym_argument_list_with_parens] = STATE(3232), - [sym_argument_list_with_parens_and_block] = STATE(4461), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4462), - [sym_brace_block] = STATE(4462), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(1189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1189), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_RBRACK] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(1191), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(1191), - [anon_sym_when] = ACTIONS(1191), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(1191), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(643), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(645), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3873), + [sym_double_splat] = STATE(3873), + [sym_named_expr] = STATE(3873), + [sym_argument_list_no_parens] = STATE(3262), + [sym_argument_list_no_parens_with_block] = STATE(4563), + [sym_argument_list_with_parens] = STATE(3262), + [sym_argument_list_with_parens_and_block] = STATE(4563), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4564), + [sym_brace_block] = STATE(4564), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(1201), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1201), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_RBRACK] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_when] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(1203), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(617), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(639), }, [101] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3778), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(3872), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(101), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3704), - [sym_double_splat] = STATE(3704), - [sym_named_expr] = STATE(3704), - [sym_argument_list_no_parens] = STATE(3375), - [sym_argument_list_no_parens_with_block] = STATE(4715), - [sym_argument_list_with_parens] = STATE(3375), - [sym_argument_list_with_parens_and_block] = STATE(4715), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_do_end_block] = STATE(4716), - [sym_brace_block] = STATE(4717), - [sym_block_argument] = STATE(4714), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_LPAREN2] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(461), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(471), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(481), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(483), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(653), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(1177), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(1177), - [sym__modifier_rescue_keyword] = ACTIONS(1177), - [sym__regular_ensure_keyword] = ACTIONS(1177), - [sym__modifier_ensure_keyword] = ACTIONS(1177), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(655), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3873), + [sym_double_splat] = STATE(3873), + [sym_named_expr] = STATE(3873), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1193), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_RBRACK] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_when] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(1195), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(617), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(639), }, [102] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3778), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3795), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(102), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3704), - [sym_double_splat] = STATE(3704), - [sym_named_expr] = STATE(3704), - [sym_argument_list_no_parens] = STATE(3383), - [sym_argument_list_no_parens_with_block] = STATE(4719), - [sym_argument_list_with_parens] = STATE(3385), - [sym_argument_list_with_parens_and_block] = STATE(4720), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_do_end_block] = STATE(4721), - [sym_brace_block] = STATE(4722), - [sym_block_argument] = STATE(4714), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_LPAREN2] = ACTIONS(455), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(461), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(1185), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(471), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(481), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(483), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(653), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(1185), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(1185), - [sym__modifier_rescue_keyword] = ACTIONS(1185), - [sym__regular_ensure_keyword] = ACTIONS(1185), - [sym__modifier_ensure_keyword] = ACTIONS(1185), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(655), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3628), + [sym_double_splat] = STATE(3628), + [sym_named_expr] = STATE(3628), + [sym_argument_list_no_parens] = STATE(3325), + [sym_argument_list_no_parens_with_block] = STATE(4875), + [sym_argument_list_with_parens] = STATE(3325), + [sym_argument_list_with_parens_and_block] = STATE(4875), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_do_end_block] = STATE(4876), + [sym_brace_block] = STATE(4881), + [sym_block_argument] = STATE(4874), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(461), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(467), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(479), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(489), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(491), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(647), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(1193), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(1193), + [sym__modifier_rescue_keyword] = ACTIONS(1193), + [sym__regular_ensure_keyword] = ACTIONS(1193), + [sym__modifier_ensure_keyword] = ACTIONS(1193), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(649), }, [103] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4089), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(3872), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(103), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4095), - [sym_double_splat] = STATE(4095), - [sym_named_expr] = STATE(4095), - [sym_argument_list_no_parens] = STATE(3198), - [sym_argument_list_no_parens_with_block] = STATE(3636), - [sym_argument_list_with_parens] = STATE(3201), - [sym_argument_list_with_parens_and_block] = STATE(3643), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(3644), - [sym_brace_block] = STATE(3645), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(1185), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1185), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_RBRACK] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_when] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(1187), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(591), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(605), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(627), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3873), + [sym_double_splat] = STATE(3873), + [sym_named_expr] = STATE(3873), + [sym_argument_list_no_parens] = STATE(3275), + [sym_argument_list_no_parens_with_block] = STATE(4550), + [sym_argument_list_with_parens] = STATE(3276), + [sym_argument_list_with_parens_and_block] = STATE(4574), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4584), + [sym_brace_block] = STATE(4592), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(1205), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1205), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(1207), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_when] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(1207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(617), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(639), }, [104] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3816), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3634), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(104), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3793), - [sym_double_splat] = STATE(3793), - [sym_named_expr] = STATE(3793), - [sym_argument_list_no_parens] = STATE(4078), - [sym_argument_list_no_parens_with_block] = STATE(4078), - [sym_argument_list_with_parens] = STATE(4078), - [sym_argument_list_with_parens_and_block] = STATE(4078), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_block_argument] = STATE(4054), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(1195), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1195), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(481), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(483), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(521), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(1195), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(1195), - [sym__modifier_rescue_keyword] = ACTIONS(1195), - [sym__regular_ensure_keyword] = ACTIONS(1195), - [sym__modifier_ensure_keyword] = ACTIONS(1195), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(523), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3598), + [sym_double_splat] = STATE(3598), + [sym_named_expr] = STATE(3598), + [sym_argument_list_no_parens] = STATE(3884), + [sym_argument_list_no_parens_with_block] = STATE(3884), + [sym_argument_list_with_parens] = STATE(3884), + [sym_argument_list_with_parens_and_block] = STATE(3884), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_block_argument] = STATE(3891), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(521), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(1215), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1215), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(489), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(491), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(529), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(1215), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(1215), + [sym__modifier_rescue_keyword] = ACTIONS(1215), + [sym__regular_ensure_keyword] = ACTIONS(1215), + [sym__modifier_ensure_keyword] = ACTIONS(1215), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(531), }, [105] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3816), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3634), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(105), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3793), - [sym_double_splat] = STATE(3793), - [sym_named_expr] = STATE(3793), - [sym_argument_list_no_parens] = STATE(4160), - [sym_argument_list_no_parens_with_block] = STATE(4160), - [sym_argument_list_with_parens] = STATE(4160), - [sym_argument_list_with_parens_and_block] = STATE(4160), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_block_argument] = STATE(4054), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(405), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_LPAREN2] = ACTIONS(513), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_do] = ACTIONS(1201), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(1199), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1199), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(481), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(483), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(521), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(1199), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(1199), - [sym__modifier_rescue_keyword] = ACTIONS(1199), - [sym__regular_ensure_keyword] = ACTIONS(1199), - [sym__modifier_ensure_keyword] = ACTIONS(1199), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(523), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3598), + [sym_double_splat] = STATE(3598), + [sym_named_expr] = STATE(3598), + [sym_argument_list_no_parens] = STATE(4199), + [sym_argument_list_no_parens_with_block] = STATE(4199), + [sym_argument_list_with_parens] = STATE(4199), + [sym_argument_list_with_parens_and_block] = STATE(4199), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_block_argument] = STATE(3891), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(411), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(1213), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_LPAREN2] = ACTIONS(521), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(1211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1211), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(489), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(491), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(529), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(1211), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(1211), + [sym__modifier_rescue_keyword] = ACTIONS(1211), + [sym__regular_ensure_keyword] = ACTIONS(1211), + [sym__modifier_ensure_keyword] = ACTIONS(1211), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(531), }, [106] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3736), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3125), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(3675), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(3834), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(2995), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3606), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(106), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_splat] = STATE(3732), - [sym_double_splat] = STATE(3732), - [sym_named_expr] = STATE(3732), - [sym_argument_list_no_parens] = STATE(3882), - [sym_argument_list_no_parens_with_block] = STATE(3882), - [sym_argument_list_with_parens] = STATE(3882), - [sym_argument_list_with_parens_and_block] = STATE(3882), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_block_argument] = STATE(3883), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_end] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1303), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_LPAREN2] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(1195), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(1325), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(1327), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(353), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__modifier_if_keyword] = ACTIONS(1195), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__modifier_unless_keyword] = ACTIONS(1195), - [sym__regular_rescue_keyword] = ACTIONS(1195), - [sym__modifier_rescue_keyword] = ACTIONS(1195), - [sym__regular_ensure_keyword] = ACTIONS(1195), - [sym__modifier_ensure_keyword] = ACTIONS(1195), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1349), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_splat] = STATE(3830), + [sym_double_splat] = STATE(3830), + [sym_named_expr] = STATE(3830), + [sym_argument_list_no_parens] = STATE(3960), + [sym_argument_list_no_parens_with_block] = STATE(3960), + [sym_argument_list_with_parens] = STATE(3960), + [sym_argument_list_with_parens_and_block] = STATE(3960), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_block_argument] = STATE(3961), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_COMMA] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_end] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1319), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(1215), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(1343), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(1345), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(395), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__modifier_if_keyword] = ACTIONS(1215), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__modifier_unless_keyword] = ACTIONS(1215), + [sym__regular_rescue_keyword] = ACTIONS(1215), + [sym__modifier_rescue_keyword] = ACTIONS(1215), + [sym__regular_ensure_keyword] = ACTIONS(1215), + [sym__modifier_ensure_keyword] = ACTIONS(1215), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1367), }, [107] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3736), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3125), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(3675), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(3834), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(2995), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3606), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(107), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_splat] = STATE(3732), - [sym_double_splat] = STATE(3732), - [sym_named_expr] = STATE(3732), - [sym_argument_list_no_parens] = STATE(4190), - [sym_argument_list_no_parens_with_block] = STATE(4190), - [sym_argument_list_with_parens] = STATE(4190), - [sym_argument_list_with_parens_and_block] = STATE(4190), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_block_argument] = STATE(3883), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(1261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_end] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1303), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_LPAREN2] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1201), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(1199), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(1325), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(1327), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(353), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__modifier_if_keyword] = ACTIONS(1199), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__modifier_unless_keyword] = ACTIONS(1199), - [sym__regular_rescue_keyword] = ACTIONS(1199), - [sym__modifier_rescue_keyword] = ACTIONS(1199), - [sym__regular_ensure_keyword] = ACTIONS(1199), - [sym__modifier_ensure_keyword] = ACTIONS(1199), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1349), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_splat] = STATE(3830), + [sym_double_splat] = STATE(3830), + [sym_named_expr] = STATE(3830), + [sym_argument_list_no_parens] = STATE(4073), + [sym_argument_list_no_parens_with_block] = STATE(4073), + [sym_argument_list_with_parens] = STATE(4073), + [sym_argument_list_with_parens_and_block] = STATE(4073), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_block_argument] = STATE(3961), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_end] = ACTIONS(1213), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1319), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1213), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(1211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(1343), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(1345), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(395), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__modifier_if_keyword] = ACTIONS(1211), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__modifier_unless_keyword] = ACTIONS(1211), + [sym__regular_rescue_keyword] = ACTIONS(1211), + [sym__modifier_rescue_keyword] = ACTIONS(1211), + [sym__regular_ensure_keyword] = ACTIONS(1211), + [sym__modifier_ensure_keyword] = ACTIONS(1211), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1367), }, [108] = { - [sym__terminator] = STATE(151), - [sym__statements] = STATE(8833), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(3604), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(2995), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3606), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(108), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11383), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9711), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8842), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1361), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_splat] = STATE(3601), + [sym_double_splat] = STATE(3601), + [sym_named_expr] = STATE(3601), + [sym_argument_list_no_parens] = STATE(3960), + [sym_argument_list_no_parens_with_block] = STATE(3960), + [sym_argument_list_with_parens] = STATE(3960), + [sym_argument_list_with_parens_and_block] = STATE(3960), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_block_argument] = STATE(3961), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_end] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1319), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(1215), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(1343), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(1345), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(405), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__modifier_if_keyword] = ACTIONS(1215), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__modifier_unless_keyword] = ACTIONS(1215), + [sym__regular_rescue_keyword] = ACTIONS(1215), + [sym__modifier_rescue_keyword] = ACTIONS(1215), + [sym__regular_ensure_keyword] = ACTIONS(1215), + [sym__modifier_ensure_keyword] = ACTIONS(1215), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1369), }, [109] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4089), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__terminator] = STATE(163), + [sym__statements] = STATE(8693), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(109), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4095), - [sym_double_splat] = STATE(4095), - [sym_named_expr] = STATE(4095), - [sym_argument_list_no_parens] = STATE(3605), - [sym_argument_list_no_parens_with_block] = STATE(3605), - [sym_argument_list_with_parens] = STATE(3605), - [sym_argument_list_with_parens_and_block] = STATE(3605), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(1199), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1199), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_do] = ACTIONS(1201), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(1201), - [anon_sym_when] = ACTIONS(1201), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(1201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1199), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(605), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(627), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11026), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10081), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8694), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1381), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), }, [110] = { - [sym__terminator] = STATE(190), - [sym__statements] = STATE(8672), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__terminator] = STATE(165), + [sym__statements] = STATE(8849), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(110), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10806), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10225), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8702), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1423), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11536), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10248), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8850), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1443), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [111] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3672), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3125), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(3675), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__terminator] = STATE(179), + [sym__statements] = STATE(8894), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(111), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_splat] = STATE(3800), - [sym_double_splat] = STATE(3800), - [sym_named_expr] = STATE(3800), - [sym_argument_list_no_parens] = STATE(3882), - [sym_argument_list_no_parens_with_block] = STATE(3882), - [sym_argument_list_with_parens] = STATE(3882), - [sym_argument_list_with_parens_and_block] = STATE(3882), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_block_argument] = STATE(3883), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_end] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1303), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_LPAREN2] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(1195), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(1325), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(1327), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(399), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__modifier_if_keyword] = ACTIONS(1195), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__modifier_unless_keyword] = ACTIONS(1195), - [sym__regular_rescue_keyword] = ACTIONS(1195), - [sym__modifier_rescue_keyword] = ACTIONS(1195), - [sym__regular_ensure_keyword] = ACTIONS(1195), - [sym__modifier_ensure_keyword] = ACTIONS(1195), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1425), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10692), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10396), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8636), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1445), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), }, [112] = { - [sym__terminator] = STATE(155), - [sym__statements] = STATE(8778), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__terminator] = STATE(166), + [sym__statements] = STATE(8908), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(112), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11220), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10104), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8781), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1427), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11785), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10338), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8909), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1447), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [113] = { - [sym__terminator] = STATE(159), - [sym__statements] = STATE(8623), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__terminator] = STATE(168), + [sym__statements] = STATE(8643), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(113), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10913), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9725), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8626), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1429), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10774), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10234), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8661), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1449), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [114] = { - [sym__terminator] = STATE(163), - [sym__statements] = STATE(8724), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__terminator] = STATE(201), + [sym__statements] = STATE(8924), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(114), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10515), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10092), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8725), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1431), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11692), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9823), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8929), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1451), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [115] = { - [sym__terminator] = STATE(165), - [sym__statements] = STATE(8865), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__terminator] = STATE(175), + [sym__statements] = STATE(8683), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(115), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11432), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9722), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8866), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1433), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11947), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10393), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8697), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1453), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [116] = { - [sym__terminator] = STATE(168), - [sym__statements] = STATE(8566), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__terminator] = STATE(177), + [sym__statements] = STATE(8921), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(116), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10521), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9831), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8567), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1435), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10710), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10206), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8922), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1455), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [117] = { - [sym__terminator] = STATE(174), - [sym__statements] = STATE(8687), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__terminator] = STATE(180), + [sym__statements] = STATE(8684), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(117), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10998), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10017), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8688), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1437), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11746), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9831), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8690), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1457), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [118] = { - [sym__terminator] = STATE(176), - [sym__statements] = STATE(8737), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__terminator] = STATE(182), + [sym__statements] = STATE(8815), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(118), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11243), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10112), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8738), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1439), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10924), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10037), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8819), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1459), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [119] = { - [sym__terminator] = STATE(178), - [sym__statements] = STATE(8804), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(3913), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(119), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11535), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10227), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8806), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1441), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3914), + [sym_double_splat] = STATE(3914), + [sym_named_expr] = STATE(3914), + [sym_argument_list_no_parens] = STATE(3769), + [sym_argument_list_no_parens_with_block] = STATE(3769), + [sym_argument_list_with_parens] = STATE(3769), + [sym_argument_list_with_parens_and_block] = STATE(3769), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(1211), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1211), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_RBRACK] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(1213), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1213), + [anon_sym_when] = ACTIONS(1213), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(1213), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1211), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(663), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(665), }, [120] = { - [sym__terminator] = STATE(180), - [sym__statements] = STATE(8873), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__terminator] = STATE(187), + [sym__statements] = STATE(8642), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(120), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11876), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10327), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8874), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1443), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11956), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10391), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8645), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1461), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [121] = { - [sym__terminator] = STATE(184), - [sym__statements] = STATE(8547), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__terminator] = STATE(189), + [sym__statements] = STATE(8722), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(121), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11284), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10357), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8561), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1445), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11639), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9799), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8723), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1463), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [122] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3672), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3125), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(3675), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(3913), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(122), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_splat] = STATE(3800), - [sym_double_splat] = STATE(3800), - [sym_named_expr] = STATE(3800), - [sym_argument_list_no_parens] = STATE(4190), - [sym_argument_list_no_parens_with_block] = STATE(4190), - [sym_argument_list_with_parens] = STATE(4190), - [sym_argument_list_with_parens_and_block] = STATE(4190), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_block_argument] = STATE(3883), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(1261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_end] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1303), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_LPAREN2] = ACTIONS(1307), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1201), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(1199), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(1325), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(1327), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(399), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__modifier_if_keyword] = ACTIONS(1199), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__modifier_unless_keyword] = ACTIONS(1199), - [sym__regular_rescue_keyword] = ACTIONS(1199), - [sym__modifier_rescue_keyword] = ACTIONS(1199), - [sym__regular_ensure_keyword] = ACTIONS(1199), - [sym__modifier_ensure_keyword] = ACTIONS(1199), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1425), - }, - [123] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4529), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(123), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4530), - [sym_double_splat] = STATE(4530), - [sym_named_expr] = STATE(4530), - [sym_argument_list_no_parens] = STATE(3232), - [sym_argument_list_no_parens_with_block] = STATE(4461), - [sym_argument_list_with_parens] = STATE(3232), - [sym_argument_list_with_parens_and_block] = STATE(4461), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4462), - [sym_brace_block] = STATE(4462), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(1189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1189), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(1191), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(1191), - [anon_sym_when] = ACTIONS(1191), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(1191), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(1189), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3914), + [sym_double_splat] = STATE(3914), + [sym_named_expr] = STATE(3914), + [sym_argument_list_no_parens] = STATE(3680), + [sym_argument_list_no_parens_with_block] = STATE(3680), + [sym_argument_list_with_parens] = STATE(3680), + [sym_argument_list_with_parens_and_block] = STATE(3680), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(1215), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1215), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1215), + [anon_sym_RBRACK] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_when] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(1217), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1215), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(1215), [sym__block_ampersand] = ACTIONS(663), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), [sym__start_of_parenless_args] = ACTIONS(665), }, + [123] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4473), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(123), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(4474), + [sym_double_splat] = STATE(4474), + [sym_named_expr] = STATE(4474), + [sym_argument_list_no_parens] = STATE(3262), + [sym_argument_list_no_parens_with_block] = STATE(4563), + [sym_argument_list_with_parens] = STATE(3262), + [sym_argument_list_with_parens_and_block] = STATE(4563), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4564), + [sym_brace_block] = STATE(4564), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(1201), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1201), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(1203), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1203), + [anon_sym_when] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(1203), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(673), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(675), + }, [124] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4529), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4473), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(124), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4530), - [sym_double_splat] = STATE(4530), - [sym_named_expr] = STATE(4530), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(1177), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1177), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_when] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(1179), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(663), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(665), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(4474), + [sym_double_splat] = STATE(4474), + [sym_named_expr] = STATE(4474), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(1193), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1193), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1195), + [anon_sym_when] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(1195), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(673), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(675), }, [125] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4529), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4473), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(125), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4530), - [sym_double_splat] = STATE(4530), - [sym_named_expr] = STATE(4530), - [sym_argument_list_no_parens] = STATE(3266), - [sym_argument_list_no_parens_with_block] = STATE(4395), - [sym_argument_list_with_parens] = STATE(3272), - [sym_argument_list_with_parens_and_block] = STATE(4396), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4397), - [sym_brace_block] = STATE(4398), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(1185), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1185), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(1187), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(1187), - [anon_sym_when] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(1187), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(663), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(665), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(4474), + [sym_double_splat] = STATE(4474), + [sym_named_expr] = STATE(4474), + [sym_argument_list_no_parens] = STATE(3275), + [sym_argument_list_no_parens_with_block] = STATE(4550), + [sym_argument_list_with_parens] = STATE(3276), + [sym_argument_list_with_parens_and_block] = STATE(4574), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4584), + [sym_brace_block] = STATE(4592), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(1205), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1205), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(1207), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(1207), + [anon_sym_when] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(1207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(613), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(615), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(673), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(675), }, [126] = { - [sym__terminator] = STATE(201), - [sym__statements] = STATE(8718), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(3604), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(2995), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3606), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(126), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11543), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10018), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8829), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1447), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_splat] = STATE(3601), + [sym_double_splat] = STATE(3601), + [sym_named_expr] = STATE(3601), + [sym_argument_list_no_parens] = STATE(4073), + [sym_argument_list_no_parens_with_block] = STATE(4073), + [sym_argument_list_with_parens] = STATE(4073), + [sym_argument_list_with_parens_and_block] = STATE(4073), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_block_argument] = STATE(3961), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1277), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_end] = ACTIONS(1213), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1319), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_LPAREN2] = ACTIONS(1323), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1213), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(1211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(1343), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(1345), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(405), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__modifier_if_keyword] = ACTIONS(1211), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__modifier_unless_keyword] = ACTIONS(1211), + [sym__regular_rescue_keyword] = ACTIONS(1211), + [sym__modifier_rescue_keyword] = ACTIONS(1211), + [sym__regular_ensure_keyword] = ACTIONS(1211), + [sym__modifier_ensure_keyword] = ACTIONS(1211), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1369), }, [127] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4089), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__terminator] = STATE(157), + [sym__statements] = STATE(8845), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(127), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4095), - [sym_double_splat] = STATE(4095), - [sym_named_expr] = STATE(4095), - [sym_argument_list_no_parens] = STATE(3806), - [sym_argument_list_no_parens_with_block] = STATE(3806), - [sym_argument_list_with_parens] = STATE(3806), - [sym_argument_list_with_parens_and_block] = STATE(3806), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(1195), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1195), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_RBRACK] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_when] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(1197), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1195), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(601), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(603), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(605), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(627), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11725), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9828), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8848), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1465), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), }, [128] = { - [sym__terminator] = STATE(170), - [sym__statements] = STATE(8621), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__terminator] = STATE(184), + [sym__statements] = STATE(8574), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(128), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10763), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9933), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8622), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1449), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11417), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10208), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8580), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1467), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [129] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4561), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3357), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4326), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__statements] = STATE(8549), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(129), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_splat] = STATE(4554), - [sym_double_splat] = STATE(4554), - [sym_named_expr] = STATE(4554), - [sym_argument_list_no_parens] = STATE(4713), - [sym_argument_list_no_parens_with_block] = STATE(4713), - [sym_argument_list_with_parens] = STATE(4713), - [sym_argument_list_with_parens_and_block] = STATE(4713), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_block_argument] = STATE(4714), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1453), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_end] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(1495), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_break] = ACTIONS(1195), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(1517), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(1519), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(485), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__modifier_if_keyword] = ACTIONS(1195), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__modifier_unless_keyword] = ACTIONS(1195), - [sym__modifier_rescue_keyword] = ACTIONS(1195), - [sym__regular_ensure_keyword] = ACTIONS(1195), - [sym__modifier_ensure_keyword] = ACTIONS(1195), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1541), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10591), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9909), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8556), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1471), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), }, [130] = { - [sym__statements] = STATE(8635), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8594), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(130), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10796), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9948), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8636), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1545), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11483), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10231), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8595), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1475), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(1547), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1477), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [131] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5099), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__statements] = STATE(8915), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(131), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5102), - [sym_double_splat] = STATE(5102), - [sym_named_expr] = STATE(5102), - [sym_argument_list_no_parens] = STATE(4900), - [sym_argument_list_no_parens_with_block] = STATE(5224), - [sym_argument_list_with_parens] = STATE(4900), - [sym_argument_list_with_parens_and_block] = STATE(5224), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_do_end_block] = STATE(5225), - [sym_brace_block] = STATE(5226), - [sym_block_argument] = STATE(5223), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_COLON] = ACTIONS(1549), - [anon_sym_LPAREN2] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_then] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(733), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(743), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(745), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(747), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(769), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11849), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10365), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8916), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1479), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), }, [132] = { - [sym__statements] = STATE(8694), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8653), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(132), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11028), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10033), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8696), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1551), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10929), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10036), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8654), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1483), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [133] = { - [sym__statements] = STATE(8824), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8720), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(133), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11266), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10126), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8828), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1555), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11587), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10183), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8724), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1487), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [134] = { - [sym__statements] = STATE(8740), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8748), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(134), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11269), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10127), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8741), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1559), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11879), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9821), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8749), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1491), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [135] = { - [sym__statements] = STATE(8798), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8813), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(135), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11531), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10245), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8821), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1563), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11228), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9988), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8816), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1495), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [136] = { - [sym__statements] = STATE(8813), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8877), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(136), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11561), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10240), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8814), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1567), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11652), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10046), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8879), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1499), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [137] = { - [sym__statements] = STATE(8631), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5052), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(137), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10757), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10149), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8632), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1571), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5053), + [sym_double_splat] = STATE(5053), + [sym_named_expr] = STATE(5053), + [sym_argument_list_no_parens] = STATE(4931), + [sym_argument_list_no_parens_with_block] = STATE(6082), + [sym_argument_list_with_parens] = STATE(4931), + [sym_argument_list_with_parens_and_block] = STATE(6082), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_do_end_block] = STATE(6084), + [sym_brace_block] = STATE(6196), + [sym_block_argument] = STATE(5978), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(679), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(1503), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(735), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_then] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(747), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(757), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(759), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(761), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(783), }, [138] = { - [sym__statements] = STATE(8883), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8716), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(138), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11952), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10367), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8884), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1575), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11081), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10106), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8718), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1505), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [139] = { - [sym__statements] = STATE(8519), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8757), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(139), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11494), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9964), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8542), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1579), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10830), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10249), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8596), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1509), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(1581), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1511), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [140] = { - [sym__statements] = STATE(8629), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8617), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(140), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11470), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9689), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8634), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1583), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11736), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9830), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8630), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1513), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(1585), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [141] = { - [sym__statements] = STATE(8815), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8719), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(141), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10922), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9759), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8494), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1587), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11897), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9860), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8728), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1517), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1519), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [142] = { - [sym__statements] = STATE(8509), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5088), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(142), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11415), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9917), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8511), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1591), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(1593), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5090), + [sym_double_splat] = STATE(5090), + [sym_named_expr] = STATE(5090), + [sym_argument_list_no_parens] = STATE(4981), + [sym_argument_list_no_parens_with_block] = STATE(5373), + [sym_argument_list_with_parens] = STATE(4981), + [sym_argument_list_with_parens_and_block] = STATE(5373), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_do_end_block] = STATE(5374), + [sym_brace_block] = STATE(5375), + [sym_block_argument] = STATE(5372), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(679), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(1521), + [anon_sym_LPAREN2] = ACTIONS(789), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_then] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(795), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(757), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(759), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(797), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(799), }, [143] = { - [sym__statements] = STATE(8739), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8861), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(143), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10642), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10156), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8742), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1595), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11562), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10264), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8862), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1523), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1525), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [144] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4561), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3357), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4326), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__statements] = STATE(8827), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(144), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_splat] = STATE(4554), - [sym_double_splat] = STATE(4554), - [sym_named_expr] = STATE(4554), - [sym_argument_list_no_parens] = STATE(4861), - [sym_argument_list_no_parens_with_block] = STATE(4861), - [sym_argument_list_with_parens] = STATE(4861), - [sym_argument_list_with_parens_and_block] = STATE(4861), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_block_argument] = STATE(4714), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(1453), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_end] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(1495), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_break] = ACTIONS(1199), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(1517), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(1519), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(485), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__modifier_if_keyword] = ACTIONS(1199), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__modifier_unless_keyword] = ACTIONS(1199), - [sym__modifier_rescue_keyword] = ACTIONS(1199), - [sym__regular_ensure_keyword] = ACTIONS(1199), - [sym__modifier_ensure_keyword] = ACTIONS(1199), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1541), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10967), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10059), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8838), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1527), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), }, [145] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5020), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__statements] = STATE(8884), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(145), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5117), - [sym_double_splat] = STATE(5117), - [sym_named_expr] = STATE(5117), - [sym_argument_list_no_parens] = STATE(4984), - [sym_argument_list_no_parens_with_block] = STATE(5921), - [sym_argument_list_with_parens] = STATE(4984), - [sym_argument_list_with_parens_and_block] = STATE(5921), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_do_end_block] = STATE(5947), - [sym_brace_block] = STATE(6040), - [sym_block_argument] = STATE(5842), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_COLON] = ACTIONS(1599), - [anon_sym_LPAREN2] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(781), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_then] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(783), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(743), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(745), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(785), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(787), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11788), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9842), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8885), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1531), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), }, [146] = { - [sym__statements] = STATE(8497), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8758), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(146), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11578), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9765), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8498), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1601), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10640), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10041), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8873), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1535), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_PIPE] = ACTIONS(1537), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [147] = { - [sym__statements] = STATE(8885), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4582), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3415), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(147), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11639), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9780), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8886), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1605), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(1607), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_splat] = STATE(4575), + [sym_double_splat] = STATE(4575), + [sym_named_expr] = STATE(4575), + [sym_argument_list_no_parens] = STATE(4873), + [sym_argument_list_no_parens_with_block] = STATE(4873), + [sym_argument_list_with_parens] = STATE(4873), + [sym_argument_list_with_parens_and_block] = STATE(4873), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_block_argument] = STATE(4874), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(1539), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1541), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_COMMA] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_end] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(1577), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(1583), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_break] = ACTIONS(1215), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(1607), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(1609), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(493), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__modifier_if_keyword] = ACTIONS(1215), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__modifier_unless_keyword] = ACTIONS(1215), + [sym__modifier_rescue_keyword] = ACTIONS(1215), + [sym__regular_ensure_keyword] = ACTIONS(1215), + [sym__modifier_ensure_keyword] = ACTIONS(1215), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1631), }, [148] = { - [sym__statements] = STATE(8576), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4582), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3415), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(148), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10544), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9844), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8577), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1609), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(1611), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_splat] = STATE(4575), + [sym_double_splat] = STATE(4575), + [sym_named_expr] = STATE(4575), + [sym_argument_list_no_parens] = STATE(4714), + [sym_argument_list_no_parens_with_block] = STATE(4714), + [sym_argument_list_with_parens] = STATE(4714), + [sym_argument_list_with_parens_and_block] = STATE(4714), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_block_argument] = STATE(4874), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(1539), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1541), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_end] = ACTIONS(1213), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(1577), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(1583), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_break] = ACTIONS(1211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(1607), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(1609), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(493), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__modifier_if_keyword] = ACTIONS(1211), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__modifier_unless_keyword] = ACTIONS(1211), + [sym__modifier_rescue_keyword] = ACTIONS(1211), + [sym__regular_ensure_keyword] = ACTIONS(1211), + [sym__modifier_ensure_keyword] = ACTIONS(1211), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1631), }, [149] = { - [sym__statements] = STATE(8784), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8887), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(149), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11202), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9670), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8785), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1613), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11668), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10302), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8888), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1633), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [150] = { - [sym__statements] = STATE(8535), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4642), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(150), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11903), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9809), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8541), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1615), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4820), + [sym_double_splat] = STATE(4820), + [sym_named_expr] = STATE(4820), + [sym_argument_list_no_parens] = STATE(4499), + [sym_argument_list_no_parens_with_block] = STATE(4499), + [sym_argument_list_with_parens] = STATE(4499), + [sym_argument_list_with_parens_and_block] = STATE(4499), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1637), + [anon_sym_RPAREN] = ACTIONS(1215), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1215), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(1215), + [anon_sym_RBRACK] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_end] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_when] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [anon_sym_in] = ACTIONS(1217), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(1703), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(1705), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(617), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1727), }, [151] = { - [sym__statements] = STATE(8613), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5194), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(151), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11922), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9814), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8619), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1617), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5195), + [sym_double_splat] = STATE(5195), + [sym_named_expr] = STATE(5195), + [sym_argument_list_no_parens] = STATE(5133), + [sym_argument_list_no_parens_with_block] = STATE(5757), + [sym_argument_list_with_parens] = STATE(5133), + [sym_argument_list_with_parens_and_block] = STATE(5757), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_do_end_block] = STATE(5759), + [sym_brace_block] = STATE(5760), + [sym_block_argument] = STATE(5489), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_RBRACK] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1729), + [anon_sym_LPAREN2] = ACTIONS(963), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_RBRACK_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(969), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(931), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(933), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(971), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(973), }, [152] = { - [sym__statements] = STATE(8826), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5205), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(152), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10880), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9981), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8831), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1619), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5206), + [sym_double_splat] = STATE(5206), + [sym_named_expr] = STATE(5206), + [sym_argument_list_no_parens] = STATE(3294), + [sym_argument_list_no_parens_with_block] = STATE(3682), + [sym_argument_list_with_parens] = STATE(3294), + [sym_argument_list_with_parens_and_block] = STATE(3682), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(3683), + [sym_brace_block] = STATE(3684), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1193), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(1731), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(661), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(829), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(831), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(833), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(837), }, [153] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5123), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4642), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(153), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5127), - [sym_double_splat] = STATE(5127), - [sym_named_expr] = STATE(5127), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1177), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_EQ_GT] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_COLON] = ACTIONS(1621), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(923), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(925), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(941), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(943), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4820), + [sym_double_splat] = STATE(4820), + [sym_named_expr] = STATE(4820), + [sym_argument_list_no_parens] = STATE(4381), + [sym_argument_list_no_parens_with_block] = STATE(4381), + [sym_argument_list_with_parens] = STATE(4381), + [sym_argument_list_with_parens_and_block] = STATE(4381), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1637), + [anon_sym_RPAREN] = ACTIONS(1211), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1211), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_RBRACK] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_end] = ACTIONS(1213), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(1213), + [anon_sym_when] = ACTIONS(1213), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [anon_sym_in] = ACTIONS(1213), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(1703), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(1705), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(617), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1727), }, [154] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4710), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__statements] = STATE(8856), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(154), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4685), - [sym_double_splat] = STATE(4685), - [sym_named_expr] = STATE(4685), - [sym_argument_list_no_parens] = STATE(4389), - [sym_argument_list_no_parens_with_block] = STATE(4389), - [sym_argument_list_with_parens] = STATE(4389), - [sym_argument_list_with_parens_and_block] = STATE(4389), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1625), - [anon_sym_RPAREN] = ACTIONS(1195), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1195), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_RBRACK] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_end] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_when] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1679), - [anon_sym_in] = ACTIONS(1197), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(1689), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(1691), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(643), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1713), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11737), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9829), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8858), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1733), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), }, [155] = { - [sym__statements] = STATE(8849), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8895), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(155), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11338), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10153), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8852), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1715), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11809), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9848), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8897), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1735), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [156] = { - [sym__statements] = STATE(8525), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8899), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(156), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11613), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10260), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8532), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1717), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11831), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9852), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8900), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1737), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [157] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4321), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3357), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4326), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__statements] = STATE(8920), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(157), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_splat] = STATE(4310), - [sym_double_splat] = STATE(4310), - [sym_named_expr] = STATE(4310), - [sym_argument_list_no_parens] = STATE(4713), - [sym_argument_list_no_parens_with_block] = STATE(4713), - [sym_argument_list_with_parens] = STATE(4713), - [sym_argument_list_with_parens_and_block] = STATE(4713), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_block_argument] = STATE(4714), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(1453), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_end] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(1495), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_break] = ACTIONS(1195), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(1517), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(1519), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(653), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__modifier_if_keyword] = ACTIONS(1195), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__modifier_unless_keyword] = ACTIONS(1195), - [sym__modifier_rescue_keyword] = ACTIONS(1195), - [sym__regular_ensure_keyword] = ACTIONS(1195), - [sym__modifier_ensure_keyword] = ACTIONS(1195), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1719), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11892), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9858), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8923), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1739), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), }, [158] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5183), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__statements] = STATE(8707), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(158), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5184), - [sym_double_splat] = STATE(5184), - [sym_named_expr] = STATE(5184), - [sym_argument_list_no_parens] = STATE(3276), - [sym_argument_list_no_parens_with_block] = STATE(3811), - [sym_argument_list_with_parens] = STATE(3276), - [sym_argument_list_with_parens_and_block] = STATE(3811), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(3814), - [sym_brace_block] = STATE(3829), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1177), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_EQ_GT] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_COLON] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(591), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(923), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(925), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(927), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(931), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10852), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10386), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8606), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1741), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), }, [159] = { - [sym__statements] = STATE(8637), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8560), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(159), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10935), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10316), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8642), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1723), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10666), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9920), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8561), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1743), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [160] = { - [sym__statements] = STATE(8674), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8699), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(160), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11121), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9803), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8676), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1725), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11040), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10086), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8700), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1745), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [161] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5309), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__statements] = STATE(8725), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(161), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5380), - [sym_double_splat] = STATE(5380), - [sym_named_expr] = STATE(5380), - [sym_argument_list_no_parens] = STATE(5096), - [sym_argument_list_no_parens_with_block] = STATE(6625), - [sym_argument_list_with_parens] = STATE(5096), - [sym_argument_list_with_parens_and_block] = STATE(6625), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_do_end_block] = STATE(6626), - [sym_brace_block] = STATE(6627), - [sym_block_argument] = STATE(6462), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(791), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_RBRACK] = ACTIONS(1179), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_COLON] = ACTIONS(1727), - [anon_sym_LPAREN2] = ACTIONS(841), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_RBRACK_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(857), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(867), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(869), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(871), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(893), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11096), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10109), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8726), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1747), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), }, [162] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4321), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3357), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4326), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__statements] = STATE(8731), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(162), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_splat] = STATE(4310), - [sym_double_splat] = STATE(4310), - [sym_named_expr] = STATE(4310), - [sym_argument_list_no_parens] = STATE(4861), - [sym_argument_list_no_parens_with_block] = STATE(4861), - [sym_argument_list_with_parens] = STATE(4861), - [sym_argument_list_with_parens_and_block] = STATE(4861), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_block_argument] = STATE(4714), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(1451), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(1453), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_end] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(1495), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_LPAREN2] = ACTIONS(1499), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_break] = ACTIONS(1199), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(1517), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(1519), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(653), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__modifier_if_keyword] = ACTIONS(1199), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__modifier_unless_keyword] = ACTIONS(1199), - [sym__modifier_rescue_keyword] = ACTIONS(1199), - [sym__regular_ensure_keyword] = ACTIONS(1199), - [sym__modifier_ensure_keyword] = ACTIONS(1199), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1719), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11115), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10116), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8733), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1749), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), }, [163] = { - [sym__statements] = STATE(8748), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8738), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(163), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10694), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10166), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8749), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1729), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11130), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10120), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8739), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1751), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [164] = { - [sym__statements] = STATE(8809), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8797), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(164), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10616), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10171), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8762), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1731), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11335), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10179), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8799), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1753), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [165] = { - [sym__statements] = STATE(8500), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8867), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(165), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11598), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9770), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8502), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1733), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11577), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10270), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8868), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1755), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [166] = { - [sym__statements] = STATE(8527), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8918), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(166), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11821), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9802), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8528), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1735), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11878), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10373), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8919), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1757), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [167] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4710), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__statements] = STATE(8737), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(167), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4685), - [sym_double_splat] = STATE(4685), - [sym_named_expr] = STATE(4685), - [sym_argument_list_no_parens] = STATE(4494), - [sym_argument_list_no_parens_with_block] = STATE(4494), - [sym_argument_list_with_parens] = STATE(4494), - [sym_argument_list_with_parens_and_block] = STATE(4494), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1625), - [anon_sym_RPAREN] = ACTIONS(1199), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1199), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_end] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(1201), - [anon_sym_when] = ACTIONS(1201), - [anon_sym_case] = ACTIONS(1679), - [anon_sym_in] = ACTIONS(1201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(1689), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(1691), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(643), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1713), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10884), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9800), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8880), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1759), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), }, [168] = { - [sym__statements] = STATE(8579), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8706), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(168), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10555), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9847), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8580), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1737), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10766), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9970), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8744), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1761), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [169] = { - [sym__statements] = STATE(8599), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8671), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(169), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10646), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9880), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8600), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1739), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11638), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10042), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8675), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1763), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [170] = { - [sym__statements] = STATE(8638), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8872), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(170), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10813), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9957), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8641), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1741), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11750), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9832), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8876), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1765), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [171] = { - [sym__statements] = STATE(8660), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8584), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(171), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10911), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9988), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8662), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1743), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10759), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10002), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8644), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1767), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [172] = { - [sym__statements] = STATE(8627), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8641), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(172), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11601), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10262), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8715), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1745), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11393), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10197), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8646), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1769), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [173] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5175), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5088), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(173), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5176), - [sym_double_splat] = STATE(5176), - [sym_named_expr] = STATE(5176), - [sym_argument_list_no_parens] = STATE(5080), - [sym_argument_list_no_parens_with_block] = STATE(5532), - [sym_argument_list_with_parens] = STATE(5080), - [sym_argument_list_with_parens_and_block] = STATE(5532), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_do_end_block] = STATE(5533), - [sym_brace_block] = STATE(5534), - [sym_block_argument] = STATE(5573), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(791), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_RBRACK] = ACTIONS(1179), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_COLON] = ACTIONS(1747), - [anon_sym_LPAREN2] = ACTIONS(949), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_RBRACK_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(955), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(867), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(869), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(957), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(959), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5090), + [sym_double_splat] = STATE(5090), + [sym_named_expr] = STATE(5090), + [sym_argument_list_no_parens] = STATE(4986), + [sym_argument_list_no_parens_with_block] = STATE(5379), + [sym_argument_list_with_parens] = STATE(4987), + [sym_argument_list_with_parens_and_block] = STATE(5380), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_do_end_block] = STATE(5381), + [sym_brace_block] = STATE(5384), + [sym_block_argument] = STATE(5372), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_LPAREN] = ACTIONS(679), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_LPAREN2] = ACTIONS(789), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_then] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(1205), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(795), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(757), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(759), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(797), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(799), }, [174] = { - [sym__statements] = STATE(8698), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5088), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(174), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11041), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10036), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8700), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1749), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5090), + [sym_double_splat] = STATE(5090), + [sym_named_expr] = STATE(5090), + [sym_argument_list_no_parens] = STATE(4957), + [sym_argument_list_no_parens_with_block] = STATE(5307), + [sym_argument_list_with_parens] = STATE(4957), + [sym_argument_list_with_parens_and_block] = STATE(5307), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_do_end_block] = STATE(5308), + [sym_brace_block] = STATE(5308), + [sym_block_argument] = STATE(5372), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(679), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_LPAREN2] = ACTIONS(789), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_then] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(1201), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(795), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(757), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(759), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(797), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(799), }, [175] = { - [sym__statements] = STATE(8711), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8729), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(175), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11148), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10074), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8712), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1751), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10905), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9740), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8741), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1773), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [176] = { - [sym__statements] = STATE(8745), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8828), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(176), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11286), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10133), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8746), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1753), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11045), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9986), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8833), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1775), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [177] = { - [sym__statements] = STATE(8764), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8769), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(177), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11437), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10193), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8765), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1755), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10879), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10335), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8926), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1777), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [178] = { - [sym__statements] = STATE(8816), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8616), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(178), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11572), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10242), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8817), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1757), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11513), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9786), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8619), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1779), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [179] = { - [sym__statements] = STATE(8835), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8579), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(179), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11693), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10281), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8837), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1759), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10726), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9941), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8582), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1781), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [180] = { - [sym__statements] = STATE(8887), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8734), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(180), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11966), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10315), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8888), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1761), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11957), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9866), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8735), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1783), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [181] = { - [sym__statements] = STATE(8582), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8771), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(181), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11487), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10012), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8592), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1763), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10793), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9973), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8779), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1785), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [182] = { - [sym__statements] = STATE(8769), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8869), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(182), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11268), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9673), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8770), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1765), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10989), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10068), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8870), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1787), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [183] = { - [sym__statements] = STATE(8537), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8931), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(183), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11793), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10309), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8591), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1767), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11165), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10129), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8537), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1789), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [184] = { - [sym__statements] = STATE(8657), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8599), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(184), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11519), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9693), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8671), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1769), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11502), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10238), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8600), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1791), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [185] = { - [sym__statements] = STATE(8750), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8621), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(185), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10706), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9738), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8755), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1771), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11710), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10317), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8622), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1793), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [186] = { - [sym__statements] = STATE(8555), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4542), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3415), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(186), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11631), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10019), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8557), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1773), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_splat] = STATE(4572), + [sym_double_splat] = STATE(4572), + [sym_named_expr] = STATE(4572), + [sym_argument_list_no_parens] = STATE(4873), + [sym_argument_list_no_parens_with_block] = STATE(4873), + [sym_argument_list_with_parens] = STATE(4873), + [sym_argument_list_with_parens_and_block] = STATE(4873), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_block_argument] = STATE(4874), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(1539), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(1541), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_end] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(1577), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(1583), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_break] = ACTIONS(1215), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(1607), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(1609), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(647), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__modifier_if_keyword] = ACTIONS(1215), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__modifier_unless_keyword] = ACTIONS(1215), + [sym__modifier_rescue_keyword] = ACTIONS(1215), + [sym__regular_ensure_keyword] = ACTIONS(1215), + [sym__modifier_ensure_keyword] = ACTIONS(1215), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1795), }, [187] = { - [sym__statements] = STATE(8851), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8658), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(187), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11283), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9866), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8853), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1775), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11756), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9770), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8659), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1797), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [188] = { - [sym__statements] = STATE(8560), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8685), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(188), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11914), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10078), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8565), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1777), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10699), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10411), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8686), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1799), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [189] = { - [sym__statements] = STATE(8562), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8753), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(189), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11545), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9995), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8563), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1779), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(12027), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9824), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8754), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1801), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [190] = { - [sym__statements] = STATE(8583), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8788), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(190), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10682), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10165), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8585), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1781), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10927), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9929), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8790), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1803), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [191] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5020), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__statements] = STATE(8851), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(191), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5117), - [sym_double_splat] = STATE(5117), - [sym_named_expr] = STATE(5117), - [sym_argument_list_no_parens] = STATE(4889), - [sym_argument_list_no_parens_with_block] = STATE(6094), - [sym_argument_list_with_parens] = STATE(4889), - [sym_argument_list_with_parens_and_block] = STATE(6094), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_do_end_block] = STATE(6100), - [sym_brace_block] = STATE(6100), - [sym_block_argument] = STATE(5842), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_LPAREN2] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(781), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_then] = ACTIONS(1191), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(1189), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(783), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(743), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(745), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(785), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(787), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11468), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10017), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8859), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1805), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), }, [192] = { - [sym__statements] = STATE(8793), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8889), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(192), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11183), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10088), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8794), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1783), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(11872), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10104), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8536), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1807), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [193] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5099), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5276), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(193), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5102), - [sym_double_splat] = STATE(5102), - [sym_named_expr] = STATE(5102), - [sym_argument_list_no_parens] = STATE(4902), - [sym_argument_list_no_parens_with_block] = STATE(5228), - [sym_argument_list_with_parens] = STATE(4903), - [sym_argument_list_with_parens_and_block] = STATE(5229), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_do_end_block] = STATE(5230), - [sym_brace_block] = STATE(5231), - [sym_block_argument] = STATE(5223), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_LPAREN2] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_then] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(1185), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(733), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(743), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(745), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(747), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(769), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5306), + [sym_double_splat] = STATE(5306), + [sym_named_expr] = STATE(5306), + [sym_argument_list_no_parens] = STATE(5120), + [sym_argument_list_no_parens_with_block] = STATE(6359), + [sym_argument_list_with_parens] = STATE(5120), + [sym_argument_list_with_parens_and_block] = STATE(6359), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_do_end_block] = STATE(6360), + [sym_brace_block] = STATE(6421), + [sym_block_argument] = STATE(6308), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_RBRACK] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_COLON] = ACTIONS(1809), + [anon_sym_LPAREN2] = ACTIONS(903), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_RBRACK_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(909), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(921), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(931), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(933), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(935), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(957), }, [194] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5099), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5052), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(194), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5102), - [sym_double_splat] = STATE(5102), - [sym_named_expr] = STATE(5102), - [sym_argument_list_no_parens] = STATE(4942), - [sym_argument_list_no_parens_with_block] = STATE(5125), - [sym_argument_list_with_parens] = STATE(4942), - [sym_argument_list_with_parens_and_block] = STATE(5125), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_do_end_block] = STATE(5130), - [sym_brace_block] = STATE(5130), - [sym_block_argument] = STATE(5223), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_LPAREN2] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1785), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_then] = ACTIONS(1191), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(1189), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(733), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(743), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(745), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(747), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(769), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5053), + [sym_double_splat] = STATE(5053), + [sym_named_expr] = STATE(5053), + [sym_argument_list_no_parens] = STATE(5007), + [sym_argument_list_no_parens_with_block] = STATE(6228), + [sym_argument_list_with_parens] = STATE(5007), + [sym_argument_list_with_parens_and_block] = STATE(6228), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_do_end_block] = STATE(5866), + [sym_brace_block] = STATE(5866), + [sym_block_argument] = STATE(5978), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(679), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(735), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_then] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(1201), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(747), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(757), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(759), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(761), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(783), }, [195] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5099), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4542), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3415), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(195), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5102), - [sym_double_splat] = STATE(5102), - [sym_named_expr] = STATE(5102), - [sym_argument_list_no_parens] = STATE(4900), - [sym_argument_list_no_parens_with_block] = STATE(5224), - [sym_argument_list_with_parens] = STATE(4900), - [sym_argument_list_with_parens_and_block] = STATE(5224), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_do_end_block] = STATE(5225), - [sym_brace_block] = STATE(5226), - [sym_block_argument] = STATE(5223), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_LPAREN2] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_then] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(733), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(743), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(745), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(747), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(769), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_splat] = STATE(4572), + [sym_double_splat] = STATE(4572), + [sym_named_expr] = STATE(4572), + [sym_argument_list_no_parens] = STATE(4714), + [sym_argument_list_no_parens_with_block] = STATE(4714), + [sym_argument_list_with_parens] = STATE(4714), + [sym_argument_list_with_parens_and_block] = STATE(4714), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_block_argument] = STATE(4874), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(1539), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(1541), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_end] = ACTIONS(1213), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(1577), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(1583), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_LPAREN2] = ACTIONS(1587), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_break] = ACTIONS(1211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(1607), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(1609), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(647), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__modifier_if_keyword] = ACTIONS(1211), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__modifier_unless_keyword] = ACTIONS(1211), + [sym__modifier_rescue_keyword] = ACTIONS(1211), + [sym__regular_ensure_keyword] = ACTIONS(1211), + [sym__modifier_ensure_keyword] = ACTIONS(1211), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1795), }, [196] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5020), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__statements] = STATE(8662), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(196), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5117), - [sym_double_splat] = STATE(5117), - [sym_named_expr] = STATE(5117), - [sym_argument_list_no_parens] = STATE(4984), - [sym_argument_list_no_parens_with_block] = STATE(5921), - [sym_argument_list_with_parens] = STATE(4984), - [sym_argument_list_with_parens_and_block] = STATE(5921), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_do_end_block] = STATE(5947), - [sym_brace_block] = STATE(6040), - [sym_block_argument] = STATE(5842), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_LPAREN2] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(781), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_then] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(783), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(743), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(745), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(785), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(787), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(12012), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(10210), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8545), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1811), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), }, [197] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5020), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5052), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(197), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5117), - [sym_double_splat] = STATE(5117), - [sym_named_expr] = STATE(5117), - [sym_argument_list_no_parens] = STATE(4894), - [sym_argument_list_no_parens_with_block] = STATE(5849), - [sym_argument_list_with_parens] = STATE(4948), - [sym_argument_list_with_parens_and_block] = STATE(5903), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_do_end_block] = STATE(6117), - [sym_brace_block] = STATE(5983), - [sym_block_argument] = STATE(5842), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_LPAREN2] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(781), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_then] = ACTIONS(1187), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(1185), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(783), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(743), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(745), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(785), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(787), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5053), + [sym_double_splat] = STATE(5053), + [sym_named_expr] = STATE(5053), + [sym_argument_list_no_parens] = STATE(4931), + [sym_argument_list_no_parens_with_block] = STATE(6082), + [sym_argument_list_with_parens] = STATE(4931), + [sym_argument_list_with_parens_and_block] = STATE(6082), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_do_end_block] = STATE(6084), + [sym_brace_block] = STATE(6196), + [sym_block_argument] = STATE(5978), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(679), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(735), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_then] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(747), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(757), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(759), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(761), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(783), }, [198] = { - [sym__statements] = STATE(8844), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5052), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(198), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11409), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9717), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8845), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1787), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5053), + [sym_double_splat] = STATE(5053), + [sym_named_expr] = STATE(5053), + [sym_argument_list_no_parens] = STATE(4988), + [sym_argument_list_no_parens_with_block] = STATE(6095), + [sym_argument_list_with_parens] = STATE(4994), + [sym_argument_list_with_parens_and_block] = STATE(6118), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_do_end_block] = STATE(6144), + [sym_brace_block] = STATE(5788), + [sym_block_argument] = STATE(5978), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_LPAREN] = ACTIONS(679), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(735), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_then] = ACTIONS(1207), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(1205), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(747), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(757), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(759), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(761), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(783), }, [199] = { - [sym__statements] = STATE(8818), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5088), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(199), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11068), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(10145), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8805), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1789), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5090), + [sym_double_splat] = STATE(5090), + [sym_named_expr] = STATE(5090), + [sym_argument_list_no_parens] = STATE(4981), + [sym_argument_list_no_parens_with_block] = STATE(5373), + [sym_argument_list_with_parens] = STATE(4981), + [sym_argument_list_with_parens_and_block] = STATE(5373), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_do_end_block] = STATE(5374), + [sym_brace_block] = STATE(5375), + [sym_block_argument] = STATE(5372), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(679), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_LPAREN2] = ACTIONS(789), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_then] = ACTIONS(1195), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(795), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(757), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(759), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(797), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(799), }, [200] = { - [sym__statements] = STATE(8834), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5329), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(200), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(11814), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9801), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8571), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1791), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5331), + [sym_double_splat] = STATE(5331), + [sym_named_expr] = STATE(5331), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1193), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(1813), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(829), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(831), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(847), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(849), }, [201] = { - [sym__statements] = STATE(8747), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(8585), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(201), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_rescue_block] = STATE(9339), - [sym_ensure] = STATE(10628), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_else] = STATE(9715), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_method_def_repeat1] = STATE(8669), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1793), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_rescue_block] = STATE(9431), + [sym_ensure] = STATE(10795), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_else] = STATE(9984), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_method_def_repeat1] = STATE(8586), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1815), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1419), - [sym__regular_ensure_keyword] = ACTIONS(1421), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1425), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1439), + [sym__regular_ensure_keyword] = ACTIONS(1441), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [202] = { - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(8954), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5276), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(202), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(202), - [aux_sym_multi_assign_repeat1] = STATE(981), - [ts_builtin_sym_end] = ACTIONS(1795), - [sym_identifier] = ACTIONS(1797), - [anon_sym_SEMI] = ACTIONS(1800), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_RPAREN] = ACTIONS(1795), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1806), - [sym_true] = ACTIONS(1806), - [sym_false] = ACTIONS(1806), - [aux_sym_integer_token2] = ACTIONS(1809), - [aux_sym_float_token2] = ACTIONS(1812), - [anon_sym_SQUOTE] = ACTIONS(1815), - [anon_sym_RBRACE] = ACTIONS(1795), - [sym_operator_symbol] = ACTIONS(1818), - [sym_unquoted_symbol] = ACTIONS(1818), - [anon_sym_COLON_DQUOTE] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_DASH_GT] = ACTIONS(1830), - [anon_sym_annotation] = ACTIONS(1833), - [anon_sym_end] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1838), - [anon_sym_private] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1844), - [anon_sym_abstract] = ACTIONS(1847), - [anon_sym_class] = ACTIONS(1850), - [anon_sym_struct] = ACTIONS(1853), - [anon_sym_enum] = ACTIONS(1856), - [anon_sym_STAR] = ACTIONS(1859), - [anon_sym_BANG] = ACTIONS(1862), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_def] = ACTIONS(1868), - [anon_sym_protected] = ACTIONS(1871), - [anon_sym_include] = ACTIONS(1874), - [anon_sym_extend] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_next] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1886), - [anon_sym_with] = ACTIONS(1889), - [anon_sym_yield] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(1895), - [anon_sym_sizeof] = ACTIONS(1898), - [anon_sym_instance_sizeof] = ACTIONS(1901), - [anon_sym_offsetof] = ACTIONS(1904), - [sym__constant_segment] = ACTIONS(1907), - [anon_sym_COLON_COLON] = ACTIONS(1910), - [anon_sym___LINE__] = ACTIONS(1913), - [anon_sym___END_LINE__] = ACTIONS(1913), - [anon_sym___FILE__] = ACTIONS(1913), - [anon_sym___DIR__] = ACTIONS(1913), - [sym_special_variable] = ACTIONS(1818), - [sym_identifier_method_call] = ACTIONS(1916), - [sym_instance_var] = ACTIONS(1919), - [sym_class_var] = ACTIONS(1919), - [sym_self] = ACTIONS(1806), - [anon_sym_alias] = ACTIONS(1922), - [anon_sym_begin] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_until] = ACTIONS(1931), - [anon_sym_elsif] = ACTIONS(1836), - [anon_sym_else] = ACTIONS(1836), - [anon_sym_require] = ACTIONS(1934), - [anon_sym_when] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1937), - [anon_sym_in] = ACTIONS(1836), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1940), - [sym__start_of_named_tuple] = ACTIONS(1943), - [sym_unary_plus] = ACTIONS(1946), - [sym_unary_minus] = ACTIONS(1946), - [sym_unary_wrapping_plus] = ACTIONS(1949), - [sym_unary_wrapping_minus] = ACTIONS(1949), - [sym__beginless_range_operator] = ACTIONS(1952), - [sym__regex_start] = ACTIONS(1955), - [sym__regular_if_keyword] = ACTIONS(1958), - [sym__regular_unless_keyword] = ACTIONS(1961), - [sym__string_literal_start] = ACTIONS(1964), - [sym__string_percent_literal_start] = ACTIONS(1967), - [sym__command_percent_literal_start] = ACTIONS(1970), - [sym__string_array_percent_literal_start] = ACTIONS(1973), - [sym__symbol_array_percent_literal_start] = ACTIONS(1976), - [sym__regex_percent_literal_start] = ACTIONS(1979), - [sym_heredoc_start] = ACTIONS(1818), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5306), + [sym_double_splat] = STATE(5306), + [sym_named_expr] = STATE(5306), + [sym_argument_list_no_parens] = STATE(5096), + [sym_argument_list_no_parens_with_block] = STATE(6480), + [sym_argument_list_with_parens] = STATE(5070), + [sym_argument_list_with_parens_and_block] = STATE(6483), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_do_end_block] = STATE(6485), + [sym_brace_block] = STATE(6488), + [sym_block_argument] = STATE(6308), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(1207), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_LPAREN2] = ACTIONS(903), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_RBRACK_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(909), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(921), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(931), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(933), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(935), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(957), }, [203] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5463), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5709), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(203), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5586), - [sym_double_splat] = STATE(5586), - [sym_named_expr] = STATE(5586), - [sym_argument_list_no_parens] = STATE(5393), - [sym_argument_list_no_parens_with_block] = STATE(5911), - [sym_argument_list_with_parens] = STATE(5393), - [sym_argument_list_with_parens_and_block] = STATE(5911), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_do_end_block] = STATE(5912), - [sym_brace_block] = STATE(5913), - [sym_block_argument] = STATE(5898), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_COLON] = ACTIONS(1982), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym__end_of_with_expression] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(1039), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(1041), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(1079), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1081), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5710), + [sym_double_splat] = STATE(5710), + [sym_named_expr] = STATE(5710), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(1817), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_COLON2] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(1125), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(1127), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(1129), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1133), }, [204] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5183), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5329), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(204), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5184), - [sym_double_splat] = STATE(5184), - [sym_named_expr] = STATE(5184), - [sym_argument_list_no_parens] = STATE(3276), - [sym_argument_list_no_parens_with_block] = STATE(3811), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5331), + [sym_double_splat] = STATE(5331), + [sym_named_expr] = STATE(5331), + [sym_argument_list_no_parens] = STATE(3275), + [sym_argument_list_no_parens_with_block] = STATE(4550), [sym_argument_list_with_parens] = STATE(3276), - [sym_argument_list_with_parens_and_block] = STATE(3811), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(3814), - [sym_brace_block] = STATE(3829), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1177), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_EQ_GT] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(591), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(923), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(925), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(927), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(931), + [sym_argument_list_with_parens_and_block] = STATE(4574), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4584), + [sym_brace_block] = STATE(4592), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1205), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_EQ_GT] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(829), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(831), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(847), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(849), }, [205] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5309), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5749), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(205), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5380), - [sym_double_splat] = STATE(5380), - [sym_named_expr] = STATE(5380), - [sym_argument_list_no_parens] = STATE(5052), - [sym_argument_list_no_parens_with_block] = STATE(6477), - [sym_argument_list_with_parens] = STATE(5052), - [sym_argument_list_with_parens_and_block] = STATE(6477), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_do_end_block] = STATE(6478), - [sym_brace_block] = STATE(6478), - [sym_block_argument] = STATE(6462), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(791), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_RBRACK] = ACTIONS(1191), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(841), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_RBRACK_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(857), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(867), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(869), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(871), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(893), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5703), + [sym_double_splat] = STATE(5703), + [sym_named_expr] = STATE(5703), + [sym_argument_list_no_parens] = STATE(5164), + [sym_argument_list_no_parens_with_block] = STATE(6159), + [sym_argument_list_with_parens] = STATE(5164), + [sym_argument_list_with_parens_and_block] = STATE(6159), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_do_end_block] = STATE(6190), + [sym_brace_block] = STATE(6210), + [sym_block_argument] = STATE(6037), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_COLON] = ACTIONS(1819), + [anon_sym_LPAREN2] = ACTIONS(1087), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1093), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym__end_of_with_expression] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(1055), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(1057), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(1095), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1097), }, [206] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5736), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5276), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(206), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5737), - [sym_double_splat] = STATE(5737), - [sym_named_expr] = STATE(5737), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_COLON] = ACTIONS(1984), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_COLON2] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(1109), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(1111), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(1113), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1117), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5306), + [sym_double_splat] = STATE(5306), + [sym_named_expr] = STATE(5306), + [sym_argument_list_no_parens] = STATE(5120), + [sym_argument_list_no_parens_with_block] = STATE(6359), + [sym_argument_list_with_parens] = STATE(5120), + [sym_argument_list_with_parens_and_block] = STATE(6359), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_do_end_block] = STATE(6360), + [sym_brace_block] = STATE(6421), + [sym_block_argument] = STATE(6308), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_RBRACK] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_LPAREN2] = ACTIONS(903), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_RBRACK_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(909), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(921), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(931), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(933), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(935), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(957), }, [207] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5123), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5205), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(207), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5127), - [sym_double_splat] = STATE(5127), - [sym_named_expr] = STATE(5127), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1177), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_EQ_GT] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(923), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(925), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(941), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(943), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5206), + [sym_double_splat] = STATE(5206), + [sym_named_expr] = STATE(5206), + [sym_argument_list_no_parens] = STATE(3243), + [sym_argument_list_no_parens_with_block] = STATE(3629), + [sym_argument_list_with_parens] = STATE(3243), + [sym_argument_list_with_parens_and_block] = STATE(3629), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(3630), + [sym_brace_block] = STATE(3630), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1201), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_EQ_GT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1273), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(661), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(829), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(831), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(833), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(837), }, [208] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5123), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5205), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(208), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5127), - [sym_double_splat] = STATE(5127), - [sym_named_expr] = STATE(5127), - [sym_argument_list_no_parens] = STATE(3266), - [sym_argument_list_no_parens_with_block] = STATE(4395), - [sym_argument_list_with_parens] = STATE(3272), - [sym_argument_list_with_parens_and_block] = STATE(4396), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4397), - [sym_brace_block] = STATE(4398), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1185), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_EQ_GT] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(923), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(925), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(941), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(943), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5206), + [sym_double_splat] = STATE(5206), + [sym_named_expr] = STATE(5206), + [sym_argument_list_no_parens] = STATE(3294), + [sym_argument_list_no_parens_with_block] = STATE(3682), + [sym_argument_list_with_parens] = STATE(3294), + [sym_argument_list_with_parens_and_block] = STATE(3682), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(3683), + [sym_brace_block] = STATE(3684), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1193), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(661), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(829), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(831), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(833), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(837), }, [209] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5175), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5503), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(209), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5176), - [sym_double_splat] = STATE(5176), - [sym_named_expr] = STATE(5176), - [sym_argument_list_no_parens] = STATE(5080), - [sym_argument_list_no_parens_with_block] = STATE(5532), - [sym_argument_list_with_parens] = STATE(5080), - [sym_argument_list_with_parens_and_block] = STATE(5532), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_do_end_block] = STATE(5533), - [sym_brace_block] = STATE(5534), - [sym_block_argument] = STATE(5573), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(791), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_RBRACK] = ACTIONS(1179), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(949), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_RBRACK_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(955), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(867), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(869), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(957), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(959), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5480), + [sym_double_splat] = STATE(5480), + [sym_named_expr] = STATE(5480), + [sym_argument_list_no_parens] = STATE(3294), + [sym_argument_list_no_parens_with_block] = STATE(3682), + [sym_argument_list_with_parens] = STATE(3294), + [sym_argument_list_with_parens_and_block] = STATE(3682), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(3683), + [sym_brace_block] = STATE(3684), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_COLON] = ACTIONS(1821), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_COLON2] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(661), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(1125), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(1127), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(1141), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1143), }, [210] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5183), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5682), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(210), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5184), - [sym_double_splat] = STATE(5184), - [sym_named_expr] = STATE(5184), - [sym_argument_list_no_parens] = STATE(3198), - [sym_argument_list_no_parens_with_block] = STATE(3636), - [sym_argument_list_with_parens] = STATE(3201), - [sym_argument_list_with_parens_and_block] = STATE(3643), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(3644), - [sym_brace_block] = STATE(3645), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1185), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_EQ_GT] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(591), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(923), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(925), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(927), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(931), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5678), + [sym_double_splat] = STATE(5678), + [sym_named_expr] = STATE(5678), + [sym_argument_list_no_parens] = STATE(5332), + [sym_argument_list_no_parens_with_block] = STATE(6787), + [sym_argument_list_with_parens] = STATE(5332), + [sym_argument_list_with_parens_and_block] = STATE(6787), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_do_end_block] = STATE(6788), + [sym_brace_block] = STATE(6789), + [sym_block_argument] = STATE(6785), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_COLON] = ACTIONS(1823), + [anon_sym_LPAREN2] = ACTIONS(1027), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1045), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym__end_of_with_expression] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(1055), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(1057), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(1059), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1081), }, [211] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5175), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5194), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(211), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5176), - [sym_double_splat] = STATE(5176), - [sym_named_expr] = STATE(5176), - [sym_argument_list_no_parens] = STATE(5041), - [sym_argument_list_no_parens_with_block] = STATE(5567), - [sym_argument_list_with_parens] = STATE(5042), - [sym_argument_list_with_parens_and_block] = STATE(5568), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_do_end_block] = STATE(5570), - [sym_brace_block] = STATE(5572), - [sym_block_argument] = STATE(5573), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(791), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_RBRACK] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(949), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_RBRACK_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(955), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(867), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(869), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(957), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(959), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5195), + [sym_double_splat] = STATE(5195), + [sym_named_expr] = STATE(5195), + [sym_argument_list_no_parens] = STATE(5114), + [sym_argument_list_no_parens_with_block] = STATE(5516), + [sym_argument_list_with_parens] = STATE(5114), + [sym_argument_list_with_parens_and_block] = STATE(5516), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_do_end_block] = STATE(5517), + [sym_brace_block] = STATE(5517), + [sym_block_argument] = STATE(5489), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_RBRACK] = ACTIONS(1203), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_LPAREN2] = ACTIONS(963), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_RBRACK_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1825), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(969), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(931), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(933), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(971), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(973), }, [212] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5123), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5329), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(212), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5127), - [sym_double_splat] = STATE(5127), - [sym_named_expr] = STATE(5127), - [sym_argument_list_no_parens] = STATE(3232), - [sym_argument_list_no_parens_with_block] = STATE(4461), - [sym_argument_list_with_parens] = STATE(3232), - [sym_argument_list_with_parens_and_block] = STATE(4461), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4462), - [sym_brace_block] = STATE(4462), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1189), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_EQ_GT] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(923), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(925), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(941), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(943), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5331), + [sym_double_splat] = STATE(5331), + [sym_named_expr] = STATE(5331), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1193), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(829), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(831), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(847), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(849), }, [213] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5452), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5194), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(213), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5437), - [sym_double_splat] = STATE(5437), - [sym_named_expr] = STATE(5437), - [sym_argument_list_no_parens] = STATE(3276), - [sym_argument_list_no_parens_with_block] = STATE(3811), - [sym_argument_list_with_parens] = STATE(3276), - [sym_argument_list_with_parens_and_block] = STATE(3811), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(3814), - [sym_brace_block] = STATE(3829), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_COLON] = ACTIONS(1986), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_COLON2] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(591), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(1109), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(1111), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(1125), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1127), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5195), + [sym_double_splat] = STATE(5195), + [sym_named_expr] = STATE(5195), + [sym_argument_list_no_parens] = STATE(5133), + [sym_argument_list_no_parens_with_block] = STATE(5757), + [sym_argument_list_with_parens] = STATE(5133), + [sym_argument_list_with_parens_and_block] = STATE(5757), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_do_end_block] = STATE(5759), + [sym_brace_block] = STATE(5760), + [sym_block_argument] = STATE(5489), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_RBRACK] = ACTIONS(1195), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_LPAREN2] = ACTIONS(963), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_RBRACK_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(969), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(931), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(933), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(971), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(973), }, [214] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5309), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5194), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(214), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5380), - [sym_double_splat] = STATE(5380), - [sym_named_expr] = STATE(5380), - [sym_argument_list_no_parens] = STATE(5096), - [sym_argument_list_no_parens_with_block] = STATE(6625), - [sym_argument_list_with_parens] = STATE(5096), - [sym_argument_list_with_parens_and_block] = STATE(6625), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_do_end_block] = STATE(6626), - [sym_brace_block] = STATE(6627), - [sym_block_argument] = STATE(6462), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(791), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_RBRACK] = ACTIONS(1179), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(841), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_RBRACK_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(857), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(867), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(869), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(871), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(893), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5195), + [sym_double_splat] = STATE(5195), + [sym_named_expr] = STATE(5195), + [sym_argument_list_no_parens] = STATE(5135), + [sym_argument_list_no_parens_with_block] = STATE(5773), + [sym_argument_list_with_parens] = STATE(5121), + [sym_argument_list_with_parens_and_block] = STATE(5778), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_do_end_block] = STATE(5458), + [sym_brace_block] = STATE(5468), + [sym_block_argument] = STATE(5489), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_RBRACK] = ACTIONS(1207), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_LPAREN2] = ACTIONS(963), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_RBRACK_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(969), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(931), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(933), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(971), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(973), }, [215] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5309), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(7932), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(215), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5380), - [sym_double_splat] = STATE(5380), - [sym_named_expr] = STATE(5380), - [sym_argument_list_no_parens] = STATE(5116), - [sym_argument_list_no_parens_with_block] = STATE(6235), - [sym_argument_list_with_parens] = STATE(5023), - [sym_argument_list_with_parens_and_block] = STATE(6236), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_do_end_block] = STATE(6240), - [sym_brace_block] = STATE(6241), - [sym_block_argument] = STATE(6462), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(791), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_RBRACK] = ACTIONS(1187), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(841), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_RBRACK_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(847), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(857), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(867), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(869), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(871), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(893), - }, - [216] = { - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7874), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(216), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(202), - [aux_sym_multi_assign_repeat1] = STATE(981), - [ts_builtin_sym_end] = ACTIONS(1988), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(216), + [aux_sym_multi_assign_repeat1] = STATE(980), + [ts_builtin_sym_end] = ACTIONS(1827), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(1827), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -71517,7 +71994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1827), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -71525,7 +72002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(1990), + [anon_sym_end] = ACTIONS(1829), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -71564,815 +72041,826 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1990), - [anon_sym_else] = ACTIONS(1990), + [anon_sym_elsif] = ACTIONS(1829), + [anon_sym_else] = ACTIONS(1829), [anon_sym_require] = ACTIONS(101), - [anon_sym_when] = ACTIONS(1990), + [anon_sym_when] = ACTIONS(1829), [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(1990), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(1829), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, + [216] = { + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(9114), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(216), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(216), + [aux_sym_multi_assign_repeat1] = STATE(980), + [ts_builtin_sym_end] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(1836), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_RPAREN] = ACTIONS(1831), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1842), + [sym_true] = ACTIONS(1842), + [sym_false] = ACTIONS(1842), + [aux_sym_integer_token2] = ACTIONS(1845), + [aux_sym_float_token2] = ACTIONS(1848), + [anon_sym_SQUOTE] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1831), + [sym_operator_symbol] = ACTIONS(1854), + [sym_unquoted_symbol] = ACTIONS(1854), + [anon_sym_COLON_DQUOTE] = ACTIONS(1857), + [anon_sym_BQUOTE] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_DASH_GT] = ACTIONS(1866), + [anon_sym_annotation] = ACTIONS(1869), + [anon_sym_end] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1874), + [anon_sym_private] = ACTIONS(1877), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_abstract] = ACTIONS(1883), + [anon_sym_class] = ACTIONS(1886), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_BANG] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1901), + [anon_sym_def] = ACTIONS(1904), + [anon_sym_protected] = ACTIONS(1907), + [anon_sym_include] = ACTIONS(1910), + [anon_sym_extend] = ACTIONS(1913), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_next] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1922), + [anon_sym_with] = ACTIONS(1925), + [anon_sym_yield] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(1931), + [anon_sym_sizeof] = ACTIONS(1934), + [anon_sym_instance_sizeof] = ACTIONS(1937), + [anon_sym_offsetof] = ACTIONS(1940), + [sym__constant_segment] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(1946), + [anon_sym___LINE__] = ACTIONS(1949), + [anon_sym___END_LINE__] = ACTIONS(1949), + [anon_sym___FILE__] = ACTIONS(1949), + [anon_sym___DIR__] = ACTIONS(1949), + [sym_special_variable] = ACTIONS(1854), + [sym_identifier_method_call] = ACTIONS(1952), + [sym_instance_var] = ACTIONS(1955), + [sym_class_var] = ACTIONS(1955), + [sym_self] = ACTIONS(1842), + [anon_sym_alias] = ACTIONS(1958), + [anon_sym_begin] = ACTIONS(1961), + [anon_sym_while] = ACTIONS(1964), + [anon_sym_until] = ACTIONS(1967), + [anon_sym_elsif] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_require] = ACTIONS(1970), + [anon_sym_when] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1973), + [anon_sym_select] = ACTIONS(1976), + [anon_sym_in] = ACTIONS(1872), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1979), + [sym__start_of_named_tuple] = ACTIONS(1982), + [sym_unary_plus] = ACTIONS(1985), + [sym_unary_minus] = ACTIONS(1985), + [sym_unary_wrapping_plus] = ACTIONS(1988), + [sym_unary_wrapping_minus] = ACTIONS(1988), + [sym__beginless_range_operator] = ACTIONS(1991), + [sym__regex_start] = ACTIONS(1994), + [sym__regular_if_keyword] = ACTIONS(1997), + [sym__regular_unless_keyword] = ACTIONS(2000), + [sym__string_literal_start] = ACTIONS(2003), + [sym__string_percent_literal_start] = ACTIONS(2006), + [sym__command_percent_literal_start] = ACTIONS(2009), + [sym__string_array_percent_literal_start] = ACTIONS(2012), + [sym__symbol_array_percent_literal_start] = ACTIONS(2015), + [sym__regex_percent_literal_start] = ACTIONS(2018), + [sym_heredoc_start] = ACTIONS(1854), + [sym__heredoc_body_start] = ACTIONS(7), + }, [217] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5725), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5276), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(217), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5721), - [sym_double_splat] = STATE(5721), - [sym_named_expr] = STATE(5721), - [sym_argument_list_no_parens] = STATE(5132), - [sym_argument_list_no_parens_with_block] = STATE(6657), - [sym_argument_list_with_parens] = STATE(5132), - [sym_argument_list_with_parens_and_block] = STATE(6657), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_do_end_block] = STATE(6668), - [sym_brace_block] = STATE(6669), - [sym_block_argument] = STATE(6672), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_COLON] = ACTIONS(1992), - [anon_sym_LPAREN2] = ACTIONS(1013), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1019), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1029), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym__end_of_with_expression] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(1039), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(1041), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(1043), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1065), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5306), + [sym_double_splat] = STATE(5306), + [sym_named_expr] = STATE(5306), + [sym_argument_list_no_parens] = STATE(5087), + [sym_argument_list_no_parens_with_block] = STATE(6546), + [sym_argument_list_with_parens] = STATE(5087), + [sym_argument_list_with_parens_and_block] = STATE(6546), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_do_end_block] = STATE(6547), + [sym_brace_block] = STATE(6547), + [sym_block_argument] = STATE(6308), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_RBRACK] = ACTIONS(1203), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_LPAREN2] = ACTIONS(903), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_RBRACK_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(909), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(921), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(931), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(933), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(935), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(957), }, [218] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5183), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5205), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(218), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5184), - [sym_double_splat] = STATE(5184), - [sym_named_expr] = STATE(5184), - [sym_argument_list_no_parens] = STATE(3291), - [sym_argument_list_no_parens_with_block] = STATE(3608), - [sym_argument_list_with_parens] = STATE(3291), - [sym_argument_list_with_parens_and_block] = STATE(3608), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(3609), - [sym_brace_block] = STATE(3609), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1189), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_EQ_GT] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1257), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(591), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(923), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(925), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(927), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(931), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5206), + [sym_double_splat] = STATE(5206), + [sym_named_expr] = STATE(5206), + [sym_argument_list_no_parens] = STATE(3296), + [sym_argument_list_no_parens_with_block] = STATE(3687), + [sym_argument_list_with_parens] = STATE(3297), + [sym_argument_list_with_parens_and_block] = STATE(3688), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(3689), + [sym_brace_block] = STATE(3690), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1205), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_EQ_GT] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(661), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(829), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(831), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(833), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(837), }, [219] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5175), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5329), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(219), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5176), - [sym_double_splat] = STATE(5176), - [sym_named_expr] = STATE(5176), - [sym_argument_list_no_parens] = STATE(5028), - [sym_argument_list_no_parens_with_block] = STATE(5594), - [sym_argument_list_with_parens] = STATE(5028), - [sym_argument_list_with_parens_and_block] = STATE(5594), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_do_end_block] = STATE(5596), - [sym_brace_block] = STATE(5596), - [sym_block_argument] = STATE(5573), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(791), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_RBRACK] = ACTIONS(1191), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(949), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_RBRACK_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1994), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(955), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(867), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(869), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(957), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(959), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5331), + [sym_double_splat] = STATE(5331), + [sym_named_expr] = STATE(5331), + [sym_argument_list_no_parens] = STATE(3262), + [sym_argument_list_no_parens_with_block] = STATE(4563), + [sym_argument_list_with_parens] = STATE(3262), + [sym_argument_list_with_parens_and_block] = STATE(4563), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4564), + [sym_brace_block] = STATE(4564), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1201), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_EQ_GT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(829), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(831), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(847), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(849), }, [220] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5147), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(220), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5149), - [sym_double_splat] = STATE(5149), - [sym_named_expr] = STATE(5149), - [sym_argument_list_no_parens] = STATE(4984), - [sym_argument_list_no_parens_with_block] = STATE(5921), - [sym_argument_list_with_parens] = STATE(4984), - [sym_argument_list_with_parens_and_block] = STATE(5921), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_do_end_block] = STATE(5947), - [sym_brace_block] = STATE(6040), - [sym_block_argument] = STATE(5842), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_LPAREN2] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(781), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(1177), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(783), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(743), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(745), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(1135), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1137), - }, - [221] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(221), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9245), - [sym_elsif] = STATE(11398), - [sym_else] = STATE(11398), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9381), + [sym_elsif] = STATE(10609), + [sym_else] = STATE(10609), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -72390,7 +72878,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(1996), + [anon_sym_end] = ACTIONS(2021), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -72429,122 +72917,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1998), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_elsif] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, + [221] = { + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5749), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), + [sym_heredoc_body] = STATE(221), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5703), + [sym_double_splat] = STATE(5703), + [sym_named_expr] = STATE(5703), + [sym_argument_list_no_parens] = STATE(5164), + [sym_argument_list_no_parens_with_block] = STATE(6159), + [sym_argument_list_with_parens] = STATE(5164), + [sym_argument_list_with_parens_and_block] = STATE(6159), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_do_end_block] = STATE(6190), + [sym_brace_block] = STATE(6210), + [sym_block_argument] = STATE(6037), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_LPAREN2] = ACTIONS(1087), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1093), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym__end_of_with_expression] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(1055), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(1057), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(1095), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1097), + }, [222] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(222), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9313), - [sym_elsif] = STATE(10783), - [sym_else] = STATE(10783), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9367), + [sym_elsif] = STATE(11467), + [sym_else] = STATE(11467), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -72562,7 +73226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2002), + [anon_sym_end] = ACTIONS(2027), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -72601,122 +73265,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1998), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_elsif] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [223] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(223), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9297), - [sym_elsif] = STATE(10548), - [sym_else] = STATE(10548), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9369), + [sym_elsif] = STATE(12006), + [sym_else] = STATE(12006), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -72734,7 +73400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2004), + [anon_sym_end] = ACTIONS(2029), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -72773,122 +73439,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1998), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_elsif] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [224] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(224), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9248), - [sym_elsif] = STATE(11642), - [sym_else] = STATE(11642), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9337), + [sym_elsif] = STATE(10922), + [sym_else] = STATE(10922), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -72906,7 +73574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2006), + [anon_sym_end] = ACTIONS(2031), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -72945,466 +73613,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1998), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_elsif] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [225] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5147), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(225), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5149), - [sym_double_splat] = STATE(5149), - [sym_named_expr] = STATE(5149), - [sym_argument_list_no_parens] = STATE(4894), - [sym_argument_list_no_parens_with_block] = STATE(5849), - [sym_argument_list_with_parens] = STATE(4948), - [sym_argument_list_with_parens_and_block] = STATE(5903), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_do_end_block] = STATE(6117), - [sym_brace_block] = STATE(5983), - [sym_block_argument] = STATE(5842), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(1185), - [anon_sym_LPAREN] = ACTIONS(669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_LPAREN2] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(781), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(1185), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(783), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(743), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(745), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(1135), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1137), - }, - [226] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5463), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), - [sym_heredoc_body] = STATE(226), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5586), - [sym_double_splat] = STATE(5586), - [sym_named_expr] = STATE(5586), - [sym_argument_list_no_parens] = STATE(5161), - [sym_argument_list_no_parens_with_block] = STATE(5841), - [sym_argument_list_with_parens] = STATE(5161), - [sym_argument_list_with_parens_and_block] = STATE(5841), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_do_end_block] = STATE(5847), - [sym_brace_block] = STATE(5847), - [sym_block_argument] = STATE(5898), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(2008), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym__end_of_with_expression] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(1039), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(1041), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(1079), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1081), - }, - [227] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(227), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9322), - [sym_elsif] = STATE(10576), - [sym_else] = STATE(10576), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9298), + [sym_elsif] = STATE(11389), + [sym_else] = STATE(11389), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -73422,7 +73748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2010), + [anon_sym_end] = ACTIONS(2033), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -73461,294 +73787,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1998), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_elsif] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [228] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5452), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(228), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5437), - [sym_double_splat] = STATE(5437), - [sym_named_expr] = STATE(5437), - [sym_argument_list_no_parens] = STATE(3291), - [sym_argument_list_no_parens_with_block] = STATE(3608), - [sym_argument_list_with_parens] = STATE(3291), - [sym_argument_list_with_parens_and_block] = STATE(3608), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(3609), - [sym_brace_block] = STATE(3609), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_COLON2] = ACTIONS(1191), - [anon_sym_do] = ACTIONS(1257), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(591), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(1109), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(1111), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(1125), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1127), - }, - [229] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(229), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9206), - [sym_elsif] = STATE(10838), - [sym_else] = STATE(10838), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [226] = { + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(226), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9306), + [sym_elsif] = STATE(11015), + [sym_else] = STATE(11015), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -73766,7 +73922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2012), + [anon_sym_end] = ACTIONS(2035), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -73805,122 +73961,646 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1998), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_elsif] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, + [227] = { + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5749), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), + [sym_heredoc_body] = STATE(227), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5703), + [sym_double_splat] = STATE(5703), + [sym_named_expr] = STATE(5703), + [sym_argument_list_no_parens] = STATE(5192), + [sym_argument_list_no_parens_with_block] = STATE(5958), + [sym_argument_list_with_parens] = STATE(5193), + [sym_argument_list_with_parens_and_block] = STATE(5960), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_do_end_block] = STATE(5982), + [sym_brace_block] = STATE(5990), + [sym_block_argument] = STATE(6037), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_LPAREN2] = ACTIONS(1087), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1093), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym__end_of_with_expression] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(1055), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(1057), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(1095), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1097), + }, + [228] = { + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5227), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), + [sym_heredoc_body] = STATE(228), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5231), + [sym_double_splat] = STATE(5231), + [sym_named_expr] = STATE(5231), + [sym_argument_list_no_parens] = STATE(5007), + [sym_argument_list_no_parens_with_block] = STATE(6228), + [sym_argument_list_with_parens] = STATE(5007), + [sym_argument_list_with_parens_and_block] = STATE(6228), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_do_end_block] = STATE(5866), + [sym_brace_block] = STATE(5866), + [sym_block_argument] = STATE(5978), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(679), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(735), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(1201), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(747), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(757), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(759), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(1151), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1153), + }, + [229] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5503), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(229), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5480), + [sym_double_splat] = STATE(5480), + [sym_named_expr] = STATE(5480), + [sym_argument_list_no_parens] = STATE(3294), + [sym_argument_list_no_parens_with_block] = STATE(3682), + [sym_argument_list_with_parens] = STATE(3294), + [sym_argument_list_with_parens_and_block] = STATE(3682), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(3683), + [sym_brace_block] = STATE(3684), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_COLON2] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(1195), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(661), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(1125), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(1127), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(1141), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1143), + }, [230] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(230), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9198), - [sym_elsif] = STATE(10770), - [sym_else] = STATE(10770), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9264), + [sym_elsif] = STATE(11035), + [sym_else] = STATE(11035), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -73938,7 +74618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2014), + [anon_sym_end] = ACTIONS(2037), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -73977,294 +74657,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1998), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_elsif] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [231] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5147), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(231), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5149), - [sym_double_splat] = STATE(5149), - [sym_named_expr] = STATE(5149), - [sym_argument_list_no_parens] = STATE(4889), - [sym_argument_list_no_parens_with_block] = STATE(6094), - [sym_argument_list_with_parens] = STATE(4889), - [sym_argument_list_with_parens_and_block] = STATE(6094), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_do_end_block] = STATE(6100), - [sym_brace_block] = STATE(6100), - [sym_block_argument] = STATE(5842), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_LPAREN2] = ACTIONS(775), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(781), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(1189), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(783), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(743), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(745), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(1135), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1137), - }, - [232] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(232), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9308), - [sym_elsif] = STATE(11071), - [sym_else] = STATE(11071), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9267), + [sym_elsif] = STATE(11539), + [sym_else] = STATE(11539), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -74282,7 +74792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2016), + [anon_sym_end] = ACTIONS(2039), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -74321,294 +74831,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1998), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_elsif] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [233] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5463), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), - [sym_heredoc_body] = STATE(233), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5586), - [sym_double_splat] = STATE(5586), - [sym_named_expr] = STATE(5586), - [sym_argument_list_no_parens] = STATE(5393), - [sym_argument_list_no_parens_with_block] = STATE(5911), - [sym_argument_list_with_parens] = STATE(5393), - [sym_argument_list_with_parens_and_block] = STATE(5911), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_do_end_block] = STATE(5912), - [sym_brace_block] = STATE(5913), - [sym_block_argument] = STATE(5898), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym__end_of_with_expression] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(1039), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(1041), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(1079), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1081), - }, - [234] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(234), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9236), - [sym_elsif] = STATE(11329), - [sym_else] = STATE(11329), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [232] = { + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(232), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9358), + [sym_elsif] = STATE(11020), + [sym_else] = STATE(11020), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -74626,7 +74966,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2018), + [anon_sym_end] = ACTIONS(2041), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -74665,122 +75005,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1998), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_elsif] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [235] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(235), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9240), - [sym_elsif] = STATE(11429), - [sym_else] = STATE(11429), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [233] = { + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(233), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9351), + [sym_elsif] = STATE(11170), + [sym_else] = STATE(11170), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -74798,7 +75140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2020), + [anon_sym_end] = ACTIONS(2043), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -74837,122 +75179,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1998), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_elsif] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [236] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(236), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9276), - [sym_elsif] = STATE(11594), - [sym_else] = STATE(11594), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [234] = { + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(234), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9286), + [sym_elsif] = STATE(11751), + [sym_else] = STATE(11751), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -74970,7 +75314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2022), + [anon_sym_end] = ACTIONS(2045), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -75009,122 +75353,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1998), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_elsif] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [237] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(237), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9318), - [sym_elsif] = STATE(10584), - [sym_else] = STATE(10584), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [235] = { + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5088), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), + [sym_heredoc_body] = STATE(235), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5090), + [sym_double_splat] = STATE(5090), + [sym_named_expr] = STATE(5090), + [sym_argument_list_no_parens] = STATE(5371), + [sym_argument_list_no_parens_with_block] = STATE(5371), + [sym_argument_list_with_parens] = STATE(5371), + [sym_argument_list_with_parens_and_block] = STATE(5371), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_block_argument] = STATE(5372), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(679), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_LPAREN2] = ACTIONS(789), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_then] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(1215), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1215), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(757), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(759), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(797), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(799), + }, + [236] = { + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(236), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9376), + [sym_elsif] = STATE(10673), + [sym_else] = STATE(10673), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -75142,7 +75662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2024), + [anon_sym_end] = ACTIONS(2047), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -75181,294 +75701,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1998), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_elsif] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, + [237] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5503), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(237), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5480), + [sym_double_splat] = STATE(5480), + [sym_named_expr] = STATE(5480), + [sym_argument_list_no_parens] = STATE(3296), + [sym_argument_list_no_parens_with_block] = STATE(3687), + [sym_argument_list_with_parens] = STATE(3297), + [sym_argument_list_with_parens_and_block] = STATE(3688), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(3689), + [sym_brace_block] = STATE(3690), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_COLON2] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(1207), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(661), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(1125), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(1127), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(1141), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1143), + }, [238] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5452), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(238), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5437), - [sym_double_splat] = STATE(5437), - [sym_named_expr] = STATE(5437), - [sym_argument_list_no_parens] = STATE(3276), - [sym_argument_list_no_parens_with_block] = STATE(3811), - [sym_argument_list_with_parens] = STATE(3276), - [sym_argument_list_with_parens_and_block] = STATE(3811), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(3814), - [sym_brace_block] = STATE(3829), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_COLON2] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(591), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(1109), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(1111), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(1125), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1127), - }, - [239] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(239), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9220), - [sym_elsif] = STATE(11739), - [sym_else] = STATE(11739), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9375), + [sym_elsif] = STATE(11934), + [sym_else] = STATE(11934), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -75486,7 +76010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2026), + [anon_sym_end] = ACTIONS(2049), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -75525,294 +76049,994 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1998), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_elsif] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, + [239] = { + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5227), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), + [sym_heredoc_body] = STATE(239), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5231), + [sym_double_splat] = STATE(5231), + [sym_named_expr] = STATE(5231), + [sym_argument_list_no_parens] = STATE(4988), + [sym_argument_list_no_parens_with_block] = STATE(6095), + [sym_argument_list_with_parens] = STATE(4994), + [sym_argument_list_with_parens_and_block] = STATE(6118), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_do_end_block] = STATE(6144), + [sym_brace_block] = STATE(5788), + [sym_block_argument] = STATE(5978), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1205), + [anon_sym_LPAREN] = ACTIONS(679), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(735), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(1205), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(747), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(757), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(759), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(1151), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1153), + }, [240] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5452), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5749), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(240), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5437), - [sym_double_splat] = STATE(5437), - [sym_named_expr] = STATE(5437), - [sym_argument_list_no_parens] = STATE(3198), - [sym_argument_list_no_parens_with_block] = STATE(3636), - [sym_argument_list_with_parens] = STATE(3201), - [sym_argument_list_with_parens_and_block] = STATE(3643), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(3644), - [sym_brace_block] = STATE(3645), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_COLON2] = ACTIONS(1187), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(591), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(1109), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(1111), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(1125), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1127), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5703), + [sym_double_splat] = STATE(5703), + [sym_named_expr] = STATE(5703), + [sym_argument_list_no_parens] = STATE(5185), + [sym_argument_list_no_parens_with_block] = STATE(6179), + [sym_argument_list_with_parens] = STATE(5185), + [sym_argument_list_with_parens_and_block] = STATE(6179), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_do_end_block] = STATE(6182), + [sym_brace_block] = STATE(6182), + [sym_block_argument] = STATE(6037), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_LPAREN2] = ACTIONS(1087), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(2051), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1093), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym__end_of_with_expression] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(1055), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(1057), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(1095), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1097), }, [241] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4991), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(241), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9200), - [sym_elsif] = STATE(10527), - [sym_else] = STATE(10527), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(5023), + [sym_double_splat] = STATE(5023), + [sym_named_expr] = STATE(5023), + [sym_argument_list_no_parens] = STATE(4381), + [sym_argument_list_no_parens_with_block] = STATE(4381), + [sym_argument_list_with_parens] = STATE(4381), + [sym_argument_list_with_parens_and_block] = STATE(4381), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1637), + [anon_sym_RPAREN] = ACTIONS(1211), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1211), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_end] = ACTIONS(1213), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(1213), + [anon_sym_when] = ACTIONS(1213), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [anon_sym_in] = ACTIONS(1213), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(1703), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(1705), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(673), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2053), + }, + [242] = { + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5682), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), + [sym_heredoc_body] = STATE(242), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5678), + [sym_double_splat] = STATE(5678), + [sym_named_expr] = STATE(5678), + [sym_argument_list_no_parens] = STATE(5214), + [sym_argument_list_no_parens_with_block] = STATE(6883), + [sym_argument_list_with_parens] = STATE(5214), + [sym_argument_list_with_parens_and_block] = STATE(6883), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_do_end_block] = STATE(6884), + [sym_brace_block] = STATE(6884), + [sym_block_argument] = STATE(6785), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_LPAREN2] = ACTIONS(1027), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1045), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym__end_of_with_expression] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(1055), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(1057), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(1059), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1081), + }, + [243] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5503), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(243), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5480), + [sym_double_splat] = STATE(5480), + [sym_named_expr] = STATE(5480), + [sym_argument_list_no_parens] = STATE(3243), + [sym_argument_list_no_parens_with_block] = STATE(3629), + [sym_argument_list_with_parens] = STATE(3243), + [sym_argument_list_with_parens_and_block] = STATE(3629), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(3630), + [sym_brace_block] = STATE(3630), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_COLON2] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(1273), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(661), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(1125), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(1127), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(1141), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1143), + }, + [244] = { + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(244), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9271), + [sym_elsif] = STATE(11597), + [sym_else] = STATE(11597), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -75830,7 +77054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2028), + [anon_sym_end] = ACTIONS(2055), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -75869,1154 +77093,820 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1998), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_elsif] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [242] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4988), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(242), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4958), - [sym_double_splat] = STATE(4958), - [sym_named_expr] = STATE(4958), - [sym_argument_list_no_parens] = STATE(4494), - [sym_argument_list_no_parens_with_block] = STATE(4494), - [sym_argument_list_with_parens] = STATE(4494), - [sym_argument_list_with_parens_and_block] = STATE(4494), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1625), - [anon_sym_RPAREN] = ACTIONS(1199), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1199), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_end] = ACTIONS(1201), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(1201), - [anon_sym_when] = ACTIONS(1201), - [anon_sym_case] = ACTIONS(1679), - [anon_sym_in] = ACTIONS(1201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(1689), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(1691), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(663), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2030), - }, - [243] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5725), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), - [sym_heredoc_body] = STATE(243), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5721), - [sym_double_splat] = STATE(5721), - [sym_named_expr] = STATE(5721), - [sym_argument_list_no_parens] = STATE(5289), - [sym_argument_list_no_parens_with_block] = STATE(6785), - [sym_argument_list_with_parens] = STATE(5289), - [sym_argument_list_with_parens_and_block] = STATE(6785), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_do_end_block] = STATE(6788), - [sym_brace_block] = STATE(6788), - [sym_block_argument] = STATE(6672), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_LPAREN2] = ACTIONS(1013), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1019), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1029), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym__end_of_with_expression] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(1039), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(1041), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(1043), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1065), - }, - [244] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5099), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), - [sym_heredoc_body] = STATE(244), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5102), - [sym_double_splat] = STATE(5102), - [sym_named_expr] = STATE(5102), - [sym_argument_list_no_parens] = STATE(5222), - [sym_argument_list_no_parens_with_block] = STATE(5222), - [sym_argument_list_with_parens] = STATE(5222), - [sym_argument_list_with_parens_and_block] = STATE(5222), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_block_argument] = STATE(5223), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_LPAREN2] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_then] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(1195), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1195), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(743), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(745), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(747), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(769), - }, [245] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4988), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4991), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(245), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4958), - [sym_double_splat] = STATE(4958), - [sym_named_expr] = STATE(4958), - [sym_argument_list_no_parens] = STATE(4389), - [sym_argument_list_no_parens_with_block] = STATE(4389), - [sym_argument_list_with_parens] = STATE(4389), - [sym_argument_list_with_parens_and_block] = STATE(4389), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(1625), - [anon_sym_RPAREN] = ACTIONS(1195), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1195), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_end] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(1197), - [anon_sym_when] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(1679), - [anon_sym_in] = ACTIONS(1197), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(1689), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(1691), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(663), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2030), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(5023), + [sym_double_splat] = STATE(5023), + [sym_named_expr] = STATE(5023), + [sym_argument_list_no_parens] = STATE(4499), + [sym_argument_list_no_parens_with_block] = STATE(4499), + [sym_argument_list_with_parens] = STATE(4499), + [sym_argument_list_with_parens_and_block] = STATE(4499), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(1637), + [anon_sym_RPAREN] = ACTIONS(1215), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1215), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_end] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(1217), + [anon_sym_when] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [anon_sym_in] = ACTIONS(1217), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(1703), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(1705), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(673), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2053), }, [246] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5725), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5682), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(246), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5721), - [sym_double_splat] = STATE(5721), - [sym_named_expr] = STATE(5721), - [sym_argument_list_no_parens] = STATE(5132), - [sym_argument_list_no_parens_with_block] = STATE(6657), - [sym_argument_list_with_parens] = STATE(5132), - [sym_argument_list_with_parens_and_block] = STATE(6657), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_do_end_block] = STATE(6668), - [sym_brace_block] = STATE(6669), - [sym_block_argument] = STATE(6672), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_LPAREN2] = ACTIONS(1013), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1019), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1029), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym__end_of_with_expression] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(1039), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(1041), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(1043), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1065), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5678), + [sym_double_splat] = STATE(5678), + [sym_named_expr] = STATE(5678), + [sym_argument_list_no_parens] = STATE(5332), + [sym_argument_list_no_parens_with_block] = STATE(6787), + [sym_argument_list_with_parens] = STATE(5332), + [sym_argument_list_with_parens_and_block] = STATE(6787), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_do_end_block] = STATE(6788), + [sym_brace_block] = STATE(6789), + [sym_block_argument] = STATE(6785), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_LPAREN2] = ACTIONS(1027), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1045), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym__end_of_with_expression] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(1055), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(1057), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(1059), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1081), }, [247] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5725), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5682), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(247), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5721), - [sym_double_splat] = STATE(5721), - [sym_named_expr] = STATE(5721), - [sym_argument_list_no_parens] = STATE(5133), - [sym_argument_list_no_parens_with_block] = STATE(6869), - [sym_argument_list_with_parens] = STATE(5134), - [sym_argument_list_with_parens_and_block] = STATE(6879), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_do_end_block] = STATE(6880), - [sym_brace_block] = STATE(6881), - [sym_block_argument] = STATE(6672), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_LPAREN2] = ACTIONS(1013), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1019), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1029), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym__end_of_with_expression] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(1039), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(1041), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(1043), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1065), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5678), + [sym_double_splat] = STATE(5678), + [sym_named_expr] = STATE(5678), + [sym_argument_list_no_parens] = STATE(5339), + [sym_argument_list_no_parens_with_block] = STATE(6809), + [sym_argument_list_with_parens] = STATE(5340), + [sym_argument_list_with_parens_and_block] = STATE(6811), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_do_end_block] = STATE(6812), + [sym_brace_block] = STATE(6815), + [sym_block_argument] = STATE(6785), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_LPAREN2] = ACTIONS(1027), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1045), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym__end_of_with_expression] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(1055), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(1057), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(1059), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1081), }, [248] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5088), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(248), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9299), - [sym_elsif] = STATE(11463), - [sym_else] = STATE(11463), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5090), + [sym_double_splat] = STATE(5090), + [sym_named_expr] = STATE(5090), + [sym_argument_list_no_parens] = STATE(5184), + [sym_argument_list_no_parens_with_block] = STATE(5184), + [sym_argument_list_with_parens] = STATE(5184), + [sym_argument_list_with_parens_and_block] = STATE(5184), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_block_argument] = STATE(5372), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(679), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_LPAREN2] = ACTIONS(789), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_then] = ACTIONS(1213), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(1211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1211), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(757), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(759), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(797), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(799), + }, + [249] = { + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(249), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9386), + [sym_elsif] = STATE(11890), + [sym_else] = STATE(11890), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -77034,7 +77924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2032), + [anon_sym_end] = ACTIONS(2057), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -77073,3546 +77963,3414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(1998), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_elsif] = ACTIONS(2023), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [249] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5099), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), - [sym_heredoc_body] = STATE(249), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5102), - [sym_double_splat] = STATE(5102), - [sym_named_expr] = STATE(5102), - [sym_argument_list_no_parens] = STATE(5328), - [sym_argument_list_no_parens_with_block] = STATE(5328), - [sym_argument_list_with_parens] = STATE(5328), - [sym_argument_list_with_parens_and_block] = STATE(5328), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_block_argument] = STATE(5223), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_LPAREN2] = ACTIONS(719), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_do] = ACTIONS(1201), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_then] = ACTIONS(1201), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(1199), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1199), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(743), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(745), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(747), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(769), - }, [250] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5736), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5709), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(250), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5737), - [sym_double_splat] = STATE(5737), - [sym_named_expr] = STATE(5737), - [sym_argument_list_no_parens] = STATE(3232), - [sym_argument_list_no_parens_with_block] = STATE(4461), - [sym_argument_list_with_parens] = STATE(3232), - [sym_argument_list_with_parens_and_block] = STATE(4461), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4462), - [sym_brace_block] = STATE(4462), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_COLON2] = ACTIONS(1191), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(1109), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(1111), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(1113), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1117), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5710), + [sym_double_splat] = STATE(5710), + [sym_named_expr] = STATE(5710), + [sym_argument_list_no_parens] = STATE(3262), + [sym_argument_list_no_parens_with_block] = STATE(4563), + [sym_argument_list_with_parens] = STATE(3262), + [sym_argument_list_with_parens_and_block] = STATE(4563), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4564), + [sym_brace_block] = STATE(4564), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_COLON2] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(1125), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(1127), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(1129), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1133), }, [251] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5736), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5709), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(251), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5737), - [sym_double_splat] = STATE(5737), - [sym_named_expr] = STATE(5737), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_COLON2] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(1109), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(1111), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(1113), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1117), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5710), + [sym_double_splat] = STATE(5710), + [sym_named_expr] = STATE(5710), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_COLON2] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(1125), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(1127), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(1129), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1133), }, [252] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5736), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5709), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(252), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5737), - [sym_double_splat] = STATE(5737), - [sym_named_expr] = STATE(5737), - [sym_argument_list_no_parens] = STATE(3266), - [sym_argument_list_no_parens_with_block] = STATE(4395), - [sym_argument_list_with_parens] = STATE(3272), - [sym_argument_list_with_parens_and_block] = STATE(4396), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4397), - [sym_brace_block] = STATE(4398), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_COLON2] = ACTIONS(1187), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(1109), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(1111), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(1113), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1117), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5710), + [sym_double_splat] = STATE(5710), + [sym_named_expr] = STATE(5710), + [sym_argument_list_no_parens] = STATE(3275), + [sym_argument_list_no_parens_with_block] = STATE(4550), + [sym_argument_list_with_parens] = STATE(3276), + [sym_argument_list_with_parens_and_block] = STATE(4574), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4584), + [sym_brace_block] = STATE(4592), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_COLON2] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(1125), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(1127), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(1129), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1133), }, [253] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5463), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5227), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(253), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5586), - [sym_double_splat] = STATE(5586), - [sym_named_expr] = STATE(5586), - [sym_argument_list_no_parens] = STATE(5394), - [sym_argument_list_no_parens_with_block] = STATE(5920), - [sym_argument_list_with_parens] = STATE(5395), - [sym_argument_list_with_parens_and_block] = STATE(5922), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_do_end_block] = STATE(5923), - [sym_brace_block] = STATE(5924), - [sym_block_argument] = STATE(5898), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1187), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1077), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym__end_of_with_expression] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(1039), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(1041), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(1079), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1081), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5231), + [sym_double_splat] = STATE(5231), + [sym_named_expr] = STATE(5231), + [sym_argument_list_no_parens] = STATE(4931), + [sym_argument_list_no_parens_with_block] = STATE(6082), + [sym_argument_list_with_parens] = STATE(4931), + [sym_argument_list_with_parens_and_block] = STATE(6082), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_do_end_block] = STATE(6084), + [sym_brace_block] = STATE(6196), + [sym_block_argument] = STATE(5978), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1193), + [anon_sym_LPAREN] = ACTIONS(679), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_LPAREN2] = ACTIONS(729), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(735), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(1193), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(747), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(757), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(759), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(1151), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1153), }, [254] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5175), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5647), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(254), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5176), - [sym_double_splat] = STATE(5176), - [sym_named_expr] = STATE(5176), - [sym_argument_list_no_parens] = STATE(5516), - [sym_argument_list_no_parens_with_block] = STATE(5516), - [sym_argument_list_with_parens] = STATE(5516), - [sym_argument_list_with_parens_and_block] = STATE(5516), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_block_argument] = STATE(5573), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(791), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(1201), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(949), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_RBRACK_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_do] = ACTIONS(1201), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1199), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(867), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(869), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(957), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(959), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5645), + [sym_double_splat] = STATE(5645), + [sym_named_expr] = STATE(5645), + [sym_argument_list_no_parens] = STATE(5332), + [sym_argument_list_no_parens_with_block] = STATE(6787), + [sym_argument_list_with_parens] = STATE(5332), + [sym_argument_list_with_parens_and_block] = STATE(6787), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_do_end_block] = STATE(6788), + [sym_brace_block] = STATE(6789), + [sym_block_argument] = STATE(6785), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_LPAREN2] = ACTIONS(1027), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1045), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym__end_of_with_expression] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(1055), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(1057), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(1161), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1163), }, [255] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2653), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5194), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(255), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(2034), - [sym_identifier] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2038), - [anon_sym_RPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(2034), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2040), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(2040), - [anon_sym_else] = ACTIONS(2040), - [anon_sym_when] = ACTIONS(2040), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(2040), - [sym__line_break] = ACTIONS(2034), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2034), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(2034), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(2034), - [sym__modifier_rescue_keyword] = ACTIONS(2034), - [sym__modifier_ensure_keyword] = ACTIONS(2034), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2046), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5195), + [sym_double_splat] = STATE(5195), + [sym_named_expr] = STATE(5195), + [sym_argument_list_no_parens] = STATE(5657), + [sym_argument_list_no_parens_with_block] = STATE(5657), + [sym_argument_list_with_parens] = STATE(5657), + [sym_argument_list_with_parens_and_block] = STATE(5657), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_block_argument] = STATE(5489), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_RBRACK] = ACTIONS(1213), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_LPAREN2] = ACTIONS(963), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_RBRACK_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1211), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(931), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(933), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(971), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(973), }, [256] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5609), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2769), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(256), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5537), - [sym_double_splat] = STATE(5537), - [sym_named_expr] = STATE(5537), - [sym_argument_list_no_parens] = STATE(5289), - [sym_argument_list_no_parens_with_block] = STATE(6785), - [sym_argument_list_with_parens] = STATE(5289), - [sym_argument_list_with_parens_and_block] = STATE(6785), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_do_end_block] = STATE(6788), - [sym_brace_block] = STATE(6788), - [sym_block_argument] = STATE(6672), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_LPAREN2] = ACTIONS(1013), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(1019), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1029), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym__end_of_with_expression] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(1039), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(1041), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(1165), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1167), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(2059), + [sym_identifier] = ACTIONS(2061), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2059), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(2059), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_do] = ACTIONS(2065), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(2065), + [anon_sym_else] = ACTIONS(2065), + [anon_sym_when] = ACTIONS(2065), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(2065), + [sym__line_break] = ACTIONS(2059), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2059), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(2059), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(2059), + [sym__modifier_rescue_keyword] = ACTIONS(2059), + [sym__modifier_ensure_keyword] = ACTIONS(2059), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2071), }, [257] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5698), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5647), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(257), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5699), - [sym_double_splat] = STATE(5699), - [sym_named_expr] = STATE(5699), - [sym_argument_list_no_parens] = STATE(3232), - [sym_argument_list_no_parens_with_block] = STATE(4461), - [sym_argument_list_with_parens] = STATE(3232), - [sym_argument_list_with_parens_and_block] = STATE(4461), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4462), - [sym_brace_block] = STATE(4462), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_EQ_GT] = ACTIONS(1189), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(923), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(925), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(1155), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1157), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5645), + [sym_double_splat] = STATE(5645), + [sym_named_expr] = STATE(5645), + [sym_argument_list_no_parens] = STATE(5214), + [sym_argument_list_no_parens_with_block] = STATE(6883), + [sym_argument_list_with_parens] = STATE(5214), + [sym_argument_list_with_parens_and_block] = STATE(6883), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_do_end_block] = STATE(6884), + [sym_brace_block] = STATE(6884), + [sym_block_argument] = STATE(6785), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_LPAREN2] = ACTIONS(1027), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1045), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym__end_of_with_expression] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(1055), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(1057), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(1161), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1163), }, [258] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5183), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5658), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(258), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5184), - [sym_double_splat] = STATE(5184), - [sym_named_expr] = STATE(5184), - [sym_argument_list_no_parens] = STATE(3806), - [sym_argument_list_no_parens_with_block] = STATE(3806), - [sym_argument_list_with_parens] = STATE(3806), - [sym_argument_list_with_parens_and_block] = STATE(3806), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1195), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_EQ_GT] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1195), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(923), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(925), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(927), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(931), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5659), + [sym_double_splat] = STATE(5659), + [sym_named_expr] = STATE(5659), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(829), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(831), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(1181), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1183), }, [259] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2598), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), - [sym_heredoc_body] = STATE(259), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(2048), - [sym_identifier] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(2038), - [anon_sym_RPAREN] = ACTIONS(2048), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(2048), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(2050), - [anon_sym_else] = ACTIONS(2050), - [anon_sym_when] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(2050), - [sym__line_break] = ACTIONS(2048), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2048), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(2048), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(2048), - [sym__modifier_rescue_keyword] = ACTIONS(2048), - [sym__modifier_ensure_keyword] = ACTIONS(2048), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2052), - }, - [260] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), [sym__expression] = STATE(5658), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(260), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(259), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), [sym_splat] = STATE(5659), [sym_double_splat] = STATE(5659), [sym_named_expr] = STATE(5659), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_COLON2] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(1109), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(1111), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(1173), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1175), + [sym_argument_list_no_parens] = STATE(3275), + [sym_argument_list_no_parens_with_block] = STATE(4550), + [sym_argument_list_with_parens] = STATE(3276), + [sym_argument_list_with_parens_and_block] = STATE(4574), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4584), + [sym_brace_block] = STATE(4592), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_EQ_GT] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(829), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(831), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(1181), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1183), + }, + [260] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5765), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(260), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5766), + [sym_double_splat] = STATE(5766), + [sym_named_expr] = STATE(5766), + [sym_argument_list_no_parens] = STATE(3262), + [sym_argument_list_no_parens_with_block] = STATE(4563), + [sym_argument_list_with_parens] = STATE(3262), + [sym_argument_list_with_parens_and_block] = STATE(4563), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4564), + [sym_brace_block] = STATE(4564), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_COLON2] = ACTIONS(1203), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(1125), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(1127), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(1189), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1191), }, [261] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5183), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5647), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(261), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5184), - [sym_double_splat] = STATE(5184), - [sym_named_expr] = STATE(5184), - [sym_argument_list_no_parens] = STATE(3605), - [sym_argument_list_no_parens_with_block] = STATE(3605), - [sym_argument_list_with_parens] = STATE(3605), - [sym_argument_list_with_parens_and_block] = STATE(3605), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1199), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_EQ_GT] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_do] = ACTIONS(1201), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1199), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(923), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(925), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(927), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(931), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5645), + [sym_double_splat] = STATE(5645), + [sym_named_expr] = STATE(5645), + [sym_argument_list_no_parens] = STATE(5339), + [sym_argument_list_no_parens_with_block] = STATE(6809), + [sym_argument_list_with_parens] = STATE(5340), + [sym_argument_list_with_parens_and_block] = STATE(6811), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_do_end_block] = STATE(6812), + [sym_brace_block] = STATE(6815), + [sym_block_argument] = STATE(6785), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_LPAREN2] = ACTIONS(1027), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_do] = ACTIONS(1033), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1045), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym__end_of_with_expression] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(1055), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(1057), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(1161), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1163), }, [262] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5658), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5194), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(262), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5659), - [sym_double_splat] = STATE(5659), - [sym_named_expr] = STATE(5659), - [sym_argument_list_no_parens] = STATE(3266), - [sym_argument_list_no_parens_with_block] = STATE(4395), - [sym_argument_list_with_parens] = STATE(3272), - [sym_argument_list_with_parens_and_block] = STATE(4396), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4397), - [sym_brace_block] = STATE(4398), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_COLON2] = ACTIONS(1187), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(1109), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(1111), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(1173), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1175), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5195), + [sym_double_splat] = STATE(5195), + [sym_named_expr] = STATE(5195), + [sym_argument_list_no_parens] = STATE(5752), + [sym_argument_list_no_parens_with_block] = STATE(5752), + [sym_argument_list_with_parens] = STATE(5752), + [sym_argument_list_with_parens_and_block] = STATE(5752), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_block_argument] = STATE(5489), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(853), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(1215), + [anon_sym_RBRACK] = ACTIONS(1217), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_LPAREN2] = ACTIONS(963), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_RBRACK_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1215), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(931), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(933), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(971), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(973), }, [263] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5698), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5205), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(263), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5699), - [sym_double_splat] = STATE(5699), - [sym_named_expr] = STATE(5699), - [sym_argument_list_no_parens] = STATE(3207), - [sym_argument_list_no_parens_with_block] = STATE(4391), - [sym_argument_list_with_parens] = STATE(3207), - [sym_argument_list_with_parens_and_block] = STATE(4391), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4392), - [sym_brace_block] = STATE(4393), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_EQ_GT] = ACTIONS(1177), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(923), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(925), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(1155), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1157), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5206), + [sym_double_splat] = STATE(5206), + [sym_named_expr] = STATE(5206), + [sym_argument_list_no_parens] = STATE(3769), + [sym_argument_list_no_parens_with_block] = STATE(3769), + [sym_argument_list_with_parens] = STATE(3769), + [sym_argument_list_with_parens_and_block] = STATE(3769), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1211), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_EQ_GT] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1211), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(829), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(831), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(833), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(837), }, [264] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5698), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2638), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(264), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5699), - [sym_double_splat] = STATE(5699), - [sym_named_expr] = STATE(5699), - [sym_argument_list_no_parens] = STATE(3266), - [sym_argument_list_no_parens_with_block] = STATE(4395), - [sym_argument_list_with_parens] = STATE(3272), - [sym_argument_list_with_parens_and_block] = STATE(4396), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4397), - [sym_brace_block] = STATE(4398), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_EQ_GT] = ACTIONS(1185), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(923), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(925), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(1155), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1157), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(2073), + [sym_identifier] = ACTIONS(2061), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2073), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(2073), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_do] = ACTIONS(2075), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(2075), + [anon_sym_else] = ACTIONS(2075), + [anon_sym_when] = ACTIONS(2075), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(2075), + [sym__line_break] = ACTIONS(2073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2073), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(2073), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(2073), + [sym__modifier_rescue_keyword] = ACTIONS(2073), + [sym__modifier_ensure_keyword] = ACTIONS(2073), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2077), }, [265] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5175), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5658), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(265), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5176), - [sym_double_splat] = STATE(5176), - [sym_named_expr] = STATE(5176), - [sym_argument_list_no_parens] = STATE(5478), - [sym_argument_list_no_parens_with_block] = STATE(5478), - [sym_argument_list_with_parens] = STATE(5478), - [sym_argument_list_with_parens_and_block] = STATE(5478), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_block_argument] = STATE(5573), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(791), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_RBRACK] = ACTIONS(1197), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_LPAREN2] = ACTIONS(949), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_RBRACK_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1195), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(867), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(869), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(957), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(959), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5659), + [sym_double_splat] = STATE(5659), + [sym_named_expr] = STATE(5659), + [sym_argument_list_no_parens] = STATE(3262), + [sym_argument_list_no_parens_with_block] = STATE(4563), + [sym_argument_list_with_parens] = STATE(3262), + [sym_argument_list_with_parens_and_block] = STATE(4563), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4564), + [sym_brace_block] = STATE(4564), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_EQ_GT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1203), + [anon_sym_PIPE] = ACTIONS(1203), + [anon_sym_CARET] = ACTIONS(1201), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_LT_LT] = ACTIONS(1201), + [anon_sym_EQ_EQ] = ACTIONS(1203), + [anon_sym_BANG_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ] = ACTIONS(1203), + [anon_sym_GT] = ACTIONS(1203), + [anon_sym_GT_EQ] = ACTIONS(1201), + [anon_sym_LT_EQ_GT] = ACTIONS(1201), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1201), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(1201), + [anon_sym_EQ_TILDE] = ACTIONS(1201), + [anon_sym_AMP_STAR] = ACTIONS(1203), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1201), + [anon_sym_DOT] = ACTIONS(1203), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1201), + [anon_sym_AMP_AMP] = ACTIONS(1201), + [anon_sym_PIPE_PIPE] = ACTIONS(1201), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1201), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(1201), + [sym_binary_minus] = ACTIONS(1201), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(1201), + [sym_binary_wrapping_minus] = ACTIONS(1201), + [sym__unary_star] = ACTIONS(829), + [sym__binary_star] = ACTIONS(1201), + [sym__unary_double_star] = ACTIONS(831), + [sym__binary_double_star] = ACTIONS(1201), + [sym__block_ampersand] = ACTIONS(1181), + [sym_binary_ampersand] = ACTIONS(1201), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1201), + [sym__binary_double_slash] = ACTIONS(1201), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1201), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1183), }, [266] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5609), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5765), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(266), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5537), - [sym_double_splat] = STATE(5537), - [sym_named_expr] = STATE(5537), - [sym_argument_list_no_parens] = STATE(5132), - [sym_argument_list_no_parens_with_block] = STATE(6657), - [sym_argument_list_with_parens] = STATE(5132), - [sym_argument_list_with_parens_and_block] = STATE(6657), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_do_end_block] = STATE(6668), - [sym_brace_block] = STATE(6669), - [sym_block_argument] = STATE(6672), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DOT_DOT] = ACTIONS(1179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1177), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1179), - [anon_sym_CARET] = ACTIONS(1177), - [anon_sym_GT_GT] = ACTIONS(1177), - [anon_sym_LT_LT] = ACTIONS(1177), - [anon_sym_EQ_EQ] = ACTIONS(1179), - [anon_sym_BANG_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_EQ] = ACTIONS(1177), - [anon_sym_LT_EQ_GT] = ACTIONS(1177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1177), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(1177), - [anon_sym_EQ_TILDE] = ACTIONS(1177), - [anon_sym_AMP_STAR] = ACTIONS(1179), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1177), - [anon_sym_DOT] = ACTIONS(1179), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_LPAREN2] = ACTIONS(1013), - [anon_sym_QMARK] = ACTIONS(1177), - [anon_sym_AMP_AMP] = ACTIONS(1177), - [anon_sym_PIPE_PIPE] = ACTIONS(1177), - [anon_sym_do] = ACTIONS(1019), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1029), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(1177), - [sym__end_of_with_expression] = ACTIONS(1177), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(1177), - [sym_binary_minus] = ACTIONS(1177), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(1177), - [sym_binary_wrapping_minus] = ACTIONS(1177), - [sym__unary_star] = ACTIONS(1039), - [sym__binary_star] = ACTIONS(1177), - [sym__unary_double_star] = ACTIONS(1041), - [sym__binary_double_star] = ACTIONS(1177), - [sym__block_ampersand] = ACTIONS(1165), - [sym_binary_ampersand] = ACTIONS(1177), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(1177), - [sym__binary_double_slash] = ACTIONS(1177), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(1177), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1167), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5766), + [sym_double_splat] = STATE(5766), + [sym_named_expr] = STATE(5766), + [sym_argument_list_no_parens] = STATE(3271), + [sym_argument_list_no_parens_with_block] = STATE(4502), + [sym_argument_list_with_parens] = STATE(3271), + [sym_argument_list_with_parens_and_block] = STATE(4502), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4503), + [sym_brace_block] = STATE(4504), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1193), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1193), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_LT_LT] = ACTIONS(1193), + [anon_sym_EQ_EQ] = ACTIONS(1195), + [anon_sym_BANG_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_GT_EQ] = ACTIONS(1193), + [anon_sym_LT_EQ_GT] = ACTIONS(1193), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1193), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(1193), + [anon_sym_EQ_TILDE] = ACTIONS(1193), + [anon_sym_AMP_STAR] = ACTIONS(1195), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1193), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1193), + [anon_sym_AMP_AMP] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1193), + [anon_sym_COLON2] = ACTIONS(1195), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1193), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(1193), + [sym_binary_minus] = ACTIONS(1193), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(1193), + [sym_binary_wrapping_minus] = ACTIONS(1193), + [sym__unary_star] = ACTIONS(1125), + [sym__binary_star] = ACTIONS(1193), + [sym__unary_double_star] = ACTIONS(1127), + [sym__binary_double_star] = ACTIONS(1193), + [sym__block_ampersand] = ACTIONS(1189), + [sym_binary_ampersand] = ACTIONS(1193), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1193), + [sym__binary_double_slash] = ACTIONS(1193), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1193), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1191), }, [267] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5658), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5205), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(267), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5659), - [sym_double_splat] = STATE(5659), - [sym_named_expr] = STATE(5659), - [sym_argument_list_no_parens] = STATE(3232), - [sym_argument_list_no_parens_with_block] = STATE(4461), - [sym_argument_list_with_parens] = STATE(3232), - [sym_argument_list_with_parens_and_block] = STATE(4461), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(4462), - [sym_brace_block] = STATE(4462), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DOT_DOT] = ACTIONS(1191), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1191), - [anon_sym_PIPE] = ACTIONS(1191), - [anon_sym_CARET] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1189), - [anon_sym_LT_LT] = ACTIONS(1189), - [anon_sym_EQ_EQ] = ACTIONS(1191), - [anon_sym_BANG_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ] = ACTIONS(1191), - [anon_sym_GT] = ACTIONS(1191), - [anon_sym_GT_EQ] = ACTIONS(1189), - [anon_sym_LT_EQ_GT] = ACTIONS(1189), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1189), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(1189), - [anon_sym_AMP_STAR] = ACTIONS(1191), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1189), - [anon_sym_DOT] = ACTIONS(1191), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(1189), - [anon_sym_AMP_AMP] = ACTIONS(1189), - [anon_sym_PIPE_PIPE] = ACTIONS(1189), - [anon_sym_COLON2] = ACTIONS(1191), - [anon_sym_do] = ACTIONS(639), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(641), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1189), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(1189), - [sym_binary_minus] = ACTIONS(1189), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(1189), - [sym_binary_wrapping_minus] = ACTIONS(1189), - [sym__unary_star] = ACTIONS(1109), - [sym__binary_star] = ACTIONS(1189), - [sym__unary_double_star] = ACTIONS(1111), - [sym__binary_double_star] = ACTIONS(1189), - [sym__block_ampersand] = ACTIONS(1173), - [sym_binary_ampersand] = ACTIONS(1189), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1189), - [sym__binary_double_slash] = ACTIONS(1189), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1189), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1175), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5206), + [sym_double_splat] = STATE(5206), + [sym_named_expr] = STATE(5206), + [sym_argument_list_no_parens] = STATE(3680), + [sym_argument_list_no_parens_with_block] = STATE(3680), + [sym_argument_list_with_parens] = STATE(3680), + [sym_argument_list_with_parens_and_block] = STATE(3680), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1215), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1215), + [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1215), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(829), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(831), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(833), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(837), }, [268] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5609), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5765), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(268), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5537), - [sym_double_splat] = STATE(5537), - [sym_named_expr] = STATE(5537), - [sym_argument_list_no_parens] = STATE(5133), - [sym_argument_list_no_parens_with_block] = STATE(6869), - [sym_argument_list_with_parens] = STATE(5134), - [sym_argument_list_with_parens_and_block] = STATE(6879), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_do_end_block] = STATE(6880), - [sym_brace_block] = STATE(6881), - [sym_block_argument] = STATE(6672), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DOT_DOT] = ACTIONS(1187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1185), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(1187), - [anon_sym_PIPE] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_GT_GT] = ACTIONS(1185), - [anon_sym_LT_LT] = ACTIONS(1185), - [anon_sym_EQ_EQ] = ACTIONS(1187), - [anon_sym_BANG_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ] = ACTIONS(1187), - [anon_sym_GT] = ACTIONS(1187), - [anon_sym_GT_EQ] = ACTIONS(1185), - [anon_sym_LT_EQ_GT] = ACTIONS(1185), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1185), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(1185), - [anon_sym_EQ_TILDE] = ACTIONS(1185), - [anon_sym_AMP_STAR] = ACTIONS(1187), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1187), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_LPAREN2] = ACTIONS(1013), - [anon_sym_QMARK] = ACTIONS(1185), - [anon_sym_AMP_AMP] = ACTIONS(1185), - [anon_sym_PIPE_PIPE] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1019), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1029), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(1185), - [sym__end_of_with_expression] = ACTIONS(1185), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(1185), - [sym_binary_minus] = ACTIONS(1185), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(1185), - [sym_binary_wrapping_minus] = ACTIONS(1185), - [sym__unary_star] = ACTIONS(1039), - [sym__binary_star] = ACTIONS(1185), - [sym__unary_double_star] = ACTIONS(1041), - [sym__binary_double_star] = ACTIONS(1185), - [sym__block_ampersand] = ACTIONS(1165), - [sym_binary_ampersand] = ACTIONS(1185), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(1185), - [sym__binary_double_slash] = ACTIONS(1185), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(1185), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1167), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5766), + [sym_double_splat] = STATE(5766), + [sym_named_expr] = STATE(5766), + [sym_argument_list_no_parens] = STATE(3275), + [sym_argument_list_no_parens_with_block] = STATE(4550), + [sym_argument_list_with_parens] = STATE(3276), + [sym_argument_list_with_parens_and_block] = STATE(4574), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(4584), + [sym_brace_block] = STATE(4592), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DOT_DOT] = ACTIONS(1207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1205), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1207), + [anon_sym_PIPE] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1205), + [anon_sym_GT_GT] = ACTIONS(1205), + [anon_sym_LT_LT] = ACTIONS(1205), + [anon_sym_EQ_EQ] = ACTIONS(1207), + [anon_sym_BANG_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ] = ACTIONS(1207), + [anon_sym_GT] = ACTIONS(1207), + [anon_sym_GT_EQ] = ACTIONS(1205), + [anon_sym_LT_EQ_GT] = ACTIONS(1205), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1205), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(1205), + [anon_sym_EQ_TILDE] = ACTIONS(1205), + [anon_sym_AMP_STAR] = ACTIONS(1207), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1205), + [anon_sym_DOT] = ACTIONS(1207), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1205), + [anon_sym_AMP_AMP] = ACTIONS(1205), + [anon_sym_PIPE_PIPE] = ACTIONS(1205), + [anon_sym_COLON2] = ACTIONS(1207), + [anon_sym_do] = ACTIONS(591), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(603), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1205), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(1205), + [sym_binary_minus] = ACTIONS(1205), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(1205), + [sym_binary_wrapping_minus] = ACTIONS(1205), + [sym__unary_star] = ACTIONS(1125), + [sym__binary_star] = ACTIONS(1205), + [sym__unary_double_star] = ACTIONS(1127), + [sym__binary_double_star] = ACTIONS(1205), + [sym__block_ampersand] = ACTIONS(1189), + [sym_binary_ampersand] = ACTIONS(1205), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1205), + [sym__binary_double_slash] = ACTIONS(1205), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1205), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1191), }, [269] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(269), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9781), - [sym_else] = STATE(11645), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9851), + [sym_else] = STATE(10684), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -80630,7 +81388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2054), + [anon_sym_end] = ACTIONS(2079), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -80669,120 +81427,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [270] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(270), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(10128), - [sym_else] = STATE(10941), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9898), + [sym_else] = STATE(11816), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -80800,7 +81560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2056), + [anon_sym_end] = ACTIONS(2081), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -80839,290 +81599,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [271] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2716), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(271), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2038), - [anon_sym_RPAREN] = ACTIONS(2058), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(2058), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(2060), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_when] = ACTIONS(2060), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(2060), - [sym__line_break] = ACTIONS(2058), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2058), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(2058), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(2058), - [sym__modifier_rescue_keyword] = ACTIONS(2058), - [sym__modifier_ensure_keyword] = ACTIONS(2058), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [272] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(272), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9679), - [sym_else] = STATE(11413), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(10130), + [sym_else] = STATE(11173), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -81140,7 +81732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2062), + [anon_sym_end] = ACTIONS(2083), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -81179,120 +81771,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [273] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(273), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9703), - [sym_else] = STATE(11776), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [272] = { + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(272), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(10385), + [sym_else] = STATE(11939), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -81310,7 +81904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2064), + [anon_sym_end] = ACTIONS(2085), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -81349,120 +81943,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, + [273] = { + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5749), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), + [sym_heredoc_body] = STATE(273), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5703), + [sym_double_splat] = STATE(5703), + [sym_named_expr] = STATE(5703), + [sym_argument_list_no_parens] = STATE(6115), + [sym_argument_list_no_parens_with_block] = STATE(6115), + [sym_argument_list_with_parens] = STATE(6115), + [sym_argument_list_with_parens_and_block] = STATE(6115), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_block_argument] = STATE(6037), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_LPAREN2] = ACTIONS(1087), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1211), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym__end_of_with_expression] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(1055), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(1057), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(1095), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1097), + }, [274] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(274), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9853), - [sym_else] = STATE(10578), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(10409), + [sym_else] = STATE(11027), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -81480,7 +82248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2066), + [anon_sym_end] = ACTIONS(2087), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -81519,120 +82287,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [275] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(275), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(10351), - [sym_else] = STATE(11328), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(10154), + [sym_else] = STATE(11291), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -81650,7 +82420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2068), + [anon_sym_end] = ACTIONS(2089), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -81689,290 +82459,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [276] = { - [sym__statements] = STATE(9395), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(276), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9873), + [sym_else] = STATE(12008), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(2070), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(2070), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(2072), - [sym__regular_ensure_keyword] = ACTIONS(2072), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [277] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(277), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(10150), - [sym_else] = STATE(11335), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -81990,7 +82592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2074), + [anon_sym_end] = ACTIONS(2091), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -82029,460 +82631,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [278] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5452), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(278), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), + [277] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5666), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(4914), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(5648), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(277), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5437), - [sym_double_splat] = STATE(5437), - [sym_named_expr] = STATE(5437), - [sym_argument_list_no_parens] = STATE(3605), - [sym_argument_list_no_parens_with_block] = STATE(3605), - [sym_argument_list_with_parens] = STATE(3605), - [sym_argument_list_with_parens_and_block] = STATE(3605), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_COLON2] = ACTIONS(1201), - [anon_sym_do] = ACTIONS(1201), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1199), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(1109), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(1111), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(1125), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1127), - }, - [279] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5705), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5002), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(5733), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), - [sym_heredoc_body] = STATE(279), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_splat] = STATE(5706), - [sym_double_splat] = STATE(5706), - [sym_named_expr] = STATE(5706), - [sym_argument_list_no_parens] = STATE(6102), - [sym_argument_list_no_parens_with_block] = STATE(6102), - [sym_argument_list_with_parens] = STATE(6102), - [sym_argument_list_with_parens_and_block] = STATE(6102), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_block_argument] = STATE(5842), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(2078), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(2120), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_then] = ACTIONS(1201), - [anon_sym_case] = ACTIONS(2132), - [sym__line_break] = ACTIONS(1199), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(2142), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(2144), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(785), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2166), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_splat] = STATE(5667), + [sym_double_splat] = STATE(5667), + [sym_named_expr] = STATE(5667), + [sym_argument_list_no_parens] = STATE(6186), + [sym_argument_list_no_parens_with_block] = STATE(6186), + [sym_argument_list_with_parens] = STATE(6186), + [sym_argument_list_with_parens_and_block] = STATE(6186), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_block_argument] = STATE(5978), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(2095), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(2131), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(2137), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_LPAREN2] = ACTIONS(2141), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_then] = ACTIONS(1213), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_break] = ACTIONS(1211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(2161), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(2163), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(761), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2185), }, - [280] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(280), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9835), - [sym_else] = STATE(10531), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [278] = { + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(278), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(10039), + [sym_else] = STATE(10935), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -82500,7 +82936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2168), + [anon_sym_end] = ACTIONS(2187), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -82539,120 +82975,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [281] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(281), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(10292), - [sym_else] = STATE(10797), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [279] = { + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(279), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9901), + [sym_else] = STATE(10614), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -82670,7 +83108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2170), + [anon_sym_end] = ACTIONS(2189), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -82709,290 +83147,810 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, + [280] = { + [sym__statements] = STATE(9589), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(280), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(2191), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(2191), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(2193), + [sym__regular_ensure_keyword] = ACTIONS(2193), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [281] = { + [sym__statements] = STATE(9590), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(281), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(2195), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(2195), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(2197), + [sym__regular_ensure_keyword] = ACTIONS(2197), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, [282] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5452), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2610), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(282), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5437), - [sym_double_splat] = STATE(5437), - [sym_named_expr] = STATE(5437), - [sym_argument_list_no_parens] = STATE(3806), - [sym_argument_list_no_parens_with_block] = STATE(3806), - [sym_argument_list_with_parens] = STATE(3806), - [sym_argument_list_with_parens_and_block] = STATE(3806), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(3808), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_COLON2] = ACTIONS(1197), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1195), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(1109), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(1111), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(1125), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1127), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2061), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2199), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(2199), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(2201), + [anon_sym_else] = ACTIONS(2201), + [anon_sym_when] = ACTIONS(2201), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(2201), + [sym__line_break] = ACTIONS(2199), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2199), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(2199), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(2199), + [sym__modifier_rescue_keyword] = ACTIONS(2199), + [sym__modifier_ensure_keyword] = ACTIONS(2199), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), }, [283] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5503), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(283), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9720), - [sym_else] = STATE(11442), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5480), + [sym_double_splat] = STATE(5480), + [sym_named_expr] = STATE(5480), + [sym_argument_list_no_parens] = STATE(3680), + [sym_argument_list_no_parens_with_block] = STATE(3680), + [sym_argument_list_with_parens] = STATE(3680), + [sym_argument_list_with_parens_and_block] = STATE(3680), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_COLON2] = ACTIONS(1217), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1215), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(1125), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(1127), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(1141), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1143), + }, + [284] = { + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(284), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(10084), + [sym_else] = STATE(11038), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -83010,7 +83968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2172), + [anon_sym_end] = ACTIONS(2203), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -83049,290 +84007,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [284] = { - [sym__statements] = STATE(9609), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(284), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(2174), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(2174), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(2176), - [sym__regular_ensure_keyword] = ACTIONS(2176), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, [285] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5666), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(4914), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(5648), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(285), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(10250), - [sym_else] = STATE(11597), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_splat] = STATE(5667), + [sym_double_splat] = STATE(5667), + [sym_named_expr] = STATE(5667), + [sym_argument_list_no_parens] = STATE(5918), + [sym_argument_list_no_parens_with_block] = STATE(5918), + [sym_argument_list_with_parens] = STATE(5918), + [sym_argument_list_with_parens_and_block] = STATE(5918), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_block_argument] = STATE(5978), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(2095), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_COMMA] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(2131), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(2137), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_LPAREN2] = ACTIONS(2141), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_then] = ACTIONS(1217), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_break] = ACTIONS(1215), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(2161), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(2163), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(761), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2185), + }, + [286] = { + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(286), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(10279), + [sym_else] = STATE(11599), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -83350,7 +84312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2178), + [anon_sym_end] = ACTIONS(2205), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -83389,460 +84351,466 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [286] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5705), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5002), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(5733), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), - [sym_heredoc_body] = STATE(286), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_splat] = STATE(5706), - [sym_double_splat] = STATE(5706), - [sym_named_expr] = STATE(5706), - [sym_argument_list_no_parens] = STATE(6104), - [sym_argument_list_no_parens_with_block] = STATE(6104), - [sym_argument_list_with_parens] = STATE(6104), - [sym_argument_list_with_parens_and_block] = STATE(6104), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_block_argument] = STATE(5842), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(2078), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(2120), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_then] = ACTIONS(1197), - [anon_sym_case] = ACTIONS(2132), - [sym__line_break] = ACTIONS(1195), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(2142), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(2144), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(785), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2166), - }, [287] = { - [sym__statements] = STATE(9368), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__statements] = STATE(9526), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(287), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(2180), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(2207), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(2180), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(2182), - [sym__regular_ensure_keyword] = ACTIONS(2182), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(2207), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(2209), + [sym__regular_ensure_keyword] = ACTIONS(2209), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [288] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2611), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(288), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(9965), - [sym_else] = STATE(10840), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [ts_builtin_sym_end] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2061), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_RPAREN] = ACTIONS(2211), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(2211), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_end] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(161), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_elsif] = ACTIONS(2213), + [anon_sym_else] = ACTIONS(2213), + [anon_sym_when] = ACTIONS(2213), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [anon_sym_in] = ACTIONS(2213), + [sym__line_break] = ACTIONS(2211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2211), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__modifier_if_keyword] = ACTIONS(2211), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__modifier_unless_keyword] = ACTIONS(2211), + [sym__modifier_rescue_keyword] = ACTIONS(2211), + [sym__modifier_ensure_keyword] = ACTIONS(2211), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [289] = { + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(289), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(10250), + [sym_else] = STATE(11542), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -83860,7 +84828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2184), + [anon_sym_end] = ACTIONS(2215), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -83899,460 +84867,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [289] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5463), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), - [sym_heredoc_body] = STATE(289), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5586), - [sym_double_splat] = STATE(5586), - [sym_named_expr] = STATE(5586), - [sym_argument_list_no_parens] = STATE(6066), - [sym_argument_list_no_parens_with_block] = STATE(6066), - [sym_argument_list_with_parens] = STATE(6066), - [sym_argument_list_with_parens_and_block] = STATE(6066), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_block_argument] = STATE(5898), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_do] = ACTIONS(1201), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1199), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym__end_of_with_expression] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(1039), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(1041), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(1079), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1081), - }, [290] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5463), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5503), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(290), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5586), - [sym_double_splat] = STATE(5586), - [sym_named_expr] = STATE(5586), - [sym_argument_list_no_parens] = STATE(5897), - [sym_argument_list_no_parens_with_block] = STATE(5897), - [sym_argument_list_with_parens] = STATE(5897), - [sym_argument_list_with_parens_and_block] = STATE(5897), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_block_argument] = STATE(5898), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(963), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_LPAREN2] = ACTIONS(1071), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_do] = ACTIONS(1197), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(1195), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym__end_of_with_expression] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(1039), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(1041), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(1079), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(1081), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5480), + [sym_double_splat] = STATE(5480), + [sym_named_expr] = STATE(5480), + [sym_argument_list_no_parens] = STATE(3769), + [sym_argument_list_no_parens_with_block] = STATE(3769), + [sym_argument_list_with_parens] = STATE(3769), + [sym_argument_list_with_parens_and_block] = STATE(3769), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(3681), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(655), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_COLON2] = ACTIONS(1213), + [anon_sym_do] = ACTIONS(1213), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1211), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(1125), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(1127), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(1141), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1143), }, [291] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(291), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(10201), - [sym_else] = STATE(11465), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(9780), + [sym_else] = STATE(11411), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -84370,7 +85172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2186), + [anon_sym_end] = ACTIONS(2217), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -84409,460 +85211,466 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [292] = { - [sym__statements] = STATE(9596), - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8139), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5749), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(292), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(300), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(2188), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(2188), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(2190), - [sym__regular_ensure_keyword] = ACTIONS(2190), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5703), + [sym_double_splat] = STATE(5703), + [sym_named_expr] = STATE(5703), + [sym_argument_list_no_parens] = STATE(6003), + [sym_argument_list_no_parens_with_block] = STATE(6003), + [sym_argument_list_with_parens] = STATE(6003), + [sym_argument_list_with_parens_and_block] = STATE(6003), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_block_argument] = STATE(6037), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(977), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_LPAREN2] = ACTIONS(1087), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(1215), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym__end_of_with_expression] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(1055), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(1057), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(1095), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(1097), }, [293] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2605), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__statements] = STATE(9437), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8172), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(293), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2036), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2038), - [anon_sym_RPAREN] = ACTIONS(2192), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(2192), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_end] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_elsif] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_when] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(201), - [anon_sym_in] = ACTIONS(2194), - [sym__line_break] = ACTIONS(2192), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2192), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__modifier_if_keyword] = ACTIONS(2192), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__modifier_unless_keyword] = ACTIONS(2192), - [sym__modifier_rescue_keyword] = ACTIONS(2192), - [sym__modifier_ensure_keyword] = ACTIONS(2192), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(319), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(2219), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(2219), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(2221), + [sym__regular_ensure_keyword] = ACTIONS(2221), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [294] = { - [sym__statements] = STATE(10111), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(9833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(294), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_then] = STATE(10048), - [sym_else] = STATE(11074), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_then] = STATE(10237), + [sym_else] = STATE(11507), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -84880,7 +85688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2196), + [anon_sym_end] = ACTIONS(2223), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -84919,121 +85727,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_else] = ACTIONS(2000), + [anon_sym_else] = ACTIONS(2025), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [295] = { - [sym__statements] = STATE(10753), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(11783), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(295), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -85048,13 +85858,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2198), + [anon_sym_end] = ACTIONS(2225), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2200), + [anon_sym_LT] = ACTIONS(2227), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -85084,294 +85894,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [296] = { - [sym__statements] = STATE(11544), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(9088), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(296), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2204), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_private] = ACTIONS(39), - [anon_sym_module] = ACTIONS(41), - [anon_sym_abstract] = ACTIONS(43), - [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2206), - [anon_sym_struct] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(59), - [anon_sym_include] = ACTIONS(61), - [anon_sym_extend] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_next] = ACTIONS(67), - [anon_sym_break] = ACTIONS(69), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(91), - [sym_class_var] = ACTIONS(91), - [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), - [anon_sym_alias] = ACTIONS(93), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_require] = ACTIONS(101), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_multi_assign_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_LPAREN] = ACTIONS(1839), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1842), + [sym_true] = ACTIONS(1842), + [sym_false] = ACTIONS(1842), + [aux_sym_integer_token2] = ACTIONS(1845), + [aux_sym_float_token2] = ACTIONS(1848), + [anon_sym_SQUOTE] = ACTIONS(1851), + [sym_operator_symbol] = ACTIONS(1854), + [sym_unquoted_symbol] = ACTIONS(1854), + [anon_sym_COLON_DQUOTE] = ACTIONS(1857), + [anon_sym_BQUOTE] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_DASH_GT] = ACTIONS(1866), + [anon_sym_annotation] = ACTIONS(1869), + [anon_sym_end] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1874), + [anon_sym_private] = ACTIONS(1877), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_abstract] = ACTIONS(1883), + [anon_sym_class] = ACTIONS(1886), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_BANG] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1901), + [anon_sym_def] = ACTIONS(1904), + [anon_sym_protected] = ACTIONS(1907), + [anon_sym_include] = ACTIONS(1910), + [anon_sym_extend] = ACTIONS(1913), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_next] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1922), + [anon_sym_with] = ACTIONS(1925), + [anon_sym_yield] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(1931), + [anon_sym_sizeof] = ACTIONS(1934), + [anon_sym_instance_sizeof] = ACTIONS(1937), + [anon_sym_offsetof] = ACTIONS(1940), + [sym__constant_segment] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(1946), + [anon_sym___LINE__] = ACTIONS(1949), + [anon_sym___END_LINE__] = ACTIONS(1949), + [anon_sym___FILE__] = ACTIONS(1949), + [anon_sym___DIR__] = ACTIONS(1949), + [sym_special_variable] = ACTIONS(1854), + [sym_identifier_method_call] = ACTIONS(1952), + [sym_instance_var] = ACTIONS(1955), + [sym_class_var] = ACTIONS(1955), + [sym_self] = ACTIONS(1842), + [anon_sym_alias] = ACTIONS(1958), + [anon_sym_begin] = ACTIONS(1961), + [anon_sym_while] = ACTIONS(1964), + [anon_sym_until] = ACTIONS(1967), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_require] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1973), + [anon_sym_select] = ACTIONS(1976), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1979), + [sym__start_of_named_tuple] = ACTIONS(1982), + [sym_unary_plus] = ACTIONS(1985), + [sym_unary_minus] = ACTIONS(1985), + [sym_unary_wrapping_plus] = ACTIONS(1988), + [sym_unary_wrapping_minus] = ACTIONS(1988), + [sym__beginless_range_operator] = ACTIONS(1991), + [sym__regex_start] = ACTIONS(1994), + [sym__regular_if_keyword] = ACTIONS(1997), + [sym__regular_unless_keyword] = ACTIONS(2000), + [sym__regular_rescue_keyword] = ACTIONS(1831), + [sym__regular_ensure_keyword] = ACTIONS(1831), + [sym__string_literal_start] = ACTIONS(2003), + [sym__string_percent_literal_start] = ACTIONS(2006), + [sym__command_percent_literal_start] = ACTIONS(2009), + [sym__string_array_percent_literal_start] = ACTIONS(2012), + [sym__symbol_array_percent_literal_start] = ACTIONS(2015), + [sym__regex_percent_literal_start] = ACTIONS(2018), + [sym_heredoc_start] = ACTIONS(1854), [sym__heredoc_body_start] = ACTIONS(7), }, [297] = { - [sym__statements] = STATE(11604), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(11283), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(297), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -85386,13 +86200,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2208), + [anon_sym_end] = ACTIONS(2234), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2210), + [anon_sym_LT] = ACTIONS(2236), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -85422,122 +86236,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [298] = { - [sym__statements] = STATE(10158), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(10220), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(298), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -85555,7 +86371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2212), + [anon_sym_end] = ACTIONS(2238), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -85594,122 +86410,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_else] = ACTIONS(2212), + [anon_sym_else] = ACTIONS(2238), [anon_sym_require] = ACTIONS(101), - [anon_sym_when] = ACTIONS(2212), + [anon_sym_when] = ACTIONS(2238), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [299] = { - [sym__statements] = STATE(10754), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(10751), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(299), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -85724,13 +86542,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2214), + [anon_sym_end] = ACTIONS(2240), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2216), + [anon_sym_LT] = ACTIONS(2242), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -85760,438 +86578,615 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [300] = { - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8110), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5796), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5078), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(5830), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(300), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym__statements_repeat1] = STATE(318), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_SEMI] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_end] = ACTIONS(1990), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1990), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__regular_rescue_keyword] = ACTIONS(1988), - [sym__regular_ensure_keyword] = ACTIONS(1988), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(5841), + [sym_double_splat] = STATE(5841), + [sym_named_expr] = STATE(5841), + [sym_argument_list_no_parens] = STATE(4381), + [sym_argument_list_no_parens_with_block] = STATE(4381), + [sym_argument_list_with_parens] = STATE(4381), + [sym_argument_list_with_parens_and_block] = STATE(4381), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(1637), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1211), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_EQ_GT] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2254), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2256), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(2264), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(847), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2270), }, [301] = { - [sym__statements] = STATE(9830), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6073), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(301), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2218), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_private] = ACTIONS(39), - [anon_sym_module] = ACTIONS(41), - [anon_sym_abstract] = ACTIONS(43), - [anon_sym_class] = ACTIONS(45), - [anon_sym_struct] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(59), - [anon_sym_include] = ACTIONS(61), - [anon_sym_extend] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_next] = ACTIONS(67), - [anon_sym_break] = ACTIONS(69), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(91), - [sym_class_var] = ACTIONS(91), - [sym_self] = ACTIONS(17), - [anon_sym_alias] = ACTIONS(93), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_else] = ACTIONS(2218), - [anon_sym_require] = ACTIONS(101), - [anon_sym_when] = ACTIONS(2218), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(5868), + [sym_double_splat] = STATE(5868), + [sym_named_expr] = STATE(5868), + [sym_argument_list_no_parens] = STATE(6331), + [sym_argument_list_no_parens_with_block] = STATE(6331), + [sym_argument_list_with_parens] = STATE(6331), + [sym_argument_list_with_parens_and_block] = STATE(6331), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_block_argument] = STATE(6308), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2274), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(1215), + [anon_sym_RBRACK] = ACTIONS(1217), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_LPAREN2] = ACTIONS(2320), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_RBRACK_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(2340), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(2342), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(935), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2364), }, [302] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2895), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5796), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5078), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(5830), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(302), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [ts_builtin_sym_end] = ACTIONS(2034), - [sym_identifier] = ACTIONS(2220), - [anon_sym_SEMI] = ACTIONS(2034), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(5841), + [sym_double_splat] = STATE(5841), + [sym_named_expr] = STATE(5841), + [sym_argument_list_no_parens] = STATE(4499), + [sym_argument_list_no_parens_with_block] = STATE(4499), + [sym_argument_list_with_parens] = STATE(4499), + [sym_argument_list_with_parens_and_block] = STATE(4499), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(1637), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(1215), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(1215), + [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2254), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2256), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(2264), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(847), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2270), + }, + [303] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3156), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(303), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [ts_builtin_sym_end] = ACTIONS(2073), + [sym_identifier] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2073), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2034), + [anon_sym_RPAREN] = ACTIONS(2073), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -86199,38 +87194,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2073), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_COMMA] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_end] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_end] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -86242,125 +87237,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(2040), - [anon_sym_else] = ACTIONS(2040), - [anon_sym_when] = ACTIONS(2040), + [anon_sym_elsif] = ACTIONS(2075), + [anon_sym_else] = ACTIONS(2075), + [anon_sym_when] = ACTIONS(2075), [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(2040), - [sym__line_break] = ACTIONS(2034), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__modifier_if_keyword] = ACTIONS(2034), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__modifier_unless_keyword] = ACTIONS(2034), - [sym__modifier_rescue_keyword] = ACTIONS(2034), - [sym__modifier_ensure_keyword] = ACTIONS(2034), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(2075), + [sym__line_break] = ACTIONS(2073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__modifier_if_keyword] = ACTIONS(2073), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__modifier_unless_keyword] = ACTIONS(2073), + [sym__modifier_rescue_keyword] = ACTIONS(2073), + [sym__modifier_ensure_keyword] = ACTIONS(2073), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2224), + [sym__end_of_range] = ACTIONS(2370), }, - [303] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3009), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(303), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [ts_builtin_sym_end] = ACTIONS(2048), - [sym_identifier] = ACTIONS(2220), - [anon_sym_SEMI] = ACTIONS(2048), + [304] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3045), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(304), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [ts_builtin_sym_end] = ACTIONS(2059), + [sym_identifier] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2059), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2048), + [anon_sym_RPAREN] = ACTIONS(2059), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -86368,38 +87365,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2048), + [anon_sym_RBRACE] = ACTIONS(2059), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_end] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_end] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -86411,150 +87408,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(2050), - [anon_sym_else] = ACTIONS(2050), - [anon_sym_when] = ACTIONS(2050), + [anon_sym_elsif] = ACTIONS(2065), + [anon_sym_else] = ACTIONS(2065), + [anon_sym_when] = ACTIONS(2065), [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(2050), - [sym__line_break] = ACTIONS(2048), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__modifier_if_keyword] = ACTIONS(2048), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__modifier_unless_keyword] = ACTIONS(2048), - [sym__modifier_rescue_keyword] = ACTIONS(2048), - [sym__modifier_ensure_keyword] = ACTIONS(2048), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(2065), + [sym__line_break] = ACTIONS(2059), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__modifier_if_keyword] = ACTIONS(2059), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__modifier_unless_keyword] = ACTIONS(2059), + [sym__modifier_rescue_keyword] = ACTIONS(2059), + [sym__modifier_ensure_keyword] = ACTIONS(2059), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2226), + [sym__end_of_range] = ACTIONS(2372), }, - [304] = { - [sym__statements] = STATE(11913), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(304), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [305] = { + [sym__statements] = STATE(11385), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(305), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -86569,13 +87568,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2228), + [anon_sym_end] = ACTIONS(2374), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2376), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -86605,294 +87604,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [305] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6071), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), - [sym_heredoc_body] = STATE(305), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(6150), - [sym_double_splat] = STATE(6150), - [sym_named_expr] = STATE(6150), - [sym_argument_list_no_parens] = STATE(6623), - [sym_argument_list_no_parens_with_block] = STATE(6623), - [sym_argument_list_with_parens] = STATE(6623), - [sym_argument_list_with_parens_and_block] = STATE(6623), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_block_argument] = STATE(6462), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2234), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_RBRACK] = ACTIONS(1197), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(2280), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_RBRACK_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(2298), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(2300), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(871), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2322), - }, [306] = { - [sym__statements] = STATE(11916), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(12033), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(306), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -86907,13 +87739,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2324), + [anon_sym_end] = ACTIONS(2378), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2326), + [anon_sym_LT] = ACTIONS(2380), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -86943,125 +87775,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [307] = { - [sym__statements] = STATE(9833), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(10754), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(307), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -87076,12 +87910,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2218), + [anon_sym_end] = ACTIONS(2382), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), + [anon_sym_LT] = ACTIONS(2384), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -87111,292 +87946,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_else] = ACTIONS(2218), [anon_sym_require] = ACTIONS(101), - [anon_sym_when] = ACTIONS(2218), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [308] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5770), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5092), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(5829), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__statements] = STATE(11102), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(308), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(5960), - [sym_double_splat] = STATE(5960), - [sym_named_expr] = STATE(5960), - [sym_argument_list_no_parens] = STATE(4389), - [sym_argument_list_no_parens_with_block] = STATE(4389), - [sym_argument_list_with_parens] = STATE(4389), - [sym_argument_list_with_parens_and_block] = STATE(4389), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(1625), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1195), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_EQ_GT] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(2330), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2338), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2340), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(2348), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(2350), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(941), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2354), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(1225), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2386), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_private] = ACTIONS(39), + [anon_sym_module] = ACTIONS(41), + [anon_sym_abstract] = ACTIONS(43), + [anon_sym_class] = ACTIONS(45), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_struct] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(53), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(59), + [anon_sym_include] = ACTIONS(61), + [anon_sym_extend] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_next] = ACTIONS(67), + [anon_sym_break] = ACTIONS(69), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(91), + [sym_class_var] = ACTIONS(91), + [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(93), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_require] = ACTIONS(101), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), }, [309] = { - [sym__statements] = STATE(9827), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(10071), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(309), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -87414,7 +88252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2218), + [anon_sym_end] = ACTIONS(2390), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -87453,122 +88291,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_else] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2390), [anon_sym_require] = ACTIONS(101), - [anon_sym_when] = ACTIONS(2218), + [anon_sym_when] = ACTIONS(2390), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [310] = { - [sym__statements] = STATE(11747), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(11103), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(310), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -87583,13 +88423,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2356), + [anon_sym_end] = ACTIONS(2392), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2358), + [anon_sym_LT] = ACTIONS(2394), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -87619,125 +88459,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [311] = { - [sym__statements] = STATE(10992), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(9847), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(311), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -87752,13 +88594,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2360), + [anon_sym_end] = ACTIONS(2390), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2362), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -87788,125 +88629,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), + [anon_sym_else] = ACTIONS(2390), [anon_sym_require] = ACTIONS(101), + [anon_sym_when] = ACTIONS(2390), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [312] = { - [sym__statements] = STATE(11471), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(9784), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(312), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -87921,13 +88765,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2364), + [anon_sym_end] = ACTIONS(2390), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2366), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -87957,122 +88800,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), + [anon_sym_else] = ACTIONS(2390), [anon_sym_require] = ACTIONS(101), + [anon_sym_when] = ACTIONS(2390), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [313] = { - [sym__statements] = STATE(9810), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(9769), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(313), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -88090,7 +88936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2218), + [anon_sym_end] = ACTIONS(2390), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -88129,122 +88975,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_else] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2390), [anon_sym_require] = ACTIONS(101), - [anon_sym_when] = ACTIONS(2218), + [anon_sym_when] = ACTIONS(2390), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [314] = { - [sym__statements] = STATE(11849), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(10624), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(314), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -88259,13 +89107,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2368), + [anon_sym_end] = ACTIONS(2396), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2398), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -88295,125 +89143,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [315] = { - [sym__statements] = STATE(10993), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(11821), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(315), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -88428,13 +89278,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2372), + [anon_sym_end] = ACTIONS(2400), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2402), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -88464,125 +89314,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [316] = { - [sym__statements] = STATE(11888), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(11461), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(316), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -88597,13 +89449,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2376), + [anon_sym_end] = ACTIONS(2404), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2406), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -88633,463 +89485,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [317] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6071), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__statements] = STATE(11202), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(317), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(6150), - [sym_double_splat] = STATE(6150), - [sym_named_expr] = STATE(6150), - [sym_argument_list_no_parens] = STATE(6313), - [sym_argument_list_no_parens_with_block] = STATE(6313), - [sym_argument_list_with_parens] = STATE(6313), - [sym_argument_list_with_parens_and_block] = STATE(6313), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_block_argument] = STATE(6462), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2234), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_RBRACK] = ACTIONS(1201), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_LPAREN2] = ACTIONS(2280), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_RBRACK_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(2298), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(2300), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(871), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2322), - }, - [318] = { - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(9033), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(318), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(318), - [aux_sym_multi_assign_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(1797), - [anon_sym_SEMI] = ACTIONS(2380), - [anon_sym_LPAREN] = ACTIONS(1803), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1806), - [sym_true] = ACTIONS(1806), - [sym_false] = ACTIONS(1806), - [aux_sym_integer_token2] = ACTIONS(1809), - [aux_sym_float_token2] = ACTIONS(1812), - [anon_sym_SQUOTE] = ACTIONS(1815), - [sym_operator_symbol] = ACTIONS(1818), - [sym_unquoted_symbol] = ACTIONS(1818), - [anon_sym_COLON_DQUOTE] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_DASH_GT] = ACTIONS(1830), - [anon_sym_annotation] = ACTIONS(1833), - [anon_sym_end] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1838), - [anon_sym_private] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1844), - [anon_sym_abstract] = ACTIONS(1847), - [anon_sym_class] = ACTIONS(1850), - [anon_sym_struct] = ACTIONS(1853), - [anon_sym_enum] = ACTIONS(1856), - [anon_sym_STAR] = ACTIONS(1859), - [anon_sym_BANG] = ACTIONS(1862), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_def] = ACTIONS(1868), - [anon_sym_protected] = ACTIONS(1871), - [anon_sym_include] = ACTIONS(1874), - [anon_sym_extend] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_next] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1886), - [anon_sym_with] = ACTIONS(1889), - [anon_sym_yield] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(1895), - [anon_sym_sizeof] = ACTIONS(1898), - [anon_sym_instance_sizeof] = ACTIONS(1901), - [anon_sym_offsetof] = ACTIONS(1904), - [sym__constant_segment] = ACTIONS(1907), - [anon_sym_COLON_COLON] = ACTIONS(1910), - [anon_sym___LINE__] = ACTIONS(1913), - [anon_sym___END_LINE__] = ACTIONS(1913), - [anon_sym___FILE__] = ACTIONS(1913), - [anon_sym___DIR__] = ACTIONS(1913), - [sym_special_variable] = ACTIONS(1818), - [sym_identifier_method_call] = ACTIONS(1916), - [sym_instance_var] = ACTIONS(1919), - [sym_class_var] = ACTIONS(1919), - [sym_self] = ACTIONS(1806), - [anon_sym_alias] = ACTIONS(1922), - [anon_sym_begin] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_until] = ACTIONS(1931), - [anon_sym_else] = ACTIONS(1836), - [anon_sym_require] = ACTIONS(1934), - [anon_sym_case] = ACTIONS(1937), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1940), - [sym__start_of_named_tuple] = ACTIONS(1943), - [sym_unary_plus] = ACTIONS(1946), - [sym_unary_minus] = ACTIONS(1946), - [sym_unary_wrapping_plus] = ACTIONS(1949), - [sym_unary_wrapping_minus] = ACTIONS(1949), - [sym__beginless_range_operator] = ACTIONS(1952), - [sym__regex_start] = ACTIONS(1955), - [sym__regular_if_keyword] = ACTIONS(1958), - [sym__regular_unless_keyword] = ACTIONS(1961), - [sym__regular_rescue_keyword] = ACTIONS(1795), - [sym__regular_ensure_keyword] = ACTIONS(1795), - [sym__string_literal_start] = ACTIONS(1964), - [sym__string_percent_literal_start] = ACTIONS(1967), - [sym__command_percent_literal_start] = ACTIONS(1970), - [sym__string_array_percent_literal_start] = ACTIONS(1973), - [sym__symbol_array_percent_literal_start] = ACTIONS(1976), - [sym__regex_percent_literal_start] = ACTIONS(1979), - [sym_heredoc_start] = ACTIONS(1818), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [319] = { - [sym__statements] = STATE(11000), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(319), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -89104,13 +89620,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2383), + [anon_sym_end] = ACTIONS(2408), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(2410), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -89140,125 +89656,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [320] = { - [sym__statements] = STATE(10573), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(320), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [318] = { + [sym__statements] = STATE(11419), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(318), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -89273,13 +89791,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2387), + [anon_sym_end] = ACTIONS(2412), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2389), + [anon_sym_LT] = ACTIONS(2414), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -89309,125 +89827,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [321] = { - [sym__statements] = STATE(11377), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(321), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [319] = { + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8159), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(319), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1829), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(1829), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__regular_rescue_keyword] = ACTIONS(1827), + [sym__regular_ensure_keyword] = ACTIONS(1827), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [320] = { + [sym__statements] = STATE(11282), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(320), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -89442,13 +90133,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2391), + [anon_sym_end] = ACTIONS(2416), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2393), + [anon_sym_LT] = ACTIONS(2418), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -89478,125 +90169,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, + [321] = { + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6073), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), + [sym_heredoc_body] = STATE(321), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(5868), + [sym_double_splat] = STATE(5868), + [sym_named_expr] = STATE(5868), + [sym_argument_list_no_parens] = STATE(6436), + [sym_argument_list_no_parens_with_block] = STATE(6436), + [sym_argument_list_with_parens] = STATE(6436), + [sym_argument_list_with_parens_and_block] = STATE(6436), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_block_argument] = STATE(6308), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2274), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_RBRACK] = ACTIONS(1213), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_LPAREN2] = ACTIONS(2320), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_RBRACK_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(2340), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(2342), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(935), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2364), + }, [322] = { - [sym__statements] = STATE(11358), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(11820), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(322), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -89611,13 +90475,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2395), + [anon_sym_end] = ACTIONS(2420), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2397), + [anon_sym_LT] = ACTIONS(2422), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -89647,125 +90511,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [323] = { - [sym__statements] = STATE(11658), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(10625), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(323), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -89780,13 +90646,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2399), + [anon_sym_end] = ACTIONS(2424), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2401), + [anon_sym_LT] = ACTIONS(2426), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -89816,294 +90682,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [324] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5770), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5092), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(5829), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__statements] = STATE(11201), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(324), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(5960), - [sym_double_splat] = STATE(5960), - [sym_named_expr] = STATE(5960), - [sym_argument_list_no_parens] = STATE(4494), - [sym_argument_list_no_parens_with_block] = STATE(4494), - [sym_argument_list_with_parens] = STATE(4494), - [sym_argument_list_with_parens_and_block] = STATE(4494), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(1625), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1199), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_EQ_GT] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(2330), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2338), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2340), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(2348), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(2350), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(941), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2354), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(1225), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2428), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_private] = ACTIONS(39), + [anon_sym_module] = ACTIONS(41), + [anon_sym_abstract] = ACTIONS(43), + [anon_sym_class] = ACTIONS(45), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_struct] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(53), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(59), + [anon_sym_include] = ACTIONS(61), + [anon_sym_extend] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_next] = ACTIONS(67), + [anon_sym_break] = ACTIONS(69), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(91), + [sym_class_var] = ACTIONS(91), + [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2229), + [anon_sym_alias] = ACTIONS(93), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_require] = ACTIONS(101), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), }, [325] = { - [sym__statements] = STATE(10574), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(12031), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(325), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -90118,13 +90988,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2403), + [anon_sym_end] = ACTIONS(2432), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2434), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -90154,122 +91024,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [326] = { - [sym__statements] = STATE(11891), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(10456), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(326), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -90286,9 +91158,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), - [aux_sym_proc_token1] = ACTIONS(2407), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2409), + [anon_sym_end] = ACTIONS(2436), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -90329,118 +91200,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(2436), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [327] = { - [sym__statements] = STATE(10992), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(11224), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(327), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -90455,13 +91329,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2360), + [anon_sym_end] = ACTIONS(2438), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2362), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -90491,121 +91364,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [328] = { - [sym__statements] = STATE(10993), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(11385), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(328), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -90623,13 +91499,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2372), + [anon_sym_end] = ACTIONS(2374), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2376), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -90665,118 +91541,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [329] = { - [sym__statements] = STATE(11027), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(11461), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(329), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -90791,12 +91669,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2411), + [anon_sym_end] = ACTIONS(2404), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), + [anon_sym_LT] = ACTIONS(2406), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -90826,125 +91705,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2413), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [330] = { - [sym__statements] = STATE(11031), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5806), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(4914), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(5648), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(330), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_splat] = STATE(5809), + [sym_double_splat] = STATE(5809), + [sym_named_expr] = STATE(5809), + [sym_argument_list_no_parens] = STATE(5918), + [sym_argument_list_no_parens_with_block] = STATE(5918), + [sym_argument_list_with_parens] = STATE(5918), + [sym_argument_list_with_parens_and_block] = STATE(5918), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_block_argument] = STATE(5978), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(1215), + [anon_sym_LPAREN] = ACTIONS(2095), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(2131), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(2137), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_LPAREN2] = ACTIONS(2141), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_break] = ACTIONS(1215), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(2161), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(2163), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(1151), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2440), + }, + [331] = { + [sym__statements] = STATE(11783), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(331), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -90959,12 +92009,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2415), + [anon_sym_end] = ACTIONS(2225), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), + [anon_sym_LT] = ACTIONS(2227), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -90994,125 +92045,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2413), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [331] = { - [sym__statements] = STATE(11207), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(331), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [332] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6575), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(6507), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(332), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(6580), + [sym_double_splat] = STATE(6580), + [sym_named_expr] = STATE(6580), + [sym_argument_list_no_parens] = STATE(4381), + [sym_argument_list_no_parens_with_block] = STATE(4381), + [sym_argument_list_with_parens] = STATE(4381), + [sym_argument_list_with_parens_and_block] = STATE(4381), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(1637), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(2444), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2452), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2454), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_COLON2] = ACTIONS(1213), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(2462), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(2464), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(1129), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2468), + }, + [333] = { + [sym__statements] = STATE(11519), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(333), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -91126,8 +92348,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), + [aux_sym_proc_token1] = ACTIONS(2470), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2417), + [anon_sym_end] = ACTIONS(2472), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -91162,125 +92385,466 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2413), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [332] = { - [sym__statements] = STATE(11219), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(332), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [334] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3241), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(334), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [ts_builtin_sym_end] = ACTIONS(2073), + [sym_identifier] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2073), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2073), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_end] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), + [sym_self] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_elsif] = ACTIONS(2075), + [anon_sym_else] = ACTIONS(2075), + [anon_sym_when] = ACTIONS(2075), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(2075), + [sym__line_break] = ACTIONS(2073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__modifier_if_keyword] = ACTIONS(2073), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__modifier_unless_keyword] = ACTIONS(2073), + [sym__modifier_rescue_keyword] = ACTIONS(2073), + [sym__modifier_ensure_keyword] = ACTIONS(2073), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2480), + }, + [335] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5806), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(4914), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(5648), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(335), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_splat] = STATE(5809), + [sym_double_splat] = STATE(5809), + [sym_named_expr] = STATE(5809), + [sym_argument_list_no_parens] = STATE(6186), + [sym_argument_list_no_parens_with_block] = STATE(6186), + [sym_argument_list_with_parens] = STATE(6186), + [sym_argument_list_with_parens_and_block] = STATE(6186), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_block_argument] = STATE(5978), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(2093), + [anon_sym_SEMI] = ACTIONS(1211), + [anon_sym_LPAREN] = ACTIONS(2095), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(2131), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(2137), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_LPAREN2] = ACTIONS(2141), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_break] = ACTIONS(1211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(2161), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(2163), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(1151), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2440), + }, + [336] = { + [sym__statements] = STATE(11779), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(336), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -91288,6 +92852,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2482), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -91295,7 +92860,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2419), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -91304,6 +92868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(2484), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -91330,125 +92895,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2413), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [333] = { - [sym__statements] = STATE(11317), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(333), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [337] = { + [sym__statements] = STATE(11817), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(337), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -91463,7 +93029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2421), + [anon_sym_end] = ACTIONS(2486), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -91498,125 +93064,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [334] = { - [sym__statements] = STATE(11326), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(334), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [338] = { + [sym__statements] = STATE(11820), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(338), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -91631,12 +93199,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2423), + [anon_sym_end] = ACTIONS(2420), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), + [anon_sym_LT] = ACTIONS(2422), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -91666,122 +93235,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2413), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [335] = { - [sym__statements] = STATE(11000), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(335), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [339] = { + [sym__statements] = STATE(11821), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(339), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -91799,13 +93369,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2383), + [anon_sym_end] = ACTIONS(2400), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(2402), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -91841,115 +93411,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [336] = { - [sym__statements] = STATE(11620), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(336), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [340] = { + [sym__statements] = STATE(11822), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(340), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -91960,14 +93532,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2425), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), + [aux_sym_proc_token1] = ACTIONS(2488), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2490), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -91976,7 +93549,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(2427), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -92009,118 +93581,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [337] = { - [sym__statements] = STATE(11828), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(337), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [341] = { + [sym__statements] = STATE(10751), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(341), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -92135,12 +93709,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2429), + [anon_sym_end] = ACTIONS(2240), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), + [anon_sym_LT] = ACTIONS(2242), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -92170,125 +93745,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [338] = { - [sym__statements] = STATE(11849), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(338), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [342] = { + [sym__statements] = STATE(12025), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(342), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -92303,13 +93879,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2368), + [anon_sym_end] = ACTIONS(2492), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2370), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -92339,121 +93914,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [339] = { - [sym__statements] = STATE(11888), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(339), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [343] = { + [sym__statements] = STATE(12031), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(343), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -92471,13 +94049,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2376), + [anon_sym_end] = ACTIONS(2432), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2434), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -92513,451 +94091,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [340] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6618), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5164), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(6312), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(340), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(6619), - [sym_double_splat] = STATE(6619), - [sym_named_expr] = STATE(6619), - [sym_argument_list_no_parens] = STATE(4494), - [sym_argument_list_no_parens_with_block] = STATE(4494), - [sym_argument_list_with_parens] = STATE(4494), - [sym_argument_list_with_parens_and_block] = STATE(4494), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(1625), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2441), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2443), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_COLON2] = ACTIONS(1201), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(2451), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(2453), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(1113), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2457), - }, - [341] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6136), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5002), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(5733), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), - [sym_heredoc_body] = STATE(341), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_splat] = STATE(6169), - [sym_double_splat] = STATE(6169), - [sym_named_expr] = STATE(6169), - [sym_argument_list_no_parens] = STATE(6104), - [sym_argument_list_no_parens_with_block] = STATE(6104), - [sym_argument_list_with_parens] = STATE(6104), - [sym_argument_list_with_parens_and_block] = STATE(6104), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_block_argument] = STATE(5842), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(1195), - [anon_sym_LPAREN] = ACTIONS(2078), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(2120), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_break] = ACTIONS(1195), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(2142), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(2144), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(1135), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2459), + [344] = { + [sym__statements] = STATE(12033), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(344), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2378), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_private] = ACTIONS(39), + [anon_sym_module] = ACTIONS(41), + [anon_sym_abstract] = ACTIONS(43), + [anon_sym_class] = ACTIONS(45), + [anon_sym_LT] = ACTIONS(2380), + [anon_sym_struct] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(53), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(59), + [anon_sym_include] = ACTIONS(61), + [anon_sym_extend] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_next] = ACTIONS(67), + [anon_sym_break] = ACTIONS(69), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(91), + [sym_class_var] = ACTIONS(91), + [sym_self] = ACTIONS(17), + [anon_sym_alias] = ACTIONS(93), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_require] = ACTIONS(101), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), }, - [342] = { - [sym__statements] = STATE(11377), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(342), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [345] = { + [sym__statements] = STATE(10624), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(345), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -92975,13 +94389,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2391), + [anon_sym_end] = ACTIONS(2396), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2393), + [anon_sym_LT] = ACTIONS(2398), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -93017,118 +94431,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [343] = { - [sym__statements] = STATE(11501), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(343), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [346] = { + [sym__statements] = STATE(10625), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(346), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -93143,12 +94559,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2461), + [anon_sym_end] = ACTIONS(2424), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), + [anon_sym_LT] = ACTIONS(2426), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -93178,125 +94595,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2413), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [344] = { - [sym__statements] = STATE(10561), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(344), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [347] = { + [sym__statements] = STATE(10634), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(347), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -93311,7 +94729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2463), + [anon_sym_end] = ACTIONS(2494), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -93346,125 +94764,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2496), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [345] = { - [sym__statements] = STATE(10573), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(345), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [348] = { + [sym__statements] = STATE(10635), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(348), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -93479,13 +94899,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2387), + [anon_sym_end] = ACTIONS(2498), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2389), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -93515,121 +94934,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2496), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [346] = { - [sym__statements] = STATE(10574), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(346), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [349] = { + [sym__statements] = STATE(10754), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(349), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -93647,13 +95069,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2403), + [anon_sym_end] = ACTIONS(2382), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2405), + [anon_sym_LT] = ACTIONS(2384), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -93689,118 +95111,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [347] = { - [sym__statements] = STATE(10753), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(347), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [350] = { + [sym__statements] = STATE(10674), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(350), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -93815,13 +95239,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2198), + [anon_sym_end] = ACTIONS(2500), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2200), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -93851,124 +95274,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2496), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [348] = { - [sym__statements] = STATE(10754), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(348), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [351] = { + [sym__statements] = STATE(10675), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(351), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -93983,13 +95409,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2214), + [anon_sym_end] = ACTIONS(2502), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2216), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -94019,460 +95444,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2496), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [349] = { - [sym__statements] = STATE(10776), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(349), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2465), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_private] = ACTIONS(39), - [anon_sym_module] = ACTIONS(41), - [anon_sym_abstract] = ACTIONS(43), - [anon_sym_class] = ACTIONS(45), - [anon_sym_struct] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(59), - [anon_sym_include] = ACTIONS(61), - [anon_sym_extend] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_next] = ACTIONS(67), - [anon_sym_break] = ACTIONS(69), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(91), - [sym_class_var] = ACTIONS(91), - [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2413), - [anon_sym_alias] = ACTIONS(93), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_require] = ACTIONS(101), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [350] = { - [sym__statements] = STATE(10777), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(350), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2467), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_private] = ACTIONS(39), - [anon_sym_module] = ACTIONS(41), - [anon_sym_abstract] = ACTIONS(43), - [anon_sym_class] = ACTIONS(45), - [anon_sym_struct] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(59), - [anon_sym_include] = ACTIONS(61), - [anon_sym_extend] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_next] = ACTIONS(67), - [anon_sym_break] = ACTIONS(69), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(91), - [sym_class_var] = ACTIONS(91), - [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2413), - [anon_sym_alias] = ACTIONS(93), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_require] = ACTIONS(101), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [351] = { - [sym__statements] = STATE(10923), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(351), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [352] = { + [sym__statements] = STATE(10693), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(352), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -94487,7 +95579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2469), + [anon_sym_end] = ACTIONS(2504), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -94522,125 +95614,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_LPAREN2] = ACTIONS(2496), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [352] = { - [sym__statements] = STATE(10933), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(352), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [353] = { + [sym__statements] = STATE(10694), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(353), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -94655,7 +95749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2471), + [anon_sym_end] = ACTIONS(2506), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -94690,125 +95784,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_LPAREN2] = ACTIONS(2496), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [353] = { - [sym__statements] = STATE(10954), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(353), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [354] = { + [sym__statements] = STATE(11075), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(354), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -94816,6 +95912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2508), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -94823,7 +95920,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2473), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -94832,6 +95928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(2510), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -94858,125 +95955,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2413), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [354] = { - [sym__statements] = STATE(10955), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(354), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [355] = { + [sym__statements] = STATE(10858), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(355), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -94991,7 +96089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2475), + [anon_sym_end] = ACTIONS(2512), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -95026,125 +96124,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_LPAREN2] = ACTIONS(2496), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [355] = { - [sym__statements] = STATE(11506), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(355), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [356] = { + [sym__statements] = STATE(11100), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(356), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -95159,7 +96259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2477), + [anon_sym_end] = ACTIONS(2514), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -95194,122 +96294,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [356] = { - [sym__statements] = STATE(11258), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(356), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [357] = { + [sym__statements] = STATE(11102), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(357), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -95320,7 +96422,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2479), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -95328,15 +96429,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2386), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), + [anon_sym_LT] = ACTIONS(2388), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(2481), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -95369,118 +96471,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [357] = { - [sym__statements] = STATE(10673), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(357), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [358] = { + [sym__statements] = STATE(10869), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(358), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -95488,7 +96592,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2483), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -95496,6 +96599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2516), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -95504,7 +96608,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(2485), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -95531,289 +96634,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2496), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [358] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6136), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5002), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(5733), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), - [sym_heredoc_body] = STATE(358), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_splat] = STATE(6169), - [sym_double_splat] = STATE(6169), - [sym_named_expr] = STATE(6169), - [sym_argument_list_no_parens] = STATE(6102), - [sym_argument_list_no_parens_with_block] = STATE(6102), - [sym_argument_list_with_parens] = STATE(6102), - [sym_argument_list_with_parens_and_block] = STATE(6102), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_block_argument] = STATE(5842), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_SEMI] = ACTIONS(1199), - [anon_sym_LPAREN] = ACTIONS(2078), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(2120), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_LPAREN2] = ACTIONS(2124), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_break] = ACTIONS(1199), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(2142), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(2144), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(1135), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2459), - }, [359] = { - [sym__statements] = STATE(10626), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__statements] = STATE(11103), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(359), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -95824,7 +96762,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2487), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -95832,15 +96769,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2392), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), + [anon_sym_LT] = ACTIONS(2394), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(2489), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -95873,286 +96811,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [360] = { - [sym__statements] = STATE(10407), - [sym__parenthesized_statement] = STATE(4694), - [sym__statement] = STATE(8477), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(5013), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__statements] = STATE(11105), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(360), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_annotation_def] = STATE(8870), - [sym_annotation] = STATE(8870), - [sym_module_def] = STATE(8870), - [sym_class_def] = STATE(8870), - [sym_struct_def] = STATE(8870), - [sym_enum_def] = STATE(8870), - [sym__base_method_def] = STATE(198), - [sym_method_def] = STATE(8870), - [sym_abstract_method_def] = STATE(8870), - [sym_include] = STATE(8870), - [sym_extend] = STATE(8870), - [sym_return] = STATE(8870), - [sym_next] = STATE(8870), - [sym_break] = STATE(8870), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4580), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7763), - [sym_index_operator] = STATE(2300), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_const_assign] = STATE(8870), - [sym_operator_assign] = STATE(4694), - [sym_lhs_splat] = STATE(10484), - [sym_multi_assign] = STATE(8870), - [sym_type_declaration] = STATE(4694), - [sym_alias] = STATE(8870), - [sym_begin_block] = STATE(4694), - [sym_modifier_rescue] = STATE(8870), - [sym_modifier_ensure] = STATE(8870), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_modifier_if] = STATE(8870), - [sym_modifier_unless] = STATE(8870), - [sym_require] = STATE(8870), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [aux_sym__statements_repeat1] = STATE(414), - [aux_sym_multi_assign_repeat1] = STATE(982), - [sym_identifier] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_annotation] = ACTIONS(2499), - [anon_sym_end] = ACTIONS(2501), - [anon_sym_AT_LBRACK] = ACTIONS(2503), - [anon_sym_private] = ACTIONS(2505), - [anon_sym_module] = ACTIONS(2507), - [anon_sym_abstract] = ACTIONS(2509), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2513), - [anon_sym_enum] = ACTIONS(2515), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(2521), - [anon_sym_include] = ACTIONS(2523), - [anon_sym_extend] = ACTIONS(2525), - [anon_sym_return] = ACTIONS(2527), - [anon_sym_next] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2531), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2541), - [sym_class_var] = ACTIONS(2541), - [sym_self] = ACTIONS(1455), - [anon_sym_alias] = ACTIONS(2543), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_require] = ACTIONS(2545), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__regular_ensure_keyword] = ACTIONS(2555), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [361] = { - [sym__statements] = STATE(11510), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(361), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -96166,8 +96938,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), + [aux_sym_proc_token1] = ACTIONS(2518), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2557), + [anon_sym_end] = ACTIONS(2520), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -96202,293 +96975,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [362] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3190), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(362), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [ts_builtin_sym_end] = ACTIONS(2034), - [sym_identifier] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2034), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_end] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), - [sym_self] = ACTIONS(17), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(2040), - [anon_sym_else] = ACTIONS(2040), - [anon_sym_when] = ACTIONS(2040), - [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(2040), - [sym__line_break] = ACTIONS(2034), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__modifier_if_keyword] = ACTIONS(2034), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__modifier_unless_keyword] = ACTIONS(2034), - [sym__modifier_rescue_keyword] = ACTIONS(2034), - [sym__modifier_ensure_keyword] = ACTIONS(2034), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2565), }, - [363] = { - [sym__statements] = STATE(11556), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(363), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [361] = { + [sym__statements] = STATE(11196), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(361), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -96496,7 +97102,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2567), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -96504,6 +97109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2522), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -96512,7 +97118,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(2569), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -96539,289 +97144,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [364] = { - [sym__statements] = STATE(11013), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(364), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2571), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_private] = ACTIONS(39), - [anon_sym_module] = ACTIONS(41), - [anon_sym_abstract] = ACTIONS(43), - [anon_sym_class] = ACTIONS(45), - [anon_sym_struct] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(59), - [anon_sym_include] = ACTIONS(61), - [anon_sym_extend] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_next] = ACTIONS(67), - [anon_sym_break] = ACTIONS(69), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(91), - [sym_class_var] = ACTIONS(91), - [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2413), - [anon_sym_alias] = ACTIONS(93), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_require] = ACTIONS(101), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [365] = { - [sym__statements] = STATE(10540), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(365), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [362] = { + [sym__statements] = STATE(11201), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(362), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -96832,7 +97272,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2573), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -96840,15 +97279,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2428), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), + [anon_sym_LT] = ACTIONS(2430), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(2575), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -96881,115 +97321,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [366] = { - [sym__statements] = STATE(11916), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(366), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [363] = { + [sym__statements] = STATE(11202), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(363), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -97007,13 +97449,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2324), + [anon_sym_end] = ACTIONS(2408), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2326), + [anon_sym_LT] = ACTIONS(2410), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -97049,115 +97491,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [367] = { - [sym__statements] = STATE(10788), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(367), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [364] = { + [sym__statements] = STATE(11282), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(364), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -97168,7 +97612,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2577), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -97176,15 +97619,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2416), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), + [anon_sym_LT] = ACTIONS(2418), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(2579), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -97217,115 +97661,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [368] = { - [sym__statements] = STATE(10482), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(368), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [365] = { + [sym__statements] = STATE(11283), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(365), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -97343,12 +97789,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2581), + [anon_sym_end] = ACTIONS(2234), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), + [anon_sym_LT] = ACTIONS(2236), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -97384,116 +97831,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(2581), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [369] = { - [sym__statements] = STATE(11024), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(369), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [366] = { + [sym__statements] = STATE(11419), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(366), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -97504,7 +97952,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2583), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -97512,15 +97959,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2412), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), + [anon_sym_LT] = ACTIONS(2414), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(2585), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -97553,286 +98001,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [370] = { - [sym__statements] = STATE(11670), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(370), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2587), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_private] = ACTIONS(39), - [anon_sym_module] = ACTIONS(41), - [anon_sym_abstract] = ACTIONS(43), - [anon_sym_class] = ACTIONS(45), - [anon_sym_struct] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(59), - [anon_sym_include] = ACTIONS(61), - [anon_sym_extend] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_next] = ACTIONS(67), - [anon_sym_break] = ACTIONS(69), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(91), - [sym_class_var] = ACTIONS(91), - [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2413), - [anon_sym_alias] = ACTIONS(93), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_require] = ACTIONS(101), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [371] = { - [sym__statements] = STATE(11265), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(371), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [367] = { + [sym__statements] = STATE(11299), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(367), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -97840,7 +98122,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2589), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -97848,6 +98129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2524), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -97856,7 +98138,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(2591), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -97883,124 +98164,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2496), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [372] = { - [sym__statements] = STATE(10803), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(372), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [368] = { + [sym__statements] = STATE(11346), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(368), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -98015,7 +98299,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2593), + [anon_sym_end] = ACTIONS(2526), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -98050,125 +98334,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2413), + [anon_sym_LPAREN2] = ACTIONS(2496), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [373] = { - [sym__statements] = STATE(11557), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(373), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [369] = { + [sym__statements] = STATE(11350), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(369), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -98176,7 +98462,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2595), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -98184,6 +98469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2528), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -98192,7 +98478,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(2597), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -98219,124 +98504,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2496), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [374] = { - [sym__statements] = STATE(11544), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(374), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [370] = { + [sym__statements] = STATE(11375), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(370), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -98351,13 +98639,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2204), + [anon_sym_end] = ACTIONS(2530), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2206), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -98387,124 +98674,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2496), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [375] = { - [sym__statements] = STATE(10529), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(375), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [371] = { + [sym__statements] = STATE(11379), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(371), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -98519,7 +98809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2599), + [anon_sym_end] = ACTIONS(2532), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -98554,122 +98844,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2496), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [376] = { - [sym__statements] = STATE(11948), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(376), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [372] = { + [sym__statements] = STATE(11558), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(372), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -98680,7 +98972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2601), + [anon_sym_RBRACE] = ACTIONS(2534), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -98696,7 +98988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(2603), + [anon_sym_PIPE] = ACTIONS(2536), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -98729,115 +99021,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [377] = { - [sym__statements] = STATE(10445), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(377), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [373] = { + [sym__statements] = STATE(11780), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(373), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -98848,6 +99142,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2538), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -98855,7 +99150,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2605), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -98864,6 +99158,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(2540), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -98896,116 +99191,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(2605), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [378] = { - [sym__statements] = STATE(11454), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(378), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [374] = { + [sym__statements] = STATE(11836), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(374), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -99016,7 +99312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2607), + [anon_sym_RBRACE] = ACTIONS(2542), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -99032,7 +99328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(2609), + [anon_sym_PIPE] = ACTIONS(2544), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -99065,115 +99361,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [379] = { - [sym__statements] = STATE(10451), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(379), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [375] = { + [sym__statements] = STATE(11617), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(375), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -99184,6 +99482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2546), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -99191,7 +99490,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2605), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -99200,6 +99498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(2548), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -99232,116 +99531,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(2605), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [380] = { - [sym__statements] = STATE(10497), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(380), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [376] = { + [sym__statements] = STATE(11967), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(376), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -99352,6 +99652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2550), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -99359,7 +99660,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2605), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -99368,6 +99668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(2552), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -99400,119 +99701,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(2605), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [381] = { - [sym__statements] = STATE(10422), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(381), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [377] = { + [sym__statements] = STATE(11814), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(377), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -99527,7 +99829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2605), + [anon_sym_end] = ACTIONS(2554), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -99562,125 +99864,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2496), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(2605), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [382] = { - [sym__statements] = STATE(10905), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(382), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [378] = { + [sym__statements] = STATE(10963), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(378), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -99688,7 +99992,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2611), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -99696,6 +99999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2556), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -99704,7 +100008,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(2613), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -99731,121 +100034,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2496), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [383] = { - [sym__statements] = STATE(11408), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(383), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [379] = { + [sym__statements] = STATE(10648), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(379), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -99856,7 +100162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2615), + [anon_sym_RBRACE] = ACTIONS(2558), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -99872,7 +100178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(2617), + [anon_sym_PIPE] = ACTIONS(2560), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -99905,451 +100211,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [384] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2885), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(384), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2220), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2192), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2192), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_end] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), - [sym_self] = ACTIONS(17), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_when] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(2194), - [sym__line_break] = ACTIONS(2192), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__modifier_if_keyword] = ACTIONS(2192), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__modifier_unless_keyword] = ACTIONS(2192), - [sym__modifier_rescue_keyword] = ACTIONS(2192), - [sym__modifier_ensure_keyword] = ACTIONS(2192), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [385] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2911), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(385), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2220), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2058), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2058), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_end] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), - [sym_self] = ACTIONS(17), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(2060), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_when] = ACTIONS(2060), - [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(2060), - [sym__line_break] = ACTIONS(2058), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__modifier_if_keyword] = ACTIONS(2058), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__modifier_unless_keyword] = ACTIONS(2058), - [sym__modifier_rescue_keyword] = ACTIONS(2058), - [sym__modifier_ensure_keyword] = ACTIONS(2058), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [380] = { + [sym__statements] = STATE(10477), + [sym__parenthesized_statement] = STATE(4798), + [sym__statement] = STATE(8410), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4940), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), + [sym_heredoc_body] = STATE(380), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_annotation_def] = STATE(8762), + [sym_annotation] = STATE(8762), + [sym_module_def] = STATE(8762), + [sym_class_def] = STATE(8762), + [sym_struct_def] = STATE(8762), + [sym_enum_def] = STATE(8762), + [sym__base_method_def] = STATE(160), + [sym_method_def] = STATE(8762), + [sym_abstract_method_def] = STATE(8762), + [sym_include] = STATE(8762), + [sym_extend] = STATE(8762), + [sym_return] = STATE(8762), + [sym_next] = STATE(8762), + [sym_break] = STATE(8762), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4429), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7816), + [sym_index_operator] = STATE(2300), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_const_assign] = STATE(8762), + [sym_operator_assign] = STATE(4798), + [sym_lhs_splat] = STATE(10545), + [sym_multi_assign] = STATE(8762), + [sym_type_declaration] = STATE(4798), + [sym_alias] = STATE(8762), + [sym_begin_block] = STATE(4798), + [sym_modifier_rescue] = STATE(8762), + [sym_modifier_ensure] = STATE(8762), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_modifier_if] = STATE(8762), + [sym_modifier_unless] = STATE(8762), + [sym_require] = STATE(8762), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [aux_sym__statements_repeat1] = STATE(426), + [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_identifier] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2564), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_annotation] = ACTIONS(2570), + [anon_sym_end] = ACTIONS(2572), + [anon_sym_AT_LBRACK] = ACTIONS(2574), + [anon_sym_private] = ACTIONS(2576), + [anon_sym_module] = ACTIONS(2578), + [anon_sym_abstract] = ACTIONS(2580), + [anon_sym_class] = ACTIONS(2582), + [anon_sym_struct] = ACTIONS(2584), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(2592), + [anon_sym_include] = ACTIONS(2594), + [anon_sym_extend] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2598), + [anon_sym_next] = ACTIONS(2600), + [anon_sym_break] = ACTIONS(2602), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2612), + [sym_class_var] = ACTIONS(2612), + [sym_self] = ACTIONS(1543), + [anon_sym_alias] = ACTIONS(2614), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_require] = ACTIONS(2616), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__regular_ensure_keyword] = ACTIONS(2626), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, - [386] = { - [sym__statements] = STATE(11604), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(386), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [381] = { + [sym__statements] = STATE(10807), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(381), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -100360,6 +100502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2628), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -100367,16 +100510,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2208), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2210), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(2630), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -100409,115 +100551,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [387] = { - [sym__statements] = STATE(11358), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(387), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [382] = { + [sym__statements] = STATE(11856), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(382), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -100528,6 +100672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2632), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -100535,16 +100680,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2395), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2397), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(2634), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -100577,115 +100721,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [388] = { - [sym__statements] = STATE(11835), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(388), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [383] = { + [sym__statements] = STATE(10457), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(383), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -100702,9 +100848,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), - [aux_sym_proc_token1] = ACTIONS(2619), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2621), + [anon_sym_end] = ACTIONS(2636), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -100745,115 +100890,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(2636), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [389] = { - [sym__statements] = STATE(11471), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(389), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [384] = { + [sym__statements] = STATE(10958), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(384), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -100864,6 +101012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2638), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -100871,16 +101020,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2364), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2366), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(2640), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -100913,451 +101061,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [390] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6600), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5221), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6448), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(390), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_splat] = STATE(6596), - [sym_double_splat] = STATE(6596), - [sym_named_expr] = STATE(6596), - [sym_argument_list_no_parens] = STATE(6693), - [sym_argument_list_no_parens_with_block] = STATE(6693), - [sym_argument_list_with_parens] = STATE(6693), - [sym_argument_list_with_parens_and_block] = STATE(6693), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_block_argument] = STATE(6672), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(2623), - [anon_sym_LPAREN] = ACTIONS(2625), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_COMMA] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(2667), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_LPAREN2] = ACTIONS(2671), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym__end_of_with_expression] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(2689), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(2691), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(1043), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2713), - }, - [391] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3305), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(391), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [ts_builtin_sym_end] = ACTIONS(2048), - [sym_identifier] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2048), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2048), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_end] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), - [sym_self] = ACTIONS(17), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(2050), - [anon_sym_else] = ACTIONS(2050), - [anon_sym_when] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(2050), - [sym__line_break] = ACTIONS(2048), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__modifier_if_keyword] = ACTIONS(2048), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__modifier_unless_keyword] = ACTIONS(2048), - [sym__modifier_rescue_keyword] = ACTIONS(2048), - [sym__modifier_ensure_keyword] = ACTIONS(2048), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2715), }, - [392] = { - [sym__statements] = STATE(11530), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(392), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [385] = { + [sym__statements] = STATE(11475), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(385), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -101368,7 +101182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2717), + [anon_sym_RBRACE] = ACTIONS(2642), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -101384,7 +101198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(2719), + [anon_sym_PIPE] = ACTIONS(2644), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -101417,118 +101231,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [393] = { - [sym__statements] = STATE(11421), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(393), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), + [386] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3236), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(386), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [ts_builtin_sym_end] = ACTIONS(2059), + [sym_identifier] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2059), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2059), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -101536,32 +101327,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2721), + [anon_sym_RBRACE] = ACTIONS(2059), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_annotation] = ACTIONS(35), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_private] = ACTIONS(39), - [anon_sym_module] = ACTIONS(41), - [anon_sym_abstract] = ACTIONS(43), - [anon_sym_class] = ACTIONS(45), - [anon_sym_struct] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(2723), - [anon_sym_BANG] = ACTIONS(53), + [anon_sym_end] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(2476), [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(59), - [anon_sym_include] = ACTIONS(61), - [anon_sym_extend] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_next] = ACTIONS(67), - [anon_sym_break] = ACTIONS(69), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -101576,127 +101370,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(91), - [sym_class_var] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), - [anon_sym_alias] = ACTIONS(93), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_require] = ACTIONS(101), + [anon_sym_elsif] = ACTIONS(2065), + [anon_sym_else] = ACTIONS(2065), + [anon_sym_when] = ACTIONS(2065), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(2065), + [sym__line_break] = ACTIONS(2059), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__modifier_if_keyword] = ACTIONS(2059), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__modifier_unless_keyword] = ACTIONS(2059), + [sym__modifier_rescue_keyword] = ACTIONS(2059), + [sym__modifier_ensure_keyword] = ACTIONS(2059), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2646), }, - [394] = { - [sym__statements] = STATE(11655), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(394), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [387] = { + [sym__statements] = STATE(10833), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(387), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -101704,6 +101522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2648), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -101711,7 +101530,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2725), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -101720,6 +101538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(2650), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -101746,122 +101565,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [395] = { - [sym__statements] = STATE(11658), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(395), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [388] = { + [sym__statements] = STATE(11797), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(388), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -101872,6 +101692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2652), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -101879,16 +101700,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2399), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2401), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(2654), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -101921,286 +101741,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [396] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6600), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5221), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6448), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(396), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_splat] = STATE(6596), - [sym_double_splat] = STATE(6596), - [sym_named_expr] = STATE(6596), - [sym_argument_list_no_parens] = STATE(6658), - [sym_argument_list_no_parens_with_block] = STATE(6658), - [sym_argument_list_with_parens] = STATE(6658), - [sym_argument_list_with_parens_and_block] = STATE(6658), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_block_argument] = STATE(6672), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(2623), - [anon_sym_LPAREN] = ACTIONS(2625), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(2667), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_LPAREN2] = ACTIONS(2671), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym__end_of_with_expression] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(2689), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(2691), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(1043), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2713), - }, - [397] = { - [sym__statements] = STATE(11747), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(397), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [389] = { + [sym__statements] = STATE(11559), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(389), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -102215,13 +101869,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2356), + [anon_sym_end] = ACTIONS(2656), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2358), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), @@ -102251,121 +101904,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2496), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [398] = { - [sym__statements] = STATE(11772), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(398), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [390] = { + [sym__statements] = STATE(11073), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(390), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -102376,15 +102032,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2658), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), - [aux_sym_proc_token1] = ACTIONS(2727), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2729), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -102393,6 +102048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(2660), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -102425,118 +102081,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [399] = { - [sym__statements] = STATE(11820), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(399), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [391] = { + [sym__statements] = STATE(11582), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(391), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -102551,7 +102209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2731), + [anon_sym_end] = ACTIONS(2662), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -102586,290 +102244,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2496), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [400] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6618), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5164), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(6312), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(400), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(6619), - [sym_double_splat] = STATE(6619), - [sym_named_expr] = STATE(6619), - [sym_argument_list_no_parens] = STATE(4389), - [sym_argument_list_no_parens_with_block] = STATE(4389), - [sym_argument_list_with_parens] = STATE(4389), - [sym_argument_list_with_parens_and_block] = STATE(4389), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(1625), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2441), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2443), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_COLON2] = ACTIONS(1197), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(2451), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(2453), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(1113), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2457), - }, - [401] = { - [sym__statements] = STATE(11913), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(401), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [392] = { + [sym__statements] = STATE(11643), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(392), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -102880,6 +102372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2664), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -102887,16 +102380,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2228), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), [anon_sym_abstract] = ACTIONS(43), [anon_sym_class] = ACTIONS(45), - [anon_sym_LT] = ACTIONS(2230), [anon_sym_struct] = ACTIONS(47), [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(2666), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), @@ -102929,286 +102421,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [402] = { - [sym__statements] = STATE(11775), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(402), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(1209), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2733), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_private] = ACTIONS(39), - [anon_sym_module] = ACTIONS(41), - [anon_sym_abstract] = ACTIONS(43), - [anon_sym_class] = ACTIONS(45), - [anon_sym_struct] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(59), - [anon_sym_include] = ACTIONS(61), - [anon_sym_extend] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_next] = ACTIONS(67), - [anon_sym_break] = ACTIONS(69), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(91), - [sym_class_var] = ACTIONS(91), - [sym_self] = ACTIONS(17), - [anon_sym_LPAREN2] = ACTIONS(2413), - [anon_sym_alias] = ACTIONS(93), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_require] = ACTIONS(101), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [403] = { - [sym__statements] = STATE(11670), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(403), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), + [393] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3031), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(393), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [ts_builtin_sym_end] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2199), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2199), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -103216,33 +102517,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2199), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2587), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_private] = ACTIONS(39), - [anon_sym_module] = ACTIONS(41), - [anon_sym_abstract] = ACTIONS(43), - [anon_sym_class] = ACTIONS(45), - [anon_sym_struct] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(59), - [anon_sym_include] = ACTIONS(61), - [anon_sym_extend] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_next] = ACTIONS(67), - [anon_sym_break] = ACTIONS(69), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), + [anon_sym_end] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -103254,296 +102560,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(91), - [sym_class_var] = ACTIONS(91), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), - [anon_sym_alias] = ACTIONS(93), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_require] = ACTIONS(101), + [anon_sym_elsif] = ACTIONS(2201), + [anon_sym_else] = ACTIONS(2201), + [anon_sym_when] = ACTIONS(2201), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(2201), + [sym__line_break] = ACTIONS(2199), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__modifier_if_keyword] = ACTIONS(2199), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__modifier_unless_keyword] = ACTIONS(2199), + [sym__modifier_rescue_keyword] = ACTIONS(2199), + [sym__modifier_ensure_keyword] = ACTIONS(2199), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [404] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3463), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(404), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(2048), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2048), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(2048), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(2048), - [sym__regular_rescue_keyword] = ACTIONS(2048), - [sym__modifier_rescue_keyword] = ACTIONS(2048), - [sym__regular_ensure_keyword] = ACTIONS(2048), - [sym__modifier_ensure_keyword] = ACTIONS(2048), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2743), - }, - [405] = { - [sym__statements] = STATE(11831), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(8720), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(405), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), + [394] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3058), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(394), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [ts_builtin_sym_end] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2211), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2745), + [anon_sym_RPAREN] = ACTIONS(2211), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -103551,32 +102687,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2211), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_annotation] = ACTIONS(35), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_private] = ACTIONS(39), - [anon_sym_module] = ACTIONS(41), - [anon_sym_abstract] = ACTIONS(43), - [anon_sym_class] = ACTIONS(45), - [anon_sym_struct] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(59), - [anon_sym_include] = ACTIONS(61), - [anon_sym_extend] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_next] = ACTIONS(67), - [anon_sym_break] = ACTIONS(69), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), + [anon_sym_end] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -103588,128 +102730,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(91), - [sym_class_var] = ACTIONS(91), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), - [anon_sym_alias] = ACTIONS(93), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_require] = ACTIONS(101), + [anon_sym_elsif] = ACTIONS(2213), + [anon_sym_else] = ACTIONS(2213), + [anon_sym_when] = ACTIONS(2213), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(2213), + [sym__line_break] = ACTIONS(2211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__modifier_if_keyword] = ACTIONS(2211), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__modifier_unless_keyword] = ACTIONS(2211), + [sym__modifier_rescue_keyword] = ACTIONS(2211), + [sym__modifier_ensure_keyword] = ACTIONS(2211), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [406] = { - [sym__statements] = STATE(11118), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(406), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [395] = { + [sym__statements] = STATE(11384), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(395), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -103724,7 +102889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2747), + [anon_sym_end] = ACTIONS(2668), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -103759,125 +102924,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2229), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [407] = { - [sym__statements] = STATE(11949), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(8661), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(407), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [396] = { + [sym__statements] = STATE(10449), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(396), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2749), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -103892,6 +103059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2436), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -103932,115 +103100,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(2436), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [408] = { - [sym__statements] = STATE(10561), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(408), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [397] = { + [sym__statements] = STATE(10460), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(397), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -104058,7 +103229,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2463), + [anon_sym_end] = ACTIONS(2436), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -104099,115 +103270,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(2436), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [409] = { - [sym__statements] = STATE(10968), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(409), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [398] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6525), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5370), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6458), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(398), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_splat] = STATE(6519), + [sym_double_splat] = STATE(6519), + [sym_named_expr] = STATE(6519), + [sym_argument_list_no_parens] = STATE(6935), + [sym_argument_list_no_parens_with_block] = STATE(6935), + [sym_argument_list_with_parens] = STATE(6935), + [sym_argument_list_with_parens_and_block] = STATE(6935), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_block_argument] = STATE(6785), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(2672), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_COMMA] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(2708), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(2714), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_LPAREN2] = ACTIONS(2718), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym__end_of_with_expression] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(2738), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(2740), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(1059), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2762), + }, + [399] = { + [sym__statements] = STATE(10463), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(399), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -104225,7 +103569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2751), + [anon_sym_end] = ACTIONS(2436), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -104266,118 +103610,461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(2436), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [410] = { - [sym__statements] = STATE(10969), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(410), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [400] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6525), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5370), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6458), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(400), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_splat] = STATE(6519), + [sym_double_splat] = STATE(6519), + [sym_named_expr] = STATE(6519), + [sym_argument_list_no_parens] = STATE(6784), + [sym_argument_list_no_parens_with_block] = STATE(6784), + [sym_argument_list_with_parens] = STATE(6784), + [sym_argument_list_with_parens_and_block] = STATE(6784), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_block_argument] = STATE(6785), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(2672), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_COMMA] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(2708), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(2714), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_LPAREN2] = ACTIONS(2718), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym__end_of_with_expression] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(2738), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(2740), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(1059), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2762), + }, + [401] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6575), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(6507), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(401), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(6580), + [sym_double_splat] = STATE(6580), + [sym_named_expr] = STATE(6580), + [sym_argument_list_no_parens] = STATE(4499), + [sym_argument_list_no_parens_with_block] = STATE(4499), + [sym_argument_list_with_parens] = STATE(4499), + [sym_argument_list_with_parens_and_block] = STATE(4499), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(1637), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(2444), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2452), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2454), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_COLON2] = ACTIONS(1217), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(2462), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(2464), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(1129), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2468), + }, + [402] = { + [sym__statements] = STATE(11298), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(402), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1225), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -104392,7 +104079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2753), + [anon_sym_end] = ACTIONS(2764), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -104427,121 +104114,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(91), [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), + [anon_sym_LPAREN2] = ACTIONS(2496), [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [411] = { - [sym__statements] = STATE(11184), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(411), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [403] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6432), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(6507), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(403), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(6587), + [sym_double_splat] = STATE(6587), + [sym_named_expr] = STATE(6587), + [sym_argument_list_no_parens] = STATE(4381), + [sym_argument_list_no_parens_with_block] = STATE(4381), + [sym_argument_list_with_parens] = STATE(4381), + [sym_argument_list_with_parens_and_block] = STATE(4381), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(1637), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(2444), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2452), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2454), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_COLON2] = ACTIONS(1213), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(2462), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(2464), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(1189), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2766), + }, + [404] = { + [sym__statements] = STATE(10596), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(404), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -104552,7 +104411,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2755), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -104560,6 +104418,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2768), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -104600,115 +104459,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [412] = { - [sym__statements] = STATE(11610), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(412), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [405] = { + [sym__statements] = STATE(10597), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(405), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -104719,7 +104580,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2757), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -104727,6 +104587,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2770), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -104767,119 +104628,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [413] = { - [sym__statements] = STATE(11402), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(8850), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(413), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [406] = { + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3374), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), + [sym_heredoc_body] = STATE(406), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_do] = ACTIONS(2065), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(2065), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(2059), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2059), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(2059), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(2059), + [sym__regular_rescue_keyword] = ACTIONS(2059), + [sym__modifier_rescue_keyword] = ACTIONS(2059), + [sym__regular_ensure_keyword] = ACTIONS(2059), + [sym__modifier_ensure_keyword] = ACTIONS(2059), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2780), + }, + [407] = { + [sym__statements] = STATE(10634), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(407), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2759), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -104894,6 +104925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2494), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -104934,282 +104966,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [414] = { - [sym__parenthesized_statement] = STATE(4694), - [sym__statement] = STATE(8438), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(5013), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), - [sym_heredoc_body] = STATE(414), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_annotation_def] = STATE(8870), - [sym_annotation] = STATE(8870), - [sym_module_def] = STATE(8870), - [sym_class_def] = STATE(8870), - [sym_struct_def] = STATE(8870), - [sym_enum_def] = STATE(8870), - [sym__base_method_def] = STATE(198), - [sym_method_def] = STATE(8870), - [sym_abstract_method_def] = STATE(8870), - [sym_include] = STATE(8870), - [sym_extend] = STATE(8870), - [sym_return] = STATE(8870), - [sym_next] = STATE(8870), - [sym_break] = STATE(8870), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4580), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7763), - [sym_index_operator] = STATE(2300), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_const_assign] = STATE(8870), - [sym_operator_assign] = STATE(4694), - [sym_lhs_splat] = STATE(10484), - [sym_multi_assign] = STATE(8870), - [sym_type_declaration] = STATE(4694), - [sym_alias] = STATE(8870), - [sym_begin_block] = STATE(4694), - [sym_modifier_rescue] = STATE(8870), - [sym_modifier_ensure] = STATE(8870), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_modifier_if] = STATE(8870), - [sym_modifier_unless] = STATE(8870), - [sym_require] = STATE(8870), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [aux_sym__statements_repeat1] = STATE(482), - [aux_sym_multi_assign_repeat1] = STATE(982), - [sym_identifier] = ACTIONS(2491), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_annotation] = ACTIONS(2499), - [anon_sym_end] = ACTIONS(1990), - [anon_sym_AT_LBRACK] = ACTIONS(2503), - [anon_sym_private] = ACTIONS(2505), - [anon_sym_module] = ACTIONS(2507), - [anon_sym_abstract] = ACTIONS(2509), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2513), - [anon_sym_enum] = ACTIONS(2515), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(2521), - [anon_sym_include] = ACTIONS(2523), - [anon_sym_extend] = ACTIONS(2525), - [anon_sym_return] = ACTIONS(2527), - [anon_sym_next] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2531), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2541), - [sym_class_var] = ACTIONS(2541), - [sym_self] = ACTIONS(1455), - [anon_sym_alias] = ACTIONS(2543), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_require] = ACTIONS(2545), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__regular_ensure_keyword] = ACTIONS(1988), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [415] = { - [sym__statements] = STATE(11326), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(415), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [408] = { + [sym__statements] = STATE(10635), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(408), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -105227,7 +105094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2423), + [anon_sym_end] = ACTIONS(2498), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -105268,282 +105135,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [416] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3331), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(416), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2040), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(2040), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(2034), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2034), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(2034), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(2034), - [sym__regular_rescue_keyword] = ACTIONS(2034), - [sym__modifier_rescue_keyword] = ACTIONS(2034), - [sym__regular_ensure_keyword] = ACTIONS(2034), - [sym__modifier_ensure_keyword] = ACTIONS(2034), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2761), - }, - [417] = { - [sym__statements] = STATE(11501), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(417), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [409] = { + [sym__statements] = STATE(10636), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(409), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -105561,7 +105263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2461), + [anon_sym_end] = ACTIONS(2782), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -105602,115 +105304,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [418] = { - [sym__statements] = STATE(11700), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(418), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [410] = { + [sym__statements] = STATE(12025), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(410), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -105728,7 +105432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2763), + [anon_sym_end] = ACTIONS(2492), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -105769,115 +105473,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [419] = { - [sym__statements] = STATE(11704), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(419), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [411] = { + [sym__statements] = STATE(10674), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(411), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -105895,7 +105601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2765), + [anon_sym_end] = ACTIONS(2500), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -105936,115 +105642,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [420] = { - [sym__statements] = STATE(11808), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(420), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [412] = { + [sym__statements] = STATE(10675), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(412), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -106055,7 +105763,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2767), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -106063,6 +105770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2502), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -106103,119 +105811,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [421] = { - [sym__statements] = STATE(11963), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(8558), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(421), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [413] = { + [sym__statements] = STATE(10693), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(413), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2769), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -106230,6 +105939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2504), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -106270,115 +105980,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [422] = { - [sym__statements] = STATE(11013), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(422), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [414] = { + [sym__statements] = STATE(10694), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(414), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -106396,7 +106108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2571), + [anon_sym_end] = ACTIONS(2506), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -106437,118 +106149,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [423] = { - [sym__statements] = STATE(11031), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(423), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [415] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6432), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(6507), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(415), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(6587), + [sym_double_splat] = STATE(6587), + [sym_named_expr] = STATE(6587), + [sym_argument_list_no_parens] = STATE(4499), + [sym_argument_list_no_parens_with_block] = STATE(4499), + [sym_argument_list_with_parens] = STATE(4499), + [sym_argument_list_with_parens_and_block] = STATE(4499), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(1637), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(2444), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2452), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2454), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_COLON2] = ACTIONS(1217), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(2462), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(2464), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(1189), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2766), + }, + [416] = { + [sym__statements] = STATE(10986), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8681), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(416), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2784), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -106563,7 +106447,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2415), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -106604,115 +106487,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [424] = { - [sym__statements] = STATE(10696), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(424), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [417] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6454), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5370), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6458), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(417), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_splat] = STATE(6325), + [sym_double_splat] = STATE(6325), + [sym_named_expr] = STATE(6325), + [sym_argument_list_no_parens] = STATE(6784), + [sym_argument_list_no_parens_with_block] = STATE(6784), + [sym_argument_list_with_parens] = STATE(6784), + [sym_argument_list_with_parens_and_block] = STATE(6784), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_block_argument] = STATE(6785), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(2672), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(2708), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(2714), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_LPAREN2] = ACTIONS(2718), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym__end_of_with_expression] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(2738), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(2740), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(1161), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2786), + }, + [418] = { + [sym__statements] = STATE(11100), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(418), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -106730,7 +106784,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2771), + [anon_sym_end] = ACTIONS(2514), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -106771,115 +106825,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [425] = { - [sym__statements] = STATE(10604), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(425), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [419] = { + [sym__statements] = STATE(10858), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(419), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -106897,7 +106953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2773), + [anon_sym_end] = ACTIONS(2512), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -106938,115 +106994,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [426] = { - [sym__statements] = STATE(10605), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(426), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [420] = { + [sym__statements] = STATE(10869), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(420), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -107064,7 +107122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2775), + [anon_sym_end] = ACTIONS(2516), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -107105,115 +107163,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [427] = { - [sym__statements] = STATE(10640), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(427), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [421] = { + [sym__statements] = STATE(10871), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(421), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -107224,7 +107284,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2777), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -107232,6 +107291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2788), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -107272,115 +107332,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [428] = { - [sym__statements] = STATE(11775), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(428), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [422] = { + [sym__statements] = STATE(11196), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(422), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -107398,7 +107460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2733), + [anon_sym_end] = ACTIONS(2522), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -107439,119 +107501,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [429] = { - [sym__statements] = STATE(10736), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(8618), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(429), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [423] = { + [sym__statements] = STATE(11224), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(423), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2779), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -107566,6 +107629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2438), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -107606,115 +107670,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [430] = { - [sym__statements] = STATE(10697), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(430), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [424] = { + [sym__statements] = STATE(11250), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(424), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -107732,7 +107798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2781), + [anon_sym_end] = ACTIONS(2790), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -107773,282 +107839,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [431] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6447), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5221), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6448), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(431), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_splat] = STATE(6370), - [sym_double_splat] = STATE(6370), - [sym_named_expr] = STATE(6370), - [sym_argument_list_no_parens] = STATE(6658), - [sym_argument_list_no_parens_with_block] = STATE(6658), - [sym_argument_list_with_parens] = STATE(6658), - [sym_argument_list_with_parens_and_block] = STATE(6658), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_block_argument] = STATE(6672), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(2623), - [anon_sym_LPAREN] = ACTIONS(2625), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(2667), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_LPAREN2] = ACTIONS(2671), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym__end_of_with_expression] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(2689), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(2691), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(1165), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2783), - }, - [432] = { - [sym__statements] = STATE(10869), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(432), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [425] = { + [sym__statements] = STATE(11251), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(425), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -108066,7 +107967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2785), + [anon_sym_end] = ACTIONS(2792), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -108107,115 +108008,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [433] = { - [sym__statements] = STATE(10870), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(433), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), + [426] = { + [sym__parenthesized_statement] = STATE(4798), + [sym__statement] = STATE(8483), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4940), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), + [sym_heredoc_body] = STATE(426), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_annotation_def] = STATE(8762), + [sym_annotation] = STATE(8762), + [sym_module_def] = STATE(8762), + [sym_class_def] = STATE(8762), + [sym_struct_def] = STATE(8762), + [sym_enum_def] = STATE(8762), + [sym__base_method_def] = STATE(160), + [sym_method_def] = STATE(8762), + [sym_abstract_method_def] = STATE(8762), + [sym_include] = STATE(8762), + [sym_extend] = STATE(8762), + [sym_return] = STATE(8762), + [sym_next] = STATE(8762), + [sym_break] = STATE(8762), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4429), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7816), + [sym_index_operator] = STATE(2300), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_const_assign] = STATE(8762), + [sym_operator_assign] = STATE(4798), + [sym_lhs_splat] = STATE(10545), + [sym_multi_assign] = STATE(8762), + [sym_type_declaration] = STATE(4798), + [sym_alias] = STATE(8762), + [sym_begin_block] = STATE(4798), + [sym_modifier_rescue] = STATE(8762), + [sym_modifier_ensure] = STATE(8762), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_modifier_if] = STATE(8762), + [sym_modifier_unless] = STATE(8762), + [sym_require] = STATE(8762), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [aux_sym__statements_repeat1] = STATE(453), [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_identifier] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2564), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_annotation] = ACTIONS(2570), + [anon_sym_end] = ACTIONS(1829), + [anon_sym_AT_LBRACK] = ACTIONS(2574), + [anon_sym_private] = ACTIONS(2576), + [anon_sym_module] = ACTIONS(2578), + [anon_sym_abstract] = ACTIONS(2580), + [anon_sym_class] = ACTIONS(2582), + [anon_sym_struct] = ACTIONS(2584), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(2592), + [anon_sym_include] = ACTIONS(2594), + [anon_sym_extend] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2598), + [anon_sym_next] = ACTIONS(2600), + [anon_sym_break] = ACTIONS(2602), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2612), + [sym_class_var] = ACTIONS(2612), + [sym_self] = ACTIONS(1543), + [anon_sym_alias] = ACTIONS(2614), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_require] = ACTIONS(2616), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__regular_ensure_keyword] = ACTIONS(1827), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [427] = { + [sym__statements] = STATE(11298), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(427), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -108233,7 +108305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2787), + [anon_sym_end] = ACTIONS(2764), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -108274,115 +108346,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [434] = { - [sym__statements] = STATE(10902), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(434), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [428] = { + [sym__statements] = STATE(11299), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(428), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -108393,7 +108467,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2789), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -108401,6 +108474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2524), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -108441,119 +108515,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [435] = { - [sym__statements] = STATE(10982), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(8684), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(435), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [429] = { + [sym__statements] = STATE(11300), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(429), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2791), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -108568,6 +108643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2794), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -108608,282 +108684,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [436] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6326), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5164), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(6312), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(436), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(6345), - [sym_double_splat] = STATE(6345), - [sym_named_expr] = STATE(6345), - [sym_argument_list_no_parens] = STATE(4389), - [sym_argument_list_no_parens_with_block] = STATE(4389), - [sym_argument_list_with_parens] = STATE(4389), - [sym_argument_list_with_parens_and_block] = STATE(4389), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(1625), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2441), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2443), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_COLON2] = ACTIONS(1197), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(2451), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(2453), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(1173), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2793), - }, - [437] = { - [sym__statements] = STATE(11510), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(437), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [430] = { + [sym__statements] = STATE(11328), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(430), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -108894,6 +108805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2796), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -108901,7 +108813,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2557), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -108942,119 +108853,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [438] = { - [sym__statements] = STATE(11267), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(8812), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(438), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [431] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6454), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5370), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6458), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(431), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_splat] = STATE(6325), + [sym_double_splat] = STATE(6325), + [sym_named_expr] = STATE(6325), + [sym_argument_list_no_parens] = STATE(6935), + [sym_argument_list_no_parens_with_block] = STATE(6935), + [sym_argument_list_with_parens] = STATE(6935), + [sym_argument_list_with_parens_and_block] = STATE(6935), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_block_argument] = STATE(6785), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(2672), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(2708), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(2714), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_LPAREN2] = ACTIONS(2718), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym__end_of_with_expression] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(2738), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(2740), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(1161), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2786), + }, + [432] = { + [sym__statements] = STATE(11346), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(432), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2795), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -109069,6 +109150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2526), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -109109,115 +109191,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [439] = { - [sym__statements] = STATE(11106), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(439), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [433] = { + [sym__statements] = STATE(11350), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(433), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -109235,7 +109319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2797), + [anon_sym_end] = ACTIONS(2528), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -109276,118 +109360,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [440] = { - [sym__statements] = STATE(11108), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(440), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(13), + [434] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3287), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(434), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [ts_builtin_sym_end] = ACTIONS(2199), + [sym_identifier] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2199), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2199), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -109395,31 +109456,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2199), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2799), - [anon_sym_AT_LBRACK] = ACTIONS(37), - [anon_sym_private] = ACTIONS(39), - [anon_sym_module] = ACTIONS(41), - [anon_sym_abstract] = ACTIONS(43), - [anon_sym_class] = ACTIONS(45), - [anon_sym_struct] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(53), + [anon_sym_end] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(2476), [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(59), - [anon_sym_include] = ACTIONS(61), - [anon_sym_extend] = ACTIONS(63), - [anon_sym_return] = ACTIONS(65), - [anon_sym_next] = ACTIONS(67), - [anon_sym_break] = ACTIONS(69), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -109434,124 +109499,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(91), - [sym_class_var] = ACTIONS(91), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), - [anon_sym_alias] = ACTIONS(93), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_require] = ACTIONS(101), + [anon_sym_elsif] = ACTIONS(2201), + [anon_sym_else] = ACTIONS(2201), + [anon_sym_when] = ACTIONS(2201), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(2201), + [sym__line_break] = ACTIONS(2199), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__modifier_if_keyword] = ACTIONS(2199), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__modifier_unless_keyword] = ACTIONS(2199), + [sym__modifier_rescue_keyword] = ACTIONS(2199), + [sym__modifier_ensure_keyword] = ACTIONS(2199), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [441] = { - [sym__statements] = STATE(11140), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(441), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [435] = { + [sym__statements] = STATE(11375), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(435), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -109562,7 +109650,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2801), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -109570,6 +109657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2530), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -109610,119 +109698,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [442] = { - [sym__statements] = STATE(11225), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(8734), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(442), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [436] = { + [sym__statements] = STATE(11379), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(436), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2803), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -109737,6 +109826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2532), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -109777,118 +109867,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [443] = { - [sym__statements] = STATE(11033), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(443), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [437] = { + [sym__statements] = STATE(11520), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8843), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(437), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2798), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -109903,7 +109996,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2805), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -109944,115 +110036,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [444] = { - [sym__statements] = STATE(10776), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(444), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [438] = { + [sym__statements] = STATE(11395), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(438), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -110070,7 +110164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2465), + [anon_sym_end] = ACTIONS(2800), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -110111,115 +110205,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [445] = { - [sym__statements] = STATE(11389), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(445), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [439] = { + [sym__statements] = STATE(11625), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(439), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -110237,7 +110333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2807), + [anon_sym_end] = ACTIONS(2802), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -110278,115 +110374,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [446] = { - [sym__statements] = STATE(11390), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(446), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [440] = { + [sym__statements] = STATE(11626), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(440), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -110404,7 +110502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2809), + [anon_sym_end] = ACTIONS(2804), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -110445,115 +110543,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [447] = { - [sym__statements] = STATE(11426), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(447), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [441] = { + [sym__statements] = STATE(11662), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(441), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -110564,7 +110664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2811), + [anon_sym_RBRACE] = ACTIONS(2806), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -110612,286 +110712,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [448] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6447), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5221), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6448), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(448), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_splat] = STATE(6370), - [sym_double_splat] = STATE(6370), - [sym_named_expr] = STATE(6370), - [sym_argument_list_no_parens] = STATE(6693), - [sym_argument_list_no_parens_with_block] = STATE(6693), - [sym_argument_list_with_parens] = STATE(6693), - [sym_argument_list_with_parens_and_block] = STATE(6693), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_block_argument] = STATE(6672), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(2623), - [anon_sym_LPAREN] = ACTIONS(2625), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(2667), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_LPAREN2] = ACTIONS(2671), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym__end_of_with_expression] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(2689), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(2691), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(1165), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2783), - }, - [449] = { - [sym__statements] = STATE(11513), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(8797), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(449), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [442] = { + [sym__statements] = STATE(11771), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8905), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(442), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2813), + [anon_sym_RPAREN] = ACTIONS(2808), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -110946,115 +110881,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [450] = { - [sym__statements] = STATE(11172), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(450), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [443] = { + [sym__statements] = STATE(12039), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(443), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -111065,7 +111002,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2815), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -111073,6 +111009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2810), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -111113,115 +111050,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [451] = { - [sym__statements] = STATE(10803), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(451), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [444] = { + [sym__statements] = STATE(12040), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(444), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -111239,7 +111178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2593), + [anon_sym_end] = ACTIONS(2812), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -111280,115 +111219,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [452] = { - [sym__statements] = STATE(10777), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(452), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [445] = { + [sym__statements] = STATE(10862), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(445), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -111399,6 +111340,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2814), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -111406,7 +111348,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2467), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -111447,118 +111388,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [453] = { - [sym__statements] = STATE(11634), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(453), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [446] = { + [sym__statements] = STATE(11714), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8628), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(446), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2816), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -111573,7 +111517,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2817), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -111614,115 +111557,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [454] = { - [sym__statements] = STATE(11643), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(454), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [447] = { + [sym__statements] = STATE(11807), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(447), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -111733,6 +111678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2818), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -111740,7 +111686,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2819), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -111781,115 +111726,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [455] = { - [sym__statements] = STATE(11687), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(455), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [448] = { + [sym__statements] = STATE(10696), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(448), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -111900,7 +111847,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2821), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -111908,6 +111854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2820), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -111948,115 +111895,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [456] = { - [sym__statements] = STATE(10892), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(456), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [449] = { + [sym__statements] = STATE(11232), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(449), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -112067,7 +112016,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2823), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -112075,6 +112023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2822), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -112115,115 +112064,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [457] = { - [sym__statements] = STATE(10778), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(457), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [450] = { + [sym__statements] = STATE(11708), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(450), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -112241,7 +112192,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2825), + [anon_sym_end] = ACTIONS(2824), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -112282,115 +112233,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [458] = { - [sym__statements] = STATE(10843), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(458), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [451] = { + [sym__statements] = STATE(11258), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(451), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -112401,7 +112354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2827), + [anon_sym_RBRACE] = ACTIONS(2826), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -112449,118 +112402,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [459] = { - [sym__statements] = STATE(10529), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(459), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [452] = { + [sym__statements] = STATE(11598), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8911), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(452), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2828), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -112575,7 +112531,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2599), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -112616,115 +112571,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [460] = { - [sym__statements] = STATE(10775), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(460), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [453] = { + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(9064), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(453), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(453), + [aux_sym_multi_assign_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(2830), + [anon_sym_LPAREN] = ACTIONS(1839), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1842), + [sym_true] = ACTIONS(1842), + [sym_false] = ACTIONS(1842), + [aux_sym_integer_token2] = ACTIONS(1845), + [aux_sym_float_token2] = ACTIONS(1848), + [anon_sym_SQUOTE] = ACTIONS(1851), + [sym_operator_symbol] = ACTIONS(1854), + [sym_unquoted_symbol] = ACTIONS(1854), + [anon_sym_COLON_DQUOTE] = ACTIONS(1857), + [anon_sym_BQUOTE] = ACTIONS(1860), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_DASH_GT] = ACTIONS(1866), + [anon_sym_annotation] = ACTIONS(1869), + [anon_sym_end] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1874), + [anon_sym_private] = ACTIONS(1877), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_abstract] = ACTIONS(1883), + [anon_sym_class] = ACTIONS(1886), + [anon_sym_struct] = ACTIONS(1889), + [anon_sym_enum] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1895), + [anon_sym_BANG] = ACTIONS(1898), + [anon_sym_TILDE] = ACTIONS(1901), + [anon_sym_def] = ACTIONS(1904), + [anon_sym_protected] = ACTIONS(1907), + [anon_sym_include] = ACTIONS(1910), + [anon_sym_extend] = ACTIONS(1913), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_next] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1922), + [anon_sym_with] = ACTIONS(1925), + [anon_sym_yield] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(1931), + [anon_sym_sizeof] = ACTIONS(1934), + [anon_sym_instance_sizeof] = ACTIONS(1937), + [anon_sym_offsetof] = ACTIONS(1940), + [sym__constant_segment] = ACTIONS(1943), + [anon_sym_COLON_COLON] = ACTIONS(1946), + [anon_sym___LINE__] = ACTIONS(1949), + [anon_sym___END_LINE__] = ACTIONS(1949), + [anon_sym___FILE__] = ACTIONS(1949), + [anon_sym___DIR__] = ACTIONS(1949), + [sym_special_variable] = ACTIONS(1854), + [sym_identifier_method_call] = ACTIONS(1952), + [sym_instance_var] = ACTIONS(1955), + [sym_class_var] = ACTIONS(1955), + [sym_self] = ACTIONS(1842), + [anon_sym_alias] = ACTIONS(1958), + [anon_sym_begin] = ACTIONS(1961), + [anon_sym_while] = ACTIONS(1964), + [anon_sym_until] = ACTIONS(1967), + [anon_sym_require] = ACTIONS(1970), + [anon_sym_case] = ACTIONS(1973), + [anon_sym_select] = ACTIONS(1976), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1979), + [sym__start_of_named_tuple] = ACTIONS(1982), + [sym_unary_plus] = ACTIONS(1985), + [sym_unary_minus] = ACTIONS(1985), + [sym_unary_wrapping_plus] = ACTIONS(1988), + [sym_unary_wrapping_minus] = ACTIONS(1988), + [sym__beginless_range_operator] = ACTIONS(1991), + [sym__regex_start] = ACTIONS(1994), + [sym__regular_if_keyword] = ACTIONS(1997), + [sym__regular_unless_keyword] = ACTIONS(2000), + [sym__regular_ensure_keyword] = ACTIONS(1831), + [sym__string_literal_start] = ACTIONS(2003), + [sym__string_percent_literal_start] = ACTIONS(2006), + [sym__command_percent_literal_start] = ACTIONS(2009), + [sym__string_array_percent_literal_start] = ACTIONS(2012), + [sym__symbol_array_percent_literal_start] = ACTIONS(2015), + [sym__regex_percent_literal_start] = ACTIONS(2018), + [sym_heredoc_start] = ACTIONS(1854), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [454] = { + [sym__statements] = STATE(11814), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(454), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -112742,7 +112868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2829), + [anon_sym_end] = ACTIONS(2554), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -112783,115 +112909,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [461] = { - [sym__statements] = STATE(10782), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(461), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [455] = { + [sym__statements] = STATE(11129), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(455), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -112909,7 +113037,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2831), + [anon_sym_end] = ACTIONS(2833), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -112950,115 +113078,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [462] = { - [sym__statements] = STATE(11439), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(462), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [456] = { + [sym__statements] = STATE(11158), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(456), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -113069,7 +113199,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2833), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -113077,6 +113206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2835), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -113117,286 +113247,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [463] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6326), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5164), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(6312), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(463), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(6345), - [sym_double_splat] = STATE(6345), - [sym_named_expr] = STATE(6345), - [sym_argument_list_no_parens] = STATE(4494), - [sym_argument_list_no_parens_with_block] = STATE(4494), - [sym_argument_list_with_parens] = STATE(4494), - [sym_argument_list_with_parens_and_block] = STATE(4494), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(1625), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2441), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2443), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_COLON2] = ACTIONS(1201), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(2451), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(2453), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(1173), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2793), + [457] = { + [sym__statements] = STATE(11340), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(457), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2837), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_annotation] = ACTIONS(35), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_private] = ACTIONS(39), + [anon_sym_module] = ACTIONS(41), + [anon_sym_abstract] = ACTIONS(43), + [anon_sym_class] = ACTIONS(45), + [anon_sym_struct] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(53), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(59), + [anon_sym_include] = ACTIONS(61), + [anon_sym_extend] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_next] = ACTIONS(67), + [anon_sym_break] = ACTIONS(69), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(91), + [sym_class_var] = ACTIONS(91), + [sym_self] = ACTIONS(17), + [anon_sym_alias] = ACTIONS(93), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_require] = ACTIONS(101), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), }, - [464] = { - [sym__statements] = STATE(11104), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(8504), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(464), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [458] = { + [sym__statements] = STATE(10963), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(458), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2835), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -113411,6 +113544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2556), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -113451,118 +113585,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [465] = { - [sym__statements] = STATE(11828), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(465), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [459] = { + [sym__statements] = STATE(11845), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8656), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(459), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2839), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -113577,7 +113714,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2429), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -113618,115 +113754,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [466] = { - [sym__statements] = STATE(10923), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(466), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [460] = { + [sym__statements] = STATE(11413), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(460), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -113744,7 +113882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2469), + [anon_sym_end] = ACTIONS(2841), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -113785,115 +113923,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [467] = { - [sym__statements] = STATE(10737), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(467), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [461] = { + [sym__statements] = STATE(11935), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(461), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -113911,7 +114051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2837), + [anon_sym_end] = ACTIONS(2843), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -113952,115 +114092,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [468] = { - [sym__statements] = STATE(10933), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(468), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [462] = { + [sym__statements] = STATE(12010), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(462), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -114078,7 +114220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2471), + [anon_sym_end] = ACTIONS(2845), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -114119,115 +114261,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [469] = { - [sym__statements] = STATE(10557), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(469), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [463] = { + [sym__statements] = STATE(11013), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(463), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -114238,6 +114382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2847), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -114245,7 +114390,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2839), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -114286,118 +114430,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [470] = { - [sym__statements] = STATE(10565), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(470), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [464] = { + [sym__statements] = STATE(10616), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8902), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(464), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2849), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -114412,7 +114559,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2841), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -114453,115 +114599,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [471] = { - [sym__statements] = STATE(10680), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(471), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [465] = { + [sym__statements] = STATE(11359), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(465), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -114572,7 +114720,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2843), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -114580,6 +114727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2851), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -114620,115 +114768,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [472] = { - [sym__statements] = STATE(11263), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(472), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [466] = { + [sym__statements] = STATE(11366), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(466), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -114739,7 +114889,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2845), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -114747,6 +114896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2853), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -114787,115 +114937,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [473] = { - [sym__statements] = STATE(10954), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(473), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [467] = { + [sym__statements] = STATE(11495), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(467), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -114906,6 +115058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2855), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -114913,7 +115066,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2473), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -114954,118 +115106,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [474] = { - [sym__statements] = STATE(11537), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(474), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [468] = { + [sym__statements] = STATE(11705), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8673), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(468), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2857), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -115073,7 +115228,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2847), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -115121,115 +115275,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [475] = { - [sym__statements] = STATE(11207), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(475), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [469] = { + [sym__statements] = STATE(10628), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(469), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -115247,7 +115403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2417), + [anon_sym_end] = ACTIONS(2572), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -115288,115 +115444,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [476] = { - [sym__statements] = STATE(10955), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(476), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [470] = { + [sym__statements] = STATE(10718), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(470), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -115414,7 +115572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2475), + [anon_sym_end] = ACTIONS(2859), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -115455,115 +115613,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [477] = { - [sym__statements] = STATE(10730), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(477), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [471] = { + [sym__statements] = STATE(10719), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(471), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -115581,7 +115741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2849), + [anon_sym_end] = ACTIONS(2861), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -115622,286 +115782,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [478] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6584), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5092), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(5829), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(478), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(6585), - [sym_double_splat] = STATE(6585), - [sym_named_expr] = STATE(6585), - [sym_argument_list_no_parens] = STATE(4494), - [sym_argument_list_no_parens_with_block] = STATE(4494), - [sym_argument_list_with_parens] = STATE(4494), - [sym_argument_list_with_parens_and_block] = STATE(4494), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(1625), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1199), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1199), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_CARET] = ACTIONS(1199), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1199), - [anon_sym_EQ_EQ] = ACTIONS(1201), - [anon_sym_BANG_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_EQ] = ACTIONS(1199), - [anon_sym_LT_EQ_GT] = ACTIONS(1199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1199), - [anon_sym_BANG] = ACTIONS(2330), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_BANG_TILDE] = ACTIONS(1199), - [anon_sym_EQ_TILDE] = ACTIONS(1199), - [anon_sym_AMP_STAR] = ACTIONS(1201), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1199), - [anon_sym_DOT] = ACTIONS(1201), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2338), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2340), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(1199), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_binary_plus] = ACTIONS(1199), - [sym_binary_minus] = ACTIONS(1199), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym_binary_wrapping_plus] = ACTIONS(1199), - [sym_binary_wrapping_minus] = ACTIONS(1199), - [sym__unary_star] = ACTIONS(2348), - [sym__binary_star] = ACTIONS(1199), - [sym__unary_double_star] = ACTIONS(2350), - [sym__binary_double_star] = ACTIONS(1199), - [sym__block_ampersand] = ACTIONS(1155), - [sym_binary_ampersand] = ACTIONS(1199), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(1199), - [sym__binary_double_slash] = ACTIONS(1199), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(1199), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2851), - }, - [479] = { - [sym__statements] = STATE(11187), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(8751), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(479), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [472] = { + [sym__statements] = STATE(10778), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(472), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2853), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -115909,6 +115903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2863), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -115956,118 +115951,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [480] = { - [sym__statements] = STATE(11506), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(480), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [473] = { + [sym__statements] = STATE(10907), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8787), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(473), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2865), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -116082,7 +116080,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2477), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -116123,115 +116120,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [481] = { - [sym__statements] = STATE(11219), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(481), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [474] = { + [sym__statements] = STATE(11088), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(474), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -116249,7 +116248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2419), + [anon_sym_end] = ACTIONS(2867), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -116290,453 +116289,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [482] = { - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(8964), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(482), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(482), - [aux_sym_multi_assign_repeat1] = STATE(981), - [sym_identifier] = ACTIONS(1797), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(1803), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1806), - [sym_true] = ACTIONS(1806), - [sym_false] = ACTIONS(1806), - [aux_sym_integer_token2] = ACTIONS(1809), - [aux_sym_float_token2] = ACTIONS(1812), - [anon_sym_SQUOTE] = ACTIONS(1815), - [sym_operator_symbol] = ACTIONS(1818), - [sym_unquoted_symbol] = ACTIONS(1818), - [anon_sym_COLON_DQUOTE] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_DASH_GT] = ACTIONS(1830), - [anon_sym_annotation] = ACTIONS(1833), - [anon_sym_end] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1838), - [anon_sym_private] = ACTIONS(1841), - [anon_sym_module] = ACTIONS(1844), - [anon_sym_abstract] = ACTIONS(1847), - [anon_sym_class] = ACTIONS(1850), - [anon_sym_struct] = ACTIONS(1853), - [anon_sym_enum] = ACTIONS(1856), - [anon_sym_STAR] = ACTIONS(1859), - [anon_sym_BANG] = ACTIONS(1862), - [anon_sym_TILDE] = ACTIONS(1865), - [anon_sym_def] = ACTIONS(1868), - [anon_sym_protected] = ACTIONS(1871), - [anon_sym_include] = ACTIONS(1874), - [anon_sym_extend] = ACTIONS(1877), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_next] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1886), - [anon_sym_with] = ACTIONS(1889), - [anon_sym_yield] = ACTIONS(1892), - [anon_sym_typeof] = ACTIONS(1895), - [anon_sym_sizeof] = ACTIONS(1898), - [anon_sym_instance_sizeof] = ACTIONS(1901), - [anon_sym_offsetof] = ACTIONS(1904), - [sym__constant_segment] = ACTIONS(1907), - [anon_sym_COLON_COLON] = ACTIONS(1910), - [anon_sym___LINE__] = ACTIONS(1913), - [anon_sym___END_LINE__] = ACTIONS(1913), - [anon_sym___FILE__] = ACTIONS(1913), - [anon_sym___DIR__] = ACTIONS(1913), - [sym_special_variable] = ACTIONS(1818), - [sym_identifier_method_call] = ACTIONS(1916), - [sym_instance_var] = ACTIONS(1919), - [sym_class_var] = ACTIONS(1919), - [sym_self] = ACTIONS(1806), - [anon_sym_alias] = ACTIONS(1922), - [anon_sym_begin] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1928), - [anon_sym_until] = ACTIONS(1931), - [anon_sym_require] = ACTIONS(1934), - [anon_sym_case] = ACTIONS(1937), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1940), - [sym__start_of_named_tuple] = ACTIONS(1943), - [sym_unary_plus] = ACTIONS(1946), - [sym_unary_minus] = ACTIONS(1946), - [sym_unary_wrapping_plus] = ACTIONS(1949), - [sym_unary_wrapping_minus] = ACTIONS(1949), - [sym__beginless_range_operator] = ACTIONS(1952), - [sym__regex_start] = ACTIONS(1955), - [sym__regular_if_keyword] = ACTIONS(1958), - [sym__regular_unless_keyword] = ACTIONS(1961), - [sym__regular_ensure_keyword] = ACTIONS(1795), - [sym__string_literal_start] = ACTIONS(1964), - [sym__string_percent_literal_start] = ACTIONS(1967), - [sym__command_percent_literal_start] = ACTIONS(1970), - [sym__string_array_percent_literal_start] = ACTIONS(1973), - [sym__symbol_array_percent_literal_start] = ACTIONS(1976), - [sym__regex_percent_literal_start] = ACTIONS(1979), - [sym_heredoc_start] = ACTIONS(1818), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [483] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3303), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(483), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2192), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2192), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_end] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2561), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), - [sym_self] = ACTIONS(17), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_when] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(2194), - [sym__line_break] = ACTIONS(2192), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__modifier_if_keyword] = ACTIONS(2192), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__modifier_unless_keyword] = ACTIONS(2192), - [sym__modifier_rescue_keyword] = ACTIONS(2192), - [sym__modifier_ensure_keyword] = ACTIONS(2192), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [484] = { - [sym__statements] = STATE(11869), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(8616), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(484), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [475] = { + [sym__statements] = STATE(11090), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(475), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2858), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -116751,6 +116417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2869), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -116791,115 +116458,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [485] = { - [sym__statements] = STATE(11512), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(485), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [476] = { + [sym__statements] = STATE(11151), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(476), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -116910,6 +116579,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2871), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -116917,7 +116587,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2860), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -116958,285 +116627,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [486] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6584), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5092), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(5829), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(486), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(6585), - [sym_double_splat] = STATE(6585), - [sym_named_expr] = STATE(6585), - [sym_argument_list_no_parens] = STATE(4389), - [sym_argument_list_no_parens_with_block] = STATE(4389), - [sym_argument_list_with_parens] = STATE(4389), - [sym_argument_list_with_parens_and_block] = STATE(4389), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4390), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(1625), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_EQ_GT] = ACTIONS(1195), - [anon_sym_DOT_DOT] = ACTIONS(1197), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1195), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(1197), - [anon_sym_PIPE] = ACTIONS(1197), - [anon_sym_CARET] = ACTIONS(1195), - [anon_sym_GT_GT] = ACTIONS(1195), - [anon_sym_LT_LT] = ACTIONS(1195), - [anon_sym_EQ_EQ] = ACTIONS(1197), - [anon_sym_BANG_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ] = ACTIONS(1197), - [anon_sym_GT] = ACTIONS(1197), - [anon_sym_GT_EQ] = ACTIONS(1195), - [anon_sym_LT_EQ_GT] = ACTIONS(1195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1195), - [anon_sym_BANG] = ACTIONS(2330), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_BANG_TILDE] = ACTIONS(1195), - [anon_sym_EQ_TILDE] = ACTIONS(1195), - [anon_sym_AMP_STAR] = ACTIONS(1197), - [anon_sym_AMP_STAR_STAR] = ACTIONS(1195), - [anon_sym_DOT] = ACTIONS(1197), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2338), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2340), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(1671), - [anon_sym_QMARK] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1195), - [anon_sym_PIPE_PIPE] = ACTIONS(1195), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(1195), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_binary_plus] = ACTIONS(1195), - [sym_binary_minus] = ACTIONS(1195), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym_binary_wrapping_plus] = ACTIONS(1195), - [sym_binary_wrapping_minus] = ACTIONS(1195), - [sym__unary_star] = ACTIONS(2348), - [sym__binary_star] = ACTIONS(1195), - [sym__unary_double_star] = ACTIONS(2350), - [sym__binary_double_star] = ACTIONS(1195), - [sym__block_ampersand] = ACTIONS(1155), - [sym_binary_ampersand] = ACTIONS(1195), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(1195), - [sym__binary_double_slash] = ACTIONS(1195), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(1195), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(2851), - }, - [487] = { - [sym__statements] = STATE(11938), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(487), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [477] = { + [sym__statements] = STATE(11355), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8571), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(477), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2873), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -117251,7 +116756,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2862), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -117292,115 +116796,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [488] = { - [sym__statements] = STATE(11515), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(488), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [478] = { + [sym__statements] = STATE(11601), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(478), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -117418,7 +116924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2864), + [anon_sym_end] = ACTIONS(2875), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -117459,115 +116965,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [489] = { - [sym__statements] = STATE(11378), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(489), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [479] = { + [sym__statements] = STATE(11609), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(479), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -117585,7 +117093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2866), + [anon_sym_end] = ACTIONS(2877), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -117626,115 +117134,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [490] = { - [sym__statements] = STATE(11590), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(490), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [480] = { + [sym__statements] = STATE(11698), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(480), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -117745,7 +117255,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2868), + [anon_sym_RBRACE] = ACTIONS(2879), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -117793,118 +117303,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [491] = { - [sym__statements] = STATE(11655), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(491), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [481] = { + [sym__statements] = STATE(11905), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8637), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(481), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2881), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -117919,7 +117432,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2725), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -117960,118 +117472,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [492] = { - [sym__statements] = STATE(11668), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(492), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [482] = { + [sym__statements] = STATE(11663), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8803), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(482), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2883), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -118086,7 +117601,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2501), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -118127,119 +117641,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [493] = { - [sym__statements] = STATE(11342), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(8615), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(493), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [483] = { + [sym__statements] = STATE(11441), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(483), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2870), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -118254,6 +117769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2885), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -118294,115 +117810,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [494] = { - [sym__statements] = STATE(11508), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(494), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [484] = { + [sym__statements] = STATE(11443), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(484), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -118420,7 +117938,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2872), + [anon_sym_end] = ACTIONS(2887), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -118461,115 +117979,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [495] = { - [sym__statements] = STATE(11027), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(495), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [485] = { + [sym__statements] = STATE(10610), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(485), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -118580,6 +118100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2889), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -118587,7 +118108,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2411), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -118628,118 +118148,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [496] = { - [sym__statements] = STATE(11317), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(496), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [486] = { + [sym__statements] = STATE(11458), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8714), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(486), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2891), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -118754,7 +118277,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2421), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -118795,115 +118317,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [497] = { - [sym__statements] = STATE(10657), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(497), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [487] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3290), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(487), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [ts_builtin_sym_end] = ACTIONS(2211), + [sym_identifier] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2211), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2211), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_end] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), + [sym_self] = ACTIONS(17), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_elsif] = ACTIONS(2213), + [anon_sym_else] = ACTIONS(2213), + [anon_sym_when] = ACTIONS(2213), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(2213), + [sym__line_break] = ACTIONS(2211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__modifier_if_keyword] = ACTIONS(2211), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__modifier_unless_keyword] = ACTIONS(2211), + [sym__modifier_rescue_keyword] = ACTIONS(2211), + [sym__modifier_ensure_keyword] = ACTIONS(2211), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [488] = { + [sym__statements] = STATE(10805), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(488), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -118921,7 +118614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2874), + [anon_sym_end] = ACTIONS(2893), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -118962,115 +118655,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [498] = { - [sym__statements] = STATE(11820), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(498), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [489] = { + [sym__statements] = STATE(10809), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(489), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -119088,7 +118783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2731), + [anon_sym_end] = ACTIONS(2895), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -119129,93 +118824,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [499] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3268), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(499), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2058), + [490] = { + [sym__statements] = STATE(10901), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(490), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2058), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -119223,35 +118945,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(2058), + [anon_sym_RBRACE] = ACTIONS(2897), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_end] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2561), + [anon_sym_annotation] = ACTIONS(35), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_private] = ACTIONS(39), + [anon_sym_module] = ACTIONS(41), + [anon_sym_abstract] = ACTIONS(43), + [anon_sym_class] = ACTIONS(45), + [anon_sym_struct] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(59), + [anon_sym_include] = ACTIONS(61), + [anon_sym_extend] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_next] = ACTIONS(67), + [anon_sym_break] = ACTIONS(69), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -119266,145 +118984,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), + [sym_instance_var] = ACTIONS(91), + [sym_class_var] = ACTIONS(91), [sym_self] = ACTIONS(17), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), + [anon_sym_alias] = ACTIONS(93), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(2060), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_when] = ACTIONS(2060), + [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(2060), - [sym__line_break] = ACTIONS(2058), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__modifier_if_keyword] = ACTIONS(2058), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__modifier_unless_keyword] = ACTIONS(2058), - [sym__modifier_rescue_keyword] = ACTIONS(2058), - [sym__modifier_ensure_keyword] = ACTIONS(2058), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [500] = { - [sym__statements] = STATE(10659), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7953), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(500), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [491] = { + [sym__statements] = STATE(11559), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(491), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -119422,7 +119121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), - [anon_sym_end] = ACTIONS(2876), + [anon_sym_end] = ACTIONS(2656), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -119463,119 +119162,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [501] = { - [sym__statements] = STATE(10507), - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(8869), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(501), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym__statements_repeat1] = STATE(216), - [aux_sym_multi_assign_repeat1] = STATE(981), + [492] = { + [sym__statements] = STATE(11450), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(492), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(2878), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -119583,6 +119283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2899), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -119630,2581 +119331,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [502] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3578), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(502), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(2192), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2192), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(2192), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(2192), - [sym__regular_rescue_keyword] = ACTIONS(2192), - [sym__modifier_rescue_keyword] = ACTIONS(2192), - [sym__regular_ensure_keyword] = ACTIONS(2192), - [sym__modifier_ensure_keyword] = ACTIONS(2192), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [503] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3347), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(503), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_end] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(293), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_case] = ACTIONS(337), - [sym__line_break] = ACTIONS(2058), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2058), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__modifier_if_keyword] = ACTIONS(2058), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__modifier_unless_keyword] = ACTIONS(2058), - [sym__regular_rescue_keyword] = ACTIONS(2058), - [sym__modifier_rescue_keyword] = ACTIONS(2058), - [sym__regular_ensure_keyword] = ACTIONS(2058), - [sym__modifier_ensure_keyword] = ACTIONS(2058), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [504] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4261), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(504), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_end] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(2040), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(2034), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__modifier_if_keyword] = ACTIONS(2034), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__modifier_unless_keyword] = ACTIONS(2034), - [sym__regular_rescue_keyword] = ACTIONS(2034), - [sym__modifier_rescue_keyword] = ACTIONS(2034), - [sym__regular_ensure_keyword] = ACTIONS(2034), - [sym__modifier_ensure_keyword] = ACTIONS(2034), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2884), - }, - [505] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4249), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), - [sym_heredoc_body] = STATE(505), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2040), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(2034), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2034), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(2034), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(2034), - [sym__modifier_rescue_keyword] = ACTIONS(2034), - [sym__regular_ensure_keyword] = ACTIONS(2034), - [sym__modifier_ensure_keyword] = ACTIONS(2034), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2894), - }, - [506] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4006), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), - [sym_heredoc_body] = STATE(506), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(2048), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2048), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(2048), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(2048), - [sym__modifier_rescue_keyword] = ACTIONS(2048), - [sym__regular_ensure_keyword] = ACTIONS(2048), - [sym__modifier_ensure_keyword] = ACTIONS(2048), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2896), - }, - [507] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4192), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(507), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_end] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(2048), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__modifier_if_keyword] = ACTIONS(2048), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__modifier_unless_keyword] = ACTIONS(2048), - [sym__regular_rescue_keyword] = ACTIONS(2048), - [sym__modifier_rescue_keyword] = ACTIONS(2048), - [sym__regular_ensure_keyword] = ACTIONS(2048), - [sym__modifier_ensure_keyword] = ACTIONS(2048), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2898), - }, - [508] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4295), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(508), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [anon_sym_RPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(2034), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(2034), - [anon_sym_RBRACK] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2040), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(2040), - [anon_sym_when] = ACTIONS(2040), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(2040), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2034), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2908), - }, - [509] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4272), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(509), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_end] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(2058), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__modifier_if_keyword] = ACTIONS(2058), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__modifier_unless_keyword] = ACTIONS(2058), - [sym__regular_rescue_keyword] = ACTIONS(2058), - [sym__modifier_rescue_keyword] = ACTIONS(2058), - [sym__regular_ensure_keyword] = ACTIONS(2058), - [sym__modifier_ensure_keyword] = ACTIONS(2058), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [510] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4361), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(510), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_end] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(2048), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__modifier_if_keyword] = ACTIONS(2048), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__modifier_unless_keyword] = ACTIONS(2048), - [sym__regular_rescue_keyword] = ACTIONS(2048), - [sym__modifier_rescue_keyword] = ACTIONS(2048), - [sym__regular_ensure_keyword] = ACTIONS(2048), - [sym__modifier_ensure_keyword] = ACTIONS(2048), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2916), - }, - [511] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3856), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), - [sym_heredoc_body] = STATE(511), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(2058), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2058), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(2058), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(2058), - [sym__modifier_rescue_keyword] = ACTIONS(2058), - [sym__regular_ensure_keyword] = ACTIONS(2058), - [sym__modifier_ensure_keyword] = ACTIONS(2058), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [512] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4435), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(512), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_end] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(2040), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(2034), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__modifier_if_keyword] = ACTIONS(2034), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__modifier_unless_keyword] = ACTIONS(2034), - [sym__regular_rescue_keyword] = ACTIONS(2034), - [sym__modifier_rescue_keyword] = ACTIONS(2034), - [sym__regular_ensure_keyword] = ACTIONS(2034), - [sym__modifier_ensure_keyword] = ACTIONS(2034), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2918), - }, - [513] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4225), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), - [sym_heredoc_body] = STATE(513), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_end] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(425), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_break] = ACTIONS(2192), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2192), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__modifier_if_keyword] = ACTIONS(2192), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__modifier_unless_keyword] = ACTIONS(2192), - [sym__modifier_rescue_keyword] = ACTIONS(2192), - [sym__regular_ensure_keyword] = ACTIONS(2192), - [sym__modifier_ensure_keyword] = ACTIONS(2192), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [514] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4250), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(514), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_end] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(1281), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(2192), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__modifier_if_keyword] = ACTIONS(2192), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__modifier_unless_keyword] = ACTIONS(2192), - [sym__regular_rescue_keyword] = ACTIONS(2192), - [sym__modifier_rescue_keyword] = ACTIONS(2192), - [sym__regular_ensure_keyword] = ACTIONS(2192), - [sym__modifier_ensure_keyword] = ACTIONS(2192), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [493] = { + [sym__statements] = STATE(11582), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(493), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2662), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_private] = ACTIONS(39), + [anon_sym_module] = ACTIONS(41), + [anon_sym_abstract] = ACTIONS(43), + [anon_sym_class] = ACTIONS(45), + [anon_sym_struct] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(53), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(59), + [anon_sym_include] = ACTIONS(61), + [anon_sym_extend] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_next] = ACTIONS(67), + [anon_sym_break] = ACTIONS(69), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(91), + [sym_class_var] = ACTIONS(91), + [sym_self] = ACTIONS(17), + [anon_sym_alias] = ACTIONS(93), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_require] = ACTIONS(101), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [515] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4371), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(515), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [anon_sym_RPAREN] = ACTIONS(2048), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(2048), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_RBRACK] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(2050), - [anon_sym_when] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(2050), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2048), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2920), - }, - [516] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4789), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), - [sym_heredoc_body] = STATE(516), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_end] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_break] = ACTIONS(2048), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__modifier_if_keyword] = ACTIONS(2048), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__modifier_unless_keyword] = ACTIONS(2048), - [sym__modifier_rescue_keyword] = ACTIONS(2048), - [sym__regular_ensure_keyword] = ACTIONS(2048), - [sym__modifier_ensure_keyword] = ACTIONS(2048), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2926), - }, - [517] = { - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7972), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(517), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym_multi_assign_repeat1] = STATE(981), + [494] = { + [sym__statements] = STATE(11830), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(494), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -122213,6 +119621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2901), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), @@ -122260,277 +119669,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [518] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4804), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), - [sym_heredoc_body] = STATE(518), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_COMMA] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_end] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_break] = ACTIONS(2034), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__modifier_if_keyword] = ACTIONS(2034), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__modifier_unless_keyword] = ACTIONS(2034), - [sym__modifier_rescue_keyword] = ACTIONS(2034), - [sym__regular_ensure_keyword] = ACTIONS(2034), - [sym__modifier_ensure_keyword] = ACTIONS(2034), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2928), - }, - [519] = { - [sym__parenthesized_statement] = STATE(2976), - [sym__statement] = STATE(7944), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3277), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(519), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_annotation_def] = STATE(7973), - [sym_annotation] = STATE(7973), - [sym_module_def] = STATE(7973), - [sym_class_def] = STATE(7973), - [sym_struct_def] = STATE(7973), - [sym_enum_def] = STATE(7973), - [sym__base_method_def] = STATE(183), - [sym_method_def] = STATE(7973), - [sym_abstract_method_def] = STATE(7973), - [sym_include] = STATE(7973), - [sym_extend] = STATE(7973), - [sym_return] = STATE(7973), - [sym_next] = STATE(7973), - [sym_break] = STATE(7973), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2836), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7755), - [sym_index_operator] = STATE(2233), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_const_assign] = STATE(7973), - [sym_operator_assign] = STATE(2976), - [sym_lhs_splat] = STATE(10396), - [sym_multi_assign] = STATE(7973), - [sym_type_declaration] = STATE(2976), - [sym_alias] = STATE(7973), - [sym_begin_block] = STATE(2976), - [sym_modifier_rescue] = STATE(7973), - [sym_modifier_ensure] = STATE(7973), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_modifier_if] = STATE(7973), - [sym_modifier_unless] = STATE(7973), - [sym_require] = STATE(7973), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym_multi_assign_repeat1] = STATE(981), + [495] = { + [sym__statements] = STATE(11817), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(495), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -122546,6 +119797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2486), [anon_sym_AT_LBRACK] = ACTIONS(37), [anon_sym_private] = ACTIONS(39), [anon_sym_module] = ACTIONS(41), @@ -122586,12837 +119838,17007 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(99), [anon_sym_require] = ACTIONS(101), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [496] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6474), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5078), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(5830), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(496), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(6475), + [sym_double_splat] = STATE(6475), + [sym_named_expr] = STATE(6475), + [sym_argument_list_no_parens] = STATE(4381), + [sym_argument_list_no_parens_with_block] = STATE(4381), + [sym_argument_list_with_parens] = STATE(4381), + [sym_argument_list_with_parens_and_block] = STATE(4381), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(1637), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_EQ_GT] = ACTIONS(1211), + [anon_sym_DOT_DOT] = ACTIONS(1213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1211), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1213), + [anon_sym_PIPE] = ACTIONS(1213), + [anon_sym_CARET] = ACTIONS(1211), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_LT_LT] = ACTIONS(1211), + [anon_sym_EQ_EQ] = ACTIONS(1213), + [anon_sym_BANG_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ] = ACTIONS(1213), + [anon_sym_GT] = ACTIONS(1213), + [anon_sym_GT_EQ] = ACTIONS(1211), + [anon_sym_LT_EQ_GT] = ACTIONS(1211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1211), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_BANG_TILDE] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(1211), + [anon_sym_AMP_STAR] = ACTIONS(1213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1211), + [anon_sym_DOT] = ACTIONS(1213), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2254), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2256), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_QMARK] = ACTIONS(1211), + [anon_sym_AMP_AMP] = ACTIONS(1211), + [anon_sym_PIPE_PIPE] = ACTIONS(1211), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(1211), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_binary_plus] = ACTIONS(1211), + [sym_binary_minus] = ACTIONS(1211), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym_binary_wrapping_plus] = ACTIONS(1211), + [sym_binary_wrapping_minus] = ACTIONS(1211), + [sym__unary_star] = ACTIONS(2264), + [sym__binary_star] = ACTIONS(1211), + [sym__unary_double_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(1211), + [sym__block_ampersand] = ACTIONS(1181), + [sym_binary_ampersand] = ACTIONS(1211), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(1211), + [sym__binary_double_slash] = ACTIONS(1211), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(1211), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2903), + }, + [497] = { + [sym__statements] = STATE(12054), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8710), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(497), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(2905), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_annotation] = ACTIONS(35), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_private] = ACTIONS(39), + [anon_sym_module] = ACTIONS(41), + [anon_sym_abstract] = ACTIONS(43), + [anon_sym_class] = ACTIONS(45), + [anon_sym_struct] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(53), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(59), + [anon_sym_include] = ACTIONS(61), + [anon_sym_extend] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_next] = ACTIONS(67), + [anon_sym_break] = ACTIONS(69), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(91), + [sym_class_var] = ACTIONS(91), + [sym_self] = ACTIONS(17), + [anon_sym_alias] = ACTIONS(93), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_require] = ACTIONS(101), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [498] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6474), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5078), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(5830), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(498), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(6475), + [sym_double_splat] = STATE(6475), + [sym_named_expr] = STATE(6475), + [sym_argument_list_no_parens] = STATE(4499), + [sym_argument_list_no_parens_with_block] = STATE(4499), + [sym_argument_list_with_parens] = STATE(4499), + [sym_argument_list_with_parens_and_block] = STATE(4499), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4500), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(1637), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1217), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1215), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(1217), + [anon_sym_PIPE] = ACTIONS(1217), + [anon_sym_CARET] = ACTIONS(1215), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_LT_LT] = ACTIONS(1215), + [anon_sym_EQ_EQ] = ACTIONS(1217), + [anon_sym_BANG_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ] = ACTIONS(1217), + [anon_sym_GT] = ACTIONS(1217), + [anon_sym_GT_EQ] = ACTIONS(1215), + [anon_sym_LT_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1215), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_BANG_TILDE] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(1215), + [anon_sym_AMP_STAR] = ACTIONS(1217), + [anon_sym_AMP_STAR_STAR] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(1217), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2254), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2256), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1683), + [anon_sym_QMARK] = ACTIONS(1215), + [anon_sym_AMP_AMP] = ACTIONS(1215), + [anon_sym_PIPE_PIPE] = ACTIONS(1215), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(1215), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_binary_plus] = ACTIONS(1215), + [sym_binary_minus] = ACTIONS(1215), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym_binary_wrapping_plus] = ACTIONS(1215), + [sym_binary_wrapping_minus] = ACTIONS(1215), + [sym__unary_star] = ACTIONS(2264), + [sym__binary_star] = ACTIONS(1215), + [sym__unary_double_star] = ACTIONS(2266), + [sym__binary_double_star] = ACTIONS(1215), + [sym__block_ampersand] = ACTIONS(1181), + [sym_binary_ampersand] = ACTIONS(1215), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(1215), + [sym__binary_double_slash] = ACTIONS(1215), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(1215), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(2903), + }, + [499] = { + [sym__statements] = STATE(11384), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(499), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_annotation] = ACTIONS(35), + [anon_sym_end] = ACTIONS(2668), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_private] = ACTIONS(39), + [anon_sym_module] = ACTIONS(41), + [anon_sym_abstract] = ACTIONS(43), + [anon_sym_class] = ACTIONS(45), + [anon_sym_struct] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(53), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(59), + [anon_sym_include] = ACTIONS(61), + [anon_sym_extend] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_next] = ACTIONS(67), + [anon_sym_break] = ACTIONS(69), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(91), + [sym_class_var] = ACTIONS(91), + [sym_self] = ACTIONS(17), + [anon_sym_alias] = ACTIONS(93), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_require] = ACTIONS(101), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [500] = { + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3504), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), + [sym_heredoc_body] = STATE(500), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_do] = ACTIONS(2075), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(2075), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(2073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2073), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(2073), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(2073), + [sym__regular_rescue_keyword] = ACTIONS(2073), + [sym__modifier_rescue_keyword] = ACTIONS(2073), + [sym__regular_ensure_keyword] = ACTIONS(2073), + [sym__modifier_ensure_keyword] = ACTIONS(2073), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2907), + }, + [501] = { + [sym__statements] = STATE(10660), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8106), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(501), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym__statements_repeat1] = STATE(215), + [aux_sym_multi_assign_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(11), + [anon_sym_SEMI] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [anon_sym_RBRACE] = ACTIONS(2909), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_annotation] = ACTIONS(35), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_private] = ACTIONS(39), + [anon_sym_module] = ACTIONS(41), + [anon_sym_abstract] = ACTIONS(43), + [anon_sym_class] = ACTIONS(45), + [anon_sym_struct] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(53), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(59), + [anon_sym_include] = ACTIONS(61), + [anon_sym_extend] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_next] = ACTIONS(67), + [anon_sym_break] = ACTIONS(69), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(91), + [sym_class_var] = ACTIONS(91), + [sym_self] = ACTIONS(17), + [anon_sym_alias] = ACTIONS(93), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_require] = ACTIONS(101), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, + [502] = { + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3351), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), + [sym_heredoc_body] = STATE(502), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(2201), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(2199), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2199), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(2199), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(2199), + [sym__regular_rescue_keyword] = ACTIONS(2199), + [sym__modifier_rescue_keyword] = ACTIONS(2199), + [sym__regular_ensure_keyword] = ACTIONS(2199), + [sym__modifier_ensure_keyword] = ACTIONS(2199), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [503] = { + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3404), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), + [sym_heredoc_body] = STATE(503), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_end] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(297), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_else] = ACTIONS(2213), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_break] = ACTIONS(2211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2211), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__modifier_if_keyword] = ACTIONS(2211), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__modifier_unless_keyword] = ACTIONS(2211), + [sym__regular_rescue_keyword] = ACTIONS(2211), + [sym__modifier_rescue_keyword] = ACTIONS(2211), + [sym__regular_ensure_keyword] = ACTIONS(2211), + [sym__modifier_ensure_keyword] = ACTIONS(2211), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [504] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4190), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(504), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_end] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(2075), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(2073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__modifier_if_keyword] = ACTIONS(2073), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__modifier_unless_keyword] = ACTIONS(2073), + [sym__regular_rescue_keyword] = ACTIONS(2073), + [sym__modifier_rescue_keyword] = ACTIONS(2073), + [sym__regular_ensure_keyword] = ACTIONS(2073), + [sym__modifier_ensure_keyword] = ACTIONS(2073), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2915), + }, + [505] = { + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4270), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), + [sym_heredoc_body] = STATE(505), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_do] = ACTIONS(2065), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(2059), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2059), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(2059), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(2059), + [sym__modifier_rescue_keyword] = ACTIONS(2059), + [sym__regular_ensure_keyword] = ACTIONS(2059), + [sym__modifier_ensure_keyword] = ACTIONS(2059), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2925), + }, + [506] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4215), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(506), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_end] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(2065), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(2059), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__modifier_if_keyword] = ACTIONS(2059), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__modifier_unless_keyword] = ACTIONS(2059), + [sym__regular_rescue_keyword] = ACTIONS(2059), + [sym__modifier_rescue_keyword] = ACTIONS(2059), + [sym__regular_ensure_keyword] = ACTIONS(2059), + [sym__modifier_ensure_keyword] = ACTIONS(2059), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2927), + }, + [507] = { + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3865), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), + [sym_heredoc_body] = STATE(507), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_do] = ACTIONS(2075), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(2073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2073), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(2073), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(2073), + [sym__modifier_rescue_keyword] = ACTIONS(2073), + [sym__regular_ensure_keyword] = ACTIONS(2073), + [sym__modifier_ensure_keyword] = ACTIONS(2073), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2929), + }, + [508] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4513), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(508), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [anon_sym_RPAREN] = ACTIONS(2073), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(2073), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_RBRACK] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_do] = ACTIONS(2075), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(2075), + [anon_sym_when] = ACTIONS(2075), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(2075), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2073), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2939), + }, + [509] = { + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4257), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), + [sym_heredoc_body] = STATE(509), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(2199), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2199), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(2199), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(2199), + [sym__modifier_rescue_keyword] = ACTIONS(2199), + [sym__regular_ensure_keyword] = ACTIONS(2199), + [sym__modifier_ensure_keyword] = ACTIONS(2199), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [510] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4384), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(510), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_end] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2943), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(2075), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(2073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__modifier_if_keyword] = ACTIONS(2073), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__modifier_unless_keyword] = ACTIONS(2073), + [sym__regular_rescue_keyword] = ACTIONS(2073), + [sym__modifier_rescue_keyword] = ACTIONS(2073), + [sym__regular_ensure_keyword] = ACTIONS(2073), + [sym__modifier_ensure_keyword] = ACTIONS(2073), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2947), + }, + [511] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4207), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(511), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_end] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(2201), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(2199), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__modifier_if_keyword] = ACTIONS(2199), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__modifier_unless_keyword] = ACTIONS(2199), + [sym__regular_rescue_keyword] = ACTIONS(2199), + [sym__modifier_rescue_keyword] = ACTIONS(2199), + [sym__regular_ensure_keyword] = ACTIONS(2199), + [sym__modifier_ensure_keyword] = ACTIONS(2199), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [512] = { + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4280), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), + [sym_heredoc_body] = STATE(512), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_end] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_break] = ACTIONS(2211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2211), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__modifier_if_keyword] = ACTIONS(2211), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__modifier_unless_keyword] = ACTIONS(2211), + [sym__modifier_rescue_keyword] = ACTIONS(2211), + [sym__regular_ensure_keyword] = ACTIONS(2211), + [sym__modifier_ensure_keyword] = ACTIONS(2211), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [513] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4222), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(513), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_end] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(2213), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(2211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__modifier_if_keyword] = ACTIONS(2211), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__modifier_unless_keyword] = ACTIONS(2211), + [sym__regular_rescue_keyword] = ACTIONS(2211), + [sym__modifier_rescue_keyword] = ACTIONS(2211), + [sym__regular_ensure_keyword] = ACTIONS(2211), + [sym__modifier_ensure_keyword] = ACTIONS(2211), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [514] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4531), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(514), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [anon_sym_RPAREN] = ACTIONS(2059), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(2059), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_RBRACK] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_do] = ACTIONS(2065), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(2065), + [anon_sym_when] = ACTIONS(2065), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(2065), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2059), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2949), + }, + [515] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4413), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(515), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_end] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(2943), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(2065), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(2059), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__modifier_if_keyword] = ACTIONS(2059), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__modifier_unless_keyword] = ACTIONS(2059), + [sym__regular_rescue_keyword] = ACTIONS(2059), + [sym__modifier_rescue_keyword] = ACTIONS(2059), + [sym__regular_ensure_keyword] = ACTIONS(2059), + [sym__modifier_ensure_keyword] = ACTIONS(2059), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2951), + }, + [516] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4487), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(516), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_end] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(2943), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(2213), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(2211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__modifier_if_keyword] = ACTIONS(2211), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__modifier_unless_keyword] = ACTIONS(2211), + [sym__regular_rescue_keyword] = ACTIONS(2211), + [sym__modifier_rescue_keyword] = ACTIONS(2211), + [sym__regular_ensure_keyword] = ACTIONS(2211), + [sym__modifier_ensure_keyword] = ACTIONS(2211), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [517] = { + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8325), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(517), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym_multi_assign_repeat1] = STATE(982), + [sym_identifier] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [518] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4396), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(518), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [anon_sym_RPAREN] = ACTIONS(2199), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(2199), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_RBRACK] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(2201), + [anon_sym_when] = ACTIONS(2201), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(2201), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2199), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [519] = { + [sym__parenthesized_statement] = STATE(4798), + [sym__statement] = STATE(8604), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4940), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), + [sym_heredoc_body] = STATE(519), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_annotation_def] = STATE(8762), + [sym_annotation] = STATE(8762), + [sym_module_def] = STATE(8762), + [sym_class_def] = STATE(8762), + [sym_struct_def] = STATE(8762), + [sym_enum_def] = STATE(8762), + [sym__base_method_def] = STATE(160), + [sym_method_def] = STATE(8762), + [sym_abstract_method_def] = STATE(8762), + [sym_include] = STATE(8762), + [sym_extend] = STATE(8762), + [sym_return] = STATE(8762), + [sym_next] = STATE(8762), + [sym_break] = STATE(8762), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4429), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7816), + [sym_index_operator] = STATE(2300), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_const_assign] = STATE(8762), + [sym_operator_assign] = STATE(4798), + [sym_lhs_splat] = STATE(10545), + [sym_multi_assign] = STATE(8762), + [sym_type_declaration] = STATE(4798), + [sym_alias] = STATE(8762), + [sym_begin_block] = STATE(4798), + [sym_modifier_rescue] = STATE(8762), + [sym_modifier_ensure] = STATE(8762), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_modifier_if] = STATE(8762), + [sym_modifier_unless] = STATE(8762), + [sym_require] = STATE(8762), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_identifier] = ACTIONS(2562), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_annotation] = ACTIONS(2570), + [anon_sym_AT_LBRACK] = ACTIONS(2574), + [anon_sym_private] = ACTIONS(2576), + [anon_sym_module] = ACTIONS(2578), + [anon_sym_abstract] = ACTIONS(2580), + [anon_sym_class] = ACTIONS(2582), + [anon_sym_struct] = ACTIONS(2584), + [anon_sym_enum] = ACTIONS(2586), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(2592), + [anon_sym_include] = ACTIONS(2594), + [anon_sym_extend] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2598), + [anon_sym_next] = ACTIONS(2600), + [anon_sym_break] = ACTIONS(2602), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2612), + [sym_class_var] = ACTIONS(2612), + [sym_self] = ACTIONS(1543), + [anon_sym_alias] = ACTIONS(2614), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_require] = ACTIONS(2616), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), + [sym__heredoc_body_start] = ACTIONS(7), + }, [520] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4581), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(8099), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(520), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [anon_sym_RPAREN] = ACTIONS(2192), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(2192), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_RBRACK] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_when] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(2194), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2192), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym_multi_assign_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_annotation] = ACTIONS(35), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_private] = ACTIONS(39), + [anon_sym_module] = ACTIONS(41), + [anon_sym_abstract] = ACTIONS(43), + [anon_sym_class] = ACTIONS(45), + [anon_sym_struct] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(53), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_def] = ACTIONS(57), + [anon_sym_protected] = ACTIONS(59), + [anon_sym_include] = ACTIONS(61), + [anon_sym_extend] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_next] = ACTIONS(67), + [anon_sym_break] = ACTIONS(69), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(91), + [sym_class_var] = ACTIONS(91), + [sym_self] = ACTIONS(17), + [anon_sym_alias] = ACTIONS(93), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_require] = ACTIONS(101), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [521] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4302), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4705), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(521), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [anon_sym_RPAREN] = ACTIONS(2058), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(2058), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_RBRACK] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_end] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(547), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_when] = ACTIONS(2060), - [anon_sym_case] = ACTIONS(589), - [anon_sym_in] = ACTIONS(2060), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2058), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_end] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_break] = ACTIONS(2073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__modifier_if_keyword] = ACTIONS(2073), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__modifier_unless_keyword] = ACTIONS(2073), + [sym__modifier_rescue_keyword] = ACTIONS(2073), + [sym__regular_ensure_keyword] = ACTIONS(2073), + [sym__modifier_ensure_keyword] = ACTIONS(2073), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2957), }, [522] = { - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8268), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4798), + [sym__statement] = STATE(8898), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4940), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(522), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_annotation_def] = STATE(8762), + [sym_annotation] = STATE(8762), + [sym_module_def] = STATE(8762), + [sym_class_def] = STATE(8762), + [sym_struct_def] = STATE(8762), + [sym_enum_def] = STATE(8762), + [sym__base_method_def] = STATE(160), + [sym_method_def] = STATE(8762), + [sym_abstract_method_def] = STATE(8762), + [sym_include] = STATE(8762), + [sym_extend] = STATE(8762), + [sym_return] = STATE(8762), + [sym_next] = STATE(8762), + [sym_break] = STATE(8762), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4429), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7816), + [sym_index_operator] = STATE(2300), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_const_assign] = STATE(8762), + [sym_operator_assign] = STATE(4798), + [sym_lhs_splat] = STATE(10545), + [sym_multi_assign] = STATE(8762), + [sym_type_declaration] = STATE(4798), + [sym_alias] = STATE(8762), + [sym_begin_block] = STATE(4798), + [sym_modifier_rescue] = STATE(8762), + [sym_modifier_ensure] = STATE(8762), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_modifier_if] = STATE(8762), + [sym_modifier_unless] = STATE(8762), + [sym_require] = STATE(8762), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [aux_sym_multi_assign_repeat1] = STATE(981), + [sym_identifier] = ACTIONS(2562), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_annotation] = ACTIONS(2570), + [anon_sym_AT_LBRACK] = ACTIONS(2574), + [anon_sym_private] = ACTIONS(2576), + [anon_sym_module] = ACTIONS(2578), + [anon_sym_abstract] = ACTIONS(2580), + [anon_sym_class] = ACTIONS(2582), + [anon_sym_struct] = ACTIONS(2584), + [anon_sym_enum] = ACTIONS(2586), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [anon_sym_protected] = ACTIONS(2592), + [anon_sym_include] = ACTIONS(2594), + [anon_sym_extend] = ACTIONS(2596), + [anon_sym_return] = ACTIONS(2598), + [anon_sym_next] = ACTIONS(2600), + [anon_sym_break] = ACTIONS(2602), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2612), + [sym_class_var] = ACTIONS(2612), + [sym_self] = ACTIONS(1543), + [anon_sym_alias] = ACTIONS(2614), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_require] = ACTIONS(2616), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [523] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4419), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4731), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(523), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_end] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(2192), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__modifier_if_keyword] = ACTIONS(2192), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__modifier_unless_keyword] = ACTIONS(2192), - [sym__regular_rescue_keyword] = ACTIONS(2192), - [sym__modifier_rescue_keyword] = ACTIONS(2192), - [sym__regular_ensure_keyword] = ACTIONS(2192), - [sym__modifier_ensure_keyword] = ACTIONS(2192), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_end] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_break] = ACTIONS(2059), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__modifier_if_keyword] = ACTIONS(2059), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__modifier_unless_keyword] = ACTIONS(2059), + [sym__modifier_rescue_keyword] = ACTIONS(2059), + [sym__regular_ensure_keyword] = ACTIONS(2059), + [sym__modifier_ensure_keyword] = ACTIONS(2059), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2959), }, [524] = { - [sym__parenthesized_statement] = STATE(4694), - [sym__statement] = STATE(8692), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(5013), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(3089), + [sym__statement] = STATE(7997), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3291), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(524), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_annotation_def] = STATE(8870), - [sym_annotation] = STATE(8870), - [sym_module_def] = STATE(8870), - [sym_class_def] = STATE(8870), - [sym_struct_def] = STATE(8870), - [sym_enum_def] = STATE(8870), - [sym__base_method_def] = STATE(198), - [sym_method_def] = STATE(8870), - [sym_abstract_method_def] = STATE(8870), - [sym_include] = STATE(8870), - [sym_extend] = STATE(8870), - [sym_return] = STATE(8870), - [sym_next] = STATE(8870), - [sym_break] = STATE(8870), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4580), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7763), - [sym_index_operator] = STATE(2300), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_const_assign] = STATE(8870), - [sym_operator_assign] = STATE(4694), - [sym_lhs_splat] = STATE(10484), - [sym_multi_assign] = STATE(8870), - [sym_type_declaration] = STATE(4694), - [sym_alias] = STATE(8870), - [sym_begin_block] = STATE(4694), - [sym_modifier_rescue] = STATE(8870), - [sym_modifier_ensure] = STATE(8870), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_modifier_if] = STATE(8870), - [sym_modifier_unless] = STATE(8870), - [sym_require] = STATE(8870), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [aux_sym_multi_assign_repeat1] = STATE(982), - [sym_identifier] = ACTIONS(2491), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_annotation] = ACTIONS(2499), - [anon_sym_AT_LBRACK] = ACTIONS(2503), - [anon_sym_private] = ACTIONS(2505), - [anon_sym_module] = ACTIONS(2507), - [anon_sym_abstract] = ACTIONS(2509), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2513), - [anon_sym_enum] = ACTIONS(2515), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_annotation_def] = STATE(8030), + [sym_annotation] = STATE(8030), + [sym_module_def] = STATE(8030), + [sym_class_def] = STATE(8030), + [sym_struct_def] = STATE(8030), + [sym_enum_def] = STATE(8030), + [sym__base_method_def] = STATE(171), + [sym_method_def] = STATE(8030), + [sym_abstract_method_def] = STATE(8030), + [sym_include] = STATE(8030), + [sym_extend] = STATE(8030), + [sym_return] = STATE(8030), + [sym_next] = STATE(8030), + [sym_break] = STATE(8030), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2783), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7799), + [sym_index_operator] = STATE(2229), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_const_assign] = STATE(8030), + [sym_operator_assign] = STATE(3089), + [sym_lhs_splat] = STATE(10495), + [sym_multi_assign] = STATE(8030), + [sym_type_declaration] = STATE(3089), + [sym_alias] = STATE(8030), + [sym_begin_block] = STATE(3089), + [sym_modifier_rescue] = STATE(8030), + [sym_modifier_ensure] = STATE(8030), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_modifier_if] = STATE(8030), + [sym_modifier_unless] = STATE(8030), + [sym_require] = STATE(8030), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym_multi_assign_repeat1] = STATE(980), + [sym_identifier] = ACTIONS(11), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_annotation] = ACTIONS(35), + [anon_sym_AT_LBRACK] = ACTIONS(37), + [anon_sym_private] = ACTIONS(39), + [anon_sym_module] = ACTIONS(41), + [anon_sym_abstract] = ACTIONS(43), + [anon_sym_class] = ACTIONS(45), + [anon_sym_struct] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_BANG] = ACTIONS(53), + [anon_sym_TILDE] = ACTIONS(55), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(2521), - [anon_sym_include] = ACTIONS(2523), - [anon_sym_extend] = ACTIONS(2525), - [anon_sym_return] = ACTIONS(2527), - [anon_sym_next] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2531), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2541), - [sym_class_var] = ACTIONS(2541), - [sym_self] = ACTIONS(1455), - [anon_sym_alias] = ACTIONS(2543), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_require] = ACTIONS(2545), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [anon_sym_protected] = ACTIONS(59), + [anon_sym_include] = ACTIONS(61), + [anon_sym_extend] = ACTIONS(63), + [anon_sym_return] = ACTIONS(65), + [anon_sym_next] = ACTIONS(67), + [anon_sym_break] = ACTIONS(69), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(91), + [sym_class_var] = ACTIONS(91), + [sym_self] = ACTIONS(17), + [anon_sym_alias] = ACTIONS(93), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_require] = ACTIONS(101), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [525] = { - [sym__parenthesized_statement] = STATE(4694), - [sym__statement] = STATE(8640), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(5013), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(3946), + [sym__statement] = STATE(8206), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4400), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(525), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_annotation_def] = STATE(8870), - [sym_annotation] = STATE(8870), - [sym_module_def] = STATE(8870), - [sym_class_def] = STATE(8870), - [sym_struct_def] = STATE(8870), - [sym_enum_def] = STATE(8870), - [sym__base_method_def] = STATE(198), - [sym_method_def] = STATE(8870), - [sym_abstract_method_def] = STATE(8870), - [sym_include] = STATE(8870), - [sym_extend] = STATE(8870), - [sym_return] = STATE(8870), - [sym_next] = STATE(8870), - [sym_break] = STATE(8870), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4580), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7763), - [sym_index_operator] = STATE(2300), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_const_assign] = STATE(8870), - [sym_operator_assign] = STATE(4694), - [sym_lhs_splat] = STATE(10484), - [sym_multi_assign] = STATE(8870), - [sym_type_declaration] = STATE(4694), - [sym_alias] = STATE(8870), - [sym_begin_block] = STATE(4694), - [sym_modifier_rescue] = STATE(8870), - [sym_modifier_ensure] = STATE(8870), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_modifier_if] = STATE(8870), - [sym_modifier_unless] = STATE(8870), - [sym_require] = STATE(8870), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_annotation_def] = STATE(8362), + [sym_annotation] = STATE(8362), + [sym_module_def] = STATE(8362), + [sym_class_def] = STATE(8362), + [sym_struct_def] = STATE(8362), + [sym_enum_def] = STATE(8362), + [sym__base_method_def] = STATE(154), + [sym_method_def] = STATE(8362), + [sym_abstract_method_def] = STATE(8362), + [sym_include] = STATE(8362), + [sym_extend] = STATE(8362), + [sym_return] = STATE(8362), + [sym_next] = STATE(8362), + [sym_break] = STATE(8362), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3640), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7811), + [sym_index_operator] = STATE(2279), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_const_assign] = STATE(8362), + [sym_operator_assign] = STATE(3946), + [sym_lhs_splat] = STATE(10551), + [sym_multi_assign] = STATE(8362), + [sym_type_declaration] = STATE(3946), + [sym_alias] = STATE(8362), + [sym_begin_block] = STATE(3946), + [sym_modifier_rescue] = STATE(8362), + [sym_modifier_ensure] = STATE(8362), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_modifier_if] = STATE(8362), + [sym_modifier_unless] = STATE(8362), + [sym_require] = STATE(8362), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), [aux_sym_multi_assign_repeat1] = STATE(982), - [sym_identifier] = ACTIONS(2491), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_annotation] = ACTIONS(2499), - [anon_sym_AT_LBRACK] = ACTIONS(2503), - [anon_sym_private] = ACTIONS(2505), - [anon_sym_module] = ACTIONS(2507), - [anon_sym_abstract] = ACTIONS(2509), - [anon_sym_class] = ACTIONS(2511), - [anon_sym_struct] = ACTIONS(2513), - [anon_sym_enum] = ACTIONS(2515), + [sym_identifier] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_annotation] = ACTIONS(1379), + [anon_sym_AT_LBRACK] = ACTIONS(1383), + [anon_sym_private] = ACTIONS(1385), + [anon_sym_module] = ACTIONS(1387), + [anon_sym_abstract] = ACTIONS(1389), + [anon_sym_class] = ACTIONS(1391), + [anon_sym_struct] = ACTIONS(1393), + [anon_sym_enum] = ACTIONS(1395), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(2521), - [anon_sym_include] = ACTIONS(2523), - [anon_sym_extend] = ACTIONS(2525), - [anon_sym_return] = ACTIONS(2527), - [anon_sym_next] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2531), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2541), - [sym_class_var] = ACTIONS(2541), - [sym_self] = ACTIONS(1455), - [anon_sym_alias] = ACTIONS(2543), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_require] = ACTIONS(2545), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_include] = ACTIONS(1403), + [anon_sym_extend] = ACTIONS(1405), + [anon_sym_return] = ACTIONS(1407), + [anon_sym_next] = ACTIONS(1409), + [anon_sym_break] = ACTIONS(1411), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(1421), + [sym_class_var] = ACTIONS(1421), + [sym_self] = ACTIONS(1279), + [anon_sym_alias] = ACTIONS(1423), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_require] = ACTIONS(1427), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [526] = { - [sym__parenthesized_statement] = STATE(4241), - [sym__statement] = STATE(8180), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4376), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4401), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(526), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_annotation_def] = STATE(8289), - [sym_annotation] = STATE(8289), - [sym_module_def] = STATE(8289), - [sym_class_def] = STATE(8289), - [sym_struct_def] = STATE(8289), - [sym_enum_def] = STATE(8289), - [sym__base_method_def] = STATE(182), - [sym_method_def] = STATE(8289), - [sym_abstract_method_def] = STATE(8289), - [sym_include] = STATE(8289), - [sym_extend] = STATE(8289), - [sym_return] = STATE(8289), - [sym_next] = STATE(8289), - [sym_break] = STATE(8289), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3776), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7758), - [sym_index_operator] = STATE(2275), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_const_assign] = STATE(8289), - [sym_operator_assign] = STATE(4241), - [sym_lhs_splat] = STATE(10418), - [sym_multi_assign] = STATE(8289), - [sym_type_declaration] = STATE(4241), - [sym_alias] = STATE(8289), - [sym_begin_block] = STATE(4241), - [sym_modifier_rescue] = STATE(8289), - [sym_modifier_ensure] = STATE(8289), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_modifier_if] = STATE(8289), - [sym_modifier_unless] = STATE(8289), - [sym_require] = STATE(8289), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym_multi_assign_repeat1] = STATE(980), - [sym_identifier] = ACTIONS(1351), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_annotation] = ACTIONS(1359), - [anon_sym_AT_LBRACK] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_abstract] = ACTIONS(1369), - [anon_sym_class] = ACTIONS(1371), - [anon_sym_struct] = ACTIONS(1373), - [anon_sym_enum] = ACTIONS(1375), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_def] = ACTIONS(57), - [anon_sym_protected] = ACTIONS(1381), - [anon_sym_include] = ACTIONS(1383), - [anon_sym_extend] = ACTIONS(1385), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_next] = ACTIONS(1389), - [anon_sym_break] = ACTIONS(1391), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(1401), - [sym_class_var] = ACTIONS(1401), - [sym_self] = ACTIONS(1263), - [anon_sym_alias] = ACTIONS(1403), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_require] = ACTIONS(1407), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [anon_sym_RPAREN] = ACTIONS(2211), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(2211), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_RBRACK] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_end] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_else] = ACTIONS(2213), + [anon_sym_when] = ACTIONS(2213), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [anon_sym_in] = ACTIONS(2213), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2211), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [527] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4460), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4357), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(527), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_end] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2912), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(2058), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__modifier_if_keyword] = ACTIONS(2058), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__modifier_unless_keyword] = ACTIONS(2058), - [sym__regular_rescue_keyword] = ACTIONS(2058), - [sym__modifier_rescue_keyword] = ACTIONS(2058), - [sym__regular_ensure_keyword] = ACTIONS(2058), - [sym__modifier_ensure_keyword] = ACTIONS(2058), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_end] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(2943), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(2201), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(2199), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__modifier_if_keyword] = ACTIONS(2199), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__modifier_unless_keyword] = ACTIONS(2199), + [sym__regular_rescue_keyword] = ACTIONS(2199), + [sym__modifier_rescue_keyword] = ACTIONS(2199), + [sym__regular_ensure_keyword] = ACTIONS(2199), + [sym__modifier_ensure_keyword] = ACTIONS(2199), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [528] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4811), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4921), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(528), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_end] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_break] = ACTIONS(2058), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__modifier_if_keyword] = ACTIONS(2058), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__modifier_unless_keyword] = ACTIONS(2058), - [sym__modifier_rescue_keyword] = ACTIONS(2058), - [sym__regular_ensure_keyword] = ACTIONS(2058), - [sym__modifier_ensure_keyword] = ACTIONS(2058), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(2073), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(2073), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_RBRACK] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_end] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(2075), + [anon_sym_when] = ACTIONS(2075), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [anon_sym_in] = ACTIONS(2075), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2969), }, [529] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4796), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(5041), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(529), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_end] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_break] = ACTIONS(2192), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__modifier_if_keyword] = ACTIONS(2192), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__modifier_unless_keyword] = ACTIONS(2192), - [sym__modifier_rescue_keyword] = ACTIONS(2192), - [sym__regular_ensure_keyword] = ACTIONS(2192), - [sym__modifier_ensure_keyword] = ACTIONS(2192), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_end] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_break] = ACTIONS(2059), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__modifier_if_keyword] = ACTIONS(2059), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__modifier_unless_keyword] = ACTIONS(2059), + [sym__modifier_rescue_keyword] = ACTIONS(2059), + [sym__regular_ensure_keyword] = ACTIONS(2059), + [sym__modifier_ensure_keyword] = ACTIONS(2059), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2977), }, [530] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4901), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4954), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(530), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_end] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2932), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_break] = ACTIONS(2034), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__modifier_if_keyword] = ACTIONS(2034), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__modifier_unless_keyword] = ACTIONS(2034), - [sym__modifier_rescue_keyword] = ACTIONS(2034), - [sym__regular_ensure_keyword] = ACTIONS(2034), - [sym__modifier_ensure_keyword] = ACTIONS(2034), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2936), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_end] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_break] = ACTIONS(2073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__modifier_if_keyword] = ACTIONS(2073), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__modifier_unless_keyword] = ACTIONS(2073), + [sym__modifier_rescue_keyword] = ACTIONS(2073), + [sym__regular_ensure_keyword] = ACTIONS(2073), + [sym__modifier_ensure_keyword] = ACTIONS(2073), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2979), }, [531] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4941), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4722), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(531), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(2034), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(2034), - [anon_sym_RBRACK] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_end] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(2040), - [anon_sym_when] = ACTIONS(2040), - [anon_sym_case] = ACTIONS(1679), - [anon_sym_in] = ACTIONS(2040), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2946), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_end] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_break] = ACTIONS(2199), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__modifier_if_keyword] = ACTIONS(2199), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__modifier_unless_keyword] = ACTIONS(2199), + [sym__modifier_rescue_keyword] = ACTIONS(2199), + [sym__regular_ensure_keyword] = ACTIONS(2199), + [sym__modifier_ensure_keyword] = ACTIONS(2199), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), + [sym__heredoc_body_start] = ACTIONS(7), }, [532] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4977), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4738), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(532), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_end] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(2932), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_break] = ACTIONS(2048), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__modifier_if_keyword] = ACTIONS(2048), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__modifier_unless_keyword] = ACTIONS(2048), - [sym__modifier_rescue_keyword] = ACTIONS(2048), - [sym__regular_ensure_keyword] = ACTIONS(2048), - [sym__modifier_ensure_keyword] = ACTIONS(2048), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2948), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_end] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_break] = ACTIONS(2211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__modifier_if_keyword] = ACTIONS(2211), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__modifier_unless_keyword] = ACTIONS(2211), + [sym__modifier_rescue_keyword] = ACTIONS(2211), + [sym__regular_ensure_keyword] = ACTIONS(2211), + [sym__modifier_ensure_keyword] = ACTIONS(2211), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), + [sym__heredoc_body_start] = ACTIONS(7), }, [533] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4939), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4941), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(533), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(2048), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(2048), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_RBRACK] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_end] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(2050), - [anon_sym_when] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(1679), - [anon_sym_in] = ACTIONS(2050), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2950), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(2059), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(2059), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_RBRACK] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_end] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(2065), + [anon_sym_when] = ACTIONS(2065), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [anon_sym_in] = ACTIONS(2065), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(2981), }, [534] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4978), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5008), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(534), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_end] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2932), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_break] = ACTIONS(2192), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__modifier_if_keyword] = ACTIONS(2192), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__modifier_unless_keyword] = ACTIONS(2192), - [sym__modifier_rescue_keyword] = ACTIONS(2192), - [sym__regular_ensure_keyword] = ACTIONS(2192), - [sym__modifier_ensure_keyword] = ACTIONS(2192), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(2199), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(2199), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_RBRACK] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_end] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(2201), + [anon_sym_when] = ACTIONS(2201), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [anon_sym_in] = ACTIONS(2201), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [535] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4916), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4989), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(535), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(2192), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(2192), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_RBRACK] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_end] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_when] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(1679), - [anon_sym_in] = ACTIONS(2194), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(2211), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(2211), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_RBRACK] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_end] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(1657), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(2213), + [anon_sym_when] = ACTIONS(2213), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [anon_sym_in] = ACTIONS(2213), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [536] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4914), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4922), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(536), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_end] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2932), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_break] = ACTIONS(2058), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__modifier_if_keyword] = ACTIONS(2058), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__modifier_unless_keyword] = ACTIONS(2058), - [sym__modifier_rescue_keyword] = ACTIONS(2058), - [sym__regular_ensure_keyword] = ACTIONS(2058), - [sym__modifier_ensure_keyword] = ACTIONS(2058), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_end] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_break] = ACTIONS(2211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__modifier_if_keyword] = ACTIONS(2211), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__modifier_unless_keyword] = ACTIONS(2211), + [sym__modifier_rescue_keyword] = ACTIONS(2211), + [sym__regular_ensure_keyword] = ACTIONS(2211), + [sym__modifier_ensure_keyword] = ACTIONS(2211), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [537] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4986), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4997), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(537), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(2058), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(2058), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_RBRACK] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_end] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(1645), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_when] = ACTIONS(2060), - [anon_sym_case] = ACTIONS(1679), - [anon_sym_in] = ACTIONS(2060), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_end] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_break] = ACTIONS(2199), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__modifier_if_keyword] = ACTIONS(2199), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__modifier_unless_keyword] = ACTIONS(2199), + [sym__modifier_rescue_keyword] = ACTIONS(2199), + [sym__regular_ensure_keyword] = ACTIONS(2199), + [sym__modifier_ensure_keyword] = ACTIONS(2199), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [538] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5279), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5333), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(538), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(2034), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(2034), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_end] = ACTIONS(2040), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(2040), - [anon_sym_when] = ACTIONS(2040), - [anon_sym_case] = ACTIONS(1679), - [anon_sym_in] = ACTIONS(2040), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2976), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(2073), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(2073), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_end] = ACTIONS(2075), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(2075), + [anon_sym_when] = ACTIONS(2075), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [anon_sym_in] = ACTIONS(2075), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3007), }, [539] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5406), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5268), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(539), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2040), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_then] = ACTIONS(2040), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(2034), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2034), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2986), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_do] = ACTIONS(2065), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_then] = ACTIONS(2065), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(2059), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2059), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3017), }, [540] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5392), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5358), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(540), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(2048), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(2048), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_end] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(2050), - [anon_sym_when] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(1679), - [anon_sym_in] = ACTIONS(2050), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2988), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_do] = ACTIONS(2075), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_then] = ACTIONS(2075), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(2073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2073), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3019), }, [541] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5210), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5294), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(541), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_then] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(2048), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2048), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(2990), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(2059), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(2059), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_end] = ACTIONS(2065), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(2065), + [anon_sym_when] = ACTIONS(2065), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [anon_sym_in] = ACTIONS(2065), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3021), }, [542] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5396), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5301), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(542), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_then] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(2192), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2192), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(2211), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(2211), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_end] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(2213), + [anon_sym_when] = ACTIONS(2213), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [anon_sym_in] = ACTIONS(2213), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [543] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5526), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5461), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(543), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_RBRACK] = ACTIONS(2050), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_RBRACK_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2048), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3004), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(2073), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_EQ_GT] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_do] = ACTIONS(2075), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2073), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3027), }, [544] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5657), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5664), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(544), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(2048), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_EQ_GT] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2048), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3010), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_RBRACK] = ACTIONS(2075), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_RBRACK_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_do] = ACTIONS(2075), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2073), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3041), }, [545] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5288), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5201), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(545), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(2058), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(2058), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_end] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(2060), - [anon_sym_when] = ACTIONS(2060), - [anon_sym_case] = ACTIONS(1679), - [anon_sym_in] = ACTIONS(2060), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_then] = ACTIONS(2201), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(2199), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2199), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [546] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5704), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5592), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(546), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(2034), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(2034), - [anon_sym_EQ_GT] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2040), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2034), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3012), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_RBRACK] = ACTIONS(2065), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_RBRACK_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_do] = ACTIONS(2065), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2059), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3043), }, [547] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5269), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5335), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(547), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(2192), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(2192), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_end] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_when] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(1679), - [anon_sym_in] = ACTIONS(2194), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(699), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_then] = ACTIONS(2213), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(2211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2211), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [548] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5713), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5726), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(548), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(2034), - [anon_sym_RBRACK] = ACTIONS(2040), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_RBRACK_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2040), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2034), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3014), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(2059), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_do] = ACTIONS(2065), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2059), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3045), }, [549] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5413), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5286), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(549), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(689), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_then] = ACTIONS(2060), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(2058), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2058), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(2199), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(2199), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_end] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(2987), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_else] = ACTIONS(2201), + [anon_sym_when] = ACTIONS(2201), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [anon_sym_in] = ACTIONS(2201), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [550] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5684), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5987), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(550), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_RBRACK] = ACTIONS(2194), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_RBRACK_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2192), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_do] = ACTIONS(2075), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2073), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym__end_of_with_expression] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3055), }, [551] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6224), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5685), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(551), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2040), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2034), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym__end_of_with_expression] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3024), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(2199), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_EQ_GT] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2199), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), }, [552] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(6195), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5774), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(552), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_COLON2] = ACTIONS(2040), - [anon_sym_do] = ACTIONS(2040), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2034), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3030), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(2211), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_EQ_GT] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(803), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2211), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), }, [553] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5861), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6039), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(553), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2048), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym__end_of_with_expression] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3032), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_COLON2] = ACTIONS(2075), + [anon_sym_do] = ACTIONS(2075), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2073), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3061), }, [554] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5964), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5602), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(554), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_COMMA] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_then] = ACTIONS(2040), - [anon_sym_case] = ACTIONS(2132), - [sym__line_break] = ACTIONS(2034), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3042), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_RBRACK] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_RBRACK_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2211), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), }, [555] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5826), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5937), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(555), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_COLON2] = ACTIONS(2050), - [anon_sym_do] = ACTIONS(2050), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2048), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3044), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_then] = ACTIONS(2065), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_break] = ACTIONS(2059), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3071), }, [556] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5563), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6127), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(556), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(2192), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_EQ_GT] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2192), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_COLON2] = ACTIONS(2065), + [anon_sym_do] = ACTIONS(2065), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2059), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3073), }, [557] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6070), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5576), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(557), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_then] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(2132), - [sym__line_break] = ACTIONS(2048), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3046), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_RBRACK] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(873), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_RBRACK_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2199), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), }, [558] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5720), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6164), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(558), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_RBRACK] = ACTIONS(2060), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(811), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_RBRACK_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2058), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_then] = ACTIONS(2075), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_break] = ACTIONS(2073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3075), }, [559] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5491), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5819), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(559), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(2058), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_EQ_GT] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2058), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_do] = ACTIONS(2065), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2059), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym__end_of_with_expression] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3077), }, [560] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5939), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5945), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(560), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_then] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(2132), - [sym__line_break] = ACTIONS(2192), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_then] = ACTIONS(2213), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_break] = ACTIONS(2211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [561] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6606), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6153), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(561), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_RBRACK] = ACTIONS(2050), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_RBRACK_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3056), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_COLON2] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2211), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), }, [562] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(6139), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5927), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(562), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_COLON2] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2192), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_then] = ACTIONS(2201), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_break] = ACTIONS(2199), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [563] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(6230), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6590), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(563), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(1085), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_COLON2] = ACTIONS(2060), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2058), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_RBRACK] = ACTIONS(2065), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_RBRACK_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3087), }, [564] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6334), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6647), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(564), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(2048), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_EQ_GT] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(2330), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3062), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(2059), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3093), }, [565] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5962), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6105), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(565), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2060), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2058), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym__end_of_with_expression] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_COLON2] = ACTIONS(2201), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2199), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [566] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5980), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5792), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(566), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_then] = ACTIONS(2060), - [anon_sym_case] = ACTIONS(2132), - [sym__line_break] = ACTIONS(2058), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2211), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym__end_of_with_expression] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [567] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6383), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6632), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(567), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(2034), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(2034), - [anon_sym_EQ_GT] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2330), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3064), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(2073), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_EQ_GT] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3095), }, [568] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6421), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5959), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(568), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(2034), - [anon_sym_RBRACK] = ACTIONS(2040), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_RBRACK_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3066), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_do] = ACTIONS(2201), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(2199), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym__end_of_with_expression] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), }, [569] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6036), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6617), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(569), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(2192), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym__end_of_with_expression] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_RBRACK] = ACTIONS(2075), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_RBRACK_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3097), }, [570] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6856), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6887), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(570), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_COLON2] = ACTIONS(2040), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3076), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_break] = ACTIONS(2059), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3123), }, [571] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6361), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6701), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(571), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(2192), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_EQ_GT] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2330), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_break] = ACTIONS(2073), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3125), }, [572] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6890), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6920), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(572), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_break] = ACTIONS(2048), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3102), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2444), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_COLON2] = ACTIONS(2075), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3135), }, [573] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6427), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6462), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(573), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(2058), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_EQ_GT] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2330), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_RBRACK] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_RBRACK_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [574] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6397), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6278), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(574), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_RBRACK] = ACTIONS(2194), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_RBRACK_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_RBRACK] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_RBRACK_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [575] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6840), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6861), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(575), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_COMMA] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym__end_of_with_expression] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3112), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_COMMA] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym__end_of_with_expression] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3145), }, [576] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6826), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6508), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(576), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym__end_of_with_expression] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3114), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(2199), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_EQ_GT] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), }, [577] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6455), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6495), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(577), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_RBRACK] = ACTIONS(2060), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2254), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_RBRACK_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(2211), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_EQ_GT] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [578] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6877), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6714), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(578), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_COLON2] = ACTIONS(2050), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3116), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym__end_of_with_expression] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3147), }, [579] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6795), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6898), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(579), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_break] = ACTIONS(2034), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3118), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(2444), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_COLON2] = ACTIONS(2065), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3149), }, [580] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6999), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6964), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(580), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_EQ_GT] = ACTIONS(2048), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3140), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_EQ_GT] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3171), }, [581] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(7012), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7022), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(581), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym__end_of_with_expression] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3166), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym__end_of_with_expression] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3197), }, [582] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6868), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6960), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(582), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym__end_of_with_expression] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_COLON2] = ACTIONS(2075), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3219), }, [583] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6830), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7011), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(583), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2645), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym__end_of_with_expression] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_EQ_GT] = ACTIONS(2059), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3221), }, [584] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6749), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6888), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(584), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_break] = ACTIONS(2192), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(2199), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_break] = ACTIONS(2199), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [585] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6933), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6781), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(585), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DOT_DOT] = ACTIONS(2050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2048), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(2050), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2048), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2048), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_GT_EQ] = ACTIONS(2048), - [anon_sym_LT_EQ_GT] = ACTIONS(2048), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_BANG_TILDE] = ACTIONS(2048), - [anon_sym_EQ_TILDE] = ACTIONS(2048), - [anon_sym_AMP_STAR] = ACTIONS(2050), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_AMP_AMP] = ACTIONS(2048), - [anon_sym_PIPE_PIPE] = ACTIONS(2048), - [anon_sym_COLON2] = ACTIONS(2050), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2048), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_binary_plus] = ACTIONS(2048), - [sym_binary_minus] = ACTIONS(2048), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym_binary_wrapping_plus] = ACTIONS(2048), - [sym_binary_wrapping_minus] = ACTIONS(2048), - [sym__binary_star] = ACTIONS(2048), - [sym__binary_double_star] = ACTIONS(2048), - [sym_binary_ampersand] = ACTIONS(2048), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2048), - [sym__binary_double_slash] = ACTIONS(2048), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2048), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3188), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(2211), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_break] = ACTIONS(2211), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), }, [586] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6947), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6721), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(586), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_COLON2] = ACTIONS(2040), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3190), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym__end_of_with_expression] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), }, [587] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6655), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6705), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(587), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(3082), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_break] = ACTIONS(2058), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(2692), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym__end_of_with_expression] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [588] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6897), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6966), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(588), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym__end_of_with_expression] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3192), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2073), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2075), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_LT_LT] = ACTIONS(2073), + [anon_sym_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_GT] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2073), + [anon_sym_LT_EQ_GT] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_BANG_TILDE] = ACTIONS(2073), + [anon_sym_EQ_TILDE] = ACTIONS(2073), + [anon_sym_AMP_STAR] = ACTIONS(2075), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2073), + [anon_sym_PIPE_PIPE] = ACTIONS(2073), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym__start_of_index_operator] = ACTIONS(2073), + [sym__end_of_with_expression] = ACTIONS(2073), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_binary_plus] = ACTIONS(2073), + [sym_binary_minus] = ACTIONS(2073), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym_binary_wrapping_plus] = ACTIONS(2073), + [sym_binary_wrapping_minus] = ACTIONS(2073), + [sym__binary_star] = ACTIONS(2073), + [sym__binary_double_star] = ACTIONS(2073), + [sym_binary_ampersand] = ACTIONS(2073), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__binary_slash] = ACTIONS(2073), + [sym__binary_double_slash] = ACTIONS(2073), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__modulo_operator] = ACTIONS(2073), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3223), }, [589] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6848), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7054), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(589), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_COLON2] = ACTIONS(2194), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DOT_DOT] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_LT_EQ_GT] = ACTIONS(2059), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_BANG_TILDE] = ACTIONS(2059), + [anon_sym_EQ_TILDE] = ACTIONS(2059), + [anon_sym_AMP_STAR] = ACTIONS(2065), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2059), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_COLON2] = ACTIONS(2065), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2059), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_binary_plus] = ACTIONS(2059), + [sym_binary_minus] = ACTIONS(2059), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym_binary_wrapping_plus] = ACTIONS(2059), + [sym_binary_wrapping_minus] = ACTIONS(2059), + [sym__binary_star] = ACTIONS(2059), + [sym__binary_double_star] = ACTIONS(2059), + [sym_binary_ampersand] = ACTIONS(2059), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2059), + [sym__binary_double_slash] = ACTIONS(2059), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2059), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__end_of_range] = ACTIONS(3225), }, [590] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6923), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6890), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(590), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_EQ_GT] = ACTIONS(2034), - [anon_sym_DOT_DOT] = ACTIONS(2040), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2034), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2034), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2040), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ] = ACTIONS(2040), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_LT_EQ_GT] = ACTIONS(2034), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_BANG_TILDE] = ACTIONS(2034), - [anon_sym_EQ_TILDE] = ACTIONS(2034), - [anon_sym_AMP_STAR] = ACTIONS(2040), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2040), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2034), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_binary_plus] = ACTIONS(2034), - [sym_binary_minus] = ACTIONS(2034), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym_binary_wrapping_plus] = ACTIONS(2034), - [sym_binary_wrapping_minus] = ACTIONS(2034), - [sym__binary_star] = ACTIONS(2034), - [sym__binary_double_star] = ACTIONS(2034), - [sym_binary_ampersand] = ACTIONS(2034), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2034), - [sym__binary_double_slash] = ACTIONS(2034), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2034), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__end_of_range] = ACTIONS(3194), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(2444), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_COLON2] = ACTIONS(2201), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), }, [591] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6863), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6905), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(591), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2433), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_COLON2] = ACTIONS(2060), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(2444), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_COLON2] = ACTIONS(2213), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [592] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6930), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6970), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(592), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_EQ_GT] = ACTIONS(2058), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_COLON2] = ACTIONS(2213), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [593] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(7015), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6994), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(593), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym__end_of_with_expression] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_EQ_GT] = ACTIONS(2211), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [594] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6958), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7040), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(594), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_COLON2] = ACTIONS(2060), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2211), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_CARET] = ACTIONS(2211), + [anon_sym_GT_GT] = ACTIONS(2211), + [anon_sym_LT_LT] = ACTIONS(2211), + [anon_sym_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2211), + [anon_sym_LT_EQ_GT] = ACTIONS(2211), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2211), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_BANG_TILDE] = ACTIONS(2211), + [anon_sym_EQ_TILDE] = ACTIONS(2211), + [anon_sym_AMP_STAR] = ACTIONS(2213), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2211), + [anon_sym_DOT] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_AMP_AMP] = ACTIONS(2211), + [anon_sym_PIPE_PIPE] = ACTIONS(2211), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym__start_of_index_operator] = ACTIONS(2211), + [sym__end_of_with_expression] = ACTIONS(2211), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_binary_plus] = ACTIONS(2211), + [sym_binary_minus] = ACTIONS(2211), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym_binary_wrapping_plus] = ACTIONS(2211), + [sym_binary_wrapping_minus] = ACTIONS(2211), + [sym__binary_star] = ACTIONS(2211), + [sym__binary_double_star] = ACTIONS(2211), + [sym_binary_ampersand] = ACTIONS(2211), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__binary_slash] = ACTIONS(2211), + [sym__binary_double_slash] = ACTIONS(2211), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__modulo_operator] = ACTIONS(2211), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [595] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6936), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6976), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(595), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_COLON2] = ACTIONS(2194), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_EQ_GT] = ACTIONS(2199), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [596] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6915), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7031), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(596), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_EQ_GT] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2192), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2194), - [anon_sym_CARET] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2192), - [anon_sym_LT_EQ_GT] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2192), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_BANG_TILDE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_AMP_STAR] = ACTIONS(2194), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym__start_of_index_operator] = ACTIONS(2192), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_binary_plus] = ACTIONS(2192), - [sym_binary_minus] = ACTIONS(2192), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym_binary_wrapping_plus] = ACTIONS(2192), - [sym_binary_wrapping_minus] = ACTIONS(2192), - [sym__binary_star] = ACTIONS(2192), - [sym__binary_double_star] = ACTIONS(2192), - [sym_binary_ampersand] = ACTIONS(2192), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__binary_slash] = ACTIONS(2192), - [sym__binary_double_slash] = ACTIONS(2192), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__modulo_operator] = ACTIONS(2192), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_COLON2] = ACTIONS(2201), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [597] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6911), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7021), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(597), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DOT_DOT] = ACTIONS(2060), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2058), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_LT_EQ_GT] = ACTIONS(2058), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_BANG_TILDE] = ACTIONS(2058), - [anon_sym_EQ_TILDE] = ACTIONS(2058), - [anon_sym_AMP_STAR] = ACTIONS(2060), - [anon_sym_AMP_STAR_STAR] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_QMARK] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym__start_of_index_operator] = ACTIONS(2058), - [sym__end_of_with_expression] = ACTIONS(2058), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_binary_plus] = ACTIONS(2058), - [sym_binary_minus] = ACTIONS(2058), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym_binary_wrapping_plus] = ACTIONS(2058), - [sym_binary_wrapping_minus] = ACTIONS(2058), - [sym__binary_star] = ACTIONS(2058), - [sym__binary_double_star] = ACTIONS(2058), - [sym_binary_ampersand] = ACTIONS(2058), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__binary_slash] = ACTIONS(2058), - [sym__binary_double_slash] = ACTIONS(2058), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__modulo_operator] = ACTIONS(2058), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2199), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2201), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2201), + [anon_sym_GT] = ACTIONS(2201), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_LT_EQ_GT] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_BANG_TILDE] = ACTIONS(2199), + [anon_sym_EQ_TILDE] = ACTIONS(2199), + [anon_sym_AMP_STAR] = ACTIONS(2201), + [anon_sym_AMP_STAR_STAR] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2201), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_QMARK] = ACTIONS(2199), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym__start_of_index_operator] = ACTIONS(2199), + [sym__end_of_with_expression] = ACTIONS(2199), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_binary_plus] = ACTIONS(2199), + [sym_binary_minus] = ACTIONS(2199), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym_binary_wrapping_plus] = ACTIONS(2199), + [sym_binary_wrapping_minus] = ACTIONS(2199), + [sym__binary_star] = ACTIONS(2199), + [sym__binary_double_star] = ACTIONS(2199), + [sym_binary_ampersand] = ACTIONS(2199), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__binary_slash] = ACTIONS(2199), + [sym__binary_double_slash] = ACTIONS(2199), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__modulo_operator] = ACTIONS(2199), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [598] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5046), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5064), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(598), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(9068), - [sym_double_splat] = STATE(9068), - [sym_named_expr] = STATE(9068), - [sym_argument_list_no_parens] = STATE(8736), - [sym_argument_list_no_parens_with_block] = STATE(9456), - [sym_argument_list_with_parens] = STATE(8736), - [sym_argument_list_with_parens_and_block] = STATE(9456), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_do_end_block] = STATE(9457), - [sym_brace_block] = STATE(9457), - [sym_block_argument] = STATE(9431), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_LPAREN] = ACTIONS(669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_LPAREN2] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3200), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_then] = ACTIONS(1191), - [anon_sym_case] = ACTIONS(731), - [sym__line_break] = ACTIONS(1189), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3202), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__unary_star] = ACTIONS(743), - [sym__unary_double_star] = ACTIONS(745), - [sym__block_ampersand] = ACTIONS(3204), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3206), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(8937), + [sym_double_splat] = STATE(8937), + [sym_named_expr] = STATE(8937), + [sym_argument_list_no_parens] = STATE(8631), + [sym_argument_list_no_parens_with_block] = STATE(9540), + [sym_argument_list_with_parens] = STATE(8631), + [sym_argument_list_with_parens_and_block] = STATE(9540), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_do_end_block] = STATE(9541), + [sym_brace_block] = STATE(9541), + [sym_block_argument] = STATE(9499), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_SEMI] = ACTIONS(1201), + [anon_sym_LPAREN] = ACTIONS(679), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_LPAREN2] = ACTIONS(3229), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_then] = ACTIONS(1203), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_break] = ACTIONS(1201), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3233), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__unary_star] = ACTIONS(757), + [sym__unary_double_star] = ACTIONS(759), + [sym__block_ampersand] = ACTIONS(3235), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3237), }, [599] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5625), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5589), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(599), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(9209), - [sym_double_splat] = STATE(9209), - [sym_named_expr] = STATE(9209), - [sym_argument_list_no_parens] = STATE(8996), - [sym_argument_list_no_parens_with_block] = STATE(9697), - [sym_argument_list_with_parens] = STATE(8996), - [sym_argument_list_with_parens_and_block] = STATE(9697), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(9719), - [sym_brace_block] = STATE(9719), - [sym_block_argument] = STATE(10115), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [anon_sym_RBRACE] = ACTIONS(1189), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(3210), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3214), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(3216), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3218), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(9277), + [sym_double_splat] = STATE(9277), + [sym_named_expr] = STATE(9277), + [sym_argument_list_no_parens] = STATE(9083), + [sym_argument_list_no_parens_with_block] = STATE(10035), + [sym_argument_list_with_parens] = STATE(9083), + [sym_argument_list_with_parens_and_block] = STATE(10035), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(10040), + [sym_brace_block] = STATE(10040), + [sym_block_argument] = STATE(10215), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [anon_sym_RBRACE] = ACTIONS(1201), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(1201), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(3241), + [anon_sym_do] = ACTIONS(3243), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3245), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(3247), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3249), }, [600] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5436), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5479), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(600), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(9312), - [sym_double_splat] = STATE(9312), - [sym_named_expr] = STATE(9312), - [sym_argument_list_no_parens] = STATE(8996), - [sym_argument_list_no_parens_with_block] = STATE(9697), - [sym_argument_list_with_parens] = STATE(8996), - [sym_argument_list_with_parens_and_block] = STATE(9697), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_do_end_block] = STATE(9719), - [sym_brace_block] = STATE(9719), - [sym_block_argument] = STATE(10115), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(1189), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_LPAREN2] = ACTIONS(3210), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3214), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3222), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(9302), + [sym_double_splat] = STATE(9302), + [sym_named_expr] = STATE(9302), + [sym_argument_list_no_parens] = STATE(9083), + [sym_argument_list_no_parens_with_block] = STATE(10035), + [sym_argument_list_with_parens] = STATE(9083), + [sym_argument_list_with_parens_and_block] = STATE(10035), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_do_end_block] = STATE(10040), + [sym_brace_block] = STATE(10040), + [sym_block_argument] = STATE(10215), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(1201), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_LPAREN2] = ACTIONS(3241), + [anon_sym_do] = ACTIONS(3243), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3245), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3253), }, [601] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3265), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3261), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(601), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [ts_builtin_sym_end] = ACTIONS(3224), - [sym_identifier] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(3224), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [ts_builtin_sym_end] = ACTIONS(3255), + [sym_identifier] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(3255), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(3224), + [anon_sym_RPAREN] = ACTIONS(3255), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -135424,14 +136846,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3255), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_end] = ACTIONS(3226), + [anon_sym_end] = ACTIONS(3257), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_with] = ACTIONS(71), @@ -135448,109 +136870,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(3226), - [anon_sym_else] = ACTIONS(3226), - [anon_sym_when] = ACTIONS(3226), + [anon_sym_elsif] = ACTIONS(3257), + [anon_sym_else] = ACTIONS(3257), + [anon_sym_when] = ACTIONS(3257), [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(3226), - [sym__line_break] = ACTIONS(3224), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__modifier_if_keyword] = ACTIONS(3224), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__modifier_unless_keyword] = ACTIONS(3224), - [sym__modifier_rescue_keyword] = ACTIONS(3224), - [sym__modifier_ensure_keyword] = ACTIONS(3224), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(3257), + [sym__line_break] = ACTIONS(3255), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__modifier_if_keyword] = ACTIONS(3255), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__modifier_unless_keyword] = ACTIONS(3255), + [sym__modifier_rescue_keyword] = ACTIONS(3255), + [sym__modifier_ensure_keyword] = ACTIONS(3255), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [602] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3286), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3321), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(602), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [ts_builtin_sym_end] = ACTIONS(3228), - [sym_identifier] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(3228), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [ts_builtin_sym_end] = ACTIONS(3259), + [sym_identifier] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(3259), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(3228), + [anon_sym_RPAREN] = ACTIONS(3259), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -135558,14 +136982,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3259), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_end] = ACTIONS(3230), + [anon_sym_end] = ACTIONS(3261), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_with] = ACTIONS(71), @@ -135582,109 +137006,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(3230), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_when] = ACTIONS(3230), + [anon_sym_elsif] = ACTIONS(3261), + [anon_sym_else] = ACTIONS(3261), + [anon_sym_when] = ACTIONS(3261), [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(3230), - [sym__line_break] = ACTIONS(3228), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__modifier_if_keyword] = ACTIONS(3228), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__modifier_unless_keyword] = ACTIONS(3228), - [sym__modifier_rescue_keyword] = ACTIONS(3228), - [sym__modifier_ensure_keyword] = ACTIONS(3228), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(3261), + [sym__line_break] = ACTIONS(3259), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__modifier_if_keyword] = ACTIONS(3259), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__modifier_unless_keyword] = ACTIONS(3259), + [sym__modifier_rescue_keyword] = ACTIONS(3259), + [sym__modifier_ensure_keyword] = ACTIONS(3259), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [603] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3271), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3260), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(603), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [ts_builtin_sym_end] = ACTIONS(3232), - [sym_identifier] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(3232), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [ts_builtin_sym_end] = ACTIONS(3263), + [sym_identifier] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(3263), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(3232), + [anon_sym_RPAREN] = ACTIONS(3263), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), [sym_true] = ACTIONS(17), @@ -135692,14 +137118,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_integer_token2] = ACTIONS(19), [aux_sym_float_token2] = ACTIONS(21), [anon_sym_SQUOTE] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3263), [sym_operator_symbol] = ACTIONS(25), [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_end] = ACTIONS(3234), + [anon_sym_end] = ACTIONS(3265), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), [anon_sym_with] = ACTIONS(71), @@ -135716,14685 +137142,15814 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), - [anon_sym_elsif] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_when] = ACTIONS(3234), + [anon_sym_elsif] = ACTIONS(3265), + [anon_sym_else] = ACTIONS(3265), + [anon_sym_when] = ACTIONS(3265), [anon_sym_case] = ACTIONS(103), - [anon_sym_in] = ACTIONS(3234), - [sym__line_break] = ACTIONS(3232), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__modifier_if_keyword] = ACTIONS(3232), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__modifier_unless_keyword] = ACTIONS(3232), - [sym__modifier_rescue_keyword] = ACTIONS(3232), - [sym__modifier_ensure_keyword] = ACTIONS(3232), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [anon_sym_in] = ACTIONS(3265), + [sym__line_break] = ACTIONS(3263), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__modifier_if_keyword] = ACTIONS(3263), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__modifier_unless_keyword] = ACTIONS(3263), + [sym__modifier_rescue_keyword] = ACTIONS(3263), + [sym__modifier_ensure_keyword] = ACTIONS(3263), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [604] = { [sym_heredoc_body] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(3236), - [sym_identifier] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3238), - [anon_sym_RPAREN] = ACTIONS(3236), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3236), - [sym_operator_symbol] = ACTIONS(3236), - [sym_unquoted_symbol] = ACTIONS(3236), - [anon_sym_COLON_DQUOTE] = ACTIONS(3236), - [anon_sym_BQUOTE] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_COMMA] = ACTIONS(3236), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_DASH_GT] = ACTIONS(3236), - [anon_sym_end] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3238), - [anon_sym_GT_GT] = ACTIONS(3238), - [anon_sym_LT_LT] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ_GT] = ACTIONS(3236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG_TILDE] = ACTIONS(3236), - [anon_sym_EQ_TILDE] = ACTIONS(3236), - [anon_sym_AMP_STAR] = ACTIONS(3238), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3236), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym_instance_sizeof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [sym__constant_segment] = ACTIONS(3236), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym___LINE__] = ACTIONS(3238), - [anon_sym___END_LINE__] = ACTIONS(3238), - [anon_sym___FILE__] = ACTIONS(3238), - [anon_sym___DIR__] = ACTIONS(3238), - [sym_special_variable] = ACTIONS(3236), - [sym_identifier_method_call] = ACTIONS(3236), - [sym_instance_var] = ACTIONS(3236), - [sym_class_var] = ACTIONS(3236), - [sym_self] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_AMP_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_AMP_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_EQ] = ACTIONS(3242), - [anon_sym_CARET_EQ] = ACTIONS(3242), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3242), - [anon_sym_LT_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_GT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_AMP_EQ] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_begin] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_until] = ACTIONS(3238), - [anon_sym_elsif] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [sym__line_break] = ACTIONS(3236), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3236), - [sym__start_of_hash_or_tuple] = ACTIONS(3236), - [sym__start_of_named_tuple] = ACTIONS(3236), - [sym__start_of_index_operator] = ACTIONS(3236), - [sym_unary_plus] = ACTIONS(3236), - [sym_unary_minus] = ACTIONS(3236), - [sym_binary_plus] = ACTIONS(3236), - [sym_binary_minus] = ACTIONS(3236), - [sym_unary_wrapping_plus] = ACTIONS(3236), - [sym_unary_wrapping_minus] = ACTIONS(3236), - [sym_binary_wrapping_plus] = ACTIONS(3236), - [sym_binary_wrapping_minus] = ACTIONS(3236), - [sym__unary_star] = ACTIONS(3236), - [sym__binary_star] = ACTIONS(3236), - [sym__unary_double_star] = ACTIONS(3236), - [sym__binary_double_star] = ACTIONS(3236), - [sym__block_ampersand] = ACTIONS(3236), - [sym_binary_ampersand] = ACTIONS(3236), - [sym__beginless_range_operator] = ACTIONS(3236), - [sym__regex_start] = ACTIONS(3236), - [sym__binary_slash] = ACTIONS(3236), - [sym__binary_double_slash] = ACTIONS(3236), - [sym__regular_if_keyword] = ACTIONS(3236), - [sym__modifier_if_keyword] = ACTIONS(3236), - [sym__regular_unless_keyword] = ACTIONS(3236), - [sym__modifier_unless_keyword] = ACTIONS(3236), - [sym__modifier_rescue_keyword] = ACTIONS(3236), - [sym__modifier_ensure_keyword] = ACTIONS(3236), - [sym__modulo_operator] = ACTIONS(3236), - [sym__string_literal_start] = ACTIONS(3236), - [sym__string_percent_literal_start] = ACTIONS(3236), - [sym__command_percent_literal_start] = ACTIONS(3236), - [sym__string_array_percent_literal_start] = ACTIONS(3236), - [sym__symbol_array_percent_literal_start] = ACTIONS(3236), - [sym__regex_percent_literal_start] = ACTIONS(3236), - [sym_heredoc_start] = ACTIONS(3236), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3236), + [ts_builtin_sym_end] = ACTIONS(3267), + [sym_identifier] = ACTIONS(3269), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym_RPAREN] = ACTIONS(3267), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [aux_sym_integer_token2] = ACTIONS(3269), + [aux_sym_float_token2] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3267), + [sym_operator_symbol] = ACTIONS(3267), + [sym_unquoted_symbol] = ACTIONS(3267), + [anon_sym_COLON_DQUOTE] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3267), + [anon_sym_end] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_LT_LT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ_GT] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_AMP_STAR] = ACTIONS(3269), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_EQ] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3269), + [anon_sym_instance_sizeof] = ACTIONS(3269), + [anon_sym_offsetof] = ACTIONS(3269), + [sym__constant_segment] = ACTIONS(3267), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym___LINE__] = ACTIONS(3269), + [anon_sym___END_LINE__] = ACTIONS(3269), + [anon_sym___FILE__] = ACTIONS(3269), + [anon_sym___DIR__] = ACTIONS(3269), + [sym_special_variable] = ACTIONS(3267), + [sym_identifier_method_call] = ACTIONS(3267), + [sym_instance_var] = ACTIONS(3267), + [sym_class_var] = ACTIONS(3267), + [sym_self] = ACTIONS(3269), + [anon_sym_LPAREN2] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3269), + [anon_sym_PIPE_PIPE] = ACTIONS(3269), + [anon_sym_PLUS_EQ] = ACTIONS(3273), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(3273), + [anon_sym_DASH_EQ] = ACTIONS(3273), + [anon_sym_AMP_DASH_EQ] = ACTIONS(3273), + [anon_sym_STAR_EQ] = ACTIONS(3273), + [anon_sym_AMP_STAR_EQ] = ACTIONS(3273), + [anon_sym_SLASH_EQ] = ACTIONS(3273), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3273), + [anon_sym_PERCENT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_EQ] = ACTIONS(3273), + [anon_sym_CARET_EQ] = ACTIONS(3273), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3273), + [anon_sym_LT_LT_EQ] = ACTIONS(3273), + [anon_sym_GT_GT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_begin] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_until] = ACTIONS(3269), + [anon_sym_elsif] = ACTIONS(3269), + [anon_sym_else] = ACTIONS(3269), + [anon_sym_when] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [anon_sym_in] = ACTIONS(3269), + [sym__line_break] = ACTIONS(3267), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3267), + [sym__start_of_hash_or_tuple] = ACTIONS(3267), + [sym__start_of_named_tuple] = ACTIONS(3267), + [sym__start_of_index_operator] = ACTIONS(3267), + [sym_unary_plus] = ACTIONS(3267), + [sym_unary_minus] = ACTIONS(3267), + [sym_binary_plus] = ACTIONS(3267), + [sym_binary_minus] = ACTIONS(3267), + [sym_unary_wrapping_plus] = ACTIONS(3267), + [sym_unary_wrapping_minus] = ACTIONS(3267), + [sym_binary_wrapping_plus] = ACTIONS(3267), + [sym_binary_wrapping_minus] = ACTIONS(3267), + [sym__unary_star] = ACTIONS(3267), + [sym__binary_star] = ACTIONS(3267), + [sym__unary_double_star] = ACTIONS(3267), + [sym__binary_double_star] = ACTIONS(3267), + [sym__block_ampersand] = ACTIONS(3267), + [sym_binary_ampersand] = ACTIONS(3267), + [sym__beginless_range_operator] = ACTIONS(3267), + [sym__regex_start] = ACTIONS(3267), + [sym__binary_slash] = ACTIONS(3267), + [sym__binary_double_slash] = ACTIONS(3267), + [sym__regular_if_keyword] = ACTIONS(3267), + [sym__modifier_if_keyword] = ACTIONS(3267), + [sym__regular_unless_keyword] = ACTIONS(3267), + [sym__modifier_unless_keyword] = ACTIONS(3267), + [sym__modifier_rescue_keyword] = ACTIONS(3267), + [sym__modifier_ensure_keyword] = ACTIONS(3267), + [sym__modulo_operator] = ACTIONS(3267), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3267), + [sym__command_percent_literal_start] = ACTIONS(3267), + [sym__string_array_percent_literal_start] = ACTIONS(3267), + [sym__symbol_array_percent_literal_start] = ACTIONS(3267), + [sym__regex_percent_literal_start] = ACTIONS(3267), + [sym_heredoc_start] = ACTIONS(3267), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3267), }, [605] = { [sym_heredoc_body] = STATE(605), - [ts_builtin_sym_end] = ACTIONS(3236), - [sym_identifier] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3238), - [anon_sym_RPAREN] = ACTIONS(3236), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3236), - [sym_operator_symbol] = ACTIONS(3236), - [sym_unquoted_symbol] = ACTIONS(3236), - [anon_sym_COLON_DQUOTE] = ACTIONS(3236), - [anon_sym_BQUOTE] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_DASH_GT] = ACTIONS(3236), - [anon_sym_end] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3238), - [anon_sym_GT_GT] = ACTIONS(3238), - [anon_sym_LT_LT] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ_GT] = ACTIONS(3236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG_TILDE] = ACTIONS(3236), - [anon_sym_EQ_TILDE] = ACTIONS(3236), - [anon_sym_AMP_STAR] = ACTIONS(3238), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3236), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym_instance_sizeof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [sym__constant_segment] = ACTIONS(3236), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym___LINE__] = ACTIONS(3238), - [anon_sym___END_LINE__] = ACTIONS(3238), - [anon_sym___FILE__] = ACTIONS(3238), - [anon_sym___DIR__] = ACTIONS(3238), - [sym_special_variable] = ACTIONS(3236), - [sym_identifier_method_call] = ACTIONS(3236), - [sym_instance_var] = ACTIONS(3236), - [sym_class_var] = ACTIONS(3236), - [sym_self] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_AMP_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_AMP_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_EQ] = ACTIONS(3242), - [anon_sym_CARET_EQ] = ACTIONS(3242), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3242), - [anon_sym_LT_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_GT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_AMP_EQ] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_begin] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_until] = ACTIONS(3238), - [anon_sym_elsif] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [sym__line_break] = ACTIONS(3236), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3236), - [sym__start_of_hash_or_tuple] = ACTIONS(3236), - [sym__start_of_named_tuple] = ACTIONS(3236), - [sym__start_of_index_operator] = ACTIONS(3236), - [sym_unary_plus] = ACTIONS(3236), - [sym_unary_minus] = ACTIONS(3236), - [sym_binary_plus] = ACTIONS(3236), - [sym_binary_minus] = ACTIONS(3236), - [sym_unary_wrapping_plus] = ACTIONS(3236), - [sym_unary_wrapping_minus] = ACTIONS(3236), - [sym_binary_wrapping_plus] = ACTIONS(3236), - [sym_binary_wrapping_minus] = ACTIONS(3236), - [sym__unary_star] = ACTIONS(3236), - [sym__binary_star] = ACTIONS(3236), - [sym__unary_double_star] = ACTIONS(3236), - [sym__binary_double_star] = ACTIONS(3236), - [sym__block_ampersand] = ACTIONS(3236), - [sym_binary_ampersand] = ACTIONS(3236), - [sym__beginless_range_operator] = ACTIONS(3236), - [sym__regex_start] = ACTIONS(3236), - [sym__binary_slash] = ACTIONS(3236), - [sym__binary_double_slash] = ACTIONS(3236), - [sym__regular_if_keyword] = ACTIONS(3236), - [sym__modifier_if_keyword] = ACTIONS(3236), - [sym__regular_unless_keyword] = ACTIONS(3236), - [sym__modifier_unless_keyword] = ACTIONS(3236), - [sym__modifier_rescue_keyword] = ACTIONS(3236), - [sym__modifier_ensure_keyword] = ACTIONS(3236), - [sym__modulo_operator] = ACTIONS(3236), - [sym__string_literal_start] = ACTIONS(3236), - [sym__string_percent_literal_start] = ACTIONS(3236), - [sym__command_percent_literal_start] = ACTIONS(3236), - [sym__string_array_percent_literal_start] = ACTIONS(3236), - [sym__symbol_array_percent_literal_start] = ACTIONS(3236), - [sym__regex_percent_literal_start] = ACTIONS(3236), - [sym_heredoc_start] = ACTIONS(3236), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3236), + [ts_builtin_sym_end] = ACTIONS(3267), + [sym_identifier] = ACTIONS(3269), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym_RPAREN] = ACTIONS(3267), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [aux_sym_integer_token2] = ACTIONS(3269), + [aux_sym_float_token2] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3267), + [sym_operator_symbol] = ACTIONS(3267), + [sym_unquoted_symbol] = ACTIONS(3267), + [anon_sym_COLON_DQUOTE] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3273), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3267), + [anon_sym_end] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_LT_LT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ_GT] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_AMP_STAR] = ACTIONS(3269), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_EQ] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3269), + [anon_sym_instance_sizeof] = ACTIONS(3269), + [anon_sym_offsetof] = ACTIONS(3269), + [sym__constant_segment] = ACTIONS(3267), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym___LINE__] = ACTIONS(3269), + [anon_sym___END_LINE__] = ACTIONS(3269), + [anon_sym___FILE__] = ACTIONS(3269), + [anon_sym___DIR__] = ACTIONS(3269), + [sym_special_variable] = ACTIONS(3267), + [sym_identifier_method_call] = ACTIONS(3267), + [sym_instance_var] = ACTIONS(3267), + [sym_class_var] = ACTIONS(3267), + [sym_self] = ACTIONS(3269), + [anon_sym_LPAREN2] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3269), + [anon_sym_PIPE_PIPE] = ACTIONS(3269), + [anon_sym_PLUS_EQ] = ACTIONS(3273), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(3273), + [anon_sym_DASH_EQ] = ACTIONS(3273), + [anon_sym_AMP_DASH_EQ] = ACTIONS(3273), + [anon_sym_STAR_EQ] = ACTIONS(3273), + [anon_sym_AMP_STAR_EQ] = ACTIONS(3273), + [anon_sym_SLASH_EQ] = ACTIONS(3273), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3273), + [anon_sym_PERCENT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_EQ] = ACTIONS(3273), + [anon_sym_CARET_EQ] = ACTIONS(3273), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3273), + [anon_sym_LT_LT_EQ] = ACTIONS(3273), + [anon_sym_GT_GT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_begin] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_until] = ACTIONS(3269), + [anon_sym_elsif] = ACTIONS(3269), + [anon_sym_else] = ACTIONS(3269), + [anon_sym_when] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [anon_sym_in] = ACTIONS(3269), + [sym__line_break] = ACTIONS(3267), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3267), + [sym__start_of_hash_or_tuple] = ACTIONS(3267), + [sym__start_of_named_tuple] = ACTIONS(3267), + [sym__start_of_index_operator] = ACTIONS(3267), + [sym_unary_plus] = ACTIONS(3267), + [sym_unary_minus] = ACTIONS(3267), + [sym_binary_plus] = ACTIONS(3267), + [sym_binary_minus] = ACTIONS(3267), + [sym_unary_wrapping_plus] = ACTIONS(3267), + [sym_unary_wrapping_minus] = ACTIONS(3267), + [sym_binary_wrapping_plus] = ACTIONS(3267), + [sym_binary_wrapping_minus] = ACTIONS(3267), + [sym__unary_star] = ACTIONS(3267), + [sym__binary_star] = ACTIONS(3267), + [sym__unary_double_star] = ACTIONS(3267), + [sym__binary_double_star] = ACTIONS(3267), + [sym__block_ampersand] = ACTIONS(3267), + [sym_binary_ampersand] = ACTIONS(3267), + [sym__beginless_range_operator] = ACTIONS(3267), + [sym__regex_start] = ACTIONS(3267), + [sym__binary_slash] = ACTIONS(3267), + [sym__binary_double_slash] = ACTIONS(3267), + [sym__regular_if_keyword] = ACTIONS(3267), + [sym__modifier_if_keyword] = ACTIONS(3267), + [sym__regular_unless_keyword] = ACTIONS(3267), + [sym__modifier_unless_keyword] = ACTIONS(3267), + [sym__modifier_rescue_keyword] = ACTIONS(3267), + [sym__modifier_ensure_keyword] = ACTIONS(3267), + [sym__modulo_operator] = ACTIONS(3267), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3267), + [sym__command_percent_literal_start] = ACTIONS(3267), + [sym__string_array_percent_literal_start] = ACTIONS(3267), + [sym__symbol_array_percent_literal_start] = ACTIONS(3267), + [sym__regex_percent_literal_start] = ACTIONS(3267), + [sym_heredoc_start] = ACTIONS(3267), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3267), }, [606] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4388), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4491), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(606), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_SEMI] = ACTIONS(3232), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_end] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(3232), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__modifier_if_keyword] = ACTIONS(3232), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__modifier_unless_keyword] = ACTIONS(3232), - [sym__regular_rescue_keyword] = ACTIONS(3232), - [sym__modifier_rescue_keyword] = ACTIONS(3232), - [sym__regular_ensure_keyword] = ACTIONS(3232), - [sym__modifier_ensure_keyword] = ACTIONS(3232), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_end] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(3261), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(3259), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__modifier_if_keyword] = ACTIONS(3259), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__modifier_unless_keyword] = ACTIONS(3259), + [sym__regular_rescue_keyword] = ACTIONS(3259), + [sym__modifier_rescue_keyword] = ACTIONS(3259), + [sym__regular_ensure_keyword] = ACTIONS(3259), + [sym__modifier_ensure_keyword] = ACTIONS(3259), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [607] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4387), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4492), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(607), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_SEMI] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_end] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(3226), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(3224), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__modifier_if_keyword] = ACTIONS(3224), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__modifier_unless_keyword] = ACTIONS(3224), - [sym__regular_rescue_keyword] = ACTIONS(3224), - [sym__modifier_rescue_keyword] = ACTIONS(3224), - [sym__regular_ensure_keyword] = ACTIONS(3224), - [sym__modifier_ensure_keyword] = ACTIONS(3224), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(3263), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_end] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(3265), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(3263), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__modifier_if_keyword] = ACTIONS(3263), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__modifier_unless_keyword] = ACTIONS(3263), + [sym__regular_rescue_keyword] = ACTIONS(3263), + [sym__modifier_rescue_keyword] = ACTIONS(3263), + [sym__regular_ensure_keyword] = ACTIONS(3263), + [sym__modifier_ensure_keyword] = ACTIONS(3263), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [608] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4386), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4493), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(608), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_SEMI] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_end] = ACTIONS(3230), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_case] = ACTIONS(1315), - [sym__line_break] = ACTIONS(3228), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__modifier_if_keyword] = ACTIONS(3228), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__modifier_unless_keyword] = ACTIONS(3228), - [sym__regular_rescue_keyword] = ACTIONS(3228), - [sym__modifier_rescue_keyword] = ACTIONS(3228), - [sym__regular_ensure_keyword] = ACTIONS(3228), - [sym__modifier_ensure_keyword] = ACTIONS(3228), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_end] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_else] = ACTIONS(3257), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_break] = ACTIONS(3255), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__modifier_if_keyword] = ACTIONS(3255), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__modifier_unless_keyword] = ACTIONS(3255), + [sym__regular_rescue_keyword] = ACTIONS(3255), + [sym__modifier_rescue_keyword] = ACTIONS(3255), + [sym__regular_ensure_keyword] = ACTIONS(3255), + [sym__modifier_ensure_keyword] = ACTIONS(3255), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [609] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(609), - [sym_identifier] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3238), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [sym_operator_symbol] = ACTIONS(3236), - [sym_unquoted_symbol] = ACTIONS(3236), - [anon_sym_COLON_DQUOTE] = ACTIONS(3236), - [anon_sym_BQUOTE] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_COMMA] = ACTIONS(3236), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_DASH_GT] = ACTIONS(3236), - [anon_sym_end] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3238), - [anon_sym_GT_GT] = ACTIONS(3238), - [anon_sym_LT_LT] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ_GT] = ACTIONS(3236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG_TILDE] = ACTIONS(3236), - [anon_sym_EQ_TILDE] = ACTIONS(3236), - [anon_sym_AMP_STAR] = ACTIONS(3238), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3236), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym_instance_sizeof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [sym__constant_segment] = ACTIONS(3236), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym___LINE__] = ACTIONS(3238), - [anon_sym___END_LINE__] = ACTIONS(3238), - [anon_sym___FILE__] = ACTIONS(3238), - [anon_sym___DIR__] = ACTIONS(3238), - [sym_special_variable] = ACTIONS(3236), - [sym_identifier_method_call] = ACTIONS(3236), - [sym_instance_var] = ACTIONS(3236), - [sym_class_var] = ACTIONS(3236), - [sym_self] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_AMP_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_AMP_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_EQ] = ACTIONS(3242), - [anon_sym_CARET_EQ] = ACTIONS(3242), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3242), - [anon_sym_LT_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_GT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_AMP_EQ] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_begin] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_until] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [sym__line_break] = ACTIONS(3236), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3236), - [sym__start_of_hash_or_tuple] = ACTIONS(3236), - [sym__start_of_named_tuple] = ACTIONS(3236), - [sym__start_of_index_operator] = ACTIONS(3236), - [sym_unary_plus] = ACTIONS(3236), - [sym_unary_minus] = ACTIONS(3236), - [sym_binary_plus] = ACTIONS(3236), - [sym_binary_minus] = ACTIONS(3236), - [sym_unary_wrapping_plus] = ACTIONS(3236), - [sym_unary_wrapping_minus] = ACTIONS(3236), - [sym_binary_wrapping_plus] = ACTIONS(3236), - [sym_binary_wrapping_minus] = ACTIONS(3236), - [sym__unary_star] = ACTIONS(3236), - [sym__binary_star] = ACTIONS(3236), - [sym__unary_double_star] = ACTIONS(3236), - [sym__binary_double_star] = ACTIONS(3236), - [sym__block_ampersand] = ACTIONS(3236), - [sym_binary_ampersand] = ACTIONS(3236), - [sym__beginless_range_operator] = ACTIONS(3236), - [sym__regex_start] = ACTIONS(3236), - [sym__binary_slash] = ACTIONS(3236), - [sym__binary_double_slash] = ACTIONS(3236), - [sym__regular_if_keyword] = ACTIONS(3236), - [sym__modifier_if_keyword] = ACTIONS(3236), - [sym__regular_unless_keyword] = ACTIONS(3236), - [sym__modifier_unless_keyword] = ACTIONS(3236), - [sym__regular_rescue_keyword] = ACTIONS(3236), - [sym__modifier_rescue_keyword] = ACTIONS(3236), - [sym__regular_ensure_keyword] = ACTIONS(3236), - [sym__modifier_ensure_keyword] = ACTIONS(3236), - [sym__modulo_operator] = ACTIONS(3236), - [sym__string_literal_start] = ACTIONS(3236), - [sym__string_percent_literal_start] = ACTIONS(3236), - [sym__command_percent_literal_start] = ACTIONS(3236), - [sym__string_array_percent_literal_start] = ACTIONS(3236), - [sym__symbol_array_percent_literal_start] = ACTIONS(3236), - [sym__regex_percent_literal_start] = ACTIONS(3236), - [sym_heredoc_start] = ACTIONS(3236), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3236), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11455), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3275), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), }, [610] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(610), - [sym_identifier] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3238), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [sym_operator_symbol] = ACTIONS(3236), - [sym_unquoted_symbol] = ACTIONS(3236), - [anon_sym_COLON_DQUOTE] = ACTIONS(3236), - [anon_sym_BQUOTE] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_DASH_GT] = ACTIONS(3236), - [anon_sym_end] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3238), - [anon_sym_GT_GT] = ACTIONS(3238), - [anon_sym_LT_LT] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ_GT] = ACTIONS(3236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG_TILDE] = ACTIONS(3236), - [anon_sym_EQ_TILDE] = ACTIONS(3236), - [anon_sym_AMP_STAR] = ACTIONS(3238), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3236), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym_instance_sizeof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [sym__constant_segment] = ACTIONS(3236), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym___LINE__] = ACTIONS(3238), - [anon_sym___END_LINE__] = ACTIONS(3238), - [anon_sym___FILE__] = ACTIONS(3238), - [anon_sym___DIR__] = ACTIONS(3238), - [sym_special_variable] = ACTIONS(3236), - [sym_identifier_method_call] = ACTIONS(3236), - [sym_instance_var] = ACTIONS(3236), - [sym_class_var] = ACTIONS(3236), - [sym_self] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_AMP_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_AMP_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_EQ] = ACTIONS(3242), - [anon_sym_CARET_EQ] = ACTIONS(3242), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3242), - [anon_sym_LT_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_GT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_AMP_EQ] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_begin] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_until] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [sym__line_break] = ACTIONS(3236), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3236), - [sym__start_of_hash_or_tuple] = ACTIONS(3236), - [sym__start_of_named_tuple] = ACTIONS(3236), - [sym__start_of_index_operator] = ACTIONS(3236), - [sym_unary_plus] = ACTIONS(3236), - [sym_unary_minus] = ACTIONS(3236), - [sym_binary_plus] = ACTIONS(3236), - [sym_binary_minus] = ACTIONS(3236), - [sym_unary_wrapping_plus] = ACTIONS(3236), - [sym_unary_wrapping_minus] = ACTIONS(3236), - [sym_binary_wrapping_plus] = ACTIONS(3236), - [sym_binary_wrapping_minus] = ACTIONS(3236), - [sym__unary_star] = ACTIONS(3236), - [sym__binary_star] = ACTIONS(3236), - [sym__unary_double_star] = ACTIONS(3236), - [sym__binary_double_star] = ACTIONS(3236), - [sym__block_ampersand] = ACTIONS(3236), - [sym_binary_ampersand] = ACTIONS(3236), - [sym__beginless_range_operator] = ACTIONS(3236), - [sym__regex_start] = ACTIONS(3236), - [sym__binary_slash] = ACTIONS(3236), - [sym__binary_double_slash] = ACTIONS(3236), - [sym__regular_if_keyword] = ACTIONS(3236), - [sym__modifier_if_keyword] = ACTIONS(3236), - [sym__regular_unless_keyword] = ACTIONS(3236), - [sym__modifier_unless_keyword] = ACTIONS(3236), - [sym__regular_rescue_keyword] = ACTIONS(3236), - [sym__modifier_rescue_keyword] = ACTIONS(3236), - [sym__regular_ensure_keyword] = ACTIONS(3236), - [sym__modifier_ensure_keyword] = ACTIONS(3236), - [sym__modulo_operator] = ACTIONS(3236), - [sym__string_literal_start] = ACTIONS(3236), - [sym__string_percent_literal_start] = ACTIONS(3236), - [sym__command_percent_literal_start] = ACTIONS(3236), - [sym__string_array_percent_literal_start] = ACTIONS(3236), - [sym__symbol_array_percent_literal_start] = ACTIONS(3236), - [sym__regex_percent_literal_start] = ACTIONS(3236), - [sym_heredoc_start] = ACTIONS(3236), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3236), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11670), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3279), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), }, [611] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(611), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(10812), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3244), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11723), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3281), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [612] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6335), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6428), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(612), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9812), - [sym_double_splat] = STATE(9812), - [sym_named_expr] = STATE(9812), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(10566), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3248), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9822), + [sym_double_splat] = STATE(9822), + [sym_named_expr] = STATE(9822), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11059), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3283), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [613] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(613), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11880), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3250), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11787), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3285), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [614] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(614), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11069), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3252), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(10743), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3287), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [615] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6505), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(615), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11233), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3254), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9991), + [sym_double_splat] = STATE(9991), + [sym_named_expr] = STATE(9991), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11059), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3289), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [616] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6069), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(616), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10256), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [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), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3256), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DOT] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [sym_implicit_object_method_identifier] = ACTIONS(3262), - [sym_implicit_object_method_operator] = ACTIONS(3262), - [sym_implicit_object_ivar] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11787), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3291), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [617] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6356), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(617), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [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), - [sym_block_argument] = STATE(10566), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3266), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(10743), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3293), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [618] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6572), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(618), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11069), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3268), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(10050), + [sym_double_splat] = STATE(10050), + [sym_named_expr] = STATE(10050), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(12007), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3295), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [619] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(619), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11233), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3270), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(10866), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [620] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6362), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(620), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [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), - [sym_block_argument] = STATE(11915), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3272), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(10934), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3299), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [621] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6307), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(621), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(10939), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3274), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9971), + [sym_double_splat] = STATE(9971), + [sym_named_expr] = STATE(9971), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11246), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3301), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [622] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6368), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(622), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [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), - [sym_block_argument] = STATE(11915), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3276), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11434), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3303), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [623] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(623), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(10812), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3278), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11506), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3305), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [624] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6310), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(624), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(10939), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3280), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9974), + [sym_double_splat] = STATE(9974), + [sym_named_expr] = STATE(9974), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11687), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3289), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [625] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6373), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(625), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9768), - [sym_double_splat] = STATE(9768), - [sym_named_expr] = STATE(9768), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11308), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3282), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11806), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3291), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [626] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(626), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11563), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3284), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11911), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3293), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [627] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6281), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(627), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11669), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3286), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(10267), + [sym_double_splat] = STATE(10267), + [sym_named_expr] = STATE(10267), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11851), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3307), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [628] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6386), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(628), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9846), - [sym_double_splat] = STATE(9846), - [sym_named_expr] = STATE(9846), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11308), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3288), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(10995), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3309), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [629] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), [sym_heredoc_body] = STATE(629), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11563), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3290), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_identifier] = ACTIONS(3269), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3269), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [aux_sym_integer_token2] = ACTIONS(3269), + [aux_sym_float_token2] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [sym_operator_symbol] = ACTIONS(3267), + [sym_unquoted_symbol] = ACTIONS(3267), + [anon_sym_COLON_DQUOTE] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3267), + [anon_sym_end] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_LT_LT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ_GT] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_AMP_STAR] = ACTIONS(3269), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_EQ] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3269), + [anon_sym_instance_sizeof] = ACTIONS(3269), + [anon_sym_offsetof] = ACTIONS(3269), + [sym__constant_segment] = ACTIONS(3267), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym___LINE__] = ACTIONS(3269), + [anon_sym___END_LINE__] = ACTIONS(3269), + [anon_sym___FILE__] = ACTIONS(3269), + [anon_sym___DIR__] = ACTIONS(3269), + [sym_special_variable] = ACTIONS(3267), + [sym_identifier_method_call] = ACTIONS(3267), + [sym_instance_var] = ACTIONS(3267), + [sym_class_var] = ACTIONS(3267), + [sym_self] = ACTIONS(3269), + [anon_sym_LPAREN2] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3269), + [anon_sym_PIPE_PIPE] = ACTIONS(3269), + [anon_sym_PLUS_EQ] = ACTIONS(3273), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(3273), + [anon_sym_DASH_EQ] = ACTIONS(3273), + [anon_sym_AMP_DASH_EQ] = ACTIONS(3273), + [anon_sym_STAR_EQ] = ACTIONS(3273), + [anon_sym_AMP_STAR_EQ] = ACTIONS(3273), + [anon_sym_SLASH_EQ] = ACTIONS(3273), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3273), + [anon_sym_PERCENT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_EQ] = ACTIONS(3273), + [anon_sym_CARET_EQ] = ACTIONS(3273), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3273), + [anon_sym_LT_LT_EQ] = ACTIONS(3273), + [anon_sym_GT_GT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_begin] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_until] = ACTIONS(3269), + [anon_sym_else] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [sym__line_break] = ACTIONS(3267), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3267), + [sym__start_of_hash_or_tuple] = ACTIONS(3267), + [sym__start_of_named_tuple] = ACTIONS(3267), + [sym__start_of_index_operator] = ACTIONS(3267), + [sym_unary_plus] = ACTIONS(3267), + [sym_unary_minus] = ACTIONS(3267), + [sym_binary_plus] = ACTIONS(3267), + [sym_binary_minus] = ACTIONS(3267), + [sym_unary_wrapping_plus] = ACTIONS(3267), + [sym_unary_wrapping_minus] = ACTIONS(3267), + [sym_binary_wrapping_plus] = ACTIONS(3267), + [sym_binary_wrapping_minus] = ACTIONS(3267), + [sym__unary_star] = ACTIONS(3267), + [sym__binary_star] = ACTIONS(3267), + [sym__unary_double_star] = ACTIONS(3267), + [sym__binary_double_star] = ACTIONS(3267), + [sym__block_ampersand] = ACTIONS(3267), + [sym_binary_ampersand] = ACTIONS(3267), + [sym__beginless_range_operator] = ACTIONS(3267), + [sym__regex_start] = ACTIONS(3267), + [sym__binary_slash] = ACTIONS(3267), + [sym__binary_double_slash] = ACTIONS(3267), + [sym__regular_if_keyword] = ACTIONS(3267), + [sym__modifier_if_keyword] = ACTIONS(3267), + [sym__regular_unless_keyword] = ACTIONS(3267), + [sym__modifier_unless_keyword] = ACTIONS(3267), + [sym__regular_rescue_keyword] = ACTIONS(3267), + [sym__modifier_rescue_keyword] = ACTIONS(3267), + [sym__regular_ensure_keyword] = ACTIONS(3267), + [sym__modifier_ensure_keyword] = ACTIONS(3267), + [sym__modulo_operator] = ACTIONS(3267), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3267), + [sym__command_percent_literal_start] = ACTIONS(3267), + [sym__string_array_percent_literal_start] = ACTIONS(3267), + [sym__symbol_array_percent_literal_start] = ACTIONS(3267), + [sym__regex_percent_literal_start] = ACTIONS(3267), + [sym_heredoc_start] = ACTIONS(3267), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3267), }, [630] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(630), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11669), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3292), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11432), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3311), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [631] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6522), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(631), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9872), - [sym_double_splat] = STATE(9872), - [sym_named_expr] = STATE(9872), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(10819), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3294), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11357), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3313), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [632] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(632), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(10825), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3296), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11356), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3315), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [633] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6297), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(633), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11185), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3298), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9959), + [sym_double_splat] = STATE(9959), + [sym_named_expr] = STATE(9959), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(10682), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3317), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [634] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6395), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6455), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(634), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [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), - [sym_block_argument] = STATE(10681), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3300), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9861), + [sym_double_splat] = STATE(9861), + [sym_named_expr] = STATE(9861), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11124), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3317), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [635] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(635), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11160), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3302), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11653), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3319), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [636] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(636), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11209), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3304), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11455), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [637] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6399), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4925), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(637), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [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), - [sym_block_argument] = STATE(10681), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3306), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_end] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_break] = ACTIONS(3259), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__modifier_if_keyword] = ACTIONS(3259), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__modifier_unless_keyword] = ACTIONS(3259), + [sym__modifier_rescue_keyword] = ACTIONS(3259), + [sym__regular_ensure_keyword] = ACTIONS(3259), + [sym__modifier_ensure_keyword] = ACTIONS(3259), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [638] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(638), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11160), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3308), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(10908), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3323), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [639] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6515), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(639), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11209), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3310), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9946), + [sym_double_splat] = STATE(9946), + [sym_named_expr] = STATE(9946), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11572), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3325), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [640] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6525), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6291), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(640), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9885), - [sym_double_splat] = STATE(9885), - [sym_named_expr] = STATE(9885), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11591), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3266), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9955), + [sym_double_splat] = STATE(9955), + [sym_named_expr] = STATE(9955), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(10742), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3307), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [641] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(641), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11779), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3268), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11674), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3327), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [642] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(642), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11834), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3270), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(10647), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3329), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [643] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6527), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(643), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9890), - [sym_double_splat] = STATE(9890), - [sym_named_expr] = STATE(9890), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(10550), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3276), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11057), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3315), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [644] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6534), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(644), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(10630), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3278), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(10119), + [sym_double_splat] = STATE(10119), + [sym_named_expr] = STATE(10119), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11851), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3331), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [645] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5835), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(645), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(10652), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3280), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10312), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_implicit_object_index_operator] = STATE(9839), + [sym_implicit_object_call] = STATE(9778), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3333), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_DOT] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [sym_implicit_object_method_identifier] = ACTIONS(3339), + [sym_implicit_object_method_operator] = ACTIONS(3339), + [sym_implicit_object_ivar] = ACTIONS(3341), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [646] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6528), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6272), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(646), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9896), - [sym_double_splat] = STATE(9896), - [sym_named_expr] = STATE(9896), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(10808), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3288), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9938), + [sym_double_splat] = STATE(9938), + [sym_named_expr] = STATE(9938), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11864), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3343), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [647] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(647), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(10891), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3290), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(10680), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3345), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [648] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6302), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(648), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(10917), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3292), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9963), + [sym_double_splat] = STATE(9963), + [sym_named_expr] = STATE(9963), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(10843), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3347), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [649] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6529), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6646), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(649), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9898), - [sym_double_splat] = STATE(9898), - [sym_named_expr] = STATE(9898), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11035), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3306), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(10300), + [sym_double_splat] = STATE(10300), + [sym_named_expr] = STATE(10300), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11494), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3349), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [650] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6511), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(650), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11131), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3308), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9855), + [sym_double_splat] = STATE(9855), + [sym_named_expr] = STATE(9855), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11877), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3343), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [651] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4993), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(651), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11516), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3298), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(3263), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_end] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_break] = ACTIONS(3263), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__modifier_if_keyword] = ACTIONS(3263), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__modifier_unless_keyword] = ACTIONS(3263), + [sym__modifier_rescue_keyword] = ACTIONS(3263), + [sym__regular_ensure_keyword] = ACTIONS(3263), + [sym__modifier_ensure_keyword] = ACTIONS(3263), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [652] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6403), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(652), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [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), - [sym_block_argument] = STATE(11277), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3312), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11653), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3351), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [653] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(653), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11416), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3314), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11357), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3353), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [654] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(654), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11443), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3316), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11469), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3319), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [655] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6408), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), [sym_heredoc_body] = STATE(655), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [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), - [sym_block_argument] = STATE(11277), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3318), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_identifier] = ACTIONS(3269), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3269), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [aux_sym_integer_token2] = ACTIONS(3269), + [aux_sym_float_token2] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [sym_operator_symbol] = ACTIONS(3267), + [sym_unquoted_symbol] = ACTIONS(3267), + [anon_sym_COLON_DQUOTE] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3273), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3267), + [anon_sym_end] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_LT_LT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ_GT] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_AMP_STAR] = ACTIONS(3269), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_EQ] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3269), + [anon_sym_instance_sizeof] = ACTIONS(3269), + [anon_sym_offsetof] = ACTIONS(3269), + [sym__constant_segment] = ACTIONS(3267), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym___LINE__] = ACTIONS(3269), + [anon_sym___END_LINE__] = ACTIONS(3269), + [anon_sym___FILE__] = ACTIONS(3269), + [anon_sym___DIR__] = ACTIONS(3269), + [sym_special_variable] = ACTIONS(3267), + [sym_identifier_method_call] = ACTIONS(3267), + [sym_instance_var] = ACTIONS(3267), + [sym_class_var] = ACTIONS(3267), + [sym_self] = ACTIONS(3269), + [anon_sym_LPAREN2] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3269), + [anon_sym_PIPE_PIPE] = ACTIONS(3269), + [anon_sym_PLUS_EQ] = ACTIONS(3273), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(3273), + [anon_sym_DASH_EQ] = ACTIONS(3273), + [anon_sym_AMP_DASH_EQ] = ACTIONS(3273), + [anon_sym_STAR_EQ] = ACTIONS(3273), + [anon_sym_AMP_STAR_EQ] = ACTIONS(3273), + [anon_sym_SLASH_EQ] = ACTIONS(3273), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3273), + [anon_sym_PERCENT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_EQ] = ACTIONS(3273), + [anon_sym_CARET_EQ] = ACTIONS(3273), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3273), + [anon_sym_LT_LT_EQ] = ACTIONS(3273), + [anon_sym_GT_GT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_begin] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_until] = ACTIONS(3269), + [anon_sym_else] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [sym__line_break] = ACTIONS(3267), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3267), + [sym__start_of_hash_or_tuple] = ACTIONS(3267), + [sym__start_of_named_tuple] = ACTIONS(3267), + [sym__start_of_index_operator] = ACTIONS(3267), + [sym_unary_plus] = ACTIONS(3267), + [sym_unary_minus] = ACTIONS(3267), + [sym_binary_plus] = ACTIONS(3267), + [sym_binary_minus] = ACTIONS(3267), + [sym_unary_wrapping_plus] = ACTIONS(3267), + [sym_unary_wrapping_minus] = ACTIONS(3267), + [sym_binary_wrapping_plus] = ACTIONS(3267), + [sym_binary_wrapping_minus] = ACTIONS(3267), + [sym__unary_star] = ACTIONS(3267), + [sym__binary_star] = ACTIONS(3267), + [sym__unary_double_star] = ACTIONS(3267), + [sym__binary_double_star] = ACTIONS(3267), + [sym__block_ampersand] = ACTIONS(3267), + [sym_binary_ampersand] = ACTIONS(3267), + [sym__beginless_range_operator] = ACTIONS(3267), + [sym__regex_start] = ACTIONS(3267), + [sym__binary_slash] = ACTIONS(3267), + [sym__binary_double_slash] = ACTIONS(3267), + [sym__regular_if_keyword] = ACTIONS(3267), + [sym__modifier_if_keyword] = ACTIONS(3267), + [sym__regular_unless_keyword] = ACTIONS(3267), + [sym__modifier_unless_keyword] = ACTIONS(3267), + [sym__regular_rescue_keyword] = ACTIONS(3267), + [sym__modifier_rescue_keyword] = ACTIONS(3267), + [sym__regular_ensure_keyword] = ACTIONS(3267), + [sym__modifier_ensure_keyword] = ACTIONS(3267), + [sym__modulo_operator] = ACTIONS(3267), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3267), + [sym__command_percent_literal_start] = ACTIONS(3267), + [sym__string_array_percent_literal_start] = ACTIONS(3267), + [sym__symbol_array_percent_literal_start] = ACTIONS(3267), + [sym__regex_percent_literal_start] = ACTIONS(3267), + [sym_heredoc_start] = ACTIONS(3267), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3267), }, [656] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(656), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11416), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3320), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(10680), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3311), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [657] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(657), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11443), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3322), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(12062), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3355), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [658] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6413), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(658), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [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), - [sym_block_argument] = STATE(11567), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3324), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(10995), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3355), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [659] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(659), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11678), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3326), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(10840), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3313), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [660] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(660), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11701), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3328), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11518), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3327), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [661] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6430), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(661), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9691), - [sym_double_splat] = STATE(9691), - [sym_named_expr] = STATE(9691), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11567), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3330), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11674), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3357), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [662] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6614), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(662), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11678), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3332), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(10292), + [sym_double_splat] = STATE(10292), + [sym_named_expr] = STATE(10292), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11948), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3359), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [663] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6361), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(663), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11701), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3334), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(10369), + [sym_double_splat] = STATE(10369), + [sym_named_expr] = STATE(10369), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11124), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3361), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [664] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6432), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6332), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(664), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9772), - [sym_double_splat] = STATE(9772), - [sym_named_expr] = STATE(9772), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11958), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3336), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9850), + [sym_double_splat] = STATE(9850), + [sym_named_expr] = STATE(9850), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11877), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3363), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [665] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(665), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11331), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3338), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11739), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3365), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [666] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6303), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(666), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11585), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3340), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9966), + [sym_double_splat] = STATE(9966), + [sym_named_expr] = STATE(9966), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11946), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3367), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [667] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6531), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(667), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9904), - [sym_double_splat] = STATE(9904), - [sym_named_expr] = STATE(9904), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11491), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3318), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(10762), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3321), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [668] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6649), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(668), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(10650), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3320), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9863), + [sym_double_splat] = STATE(9863), + [sym_named_expr] = STATE(9863), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11948), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3367), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [669] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(669), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(10714), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3322), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11289), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3329), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [670] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6434), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(670), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [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), - [sym_block_argument] = STATE(10957), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3342), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(10797), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3365), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [671] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(671), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11247), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3344), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(10647), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3369), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [672] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(672), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11295), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3346), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11314), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3323), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [673] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6532), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6638), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(673), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9906), - [sym_double_splat] = STATE(9906), - [sym_named_expr] = STATE(9906), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11435), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3330), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(10065), + [sym_double_splat] = STATE(10065), + [sym_named_expr] = STATE(10065), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(10980), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3371), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [674] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(674), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11532), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3332), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11128), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3373), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [675] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6568), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(675), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11553), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3334), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(10364), + [sym_double_splat] = STATE(10364), + [sym_named_expr] = STATE(10364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11572), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3347), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [676] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(5018), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4946), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(676), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_SEMI] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_end] = ACTIONS(3230), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_break] = ACTIONS(3228), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__modifier_if_keyword] = ACTIONS(3228), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__modifier_unless_keyword] = ACTIONS(3228), - [sym__modifier_rescue_keyword] = ACTIONS(3228), - [sym__regular_ensure_keyword] = ACTIONS(3228), - [sym__modifier_ensure_keyword] = ACTIONS(3228), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_end] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_break] = ACTIONS(3255), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__modifier_if_keyword] = ACTIONS(3255), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__modifier_unless_keyword] = ACTIONS(3255), + [sym__modifier_rescue_keyword] = ACTIONS(3255), + [sym__regular_ensure_keyword] = ACTIONS(3255), + [sym__modifier_ensure_keyword] = ACTIONS(3255), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [677] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4913), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(677), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_SEMI] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_end] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_break] = ACTIONS(3224), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__modifier_if_keyword] = ACTIONS(3224), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__modifier_unless_keyword] = ACTIONS(3224), - [sym__modifier_rescue_keyword] = ACTIONS(3224), - [sym__regular_ensure_keyword] = ACTIONS(3224), - [sym__modifier_ensure_keyword] = ACTIONS(3224), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11175), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [678] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4915), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6288), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(678), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_SEMI] = ACTIONS(3232), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_end] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_break] = ACTIONS(3232), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__modifier_if_keyword] = ACTIONS(3232), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__modifier_unless_keyword] = ACTIONS(3232), - [sym__modifier_rescue_keyword] = ACTIONS(3232), - [sym__regular_ensure_keyword] = ACTIONS(3232), - [sym__modifier_ensure_keyword] = ACTIONS(3232), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(10235), + [sym_double_splat] = STATE(10235), + [sym_named_expr] = STATE(10235), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(10980), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3301), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [679] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(679), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11516), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3348), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11128), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3303), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [680] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6289), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(680), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [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), - [sym_block_argument] = STATE(11119), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3294), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11175), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3305), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [681] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6237), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(681), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [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), - [sym_block_argument] = STATE(11119), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3350), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11314), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3377), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [682] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(682), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11880), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3296), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11739), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3379), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [683] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(683), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(11153), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3310), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(11356), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3381), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [684] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3981), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3125), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(3675), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6012), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5078), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(5830), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(684), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_splat] = STATE(3917), - [sym_double_splat] = STATE(3917), - [sym_named_expr] = STATE(3917), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_block_argument] = STATE(4166), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1303), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__unary_star] = ACTIONS(1325), - [sym__unary_double_star] = ACTIONS(1327), - [sym__block_ampersand] = ACTIONS(399), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(6013), + [sym_double_splat] = STATE(6013), + [sym_named_expr] = STATE(6013), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4358), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2254), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2256), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__unary_star] = ACTIONS(2264), + [sym__unary_double_star] = ACTIONS(2266), + [sym__block_ampersand] = ACTIONS(847), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [685] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5170), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4496), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(685), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5171), - [sym_double_splat] = STATE(5171), - [sym_named_expr] = STATE(5171), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_block_argument] = STATE(5293), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__unary_star] = ACTIONS(743), - [sym__unary_double_star] = ACTIONS(745), - [sym__block_ampersand] = ACTIONS(747), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(3740), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(663), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [686] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2571), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2549), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(686), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2583), - [sym_double_splat] = STATE(2583), - [sym_named_expr] = STATE(2583), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_block_argument] = STATE(3018), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__unary_star] = ACTIONS(213), - [sym__unary_double_star] = ACTIONS(215), - [sym__block_ampersand] = ACTIONS(267), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2597), + [sym_double_splat] = STATE(2597), + [sym_named_expr] = STATE(2597), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_block_argument] = STATE(2916), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__unary_star] = ACTIONS(219), + [sym__unary_double_star] = ACTIONS(221), + [sym__block_ampersand] = ACTIONS(271), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [687] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5170), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4496), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(687), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5171), - [sym_double_splat] = STATE(5171), - [sym_named_expr] = STATE(5171), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_block_argument] = STATE(5329), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__unary_star] = ACTIONS(743), - [sym__unary_double_star] = ACTIONS(745), - [sym__block_ampersand] = ACTIONS(747), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(3770), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(663), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [688] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5170), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4496), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(688), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5171), - [sym_double_splat] = STATE(5171), - [sym_named_expr] = STATE(5171), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_block_argument] = STATE(5352), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__unary_star] = ACTIONS(743), - [sym__unary_double_star] = ACTIONS(745), - [sym__block_ampersand] = ACTIONS(747), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(3793), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(663), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [689] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3775), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3125), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(3675), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4996), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(689), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_splat] = STATE(3721), - [sym_double_splat] = STATE(3721), - [sym_named_expr] = STATE(3721), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_block_argument] = STATE(3995), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1303), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__unary_star] = ACTIONS(1325), - [sym__unary_double_star] = ACTIONS(1327), - [sym__block_ampersand] = ACTIONS(399), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4360), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(617), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [690] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4726), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4292), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(2995), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3606), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(690), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4686), - [sym_double_splat] = STATE(4686), - [sym_named_expr] = STATE(4686), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4415), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(643), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_splat] = STATE(3894), + [sym_double_splat] = STATE(3894), + [sym_named_expr] = STATE(3894), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_block_argument] = STATE(4040), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1319), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__unary_star] = ACTIONS(1343), + [sym__unary_double_star] = ACTIONS(1345), + [sym__block_ampersand] = ACTIONS(405), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [691] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5500), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2549), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(691), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4496), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__unary_star] = ACTIONS(923), - [sym__unary_double_star] = ACTIONS(925), - [sym__block_ampersand] = ACTIONS(941), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2597), + [sym_double_splat] = STATE(2597), + [sym_named_expr] = STATE(2597), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_block_argument] = STATE(3025), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__unary_star] = ACTIONS(219), + [sym__unary_double_star] = ACTIONS(221), + [sym__block_ampersand] = ACTIONS(271), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [692] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5500), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5470), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(692), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4536), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__unary_star] = ACTIONS(923), - [sym__unary_double_star] = ACTIONS(925), - [sym__block_ampersand] = ACTIONS(941), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(3740), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__unary_star] = ACTIONS(829), + [sym__unary_double_star] = ACTIONS(831), + [sym__block_ampersand] = ACTIONS(833), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [693] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4106), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5751), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(693), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4113), - [sym_double_splat] = STATE(4113), - [sym_named_expr] = STATE(4113), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(3649), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(605), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5715), + [sym_double_splat] = STATE(5715), + [sym_named_expr] = STATE(5715), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_block_argument] = STATE(5802), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__unary_star] = ACTIONS(1055), + [sym__unary_double_star] = ACTIONS(1057), + [sym__block_ampersand] = ACTIONS(1095), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [694] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4891), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4996), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(694), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4464), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(643), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4387), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(617), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [695] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4370), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5470), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(695), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(3599), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(605), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(3770), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__unary_star] = ACTIONS(829), + [sym__unary_double_star] = ACTIONS(831), + [sym__block_ampersand] = ACTIONS(833), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [696] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4370), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5470), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(696), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(3784), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(605), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(3793), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__unary_star] = ACTIONS(829), + [sym__unary_double_star] = ACTIONS(831), + [sym__block_ampersand] = ACTIONS(833), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [697] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4370), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4996), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(697), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(3790), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(605), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4566), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(617), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [698] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4891), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(6016), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(698), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4496), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(643), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(6253), + [sym_double_splat] = STATE(6253), + [sym_named_expr] = STATE(6253), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_block_argument] = STATE(6025), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__unary_star] = ACTIONS(1055), + [sym__unary_double_star] = ACTIONS(1057), + [sym__block_ampersand] = ACTIONS(1095), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [699] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4891), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3221), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(699), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4536), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(643), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3320), + [sym_double_splat] = STATE(3320), + [sym_named_expr] = STATE(3320), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_block_argument] = STATE(4005), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__unary_star] = ACTIONS(353), + [sym__unary_double_star] = ACTIONS(355), + [sym__block_ampersand] = ACTIONS(405), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [700] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6652), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5470), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(700), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [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), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3358), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [sym_implicit_object_method_identifier] = ACTIONS(3262), - [sym_implicit_object_method_operator] = ACTIONS(3262), - [sym_implicit_object_ivar] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4387), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__unary_star] = ACTIONS(829), + [sym__unary_double_star] = ACTIONS(831), + [sym__block_ampersand] = ACTIONS(847), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [701] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5469), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5470), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(701), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5616), - [sym_double_splat] = STATE(5616), - [sym_named_expr] = STATE(5616), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_block_argument] = STATE(5958), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__unary_star] = ACTIONS(1039), - [sym__unary_double_star] = ACTIONS(1041), - [sym__block_ampersand] = ACTIONS(1079), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4566), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__unary_star] = ACTIONS(829), + [sym__unary_double_star] = ACTIONS(831), + [sym__block_ampersand] = ACTIONS(847), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [702] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2571), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(6016), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(702), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2583), - [sym_double_splat] = STATE(2583), - [sym_named_expr] = STATE(2583), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_block_argument] = STATE(2946), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__unary_star] = ACTIONS(213), - [sym__unary_double_star] = ACTIONS(215), - [sym__block_ampersand] = ACTIONS(267), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(6253), + [sym_double_splat] = STATE(6253), + [sym_named_expr] = STATE(6253), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_block_argument] = STATE(6117), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__unary_star] = ACTIONS(1055), + [sym__unary_double_star] = ACTIONS(1057), + [sym__block_ampersand] = ACTIONS(1095), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [703] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(703), - [sym_identifier] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3238), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [sym_operator_symbol] = ACTIONS(3236), - [sym_unquoted_symbol] = ACTIONS(3236), - [anon_sym_COLON_DQUOTE] = ACTIONS(3236), - [anon_sym_BQUOTE] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_COMMA] = ACTIONS(3236), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_DASH_GT] = ACTIONS(3236), - [anon_sym_end] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3238), - [anon_sym_GT_GT] = ACTIONS(3238), - [anon_sym_LT_LT] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ_GT] = ACTIONS(3236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG_TILDE] = ACTIONS(3236), - [anon_sym_EQ_TILDE] = ACTIONS(3236), - [anon_sym_AMP_STAR] = ACTIONS(3238), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3236), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym_instance_sizeof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [sym__constant_segment] = ACTIONS(3236), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym___LINE__] = ACTIONS(3238), - [anon_sym___END_LINE__] = ACTIONS(3238), - [anon_sym___FILE__] = ACTIONS(3238), - [anon_sym___DIR__] = ACTIONS(3238), - [sym_special_variable] = ACTIONS(3236), - [sym_identifier_method_call] = ACTIONS(3236), - [sym_instance_var] = ACTIONS(3236), - [sym_class_var] = ACTIONS(3236), - [sym_self] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_AMP_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_AMP_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_EQ] = ACTIONS(3242), - [anon_sym_CARET_EQ] = ACTIONS(3242), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3242), - [anon_sym_LT_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_GT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_AMP_EQ] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_begin] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_until] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [sym__line_break] = ACTIONS(3236), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3236), - [sym__start_of_hash_or_tuple] = ACTIONS(3236), - [sym__start_of_named_tuple] = ACTIONS(3236), - [sym__start_of_index_operator] = ACTIONS(3236), - [sym_unary_plus] = ACTIONS(3236), - [sym_unary_minus] = ACTIONS(3236), - [sym_binary_plus] = ACTIONS(3236), - [sym_binary_minus] = ACTIONS(3236), - [sym_unary_wrapping_plus] = ACTIONS(3236), - [sym_unary_wrapping_minus] = ACTIONS(3236), - [sym_binary_wrapping_plus] = ACTIONS(3236), - [sym_binary_wrapping_minus] = ACTIONS(3236), - [sym__unary_star] = ACTIONS(3236), - [sym__binary_star] = ACTIONS(3236), - [sym__unary_double_star] = ACTIONS(3236), - [sym__binary_double_star] = ACTIONS(3236), - [sym__block_ampersand] = ACTIONS(3236), - [sym_binary_ampersand] = ACTIONS(3236), - [sym__beginless_range_operator] = ACTIONS(3236), - [sym__regex_start] = ACTIONS(3236), - [sym__binary_slash] = ACTIONS(3236), - [sym__binary_double_slash] = ACTIONS(3236), - [sym__regular_if_keyword] = ACTIONS(3236), - [sym__modifier_if_keyword] = ACTIONS(3236), - [sym__regular_unless_keyword] = ACTIONS(3236), - [sym__modifier_unless_keyword] = ACTIONS(3236), - [sym__modifier_rescue_keyword] = ACTIONS(3236), - [sym__regular_ensure_keyword] = ACTIONS(3236), - [sym__modifier_ensure_keyword] = ACTIONS(3236), - [sym__modulo_operator] = ACTIONS(3236), - [sym__string_literal_start] = ACTIONS(3236), - [sym__string_percent_literal_start] = ACTIONS(3236), - [sym__command_percent_literal_start] = ACTIONS(3236), - [sym__string_array_percent_literal_start] = ACTIONS(3236), - [sym__symbol_array_percent_literal_start] = ACTIONS(3236), - [sym__regex_percent_literal_start] = ACTIONS(3236), - [sym_heredoc_start] = ACTIONS(3236), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3236), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_implicit_object_index_operator] = STATE(9839), + [sym_implicit_object_call] = STATE(10349), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3393), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [sym_implicit_object_method_identifier] = ACTIONS(3339), + [sym_implicit_object_method_operator] = ACTIONS(3339), + [sym_implicit_object_ivar] = ACTIONS(3341), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), }, [704] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6020), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(6016), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(704), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(6097), - [sym_double_splat] = STATE(6097), - [sym_named_expr] = STATE(6097), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_block_argument] = STATE(6021), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__unary_star] = ACTIONS(1039), - [sym__unary_double_star] = ACTIONS(1041), - [sym__block_ampersand] = ACTIONS(1079), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(6253), + [sym_double_splat] = STATE(6253), + [sym_named_expr] = STATE(6253), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_block_argument] = STATE(6206), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__unary_star] = ACTIONS(1055), + [sym__unary_double_star] = ACTIONS(1057), + [sym__block_ampersand] = ACTIONS(1095), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [705] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6652), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6873), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(705), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [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), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3362), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [sym_implicit_object_method_identifier] = ACTIONS(3262), - [sym_implicit_object_method_operator] = ACTIONS(3262), - [sym_implicit_object_ivar] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_implicit_object_index_operator] = STATE(9839), + [sym_implicit_object_call] = STATE(10505), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3395), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [sym_implicit_object_method_identifier] = ACTIONS(3339), + [sym_implicit_object_method_operator] = ACTIONS(3339), + [sym_implicit_object_ivar] = ACTIONS(3341), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [706] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6020), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(3874), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(706), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(6097), - [sym_double_splat] = STATE(6097), - [sym_named_expr] = STATE(6097), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_block_argument] = STATE(6068), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__unary_star] = ACTIONS(1039), - [sym__unary_double_star] = ACTIONS(1041), - [sym__block_ampersand] = ACTIONS(1079), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3875), + [sym_double_splat] = STATE(3875), + [sym_named_expr] = STATE(3875), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4358), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(617), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [707] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6020), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6463), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5078), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(5830), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(707), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(6097), - [sym_double_splat] = STATE(6097), - [sym_named_expr] = STATE(6097), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_block_argument] = STATE(6128), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__unary_star] = ACTIONS(1039), - [sym__unary_double_star] = ACTIONS(1041), - [sym__block_ampersand] = ACTIONS(1079), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4360), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2254), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2256), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__unary_star] = ACTIONS(2264), + [sym__unary_double_star] = ACTIONS(2266), + [sym__block_ampersand] = ACTIONS(847), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [708] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3981), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3125), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(3675), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(3738), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(2995), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3606), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(708), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_splat] = STATE(3917), - [sym_double_splat] = STATE(3917), - [sym_named_expr] = STATE(3917), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_block_argument] = STATE(4221), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1303), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__unary_star] = ACTIONS(1325), - [sym__unary_double_star] = ACTIONS(1327), - [sym__block_ampersand] = ACTIONS(399), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_splat] = STATE(3605), + [sym_double_splat] = STATE(3605), + [sym_named_expr] = STATE(3605), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_block_argument] = STATE(4005), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1319), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__unary_star] = ACTIONS(1343), + [sym__unary_double_star] = ACTIONS(1345), + [sym__block_ampersand] = ACTIONS(405), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [709] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4097), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3254), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(709), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4098), - [sym_double_splat] = STATE(4098), - [sym_named_expr] = STATE(4098), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4415), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(643), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3250), + [sym_double_splat] = STATE(3250), + [sym_named_expr] = STATE(3250), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_block_argument] = STATE(3596), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__unary_star] = ACTIONS(353), + [sym__unary_double_star] = ACTIONS(355), + [sym__block_ampersand] = ACTIONS(357), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [710] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3203), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5182), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(710), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3311), - [sym_double_splat] = STATE(3311), - [sym_named_expr] = STATE(3311), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_block_argument] = STATE(3538), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__unary_star] = ACTIONS(349), - [sym__unary_double_star] = ACTIONS(351), - [sym__block_ampersand] = ACTIONS(389), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_implicit_object_index_operator] = STATE(9500), + [sym_implicit_object_call] = STATE(9181), + [sym_implicit_object_tuple] = STATE(9181), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_DOT] = ACTIONS(3399), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [sym_implicit_object_method_identifier] = ACTIONS(3401), + [sym_implicit_object_method_operator] = ACTIONS(3401), + [sym_implicit_object_ivar] = ACTIONS(3403), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3405), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [711] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3981), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3125), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(3675), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4292), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(2995), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3606), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(711), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_splat] = STATE(3917), - [sym_double_splat] = STATE(3917), - [sym_named_expr] = STATE(3917), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_block_argument] = STATE(3920), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1303), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__unary_star] = ACTIONS(1325), - [sym__unary_double_star] = ACTIONS(1327), - [sym__block_ampersand] = ACTIONS(399), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_splat] = STATE(3894), + [sym_double_splat] = STATE(3894), + [sym_named_expr] = STATE(3894), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_block_argument] = STATE(4074), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1319), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__unary_star] = ACTIONS(1343), + [sym__unary_double_star] = ACTIONS(1345), + [sym__block_ampersand] = ACTIONS(405), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [712] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2571), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6463), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5078), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(5830), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(712), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2583), - [sym_double_splat] = STATE(2583), - [sym_named_expr] = STATE(2583), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_block_argument] = STATE(3037), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__unary_star] = ACTIONS(213), - [sym__unary_double_star] = ACTIONS(215), - [sym__block_ampersand] = ACTIONS(267), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4387), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2254), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2256), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__unary_star] = ACTIONS(2264), + [sym__unary_double_star] = ACTIONS(2266), + [sym__block_ampersand] = ACTIONS(847), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [713] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4370), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3337), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(713), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4464), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(643), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3462), + [sym_double_splat] = STATE(3462), + [sym_named_expr] = STATE(3462), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_block_argument] = STATE(3464), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__unary_star] = ACTIONS(353), + [sym__unary_double_star] = ACTIONS(355), + [sym__block_ampersand] = ACTIONS(357), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [714] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3417), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4496), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(714), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3429), - [sym_double_splat] = STATE(3429), - [sym_named_expr] = STATE(3429), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_block_argument] = STATE(3349), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__unary_star] = ACTIONS(349), - [sym__unary_double_star] = ACTIONS(351), - [sym__block_ampersand] = ACTIONS(389), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4360), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(617), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [715] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3417), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6463), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5078), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(5830), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(715), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3429), - [sym_double_splat] = STATE(3429), - [sym_named_expr] = STATE(3429), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_block_argument] = STATE(3401), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__unary_star] = ACTIONS(349), - [sym__unary_double_star] = ACTIONS(351), - [sym__block_ampersand] = ACTIONS(389), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4566), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2254), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2256), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__unary_star] = ACTIONS(2264), + [sym__unary_double_star] = ACTIONS(2266), + [sym__block_ampersand] = ACTIONS(847), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [716] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3417), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3337), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(716), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3429), - [sym_double_splat] = STATE(3429), - [sym_named_expr] = STATE(3429), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_block_argument] = STATE(3456), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__unary_star] = ACTIONS(349), - [sym__unary_double_star] = ACTIONS(351), - [sym__block_ampersand] = ACTIONS(389), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3462), + [sym_double_splat] = STATE(3462), + [sym_named_expr] = STATE(3462), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_block_argument] = STATE(3581), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__unary_star] = ACTIONS(353), + [sym__unary_double_star] = ACTIONS(355), + [sym__block_ampersand] = ACTIONS(357), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [717] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4324), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3357), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4326), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3337), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(717), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_splat] = STATE(4314), - [sym_double_splat] = STATE(4314), - [sym_named_expr] = STATE(4314), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_block_argument] = STATE(4744), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(1495), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__unary_star] = ACTIONS(1517), - [sym__unary_double_star] = ACTIONS(1519), - [sym__block_ampersand] = ACTIONS(653), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3462), + [sym_double_splat] = STATE(3462), + [sym_named_expr] = STATE(3462), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_block_argument] = STATE(3370), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__unary_star] = ACTIONS(353), + [sym__unary_double_star] = ACTIONS(355), + [sym__block_ampersand] = ACTIONS(357), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [718] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3016), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2471), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2795), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5999), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(4914), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(5648), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(718), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_splat] = STATE(3017), - [sym_double_splat] = STATE(3017), - [sym_named_expr] = STATE(3017), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_block_argument] = STATE(2946), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(1207), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_splat] = STATE(6000), + [sym_double_splat] = STATE(6000), + [sym_named_expr] = STATE(6000), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_block_argument] = STATE(6014), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(2131), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(2137), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__unary_star] = ACTIONS(2161), + [sym__unary_double_star] = ACTIONS(2163), + [sym__block_ampersand] = ACTIONS(1151), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [719] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4496), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(719), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4387), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(617), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [720] = { + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4501), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3415), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), + [sym_heredoc_body] = STATE(720), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_splat] = STATE(4546), + [sym_double_splat] = STATE(4546), + [sym_named_expr] = STATE(4546), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_block_argument] = STATE(4845), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(1577), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(1583), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__unary_star] = ACTIONS(1607), + [sym__unary_double_star] = ACTIONS(1609), + [sym__block_ampersand] = ACTIONS(647), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [721] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4496), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(721), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4566), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(617), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [722] = { + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4841), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3415), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), + [sym_heredoc_body] = STATE(722), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_splat] = STATE(4632), + [sym_double_splat] = STATE(4632), + [sym_named_expr] = STATE(4632), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_block_argument] = STATE(4633), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(1577), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(1583), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__unary_star] = ACTIONS(1607), + [sym__unary_double_star] = ACTIONS(1609), + [sym__block_ampersand] = ACTIONS(647), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [723] = { + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6536), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), + [sym_heredoc_body] = STATE(723), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_RBRACK] = ACTIONS(3409), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_RBRACK_QMARK] = ACTIONS(3413), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [724] = { + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4841), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3415), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), + [sym_heredoc_body] = STATE(724), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_splat] = STATE(4632), + [sym_double_splat] = STATE(4632), + [sym_named_expr] = STATE(4632), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_block_argument] = STATE(4719), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(1577), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(1583), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__unary_star] = ACTIONS(1607), + [sym__unary_double_star] = ACTIONS(1609), + [sym__block_ampersand] = ACTIONS(647), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [725] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(2806), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2461), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(2845), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(725), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_splat] = STATE(2819), + [sym_double_splat] = STATE(2819), + [sym_named_expr] = STATE(2819), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_block_argument] = STATE(2985), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(1223), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -150407,8503 +152962,5670 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(1221), + [sym__constant_segment] = ACTIONS(1237), [anon_sym_COLON_COLON] = ACTIONS(85), [anon_sym___LINE__] = ACTIONS(87), [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1223), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(1239), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(1235), - [sym__unary_double_star] = ACTIONS(1237), - [sym__block_ampersand] = ACTIONS(267), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__unary_star] = ACTIONS(1251), + [sym__unary_double_star] = ACTIONS(1253), + [sym__block_ampersand] = ACTIONS(271), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [719] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4638), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3357), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4326), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), - [sym_heredoc_body] = STATE(719), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_splat] = STATE(4817), - [sym_double_splat] = STATE(4817), - [sym_named_expr] = STATE(4817), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_block_argument] = STATE(4818), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(1495), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__unary_star] = ACTIONS(1517), - [sym__unary_double_star] = ACTIONS(1519), - [sym__block_ampersand] = ACTIONS(653), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [720] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4638), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3357), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4326), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), - [sym_heredoc_body] = STATE(720), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_splat] = STATE(4817), - [sym_double_splat] = STATE(4817), - [sym_named_expr] = STATE(4817), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_block_argument] = STATE(4863), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(1495), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__unary_star] = ACTIONS(1517), - [sym__unary_double_star] = ACTIONS(1519), - [sym__block_ampersand] = ACTIONS(653), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [721] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4638), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3357), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4326), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), - [sym_heredoc_body] = STATE(721), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_splat] = STATE(4817), - [sym_double_splat] = STATE(4817), - [sym_named_expr] = STATE(4817), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_block_argument] = STATE(4592), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(1495), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__unary_star] = ACTIONS(1517), - [sym__unary_double_star] = ACTIONS(1519), - [sym__block_ampersand] = ACTIONS(653), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [722] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3594), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), - [sym_heredoc_body] = STATE(722), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3723), - [sym_double_splat] = STATE(3723), - [sym_named_expr] = STATE(3723), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_block_argument] = STATE(4744), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__unary_star] = ACTIONS(481), - [sym__unary_double_star] = ACTIONS(483), - [sym__block_ampersand] = ACTIONS(653), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [723] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4370), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(723), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4496), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(643), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [724] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4157), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), - [sym_heredoc_body] = STATE(724), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(4026), - [sym_double_splat] = STATE(4026), - [sym_named_expr] = STATE(4026), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_block_argument] = STATE(4818), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__unary_star] = ACTIONS(481), - [sym__unary_double_star] = ACTIONS(483), - [sym__block_ampersand] = ACTIONS(653), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [725] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4157), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), - [sym_heredoc_body] = STATE(725), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(4026), - [sym_double_splat] = STATE(4026), - [sym_named_expr] = STATE(4026), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_block_argument] = STATE(4863), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__unary_star] = ACTIONS(481), - [sym__unary_double_star] = ACTIONS(483), - [sym__block_ampersand] = ACTIONS(653), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - }, [726] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4157), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4841), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3415), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(726), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(4026), - [sym_double_splat] = STATE(4026), - [sym_named_expr] = STATE(4026), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_block_argument] = STATE(4592), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__unary_star] = ACTIONS(481), - [sym__unary_double_star] = ACTIONS(483), - [sym__block_ampersand] = ACTIONS(653), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_splat] = STATE(4632), + [sym_double_splat] = STATE(4632), + [sym_named_expr] = STATE(4632), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_block_argument] = STATE(4766), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(1577), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(1583), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__unary_star] = ACTIONS(1607), + [sym__unary_double_star] = ACTIONS(1609), + [sym__block_ampersand] = ACTIONS(647), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [727] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5979), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3734), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(727), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(5796), - [sym_double_splat] = STATE(5796), - [sym_named_expr] = STATE(5796), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_block_argument] = STATE(6469), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__block_ampersand] = ACTIONS(871), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3646), + [sym_double_splat] = STATE(3646), + [sym_named_expr] = STATE(3646), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_block_argument] = STATE(4845), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__unary_star] = ACTIONS(489), + [sym__unary_double_star] = ACTIONS(491), + [sym__block_ampersand] = ACTIONS(647), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [728] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5768), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5002), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(5733), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6067), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(4914), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(5648), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(728), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_splat] = STATE(5769), - [sym_double_splat] = STATE(5769), - [sym_named_expr] = STATE(5769), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_block_argument] = STATE(6085), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(2120), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__unary_star] = ACTIONS(2142), - [sym__unary_double_star] = ACTIONS(2144), - [sym__block_ampersand] = ACTIONS(1135), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_splat] = STATE(6068), + [sym_double_splat] = STATE(6068), + [sym_named_expr] = STATE(6068), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_block_argument] = STATE(6160), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(2131), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(2137), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__unary_star] = ACTIONS(2161), + [sym__unary_double_star] = ACTIONS(2163), + [sym__block_ampersand] = ACTIONS(1151), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [729] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6442), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5091), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(729), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(6481), - [sym_double_splat] = STATE(6481), - [sym_named_expr] = STATE(6481), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_block_argument] = STATE(6482), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__block_ampersand] = ACTIONS(871), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5092), + [sym_double_splat] = STATE(5092), + [sym_named_expr] = STATE(5092), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_block_argument] = STATE(5401), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__unary_star] = ACTIONS(757), + [sym__unary_double_star] = ACTIONS(759), + [sym__block_ampersand] = ACTIONS(797), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [730] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6442), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4287), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(730), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(6481), - [sym_double_splat] = STATE(6481), - [sym_named_expr] = STATE(6481), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_block_argument] = STATE(6491), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__block_ampersand] = ACTIONS(871), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(4056), + [sym_double_splat] = STATE(4056), + [sym_named_expr] = STATE(4056), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_block_argument] = STATE(4633), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__unary_star] = ACTIONS(489), + [sym__unary_double_star] = ACTIONS(491), + [sym__block_ampersand] = ACTIONS(647), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [731] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2571), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4287), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(731), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2583), - [sym_double_splat] = STATE(2583), - [sym_named_expr] = STATE(2583), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_block_argument] = STATE(2613), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__unary_star] = ACTIONS(213), - [sym__unary_double_star] = ACTIONS(215), - [sym__block_ampersand] = ACTIONS(217), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(4056), + [sym_double_splat] = STATE(4056), + [sym_named_expr] = STATE(4056), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_block_argument] = STATE(4719), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__unary_star] = ACTIONS(489), + [sym__unary_double_star] = ACTIONS(491), + [sym__block_ampersand] = ACTIONS(647), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [732] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6442), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4287), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(732), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(6481), - [sym_double_splat] = STATE(6481), - [sym_named_expr] = STATE(6481), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_block_argument] = STATE(6500), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__block_ampersand] = ACTIONS(871), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(4056), + [sym_double_splat] = STATE(4056), + [sym_named_expr] = STATE(4056), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_block_argument] = STATE(4766), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__unary_star] = ACTIONS(489), + [sym__unary_double_star] = ACTIONS(491), + [sym__block_ampersand] = ACTIONS(647), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [733] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5382), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6569), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5370), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6458), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(733), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5383), - [sym_double_splat] = STATE(5383), - [sym_named_expr] = STATE(5383), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_block_argument] = STATE(6469), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__unary_star] = ACTIONS(867), - [sym__unary_double_star] = ACTIONS(869), - [sym__block_ampersand] = ACTIONS(871), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_splat] = STATE(6464), + [sym_double_splat] = STATE(6464), + [sym_named_expr] = STATE(6464), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_block_argument] = STATE(6870), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(2708), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(2714), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__unary_star] = ACTIONS(2738), + [sym__unary_double_star] = ACTIONS(2740), + [sym__block_ampersand] = ACTIONS(1161), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [734] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5601), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5105), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(734), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5602), - [sym_double_splat] = STATE(5602), - [sym_named_expr] = STATE(5602), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_block_argument] = STATE(6482), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__unary_star] = ACTIONS(867), - [sym__unary_double_star] = ACTIONS(869), - [sym__block_ampersand] = ACTIONS(871), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(8997), + [sym_double_splat] = STATE(8997), + [sym_named_expr] = STATE(8997), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_block_argument] = STATE(9603), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__unary_star] = ACTIONS(757), + [sym__unary_double_star] = ACTIONS(759), + [sym__block_ampersand] = ACTIONS(3235), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [735] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5601), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5260), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(735), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5602), - [sym_double_splat] = STATE(5602), - [sym_named_expr] = STATE(5602), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_block_argument] = STATE(6491), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__unary_star] = ACTIONS(867), - [sym__unary_double_star] = ACTIONS(869), - [sym__block_ampersand] = ACTIONS(871), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(9196), + [sym_double_splat] = STATE(9196), + [sym_named_expr] = STATE(9196), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_block_argument] = STATE(9424), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__unary_star] = ACTIONS(757), + [sym__unary_double_star] = ACTIONS(759), + [sym__block_ampersand] = ACTIONS(3235), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [736] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3016), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2471), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2795), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5260), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(736), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_splat] = STATE(3017), - [sym_double_splat] = STATE(3017), - [sym_named_expr] = STATE(3017), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_block_argument] = STATE(3018), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(1221), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1223), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(1235), - [sym__unary_double_star] = ACTIONS(1237), - [sym__block_ampersand] = ACTIONS(267), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(9196), + [sym_double_splat] = STATE(9196), + [sym_named_expr] = STATE(9196), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_block_argument] = STATE(9474), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__unary_star] = ACTIONS(757), + [sym__unary_double_star] = ACTIONS(759), + [sym__block_ampersand] = ACTIONS(3235), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [737] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5601), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5260), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(737), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5602), - [sym_double_splat] = STATE(5602), - [sym_named_expr] = STATE(5602), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_block_argument] = STATE(6500), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__unary_star] = ACTIONS(867), - [sym__unary_double_star] = ACTIONS(869), - [sym__block_ampersand] = ACTIONS(871), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(9196), + [sym_double_splat] = STATE(9196), + [sym_named_expr] = STATE(9196), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_block_argument] = STATE(9519), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__unary_star] = ACTIONS(757), + [sym__unary_double_star] = ACTIONS(759), + [sym__block_ampersand] = ACTIONS(3235), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [738] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6468), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5164), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(6312), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6189), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(738), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(6346), - [sym_double_splat] = STATE(6346), - [sym_named_expr] = STATE(6346), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4415), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2441), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2443), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__unary_star] = ACTIONS(2451), - [sym__unary_double_star] = ACTIONS(2453), - [sym__block_ampersand] = ACTIONS(1173), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(5898), + [sym_double_splat] = STATE(5898), + [sym_named_expr] = STATE(5898), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_block_argument] = STATE(6499), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__block_ampersand] = ACTIONS(935), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [739] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6639), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5164), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(6312), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6655), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(739), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4464), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2441), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2443), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__unary_star] = ACTIONS(2451), - [sym__unary_double_star] = ACTIONS(2453), - [sym__block_ampersand] = ACTIONS(1173), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(6551), + [sym_double_splat] = STATE(6551), + [sym_named_expr] = STATE(6551), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_block_argument] = STATE(6552), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__block_ampersand] = ACTIONS(935), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [740] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6639), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5164), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(6312), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6655), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(740), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4496), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2441), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2443), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__unary_star] = ACTIONS(2451), - [sym__unary_double_star] = ACTIONS(2453), - [sym__block_ampersand] = ACTIONS(1173), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(6551), + [sym_double_splat] = STATE(6551), + [sym_named_expr] = STATE(6551), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_block_argument] = STATE(6637), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__block_ampersand] = ACTIONS(935), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [741] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6639), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5164), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(6312), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6655), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(741), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4536), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2441), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2443), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__unary_star] = ACTIONS(2451), - [sym__unary_double_star] = ACTIONS(2453), - [sym__block_ampersand] = ACTIONS(1173), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(6551), + [sym_double_splat] = STATE(6551), + [sym_named_expr] = STATE(6551), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_block_argument] = STATE(6315), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__block_ampersand] = ACTIONS(935), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [742] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5660), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5309), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(742), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5661), - [sym_double_splat] = STATE(5661), - [sym_named_expr] = STATE(5661), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4415), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__unary_star] = ACTIONS(1109), - [sym__unary_double_star] = ACTIONS(1111), - [sym__block_ampersand] = ACTIONS(1173), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5310), + [sym_double_splat] = STATE(5310), + [sym_named_expr] = STATE(5310), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_block_argument] = STATE(6499), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__unary_star] = ACTIONS(931), + [sym__unary_double_star] = ACTIONS(933), + [sym__block_ampersand] = ACTIONS(935), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [743] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5821), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5521), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(743), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4464), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__unary_star] = ACTIONS(1109), - [sym__unary_double_star] = ACTIONS(1111), - [sym__block_ampersand] = ACTIONS(1173), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5522), + [sym_double_splat] = STATE(5522), + [sym_named_expr] = STATE(5522), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_block_argument] = STATE(6552), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__unary_star] = ACTIONS(931), + [sym__unary_double_star] = ACTIONS(933), + [sym__block_ampersand] = ACTIONS(935), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [744] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3294), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5521), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(744), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3282), - [sym_double_splat] = STATE(3282), - [sym_named_expr] = STATE(3282), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_block_argument] = STATE(3995), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__unary_star] = ACTIONS(349), - [sym__unary_double_star] = ACTIONS(351), - [sym__block_ampersand] = ACTIONS(399), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5522), + [sym_double_splat] = STATE(5522), + [sym_named_expr] = STATE(5522), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_block_argument] = STATE(6637), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__unary_star] = ACTIONS(931), + [sym__unary_double_star] = ACTIONS(933), + [sym__block_ampersand] = ACTIONS(935), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [745] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5821), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5521), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(745), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4496), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__unary_star] = ACTIONS(1109), - [sym__unary_double_star] = ACTIONS(1111), - [sym__block_ampersand] = ACTIONS(1173), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5522), + [sym_double_splat] = STATE(5522), + [sym_named_expr] = STATE(5522), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_block_argument] = STATE(6315), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__unary_star] = ACTIONS(931), + [sym__unary_double_star] = ACTIONS(933), + [sym__block_ampersand] = ACTIONS(935), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [746] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5821), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6670), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(6507), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(746), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4536), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__unary_star] = ACTIONS(1109), - [sym__unary_double_star] = ACTIONS(1111), - [sym__block_ampersand] = ACTIONS(1173), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(6596), + [sym_double_splat] = STATE(6596), + [sym_named_expr] = STATE(6596), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4358), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2452), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2454), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__unary_star] = ACTIONS(2462), + [sym__unary_double_star] = ACTIONS(2464), + [sym__block_ampersand] = ACTIONS(1189), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [747] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5438), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6677), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(6507), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(747), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(9306), - [sym_double_splat] = STATE(9306), - [sym_named_expr] = STATE(9306), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(9825), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4360), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2452), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2454), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__unary_star] = ACTIONS(2462), + [sym__unary_double_star] = ACTIONS(2464), + [sym__block_ampersand] = ACTIONS(1189), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [748] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4370), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6677), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(6507), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(748), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(9305), - [sym_double_splat] = STATE(9305), - [sym_named_expr] = STATE(9305), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(9774), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4387), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2452), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2454), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__unary_star] = ACTIONS(2462), + [sym__unary_double_star] = ACTIONS(2464), + [sym__block_ampersand] = ACTIONS(1189), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [749] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5118), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6677), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(6507), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(749), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_implicit_object_index_operator] = STATE(9412), - [sym_implicit_object_call] = STATE(9165), - [sym_implicit_object_tuple] = STATE(9165), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_DOT] = ACTIONS(3382), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [sym_implicit_object_method_identifier] = ACTIONS(3384), - [sym_implicit_object_method_operator] = ACTIONS(3384), - [sym_implicit_object_ivar] = ACTIONS(3386), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3388), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4566), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2452), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2454), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__unary_star] = ACTIONS(2462), + [sym__unary_double_star] = ACTIONS(2464), + [sym__block_ampersand] = ACTIONS(1189), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [750] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4370), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6067), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(4914), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(5648), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(750), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(9305), - [sym_double_splat] = STATE(9305), - [sym_named_expr] = STATE(9305), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(9956), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_splat] = STATE(6068), + [sym_double_splat] = STATE(6068), + [sym_named_expr] = STATE(6068), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_block_argument] = STATE(6222), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(2131), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(2137), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__unary_star] = ACTIONS(2161), + [sym__unary_double_star] = ACTIONS(2163), + [sym__block_ampersand] = ACTIONS(1151), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [751] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4370), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6932), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5370), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6458), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(751), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(9305), - [sym_double_splat] = STATE(9305), - [sym_named_expr] = STATE(9305), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(10047), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(3220), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_splat] = STATE(6779), + [sym_double_splat] = STATE(6779), + [sym_named_expr] = STATE(6779), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_block_argument] = STATE(6752), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(2708), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(2714), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__unary_star] = ACTIONS(2738), + [sym__unary_double_star] = ACTIONS(2740), + [sym__block_ampersand] = ACTIONS(1161), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [752] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3817), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6067), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(4914), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(5648), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(752), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3794), - [sym_double_splat] = STATE(3794), - [sym_named_expr] = STATE(3794), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_block_argument] = STATE(4129), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__unary_star] = ACTIONS(481), - [sym__unary_double_star] = ACTIONS(483), - [sym__block_ampersand] = ACTIONS(521), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_splat] = STATE(6068), + [sym_double_splat] = STATE(6068), + [sym_named_expr] = STATE(6068), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_block_argument] = STATE(5883), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(2131), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(2137), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__unary_star] = ACTIONS(2161), + [sym__unary_double_star] = ACTIONS(2163), + [sym__block_ampersand] = ACTIONS(1151), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [753] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4157), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5767), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(753), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(4026), - [sym_double_splat] = STATE(4026), - [sym_named_expr] = STATE(4026), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_block_argument] = STATE(4158), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__unary_star] = ACTIONS(481), - [sym__unary_double_star] = ACTIONS(483), - [sym__block_ampersand] = ACTIONS(521), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5768), + [sym_double_splat] = STATE(5768), + [sym_named_expr] = STATE(5768), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4358), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__unary_star] = ACTIONS(1125), + [sym__unary_double_star] = ACTIONS(1127), + [sym__block_ampersand] = ACTIONS(1189), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [754] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4157), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6036), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(754), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(4026), - [sym_double_splat] = STATE(4026), - [sym_named_expr] = STATE(4026), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_block_argument] = STATE(4226), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__unary_star] = ACTIONS(481), - [sym__unary_double_star] = ACTIONS(483), - [sym__block_ampersand] = ACTIONS(521), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4360), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__unary_star] = ACTIONS(1125), + [sym__unary_double_star] = ACTIONS(1127), + [sym__block_ampersand] = ACTIONS(1189), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [755] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5910), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5002), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(5733), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6036), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(755), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_splat] = STATE(5915), - [sym_double_splat] = STATE(5915), - [sym_named_expr] = STATE(5915), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_block_argument] = STATE(5760), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(2120), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__unary_star] = ACTIONS(2142), - [sym__unary_double_star] = ACTIONS(2144), - [sym__block_ampersand] = ACTIONS(1135), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4387), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__unary_star] = ACTIONS(1125), + [sym__unary_double_star] = ACTIONS(1127), + [sym__block_ampersand] = ACTIONS(1189), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [756] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4157), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3127), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2461), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(2845), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(756), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(4026), - [sym_double_splat] = STATE(4026), - [sym_named_expr] = STATE(4026), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_block_argument] = STATE(3853), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__unary_star] = ACTIONS(481), - [sym__unary_double_star] = ACTIONS(483), - [sym__block_ampersand] = ACTIONS(521), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_splat] = STATE(3128), + [sym_double_splat] = STATE(3128), + [sym_named_expr] = STATE(3128), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_block_argument] = STATE(2916), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(1237), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(1239), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__unary_star] = ACTIONS(1251), + [sym__unary_double_star] = ACTIONS(1253), + [sym__block_ampersand] = ACTIONS(271), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [757] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5177), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6036), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(757), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5178), - [sym_double_splat] = STATE(5178), - [sym_named_expr] = STATE(5178), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_block_argument] = STATE(5581), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__unary_star] = ACTIONS(867), - [sym__unary_double_star] = ACTIONS(869), - [sym__block_ampersand] = ACTIONS(957), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4566), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__unary_star] = ACTIONS(1125), + [sym__unary_double_star] = ACTIONS(1127), + [sym__block_ampersand] = ACTIONS(1189), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [758] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2571), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5481), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(758), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2583), - [sym_double_splat] = STATE(2583), - [sym_named_expr] = STATE(2583), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_block_argument] = STATE(2685), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__unary_star] = ACTIONS(213), - [sym__unary_double_star] = ACTIONS(215), - [sym__block_ampersand] = ACTIONS(217), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(9270), + [sym_double_splat] = STATE(9270), + [sym_named_expr] = STATE(9270), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(10175), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [759] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5601), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4496), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(759), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5602), - [sym_double_splat] = STATE(5602), - [sym_named_expr] = STATE(5602), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_block_argument] = STATE(5603), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__unary_star] = ACTIONS(867), - [sym__unary_double_star] = ACTIONS(869), - [sym__block_ampersand] = ACTIONS(957), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(9262), + [sym_double_splat] = STATE(9262), + [sym_named_expr] = STATE(9262), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(9987), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [760] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5601), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4496), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(760), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5602), - [sym_double_splat] = STATE(5602), - [sym_named_expr] = STATE(5602), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_block_argument] = STATE(5618), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__unary_star] = ACTIONS(867), - [sym__unary_double_star] = ACTIONS(869), - [sym__block_ampersand] = ACTIONS(957), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(9262), + [sym_double_splat] = STATE(9262), + [sym_named_expr] = STATE(9262), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(10176), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [761] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3417), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4496), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(761), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3429), - [sym_double_splat] = STATE(3429), - [sym_named_expr] = STATE(3429), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_block_argument] = STATE(4166), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__unary_star] = ACTIONS(349), - [sym__unary_double_star] = ACTIONS(351), - [sym__block_ampersand] = ACTIONS(399), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(9262), + [sym_double_splat] = STATE(9262), + [sym_named_expr] = STATE(9262), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(10377), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(3251), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [762] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2571), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3635), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(762), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2583), - [sym_double_splat] = STATE(2583), - [sym_named_expr] = STATE(2583), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_block_argument] = STATE(2661), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__unary_star] = ACTIONS(213), - [sym__unary_double_star] = ACTIONS(215), - [sym__block_ampersand] = ACTIONS(217), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3631), + [sym_double_splat] = STATE(3631), + [sym_named_expr] = STATE(3631), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_block_argument] = STATE(3943), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__unary_star] = ACTIONS(489), + [sym__unary_double_star] = ACTIONS(491), + [sym__block_ampersand] = ACTIONS(529), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [763] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5601), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4287), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(763), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5602), - [sym_double_splat] = STATE(5602), - [sym_named_expr] = STATE(5602), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_block_argument] = STATE(5637), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__unary_star] = ACTIONS(867), - [sym__unary_double_star] = ACTIONS(869), - [sym__block_ampersand] = ACTIONS(957), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(4056), + [sym_double_splat] = STATE(4056), + [sym_named_expr] = STATE(4056), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_block_argument] = STATE(4155), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__unary_star] = ACTIONS(489), + [sym__unary_double_star] = ACTIONS(491), + [sym__block_ampersand] = ACTIONS(529), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [764] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5453), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4287), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(764), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5439), - [sym_double_splat] = STATE(5439), - [sym_named_expr] = STATE(5439), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(3649), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__unary_star] = ACTIONS(1109), - [sym__unary_double_star] = ACTIONS(1111), - [sym__block_ampersand] = ACTIONS(1125), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(4056), + [sym_double_splat] = STATE(4056), + [sym_named_expr] = STATE(4056), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_block_argument] = STATE(4166), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__unary_star] = ACTIONS(489), + [sym__unary_double_star] = ACTIONS(491), + [sym__block_ampersand] = ACTIONS(529), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [765] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6299), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4287), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(765), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_RBRACK] = ACTIONS(3390), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_RBRACK_QMARK] = ACTIONS(3392), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(4056), + [sym_double_splat] = STATE(4056), + [sym_named_expr] = STATE(4056), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_block_argument] = STATE(4180), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__unary_star] = ACTIONS(489), + [sym__unary_double_star] = ACTIONS(491), + [sym__block_ampersand] = ACTIONS(529), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [766] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5821), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6053), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(766), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_implicit_object_index_operator] = STATE(9500), + [sym_implicit_object_call] = STATE(9642), + [sym_implicit_object_tuple] = STATE(9642), + [sym_assign_call] = STATE(7850), [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(3599), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__unary_star] = ACTIONS(1109), - [sym__unary_double_star] = ACTIONS(1111), - [sym__block_ampersand] = ACTIONS(1125), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_DOT] = ACTIONS(3399), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [sym_implicit_object_method_identifier] = ACTIONS(3401), + [sym_implicit_object_method_operator] = ACTIONS(3401), + [sym_implicit_object_ivar] = ACTIONS(3403), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3405), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [767] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5821), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5196), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(767), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(3784), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__unary_star] = ACTIONS(1109), - [sym__unary_double_star] = ACTIONS(1111), - [sym__block_ampersand] = ACTIONS(1125), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5197), + [sym_double_splat] = STATE(5197), + [sym_named_expr] = STATE(5197), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_block_argument] = STATE(5500), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__unary_star] = ACTIONS(931), + [sym__unary_double_star] = ACTIONS(933), + [sym__block_ampersand] = ACTIONS(971), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [768] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3417), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5521), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(768), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3429), - [sym_double_splat] = STATE(3429), - [sym_named_expr] = STATE(3429), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_block_argument] = STATE(4221), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__unary_star] = ACTIONS(349), - [sym__unary_double_star] = ACTIONS(351), - [sym__block_ampersand] = ACTIONS(399), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5522), + [sym_double_splat] = STATE(5522), + [sym_named_expr] = STATE(5522), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_block_argument] = STATE(5523), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__unary_star] = ACTIONS(931), + [sym__unary_double_star] = ACTIONS(933), + [sym__block_ampersand] = ACTIONS(971), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [769] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5821), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(2865), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2461), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(2845), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(769), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(3790), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__unary_star] = ACTIONS(1109), - [sym__unary_double_star] = ACTIONS(1111), - [sym__block_ampersand] = ACTIONS(1125), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [770] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3417), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(770), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3429), - [sym_double_splat] = STATE(3429), - [sym_named_expr] = STATE(3429), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_block_argument] = STATE(3920), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__unary_star] = ACTIONS(349), - [sym__unary_double_star] = ACTIONS(351), - [sym__block_ampersand] = ACTIONS(399), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [771] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5910), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5002), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(5733), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), - [sym_heredoc_body] = STATE(771), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_splat] = STATE(5915), - [sym_double_splat] = STATE(5915), - [sym_named_expr] = STATE(5915), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_block_argument] = STATE(6116), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(2120), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__unary_star] = ACTIONS(2142), - [sym__unary_double_star] = ACTIONS(2144), - [sym__block_ampersand] = ACTIONS(1135), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [772] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5910), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5002), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(5733), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), - [sym_heredoc_body] = STATE(772), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_splat] = STATE(5915), - [sym_double_splat] = STATE(5915), - [sym_named_expr] = STATE(5915), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_block_argument] = STATE(5902), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(2120), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__unary_star] = ACTIONS(2142), - [sym__unary_double_star] = ACTIONS(2144), - [sym__block_ampersand] = ACTIONS(1135), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [773] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5185), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(773), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5186), - [sym_double_splat] = STATE(5186), - [sym_named_expr] = STATE(5186), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(3649), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__unary_star] = ACTIONS(923), - [sym__unary_double_star] = ACTIONS(925), - [sym__block_ampersand] = ACTIONS(927), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [774] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(774), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_implicit_object_index_operator] = STATE(10311), - [sym_implicit_object_call] = STATE(9745), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3394), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [sym_implicit_object_method_identifier] = ACTIONS(3262), - [sym_implicit_object_method_operator] = ACTIONS(3262), - [sym_implicit_object_ivar] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [775] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2514), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), - [sym_heredoc_body] = STATE(775), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2529), - [sym_double_splat] = STATE(2529), - [sym_named_expr] = STATE(2529), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_block_argument] = STATE(2941), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__unary_star] = ACTIONS(213), - [sym__unary_double_star] = ACTIONS(215), - [sym__block_ampersand] = ACTIONS(267), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [776] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5500), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(776), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4464), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__unary_star] = ACTIONS(923), - [sym__unary_double_star] = ACTIONS(925), - [sym__block_ampersand] = ACTIONS(941), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [777] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5152), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), - [sym_heredoc_body] = STATE(777), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5153), - [sym_double_splat] = STATE(5153), - [sym_named_expr] = STATE(5153), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_block_argument] = STATE(6085), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__unary_star] = ACTIONS(743), - [sym__unary_double_star] = ACTIONS(745), - [sym__block_ampersand] = ACTIONS(1135), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [778] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5500), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(778), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(3599), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__unary_star] = ACTIONS(923), - [sym__unary_double_star] = ACTIONS(925), - [sym__block_ampersand] = ACTIONS(927), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [779] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6652), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(779), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [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), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3396), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [sym_implicit_object_method_identifier] = ACTIONS(3262), - [sym_implicit_object_method_operator] = ACTIONS(3262), - [sym_implicit_object_ivar] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [780] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5500), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(780), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(3784), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__unary_star] = ACTIONS(923), - [sym__unary_double_star] = ACTIONS(925), - [sym__block_ampersand] = ACTIONS(927), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [781] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5500), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(781), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(3790), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__unary_star] = ACTIONS(923), - [sym__unary_double_star] = ACTIONS(925), - [sym__block_ampersand] = ACTIONS(927), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [782] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5170), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), - [sym_heredoc_body] = STATE(782), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5171), - [sym_double_splat] = STATE(5171), - [sym_named_expr] = STATE(5171), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_block_argument] = STATE(5760), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__unary_star] = ACTIONS(743), - [sym__unary_double_star] = ACTIONS(745), - [sym__block_ampersand] = ACTIONS(1135), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [783] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5141), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(783), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5145), - [sym_double_splat] = STATE(5145), - [sym_named_expr] = STATE(5145), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4415), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__unary_star] = ACTIONS(923), - [sym__unary_double_star] = ACTIONS(925), - [sym__block_ampersand] = ACTIONS(941), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [784] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4370), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(784), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4536), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(643), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [785] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2814), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2471), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2795), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(785), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_splat] = STATE(2816), - [sym_double_splat] = STATE(2816), - [sym_named_expr] = STATE(2816), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_block_argument] = STATE(2941), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(1207), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_splat] = STATE(2866), + [sym_double_splat] = STATE(2866), + [sym_named_expr] = STATE(2866), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_block_argument] = STATE(2985), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(1223), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -158916,248 +158638,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(1221), + [sym__constant_segment] = ACTIONS(1237), [anon_sym_COLON_COLON] = ACTIONS(85), [anon_sym___LINE__] = ACTIONS(87), [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1223), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(1239), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(1235), - [sym__unary_double_star] = ACTIONS(1237), - [sym__block_ampersand] = ACTIONS(255), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__unary_star] = ACTIONS(1251), + [sym__unary_double_star] = ACTIONS(1253), + [sym__block_ampersand] = ACTIONS(223), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [786] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5170), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), - [sym_heredoc_body] = STATE(786), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5171), - [sym_double_splat] = STATE(5171), - [sym_named_expr] = STATE(5171), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_block_argument] = STATE(6116), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__unary_star] = ACTIONS(743), - [sym__unary_double_star] = ACTIONS(745), - [sym__block_ampersand] = ACTIONS(1135), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [770] = { + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5242), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), + [sym_heredoc_body] = STATE(770), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5243), + [sym_double_splat] = STATE(5243), + [sym_named_expr] = STATE(5243), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_block_argument] = STATE(6014), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__unary_star] = ACTIONS(757), + [sym__unary_double_star] = ACTIONS(759), + [sym__block_ampersand] = ACTIONS(1151), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, - [787] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3016), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2471), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2795), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(787), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_splat] = STATE(3017), - [sym_double_splat] = STATE(3017), - [sym_named_expr] = STATE(3017), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_block_argument] = STATE(3018), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(1207), + [771] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3127), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2461), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(2845), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(771), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_splat] = STATE(3128), + [sym_double_splat] = STATE(3128), + [sym_named_expr] = STATE(3128), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_block_argument] = STATE(3129), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(1223), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -159170,248 +158896,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(1221), + [sym__constant_segment] = ACTIONS(1237), [anon_sym_COLON_COLON] = ACTIONS(85), [anon_sym___LINE__] = ACTIONS(87), [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1223), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(1239), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(1235), - [sym__unary_double_star] = ACTIONS(1237), - [sym__block_ampersand] = ACTIONS(255), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__unary_star] = ACTIONS(1251), + [sym__unary_double_star] = ACTIONS(1253), + [sym__block_ampersand] = ACTIONS(223), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [788] = { - [sym_heredoc_body] = STATE(788), - [sym_identifier] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3238), - [anon_sym_RPAREN] = ACTIONS(3236), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3236), - [sym_operator_symbol] = ACTIONS(3236), - [sym_unquoted_symbol] = ACTIONS(3236), - [anon_sym_COLON_DQUOTE] = ACTIONS(3236), - [anon_sym_BQUOTE] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_COMMA] = ACTIONS(3236), - [anon_sym_RBRACK] = ACTIONS(3236), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_DASH_GT] = ACTIONS(3236), - [anon_sym_end] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3238), - [anon_sym_GT_GT] = ACTIONS(3238), - [anon_sym_LT_LT] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ_GT] = ACTIONS(3236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG_TILDE] = ACTIONS(3236), - [anon_sym_EQ_TILDE] = ACTIONS(3236), - [anon_sym_AMP_STAR] = ACTIONS(3238), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3236), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym_instance_sizeof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [sym__constant_segment] = ACTIONS(3236), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym___LINE__] = ACTIONS(3238), - [anon_sym___END_LINE__] = ACTIONS(3238), - [anon_sym___FILE__] = ACTIONS(3238), - [anon_sym___DIR__] = ACTIONS(3238), - [sym_special_variable] = ACTIONS(3236), - [sym_identifier_method_call] = ACTIONS(3236), - [sym_instance_var] = ACTIONS(3236), - [sym_class_var] = ACTIONS(3236), - [sym_self] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_AMP_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_AMP_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_EQ] = ACTIONS(3242), - [anon_sym_CARET_EQ] = ACTIONS(3242), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3242), - [anon_sym_LT_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_GT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_AMP_EQ] = ACTIONS(3242), - [anon_sym_COLON2] = ACTIONS(3238), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_begin] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_until] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3236), - [sym__start_of_hash_or_tuple] = ACTIONS(3236), - [sym__start_of_named_tuple] = ACTIONS(3236), - [sym__start_of_index_operator] = ACTIONS(3236), - [sym_unary_plus] = ACTIONS(3236), - [sym_unary_minus] = ACTIONS(3236), - [sym_binary_plus] = ACTIONS(3236), - [sym_binary_minus] = ACTIONS(3236), - [sym_unary_wrapping_plus] = ACTIONS(3236), - [sym_unary_wrapping_minus] = ACTIONS(3236), - [sym_binary_wrapping_plus] = ACTIONS(3236), - [sym_binary_wrapping_minus] = ACTIONS(3236), - [sym__unary_star] = ACTIONS(3236), - [sym__binary_star] = ACTIONS(3236), - [sym__unary_double_star] = ACTIONS(3236), - [sym__binary_double_star] = ACTIONS(3236), - [sym__block_ampersand] = ACTIONS(3236), - [sym_binary_ampersand] = ACTIONS(3236), - [sym__beginless_range_operator] = ACTIONS(3236), - [sym__regex_start] = ACTIONS(3236), - [sym__binary_slash] = ACTIONS(3236), - [sym__binary_double_slash] = ACTIONS(3236), - [sym__regular_if_keyword] = ACTIONS(3236), - [sym__regular_unless_keyword] = ACTIONS(3236), - [sym__modulo_operator] = ACTIONS(3236), - [sym__string_literal_start] = ACTIONS(3236), - [sym__string_percent_literal_start] = ACTIONS(3236), - [sym__command_percent_literal_start] = ACTIONS(3236), - [sym__string_array_percent_literal_start] = ACTIONS(3236), - [sym__symbol_array_percent_literal_start] = ACTIONS(3236), - [sym__regex_percent_literal_start] = ACTIONS(3236), - [sym_heredoc_start] = ACTIONS(3236), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3236), + [772] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6932), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5370), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6458), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(772), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_splat] = STATE(6779), + [sym_double_splat] = STATE(6779), + [sym_named_expr] = STATE(6779), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_block_argument] = STATE(6674), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(2708), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(2714), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__unary_star] = ACTIONS(2738), + [sym__unary_double_star] = ACTIONS(2740), + [sym__block_ampersand] = ACTIONS(1161), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), }, - [789] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3016), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2471), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2795), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(789), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_splat] = STATE(3017), - [sym_double_splat] = STATE(3017), - [sym_named_expr] = STATE(3017), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_block_argument] = STATE(3037), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(1207), + [773] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3127), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2461), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(2845), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(773), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_splat] = STATE(3128), + [sym_double_splat] = STATE(3128), + [sym_named_expr] = STATE(3128), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_block_argument] = STATE(2916), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(1223), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -159424,121 +159154,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(1221), + [sym__constant_segment] = ACTIONS(1237), [anon_sym_COLON_COLON] = ACTIONS(85), [anon_sym___LINE__] = ACTIONS(87), [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1223), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(1239), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(1235), - [sym__unary_double_star] = ACTIONS(1237), - [sym__block_ampersand] = ACTIONS(267), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__unary_star] = ACTIONS(1251), + [sym__unary_double_star] = ACTIONS(1253), + [sym__block_ampersand] = ACTIONS(223), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [790] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3016), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2471), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2795), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(790), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_splat] = STATE(3017), - [sym_double_splat] = STATE(3017), - [sym_named_expr] = STATE(3017), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_block_argument] = STATE(2946), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(1207), + [774] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3127), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2461), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(2845), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(774), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_splat] = STATE(3128), + [sym_double_splat] = STATE(3128), + [sym_named_expr] = STATE(3128), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_block_argument] = STATE(3025), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(1223), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -159551,9773 +159283,11346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(1221), + [sym__constant_segment] = ACTIONS(1237), [anon_sym_COLON_COLON] = ACTIONS(85), [anon_sym___LINE__] = ACTIONS(87), [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1223), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(1239), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(1235), - [sym__unary_double_star] = ACTIONS(1237), - [sym__block_ampersand] = ACTIONS(255), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__unary_star] = ACTIONS(1251), + [sym__unary_double_star] = ACTIONS(1253), + [sym__block_ampersand] = ACTIONS(223), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, + [775] = { + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5521), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), + [sym_heredoc_body] = STATE(775), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5522), + [sym_double_splat] = STATE(5522), + [sym_named_expr] = STATE(5522), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_block_argument] = STATE(5536), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__unary_star] = ACTIONS(931), + [sym__unary_double_star] = ACTIONS(933), + [sym__block_ampersand] = ACTIONS(971), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [776] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6932), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5370), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6458), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(776), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_splat] = STATE(6779), + [sym_double_splat] = STATE(6779), + [sym_named_expr] = STATE(6779), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_block_argument] = STATE(6762), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(2708), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(2714), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__unary_star] = ACTIONS(2738), + [sym__unary_double_star] = ACTIONS(2740), + [sym__block_ampersand] = ACTIONS(1161), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [777] = { + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6536), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), + [sym_heredoc_body] = STATE(777), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_RBRACK] = ACTIONS(3427), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_RBRACK_QMARK] = ACTIONS(3429), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [778] = { + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2480), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), + [sym_heredoc_body] = STATE(778), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2481), + [sym_double_splat] = STATE(2481), + [sym_named_expr] = STATE(2481), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_block_argument] = STATE(2985), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__unary_star] = ACTIONS(219), + [sym__unary_double_star] = ACTIONS(221), + [sym__block_ampersand] = ACTIONS(223), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [779] = { + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5521), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), + [sym_heredoc_body] = STATE(779), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5522), + [sym_double_splat] = STATE(5522), + [sym_named_expr] = STATE(5522), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_block_argument] = STATE(5548), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__unary_star] = ACTIONS(931), + [sym__unary_double_star] = ACTIONS(933), + [sym__block_ampersand] = ACTIONS(971), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [780] = { + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2549), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), + [sym_heredoc_body] = STATE(780), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2597), + [sym_double_splat] = STATE(2597), + [sym_named_expr] = STATE(2597), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_block_argument] = STATE(3129), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__unary_star] = ACTIONS(219), + [sym__unary_double_star] = ACTIONS(221), + [sym__block_ampersand] = ACTIONS(223), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [781] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5504), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(781), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5482), + [sym_double_splat] = STATE(5482), + [sym_named_expr] = STATE(5482), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(3710), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__unary_star] = ACTIONS(1125), + [sym__unary_double_star] = ACTIONS(1127), + [sym__block_ampersand] = ACTIONS(1141), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [782] = { + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2549), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), + [sym_heredoc_body] = STATE(782), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2597), + [sym_double_splat] = STATE(2597), + [sym_named_expr] = STATE(2597), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_block_argument] = STATE(2916), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__unary_star] = ACTIONS(219), + [sym__unary_double_star] = ACTIONS(221), + [sym__block_ampersand] = ACTIONS(223), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [783] = { + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2549), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), + [sym_heredoc_body] = STATE(783), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2597), + [sym_double_splat] = STATE(2597), + [sym_named_expr] = STATE(2597), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_block_argument] = STATE(3025), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__unary_star] = ACTIONS(219), + [sym__unary_double_star] = ACTIONS(221), + [sym__block_ampersand] = ACTIONS(223), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [784] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6036), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(784), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(3740), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__unary_star] = ACTIONS(1125), + [sym__unary_double_star] = ACTIONS(1127), + [sym__block_ampersand] = ACTIONS(1141), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [785] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6477), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5078), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(5830), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(785), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(6478), + [sym_double_splat] = STATE(6478), + [sym_named_expr] = STATE(6478), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4358), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2254), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2256), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__unary_star] = ACTIONS(2264), + [sym__unary_double_star] = ACTIONS(2266), + [sym__block_ampersand] = ACTIONS(1181), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [786] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6036), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(786), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(3770), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__unary_star] = ACTIONS(1125), + [sym__unary_double_star] = ACTIONS(1127), + [sym__block_ampersand] = ACTIONS(1141), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [787] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6463), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5078), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(5830), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(787), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4360), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2254), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2256), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__unary_star] = ACTIONS(2264), + [sym__unary_double_star] = ACTIONS(2266), + [sym__block_ampersand] = ACTIONS(1181), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [788] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6036), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(788), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(3793), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__unary_star] = ACTIONS(1125), + [sym__unary_double_star] = ACTIONS(1127), + [sym__block_ampersand] = ACTIONS(1141), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [789] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6463), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5078), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(5830), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(789), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4387), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2254), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2256), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__unary_star] = ACTIONS(2264), + [sym__unary_double_star] = ACTIONS(2266), + [sym__block_ampersand] = ACTIONS(1181), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [790] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6463), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5078), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(5830), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(790), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4566), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2254), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2256), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__unary_star] = ACTIONS(2264), + [sym__unary_double_star] = ACTIONS(2266), + [sym__block_ampersand] = ACTIONS(1181), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, [791] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3016), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2471), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2795), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3337), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(791), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_splat] = STATE(3017), - [sym_double_splat] = STATE(3017), - [sym_named_expr] = STATE(3017), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_block_argument] = STATE(3037), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(1207), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(1221), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1223), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(1235), - [sym__unary_double_star] = ACTIONS(1237), - [sym__block_ampersand] = ACTIONS(255), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3462), + [sym_double_splat] = STATE(3462), + [sym_named_expr] = STATE(3462), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_block_argument] = STATE(4040), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__unary_star] = ACTIONS(353), + [sym__unary_double_star] = ACTIONS(355), + [sym__block_ampersand] = ACTIONS(405), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [792] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6652), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5207), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(792), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [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), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3398), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [sym_implicit_object_method_identifier] = ACTIONS(3262), - [sym_implicit_object_method_operator] = ACTIONS(3262), - [sym_implicit_object_ivar] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5208), + [sym_double_splat] = STATE(5208), + [sym_named_expr] = STATE(5208), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(3710), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__unary_star] = ACTIONS(829), + [sym__unary_double_star] = ACTIONS(831), + [sym__block_ampersand] = ACTIONS(833), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [793] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2503), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4292), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(2995), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3606), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(793), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2504), - [sym_double_splat] = STATE(2504), - [sym_named_expr] = STATE(2504), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_block_argument] = STATE(2941), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__unary_star] = ACTIONS(213), - [sym__unary_double_star] = ACTIONS(215), - [sym__block_ampersand] = ACTIONS(255), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_splat] = STATE(3894), + [sym_double_splat] = STATE(3894), + [sym_named_expr] = STATE(3894), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_block_argument] = STATE(4104), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1319), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__unary_star] = ACTIONS(1343), + [sym__unary_double_star] = ACTIONS(1345), + [sym__block_ampersand] = ACTIONS(405), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [794] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6456), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5221), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6448), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5470), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(794), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_splat] = STATE(6390), - [sym_double_splat] = STATE(6390), - [sym_named_expr] = STATE(6390), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_block_argument] = STATE(6674), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(2623), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(2667), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__unary_star] = ACTIONS(2689), - [sym__unary_double_star] = ACTIONS(2691), - [sym__block_ampersand] = ACTIONS(1165), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4360), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__unary_star] = ACTIONS(829), + [sym__unary_double_star] = ACTIONS(831), + [sym__block_ampersand] = ACTIONS(1181), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [795] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2571), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5260), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(795), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2583), - [sym_double_splat] = STATE(2583), - [sym_named_expr] = STATE(2583), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_block_argument] = STATE(3018), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__unary_star] = ACTIONS(213), - [sym__unary_double_star] = ACTIONS(215), - [sym__block_ampersand] = ACTIONS(255), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5261), + [sym_double_splat] = STATE(5261), + [sym_named_expr] = STATE(5261), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_block_argument] = STATE(6160), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__unary_star] = ACTIONS(757), + [sym__unary_double_star] = ACTIONS(759), + [sym__block_ampersand] = ACTIONS(1151), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [796] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5865), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5470), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(796), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_implicit_object_index_operator] = STATE(9412), - [sym_implicit_object_call] = STATE(9365), - [sym_implicit_object_tuple] = STATE(9365), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_DOT] = ACTIONS(3382), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [sym_implicit_object_method_identifier] = ACTIONS(3384), - [sym_implicit_object_method_operator] = ACTIONS(3384), - [sym_implicit_object_ivar] = ACTIONS(3386), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3388), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4387), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__unary_star] = ACTIONS(829), + [sym__unary_double_star] = ACTIONS(831), + [sym__block_ampersand] = ACTIONS(1181), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [797] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2571), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5470), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(797), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2583), - [sym_double_splat] = STATE(2583), - [sym_named_expr] = STATE(2583), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_block_argument] = STATE(2946), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__unary_star] = ACTIONS(213), - [sym__unary_double_star] = ACTIONS(215), - [sym__block_ampersand] = ACTIONS(255), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4566), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__unary_star] = ACTIONS(829), + [sym__unary_double_star] = ACTIONS(831), + [sym__block_ampersand] = ACTIONS(1181), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [798] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2571), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3337), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(798), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2583), - [sym_double_splat] = STATE(2583), - [sym_named_expr] = STATE(2583), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_block_argument] = STATE(3037), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__unary_star] = ACTIONS(213), - [sym__unary_double_star] = ACTIONS(215), - [sym__block_ampersand] = ACTIONS(255), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3462), + [sym_double_splat] = STATE(3462), + [sym_named_expr] = STATE(3462), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_block_argument] = STATE(4074), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__unary_star] = ACTIONS(353), + [sym__unary_double_star] = ACTIONS(355), + [sym__block_ampersand] = ACTIONS(405), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [799] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5170), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5668), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(4914), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(5648), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(799), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5171), - [sym_double_splat] = STATE(5171), - [sym_named_expr] = STATE(5171), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_block_argument] = STATE(5902), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__unary_star] = ACTIONS(743), - [sym__unary_double_star] = ACTIONS(745), - [sym__block_ampersand] = ACTIONS(1135), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_splat] = STATE(5669), + [sym_double_splat] = STATE(5669), + [sym_named_expr] = STATE(5669), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_block_argument] = STATE(6014), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(2131), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(2137), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__unary_star] = ACTIONS(2161), + [sym__unary_double_star] = ACTIONS(2163), + [sym__block_ampersand] = ACTIONS(761), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [800] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6586), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5092), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(5829), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6067), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(4914), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(5648), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(800), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(6587), - [sym_double_splat] = STATE(6587), - [sym_named_expr] = STATE(6587), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4415), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2338), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2340), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__unary_star] = ACTIONS(2348), - [sym__unary_double_star] = ACTIONS(2350), - [sym__block_ampersand] = ACTIONS(1155), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_splat] = STATE(6068), + [sym_double_splat] = STATE(6068), + [sym_named_expr] = STATE(6068), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_block_argument] = STATE(6160), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(2131), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(2137), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__unary_star] = ACTIONS(2161), + [sym__unary_double_star] = ACTIONS(2163), + [sym__block_ampersand] = ACTIONS(761), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [801] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6819), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5221), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6448), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5260), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(801), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_splat] = STATE(6644), - [sym_double_splat] = STATE(6644), - [sym_named_expr] = STATE(6644), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_block_argument] = STATE(6796), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(2623), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(2667), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__unary_star] = ACTIONS(2689), - [sym__unary_double_star] = ACTIONS(2691), - [sym__block_ampersand] = ACTIONS(1165), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5261), + [sym_double_splat] = STATE(5261), + [sym_named_expr] = STATE(5261), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_block_argument] = STATE(6222), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__unary_star] = ACTIONS(757), + [sym__unary_double_star] = ACTIONS(759), + [sym__block_ampersand] = ACTIONS(1151), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [802] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6578), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5092), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(5829), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6067), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(4914), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(5648), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(802), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4464), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2338), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2340), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__unary_star] = ACTIONS(2348), - [sym__unary_double_star] = ACTIONS(2350), - [sym__block_ampersand] = ACTIONS(1155), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_splat] = STATE(6068), + [sym_double_splat] = STATE(6068), + [sym_named_expr] = STATE(6068), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_block_argument] = STATE(6222), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(2131), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(2137), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__unary_star] = ACTIONS(2161), + [sym__unary_double_star] = ACTIONS(2163), + [sym__block_ampersand] = ACTIONS(761), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [803] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6578), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5092), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(5829), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6067), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(4914), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(5648), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(803), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4496), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2338), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2340), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__unary_star] = ACTIONS(2348), - [sym__unary_double_star] = ACTIONS(2350), - [sym__block_ampersand] = ACTIONS(1155), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_splat] = STATE(6068), + [sym_double_splat] = STATE(6068), + [sym_named_expr] = STATE(6068), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_block_argument] = STATE(5883), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(2131), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(2137), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__unary_star] = ACTIONS(2161), + [sym__unary_double_star] = ACTIONS(2163), + [sym__block_ampersand] = ACTIONS(761), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [804] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6578), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5092), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(5829), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5055), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(804), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4536), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2338), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2340), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__unary_star] = ACTIONS(2348), - [sym__unary_double_star] = ACTIONS(2350), - [sym__block_ampersand] = ACTIONS(1155), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5056), + [sym_double_splat] = STATE(5056), + [sym_named_expr] = STATE(5056), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_block_argument] = STATE(6014), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__unary_star] = ACTIONS(757), + [sym__unary_double_star] = ACTIONS(759), + [sym__block_ampersand] = ACTIONS(761), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [805] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6073), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5092), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(5829), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5652), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(805), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(6083), - [sym_double_splat] = STATE(6083), - [sym_named_expr] = STATE(6083), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4415), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2338), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2340), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__unary_star] = ACTIONS(2348), - [sym__unary_double_star] = ACTIONS(2350), - [sym__block_ampersand] = ACTIONS(941), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5702), + [sym_double_splat] = STATE(5702), + [sym_named_expr] = STATE(5702), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_block_argument] = STATE(6870), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__unary_star] = ACTIONS(1055), + [sym__unary_double_star] = ACTIONS(1057), + [sym__block_ampersand] = ACTIONS(1161), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [806] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6299), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5260), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(806), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_RBRACK] = ACTIONS(3402), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_RBRACK_QMARK] = ACTIONS(3404), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5261), + [sym_double_splat] = STATE(5261), + [sym_named_expr] = STATE(5261), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_block_argument] = STATE(6160), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__unary_star] = ACTIONS(757), + [sym__unary_double_star] = ACTIONS(759), + [sym__block_ampersand] = ACTIONS(761), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [807] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5700), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5260), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(807), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5701), - [sym_double_splat] = STATE(5701), - [sym_named_expr] = STATE(5701), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4415), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__unary_star] = ACTIONS(923), - [sym__unary_double_star] = ACTIONS(925), - [sym__block_ampersand] = ACTIONS(1155), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5261), + [sym_double_splat] = STATE(5261), + [sym_named_expr] = STATE(5261), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_block_argument] = STATE(6222), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__unary_star] = ACTIONS(757), + [sym__unary_double_star] = ACTIONS(759), + [sym__block_ampersand] = ACTIONS(761), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [808] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6819), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5221), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6448), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5260), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(808), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_splat] = STATE(6644), - [sym_double_splat] = STATE(6644), - [sym_named_expr] = STATE(6644), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_block_argument] = STATE(6695), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(2623), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(2667), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__unary_star] = ACTIONS(2689), - [sym__unary_double_star] = ACTIONS(2691), - [sym__block_ampersand] = ACTIONS(1165), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5261), + [sym_double_splat] = STATE(5261), + [sym_named_expr] = STATE(5261), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_block_argument] = STATE(5883), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__unary_star] = ACTIONS(757), + [sym__unary_double_star] = ACTIONS(759), + [sym__block_ampersand] = ACTIONS(761), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [809] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5500), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5260), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(809), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4464), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__unary_star] = ACTIONS(923), - [sym__unary_double_star] = ACTIONS(925), - [sym__block_ampersand] = ACTIONS(1155), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5261), + [sym_double_splat] = STATE(5261), + [sym_named_expr] = STATE(5261), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_block_argument] = STATE(5433), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__unary_star] = ACTIONS(757), + [sym__unary_double_star] = ACTIONS(759), + [sym__block_ampersand] = ACTIONS(797), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [810] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6819), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5221), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6448), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3337), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(810), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_splat] = STATE(6644), - [sym_double_splat] = STATE(6644), - [sym_named_expr] = STATE(6644), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_block_argument] = STATE(6736), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(2623), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(2667), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__unary_star] = ACTIONS(2689), - [sym__unary_double_star] = ACTIONS(2691), - [sym__block_ampersand] = ACTIONS(1165), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3462), + [sym_double_splat] = STATE(3462), + [sym_named_expr] = STATE(3462), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_block_argument] = STATE(4104), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__unary_star] = ACTIONS(353), + [sym__unary_double_star] = ACTIONS(355), + [sym__block_ampersand] = ACTIONS(405), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [811] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5500), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4992), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(811), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4496), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__unary_star] = ACTIONS(923), - [sym__unary_double_star] = ACTIONS(925), - [sym__block_ampersand] = ACTIONS(1155), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(5024), + [sym_double_splat] = STATE(5024), + [sym_named_expr] = STATE(5024), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4358), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [812] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5500), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5260), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(812), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4536), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__unary_star] = ACTIONS(923), - [sym__unary_double_star] = ACTIONS(925), - [sym__block_ampersand] = ACTIONS(1155), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5261), + [sym_double_splat] = STATE(5261), + [sym_named_expr] = STATE(5261), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_block_argument] = STATE(5883), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__unary_star] = ACTIONS(757), + [sym__unary_double_star] = ACTIONS(759), + [sym__block_ampersand] = ACTIONS(1151), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [813] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5707), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5002), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(5733), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4996), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(813), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_splat] = STATE(5708), - [sym_double_splat] = STATE(5708), - [sym_named_expr] = STATE(5708), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_block_argument] = STATE(6085), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(2120), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__unary_star] = ACTIONS(2142), - [sym__unary_double_star] = ACTIONS(2144), - [sym__block_ampersand] = ACTIONS(785), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4360), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [814] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5910), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5002), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(5733), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4996), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(814), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_splat] = STATE(5915), - [sym_double_splat] = STATE(5915), - [sym_named_expr] = STATE(5915), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_block_argument] = STATE(5760), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(2120), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__unary_star] = ACTIONS(2142), - [sym__unary_double_star] = ACTIONS(2144), - [sym__block_ampersand] = ACTIONS(785), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4387), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [815] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5910), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5002), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(5733), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4996), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(815), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_splat] = STATE(5915), - [sym_double_splat] = STATE(5915), - [sym_named_expr] = STATE(5915), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_block_argument] = STATE(6116), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(2120), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__unary_star] = ACTIONS(2142), - [sym__unary_double_star] = ACTIONS(2144), - [sym__block_ampersand] = ACTIONS(785), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4566), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [816] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5910), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5002), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(5733), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4475), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(816), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_splat] = STATE(5915), - [sym_double_splat] = STATE(5915), - [sym_named_expr] = STATE(5915), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_block_argument] = STATE(5902), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(2120), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__unary_star] = ACTIONS(2142), - [sym__unary_double_star] = ACTIONS(2144), - [sym__block_ampersand] = ACTIONS(785), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(4476), + [sym_double_splat] = STATE(4476), + [sym_named_expr] = STATE(4476), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4358), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [817] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5073), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4496), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(817), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5074), - [sym_double_splat] = STATE(5074), - [sym_named_expr] = STATE(5074), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_block_argument] = STATE(6085), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__unary_star] = ACTIONS(743), - [sym__unary_double_star] = ACTIONS(745), - [sym__block_ampersand] = ACTIONS(785), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4360), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [818] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5170), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4496), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(818), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5171), - [sym_double_splat] = STATE(5171), - [sym_named_expr] = STATE(5171), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_block_argument] = STATE(5760), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__unary_star] = ACTIONS(743), - [sym__unary_double_star] = ACTIONS(745), - [sym__block_ampersand] = ACTIONS(785), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4387), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [819] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5170), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4496), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(819), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5171), - [sym_double_splat] = STATE(5171), - [sym_named_expr] = STATE(5171), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_block_argument] = STATE(6116), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__unary_star] = ACTIONS(743), - [sym__unary_double_star] = ACTIONS(745), - [sym__block_ampersand] = ACTIONS(785), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4566), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(673), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [820] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5170), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6527), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5370), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6458), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(820), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5171), - [sym_double_splat] = STATE(5171), - [sym_named_expr] = STATE(5171), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_block_argument] = STATE(5902), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__unary_star] = ACTIONS(743), - [sym__unary_double_star] = ACTIONS(745), - [sym__block_ampersand] = ACTIONS(785), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_splat] = STATE(6521), + [sym_double_splat] = STATE(6521), + [sym_named_expr] = STATE(6521), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_block_argument] = STATE(6870), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(2708), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(2714), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__unary_star] = ACTIONS(2738), + [sym__unary_double_star] = ACTIONS(2740), + [sym__block_ampersand] = ACTIONS(1059), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [821] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4989), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(821), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4959), - [sym_double_splat] = STATE(4959), - [sym_named_expr] = STATE(4959), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4415), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(663), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_implicit_object_index_operator] = STATE(9839), + [sym_implicit_object_call] = STATE(9998), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3431), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [sym_implicit_object_method_identifier] = ACTIONS(3339), + [sym_implicit_object_method_operator] = ACTIONS(3339), + [sym_implicit_object_ivar] = ACTIONS(3341), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [822] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5647), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6932), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5370), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6458), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(822), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5635), - [sym_double_splat] = STATE(5635), - [sym_named_expr] = STATE(5635), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_block_argument] = STATE(6674), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__unary_star] = ACTIONS(1039), - [sym__unary_double_star] = ACTIONS(1041), - [sym__block_ampersand] = ACTIONS(1165), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_splat] = STATE(6779), + [sym_double_splat] = STATE(6779), + [sym_named_expr] = STATE(6779), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_block_argument] = STATE(6752), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(2708), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(2714), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__unary_star] = ACTIONS(2738), + [sym__unary_double_star] = ACTIONS(2740), + [sym__block_ampersand] = ACTIONS(1059), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [823] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4891), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6932), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5370), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6458), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(823), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4464), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(663), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_splat] = STATE(6779), + [sym_double_splat] = STATE(6779), + [sym_named_expr] = STATE(6779), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_block_argument] = STATE(6674), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(2708), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(2714), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__unary_star] = ACTIONS(2738), + [sym__unary_double_star] = ACTIONS(2740), + [sym__block_ampersand] = ACTIONS(1059), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [824] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6578), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5092), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(5829), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6932), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5370), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6458), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(824), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4464), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2338), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2340), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__unary_star] = ACTIONS(2348), - [sym__unary_double_star] = ACTIONS(2350), - [sym__block_ampersand] = ACTIONS(941), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_splat] = STATE(6779), + [sym_double_splat] = STATE(6779), + [sym_named_expr] = STATE(6779), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_block_argument] = STATE(6762), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(2708), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(2714), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__unary_star] = ACTIONS(2738), + [sym__unary_double_star] = ACTIONS(2740), + [sym__block_ampersand] = ACTIONS(1059), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [825] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4891), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5683), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(825), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4496), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(663), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(5679), + [sym_double_splat] = STATE(5679), + [sym_named_expr] = STATE(5679), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_block_argument] = STATE(6870), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__unary_star] = ACTIONS(1055), + [sym__unary_double_star] = ACTIONS(1057), + [sym__block_ampersand] = ACTIONS(1059), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [826] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4891), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(6016), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(826), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4536), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__block_ampersand] = ACTIONS(663), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(6253), + [sym_double_splat] = STATE(6253), + [sym_named_expr] = STATE(6253), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_block_argument] = STATE(6752), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__unary_star] = ACTIONS(1055), + [sym__unary_double_star] = ACTIONS(1057), + [sym__block_ampersand] = ACTIONS(1059), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [827] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4531), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(6016), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(827), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(4532), - [sym_double_splat] = STATE(4532), - [sym_named_expr] = STATE(4532), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4415), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(663), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(6253), + [sym_double_splat] = STATE(6253), + [sym_named_expr] = STATE(6253), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_block_argument] = STATE(6674), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__unary_star] = ACTIONS(1055), + [sym__unary_double_star] = ACTIONS(1057), + [sym__block_ampersand] = ACTIONS(1059), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [828] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4370), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(6016), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(828), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4464), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(663), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(6253), + [sym_double_splat] = STATE(6253), + [sym_named_expr] = STATE(6253), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_block_argument] = STATE(6762), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__unary_star] = ACTIONS(1055), + [sym__unary_double_star] = ACTIONS(1057), + [sym__block_ampersand] = ACTIONS(1059), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [829] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4370), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(3835), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(2995), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3606), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(829), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4496), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(663), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_splat] = STATE(3831), + [sym_double_splat] = STATE(3831), + [sym_named_expr] = STATE(3831), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_block_argument] = STATE(4005), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1319), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__unary_star] = ACTIONS(1343), + [sym__unary_double_star] = ACTIONS(1345), + [sym__block_ampersand] = ACTIONS(395), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [830] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4370), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4292), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(2995), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3606), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(830), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4536), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(663), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_splat] = STATE(3894), + [sym_double_splat] = STATE(3894), + [sym_named_expr] = STATE(3894), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_block_argument] = STATE(4040), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1319), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__unary_star] = ACTIONS(1343), + [sym__unary_double_star] = ACTIONS(1345), + [sym__block_ampersand] = ACTIONS(395), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [831] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6601), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5221), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6448), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4292), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(2995), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3606), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(831), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_splat] = STATE(6597), - [sym_double_splat] = STATE(6597), - [sym_named_expr] = STATE(6597), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_block_argument] = STATE(6674), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(2623), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(2667), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__unary_star] = ACTIONS(2689), - [sym__unary_double_star] = ACTIONS(2691), - [sym__block_ampersand] = ACTIONS(1043), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_splat] = STATE(3894), + [sym_double_splat] = STATE(3894), + [sym_named_expr] = STATE(3894), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_block_argument] = STATE(4074), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1319), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__unary_star] = ACTIONS(1343), + [sym__unary_double_star] = ACTIONS(1345), + [sym__block_ampersand] = ACTIONS(395), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [832] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6819), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5221), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6448), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4292), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(2995), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3606), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(832), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_splat] = STATE(6644), - [sym_double_splat] = STATE(6644), - [sym_named_expr] = STATE(6644), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_block_argument] = STATE(6796), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(2623), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(2667), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__unary_star] = ACTIONS(2689), - [sym__unary_double_star] = ACTIONS(2691), - [sym__block_ampersand] = ACTIONS(1043), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_splat] = STATE(3894), + [sym_double_splat] = STATE(3894), + [sym_named_expr] = STATE(3894), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_block_argument] = STATE(4104), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1319), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__unary_star] = ACTIONS(1343), + [sym__unary_double_star] = ACTIONS(1345), + [sym__block_ampersand] = ACTIONS(395), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [833] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6819), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5221), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6448), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5260), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(833), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_splat] = STATE(6644), - [sym_double_splat] = STATE(6644), - [sym_named_expr] = STATE(6644), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_block_argument] = STATE(6695), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(2623), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(2667), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__unary_star] = ACTIONS(2689), - [sym__unary_double_star] = ACTIONS(2691), - [sym__block_ampersand] = ACTIONS(1043), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5261), + [sym_double_splat] = STATE(5261), + [sym_named_expr] = STATE(5261), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_block_argument] = STATE(5237), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__unary_star] = ACTIONS(757), + [sym__unary_double_star] = ACTIONS(759), + [sym__block_ampersand] = ACTIONS(797), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [834] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6819), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5221), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6448), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3314), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(834), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_splat] = STATE(6644), - [sym_double_splat] = STATE(6644), - [sym_named_expr] = STATE(6644), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_block_argument] = STATE(6736), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(2623), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(2667), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__unary_star] = ACTIONS(2689), - [sym__unary_double_star] = ACTIONS(2691), - [sym__block_ampersand] = ACTIONS(1043), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3310), + [sym_double_splat] = STATE(3310), + [sym_named_expr] = STATE(3310), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_block_argument] = STATE(4005), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__unary_star] = ACTIONS(353), + [sym__unary_double_star] = ACTIONS(355), + [sym__block_ampersand] = ACTIONS(395), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [835] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5726), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3337), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(835), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(5722), - [sym_double_splat] = STATE(5722), - [sym_named_expr] = STATE(5722), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_block_argument] = STATE(6674), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__unary_star] = ACTIONS(1039), - [sym__unary_double_star] = ACTIONS(1041), - [sym__block_ampersand] = ACTIONS(1043), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3462), + [sym_double_splat] = STATE(3462), + [sym_named_expr] = STATE(3462), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_block_argument] = STATE(4040), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__unary_star] = ACTIONS(353), + [sym__unary_double_star] = ACTIONS(355), + [sym__block_ampersand] = ACTIONS(395), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [836] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6020), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5260), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(836), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(6097), - [sym_double_splat] = STATE(6097), - [sym_named_expr] = STATE(6097), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_block_argument] = STATE(6796), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__unary_star] = ACTIONS(1039), - [sym__unary_double_star] = ACTIONS(1041), - [sym__block_ampersand] = ACTIONS(1043), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5261), + [sym_double_splat] = STATE(5261), + [sym_named_expr] = STATE(5261), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_block_argument] = STATE(5232), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__unary_star] = ACTIONS(757), + [sym__unary_double_star] = ACTIONS(759), + [sym__block_ampersand] = ACTIONS(797), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [837] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6020), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3337), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(837), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(6097), - [sym_double_splat] = STATE(6097), - [sym_named_expr] = STATE(6097), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_block_argument] = STATE(6695), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__unary_star] = ACTIONS(1039), - [sym__unary_double_star] = ACTIONS(1041), - [sym__block_ampersand] = ACTIONS(1043), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3462), + [sym_double_splat] = STATE(3462), + [sym_named_expr] = STATE(3462), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_block_argument] = STATE(4074), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__unary_star] = ACTIONS(353), + [sym__unary_double_star] = ACTIONS(355), + [sym__block_ampersand] = ACTIONS(395), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [838] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6020), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3337), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(838), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(6097), - [sym_double_splat] = STATE(6097), - [sym_named_expr] = STATE(6097), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_block_argument] = STATE(6736), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__unary_star] = ACTIONS(1039), - [sym__unary_double_star] = ACTIONS(1041), - [sym__block_ampersand] = ACTIONS(1043), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3462), + [sym_double_splat] = STATE(3462), + [sym_named_expr] = STATE(3462), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_block_argument] = STATE(4104), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__unary_star] = ACTIONS(353), + [sym__unary_double_star] = ACTIONS(355), + [sym__block_ampersand] = ACTIONS(395), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [839] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3737), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3125), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(3675), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6873), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(839), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_splat] = STATE(3733), - [sym_double_splat] = STATE(3733), - [sym_named_expr] = STATE(3733), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_block_argument] = STATE(3995), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1303), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__unary_star] = ACTIONS(1325), - [sym__unary_double_star] = ACTIONS(1327), - [sym__block_ampersand] = ACTIONS(353), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_implicit_object_index_operator] = STATE(9839), + [sym_implicit_object_call] = STATE(10505), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3433), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [sym_implicit_object_method_identifier] = ACTIONS(3339), + [sym_implicit_object_method_operator] = ACTIONS(3339), + [sym_implicit_object_ivar] = ACTIONS(3341), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [840] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3981), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3125), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(3675), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4583), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3415), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(840), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_splat] = STATE(3917), - [sym_double_splat] = STATE(3917), - [sym_named_expr] = STATE(3917), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_block_argument] = STATE(4166), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1303), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__unary_star] = ACTIONS(1325), - [sym__unary_double_star] = ACTIONS(1327), - [sym__block_ampersand] = ACTIONS(353), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_splat] = STATE(4577), + [sym_double_splat] = STATE(4577), + [sym_named_expr] = STATE(4577), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_block_argument] = STATE(4845), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(1577), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(1583), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__unary_star] = ACTIONS(1607), + [sym__unary_double_star] = ACTIONS(1609), + [sym__block_ampersand] = ACTIONS(493), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [841] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3981), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3125), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(3675), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4841), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3415), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(841), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_splat] = STATE(3917), - [sym_double_splat] = STATE(3917), - [sym_named_expr] = STATE(3917), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_block_argument] = STATE(4221), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1303), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__unary_star] = ACTIONS(1325), - [sym__unary_double_star] = ACTIONS(1327), - [sym__block_ampersand] = ACTIONS(353), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_splat] = STATE(4632), + [sym_double_splat] = STATE(4632), + [sym_named_expr] = STATE(4632), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_block_argument] = STATE(4633), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(1577), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(1583), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__unary_star] = ACTIONS(1607), + [sym__unary_double_star] = ACTIONS(1609), + [sym__block_ampersand] = ACTIONS(493), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [842] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3981), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3125), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(3675), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4841), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3415), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(842), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_splat] = STATE(3917), - [sym_double_splat] = STATE(3917), - [sym_named_expr] = STATE(3917), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_block_argument] = STATE(3920), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1303), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__unary_star] = ACTIONS(1325), - [sym__unary_double_star] = ACTIONS(1327), - [sym__block_ampersand] = ACTIONS(353), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_splat] = STATE(4632), + [sym_double_splat] = STATE(4632), + [sym_named_expr] = STATE(4632), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_block_argument] = STATE(4719), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(1577), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(1583), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__unary_star] = ACTIONS(1607), + [sym__unary_double_star] = ACTIONS(1609), + [sym__block_ampersand] = ACTIONS(493), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [843] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3264), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4841), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3415), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(843), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3260), - [sym_double_splat] = STATE(3260), - [sym_named_expr] = STATE(3260), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_block_argument] = STATE(3995), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__unary_star] = ACTIONS(349), - [sym__unary_double_star] = ACTIONS(351), - [sym__block_ampersand] = ACTIONS(353), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_splat] = STATE(4632), + [sym_double_splat] = STATE(4632), + [sym_named_expr] = STATE(4632), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_block_argument] = STATE(4766), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(1577), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(1583), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__unary_star] = ACTIONS(1607), + [sym__unary_double_star] = ACTIONS(1609), + [sym__block_ampersand] = ACTIONS(493), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [844] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6020), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3842), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(844), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(6097), - [sym_double_splat] = STATE(6097), - [sym_named_expr] = STATE(6097), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_block_argument] = STATE(6796), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__unary_star] = ACTIONS(1039), - [sym__unary_double_star] = ACTIONS(1041), - [sym__block_ampersand] = ACTIONS(1165), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(3838), + [sym_double_splat] = STATE(3838), + [sym_named_expr] = STATE(3838), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_block_argument] = STATE(4845), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__unary_star] = ACTIONS(489), + [sym__unary_double_star] = ACTIONS(491), + [sym__block_ampersand] = ACTIONS(493), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [845] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3417), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4287), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(845), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3429), - [sym_double_splat] = STATE(3429), - [sym_named_expr] = STATE(3429), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_block_argument] = STATE(4166), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__unary_star] = ACTIONS(349), - [sym__unary_double_star] = ACTIONS(351), - [sym__block_ampersand] = ACTIONS(353), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(4056), + [sym_double_splat] = STATE(4056), + [sym_named_expr] = STATE(4056), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_block_argument] = STATE(4633), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__unary_star] = ACTIONS(489), + [sym__unary_double_star] = ACTIONS(491), + [sym__block_ampersand] = ACTIONS(493), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [846] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6578), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5092), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(5829), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4287), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(846), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4496), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2338), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2340), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__unary_star] = ACTIONS(2348), - [sym__unary_double_star] = ACTIONS(2350), - [sym__block_ampersand] = ACTIONS(941), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(4056), + [sym_double_splat] = STATE(4056), + [sym_named_expr] = STATE(4056), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_block_argument] = STATE(4719), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__unary_star] = ACTIONS(489), + [sym__unary_double_star] = ACTIONS(491), + [sym__block_ampersand] = ACTIONS(493), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [847] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3417), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4287), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(847), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3429), - [sym_double_splat] = STATE(3429), - [sym_named_expr] = STATE(3429), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_block_argument] = STATE(4221), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__unary_star] = ACTIONS(349), - [sym__unary_double_star] = ACTIONS(351), - [sym__block_ampersand] = ACTIONS(353), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(4056), + [sym_double_splat] = STATE(4056), + [sym_named_expr] = STATE(4056), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_block_argument] = STATE(4766), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__unary_star] = ACTIONS(489), + [sym__unary_double_star] = ACTIONS(491), + [sym__block_ampersand] = ACTIONS(493), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [848] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3417), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5590), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(848), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3429), - [sym_double_splat] = STATE(3429), - [sym_named_expr] = STATE(3429), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_block_argument] = STATE(3920), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__unary_star] = ACTIONS(349), - [sym__unary_double_star] = ACTIONS(351), - [sym__block_ampersand] = ACTIONS(353), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(9278), + [sym_double_splat] = STATE(9278), + [sym_named_expr] = STATE(9278), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(10175), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(3247), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [849] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4562), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3357), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4326), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4496), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(849), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_splat] = STATE(4556), - [sym_double_splat] = STATE(4556), - [sym_named_expr] = STATE(4556), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_block_argument] = STATE(4744), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(1495), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__unary_star] = ACTIONS(1517), - [sym__unary_double_star] = ACTIONS(1519), - [sym__block_ampersand] = ACTIONS(485), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(9262), + [sym_double_splat] = STATE(9262), + [sym_named_expr] = STATE(9262), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(9987), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(3247), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [850] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4638), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3357), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4326), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4496), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(850), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_splat] = STATE(4817), - [sym_double_splat] = STATE(4817), - [sym_named_expr] = STATE(4817), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_block_argument] = STATE(4818), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(1495), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__unary_star] = ACTIONS(1517), - [sym__unary_double_star] = ACTIONS(1519), - [sym__block_ampersand] = ACTIONS(485), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(9262), + [sym_double_splat] = STATE(9262), + [sym_named_expr] = STATE(9262), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(10176), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(3247), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [851] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4638), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3357), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4326), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4496), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(851), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_splat] = STATE(4817), - [sym_double_splat] = STATE(4817), - [sym_named_expr] = STATE(4817), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_block_argument] = STATE(4863), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(1495), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__unary_star] = ACTIONS(1517), - [sym__unary_double_star] = ACTIONS(1519), - [sym__block_ampersand] = ACTIONS(485), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(9262), + [sym_double_splat] = STATE(9262), + [sym_named_expr] = STATE(9262), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(10377), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(3247), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [852] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4638), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3357), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4326), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(6016), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(852), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_splat] = STATE(4817), - [sym_double_splat] = STATE(4817), - [sym_named_expr] = STATE(4817), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_block_argument] = STATE(4592), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(1495), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__unary_star] = ACTIONS(1517), - [sym__unary_double_star] = ACTIONS(1519), - [sym__block_ampersand] = ACTIONS(485), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(6253), + [sym_double_splat] = STATE(6253), + [sym_named_expr] = STATE(6253), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_block_argument] = STATE(6752), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__unary_star] = ACTIONS(1055), + [sym__unary_double_star] = ACTIONS(1057), + [sym__block_ampersand] = ACTIONS(1161), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [853] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3745), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6873), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(853), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(3741), - [sym_double_splat] = STATE(3741), - [sym_named_expr] = STATE(3741), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_block_argument] = STATE(4744), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__unary_star] = ACTIONS(481), - [sym__unary_double_star] = ACTIONS(483), - [sym__block_ampersand] = ACTIONS(485), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_implicit_object_index_operator] = STATE(9839), + [sym_implicit_object_call] = STATE(10505), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3435), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [sym_implicit_object_method_identifier] = ACTIONS(3339), + [sym_implicit_object_method_operator] = ACTIONS(3339), + [sym_implicit_object_ivar] = ACTIONS(3341), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [854] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4157), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(6016), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(854), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(4026), - [sym_double_splat] = STATE(4026), - [sym_named_expr] = STATE(4026), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_block_argument] = STATE(4818), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__unary_star] = ACTIONS(481), - [sym__unary_double_star] = ACTIONS(483), - [sym__block_ampersand] = ACTIONS(485), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(6253), + [sym_double_splat] = STATE(6253), + [sym_named_expr] = STATE(6253), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_block_argument] = STATE(6674), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__unary_star] = ACTIONS(1055), + [sym__unary_double_star] = ACTIONS(1057), + [sym__block_ampersand] = ACTIONS(1161), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [855] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4157), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(6016), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(855), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(4026), - [sym_double_splat] = STATE(4026), - [sym_named_expr] = STATE(4026), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_block_argument] = STATE(4863), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__unary_star] = ACTIONS(481), - [sym__unary_double_star] = ACTIONS(483), - [sym__block_ampersand] = ACTIONS(485), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(6253), + [sym_double_splat] = STATE(6253), + [sym_named_expr] = STATE(6253), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_block_argument] = STATE(6762), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__unary_star] = ACTIONS(1055), + [sym__unary_double_star] = ACTIONS(1057), + [sym__block_ampersand] = ACTIONS(1161), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [856] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4157), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2502), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(856), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(4026), - [sym_double_splat] = STATE(4026), - [sym_named_expr] = STATE(4026), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_block_argument] = STATE(4592), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__unary_star] = ACTIONS(481), - [sym__unary_double_star] = ACTIONS(483), - [sym__block_ampersand] = ACTIONS(485), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2527), + [sym_double_splat] = STATE(2527), + [sym_named_expr] = STATE(2527), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_block_argument] = STATE(2985), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__unary_star] = ACTIONS(219), + [sym__unary_double_star] = ACTIONS(221), + [sym__block_ampersand] = ACTIONS(271), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [857] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5626), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6873), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(857), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(9211), - [sym_double_splat] = STATE(9211), - [sym_named_expr] = STATE(9211), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(9825), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(3216), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_call] = STATE(4364), + [sym_implicit_object_index_operator] = STATE(9839), + [sym_implicit_object_call] = STATE(10505), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3437), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [sym_implicit_object_method_identifier] = ACTIONS(3339), + [sym_implicit_object_method_operator] = ACTIONS(3339), + [sym_implicit_object_ivar] = ACTIONS(3341), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [858] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4370), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6873), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(858), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(9305), - [sym_double_splat] = STATE(9305), - [sym_named_expr] = STATE(9305), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(9774), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(3216), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_call] = STATE(4364), + [sym_implicit_object_index_operator] = STATE(9839), + [sym_implicit_object_call] = STATE(10505), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3439), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [sym_implicit_object_method_identifier] = ACTIONS(3339), + [sym_implicit_object_method_operator] = ACTIONS(3339), + [sym_implicit_object_ivar] = ACTIONS(3341), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [859] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4370), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5378), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(859), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(9305), - [sym_double_splat] = STATE(9305), - [sym_named_expr] = STATE(9305), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(9956), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(3216), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5383), + [sym_double_splat] = STATE(5383), + [sym_named_expr] = STATE(5383), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4358), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__unary_star] = ACTIONS(829), + [sym__unary_double_star] = ACTIONS(831), + [sym__block_ampersand] = ACTIONS(847), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [860] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4370), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2549), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(860), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(9305), - [sym_double_splat] = STATE(9305), - [sym_named_expr] = STATE(9305), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(10047), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__block_ampersand] = ACTIONS(3216), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2597), + [sym_double_splat] = STATE(2597), + [sym_named_expr] = STATE(2597), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_block_argument] = STATE(3129), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__unary_star] = ACTIONS(219), + [sym__unary_double_star] = ACTIONS(221), + [sym__block_ampersand] = ACTIONS(271), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [861] = { + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2489), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(861), - [sym_identifier] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3238), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [sym_operator_symbol] = ACTIONS(3236), - [sym_unquoted_symbol] = ACTIONS(3236), - [anon_sym_COLON_DQUOTE] = ACTIONS(3236), - [anon_sym_BQUOTE] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_DASH_GT] = ACTIONS(3236), - [anon_sym_end] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3238), - [anon_sym_GT_GT] = ACTIONS(3238), - [anon_sym_LT_LT] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ_GT] = ACTIONS(3236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG_TILDE] = ACTIONS(3236), - [anon_sym_EQ_TILDE] = ACTIONS(3236), - [anon_sym_AMP_STAR] = ACTIONS(3238), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3236), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym_instance_sizeof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [sym__constant_segment] = ACTIONS(3236), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym___LINE__] = ACTIONS(3238), - [anon_sym___END_LINE__] = ACTIONS(3238), - [anon_sym___FILE__] = ACTIONS(3238), - [anon_sym___DIR__] = ACTIONS(3238), - [sym_special_variable] = ACTIONS(3236), - [sym_identifier_method_call] = ACTIONS(3236), - [sym_instance_var] = ACTIONS(3236), - [sym_class_var] = ACTIONS(3236), - [sym_self] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_AMP_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_AMP_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_EQ] = ACTIONS(3242), - [anon_sym_CARET_EQ] = ACTIONS(3242), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3242), - [anon_sym_LT_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_GT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_AMP_EQ] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_begin] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_until] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [sym__line_break] = ACTIONS(3236), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3236), - [sym__start_of_hash_or_tuple] = ACTIONS(3236), - [sym__start_of_named_tuple] = ACTIONS(3236), - [sym__start_of_index_operator] = ACTIONS(3236), - [sym_unary_plus] = ACTIONS(3236), - [sym_unary_minus] = ACTIONS(3236), - [sym_binary_plus] = ACTIONS(3236), - [sym_binary_minus] = ACTIONS(3236), - [sym_unary_wrapping_plus] = ACTIONS(3236), - [sym_unary_wrapping_minus] = ACTIONS(3236), - [sym_binary_wrapping_plus] = ACTIONS(3236), - [sym_binary_wrapping_minus] = ACTIONS(3236), - [sym__unary_star] = ACTIONS(3236), - [sym__binary_star] = ACTIONS(3236), - [sym__unary_double_star] = ACTIONS(3236), - [sym__binary_double_star] = ACTIONS(3236), - [sym__block_ampersand] = ACTIONS(3236), - [sym_binary_ampersand] = ACTIONS(3236), - [sym__beginless_range_operator] = ACTIONS(3236), - [sym__regex_start] = ACTIONS(3236), - [sym__binary_slash] = ACTIONS(3236), - [sym__binary_double_slash] = ACTIONS(3236), - [sym__regular_if_keyword] = ACTIONS(3236), - [sym__modifier_if_keyword] = ACTIONS(3236), - [sym__regular_unless_keyword] = ACTIONS(3236), - [sym__modifier_unless_keyword] = ACTIONS(3236), - [sym__modifier_rescue_keyword] = ACTIONS(3236), - [sym__regular_ensure_keyword] = ACTIONS(3236), - [sym__modifier_ensure_keyword] = ACTIONS(3236), - [sym__modulo_operator] = ACTIONS(3236), - [sym__string_literal_start] = ACTIONS(3236), - [sym__string_percent_literal_start] = ACTIONS(3236), - [sym__command_percent_literal_start] = ACTIONS(3236), - [sym__string_array_percent_literal_start] = ACTIONS(3236), - [sym__symbol_array_percent_literal_start] = ACTIONS(3236), - [sym__regex_percent_literal_start] = ACTIONS(3236), - [sym_heredoc_start] = ACTIONS(3236), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3236), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2490), + [sym_double_splat] = STATE(2490), + [sym_named_expr] = STATE(2490), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_block_argument] = STATE(2641), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__unary_star] = ACTIONS(219), + [sym__unary_double_star] = ACTIONS(221), + [sym__block_ampersand] = ACTIONS(259), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), }, [862] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6578), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5092), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(5829), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3127), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2461), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(2845), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(862), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4536), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2338), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2340), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__unary_star] = ACTIONS(2348), - [sym__unary_double_star] = ACTIONS(2350), - [sym__block_ampersand] = ACTIONS(941), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [863] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6020), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), - [sym_heredoc_body] = STATE(863), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(6097), - [sym_double_splat] = STATE(6097), - [sym_named_expr] = STATE(6097), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_block_argument] = STATE(6695), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__unary_star] = ACTIONS(1039), - [sym__unary_double_star] = ACTIONS(1041), - [sym__block_ampersand] = ACTIONS(1165), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [864] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6020), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), - [sym_heredoc_body] = STATE(864), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(6097), - [sym_double_splat] = STATE(6097), - [sym_named_expr] = STATE(6097), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_block_argument] = STATE(6736), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__unary_star] = ACTIONS(1039), - [sym__unary_double_star] = ACTIONS(1041), - [sym__block_ampersand] = ACTIONS(1165), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [865] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(865), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_implicit_object_index_operator] = STATE(10311), - [sym_implicit_object_call] = STATE(9685), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3406), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [sym_implicit_object_method_identifier] = ACTIONS(3262), - [sym_implicit_object_method_operator] = ACTIONS(3262), - [sym_implicit_object_ivar] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [866] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6652), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(866), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [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), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3408), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [sym_implicit_object_method_identifier] = ACTIONS(3262), - [sym_implicit_object_method_operator] = ACTIONS(3262), - [sym_implicit_object_ivar] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [867] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2802), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2471), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2795), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(867), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_splat] = STATE(2842), - [sym_double_splat] = STATE(2842), - [sym_named_expr] = STATE(2842), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_block_argument] = STATE(2941), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(1207), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_splat] = STATE(3128), + [sym_double_splat] = STATE(3128), + [sym_named_expr] = STATE(3128), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_block_argument] = STATE(3129), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(1223), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -169330,9583 +170635,10633 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(1221), + [sym__constant_segment] = ACTIONS(1237), [anon_sym_COLON_COLON] = ACTIONS(85), [anon_sym___LINE__] = ACTIONS(87), [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1223), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(1239), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(1235), - [sym__unary_double_star] = ACTIONS(1237), - [sym__block_ampersand] = ACTIONS(267), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__unary_star] = ACTIONS(1251), + [sym__unary_double_star] = ACTIONS(1253), + [sym__block_ampersand] = ACTIONS(271), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, + [863] = { + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2549), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), + [sym_heredoc_body] = STATE(863), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2597), + [sym_double_splat] = STATE(2597), + [sym_named_expr] = STATE(2597), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_block_argument] = STATE(2738), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__unary_star] = ACTIONS(219), + [sym__unary_double_star] = ACTIONS(221), + [sym__block_ampersand] = ACTIONS(259), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [864] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(3915), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(864), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3916), + [sym_double_splat] = STATE(3916), + [sym_named_expr] = STATE(3916), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(3710), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__block_ampersand] = ACTIONS(663), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [865] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5470), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(865), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4360), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__unary_star] = ACTIONS(829), + [sym__unary_double_star] = ACTIONS(831), + [sym__block_ampersand] = ACTIONS(847), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [866] = { + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2549), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), + [sym_heredoc_body] = STATE(866), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2597), + [sym_double_splat] = STATE(2597), + [sym_named_expr] = STATE(2597), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_block_argument] = STATE(2567), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__unary_star] = ACTIONS(219), + [sym__unary_double_star] = ACTIONS(221), + [sym__block_ampersand] = ACTIONS(259), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [867] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6664), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(6507), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(867), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(6581), + [sym_double_splat] = STATE(6581), + [sym_named_expr] = STATE(6581), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4358), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2452), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2454), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__unary_star] = ACTIONS(2462), + [sym__unary_double_star] = ACTIONS(2464), + [sym__block_ampersand] = ACTIONS(1129), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, [868] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2490), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6677), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(6507), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(868), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2494), - [sym_double_splat] = STATE(2494), - [sym_named_expr] = STATE(2494), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_block_argument] = STATE(2740), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__unary_star] = ACTIONS(213), - [sym__unary_double_star] = ACTIONS(215), - [sym__block_ampersand] = ACTIONS(217), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4360), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2452), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2454), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__unary_star] = ACTIONS(2462), + [sym__unary_double_star] = ACTIONS(2464), + [sym__block_ampersand] = ACTIONS(1129), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [869] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6233), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5164), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(6312), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6677), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(6507), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(869), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(6620), - [sym_double_splat] = STATE(6620), - [sym_named_expr] = STATE(6620), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4415), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2441), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2443), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__unary_star] = ACTIONS(2451), - [sym__unary_double_star] = ACTIONS(2453), - [sym__block_ampersand] = ACTIONS(1113), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4387), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2452), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2454), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__unary_star] = ACTIONS(2462), + [sym__unary_double_star] = ACTIONS(2464), + [sym__block_ampersand] = ACTIONS(1129), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [870] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6639), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5164), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(6312), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6677), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(6507), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(870), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4464), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2441), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2443), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__unary_star] = ACTIONS(2451), - [sym__unary_double_star] = ACTIONS(2453), - [sym__block_ampersand] = ACTIONS(1113), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4566), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2452), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2454), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__unary_star] = ACTIONS(2462), + [sym__unary_double_star] = ACTIONS(2464), + [sym__block_ampersand] = ACTIONS(1129), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [871] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6639), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5164), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(6312), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5711), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(871), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4496), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2441), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2443), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__unary_star] = ACTIONS(2451), - [sym__unary_double_star] = ACTIONS(2453), - [sym__block_ampersand] = ACTIONS(1113), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5712), + [sym_double_splat] = STATE(5712), + [sym_named_expr] = STATE(5712), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4358), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__unary_star] = ACTIONS(1125), + [sym__unary_double_star] = ACTIONS(1127), + [sym__block_ampersand] = ACTIONS(1129), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [872] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6639), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5164), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(6312), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6036), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(872), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_block_argument] = STATE(4536), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2441), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2443), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__unary_star] = ACTIONS(2451), - [sym__unary_double_star] = ACTIONS(2453), - [sym__block_ampersand] = ACTIONS(1113), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4360), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__unary_star] = ACTIONS(1125), + [sym__unary_double_star] = ACTIONS(1127), + [sym__block_ampersand] = ACTIONS(1129), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [873] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5738), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6036), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(873), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(5739), - [sym_double_splat] = STATE(5739), - [sym_named_expr] = STATE(5739), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4415), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__unary_star] = ACTIONS(1109), - [sym__unary_double_star] = ACTIONS(1111), - [sym__block_ampersand] = ACTIONS(1113), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4387), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__unary_star] = ACTIONS(1125), + [sym__unary_double_star] = ACTIONS(1127), + [sym__block_ampersand] = ACTIONS(1129), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [874] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5821), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6036), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(874), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4464), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__unary_star] = ACTIONS(1109), - [sym__unary_double_star] = ACTIONS(1111), - [sym__block_ampersand] = ACTIONS(1113), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4566), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__unary_star] = ACTIONS(1125), + [sym__unary_double_star] = ACTIONS(1127), + [sym__block_ampersand] = ACTIONS(1129), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [875] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5821), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4680), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(875), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4496), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__unary_star] = ACTIONS(1109), - [sym__unary_double_star] = ACTIONS(1111), - [sym__block_ampersand] = ACTIONS(1113), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4822), + [sym_double_splat] = STATE(4822), + [sym_named_expr] = STATE(4822), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_block_argument] = STATE(4358), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__block_ampersand] = ACTIONS(617), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [876] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5821), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2549), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(876), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_block_argument] = STATE(4536), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__unary_star] = ACTIONS(1109), - [sym__unary_double_star] = ACTIONS(1111), - [sym__block_ampersand] = ACTIONS(1113), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2597), + [sym_double_splat] = STATE(2597), + [sym_named_expr] = STATE(2597), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_block_argument] = STATE(2603), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__unary_star] = ACTIONS(219), + [sym__unary_double_star] = ACTIONS(221), + [sym__block_ampersand] = ACTIONS(259), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [877] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5047), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3127), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2461), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(2845), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(877), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(8998), - [sym_double_splat] = STATE(8998), - [sym_named_expr] = STATE(8998), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_block_argument] = STATE(9595), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__unary_star] = ACTIONS(743), - [sym__unary_double_star] = ACTIONS(745), - [sym__block_ampersand] = ACTIONS(3204), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_splat] = STATE(3128), + [sym_double_splat] = STATE(3128), + [sym_named_expr] = STATE(3128), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_block_argument] = STATE(3025), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(1223), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(1237), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(1239), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__unary_star] = ACTIONS(1251), + [sym__unary_double_star] = ACTIONS(1253), + [sym__block_ampersand] = ACTIONS(271), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [878] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5170), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5660), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(878), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(9155), - [sym_double_splat] = STATE(9155), - [sym_named_expr] = STATE(9155), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_block_argument] = STATE(9369), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__unary_star] = ACTIONS(743), - [sym__unary_double_star] = ACTIONS(745), - [sym__block_ampersand] = ACTIONS(3204), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(5661), + [sym_double_splat] = STATE(5661), + [sym_named_expr] = STATE(5661), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_block_argument] = STATE(4358), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__unary_star] = ACTIONS(829), + [sym__unary_double_star] = ACTIONS(831), + [sym__block_ampersand] = ACTIONS(1181), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [879] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5170), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(879), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(9155), - [sym_double_splat] = STATE(9155), - [sym_named_expr] = STATE(9155), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_block_argument] = STATE(9407), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__unary_star] = ACTIONS(743), - [sym__unary_double_star] = ACTIONS(745), - [sym__block_ampersand] = ACTIONS(3204), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10498), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [880] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5170), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(880), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(9155), - [sym_double_splat] = STATE(9155), - [sym_named_expr] = STATE(9155), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_block_argument] = STATE(9427), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__unary_star] = ACTIONS(743), - [sym__unary_double_star] = ACTIONS(745), - [sym__block_ampersand] = ACTIONS(3204), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10528), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [881] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5108), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), [sym_heredoc_body] = STATE(881), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5109), - [sym_double_splat] = STATE(5109), - [sym_named_expr] = STATE(5109), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_block_argument] = STATE(5246), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__unary_star] = ACTIONS(743), - [sym__unary_double_star] = ACTIONS(745), - [sym__block_ampersand] = ACTIONS(747), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_identifier] = ACTIONS(3269), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3269), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [aux_sym_integer_token2] = ACTIONS(3269), + [aux_sym_float_token2] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [sym_operator_symbol] = ACTIONS(3267), + [sym_unquoted_symbol] = ACTIONS(3267), + [anon_sym_COLON_DQUOTE] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3267), + [anon_sym_end] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_LT_LT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ_GT] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_AMP_STAR] = ACTIONS(3269), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_EQ] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3269), + [anon_sym_instance_sizeof] = ACTIONS(3269), + [anon_sym_offsetof] = ACTIONS(3269), + [sym__constant_segment] = ACTIONS(3267), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym___LINE__] = ACTIONS(3269), + [anon_sym___END_LINE__] = ACTIONS(3269), + [anon_sym___FILE__] = ACTIONS(3269), + [anon_sym___DIR__] = ACTIONS(3269), + [sym_special_variable] = ACTIONS(3267), + [sym_identifier_method_call] = ACTIONS(3267), + [sym_instance_var] = ACTIONS(3267), + [sym_class_var] = ACTIONS(3267), + [sym_self] = ACTIONS(3269), + [anon_sym_LPAREN2] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3269), + [anon_sym_PIPE_PIPE] = ACTIONS(3269), + [anon_sym_PLUS_EQ] = ACTIONS(3273), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(3273), + [anon_sym_DASH_EQ] = ACTIONS(3273), + [anon_sym_AMP_DASH_EQ] = ACTIONS(3273), + [anon_sym_STAR_EQ] = ACTIONS(3273), + [anon_sym_AMP_STAR_EQ] = ACTIONS(3273), + [anon_sym_SLASH_EQ] = ACTIONS(3273), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3273), + [anon_sym_PERCENT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_EQ] = ACTIONS(3273), + [anon_sym_CARET_EQ] = ACTIONS(3273), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3273), + [anon_sym_LT_LT_EQ] = ACTIONS(3273), + [anon_sym_GT_GT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_begin] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_until] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [sym__line_break] = ACTIONS(3267), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3267), + [sym__start_of_hash_or_tuple] = ACTIONS(3267), + [sym__start_of_named_tuple] = ACTIONS(3267), + [sym__start_of_index_operator] = ACTIONS(3267), + [sym_unary_plus] = ACTIONS(3267), + [sym_unary_minus] = ACTIONS(3267), + [sym_binary_plus] = ACTIONS(3267), + [sym_binary_minus] = ACTIONS(3267), + [sym_unary_wrapping_plus] = ACTIONS(3267), + [sym_unary_wrapping_minus] = ACTIONS(3267), + [sym_binary_wrapping_plus] = ACTIONS(3267), + [sym_binary_wrapping_minus] = ACTIONS(3267), + [sym__unary_star] = ACTIONS(3267), + [sym__binary_star] = ACTIONS(3267), + [sym__unary_double_star] = ACTIONS(3267), + [sym__binary_double_star] = ACTIONS(3267), + [sym__block_ampersand] = ACTIONS(3267), + [sym_binary_ampersand] = ACTIONS(3267), + [sym__beginless_range_operator] = ACTIONS(3267), + [sym__regex_start] = ACTIONS(3267), + [sym__binary_slash] = ACTIONS(3267), + [sym__binary_double_slash] = ACTIONS(3267), + [sym__regular_if_keyword] = ACTIONS(3267), + [sym__modifier_if_keyword] = ACTIONS(3267), + [sym__regular_unless_keyword] = ACTIONS(3267), + [sym__modifier_unless_keyword] = ACTIONS(3267), + [sym__modifier_rescue_keyword] = ACTIONS(3267), + [sym__regular_ensure_keyword] = ACTIONS(3267), + [sym__modifier_ensure_keyword] = ACTIONS(3267), + [sym__modulo_operator] = ACTIONS(3267), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3267), + [sym__command_percent_literal_start] = ACTIONS(3267), + [sym__string_array_percent_literal_start] = ACTIONS(3267), + [sym__symbol_array_percent_literal_start] = ACTIONS(3267), + [sym__regex_percent_literal_start] = ACTIONS(3267), + [sym_heredoc_start] = ACTIONS(3267), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3267), }, [882] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(882), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3410), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3441), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [883] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6564), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(883), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10493), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_implicit_object_index_operator] = STATE(4354), + [sym_implicit_object_call] = STATE(4353), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_DOT] = ACTIONS(3443), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [sym_implicit_object_method_identifier] = ACTIONS(3445), + [sym_implicit_object_method_operator] = ACTIONS(3445), + [sym_implicit_object_ivar] = ACTIONS(3447), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [884] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2632), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), [sym_heredoc_body] = STATE(884), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_implicit_object_index_operator] = STATE(2631), - [sym_implicit_object_call] = STATE(2633), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_DOT] = ACTIONS(3412), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [sym_implicit_object_method_identifier] = ACTIONS(3414), - [sym_implicit_object_method_operator] = ACTIONS(3414), - [sym_implicit_object_ivar] = ACTIONS(3416), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_identifier] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym_RPAREN] = ACTIONS(3267), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [aux_sym_integer_token2] = ACTIONS(3269), + [aux_sym_float_token2] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3267), + [sym_operator_symbol] = ACTIONS(3267), + [sym_unquoted_symbol] = ACTIONS(3267), + [anon_sym_COLON_DQUOTE] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3267), + [anon_sym_RBRACK] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3267), + [anon_sym_end] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_LT_LT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ_GT] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_AMP_STAR] = ACTIONS(3269), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_EQ] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3269), + [anon_sym_instance_sizeof] = ACTIONS(3269), + [anon_sym_offsetof] = ACTIONS(3269), + [sym__constant_segment] = ACTIONS(3267), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym___LINE__] = ACTIONS(3269), + [anon_sym___END_LINE__] = ACTIONS(3269), + [anon_sym___FILE__] = ACTIONS(3269), + [anon_sym___DIR__] = ACTIONS(3269), + [sym_special_variable] = ACTIONS(3267), + [sym_identifier_method_call] = ACTIONS(3267), + [sym_instance_var] = ACTIONS(3267), + [sym_class_var] = ACTIONS(3267), + [sym_self] = ACTIONS(3269), + [anon_sym_LPAREN2] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3269), + [anon_sym_PIPE_PIPE] = ACTIONS(3269), + [anon_sym_PLUS_EQ] = ACTIONS(3273), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(3273), + [anon_sym_DASH_EQ] = ACTIONS(3273), + [anon_sym_AMP_DASH_EQ] = ACTIONS(3273), + [anon_sym_STAR_EQ] = ACTIONS(3273), + [anon_sym_AMP_STAR_EQ] = ACTIONS(3273), + [anon_sym_SLASH_EQ] = ACTIONS(3273), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3273), + [anon_sym_PERCENT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_EQ] = ACTIONS(3273), + [anon_sym_CARET_EQ] = ACTIONS(3273), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3273), + [anon_sym_LT_LT_EQ] = ACTIONS(3273), + [anon_sym_GT_GT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3273), + [anon_sym_COLON2] = ACTIONS(3269), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_begin] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_until] = ACTIONS(3269), + [anon_sym_else] = ACTIONS(3269), + [anon_sym_when] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [anon_sym_in] = ACTIONS(3269), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3267), + [sym__start_of_hash_or_tuple] = ACTIONS(3267), + [sym__start_of_named_tuple] = ACTIONS(3267), + [sym__start_of_index_operator] = ACTIONS(3267), + [sym_unary_plus] = ACTIONS(3267), + [sym_unary_minus] = ACTIONS(3267), + [sym_binary_plus] = ACTIONS(3267), + [sym_binary_minus] = ACTIONS(3267), + [sym_unary_wrapping_plus] = ACTIONS(3267), + [sym_unary_wrapping_minus] = ACTIONS(3267), + [sym_binary_wrapping_plus] = ACTIONS(3267), + [sym_binary_wrapping_minus] = ACTIONS(3267), + [sym__unary_star] = ACTIONS(3267), + [sym__binary_star] = ACTIONS(3267), + [sym__unary_double_star] = ACTIONS(3267), + [sym__binary_double_star] = ACTIONS(3267), + [sym__block_ampersand] = ACTIONS(3267), + [sym_binary_ampersand] = ACTIONS(3267), + [sym__beginless_range_operator] = ACTIONS(3267), + [sym__regex_start] = ACTIONS(3267), + [sym__binary_slash] = ACTIONS(3267), + [sym__binary_double_slash] = ACTIONS(3267), + [sym__regular_if_keyword] = ACTIONS(3267), + [sym__regular_unless_keyword] = ACTIONS(3267), + [sym__modulo_operator] = ACTIONS(3267), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3267), + [sym__command_percent_literal_start] = ACTIONS(3267), + [sym__string_array_percent_literal_start] = ACTIONS(3267), + [sym__symbol_array_percent_literal_start] = ACTIONS(3267), + [sym__regex_percent_literal_start] = ACTIONS(3267), + [sym_heredoc_start] = ACTIONS(3267), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3267), }, [885] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5629), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5287), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(885), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_implicit_object_index_operator] = STATE(3833), - [sym_implicit_object_call] = STATE(3718), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_DOT] = ACTIONS(3418), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [sym_implicit_object_method_identifier] = ACTIONS(3420), - [sym_implicit_object_method_operator] = ACTIONS(3420), - [sym_implicit_object_ivar] = ACTIONS(3422), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_implicit_object_index_operator] = STATE(4354), + [sym_implicit_object_call] = STATE(4353), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_DOT] = ACTIONS(3443), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [sym_implicit_object_method_identifier] = ACTIONS(3451), + [sym_implicit_object_method_operator] = ACTIONS(3451), + [sym_implicit_object_ivar] = ACTIONS(3447), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [886] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6916), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(886), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_implicit_object_index_operator] = STATE(4413), - [sym_implicit_object_call] = STATE(4414), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_DOT] = ACTIONS(3426), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [sym_implicit_object_method_identifier] = ACTIONS(3428), - [sym_implicit_object_method_operator] = ACTIONS(3428), - [sym_implicit_object_ivar] = ACTIONS(3430), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10561), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [887] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6956), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5701), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(887), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_implicit_object_index_operator] = STATE(6667), - [sym_implicit_object_call] = STATE(6670), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_DOT] = ACTIONS(3434), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [sym_implicit_object_method_identifier] = ACTIONS(3436), - [sym_implicit_object_method_operator] = ACTIONS(3436), - [sym_implicit_object_ivar] = ACTIONS(3438), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_implicit_object_index_operator] = STATE(3603), + [sym_implicit_object_call] = STATE(3846), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_DOT] = ACTIONS(3453), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [sym_implicit_object_method_identifier] = ACTIONS(3455), + [sym_implicit_object_method_operator] = ACTIONS(3455), + [sym_implicit_object_ivar] = ACTIONS(3457), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [888] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5686), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3355), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(888), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_implicit_object_index_operator] = STATE(5577), - [sym_implicit_object_call] = STATE(5578), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(3440), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [sym_implicit_object_method_identifier] = ACTIONS(3442), - [sym_implicit_object_method_operator] = ACTIONS(3442), - [sym_implicit_object_ivar] = ACTIONS(3444), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_implicit_object_index_operator] = STATE(3354), + [sym_implicit_object_call] = STATE(3334), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_DOT] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [sym_implicit_object_method_identifier] = ACTIONS(3461), + [sym_implicit_object_method_operator] = ACTIONS(3461), + [sym_implicit_object_ivar] = ACTIONS(3463), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [889] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5948), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7038), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(889), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_implicit_object_index_operator] = STATE(6061), - [sym_implicit_object_call] = STATE(6067), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_DOT] = ACTIONS(3446), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [sym_implicit_object_method_identifier] = ACTIONS(3448), - [sym_implicit_object_method_operator] = ACTIONS(3448), - [sym_implicit_object_ivar] = ACTIONS(3450), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_implicit_object_index_operator] = STATE(4354), + [sym_implicit_object_call] = STATE(4353), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_DOT] = ACTIONS(3443), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [sym_implicit_object_method_identifier] = ACTIONS(3467), + [sym_implicit_object_method_operator] = ACTIONS(3467), + [sym_implicit_object_ivar] = ACTIONS(3447), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [890] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(5007), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4723), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(890), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_implicit_object_index_operator] = STATE(4643), - [sym_implicit_object_call] = STATE(4631), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_DOT] = ACTIONS(3452), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [sym_implicit_object_method_identifier] = ACTIONS(3454), - [sym_implicit_object_method_operator] = ACTIONS(3454), - [sym_implicit_object_ivar] = ACTIONS(3456), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_implicit_object_index_operator] = STATE(4891), + [sym_implicit_object_call] = STATE(4630), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_DOT] = ACTIONS(3469), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [sym_implicit_object_method_identifier] = ACTIONS(3471), + [sym_implicit_object_method_operator] = ACTIONS(3471), + [sym_implicit_object_ivar] = ACTIONS(3473), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [891] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6671), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5929), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(891), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_implicit_object_index_operator] = STATE(6061), - [sym_implicit_object_call] = STATE(6067), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_DOT] = ACTIONS(3446), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [sym_implicit_object_method_identifier] = ACTIONS(3460), - [sym_implicit_object_method_operator] = ACTIONS(3460), - [sym_implicit_object_ivar] = ACTIONS(3450), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_implicit_object_index_operator] = STATE(9500), + [sym_implicit_object_call] = STATE(9399), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_DOT] = ACTIONS(3399), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [sym_implicit_object_method_identifier] = ACTIONS(3401), + [sym_implicit_object_method_operator] = ACTIONS(3401), + [sym_implicit_object_ivar] = ACTIONS(3403), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [892] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4236), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6706), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(892), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_implicit_object_index_operator] = STATE(3992), - [sym_implicit_object_call] = STATE(4126), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_DOT] = ACTIONS(3462), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [sym_implicit_object_method_identifier] = ACTIONS(3464), - [sym_implicit_object_method_operator] = ACTIONS(3464), - [sym_implicit_object_ivar] = ACTIONS(3466), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_implicit_object_index_operator] = STATE(6805), + [sym_implicit_object_call] = STATE(6860), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_DOT] = ACTIONS(3475), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [sym_implicit_object_method_identifier] = ACTIONS(3477), + [sym_implicit_object_method_operator] = ACTIONS(3477), + [sym_implicit_object_ivar] = ACTIONS(3479), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [893] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6372), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(893), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_implicit_object_index_operator] = STATE(4413), - [sym_implicit_object_call] = STATE(4414), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DOT] = ACTIONS(3426), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [sym_implicit_object_method_identifier] = ACTIONS(3468), - [sym_implicit_object_method_operator] = ACTIONS(3468), - [sym_implicit_object_ivar] = ACTIONS(3430), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3481), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [894] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6378), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5238), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(894), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_bracket_argument_list] = STATE(11558), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9829), - [sym_double_splat] = STATE(9829), - [sym_named_expr] = STATE(9829), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_implicit_object_index_operator] = STATE(5230), + [sym_implicit_object_call] = STATE(5241), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_DOT] = ACTIONS(3483), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [sym_implicit_object_method_identifier] = ACTIONS(3485), + [sym_implicit_object_method_operator] = ACTIONS(3485), + [sym_implicit_object_ivar] = ACTIONS(3487), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [895] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4797), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5287), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(895), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_implicit_object_index_operator] = STATE(4643), - [sym_implicit_object_call] = STATE(4631), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(3452), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [sym_implicit_object_method_identifier] = ACTIONS(3470), - [sym_implicit_object_method_operator] = ACTIONS(3470), - [sym_implicit_object_ivar] = ACTIONS(3456), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_implicit_object_index_operator] = STATE(9839), + [sym_implicit_object_call] = STATE(10398), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_DOT] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [sym_implicit_object_method_identifier] = ACTIONS(3489), + [sym_implicit_object_method_operator] = ACTIONS(3489), + [sym_implicit_object_ivar] = ACTIONS(3341), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [896] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6940), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6629), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(896), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_implicit_object_index_operator] = STATE(4413), - [sym_implicit_object_call] = STATE(4414), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_DOT] = ACTIONS(3426), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [sym_implicit_object_method_identifier] = ACTIONS(3474), - [sym_implicit_object_method_operator] = ACTIONS(3474), - [sym_implicit_object_ivar] = ACTIONS(3430), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_bracket_argument_list] = STATE(11537), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9922), + [sym_double_splat] = STATE(9922), + [sym_named_expr] = STATE(9922), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [897] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5270), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6984), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(897), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_implicit_object_index_operator] = STATE(4413), - [sym_implicit_object_call] = STATE(4414), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_DOT] = ACTIONS(3426), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [sym_implicit_object_method_identifier] = ACTIONS(3478), - [sym_implicit_object_method_operator] = ACTIONS(3478), - [sym_implicit_object_ivar] = ACTIONS(3430), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_implicit_object_index_operator] = STATE(6805), + [sym_implicit_object_call] = STATE(6860), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_DOT] = ACTIONS(3475), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [sym_implicit_object_method_identifier] = ACTIONS(3493), + [sym_implicit_object_method_operator] = ACTIONS(3493), + [sym_implicit_object_ivar] = ACTIONS(3479), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [898] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5270), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3038), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(898), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [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), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_DOT] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [sym_implicit_object_method_identifier] = ACTIONS(3480), - [sym_implicit_object_method_operator] = ACTIONS(3480), - [sym_implicit_object_ivar] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_implicit_object_index_operator] = STATE(2945), + [sym_implicit_object_call] = STATE(2947), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(3495), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), + [sym_self] = ACTIONS(17), + [sym_implicit_object_method_identifier] = ACTIONS(3497), + [sym_implicit_object_method_operator] = ACTIONS(3497), + [sym_implicit_object_ivar] = ACTIONS(3499), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [899] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4927), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(899), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [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), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3392), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_implicit_object_index_operator] = STATE(9839), + [sym_implicit_object_call] = STATE(10398), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [sym_implicit_object_method_identifier] = ACTIONS(3339), + [sym_implicit_object_method_operator] = ACTIONS(3339), + [sym_implicit_object_ivar] = ACTIONS(3341), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [900] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6376), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(900), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10458), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(10115), + [sym_double_splat] = STATE(10115), + [sym_named_expr] = STATE(10115), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3501), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [901] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(901), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [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), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3404), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10468), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [902] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6652), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6629), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(902), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [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), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [sym_implicit_object_method_identifier] = ACTIONS(3262), - [sym_implicit_object_method_operator] = ACTIONS(3262), - [sym_implicit_object_ivar] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_bracket_argument_list] = STATE(11255), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9922), + [sym_double_splat] = STATE(9922), + [sym_named_expr] = STATE(9922), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [903] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(903), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3482), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10552), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [904] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6832), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(904), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_implicit_object_index_operator] = STATE(6667), - [sym_implicit_object_call] = STATE(6670), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_DOT] = ACTIONS(3434), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [sym_implicit_object_method_identifier] = ACTIONS(3484), - [sym_implicit_object_method_operator] = ACTIONS(3484), - [sym_implicit_object_ivar] = ACTIONS(3438), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10487), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [905] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6629), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(905), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10453), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_bracket_argument_list] = STATE(11628), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9922), + [sym_double_splat] = STATE(9922), + [sym_named_expr] = STATE(9922), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [906] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6378), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(906), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_bracket_argument_list] = STATE(10701), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9829), - [sym_double_splat] = STATE(9829), - [sym_named_expr] = STATE(9829), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10518), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [907] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(907), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10402), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10504), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [908] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6629), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(908), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10391), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_bracket_argument_list] = STATE(12043), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9922), + [sym_double_splat] = STATE(9922), + [sym_named_expr] = STATE(9922), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [909] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6378), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(909), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_bracket_argument_list] = STATE(11522), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9829), - [sym_double_splat] = STATE(9829), - [sym_named_expr] = STATE(9829), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10573), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [910] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(910), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10457), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10476), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [911] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6629), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(911), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10487), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_bracket_argument_list] = STATE(11016), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9922), + [sym_double_splat] = STATE(9922), + [sym_named_expr] = STATE(9922), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [912] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6378), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(912), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_bracket_argument_list] = STATE(10703), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9829), - [sym_double_splat] = STATE(9829), - [sym_named_expr] = STATE(9829), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10512), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [913] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(913), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10441), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10451), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [914] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6629), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(914), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10455), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_bracket_argument_list] = STATE(11168), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9922), + [sym_double_splat] = STATE(9922), + [sym_named_expr] = STATE(9922), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [915] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6378), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(915), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_bracket_argument_list] = STATE(11079), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9829), - [sym_double_splat] = STATE(9829), - [sym_named_expr] = STATE(9829), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10542), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [916] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(916), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10489), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10554), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [917] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6629), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(917), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10472), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_bracket_argument_list] = STATE(12052), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9922), + [sym_double_splat] = STATE(9922), + [sym_named_expr] = STATE(9922), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [918] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3322), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(918), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_implicit_object_index_operator] = STATE(3321), - [sym_implicit_object_call] = STATE(3392), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_DOT] = ACTIONS(3486), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [sym_implicit_object_method_identifier] = ACTIONS(3488), - [sym_implicit_object_method_operator] = ACTIONS(3488), - [sym_implicit_object_ivar] = ACTIONS(3490), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10497), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [919] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(919), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10456), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10500), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [920] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(920), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10442), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10465), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [921] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6378), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(921), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_bracket_argument_list] = STATE(10607), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9829), - [sym_double_splat] = STATE(9829), - [sym_named_expr] = STATE(9829), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10539), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [922] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(922), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10399), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10544), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [923] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(923), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10425), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10485), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [924] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(924), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10469), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10458), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [925] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(925), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10483), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10448), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [926] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(926), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10423), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10467), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [927] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(927), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10426), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10524), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [928] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(928), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10494), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10515), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [929] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(929), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10468), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10493), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [930] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(930), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10394), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10466), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [931] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(931), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10454), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10507), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [932] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(932), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10401), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10519), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [933] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(5028), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(933), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10460), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_implicit_object_index_operator] = STATE(4891), + [sym_implicit_object_call] = STATE(4630), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_DOT] = ACTIONS(3469), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [sym_implicit_object_method_identifier] = ACTIONS(3503), + [sym_implicit_object_method_operator] = ACTIONS(3503), + [sym_implicit_object_ivar] = ACTIONS(3473), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [934] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), [sym_heredoc_body] = STATE(934), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10398), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_identifier] = ACTIONS(3269), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3269), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [aux_sym_integer_token2] = ACTIONS(3269), + [aux_sym_float_token2] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [sym_operator_symbol] = ACTIONS(3267), + [sym_unquoted_symbol] = ACTIONS(3267), + [anon_sym_COLON_DQUOTE] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3273), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3267), + [anon_sym_end] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_LT_LT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ_GT] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_AMP_STAR] = ACTIONS(3269), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_EQ] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3269), + [anon_sym_instance_sizeof] = ACTIONS(3269), + [anon_sym_offsetof] = ACTIONS(3269), + [sym__constant_segment] = ACTIONS(3267), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym___LINE__] = ACTIONS(3269), + [anon_sym___END_LINE__] = ACTIONS(3269), + [anon_sym___FILE__] = ACTIONS(3269), + [anon_sym___DIR__] = ACTIONS(3269), + [sym_special_variable] = ACTIONS(3267), + [sym_identifier_method_call] = ACTIONS(3267), + [sym_instance_var] = ACTIONS(3267), + [sym_class_var] = ACTIONS(3267), + [sym_self] = ACTIONS(3269), + [anon_sym_LPAREN2] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3269), + [anon_sym_PIPE_PIPE] = ACTIONS(3269), + [anon_sym_PLUS_EQ] = ACTIONS(3273), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(3273), + [anon_sym_DASH_EQ] = ACTIONS(3273), + [anon_sym_AMP_DASH_EQ] = ACTIONS(3273), + [anon_sym_STAR_EQ] = ACTIONS(3273), + [anon_sym_AMP_STAR_EQ] = ACTIONS(3273), + [anon_sym_SLASH_EQ] = ACTIONS(3273), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3273), + [anon_sym_PERCENT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_EQ] = ACTIONS(3273), + [anon_sym_CARET_EQ] = ACTIONS(3273), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3273), + [anon_sym_LT_LT_EQ] = ACTIONS(3273), + [anon_sym_GT_GT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_begin] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_until] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [sym__line_break] = ACTIONS(3267), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3267), + [sym__start_of_hash_or_tuple] = ACTIONS(3267), + [sym__start_of_named_tuple] = ACTIONS(3267), + [sym__start_of_index_operator] = ACTIONS(3267), + [sym_unary_plus] = ACTIONS(3267), + [sym_unary_minus] = ACTIONS(3267), + [sym_binary_plus] = ACTIONS(3267), + [sym_binary_minus] = ACTIONS(3267), + [sym_unary_wrapping_plus] = ACTIONS(3267), + [sym_unary_wrapping_minus] = ACTIONS(3267), + [sym_binary_wrapping_plus] = ACTIONS(3267), + [sym_binary_wrapping_minus] = ACTIONS(3267), + [sym__unary_star] = ACTIONS(3267), + [sym__binary_star] = ACTIONS(3267), + [sym__unary_double_star] = ACTIONS(3267), + [sym__binary_double_star] = ACTIONS(3267), + [sym__block_ampersand] = ACTIONS(3267), + [sym_binary_ampersand] = ACTIONS(3267), + [sym__beginless_range_operator] = ACTIONS(3267), + [sym__regex_start] = ACTIONS(3267), + [sym__binary_slash] = ACTIONS(3267), + [sym__binary_double_slash] = ACTIONS(3267), + [sym__regular_if_keyword] = ACTIONS(3267), + [sym__modifier_if_keyword] = ACTIONS(3267), + [sym__regular_unless_keyword] = ACTIONS(3267), + [sym__modifier_unless_keyword] = ACTIONS(3267), + [sym__modifier_rescue_keyword] = ACTIONS(3267), + [sym__regular_ensure_keyword] = ACTIONS(3267), + [sym__modifier_ensure_keyword] = ACTIONS(3267), + [sym__modulo_operator] = ACTIONS(3267), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3267), + [sym__command_percent_literal_start] = ACTIONS(3267), + [sym__string_array_percent_literal_start] = ACTIONS(3267), + [sym__symbol_array_percent_literal_start] = ACTIONS(3267), + [sym__regex_percent_literal_start] = ACTIONS(3267), + [sym_heredoc_start] = ACTIONS(3267), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3267), }, [935] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(935), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10466), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10529), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [936] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4927), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(936), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10488), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_implicit_object_index_operator] = STATE(4354), + [sym_implicit_object_call] = STATE(4353), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(3443), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [sym_implicit_object_method_identifier] = ACTIONS(3505), + [sym_implicit_object_method_operator] = ACTIONS(3505), + [sym_implicit_object_ivar] = ACTIONS(3447), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [937] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6873), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(937), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10440), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_implicit_object_index_operator] = STATE(9839), + [sym_implicit_object_call] = STATE(10505), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(3337), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [sym_implicit_object_method_identifier] = ACTIONS(3339), + [sym_implicit_object_method_operator] = ACTIONS(3339), + [sym_implicit_object_ivar] = ACTIONS(3341), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [938] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5582), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(938), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10473), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_implicit_object_index_operator] = STATE(5496), + [sym_implicit_object_call] = STATE(5497), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_DOT] = ACTIONS(3507), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [sym_implicit_object_method_identifier] = ACTIONS(3509), + [sym_implicit_object_method_operator] = ACTIONS(3509), + [sym_implicit_object_ivar] = ACTIONS(3511), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [939] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6099), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6629), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(939), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_implicit_object_index_operator] = STATE(6096), - [sym_implicit_object_call] = STATE(6229), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_DOT] = ACTIONS(3492), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [sym_implicit_object_method_identifier] = ACTIONS(3494), - [sym_implicit_object_method_operator] = ACTIONS(3494), - [sym_implicit_object_ivar] = ACTIONS(3496), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_bracket_argument_list] = STATE(10600), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9922), + [sym_double_splat] = STATE(9922), + [sym_named_expr] = STATE(9922), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [940] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4919), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(940), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_implicit_object_index_operator] = STATE(4413), - [sym_implicit_object_call] = STATE(4414), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(3426), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [sym_implicit_object_method_identifier] = ACTIONS(3498), - [sym_implicit_object_method_operator] = ACTIONS(3498), - [sym_implicit_object_ivar] = ACTIONS(3430), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10489), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [941] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6358), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4457), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(941), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [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), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3500), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_call] = STATE(3662), + [sym_implicit_object_index_operator] = STATE(3603), + [sym_implicit_object_call] = STATE(3846), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_DOT] = ACTIONS(3453), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [sym_implicit_object_method_identifier] = ACTIONS(3513), + [sym_implicit_object_method_operator] = ACTIONS(3513), + [sym_implicit_object_ivar] = ACTIONS(3457), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [942] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4919), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4382), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(942), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [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), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_DOT] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [sym_implicit_object_method_identifier] = ACTIONS(3262), - [sym_implicit_object_method_operator] = ACTIONS(3262), - [sym_implicit_object_ivar] = ACTIONS(3264), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_implicit_object_index_operator] = STATE(4302), + [sym_implicit_object_call] = STATE(4205), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_DOT] = ACTIONS(3515), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [sym_implicit_object_method_identifier] = ACTIONS(3517), + [sym_implicit_object_method_operator] = ACTIONS(3517), + [sym_implicit_object_ivar] = ACTIONS(3519), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [943] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3281), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6528), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(943), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_implicit_object_index_operator] = STATE(2938), - [sym_implicit_object_call] = STATE(2939), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_implicit_object_index_operator] = STATE(6466), + [sym_implicit_object_call] = STATE(6471), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_DOT] = ACTIONS(3521), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [sym_implicit_object_method_identifier] = ACTIONS(3523), + [sym_implicit_object_method_operator] = ACTIONS(3523), + [sym_implicit_object_ivar] = ACTIONS(3525), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [944] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6746), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(944), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(10459), + [sym_double_splat] = STATE(10459), + [sym_named_expr] = STATE(10459), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(3429), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [945] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3298), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(945), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_implicit_object_index_operator] = STATE(2945), + [sym_implicit_object_call] = STATE(2947), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -178923,7 +181278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(33), [anon_sym_BANG] = ACTIONS(53), [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_DOT] = ACTIONS(3502), + [anon_sym_DOT] = ACTIONS(3495), [anon_sym_with] = ACTIONS(71), [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), @@ -178938,2990 +181293,3544 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), - [sym_implicit_object_method_identifier] = ACTIONS(3504), - [sym_implicit_object_method_operator] = ACTIONS(3504), - [sym_implicit_object_ivar] = ACTIONS(3506), + [sym_implicit_object_method_identifier] = ACTIONS(3527), + [sym_implicit_object_method_operator] = ACTIONS(3527), + [sym_implicit_object_ivar] = ACTIONS(3499), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [944] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4448), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(944), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_implicit_object_index_operator] = STATE(3833), - [sym_implicit_object_call] = STATE(3718), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_DOT] = ACTIONS(3418), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [sym_implicit_object_method_identifier] = ACTIONS(3508), - [sym_implicit_object_method_operator] = ACTIONS(3508), - [sym_implicit_object_ivar] = ACTIONS(3422), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [945] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5948), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), - [sym_heredoc_body] = STATE(945), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_implicit_object_index_operator] = STATE(9412), - [sym_implicit_object_call] = STATE(9583), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_DOT] = ACTIONS(3382), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [sym_implicit_object_method_identifier] = ACTIONS(3384), - [sym_implicit_object_method_operator] = ACTIONS(3384), - [sym_implicit_object_ivar] = ACTIONS(3386), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), - [sym__heredoc_body_start] = ACTIONS(7), - }, [946] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6849), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2646), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(946), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_implicit_object_index_operator] = STATE(4413), - [sym_implicit_object_call] = STATE(4414), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_DOT] = ACTIONS(3426), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [sym_implicit_object_method_identifier] = ACTIONS(3510), - [sym_implicit_object_method_operator] = ACTIONS(3510), - [sym_implicit_object_ivar] = ACTIONS(3430), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_implicit_object_index_operator] = STATE(2744), + [sym_implicit_object_call] = STATE(2649), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_DOT] = ACTIONS(3529), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [sym_implicit_object_method_identifier] = ACTIONS(3531), + [sym_implicit_object_method_operator] = ACTIONS(3531), + [sym_implicit_object_ivar] = ACTIONS(3533), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [947] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(6179), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(6243), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(947), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_implicit_object_index_operator] = STATE(3833), - [sym_implicit_object_call] = STATE(3718), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_DOT] = ACTIONS(3418), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [sym_implicit_object_method_identifier] = ACTIONS(3512), - [sym_implicit_object_method_operator] = ACTIONS(3512), - [sym_implicit_object_ivar] = ACTIONS(3422), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_implicit_object_index_operator] = STATE(6242), + [sym_implicit_object_call] = STATE(6256), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_DOT] = ACTIONS(3535), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [sym_implicit_object_method_identifier] = ACTIONS(3537), + [sym_implicit_object_method_operator] = ACTIONS(3537), + [sym_implicit_object_ivar] = ACTIONS(3539), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [948] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2887), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6891), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(948), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_implicit_object_index_operator] = STATE(2938), - [sym_implicit_object_call] = STATE(2939), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_DOT] = ACTIONS(3502), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), - [sym_self] = ACTIONS(17), - [sym_implicit_object_method_identifier] = ACTIONS(3514), - [sym_implicit_object_method_operator] = ACTIONS(3514), - [sym_implicit_object_ivar] = ACTIONS(3506), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_implicit_object_index_operator] = STATE(4354), + [sym_implicit_object_call] = STATE(4353), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_DOT] = ACTIONS(3443), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [sym_implicit_object_method_identifier] = ACTIONS(3541), + [sym_implicit_object_method_operator] = ACTIONS(3541), + [sym_implicit_object_ivar] = ACTIONS(3447), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [949] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5398), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4208), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(949), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_implicit_object_index_operator] = STATE(5419), - [sym_implicit_object_call] = STATE(5399), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_DOT] = ACTIONS(3516), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [sym_implicit_object_method_identifier] = ACTIONS(3518), - [sym_implicit_object_method_operator] = ACTIONS(3518), - [sym_implicit_object_ivar] = ACTIONS(3520), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_implicit_object_index_operator] = STATE(4302), + [sym_implicit_object_call] = STATE(4205), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(3515), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [sym_implicit_object_method_identifier] = ACTIONS(3543), + [sym_implicit_object_method_operator] = ACTIONS(3543), + [sym_implicit_object_ivar] = ACTIONS(3519), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [950] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6977), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(950), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10439), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_implicit_object_index_operator] = STATE(4354), + [sym_implicit_object_call] = STATE(4353), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_DOT] = ACTIONS(3443), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [sym_implicit_object_method_identifier] = ACTIONS(3547), + [sym_implicit_object_method_operator] = ACTIONS(3547), + [sym_implicit_object_ivar] = ACTIONS(3447), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [951] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(5864), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4262), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(951), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_bracket_argument_list] = STATE(10462), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9373), - [sym_double_splat] = STATE(9373), - [sym_named_expr] = STATE(9373), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_implicit_object_index_operator] = STATE(3932), + [sym_implicit_object_call] = STATE(3939), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_DOT] = ACTIONS(3549), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [sym_implicit_object_method_identifier] = ACTIONS(3551), + [sym_implicit_object_method_operator] = ACTIONS(3551), + [sym_implicit_object_ivar] = ACTIONS(3553), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [952] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6406), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6746), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(952), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_implicit_object_index_operator] = STATE(6466), - [sym_implicit_object_call] = STATE(6467), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_DOT] = ACTIONS(3522), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [sym_implicit_object_method_identifier] = ACTIONS(3524), - [sym_implicit_object_method_operator] = ACTIONS(3524), - [sym_implicit_object_ivar] = ACTIONS(3526), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(10459), + [sym_double_splat] = STATE(10459), + [sym_named_expr] = STATE(10459), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(3413), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [953] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4427), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6114), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(953), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_implicit_object_index_operator] = STATE(4088), - [sym_implicit_object_call] = STATE(3838), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_DOT] = ACTIONS(3528), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [sym_implicit_object_method_identifier] = ACTIONS(3530), - [sym_implicit_object_method_operator] = ACTIONS(3530), - [sym_implicit_object_ivar] = ACTIONS(3532), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_implicit_object_index_operator] = STATE(3603), + [sym_implicit_object_call] = STATE(3846), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_DOT] = ACTIONS(3453), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [sym_implicit_object_method_identifier] = ACTIONS(3555), + [sym_implicit_object_method_operator] = ACTIONS(3555), + [sym_implicit_object_ivar] = ACTIONS(3457), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [954] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4251), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6742), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(954), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_implicit_object_index_operator] = STATE(4088), - [sym_implicit_object_call] = STATE(3838), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_DOT] = ACTIONS(3528), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [sym_implicit_object_method_identifier] = ACTIONS(3534), - [sym_implicit_object_method_operator] = ACTIONS(3534), - [sym_implicit_object_ivar] = ACTIONS(3532), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_implicit_object_index_operator] = STATE(6158), + [sym_implicit_object_call] = STATE(6010), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DOT] = ACTIONS(3559), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [sym_implicit_object_method_identifier] = ACTIONS(3561), + [sym_implicit_object_method_operator] = ACTIONS(3561), + [sym_implicit_object_ivar] = ACTIONS(3563), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [955] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6378), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5929), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(955), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_bracket_argument_list] = STATE(10780), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9829), - [sym_double_splat] = STATE(9829), - [sym_named_expr] = STATE(9829), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_implicit_object_index_operator] = STATE(6158), + [sym_implicit_object_call] = STATE(6010), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_DOT] = ACTIONS(3559), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [sym_implicit_object_method_identifier] = ACTIONS(3565), + [sym_implicit_object_method_operator] = ACTIONS(3565), + [sym_implicit_object_ivar] = ACTIONS(3563), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [956] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6378), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(5811), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(956), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_bracket_argument_list] = STATE(11711), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9829), - [sym_double_splat] = STATE(9829), - [sym_named_expr] = STATE(9829), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_bracket_argument_list] = STATE(10522), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9583), + [sym_double_splat] = STATE(9583), + [sym_named_expr] = STATE(9583), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [957] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5821), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4967), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5634), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4287), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(2910), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3600), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(957), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(1095), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(1097), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__unary_star] = ACTIONS(1109), - [sym__unary_double_star] = ACTIONS(1111), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_splat] = STATE(4056), + [sym_double_splat] = STATE(4056), + [sym_named_expr] = STATE(4056), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(409), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(449), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(455), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__unary_star] = ACTIONS(489), + [sym__unary_double_star] = ACTIONS(491), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [958] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6020), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(4955), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5611), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4841), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3415), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4555), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(958), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_splat] = STATE(6097), - [sym_double_splat] = STATE(6097), - [sym_named_expr] = STATE(6097), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(961), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(1007), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__unary_star] = ACTIONS(1039), - [sym__unary_double_star] = ACTIONS(1041), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_splat] = STATE(4632), + [sym_double_splat] = STATE(4632), + [sym_named_expr] = STATE(4632), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(1539), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(1577), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(1583), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__unary_star] = ACTIONS(1607), + [sym__unary_double_star] = ACTIONS(1609), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [959] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6578), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5092), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(5829), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5260), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(959), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2338), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2340), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__unary_star] = ACTIONS(2348), - [sym__unary_double_star] = ACTIONS(2350), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(9196), + [sym_double_splat] = STATE(9196), + [sym_named_expr] = STATE(9196), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__unary_star] = ACTIONS(757), + [sym__unary_double_star] = ACTIONS(759), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [960] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5910), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5002), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(5733), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6463), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5078), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(5830), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(960), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_splat] = STATE(5915), - [sym_double_splat] = STATE(5915), - [sym_named_expr] = STATE(5915), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(2120), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__unary_star] = ACTIONS(2142), - [sym__unary_double_star] = ACTIONS(2144), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2254), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2256), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__unary_star] = ACTIONS(2264), + [sym__unary_double_star] = ACTIONS(2266), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [961] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5170), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6655), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(961), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(5171), - [sym_double_splat] = STATE(5171), - [sym_named_expr] = STATE(5171), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__unary_star] = ACTIONS(743), - [sym__unary_double_star] = ACTIONS(745), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(6551), + [sym_double_splat] = STATE(6551), + [sym_named_expr] = STATE(6551), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [962] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6639), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5164), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(6312), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4996), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(962), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2441), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2443), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__unary_star] = ACTIONS(2451), - [sym__unary_double_star] = ACTIONS(2453), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [963] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3981), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3125), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(3675), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4496), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(963), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_splat] = STATE(3917), - [sym_double_splat] = STATE(3917), - [sym_named_expr] = STATE(3917), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1303), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__unary_star] = ACTIONS(1325), - [sym__unary_double_star] = ACTIONS(1327), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(9262), + [sym_double_splat] = STATE(9262), + [sym_named_expr] = STATE(9262), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [964] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6299), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6536), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5119), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6062), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(964), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(2316), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__unary_star] = ACTIONS(2340), + [sym__unary_double_star] = ACTIONS(2342), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [965] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6773), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4496), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3293), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(4164), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(965), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [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), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(533), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(573), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(579), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__unary_star] = ACTIONS(613), + [sym__unary_double_star] = ACTIONS(615), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [966] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2571), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2373), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2491), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6036), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4920), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5599), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(966), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_splat] = STATE(2583), - [sym_double_splat] = STATE(2583), - [sym_named_expr] = STATE(2583), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(135), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(177), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(183), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__unary_star] = ACTIONS(213), - [sym__unary_double_star] = ACTIONS(215), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(1099), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(1111), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(1113), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__unary_star] = ACTIONS(1125), + [sym__unary_double_star] = ACTIONS(1127), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [967] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3016), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2471), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2795), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(6016), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5011), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(5665), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(967), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_splat] = STATE(3017), - [sym_double_splat] = STATE(3017), - [sym_named_expr] = STATE(3017), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(1207), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_splat] = STATE(6253), + [sym_double_splat] = STATE(6253), + [sym_named_expr] = STATE(6253), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(975), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(1015), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(1021), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__unary_star] = ACTIONS(1055), + [sym__unary_double_star] = ACTIONS(1057), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [968] = { + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5521), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4717), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5278), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), + [sym_heredoc_body] = STATE(968), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_splat] = STATE(5522), + [sym_double_splat] = STATE(5522), + [sym_named_expr] = STATE(5522), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(851), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(891), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(897), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__unary_star] = ACTIONS(931), + [sym__unary_double_star] = ACTIONS(933), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(945), + [sym__string_percent_literal_start] = ACTIONS(947), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [969] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5470), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(4836), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(5330), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(969), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_splat] = STATE(3614), + [sym_double_splat] = STATE(3614), + [sym_named_expr] = STATE(3614), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(801), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(813), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(815), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__unary_star] = ACTIONS(829), + [sym__unary_double_star] = ACTIONS(831), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [970] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6727), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(970), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(9737), + [sym_double_splat] = STATE(9737), + [sym_named_expr] = STATE(9737), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [971] = { + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2549), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2363), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2506), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), + [sym_heredoc_body] = STATE(971), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_splat] = STATE(2597), + [sym_double_splat] = STATE(2597), + [sym_named_expr] = STATE(2597), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(137), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(179), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(185), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__unary_star] = ACTIONS(219), + [sym__unary_double_star] = ACTIONS(221), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [972] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6746), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3679), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4645), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(972), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(10459), + [sym_double_splat] = STATE(10459), + [sym_named_expr] = STATE(10459), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(1673), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(1679), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__unary_star] = ACTIONS(1703), + [sym__unary_double_star] = ACTIONS(1705), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [973] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3127), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2461), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(2845), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(973), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_splat] = STATE(3128), + [sym_double_splat] = STATE(3128), + [sym_named_expr] = STATE(3128), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(1223), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -181934,12723 +184843,12291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(1221), + [sym__constant_segment] = ACTIONS(1237), [anon_sym_COLON_COLON] = ACTIONS(85), [anon_sym___LINE__] = ACTIONS(87), [anon_sym___END_LINE__] = ACTIONS(87), [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(1223), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(1239), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__unary_star] = ACTIONS(1235), - [sym__unary_double_star] = ACTIONS(1237), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__unary_star] = ACTIONS(1251), + [sym__unary_double_star] = ACTIONS(1253), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [968] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6819), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5221), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6448), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(968), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_splat] = STATE(6644), - [sym_double_splat] = STATE(6644), - [sym_named_expr] = STATE(6644), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(2623), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(2661), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(2667), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__unary_star] = ACTIONS(2689), - [sym__unary_double_star] = ACTIONS(2691), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [969] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4370), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(969), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [970] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4891), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(970), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(4317), - [sym_double_splat] = STATE(4317), - [sym_named_expr] = STATE(4317), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [971] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4638), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3357), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4326), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), - [sym_heredoc_body] = STATE(971), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_splat] = STATE(4817), - [sym_double_splat] = STATE(4817), - [sym_named_expr] = STATE(4817), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(1489), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(1495), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__unary_star] = ACTIONS(1517), - [sym__unary_double_star] = ACTIONS(1519), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [972] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5500), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(4642), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(5126), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(972), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(3758), - [sym_double_splat] = STATE(3758), - [sym_named_expr] = STATE(3758), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(907), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(909), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__unary_star] = ACTIONS(923), - [sym__unary_double_star] = ACTIONS(925), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [973] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4157), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3008), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3670), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), - [sym_heredoc_body] = STATE(973), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_splat] = STATE(4026), - [sym_double_splat] = STATE(4026), - [sym_named_expr] = STATE(4026), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(443), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(449), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__unary_star] = ACTIONS(481), - [sym__unary_double_star] = ACTIONS(483), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - }, [974] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5601), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4650), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5310), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4292), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(2995), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3606), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(974), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_splat] = STATE(5602), - [sym_double_splat] = STATE(5602), - [sym_named_expr] = STATE(5602), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(835), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__unary_star] = ACTIONS(867), - [sym__unary_double_star] = ACTIONS(869), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(881), - [sym__string_percent_literal_start] = ACTIONS(883), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_splat] = STATE(3894), + [sym_double_splat] = STATE(3894), + [sym_named_expr] = STATE(3894), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(1275), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1313), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1319), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__unary_star] = ACTIONS(1343), + [sym__unary_double_star] = ACTIONS(1345), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [975] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6442), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5100), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6047), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3337), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2663), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3218), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(975), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_splat] = STATE(6481), - [sym_double_splat] = STATE(6481), - [sym_named_expr] = STATE(6481), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(2270), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(2276), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__unary_star] = ACTIONS(2298), - [sym__unary_double_star] = ACTIONS(2300), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_splat] = STATE(3462), + [sym_double_splat] = STATE(3462), + [sym_named_expr] = STATE(3462), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(275), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(315), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(321), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__unary_star] = ACTIONS(353), + [sym__unary_double_star] = ACTIONS(355), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [976] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4370), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3227), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(4109), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6067), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(4914), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(5648), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(976), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_splat] = STATE(9305), - [sym_double_splat] = STATE(9305), - [sym_named_expr] = STATE(9305), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(525), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(565), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(571), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__unary_star] = ACTIONS(601), - [sym__unary_double_star] = ACTIONS(603), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_splat] = STATE(6068), + [sym_double_splat] = STATE(6068), + [sym_named_expr] = STATE(6068), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(2131), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(2137), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__unary_star] = ACTIONS(2161), + [sym__unary_double_star] = ACTIONS(2163), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [977] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3417), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2769), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3248), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6932), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5370), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6458), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(977), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_splat] = STATE(3429), - [sym_double_splat] = STATE(3429), - [sym_named_expr] = STATE(3429), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(271), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(311), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(317), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__unary_star] = ACTIONS(349), - [sym__unary_double_star] = ACTIONS(351), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_splat] = STATE(6779), + [sym_double_splat] = STATE(6779), + [sym_named_expr] = STATE(6779), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(2670), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(2708), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(2714), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__unary_star] = ACTIONS(2738), + [sym__unary_double_star] = ACTIONS(2740), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [978] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6892), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3805), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4711), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6677), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5188), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(6507), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(978), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_splat] = STATE(9628), - [sym_double_splat] = STATE(9628), - [sym_named_expr] = STATE(9628), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(1623), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(1661), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(1667), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__unary_star] = ACTIONS(1689), - [sym__unary_double_star] = ACTIONS(1691), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_splat] = STATE(4568), + [sym_double_splat] = STATE(4568), + [sym_named_expr] = STATE(4568), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2452), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2454), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__unary_star] = ACTIONS(2462), + [sym__unary_double_star] = ACTIONS(2464), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [979] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5170), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4365), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5068), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5260), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4426), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5118), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(979), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_splat] = STATE(9155), - [sym_double_splat] = STATE(9155), - [sym_named_expr] = STATE(9155), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(667), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(707), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(713), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__unary_star] = ACTIONS(743), - [sym__unary_double_star] = ACTIONS(745), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_splat] = STATE(5261), + [sym_double_splat] = STATE(5261), + [sym_named_expr] = STATE(5261), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(677), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(717), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(723), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__unary_star] = ACTIONS(757), + [sym__unary_double_star] = ACTIONS(759), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [980] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7018), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7060), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(980), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7764), - [sym_index_operator] = STATE(2450), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_lhs_splat] = STATE(10505), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7793), + [sym_index_operator] = STATE(2437), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_lhs_splat] = STATE(10492), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), [aux_sym_multi_assign_repeat1] = STATE(983), - [sym_identifier] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), + [sym_identifier] = ACTIONS(3567), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(3538), - [sym_class_var] = ACTIONS(3540), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(3569), + [sym_class_var] = ACTIONS(3571), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [981] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7018), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7060), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(981), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7773), - [sym_index_operator] = STATE(2468), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_lhs_splat] = STATE(10476), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7808), + [sym_index_operator] = STATE(2438), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_lhs_splat] = STATE(10513), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), [aux_sym_multi_assign_repeat1] = STATE(983), - [sym_identifier] = ACTIONS(3542), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), + [sym_identifier] = ACTIONS(3573), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(3544), - [sym_class_var] = ACTIONS(3546), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(3575), + [sym_class_var] = ACTIONS(3577), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [982] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7018), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7060), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(982), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7751), - [sym_index_operator] = STATE(2425), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_lhs_splat] = STATE(10395), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7812), + [sym_index_operator] = STATE(2462), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_lhs_splat] = STATE(10560), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), [aux_sym_multi_assign_repeat1] = STATE(983), - [sym_identifier] = ACTIONS(3548), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), + [sym_identifier] = ACTIONS(3579), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), [anon_sym_STAR] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(3550), - [sym_class_var] = ACTIONS(3552), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(3581), + [sym_class_var] = ACTIONS(3583), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [983] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7018), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7060), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(983), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7766), - [sym_index_operator] = STATE(2444), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_lhs_splat] = STATE(10583), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7798), + [sym_index_operator] = STATE(2423), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_lhs_splat] = STATE(11490), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), [aux_sym_multi_assign_repeat1] = STATE(983), - [sym_identifier] = ACTIONS(3554), - [anon_sym_LPAREN] = ACTIONS(3557), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3560), - [sym_true] = ACTIONS(3560), - [sym_false] = ACTIONS(3560), - [aux_sym_integer_token2] = ACTIONS(3563), - [aux_sym_float_token2] = ACTIONS(3566), - [anon_sym_SQUOTE] = ACTIONS(3569), - [sym_operator_symbol] = ACTIONS(3572), - [sym_unquoted_symbol] = ACTIONS(3572), - [anon_sym_COLON_DQUOTE] = ACTIONS(3575), - [anon_sym_BQUOTE] = ACTIONS(3578), - [anon_sym_LBRACK] = ACTIONS(3581), - [anon_sym_DASH_GT] = ACTIONS(3584), - [anon_sym_STAR] = ACTIONS(3587), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3593), - [anon_sym_with] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3599), - [anon_sym_typeof] = ACTIONS(3602), - [anon_sym_sizeof] = ACTIONS(3605), - [anon_sym_instance_sizeof] = ACTIONS(3608), - [anon_sym_offsetof] = ACTIONS(3611), - [sym__constant_segment] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3617), - [anon_sym___LINE__] = ACTIONS(3620), - [anon_sym___END_LINE__] = ACTIONS(3620), - [anon_sym___FILE__] = ACTIONS(3620), - [anon_sym___DIR__] = ACTIONS(3620), - [sym_special_variable] = ACTIONS(3572), - [sym_identifier_method_call] = ACTIONS(3623), - [sym_instance_var] = ACTIONS(3626), - [sym_class_var] = ACTIONS(3626), - [sym_self] = ACTIONS(3560), - [anon_sym_begin] = ACTIONS(3629), - [anon_sym_while] = ACTIONS(3632), - [anon_sym_until] = ACTIONS(3635), - [anon_sym_case] = ACTIONS(3638), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3641), - [sym__start_of_named_tuple] = ACTIONS(3644), - [sym_unary_plus] = ACTIONS(3647), - [sym_unary_minus] = ACTIONS(3647), - [sym_unary_wrapping_plus] = ACTIONS(3650), - [sym_unary_wrapping_minus] = ACTIONS(3650), - [sym__beginless_range_operator] = ACTIONS(3653), - [sym__regex_start] = ACTIONS(3656), - [sym__regular_if_keyword] = ACTIONS(3659), - [sym__regular_unless_keyword] = ACTIONS(3662), - [sym__string_literal_start] = ACTIONS(3665), - [sym__string_percent_literal_start] = ACTIONS(3668), - [sym__command_percent_literal_start] = ACTIONS(3671), - [sym__string_array_percent_literal_start] = ACTIONS(3674), - [sym__symbol_array_percent_literal_start] = ACTIONS(3677), - [sym__regex_percent_literal_start] = ACTIONS(3680), - [sym_heredoc_start] = ACTIONS(3572), + [sym_identifier] = ACTIONS(3585), + [anon_sym_LPAREN] = ACTIONS(3588), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3591), + [sym_true] = ACTIONS(3591), + [sym_false] = ACTIONS(3591), + [aux_sym_integer_token2] = ACTIONS(3594), + [aux_sym_float_token2] = ACTIONS(3597), + [anon_sym_SQUOTE] = ACTIONS(3600), + [sym_operator_symbol] = ACTIONS(3603), + [sym_unquoted_symbol] = ACTIONS(3603), + [anon_sym_COLON_DQUOTE] = ACTIONS(3606), + [anon_sym_BQUOTE] = ACTIONS(3609), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_DASH_GT] = ACTIONS(3615), + [anon_sym_STAR] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3621), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_with] = ACTIONS(3627), + [anon_sym_yield] = ACTIONS(3630), + [anon_sym_typeof] = ACTIONS(3633), + [anon_sym_sizeof] = ACTIONS(3636), + [anon_sym_instance_sizeof] = ACTIONS(3639), + [anon_sym_offsetof] = ACTIONS(3642), + [sym__constant_segment] = ACTIONS(3645), + [anon_sym_COLON_COLON] = ACTIONS(3648), + [anon_sym___LINE__] = ACTIONS(3651), + [anon_sym___END_LINE__] = ACTIONS(3651), + [anon_sym___FILE__] = ACTIONS(3651), + [anon_sym___DIR__] = ACTIONS(3651), + [sym_special_variable] = ACTIONS(3603), + [sym_identifier_method_call] = ACTIONS(3654), + [sym_instance_var] = ACTIONS(3657), + [sym_class_var] = ACTIONS(3657), + [sym_self] = ACTIONS(3591), + [anon_sym_begin] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3663), + [anon_sym_until] = ACTIONS(3666), + [anon_sym_case] = ACTIONS(3669), + [anon_sym_select] = ACTIONS(3672), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3675), + [sym__start_of_named_tuple] = ACTIONS(3678), + [sym_unary_plus] = ACTIONS(3681), + [sym_unary_minus] = ACTIONS(3681), + [sym_unary_wrapping_plus] = ACTIONS(3684), + [sym_unary_wrapping_minus] = ACTIONS(3684), + [sym__beginless_range_operator] = ACTIONS(3687), + [sym__regex_start] = ACTIONS(3690), + [sym__regular_if_keyword] = ACTIONS(3693), + [sym__regular_unless_keyword] = ACTIONS(3696), + [sym__string_literal_start] = ACTIONS(3699), + [sym__string_percent_literal_start] = ACTIONS(3702), + [sym__command_percent_literal_start] = ACTIONS(3705), + [sym__string_array_percent_literal_start] = ACTIONS(3708), + [sym__symbol_array_percent_literal_start] = ACTIONS(3711), + [sym__regex_percent_literal_start] = ACTIONS(3714), + [sym_heredoc_start] = ACTIONS(3603), [sym__heredoc_body_start] = ACTIONS(7), }, [984] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6137), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(984), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3683), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10325), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3717), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [985] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5916), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(985), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10299), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3685), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3719), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [986] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6246), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(986), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3687), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(9816), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3721), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [987] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(987), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3689), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3723), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [988] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(988), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3691), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3725), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [989] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6265), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(989), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3693), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10020), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3727), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [990] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5858), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(990), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token1] = ACTIONS(3695), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token1] = ACTIONS(3697), - [aux_sym_float_token2] = ACTIONS(3699), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3729), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [991] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(991), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3701), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3731), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [992] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5791), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(992), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3703), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10173), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3733), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [993] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3278), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5955), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(993), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token1] = ACTIONS(3705), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token1] = ACTIONS(3707), - [aux_sym_float_token2] = ACTIONS(3709), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token1] = ACTIONS(3735), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token1] = ACTIONS(3737), + [aux_sym_float_token2] = ACTIONS(3739), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [994] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(994), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3711), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3741), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [995] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5808), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(995), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3713), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10371), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3743), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [996] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4360), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4615), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(996), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token1] = ACTIONS(3715), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token1] = ACTIONS(3717), - [aux_sym_float_token2] = ACTIONS(3719), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token1] = ACTIONS(3745), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token1] = ACTIONS(3747), + [aux_sym_float_token2] = ACTIONS(3749), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [997] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3462), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(997), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token1] = ACTIONS(3721), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token1] = ACTIONS(3723), - [aux_sym_float_token2] = ACTIONS(3725), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3751), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [998] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5822), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(998), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3727), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(9776), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3753), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [999] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6211), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(999), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token1] = ACTIONS(3729), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token1] = ACTIONS(3731), - [aux_sym_float_token2] = ACTIONS(3733), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3755), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1000] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1000), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3735), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3757), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1001] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1001), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3737), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3759), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1002] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1002), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3739), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3761), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1003] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1003), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3741), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3763), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1004] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1004), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3743), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3765), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1005] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6882), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3155), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1005), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token1] = ACTIONS(3745), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token1] = ACTIONS(3747), - [aux_sym_float_token2] = ACTIONS(3749), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token1] = ACTIONS(3767), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token1] = ACTIONS(3769), + [aux_sym_float_token2] = ACTIONS(3771), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [1006] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4976), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6738), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1006), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token1] = ACTIONS(3751), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token1] = ACTIONS(3753), - [aux_sym_float_token2] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token1] = ACTIONS(3773), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token1] = ACTIONS(3775), + [aux_sym_float_token2] = ACTIONS(3777), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1007] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5357), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(1007), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3757), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token1] = ACTIONS(3779), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token1] = ACTIONS(3781), + [aux_sym_float_token2] = ACTIONS(3783), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [1008] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6245), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1008), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3759), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10078), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3785), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1009] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1009), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3761), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3787), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1010] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5644), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1010), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token1] = ACTIONS(3763), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token1] = ACTIONS(3765), - [aux_sym_float_token2] = ACTIONS(3767), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3789), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1011] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6627), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1011), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3769), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token1] = ACTIONS(3745), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token1] = ACTIONS(3747), + [aux_sym_float_token2] = ACTIONS(3749), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1012] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1012), - [sym_identifier] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3238), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [sym_operator_symbol] = ACTIONS(3236), - [sym_unquoted_symbol] = ACTIONS(3236), - [anon_sym_COLON_DQUOTE] = ACTIONS(3236), - [anon_sym_BQUOTE] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_COMMA] = ACTIONS(3236), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_DASH_GT] = ACTIONS(3236), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3238), - [anon_sym_GT_GT] = ACTIONS(3238), - [anon_sym_LT_LT] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ_GT] = ACTIONS(3236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG_TILDE] = ACTIONS(3236), - [anon_sym_EQ_TILDE] = ACTIONS(3236), - [anon_sym_AMP_STAR] = ACTIONS(3238), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3236), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym_instance_sizeof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [sym__constant_segment] = ACTIONS(3236), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym___LINE__] = ACTIONS(3238), - [anon_sym___END_LINE__] = ACTIONS(3238), - [anon_sym___FILE__] = ACTIONS(3238), - [anon_sym___DIR__] = ACTIONS(3238), - [sym_special_variable] = ACTIONS(3236), - [sym_identifier_method_call] = ACTIONS(3236), - [sym_instance_var] = ACTIONS(3236), - [sym_class_var] = ACTIONS(3236), - [sym_self] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_AMP_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_AMP_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_EQ] = ACTIONS(3242), - [anon_sym_CARET_EQ] = ACTIONS(3242), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3242), - [anon_sym_LT_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_GT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_AMP_EQ] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_begin] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_until] = ACTIONS(3238), - [anon_sym_then] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [sym__line_break] = ACTIONS(3236), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3236), - [sym__start_of_hash_or_tuple] = ACTIONS(3236), - [sym__start_of_named_tuple] = ACTIONS(3236), - [sym__start_of_index_operator] = ACTIONS(3236), - [sym_unary_plus] = ACTIONS(3236), - [sym_unary_minus] = ACTIONS(3236), - [sym_binary_plus] = ACTIONS(3236), - [sym_binary_minus] = ACTIONS(3236), - [sym_unary_wrapping_plus] = ACTIONS(3236), - [sym_unary_wrapping_minus] = ACTIONS(3236), - [sym_binary_wrapping_plus] = ACTIONS(3236), - [sym_binary_wrapping_minus] = ACTIONS(3236), - [sym__unary_star] = ACTIONS(3236), - [sym__binary_star] = ACTIONS(3236), - [sym__unary_double_star] = ACTIONS(3236), - [sym__binary_double_star] = ACTIONS(3236), - [sym__block_ampersand] = ACTIONS(3236), - [sym_binary_ampersand] = ACTIONS(3236), - [sym__beginless_range_operator] = ACTIONS(3236), - [sym__regex_start] = ACTIONS(3236), - [sym__binary_slash] = ACTIONS(3236), - [sym__binary_double_slash] = ACTIONS(3236), - [sym__regular_if_keyword] = ACTIONS(3236), - [sym__regular_unless_keyword] = ACTIONS(3236), - [sym__modulo_operator] = ACTIONS(3236), - [sym__string_literal_start] = ACTIONS(3236), - [sym__string_percent_literal_start] = ACTIONS(3236), - [sym__command_percent_literal_start] = ACTIONS(3236), - [sym__string_array_percent_literal_start] = ACTIONS(3236), - [sym__symbol_array_percent_literal_start] = ACTIONS(3236), - [sym__regex_percent_literal_start] = ACTIONS(3236), - [sym_heredoc_start] = ACTIONS(3236), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3236), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3791), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), }, [1013] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6613), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(1013), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3771), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token1] = ACTIONS(3793), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token1] = ACTIONS(3795), + [aux_sym_float_token2] = ACTIONS(3797), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [1014] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6605), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2616), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1014), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token1] = ACTIONS(3773), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token1] = ACTIONS(3775), - [aux_sym_float_token2] = ACTIONS(3777), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token1] = ACTIONS(3799), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token1] = ACTIONS(3801), + [aux_sym_float_token2] = ACTIONS(3803), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1015] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6174), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1015), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3779), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token1] = ACTIONS(3805), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token1] = ACTIONS(3807), + [aux_sym_float_token2] = ACTIONS(3809), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1016] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4615), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1016), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3781), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token1] = ACTIONS(3745), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token1] = ACTIONS(3747), + [aux_sym_float_token2] = ACTIONS(3749), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1017] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6738), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1017), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3783), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token1] = ACTIONS(3773), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token1] = ACTIONS(3775), + [aux_sym_float_token2] = ACTIONS(3777), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1018] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4189), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1018), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3785), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token1] = ACTIONS(3811), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token1] = ACTIONS(3813), + [aux_sym_float_token2] = ACTIONS(3815), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1019] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1019), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3787), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3817), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1020] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6333), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4704), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1020), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token1] = ACTIONS(3789), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token1] = ACTIONS(3791), - [aux_sym_float_token2] = ACTIONS(3793), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token1] = ACTIONS(3819), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token1] = ACTIONS(3821), + [aux_sym_float_token2] = ACTIONS(3823), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1021] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6211), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1021), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token1] = ACTIONS(3729), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token1] = ACTIONS(3731), - [aux_sym_float_token2] = ACTIONS(3733), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3825), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1022] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4769), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1022), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token1] = ACTIONS(3789), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token1] = ACTIONS(3791), - [aux_sym_float_token2] = ACTIONS(3793), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3827), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1023] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6882), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5988), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1023), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token1] = ACTIONS(3745), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token1] = ACTIONS(3747), - [aux_sym_float_token2] = ACTIONS(3749), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10062), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3829), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1024] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4191), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6240), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1024), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token1] = ACTIONS(3715), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token1] = ACTIONS(3717), - [aux_sym_float_token2] = ACTIONS(3719), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(9809), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3831), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1025] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4788), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3864), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(1025), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token1] = ACTIONS(3751), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token1] = ACTIONS(3753), - [aux_sym_float_token2] = ACTIONS(3755), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token1] = ACTIONS(3833), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token1] = ACTIONS(3835), + [aux_sym_float_token2] = ACTIONS(3837), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [1026] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5773), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6627), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1026), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10365), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3795), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token1] = ACTIONS(3745), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token1] = ACTIONS(3747), + [aux_sym_float_token2] = ACTIONS(3749), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1027] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4769), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5460), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1027), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token1] = ACTIONS(3789), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token1] = ACTIONS(3791), - [aux_sym_float_token2] = ACTIONS(3793), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token1] = ACTIONS(3839), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token1] = ACTIONS(3841), + [aux_sym_float_token2] = ACTIONS(3843), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1028] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1028), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3797), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3845), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1029] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4769), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6041), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1029), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token1] = ACTIONS(3789), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token1] = ACTIONS(3791), - [aux_sym_float_token2] = ACTIONS(3793), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10240), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3847), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1030] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5850), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1030), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10362), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3799), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3849), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1031] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5209), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3341), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1031), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token1] = ACTIONS(3801), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token1] = ACTIONS(3803), - [aux_sym_float_token2] = ACTIONS(3805), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token1] = ACTIONS(3851), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token1] = ACTIONS(3853), + [aux_sym_float_token2] = ACTIONS(3855), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1032] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5894), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4952), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1032), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10020), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3807), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token1] = ACTIONS(3819), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token1] = ACTIONS(3821), + [aux_sym_float_token2] = ACTIONS(3823), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1033] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5918), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6078), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1033), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(9708), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3809), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10331), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3857), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1034] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3219), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1034), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3811), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token1] = ACTIONS(3767), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token1] = ACTIONS(3769), + [aux_sym_float_token2] = ACTIONS(3771), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(53), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [1035] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4002), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1035), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token1] = ACTIONS(3813), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token1] = ACTIONS(3815), - [aux_sym_float_token2] = ACTIONS(3817), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3859), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1036] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5985), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1036), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(9820), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3819), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3861), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1037] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6187), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6137), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1037), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(9819), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3821), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10033), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3863), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1038] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6016), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1038), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(9918), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3823), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3865), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1039] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6072), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5651), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(1039), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10005), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3825), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token1] = ACTIONS(3867), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token1] = ACTIONS(3869), + [aux_sym_float_token2] = ACTIONS(3871), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [1040] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1040), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3827), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3873), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1041] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6333), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6170), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1041), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token1] = ACTIONS(3789), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token1] = ACTIONS(3791), - [aux_sym_float_token2] = ACTIONS(3793), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(9785), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3875), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1042] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6098), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4615), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1042), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10099), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3829), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token1] = ACTIONS(3745), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token1] = ACTIONS(3747), + [aux_sym_float_token2] = ACTIONS(3749), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1043] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6115), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1043), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10216), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3831), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3877), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1044] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5524), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1044), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token1] = ACTIONS(3833), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token1] = ACTIONS(3835), - [aux_sym_float_token2] = ACTIONS(3837), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3879), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1045] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6131), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1045), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10304), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3839), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3881), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1046] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5752), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1046), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10287), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3841), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3883), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1047] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4229), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1047), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token1] = ACTIONS(3763), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token1] = ACTIONS(3765), - [aux_sym_float_token2] = ACTIONS(3767), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3885), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1048] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3007), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1048), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token1] = ACTIONS(3705), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token1] = ACTIONS(3707), - [aux_sym_float_token2] = ACTIONS(3709), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3887), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1049] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1049), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3843), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3889), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1050] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2590), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6209), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1050), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token1] = ACTIONS(3845), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token1] = ACTIONS(3847), - [aux_sym_float_token2] = ACTIONS(3849), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10347), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3891), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1051] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4229), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4201), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1051), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token1] = ACTIONS(3763), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token1] = ACTIONS(3765), - [aux_sym_float_token2] = ACTIONS(3767), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token1] = ACTIONS(3839), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token1] = ACTIONS(3841), + [aux_sym_float_token2] = ACTIONS(3843), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1052] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1052), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3851), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3893), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1053] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1053), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3853), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3895), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1054] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1054), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3855), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3897), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1055] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1055), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3857), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3899), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1056] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1056), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3859), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3901), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1057] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1057), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3861), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3903), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1058] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4615), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1058), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3863), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token1] = ACTIONS(3745), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token1] = ACTIONS(3747), + [aux_sym_float_token2] = ACTIONS(3749), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1059] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6240), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1059), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3865), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10309), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3905), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1060] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5988), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1060), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3867), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10312), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3333), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1061] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6041), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1061), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3869), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10319), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3907), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1062] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4769), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4380), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1062), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token1] = ACTIONS(3789), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token1] = ACTIONS(3791), - [aux_sym_float_token2] = ACTIONS(3793), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token1] = ACTIONS(3811), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token1] = ACTIONS(3813), + [aux_sym_float_token2] = ACTIONS(3815), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1063] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5916), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6265), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1063), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10251), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3871), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10327), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3909), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1064] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5773), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4201), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1064), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10256), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3256), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token1] = ACTIONS(3839), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token1] = ACTIONS(3841), + [aux_sym_float_token2] = ACTIONS(3843), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1065] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5834), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6223), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1065), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10263), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3873), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10114), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3911), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1066] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5894), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6245), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1066), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10268), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3875), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10442), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3913), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1067] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6098), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1067), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10270), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3877), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3915), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1068] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6187), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1068), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3879), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3917), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1069] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6174), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1069), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3881), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token1] = ACTIONS(3805), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token1] = ACTIONS(3807), + [aux_sym_float_token2] = ACTIONS(3809), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1070] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5834), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6942), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1070), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10082), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3883), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_hash_entry] = STATE(10514), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1071] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2980), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(3983), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1071), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2220), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym_multi_assign_repeat2] = STATE(1077), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1072] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3161), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1072), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -194663,12 +197140,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -194680,703 +197157,469 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1072] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1072), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3885), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, [1073] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3163), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1073), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3394), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym_multi_assign_repeat2] = STATE(1098), + [sym_identifier] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [1074] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3177), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1074), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3887), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym_multi_assign_repeat2] = STATE(1099), + [sym_identifier] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [1075] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3179), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1075), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3889), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym_multi_assign_repeat2] = STATE(1100), + [sym_identifier] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [1076] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(2915), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1076), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3891), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1077] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2985), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1077), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2220), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym_multi_assign_repeat2] = STATE(1101), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -195389,12 +197632,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -195406,582 +197649,961 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, + [1077] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4113), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1077), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, [1078] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4120), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1078), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3893), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym_multi_assign_repeat2] = STATE(1087), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1079] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4122), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1079), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3895), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym_multi_assign_repeat2] = STATE(1088), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1080] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4133), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1080), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3897), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym_multi_assign_repeat2] = STATE(1089), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1081] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3923), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4146), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1081), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym_multi_assign_repeat2] = STATE(1200), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym_multi_assign_repeat2] = STATE(1090), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1082] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3093), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4149), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1082), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym_multi_assign_repeat2] = STATE(1149), - [sym_identifier] = ACTIONS(2220), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym_multi_assign_repeat2] = STATE(1091), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1083] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4152), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1083), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym_multi_assign_repeat2] = STATE(1092), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1084] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(2918), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1084), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym_multi_assign_repeat2] = STATE(1102), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -195994,12 +198616,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -196011,461 +198633,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1083] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1083), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3899), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1084] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3926), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1084), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym_multi_assign_repeat2] = STATE(1222), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, [1085] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(2920), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1085), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3901), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1086] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2990), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1086), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2220), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym_multi_assign_repeat2] = STATE(1103), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -196478,12 +198739,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -196495,582 +198756,1576 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, + [1086] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1086), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3919), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, [1087] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4288), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1087), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3903), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1088] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4289), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1088), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3406), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1089] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3931), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4290), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1089), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym_multi_assign_repeat2] = STATE(1203), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1090] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4291), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1090), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3905), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1091] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3101), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4293), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1091), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym_multi_assign_repeat2] = STATE(1077), - [sym_identifier] = ACTIONS(2220), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1092] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4294), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1092), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1093] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1093), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(3921), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1094] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6579), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1094), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(3923), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1095] = { + [sym_heredoc_body] = STATE(1095), + [sym_identifier] = ACTIONS(3269), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3269), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [aux_sym_integer_token2] = ACTIONS(3269), + [aux_sym_float_token2] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [sym_operator_symbol] = ACTIONS(3267), + [sym_unquoted_symbol] = ACTIONS(3267), + [anon_sym_COLON_DQUOTE] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_LT_LT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ_GT] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_AMP_STAR] = ACTIONS(3269), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_EQ] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3269), + [anon_sym_instance_sizeof] = ACTIONS(3269), + [anon_sym_offsetof] = ACTIONS(3269), + [sym__constant_segment] = ACTIONS(3267), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym___LINE__] = ACTIONS(3269), + [anon_sym___END_LINE__] = ACTIONS(3269), + [anon_sym___FILE__] = ACTIONS(3269), + [anon_sym___DIR__] = ACTIONS(3269), + [sym_special_variable] = ACTIONS(3267), + [sym_identifier_method_call] = ACTIONS(3267), + [sym_instance_var] = ACTIONS(3267), + [sym_class_var] = ACTIONS(3267), + [sym_self] = ACTIONS(3269), + [anon_sym_LPAREN2] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3269), + [anon_sym_PIPE_PIPE] = ACTIONS(3269), + [anon_sym_PLUS_EQ] = ACTIONS(3273), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(3273), + [anon_sym_DASH_EQ] = ACTIONS(3273), + [anon_sym_AMP_DASH_EQ] = ACTIONS(3273), + [anon_sym_STAR_EQ] = ACTIONS(3273), + [anon_sym_AMP_STAR_EQ] = ACTIONS(3273), + [anon_sym_SLASH_EQ] = ACTIONS(3273), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3273), + [anon_sym_PERCENT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_EQ] = ACTIONS(3273), + [anon_sym_CARET_EQ] = ACTIONS(3273), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3273), + [anon_sym_LT_LT_EQ] = ACTIONS(3273), + [anon_sym_GT_GT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_begin] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_until] = ACTIONS(3269), + [anon_sym_then] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [sym__line_break] = ACTIONS(3267), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3267), + [sym__start_of_hash_or_tuple] = ACTIONS(3267), + [sym__start_of_named_tuple] = ACTIONS(3267), + [sym__start_of_index_operator] = ACTIONS(3267), + [sym_unary_plus] = ACTIONS(3267), + [sym_unary_minus] = ACTIONS(3267), + [sym_binary_plus] = ACTIONS(3267), + [sym_binary_minus] = ACTIONS(3267), + [sym_unary_wrapping_plus] = ACTIONS(3267), + [sym_unary_wrapping_minus] = ACTIONS(3267), + [sym_binary_wrapping_plus] = ACTIONS(3267), + [sym_binary_wrapping_minus] = ACTIONS(3267), + [sym__unary_star] = ACTIONS(3267), + [sym__binary_star] = ACTIONS(3267), + [sym__unary_double_star] = ACTIONS(3267), + [sym__binary_double_star] = ACTIONS(3267), + [sym__block_ampersand] = ACTIONS(3267), + [sym_binary_ampersand] = ACTIONS(3267), + [sym__beginless_range_operator] = ACTIONS(3267), + [sym__regex_start] = ACTIONS(3267), + [sym__binary_slash] = ACTIONS(3267), + [sym__binary_double_slash] = ACTIONS(3267), + [sym__regular_if_keyword] = ACTIONS(3267), + [sym__regular_unless_keyword] = ACTIONS(3267), + [sym__modulo_operator] = ACTIONS(3267), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3267), + [sym__command_percent_literal_start] = ACTIONS(3267), + [sym__string_array_percent_literal_start] = ACTIONS(3267), + [sym__symbol_array_percent_literal_start] = ACTIONS(3267), + [sym__regex_percent_literal_start] = ACTIONS(3267), + [sym_heredoc_start] = ACTIONS(3267), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3267), + }, + [1096] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1096), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(3925), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1097] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6974), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1097), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(3927), + [anon_sym_LPAREN] = ACTIONS(3930), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3933), + [sym_true] = ACTIONS(3933), + [sym_false] = ACTIONS(3933), + [aux_sym_integer_token2] = ACTIONS(3936), + [aux_sym_float_token2] = ACTIONS(3939), + [anon_sym_SQUOTE] = ACTIONS(3942), + [sym_operator_symbol] = ACTIONS(3945), + [sym_unquoted_symbol] = ACTIONS(3945), + [anon_sym_COLON_DQUOTE] = ACTIONS(3948), + [anon_sym_BQUOTE] = ACTIONS(3951), + [anon_sym_LBRACK] = ACTIONS(3954), + [anon_sym_DASH_GT] = ACTIONS(3957), + [anon_sym_BANG] = ACTIONS(3960), + [anon_sym_TILDE] = ACTIONS(3963), + [anon_sym_with] = ACTIONS(3966), + [anon_sym_yield] = ACTIONS(3969), + [anon_sym_typeof] = ACTIONS(3972), + [anon_sym_sizeof] = ACTIONS(3975), + [anon_sym_instance_sizeof] = ACTIONS(3978), + [anon_sym_offsetof] = ACTIONS(3981), + [sym__constant_segment] = ACTIONS(3984), + [anon_sym_COLON_COLON] = ACTIONS(3987), + [anon_sym___LINE__] = ACTIONS(3990), + [anon_sym___END_LINE__] = ACTIONS(3990), + [anon_sym___FILE__] = ACTIONS(3990), + [anon_sym___DIR__] = ACTIONS(3990), + [sym_special_variable] = ACTIONS(3945), + [sym_identifier_method_call] = ACTIONS(3993), + [sym_instance_var] = ACTIONS(3996), + [sym_class_var] = ACTIONS(3996), + [sym_self] = ACTIONS(3933), + [anon_sym_begin] = ACTIONS(3999), + [anon_sym_while] = ACTIONS(4002), + [anon_sym_until] = ACTIONS(4005), + [anon_sym_case] = ACTIONS(4008), + [anon_sym_select] = ACTIONS(4011), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4014), + [sym__start_of_named_tuple] = ACTIONS(4017), + [sym_unary_plus] = ACTIONS(4020), + [sym_unary_minus] = ACTIONS(4020), + [sym_unary_wrapping_plus] = ACTIONS(4023), + [sym_unary_wrapping_minus] = ACTIONS(4023), + [sym__beginless_range_operator] = ACTIONS(4026), + [sym__regex_start] = ACTIONS(4029), + [sym__regular_if_keyword] = ACTIONS(4032), + [sym__regular_unless_keyword] = ACTIONS(4035), + [sym__string_literal_start] = ACTIONS(4038), + [sym__string_percent_literal_start] = ACTIONS(4041), + [sym__command_percent_literal_start] = ACTIONS(4044), + [sym__string_array_percent_literal_start] = ACTIONS(4047), + [sym__symbol_array_percent_literal_start] = ACTIONS(4050), + [sym__regex_percent_literal_start] = ACTIONS(4053), + [sym_heredoc_start] = ACTIONS(3945), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1098] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(2949), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1098), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -197083,12 +200338,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -197100,20060 +200355,22457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1092] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1092), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3907), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1093] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1093), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3909), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1094] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3935), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1094), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym_multi_assign_repeat2] = STATE(1154), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1095] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1095), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3911), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1096] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1096), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3913), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1097] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1097), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3915), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1098] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3947), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1098), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym_multi_assign_repeat2] = STATE(1166), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, [1099] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(2950), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1099), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3917), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [1100] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(2965), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1100), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3919), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [1101] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(2966), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1101), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3921), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [1102] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(2876), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1102), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3923), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [1103] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(2968), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1103), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3925), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [1104] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1104), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3927), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4056), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1105] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1105), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3929), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4058), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1106] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1106), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3931), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4060), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1107] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1107), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3933), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4062), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1108] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1108), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3935), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4064), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1109] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1109), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3937), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4066), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1110] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4669), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1110), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3939), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [aux_sym_multi_assign_repeat2] = STATE(1111), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1111] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4810), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1111), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3941), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1112] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4814), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1112), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3943), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [aux_sym_multi_assign_repeat2] = STATE(1118), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1113] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4859), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1113), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3945), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [aux_sym_multi_assign_repeat2] = STATE(1119), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1114] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4861), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1114), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3947), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [aux_sym_multi_assign_repeat2] = STATE(1120), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1115] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4868), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1115), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3949), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [aux_sym_multi_assign_repeat2] = STATE(1121), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1116] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6286), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4869), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1116), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3951), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [aux_sym_multi_assign_repeat2] = STATE(1122), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1117] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4871), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1117), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [aux_sym_multi_assign_repeat2] = STATE(1123), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1118] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4695), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1118), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3955), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1119] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4696), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1119), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3957), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1120] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4697), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1120), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3959), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1121] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4698), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1121), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3961), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1122] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4699), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1122), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3963), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1123] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4715), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1123), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3965), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [aux_sym_multi_assign_repeat2] = STATE(1097), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1124] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6332), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1124), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3967), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3393), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1125] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1125), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3969), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4068), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1126] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1126), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3971), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(3431), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1127] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1127), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3973), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4070), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1128] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1128), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3975), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4072), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1129] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3083), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1129), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym_multi_assign_repeat2] = STATE(1139), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4074), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1130] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6521), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1130), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3977), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4076), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1131] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1131), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3979), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4078), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1132] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1132), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3981), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4080), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1133] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1133), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3983), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4082), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1134] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1134), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3985), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4084), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1135] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6354), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1135), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3987), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4086), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1136] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1136), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3989), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4088), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1137] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1137), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3991), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4090), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1138] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1138), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3993), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4092), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1139] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2981), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1139), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4094), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1140] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6359), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1140), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(3995), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4096), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1141] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1141), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(3997), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4098), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1142] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2991), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1142), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4100), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1143] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1143), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(3999), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4102), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1144] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1144), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4001), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4104), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1145] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6367), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1145), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4003), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4106), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1146] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1146), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4005), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4108), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1147] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1147), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4007), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4110), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1148] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1148), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4009), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4112), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1149] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2984), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1149), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4114), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1150] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6371), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1150), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4011), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4116), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1151] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3068), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1151), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym_multi_assign_repeat2] = STATE(1071), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4118), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1152] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1152), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4013), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4120), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1153] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3105), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1153), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym_multi_assign_repeat2] = STATE(1086), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4122), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1154] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3984), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1154), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4124), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1155] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6523), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1155), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4015), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4126), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1156] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1156), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(4017), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4128), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1157] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1157), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4019), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4130), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1158] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3064), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1158), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4132), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1159] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6377), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1159), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4021), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4134), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1160] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1160), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(4023), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4136), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1161] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3114), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1161), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym_multi_assign_repeat2] = STATE(1142), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4138), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1162] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1162), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(4025), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4140), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1163] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6524), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1163), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4027), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4142), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1164] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1164), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4029), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4144), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1165] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1165), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4031), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4146), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1166] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3985), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1166), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4148), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1167] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1167), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4033), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4150), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1168] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6304), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1168), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4035), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4152), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1169] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7000), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1169), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_hash_entry] = STATE(10435), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4154), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1170] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1170), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(4037), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4156), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1171] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6526), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1171), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4039), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4158), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1172] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1172), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4041), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4160), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1173] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1173), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4043), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4162), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1174] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1174), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(4045), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4164), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1175] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6398), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1175), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4047), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1176] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1176), - [sym_identifier] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3238), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [sym_operator_symbol] = ACTIONS(3236), - [sym_unquoted_symbol] = ACTIONS(3236), - [anon_sym_COLON_DQUOTE] = ACTIONS(3236), - [anon_sym_BQUOTE] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_COMMA] = ACTIONS(3236), - [anon_sym_RBRACK] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_DASH_GT] = ACTIONS(3236), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3238), - [anon_sym_GT_GT] = ACTIONS(3238), - [anon_sym_LT_LT] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ_GT] = ACTIONS(3236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG_TILDE] = ACTIONS(3236), - [anon_sym_EQ_TILDE] = ACTIONS(3236), - [anon_sym_AMP_STAR] = ACTIONS(3238), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3236), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym_instance_sizeof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [sym__constant_segment] = ACTIONS(3236), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym___LINE__] = ACTIONS(3238), - [anon_sym___END_LINE__] = ACTIONS(3238), - [anon_sym___FILE__] = ACTIONS(3238), - [anon_sym___DIR__] = ACTIONS(3238), - [sym_special_variable] = ACTIONS(3236), - [sym_identifier_method_call] = ACTIONS(3236), - [sym_instance_var] = ACTIONS(3236), - [sym_class_var] = ACTIONS(3236), - [sym_self] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(3236), - [anon_sym_RBRACK_QMARK] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_AMP_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_AMP_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_EQ] = ACTIONS(3242), - [anon_sym_CARET_EQ] = ACTIONS(3242), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3242), - [anon_sym_LT_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_GT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_AMP_EQ] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_begin] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_until] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3236), - [sym__start_of_hash_or_tuple] = ACTIONS(3236), - [sym__start_of_named_tuple] = ACTIONS(3236), - [sym__start_of_index_operator] = ACTIONS(3236), - [sym_unary_plus] = ACTIONS(3236), - [sym_unary_minus] = ACTIONS(3236), - [sym_binary_plus] = ACTIONS(3236), - [sym_binary_minus] = ACTIONS(3236), - [sym_unary_wrapping_plus] = ACTIONS(3236), - [sym_unary_wrapping_minus] = ACTIONS(3236), - [sym_binary_wrapping_plus] = ACTIONS(3236), - [sym_binary_wrapping_minus] = ACTIONS(3236), - [sym__unary_star] = ACTIONS(3236), - [sym__binary_star] = ACTIONS(3236), - [sym__unary_double_star] = ACTIONS(3236), - [sym__binary_double_star] = ACTIONS(3236), - [sym__block_ampersand] = ACTIONS(3236), - [sym_binary_ampersand] = ACTIONS(3236), - [sym__beginless_range_operator] = ACTIONS(3236), - [sym__regex_start] = ACTIONS(3236), - [sym__binary_slash] = ACTIONS(3236), - [sym__binary_double_slash] = ACTIONS(3236), - [sym__regular_if_keyword] = ACTIONS(3236), - [sym__regular_unless_keyword] = ACTIONS(3236), - [sym__modulo_operator] = ACTIONS(3236), - [sym__string_literal_start] = ACTIONS(3236), - [sym__string_percent_literal_start] = ACTIONS(3236), - [sym__command_percent_literal_start] = ACTIONS(3236), - [sym__string_array_percent_literal_start] = ACTIONS(3236), - [sym__symbol_array_percent_literal_start] = ACTIONS(3236), - [sym__regex_percent_literal_start] = ACTIONS(3236), - [sym_heredoc_start] = ACTIONS(3236), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3236), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4168), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), }, [1177] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1177), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4049), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4170), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1178] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6401), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1178), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4051), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4172), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1179] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1179), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4053), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4174), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1180] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3978), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1180), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4176), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1181] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6407), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1181), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4055), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4178), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1182] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1182), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(4057), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4180), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1183] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1183), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4059), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4182), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1184] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6530), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1184), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4061), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4184), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1185] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6410), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1185), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4063), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4186), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1186] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6426), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1186), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4065), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4188), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1187] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1187), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4067), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4190), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1188] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1188), - [sym_identifier] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3238), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3236), - [sym_operator_symbol] = ACTIONS(3236), - [sym_unquoted_symbol] = ACTIONS(3236), - [anon_sym_COLON_DQUOTE] = ACTIONS(3236), - [anon_sym_BQUOTE] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_COMMA] = ACTIONS(3236), - [anon_sym_EQ_GT] = ACTIONS(3236), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_DASH_GT] = ACTIONS(3236), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3238), - [anon_sym_GT_GT] = ACTIONS(3238), - [anon_sym_LT_LT] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ_GT] = ACTIONS(3236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG_TILDE] = ACTIONS(3236), - [anon_sym_EQ_TILDE] = ACTIONS(3236), - [anon_sym_AMP_STAR] = ACTIONS(3238), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3236), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym_instance_sizeof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [sym__constant_segment] = ACTIONS(3236), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym___LINE__] = ACTIONS(3238), - [anon_sym___END_LINE__] = ACTIONS(3238), - [anon_sym___FILE__] = ACTIONS(3238), - [anon_sym___DIR__] = ACTIONS(3238), - [sym_special_variable] = ACTIONS(3236), - [sym_identifier_method_call] = ACTIONS(3236), - [sym_instance_var] = ACTIONS(3236), - [sym_class_var] = ACTIONS(3236), - [sym_self] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_AMP_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_AMP_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_EQ] = ACTIONS(3242), - [anon_sym_CARET_EQ] = ACTIONS(3242), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3242), - [anon_sym_LT_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_GT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_AMP_EQ] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_begin] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_until] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3236), - [sym__start_of_hash_or_tuple] = ACTIONS(3236), - [sym__start_of_named_tuple] = ACTIONS(3236), - [sym__start_of_index_operator] = ACTIONS(3236), - [sym_unary_plus] = ACTIONS(3236), - [sym_unary_minus] = ACTIONS(3236), - [sym_binary_plus] = ACTIONS(3236), - [sym_binary_minus] = ACTIONS(3236), - [sym_unary_wrapping_plus] = ACTIONS(3236), - [sym_unary_wrapping_minus] = ACTIONS(3236), - [sym_binary_wrapping_plus] = ACTIONS(3236), - [sym_binary_wrapping_minus] = ACTIONS(3236), - [sym__unary_star] = ACTIONS(3236), - [sym__binary_star] = ACTIONS(3236), - [sym__unary_double_star] = ACTIONS(3236), - [sym__binary_double_star] = ACTIONS(3236), - [sym__block_ampersand] = ACTIONS(3236), - [sym_binary_ampersand] = ACTIONS(3236), - [sym__beginless_range_operator] = ACTIONS(3236), - [sym__regex_start] = ACTIONS(3236), - [sym__binary_slash] = ACTIONS(3236), - [sym__binary_double_slash] = ACTIONS(3236), - [sym__regular_if_keyword] = ACTIONS(3236), - [sym__regular_unless_keyword] = ACTIONS(3236), - [sym__modulo_operator] = ACTIONS(3236), - [sym__string_literal_start] = ACTIONS(3236), - [sym__string_percent_literal_start] = ACTIONS(3236), - [sym__command_percent_literal_start] = ACTIONS(3236), - [sym__string_array_percent_literal_start] = ACTIONS(3236), - [sym__symbol_array_percent_literal_start] = ACTIONS(3236), - [sym__regex_percent_literal_start] = ACTIONS(3236), - [sym_heredoc_start] = ACTIONS(3236), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3236), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4192), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), }, [1189] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6583), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1189), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4069), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4194), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1190] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1190), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4071), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4196), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1191] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3086), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1191), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4073), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [aux_sym_multi_assign_repeat2] = STATE(1072), + [sym_identifier] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [1192] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1192), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4075), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4198), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1193] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1193), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4077), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4200), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1194] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1194), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4079), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4202), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1195] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1195), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4081), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4204), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1196] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1196), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4083), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4206), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1197] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1197), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4085), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4208), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1198] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1198), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4087), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4210), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1199] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2967), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1199), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [aux_sym_multi_assign_repeat2] = STATE(1158), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4212), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1200] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3979), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1200), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4214), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1201] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1201), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4089), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4216), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1202] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1202), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4091), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4218), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1203] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3982), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1203), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4220), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1204] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4691), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1204), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [aux_sym_multi_assign_repeat2] = STATE(1205), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4222), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1205] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4624), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1205), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4224), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1206] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4625), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1206), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [aux_sym_multi_assign_repeat2] = STATE(1212), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4226), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1207] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4626), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1207), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [aux_sym_multi_assign_repeat2] = STATE(1213), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4228), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1208] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4627), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1208), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [aux_sym_multi_assign_repeat2] = STATE(1214), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4230), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1209] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4628), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1209), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [aux_sym_multi_assign_repeat2] = STATE(1215), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4232), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1210] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4629), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1210), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [aux_sym_multi_assign_repeat2] = STATE(1216), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4234), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1211] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4630), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1211), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [aux_sym_multi_assign_repeat2] = STATE(1217), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4236), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1212] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4632), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1212), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4238), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1213] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4633), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1213), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4240), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1214] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4634), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1214), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4242), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1215] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4635), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1215), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4244), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1216] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4636), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1216), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4246), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1217] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4637), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1217), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4248), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1218] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1218), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4093), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4250), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1219] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1219), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4095), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_RPAREN] = ACTIONS(4252), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1220] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6623), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1220), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4097), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4254), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1221] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1221), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4099), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4256), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1222] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3980), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1222), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4258), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1223] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1223), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4101), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4260), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1224] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4128), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1224), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym_multi_assign_repeat2] = STATE(1241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4262), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1225] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6938), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1225), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(4103), - [anon_sym_LPAREN] = ACTIONS(4106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4109), - [sym_true] = ACTIONS(4109), - [sym_false] = ACTIONS(4109), - [aux_sym_integer_token2] = ACTIONS(4112), - [aux_sym_float_token2] = ACTIONS(4115), - [anon_sym_SQUOTE] = ACTIONS(4118), - [sym_operator_symbol] = ACTIONS(4121), - [sym_unquoted_symbol] = ACTIONS(4121), - [anon_sym_COLON_DQUOTE] = ACTIONS(4124), - [anon_sym_BQUOTE] = ACTIONS(4127), - [anon_sym_LBRACK] = ACTIONS(4130), - [anon_sym_DASH_GT] = ACTIONS(4133), - [anon_sym_BANG] = ACTIONS(4136), - [anon_sym_TILDE] = ACTIONS(4139), - [anon_sym_with] = ACTIONS(4142), - [anon_sym_yield] = ACTIONS(4145), - [anon_sym_typeof] = ACTIONS(4148), - [anon_sym_sizeof] = ACTIONS(4151), - [anon_sym_instance_sizeof] = ACTIONS(4154), - [anon_sym_offsetof] = ACTIONS(4157), - [sym__constant_segment] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4163), - [anon_sym___LINE__] = ACTIONS(4166), - [anon_sym___END_LINE__] = ACTIONS(4166), - [anon_sym___FILE__] = ACTIONS(4166), - [anon_sym___DIR__] = ACTIONS(4166), - [sym_special_variable] = ACTIONS(4121), - [sym_identifier_method_call] = ACTIONS(4169), - [sym_instance_var] = ACTIONS(4172), - [sym_class_var] = ACTIONS(4172), - [sym_self] = ACTIONS(4109), - [anon_sym_begin] = ACTIONS(4175), - [anon_sym_while] = ACTIONS(4178), - [anon_sym_until] = ACTIONS(4181), - [anon_sym_case] = ACTIONS(4184), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4187), - [sym__start_of_named_tuple] = ACTIONS(4190), - [sym_unary_plus] = ACTIONS(4193), - [sym_unary_minus] = ACTIONS(4193), - [sym_unary_wrapping_plus] = ACTIONS(4196), - [sym_unary_wrapping_minus] = ACTIONS(4196), - [sym__beginless_range_operator] = ACTIONS(4199), - [sym__regex_start] = ACTIONS(4202), - [sym__regular_if_keyword] = ACTIONS(4205), - [sym__regular_unless_keyword] = ACTIONS(4208), - [sym__string_literal_start] = ACTIONS(4211), - [sym__string_percent_literal_start] = ACTIONS(4214), - [sym__command_percent_literal_start] = ACTIONS(4217), - [sym__string_array_percent_literal_start] = ACTIONS(4220), - [sym__symbol_array_percent_literal_start] = ACTIONS(4223), - [sym__regex_percent_literal_start] = ACTIONS(4226), - [sym_heredoc_start] = ACTIONS(4121), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4264), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1226] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1226), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4229), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4266), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1227] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1227), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4231), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4268), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1228] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1228), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4233), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4270), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1229] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1229), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(4235), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4272), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1230] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1230), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4237), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4274), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1231] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1231), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4239), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4276), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1232] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1232), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(4241), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4278), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1233] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6472), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1233), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4243), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4280), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1234] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6271), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1234), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4245), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4282), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1235] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6639), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1235), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4247), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4284), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1236] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6313), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1236), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(4249), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4286), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1237] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6440), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1237), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4251), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4288), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1238] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6500), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1238), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4253), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4290), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1239] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6287), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1239), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4255), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4292), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1240] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6553), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1240), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4257), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4294), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1241] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3916), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6290), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1241), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym_multi_assign_repeat2] = STATE(1225), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4296), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1242] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6597), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1242), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(4259), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4298), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1243] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6295), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1243), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4261), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4300), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1244] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6633), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1244), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(4263), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4302), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1245] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6668), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1245), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(4265), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1246] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6559), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1246), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4267), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4306), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1247] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6304), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1247), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4269), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4308), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1248] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6533), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1248), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4271), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4310), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1249] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6292), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1249), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4273), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4312), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1250] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6456), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1250), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [anon_sym_RPAREN] = ACTIONS(4275), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4314), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1251] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3918), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1251), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [aux_sym_multi_assign_repeat2] = STATE(1180), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACK] = ACTIONS(4316), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1252] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1252), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4277), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [anon_sym_RBRACE] = ACTIONS(4318), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1253] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4561), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1253), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(4279), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1254] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6393), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6593), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(1254), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_RBRACK] = ACTIONS(4281), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [1255] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6417), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6594), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(1255), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [1256] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(7016), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6595), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(1256), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [1257] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2936), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6598), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(1257), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1258] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6383), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1258), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1259] = { + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6576), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), + [sym_heredoc_body] = STATE(1259), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1260] = { + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6337), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), + [sym_heredoc_body] = STATE(1260), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1261] = { + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3880), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), + [sym_heredoc_body] = STATE(1261), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1262] = { + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3881), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), + [sym_heredoc_body] = STATE(1262), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1263] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6446), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1263), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1264] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6486), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1264), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1265] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7045), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1265), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1266] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7046), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1266), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1267] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7047), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1267), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1268] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7049), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1268), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1269] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7050), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1269), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1270] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7051), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1270), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1271] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7055), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1272] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7056), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1272), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1273] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7058), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1273), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1274] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6988), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1274), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1275] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7001), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1275), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1276] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6961), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1276), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1277] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6679), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1277), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1278] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6250), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1278), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1279] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6252), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1279), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1280] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6978), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1280), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1281] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3210), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1281), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -217166,12 +222818,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(53), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -217183,97 +222835,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1258] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2937), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1258), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [1282] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3211), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1282), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -217286,12 +222940,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(31), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(53), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -217303,577 +222957,465 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1259] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2713), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), - [sym_heredoc_body] = STATE(1259), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1260] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4362), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1260), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [1283] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7023), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1283), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, - [1261] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4363), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1261), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [1284] = { + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5744), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), + [sym_heredoc_body] = STATE(1284), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, - [1262] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7018), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1262), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7771), - [sym_index_operator] = STATE(2454), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(4283), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(4285), - [sym_class_var] = ACTIONS(4285), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [1285] = { + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5747), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), + [sym_heredoc_body] = STATE(1285), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, - [1263] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3220), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1263), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), + [1286] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3219), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1286), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -217904,8616 +223446,5832 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1264] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4428), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1264), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [1287] = { + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4263), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), + [sym_heredoc_body] = STATE(1287), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, - [1265] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4429), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1265), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [1288] = { + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4264), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), + [sym_heredoc_body] = STATE(1288), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, - [1266] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4430), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1266), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [1289] = { + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4265), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), + [sym_heredoc_body] = STATE(1289), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, - [1267] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4431), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1267), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [1290] = { + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4266), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), + [sym_heredoc_body] = STATE(1290), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, - [1268] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4432), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1268), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1269] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4433), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1269), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1270] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4436), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1270), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1271] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4437), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1271), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1272] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4438), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1272), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1273] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4439), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1273), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1274] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4443), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1274), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1275] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4444), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1275), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1276] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4473), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1276), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1277] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4479), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1277), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1278] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5431), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1278), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1279] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5433), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1279), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1280] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5655), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1280), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1281] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5656), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1281), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1282] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5685), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1282), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1283] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5688), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1283), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1284] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5692), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1284), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1285] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5693), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1285), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1286] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5711), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1286), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1287] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5729), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1287), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1288] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5731), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1288), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1289] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5735), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1289), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1290] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5748), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1290), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1291] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5607), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1291), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [1291] = { + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4269), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), + [sym_heredoc_body] = STATE(1291), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [1292] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5525), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4271), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(1292), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [1293] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5542), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4272), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(1293), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [1294] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5218), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4273), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(1294), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [1295] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5219), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4274), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(1295), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [1296] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6238), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4275), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(1296), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [1297] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3257), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4276), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(1297), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [1298] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5400), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6506), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1298), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1299] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5401), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6513), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1299), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1300] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5402), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4282), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(1300), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [1301] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5403), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4284), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(1301), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [1302] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5404), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6792), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1302), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1303] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5405), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4202), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1303), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1304] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5407), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4203), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1304), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1305] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5408), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6793), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1305), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1306] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5409), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6854), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1306), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1307] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5410), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6856), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1307), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1308] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5411), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6859), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1308), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1309] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5412), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6863), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1309), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1310] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5420), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5584), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(1310), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [1311] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3293), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5585), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(1311), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [1312] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5422), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5586), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(1312), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [1313] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3297), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5587), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(1313), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [1314] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4231), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5588), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(1314), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [1315] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4232), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5591), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(1315), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [1316] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6050), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6909), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1316), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1317] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4289), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5593), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(1317), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [1318] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4290), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5594), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(1318), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [1319] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4291), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5595), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(1319), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [1320] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4292), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5596), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(1320), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [1321] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4293), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5597), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(1321), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [1322] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4294), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5598), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(1322), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [1323] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4296), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6764), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1323), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1324] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4297), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6678), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1324), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1325] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4298), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6745), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1325), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1326] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4299), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6675), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1326), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1327] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4300), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6691), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1327), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1328] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4301), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5605), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(1328), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [1329] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4305), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3227), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1329), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(53), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [1330] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4306), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5607), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(1330), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [1331] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6891), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6279), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1331), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1332] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5882), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6280), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1332), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1333] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5883), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3229), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1333), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(53), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [1334] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6638), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3230), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1334), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1335] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3228), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1335), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -226544,1776 +229302,1928 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, + [1335] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6119), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(1335), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + }, [1336] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6130), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6120), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1336), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1337] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6140), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6121), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1337), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1338] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6207), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6122), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1338), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1339] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6212), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6123), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1339), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1340] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6213), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6125), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1340), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1341] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6214), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5782), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(1341), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [1342] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6227), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6128), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1342), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1343] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5751), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6129), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1343), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1344] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5756), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6130), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1344), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1345] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5757), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6131), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1345), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1346] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5761), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6133), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1346), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1347] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5762), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6136), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1347), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1348] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6255), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5786), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(1348), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [1349] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6934), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6166), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1349), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1350] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3252), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3231), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1350), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -228344,576 +231254,586 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [1351] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6206), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6180), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1351), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1352] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6184), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6875), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1352), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1353] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3472), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7060), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1353), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7817), + [sym_index_operator] = STATE(2435), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(4320), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(4322), + [sym_class_var] = ACTIONS(4322), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1354] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3473), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6934), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1354), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1355] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3253), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3232), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1355), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -228944,816 +231864,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [1356] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3325), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4616), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1356), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1357] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3326), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4617), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1357), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1358] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3327), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3233), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1358), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1359] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3328), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(1359), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1360] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3329), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(1360), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1361] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3330), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(1361), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1362] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3182), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1362), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -229784,816 +232230,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1363] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3332), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(1363), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1364] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3334), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(1364), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1365] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3336), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(1365), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1366] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3337), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(1366), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1367] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3338), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(1367), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1368] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3339), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(1368), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1369] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3183), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1369), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), + [1359] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3303), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1359), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -230624,816 +232352,2660 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, + [1360] = { + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5798), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), + [sym_heredoc_body] = STATE(1360), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1361] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4951), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1361), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1362] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4953), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1362), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1363] = { + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5799), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), + [sym_heredoc_body] = STATE(1363), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1364] = { + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5814), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), + [sym_heredoc_body] = STATE(1364), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1365] = { + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5815), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), + [sym_heredoc_body] = STATE(1365), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1366] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4938), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1366), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1367] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4943), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1367), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1368] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4947), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1368), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1369] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5029), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1369), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, [1370] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3241), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4907), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1370), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1371] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3350), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4928), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1371), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1372] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3352), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5821), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(1372), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [1373] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4995), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4908), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1373), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1374] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4996), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4918), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1374), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1375] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3184), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4923), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1375), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1376] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3186), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4924), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1376), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1377] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4930), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1377), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1378] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4932), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1378), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1379] = { + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5823), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), + [sym_heredoc_body] = STATE(1379), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1380] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1380), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1381] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3234), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1381), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -231464,96 +235036,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1377] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3188), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1377), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), + [1382] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3235), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1382), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -231584,2016 +235158,1196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1378] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(5017), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), - [sym_heredoc_body] = STATE(1378), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1379] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4887), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), - [sym_heredoc_body] = STATE(1379), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1380] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4896), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), - [sym_heredoc_body] = STATE(1380), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1381] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4897), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), - [sym_heredoc_body] = STATE(1381), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1382] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4898), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), - [sym_heredoc_body] = STATE(1382), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - }, [1383] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4899), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6627), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1383), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1384] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4905), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7060), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1384), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7815), + [sym_index_operator] = STATE(2446), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(4324), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(4326), + [sym_class_var] = ACTIONS(4326), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1385] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4906), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6693), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1385), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1386] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4907), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6713), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1386), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1387] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4908), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4909), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1387), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1388] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4909), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5825), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(1388), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [1389] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4910), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2593), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1389), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1390] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4917), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2543), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1390), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1391] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4918), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5828), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(1391), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [1392] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6614), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3237), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1392), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1393] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6615), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), - [sym_heredoc_body] = STATE(1393), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1394] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3189), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1394), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -233624,1656 +236378,464 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1395] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6685), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1395), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1396] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6686), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1396), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1397] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6411), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), - [sym_heredoc_body] = STATE(1397), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1398] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6412), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), - [sym_heredoc_body] = STATE(1398), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1399] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6416), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), - [sym_heredoc_body] = STATE(1399), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1400] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6418), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), - [sym_heredoc_body] = STATE(1400), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1401] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6419), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), - [sym_heredoc_body] = STATE(1401), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1402] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6422), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), - [sym_heredoc_body] = STATE(1402), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1403] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6423), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), - [sym_heredoc_body] = STATE(1403), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1404] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6424), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), - [sym_heredoc_body] = STATE(1404), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1405] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6425), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), - [sym_heredoc_body] = STATE(1405), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [1393] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4948), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1393), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, - [1406] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6428), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), - [sym_heredoc_body] = STATE(1406), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [1394] = { + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5860), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), + [sym_heredoc_body] = STATE(1394), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, - [1407] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6429), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), - [sym_heredoc_body] = STATE(1407), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [1395] = { + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5862), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), + [sym_heredoc_body] = STATE(1395), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, - [1408] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3192), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1408), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), + [1396] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3238), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1396), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -235304,96 +236866,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1409] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3193), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1409), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), + [1397] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6771), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(1397), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1398] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6772), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(1398), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1399] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3239), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1399), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -235424,216 +237232,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1410] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6457), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), - [sym_heredoc_body] = STATE(1410), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1411] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3194), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1411), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), + [1400] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3240), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1400), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -235664,96 +237354,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1412] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3195), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1412), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), + [1401] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6967), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1401), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1402] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3245), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1402), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -235784,11616 +237598,13030 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, + [1403] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5643), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(1403), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1404] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5644), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(1404), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1405] = { + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(5002), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), + [sym_heredoc_body] = STATE(1405), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1406] = { + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(5003), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), + [sym_heredoc_body] = STATE(1406), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1407] = { + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4965), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), + [sym_heredoc_body] = STATE(1407), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1408] = { + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4968), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), + [sym_heredoc_body] = STATE(1408), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1409] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6588), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1409), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1410] = { + [sym_heredoc_body] = STATE(1410), + [sym_identifier] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [aux_sym_integer_token2] = ACTIONS(3269), + [aux_sym_float_token2] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [sym_operator_symbol] = ACTIONS(3267), + [sym_unquoted_symbol] = ACTIONS(3267), + [anon_sym_COLON_DQUOTE] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3267), + [anon_sym_RBRACK] = ACTIONS(3269), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_LT_LT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ_GT] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_AMP_STAR] = ACTIONS(3269), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_EQ] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3269), + [anon_sym_instance_sizeof] = ACTIONS(3269), + [anon_sym_offsetof] = ACTIONS(3269), + [sym__constant_segment] = ACTIONS(3267), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym___LINE__] = ACTIONS(3269), + [anon_sym___END_LINE__] = ACTIONS(3269), + [anon_sym___FILE__] = ACTIONS(3269), + [anon_sym___DIR__] = ACTIONS(3269), + [sym_special_variable] = ACTIONS(3267), + [sym_identifier_method_call] = ACTIONS(3267), + [sym_instance_var] = ACTIONS(3267), + [sym_class_var] = ACTIONS(3267), + [sym_self] = ACTIONS(3269), + [anon_sym_LPAREN2] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3267), + [anon_sym_RBRACK_QMARK] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3269), + [anon_sym_PIPE_PIPE] = ACTIONS(3269), + [anon_sym_PLUS_EQ] = ACTIONS(3273), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(3273), + [anon_sym_DASH_EQ] = ACTIONS(3273), + [anon_sym_AMP_DASH_EQ] = ACTIONS(3273), + [anon_sym_STAR_EQ] = ACTIONS(3273), + [anon_sym_AMP_STAR_EQ] = ACTIONS(3273), + [anon_sym_SLASH_EQ] = ACTIONS(3273), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3273), + [anon_sym_PERCENT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_EQ] = ACTIONS(3273), + [anon_sym_CARET_EQ] = ACTIONS(3273), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3273), + [anon_sym_LT_LT_EQ] = ACTIONS(3273), + [anon_sym_GT_GT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_begin] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_until] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3267), + [sym__start_of_hash_or_tuple] = ACTIONS(3267), + [sym__start_of_named_tuple] = ACTIONS(3267), + [sym__start_of_index_operator] = ACTIONS(3267), + [sym_unary_plus] = ACTIONS(3267), + [sym_unary_minus] = ACTIONS(3267), + [sym_binary_plus] = ACTIONS(3267), + [sym_binary_minus] = ACTIONS(3267), + [sym_unary_wrapping_plus] = ACTIONS(3267), + [sym_unary_wrapping_minus] = ACTIONS(3267), + [sym_binary_wrapping_plus] = ACTIONS(3267), + [sym_binary_wrapping_minus] = ACTIONS(3267), + [sym__unary_star] = ACTIONS(3267), + [sym__binary_star] = ACTIONS(3267), + [sym__unary_double_star] = ACTIONS(3267), + [sym__binary_double_star] = ACTIONS(3267), + [sym__block_ampersand] = ACTIONS(3267), + [sym_binary_ampersand] = ACTIONS(3267), + [sym__beginless_range_operator] = ACTIONS(3267), + [sym__regex_start] = ACTIONS(3267), + [sym__binary_slash] = ACTIONS(3267), + [sym__binary_double_slash] = ACTIONS(3267), + [sym__regular_if_keyword] = ACTIONS(3267), + [sym__regular_unless_keyword] = ACTIONS(3267), + [sym__modulo_operator] = ACTIONS(3267), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3267), + [sym__command_percent_literal_start] = ACTIONS(3267), + [sym__string_array_percent_literal_start] = ACTIONS(3267), + [sym__symbol_array_percent_literal_start] = ACTIONS(3267), + [sym__regex_percent_literal_start] = ACTIONS(3267), + [sym_heredoc_start] = ACTIONS(3267), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3267), + }, + [1411] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6589), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1411), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1412] = { + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5854), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), + [sym_heredoc_body] = STATE(1412), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), + [sym__heredoc_body_start] = ACTIONS(7), + }, [1413] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6459), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4377), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1413), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1414] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4040), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5917), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(1414), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [1415] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4043), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4616), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1415), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1416] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6941), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4617), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1416), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1417] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6942), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6174), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1417), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1418] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6943), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6768), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1418), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1419] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6944), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6773), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1419), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1420] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6945), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6993), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1420), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1421] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6946), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6999), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1421), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1422] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6948), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5700), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1422), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1423] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6949), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5705), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1423), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1424] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6950), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4383), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1424), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1425] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6951), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7008), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1425), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1426] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6952), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7009), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1426), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1427] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6953), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7014), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1427), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1428] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6909), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7016), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1428), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1429] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6960), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3403), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1429), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1430] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6963), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3412), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1430), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1431] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3197), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7024), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1431), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1432] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5559), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7026), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1432), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1433] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5564), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7027), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1433), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1434] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3199), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7032), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1434), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(31), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(55), - [anon_sym_with] = ACTIONS(71), - [anon_sym_yield] = ACTIONS(73), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1435] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4239), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6940), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1435), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1436] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4240), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6941), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1436), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1437] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4242), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4386), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1437), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1438] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4243), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5996), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1438), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1439] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4244), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5997), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1439), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1440] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4246), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4615), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1440), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1441] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4271), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4388), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1441), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1442] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4273), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6018), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1442), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1443] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4275), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6019), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1443), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1444] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4276), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6630), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1444), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1445] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4280), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6631), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1445), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1446] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4286), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5239), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(1446), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [1447] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3836), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5240), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(1447), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [1448] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3872), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6738), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1448), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1449] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4231), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6634), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1449), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1450] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4232), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5252), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(1450), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [1451] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6676), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5253), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(1451), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [1452] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6677), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6635), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1452), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1453] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5687), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6648), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1453), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1454] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5689), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3358), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1454), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1455] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5690), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3359), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1455), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1456] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5691), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4472), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1456), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1457] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5427), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4479), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1457), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1458] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5712), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2616), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1458), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1459] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5714), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3363), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1459), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1460] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5715), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4490), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1460), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1461] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5716), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4494), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1461), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1462] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5717), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3368), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1462), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1463] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5718), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3369), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1463), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1464] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5719), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3372), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1464), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1465] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5727), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6651), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1465), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1466] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5728), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3375), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1466), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1467] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(6182), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6915), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1467), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1468] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(6189), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6916), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1468), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1469] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(6190), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4380), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1469), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1470] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(6191), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3246), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1470), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(53), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [1471] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(6192), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3376), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1471), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1472] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(6194), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6749), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1472), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1473] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(6196), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6750), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1473), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1474] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(6197), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3377), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1474), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1475] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(6198), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3378), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1475), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1476] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(6199), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3379), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1476), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1477] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(6204), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3387), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1477), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1478] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(6205), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(6262), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(1478), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [1479] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6740), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5785), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(1479), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [1480] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5814), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5460), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1480), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1481] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5901), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(6238), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(1481), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [1482] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6338), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(6239), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(1482), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [1483] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6339), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7006), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1483), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1484] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6772), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6656), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1484), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1485] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4957), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6657), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1485), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1486] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4964), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4227), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1486), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1487] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6333), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4229), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1487), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1488] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7018), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5357), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(1488), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7772), - [sym_index_operator] = STATE(2441), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(4287), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(4289), - [sym_class_var] = ACTIONS(4289), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [1489] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2675), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6658), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1489), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1490] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2679), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(3849), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1490), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1491] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2756), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(3851), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1491), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1492] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2758), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6659), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1492), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1493] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6375), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3332), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1493), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1494] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6376), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3333), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1494), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1495] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4423), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3242), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1495), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(53), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [1496] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4424), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4201), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1496), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1497] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4425), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6958), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1497), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1498] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4426), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3408), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1498), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1499] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6379), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3416), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1499), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1500] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6380), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3407), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1500), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1501] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6381), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6484), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(1501), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [1502] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6382), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6496), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(1502), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [1503] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6384), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5955), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(1503), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [1504] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6385), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6437), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(1504), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [1505] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6388), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6445), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(1505), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [1506] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6389), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4889), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1506), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1507] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6391), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4890), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1507), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1508] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6392), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3341), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1508), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1509] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2931), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3145), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1509), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -247406,12 +250634,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -247423,1777 +250651,2051 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [1510] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2932), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4885), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1510), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(15), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(17), - [sym_true] = ACTIONS(17), - [sym_false] = ACTIONS(17), - [aux_sym_integer_token2] = ACTIONS(19), - [aux_sym_float_token2] = ACTIONS(21), - [anon_sym_SQUOTE] = ACTIONS(23), - [sym_operator_symbol] = ACTIONS(25), - [sym_unquoted_symbol] = ACTIONS(25), - [anon_sym_COLON_DQUOTE] = ACTIONS(27), - [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), - [anon_sym_typeof] = ACTIONS(75), - [anon_sym_sizeof] = ACTIONS(77), - [anon_sym_instance_sizeof] = ACTIONS(79), - [anon_sym_offsetof] = ACTIONS(81), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [anon_sym___LINE__] = ACTIONS(87), - [anon_sym___END_LINE__] = ACTIONS(87), - [anon_sym___FILE__] = ACTIONS(87), - [anon_sym___DIR__] = ACTIONS(87), - [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), - [sym_self] = ACTIONS(17), - [anon_sym_begin] = ACTIONS(95), - [anon_sym_while] = ACTIONS(97), - [anon_sym_until] = ACTIONS(99), - [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), - [sym_heredoc_start] = ACTIONS(25), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1511] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5545), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4887), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1511), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1512] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5546), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3541), + [sym_expressions] = STATE(3541), + [sym__expression] = STATE(3410), + [sym_empty_parens] = STATE(3541), + [sym_integer] = STATE(3541), + [sym_float] = STATE(3541), + [sym_char] = STATE(3541), + [sym_string] = STATE(2782), + [sym_chained_string] = STATE(3541), + [sym_string_percent_literal] = STATE(3541), + [sym_string_array_percent_literal] = STATE(3541), + [sym_symbol_array_percent_literal] = STATE(3541), [sym_heredoc_body] = STATE(1512), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3541), + [sym_command] = STATE(3541), + [sym_command_percent_literal] = STATE(3541), + [sym_regex] = STATE(3541), + [sym_regex_percent_literal] = STATE(3541), + [sym_array] = STATE(3541), + [sym_hash] = STATE(3541), + [sym_tuple] = STATE(3541), + [sym_named_tuple] = STATE(3541), + [sym_range] = STATE(3541), + [sym_beginless_range] = STATE(3541), + [sym_proc] = STATE(3541), + [sym_yield] = STATE(3541), + [sym_typeof] = STATE(3541), + [sym_sizeof] = STATE(3541), + [sym_instance_sizeof] = STATE(3541), + [sym_offsetof] = STATE(3541), + [sym_constant] = STATE(3259), + [sym_pseudo_constant] = STATE(3541), + [sym_generic_instance_type] = STATE(3541), + [sym__dot_call] = STATE(71), + [sym_call] = STATE(3541), + [sym_assign_call] = STATE(7842), + [sym_index_operator] = STATE(2248), + [sym_not] = STATE(3541), + [sym_and] = STATE(3541), + [sym_or] = STATE(3541), + [sym_additive_operator] = STATE(3541), + [sym_unary_additive_operator] = STATE(3541), + [sym_multiplicative_operator] = STATE(3541), + [sym_exponential_operator] = STATE(3541), + [sym_shift_operator] = STATE(3541), + [sym_complement_operator] = STATE(3541), + [sym_binary_and_operator] = STATE(3541), + [sym_binary_or_operator] = STATE(3541), + [sym_equality_operator] = STATE(3541), + [sym_comparison_operator] = STATE(3541), + [sym_assign] = STATE(3541), + [sym_operator_assign] = STATE(3541), + [sym_type_declaration] = STATE(3541), + [sym_begin_block] = STATE(3541), + [sym_while] = STATE(3541), + [sym_until] = STATE(3541), + [sym_if] = STATE(3541), + [sym_unless] = STATE(3541), + [sym_conditional] = STATE(3541), + [sym_case] = STATE(3541), + [sym_select] = STATE(3541), + [sym_exhaustive_case] = STATE(3541), + [sym_identifier] = ACTIONS(2772), + [anon_sym_LPAREN] = ACTIONS(2774), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(279), + [sym_true] = ACTIONS(279), + [sym_false] = ACTIONS(279), + [aux_sym_integer_token2] = ACTIONS(281), + [aux_sym_float_token2] = ACTIONS(283), + [anon_sym_SQUOTE] = ACTIONS(285), + [sym_operator_symbol] = ACTIONS(287), + [sym_unquoted_symbol] = ACTIONS(287), + [anon_sym_COLON_DQUOTE] = ACTIONS(289), + [anon_sym_BQUOTE] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_DASH_GT] = ACTIONS(295), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(299), + [anon_sym_with] = ACTIONS(303), + [anon_sym_yield] = ACTIONS(305), + [anon_sym_typeof] = ACTIONS(307), + [anon_sym_sizeof] = ACTIONS(309), + [anon_sym_instance_sizeof] = ACTIONS(311), + [anon_sym_offsetof] = ACTIONS(313), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [anon_sym___LINE__] = ACTIONS(319), + [anon_sym___END_LINE__] = ACTIONS(319), + [anon_sym___FILE__] = ACTIONS(319), + [anon_sym___DIR__] = ACTIONS(319), + [sym_special_variable] = ACTIONS(287), + [sym_identifier_method_call] = ACTIONS(2778), + [sym_instance_var] = ACTIONS(323), + [sym_class_var] = ACTIONS(323), + [sym_self] = ACTIONS(279), + [anon_sym_begin] = ACTIONS(333), + [anon_sym_while] = ACTIONS(335), + [anon_sym_until] = ACTIONS(337), + [anon_sym_case] = ACTIONS(339), + [anon_sym_select] = ACTIONS(341), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(345), + [sym__start_of_named_tuple] = ACTIONS(347), + [sym_unary_plus] = ACTIONS(349), + [sym_unary_minus] = ACTIONS(349), + [sym_unary_wrapping_plus] = ACTIONS(351), + [sym_unary_wrapping_minus] = ACTIONS(351), + [sym__beginless_range_operator] = ACTIONS(359), + [sym__regex_start] = ACTIONS(361), + [sym__regular_if_keyword] = ACTIONS(363), + [sym__regular_unless_keyword] = ACTIONS(365), + [sym__string_literal_start] = ACTIONS(367), + [sym__string_percent_literal_start] = ACTIONS(369), + [sym__command_percent_literal_start] = ACTIONS(371), + [sym__string_array_percent_literal_start] = ACTIONS(373), + [sym__symbol_array_percent_literal_start] = ACTIONS(375), + [sym__regex_percent_literal_start] = ACTIONS(377), + [sym_heredoc_start] = ACTIONS(287), [sym__heredoc_body_start] = ACTIONS(7), }, [1513] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4935), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3925), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(1513), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [1514] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4936), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3926), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(1514), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [1515] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4937), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4952), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1515), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1516] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4946), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3972), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(1516), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), - [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [1517] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4770), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3974), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(1517), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [1518] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4771), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3146), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1518), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, [1519] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6211), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4961), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1519), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1520] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5454), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4963), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1520), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1521] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5462), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4443), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1521), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1522] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6471), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2668), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1522), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1523] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(7005), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2669), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1523), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1524] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3278), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5776), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(1524), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(63), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7782), - [sym_index_operator] = STATE(2239), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2559), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1525] = { + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5777), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), + [sym_heredoc_body] = STATE(1525), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1526] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3217), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1526), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -249224,15336 +252726,5832 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), [sym_identifier_method_call] = ACTIONS(89), - [sym_instance_var] = ACTIONS(2563), - [sym_class_var] = ACTIONS(2563), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(105), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(109), - [sym_unary_minus] = ACTIONS(109), - [sym_unary_wrapping_plus] = ACTIONS(111), - [sym_unary_wrapping_minus] = ACTIONS(111), - [sym__beginless_range_operator] = ACTIONS(113), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1525] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6565), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1525), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1526] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6223), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), - [sym_heredoc_body] = STATE(1526), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), - [sym__heredoc_body_start] = ACTIONS(7), - }, [1527] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6225), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6613), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(1527), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [1528] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6081), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5570), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(1528), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [1529] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4769), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5571), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(1529), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [1530] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5816), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6333), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1530), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1531] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5822), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6444), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1531), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1532] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6310), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6029), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1532), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1533] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6311), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6030), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1533), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1534] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6721), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4615), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1534), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1535] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5150), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2684), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1535), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1536] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5151), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2691), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1536), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1537] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6722), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2707), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1537), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1538] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6882), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6826), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1538), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1539] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6778), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6827), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1539), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1540] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6779), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2716), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1540), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1541] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6784), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2721), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1541), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1542] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6790), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2726), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1542), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1543] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6870), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(5030), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1543), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1544] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6871), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2557), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1544), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1545] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5156), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(3864), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(1545), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [1546] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5157), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2708), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1546), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1547] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6642), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2575), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1547), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1548] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6645), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2661), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1548), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1549] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6747), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6033), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1549), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1550] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6750), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(6034), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1550), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1551] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6291), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2633), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1551), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1552] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6292), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(5031), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1552), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(208), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7802), - [sym_index_operator] = STATE(2371), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3058), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2334), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3060), - [sym_instance_var] = ACTIONS(2342), - [sym_class_var] = ACTIONS(2342), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2344), - [sym_unary_minus] = ACTIONS(2344), - [sym_unary_wrapping_plus] = ACTIONS(2346), - [sym_unary_wrapping_minus] = ACTIONS(2346), - [sym__beginless_range_operator] = ACTIONS(2352), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1553] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4366), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2696), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1553), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1554] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4367), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(5033), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1554), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1555] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2590), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(5610), + [sym_expressions] = STATE(5610), + [sym__expression] = STATE(5651), + [sym_empty_parens] = STATE(5610), + [sym_integer] = STATE(5610), + [sym_float] = STATE(5610), + [sym_char] = STATE(5610), + [sym_string] = STATE(4975), + [sym_chained_string] = STATE(5610), + [sym_string_percent_literal] = STATE(5610), + [sym_string_array_percent_literal] = STATE(5610), + [sym_symbol_array_percent_literal] = STATE(5610), [sym_heredoc_body] = STATE(1555), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(5610), + [sym_command] = STATE(5610), + [sym_command_percent_literal] = STATE(5610), + [sym_regex] = STATE(5610), + [sym_regex_percent_literal] = STATE(5610), + [sym_array] = STATE(5610), + [sym_hash] = STATE(5610), + [sym_tuple] = STATE(5610), + [sym_named_tuple] = STATE(5610), + [sym_range] = STATE(5610), + [sym_beginless_range] = STATE(5610), + [sym_proc] = STATE(5610), + [sym_yield] = STATE(5610), + [sym_typeof] = STATE(5610), + [sym_sizeof] = STATE(5610), + [sym_instance_sizeof] = STATE(5610), + [sym_offsetof] = STATE(5610), + [sym_constant] = STATE(5204), + [sym_pseudo_constant] = STATE(5610), + [sym_generic_instance_type] = STATE(5610), + [sym__dot_call] = STATE(214), + [sym_call] = STATE(5610), + [sym_assign_call] = STATE(7831), + [sym_index_operator] = STATE(2331), + [sym_not] = STATE(5610), + [sym_and] = STATE(5610), + [sym_or] = STATE(5610), + [sym_additive_operator] = STATE(5610), + [sym_unary_additive_operator] = STATE(5610), + [sym_multiplicative_operator] = STATE(5610), + [sym_exponential_operator] = STATE(5610), + [sym_shift_operator] = STATE(5610), + [sym_complement_operator] = STATE(5610), + [sym_binary_and_operator] = STATE(5610), + [sym_binary_or_operator] = STATE(5610), + [sym_equality_operator] = STATE(5610), + [sym_comparison_operator] = STATE(5610), + [sym_assign] = STATE(5610), + [sym_operator_assign] = STATE(5610), + [sym_type_declaration] = STATE(5610), + [sym_begin_block] = STATE(5610), + [sym_while] = STATE(5610), + [sym_until] = STATE(5610), + [sym_if] = STATE(5610), + [sym_unless] = STATE(5610), + [sym_conditional] = STATE(5610), + [sym_case] = STATE(5610), + [sym_select] = STATE(5610), + [sym_exhaustive_case] = STATE(5610), + [sym_identifier] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(855), + [sym_true] = ACTIONS(855), + [sym_false] = ACTIONS(855), + [aux_sym_integer_token2] = ACTIONS(857), + [aux_sym_float_token2] = ACTIONS(859), + [anon_sym_SQUOTE] = ACTIONS(861), + [sym_operator_symbol] = ACTIONS(863), + [sym_unquoted_symbol] = ACTIONS(863), + [anon_sym_COLON_DQUOTE] = ACTIONS(865), + [anon_sym_BQUOTE] = ACTIONS(867), + [anon_sym_LBRACK] = ACTIONS(869), + [anon_sym_DASH_GT] = ACTIONS(871), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(875), + [anon_sym_with] = ACTIONS(879), + [anon_sym_yield] = ACTIONS(881), + [anon_sym_typeof] = ACTIONS(883), + [anon_sym_sizeof] = ACTIONS(885), + [anon_sym_instance_sizeof] = ACTIONS(887), + [anon_sym_offsetof] = ACTIONS(889), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [anon_sym___LINE__] = ACTIONS(895), + [anon_sym___END_LINE__] = ACTIONS(895), + [anon_sym___FILE__] = ACTIONS(895), + [anon_sym___DIR__] = ACTIONS(895), + [sym_special_variable] = ACTIONS(863), + [sym_identifier_method_call] = ACTIONS(3035), + [sym_instance_var] = ACTIONS(899), + [sym_class_var] = ACTIONS(899), + [sym_self] = ACTIONS(855), + [anon_sym_begin] = ACTIONS(911), + [anon_sym_while] = ACTIONS(913), + [anon_sym_until] = ACTIONS(915), + [anon_sym_case] = ACTIONS(917), + [anon_sym_select] = ACTIONS(919), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(923), + [sym__start_of_named_tuple] = ACTIONS(925), + [sym_unary_plus] = ACTIONS(927), + [sym_unary_minus] = ACTIONS(927), + [sym_unary_wrapping_plus] = ACTIONS(929), + [sym_unary_wrapping_minus] = ACTIONS(929), + [sym__beginless_range_operator] = ACTIONS(937), + [sym__regex_start] = ACTIONS(939), + [sym__regular_if_keyword] = ACTIONS(941), + [sym__regular_unless_keyword] = ACTIONS(943), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(949), + [sym__string_array_percent_literal_start] = ACTIONS(951), + [sym__symbol_array_percent_literal_start] = ACTIONS(953), + [sym__regex_percent_literal_start] = ACTIONS(955), + [sym_heredoc_start] = ACTIONS(863), [sym__heredoc_body_start] = ACTIONS(7), }, [1556] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6714), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(5034), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1556), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1557] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4368), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(5035), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1557), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1558] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4369), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4201), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(5077), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1558), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(237), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7835), + [sym_index_operator] = STATE(2352), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(1103), + [anon_sym_with] = ACTIONS(1107), + [anon_sym_yield] = ACTIONS(1109), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3059), + [sym_instance_var] = ACTIONS(1115), + [sym_class_var] = ACTIONS(1115), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(1121), + [sym_unary_minus] = ACTIONS(1121), + [sym_unary_wrapping_plus] = ACTIONS(1123), + [sym_unary_wrapping_minus] = ACTIONS(1123), + [sym__beginless_range_operator] = ACTIONS(1131), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(3037), + [sym__string_percent_literal_start] = ACTIONS(3039), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1559] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6789), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(5040), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1559), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1560] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4770), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4690), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1560), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1561] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4771), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(5042), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1561), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1562] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6766), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4904), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1562), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1563] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6767), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6918), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1563), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1564] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4360), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4912), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1564), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(82), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7816), - [sym_index_operator] = STATE(2290), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1357), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_TILDE] = ACTIONS(1379), - [anon_sym_with] = ACTIONS(1393), - [anon_sym_yield] = ACTIONS(1395), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(1399), - [sym_instance_var] = ACTIONS(2914), - [sym_class_var] = ACTIONS(2914), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1411), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1413), - [sym_unary_minus] = ACTIONS(1413), - [sym_unary_wrapping_plus] = ACTIONS(1415), - [sym_unary_wrapping_minus] = ACTIONS(1415), - [sym__beginless_range_operator] = ACTIONS(1417), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1565] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5014), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(5005), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1565), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1566] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5016), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4937), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1566), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1567] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6885), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(5004), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1567), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1568] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6889), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6923), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1568), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1569] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6239), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2623), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1569), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1570] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4922), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), [sym_heredoc_body] = STATE(1570), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_identifier] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [aux_sym_integer_token2] = ACTIONS(3269), + [aux_sym_float_token2] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3267), + [sym_operator_symbol] = ACTIONS(3267), + [sym_unquoted_symbol] = ACTIONS(3267), + [anon_sym_COLON_DQUOTE] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3267), + [anon_sym_EQ_GT] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_LT_LT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ_GT] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_AMP_STAR] = ACTIONS(3269), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_EQ] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3269), + [anon_sym_instance_sizeof] = ACTIONS(3269), + [anon_sym_offsetof] = ACTIONS(3269), + [sym__constant_segment] = ACTIONS(3267), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym___LINE__] = ACTIONS(3269), + [anon_sym___END_LINE__] = ACTIONS(3269), + [anon_sym___FILE__] = ACTIONS(3269), + [anon_sym___DIR__] = ACTIONS(3269), + [sym_special_variable] = ACTIONS(3267), + [sym_identifier_method_call] = ACTIONS(3267), + [sym_instance_var] = ACTIONS(3267), + [sym_class_var] = ACTIONS(3267), + [sym_self] = ACTIONS(3269), + [anon_sym_LPAREN2] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3269), + [anon_sym_PIPE_PIPE] = ACTIONS(3269), + [anon_sym_PLUS_EQ] = ACTIONS(3273), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(3273), + [anon_sym_DASH_EQ] = ACTIONS(3273), + [anon_sym_AMP_DASH_EQ] = ACTIONS(3273), + [anon_sym_STAR_EQ] = ACTIONS(3273), + [anon_sym_AMP_STAR_EQ] = ACTIONS(3273), + [anon_sym_SLASH_EQ] = ACTIONS(3273), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3273), + [anon_sym_PERCENT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_EQ] = ACTIONS(3273), + [anon_sym_CARET_EQ] = ACTIONS(3273), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3273), + [anon_sym_LT_LT_EQ] = ACTIONS(3273), + [anon_sym_GT_GT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_begin] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_until] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3267), + [sym__start_of_hash_or_tuple] = ACTIONS(3267), + [sym__start_of_named_tuple] = ACTIONS(3267), + [sym__start_of_index_operator] = ACTIONS(3267), + [sym_unary_plus] = ACTIONS(3267), + [sym_unary_minus] = ACTIONS(3267), + [sym_binary_plus] = ACTIONS(3267), + [sym_binary_minus] = ACTIONS(3267), + [sym_unary_wrapping_plus] = ACTIONS(3267), + [sym_unary_wrapping_minus] = ACTIONS(3267), + [sym_binary_wrapping_plus] = ACTIONS(3267), + [sym_binary_wrapping_minus] = ACTIONS(3267), + [sym__unary_star] = ACTIONS(3267), + [sym__binary_star] = ACTIONS(3267), + [sym__unary_double_star] = ACTIONS(3267), + [sym__binary_double_star] = ACTIONS(3267), + [sym__block_ampersand] = ACTIONS(3267), + [sym_binary_ampersand] = ACTIONS(3267), + [sym__beginless_range_operator] = ACTIONS(3267), + [sym__regex_start] = ACTIONS(3267), + [sym__binary_slash] = ACTIONS(3267), + [sym__binary_double_slash] = ACTIONS(3267), + [sym__regular_if_keyword] = ACTIONS(3267), + [sym__regular_unless_keyword] = ACTIONS(3267), + [sym__modulo_operator] = ACTIONS(3267), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3267), + [sym__command_percent_literal_start] = ACTIONS(3267), + [sym__string_array_percent_literal_start] = ACTIONS(3267), + [sym__symbol_array_percent_literal_start] = ACTIONS(3267), + [sym__regex_percent_literal_start] = ACTIONS(3267), + [sym_heredoc_start] = ACTIONS(3267), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3267), }, [1571] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4923), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4747), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1571), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1572] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4924), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6953), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1572), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1573] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4934), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6524), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1573), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1574] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4938), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1574), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1575] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4940), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1575), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1576] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6281), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), - [sym_heredoc_body] = STATE(1576), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1577] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4943), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1577), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1578] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5019), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1578), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1579] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4956), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1579), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1580] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4965), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1580), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1581] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4969), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1581), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1582] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5953), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), - [sym_heredoc_body] = STATE(1582), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1583] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5954), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), - [sym_heredoc_body] = STATE(1583), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1584] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4970), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1584), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1585] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5644), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1585), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(210), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7804), - [sym_index_operator] = STATE(2329), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3006), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(899), - [anon_sym_with] = ACTIONS(903), - [anon_sym_yield] = ACTIONS(905), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3008), - [sym_instance_var] = ACTIONS(911), - [sym_class_var] = ACTIONS(911), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(919), - [sym_unary_minus] = ACTIONS(919), - [sym_unary_wrapping_plus] = ACTIONS(921), - [sym_unary_wrapping_minus] = ACTIONS(921), - [sym__beginless_range_operator] = ACTIONS(929), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1586] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6004), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), - [sym_heredoc_body] = STATE(1586), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1587] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(6005), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), - [sym_heredoc_body] = STATE(1587), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1588] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4205), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1588), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1589] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4207), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1589), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1590] = { - [sym__parenthesized_statement] = STATE(5202), - [sym_expressions] = STATE(5202), - [sym__expression] = STATE(5209), - [sym_empty_parens] = STATE(5202), - [sym_integer] = STATE(5202), - [sym_float] = STATE(5202), - [sym_char] = STATE(5202), - [sym_string] = STATE(4815), - [sym_chained_string] = STATE(5202), - [sym_string_percent_literal] = STATE(5202), - [sym_string_array_percent_literal] = STATE(5202), - [sym_symbol_array_percent_literal] = STATE(5202), - [sym_heredoc_body] = STATE(1590), - [sym_quoted_symbol] = STATE(5202), - [sym_command] = STATE(5202), - [sym_command_percent_literal] = STATE(5202), - [sym_regex] = STATE(5202), - [sym_regex_percent_literal] = STATE(5202), - [sym_array] = STATE(5202), - [sym_hash] = STATE(5202), - [sym_tuple] = STATE(5202), - [sym_named_tuple] = STATE(5202), - [sym_range] = STATE(5202), - [sym_beginless_range] = STATE(5202), - [sym_proc] = STATE(5202), - [sym_yield] = STATE(5202), - [sym_typeof] = STATE(5202), - [sym_sizeof] = STATE(5202), - [sym_instance_sizeof] = STATE(5202), - [sym_offsetof] = STATE(5202), - [sym_constant] = STATE(5085), - [sym_pseudo_constant] = STATE(5202), - [sym_generic_instance_type] = STATE(5202), - [sym__dot_call] = STATE(193), - [sym_call] = STATE(5202), - [sym_assign_call] = STATE(7811), - [sym_index_operator] = STATE(2318), - [sym_not] = STATE(5202), - [sym_and] = STATE(5202), - [sym_or] = STATE(5202), - [sym_additive_operator] = STATE(5202), - [sym_unary_additive_operator] = STATE(5202), - [sym_multiplicative_operator] = STATE(5202), - [sym_exponential_operator] = STATE(5202), - [sym_shift_operator] = STATE(5202), - [sym_complement_operator] = STATE(5202), - [sym_binary_and_operator] = STATE(5202), - [sym_binary_or_operator] = STATE(5202), - [sym_equality_operator] = STATE(5202), - [sym_comparison_operator] = STATE(5202), - [sym_assign] = STATE(5202), - [sym_operator_assign] = STATE(5202), - [sym_type_declaration] = STATE(5202), - [sym_begin_block] = STATE(5202), - [sym_while] = STATE(5202), - [sym_until] = STATE(5202), - [sym_if] = STATE(5202), - [sym_unless] = STATE(5202), - [sym_conditional] = STATE(5202), - [sym_case] = STATE(5202), - [sym_exhaustive_case] = STATE(5202), - [sym_identifier] = ACTIONS(2978), - [anon_sym_LPAREN] = ACTIONS(2980), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(671), - [sym_true] = ACTIONS(671), - [sym_false] = ACTIONS(671), - [aux_sym_integer_token2] = ACTIONS(673), - [aux_sym_float_token2] = ACTIONS(675), - [anon_sym_SQUOTE] = ACTIONS(677), - [sym_operator_symbol] = ACTIONS(679), - [sym_unquoted_symbol] = ACTIONS(679), - [anon_sym_COLON_DQUOTE] = ACTIONS(681), - [anon_sym_BQUOTE] = ACTIONS(683), - [anon_sym_LBRACK] = ACTIONS(685), - [anon_sym_DASH_GT] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(691), - [anon_sym_with] = ACTIONS(695), - [anon_sym_yield] = ACTIONS(697), - [anon_sym_typeof] = ACTIONS(699), - [anon_sym_sizeof] = ACTIONS(701), - [anon_sym_instance_sizeof] = ACTIONS(703), - [anon_sym_offsetof] = ACTIONS(705), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [anon_sym___LINE__] = ACTIONS(711), - [anon_sym___END_LINE__] = ACTIONS(711), - [anon_sym___FILE__] = ACTIONS(711), - [anon_sym___DIR__] = ACTIONS(711), - [sym_special_variable] = ACTIONS(679), - [sym_identifier_method_call] = ACTIONS(2984), - [sym_instance_var] = ACTIONS(715), - [sym_class_var] = ACTIONS(715), - [sym_self] = ACTIONS(671), - [anon_sym_begin] = ACTIONS(725), - [anon_sym_while] = ACTIONS(727), - [anon_sym_until] = ACTIONS(729), - [anon_sym_case] = ACTIONS(731), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(735), - [sym__start_of_named_tuple] = ACTIONS(737), - [sym_unary_plus] = ACTIONS(739), - [sym_unary_minus] = ACTIONS(739), - [sym_unary_wrapping_plus] = ACTIONS(741), - [sym_unary_wrapping_minus] = ACTIONS(741), - [sym__beginless_range_operator] = ACTIONS(749), - [sym__regex_start] = ACTIONS(751), - [sym__regular_if_keyword] = ACTIONS(753), - [sym__regular_unless_keyword] = ACTIONS(755), - [sym__string_literal_start] = ACTIONS(757), - [sym__string_percent_literal_start] = ACTIONS(759), - [sym__command_percent_literal_start] = ACTIONS(761), - [sym__string_array_percent_literal_start] = ACTIONS(763), - [sym__symbol_array_percent_literal_start] = ACTIONS(765), - [sym__regex_percent_literal_start] = ACTIONS(767), - [sym_heredoc_start] = ACTIONS(679), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1591] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4987), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1591), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1592] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3880), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1592), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1593] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(3885), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), - [sym_heredoc_body] = STATE(1593), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1594] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4997), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1594), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1595] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3389), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(1595), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1596] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3390), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(1596), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1597] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4229), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(3187), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1597), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), [sym__dot_call] = STATE(103), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7812), - [sym_index_operator] = STATE(2287), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(549), - [anon_sym_with] = ACTIONS(553), - [anon_sym_yield] = ACTIONS(555), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(2906), - [sym_instance_var] = ACTIONS(573), - [sym_class_var] = ACTIONS(573), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(597), - [sym_unary_minus] = ACTIONS(597), - [sym_unary_wrapping_plus] = ACTIONS(599), - [sym_unary_wrapping_minus] = ACTIONS(599), - [sym__beginless_range_operator] = ACTIONS(607), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(615), - [sym__string_percent_literal_start] = ACTIONS(617), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1598] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3562), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(1598), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1599] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3563), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(1599), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1600] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6654), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(1600), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1601] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6757), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(1601), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1602] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6282), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), - [sym_heredoc_body] = STATE(1602), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1603] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4683), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1603), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1604] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6415), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), - [sym_heredoc_body] = STATE(1604), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1605] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6420), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), - [sym_heredoc_body] = STATE(1605), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1606] = { - [sym__parenthesized_statement] = STATE(5844), - [sym_expressions] = STATE(5844), - [sym__expression] = STATE(5858), - [sym_empty_parens] = STATE(5844), - [sym_integer] = STATE(5844), - [sym_float] = STATE(5844), - [sym_char] = STATE(5844), - [sym_string] = STATE(5098), - [sym_chained_string] = STATE(5844), - [sym_string_percent_literal] = STATE(5844), - [sym_string_array_percent_literal] = STATE(5844), - [sym_symbol_array_percent_literal] = STATE(5844), - [sym_heredoc_body] = STATE(1606), - [sym_quoted_symbol] = STATE(5844), - [sym_command] = STATE(5844), - [sym_command_percent_literal] = STATE(5844), - [sym_regex] = STATE(5844), - [sym_regex_percent_literal] = STATE(5844), - [sym_array] = STATE(5844), - [sym_hash] = STATE(5844), - [sym_tuple] = STATE(5844), - [sym_named_tuple] = STATE(5844), - [sym_range] = STATE(5844), - [sym_beginless_range] = STATE(5844), - [sym_proc] = STATE(5844), - [sym_yield] = STATE(5844), - [sym_typeof] = STATE(5844), - [sym_sizeof] = STATE(5844), - [sym_instance_sizeof] = STATE(5844), - [sym_offsetof] = STATE(5844), - [sym_constant] = STATE(5517), - [sym_pseudo_constant] = STATE(5844), - [sym_generic_instance_type] = STATE(5844), - [sym__dot_call] = STATE(253), - [sym_call] = STATE(5844), - [sym_assign_call] = STATE(7813), - [sym_index_operator] = STATE(2334), - [sym_not] = STATE(5844), - [sym_and] = STATE(5844), - [sym_or] = STATE(5844), - [sym_additive_operator] = STATE(5844), - [sym_unary_additive_operator] = STATE(5844), - [sym_multiplicative_operator] = STATE(5844), - [sym_exponential_operator] = STATE(5844), - [sym_shift_operator] = STATE(5844), - [sym_complement_operator] = STATE(5844), - [sym_binary_and_operator] = STATE(5844), - [sym_binary_or_operator] = STATE(5844), - [sym_equality_operator] = STATE(5844), - [sym_comparison_operator] = STATE(5844), - [sym_assign] = STATE(5844), - [sym_operator_assign] = STATE(5844), - [sym_type_declaration] = STATE(5844), - [sym_begin_block] = STATE(5844), - [sym_while] = STATE(5844), - [sym_until] = STATE(5844), - [sym_if] = STATE(5844), - [sym_unless] = STATE(5844), - [sym_conditional] = STATE(5844), - [sym_case] = STATE(5844), - [sym_exhaustive_case] = STATE(5844), - [sym_identifier] = ACTIONS(3016), - [anon_sym_LPAREN] = ACTIONS(3018), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(965), - [sym_true] = ACTIONS(965), - [sym_false] = ACTIONS(965), - [aux_sym_integer_token2] = ACTIONS(967), - [aux_sym_float_token2] = ACTIONS(969), - [anon_sym_SQUOTE] = ACTIONS(971), - [sym_operator_symbol] = ACTIONS(973), - [sym_unquoted_symbol] = ACTIONS(973), - [anon_sym_COLON_DQUOTE] = ACTIONS(975), - [anon_sym_BQUOTE] = ACTIONS(977), - [anon_sym_LBRACK] = ACTIONS(979), - [anon_sym_DASH_GT] = ACTIONS(981), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(985), - [anon_sym_with] = ACTIONS(989), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_typeof] = ACTIONS(993), - [anon_sym_sizeof] = ACTIONS(995), - [anon_sym_instance_sizeof] = ACTIONS(997), - [anon_sym_offsetof] = ACTIONS(999), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym___LINE__] = ACTIONS(1005), - [anon_sym___END_LINE__] = ACTIONS(1005), - [anon_sym___FILE__] = ACTIONS(1005), - [anon_sym___DIR__] = ACTIONS(1005), - [sym_special_variable] = ACTIONS(973), - [sym_identifier_method_call] = ACTIONS(3022), - [sym_instance_var] = ACTIONS(1009), - [sym_class_var] = ACTIONS(1009), - [sym_self] = ACTIONS(965), - [anon_sym_begin] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1023), - [anon_sym_until] = ACTIONS(1025), - [anon_sym_case] = ACTIONS(1027), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1031), - [sym__start_of_named_tuple] = ACTIONS(1033), - [sym_unary_plus] = ACTIONS(1035), - [sym_unary_minus] = ACTIONS(1035), - [sym_unary_wrapping_plus] = ACTIONS(1037), - [sym_unary_wrapping_minus] = ACTIONS(1037), - [sym__beginless_range_operator] = ACTIONS(1045), - [sym__regex_start] = ACTIONS(1047), - [sym__regular_if_keyword] = ACTIONS(1049), - [sym__regular_unless_keyword] = ACTIONS(1051), - [sym__string_literal_start] = ACTIONS(1053), - [sym__string_percent_literal_start] = ACTIONS(1055), - [sym__command_percent_literal_start] = ACTIONS(1057), - [sym__string_array_percent_literal_start] = ACTIONS(1059), - [sym__symbol_array_percent_literal_start] = ACTIONS(1061), - [sym__regex_percent_literal_start] = ACTIONS(1063), - [sym_heredoc_start] = ACTIONS(973), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1607] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6269), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), - [sym_heredoc_body] = STATE(1607), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1608] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6270), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), - [sym_heredoc_body] = STATE(1608), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1609] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6680), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1609), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1610] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6681), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1610), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1611] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(7002), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(1611), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1612] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4640), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), - [sym_heredoc_body] = STATE(1612), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1613] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4641), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), - [sym_heredoc_body] = STATE(1613), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1614] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(7003), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(1614), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1615] = { - [sym__parenthesized_statement] = STATE(3450), - [sym_expressions] = STATE(3450), - [sym__expression] = STATE(3462), - [sym_empty_parens] = STATE(3450), - [sym_integer] = STATE(3450), - [sym_float] = STATE(3450), - [sym_char] = STATE(3450), - [sym_string] = STATE(2848), - [sym_chained_string] = STATE(3450), - [sym_string_percent_literal] = STATE(3450), - [sym_string_array_percent_literal] = STATE(3450), - [sym_symbol_array_percent_literal] = STATE(3450), - [sym_heredoc_body] = STATE(1615), - [sym_quoted_symbol] = STATE(3450), - [sym_command] = STATE(3450), - [sym_command_percent_literal] = STATE(3450), - [sym_regex] = STATE(3450), - [sym_regex_percent_literal] = STATE(3450), - [sym_array] = STATE(3450), - [sym_hash] = STATE(3450), - [sym_tuple] = STATE(3450), - [sym_named_tuple] = STATE(3450), - [sym_range] = STATE(3450), - [sym_beginless_range] = STATE(3450), - [sym_proc] = STATE(3450), - [sym_yield] = STATE(3450), - [sym_typeof] = STATE(3450), - [sym_sizeof] = STATE(3450), - [sym_instance_sizeof] = STATE(3450), - [sym_offsetof] = STATE(3450), - [sym_constant] = STATE(3209), - [sym_pseudo_constant] = STATE(3450), - [sym_generic_instance_type] = STATE(3450), - [sym__dot_call] = STATE(72), - [sym_call] = STATE(3450), - [sym_assign_call] = STATE(7819), - [sym_index_operator] = STATE(2248), - [sym_not] = STATE(3450), - [sym_and] = STATE(3450), - [sym_or] = STATE(3450), - [sym_additive_operator] = STATE(3450), - [sym_unary_additive_operator] = STATE(3450), - [sym_multiplicative_operator] = STATE(3450), - [sym_exponential_operator] = STATE(3450), - [sym_shift_operator] = STATE(3450), - [sym_complement_operator] = STATE(3450), - [sym_binary_and_operator] = STATE(3450), - [sym_binary_or_operator] = STATE(3450), - [sym_equality_operator] = STATE(3450), - [sym_comparison_operator] = STATE(3450), - [sym_assign] = STATE(3450), - [sym_operator_assign] = STATE(3450), - [sym_type_declaration] = STATE(3450), - [sym_begin_block] = STATE(3450), - [sym_while] = STATE(3450), - [sym_until] = STATE(3450), - [sym_if] = STATE(3450), - [sym_unless] = STATE(3450), - [sym_conditional] = STATE(3450), - [sym_case] = STATE(3450), - [sym_exhaustive_case] = STATE(3450), - [sym_identifier] = ACTIONS(2735), - [anon_sym_LPAREN] = ACTIONS(2737), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(275), - [sym_true] = ACTIONS(275), - [sym_false] = ACTIONS(275), - [aux_sym_integer_token2] = ACTIONS(277), - [aux_sym_float_token2] = ACTIONS(279), - [anon_sym_SQUOTE] = ACTIONS(281), - [sym_operator_symbol] = ACTIONS(283), - [sym_unquoted_symbol] = ACTIONS(283), - [anon_sym_COLON_DQUOTE] = ACTIONS(285), - [anon_sym_BQUOTE] = ACTIONS(287), - [anon_sym_LBRACK] = ACTIONS(289), - [anon_sym_DASH_GT] = ACTIONS(291), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(295), - [anon_sym_with] = ACTIONS(299), - [anon_sym_yield] = ACTIONS(301), - [anon_sym_typeof] = ACTIONS(303), - [anon_sym_sizeof] = ACTIONS(305), - [anon_sym_instance_sizeof] = ACTIONS(307), - [anon_sym_offsetof] = ACTIONS(309), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [anon_sym___LINE__] = ACTIONS(315), - [anon_sym___END_LINE__] = ACTIONS(315), - [anon_sym___FILE__] = ACTIONS(315), - [anon_sym___DIR__] = ACTIONS(315), - [sym_special_variable] = ACTIONS(283), - [sym_identifier_method_call] = ACTIONS(2741), - [sym_instance_var] = ACTIONS(319), - [sym_class_var] = ACTIONS(319), - [sym_self] = ACTIONS(275), - [anon_sym_begin] = ACTIONS(331), - [anon_sym_while] = ACTIONS(333), - [anon_sym_until] = ACTIONS(335), - [anon_sym_case] = ACTIONS(337), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(341), - [sym__start_of_named_tuple] = ACTIONS(343), - [sym_unary_plus] = ACTIONS(345), - [sym_unary_minus] = ACTIONS(345), - [sym_unary_wrapping_plus] = ACTIONS(347), - [sym_unary_wrapping_minus] = ACTIONS(347), - [sym__beginless_range_operator] = ACTIONS(355), - [sym__regex_start] = ACTIONS(357), - [sym__regular_if_keyword] = ACTIONS(359), - [sym__regular_unless_keyword] = ACTIONS(361), - [sym__string_literal_start] = ACTIONS(363), - [sym__string_percent_literal_start] = ACTIONS(365), - [sym__command_percent_literal_start] = ACTIONS(367), - [sym__string_array_percent_literal_start] = ACTIONS(369), - [sym__symbol_array_percent_literal_start] = ACTIONS(371), - [sym__regex_percent_literal_start] = ACTIONS(373), - [sym_heredoc_start] = ACTIONS(283), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1616] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(7007), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(1616), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1617] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(7008), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(1617), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1618] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4764), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), - [sym_heredoc_body] = STATE(1618), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1619] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4765), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), - [sym_heredoc_body] = STATE(1619), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1620] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(7013), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(1620), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1621] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6896), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(1621), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1622] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6898), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(1622), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1623] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6899), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(1623), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1624] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6901), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(1624), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1625] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6903), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(1625), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1626] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6905), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(1626), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1627] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6906), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(1627), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1628] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3989), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), - [sym_heredoc_body] = STATE(1628), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1629] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(3990), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), - [sym_heredoc_body] = STATE(1629), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1630] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4976), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), - [sym_heredoc_body] = STATE(1630), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(102), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7778), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), [sym_index_operator] = STATE(2311), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2930), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(2497), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(2517), - [anon_sym_TILDE] = ACTIONS(2519), - [anon_sym_with] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2535), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2539), - [sym_instance_var] = ACTIONS(2934), - [sym_class_var] = ACTIONS(2934), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2547), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(2549), - [sym_unary_minus] = ACTIONS(2549), - [sym_unary_wrapping_plus] = ACTIONS(2551), - [sym_unary_wrapping_minus] = ACTIONS(2551), - [sym__beginless_range_operator] = ACTIONS(2553), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1631] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4085), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), - [sym_heredoc_body] = STATE(1631), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1632] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4086), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), - [sym_heredoc_body] = STATE(1632), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1633] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5540), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), - [sym_heredoc_body] = STATE(1633), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1634] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5550), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), - [sym_heredoc_body] = STATE(1634), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1635] = { - [sym__parenthesized_statement] = STATE(6590), - [sym_expressions] = STATE(6590), - [sym__expression] = STATE(6605), - [sym_empty_parens] = STATE(6590), - [sym_integer] = STATE(6590), - [sym_float] = STATE(6590), - [sym_char] = STATE(6590), - [sym_string] = STATE(5119), - [sym_chained_string] = STATE(6590), - [sym_string_percent_literal] = STATE(6590), - [sym_string_array_percent_literal] = STATE(6590), - [sym_symbol_array_percent_literal] = STATE(6590), - [sym_heredoc_body] = STATE(1635), - [sym_quoted_symbol] = STATE(6590), - [sym_command] = STATE(6590), - [sym_command_percent_literal] = STATE(6590), - [sym_regex] = STATE(6590), - [sym_regex_percent_literal] = STATE(6590), - [sym_array] = STATE(6590), - [sym_hash] = STATE(6590), - [sym_tuple] = STATE(6590), - [sym_named_tuple] = STATE(6590), - [sym_range] = STATE(6590), - [sym_beginless_range] = STATE(6590), - [sym_proc] = STATE(6590), - [sym_yield] = STATE(6590), - [sym_typeof] = STATE(6590), - [sym_sizeof] = STATE(6590), - [sym_instance_sizeof] = STATE(6590), - [sym_offsetof] = STATE(6590), - [sym_constant] = STATE(6183), - [sym_pseudo_constant] = STATE(6590), - [sym_generic_instance_type] = STATE(6590), - [sym__dot_call] = STATE(215), - [sym_call] = STATE(6590), - [sym_assign_call] = STATE(7823), - [sym_index_operator] = STATE(2370), - [sym_not] = STATE(6590), - [sym_and] = STATE(6590), - [sym_or] = STATE(6590), - [sym_additive_operator] = STATE(6590), - [sym_unary_additive_operator] = STATE(6590), - [sym_multiplicative_operator] = STATE(6590), - [sym_exponential_operator] = STATE(6590), - [sym_shift_operator] = STATE(6590), - [sym_complement_operator] = STATE(6590), - [sym_binary_and_operator] = STATE(6590), - [sym_binary_or_operator] = STATE(6590), - [sym_equality_operator] = STATE(6590), - [sym_comparison_operator] = STATE(6590), - [sym_assign] = STATE(6590), - [sym_operator_assign] = STATE(6590), - [sym_type_declaration] = STATE(6590), - [sym_begin_block] = STATE(6590), - [sym_while] = STATE(6590), - [sym_until] = STATE(6590), - [sym_if] = STATE(6590), - [sym_unless] = STATE(6590), - [sym_conditional] = STATE(6590), - [sym_case] = STATE(6590), - [sym_exhaustive_case] = STATE(6590), - [sym_identifier] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(3050), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2236), - [sym_true] = ACTIONS(2236), - [sym_false] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token2] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [sym_operator_symbol] = ACTIONS(2244), - [sym_unquoted_symbol] = ACTIONS(2244), - [anon_sym_COLON_DQUOTE] = ACTIONS(2246), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_DASH_GT] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(2256), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2260), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_sizeof] = ACTIONS(2264), - [anon_sym_instance_sizeof] = ACTIONS(2266), - [anon_sym_offsetof] = ACTIONS(2268), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym___LINE__] = ACTIONS(2274), - [anon_sym___END_LINE__] = ACTIONS(2274), - [anon_sym___FILE__] = ACTIONS(2274), - [anon_sym___DIR__] = ACTIONS(2274), - [sym_special_variable] = ACTIONS(2244), - [sym_identifier_method_call] = ACTIONS(3054), - [sym_instance_var] = ACTIONS(2278), - [sym_class_var] = ACTIONS(2278), - [sym_self] = ACTIONS(2236), - [anon_sym_begin] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2284), - [anon_sym_until] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2288), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2290), - [sym__start_of_named_tuple] = ACTIONS(2292), - [sym_unary_plus] = ACTIONS(2294), - [sym_unary_minus] = ACTIONS(2294), - [sym_unary_wrapping_plus] = ACTIONS(2296), - [sym_unary_wrapping_minus] = ACTIONS(2296), - [sym__beginless_range_operator] = ACTIONS(2302), - [sym__regex_start] = ACTIONS(2304), - [sym__regular_if_keyword] = ACTIONS(2306), - [sym__regular_unless_keyword] = ACTIONS(2308), - [sym__string_literal_start] = ACTIONS(2310), - [sym__string_percent_literal_start] = ACTIONS(2312), - [sym__command_percent_literal_start] = ACTIONS(2314), - [sym__string_array_percent_literal_start] = ACTIONS(2316), - [sym__symbol_array_percent_literal_start] = ACTIONS(2318), - [sym__regex_percent_literal_start] = ACTIONS(2320), - [sym_heredoc_start] = ACTIONS(2244), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1636] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5470), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), - [sym_heredoc_body] = STATE(1636), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1637] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5472), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), - [sym_heredoc_body] = STATE(1637), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1638] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5810), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1638), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1639] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5813), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1639), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1640] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4769), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1640), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1641] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6783), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1641), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1642] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6791), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1642), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1643] = { - [sym__parenthesized_statement] = STATE(3900), - [sym_expressions] = STATE(3900), - [sym__expression] = STATE(4002), - [sym_empty_parens] = STATE(3900), - [sym_integer] = STATE(3900), - [sym_float] = STATE(3900), - [sym_char] = STATE(3900), - [sym_string] = STATE(3280), - [sym_chained_string] = STATE(3900), - [sym_string_percent_literal] = STATE(3900), - [sym_string_array_percent_literal] = STATE(3900), - [sym_symbol_array_percent_literal] = STATE(3900), - [sym_heredoc_body] = STATE(1643), - [sym_quoted_symbol] = STATE(3900), - [sym_command] = STATE(3900), - [sym_command_percent_literal] = STATE(3900), - [sym_regex] = STATE(3900), - [sym_regex_percent_literal] = STATE(3900), - [sym_array] = STATE(3900), - [sym_hash] = STATE(3900), - [sym_tuple] = STATE(3900), - [sym_named_tuple] = STATE(3900), - [sym_range] = STATE(3900), - [sym_beginless_range] = STATE(3900), - [sym_proc] = STATE(3900), - [sym_yield] = STATE(3900), - [sym_typeof] = STATE(3900), - [sym_sizeof] = STATE(3900), - [sym_instance_sizeof] = STATE(3900), - [sym_offsetof] = STATE(3900), - [sym_constant] = STATE(3653), - [sym_pseudo_constant] = STATE(3900), - [sym_generic_instance_type] = STATE(3900), - [sym__dot_call] = STATE(85), - [sym_call] = STATE(3900), - [sym_assign_call] = STATE(7780), - [sym_index_operator] = STATE(2278), - [sym_not] = STATE(3900), - [sym_and] = STATE(3900), - [sym_or] = STATE(3900), - [sym_additive_operator] = STATE(3900), - [sym_unary_additive_operator] = STATE(3900), - [sym_multiplicative_operator] = STATE(3900), - [sym_exponential_operator] = STATE(3900), - [sym_shift_operator] = STATE(3900), - [sym_complement_operator] = STATE(3900), - [sym_binary_and_operator] = STATE(3900), - [sym_binary_or_operator] = STATE(3900), - [sym_equality_operator] = STATE(3900), - [sym_comparison_operator] = STATE(3900), - [sym_assign] = STATE(3900), - [sym_operator_assign] = STATE(3900), - [sym_type_declaration] = STATE(3900), - [sym_begin_block] = STATE(3900), - [sym_while] = STATE(3900), - [sym_until] = STATE(3900), - [sym_if] = STATE(3900), - [sym_unless] = STATE(3900), - [sym_conditional] = STATE(3900), - [sym_case] = STATE(3900), - [sym_exhaustive_case] = STATE(3900), - [sym_identifier] = ACTIONS(2886), - [anon_sym_LPAREN] = ACTIONS(2888), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(407), - [sym_true] = ACTIONS(407), - [sym_false] = ACTIONS(407), - [aux_sym_integer_token2] = ACTIONS(409), - [aux_sym_float_token2] = ACTIONS(411), - [anon_sym_SQUOTE] = ACTIONS(413), - [sym_operator_symbol] = ACTIONS(415), - [sym_unquoted_symbol] = ACTIONS(415), - [anon_sym_COLON_DQUOTE] = ACTIONS(417), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LBRACK] = ACTIONS(421), - [anon_sym_DASH_GT] = ACTIONS(423), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(427), - [anon_sym_with] = ACTIONS(431), - [anon_sym_yield] = ACTIONS(433), - [anon_sym_typeof] = ACTIONS(435), - [anon_sym_sizeof] = ACTIONS(437), - [anon_sym_instance_sizeof] = ACTIONS(439), - [anon_sym_offsetof] = ACTIONS(441), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [anon_sym___LINE__] = ACTIONS(447), - [anon_sym___END_LINE__] = ACTIONS(447), - [anon_sym___FILE__] = ACTIONS(447), - [anon_sym___DIR__] = ACTIONS(447), - [sym_special_variable] = ACTIONS(415), - [sym_identifier_method_call] = ACTIONS(2892), - [sym_instance_var] = ACTIONS(451), - [sym_class_var] = ACTIONS(451), - [sym_self] = ACTIONS(407), - [anon_sym_begin] = ACTIONS(463), - [anon_sym_while] = ACTIONS(465), - [anon_sym_until] = ACTIONS(467), - [anon_sym_case] = ACTIONS(469), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(473), - [sym__start_of_named_tuple] = ACTIONS(475), - [sym_unary_plus] = ACTIONS(477), - [sym_unary_minus] = ACTIONS(477), - [sym_unary_wrapping_plus] = ACTIONS(479), - [sym_unary_wrapping_minus] = ACTIONS(479), - [sym__beginless_range_operator] = ACTIONS(487), - [sym__regex_start] = ACTIONS(489), - [sym__regular_if_keyword] = ACTIONS(491), - [sym__regular_unless_keyword] = ACTIONS(493), - [sym__string_literal_start] = ACTIONS(495), - [sym__string_percent_literal_start] = ACTIONS(497), - [sym__command_percent_literal_start] = ACTIONS(499), - [sym__string_array_percent_literal_start] = ACTIONS(501), - [sym__symbol_array_percent_literal_start] = ACTIONS(503), - [sym__regex_percent_literal_start] = ACTIONS(505), - [sym_heredoc_start] = ACTIONS(415), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1644] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5818), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1644), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1645] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(5819), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1645), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1646] = { - [sym__parenthesized_statement] = STATE(5521), - [sym_expressions] = STATE(5521), - [sym__expression] = STATE(5524), - [sym_empty_parens] = STATE(5521), - [sym_integer] = STATE(5521), - [sym_float] = STATE(5521), - [sym_char] = STATE(5521), - [sym_string] = STATE(4921), - [sym_chained_string] = STATE(5521), - [sym_string_percent_literal] = STATE(5521), - [sym_string_array_percent_literal] = STATE(5521), - [sym_symbol_array_percent_literal] = STATE(5521), - [sym_heredoc_body] = STATE(1646), - [sym_quoted_symbol] = STATE(5521), - [sym_command] = STATE(5521), - [sym_command_percent_literal] = STATE(5521), - [sym_regex] = STATE(5521), - [sym_regex_percent_literal] = STATE(5521), - [sym_array] = STATE(5521), - [sym_hash] = STATE(5521), - [sym_tuple] = STATE(5521), - [sym_named_tuple] = STATE(5521), - [sym_range] = STATE(5521), - [sym_beginless_range] = STATE(5521), - [sym_proc] = STATE(5521), - [sym_yield] = STATE(5521), - [sym_typeof] = STATE(5521), - [sym_sizeof] = STATE(5521), - [sym_instance_sizeof] = STATE(5521), - [sym_offsetof] = STATE(5521), - [sym_constant] = STATE(5158), - [sym_pseudo_constant] = STATE(5521), - [sym_generic_instance_type] = STATE(5521), - [sym__dot_call] = STATE(211), - [sym_call] = STATE(5521), - [sym_assign_call] = STATE(7781), - [sym_index_operator] = STATE(2326), - [sym_not] = STATE(5521), - [sym_and] = STATE(5521), - [sym_or] = STATE(5521), - [sym_additive_operator] = STATE(5521), - [sym_unary_additive_operator] = STATE(5521), - [sym_multiplicative_operator] = STATE(5521), - [sym_exponential_operator] = STATE(5521), - [sym_shift_operator] = STATE(5521), - [sym_complement_operator] = STATE(5521), - [sym_binary_and_operator] = STATE(5521), - [sym_binary_or_operator] = STATE(5521), - [sym_equality_operator] = STATE(5521), - [sym_comparison_operator] = STATE(5521), - [sym_assign] = STATE(5521), - [sym_operator_assign] = STATE(5521), - [sym_type_declaration] = STATE(5521), - [sym_begin_block] = STATE(5521), - [sym_while] = STATE(5521), - [sym_until] = STATE(5521), - [sym_if] = STATE(5521), - [sym_unless] = STATE(5521), - [sym_conditional] = STATE(5521), - [sym_case] = STATE(5521), - [sym_exhaustive_case] = STATE(5521), - [sym_identifier] = ACTIONS(2992), - [anon_sym_LPAREN] = ACTIONS(2994), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(793), - [sym_true] = ACTIONS(793), - [sym_false] = ACTIONS(793), - [aux_sym_integer_token2] = ACTIONS(795), - [aux_sym_float_token2] = ACTIONS(797), - [anon_sym_SQUOTE] = ACTIONS(799), - [sym_operator_symbol] = ACTIONS(801), - [sym_unquoted_symbol] = ACTIONS(801), - [anon_sym_COLON_DQUOTE] = ACTIONS(803), - [anon_sym_BQUOTE] = ACTIONS(805), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(813), - [anon_sym_with] = ACTIONS(817), - [anon_sym_yield] = ACTIONS(819), - [anon_sym_typeof] = ACTIONS(821), - [anon_sym_sizeof] = ACTIONS(823), - [anon_sym_instance_sizeof] = ACTIONS(825), - [anon_sym_offsetof] = ACTIONS(827), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [anon_sym___LINE__] = ACTIONS(833), - [anon_sym___END_LINE__] = ACTIONS(833), - [anon_sym___FILE__] = ACTIONS(833), - [anon_sym___DIR__] = ACTIONS(833), - [sym_special_variable] = ACTIONS(801), - [sym_identifier_method_call] = ACTIONS(2998), - [sym_instance_var] = ACTIONS(837), - [sym_class_var] = ACTIONS(837), - [sym_self] = ACTIONS(793), - [anon_sym_begin] = ACTIONS(849), - [anon_sym_while] = ACTIONS(851), - [anon_sym_until] = ACTIONS(853), - [anon_sym_case] = ACTIONS(855), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(859), - [sym__start_of_named_tuple] = ACTIONS(861), - [sym_unary_plus] = ACTIONS(863), - [sym_unary_minus] = ACTIONS(863), - [sym_unary_wrapping_plus] = ACTIONS(865), - [sym_unary_wrapping_minus] = ACTIONS(865), - [sym__beginless_range_operator] = ACTIONS(873), - [sym__regex_start] = ACTIONS(875), - [sym__regular_if_keyword] = ACTIONS(877), - [sym__regular_unless_keyword] = ACTIONS(879), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(885), - [sym__string_array_percent_literal_start] = ACTIONS(887), - [sym__symbol_array_percent_literal_start] = ACTIONS(889), - [sym__regex_percent_literal_start] = ACTIONS(891), - [sym_heredoc_start] = ACTIONS(801), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1647] = { - [sym__parenthesized_statement] = STATE(3706), - [sym_expressions] = STATE(3706), - [sym__expression] = STATE(4229), - [sym_empty_parens] = STATE(3706), - [sym_integer] = STATE(3706), - [sym_float] = STATE(3706), - [sym_char] = STATE(3706), - [sym_string] = STATE(5035), - [sym_chained_string] = STATE(3706), - [sym_string_percent_literal] = STATE(3706), - [sym_string_array_percent_literal] = STATE(3706), - [sym_symbol_array_percent_literal] = STATE(3706), - [sym_heredoc_body] = STATE(1647), - [sym_quoted_symbol] = STATE(3706), - [sym_command] = STATE(3706), - [sym_command_percent_literal] = STATE(3706), - [sym_regex] = STATE(3706), - [sym_regex_percent_literal] = STATE(3706), - [sym_array] = STATE(3706), - [sym_hash] = STATE(3706), - [sym_tuple] = STATE(3706), - [sym_named_tuple] = STATE(3706), - [sym_range] = STATE(3706), - [sym_beginless_range] = STATE(3706), - [sym_proc] = STATE(3706), - [sym_yield] = STATE(3706), - [sym_typeof] = STATE(3706), - [sym_sizeof] = STATE(3706), - [sym_instance_sizeof] = STATE(3706), - [sym_offsetof] = STATE(3706), - [sym_constant] = STATE(3422), - [sym_pseudo_constant] = STATE(3706), - [sym_generic_instance_type] = STATE(3706), - [sym__dot_call] = STATE(240), - [sym_call] = STATE(3706), - [sym_assign_call] = STATE(7776), - [sym_index_operator] = STATE(2340), - [sym_not] = STATE(3706), - [sym_and] = STATE(3706), - [sym_or] = STATE(3706), - [sym_additive_operator] = STATE(3706), - [sym_unary_additive_operator] = STATE(3706), - [sym_multiplicative_operator] = STATE(3706), - [sym_exponential_operator] = STATE(3706), - [sym_shift_operator] = STATE(3706), - [sym_complement_operator] = STATE(3706), - [sym_binary_and_operator] = STATE(3706), - [sym_binary_or_operator] = STATE(3706), - [sym_equality_operator] = STATE(3706), - [sym_comparison_operator] = STATE(3706), - [sym_assign] = STATE(3706), - [sym_operator_assign] = STATE(3706), - [sym_type_declaration] = STATE(3706), - [sym_begin_block] = STATE(3706), - [sym_while] = STATE(3706), - [sym_until] = STATE(3706), - [sym_if] = STATE(3706), - [sym_unless] = STATE(3706), - [sym_conditional] = STATE(3706), - [sym_case] = STATE(3706), - [sym_exhaustive_case] = STATE(3706), - [sym_identifier] = ACTIONS(3026), - [anon_sym_LPAREN] = ACTIONS(2902), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(529), - [sym_true] = ACTIONS(529), - [sym_false] = ACTIONS(529), - [aux_sym_integer_token2] = ACTIONS(531), - [aux_sym_float_token2] = ACTIONS(533), - [anon_sym_SQUOTE] = ACTIONS(535), - [sym_operator_symbol] = ACTIONS(537), - [sym_unquoted_symbol] = ACTIONS(537), - [anon_sym_COLON_DQUOTE] = ACTIONS(539), - [anon_sym_BQUOTE] = ACTIONS(541), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_DASH_GT] = ACTIONS(545), - [anon_sym_BANG] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(1087), - [anon_sym_with] = ACTIONS(1091), - [anon_sym_yield] = ACTIONS(1093), - [anon_sym_typeof] = ACTIONS(557), - [anon_sym_sizeof] = ACTIONS(559), - [anon_sym_instance_sizeof] = ACTIONS(561), - [anon_sym_offsetof] = ACTIONS(563), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym___LINE__] = ACTIONS(569), - [anon_sym___END_LINE__] = ACTIONS(569), - [anon_sym___FILE__] = ACTIONS(569), - [anon_sym___DIR__] = ACTIONS(569), - [sym_special_variable] = ACTIONS(537), - [sym_identifier_method_call] = ACTIONS(3028), - [sym_instance_var] = ACTIONS(1099), - [sym_class_var] = ACTIONS(1099), - [sym_self] = ACTIONS(529), - [anon_sym_begin] = ACTIONS(583), - [anon_sym_while] = ACTIONS(585), - [anon_sym_until] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(593), - [sym__start_of_named_tuple] = ACTIONS(595), - [sym_unary_plus] = ACTIONS(1105), - [sym_unary_minus] = ACTIONS(1105), - [sym_unary_wrapping_plus] = ACTIONS(1107), - [sym_unary_wrapping_minus] = ACTIONS(1107), - [sym__beginless_range_operator] = ACTIONS(1115), - [sym__regex_start] = ACTIONS(609), - [sym__regular_if_keyword] = ACTIONS(611), - [sym__regular_unless_keyword] = ACTIONS(613), - [sym__string_literal_start] = ACTIONS(3000), - [sym__string_percent_literal_start] = ACTIONS(3002), - [sym__command_percent_literal_start] = ACTIONS(619), - [sym__string_array_percent_literal_start] = ACTIONS(621), - [sym__symbol_array_percent_literal_start] = ACTIONS(623), - [sym__regex_percent_literal_start] = ACTIONS(625), - [sym_heredoc_start] = ACTIONS(537), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, - [1648] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6980), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(1648), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1649] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4684), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1649), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1650] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6912), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1650), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1651] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6290), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1651), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1652] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2888), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1652), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [1574] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3039), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1574), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -264566,12 +258564,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -264583,97 +258581,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1653] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2889), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1653), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [1575] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3040), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1575), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -264686,12 +258686,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -264703,217 +258703,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1654] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6245), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), - [sym_heredoc_body] = STATE(1654), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1655] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2891), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1655), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [1576] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3041), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1576), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -264926,12 +258808,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -264943,97 +258825,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1656] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2892), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1656), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [1577] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3042), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1577), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -265046,12 +258930,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -265063,97 +258947,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1657] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2893), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1657), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [1578] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3043), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1578), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -265166,12 +259052,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -265183,97 +259069,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1658] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2894), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1658), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [1579] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3186), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1579), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -265286,12 +259174,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -265303,97 +259191,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1659] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2896), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1659), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [1580] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3046), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1580), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -265406,12 +259296,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -265423,97 +259313,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1660] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2897), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1660), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [1581] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3047), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1581), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -265526,12 +259418,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -265543,97 +259435,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1661] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2898), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1661), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [1582] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3048), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1582), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -265646,12 +259540,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -265663,97 +259557,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1662] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2899), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1662), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [1583] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3049), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1583), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -265766,12 +259662,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -265783,217 +259679,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1663] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6935), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1663), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [1584] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6983), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1584), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, - [1664] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2900), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1664), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [1585] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3050), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1585), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -266006,12 +259906,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -266023,97 +259923,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1665] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2901), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1665), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [1586] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3051), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1586), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -266126,12 +260028,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -266143,217 +260045,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1666] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6895), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(1666), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1667] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2914), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1667), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [1587] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3062), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1587), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -266366,12 +260150,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -266383,97 +260167,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1668] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(2915), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1668), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [1588] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3064), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1588), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -266486,12 +260272,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -266503,20857 +260289,27671 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1669] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6338), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1669), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1670] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6339), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1670), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [1589] = { + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4939), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), + [sym_heredoc_body] = STATE(1589), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, - [1671] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6917), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1671), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [1590] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6300), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1590), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, - [1672] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6918), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1672), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [1591] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6309), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1591), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, - [1673] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6919), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1673), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [1592] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6825), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1592), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, - [1674] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6920), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1674), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [1593] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6980), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1593), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, - [1675] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6921), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1675), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [1594] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6985), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1594), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, - [1676] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6922), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1676), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [1595] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6992), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1595), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, - [1677] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6924), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1677), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [1596] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6998), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1596), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, - [1678] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6925), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1678), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [1597] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7003), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1597), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, - [1679] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6926), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1679), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [1598] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7004), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1598), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, - [1680] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6927), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1680), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [1599] = { + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2545), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), + [sym_heredoc_body] = STATE(1599), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, - [1681] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6928), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1681), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [1600] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7012), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1600), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, - [1682] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6929), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1682), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [1601] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7015), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1601), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, - [1683] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6931), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1683), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [1602] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7017), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1602), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, - [1684] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6932), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1684), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [1603] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7036), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1603), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1604] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7042), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1604), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1605] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7048), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1605), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1606] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6938), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1606), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1607] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6944), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1607), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1608] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5930), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1608), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1609] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5931), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1609), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1610] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5932), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1610), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1611] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5933), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1611), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1612] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5934), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1612), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1613] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5935), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1613), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1614] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5938), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1614), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1615] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5939), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1615), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1616] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5940), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1616), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1617] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5941), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1617), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1618] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5942), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1618), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1619] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5943), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1619), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1620] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5032), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1620), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1621] = { + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2561), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), + [sym_heredoc_body] = STATE(1621), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1622] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5947), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1622), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1623] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(5948), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1623), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1624] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5288), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1624), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1625] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5289), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1625), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1626] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5290), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1626), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1627] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5291), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1627), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1628] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5292), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1628), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1629] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5293), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1629), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1630] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5295), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1630), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1631] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5296), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1631), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1632] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5297), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1632), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1633] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5298), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1633), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1634] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5299), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1634), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1635] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5300), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1636] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5302), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1636), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1637] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5036), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1637), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1638] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(5303), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1638), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1639] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4412), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1639), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1640] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4422), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1640), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1641] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6707), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(1641), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1642] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6708), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(1642), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1643] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6709), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(1643), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1644] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6710), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(1644), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1645] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6711), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(1645), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1646] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6712), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(1646), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1647] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6715), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(1647), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1648] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6716), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(1648), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1649] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6717), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(1649), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1650] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6671), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(1650), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1651] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6718), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(1651), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1652] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6719), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(1652), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1653] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6723), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(1653), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1654] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6724), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(1654), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1655] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4402), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1655), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1656] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4405), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1656), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1657] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4408), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1657), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1658] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4409), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1658), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1659] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4410), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1659), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1660] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4191), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1660), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1661] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4192), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1661), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1662] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4411), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1662), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1663] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4414), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1663), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1664] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4209), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1664), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1665] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4210), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1665), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1666] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4211), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1666), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1667] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4212), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1667), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1668] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4213), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1668), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1669] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4214), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1669), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1670] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4418), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1670), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1671] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4216), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1671), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1672] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4217), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1672), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1673] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4218), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1673), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1674] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4219), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1674), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1675] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4220), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1675), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1676] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4221), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1676), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1677] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4419), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1677), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1678] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4420), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1678), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1679] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4423), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1679), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1680] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4424), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1680), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1681] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4223), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1681), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1682] = { + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4224), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), + [sym_heredoc_body] = STATE(1682), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1683] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3244), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1683), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(64), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7837), + [sym_index_operator] = STATE(2238), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(31), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(53), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_with] = ACTIONS(71), + [anon_sym_yield] = ACTIONS(73), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(89), + [sym_instance_var] = ACTIONS(2478), + [sym_class_var] = ACTIONS(2478), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(107), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(111), + [sym_unary_minus] = ACTIONS(111), + [sym_unary_wrapping_plus] = ACTIONS(113), + [sym_unary_wrapping_minus] = ACTIONS(113), + [sym__beginless_range_operator] = ACTIONS(115), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1684] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6645), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1684), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1685] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5950), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4520), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1685), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1686] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5951), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4706), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1686), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1687] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5955), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4707), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1687), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1688] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5956), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4533), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1688), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(79), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7830), + [sym_index_operator] = STATE(2293), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1377), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_TILDE] = ACTIONS(1399), + [anon_sym_with] = ACTIONS(1413), + [anon_sym_yield] = ACTIONS(1415), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(1419), + [sym_instance_var] = ACTIONS(2945), + [sym_class_var] = ACTIONS(2945), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1431), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1433), + [sym_unary_minus] = ACTIONS(1433), + [sym_unary_wrapping_plus] = ACTIONS(1435), + [sym_unary_wrapping_minus] = ACTIONS(1435), + [sym__beginless_range_operator] = ACTIONS(1437), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1689] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5957), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4725), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1689), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1690] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5961), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4726), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1690), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1691] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5972), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4727), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1691), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1692] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5973), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4728), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1692), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1693] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5974), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4729), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1693), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1694] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5975), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4730), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1694), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1695] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5976), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4732), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1695), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1696] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5977), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4733), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1696), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1697] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5991), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4734), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1697), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1698] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(5992), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4735), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1698), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1699] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5272), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4736), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1699), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1700] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5273), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4737), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1700), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1701] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5274), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4741), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1701), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1702] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5275), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4742), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1702), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1703] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5276), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5464), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1703), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1704] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5277), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5466), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1704), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1705] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5280), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6687), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1705), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1706] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5281), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6688), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1706), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1707] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5282), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6627), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1707), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(259), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7846), + [sym_index_operator] = STATE(2444), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3151), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3545), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_with] = ACTIONS(3157), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3161), + [sym_instance_var] = ACTIONS(3163), + [sym_class_var] = ACTIONS(3163), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3165), + [sym_unary_minus] = ACTIONS(3165), + [sym_unary_wrapping_plus] = ACTIONS(3167), + [sym_unary_wrapping_minus] = ACTIONS(3167), + [sym__beginless_range_operator] = ACTIONS(3169), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1708] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5283), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5889), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(1708), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [1709] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5284), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5706), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1709), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1710] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5285), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5707), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1710), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1711] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5290), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5722), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1711), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1712] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(5291), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6174), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1712), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1713] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6833), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6126), + [sym_expressions] = STATE(6126), + [sym__expression] = STATE(5896), + [sym_empty_parens] = STATE(6126), + [sym_integer] = STATE(6126), + [sym_float] = STATE(6126), + [sym_char] = STATE(6126), + [sym_string] = STATE(5104), + [sym_chained_string] = STATE(6126), + [sym_string_percent_literal] = STATE(6126), + [sym_string_array_percent_literal] = STATE(6126), + [sym_symbol_array_percent_literal] = STATE(6126), [sym_heredoc_body] = STATE(1713), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6126), + [sym_command] = STATE(6126), + [sym_command_percent_literal] = STATE(6126), + [sym_regex] = STATE(6126), + [sym_regex_percent_literal] = STATE(6126), + [sym_array] = STATE(6126), + [sym_hash] = STATE(6126), + [sym_tuple] = STATE(6126), + [sym_named_tuple] = STATE(6126), + [sym_range] = STATE(6126), + [sym_beginless_range] = STATE(6126), + [sym_proc] = STATE(6126), + [sym_yield] = STATE(6126), + [sym_typeof] = STATE(6126), + [sym_sizeof] = STATE(6126), + [sym_instance_sizeof] = STATE(6126), + [sym_offsetof] = STATE(6126), + [sym_constant] = STATE(5626), + [sym_pseudo_constant] = STATE(6126), + [sym_generic_instance_type] = STATE(6126), + [sym__dot_call] = STATE(227), + [sym_call] = STATE(6126), + [sym_assign_call] = STATE(7825), + [sym_index_operator] = STATE(2339), + [sym_not] = STATE(6126), + [sym_and] = STATE(6126), + [sym_or] = STATE(6126), + [sym_additive_operator] = STATE(6126), + [sym_unary_additive_operator] = STATE(6126), + [sym_multiplicative_operator] = STATE(6126), + [sym_exponential_operator] = STATE(6126), + [sym_shift_operator] = STATE(6126), + [sym_complement_operator] = STATE(6126), + [sym_binary_and_operator] = STATE(6126), + [sym_binary_or_operator] = STATE(6126), + [sym_equality_operator] = STATE(6126), + [sym_comparison_operator] = STATE(6126), + [sym_assign] = STATE(6126), + [sym_operator_assign] = STATE(6126), + [sym_type_declaration] = STATE(6126), + [sym_begin_block] = STATE(6126), + [sym_while] = STATE(6126), + [sym_until] = STATE(6126), + [sym_if] = STATE(6126), + [sym_unless] = STATE(6126), + [sym_conditional] = STATE(6126), + [sym_case] = STATE(6126), + [sym_select] = STATE(6126), + [sym_exhaustive_case] = STATE(6126), + [sym_identifier] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3049), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(979), + [sym_true] = ACTIONS(979), + [sym_false] = ACTIONS(979), + [aux_sym_integer_token2] = ACTIONS(981), + [aux_sym_float_token2] = ACTIONS(983), + [anon_sym_SQUOTE] = ACTIONS(985), + [sym_operator_symbol] = ACTIONS(987), + [sym_unquoted_symbol] = ACTIONS(987), + [anon_sym_COLON_DQUOTE] = ACTIONS(989), + [anon_sym_BQUOTE] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(993), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_with] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_typeof] = ACTIONS(1007), + [anon_sym_sizeof] = ACTIONS(1009), + [anon_sym_instance_sizeof] = ACTIONS(1011), + [anon_sym_offsetof] = ACTIONS(1013), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym___LINE__] = ACTIONS(1019), + [anon_sym___END_LINE__] = ACTIONS(1019), + [anon_sym___FILE__] = ACTIONS(1019), + [anon_sym___DIR__] = ACTIONS(1019), + [sym_special_variable] = ACTIONS(987), + [sym_identifier_method_call] = ACTIONS(3053), + [sym_instance_var] = ACTIONS(1023), + [sym_class_var] = ACTIONS(1023), + [sym_self] = ACTIONS(979), + [anon_sym_begin] = ACTIONS(1035), + [anon_sym_while] = ACTIONS(1037), + [anon_sym_until] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(1041), + [anon_sym_select] = ACTIONS(1043), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1047), + [sym__start_of_named_tuple] = ACTIONS(1049), + [sym_unary_plus] = ACTIONS(1051), + [sym_unary_minus] = ACTIONS(1051), + [sym_unary_wrapping_plus] = ACTIONS(1053), + [sym_unary_wrapping_minus] = ACTIONS(1053), + [sym__beginless_range_operator] = ACTIONS(1061), + [sym__regex_start] = ACTIONS(1063), + [sym__regular_if_keyword] = ACTIONS(1065), + [sym__regular_unless_keyword] = ACTIONS(1067), + [sym__string_literal_start] = ACTIONS(1069), + [sym__string_percent_literal_start] = ACTIONS(1071), + [sym__command_percent_literal_start] = ACTIONS(1073), + [sym__string_array_percent_literal_start] = ACTIONS(1075), + [sym__symbol_array_percent_literal_start] = ACTIONS(1077), + [sym__regex_percent_literal_start] = ACTIONS(1079), + [sym_heredoc_start] = ACTIONS(987), [sym__heredoc_body_start] = ACTIONS(7), }, [1714] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6834), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5723), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1714), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1715] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6835), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4615), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1715), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1716] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6836), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4972), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1716), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(97), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7845), + [sym_index_operator] = STATE(2309), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(2568), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(2588), + [anon_sym_TILDE] = ACTIONS(2590), + [anon_sym_with] = ACTIONS(2604), + [anon_sym_yield] = ACTIONS(2606), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2610), + [sym_instance_var] = ACTIONS(2975), + [sym_class_var] = ACTIONS(2975), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2618), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(2620), + [sym_unary_minus] = ACTIONS(2620), + [sym_unary_wrapping_plus] = ACTIONS(2622), + [sym_unary_wrapping_minus] = ACTIONS(2622), + [sym__beginless_range_operator] = ACTIONS(2624), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1717] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6837), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5724), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1717), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1718] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6838), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6738), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1718), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1719] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6842), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(2563), + [sym_expressions] = STATE(2563), + [sym__expression] = STATE(2631), + [sym_empty_parens] = STATE(2563), + [sym_integer] = STATE(2563), + [sym_float] = STATE(2563), + [sym_char] = STATE(2563), + [sym_string] = STATE(2398), + [sym_chained_string] = STATE(2563), + [sym_string_percent_literal] = STATE(2563), + [sym_string_array_percent_literal] = STATE(2563), + [sym_symbol_array_percent_literal] = STATE(2563), [sym_heredoc_body] = STATE(1719), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(2563), + [sym_command] = STATE(2563), + [sym_command_percent_literal] = STATE(2563), + [sym_regex] = STATE(2563), + [sym_regex_percent_literal] = STATE(2563), + [sym_array] = STATE(2563), + [sym_hash] = STATE(2563), + [sym_tuple] = STATE(2563), + [sym_named_tuple] = STATE(2563), + [sym_range] = STATE(2563), + [sym_beginless_range] = STATE(2563), + [sym_proc] = STATE(2563), + [sym_yield] = STATE(2563), + [sym_typeof] = STATE(2563), + [sym_sizeof] = STATE(2563), + [sym_instance_sizeof] = STATE(2563), + [sym_offsetof] = STATE(2563), + [sym_constant] = STATE(2492), + [sym_pseudo_constant] = STATE(2563), + [sym_generic_instance_type] = STATE(2563), + [sym__dot_call] = STATE(59), + [sym_call] = STATE(2563), + [sym_assign_call] = STATE(7855), + [sym_index_operator] = STATE(2224), + [sym_not] = STATE(2563), + [sym_and] = STATE(2563), + [sym_or] = STATE(2563), + [sym_additive_operator] = STATE(2563), + [sym_unary_additive_operator] = STATE(2563), + [sym_multiplicative_operator] = STATE(2563), + [sym_exponential_operator] = STATE(2563), + [sym_shift_operator] = STATE(2563), + [sym_complement_operator] = STATE(2563), + [sym_binary_and_operator] = STATE(2563), + [sym_binary_or_operator] = STATE(2563), + [sym_equality_operator] = STATE(2563), + [sym_comparison_operator] = STATE(2563), + [sym_assign] = STATE(2563), + [sym_operator_assign] = STATE(2563), + [sym_type_declaration] = STATE(2563), + [sym_begin_block] = STATE(2563), + [sym_while] = STATE(2563), + [sym_until] = STATE(2563), + [sym_if] = STATE(2563), + [sym_unless] = STATE(2563), + [sym_conditional] = STATE(2563), + [sym_case] = STATE(2563), + [sym_select] = STATE(2563), + [sym_exhaustive_case] = STATE(2563), + [sym_identifier] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2063), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(141), + [sym_true] = ACTIONS(141), + [sym_false] = ACTIONS(141), + [aux_sym_integer_token2] = ACTIONS(143), + [aux_sym_float_token2] = ACTIONS(145), + [anon_sym_SQUOTE] = ACTIONS(147), + [sym_operator_symbol] = ACTIONS(149), + [sym_unquoted_symbol] = ACTIONS(149), + [anon_sym_COLON_DQUOTE] = ACTIONS(151), + [anon_sym_BQUOTE] = ACTIONS(153), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_DASH_GT] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(163), + [anon_sym_with] = ACTIONS(167), + [anon_sym_yield] = ACTIONS(169), + [anon_sym_typeof] = ACTIONS(171), + [anon_sym_sizeof] = ACTIONS(173), + [anon_sym_instance_sizeof] = ACTIONS(175), + [anon_sym_offsetof] = ACTIONS(177), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [anon_sym___LINE__] = ACTIONS(183), + [anon_sym___END_LINE__] = ACTIONS(183), + [anon_sym___FILE__] = ACTIONS(183), + [anon_sym___DIR__] = ACTIONS(183), + [sym_special_variable] = ACTIONS(149), + [sym_identifier_method_call] = ACTIONS(2069), + [sym_instance_var] = ACTIONS(187), + [sym_class_var] = ACTIONS(187), + [sym_self] = ACTIONS(141), + [anon_sym_begin] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_until] = ACTIONS(203), + [anon_sym_case] = ACTIONS(205), + [anon_sym_select] = ACTIONS(207), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(211), + [sym__start_of_named_tuple] = ACTIONS(213), + [sym_unary_plus] = ACTIONS(215), + [sym_unary_minus] = ACTIONS(215), + [sym_unary_wrapping_plus] = ACTIONS(217), + [sym_unary_wrapping_minus] = ACTIONS(217), + [sym__beginless_range_operator] = ACTIONS(225), + [sym__regex_start] = ACTIONS(227), + [sym__regular_if_keyword] = ACTIONS(229), + [sym__regular_unless_keyword] = ACTIONS(231), + [sym__string_literal_start] = ACTIONS(233), + [sym__string_percent_literal_start] = ACTIONS(235), + [sym__command_percent_literal_start] = ACTIONS(237), + [sym__string_array_percent_literal_start] = ACTIONS(239), + [sym__symbol_array_percent_literal_start] = ACTIONS(241), + [sym__regex_percent_literal_start] = ACTIONS(243), + [sym_heredoc_start] = ACTIONS(149), [sym__heredoc_body_start] = ACTIONS(7), }, [1720] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6843), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5725), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1720), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1721] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6844), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(3946), + [sym_expressions] = STATE(3946), + [sym__expression] = STATE(4189), + [sym_empty_parens] = STATE(3946), + [sym_integer] = STATE(3946), + [sym_float] = STATE(3946), + [sym_char] = STATE(3946), + [sym_string] = STATE(3215), + [sym_chained_string] = STATE(3946), + [sym_string_percent_literal] = STATE(3946), + [sym_string_array_percent_literal] = STATE(3946), + [sym_symbol_array_percent_literal] = STATE(3946), [sym_heredoc_body] = STATE(1721), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(3946), + [sym_command] = STATE(3946), + [sym_command_percent_literal] = STATE(3946), + [sym_regex] = STATE(3946), + [sym_regex_percent_literal] = STATE(3946), + [sym_array] = STATE(3946), + [sym_hash] = STATE(3946), + [sym_tuple] = STATE(3946), + [sym_named_tuple] = STATE(3946), + [sym_range] = STATE(3946), + [sym_beginless_range] = STATE(3946), + [sym_proc] = STATE(3946), + [sym_yield] = STATE(3946), + [sym_typeof] = STATE(3946), + [sym_sizeof] = STATE(3946), + [sym_instance_sizeof] = STATE(3946), + [sym_offsetof] = STATE(3946), + [sym_constant] = STATE(3599), + [sym_pseudo_constant] = STATE(3946), + [sym_generic_instance_type] = STATE(3946), + [sym__dot_call] = STATE(77), + [sym_call] = STATE(3946), + [sym_assign_call] = STATE(7847), + [sym_index_operator] = STATE(2271), + [sym_not] = STATE(3946), + [sym_and] = STATE(3946), + [sym_or] = STATE(3946), + [sym_additive_operator] = STATE(3946), + [sym_unary_additive_operator] = STATE(3946), + [sym_multiplicative_operator] = STATE(3946), + [sym_exponential_operator] = STATE(3946), + [sym_shift_operator] = STATE(3946), + [sym_complement_operator] = STATE(3946), + [sym_binary_and_operator] = STATE(3946), + [sym_binary_or_operator] = STATE(3946), + [sym_equality_operator] = STATE(3946), + [sym_comparison_operator] = STATE(3946), + [sym_assign] = STATE(3946), + [sym_operator_assign] = STATE(3946), + [sym_type_declaration] = STATE(3946), + [sym_begin_block] = STATE(3946), + [sym_while] = STATE(3946), + [sym_until] = STATE(3946), + [sym_if] = STATE(3946), + [sym_unless] = STATE(3946), + [sym_conditional] = STATE(3946), + [sym_case] = STATE(3946), + [sym_select] = STATE(3946), + [sym_exhaustive_case] = STATE(3946), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(1375), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1279), + [sym_true] = ACTIONS(1279), + [sym_false] = ACTIONS(1279), + [aux_sym_integer_token2] = ACTIONS(1281), + [aux_sym_float_token2] = ACTIONS(1283), + [anon_sym_SQUOTE] = ACTIONS(1285), + [sym_operator_symbol] = ACTIONS(1287), + [sym_unquoted_symbol] = ACTIONS(1287), + [anon_sym_COLON_DQUOTE] = ACTIONS(1289), + [anon_sym_BQUOTE] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1293), + [anon_sym_DASH_GT] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(1299), + [anon_sym_with] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(1303), + [anon_sym_typeof] = ACTIONS(1305), + [anon_sym_sizeof] = ACTIONS(1307), + [anon_sym_instance_sizeof] = ACTIONS(1309), + [anon_sym_offsetof] = ACTIONS(1311), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [anon_sym___LINE__] = ACTIONS(1317), + [anon_sym___END_LINE__] = ACTIONS(1317), + [anon_sym___FILE__] = ACTIONS(1317), + [anon_sym___DIR__] = ACTIONS(1317), + [sym_special_variable] = ACTIONS(1287), + [sym_identifier_method_call] = ACTIONS(2913), + [sym_instance_var] = ACTIONS(1321), + [sym_class_var] = ACTIONS(1321), + [sym_self] = ACTIONS(1279), + [anon_sym_begin] = ACTIONS(1325), + [anon_sym_while] = ACTIONS(1327), + [anon_sym_until] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(1331), + [anon_sym_select] = ACTIONS(1333), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1335), + [sym__start_of_named_tuple] = ACTIONS(1337), + [sym_unary_plus] = ACTIONS(1339), + [sym_unary_minus] = ACTIONS(1339), + [sym_unary_wrapping_plus] = ACTIONS(1341), + [sym_unary_wrapping_minus] = ACTIONS(1341), + [sym__beginless_range_operator] = ACTIONS(1347), + [sym__regex_start] = ACTIONS(1349), + [sym__regular_if_keyword] = ACTIONS(1351), + [sym__regular_unless_keyword] = ACTIONS(1353), + [sym__string_literal_start] = ACTIONS(1355), + [sym__string_percent_literal_start] = ACTIONS(1357), + [sym__command_percent_literal_start] = ACTIONS(1359), + [sym__string_array_percent_literal_start] = ACTIONS(1361), + [sym__symbol_array_percent_literal_start] = ACTIONS(1363), + [sym__regex_percent_literal_start] = ACTIONS(1365), + [sym_heredoc_start] = ACTIONS(1287), [sym__heredoc_body_start] = ACTIONS(7), }, [1722] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6845), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6669), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(1722), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [1723] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6846), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6269), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(1723), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [1724] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6847), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(4798), + [sym_expressions] = STATE(4798), + [sym__expression] = STATE(4704), + [sym_empty_parens] = STATE(4798), + [sym_integer] = STATE(4798), + [sym_float] = STATE(4798), + [sym_char] = STATE(4798), + [sym_string] = STATE(3666), + [sym_chained_string] = STATE(4798), + [sym_string_percent_literal] = STATE(4798), + [sym_string_array_percent_literal] = STATE(4798), + [sym_symbol_array_percent_literal] = STATE(4798), [sym_heredoc_body] = STATE(1724), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(4798), + [sym_command] = STATE(4798), + [sym_command_percent_literal] = STATE(4798), + [sym_regex] = STATE(4798), + [sym_regex_percent_literal] = STATE(4798), + [sym_array] = STATE(4798), + [sym_hash] = STATE(4798), + [sym_tuple] = STATE(4798), + [sym_named_tuple] = STATE(4798), + [sym_range] = STATE(4798), + [sym_beginless_range] = STATE(4798), + [sym_proc] = STATE(4798), + [sym_yield] = STATE(4798), + [sym_typeof] = STATE(4798), + [sym_sizeof] = STATE(4798), + [sym_instance_sizeof] = STATE(4798), + [sym_offsetof] = STATE(4798), + [sym_constant] = STATE(4532), + [sym_pseudo_constant] = STATE(4798), + [sym_generic_instance_type] = STATE(4798), + [sym__dot_call] = STATE(94), + [sym_call] = STATE(4798), + [sym_assign_call] = STATE(7840), + [sym_index_operator] = STATE(2301), + [sym_not] = STATE(4798), + [sym_and] = STATE(4798), + [sym_or] = STATE(4798), + [sym_additive_operator] = STATE(4798), + [sym_unary_additive_operator] = STATE(4798), + [sym_multiplicative_operator] = STATE(4798), + [sym_exponential_operator] = STATE(4798), + [sym_shift_operator] = STATE(4798), + [sym_complement_operator] = STATE(4798), + [sym_binary_and_operator] = STATE(4798), + [sym_binary_or_operator] = STATE(4798), + [sym_equality_operator] = STATE(4798), + [sym_comparison_operator] = STATE(4798), + [sym_assign] = STATE(4798), + [sym_operator_assign] = STATE(4798), + [sym_type_declaration] = STATE(4798), + [sym_begin_block] = STATE(4798), + [sym_while] = STATE(4798), + [sym_until] = STATE(4798), + [sym_if] = STATE(4798), + [sym_unless] = STATE(4798), + [sym_conditional] = STATE(4798), + [sym_case] = STATE(4798), + [sym_select] = STATE(4798), + [sym_exhaustive_case] = STATE(4798), + [sym_identifier] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1543), + [sym_true] = ACTIONS(1543), + [sym_false] = ACTIONS(1543), + [aux_sym_integer_token2] = ACTIONS(1545), + [aux_sym_float_token2] = ACTIONS(1547), + [anon_sym_SQUOTE] = ACTIONS(1549), + [sym_operator_symbol] = ACTIONS(1551), + [sym_unquoted_symbol] = ACTIONS(1551), + [anon_sym_COLON_DQUOTE] = ACTIONS(1553), + [anon_sym_BQUOTE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_DASH_GT] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(1563), + [anon_sym_with] = ACTIONS(1565), + [anon_sym_yield] = ACTIONS(1567), + [anon_sym_typeof] = ACTIONS(1569), + [anon_sym_sizeof] = ACTIONS(1571), + [anon_sym_instance_sizeof] = ACTIONS(1573), + [anon_sym_offsetof] = ACTIONS(1575), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [anon_sym___LINE__] = ACTIONS(1581), + [anon_sym___END_LINE__] = ACTIONS(1581), + [anon_sym___FILE__] = ACTIONS(1581), + [anon_sym___DIR__] = ACTIONS(1581), + [sym_special_variable] = ACTIONS(1551), + [sym_identifier_method_call] = ACTIONS(2955), + [sym_instance_var] = ACTIONS(1585), + [sym_class_var] = ACTIONS(1585), + [sym_self] = ACTIONS(1543), + [anon_sym_begin] = ACTIONS(1589), + [anon_sym_while] = ACTIONS(1591), + [anon_sym_until] = ACTIONS(1593), + [anon_sym_case] = ACTIONS(1595), + [anon_sym_select] = ACTIONS(1597), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1599), + [sym__start_of_named_tuple] = ACTIONS(1601), + [sym_unary_plus] = ACTIONS(1603), + [sym_unary_minus] = ACTIONS(1603), + [sym_unary_wrapping_plus] = ACTIONS(1605), + [sym_unary_wrapping_minus] = ACTIONS(1605), + [sym__beginless_range_operator] = ACTIONS(1611), + [sym__regex_start] = ACTIONS(1613), + [sym__regular_if_keyword] = ACTIONS(1615), + [sym__regular_unless_keyword] = ACTIONS(1617), + [sym__string_literal_start] = ACTIONS(1619), + [sym__string_percent_literal_start] = ACTIONS(1621), + [sym__command_percent_literal_start] = ACTIONS(1623), + [sym__string_array_percent_literal_start] = ACTIONS(1625), + [sym__symbol_array_percent_literal_start] = ACTIONS(1627), + [sym__regex_percent_literal_start] = ACTIONS(1629), + [sym_heredoc_start] = ACTIONS(1551), [sym__heredoc_body_start] = ACTIONS(7), }, [1725] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6872), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5727), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1725), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1726] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6874), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4886), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1726), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1727] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4198), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5728), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1727), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1728] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4208), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6990), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1728), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1729] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4253), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6535), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1729), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1730] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4254), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5729), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1730), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1731] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4255), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7019), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1731), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1732] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4257), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5730), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1732), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1733] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4258), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5731), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1733), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1734] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4259), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5732), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1734), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1735] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4262), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6426), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1735), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1736] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4263), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4610), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1736), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1737] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4264), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6982), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1737), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1738] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4266), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6282), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1738), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1739] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4268), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6997), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1739), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1740] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4269), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4624), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1740), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1741] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2628), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7037), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1741), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1742] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4277), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6362), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1742), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1743] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2629), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6968), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1743), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1744] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4278), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6778), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1744), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1745] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4790), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4636), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1745), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1746] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4791), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6972), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1746), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1747] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4798), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6457), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1747), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1748] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4799), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5620), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1748), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1749] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4800), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7044), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1749), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1750] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4801), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4649), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1750), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1751] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4802), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6517), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1751), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1752] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4803), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(5675), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1752), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(218), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7823), + [sym_index_operator] = STATE(2329), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(3023), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(805), + [anon_sym_with] = ACTIONS(809), + [anon_sym_yield] = ACTIONS(811), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(3025), + [sym_instance_var] = ACTIONS(817), + [sym_class_var] = ACTIONS(817), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(825), + [sym_unary_minus] = ACTIONS(825), + [sym_unary_wrapping_plus] = ACTIONS(827), + [sym_unary_wrapping_minus] = ACTIONS(827), + [sym__beginless_range_operator] = ACTIONS(835), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1753] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4805), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7059), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1753), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1754] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4806), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5366), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(1754), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [1755] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4807), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4666), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1755), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1756] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4808), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6570), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1756), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1757] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4809), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5367), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(1757), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [1758] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4810), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6947), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1758), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1759] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4812), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4681), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1759), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1760] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4813), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6615), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1760), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1761] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6682), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6945), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1761), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1762] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2641), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4700), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1762), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1763] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2642), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6650), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1763), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1764] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2647), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6962), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1764), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1765] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2648), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6665), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1765), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1766] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6333), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4718), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1766), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(264), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7817), - [sym_index_operator] = STATE(2463), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3126), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3130), - [sym_instance_var] = ACTIONS(3132), - [sym_class_var] = ACTIONS(3132), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3134), - [sym_unary_minus] = ACTIONS(3134), - [sym_unary_wrapping_plus] = ACTIONS(3136), - [sym_unary_wrapping_minus] = ACTIONS(3136), - [sym__beginless_range_operator] = ACTIONS(3138), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1767] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2649), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6274), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1767), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1768] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2652), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6989), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1768), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1769] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2654), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4761), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1769), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1770] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2657), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6296), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1770), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1771] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6211), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6939), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1771), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1772] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2659), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5256), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(1772), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [1773] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2660), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4792), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1773), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1774] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2667), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6492), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1774), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1775] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4769), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5257), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(1775), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [1776] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2668), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6971), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1776), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1777] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6882), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5263), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(1777), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [1778] = { - [sym__parenthesized_statement] = STATE(4241), - [sym_expressions] = STATE(4241), - [sym__expression] = STATE(4191), - [sym_empty_parens] = STATE(4241), - [sym_integer] = STATE(4241), - [sym_float] = STATE(4241), - [sym_char] = STATE(4241), - [sym_string] = STATE(3215), - [sym_chained_string] = STATE(4241), - [sym_string_percent_literal] = STATE(4241), - [sym_string_array_percent_literal] = STATE(4241), - [sym_symbol_array_percent_literal] = STATE(4241), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5264), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(1778), - [sym_quoted_symbol] = STATE(4241), - [sym_command] = STATE(4241), - [sym_command_percent_literal] = STATE(4241), - [sym_regex] = STATE(4241), - [sym_regex_percent_literal] = STATE(4241), - [sym_array] = STATE(4241), - [sym_hash] = STATE(4241), - [sym_tuple] = STATE(4241), - [sym_named_tuple] = STATE(4241), - [sym_range] = STATE(4241), - [sym_beginless_range] = STATE(4241), - [sym_proc] = STATE(4241), - [sym_yield] = STATE(4241), - [sym_typeof] = STATE(4241), - [sym_sizeof] = STATE(4241), - [sym_instance_sizeof] = STATE(4241), - [sym_offsetof] = STATE(4241), - [sym_constant] = STATE(3786), - [sym_pseudo_constant] = STATE(4241), - [sym_generic_instance_type] = STATE(4241), - [sym__dot_call] = STATE(71), - [sym_call] = STATE(4241), - [sym_assign_call] = STATE(7809), - [sym_index_operator] = STATE(2280), - [sym_not] = STATE(4241), - [sym_and] = STATE(4241), - [sym_or] = STATE(4241), - [sym_additive_operator] = STATE(4241), - [sym_unary_additive_operator] = STATE(4241), - [sym_multiplicative_operator] = STATE(4241), - [sym_exponential_operator] = STATE(4241), - [sym_shift_operator] = STATE(4241), - [sym_complement_operator] = STATE(4241), - [sym_binary_and_operator] = STATE(4241), - [sym_binary_or_operator] = STATE(4241), - [sym_equality_operator] = STATE(4241), - [sym_comparison_operator] = STATE(4241), - [sym_assign] = STATE(4241), - [sym_operator_assign] = STATE(4241), - [sym_type_declaration] = STATE(4241), - [sym_begin_block] = STATE(4241), - [sym_while] = STATE(4241), - [sym_until] = STATE(4241), - [sym_if] = STATE(4241), - [sym_unless] = STATE(4241), - [sym_conditional] = STATE(4241), - [sym_case] = STATE(4241), - [sym_exhaustive_case] = STATE(4241), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(1355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1263), - [sym_true] = ACTIONS(1263), - [sym_false] = ACTIONS(1263), - [aux_sym_integer_token2] = ACTIONS(1265), - [aux_sym_float_token2] = ACTIONS(1267), - [anon_sym_SQUOTE] = ACTIONS(1269), - [sym_operator_symbol] = ACTIONS(1271), - [sym_unquoted_symbol] = ACTIONS(1271), - [anon_sym_COLON_DQUOTE] = ACTIONS(1273), - [anon_sym_BQUOTE] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(1283), - [anon_sym_with] = ACTIONS(1285), - [anon_sym_yield] = ACTIONS(1287), - [anon_sym_typeof] = ACTIONS(1289), - [anon_sym_sizeof] = ACTIONS(1291), - [anon_sym_instance_sizeof] = ACTIONS(1293), - [anon_sym_offsetof] = ACTIONS(1295), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [anon_sym___LINE__] = ACTIONS(1301), - [anon_sym___END_LINE__] = ACTIONS(1301), - [anon_sym___FILE__] = ACTIONS(1301), - [anon_sym___DIR__] = ACTIONS(1301), - [sym_special_variable] = ACTIONS(1271), - [sym_identifier_method_call] = ACTIONS(2882), - [sym_instance_var] = ACTIONS(1305), - [sym_class_var] = ACTIONS(1305), - [sym_self] = ACTIONS(1263), - [anon_sym_begin] = ACTIONS(1309), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_until] = ACTIONS(1313), - [anon_sym_case] = ACTIONS(1315), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1317), - [sym__start_of_named_tuple] = ACTIONS(1319), - [sym_unary_plus] = ACTIONS(1321), - [sym_unary_minus] = ACTIONS(1321), - [sym_unary_wrapping_plus] = ACTIONS(1323), - [sym_unary_wrapping_minus] = ACTIONS(1323), - [sym__beginless_range_operator] = ACTIONS(1329), - [sym__regex_start] = ACTIONS(1331), - [sym__regular_if_keyword] = ACTIONS(1333), - [sym__regular_unless_keyword] = ACTIONS(1335), - [sym__string_literal_start] = ACTIONS(1337), - [sym__string_percent_literal_start] = ACTIONS(1339), - [sym__command_percent_literal_start] = ACTIONS(1341), - [sym__string_array_percent_literal_start] = ACTIONS(1343), - [sym__symbol_array_percent_literal_start] = ACTIONS(1345), - [sym__regex_percent_literal_start] = ACTIONS(1347), - [sym_heredoc_start] = ACTIONS(1271), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [1779] = { - [sym__parenthesized_statement] = STATE(4694), - [sym_expressions] = STATE(4694), - [sym__expression] = STATE(4788), - [sym_empty_parens] = STATE(4694), - [sym_integer] = STATE(4694), - [sym_float] = STATE(4694), - [sym_char] = STATE(4694), - [sym_string] = STATE(3722), - [sym_chained_string] = STATE(4694), - [sym_string_percent_literal] = STATE(4694), - [sym_string_array_percent_literal] = STATE(4694), - [sym_symbol_array_percent_literal] = STATE(4694), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6554), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(1779), - [sym_quoted_symbol] = STATE(4694), - [sym_command] = STATE(4694), - [sym_command_percent_literal] = STATE(4694), - [sym_regex] = STATE(4694), - [sym_regex_percent_literal] = STATE(4694), - [sym_array] = STATE(4694), - [sym_hash] = STATE(4694), - [sym_tuple] = STATE(4694), - [sym_named_tuple] = STATE(4694), - [sym_range] = STATE(4694), - [sym_beginless_range] = STATE(4694), - [sym_proc] = STATE(4694), - [sym_yield] = STATE(4694), - [sym_typeof] = STATE(4694), - [sym_sizeof] = STATE(4694), - [sym_instance_sizeof] = STATE(4694), - [sym_offsetof] = STATE(4694), - [sym_constant] = STATE(4307), - [sym_pseudo_constant] = STATE(4694), - [sym_generic_instance_type] = STATE(4694), - [sym__dot_call] = STATE(94), - [sym_call] = STATE(4694), - [sym_assign_call] = STATE(7810), - [sym_index_operator] = STATE(2303), - [sym_not] = STATE(4694), - [sym_and] = STATE(4694), - [sym_or] = STATE(4694), - [sym_additive_operator] = STATE(4694), - [sym_unary_additive_operator] = STATE(4694), - [sym_multiplicative_operator] = STATE(4694), - [sym_exponential_operator] = STATE(4694), - [sym_shift_operator] = STATE(4694), - [sym_complement_operator] = STATE(4694), - [sym_binary_and_operator] = STATE(4694), - [sym_binary_or_operator] = STATE(4694), - [sym_equality_operator] = STATE(4694), - [sym_comparison_operator] = STATE(4694), - [sym_assign] = STATE(4694), - [sym_operator_assign] = STATE(4694), - [sym_type_declaration] = STATE(4694), - [sym_begin_block] = STATE(4694), - [sym_while] = STATE(4694), - [sym_until] = STATE(4694), - [sym_if] = STATE(4694), - [sym_unless] = STATE(4694), - [sym_conditional] = STATE(4694), - [sym_case] = STATE(4694), - [sym_exhaustive_case] = STATE(4694), - [sym_identifier] = ACTIONS(2922), - [anon_sym_LPAREN] = ACTIONS(2495), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1455), - [sym_true] = ACTIONS(1455), - [sym_false] = ACTIONS(1455), - [aux_sym_integer_token2] = ACTIONS(1457), - [aux_sym_float_token2] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [sym_operator_symbol] = ACTIONS(1463), - [sym_unquoted_symbol] = ACTIONS(1463), - [anon_sym_COLON_DQUOTE] = ACTIONS(1465), - [anon_sym_BQUOTE] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_DASH_GT] = ACTIONS(1471), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(1475), - [anon_sym_with] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1479), - [anon_sym_typeof] = ACTIONS(1481), - [anon_sym_sizeof] = ACTIONS(1483), - [anon_sym_instance_sizeof] = ACTIONS(1485), - [anon_sym_offsetof] = ACTIONS(1487), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [anon_sym___LINE__] = ACTIONS(1493), - [anon_sym___END_LINE__] = ACTIONS(1493), - [anon_sym___FILE__] = ACTIONS(1493), - [anon_sym___DIR__] = ACTIONS(1493), - [sym_special_variable] = ACTIONS(1463), - [sym_identifier_method_call] = ACTIONS(2924), - [sym_instance_var] = ACTIONS(1497), - [sym_class_var] = ACTIONS(1497), - [sym_self] = ACTIONS(1455), - [anon_sym_begin] = ACTIONS(1501), - [anon_sym_while] = ACTIONS(1503), - [anon_sym_until] = ACTIONS(1505), - [anon_sym_case] = ACTIONS(1507), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1509), - [sym__start_of_named_tuple] = ACTIONS(1511), - [sym_unary_plus] = ACTIONS(1513), - [sym_unary_minus] = ACTIONS(1513), - [sym_unary_wrapping_plus] = ACTIONS(1515), - [sym_unary_wrapping_minus] = ACTIONS(1515), - [sym__beginless_range_operator] = ACTIONS(1521), - [sym__regex_start] = ACTIONS(1523), - [sym__regular_if_keyword] = ACTIONS(1525), - [sym__regular_unless_keyword] = ACTIONS(1527), - [sym__string_literal_start] = ACTIONS(1529), - [sym__string_percent_literal_start] = ACTIONS(1531), - [sym__command_percent_literal_start] = ACTIONS(1533), - [sym__string_array_percent_literal_start] = ACTIONS(1535), - [sym__symbol_array_percent_literal_start] = ACTIONS(1537), - [sym__regex_percent_literal_start] = ACTIONS(1539), - [sym_heredoc_start] = ACTIONS(1463), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [1780] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4692), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4808), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1780), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1781] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6910), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6429), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1781), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1782] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6336), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5265), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(1782), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [1783] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6913), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6986), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1783), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1784] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4700), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5266), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(1784), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [1785] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6937), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6555), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(1785), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [1786] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6357), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6510), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1786), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1787] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6939), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6975), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1787), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1788] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4703), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5269), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(1788), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [1789] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6955), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6577), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(1789), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [1790] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6363), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6573), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1790), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1791] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6970), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5270), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(1791), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [1792] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4709), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7018), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1792), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1793] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6961), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5271), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(1793), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [1794] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6369), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6584), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(1794), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [1795] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6957), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6652), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1795), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1796] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4712), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6949), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1796), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1797] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6374), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6585), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(1797), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [1798] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6962), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6276), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1798), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1799] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4724), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6965), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1799), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1800] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6387), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6586), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), [sym_heredoc_body] = STATE(1800), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), [sym__heredoc_body_start] = ACTIONS(7), }, [1801] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6966), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6284), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1801), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1802] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4727), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6973), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1802), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1803] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6396), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6306), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1803), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1804] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6975), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6959), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1804), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1805] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4741), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6375), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1805), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1806] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6400), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6979), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1806), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1807] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6968), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6415), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1807), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1808] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4743), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6981), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1808), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1809] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6404), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6435), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1809), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1810] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6981), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6995), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1810), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1811] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4747), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6441), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1811), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1812] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6409), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7000), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1812), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1813] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6987), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6443), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1813), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(103), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7863), + [sym_index_operator] = STATE(2311), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(1659), + [anon_sym_with] = ACTIONS(1661), + [anon_sym_yield] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2967), + [sym_instance_var] = ACTIONS(1681), + [sym_class_var] = ACTIONS(1681), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(1699), + [sym_unary_minus] = ACTIONS(1699), + [sym_unary_wrapping_plus] = ACTIONS(1701), + [sym_unary_wrapping_minus] = ACTIONS(1701), + [sym__beginless_range_operator] = ACTIONS(1707), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1814] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4748), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5272), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), [sym_heredoc_body] = STATE(1814), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, [1815] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6414), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3155), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), [sym_heredoc_body] = STATE(1815), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1816] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6971), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1816), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1817] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4756), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1817), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1818] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6431), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1818), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1819] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7001), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1819), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1820] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6433), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1820), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1821] = { - [sym_heredoc_body] = STATE(1821), - [sym_identifier] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3238), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [sym_operator_symbol] = ACTIONS(3236), - [sym_unquoted_symbol] = ACTIONS(3236), - [anon_sym_COLON_DQUOTE] = ACTIONS(3236), - [anon_sym_BQUOTE] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_COMMA] = ACTIONS(3236), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_DASH_GT] = ACTIONS(3236), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3238), - [anon_sym_GT_GT] = ACTIONS(3238), - [anon_sym_LT_LT] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ_GT] = ACTIONS(3236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG_TILDE] = ACTIONS(3236), - [anon_sym_EQ_TILDE] = ACTIONS(3236), - [anon_sym_AMP_STAR] = ACTIONS(3238), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3236), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym_instance_sizeof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [sym__constant_segment] = ACTIONS(3236), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym___LINE__] = ACTIONS(3238), - [anon_sym___END_LINE__] = ACTIONS(3238), - [anon_sym___FILE__] = ACTIONS(3238), - [anon_sym___DIR__] = ACTIONS(3238), - [sym_special_variable] = ACTIONS(3236), - [sym_identifier_method_call] = ACTIONS(3236), - [sym_instance_var] = ACTIONS(3236), - [sym_class_var] = ACTIONS(3236), - [sym_self] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_AMP_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_AMP_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_EQ] = ACTIONS(3242), - [anon_sym_CARET_EQ] = ACTIONS(3242), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3242), - [anon_sym_LT_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_GT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_AMP_EQ] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_begin] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_until] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3236), - [sym__start_of_hash_or_tuple] = ACTIONS(3236), - [sym__start_of_named_tuple] = ACTIONS(3236), - [sym__start_of_index_operator] = ACTIONS(3236), - [sym__end_of_with_expression] = ACTIONS(3236), - [sym_unary_plus] = ACTIONS(3236), - [sym_unary_minus] = ACTIONS(3236), - [sym_binary_plus] = ACTIONS(3236), - [sym_binary_minus] = ACTIONS(3236), - [sym_unary_wrapping_plus] = ACTIONS(3236), - [sym_unary_wrapping_minus] = ACTIONS(3236), - [sym_binary_wrapping_plus] = ACTIONS(3236), - [sym_binary_wrapping_minus] = ACTIONS(3236), - [sym__unary_star] = ACTIONS(3236), - [sym__binary_star] = ACTIONS(3236), - [sym__unary_double_star] = ACTIONS(3236), - [sym__binary_double_star] = ACTIONS(3236), - [sym__block_ampersand] = ACTIONS(3236), - [sym_binary_ampersand] = ACTIONS(3236), - [sym__beginless_range_operator] = ACTIONS(3236), - [sym__regex_start] = ACTIONS(3236), - [sym__binary_slash] = ACTIONS(3236), - [sym__binary_double_slash] = ACTIONS(3236), - [sym__regular_if_keyword] = ACTIONS(3236), - [sym__regular_unless_keyword] = ACTIONS(3236), - [sym__modulo_operator] = ACTIONS(3236), - [sym__string_literal_start] = ACTIONS(3236), - [sym__string_percent_literal_start] = ACTIONS(3236), - [sym__command_percent_literal_start] = ACTIONS(3236), - [sym__string_array_percent_literal_start] = ACTIONS(3236), - [sym__symbol_array_percent_literal_start] = ACTIONS(3236), - [sym__regex_percent_literal_start] = ACTIONS(3236), - [sym_heredoc_start] = ACTIONS(3236), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3236), - }, - [1822] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6972), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1822), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1823] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6435), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1823), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1824] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7004), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1824), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1825] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6437), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1825), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1826] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7006), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1826), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1827] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6438), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1827), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1828] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6900), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1828), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1829] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6439), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1829), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1830] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6902), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1830), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1831] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6440), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1831), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1832] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6967), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1832), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1833] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6441), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1833), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1834] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6973), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1834), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1835] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6443), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1835), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1836] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6904), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1836), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1837] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6446), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1837), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1838] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6907), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1838), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1839] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6449), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1839), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1840] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6908), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1840), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1841] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6450), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), - [sym_heredoc_body] = STATE(1841), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(95), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7785), - [sym_index_operator] = STATE(2310), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2938), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_with] = ACTIONS(1649), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2944), - [sym_instance_var] = ACTIONS(1669), - [sym_class_var] = ACTIONS(1669), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(1685), - [sym_unary_minus] = ACTIONS(1685), - [sym_unary_wrapping_plus] = ACTIONS(1687), - [sym_unary_wrapping_minus] = ACTIONS(1687), - [sym__beginless_range_operator] = ACTIONS(1693), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [1842] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3007), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1842), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -287366,12 +287966,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -287383,337 +287983,465 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1843] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6451), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), - [sym_heredoc_body] = STATE(1843), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [1816] = { + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5274), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), + [sym_heredoc_body] = STATE(1816), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, - [1844] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6452), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), - [sym_heredoc_body] = STATE(1844), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [1817] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6467), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1817), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, - [1845] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3010), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1845), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [1818] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6469), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1818), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1819] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3157), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1819), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -287726,12 +288454,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -287743,97 +288471,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1846] = { - [sym__parenthesized_statement] = STATE(2976), - [sym_expressions] = STATE(2976), - [sym__expression] = STATE(3011), - [sym_empty_parens] = STATE(2976), - [sym_integer] = STATE(2976), - [sym_float] = STATE(2976), - [sym_char] = STATE(2976), - [sym_string] = STATE(2542), - [sym_chained_string] = STATE(2976), - [sym_string_percent_literal] = STATE(2976), - [sym_string_array_percent_literal] = STATE(2976), - [sym_symbol_array_percent_literal] = STATE(2976), - [sym_heredoc_body] = STATE(1846), - [sym_quoted_symbol] = STATE(2976), - [sym_command] = STATE(2976), - [sym_command_percent_literal] = STATE(2976), - [sym_regex] = STATE(2976), - [sym_regex_percent_literal] = STATE(2976), - [sym_array] = STATE(2976), - [sym_hash] = STATE(2976), - [sym_tuple] = STATE(2976), - [sym_named_tuple] = STATE(2976), - [sym_range] = STATE(2976), - [sym_beginless_range] = STATE(2976), - [sym_proc] = STATE(2976), - [sym_yield] = STATE(2976), - [sym_typeof] = STATE(2976), - [sym_sizeof] = STATE(2976), - [sym_instance_sizeof] = STATE(2976), - [sym_offsetof] = STATE(2976), - [sym_constant] = STATE(2866), - [sym_pseudo_constant] = STATE(2976), - [sym_generic_instance_type] = STATE(2976), - [sym__dot_call] = STATE(57), - [sym_call] = STATE(2976), - [sym_assign_call] = STATE(7805), - [sym_index_operator] = STATE(2235), - [sym_not] = STATE(2976), - [sym_and] = STATE(2976), - [sym_or] = STATE(2976), - [sym_additive_operator] = STATE(2976), - [sym_unary_additive_operator] = STATE(2976), - [sym_multiplicative_operator] = STATE(2976), - [sym_exponential_operator] = STATE(2976), - [sym_shift_operator] = STATE(2976), - [sym_complement_operator] = STATE(2976), - [sym_binary_and_operator] = STATE(2976), - [sym_binary_or_operator] = STATE(2976), - [sym_equality_operator] = STATE(2976), - [sym_comparison_operator] = STATE(2976), - [sym_assign] = STATE(2976), - [sym_operator_assign] = STATE(2976), - [sym_type_declaration] = STATE(2976), - [sym_begin_block] = STATE(2976), - [sym_while] = STATE(2976), - [sym_until] = STATE(2976), - [sym_if] = STATE(2976), - [sym_unless] = STATE(2976), - [sym_conditional] = STATE(2976), - [sym_case] = STATE(2976), - [sym_exhaustive_case] = STATE(2976), - [sym_identifier] = ACTIONS(2220), + [1820] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(3158), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1820), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), [anon_sym_LPAREN] = ACTIONS(15), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(17), @@ -287846,12 +288576,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(25), [anon_sym_COLON_DQUOTE] = ACTIONS(27), [anon_sym_BQUOTE] = ACTIONS(29), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1227), [anon_sym_DASH_GT] = ACTIONS(33), - [anon_sym_BANG] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(1215), - [anon_sym_with] = ACTIONS(1217), - [anon_sym_yield] = ACTIONS(1219), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), [anon_sym_typeof] = ACTIONS(75), [anon_sym_sizeof] = ACTIONS(77), [anon_sym_instance_sizeof] = ACTIONS(79), @@ -287863,18626 +288593,21155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___FILE__] = ACTIONS(87), [anon_sym___DIR__] = ACTIONS(87), [sym_special_variable] = ACTIONS(25), - [sym_identifier_method_call] = ACTIONS(2222), - [sym_instance_var] = ACTIONS(1225), - [sym_class_var] = ACTIONS(1225), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), [sym_self] = ACTIONS(17), [anon_sym_begin] = ACTIONS(95), [anon_sym_while] = ACTIONS(97), [anon_sym_until] = ACTIONS(99), [anon_sym_case] = ACTIONS(103), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1229), - [sym__start_of_named_tuple] = ACTIONS(107), - [sym_unary_plus] = ACTIONS(1231), - [sym_unary_minus] = ACTIONS(1231), - [sym_unary_wrapping_plus] = ACTIONS(1233), - [sym_unary_wrapping_minus] = ACTIONS(1233), - [sym__beginless_range_operator] = ACTIONS(1239), - [sym__regex_start] = ACTIONS(115), - [sym__regular_if_keyword] = ACTIONS(117), - [sym__regular_unless_keyword] = ACTIONS(119), - [sym__string_literal_start] = ACTIONS(121), - [sym__string_percent_literal_start] = ACTIONS(123), - [sym__command_percent_literal_start] = ACTIONS(125), - [sym__string_array_percent_literal_start] = ACTIONS(127), - [sym__symbol_array_percent_literal_start] = ACTIONS(129), - [sym__regex_percent_literal_start] = ACTIONS(131), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), [sym_heredoc_start] = ACTIONS(25), [sym__heredoc_body_start] = ACTIONS(7), }, - [1847] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6914), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), - [sym_heredoc_body] = STATE(1847), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [1821] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7041), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(1821), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, - [1848] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6453), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), - [sym_heredoc_body] = STATE(1848), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [1822] = { + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5281), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), + [sym_heredoc_body] = STATE(1822), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), [sym__heredoc_body_start] = ACTIONS(7), }, - [1849] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6454), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), - [sym_heredoc_body] = STATE(1849), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), + [1823] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6502), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1823), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1824] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6503), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1824), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1825] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(2940), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1825), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1826] = { + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6591), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), + [sym_heredoc_body] = STATE(1826), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), + [sym_assign_call] = STATE(7818), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1827] = { + [sym__parenthesized_statement] = STATE(6542), + [sym_expressions] = STATE(6542), + [sym__expression] = STATE(6592), + [sym_empty_parens] = STATE(6542), + [sym_integer] = STATE(6542), + [sym_float] = STATE(6542), + [sym_char] = STATE(6542), + [sym_string] = STATE(5161), + [sym_chained_string] = STATE(6542), + [sym_string_percent_literal] = STATE(6542), + [sym_string_array_percent_literal] = STATE(6542), + [sym_symbol_array_percent_literal] = STATE(6542), + [sym_heredoc_body] = STATE(1827), + [sym_quoted_symbol] = STATE(6542), + [sym_command] = STATE(6542), + [sym_command_percent_literal] = STATE(6542), + [sym_regex] = STATE(6542), + [sym_regex_percent_literal] = STATE(6542), + [sym_array] = STATE(6542), + [sym_hash] = STATE(6542), + [sym_tuple] = STATE(6542), + [sym_named_tuple] = STATE(6542), + [sym_range] = STATE(6542), + [sym_beginless_range] = STATE(6542), + [sym_proc] = STATE(6542), + [sym_yield] = STATE(6542), + [sym_typeof] = STATE(6542), + [sym_sizeof] = STATE(6542), + [sym_instance_sizeof] = STATE(6542), + [sym_offsetof] = STATE(6542), + [sym_constant] = STATE(6028), + [sym_pseudo_constant] = STATE(6542), + [sym_generic_instance_type] = STATE(6542), + [sym__dot_call] = STATE(202), + [sym_call] = STATE(6542), [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_index_operator] = STATE(2355), + [sym_not] = STATE(6542), + [sym_and] = STATE(6542), + [sym_or] = STATE(6542), + [sym_additive_operator] = STATE(6542), + [sym_unary_additive_operator] = STATE(6542), + [sym_multiplicative_operator] = STATE(6542), + [sym_exponential_operator] = STATE(6542), + [sym_shift_operator] = STATE(6542), + [sym_complement_operator] = STATE(6542), + [sym_binary_and_operator] = STATE(6542), + [sym_binary_or_operator] = STATE(6542), + [sym_equality_operator] = STATE(6542), + [sym_comparison_operator] = STATE(6542), + [sym_assign] = STATE(6542), + [sym_operator_assign] = STATE(6542), + [sym_type_declaration] = STATE(6542), + [sym_begin_block] = STATE(6542), + [sym_while] = STATE(6542), + [sym_until] = STATE(6542), + [sym_if] = STATE(6542), + [sym_unless] = STATE(6542), + [sym_conditional] = STATE(6542), + [sym_case] = STATE(6542), + [sym_select] = STATE(6542), + [sym_exhaustive_case] = STATE(6542), + [sym_identifier] = ACTIONS(3079), + [anon_sym_LPAREN] = ACTIONS(3081), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2276), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [aux_sym_integer_token2] = ACTIONS(2278), + [aux_sym_float_token2] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2282), + [sym_operator_symbol] = ACTIONS(2284), + [sym_unquoted_symbol] = ACTIONS(2284), + [anon_sym_COLON_DQUOTE] = ACTIONS(2286), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(3411), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2302), + [anon_sym_sizeof] = ACTIONS(2304), + [anon_sym_instance_sizeof] = ACTIONS(2306), + [anon_sym_offsetof] = ACTIONS(2308), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [anon_sym___LINE__] = ACTIONS(2314), + [anon_sym___END_LINE__] = ACTIONS(2314), + [anon_sym___FILE__] = ACTIONS(2314), + [anon_sym___DIR__] = ACTIONS(2314), + [sym_special_variable] = ACTIONS(2284), + [sym_identifier_method_call] = ACTIONS(3085), + [sym_instance_var] = ACTIONS(2318), + [sym_class_var] = ACTIONS(2318), + [sym_self] = ACTIONS(2276), + [anon_sym_begin] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_until] = ACTIONS(2326), + [anon_sym_case] = ACTIONS(2328), + [anon_sym_select] = ACTIONS(2330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2332), + [sym__start_of_named_tuple] = ACTIONS(2334), + [sym_unary_plus] = ACTIONS(2336), + [sym_unary_minus] = ACTIONS(2336), + [sym_unary_wrapping_plus] = ACTIONS(2338), + [sym_unary_wrapping_minus] = ACTIONS(2338), + [sym__beginless_range_operator] = ACTIONS(2344), + [sym__regex_start] = ACTIONS(2346), + [sym__regular_if_keyword] = ACTIONS(2348), + [sym__regular_unless_keyword] = ACTIONS(2350), + [sym__string_literal_start] = ACTIONS(2352), + [sym__string_percent_literal_start] = ACTIONS(2354), + [sym__command_percent_literal_start] = ACTIONS(2356), + [sym__string_array_percent_literal_start] = ACTIONS(2358), + [sym__symbol_array_percent_literal_start] = ACTIONS(2360), + [sym__regex_percent_literal_start] = ACTIONS(2362), + [sym_heredoc_start] = ACTIONS(2284), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1828] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6250), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1828), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1829] = { + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6252), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), + [sym_heredoc_body] = STATE(1829), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(198), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7850), + [sym_index_operator] = STATE(2340), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3063), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3069), + [sym_instance_var] = ACTIONS(2139), + [sym_class_var] = ACTIONS(2139), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2153), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(2157), + [sym_unary_minus] = ACTIONS(2157), + [sym_unary_wrapping_plus] = ACTIONS(2159), + [sym_unary_wrapping_minus] = ACTIONS(2159), + [sym__beginless_range_operator] = ACTIONS(2165), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1830] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4616), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1830), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1831] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4617), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1831), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(125), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1832] = { + [sym__parenthesized_statement] = STATE(3089), + [sym_expressions] = STATE(3089), + [sym__expression] = STATE(2941), + [sym_empty_parens] = STATE(3089), + [sym_integer] = STATE(3089), + [sym_float] = STATE(3089), + [sym_char] = STATE(3089), + [sym_string] = STATE(2535), + [sym_chained_string] = STATE(3089), + [sym_string_percent_literal] = STATE(3089), + [sym_string_array_percent_literal] = STATE(3089), + [sym_symbol_array_percent_literal] = STATE(3089), + [sym_heredoc_body] = STATE(1832), + [sym_quoted_symbol] = STATE(3089), + [sym_command] = STATE(3089), + [sym_command_percent_literal] = STATE(3089), + [sym_regex] = STATE(3089), + [sym_regex_percent_literal] = STATE(3089), + [sym_array] = STATE(3089), + [sym_hash] = STATE(3089), + [sym_tuple] = STATE(3089), + [sym_named_tuple] = STATE(3089), + [sym_range] = STATE(3089), + [sym_beginless_range] = STATE(3089), + [sym_proc] = STATE(3089), + [sym_yield] = STATE(3089), + [sym_typeof] = STATE(3089), + [sym_sizeof] = STATE(3089), + [sym_instance_sizeof] = STATE(3089), + [sym_offsetof] = STATE(3089), + [sym_constant] = STATE(2843), + [sym_pseudo_constant] = STATE(3089), + [sym_generic_instance_type] = STATE(3089), + [sym__dot_call] = STATE(62), + [sym_call] = STATE(3089), + [sym_assign_call] = STATE(7849), + [sym_index_operator] = STATE(2232), + [sym_not] = STATE(3089), + [sym_and] = STATE(3089), + [sym_or] = STATE(3089), + [sym_additive_operator] = STATE(3089), + [sym_unary_additive_operator] = STATE(3089), + [sym_multiplicative_operator] = STATE(3089), + [sym_exponential_operator] = STATE(3089), + [sym_shift_operator] = STATE(3089), + [sym_complement_operator] = STATE(3089), + [sym_binary_and_operator] = STATE(3089), + [sym_binary_or_operator] = STATE(3089), + [sym_equality_operator] = STATE(3089), + [sym_comparison_operator] = STATE(3089), + [sym_assign] = STATE(3089), + [sym_operator_assign] = STATE(3089), + [sym_type_declaration] = STATE(3089), + [sym_begin_block] = STATE(3089), + [sym_while] = STATE(3089), + [sym_until] = STATE(3089), + [sym_if] = STATE(3089), + [sym_unless] = STATE(3089), + [sym_conditional] = STATE(3089), + [sym_case] = STATE(3089), + [sym_select] = STATE(3089), + [sym_exhaustive_case] = STATE(3089), + [sym_identifier] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(15), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(17), + [sym_true] = ACTIONS(17), + [sym_false] = ACTIONS(17), + [aux_sym_integer_token2] = ACTIONS(19), + [aux_sym_float_token2] = ACTIONS(21), + [anon_sym_SQUOTE] = ACTIONS(23), + [sym_operator_symbol] = ACTIONS(25), + [sym_unquoted_symbol] = ACTIONS(25), + [anon_sym_COLON_DQUOTE] = ACTIONS(27), + [anon_sym_BQUOTE] = ACTIONS(29), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_DASH_GT] = ACTIONS(33), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_with] = ACTIONS(1233), + [anon_sym_yield] = ACTIONS(1235), + [anon_sym_typeof] = ACTIONS(75), + [anon_sym_sizeof] = ACTIONS(77), + [anon_sym_instance_sizeof] = ACTIONS(79), + [anon_sym_offsetof] = ACTIONS(81), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [anon_sym___LINE__] = ACTIONS(87), + [anon_sym___END_LINE__] = ACTIONS(87), + [anon_sym___FILE__] = ACTIONS(87), + [anon_sym___DIR__] = ACTIONS(87), + [sym_special_variable] = ACTIONS(25), + [sym_identifier_method_call] = ACTIONS(2368), + [sym_instance_var] = ACTIONS(1241), + [sym_class_var] = ACTIONS(1241), + [sym_self] = ACTIONS(17), + [anon_sym_begin] = ACTIONS(95), + [anon_sym_while] = ACTIONS(97), + [anon_sym_until] = ACTIONS(99), + [anon_sym_case] = ACTIONS(103), + [anon_sym_select] = ACTIONS(105), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1245), + [sym__start_of_named_tuple] = ACTIONS(109), + [sym_unary_plus] = ACTIONS(1247), + [sym_unary_minus] = ACTIONS(1247), + [sym_unary_wrapping_plus] = ACTIONS(1249), + [sym_unary_wrapping_minus] = ACTIONS(1249), + [sym__beginless_range_operator] = ACTIONS(1255), + [sym__regex_start] = ACTIONS(117), + [sym__regular_if_keyword] = ACTIONS(119), + [sym__regular_unless_keyword] = ACTIONS(121), + [sym__string_literal_start] = ACTIONS(123), + [sym__string_percent_literal_start] = ACTIONS(125), + [sym__command_percent_literal_start] = ACTIONS(127), + [sym__string_array_percent_literal_start] = ACTIONS(129), + [sym__symbol_array_percent_literal_start] = ACTIONS(131), + [sym__regex_percent_literal_start] = ACTIONS(133), + [sym_heredoc_start] = ACTIONS(25), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1833] = { + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5382), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), + [sym_heredoc_body] = STATE(1833), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1834] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6771), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(1834), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1835] = { + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6772), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), + [sym_heredoc_body] = STATE(1835), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(247), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7824), + [sym_index_operator] = STATE(2410), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(2688), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(2694), + [anon_sym_with] = ACTIONS(2696), + [anon_sym_yield] = ACTIONS(2698), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3143), + [sym_instance_var] = ACTIONS(2716), + [sym_class_var] = ACTIONS(2716), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2730), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(2734), + [sym_unary_minus] = ACTIONS(2734), + [sym_unary_wrapping_plus] = ACTIONS(2736), + [sym_unary_wrapping_minus] = ACTIONS(2736), + [sym__beginless_range_operator] = ACTIONS(2742), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1836] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6300), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1836), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1837] = { + [sym__parenthesized_statement] = STATE(5351), + [sym_expressions] = STATE(5351), + [sym__expression] = STATE(5399), + [sym_empty_parens] = STATE(5351), + [sym_integer] = STATE(5351), + [sym_float] = STATE(5351), + [sym_char] = STATE(5351), + [sym_string] = STATE(4637), + [sym_chained_string] = STATE(5351), + [sym_string_percent_literal] = STATE(5351), + [sym_string_array_percent_literal] = STATE(5351), + [sym_symbol_array_percent_literal] = STATE(5351), + [sym_heredoc_body] = STATE(1837), + [sym_quoted_symbol] = STATE(5351), + [sym_command] = STATE(5351), + [sym_command_percent_literal] = STATE(5351), + [sym_regex] = STATE(5351), + [sym_regex_percent_literal] = STATE(5351), + [sym_array] = STATE(5351), + [sym_hash] = STATE(5351), + [sym_tuple] = STATE(5351), + [sym_named_tuple] = STATE(5351), + [sym_range] = STATE(5351), + [sym_beginless_range] = STATE(5351), + [sym_proc] = STATE(5351), + [sym_yield] = STATE(5351), + [sym_typeof] = STATE(5351), + [sym_sizeof] = STATE(5351), + [sym_instance_sizeof] = STATE(5351), + [sym_offsetof] = STATE(5351), + [sym_constant] = STATE(5127), + [sym_pseudo_constant] = STATE(5351), + [sym_generic_instance_type] = STATE(5351), + [sym__dot_call] = STATE(173), + [sym_call] = STATE(5351), + [sym_assign_call] = STATE(7864), + [sym_index_operator] = STATE(2322), + [sym_not] = STATE(5351), + [sym_and] = STATE(5351), + [sym_or] = STATE(5351), + [sym_additive_operator] = STATE(5351), + [sym_unary_additive_operator] = STATE(5351), + [sym_multiplicative_operator] = STATE(5351), + [sym_exponential_operator] = STATE(5351), + [sym_shift_operator] = STATE(5351), + [sym_complement_operator] = STATE(5351), + [sym_binary_and_operator] = STATE(5351), + [sym_binary_or_operator] = STATE(5351), + [sym_equality_operator] = STATE(5351), + [sym_comparison_operator] = STATE(5351), + [sym_assign] = STATE(5351), + [sym_operator_assign] = STATE(5351), + [sym_type_declaration] = STATE(5351), + [sym_begin_block] = STATE(5351), + [sym_while] = STATE(5351), + [sym_until] = STATE(5351), + [sym_if] = STATE(5351), + [sym_unless] = STATE(5351), + [sym_conditional] = STATE(5351), + [sym_case] = STATE(5351), + [sym_select] = STATE(5351), + [sym_exhaustive_case] = STATE(5351), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(681), + [sym_true] = ACTIONS(681), + [sym_false] = ACTIONS(681), + [aux_sym_integer_token2] = ACTIONS(683), + [aux_sym_float_token2] = ACTIONS(685), + [anon_sym_SQUOTE] = ACTIONS(687), + [sym_operator_symbol] = ACTIONS(689), + [sym_unquoted_symbol] = ACTIONS(689), + [anon_sym_COLON_DQUOTE] = ACTIONS(691), + [anon_sym_BQUOTE] = ACTIONS(693), + [anon_sym_LBRACK] = ACTIONS(695), + [anon_sym_DASH_GT] = ACTIONS(697), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(701), + [anon_sym_with] = ACTIONS(705), + [anon_sym_yield] = ACTIONS(707), + [anon_sym_typeof] = ACTIONS(709), + [anon_sym_sizeof] = ACTIONS(711), + [anon_sym_instance_sizeof] = ACTIONS(713), + [anon_sym_offsetof] = ACTIONS(715), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [anon_sym___LINE__] = ACTIONS(721), + [anon_sym___END_LINE__] = ACTIONS(721), + [anon_sym___FILE__] = ACTIONS(721), + [anon_sym___DIR__] = ACTIONS(721), + [sym_special_variable] = ACTIONS(689), + [sym_identifier_method_call] = ACTIONS(3015), + [sym_instance_var] = ACTIONS(725), + [sym_class_var] = ACTIONS(725), + [sym_self] = ACTIONS(681), + [anon_sym_begin] = ACTIONS(737), + [anon_sym_while] = ACTIONS(739), + [anon_sym_until] = ACTIONS(741), + [anon_sym_case] = ACTIONS(743), + [anon_sym_select] = ACTIONS(745), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(749), + [sym__start_of_named_tuple] = ACTIONS(751), + [sym_unary_plus] = ACTIONS(753), + [sym_unary_minus] = ACTIONS(753), + [sym_unary_wrapping_plus] = ACTIONS(755), + [sym_unary_wrapping_minus] = ACTIONS(755), + [sym__beginless_range_operator] = ACTIONS(763), + [sym__regex_start] = ACTIONS(765), + [sym__regular_if_keyword] = ACTIONS(767), + [sym__regular_unless_keyword] = ACTIONS(769), + [sym__string_literal_start] = ACTIONS(771), + [sym__string_percent_literal_start] = ACTIONS(773), + [sym__command_percent_literal_start] = ACTIONS(775), + [sym__string_array_percent_literal_start] = ACTIONS(777), + [sym__symbol_array_percent_literal_start] = ACTIONS(779), + [sym__regex_percent_literal_start] = ACTIONS(781), + [sym_heredoc_start] = ACTIONS(689), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1838] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6309), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1838), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(204), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7844), + [sym_index_operator] = STATE(2387), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(2248), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3091), + [sym_instance_var] = ACTIONS(2258), + [sym_class_var] = ACTIONS(2258), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2260), + [sym_unary_minus] = ACTIONS(2260), + [sym_unary_wrapping_plus] = ACTIONS(2262), + [sym_unary_wrapping_minus] = ACTIONS(2262), + [sym__beginless_range_operator] = ACTIONS(2268), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1839] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4202), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(1839), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1840] = { + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4203), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), + [sym_heredoc_body] = STATE(1840), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1841] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6892), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1841), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1842] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6893), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1842), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1843] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6894), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1843), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1844] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6895), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1844), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1845] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6896), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1845), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1846] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6897), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1846), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1847] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6899), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1847), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1848] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6900), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1848), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [1849] = { + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6901), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), + [sym_heredoc_body] = STATE(1849), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1850] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6223), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6902), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1850), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1851] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6225), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6903), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1851), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1852] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4770), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6904), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1852), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1853] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4771), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(3751), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6937), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(3639), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1853), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), [sym__dot_call] = STATE(125), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7807), - [sym_index_operator] = STATE(2320), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2960), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(2964), - [sym_instance_var] = ACTIONS(2966), - [sym_class_var] = ACTIONS(2966), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2970), - [sym_unary_minus] = ACTIONS(2970), - [sym_unary_wrapping_plus] = ACTIONS(2972), - [sym_unary_wrapping_minus] = ACTIONS(2972), - [sym__beginless_range_operator] = ACTIONS(2974), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(1701), - [sym__string_percent_literal_start] = ACTIONS(1703), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7848), + [sym_index_operator] = STATE(2315), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_with] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2993), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(2995), + [sym_instance_var] = ACTIONS(2997), + [sym_class_var] = ACTIONS(2997), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3001), + [sym_unary_minus] = ACTIONS(3001), + [sym_unary_wrapping_plus] = ACTIONS(3003), + [sym_unary_wrapping_minus] = ACTIONS(3003), + [sym__beginless_range_operator] = ACTIONS(3005), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(1715), + [sym__string_percent_literal_start] = ACTIONS(1717), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1854] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6654), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6907), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1854), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1855] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6757), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6908), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1855), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(247), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7808), - [sym_index_operator] = STATE(2413), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2641), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(2647), - [anon_sym_with] = ACTIONS(2649), - [anon_sym_yield] = ACTIONS(2651), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3110), - [sym_instance_var] = ACTIONS(2669), - [sym_class_var] = ACTIONS(2669), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2681), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(2685), - [sym_unary_minus] = ACTIONS(2685), - [sym_unary_wrapping_plus] = ACTIONS(2687), - [sym_unary_wrapping_minus] = ACTIONS(2687), - [sym__beginless_range_operator] = ACTIONS(2693), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(252), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1856] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6850), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4587), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1856), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1857] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6851), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4590), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1857), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1858] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6852), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4378), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1858), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1859] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6853), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4616), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1859), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1860] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6854), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4617), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1860), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1861] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6855), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4379), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1861), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1862] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6857), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4512), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1862), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1863] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6858), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4516), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1863), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1864] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6859), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4543), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1864), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1865] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6860), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4562), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1865), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1866] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6861), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4311), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1866), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1867] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6862), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4313), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1867), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1868] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6865), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4315), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1868), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1869] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6866), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(3662), + [sym_expressions] = STATE(3662), + [sym__expression] = STATE(4316), + [sym_empty_parens] = STATE(3662), + [sym_integer] = STATE(3662), + [sym_float] = STATE(3662), + [sym_char] = STATE(3662), + [sym_string] = STATE(3306), + [sym_chained_string] = STATE(3662), + [sym_string_percent_literal] = STATE(3662), + [sym_string_array_percent_literal] = STATE(3662), + [sym_symbol_array_percent_literal] = STATE(3662), [sym_heredoc_body] = STATE(1869), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(3662), + [sym_command] = STATE(3662), + [sym_command_percent_literal] = STATE(3662), + [sym_regex] = STATE(3662), + [sym_regex_percent_literal] = STATE(3662), + [sym_array] = STATE(3662), + [sym_hash] = STATE(3662), + [sym_tuple] = STATE(3662), + [sym_named_tuple] = STATE(3662), + [sym_range] = STATE(3662), + [sym_beginless_range] = STATE(3662), + [sym_proc] = STATE(3662), + [sym_yield] = STATE(3662), + [sym_typeof] = STATE(3662), + [sym_sizeof] = STATE(3662), + [sym_instance_sizeof] = STATE(3662), + [sym_offsetof] = STATE(3662), + [sym_constant] = STATE(3468), + [sym_pseudo_constant] = STATE(3662), + [sym_generic_instance_type] = STATE(3662), + [sym__dot_call] = STATE(95), + [sym_call] = STATE(3662), + [sym_assign_call] = STATE(7860), + [sym_index_operator] = STATE(2289), + [sym_not] = STATE(3662), + [sym_and] = STATE(3662), + [sym_or] = STATE(3662), + [sym_additive_operator] = STATE(3662), + [sym_unary_additive_operator] = STATE(3662), + [sym_multiplicative_operator] = STATE(3662), + [sym_exponential_operator] = STATE(3662), + [sym_shift_operator] = STATE(3662), + [sym_complement_operator] = STATE(3662), + [sym_binary_and_operator] = STATE(3662), + [sym_binary_or_operator] = STATE(3662), + [sym_equality_operator] = STATE(3662), + [sym_comparison_operator] = STATE(3662), + [sym_assign] = STATE(3662), + [sym_operator_assign] = STATE(3662), + [sym_type_declaration] = STATE(3662), + [sym_begin_block] = STATE(3662), + [sym_while] = STATE(3662), + [sym_until] = STATE(3662), + [sym_if] = STATE(3662), + [sym_unless] = STATE(3662), + [sym_conditional] = STATE(3662), + [sym_case] = STATE(3662), + [sym_select] = STATE(3662), + [sym_exhaustive_case] = STATE(3662), + [sym_identifier] = ACTIONS(2931), + [anon_sym_LPAREN] = ACTIONS(2933), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(537), + [sym_true] = ACTIONS(537), + [sym_false] = ACTIONS(537), + [aux_sym_integer_token2] = ACTIONS(539), + [aux_sym_float_token2] = ACTIONS(541), + [anon_sym_SQUOTE] = ACTIONS(543), + [sym_operator_symbol] = ACTIONS(545), + [sym_unquoted_symbol] = ACTIONS(545), + [anon_sym_COLON_DQUOTE] = ACTIONS(547), + [anon_sym_BQUOTE] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_DASH_GT] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(557), + [anon_sym_with] = ACTIONS(561), + [anon_sym_yield] = ACTIONS(563), + [anon_sym_typeof] = ACTIONS(565), + [anon_sym_sizeof] = ACTIONS(567), + [anon_sym_instance_sizeof] = ACTIONS(569), + [anon_sym_offsetof] = ACTIONS(571), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [anon_sym___LINE__] = ACTIONS(577), + [anon_sym___END_LINE__] = ACTIONS(577), + [anon_sym___FILE__] = ACTIONS(577), + [anon_sym___DIR__] = ACTIONS(577), + [sym_special_variable] = ACTIONS(545), + [sym_identifier_method_call] = ACTIONS(2937), + [sym_instance_var] = ACTIONS(581), + [sym_class_var] = ACTIONS(581), + [sym_self] = ACTIONS(537), + [anon_sym_begin] = ACTIONS(593), + [anon_sym_while] = ACTIONS(595), + [anon_sym_until] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_select] = ACTIONS(601), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(605), + [sym__start_of_named_tuple] = ACTIONS(607), + [sym_unary_plus] = ACTIONS(609), + [sym_unary_minus] = ACTIONS(609), + [sym_unary_wrapping_plus] = ACTIONS(611), + [sym_unary_wrapping_minus] = ACTIONS(611), + [sym__beginless_range_operator] = ACTIONS(619), + [sym__regex_start] = ACTIONS(621), + [sym__regular_if_keyword] = ACTIONS(623), + [sym__regular_unless_keyword] = ACTIONS(625), + [sym__string_literal_start] = ACTIONS(627), + [sym__string_percent_literal_start] = ACTIONS(629), + [sym__command_percent_literal_start] = ACTIONS(631), + [sym__string_array_percent_literal_start] = ACTIONS(633), + [sym__symbol_array_percent_literal_start] = ACTIONS(635), + [sym__regex_percent_literal_start] = ACTIONS(637), + [sym_heredoc_start] = ACTIONS(545), [sym__heredoc_body_start] = ACTIONS(7), }, [1870] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4770), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(4615), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1870), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7856), + [sym_index_operator] = STATE(2416), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3127), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(2446), + [anon_sym_with] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3129), + [sym_instance_var] = ACTIONS(2456), + [sym_class_var] = ACTIONS(2456), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1695), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(2458), + [sym_unary_minus] = ACTIONS(2458), + [sym_unary_wrapping_plus] = ACTIONS(2460), + [sym_unary_wrapping_minus] = ACTIONS(2460), + [sym__beginless_range_operator] = ACTIONS(2466), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1871] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4771), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7005), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1871), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1872] = { - [sym__parenthesized_statement] = STATE(2573), - [sym_expressions] = STATE(2573), - [sym__expression] = STATE(2720), - [sym_empty_parens] = STATE(2573), - [sym_integer] = STATE(2573), - [sym_float] = STATE(2573), - [sym_char] = STATE(2573), - [sym_string] = STATE(2392), - [sym_chained_string] = STATE(2573), - [sym_string_percent_literal] = STATE(2573), - [sym_string_array_percent_literal] = STATE(2573), - [sym_symbol_array_percent_literal] = STATE(2573), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(7028), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1872), - [sym_quoted_symbol] = STATE(2573), - [sym_command] = STATE(2573), - [sym_command_percent_literal] = STATE(2573), - [sym_regex] = STATE(2573), - [sym_regex_percent_literal] = STATE(2573), - [sym_array] = STATE(2573), - [sym_hash] = STATE(2573), - [sym_tuple] = STATE(2573), - [sym_named_tuple] = STATE(2573), - [sym_range] = STATE(2573), - [sym_beginless_range] = STATE(2573), - [sym_proc] = STATE(2573), - [sym_yield] = STATE(2573), - [sym_typeof] = STATE(2573), - [sym_sizeof] = STATE(2573), - [sym_instance_sizeof] = STATE(2573), - [sym_offsetof] = STATE(2573), - [sym_constant] = STATE(2539), - [sym_pseudo_constant] = STATE(2573), - [sym_generic_instance_type] = STATE(2573), - [sym__dot_call] = STATE(59), - [sym_call] = STATE(2573), - [sym_assign_call] = STATE(7800), - [sym_index_operator] = STATE(2218), - [sym_not] = STATE(2573), - [sym_and] = STATE(2573), - [sym_or] = STATE(2573), - [sym_additive_operator] = STATE(2573), - [sym_unary_additive_operator] = STATE(2573), - [sym_multiplicative_operator] = STATE(2573), - [sym_exponential_operator] = STATE(2573), - [sym_shift_operator] = STATE(2573), - [sym_complement_operator] = STATE(2573), - [sym_binary_and_operator] = STATE(2573), - [sym_binary_or_operator] = STATE(2573), - [sym_equality_operator] = STATE(2573), - [sym_comparison_operator] = STATE(2573), - [sym_assign] = STATE(2573), - [sym_operator_assign] = STATE(2573), - [sym_type_declaration] = STATE(2573), - [sym_begin_block] = STATE(2573), - [sym_while] = STATE(2573), - [sym_until] = STATE(2573), - [sym_if] = STATE(2573), - [sym_unless] = STATE(2573), - [sym_conditional] = STATE(2573), - [sym_case] = STATE(2573), - [sym_exhaustive_case] = STATE(2573), - [sym_identifier] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(139), - [sym_true] = ACTIONS(139), - [sym_false] = ACTIONS(139), - [aux_sym_integer_token2] = ACTIONS(141), - [aux_sym_float_token2] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [sym_operator_symbol] = ACTIONS(147), - [sym_unquoted_symbol] = ACTIONS(147), - [anon_sym_COLON_DQUOTE] = ACTIONS(149), - [anon_sym_BQUOTE] = ACTIONS(151), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_DASH_GT] = ACTIONS(157), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_with] = ACTIONS(165), - [anon_sym_yield] = ACTIONS(167), - [anon_sym_typeof] = ACTIONS(169), - [anon_sym_sizeof] = ACTIONS(171), - [anon_sym_instance_sizeof] = ACTIONS(173), - [anon_sym_offsetof] = ACTIONS(175), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [anon_sym___LINE__] = ACTIONS(181), - [anon_sym___END_LINE__] = ACTIONS(181), - [anon_sym___FILE__] = ACTIONS(181), - [anon_sym___DIR__] = ACTIONS(181), - [sym_special_variable] = ACTIONS(147), - [sym_identifier_method_call] = ACTIONS(2044), - [sym_instance_var] = ACTIONS(185), - [sym_class_var] = ACTIONS(185), - [sym_self] = ACTIONS(139), - [anon_sym_begin] = ACTIONS(195), - [anon_sym_while] = ACTIONS(197), - [anon_sym_until] = ACTIONS(199), - [anon_sym_case] = ACTIONS(201), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(205), - [sym__start_of_named_tuple] = ACTIONS(207), - [sym_unary_plus] = ACTIONS(209), - [sym_unary_minus] = ACTIONS(209), - [sym_unary_wrapping_plus] = ACTIONS(211), - [sym_unary_wrapping_minus] = ACTIONS(211), - [sym__beginless_range_operator] = ACTIONS(219), - [sym__regex_start] = ACTIONS(221), - [sym__regular_if_keyword] = ACTIONS(223), - [sym__regular_unless_keyword] = ACTIONS(225), - [sym__string_literal_start] = ACTIONS(227), - [sym__string_percent_literal_start] = ACTIONS(229), - [sym__command_percent_literal_start] = ACTIONS(231), - [sym__string_array_percent_literal_start] = ACTIONS(233), - [sym__symbol_array_percent_literal_start] = ACTIONS(235), - [sym__regex_percent_literal_start] = ACTIONS(237), - [sym_heredoc_start] = ACTIONS(147), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), + [sym__dot_call] = STATE(268), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1873] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(4769), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6316), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1873), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(252), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7822), - [sym_index_operator] = STATE(2414), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(1641), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_TILDE] = ACTIONS(2435), - [anon_sym_with] = ACTIONS(2437), - [anon_sym_yield] = ACTIONS(2439), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3070), - [sym_instance_var] = ACTIONS(2445), - [sym_class_var] = ACTIONS(2445), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1681), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(2447), - [sym_unary_minus] = ACTIONS(2447), - [sym_unary_wrapping_plus] = ACTIONS(2449), - [sym_unary_wrapping_minus] = ACTIONS(2449), - [sym__beginless_range_operator] = ACTIONS(2455), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1874] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(7009), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6317), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1874), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1875] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6533), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6987), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1875), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1876] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6534), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6319), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1876), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1877] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6974), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6320), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1877), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1878] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6535), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6326), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1878), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1879] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6536), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6327), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1879), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1880] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6537), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6991), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1880), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1881] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6538), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6328), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1881), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1882] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6976), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6329), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1882), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1883] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6539), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6335), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1883), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1884] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6540), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6336), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1884), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1885] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6541), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6996), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1885), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1886] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6542), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6338), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1886), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1887] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6977), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6339), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1887), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1888] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6543), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6346), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1888), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1889] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6544), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6347), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1889), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1890] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6545), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7002), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1890), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1891] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6546), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6348), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1891), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1892] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6978), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6349), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1892), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1893] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6547), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6355), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1893), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1894] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6548), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6356), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1894), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1895] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6549), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7007), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1895), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1896] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6550), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6357), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1896), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1897] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6979), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6358), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1897), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1898] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6551), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6363), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1898), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1899] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6552), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6364), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1899), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1900] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6553), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7013), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1900), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1901] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6554), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6365), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1901), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1902] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6982), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6366), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1902), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1903] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6555), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6368), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1903), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1904] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6556), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6369), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1904), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1905] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6557), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7020), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1905), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1906] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6558), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6371), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1906), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1907] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6983), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6372), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1907), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1908] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6559), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6377), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1908), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1909] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6560), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6378), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1909), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1910] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6561), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7033), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1910), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1911] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6562), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6380), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1911), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1912] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6984), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6381), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1912), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1913] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6563), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6384), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1913), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1914] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6564), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6385), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1914), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1915] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6566), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7039), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1915), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1916] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6567), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6386), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1916), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1917] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6985), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6387), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1917), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1918] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6568), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6388), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1918), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1919] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6569), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6389), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1919), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1920] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6570), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7053), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1920), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1921] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6571), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6390), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1921), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1922] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6986), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6391), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1922), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1923] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6572), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6396), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1923), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1924] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6573), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6397), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1924), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1925] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6574), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6943), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1925), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1926] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6575), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6399), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1926), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1927] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6988), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6400), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1927), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1928] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6576), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6407), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1928), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1929] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6577), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6408), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1929), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1930] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6579), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6946), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1930), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1931] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6580), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6410), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1931), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1932] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6989), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6208), + [sym_expressions] = STATE(6208), + [sym__expression] = STATE(6411), + [sym_empty_parens] = STATE(6208), + [sym_integer] = STATE(6208), + [sym_float] = STATE(6208), + [sym_char] = STATE(6208), + [sym_string] = STATE(5102), + [sym_chained_string] = STATE(6208), + [sym_string_percent_literal] = STATE(6208), + [sym_string_array_percent_literal] = STATE(6208), + [sym_symbol_array_percent_literal] = STATE(6208), [sym_heredoc_body] = STATE(1932), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6208), + [sym_command] = STATE(6208), + [sym_command_percent_literal] = STATE(6208), + [sym_regex] = STATE(6208), + [sym_regex_percent_literal] = STATE(6208), + [sym_array] = STATE(6208), + [sym_hash] = STATE(6208), + [sym_tuple] = STATE(6208), + [sym_named_tuple] = STATE(6208), + [sym_range] = STATE(6208), + [sym_beginless_range] = STATE(6208), + [sym_proc] = STATE(6208), + [sym_yield] = STATE(6208), + [sym_typeof] = STATE(6208), + [sym_sizeof] = STATE(6208), + [sym_instance_sizeof] = STATE(6208), + [sym_offsetof] = STATE(6208), + [sym_constant] = STATE(5771), + [sym_pseudo_constant] = STATE(6208), + [sym_generic_instance_type] = STATE(6208), + [sym__dot_call] = STATE(239), + [sym_call] = STATE(6208), + [sym_assign_call] = STATE(7851), + [sym_index_operator] = STATE(2404), + [sym_not] = STATE(6208), + [sym_and] = STATE(6208), + [sym_or] = STATE(6208), + [sym_additive_operator] = STATE(6208), + [sym_unary_additive_operator] = STATE(6208), + [sym_multiplicative_operator] = STATE(6208), + [sym_exponential_operator] = STATE(6208), + [sym_shift_operator] = STATE(6208), + [sym_complement_operator] = STATE(6208), + [sym_binary_and_operator] = STATE(6208), + [sym_binary_or_operator] = STATE(6208), + [sym_equality_operator] = STATE(6208), + [sym_comparison_operator] = STATE(6208), + [sym_assign] = STATE(6208), + [sym_operator_assign] = STATE(6208), + [sym_type_declaration] = STATE(6208), + [sym_begin_block] = STATE(6208), + [sym_while] = STATE(6208), + [sym_until] = STATE(6208), + [sym_if] = STATE(6208), + [sym_unless] = STATE(6208), + [sym_conditional] = STATE(6208), + [sym_case] = STATE(6208), + [sym_select] = STATE(6208), + [sym_exhaustive_case] = STATE(6208), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3065), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2097), + [sym_true] = ACTIONS(2097), + [sym_false] = ACTIONS(2097), + [aux_sym_integer_token2] = ACTIONS(2099), + [aux_sym_float_token2] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [sym_operator_symbol] = ACTIONS(2105), + [sym_unquoted_symbol] = ACTIONS(2105), + [anon_sym_COLON_DQUOTE] = ACTIONS(2107), + [anon_sym_BQUOTE] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_DASH_GT] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(3557), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3109), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_sizeof] = ACTIONS(2125), + [anon_sym_instance_sizeof] = ACTIONS(2127), + [anon_sym_offsetof] = ACTIONS(2129), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym___LINE__] = ACTIONS(2135), + [anon_sym___END_LINE__] = ACTIONS(2135), + [anon_sym___FILE__] = ACTIONS(2135), + [anon_sym___DIR__] = ACTIONS(2135), + [sym_special_variable] = ACTIONS(2105), + [sym_identifier_method_call] = ACTIONS(3111), + [sym_instance_var] = ACTIONS(3113), + [sym_class_var] = ACTIONS(3113), + [sym_self] = ACTIONS(2097), + [anon_sym_begin] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_until] = ACTIONS(2147), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_select] = ACTIONS(2151), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3115), + [sym__start_of_named_tuple] = ACTIONS(2155), + [sym_unary_plus] = ACTIONS(3117), + [sym_unary_minus] = ACTIONS(3117), + [sym_unary_wrapping_plus] = ACTIONS(3119), + [sym_unary_wrapping_minus] = ACTIONS(3119), + [sym__beginless_range_operator] = ACTIONS(3121), + [sym__regex_start] = ACTIONS(2167), + [sym__regular_if_keyword] = ACTIONS(2169), + [sym__regular_unless_keyword] = ACTIONS(2171), + [sym__string_literal_start] = ACTIONS(2173), + [sym__string_percent_literal_start] = ACTIONS(2175), + [sym__command_percent_literal_start] = ACTIONS(2177), + [sym__string_array_percent_literal_start] = ACTIONS(2179), + [sym__symbol_array_percent_literal_start] = ACTIONS(2181), + [sym__regex_percent_literal_start] = ACTIONS(2183), + [sym_heredoc_start] = ACTIONS(2105), [sym__heredoc_body_start] = ACTIONS(7), }, [1933] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6581), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7029), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1933), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1934] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6582), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6948), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1934), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(225), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7818), - [sym_index_operator] = STATE(2402), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(3080), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_TILDE] = ACTIONS(3084), - [anon_sym_with] = ACTIONS(3086), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3090), - [sym_instance_var] = ACTIONS(3092), - [sym_class_var] = ACTIONS(3092), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3094), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(3096), - [sym_unary_minus] = ACTIONS(3096), - [sym_unary_wrapping_plus] = ACTIONS(3098), - [sym_unary_wrapping_minus] = ACTIONS(3098), - [sym__beginless_range_operator] = ACTIONS(3100), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1935] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(7010), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6950), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1935), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1936] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6990), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6951), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1936), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1937] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6991), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6952), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1937), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1938] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6992), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6954), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1938), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1939] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6993), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7030), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1939), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1940] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6994), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6955), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1940), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1941] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(7011), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6956), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1941), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1942] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6995), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(6957), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1942), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1943] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6996), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(4364), + [sym_expressions] = STATE(4364), + [sym__expression] = STATE(6963), + [sym_empty_parens] = STATE(4364), + [sym_integer] = STATE(4364), + [sym_float] = STATE(4364), + [sym_char] = STATE(4364), + [sym_string] = STATE(5633), + [sym_chained_string] = STATE(4364), + [sym_string_percent_literal] = STATE(4364), + [sym_string_array_percent_literal] = STATE(4364), + [sym_symbol_array_percent_literal] = STATE(4364), [sym_heredoc_body] = STATE(1943), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), + [sym_quoted_symbol] = STATE(4364), + [sym_command] = STATE(4364), + [sym_command_percent_literal] = STATE(4364), + [sym_regex] = STATE(4364), + [sym_regex_percent_literal] = STATE(4364), + [sym_array] = STATE(4364), + [sym_hash] = STATE(4364), + [sym_tuple] = STATE(4364), + [sym_named_tuple] = STATE(4364), + [sym_range] = STATE(4364), + [sym_beginless_range] = STATE(4364), + [sym_proc] = STATE(4364), + [sym_yield] = STATE(4364), + [sym_typeof] = STATE(4364), + [sym_sizeof] = STATE(4364), + [sym_instance_sizeof] = STATE(4364), + [sym_offsetof] = STATE(4364), + [sym_constant] = STATE(4255), + [sym_pseudo_constant] = STATE(4364), + [sym_generic_instance_type] = STATE(4364), [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_call] = STATE(4364), + [sym_assign_call] = STATE(7832), + [sym_index_operator] = STATE(2426), + [sym_not] = STATE(4364), + [sym_and] = STATE(4364), + [sym_or] = STATE(4364), + [sym_additive_operator] = STATE(4364), + [sym_unary_additive_operator] = STATE(4364), + [sym_multiplicative_operator] = STATE(4364), + [sym_exponential_operator] = STATE(4364), + [sym_shift_operator] = STATE(4364), + [sym_complement_operator] = STATE(4364), + [sym_binary_and_operator] = STATE(4364), + [sym_binary_or_operator] = STATE(4364), + [sym_equality_operator] = STATE(4364), + [sym_comparison_operator] = STATE(4364), + [sym_assign] = STATE(4364), + [sym_operator_assign] = STATE(4364), + [sym_type_declaration] = STATE(4364), + [sym_begin_block] = STATE(4364), + [sym_while] = STATE(4364), + [sym_until] = STATE(4364), + [sym_if] = STATE(4364), + [sym_unless] = STATE(4364), + [sym_conditional] = STATE(4364), + [sym_case] = STATE(4364), + [sym_select] = STATE(4364), + [sym_exhaustive_case] = STATE(4364), + [sym_identifier] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(2963), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1639), + [sym_true] = ACTIONS(1639), + [sym_false] = ACTIONS(1639), + [aux_sym_integer_token2] = ACTIONS(1641), + [aux_sym_float_token2] = ACTIONS(1643), + [anon_sym_SQUOTE] = ACTIONS(1645), + [sym_operator_symbol] = ACTIONS(1647), + [sym_unquoted_symbol] = ACTIONS(1647), + [anon_sym_COLON_DQUOTE] = ACTIONS(1649), + [anon_sym_BQUOTE] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_DASH_GT] = ACTIONS(1655), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_with] = ACTIONS(3205), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(1665), + [anon_sym_sizeof] = ACTIONS(1667), + [anon_sym_instance_sizeof] = ACTIONS(1669), + [anon_sym_offsetof] = ACTIONS(1671), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [anon_sym___LINE__] = ACTIONS(1677), + [anon_sym___END_LINE__] = ACTIONS(1677), + [anon_sym___FILE__] = ACTIONS(1677), + [anon_sym___DIR__] = ACTIONS(1677), + [sym_special_variable] = ACTIONS(1647), + [sym_identifier_method_call] = ACTIONS(3209), + [sym_instance_var] = ACTIONS(3211), + [sym_class_var] = ACTIONS(3211), + [sym_self] = ACTIONS(1639), + [anon_sym_begin] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1687), + [anon_sym_until] = ACTIONS(1689), + [anon_sym_case] = ACTIONS(1691), + [anon_sym_select] = ACTIONS(1693), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(2999), + [sym__start_of_named_tuple] = ACTIONS(1697), + [sym_unary_plus] = ACTIONS(3213), + [sym_unary_minus] = ACTIONS(3213), + [sym_unary_wrapping_plus] = ACTIONS(3215), + [sym_unary_wrapping_minus] = ACTIONS(3215), + [sym__beginless_range_operator] = ACTIONS(3217), + [sym__regex_start] = ACTIONS(1709), + [sym__regular_if_keyword] = ACTIONS(1711), + [sym__regular_unless_keyword] = ACTIONS(1713), + [sym__string_literal_start] = ACTIONS(3131), + [sym__string_percent_literal_start] = ACTIONS(3133), + [sym__command_percent_literal_start] = ACTIONS(1719), + [sym__string_array_percent_literal_start] = ACTIONS(1721), + [sym__symbol_array_percent_literal_start] = ACTIONS(1723), + [sym__regex_percent_literal_start] = ACTIONS(1725), + [sym_heredoc_start] = ACTIONS(1647), [sym__heredoc_body_start] = ACTIONS(7), }, [1944] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6997), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7057), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1944), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1945] = { - [sym__parenthesized_statement] = STATE(4372), - [sym_expressions] = STATE(4372), - [sym__expression] = STATE(6998), - [sym_empty_parens] = STATE(4372), - [sym_integer] = STATE(4372), - [sym_float] = STATE(4372), - [sym_char] = STATE(4372), - [sym_string] = STATE(5585), - [sym_chained_string] = STATE(4372), - [sym_string_percent_literal] = STATE(4372), - [sym_string_array_percent_literal] = STATE(4372), - [sym_symbol_array_percent_literal] = STATE(4372), + [sym__parenthesized_statement] = STATE(6722), + [sym_expressions] = STATE(6722), + [sym__expression] = STATE(7052), + [sym_empty_parens] = STATE(6722), + [sym_integer] = STATE(6722), + [sym_float] = STATE(6722), + [sym_char] = STATE(6722), + [sym_string] = STATE(5490), + [sym_chained_string] = STATE(6722), + [sym_string_percent_literal] = STATE(6722), + [sym_string_array_percent_literal] = STATE(6722), + [sym_symbol_array_percent_literal] = STATE(6722), [sym_heredoc_body] = STATE(1945), - [sym_quoted_symbol] = STATE(4372), - [sym_command] = STATE(4372), - [sym_command_percent_literal] = STATE(4372), - [sym_regex] = STATE(4372), - [sym_regex_percent_literal] = STATE(4372), - [sym_array] = STATE(4372), - [sym_hash] = STATE(4372), - [sym_tuple] = STATE(4372), - [sym_named_tuple] = STATE(4372), - [sym_range] = STATE(4372), - [sym_beginless_range] = STATE(4372), - [sym_proc] = STATE(4372), - [sym_yield] = STATE(4372), - [sym_typeof] = STATE(4372), - [sym_sizeof] = STATE(4372), - [sym_instance_sizeof] = STATE(4372), - [sym_offsetof] = STATE(4372), - [sym_constant] = STATE(4167), - [sym_pseudo_constant] = STATE(4372), - [sym_generic_instance_type] = STATE(4372), - [sym__dot_call] = STATE(262), - [sym_call] = STATE(4372), - [sym_assign_call] = STATE(7777), - [sym_index_operator] = STATE(2427), - [sym_not] = STATE(4372), - [sym_and] = STATE(4372), - [sym_or] = STATE(4372), - [sym_additive_operator] = STATE(4372), - [sym_unary_additive_operator] = STATE(4372), - [sym_multiplicative_operator] = STATE(4372), - [sym_exponential_operator] = STATE(4372), - [sym_shift_operator] = STATE(4372), - [sym_complement_operator] = STATE(4372), - [sym_binary_and_operator] = STATE(4372), - [sym_binary_or_operator] = STATE(4372), - [sym_equality_operator] = STATE(4372), - [sym_comparison_operator] = STATE(4372), - [sym_assign] = STATE(4372), - [sym_operator_assign] = STATE(4372), - [sym_type_declaration] = STATE(4372), - [sym_begin_block] = STATE(4372), - [sym_while] = STATE(4372), - [sym_until] = STATE(4372), - [sym_if] = STATE(4372), - [sym_unless] = STATE(4372), - [sym_conditional] = STATE(4372), - [sym_case] = STATE(4372), - [sym_exhaustive_case] = STATE(4372), - [sym_identifier] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(2940), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1627), - [sym_true] = ACTIONS(1627), - [sym_false] = ACTIONS(1627), - [aux_sym_integer_token2] = ACTIONS(1629), - [aux_sym_float_token2] = ACTIONS(1631), - [anon_sym_SQUOTE] = ACTIONS(1633), - [sym_operator_symbol] = ACTIONS(1635), - [sym_unquoted_symbol] = ACTIONS(1635), - [anon_sym_COLON_DQUOTE] = ACTIONS(1637), - [anon_sym_BQUOTE] = ACTIONS(1639), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_DASH_GT] = ACTIONS(1643), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(1653), - [anon_sym_sizeof] = ACTIONS(1655), - [anon_sym_instance_sizeof] = ACTIONS(1657), - [anon_sym_offsetof] = ACTIONS(1659), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [anon_sym___LINE__] = ACTIONS(1665), - [anon_sym___END_LINE__] = ACTIONS(1665), - [anon_sym___FILE__] = ACTIONS(1665), - [anon_sym___DIR__] = ACTIONS(1665), - [sym_special_variable] = ACTIONS(1635), - [sym_identifier_method_call] = ACTIONS(3178), - [sym_instance_var] = ACTIONS(3180), - [sym_class_var] = ACTIONS(3180), - [sym_self] = ACTIONS(1627), - [anon_sym_begin] = ACTIONS(1673), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_until] = ACTIONS(1677), - [anon_sym_case] = ACTIONS(1679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2968), - [sym__start_of_named_tuple] = ACTIONS(1683), - [sym_unary_plus] = ACTIONS(3182), - [sym_unary_minus] = ACTIONS(3182), - [sym_unary_wrapping_plus] = ACTIONS(3184), - [sym_unary_wrapping_minus] = ACTIONS(3184), - [sym__beginless_range_operator] = ACTIONS(3186), - [sym__regex_start] = ACTIONS(1695), - [sym__regular_if_keyword] = ACTIONS(1697), - [sym__regular_unless_keyword] = ACTIONS(1699), - [sym__string_literal_start] = ACTIONS(3072), - [sym__string_percent_literal_start] = ACTIONS(3074), - [sym__command_percent_literal_start] = ACTIONS(1705), - [sym__string_array_percent_literal_start] = ACTIONS(1707), - [sym__symbol_array_percent_literal_start] = ACTIONS(1709), - [sym__regex_percent_literal_start] = ACTIONS(1711), - [sym_heredoc_start] = ACTIONS(1635), + [sym_quoted_symbol] = STATE(6722), + [sym_command] = STATE(6722), + [sym_command_percent_literal] = STATE(6722), + [sym_regex] = STATE(6722), + [sym_regex_percent_literal] = STATE(6722), + [sym_array] = STATE(6722), + [sym_hash] = STATE(6722), + [sym_tuple] = STATE(6722), + [sym_named_tuple] = STATE(6722), + [sym_range] = STATE(6722), + [sym_beginless_range] = STATE(6722), + [sym_proc] = STATE(6722), + [sym_yield] = STATE(6722), + [sym_typeof] = STATE(6722), + [sym_sizeof] = STATE(6722), + [sym_instance_sizeof] = STATE(6722), + [sym_offsetof] = STATE(6722), + [sym_constant] = STATE(6459), + [sym_pseudo_constant] = STATE(6722), + [sym_generic_instance_type] = STATE(6722), + [sym__dot_call] = STATE(261), + [sym_call] = STATE(6722), + [sym_assign_call] = STATE(7836), + [sym_index_operator] = STATE(2431), + [sym_not] = STATE(6722), + [sym_and] = STATE(6722), + [sym_or] = STATE(6722), + [sym_additive_operator] = STATE(6722), + [sym_unary_additive_operator] = STATE(6722), + [sym_multiplicative_operator] = STATE(6722), + [sym_exponential_operator] = STATE(6722), + [sym_shift_operator] = STATE(6722), + [sym_complement_operator] = STATE(6722), + [sym_binary_and_operator] = STATE(6722), + [sym_binary_or_operator] = STATE(6722), + [sym_equality_operator] = STATE(6722), + [sym_comparison_operator] = STATE(6722), + [sym_assign] = STATE(6722), + [sym_operator_assign] = STATE(6722), + [sym_type_declaration] = STATE(6722), + [sym_begin_block] = STATE(6722), + [sym_while] = STATE(6722), + [sym_until] = STATE(6722), + [sym_if] = STATE(6722), + [sym_unless] = STATE(6722), + [sym_conditional] = STATE(6722), + [sym_case] = STATE(6722), + [sym_select] = STATE(6722), + [sym_exhaustive_case] = STATE(6722), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3139), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(2674), + [sym_true] = ACTIONS(2674), + [sym_false] = ACTIONS(2674), + [aux_sym_integer_token2] = ACTIONS(2676), + [aux_sym_float_token2] = ACTIONS(2678), + [anon_sym_SQUOTE] = ACTIONS(2680), + [sym_operator_symbol] = ACTIONS(2682), + [sym_unquoted_symbol] = ACTIONS(2682), + [anon_sym_COLON_DQUOTE] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_DASH_GT] = ACTIONS(2690), + [anon_sym_BANG] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_with] = ACTIONS(3181), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(2700), + [anon_sym_sizeof] = ACTIONS(2702), + [anon_sym_instance_sizeof] = ACTIONS(2704), + [anon_sym_offsetof] = ACTIONS(2706), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [anon_sym___LINE__] = ACTIONS(2712), + [anon_sym___END_LINE__] = ACTIONS(2712), + [anon_sym___FILE__] = ACTIONS(2712), + [anon_sym___DIR__] = ACTIONS(2712), + [sym_special_variable] = ACTIONS(2682), + [sym_identifier_method_call] = ACTIONS(3185), + [sym_instance_var] = ACTIONS(3187), + [sym_class_var] = ACTIONS(3187), + [sym_self] = ACTIONS(2674), + [anon_sym_begin] = ACTIONS(2720), + [anon_sym_while] = ACTIONS(2722), + [anon_sym_until] = ACTIONS(2724), + [anon_sym_case] = ACTIONS(2726), + [anon_sym_select] = ACTIONS(2728), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(3189), + [sym__start_of_named_tuple] = ACTIONS(2732), + [sym_unary_plus] = ACTIONS(3191), + [sym_unary_minus] = ACTIONS(3191), + [sym_unary_wrapping_plus] = ACTIONS(3193), + [sym_unary_wrapping_minus] = ACTIONS(3193), + [sym__beginless_range_operator] = ACTIONS(3195), + [sym__regex_start] = ACTIONS(2744), + [sym__regular_if_keyword] = ACTIONS(2746), + [sym__regular_unless_keyword] = ACTIONS(2748), + [sym__string_literal_start] = ACTIONS(2750), + [sym__string_percent_literal_start] = ACTIONS(2752), + [sym__command_percent_literal_start] = ACTIONS(2754), + [sym__string_array_percent_literal_start] = ACTIONS(2756), + [sym__symbol_array_percent_literal_start] = ACTIONS(2758), + [sym__regex_percent_literal_start] = ACTIONS(2760), + [sym_heredoc_start] = ACTIONS(2682), [sym__heredoc_body_start] = ACTIONS(7), }, [1946] = { - [sym__parenthesized_statement] = STATE(6810), - [sym_expressions] = STATE(6810), - [sym__expression] = STATE(6964), - [sym_empty_parens] = STATE(6810), - [sym_integer] = STATE(6810), - [sym_float] = STATE(6810), - [sym_char] = STATE(6810), - [sym_string] = STATE(5519), - [sym_chained_string] = STATE(6810), - [sym_string_percent_literal] = STATE(6810), - [sym_string_array_percent_literal] = STATE(6810), - [sym_symbol_array_percent_literal] = STATE(6810), + [sym__parenthesized_statement] = STATE(3858), + [sym_expressions] = STATE(3858), + [sym__expression] = STATE(4268), + [sym_empty_parens] = STATE(3858), + [sym_integer] = STATE(3858), + [sym_float] = STATE(3858), + [sym_char] = STATE(3858), + [sym_string] = STATE(3226), + [sym_chained_string] = STATE(3858), + [sym_string_percent_literal] = STATE(3858), + [sym_string_array_percent_literal] = STATE(3858), + [sym_symbol_array_percent_literal] = STATE(3858), [sym_heredoc_body] = STATE(1946), - [sym_quoted_symbol] = STATE(6810), - [sym_command] = STATE(6810), - [sym_command_percent_literal] = STATE(6810), - [sym_regex] = STATE(6810), - [sym_regex_percent_literal] = STATE(6810), - [sym_array] = STATE(6810), - [sym_hash] = STATE(6810), - [sym_tuple] = STATE(6810), - [sym_named_tuple] = STATE(6810), - [sym_range] = STATE(6810), - [sym_beginless_range] = STATE(6810), - [sym_proc] = STATE(6810), - [sym_yield] = STATE(6810), - [sym_typeof] = STATE(6810), - [sym_sizeof] = STATE(6810), - [sym_instance_sizeof] = STATE(6810), - [sym_offsetof] = STATE(6810), - [sym_constant] = STATE(6616), - [sym_pseudo_constant] = STATE(6810), - [sym_generic_instance_type] = STATE(6810), - [sym__dot_call] = STATE(268), - [sym_call] = STATE(6810), - [sym_assign_call] = STATE(7798), - [sym_index_operator] = STATE(2449), - [sym_not] = STATE(6810), - [sym_and] = STATE(6810), - [sym_or] = STATE(6810), - [sym_additive_operator] = STATE(6810), - [sym_unary_additive_operator] = STATE(6810), - [sym_multiplicative_operator] = STATE(6810), - [sym_exponential_operator] = STATE(6810), - [sym_shift_operator] = STATE(6810), - [sym_complement_operator] = STATE(6810), - [sym_binary_and_operator] = STATE(6810), - [sym_binary_or_operator] = STATE(6810), - [sym_equality_operator] = STATE(6810), - [sym_comparison_operator] = STATE(6810), - [sym_assign] = STATE(6810), - [sym_operator_assign] = STATE(6810), - [sym_type_declaration] = STATE(6810), - [sym_begin_block] = STATE(6810), - [sym_while] = STATE(6810), - [sym_until] = STATE(6810), - [sym_if] = STATE(6810), - [sym_unless] = STATE(6810), - [sym_conditional] = STATE(6810), - [sym_case] = STATE(6810), - [sym_exhaustive_case] = STATE(6810), - [sym_identifier] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3106), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2627), - [sym_true] = ACTIONS(2627), - [sym_false] = ACTIONS(2627), - [aux_sym_integer_token2] = ACTIONS(2629), - [aux_sym_float_token2] = ACTIONS(2631), - [anon_sym_SQUOTE] = ACTIONS(2633), - [sym_operator_symbol] = ACTIONS(2635), - [sym_unquoted_symbol] = ACTIONS(2635), - [anon_sym_COLON_DQUOTE] = ACTIONS(2637), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_DASH_GT] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(2653), - [anon_sym_sizeof] = ACTIONS(2655), - [anon_sym_instance_sizeof] = ACTIONS(2657), - [anon_sym_offsetof] = ACTIONS(2659), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [anon_sym___LINE__] = ACTIONS(2665), - [anon_sym___END_LINE__] = ACTIONS(2665), - [anon_sym___FILE__] = ACTIONS(2665), - [anon_sym___DIR__] = ACTIONS(2665), - [sym_special_variable] = ACTIONS(2635), - [sym_identifier_method_call] = ACTIONS(3154), - [sym_instance_var] = ACTIONS(3156), - [sym_class_var] = ACTIONS(3156), - [sym_self] = ACTIONS(2627), - [anon_sym_begin] = ACTIONS(2673), - [anon_sym_while] = ACTIONS(2675), - [anon_sym_until] = ACTIONS(2677), - [anon_sym_case] = ACTIONS(2679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(3158), - [sym__start_of_named_tuple] = ACTIONS(2683), - [sym_unary_plus] = ACTIONS(3160), - [sym_unary_minus] = ACTIONS(3160), - [sym_unary_wrapping_plus] = ACTIONS(3162), - [sym_unary_wrapping_minus] = ACTIONS(3162), - [sym__beginless_range_operator] = ACTIONS(3164), - [sym__regex_start] = ACTIONS(2695), - [sym__regular_if_keyword] = ACTIONS(2697), - [sym__regular_unless_keyword] = ACTIONS(2699), - [sym__string_literal_start] = ACTIONS(2701), - [sym__string_percent_literal_start] = ACTIONS(2703), - [sym__command_percent_literal_start] = ACTIONS(2705), - [sym__string_array_percent_literal_start] = ACTIONS(2707), - [sym__symbol_array_percent_literal_start] = ACTIONS(2709), - [sym__regex_percent_literal_start] = ACTIONS(2711), - [sym_heredoc_start] = ACTIONS(2635), + [sym_quoted_symbol] = STATE(3858), + [sym_command] = STATE(3858), + [sym_command_percent_literal] = STATE(3858), + [sym_regex] = STATE(3858), + [sym_regex_percent_literal] = STATE(3858), + [sym_array] = STATE(3858), + [sym_hash] = STATE(3858), + [sym_tuple] = STATE(3858), + [sym_named_tuple] = STATE(3858), + [sym_range] = STATE(3858), + [sym_beginless_range] = STATE(3858), + [sym_proc] = STATE(3858), + [sym_yield] = STATE(3858), + [sym_typeof] = STATE(3858), + [sym_sizeof] = STATE(3858), + [sym_instance_sizeof] = STATE(3858), + [sym_offsetof] = STATE(3858), + [sym_constant] = STATE(3625), + [sym_pseudo_constant] = STATE(3858), + [sym_generic_instance_type] = STATE(3858), + [sym__dot_call] = STATE(91), + [sym_call] = STATE(3858), + [sym_assign_call] = STATE(7859), + [sym_index_operator] = STATE(2282), + [sym_not] = STATE(3858), + [sym_and] = STATE(3858), + [sym_or] = STATE(3858), + [sym_additive_operator] = STATE(3858), + [sym_unary_additive_operator] = STATE(3858), + [sym_multiplicative_operator] = STATE(3858), + [sym_exponential_operator] = STATE(3858), + [sym_shift_operator] = STATE(3858), + [sym_complement_operator] = STATE(3858), + [sym_binary_and_operator] = STATE(3858), + [sym_binary_or_operator] = STATE(3858), + [sym_equality_operator] = STATE(3858), + [sym_comparison_operator] = STATE(3858), + [sym_assign] = STATE(3858), + [sym_operator_assign] = STATE(3858), + [sym_type_declaration] = STATE(3858), + [sym_begin_block] = STATE(3858), + [sym_while] = STATE(3858), + [sym_until] = STATE(3858), + [sym_if] = STATE(3858), + [sym_unless] = STATE(3858), + [sym_conditional] = STATE(3858), + [sym_case] = STATE(3858), + [sym_select] = STATE(3858), + [sym_exhaustive_case] = STATE(3858), + [sym_identifier] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(413), + [sym_true] = ACTIONS(413), + [sym_false] = ACTIONS(413), + [aux_sym_integer_token2] = ACTIONS(415), + [aux_sym_float_token2] = ACTIONS(417), + [anon_sym_SQUOTE] = ACTIONS(419), + [sym_operator_symbol] = ACTIONS(421), + [sym_unquoted_symbol] = ACTIONS(421), + [anon_sym_COLON_DQUOTE] = ACTIONS(423), + [anon_sym_BQUOTE] = ACTIONS(425), + [anon_sym_LBRACK] = ACTIONS(427), + [anon_sym_DASH_GT] = ACTIONS(429), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(433), + [anon_sym_with] = ACTIONS(437), + [anon_sym_yield] = ACTIONS(439), + [anon_sym_typeof] = ACTIONS(441), + [anon_sym_sizeof] = ACTIONS(443), + [anon_sym_instance_sizeof] = ACTIONS(445), + [anon_sym_offsetof] = ACTIONS(447), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [anon_sym___LINE__] = ACTIONS(453), + [anon_sym___END_LINE__] = ACTIONS(453), + [anon_sym___FILE__] = ACTIONS(453), + [anon_sym___DIR__] = ACTIONS(453), + [sym_special_variable] = ACTIONS(421), + [sym_identifier_method_call] = ACTIONS(2923), + [sym_instance_var] = ACTIONS(457), + [sym_class_var] = ACTIONS(457), + [sym_self] = ACTIONS(413), + [anon_sym_begin] = ACTIONS(469), + [anon_sym_while] = ACTIONS(471), + [anon_sym_until] = ACTIONS(473), + [anon_sym_case] = ACTIONS(475), + [anon_sym_select] = ACTIONS(477), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(481), + [sym__start_of_named_tuple] = ACTIONS(483), + [sym_unary_plus] = ACTIONS(485), + [sym_unary_minus] = ACTIONS(485), + [sym_unary_wrapping_plus] = ACTIONS(487), + [sym_unary_wrapping_minus] = ACTIONS(487), + [sym__beginless_range_operator] = ACTIONS(495), + [sym__regex_start] = ACTIONS(497), + [sym__regular_if_keyword] = ACTIONS(499), + [sym__regular_unless_keyword] = ACTIONS(501), + [sym__string_literal_start] = ACTIONS(503), + [sym__string_percent_literal_start] = ACTIONS(505), + [sym__command_percent_literal_start] = ACTIONS(507), + [sym__string_array_percent_literal_start] = ACTIONS(509), + [sym__symbol_array_percent_literal_start] = ACTIONS(511), + [sym__regex_percent_literal_start] = ACTIONS(513), + [sym_heredoc_start] = ACTIONS(421), [sym__heredoc_body_start] = ACTIONS(7), }, [1947] = { - [sym__parenthesized_statement] = STATE(6200), - [sym_expressions] = STATE(6200), - [sym__expression] = STATE(6079), - [sym_empty_parens] = STATE(6200), - [sym_integer] = STATE(6200), - [sym_float] = STATE(6200), - [sym_char] = STATE(6200), - [sym_string] = STATE(5111), - [sym_chained_string] = STATE(6200), - [sym_string_percent_literal] = STATE(6200), - [sym_string_array_percent_literal] = STATE(6200), - [sym_symbol_array_percent_literal] = STATE(6200), [sym_heredoc_body] = STATE(1947), - [sym_quoted_symbol] = STATE(6200), - [sym_command] = STATE(6200), - [sym_command_percent_literal] = STATE(6200), - [sym_regex] = STATE(6200), - [sym_regex_percent_literal] = STATE(6200), - [sym_array] = STATE(6200), - [sym_hash] = STATE(6200), - [sym_tuple] = STATE(6200), - [sym_named_tuple] = STATE(6200), - [sym_range] = STATE(6200), - [sym_beginless_range] = STATE(6200), - [sym_proc] = STATE(6200), - [sym_yield] = STATE(6200), - [sym_typeof] = STATE(6200), - [sym_sizeof] = STATE(6200), - [sym_instance_sizeof] = STATE(6200), - [sym_offsetof] = STATE(6200), - [sym_constant] = STATE(5743), - [sym_pseudo_constant] = STATE(6200), - [sym_generic_instance_type] = STATE(6200), - [sym__dot_call] = STATE(197), - [sym_call] = STATE(6200), - [sym_assign_call] = STATE(7806), - [sym_index_operator] = STATE(2337), - [sym_not] = STATE(6200), - [sym_and] = STATE(6200), - [sym_or] = STATE(6200), - [sym_additive_operator] = STATE(6200), - [sym_unary_additive_operator] = STATE(6200), - [sym_multiplicative_operator] = STATE(6200), - [sym_exponential_operator] = STATE(6200), - [sym_shift_operator] = STATE(6200), - [sym_complement_operator] = STATE(6200), - [sym_binary_and_operator] = STATE(6200), - [sym_binary_or_operator] = STATE(6200), - [sym_equality_operator] = STATE(6200), - [sym_comparison_operator] = STATE(6200), - [sym_assign] = STATE(6200), - [sym_operator_assign] = STATE(6200), - [sym_type_declaration] = STATE(6200), - [sym_begin_block] = STATE(6200), - [sym_while] = STATE(6200), - [sym_until] = STATE(6200), - [sym_if] = STATE(6200), - [sym_unless] = STATE(6200), - [sym_conditional] = STATE(6200), - [sym_case] = STATE(6200), - [sym_exhaustive_case] = STATE(6200), - [sym_identifier] = ACTIONS(3034), - [anon_sym_LPAREN] = ACTIONS(3036), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(2080), - [sym_true] = ACTIONS(2080), - [sym_false] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token2] = ACTIONS(2084), - [anon_sym_SQUOTE] = ACTIONS(2086), - [sym_operator_symbol] = ACTIONS(2088), - [sym_unquoted_symbol] = ACTIONS(2088), - [anon_sym_COLON_DQUOTE] = ACTIONS(2090), - [anon_sym_BQUOTE] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_DASH_GT] = ACTIONS(2096), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_sizeof] = ACTIONS(2108), - [anon_sym_instance_sizeof] = ACTIONS(2110), - [anon_sym_offsetof] = ACTIONS(2112), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [anon_sym___LINE__] = ACTIONS(2118), - [anon_sym___END_LINE__] = ACTIONS(2118), - [anon_sym___FILE__] = ACTIONS(2118), - [anon_sym___DIR__] = ACTIONS(2118), - [sym_special_variable] = ACTIONS(2088), - [sym_identifier_method_call] = ACTIONS(3040), - [sym_instance_var] = ACTIONS(2122), - [sym_class_var] = ACTIONS(2122), - [sym_self] = ACTIONS(2080), - [anon_sym_begin] = ACTIONS(2126), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_until] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2132), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(2134), - [sym__start_of_named_tuple] = ACTIONS(2136), - [sym_unary_plus] = ACTIONS(2138), - [sym_unary_minus] = ACTIONS(2138), - [sym_unary_wrapping_plus] = ACTIONS(2140), - [sym_unary_wrapping_minus] = ACTIONS(2140), - [sym__beginless_range_operator] = ACTIONS(2146), - [sym__regex_start] = ACTIONS(2148), - [sym__regular_if_keyword] = ACTIONS(2150), - [sym__regular_unless_keyword] = ACTIONS(2152), - [sym__string_literal_start] = ACTIONS(2154), - [sym__string_percent_literal_start] = ACTIONS(2156), - [sym__command_percent_literal_start] = ACTIONS(2158), - [sym__string_array_percent_literal_start] = ACTIONS(2160), - [sym__symbol_array_percent_literal_start] = ACTIONS(2162), - [sym__regex_percent_literal_start] = ACTIONS(2164), - [sym_heredoc_start] = ACTIONS(2088), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_identifier] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [aux_sym_integer_token2] = ACTIONS(3269), + [aux_sym_float_token2] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [sym_operator_symbol] = ACTIONS(3267), + [sym_unquoted_symbol] = ACTIONS(3267), + [anon_sym_COLON_DQUOTE] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_LT_LT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ_GT] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_AMP_STAR] = ACTIONS(3269), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_EQ] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3269), + [anon_sym_instance_sizeof] = ACTIONS(3269), + [anon_sym_offsetof] = ACTIONS(3269), + [sym__constant_segment] = ACTIONS(3267), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym___LINE__] = ACTIONS(3269), + [anon_sym___END_LINE__] = ACTIONS(3269), + [anon_sym___FILE__] = ACTIONS(3269), + [anon_sym___DIR__] = ACTIONS(3269), + [sym_special_variable] = ACTIONS(3267), + [sym_identifier_method_call] = ACTIONS(3267), + [sym_instance_var] = ACTIONS(3267), + [sym_class_var] = ACTIONS(3267), + [sym_self] = ACTIONS(3269), + [anon_sym_LPAREN2] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3269), + [anon_sym_PIPE_PIPE] = ACTIONS(3269), + [anon_sym_PLUS_EQ] = ACTIONS(3273), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(3273), + [anon_sym_DASH_EQ] = ACTIONS(3273), + [anon_sym_AMP_DASH_EQ] = ACTIONS(3273), + [anon_sym_STAR_EQ] = ACTIONS(3273), + [anon_sym_AMP_STAR_EQ] = ACTIONS(3273), + [anon_sym_SLASH_EQ] = ACTIONS(3273), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3273), + [anon_sym_PERCENT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_EQ] = ACTIONS(3273), + [anon_sym_CARET_EQ] = ACTIONS(3273), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3273), + [anon_sym_LT_LT_EQ] = ACTIONS(3273), + [anon_sym_GT_GT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_begin] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_until] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3267), + [sym__start_of_hash_or_tuple] = ACTIONS(3267), + [sym__start_of_named_tuple] = ACTIONS(3267), + [sym__start_of_index_operator] = ACTIONS(3267), + [sym__end_of_with_expression] = ACTIONS(3267), + [sym_unary_plus] = ACTIONS(3267), + [sym_unary_minus] = ACTIONS(3267), + [sym_binary_plus] = ACTIONS(3267), + [sym_binary_minus] = ACTIONS(3267), + [sym_unary_wrapping_plus] = ACTIONS(3267), + [sym_unary_wrapping_minus] = ACTIONS(3267), + [sym_binary_wrapping_plus] = ACTIONS(3267), + [sym_binary_wrapping_minus] = ACTIONS(3267), + [sym__unary_star] = ACTIONS(3267), + [sym__binary_star] = ACTIONS(3267), + [sym__unary_double_star] = ACTIONS(3267), + [sym__binary_double_star] = ACTIONS(3267), + [sym__block_ampersand] = ACTIONS(3267), + [sym_binary_ampersand] = ACTIONS(3267), + [sym__beginless_range_operator] = ACTIONS(3267), + [sym__regex_start] = ACTIONS(3267), + [sym__binary_slash] = ACTIONS(3267), + [sym__binary_double_slash] = ACTIONS(3267), + [sym__regular_if_keyword] = ACTIONS(3267), + [sym__regular_unless_keyword] = ACTIONS(3267), + [sym__modulo_operator] = ACTIONS(3267), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3267), + [sym__command_percent_literal_start] = ACTIONS(3267), + [sym__string_array_percent_literal_start] = ACTIONS(3267), + [sym__symbol_array_percent_literal_start] = ACTIONS(3267), + [sym__regex_percent_literal_start] = ACTIONS(3267), + [sym_heredoc_start] = ACTIONS(3267), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3267), }, [1948] = { [sym_heredoc_body] = STATE(1948), - [sym_identifier] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3238), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [sym_operator_symbol] = ACTIONS(3236), - [sym_unquoted_symbol] = ACTIONS(3236), - [anon_sym_COLON_DQUOTE] = ACTIONS(3236), - [anon_sym_BQUOTE] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_COMMA] = ACTIONS(3242), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_DASH_GT] = ACTIONS(3236), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3238), - [anon_sym_GT_GT] = ACTIONS(3238), - [anon_sym_LT_LT] = ACTIONS(3238), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ_GT] = ACTIONS(3236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG_TILDE] = ACTIONS(3236), - [anon_sym_EQ_TILDE] = ACTIONS(3236), - [anon_sym_AMP_STAR] = ACTIONS(3238), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3236), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_EQ] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym_instance_sizeof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [sym__constant_segment] = ACTIONS(3236), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym___LINE__] = ACTIONS(3238), - [anon_sym___END_LINE__] = ACTIONS(3238), - [anon_sym___FILE__] = ACTIONS(3238), - [anon_sym___DIR__] = ACTIONS(3238), - [sym_special_variable] = ACTIONS(3236), - [sym_identifier_method_call] = ACTIONS(3236), - [sym_instance_var] = ACTIONS(3236), - [sym_class_var] = ACTIONS(3236), - [sym_self] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3238), - [anon_sym_PIPE_PIPE] = ACTIONS(3238), - [anon_sym_PLUS_EQ] = ACTIONS(3242), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(3242), - [anon_sym_DASH_EQ] = ACTIONS(3242), - [anon_sym_AMP_DASH_EQ] = ACTIONS(3242), - [anon_sym_STAR_EQ] = ACTIONS(3242), - [anon_sym_AMP_STAR_EQ] = ACTIONS(3242), - [anon_sym_SLASH_EQ] = ACTIONS(3242), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3242), - [anon_sym_PERCENT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_EQ] = ACTIONS(3242), - [anon_sym_CARET_EQ] = ACTIONS(3242), - [anon_sym_STAR_STAR_EQ] = ACTIONS(3242), - [anon_sym_LT_LT_EQ] = ACTIONS(3242), - [anon_sym_GT_GT_EQ] = ACTIONS(3242), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3242), - [anon_sym_AMP_AMP_EQ] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_begin] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_until] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3236), - [sym__start_of_hash_or_tuple] = ACTIONS(3236), - [sym__start_of_named_tuple] = ACTIONS(3236), - [sym__start_of_index_operator] = ACTIONS(3236), - [sym_unary_plus] = ACTIONS(3236), - [sym_unary_minus] = ACTIONS(3236), - [sym_binary_plus] = ACTIONS(3236), - [sym_binary_minus] = ACTIONS(3236), - [sym_unary_wrapping_plus] = ACTIONS(3236), - [sym_unary_wrapping_minus] = ACTIONS(3236), - [sym_binary_wrapping_plus] = ACTIONS(3236), - [sym_binary_wrapping_minus] = ACTIONS(3236), - [sym__unary_star] = ACTIONS(3236), - [sym__binary_star] = ACTIONS(3236), - [sym__unary_double_star] = ACTIONS(3236), - [sym__binary_double_star] = ACTIONS(3236), - [sym__block_ampersand] = ACTIONS(3236), - [sym_binary_ampersand] = ACTIONS(3236), - [sym__beginless_range_operator] = ACTIONS(3236), - [sym__regex_start] = ACTIONS(3236), - [sym__binary_slash] = ACTIONS(3236), - [sym__binary_double_slash] = ACTIONS(3236), - [sym__regular_if_keyword] = ACTIONS(3236), - [sym__regular_unless_keyword] = ACTIONS(3236), - [sym__modulo_operator] = ACTIONS(3236), - [sym__string_literal_start] = ACTIONS(3236), - [sym__string_percent_literal_start] = ACTIONS(3236), - [sym__command_percent_literal_start] = ACTIONS(3236), - [sym__string_array_percent_literal_start] = ACTIONS(3236), - [sym__symbol_array_percent_literal_start] = ACTIONS(3236), - [sym__regex_percent_literal_start] = ACTIONS(3236), - [sym_heredoc_start] = ACTIONS(3236), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3236), + [sym_identifier] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [aux_sym_integer_token2] = ACTIONS(3269), + [aux_sym_float_token2] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [sym_operator_symbol] = ACTIONS(3267), + [sym_unquoted_symbol] = ACTIONS(3267), + [anon_sym_COLON_DQUOTE] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3273), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_LT_LT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ_GT] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_AMP_STAR] = ACTIONS(3269), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_EQ] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3269), + [anon_sym_instance_sizeof] = ACTIONS(3269), + [anon_sym_offsetof] = ACTIONS(3269), + [sym__constant_segment] = ACTIONS(3267), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym___LINE__] = ACTIONS(3269), + [anon_sym___END_LINE__] = ACTIONS(3269), + [anon_sym___FILE__] = ACTIONS(3269), + [anon_sym___DIR__] = ACTIONS(3269), + [sym_special_variable] = ACTIONS(3267), + [sym_identifier_method_call] = ACTIONS(3267), + [sym_instance_var] = ACTIONS(3267), + [sym_class_var] = ACTIONS(3267), + [sym_self] = ACTIONS(3269), + [anon_sym_LPAREN2] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3269), + [anon_sym_PIPE_PIPE] = ACTIONS(3269), + [anon_sym_PLUS_EQ] = ACTIONS(3273), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(3273), + [anon_sym_DASH_EQ] = ACTIONS(3273), + [anon_sym_AMP_DASH_EQ] = ACTIONS(3273), + [anon_sym_STAR_EQ] = ACTIONS(3273), + [anon_sym_AMP_STAR_EQ] = ACTIONS(3273), + [anon_sym_SLASH_EQ] = ACTIONS(3273), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(3273), + [anon_sym_PERCENT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_EQ] = ACTIONS(3273), + [anon_sym_CARET_EQ] = ACTIONS(3273), + [anon_sym_STAR_STAR_EQ] = ACTIONS(3273), + [anon_sym_LT_LT_EQ] = ACTIONS(3273), + [anon_sym_GT_GT_EQ] = ACTIONS(3273), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(3273), + [anon_sym_AMP_AMP_EQ] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_begin] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_until] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3267), + [sym__start_of_hash_or_tuple] = ACTIONS(3267), + [sym__start_of_named_tuple] = ACTIONS(3267), + [sym__start_of_index_operator] = ACTIONS(3267), + [sym_unary_plus] = ACTIONS(3267), + [sym_unary_minus] = ACTIONS(3267), + [sym_binary_plus] = ACTIONS(3267), + [sym_binary_minus] = ACTIONS(3267), + [sym_unary_wrapping_plus] = ACTIONS(3267), + [sym_unary_wrapping_minus] = ACTIONS(3267), + [sym_binary_wrapping_plus] = ACTIONS(3267), + [sym_binary_wrapping_minus] = ACTIONS(3267), + [sym__unary_star] = ACTIONS(3267), + [sym__binary_star] = ACTIONS(3267), + [sym__unary_double_star] = ACTIONS(3267), + [sym__binary_double_star] = ACTIONS(3267), + [sym__block_ampersand] = ACTIONS(3267), + [sym_binary_ampersand] = ACTIONS(3267), + [sym__beginless_range_operator] = ACTIONS(3267), + [sym__regex_start] = ACTIONS(3267), + [sym__binary_slash] = ACTIONS(3267), + [sym__binary_double_slash] = ACTIONS(3267), + [sym__regular_if_keyword] = ACTIONS(3267), + [sym__regular_unless_keyword] = ACTIONS(3267), + [sym__modulo_operator] = ACTIONS(3267), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3267), + [sym__command_percent_literal_start] = ACTIONS(3267), + [sym__string_array_percent_literal_start] = ACTIONS(3267), + [sym__symbol_array_percent_literal_start] = ACTIONS(3267), + [sym__regex_percent_literal_start] = ACTIONS(3267), + [sym_heredoc_start] = ACTIONS(3267), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3267), }, [1949] = { [sym_heredoc_body] = STATE(1949), - [ts_builtin_sym_end] = ACTIONS(4291), - [sym_identifier] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_RPAREN] = ACTIONS(4291), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4293), - [sym_true] = ACTIONS(4293), - [sym_false] = ACTIONS(4293), - [aux_sym_integer_token2] = ACTIONS(4293), - [aux_sym_float_token2] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4291), - [anon_sym_RBRACE] = ACTIONS(4291), - [sym_operator_symbol] = ACTIONS(4291), - [sym_unquoted_symbol] = ACTIONS(4291), - [anon_sym_COLON_DQUOTE] = ACTIONS(4291), - [anon_sym_BQUOTE] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), - [anon_sym_DASH_GT] = ACTIONS(4291), - [anon_sym_end] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_PIPE] = ACTIONS(4293), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_GT_GT] = ACTIONS(4291), - [anon_sym_LT_LT] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ_GT] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4293), - [anon_sym_TILDE] = ACTIONS(4291), - [anon_sym_BANG_TILDE] = ACTIONS(4291), - [anon_sym_EQ_TILDE] = ACTIONS(4291), - [anon_sym_AMP_STAR] = ACTIONS(4293), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_EQ] = ACTIONS(4295), - [anon_sym_with] = ACTIONS(4293), - [anon_sym_yield] = ACTIONS(4293), - [anon_sym_typeof] = ACTIONS(4293), - [anon_sym_sizeof] = ACTIONS(4293), - [anon_sym_instance_sizeof] = ACTIONS(4293), - [anon_sym_offsetof] = ACTIONS(4293), - [sym__constant_segment] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym___LINE__] = ACTIONS(4293), - [anon_sym___END_LINE__] = ACTIONS(4293), - [anon_sym___FILE__] = ACTIONS(4293), - [anon_sym___DIR__] = ACTIONS(4293), - [sym_special_variable] = ACTIONS(4291), - [sym_identifier_method_call] = ACTIONS(4291), - [sym_instance_var] = ACTIONS(4291), - [sym_class_var] = ACTIONS(4291), - [sym_self] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4291), - [anon_sym_QMARK] = ACTIONS(4293), - [anon_sym_QMARK2] = ACTIONS(4297), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_do] = ACTIONS(4293), - [anon_sym_begin] = ACTIONS(4293), - [anon_sym_while] = ACTIONS(4293), - [anon_sym_until] = ACTIONS(4293), - [anon_sym_elsif] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4293), - [anon_sym_when] = ACTIONS(4293), - [anon_sym_case] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4293), - [sym__line_break] = ACTIONS(4291), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4291), - [sym__start_of_hash_or_tuple] = ACTIONS(4291), - [sym__start_of_named_tuple] = ACTIONS(4291), - [sym__start_of_index_operator] = ACTIONS(4291), - [sym_unary_plus] = ACTIONS(4291), - [sym_unary_minus] = ACTIONS(4291), - [sym_binary_plus] = ACTIONS(4291), - [sym_binary_minus] = ACTIONS(4291), - [sym_unary_wrapping_plus] = ACTIONS(4291), - [sym_unary_wrapping_minus] = ACTIONS(4291), - [sym_binary_wrapping_plus] = ACTIONS(4291), - [sym_binary_wrapping_minus] = ACTIONS(4291), - [sym__unary_star] = ACTIONS(4291), - [sym__binary_star] = ACTIONS(4291), - [sym__unary_double_star] = ACTIONS(4291), - [sym__binary_double_star] = ACTIONS(4291), - [sym__block_ampersand] = ACTIONS(4291), - [sym_binary_ampersand] = ACTIONS(4291), - [sym__beginless_range_operator] = ACTIONS(4291), - [sym__regex_start] = ACTIONS(4291), - [sym__binary_slash] = ACTIONS(4291), - [sym__binary_double_slash] = ACTIONS(4291), - [sym__regular_if_keyword] = ACTIONS(4291), - [sym__modifier_if_keyword] = ACTIONS(4291), - [sym__regular_unless_keyword] = ACTIONS(4291), - [sym__modifier_unless_keyword] = ACTIONS(4291), - [sym__modifier_rescue_keyword] = ACTIONS(4291), - [sym__modifier_ensure_keyword] = ACTIONS(4291), - [sym__modulo_operator] = ACTIONS(4291), - [sym__string_literal_start] = ACTIONS(4291), - [sym__string_percent_literal_start] = ACTIONS(4291), - [sym__command_percent_literal_start] = ACTIONS(4291), - [sym__string_array_percent_literal_start] = ACTIONS(4291), - [sym__symbol_array_percent_literal_start] = ACTIONS(4291), - [sym__regex_percent_literal_start] = ACTIONS(4291), - [sym_heredoc_start] = ACTIONS(4291), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4291), + [ts_builtin_sym_end] = ACTIONS(4328), + [sym_identifier] = ACTIONS(4330), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4330), + [anon_sym_RPAREN] = ACTIONS(4328), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4330), + [sym_true] = ACTIONS(4330), + [sym_false] = ACTIONS(4330), + [aux_sym_integer_token2] = ACTIONS(4330), + [aux_sym_float_token2] = ACTIONS(4328), + [anon_sym_SQUOTE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4328), + [sym_operator_symbol] = ACTIONS(4328), + [sym_unquoted_symbol] = ACTIONS(4328), + [anon_sym_COLON_DQUOTE] = ACTIONS(4328), + [anon_sym_BQUOTE] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_DOT_DOT] = ACTIONS(4330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4328), + [anon_sym_DASH_GT] = ACTIONS(4328), + [anon_sym_end] = ACTIONS(4330), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym_PIPE] = ACTIONS(4330), + [anon_sym_CARET] = ACTIONS(4328), + [anon_sym_GT_GT] = ACTIONS(4328), + [anon_sym_LT_LT] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4330), + [anon_sym_BANG_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4330), + [anon_sym_GT] = ACTIONS(4330), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ_GT] = ACTIONS(4328), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4330), + [anon_sym_TILDE] = ACTIONS(4328), + [anon_sym_BANG_TILDE] = ACTIONS(4328), + [anon_sym_EQ_TILDE] = ACTIONS(4328), + [anon_sym_AMP_STAR] = ACTIONS(4330), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4328), + [anon_sym_DOT] = ACTIONS(4330), + [anon_sym_EQ] = ACTIONS(4332), + [anon_sym_with] = ACTIONS(4330), + [anon_sym_yield] = ACTIONS(4330), + [anon_sym_typeof] = ACTIONS(4330), + [anon_sym_sizeof] = ACTIONS(4330), + [anon_sym_instance_sizeof] = ACTIONS(4330), + [anon_sym_offsetof] = ACTIONS(4330), + [sym__constant_segment] = ACTIONS(4328), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym___LINE__] = ACTIONS(4330), + [anon_sym___END_LINE__] = ACTIONS(4330), + [anon_sym___FILE__] = ACTIONS(4330), + [anon_sym___DIR__] = ACTIONS(4330), + [sym_special_variable] = ACTIONS(4328), + [sym_identifier_method_call] = ACTIONS(4328), + [sym_instance_var] = ACTIONS(4328), + [sym_class_var] = ACTIONS(4328), + [sym_self] = ACTIONS(4330), + [anon_sym_LPAREN2] = ACTIONS(4328), + [anon_sym_QMARK] = ACTIONS(4330), + [anon_sym_QMARK2] = ACTIONS(4334), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_do] = ACTIONS(4330), + [anon_sym_begin] = ACTIONS(4330), + [anon_sym_while] = ACTIONS(4330), + [anon_sym_until] = ACTIONS(4330), + [anon_sym_elsif] = ACTIONS(4330), + [anon_sym_else] = ACTIONS(4330), + [anon_sym_when] = ACTIONS(4330), + [anon_sym_case] = ACTIONS(4330), + [anon_sym_select] = ACTIONS(4330), + [anon_sym_in] = ACTIONS(4330), + [sym__line_break] = ACTIONS(4328), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4328), + [sym__start_of_hash_or_tuple] = ACTIONS(4328), + [sym__start_of_named_tuple] = ACTIONS(4328), + [sym__start_of_index_operator] = ACTIONS(4328), + [sym_unary_plus] = ACTIONS(4328), + [sym_unary_minus] = ACTIONS(4328), + [sym_binary_plus] = ACTIONS(4328), + [sym_binary_minus] = ACTIONS(4328), + [sym_unary_wrapping_plus] = ACTIONS(4328), + [sym_unary_wrapping_minus] = ACTIONS(4328), + [sym_binary_wrapping_plus] = ACTIONS(4328), + [sym_binary_wrapping_minus] = ACTIONS(4328), + [sym__unary_star] = ACTIONS(4328), + [sym__binary_star] = ACTIONS(4328), + [sym__unary_double_star] = ACTIONS(4328), + [sym__binary_double_star] = ACTIONS(4328), + [sym__block_ampersand] = ACTIONS(4328), + [sym_binary_ampersand] = ACTIONS(4328), + [sym__beginless_range_operator] = ACTIONS(4328), + [sym__regex_start] = ACTIONS(4328), + [sym__binary_slash] = ACTIONS(4328), + [sym__binary_double_slash] = ACTIONS(4328), + [sym__regular_if_keyword] = ACTIONS(4328), + [sym__modifier_if_keyword] = ACTIONS(4328), + [sym__regular_unless_keyword] = ACTIONS(4328), + [sym__modifier_unless_keyword] = ACTIONS(4328), + [sym__modifier_rescue_keyword] = ACTIONS(4328), + [sym__modifier_ensure_keyword] = ACTIONS(4328), + [sym__modulo_operator] = ACTIONS(4328), + [sym__string_literal_start] = ACTIONS(4328), + [sym__string_percent_literal_start] = ACTIONS(4328), + [sym__command_percent_literal_start] = ACTIONS(4328), + [sym__string_array_percent_literal_start] = ACTIONS(4328), + [sym__symbol_array_percent_literal_start] = ACTIONS(4328), + [sym__regex_percent_literal_start] = ACTIONS(4328), + [sym_heredoc_start] = ACTIONS(4328), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4328), }, [1950] = { [sym_heredoc_body] = STATE(1950), - [ts_builtin_sym_end] = ACTIONS(4299), - [sym_identifier] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_RPAREN] = ACTIONS(4299), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4301), - [sym_true] = ACTIONS(4301), - [sym_false] = ACTIONS(4301), - [aux_sym_integer_token2] = ACTIONS(4301), - [aux_sym_float_token2] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4299), - [anon_sym_RBRACE] = ACTIONS(4299), - [sym_operator_symbol] = ACTIONS(4299), - [sym_unquoted_symbol] = ACTIONS(4299), - [anon_sym_COLON_DQUOTE] = ACTIONS(4299), - [anon_sym_BQUOTE] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [anon_sym_COMMA] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4299), - [anon_sym_DASH_GT] = ACTIONS(4299), - [anon_sym_end] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_PIPE] = ACTIONS(4301), - [anon_sym_CARET] = ACTIONS(4299), - [anon_sym_GT_GT] = ACTIONS(4299), - [anon_sym_LT_LT] = ACTIONS(4299), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ_GT] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4299), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_TILDE] = ACTIONS(4299), - [anon_sym_BANG_TILDE] = ACTIONS(4299), - [anon_sym_EQ_TILDE] = ACTIONS(4299), - [anon_sym_AMP_STAR] = ACTIONS(4301), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_with] = ACTIONS(4301), - [anon_sym_yield] = ACTIONS(4301), - [anon_sym_typeof] = ACTIONS(4301), - [anon_sym_sizeof] = ACTIONS(4301), - [anon_sym_instance_sizeof] = ACTIONS(4301), - [anon_sym_offsetof] = ACTIONS(4301), - [sym__constant_segment] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4299), - [anon_sym___LINE__] = ACTIONS(4301), - [anon_sym___END_LINE__] = ACTIONS(4301), - [anon_sym___FILE__] = ACTIONS(4301), - [anon_sym___DIR__] = ACTIONS(4301), - [sym_special_variable] = ACTIONS(4299), - [sym_identifier_method_call] = ACTIONS(4299), - [sym_instance_var] = ACTIONS(4299), - [sym_class_var] = ACTIONS(4299), - [sym_self] = ACTIONS(4301), - [anon_sym_LPAREN2] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4299), - [anon_sym_AMP_AMP] = ACTIONS(4299), - [anon_sym_PIPE_PIPE] = ACTIONS(4299), - [anon_sym_do] = ACTIONS(4301), - [anon_sym_begin] = ACTIONS(4301), - [anon_sym_while] = ACTIONS(4301), - [anon_sym_until] = ACTIONS(4301), - [anon_sym_elsif] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_when] = ACTIONS(4301), - [anon_sym_case] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4301), - [sym__line_break] = ACTIONS(4299), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4299), - [sym__start_of_hash_or_tuple] = ACTIONS(4299), - [sym__start_of_named_tuple] = ACTIONS(4299), - [sym__start_of_index_operator] = ACTIONS(4299), - [sym_unary_plus] = ACTIONS(4299), - [sym_unary_minus] = ACTIONS(4299), - [sym_binary_plus] = ACTIONS(4299), - [sym_binary_minus] = ACTIONS(4299), - [sym_unary_wrapping_plus] = ACTIONS(4299), - [sym_unary_wrapping_minus] = ACTIONS(4299), - [sym_binary_wrapping_plus] = ACTIONS(4299), - [sym_binary_wrapping_minus] = ACTIONS(4299), - [sym__unary_star] = ACTIONS(4299), - [sym__binary_star] = ACTIONS(4299), - [sym__unary_double_star] = ACTIONS(4299), - [sym__binary_double_star] = ACTIONS(4299), - [sym__block_ampersand] = ACTIONS(4299), - [sym_binary_ampersand] = ACTIONS(4299), - [sym__beginless_range_operator] = ACTIONS(4299), - [sym__regex_start] = ACTIONS(4299), - [sym__binary_slash] = ACTIONS(4299), - [sym__binary_double_slash] = ACTIONS(4299), - [sym__regular_if_keyword] = ACTIONS(4299), - [sym__modifier_if_keyword] = ACTIONS(4299), - [sym__regular_unless_keyword] = ACTIONS(4299), - [sym__modifier_unless_keyword] = ACTIONS(4299), - [sym__modifier_rescue_keyword] = ACTIONS(4299), - [sym__modifier_ensure_keyword] = ACTIONS(4299), - [sym__modulo_operator] = ACTIONS(4299), - [sym__string_literal_start] = ACTIONS(4299), - [sym__string_percent_literal_start] = ACTIONS(4299), - [sym__command_percent_literal_start] = ACTIONS(4299), - [sym__string_array_percent_literal_start] = ACTIONS(4299), - [sym__symbol_array_percent_literal_start] = ACTIONS(4299), - [sym__regex_percent_literal_start] = ACTIONS(4299), - [sym_heredoc_start] = ACTIONS(4299), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4299), + [ts_builtin_sym_end] = ACTIONS(4336), + [sym_identifier] = ACTIONS(4338), + [anon_sym_SEMI] = ACTIONS(4336), + [anon_sym_LPAREN] = ACTIONS(4338), + [anon_sym_RPAREN] = ACTIONS(4336), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4338), + [sym_true] = ACTIONS(4338), + [sym_false] = ACTIONS(4338), + [aux_sym_integer_token2] = ACTIONS(4338), + [aux_sym_float_token2] = ACTIONS(4336), + [anon_sym_SQUOTE] = ACTIONS(4336), + [anon_sym_RBRACE] = ACTIONS(4336), + [sym_operator_symbol] = ACTIONS(4336), + [sym_unquoted_symbol] = ACTIONS(4336), + [anon_sym_COLON_DQUOTE] = ACTIONS(4336), + [anon_sym_BQUOTE] = ACTIONS(4336), + [anon_sym_LBRACK] = ACTIONS(4336), + [anon_sym_COMMA] = ACTIONS(4336), + [anon_sym_DOT_DOT] = ACTIONS(4338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4336), + [anon_sym_DASH_GT] = ACTIONS(4336), + [anon_sym_end] = ACTIONS(4338), + [anon_sym_LT] = ACTIONS(4338), + [anon_sym_PIPE] = ACTIONS(4338), + [anon_sym_CARET] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4336), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_EQ_EQ] = ACTIONS(4338), + [anon_sym_BANG_EQ] = ACTIONS(4336), + [anon_sym_LT_EQ] = ACTIONS(4338), + [anon_sym_GT] = ACTIONS(4338), + [anon_sym_GT_EQ] = ACTIONS(4336), + [anon_sym_LT_EQ_GT] = ACTIONS(4336), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4336), + [anon_sym_BANG] = ACTIONS(4338), + [anon_sym_TILDE] = ACTIONS(4336), + [anon_sym_BANG_TILDE] = ACTIONS(4336), + [anon_sym_EQ_TILDE] = ACTIONS(4336), + [anon_sym_AMP_STAR] = ACTIONS(4338), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4336), + [anon_sym_DOT] = ACTIONS(4338), + [anon_sym_with] = ACTIONS(4338), + [anon_sym_yield] = ACTIONS(4338), + [anon_sym_typeof] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4338), + [anon_sym_instance_sizeof] = ACTIONS(4338), + [anon_sym_offsetof] = ACTIONS(4338), + [sym__constant_segment] = ACTIONS(4336), + [anon_sym_COLON_COLON] = ACTIONS(4336), + [anon_sym___LINE__] = ACTIONS(4338), + [anon_sym___END_LINE__] = ACTIONS(4338), + [anon_sym___FILE__] = ACTIONS(4338), + [anon_sym___DIR__] = ACTIONS(4338), + [sym_special_variable] = ACTIONS(4336), + [sym_identifier_method_call] = ACTIONS(4336), + [sym_instance_var] = ACTIONS(4336), + [sym_class_var] = ACTIONS(4336), + [sym_self] = ACTIONS(4338), + [anon_sym_LPAREN2] = ACTIONS(4336), + [anon_sym_QMARK] = ACTIONS(4336), + [anon_sym_AMP_AMP] = ACTIONS(4336), + [anon_sym_PIPE_PIPE] = ACTIONS(4336), + [anon_sym_do] = ACTIONS(4338), + [anon_sym_begin] = ACTIONS(4338), + [anon_sym_while] = ACTIONS(4338), + [anon_sym_until] = ACTIONS(4338), + [anon_sym_elsif] = ACTIONS(4338), + [anon_sym_else] = ACTIONS(4338), + [anon_sym_when] = ACTIONS(4338), + [anon_sym_case] = ACTIONS(4338), + [anon_sym_select] = ACTIONS(4338), + [anon_sym_in] = ACTIONS(4338), + [sym__line_break] = ACTIONS(4336), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4336), + [sym__start_of_hash_or_tuple] = ACTIONS(4336), + [sym__start_of_named_tuple] = ACTIONS(4336), + [sym__start_of_index_operator] = ACTIONS(4336), + [sym_unary_plus] = ACTIONS(4336), + [sym_unary_minus] = ACTIONS(4336), + [sym_binary_plus] = ACTIONS(4336), + [sym_binary_minus] = ACTIONS(4336), + [sym_unary_wrapping_plus] = ACTIONS(4336), + [sym_unary_wrapping_minus] = ACTIONS(4336), + [sym_binary_wrapping_plus] = ACTIONS(4336), + [sym_binary_wrapping_minus] = ACTIONS(4336), + [sym__unary_star] = ACTIONS(4336), + [sym__binary_star] = ACTIONS(4336), + [sym__unary_double_star] = ACTIONS(4336), + [sym__binary_double_star] = ACTIONS(4336), + [sym__block_ampersand] = ACTIONS(4336), + [sym_binary_ampersand] = ACTIONS(4336), + [sym__beginless_range_operator] = ACTIONS(4336), + [sym__regex_start] = ACTIONS(4336), + [sym__binary_slash] = ACTIONS(4336), + [sym__binary_double_slash] = ACTIONS(4336), + [sym__regular_if_keyword] = ACTIONS(4336), + [sym__modifier_if_keyword] = ACTIONS(4336), + [sym__regular_unless_keyword] = ACTIONS(4336), + [sym__modifier_unless_keyword] = ACTIONS(4336), + [sym__modifier_rescue_keyword] = ACTIONS(4336), + [sym__modifier_ensure_keyword] = ACTIONS(4336), + [sym__modulo_operator] = ACTIONS(4336), + [sym__string_literal_start] = ACTIONS(4336), + [sym__string_percent_literal_start] = ACTIONS(4336), + [sym__command_percent_literal_start] = ACTIONS(4336), + [sym__string_array_percent_literal_start] = ACTIONS(4336), + [sym__symbol_array_percent_literal_start] = ACTIONS(4336), + [sym__regex_percent_literal_start] = ACTIONS(4336), + [sym_heredoc_start] = ACTIONS(4336), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4336), }, [1951] = { [sym_heredoc_body] = STATE(1951), - [ts_builtin_sym_end] = ACTIONS(4303), - [sym_identifier] = ACTIONS(4305), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4305), - [anon_sym_RPAREN] = ACTIONS(4303), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4305), - [sym_true] = ACTIONS(4305), - [sym_false] = ACTIONS(4305), - [aux_sym_integer_token2] = ACTIONS(4305), - [aux_sym_float_token2] = ACTIONS(4303), - [anon_sym_SQUOTE] = ACTIONS(4303), - [anon_sym_RBRACE] = ACTIONS(4303), - [sym_operator_symbol] = ACTIONS(4303), - [sym_unquoted_symbol] = ACTIONS(4303), - [anon_sym_COLON_DQUOTE] = ACTIONS(4303), - [anon_sym_BQUOTE] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_DOT_DOT] = ACTIONS(4305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), - [anon_sym_DASH_GT] = ACTIONS(4303), - [anon_sym_end] = ACTIONS(4305), - [anon_sym_LT] = ACTIONS(4305), - [anon_sym_PIPE] = ACTIONS(4305), - [anon_sym_CARET] = ACTIONS(4303), - [anon_sym_GT_GT] = ACTIONS(4303), - [anon_sym_LT_LT] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4305), - [anon_sym_BANG_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4305), - [anon_sym_GT] = ACTIONS(4305), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ_GT] = ACTIONS(4303), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4305), - [anon_sym_TILDE] = ACTIONS(4303), - [anon_sym_BANG_TILDE] = ACTIONS(4303), - [anon_sym_EQ_TILDE] = ACTIONS(4303), - [anon_sym_AMP_STAR] = ACTIONS(4305), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4303), - [anon_sym_DOT] = ACTIONS(4305), - [anon_sym_with] = ACTIONS(4305), - [anon_sym_yield] = ACTIONS(4305), - [anon_sym_typeof] = ACTIONS(4305), - [anon_sym_sizeof] = ACTIONS(4305), - [anon_sym_instance_sizeof] = ACTIONS(4305), - [anon_sym_offsetof] = ACTIONS(4305), - [sym__constant_segment] = ACTIONS(4303), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym___LINE__] = ACTIONS(4305), - [anon_sym___END_LINE__] = ACTIONS(4305), - [anon_sym___FILE__] = ACTIONS(4305), - [anon_sym___DIR__] = ACTIONS(4305), - [sym_special_variable] = ACTIONS(4303), - [sym_identifier_method_call] = ACTIONS(4303), - [sym_instance_var] = ACTIONS(4303), - [sym_class_var] = ACTIONS(4303), - [sym_self] = ACTIONS(4305), - [anon_sym_LPAREN2] = ACTIONS(4303), - [anon_sym_QMARK] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_do] = ACTIONS(4305), - [anon_sym_begin] = ACTIONS(4305), - [anon_sym_while] = ACTIONS(4305), - [anon_sym_until] = ACTIONS(4305), - [anon_sym_elsif] = ACTIONS(4305), - [anon_sym_else] = ACTIONS(4305), - [anon_sym_when] = ACTIONS(4305), - [anon_sym_case] = ACTIONS(4305), - [anon_sym_in] = ACTIONS(4305), - [sym__line_break] = ACTIONS(4303), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4303), - [sym__start_of_hash_or_tuple] = ACTIONS(4303), - [sym__start_of_named_tuple] = ACTIONS(4303), - [sym__start_of_index_operator] = ACTIONS(4303), - [sym_unary_plus] = ACTIONS(4303), - [sym_unary_minus] = ACTIONS(4303), - [sym_binary_plus] = ACTIONS(4303), - [sym_binary_minus] = ACTIONS(4303), - [sym_unary_wrapping_plus] = ACTIONS(4303), - [sym_unary_wrapping_minus] = ACTIONS(4303), - [sym_binary_wrapping_plus] = ACTIONS(4303), - [sym_binary_wrapping_minus] = ACTIONS(4303), - [sym__unary_star] = ACTIONS(4303), - [sym__binary_star] = ACTIONS(4303), - [sym__unary_double_star] = ACTIONS(4303), - [sym__binary_double_star] = ACTIONS(4303), - [sym__block_ampersand] = ACTIONS(4303), - [sym_binary_ampersand] = ACTIONS(4303), - [sym__beginless_range_operator] = ACTIONS(4303), - [sym__regex_start] = ACTIONS(4303), - [sym__binary_slash] = ACTIONS(4303), - [sym__binary_double_slash] = ACTIONS(4303), - [sym__regular_if_keyword] = ACTIONS(4303), - [sym__modifier_if_keyword] = ACTIONS(4303), - [sym__regular_unless_keyword] = ACTIONS(4303), - [sym__modifier_unless_keyword] = ACTIONS(4303), - [sym__modifier_rescue_keyword] = ACTIONS(4303), - [sym__modifier_ensure_keyword] = ACTIONS(4303), - [sym__modulo_operator] = ACTIONS(4303), - [sym__string_literal_start] = ACTIONS(4303), - [sym__string_percent_literal_start] = ACTIONS(4303), - [sym__command_percent_literal_start] = ACTIONS(4303), - [sym__string_array_percent_literal_start] = ACTIONS(4303), - [sym__symbol_array_percent_literal_start] = ACTIONS(4303), - [sym__regex_percent_literal_start] = ACTIONS(4303), - [sym_heredoc_start] = ACTIONS(4303), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4303), + [ts_builtin_sym_end] = ACTIONS(4340), + [sym_identifier] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4340), + [anon_sym_LPAREN] = ACTIONS(4342), + [anon_sym_RPAREN] = ACTIONS(4340), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4342), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [aux_sym_integer_token2] = ACTIONS(4342), + [aux_sym_float_token2] = ACTIONS(4340), + [anon_sym_SQUOTE] = ACTIONS(4340), + [anon_sym_RBRACE] = ACTIONS(4340), + [sym_operator_symbol] = ACTIONS(4340), + [sym_unquoted_symbol] = ACTIONS(4340), + [anon_sym_COLON_DQUOTE] = ACTIONS(4340), + [anon_sym_BQUOTE] = ACTIONS(4340), + [anon_sym_LBRACK] = ACTIONS(4340), + [anon_sym_COMMA] = ACTIONS(4340), + [anon_sym_DOT_DOT] = ACTIONS(4342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4340), + [anon_sym_DASH_GT] = ACTIONS(4340), + [anon_sym_end] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_PIPE] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4340), + [anon_sym_GT_GT] = ACTIONS(4340), + [anon_sym_LT_LT] = ACTIONS(4340), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ] = ACTIONS(4340), + [anon_sym_LT_EQ] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4340), + [anon_sym_LT_EQ_GT] = ACTIONS(4340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4340), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_TILDE] = ACTIONS(4340), + [anon_sym_BANG_TILDE] = ACTIONS(4340), + [anon_sym_EQ_TILDE] = ACTIONS(4340), + [anon_sym_AMP_STAR] = ACTIONS(4342), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4340), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_with] = ACTIONS(4342), + [anon_sym_yield] = ACTIONS(4342), + [anon_sym_typeof] = ACTIONS(4342), + [anon_sym_sizeof] = ACTIONS(4342), + [anon_sym_instance_sizeof] = ACTIONS(4342), + [anon_sym_offsetof] = ACTIONS(4342), + [sym__constant_segment] = ACTIONS(4340), + [anon_sym_COLON_COLON] = ACTIONS(4340), + [anon_sym___LINE__] = ACTIONS(4342), + [anon_sym___END_LINE__] = ACTIONS(4342), + [anon_sym___FILE__] = ACTIONS(4342), + [anon_sym___DIR__] = ACTIONS(4342), + [sym_special_variable] = ACTIONS(4340), + [sym_identifier_method_call] = ACTIONS(4340), + [sym_instance_var] = ACTIONS(4340), + [sym_class_var] = ACTIONS(4340), + [sym_self] = ACTIONS(4342), + [anon_sym_LPAREN2] = ACTIONS(4340), + [anon_sym_QMARK] = ACTIONS(4340), + [anon_sym_AMP_AMP] = ACTIONS(4340), + [anon_sym_PIPE_PIPE] = ACTIONS(4340), + [anon_sym_do] = ACTIONS(4342), + [anon_sym_begin] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_until] = ACTIONS(4342), + [anon_sym_elsif] = ACTIONS(4342), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_when] = ACTIONS(4342), + [anon_sym_case] = ACTIONS(4342), + [anon_sym_select] = ACTIONS(4342), + [anon_sym_in] = ACTIONS(4342), + [sym__line_break] = ACTIONS(4340), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4340), + [sym__start_of_hash_or_tuple] = ACTIONS(4340), + [sym__start_of_named_tuple] = ACTIONS(4340), + [sym__start_of_index_operator] = ACTIONS(4340), + [sym_unary_plus] = ACTIONS(4340), + [sym_unary_minus] = ACTIONS(4340), + [sym_binary_plus] = ACTIONS(4340), + [sym_binary_minus] = ACTIONS(4340), + [sym_unary_wrapping_plus] = ACTIONS(4340), + [sym_unary_wrapping_minus] = ACTIONS(4340), + [sym_binary_wrapping_plus] = ACTIONS(4340), + [sym_binary_wrapping_minus] = ACTIONS(4340), + [sym__unary_star] = ACTIONS(4340), + [sym__binary_star] = ACTIONS(4340), + [sym__unary_double_star] = ACTIONS(4340), + [sym__binary_double_star] = ACTIONS(4340), + [sym__block_ampersand] = ACTIONS(4340), + [sym_binary_ampersand] = ACTIONS(4340), + [sym__beginless_range_operator] = ACTIONS(4340), + [sym__regex_start] = ACTIONS(4340), + [sym__binary_slash] = ACTIONS(4340), + [sym__binary_double_slash] = ACTIONS(4340), + [sym__regular_if_keyword] = ACTIONS(4340), + [sym__modifier_if_keyword] = ACTIONS(4340), + [sym__regular_unless_keyword] = ACTIONS(4340), + [sym__modifier_unless_keyword] = ACTIONS(4340), + [sym__modifier_rescue_keyword] = ACTIONS(4340), + [sym__modifier_ensure_keyword] = ACTIONS(4340), + [sym__modulo_operator] = ACTIONS(4340), + [sym__string_literal_start] = ACTIONS(4340), + [sym__string_percent_literal_start] = ACTIONS(4340), + [sym__command_percent_literal_start] = ACTIONS(4340), + [sym__string_array_percent_literal_start] = ACTIONS(4340), + [sym__symbol_array_percent_literal_start] = ACTIONS(4340), + [sym__regex_percent_literal_start] = ACTIONS(4340), + [sym_heredoc_start] = ACTIONS(4340), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4340), }, [1952] = { [sym_heredoc_body] = STATE(1952), - [ts_builtin_sym_end] = ACTIONS(3236), - [sym_identifier] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3238), - [anon_sym_RPAREN] = ACTIONS(3236), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3236), - [sym_operator_symbol] = ACTIONS(3236), - [sym_unquoted_symbol] = ACTIONS(3236), - [anon_sym_COLON_DQUOTE] = ACTIONS(3236), - [anon_sym_BQUOTE] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_COMMA] = ACTIONS(3236), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_DASH_GT] = ACTIONS(3236), - [anon_sym_end] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3236), - [anon_sym_GT_GT] = ACTIONS(3236), - [anon_sym_LT_LT] = ACTIONS(3236), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ_GT] = ACTIONS(3236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG_TILDE] = ACTIONS(3236), - [anon_sym_EQ_TILDE] = ACTIONS(3236), - [anon_sym_AMP_STAR] = ACTIONS(3238), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3236), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym_instance_sizeof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [sym__constant_segment] = ACTIONS(3236), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym___LINE__] = ACTIONS(3238), - [anon_sym___END_LINE__] = ACTIONS(3238), - [anon_sym___FILE__] = ACTIONS(3238), - [anon_sym___DIR__] = ACTIONS(3238), - [sym_special_variable] = ACTIONS(3236), - [sym_identifier_method_call] = ACTIONS(3236), - [sym_instance_var] = ACTIONS(3236), - [sym_class_var] = ACTIONS(3236), - [sym_self] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3236), - [anon_sym_PIPE_PIPE] = ACTIONS(3236), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_begin] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_until] = ACTIONS(3238), - [anon_sym_elsif] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [sym__line_break] = ACTIONS(3236), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3236), - [sym__start_of_hash_or_tuple] = ACTIONS(3236), - [sym__start_of_named_tuple] = ACTIONS(3236), - [sym__start_of_index_operator] = ACTIONS(3236), - [sym_unary_plus] = ACTIONS(3236), - [sym_unary_minus] = ACTIONS(3236), - [sym_binary_plus] = ACTIONS(3236), - [sym_binary_minus] = ACTIONS(3236), - [sym_unary_wrapping_plus] = ACTIONS(3236), - [sym_unary_wrapping_minus] = ACTIONS(3236), - [sym_binary_wrapping_plus] = ACTIONS(3236), - [sym_binary_wrapping_minus] = ACTIONS(3236), - [sym__unary_star] = ACTIONS(3236), - [sym__binary_star] = ACTIONS(3236), - [sym__unary_double_star] = ACTIONS(3236), - [sym__binary_double_star] = ACTIONS(3236), - [sym__block_ampersand] = ACTIONS(3236), - [sym_binary_ampersand] = ACTIONS(3236), - [sym__beginless_range_operator] = ACTIONS(3236), - [sym__regex_start] = ACTIONS(3236), - [sym__binary_slash] = ACTIONS(3236), - [sym__binary_double_slash] = ACTIONS(3236), - [sym__regular_if_keyword] = ACTIONS(3236), - [sym__modifier_if_keyword] = ACTIONS(3236), - [sym__regular_unless_keyword] = ACTIONS(3236), - [sym__modifier_unless_keyword] = ACTIONS(3236), - [sym__modifier_rescue_keyword] = ACTIONS(3236), - [sym__modifier_ensure_keyword] = ACTIONS(3236), - [sym__modulo_operator] = ACTIONS(3236), - [sym__string_literal_start] = ACTIONS(3236), - [sym__string_percent_literal_start] = ACTIONS(3236), - [sym__command_percent_literal_start] = ACTIONS(3236), - [sym__string_array_percent_literal_start] = ACTIONS(3236), - [sym__symbol_array_percent_literal_start] = ACTIONS(3236), - [sym__regex_percent_literal_start] = ACTIONS(3236), - [sym_heredoc_start] = ACTIONS(3236), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3236), + [ts_builtin_sym_end] = ACTIONS(4344), + [sym_identifier] = ACTIONS(4346), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4346), + [anon_sym_RPAREN] = ACTIONS(4344), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4346), + [sym_true] = ACTIONS(4346), + [sym_false] = ACTIONS(4346), + [aux_sym_integer_token2] = ACTIONS(4346), + [aux_sym_float_token2] = ACTIONS(4344), + [anon_sym_SQUOTE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4344), + [sym_operator_symbol] = ACTIONS(4344), + [sym_unquoted_symbol] = ACTIONS(4344), + [anon_sym_COLON_DQUOTE] = ACTIONS(4344), + [anon_sym_BQUOTE] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_DOT_DOT] = ACTIONS(4346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4344), + [anon_sym_DASH_GT] = ACTIONS(4344), + [anon_sym_end] = ACTIONS(4346), + [anon_sym_LT] = ACTIONS(4346), + [anon_sym_PIPE] = ACTIONS(4346), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_GT_GT] = ACTIONS(4344), + [anon_sym_LT_LT] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4346), + [anon_sym_BANG_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4346), + [anon_sym_GT] = ACTIONS(4346), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ_GT] = ACTIONS(4344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4346), + [anon_sym_TILDE] = ACTIONS(4344), + [anon_sym_BANG_TILDE] = ACTIONS(4344), + [anon_sym_EQ_TILDE] = ACTIONS(4344), + [anon_sym_AMP_STAR] = ACTIONS(4346), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4346), + [anon_sym_with] = ACTIONS(4346), + [anon_sym_yield] = ACTIONS(4346), + [anon_sym_typeof] = ACTIONS(4346), + [anon_sym_sizeof] = ACTIONS(4346), + [anon_sym_instance_sizeof] = ACTIONS(4346), + [anon_sym_offsetof] = ACTIONS(4346), + [sym__constant_segment] = ACTIONS(4344), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym___LINE__] = ACTIONS(4346), + [anon_sym___END_LINE__] = ACTIONS(4346), + [anon_sym___FILE__] = ACTIONS(4346), + [anon_sym___DIR__] = ACTIONS(4346), + [sym_special_variable] = ACTIONS(4344), + [sym_identifier_method_call] = ACTIONS(4344), + [sym_instance_var] = ACTIONS(4344), + [sym_class_var] = ACTIONS(4344), + [sym_self] = ACTIONS(4346), + [anon_sym_LPAREN2] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_do] = ACTIONS(4346), + [anon_sym_begin] = ACTIONS(4346), + [anon_sym_while] = ACTIONS(4346), + [anon_sym_until] = ACTIONS(4346), + [anon_sym_elsif] = ACTIONS(4346), + [anon_sym_else] = ACTIONS(4346), + [anon_sym_when] = ACTIONS(4346), + [anon_sym_case] = ACTIONS(4346), + [anon_sym_select] = ACTIONS(4346), + [anon_sym_in] = ACTIONS(4346), + [sym__line_break] = ACTIONS(4344), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4344), + [sym__start_of_hash_or_tuple] = ACTIONS(4344), + [sym__start_of_named_tuple] = ACTIONS(4344), + [sym__start_of_index_operator] = ACTIONS(4344), + [sym_unary_plus] = ACTIONS(4344), + [sym_unary_minus] = ACTIONS(4344), + [sym_binary_plus] = ACTIONS(4344), + [sym_binary_minus] = ACTIONS(4344), + [sym_unary_wrapping_plus] = ACTIONS(4344), + [sym_unary_wrapping_minus] = ACTIONS(4344), + [sym_binary_wrapping_plus] = ACTIONS(4344), + [sym_binary_wrapping_minus] = ACTIONS(4344), + [sym__unary_star] = ACTIONS(4344), + [sym__binary_star] = ACTIONS(4344), + [sym__unary_double_star] = ACTIONS(4344), + [sym__binary_double_star] = ACTIONS(4344), + [sym__block_ampersand] = ACTIONS(4344), + [sym_binary_ampersand] = ACTIONS(4344), + [sym__beginless_range_operator] = ACTIONS(4344), + [sym__regex_start] = ACTIONS(4344), + [sym__binary_slash] = ACTIONS(4344), + [sym__binary_double_slash] = ACTIONS(4344), + [sym__regular_if_keyword] = ACTIONS(4344), + [sym__modifier_if_keyword] = ACTIONS(4344), + [sym__regular_unless_keyword] = ACTIONS(4344), + [sym__modifier_unless_keyword] = ACTIONS(4344), + [sym__modifier_rescue_keyword] = ACTIONS(4344), + [sym__modifier_ensure_keyword] = ACTIONS(4344), + [sym__modulo_operator] = ACTIONS(4344), + [sym__string_literal_start] = ACTIONS(4344), + [sym__string_percent_literal_start] = ACTIONS(4344), + [sym__command_percent_literal_start] = ACTIONS(4344), + [sym__string_array_percent_literal_start] = ACTIONS(4344), + [sym__symbol_array_percent_literal_start] = ACTIONS(4344), + [sym__regex_percent_literal_start] = ACTIONS(4344), + [sym_heredoc_start] = ACTIONS(4344), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4344), }, [1953] = { [sym_heredoc_body] = STATE(1953), - [ts_builtin_sym_end] = ACTIONS(4307), - [sym_identifier] = ACTIONS(4309), - [anon_sym_SEMI] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4309), - [anon_sym_RPAREN] = ACTIONS(4307), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4309), - [sym_true] = ACTIONS(4309), - [sym_false] = ACTIONS(4309), - [aux_sym_integer_token2] = ACTIONS(4309), - [aux_sym_float_token2] = ACTIONS(4307), - [anon_sym_SQUOTE] = ACTIONS(4307), - [anon_sym_RBRACE] = ACTIONS(4307), - [sym_operator_symbol] = ACTIONS(4307), - [sym_unquoted_symbol] = ACTIONS(4307), - [anon_sym_COLON_DQUOTE] = ACTIONS(4307), - [anon_sym_BQUOTE] = ACTIONS(4307), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_COMMA] = ACTIONS(4307), - [anon_sym_DOT_DOT] = ACTIONS(4309), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4307), - [anon_sym_DASH_GT] = ACTIONS(4307), - [anon_sym_end] = ACTIONS(4309), - [anon_sym_LT] = ACTIONS(4309), - [anon_sym_PIPE] = ACTIONS(4309), - [anon_sym_CARET] = ACTIONS(4307), - [anon_sym_GT_GT] = ACTIONS(4307), - [anon_sym_LT_LT] = ACTIONS(4307), - [anon_sym_EQ_EQ] = ACTIONS(4309), - [anon_sym_BANG_EQ] = ACTIONS(4307), - [anon_sym_LT_EQ] = ACTIONS(4309), - [anon_sym_GT] = ACTIONS(4309), - [anon_sym_GT_EQ] = ACTIONS(4307), - [anon_sym_LT_EQ_GT] = ACTIONS(4307), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), - [anon_sym_BANG] = ACTIONS(4309), - [anon_sym_TILDE] = ACTIONS(4307), - [anon_sym_BANG_TILDE] = ACTIONS(4307), - [anon_sym_EQ_TILDE] = ACTIONS(4307), - [anon_sym_AMP_STAR] = ACTIONS(4309), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4307), - [anon_sym_DOT] = ACTIONS(4309), - [anon_sym_with] = ACTIONS(4309), - [anon_sym_yield] = ACTIONS(4309), - [anon_sym_typeof] = ACTIONS(4309), - [anon_sym_sizeof] = ACTIONS(4309), - [anon_sym_instance_sizeof] = ACTIONS(4309), - [anon_sym_offsetof] = ACTIONS(4309), - [sym__constant_segment] = ACTIONS(4307), - [anon_sym_COLON_COLON] = ACTIONS(4307), - [anon_sym___LINE__] = ACTIONS(4309), - [anon_sym___END_LINE__] = ACTIONS(4309), - [anon_sym___FILE__] = ACTIONS(4309), - [anon_sym___DIR__] = ACTIONS(4309), - [sym_special_variable] = ACTIONS(4307), - [sym_identifier_method_call] = ACTIONS(4307), - [sym_instance_var] = ACTIONS(4307), - [sym_class_var] = ACTIONS(4307), - [sym_self] = ACTIONS(4309), - [anon_sym_LPAREN2] = ACTIONS(4307), - [anon_sym_QMARK] = ACTIONS(4307), - [anon_sym_AMP_AMP] = ACTIONS(4307), - [anon_sym_PIPE_PIPE] = ACTIONS(4307), - [anon_sym_do] = ACTIONS(4309), - [anon_sym_begin] = ACTIONS(4309), - [anon_sym_while] = ACTIONS(4309), - [anon_sym_until] = ACTIONS(4309), - [anon_sym_elsif] = ACTIONS(4309), - [anon_sym_else] = ACTIONS(4309), - [anon_sym_when] = ACTIONS(4309), - [anon_sym_case] = ACTIONS(4309), - [anon_sym_in] = ACTIONS(4309), - [sym__line_break] = ACTIONS(4307), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4307), - [sym__start_of_hash_or_tuple] = ACTIONS(4307), - [sym__start_of_named_tuple] = ACTIONS(4307), - [sym__start_of_index_operator] = ACTIONS(4307), - [sym_unary_plus] = ACTIONS(4307), - [sym_unary_minus] = ACTIONS(4307), - [sym_binary_plus] = ACTIONS(4307), - [sym_binary_minus] = ACTIONS(4307), - [sym_unary_wrapping_plus] = ACTIONS(4307), - [sym_unary_wrapping_minus] = ACTIONS(4307), - [sym_binary_wrapping_plus] = ACTIONS(4307), - [sym_binary_wrapping_minus] = ACTIONS(4307), - [sym__unary_star] = ACTIONS(4307), - [sym__binary_star] = ACTIONS(4307), - [sym__unary_double_star] = ACTIONS(4307), - [sym__binary_double_star] = ACTIONS(4307), - [sym__block_ampersand] = ACTIONS(4307), - [sym_binary_ampersand] = ACTIONS(4307), - [sym__beginless_range_operator] = ACTIONS(4307), - [sym__regex_start] = ACTIONS(4307), - [sym__binary_slash] = ACTIONS(4307), - [sym__binary_double_slash] = ACTIONS(4307), - [sym__regular_if_keyword] = ACTIONS(4307), - [sym__modifier_if_keyword] = ACTIONS(4307), - [sym__regular_unless_keyword] = ACTIONS(4307), - [sym__modifier_unless_keyword] = ACTIONS(4307), - [sym__modifier_rescue_keyword] = ACTIONS(4307), - [sym__modifier_ensure_keyword] = ACTIONS(4307), - [sym__modulo_operator] = ACTIONS(4307), - [sym__string_literal_start] = ACTIONS(4307), - [sym__string_percent_literal_start] = ACTIONS(4307), - [sym__command_percent_literal_start] = ACTIONS(4307), - [sym__string_array_percent_literal_start] = ACTIONS(4307), - [sym__symbol_array_percent_literal_start] = ACTIONS(4307), - [sym__regex_percent_literal_start] = ACTIONS(4307), - [sym_heredoc_start] = ACTIONS(4307), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4307), + [ts_builtin_sym_end] = ACTIONS(3267), + [sym_identifier] = ACTIONS(3269), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym_RPAREN] = ACTIONS(3267), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [aux_sym_integer_token2] = ACTIONS(3269), + [aux_sym_float_token2] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3267), + [sym_operator_symbol] = ACTIONS(3267), + [sym_unquoted_symbol] = ACTIONS(3267), + [anon_sym_COLON_DQUOTE] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3267), + [anon_sym_end] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3267), + [anon_sym_GT_GT] = ACTIONS(3267), + [anon_sym_LT_LT] = ACTIONS(3267), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ_GT] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_AMP_STAR] = ACTIONS(3269), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3269), + [anon_sym_instance_sizeof] = ACTIONS(3269), + [anon_sym_offsetof] = ACTIONS(3269), + [sym__constant_segment] = ACTIONS(3267), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym___LINE__] = ACTIONS(3269), + [anon_sym___END_LINE__] = ACTIONS(3269), + [anon_sym___FILE__] = ACTIONS(3269), + [anon_sym___DIR__] = ACTIONS(3269), + [sym_special_variable] = ACTIONS(3267), + [sym_identifier_method_call] = ACTIONS(3267), + [sym_instance_var] = ACTIONS(3267), + [sym_class_var] = ACTIONS(3267), + [sym_self] = ACTIONS(3269), + [anon_sym_LPAREN2] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3267), + [anon_sym_PIPE_PIPE] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_begin] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_until] = ACTIONS(3269), + [anon_sym_elsif] = ACTIONS(3269), + [anon_sym_else] = ACTIONS(3269), + [anon_sym_when] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [anon_sym_in] = ACTIONS(3269), + [sym__line_break] = ACTIONS(3267), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3267), + [sym__start_of_hash_or_tuple] = ACTIONS(3267), + [sym__start_of_named_tuple] = ACTIONS(3267), + [sym__start_of_index_operator] = ACTIONS(3267), + [sym_unary_plus] = ACTIONS(3267), + [sym_unary_minus] = ACTIONS(3267), + [sym_binary_plus] = ACTIONS(3267), + [sym_binary_minus] = ACTIONS(3267), + [sym_unary_wrapping_plus] = ACTIONS(3267), + [sym_unary_wrapping_minus] = ACTIONS(3267), + [sym_binary_wrapping_plus] = ACTIONS(3267), + [sym_binary_wrapping_minus] = ACTIONS(3267), + [sym__unary_star] = ACTIONS(3267), + [sym__binary_star] = ACTIONS(3267), + [sym__unary_double_star] = ACTIONS(3267), + [sym__binary_double_star] = ACTIONS(3267), + [sym__block_ampersand] = ACTIONS(3267), + [sym_binary_ampersand] = ACTIONS(3267), + [sym__beginless_range_operator] = ACTIONS(3267), + [sym__regex_start] = ACTIONS(3267), + [sym__binary_slash] = ACTIONS(3267), + [sym__binary_double_slash] = ACTIONS(3267), + [sym__regular_if_keyword] = ACTIONS(3267), + [sym__modifier_if_keyword] = ACTIONS(3267), + [sym__regular_unless_keyword] = ACTIONS(3267), + [sym__modifier_unless_keyword] = ACTIONS(3267), + [sym__modifier_rescue_keyword] = ACTIONS(3267), + [sym__modifier_ensure_keyword] = ACTIONS(3267), + [sym__modulo_operator] = ACTIONS(3267), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3267), + [sym__command_percent_literal_start] = ACTIONS(3267), + [sym__string_array_percent_literal_start] = ACTIONS(3267), + [sym__symbol_array_percent_literal_start] = ACTIONS(3267), + [sym__regex_percent_literal_start] = ACTIONS(3267), + [sym_heredoc_start] = ACTIONS(3267), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3267), }, [1954] = { [sym_heredoc_body] = STATE(1954), - [sym_identifier] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4293), - [sym_true] = ACTIONS(4293), - [sym_false] = ACTIONS(4293), - [aux_sym_integer_token2] = ACTIONS(4293), - [aux_sym_float_token2] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4291), - [sym_operator_symbol] = ACTIONS(4291), - [sym_unquoted_symbol] = ACTIONS(4291), - [anon_sym_COLON_DQUOTE] = ACTIONS(4291), - [anon_sym_BQUOTE] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), - [anon_sym_DASH_GT] = ACTIONS(4291), - [anon_sym_end] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_PIPE] = ACTIONS(4293), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_GT_GT] = ACTIONS(4291), - [anon_sym_LT_LT] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ_GT] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4293), - [anon_sym_TILDE] = ACTIONS(4291), - [anon_sym_BANG_TILDE] = ACTIONS(4291), - [anon_sym_EQ_TILDE] = ACTIONS(4291), - [anon_sym_AMP_STAR] = ACTIONS(4293), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_EQ] = ACTIONS(4311), - [anon_sym_with] = ACTIONS(4293), - [anon_sym_yield] = ACTIONS(4293), - [anon_sym_typeof] = ACTIONS(4293), - [anon_sym_sizeof] = ACTIONS(4293), - [anon_sym_instance_sizeof] = ACTIONS(4293), - [anon_sym_offsetof] = ACTIONS(4293), - [sym__constant_segment] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym___LINE__] = ACTIONS(4293), - [anon_sym___END_LINE__] = ACTIONS(4293), - [anon_sym___FILE__] = ACTIONS(4293), - [anon_sym___DIR__] = ACTIONS(4293), - [sym_special_variable] = ACTIONS(4291), - [sym_identifier_method_call] = ACTIONS(4291), - [sym_instance_var] = ACTIONS(4291), - [sym_class_var] = ACTIONS(4291), - [sym_self] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4291), - [anon_sym_QMARK] = ACTIONS(4293), - [anon_sym_QMARK2] = ACTIONS(4313), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_do] = ACTIONS(4293), - [anon_sym_begin] = ACTIONS(4293), - [anon_sym_while] = ACTIONS(4293), - [anon_sym_until] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4293), - [anon_sym_case] = ACTIONS(4293), - [sym__line_break] = ACTIONS(4291), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4291), - [sym__start_of_hash_or_tuple] = ACTIONS(4291), - [sym__start_of_named_tuple] = ACTIONS(4291), - [sym__start_of_index_operator] = ACTIONS(4291), - [sym_unary_plus] = ACTIONS(4291), - [sym_unary_minus] = ACTIONS(4291), - [sym_binary_plus] = ACTIONS(4291), - [sym_binary_minus] = ACTIONS(4291), - [sym_unary_wrapping_plus] = ACTIONS(4291), - [sym_unary_wrapping_minus] = ACTIONS(4291), - [sym_binary_wrapping_plus] = ACTIONS(4291), - [sym_binary_wrapping_minus] = ACTIONS(4291), - [sym__unary_star] = ACTIONS(4291), - [sym__binary_star] = ACTIONS(4291), - [sym__unary_double_star] = ACTIONS(4291), - [sym__binary_double_star] = ACTIONS(4291), - [sym__block_ampersand] = ACTIONS(4291), - [sym_binary_ampersand] = ACTIONS(4291), - [sym__beginless_range_operator] = ACTIONS(4291), - [sym__regex_start] = ACTIONS(4291), - [sym__binary_slash] = ACTIONS(4291), - [sym__binary_double_slash] = ACTIONS(4291), - [sym__regular_if_keyword] = ACTIONS(4291), - [sym__modifier_if_keyword] = ACTIONS(4291), - [sym__regular_unless_keyword] = ACTIONS(4291), - [sym__modifier_unless_keyword] = ACTIONS(4291), - [sym__regular_rescue_keyword] = ACTIONS(4291), - [sym__modifier_rescue_keyword] = ACTIONS(4291), - [sym__regular_ensure_keyword] = ACTIONS(4291), - [sym__modifier_ensure_keyword] = ACTIONS(4291), - [sym__modulo_operator] = ACTIONS(4291), - [sym__string_literal_start] = ACTIONS(4291), - [sym__string_percent_literal_start] = ACTIONS(4291), - [sym__command_percent_literal_start] = ACTIONS(4291), - [sym__string_array_percent_literal_start] = ACTIONS(4291), - [sym__symbol_array_percent_literal_start] = ACTIONS(4291), - [sym__regex_percent_literal_start] = ACTIONS(4291), - [sym_heredoc_start] = ACTIONS(4291), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4291), + [sym_identifier] = ACTIONS(4330), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4330), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4330), + [sym_true] = ACTIONS(4330), + [sym_false] = ACTIONS(4330), + [aux_sym_integer_token2] = ACTIONS(4330), + [aux_sym_float_token2] = ACTIONS(4328), + [anon_sym_SQUOTE] = ACTIONS(4328), + [sym_operator_symbol] = ACTIONS(4328), + [sym_unquoted_symbol] = ACTIONS(4328), + [anon_sym_COLON_DQUOTE] = ACTIONS(4328), + [anon_sym_BQUOTE] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_DOT_DOT] = ACTIONS(4330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4328), + [anon_sym_DASH_GT] = ACTIONS(4328), + [anon_sym_end] = ACTIONS(4330), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym_PIPE] = ACTIONS(4330), + [anon_sym_CARET] = ACTIONS(4328), + [anon_sym_GT_GT] = ACTIONS(4328), + [anon_sym_LT_LT] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4330), + [anon_sym_BANG_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4330), + [anon_sym_GT] = ACTIONS(4330), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ_GT] = ACTIONS(4328), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4330), + [anon_sym_TILDE] = ACTIONS(4328), + [anon_sym_BANG_TILDE] = ACTIONS(4328), + [anon_sym_EQ_TILDE] = ACTIONS(4328), + [anon_sym_AMP_STAR] = ACTIONS(4330), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4328), + [anon_sym_DOT] = ACTIONS(4330), + [anon_sym_EQ] = ACTIONS(4348), + [anon_sym_with] = ACTIONS(4330), + [anon_sym_yield] = ACTIONS(4330), + [anon_sym_typeof] = ACTIONS(4330), + [anon_sym_sizeof] = ACTIONS(4330), + [anon_sym_instance_sizeof] = ACTIONS(4330), + [anon_sym_offsetof] = ACTIONS(4330), + [sym__constant_segment] = ACTIONS(4328), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym___LINE__] = ACTIONS(4330), + [anon_sym___END_LINE__] = ACTIONS(4330), + [anon_sym___FILE__] = ACTIONS(4330), + [anon_sym___DIR__] = ACTIONS(4330), + [sym_special_variable] = ACTIONS(4328), + [sym_identifier_method_call] = ACTIONS(4328), + [sym_instance_var] = ACTIONS(4328), + [sym_class_var] = ACTIONS(4328), + [sym_self] = ACTIONS(4330), + [anon_sym_LPAREN2] = ACTIONS(4328), + [anon_sym_QMARK] = ACTIONS(4330), + [anon_sym_QMARK2] = ACTIONS(4350), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_do] = ACTIONS(4330), + [anon_sym_begin] = ACTIONS(4330), + [anon_sym_while] = ACTIONS(4330), + [anon_sym_until] = ACTIONS(4330), + [anon_sym_else] = ACTIONS(4330), + [anon_sym_case] = ACTIONS(4330), + [anon_sym_select] = ACTIONS(4330), + [sym__line_break] = ACTIONS(4328), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4328), + [sym__start_of_hash_or_tuple] = ACTIONS(4328), + [sym__start_of_named_tuple] = ACTIONS(4328), + [sym__start_of_index_operator] = ACTIONS(4328), + [sym_unary_plus] = ACTIONS(4328), + [sym_unary_minus] = ACTIONS(4328), + [sym_binary_plus] = ACTIONS(4328), + [sym_binary_minus] = ACTIONS(4328), + [sym_unary_wrapping_plus] = ACTIONS(4328), + [sym_unary_wrapping_minus] = ACTIONS(4328), + [sym_binary_wrapping_plus] = ACTIONS(4328), + [sym_binary_wrapping_minus] = ACTIONS(4328), + [sym__unary_star] = ACTIONS(4328), + [sym__binary_star] = ACTIONS(4328), + [sym__unary_double_star] = ACTIONS(4328), + [sym__binary_double_star] = ACTIONS(4328), + [sym__block_ampersand] = ACTIONS(4328), + [sym_binary_ampersand] = ACTIONS(4328), + [sym__beginless_range_operator] = ACTIONS(4328), + [sym__regex_start] = ACTIONS(4328), + [sym__binary_slash] = ACTIONS(4328), + [sym__binary_double_slash] = ACTIONS(4328), + [sym__regular_if_keyword] = ACTIONS(4328), + [sym__modifier_if_keyword] = ACTIONS(4328), + [sym__regular_unless_keyword] = ACTIONS(4328), + [sym__modifier_unless_keyword] = ACTIONS(4328), + [sym__regular_rescue_keyword] = ACTIONS(4328), + [sym__modifier_rescue_keyword] = ACTIONS(4328), + [sym__regular_ensure_keyword] = ACTIONS(4328), + [sym__modifier_ensure_keyword] = ACTIONS(4328), + [sym__modulo_operator] = ACTIONS(4328), + [sym__string_literal_start] = ACTIONS(4328), + [sym__string_percent_literal_start] = ACTIONS(4328), + [sym__command_percent_literal_start] = ACTIONS(4328), + [sym__string_array_percent_literal_start] = ACTIONS(4328), + [sym__symbol_array_percent_literal_start] = ACTIONS(4328), + [sym__regex_percent_literal_start] = ACTIONS(4328), + [sym_heredoc_start] = ACTIONS(4328), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4328), }, [1955] = { [sym_heredoc_body] = STATE(1955), - [sym_identifier] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4293), - [sym_true] = ACTIONS(4293), - [sym_false] = ACTIONS(4293), - [aux_sym_integer_token2] = ACTIONS(4293), - [aux_sym_float_token2] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4291), - [sym_operator_symbol] = ACTIONS(4291), - [sym_unquoted_symbol] = ACTIONS(4291), - [anon_sym_COLON_DQUOTE] = ACTIONS(4291), - [anon_sym_BQUOTE] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), - [anon_sym_DASH_GT] = ACTIONS(4291), - [anon_sym_end] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_PIPE] = ACTIONS(4293), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_GT_GT] = ACTIONS(4291), - [anon_sym_LT_LT] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ_GT] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4293), - [anon_sym_TILDE] = ACTIONS(4291), - [anon_sym_BANG_TILDE] = ACTIONS(4291), - [anon_sym_EQ_TILDE] = ACTIONS(4291), - [anon_sym_AMP_STAR] = ACTIONS(4293), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_EQ] = ACTIONS(4315), - [anon_sym_with] = ACTIONS(4293), - [anon_sym_yield] = ACTIONS(4293), - [anon_sym_typeof] = ACTIONS(4293), - [anon_sym_sizeof] = ACTIONS(4293), - [anon_sym_instance_sizeof] = ACTIONS(4293), - [anon_sym_offsetof] = ACTIONS(4293), - [sym__constant_segment] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym___LINE__] = ACTIONS(4293), - [anon_sym___END_LINE__] = ACTIONS(4293), - [anon_sym___FILE__] = ACTIONS(4293), - [anon_sym___DIR__] = ACTIONS(4293), - [sym_special_variable] = ACTIONS(4291), - [sym_identifier_method_call] = ACTIONS(4291), - [sym_instance_var] = ACTIONS(4291), - [sym_class_var] = ACTIONS(4291), - [sym_self] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4291), - [anon_sym_QMARK] = ACTIONS(4293), - [anon_sym_QMARK2] = ACTIONS(4317), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_do] = ACTIONS(4293), - [anon_sym_begin] = ACTIONS(4293), - [anon_sym_while] = ACTIONS(4293), - [anon_sym_until] = ACTIONS(4293), - [anon_sym_case] = ACTIONS(4293), - [sym__line_break] = ACTIONS(4291), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4291), - [sym__start_of_hash_or_tuple] = ACTIONS(4291), - [sym__start_of_named_tuple] = ACTIONS(4291), - [sym__start_of_index_operator] = ACTIONS(4291), - [sym_unary_plus] = ACTIONS(4291), - [sym_unary_minus] = ACTIONS(4291), - [sym_binary_plus] = ACTIONS(4291), - [sym_binary_minus] = ACTIONS(4291), - [sym_unary_wrapping_plus] = ACTIONS(4291), - [sym_unary_wrapping_minus] = ACTIONS(4291), - [sym_binary_wrapping_plus] = ACTIONS(4291), - [sym_binary_wrapping_minus] = ACTIONS(4291), - [sym__unary_star] = ACTIONS(4291), - [sym__binary_star] = ACTIONS(4291), - [sym__unary_double_star] = ACTIONS(4291), - [sym__binary_double_star] = ACTIONS(4291), - [sym__block_ampersand] = ACTIONS(4291), - [sym_binary_ampersand] = ACTIONS(4291), - [sym__beginless_range_operator] = ACTIONS(4291), - [sym__regex_start] = ACTIONS(4291), - [sym__binary_slash] = ACTIONS(4291), - [sym__binary_double_slash] = ACTIONS(4291), - [sym__regular_if_keyword] = ACTIONS(4291), - [sym__modifier_if_keyword] = ACTIONS(4291), - [sym__regular_unless_keyword] = ACTIONS(4291), - [sym__modifier_unless_keyword] = ACTIONS(4291), - [sym__modifier_rescue_keyword] = ACTIONS(4291), - [sym__regular_ensure_keyword] = ACTIONS(4291), - [sym__modifier_ensure_keyword] = ACTIONS(4291), - [sym__modulo_operator] = ACTIONS(4291), - [sym__string_literal_start] = ACTIONS(4291), - [sym__string_percent_literal_start] = ACTIONS(4291), - [sym__command_percent_literal_start] = ACTIONS(4291), - [sym__string_array_percent_literal_start] = ACTIONS(4291), - [sym__symbol_array_percent_literal_start] = ACTIONS(4291), - [sym__regex_percent_literal_start] = ACTIONS(4291), - [sym_heredoc_start] = ACTIONS(4291), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4291), + [sym_identifier] = ACTIONS(4346), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4346), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4346), + [sym_true] = ACTIONS(4346), + [sym_false] = ACTIONS(4346), + [aux_sym_integer_token2] = ACTIONS(4346), + [aux_sym_float_token2] = ACTIONS(4344), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym_operator_symbol] = ACTIONS(4344), + [sym_unquoted_symbol] = ACTIONS(4344), + [anon_sym_COLON_DQUOTE] = ACTIONS(4344), + [anon_sym_BQUOTE] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_DOT_DOT] = ACTIONS(4346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4344), + [anon_sym_DASH_GT] = ACTIONS(4344), + [anon_sym_end] = ACTIONS(4346), + [anon_sym_LT] = ACTIONS(4346), + [anon_sym_PIPE] = ACTIONS(4346), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_GT_GT] = ACTIONS(4344), + [anon_sym_LT_LT] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4346), + [anon_sym_BANG_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4346), + [anon_sym_GT] = ACTIONS(4346), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ_GT] = ACTIONS(4344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4346), + [anon_sym_TILDE] = ACTIONS(4344), + [anon_sym_BANG_TILDE] = ACTIONS(4344), + [anon_sym_EQ_TILDE] = ACTIONS(4344), + [anon_sym_AMP_STAR] = ACTIONS(4346), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4346), + [anon_sym_with] = ACTIONS(4346), + [anon_sym_yield] = ACTIONS(4346), + [anon_sym_typeof] = ACTIONS(4346), + [anon_sym_sizeof] = ACTIONS(4346), + [anon_sym_instance_sizeof] = ACTIONS(4346), + [anon_sym_offsetof] = ACTIONS(4346), + [sym__constant_segment] = ACTIONS(4344), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym___LINE__] = ACTIONS(4346), + [anon_sym___END_LINE__] = ACTIONS(4346), + [anon_sym___FILE__] = ACTIONS(4346), + [anon_sym___DIR__] = ACTIONS(4346), + [sym_special_variable] = ACTIONS(4344), + [sym_identifier_method_call] = ACTIONS(4344), + [sym_instance_var] = ACTIONS(4344), + [sym_class_var] = ACTIONS(4344), + [sym_self] = ACTIONS(4346), + [anon_sym_LPAREN2] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_do] = ACTIONS(4346), + [anon_sym_begin] = ACTIONS(4346), + [anon_sym_while] = ACTIONS(4346), + [anon_sym_until] = ACTIONS(4346), + [anon_sym_else] = ACTIONS(4346), + [anon_sym_case] = ACTIONS(4346), + [anon_sym_select] = ACTIONS(4346), + [sym__line_break] = ACTIONS(4344), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4344), + [sym__start_of_hash_or_tuple] = ACTIONS(4344), + [sym__start_of_named_tuple] = ACTIONS(4344), + [sym__start_of_index_operator] = ACTIONS(4344), + [sym_unary_plus] = ACTIONS(4344), + [sym_unary_minus] = ACTIONS(4344), + [sym_binary_plus] = ACTIONS(4344), + [sym_binary_minus] = ACTIONS(4344), + [sym_unary_wrapping_plus] = ACTIONS(4344), + [sym_unary_wrapping_minus] = ACTIONS(4344), + [sym_binary_wrapping_plus] = ACTIONS(4344), + [sym_binary_wrapping_minus] = ACTIONS(4344), + [sym__unary_star] = ACTIONS(4344), + [sym__binary_star] = ACTIONS(4344), + [sym__unary_double_star] = ACTIONS(4344), + [sym__binary_double_star] = ACTIONS(4344), + [sym__block_ampersand] = ACTIONS(4344), + [sym_binary_ampersand] = ACTIONS(4344), + [sym__beginless_range_operator] = ACTIONS(4344), + [sym__regex_start] = ACTIONS(4344), + [sym__binary_slash] = ACTIONS(4344), + [sym__binary_double_slash] = ACTIONS(4344), + [sym__regular_if_keyword] = ACTIONS(4344), + [sym__modifier_if_keyword] = ACTIONS(4344), + [sym__regular_unless_keyword] = ACTIONS(4344), + [sym__modifier_unless_keyword] = ACTIONS(4344), + [sym__regular_rescue_keyword] = ACTIONS(4344), + [sym__modifier_rescue_keyword] = ACTIONS(4344), + [sym__regular_ensure_keyword] = ACTIONS(4344), + [sym__modifier_ensure_keyword] = ACTIONS(4344), + [sym__modulo_operator] = ACTIONS(4344), + [sym__string_literal_start] = ACTIONS(4344), + [sym__string_percent_literal_start] = ACTIONS(4344), + [sym__command_percent_literal_start] = ACTIONS(4344), + [sym__string_array_percent_literal_start] = ACTIONS(4344), + [sym__symbol_array_percent_literal_start] = ACTIONS(4344), + [sym__regex_percent_literal_start] = ACTIONS(4344), + [sym_heredoc_start] = ACTIONS(4344), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4344), }, [1956] = { [sym_heredoc_body] = STATE(1956), - [sym_identifier] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3238), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [sym_operator_symbol] = ACTIONS(3236), - [sym_unquoted_symbol] = ACTIONS(3236), - [anon_sym_COLON_DQUOTE] = ACTIONS(3236), - [anon_sym_BQUOTE] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_COMMA] = ACTIONS(3236), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_DASH_GT] = ACTIONS(3236), - [anon_sym_end] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3236), - [anon_sym_GT_GT] = ACTIONS(3236), - [anon_sym_LT_LT] = ACTIONS(3236), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ_GT] = ACTIONS(3236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG_TILDE] = ACTIONS(3236), - [anon_sym_EQ_TILDE] = ACTIONS(3236), - [anon_sym_AMP_STAR] = ACTIONS(3238), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3236), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym_instance_sizeof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [sym__constant_segment] = ACTIONS(3236), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym___LINE__] = ACTIONS(3238), - [anon_sym___END_LINE__] = ACTIONS(3238), - [anon_sym___FILE__] = ACTIONS(3238), - [anon_sym___DIR__] = ACTIONS(3238), - [sym_special_variable] = ACTIONS(3236), - [sym_identifier_method_call] = ACTIONS(3236), - [sym_instance_var] = ACTIONS(3236), - [sym_class_var] = ACTIONS(3236), - [sym_self] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3236), - [anon_sym_PIPE_PIPE] = ACTIONS(3236), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_begin] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_until] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [sym__line_break] = ACTIONS(3236), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3236), - [sym__start_of_hash_or_tuple] = ACTIONS(3236), - [sym__start_of_named_tuple] = ACTIONS(3236), - [sym__start_of_index_operator] = ACTIONS(3236), - [sym_unary_plus] = ACTIONS(3236), - [sym_unary_minus] = ACTIONS(3236), - [sym_binary_plus] = ACTIONS(3236), - [sym_binary_minus] = ACTIONS(3236), - [sym_unary_wrapping_plus] = ACTIONS(3236), - [sym_unary_wrapping_minus] = ACTIONS(3236), - [sym_binary_wrapping_plus] = ACTIONS(3236), - [sym_binary_wrapping_minus] = ACTIONS(3236), - [sym__unary_star] = ACTIONS(3236), - [sym__binary_star] = ACTIONS(3236), - [sym__unary_double_star] = ACTIONS(3236), - [sym__binary_double_star] = ACTIONS(3236), - [sym__block_ampersand] = ACTIONS(3236), - [sym_binary_ampersand] = ACTIONS(3236), - [sym__beginless_range_operator] = ACTIONS(3236), - [sym__regex_start] = ACTIONS(3236), - [sym__binary_slash] = ACTIONS(3236), - [sym__binary_double_slash] = ACTIONS(3236), - [sym__regular_if_keyword] = ACTIONS(3236), - [sym__modifier_if_keyword] = ACTIONS(3236), - [sym__regular_unless_keyword] = ACTIONS(3236), - [sym__modifier_unless_keyword] = ACTIONS(3236), - [sym__regular_rescue_keyword] = ACTIONS(3236), - [sym__modifier_rescue_keyword] = ACTIONS(3236), - [sym__regular_ensure_keyword] = ACTIONS(3236), - [sym__modifier_ensure_keyword] = ACTIONS(3236), - [sym__modulo_operator] = ACTIONS(3236), - [sym__string_literal_start] = ACTIONS(3236), - [sym__string_percent_literal_start] = ACTIONS(3236), - [sym__command_percent_literal_start] = ACTIONS(3236), - [sym__string_array_percent_literal_start] = ACTIONS(3236), - [sym__symbol_array_percent_literal_start] = ACTIONS(3236), - [sym__regex_percent_literal_start] = ACTIONS(3236), - [sym_heredoc_start] = ACTIONS(3236), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3236), + [sym_identifier] = ACTIONS(4330), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4330), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4330), + [sym_true] = ACTIONS(4330), + [sym_false] = ACTIONS(4330), + [aux_sym_integer_token2] = ACTIONS(4330), + [aux_sym_float_token2] = ACTIONS(4328), + [anon_sym_SQUOTE] = ACTIONS(4328), + [sym_operator_symbol] = ACTIONS(4328), + [sym_unquoted_symbol] = ACTIONS(4328), + [anon_sym_COLON_DQUOTE] = ACTIONS(4328), + [anon_sym_BQUOTE] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_DOT_DOT] = ACTIONS(4330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4328), + [anon_sym_DASH_GT] = ACTIONS(4328), + [anon_sym_end] = ACTIONS(4330), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym_PIPE] = ACTIONS(4330), + [anon_sym_CARET] = ACTIONS(4328), + [anon_sym_GT_GT] = ACTIONS(4328), + [anon_sym_LT_LT] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4330), + [anon_sym_BANG_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4330), + [anon_sym_GT] = ACTIONS(4330), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ_GT] = ACTIONS(4328), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4330), + [anon_sym_TILDE] = ACTIONS(4328), + [anon_sym_BANG_TILDE] = ACTIONS(4328), + [anon_sym_EQ_TILDE] = ACTIONS(4328), + [anon_sym_AMP_STAR] = ACTIONS(4330), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4328), + [anon_sym_DOT] = ACTIONS(4330), + [anon_sym_EQ] = ACTIONS(4352), + [anon_sym_with] = ACTIONS(4330), + [anon_sym_yield] = ACTIONS(4330), + [anon_sym_typeof] = ACTIONS(4330), + [anon_sym_sizeof] = ACTIONS(4330), + [anon_sym_instance_sizeof] = ACTIONS(4330), + [anon_sym_offsetof] = ACTIONS(4330), + [sym__constant_segment] = ACTIONS(4328), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym___LINE__] = ACTIONS(4330), + [anon_sym___END_LINE__] = ACTIONS(4330), + [anon_sym___FILE__] = ACTIONS(4330), + [anon_sym___DIR__] = ACTIONS(4330), + [sym_special_variable] = ACTIONS(4328), + [sym_identifier_method_call] = ACTIONS(4328), + [sym_instance_var] = ACTIONS(4328), + [sym_class_var] = ACTIONS(4328), + [sym_self] = ACTIONS(4330), + [anon_sym_LPAREN2] = ACTIONS(4328), + [anon_sym_QMARK] = ACTIONS(4330), + [anon_sym_QMARK2] = ACTIONS(4354), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_do] = ACTIONS(4330), + [anon_sym_begin] = ACTIONS(4330), + [anon_sym_while] = ACTIONS(4330), + [anon_sym_until] = ACTIONS(4330), + [anon_sym_case] = ACTIONS(4330), + [anon_sym_select] = ACTIONS(4330), + [sym__line_break] = ACTIONS(4328), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4328), + [sym__start_of_hash_or_tuple] = ACTIONS(4328), + [sym__start_of_named_tuple] = ACTIONS(4328), + [sym__start_of_index_operator] = ACTIONS(4328), + [sym_unary_plus] = ACTIONS(4328), + [sym_unary_minus] = ACTIONS(4328), + [sym_binary_plus] = ACTIONS(4328), + [sym_binary_minus] = ACTIONS(4328), + [sym_unary_wrapping_plus] = ACTIONS(4328), + [sym_unary_wrapping_minus] = ACTIONS(4328), + [sym_binary_wrapping_plus] = ACTIONS(4328), + [sym_binary_wrapping_minus] = ACTIONS(4328), + [sym__unary_star] = ACTIONS(4328), + [sym__binary_star] = ACTIONS(4328), + [sym__unary_double_star] = ACTIONS(4328), + [sym__binary_double_star] = ACTIONS(4328), + [sym__block_ampersand] = ACTIONS(4328), + [sym_binary_ampersand] = ACTIONS(4328), + [sym__beginless_range_operator] = ACTIONS(4328), + [sym__regex_start] = ACTIONS(4328), + [sym__binary_slash] = ACTIONS(4328), + [sym__binary_double_slash] = ACTIONS(4328), + [sym__regular_if_keyword] = ACTIONS(4328), + [sym__modifier_if_keyword] = ACTIONS(4328), + [sym__regular_unless_keyword] = ACTIONS(4328), + [sym__modifier_unless_keyword] = ACTIONS(4328), + [sym__modifier_rescue_keyword] = ACTIONS(4328), + [sym__regular_ensure_keyword] = ACTIONS(4328), + [sym__modifier_ensure_keyword] = ACTIONS(4328), + [sym__modulo_operator] = ACTIONS(4328), + [sym__string_literal_start] = ACTIONS(4328), + [sym__string_percent_literal_start] = ACTIONS(4328), + [sym__command_percent_literal_start] = ACTIONS(4328), + [sym__string_array_percent_literal_start] = ACTIONS(4328), + [sym__symbol_array_percent_literal_start] = ACTIONS(4328), + [sym__regex_percent_literal_start] = ACTIONS(4328), + [sym_heredoc_start] = ACTIONS(4328), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4328), }, [1957] = { [sym_heredoc_body] = STATE(1957), - [sym_identifier] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [anon_sym_RPAREN] = ACTIONS(4291), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4293), - [sym_true] = ACTIONS(4293), - [sym_false] = ACTIONS(4293), - [aux_sym_integer_token2] = ACTIONS(4293), - [aux_sym_float_token2] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4291), - [anon_sym_RBRACE] = ACTIONS(4291), - [sym_operator_symbol] = ACTIONS(4291), - [sym_unquoted_symbol] = ACTIONS(4291), - [anon_sym_COLON_DQUOTE] = ACTIONS(4291), - [anon_sym_BQUOTE] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_RBRACK] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), - [anon_sym_DASH_GT] = ACTIONS(4291), - [anon_sym_end] = ACTIONS(4293), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_PIPE] = ACTIONS(4293), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_GT_GT] = ACTIONS(4291), - [anon_sym_LT_LT] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ_GT] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4293), - [anon_sym_TILDE] = ACTIONS(4291), - [anon_sym_BANG_TILDE] = ACTIONS(4291), - [anon_sym_EQ_TILDE] = ACTIONS(4291), - [anon_sym_AMP_STAR] = ACTIONS(4293), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_EQ] = ACTIONS(4319), - [anon_sym_with] = ACTIONS(4293), - [anon_sym_yield] = ACTIONS(4293), - [anon_sym_typeof] = ACTIONS(4293), - [anon_sym_sizeof] = ACTIONS(4293), - [anon_sym_instance_sizeof] = ACTIONS(4293), - [anon_sym_offsetof] = ACTIONS(4293), - [sym__constant_segment] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym___LINE__] = ACTIONS(4293), - [anon_sym___END_LINE__] = ACTIONS(4293), - [anon_sym___FILE__] = ACTIONS(4293), - [anon_sym___DIR__] = ACTIONS(4293), - [sym_special_variable] = ACTIONS(4291), - [sym_identifier_method_call] = ACTIONS(4291), - [sym_instance_var] = ACTIONS(4291), - [sym_class_var] = ACTIONS(4291), - [sym_self] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4291), - [anon_sym_QMARK] = ACTIONS(4293), - [anon_sym_QMARK2] = ACTIONS(4321), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_COLON2] = ACTIONS(4293), - [anon_sym_do] = ACTIONS(4293), - [anon_sym_begin] = ACTIONS(4293), - [anon_sym_while] = ACTIONS(4293), - [anon_sym_until] = ACTIONS(4293), - [anon_sym_else] = ACTIONS(4293), - [anon_sym_when] = ACTIONS(4293), - [anon_sym_case] = ACTIONS(4293), - [anon_sym_in] = ACTIONS(4293), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4291), - [sym__start_of_hash_or_tuple] = ACTIONS(4291), - [sym__start_of_named_tuple] = ACTIONS(4291), - [sym__start_of_index_operator] = ACTIONS(4291), - [sym_unary_plus] = ACTIONS(4291), - [sym_unary_minus] = ACTIONS(4291), - [sym_binary_plus] = ACTIONS(4291), - [sym_binary_minus] = ACTIONS(4291), - [sym_unary_wrapping_plus] = ACTIONS(4291), - [sym_unary_wrapping_minus] = ACTIONS(4291), - [sym_binary_wrapping_plus] = ACTIONS(4291), - [sym_binary_wrapping_minus] = ACTIONS(4291), - [sym__unary_star] = ACTIONS(4291), - [sym__binary_star] = ACTIONS(4291), - [sym__unary_double_star] = ACTIONS(4291), - [sym__binary_double_star] = ACTIONS(4291), - [sym__block_ampersand] = ACTIONS(4291), - [sym_binary_ampersand] = ACTIONS(4291), - [sym__beginless_range_operator] = ACTIONS(4291), - [sym__regex_start] = ACTIONS(4291), - [sym__binary_slash] = ACTIONS(4291), - [sym__binary_double_slash] = ACTIONS(4291), - [sym__regular_if_keyword] = ACTIONS(4291), - [sym__regular_unless_keyword] = ACTIONS(4291), - [sym__modulo_operator] = ACTIONS(4291), - [sym__string_literal_start] = ACTIONS(4291), - [sym__string_percent_literal_start] = ACTIONS(4291), - [sym__command_percent_literal_start] = ACTIONS(4291), - [sym__string_array_percent_literal_start] = ACTIONS(4291), - [sym__symbol_array_percent_literal_start] = ACTIONS(4291), - [sym__regex_percent_literal_start] = ACTIONS(4291), - [sym_heredoc_start] = ACTIONS(4291), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4291), + [sym_identifier] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4340), + [anon_sym_LPAREN] = ACTIONS(4342), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4342), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [aux_sym_integer_token2] = ACTIONS(4342), + [aux_sym_float_token2] = ACTIONS(4340), + [anon_sym_SQUOTE] = ACTIONS(4340), + [sym_operator_symbol] = ACTIONS(4340), + [sym_unquoted_symbol] = ACTIONS(4340), + [anon_sym_COLON_DQUOTE] = ACTIONS(4340), + [anon_sym_BQUOTE] = ACTIONS(4340), + [anon_sym_LBRACK] = ACTIONS(4340), + [anon_sym_COMMA] = ACTIONS(4340), + [anon_sym_DOT_DOT] = ACTIONS(4342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4340), + [anon_sym_DASH_GT] = ACTIONS(4340), + [anon_sym_end] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_PIPE] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4340), + [anon_sym_GT_GT] = ACTIONS(4340), + [anon_sym_LT_LT] = ACTIONS(4340), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ] = ACTIONS(4340), + [anon_sym_LT_EQ] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4340), + [anon_sym_LT_EQ_GT] = ACTIONS(4340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4340), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_TILDE] = ACTIONS(4340), + [anon_sym_BANG_TILDE] = ACTIONS(4340), + [anon_sym_EQ_TILDE] = ACTIONS(4340), + [anon_sym_AMP_STAR] = ACTIONS(4342), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4340), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_with] = ACTIONS(4342), + [anon_sym_yield] = ACTIONS(4342), + [anon_sym_typeof] = ACTIONS(4342), + [anon_sym_sizeof] = ACTIONS(4342), + [anon_sym_instance_sizeof] = ACTIONS(4342), + [anon_sym_offsetof] = ACTIONS(4342), + [sym__constant_segment] = ACTIONS(4340), + [anon_sym_COLON_COLON] = ACTIONS(4340), + [anon_sym___LINE__] = ACTIONS(4342), + [anon_sym___END_LINE__] = ACTIONS(4342), + [anon_sym___FILE__] = ACTIONS(4342), + [anon_sym___DIR__] = ACTIONS(4342), + [sym_special_variable] = ACTIONS(4340), + [sym_identifier_method_call] = ACTIONS(4340), + [sym_instance_var] = ACTIONS(4340), + [sym_class_var] = ACTIONS(4340), + [sym_self] = ACTIONS(4342), + [anon_sym_LPAREN2] = ACTIONS(4340), + [anon_sym_QMARK] = ACTIONS(4340), + [anon_sym_AMP_AMP] = ACTIONS(4340), + [anon_sym_PIPE_PIPE] = ACTIONS(4340), + [anon_sym_do] = ACTIONS(4342), + [anon_sym_begin] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_until] = ACTIONS(4342), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_case] = ACTIONS(4342), + [anon_sym_select] = ACTIONS(4342), + [sym__line_break] = ACTIONS(4340), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4340), + [sym__start_of_hash_or_tuple] = ACTIONS(4340), + [sym__start_of_named_tuple] = ACTIONS(4340), + [sym__start_of_index_operator] = ACTIONS(4340), + [sym_unary_plus] = ACTIONS(4340), + [sym_unary_minus] = ACTIONS(4340), + [sym_binary_plus] = ACTIONS(4340), + [sym_binary_minus] = ACTIONS(4340), + [sym_unary_wrapping_plus] = ACTIONS(4340), + [sym_unary_wrapping_minus] = ACTIONS(4340), + [sym_binary_wrapping_plus] = ACTIONS(4340), + [sym_binary_wrapping_minus] = ACTIONS(4340), + [sym__unary_star] = ACTIONS(4340), + [sym__binary_star] = ACTIONS(4340), + [sym__unary_double_star] = ACTIONS(4340), + [sym__binary_double_star] = ACTIONS(4340), + [sym__block_ampersand] = ACTIONS(4340), + [sym_binary_ampersand] = ACTIONS(4340), + [sym__beginless_range_operator] = ACTIONS(4340), + [sym__regex_start] = ACTIONS(4340), + [sym__binary_slash] = ACTIONS(4340), + [sym__binary_double_slash] = ACTIONS(4340), + [sym__regular_if_keyword] = ACTIONS(4340), + [sym__modifier_if_keyword] = ACTIONS(4340), + [sym__regular_unless_keyword] = ACTIONS(4340), + [sym__modifier_unless_keyword] = ACTIONS(4340), + [sym__regular_rescue_keyword] = ACTIONS(4340), + [sym__modifier_rescue_keyword] = ACTIONS(4340), + [sym__regular_ensure_keyword] = ACTIONS(4340), + [sym__modifier_ensure_keyword] = ACTIONS(4340), + [sym__modulo_operator] = ACTIONS(4340), + [sym__string_literal_start] = ACTIONS(4340), + [sym__string_percent_literal_start] = ACTIONS(4340), + [sym__command_percent_literal_start] = ACTIONS(4340), + [sym__string_array_percent_literal_start] = ACTIONS(4340), + [sym__symbol_array_percent_literal_start] = ACTIONS(4340), + [sym__regex_percent_literal_start] = ACTIONS(4340), + [sym_heredoc_start] = ACTIONS(4340), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4340), }, [1958] = { [sym_heredoc_body] = STATE(1958), - [sym_identifier] = ACTIONS(4309), - [anon_sym_SEMI] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4309), - [sym_true] = ACTIONS(4309), - [sym_false] = ACTIONS(4309), - [aux_sym_integer_token2] = ACTIONS(4309), - [aux_sym_float_token2] = ACTIONS(4307), - [anon_sym_SQUOTE] = ACTIONS(4307), - [sym_operator_symbol] = ACTIONS(4307), - [sym_unquoted_symbol] = ACTIONS(4307), - [anon_sym_COLON_DQUOTE] = ACTIONS(4307), - [anon_sym_BQUOTE] = ACTIONS(4307), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_COMMA] = ACTIONS(4307), - [anon_sym_DOT_DOT] = ACTIONS(4309), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4307), - [anon_sym_DASH_GT] = ACTIONS(4307), - [anon_sym_end] = ACTIONS(4309), - [anon_sym_LT] = ACTIONS(4309), - [anon_sym_PIPE] = ACTIONS(4309), - [anon_sym_CARET] = ACTIONS(4307), - [anon_sym_GT_GT] = ACTIONS(4307), - [anon_sym_LT_LT] = ACTIONS(4307), - [anon_sym_EQ_EQ] = ACTIONS(4309), - [anon_sym_BANG_EQ] = ACTIONS(4307), - [anon_sym_LT_EQ] = ACTIONS(4309), - [anon_sym_GT] = ACTIONS(4309), - [anon_sym_GT_EQ] = ACTIONS(4307), - [anon_sym_LT_EQ_GT] = ACTIONS(4307), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), - [anon_sym_BANG] = ACTIONS(4309), - [anon_sym_TILDE] = ACTIONS(4307), - [anon_sym_BANG_TILDE] = ACTIONS(4307), - [anon_sym_EQ_TILDE] = ACTIONS(4307), - [anon_sym_AMP_STAR] = ACTIONS(4309), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4307), - [anon_sym_DOT] = ACTIONS(4309), - [anon_sym_with] = ACTIONS(4309), - [anon_sym_yield] = ACTIONS(4309), - [anon_sym_typeof] = ACTIONS(4309), - [anon_sym_sizeof] = ACTIONS(4309), - [anon_sym_instance_sizeof] = ACTIONS(4309), - [anon_sym_offsetof] = ACTIONS(4309), - [sym__constant_segment] = ACTIONS(4307), - [anon_sym_COLON_COLON] = ACTIONS(4307), - [anon_sym___LINE__] = ACTIONS(4309), - [anon_sym___END_LINE__] = ACTIONS(4309), - [anon_sym___FILE__] = ACTIONS(4309), - [anon_sym___DIR__] = ACTIONS(4309), - [sym_special_variable] = ACTIONS(4307), - [sym_identifier_method_call] = ACTIONS(4307), - [sym_instance_var] = ACTIONS(4307), - [sym_class_var] = ACTIONS(4307), - [sym_self] = ACTIONS(4309), - [anon_sym_LPAREN2] = ACTIONS(4307), - [anon_sym_QMARK] = ACTIONS(4307), - [anon_sym_AMP_AMP] = ACTIONS(4307), - [anon_sym_PIPE_PIPE] = ACTIONS(4307), - [anon_sym_do] = ACTIONS(4309), - [anon_sym_begin] = ACTIONS(4309), - [anon_sym_while] = ACTIONS(4309), - [anon_sym_until] = ACTIONS(4309), - [anon_sym_else] = ACTIONS(4309), - [anon_sym_case] = ACTIONS(4309), - [sym__line_break] = ACTIONS(4307), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4307), - [sym__start_of_hash_or_tuple] = ACTIONS(4307), - [sym__start_of_named_tuple] = ACTIONS(4307), - [sym__start_of_index_operator] = ACTIONS(4307), - [sym_unary_plus] = ACTIONS(4307), - [sym_unary_minus] = ACTIONS(4307), - [sym_binary_plus] = ACTIONS(4307), - [sym_binary_minus] = ACTIONS(4307), - [sym_unary_wrapping_plus] = ACTIONS(4307), - [sym_unary_wrapping_minus] = ACTIONS(4307), - [sym_binary_wrapping_plus] = ACTIONS(4307), - [sym_binary_wrapping_minus] = ACTIONS(4307), - [sym__unary_star] = ACTIONS(4307), - [sym__binary_star] = ACTIONS(4307), - [sym__unary_double_star] = ACTIONS(4307), - [sym__binary_double_star] = ACTIONS(4307), - [sym__block_ampersand] = ACTIONS(4307), - [sym_binary_ampersand] = ACTIONS(4307), - [sym__beginless_range_operator] = ACTIONS(4307), - [sym__regex_start] = ACTIONS(4307), - [sym__binary_slash] = ACTIONS(4307), - [sym__binary_double_slash] = ACTIONS(4307), - [sym__regular_if_keyword] = ACTIONS(4307), - [sym__modifier_if_keyword] = ACTIONS(4307), - [sym__regular_unless_keyword] = ACTIONS(4307), - [sym__modifier_unless_keyword] = ACTIONS(4307), - [sym__regular_rescue_keyword] = ACTIONS(4307), - [sym__modifier_rescue_keyword] = ACTIONS(4307), - [sym__regular_ensure_keyword] = ACTIONS(4307), - [sym__modifier_ensure_keyword] = ACTIONS(4307), - [sym__modulo_operator] = ACTIONS(4307), - [sym__string_literal_start] = ACTIONS(4307), - [sym__string_percent_literal_start] = ACTIONS(4307), - [sym__command_percent_literal_start] = ACTIONS(4307), - [sym__string_array_percent_literal_start] = ACTIONS(4307), - [sym__symbol_array_percent_literal_start] = ACTIONS(4307), - [sym__regex_percent_literal_start] = ACTIONS(4307), - [sym_heredoc_start] = ACTIONS(4307), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4307), + [sym_identifier] = ACTIONS(4330), + [anon_sym_LPAREN] = ACTIONS(4330), + [anon_sym_RPAREN] = ACTIONS(4328), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4330), + [sym_true] = ACTIONS(4330), + [sym_false] = ACTIONS(4330), + [aux_sym_integer_token2] = ACTIONS(4330), + [aux_sym_float_token2] = ACTIONS(4328), + [anon_sym_SQUOTE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4328), + [sym_operator_symbol] = ACTIONS(4328), + [sym_unquoted_symbol] = ACTIONS(4328), + [anon_sym_COLON_DQUOTE] = ACTIONS(4328), + [anon_sym_BQUOTE] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_RBRACK] = ACTIONS(4328), + [anon_sym_DOT_DOT] = ACTIONS(4330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4328), + [anon_sym_DASH_GT] = ACTIONS(4328), + [anon_sym_end] = ACTIONS(4330), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym_PIPE] = ACTIONS(4330), + [anon_sym_CARET] = ACTIONS(4328), + [anon_sym_GT_GT] = ACTIONS(4328), + [anon_sym_LT_LT] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4330), + [anon_sym_BANG_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4330), + [anon_sym_GT] = ACTIONS(4330), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ_GT] = ACTIONS(4328), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4330), + [anon_sym_TILDE] = ACTIONS(4328), + [anon_sym_BANG_TILDE] = ACTIONS(4328), + [anon_sym_EQ_TILDE] = ACTIONS(4328), + [anon_sym_AMP_STAR] = ACTIONS(4330), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4328), + [anon_sym_DOT] = ACTIONS(4330), + [anon_sym_EQ] = ACTIONS(4356), + [anon_sym_with] = ACTIONS(4330), + [anon_sym_yield] = ACTIONS(4330), + [anon_sym_typeof] = ACTIONS(4330), + [anon_sym_sizeof] = ACTIONS(4330), + [anon_sym_instance_sizeof] = ACTIONS(4330), + [anon_sym_offsetof] = ACTIONS(4330), + [sym__constant_segment] = ACTIONS(4328), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym___LINE__] = ACTIONS(4330), + [anon_sym___END_LINE__] = ACTIONS(4330), + [anon_sym___FILE__] = ACTIONS(4330), + [anon_sym___DIR__] = ACTIONS(4330), + [sym_special_variable] = ACTIONS(4328), + [sym_identifier_method_call] = ACTIONS(4328), + [sym_instance_var] = ACTIONS(4328), + [sym_class_var] = ACTIONS(4328), + [sym_self] = ACTIONS(4330), + [anon_sym_LPAREN2] = ACTIONS(4328), + [anon_sym_QMARK] = ACTIONS(4330), + [anon_sym_QMARK2] = ACTIONS(4358), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_COLON2] = ACTIONS(4330), + [anon_sym_do] = ACTIONS(4330), + [anon_sym_begin] = ACTIONS(4330), + [anon_sym_while] = ACTIONS(4330), + [anon_sym_until] = ACTIONS(4330), + [anon_sym_else] = ACTIONS(4330), + [anon_sym_when] = ACTIONS(4330), + [anon_sym_case] = ACTIONS(4330), + [anon_sym_select] = ACTIONS(4330), + [anon_sym_in] = ACTIONS(4330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4328), + [sym__start_of_hash_or_tuple] = ACTIONS(4328), + [sym__start_of_named_tuple] = ACTIONS(4328), + [sym__start_of_index_operator] = ACTIONS(4328), + [sym_unary_plus] = ACTIONS(4328), + [sym_unary_minus] = ACTIONS(4328), + [sym_binary_plus] = ACTIONS(4328), + [sym_binary_minus] = ACTIONS(4328), + [sym_unary_wrapping_plus] = ACTIONS(4328), + [sym_unary_wrapping_minus] = ACTIONS(4328), + [sym_binary_wrapping_plus] = ACTIONS(4328), + [sym_binary_wrapping_minus] = ACTIONS(4328), + [sym__unary_star] = ACTIONS(4328), + [sym__binary_star] = ACTIONS(4328), + [sym__unary_double_star] = ACTIONS(4328), + [sym__binary_double_star] = ACTIONS(4328), + [sym__block_ampersand] = ACTIONS(4328), + [sym_binary_ampersand] = ACTIONS(4328), + [sym__beginless_range_operator] = ACTIONS(4328), + [sym__regex_start] = ACTIONS(4328), + [sym__binary_slash] = ACTIONS(4328), + [sym__binary_double_slash] = ACTIONS(4328), + [sym__regular_if_keyword] = ACTIONS(4328), + [sym__regular_unless_keyword] = ACTIONS(4328), + [sym__modulo_operator] = ACTIONS(4328), + [sym__string_literal_start] = ACTIONS(4328), + [sym__string_percent_literal_start] = ACTIONS(4328), + [sym__command_percent_literal_start] = ACTIONS(4328), + [sym__string_array_percent_literal_start] = ACTIONS(4328), + [sym__symbol_array_percent_literal_start] = ACTIONS(4328), + [sym__regex_percent_literal_start] = ACTIONS(4328), + [sym_heredoc_start] = ACTIONS(4328), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4328), }, [1959] = { [sym_heredoc_body] = STATE(1959), - [sym_identifier] = ACTIONS(4305), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4305), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4305), - [sym_true] = ACTIONS(4305), - [sym_false] = ACTIONS(4305), - [aux_sym_integer_token2] = ACTIONS(4305), - [aux_sym_float_token2] = ACTIONS(4303), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym_operator_symbol] = ACTIONS(4303), - [sym_unquoted_symbol] = ACTIONS(4303), - [anon_sym_COLON_DQUOTE] = ACTIONS(4303), - [anon_sym_BQUOTE] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_DOT_DOT] = ACTIONS(4305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), - [anon_sym_DASH_GT] = ACTIONS(4303), - [anon_sym_end] = ACTIONS(4305), - [anon_sym_LT] = ACTIONS(4305), - [anon_sym_PIPE] = ACTIONS(4305), - [anon_sym_CARET] = ACTIONS(4303), - [anon_sym_GT_GT] = ACTIONS(4303), - [anon_sym_LT_LT] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4305), - [anon_sym_BANG_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4305), - [anon_sym_GT] = ACTIONS(4305), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ_GT] = ACTIONS(4303), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4305), - [anon_sym_TILDE] = ACTIONS(4303), - [anon_sym_BANG_TILDE] = ACTIONS(4303), - [anon_sym_EQ_TILDE] = ACTIONS(4303), - [anon_sym_AMP_STAR] = ACTIONS(4305), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4303), - [anon_sym_DOT] = ACTIONS(4305), - [anon_sym_with] = ACTIONS(4305), - [anon_sym_yield] = ACTIONS(4305), - [anon_sym_typeof] = ACTIONS(4305), - [anon_sym_sizeof] = ACTIONS(4305), - [anon_sym_instance_sizeof] = ACTIONS(4305), - [anon_sym_offsetof] = ACTIONS(4305), - [sym__constant_segment] = ACTIONS(4303), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym___LINE__] = ACTIONS(4305), - [anon_sym___END_LINE__] = ACTIONS(4305), - [anon_sym___FILE__] = ACTIONS(4305), - [anon_sym___DIR__] = ACTIONS(4305), - [sym_special_variable] = ACTIONS(4303), - [sym_identifier_method_call] = ACTIONS(4303), - [sym_instance_var] = ACTIONS(4303), - [sym_class_var] = ACTIONS(4303), - [sym_self] = ACTIONS(4305), - [anon_sym_LPAREN2] = ACTIONS(4303), - [anon_sym_QMARK] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_do] = ACTIONS(4305), - [anon_sym_begin] = ACTIONS(4305), - [anon_sym_while] = ACTIONS(4305), - [anon_sym_until] = ACTIONS(4305), - [anon_sym_else] = ACTIONS(4305), - [anon_sym_case] = ACTIONS(4305), - [sym__line_break] = ACTIONS(4303), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4303), - [sym__start_of_hash_or_tuple] = ACTIONS(4303), - [sym__start_of_named_tuple] = ACTIONS(4303), - [sym__start_of_index_operator] = ACTIONS(4303), - [sym_unary_plus] = ACTIONS(4303), - [sym_unary_minus] = ACTIONS(4303), - [sym_binary_plus] = ACTIONS(4303), - [sym_binary_minus] = ACTIONS(4303), - [sym_unary_wrapping_plus] = ACTIONS(4303), - [sym_unary_wrapping_minus] = ACTIONS(4303), - [sym_binary_wrapping_plus] = ACTIONS(4303), - [sym_binary_wrapping_minus] = ACTIONS(4303), - [sym__unary_star] = ACTIONS(4303), - [sym__binary_star] = ACTIONS(4303), - [sym__unary_double_star] = ACTIONS(4303), - [sym__binary_double_star] = ACTIONS(4303), - [sym__block_ampersand] = ACTIONS(4303), - [sym_binary_ampersand] = ACTIONS(4303), - [sym__beginless_range_operator] = ACTIONS(4303), - [sym__regex_start] = ACTIONS(4303), - [sym__binary_slash] = ACTIONS(4303), - [sym__binary_double_slash] = ACTIONS(4303), - [sym__regular_if_keyword] = ACTIONS(4303), - [sym__modifier_if_keyword] = ACTIONS(4303), - [sym__regular_unless_keyword] = ACTIONS(4303), - [sym__modifier_unless_keyword] = ACTIONS(4303), - [sym__regular_rescue_keyword] = ACTIONS(4303), - [sym__modifier_rescue_keyword] = ACTIONS(4303), - [sym__regular_ensure_keyword] = ACTIONS(4303), - [sym__modifier_ensure_keyword] = ACTIONS(4303), - [sym__modulo_operator] = ACTIONS(4303), - [sym__string_literal_start] = ACTIONS(4303), - [sym__string_percent_literal_start] = ACTIONS(4303), - [sym__command_percent_literal_start] = ACTIONS(4303), - [sym__string_array_percent_literal_start] = ACTIONS(4303), - [sym__symbol_array_percent_literal_start] = ACTIONS(4303), - [sym__regex_percent_literal_start] = ACTIONS(4303), - [sym_heredoc_start] = ACTIONS(4303), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4303), + [sym_identifier] = ACTIONS(3269), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3269), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [aux_sym_integer_token2] = ACTIONS(3269), + [aux_sym_float_token2] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [sym_operator_symbol] = ACTIONS(3267), + [sym_unquoted_symbol] = ACTIONS(3267), + [anon_sym_COLON_DQUOTE] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3267), + [anon_sym_end] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3267), + [anon_sym_GT_GT] = ACTIONS(3267), + [anon_sym_LT_LT] = ACTIONS(3267), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ_GT] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_AMP_STAR] = ACTIONS(3269), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3269), + [anon_sym_instance_sizeof] = ACTIONS(3269), + [anon_sym_offsetof] = ACTIONS(3269), + [sym__constant_segment] = ACTIONS(3267), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym___LINE__] = ACTIONS(3269), + [anon_sym___END_LINE__] = ACTIONS(3269), + [anon_sym___FILE__] = ACTIONS(3269), + [anon_sym___DIR__] = ACTIONS(3269), + [sym_special_variable] = ACTIONS(3267), + [sym_identifier_method_call] = ACTIONS(3267), + [sym_instance_var] = ACTIONS(3267), + [sym_class_var] = ACTIONS(3267), + [sym_self] = ACTIONS(3269), + [anon_sym_LPAREN2] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3267), + [anon_sym_PIPE_PIPE] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_begin] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_until] = ACTIONS(3269), + [anon_sym_else] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [sym__line_break] = ACTIONS(3267), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3267), + [sym__start_of_hash_or_tuple] = ACTIONS(3267), + [sym__start_of_named_tuple] = ACTIONS(3267), + [sym__start_of_index_operator] = ACTIONS(3267), + [sym_unary_plus] = ACTIONS(3267), + [sym_unary_minus] = ACTIONS(3267), + [sym_binary_plus] = ACTIONS(3267), + [sym_binary_minus] = ACTIONS(3267), + [sym_unary_wrapping_plus] = ACTIONS(3267), + [sym_unary_wrapping_minus] = ACTIONS(3267), + [sym_binary_wrapping_plus] = ACTIONS(3267), + [sym_binary_wrapping_minus] = ACTIONS(3267), + [sym__unary_star] = ACTIONS(3267), + [sym__binary_star] = ACTIONS(3267), + [sym__unary_double_star] = ACTIONS(3267), + [sym__binary_double_star] = ACTIONS(3267), + [sym__block_ampersand] = ACTIONS(3267), + [sym_binary_ampersand] = ACTIONS(3267), + [sym__beginless_range_operator] = ACTIONS(3267), + [sym__regex_start] = ACTIONS(3267), + [sym__binary_slash] = ACTIONS(3267), + [sym__binary_double_slash] = ACTIONS(3267), + [sym__regular_if_keyword] = ACTIONS(3267), + [sym__modifier_if_keyword] = ACTIONS(3267), + [sym__regular_unless_keyword] = ACTIONS(3267), + [sym__modifier_unless_keyword] = ACTIONS(3267), + [sym__regular_rescue_keyword] = ACTIONS(3267), + [sym__modifier_rescue_keyword] = ACTIONS(3267), + [sym__regular_ensure_keyword] = ACTIONS(3267), + [sym__modifier_ensure_keyword] = ACTIONS(3267), + [sym__modulo_operator] = ACTIONS(3267), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3267), + [sym__command_percent_literal_start] = ACTIONS(3267), + [sym__string_array_percent_literal_start] = ACTIONS(3267), + [sym__symbol_array_percent_literal_start] = ACTIONS(3267), + [sym__regex_percent_literal_start] = ACTIONS(3267), + [sym_heredoc_start] = ACTIONS(3267), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3267), }, [1960] = { [sym_heredoc_body] = STATE(1960), - [sym_identifier] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_LPAREN] = ACTIONS(4301), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4301), - [sym_true] = ACTIONS(4301), - [sym_false] = ACTIONS(4301), - [aux_sym_integer_token2] = ACTIONS(4301), - [aux_sym_float_token2] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_operator_symbol] = ACTIONS(4299), - [sym_unquoted_symbol] = ACTIONS(4299), - [anon_sym_COLON_DQUOTE] = ACTIONS(4299), - [anon_sym_BQUOTE] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [anon_sym_COMMA] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4299), - [anon_sym_DASH_GT] = ACTIONS(4299), - [anon_sym_end] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_PIPE] = ACTIONS(4301), - [anon_sym_CARET] = ACTIONS(4299), - [anon_sym_GT_GT] = ACTIONS(4299), - [anon_sym_LT_LT] = ACTIONS(4299), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ_GT] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4299), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_TILDE] = ACTIONS(4299), - [anon_sym_BANG_TILDE] = ACTIONS(4299), - [anon_sym_EQ_TILDE] = ACTIONS(4299), - [anon_sym_AMP_STAR] = ACTIONS(4301), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_with] = ACTIONS(4301), - [anon_sym_yield] = ACTIONS(4301), - [anon_sym_typeof] = ACTIONS(4301), - [anon_sym_sizeof] = ACTIONS(4301), - [anon_sym_instance_sizeof] = ACTIONS(4301), - [anon_sym_offsetof] = ACTIONS(4301), - [sym__constant_segment] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4299), - [anon_sym___LINE__] = ACTIONS(4301), - [anon_sym___END_LINE__] = ACTIONS(4301), - [anon_sym___FILE__] = ACTIONS(4301), - [anon_sym___DIR__] = ACTIONS(4301), - [sym_special_variable] = ACTIONS(4299), - [sym_identifier_method_call] = ACTIONS(4299), - [sym_instance_var] = ACTIONS(4299), - [sym_class_var] = ACTIONS(4299), - [sym_self] = ACTIONS(4301), - [anon_sym_LPAREN2] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4299), - [anon_sym_AMP_AMP] = ACTIONS(4299), - [anon_sym_PIPE_PIPE] = ACTIONS(4299), - [anon_sym_do] = ACTIONS(4301), - [anon_sym_begin] = ACTIONS(4301), - [anon_sym_while] = ACTIONS(4301), - [anon_sym_until] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_case] = ACTIONS(4301), - [sym__line_break] = ACTIONS(4299), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4299), - [sym__start_of_hash_or_tuple] = ACTIONS(4299), - [sym__start_of_named_tuple] = ACTIONS(4299), - [sym__start_of_index_operator] = ACTIONS(4299), - [sym_unary_plus] = ACTIONS(4299), - [sym_unary_minus] = ACTIONS(4299), - [sym_binary_plus] = ACTIONS(4299), - [sym_binary_minus] = ACTIONS(4299), - [sym_unary_wrapping_plus] = ACTIONS(4299), - [sym_unary_wrapping_minus] = ACTIONS(4299), - [sym_binary_wrapping_plus] = ACTIONS(4299), - [sym_binary_wrapping_minus] = ACTIONS(4299), - [sym__unary_star] = ACTIONS(4299), - [sym__binary_star] = ACTIONS(4299), - [sym__unary_double_star] = ACTIONS(4299), - [sym__binary_double_star] = ACTIONS(4299), - [sym__block_ampersand] = ACTIONS(4299), - [sym_binary_ampersand] = ACTIONS(4299), - [sym__beginless_range_operator] = ACTIONS(4299), - [sym__regex_start] = ACTIONS(4299), - [sym__binary_slash] = ACTIONS(4299), - [sym__binary_double_slash] = ACTIONS(4299), - [sym__regular_if_keyword] = ACTIONS(4299), - [sym__modifier_if_keyword] = ACTIONS(4299), - [sym__regular_unless_keyword] = ACTIONS(4299), - [sym__modifier_unless_keyword] = ACTIONS(4299), - [sym__regular_rescue_keyword] = ACTIONS(4299), - [sym__modifier_rescue_keyword] = ACTIONS(4299), - [sym__regular_ensure_keyword] = ACTIONS(4299), - [sym__modifier_ensure_keyword] = ACTIONS(4299), - [sym__modulo_operator] = ACTIONS(4299), - [sym__string_literal_start] = ACTIONS(4299), - [sym__string_percent_literal_start] = ACTIONS(4299), - [sym__command_percent_literal_start] = ACTIONS(4299), - [sym__string_array_percent_literal_start] = ACTIONS(4299), - [sym__symbol_array_percent_literal_start] = ACTIONS(4299), - [sym__regex_percent_literal_start] = ACTIONS(4299), - [sym_heredoc_start] = ACTIONS(4299), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4299), + [sym_identifier] = ACTIONS(4338), + [anon_sym_SEMI] = ACTIONS(4336), + [anon_sym_LPAREN] = ACTIONS(4338), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4338), + [sym_true] = ACTIONS(4338), + [sym_false] = ACTIONS(4338), + [aux_sym_integer_token2] = ACTIONS(4338), + [aux_sym_float_token2] = ACTIONS(4336), + [anon_sym_SQUOTE] = ACTIONS(4336), + [sym_operator_symbol] = ACTIONS(4336), + [sym_unquoted_symbol] = ACTIONS(4336), + [anon_sym_COLON_DQUOTE] = ACTIONS(4336), + [anon_sym_BQUOTE] = ACTIONS(4336), + [anon_sym_LBRACK] = ACTIONS(4336), + [anon_sym_COMMA] = ACTIONS(4336), + [anon_sym_DOT_DOT] = ACTIONS(4338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4336), + [anon_sym_DASH_GT] = ACTIONS(4336), + [anon_sym_end] = ACTIONS(4338), + [anon_sym_LT] = ACTIONS(4338), + [anon_sym_PIPE] = ACTIONS(4338), + [anon_sym_CARET] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4336), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_EQ_EQ] = ACTIONS(4338), + [anon_sym_BANG_EQ] = ACTIONS(4336), + [anon_sym_LT_EQ] = ACTIONS(4338), + [anon_sym_GT] = ACTIONS(4338), + [anon_sym_GT_EQ] = ACTIONS(4336), + [anon_sym_LT_EQ_GT] = ACTIONS(4336), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4336), + [anon_sym_BANG] = ACTIONS(4338), + [anon_sym_TILDE] = ACTIONS(4336), + [anon_sym_BANG_TILDE] = ACTIONS(4336), + [anon_sym_EQ_TILDE] = ACTIONS(4336), + [anon_sym_AMP_STAR] = ACTIONS(4338), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4336), + [anon_sym_DOT] = ACTIONS(4338), + [anon_sym_with] = ACTIONS(4338), + [anon_sym_yield] = ACTIONS(4338), + [anon_sym_typeof] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4338), + [anon_sym_instance_sizeof] = ACTIONS(4338), + [anon_sym_offsetof] = ACTIONS(4338), + [sym__constant_segment] = ACTIONS(4336), + [anon_sym_COLON_COLON] = ACTIONS(4336), + [anon_sym___LINE__] = ACTIONS(4338), + [anon_sym___END_LINE__] = ACTIONS(4338), + [anon_sym___FILE__] = ACTIONS(4338), + [anon_sym___DIR__] = ACTIONS(4338), + [sym_special_variable] = ACTIONS(4336), + [sym_identifier_method_call] = ACTIONS(4336), + [sym_instance_var] = ACTIONS(4336), + [sym_class_var] = ACTIONS(4336), + [sym_self] = ACTIONS(4338), + [anon_sym_LPAREN2] = ACTIONS(4336), + [anon_sym_QMARK] = ACTIONS(4336), + [anon_sym_AMP_AMP] = ACTIONS(4336), + [anon_sym_PIPE_PIPE] = ACTIONS(4336), + [anon_sym_do] = ACTIONS(4338), + [anon_sym_begin] = ACTIONS(4338), + [anon_sym_while] = ACTIONS(4338), + [anon_sym_until] = ACTIONS(4338), + [anon_sym_else] = ACTIONS(4338), + [anon_sym_case] = ACTIONS(4338), + [anon_sym_select] = ACTIONS(4338), + [sym__line_break] = ACTIONS(4336), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4336), + [sym__start_of_hash_or_tuple] = ACTIONS(4336), + [sym__start_of_named_tuple] = ACTIONS(4336), + [sym__start_of_index_operator] = ACTIONS(4336), + [sym_unary_plus] = ACTIONS(4336), + [sym_unary_minus] = ACTIONS(4336), + [sym_binary_plus] = ACTIONS(4336), + [sym_binary_minus] = ACTIONS(4336), + [sym_unary_wrapping_plus] = ACTIONS(4336), + [sym_unary_wrapping_minus] = ACTIONS(4336), + [sym_binary_wrapping_plus] = ACTIONS(4336), + [sym_binary_wrapping_minus] = ACTIONS(4336), + [sym__unary_star] = ACTIONS(4336), + [sym__binary_star] = ACTIONS(4336), + [sym__unary_double_star] = ACTIONS(4336), + [sym__binary_double_star] = ACTIONS(4336), + [sym__block_ampersand] = ACTIONS(4336), + [sym_binary_ampersand] = ACTIONS(4336), + [sym__beginless_range_operator] = ACTIONS(4336), + [sym__regex_start] = ACTIONS(4336), + [sym__binary_slash] = ACTIONS(4336), + [sym__binary_double_slash] = ACTIONS(4336), + [sym__regular_if_keyword] = ACTIONS(4336), + [sym__modifier_if_keyword] = ACTIONS(4336), + [sym__regular_unless_keyword] = ACTIONS(4336), + [sym__modifier_unless_keyword] = ACTIONS(4336), + [sym__regular_rescue_keyword] = ACTIONS(4336), + [sym__modifier_rescue_keyword] = ACTIONS(4336), + [sym__regular_ensure_keyword] = ACTIONS(4336), + [sym__modifier_ensure_keyword] = ACTIONS(4336), + [sym__modulo_operator] = ACTIONS(4336), + [sym__string_literal_start] = ACTIONS(4336), + [sym__string_percent_literal_start] = ACTIONS(4336), + [sym__command_percent_literal_start] = ACTIONS(4336), + [sym__string_array_percent_literal_start] = ACTIONS(4336), + [sym__symbol_array_percent_literal_start] = ACTIONS(4336), + [sym__regex_percent_literal_start] = ACTIONS(4336), + [sym_heredoc_start] = ACTIONS(4336), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4336), }, [1961] = { [sym_heredoc_body] = STATE(1961), - [sym_identifier] = ACTIONS(4309), - [anon_sym_LPAREN] = ACTIONS(4309), - [anon_sym_RPAREN] = ACTIONS(4307), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4309), - [sym_true] = ACTIONS(4309), - [sym_false] = ACTIONS(4309), - [aux_sym_integer_token2] = ACTIONS(4309), - [aux_sym_float_token2] = ACTIONS(4307), - [anon_sym_SQUOTE] = ACTIONS(4307), - [anon_sym_RBRACE] = ACTIONS(4307), - [sym_operator_symbol] = ACTIONS(4307), - [sym_unquoted_symbol] = ACTIONS(4307), - [anon_sym_COLON_DQUOTE] = ACTIONS(4307), - [anon_sym_BQUOTE] = ACTIONS(4307), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_COMMA] = ACTIONS(4307), - [anon_sym_RBRACK] = ACTIONS(4307), - [anon_sym_EQ_GT] = ACTIONS(4307), - [anon_sym_DOT_DOT] = ACTIONS(4309), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4307), - [anon_sym_DASH_GT] = ACTIONS(4307), - [anon_sym_end] = ACTIONS(4309), - [anon_sym_LT] = ACTIONS(4309), - [anon_sym_PIPE] = ACTIONS(4309), - [anon_sym_CARET] = ACTIONS(4307), - [anon_sym_GT_GT] = ACTIONS(4307), - [anon_sym_LT_LT] = ACTIONS(4307), - [anon_sym_EQ_EQ] = ACTIONS(4309), - [anon_sym_BANG_EQ] = ACTIONS(4307), - [anon_sym_LT_EQ] = ACTIONS(4309), - [anon_sym_GT] = ACTIONS(4309), - [anon_sym_GT_EQ] = ACTIONS(4307), - [anon_sym_LT_EQ_GT] = ACTIONS(4307), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), - [anon_sym_BANG] = ACTIONS(4309), - [anon_sym_TILDE] = ACTIONS(4307), - [anon_sym_BANG_TILDE] = ACTIONS(4307), - [anon_sym_EQ_TILDE] = ACTIONS(4307), - [anon_sym_AMP_STAR] = ACTIONS(4309), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4307), - [anon_sym_DOT] = ACTIONS(4309), - [anon_sym_with] = ACTIONS(4309), - [anon_sym_yield] = ACTIONS(4309), - [anon_sym_typeof] = ACTIONS(4309), - [anon_sym_sizeof] = ACTIONS(4309), - [anon_sym_instance_sizeof] = ACTIONS(4309), - [anon_sym_offsetof] = ACTIONS(4309), - [sym__constant_segment] = ACTIONS(4307), - [anon_sym_COLON_COLON] = ACTIONS(4307), - [anon_sym___LINE__] = ACTIONS(4309), - [anon_sym___END_LINE__] = ACTIONS(4309), - [anon_sym___FILE__] = ACTIONS(4309), - [anon_sym___DIR__] = ACTIONS(4309), - [sym_special_variable] = ACTIONS(4307), - [sym_identifier_method_call] = ACTIONS(4307), - [sym_instance_var] = ACTIONS(4307), - [sym_class_var] = ACTIONS(4307), - [sym_self] = ACTIONS(4309), - [anon_sym_LPAREN2] = ACTIONS(4307), - [anon_sym_QMARK] = ACTIONS(4307), - [anon_sym_AMP_AMP] = ACTIONS(4307), - [anon_sym_PIPE_PIPE] = ACTIONS(4307), - [anon_sym_COLON2] = ACTIONS(4309), - [anon_sym_do] = ACTIONS(4309), - [anon_sym_begin] = ACTIONS(4309), - [anon_sym_while] = ACTIONS(4309), - [anon_sym_until] = ACTIONS(4309), - [anon_sym_else] = ACTIONS(4309), - [anon_sym_when] = ACTIONS(4309), - [anon_sym_case] = ACTIONS(4309), - [anon_sym_in] = ACTIONS(4309), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4307), - [sym__start_of_hash_or_tuple] = ACTIONS(4307), - [sym__start_of_named_tuple] = ACTIONS(4307), - [sym__start_of_index_operator] = ACTIONS(4307), - [sym_unary_plus] = ACTIONS(4307), - [sym_unary_minus] = ACTIONS(4307), - [sym_binary_plus] = ACTIONS(4307), - [sym_binary_minus] = ACTIONS(4307), - [sym_unary_wrapping_plus] = ACTIONS(4307), - [sym_unary_wrapping_minus] = ACTIONS(4307), - [sym_binary_wrapping_plus] = ACTIONS(4307), - [sym_binary_wrapping_minus] = ACTIONS(4307), - [sym__unary_star] = ACTIONS(4307), - [sym__binary_star] = ACTIONS(4307), - [sym__unary_double_star] = ACTIONS(4307), - [sym__binary_double_star] = ACTIONS(4307), - [sym__block_ampersand] = ACTIONS(4307), - [sym_binary_ampersand] = ACTIONS(4307), - [sym__beginless_range_operator] = ACTIONS(4307), - [sym__regex_start] = ACTIONS(4307), - [sym__binary_slash] = ACTIONS(4307), - [sym__binary_double_slash] = ACTIONS(4307), - [sym__regular_if_keyword] = ACTIONS(4307), - [sym__regular_unless_keyword] = ACTIONS(4307), - [sym__modulo_operator] = ACTIONS(4307), - [sym__string_literal_start] = ACTIONS(4307), - [sym__string_percent_literal_start] = ACTIONS(4307), - [sym__command_percent_literal_start] = ACTIONS(4307), - [sym__string_array_percent_literal_start] = ACTIONS(4307), - [sym__symbol_array_percent_literal_start] = ACTIONS(4307), - [sym__regex_percent_literal_start] = ACTIONS(4307), - [sym_heredoc_start] = ACTIONS(4307), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4307), + [sym_identifier] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4342), + [anon_sym_RPAREN] = ACTIONS(4340), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4342), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [aux_sym_integer_token2] = ACTIONS(4342), + [aux_sym_float_token2] = ACTIONS(4340), + [anon_sym_SQUOTE] = ACTIONS(4340), + [anon_sym_RBRACE] = ACTIONS(4340), + [sym_operator_symbol] = ACTIONS(4340), + [sym_unquoted_symbol] = ACTIONS(4340), + [anon_sym_COLON_DQUOTE] = ACTIONS(4340), + [anon_sym_BQUOTE] = ACTIONS(4340), + [anon_sym_LBRACK] = ACTIONS(4340), + [anon_sym_COMMA] = ACTIONS(4340), + [anon_sym_RBRACK] = ACTIONS(4340), + [anon_sym_EQ_GT] = ACTIONS(4340), + [anon_sym_DOT_DOT] = ACTIONS(4342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4340), + [anon_sym_DASH_GT] = ACTIONS(4340), + [anon_sym_end] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_PIPE] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4340), + [anon_sym_GT_GT] = ACTIONS(4340), + [anon_sym_LT_LT] = ACTIONS(4340), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ] = ACTIONS(4340), + [anon_sym_LT_EQ] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4340), + [anon_sym_LT_EQ_GT] = ACTIONS(4340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4340), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_TILDE] = ACTIONS(4340), + [anon_sym_BANG_TILDE] = ACTIONS(4340), + [anon_sym_EQ_TILDE] = ACTIONS(4340), + [anon_sym_AMP_STAR] = ACTIONS(4342), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4340), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_with] = ACTIONS(4342), + [anon_sym_yield] = ACTIONS(4342), + [anon_sym_typeof] = ACTIONS(4342), + [anon_sym_sizeof] = ACTIONS(4342), + [anon_sym_instance_sizeof] = ACTIONS(4342), + [anon_sym_offsetof] = ACTIONS(4342), + [sym__constant_segment] = ACTIONS(4340), + [anon_sym_COLON_COLON] = ACTIONS(4340), + [anon_sym___LINE__] = ACTIONS(4342), + [anon_sym___END_LINE__] = ACTIONS(4342), + [anon_sym___FILE__] = ACTIONS(4342), + [anon_sym___DIR__] = ACTIONS(4342), + [sym_special_variable] = ACTIONS(4340), + [sym_identifier_method_call] = ACTIONS(4340), + [sym_instance_var] = ACTIONS(4340), + [sym_class_var] = ACTIONS(4340), + [sym_self] = ACTIONS(4342), + [anon_sym_LPAREN2] = ACTIONS(4340), + [anon_sym_QMARK] = ACTIONS(4340), + [anon_sym_AMP_AMP] = ACTIONS(4340), + [anon_sym_PIPE_PIPE] = ACTIONS(4340), + [anon_sym_COLON2] = ACTIONS(4342), + [anon_sym_do] = ACTIONS(4342), + [anon_sym_begin] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_until] = ACTIONS(4342), + [anon_sym_else] = ACTIONS(4342), + [anon_sym_when] = ACTIONS(4342), + [anon_sym_case] = ACTIONS(4342), + [anon_sym_select] = ACTIONS(4342), + [anon_sym_in] = ACTIONS(4342), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4340), + [sym__start_of_hash_or_tuple] = ACTIONS(4340), + [sym__start_of_named_tuple] = ACTIONS(4340), + [sym__start_of_index_operator] = ACTIONS(4340), + [sym_unary_plus] = ACTIONS(4340), + [sym_unary_minus] = ACTIONS(4340), + [sym_binary_plus] = ACTIONS(4340), + [sym_binary_minus] = ACTIONS(4340), + [sym_unary_wrapping_plus] = ACTIONS(4340), + [sym_unary_wrapping_minus] = ACTIONS(4340), + [sym_binary_wrapping_plus] = ACTIONS(4340), + [sym_binary_wrapping_minus] = ACTIONS(4340), + [sym__unary_star] = ACTIONS(4340), + [sym__binary_star] = ACTIONS(4340), + [sym__unary_double_star] = ACTIONS(4340), + [sym__binary_double_star] = ACTIONS(4340), + [sym__block_ampersand] = ACTIONS(4340), + [sym_binary_ampersand] = ACTIONS(4340), + [sym__beginless_range_operator] = ACTIONS(4340), + [sym__regex_start] = ACTIONS(4340), + [sym__binary_slash] = ACTIONS(4340), + [sym__binary_double_slash] = ACTIONS(4340), + [sym__regular_if_keyword] = ACTIONS(4340), + [sym__regular_unless_keyword] = ACTIONS(4340), + [sym__modulo_operator] = ACTIONS(4340), + [sym__string_literal_start] = ACTIONS(4340), + [sym__string_percent_literal_start] = ACTIONS(4340), + [sym__command_percent_literal_start] = ACTIONS(4340), + [sym__string_array_percent_literal_start] = ACTIONS(4340), + [sym__symbol_array_percent_literal_start] = ACTIONS(4340), + [sym__regex_percent_literal_start] = ACTIONS(4340), + [sym_heredoc_start] = ACTIONS(4340), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4340), }, [1962] = { [sym_heredoc_body] = STATE(1962), - [sym_identifier] = ACTIONS(4305), - [anon_sym_LPAREN] = ACTIONS(4305), - [anon_sym_RPAREN] = ACTIONS(4303), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4305), - [sym_true] = ACTIONS(4305), - [sym_false] = ACTIONS(4305), - [aux_sym_integer_token2] = ACTIONS(4305), - [aux_sym_float_token2] = ACTIONS(4303), - [anon_sym_SQUOTE] = ACTIONS(4303), - [anon_sym_RBRACE] = ACTIONS(4303), - [sym_operator_symbol] = ACTIONS(4303), - [sym_unquoted_symbol] = ACTIONS(4303), - [anon_sym_COLON_DQUOTE] = ACTIONS(4303), - [anon_sym_BQUOTE] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_RBRACK] = ACTIONS(4303), - [anon_sym_EQ_GT] = ACTIONS(4303), - [anon_sym_DOT_DOT] = ACTIONS(4305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), - [anon_sym_DASH_GT] = ACTIONS(4303), - [anon_sym_end] = ACTIONS(4305), - [anon_sym_LT] = ACTIONS(4305), - [anon_sym_PIPE] = ACTIONS(4305), - [anon_sym_CARET] = ACTIONS(4303), - [anon_sym_GT_GT] = ACTIONS(4303), - [anon_sym_LT_LT] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4305), - [anon_sym_BANG_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4305), - [anon_sym_GT] = ACTIONS(4305), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ_GT] = ACTIONS(4303), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4305), - [anon_sym_TILDE] = ACTIONS(4303), - [anon_sym_BANG_TILDE] = ACTIONS(4303), - [anon_sym_EQ_TILDE] = ACTIONS(4303), - [anon_sym_AMP_STAR] = ACTIONS(4305), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4303), - [anon_sym_DOT] = ACTIONS(4305), - [anon_sym_with] = ACTIONS(4305), - [anon_sym_yield] = ACTIONS(4305), - [anon_sym_typeof] = ACTIONS(4305), - [anon_sym_sizeof] = ACTIONS(4305), - [anon_sym_instance_sizeof] = ACTIONS(4305), - [anon_sym_offsetof] = ACTIONS(4305), - [sym__constant_segment] = ACTIONS(4303), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym___LINE__] = ACTIONS(4305), - [anon_sym___END_LINE__] = ACTIONS(4305), - [anon_sym___FILE__] = ACTIONS(4305), - [anon_sym___DIR__] = ACTIONS(4305), - [sym_special_variable] = ACTIONS(4303), - [sym_identifier_method_call] = ACTIONS(4303), - [sym_instance_var] = ACTIONS(4303), - [sym_class_var] = ACTIONS(4303), - [sym_self] = ACTIONS(4305), - [anon_sym_LPAREN2] = ACTIONS(4303), - [anon_sym_QMARK] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_COLON2] = ACTIONS(4305), - [anon_sym_do] = ACTIONS(4305), - [anon_sym_begin] = ACTIONS(4305), - [anon_sym_while] = ACTIONS(4305), - [anon_sym_until] = ACTIONS(4305), - [anon_sym_else] = ACTIONS(4305), - [anon_sym_when] = ACTIONS(4305), - [anon_sym_case] = ACTIONS(4305), - [anon_sym_in] = ACTIONS(4305), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4303), - [sym__start_of_hash_or_tuple] = ACTIONS(4303), - [sym__start_of_named_tuple] = ACTIONS(4303), - [sym__start_of_index_operator] = ACTIONS(4303), - [sym_unary_plus] = ACTIONS(4303), - [sym_unary_minus] = ACTIONS(4303), - [sym_binary_plus] = ACTIONS(4303), - [sym_binary_minus] = ACTIONS(4303), - [sym_unary_wrapping_plus] = ACTIONS(4303), - [sym_unary_wrapping_minus] = ACTIONS(4303), - [sym_binary_wrapping_plus] = ACTIONS(4303), - [sym_binary_wrapping_minus] = ACTIONS(4303), - [sym__unary_star] = ACTIONS(4303), - [sym__binary_star] = ACTIONS(4303), - [sym__unary_double_star] = ACTIONS(4303), - [sym__binary_double_star] = ACTIONS(4303), - [sym__block_ampersand] = ACTIONS(4303), - [sym_binary_ampersand] = ACTIONS(4303), - [sym__beginless_range_operator] = ACTIONS(4303), - [sym__regex_start] = ACTIONS(4303), - [sym__binary_slash] = ACTIONS(4303), - [sym__binary_double_slash] = ACTIONS(4303), - [sym__regular_if_keyword] = ACTIONS(4303), - [sym__regular_unless_keyword] = ACTIONS(4303), - [sym__modulo_operator] = ACTIONS(4303), - [sym__string_literal_start] = ACTIONS(4303), - [sym__string_percent_literal_start] = ACTIONS(4303), - [sym__command_percent_literal_start] = ACTIONS(4303), - [sym__string_array_percent_literal_start] = ACTIONS(4303), - [sym__symbol_array_percent_literal_start] = ACTIONS(4303), - [sym__regex_percent_literal_start] = ACTIONS(4303), - [sym_heredoc_start] = ACTIONS(4303), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4303), + [sym_identifier] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(4346), + [anon_sym_RPAREN] = ACTIONS(4344), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4346), + [sym_true] = ACTIONS(4346), + [sym_false] = ACTIONS(4346), + [aux_sym_integer_token2] = ACTIONS(4346), + [aux_sym_float_token2] = ACTIONS(4344), + [anon_sym_SQUOTE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4344), + [sym_operator_symbol] = ACTIONS(4344), + [sym_unquoted_symbol] = ACTIONS(4344), + [anon_sym_COLON_DQUOTE] = ACTIONS(4344), + [anon_sym_BQUOTE] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_RBRACK] = ACTIONS(4344), + [anon_sym_EQ_GT] = ACTIONS(4344), + [anon_sym_DOT_DOT] = ACTIONS(4346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4344), + [anon_sym_DASH_GT] = ACTIONS(4344), + [anon_sym_end] = ACTIONS(4346), + [anon_sym_LT] = ACTIONS(4346), + [anon_sym_PIPE] = ACTIONS(4346), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_GT_GT] = ACTIONS(4344), + [anon_sym_LT_LT] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4346), + [anon_sym_BANG_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4346), + [anon_sym_GT] = ACTIONS(4346), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ_GT] = ACTIONS(4344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4346), + [anon_sym_TILDE] = ACTIONS(4344), + [anon_sym_BANG_TILDE] = ACTIONS(4344), + [anon_sym_EQ_TILDE] = ACTIONS(4344), + [anon_sym_AMP_STAR] = ACTIONS(4346), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4346), + [anon_sym_with] = ACTIONS(4346), + [anon_sym_yield] = ACTIONS(4346), + [anon_sym_typeof] = ACTIONS(4346), + [anon_sym_sizeof] = ACTIONS(4346), + [anon_sym_instance_sizeof] = ACTIONS(4346), + [anon_sym_offsetof] = ACTIONS(4346), + [sym__constant_segment] = ACTIONS(4344), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym___LINE__] = ACTIONS(4346), + [anon_sym___END_LINE__] = ACTIONS(4346), + [anon_sym___FILE__] = ACTIONS(4346), + [anon_sym___DIR__] = ACTIONS(4346), + [sym_special_variable] = ACTIONS(4344), + [sym_identifier_method_call] = ACTIONS(4344), + [sym_instance_var] = ACTIONS(4344), + [sym_class_var] = ACTIONS(4344), + [sym_self] = ACTIONS(4346), + [anon_sym_LPAREN2] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_COLON2] = ACTIONS(4346), + [anon_sym_do] = ACTIONS(4346), + [anon_sym_begin] = ACTIONS(4346), + [anon_sym_while] = ACTIONS(4346), + [anon_sym_until] = ACTIONS(4346), + [anon_sym_else] = ACTIONS(4346), + [anon_sym_when] = ACTIONS(4346), + [anon_sym_case] = ACTIONS(4346), + [anon_sym_select] = ACTIONS(4346), + [anon_sym_in] = ACTIONS(4346), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4344), + [sym__start_of_hash_or_tuple] = ACTIONS(4344), + [sym__start_of_named_tuple] = ACTIONS(4344), + [sym__start_of_index_operator] = ACTIONS(4344), + [sym_unary_plus] = ACTIONS(4344), + [sym_unary_minus] = ACTIONS(4344), + [sym_binary_plus] = ACTIONS(4344), + [sym_binary_minus] = ACTIONS(4344), + [sym_unary_wrapping_plus] = ACTIONS(4344), + [sym_unary_wrapping_minus] = ACTIONS(4344), + [sym_binary_wrapping_plus] = ACTIONS(4344), + [sym_binary_wrapping_minus] = ACTIONS(4344), + [sym__unary_star] = ACTIONS(4344), + [sym__binary_star] = ACTIONS(4344), + [sym__unary_double_star] = ACTIONS(4344), + [sym__binary_double_star] = ACTIONS(4344), + [sym__block_ampersand] = ACTIONS(4344), + [sym_binary_ampersand] = ACTIONS(4344), + [sym__beginless_range_operator] = ACTIONS(4344), + [sym__regex_start] = ACTIONS(4344), + [sym__binary_slash] = ACTIONS(4344), + [sym__binary_double_slash] = ACTIONS(4344), + [sym__regular_if_keyword] = ACTIONS(4344), + [sym__regular_unless_keyword] = ACTIONS(4344), + [sym__modulo_operator] = ACTIONS(4344), + [sym__string_literal_start] = ACTIONS(4344), + [sym__string_percent_literal_start] = ACTIONS(4344), + [sym__command_percent_literal_start] = ACTIONS(4344), + [sym__string_array_percent_literal_start] = ACTIONS(4344), + [sym__symbol_array_percent_literal_start] = ACTIONS(4344), + [sym__regex_percent_literal_start] = ACTIONS(4344), + [sym_heredoc_start] = ACTIONS(4344), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4344), }, [1963] = { [sym_heredoc_body] = STATE(1963), - [sym_identifier] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [anon_sym_RPAREN] = ACTIONS(4299), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4301), - [sym_true] = ACTIONS(4301), - [sym_false] = ACTIONS(4301), - [aux_sym_integer_token2] = ACTIONS(4301), - [aux_sym_float_token2] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4299), - [anon_sym_RBRACE] = ACTIONS(4299), - [sym_operator_symbol] = ACTIONS(4299), - [sym_unquoted_symbol] = ACTIONS(4299), - [anon_sym_COLON_DQUOTE] = ACTIONS(4299), - [anon_sym_BQUOTE] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [anon_sym_COMMA] = ACTIONS(4299), - [anon_sym_RBRACK] = ACTIONS(4299), - [anon_sym_EQ_GT] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4299), - [anon_sym_DASH_GT] = ACTIONS(4299), - [anon_sym_end] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_PIPE] = ACTIONS(4301), - [anon_sym_CARET] = ACTIONS(4299), - [anon_sym_GT_GT] = ACTIONS(4299), - [anon_sym_LT_LT] = ACTIONS(4299), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ_GT] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4299), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_TILDE] = ACTIONS(4299), - [anon_sym_BANG_TILDE] = ACTIONS(4299), - [anon_sym_EQ_TILDE] = ACTIONS(4299), - [anon_sym_AMP_STAR] = ACTIONS(4301), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_with] = ACTIONS(4301), - [anon_sym_yield] = ACTIONS(4301), - [anon_sym_typeof] = ACTIONS(4301), - [anon_sym_sizeof] = ACTIONS(4301), - [anon_sym_instance_sizeof] = ACTIONS(4301), - [anon_sym_offsetof] = ACTIONS(4301), - [sym__constant_segment] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4299), - [anon_sym___LINE__] = ACTIONS(4301), - [anon_sym___END_LINE__] = ACTIONS(4301), - [anon_sym___FILE__] = ACTIONS(4301), - [anon_sym___DIR__] = ACTIONS(4301), - [sym_special_variable] = ACTIONS(4299), - [sym_identifier_method_call] = ACTIONS(4299), - [sym_instance_var] = ACTIONS(4299), - [sym_class_var] = ACTIONS(4299), - [sym_self] = ACTIONS(4301), - [anon_sym_LPAREN2] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4299), - [anon_sym_AMP_AMP] = ACTIONS(4299), - [anon_sym_PIPE_PIPE] = ACTIONS(4299), - [anon_sym_COLON2] = ACTIONS(4301), - [anon_sym_do] = ACTIONS(4301), - [anon_sym_begin] = ACTIONS(4301), - [anon_sym_while] = ACTIONS(4301), - [anon_sym_until] = ACTIONS(4301), - [anon_sym_else] = ACTIONS(4301), - [anon_sym_when] = ACTIONS(4301), - [anon_sym_case] = ACTIONS(4301), - [anon_sym_in] = ACTIONS(4301), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4299), - [sym__start_of_hash_or_tuple] = ACTIONS(4299), - [sym__start_of_named_tuple] = ACTIONS(4299), - [sym__start_of_index_operator] = ACTIONS(4299), - [sym_unary_plus] = ACTIONS(4299), - [sym_unary_minus] = ACTIONS(4299), - [sym_binary_plus] = ACTIONS(4299), - [sym_binary_minus] = ACTIONS(4299), - [sym_unary_wrapping_plus] = ACTIONS(4299), - [sym_unary_wrapping_minus] = ACTIONS(4299), - [sym_binary_wrapping_plus] = ACTIONS(4299), - [sym_binary_wrapping_minus] = ACTIONS(4299), - [sym__unary_star] = ACTIONS(4299), - [sym__binary_star] = ACTIONS(4299), - [sym__unary_double_star] = ACTIONS(4299), - [sym__binary_double_star] = ACTIONS(4299), - [sym__block_ampersand] = ACTIONS(4299), - [sym_binary_ampersand] = ACTIONS(4299), - [sym__beginless_range_operator] = ACTIONS(4299), - [sym__regex_start] = ACTIONS(4299), - [sym__binary_slash] = ACTIONS(4299), - [sym__binary_double_slash] = ACTIONS(4299), - [sym__regular_if_keyword] = ACTIONS(4299), - [sym__regular_unless_keyword] = ACTIONS(4299), - [sym__modulo_operator] = ACTIONS(4299), - [sym__string_literal_start] = ACTIONS(4299), - [sym__string_percent_literal_start] = ACTIONS(4299), - [sym__command_percent_literal_start] = ACTIONS(4299), - [sym__string_array_percent_literal_start] = ACTIONS(4299), - [sym__symbol_array_percent_literal_start] = ACTIONS(4299), - [sym__regex_percent_literal_start] = ACTIONS(4299), - [sym_heredoc_start] = ACTIONS(4299), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4299), + [sym_identifier] = ACTIONS(4338), + [anon_sym_LPAREN] = ACTIONS(4338), + [anon_sym_RPAREN] = ACTIONS(4336), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4338), + [sym_true] = ACTIONS(4338), + [sym_false] = ACTIONS(4338), + [aux_sym_integer_token2] = ACTIONS(4338), + [aux_sym_float_token2] = ACTIONS(4336), + [anon_sym_SQUOTE] = ACTIONS(4336), + [anon_sym_RBRACE] = ACTIONS(4336), + [sym_operator_symbol] = ACTIONS(4336), + [sym_unquoted_symbol] = ACTIONS(4336), + [anon_sym_COLON_DQUOTE] = ACTIONS(4336), + [anon_sym_BQUOTE] = ACTIONS(4336), + [anon_sym_LBRACK] = ACTIONS(4336), + [anon_sym_COMMA] = ACTIONS(4336), + [anon_sym_RBRACK] = ACTIONS(4336), + [anon_sym_EQ_GT] = ACTIONS(4336), + [anon_sym_DOT_DOT] = ACTIONS(4338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4336), + [anon_sym_DASH_GT] = ACTIONS(4336), + [anon_sym_end] = ACTIONS(4338), + [anon_sym_LT] = ACTIONS(4338), + [anon_sym_PIPE] = ACTIONS(4338), + [anon_sym_CARET] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4336), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_EQ_EQ] = ACTIONS(4338), + [anon_sym_BANG_EQ] = ACTIONS(4336), + [anon_sym_LT_EQ] = ACTIONS(4338), + [anon_sym_GT] = ACTIONS(4338), + [anon_sym_GT_EQ] = ACTIONS(4336), + [anon_sym_LT_EQ_GT] = ACTIONS(4336), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4336), + [anon_sym_BANG] = ACTIONS(4338), + [anon_sym_TILDE] = ACTIONS(4336), + [anon_sym_BANG_TILDE] = ACTIONS(4336), + [anon_sym_EQ_TILDE] = ACTIONS(4336), + [anon_sym_AMP_STAR] = ACTIONS(4338), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4336), + [anon_sym_DOT] = ACTIONS(4338), + [anon_sym_with] = ACTIONS(4338), + [anon_sym_yield] = ACTIONS(4338), + [anon_sym_typeof] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4338), + [anon_sym_instance_sizeof] = ACTIONS(4338), + [anon_sym_offsetof] = ACTIONS(4338), + [sym__constant_segment] = ACTIONS(4336), + [anon_sym_COLON_COLON] = ACTIONS(4336), + [anon_sym___LINE__] = ACTIONS(4338), + [anon_sym___END_LINE__] = ACTIONS(4338), + [anon_sym___FILE__] = ACTIONS(4338), + [anon_sym___DIR__] = ACTIONS(4338), + [sym_special_variable] = ACTIONS(4336), + [sym_identifier_method_call] = ACTIONS(4336), + [sym_instance_var] = ACTIONS(4336), + [sym_class_var] = ACTIONS(4336), + [sym_self] = ACTIONS(4338), + [anon_sym_LPAREN2] = ACTIONS(4336), + [anon_sym_QMARK] = ACTIONS(4336), + [anon_sym_AMP_AMP] = ACTIONS(4336), + [anon_sym_PIPE_PIPE] = ACTIONS(4336), + [anon_sym_COLON2] = ACTIONS(4338), + [anon_sym_do] = ACTIONS(4338), + [anon_sym_begin] = ACTIONS(4338), + [anon_sym_while] = ACTIONS(4338), + [anon_sym_until] = ACTIONS(4338), + [anon_sym_else] = ACTIONS(4338), + [anon_sym_when] = ACTIONS(4338), + [anon_sym_case] = ACTIONS(4338), + [anon_sym_select] = ACTIONS(4338), + [anon_sym_in] = ACTIONS(4338), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4336), + [sym__start_of_hash_or_tuple] = ACTIONS(4336), + [sym__start_of_named_tuple] = ACTIONS(4336), + [sym__start_of_index_operator] = ACTIONS(4336), + [sym_unary_plus] = ACTIONS(4336), + [sym_unary_minus] = ACTIONS(4336), + [sym_binary_plus] = ACTIONS(4336), + [sym_binary_minus] = ACTIONS(4336), + [sym_unary_wrapping_plus] = ACTIONS(4336), + [sym_unary_wrapping_minus] = ACTIONS(4336), + [sym_binary_wrapping_plus] = ACTIONS(4336), + [sym_binary_wrapping_minus] = ACTIONS(4336), + [sym__unary_star] = ACTIONS(4336), + [sym__binary_star] = ACTIONS(4336), + [sym__unary_double_star] = ACTIONS(4336), + [sym__binary_double_star] = ACTIONS(4336), + [sym__block_ampersand] = ACTIONS(4336), + [sym_binary_ampersand] = ACTIONS(4336), + [sym__beginless_range_operator] = ACTIONS(4336), + [sym__regex_start] = ACTIONS(4336), + [sym__binary_slash] = ACTIONS(4336), + [sym__binary_double_slash] = ACTIONS(4336), + [sym__regular_if_keyword] = ACTIONS(4336), + [sym__regular_unless_keyword] = ACTIONS(4336), + [sym__modulo_operator] = ACTIONS(4336), + [sym__string_literal_start] = ACTIONS(4336), + [sym__string_percent_literal_start] = ACTIONS(4336), + [sym__command_percent_literal_start] = ACTIONS(4336), + [sym__string_array_percent_literal_start] = ACTIONS(4336), + [sym__symbol_array_percent_literal_start] = ACTIONS(4336), + [sym__regex_percent_literal_start] = ACTIONS(4336), + [sym_heredoc_start] = ACTIONS(4336), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4336), }, [1964] = { [sym_heredoc_body] = STATE(1964), - [sym_identifier] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3238), - [anon_sym_RPAREN] = ACTIONS(3236), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3236), - [sym_operator_symbol] = ACTIONS(3236), - [sym_unquoted_symbol] = ACTIONS(3236), - [anon_sym_COLON_DQUOTE] = ACTIONS(3236), - [anon_sym_BQUOTE] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_COMMA] = ACTIONS(3236), - [anon_sym_RBRACK] = ACTIONS(3236), - [anon_sym_EQ_GT] = ACTIONS(3236), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_DASH_GT] = ACTIONS(3236), - [anon_sym_end] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3236), - [anon_sym_GT_GT] = ACTIONS(3236), - [anon_sym_LT_LT] = ACTIONS(3236), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ_GT] = ACTIONS(3236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG_TILDE] = ACTIONS(3236), - [anon_sym_EQ_TILDE] = ACTIONS(3236), - [anon_sym_AMP_STAR] = ACTIONS(3238), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3236), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym_instance_sizeof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [sym__constant_segment] = ACTIONS(3236), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym___LINE__] = ACTIONS(3238), - [anon_sym___END_LINE__] = ACTIONS(3238), - [anon_sym___FILE__] = ACTIONS(3238), - [anon_sym___DIR__] = ACTIONS(3238), - [sym_special_variable] = ACTIONS(3236), - [sym_identifier_method_call] = ACTIONS(3236), - [sym_instance_var] = ACTIONS(3236), - [sym_class_var] = ACTIONS(3236), - [sym_self] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3236), - [anon_sym_PIPE_PIPE] = ACTIONS(3236), - [anon_sym_COLON2] = ACTIONS(3238), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_begin] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_until] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), - [anon_sym_when] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [anon_sym_in] = ACTIONS(3238), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3236), - [sym__start_of_hash_or_tuple] = ACTIONS(3236), - [sym__start_of_named_tuple] = ACTIONS(3236), - [sym__start_of_index_operator] = ACTIONS(3236), - [sym_unary_plus] = ACTIONS(3236), - [sym_unary_minus] = ACTIONS(3236), - [sym_binary_plus] = ACTIONS(3236), - [sym_binary_minus] = ACTIONS(3236), - [sym_unary_wrapping_plus] = ACTIONS(3236), - [sym_unary_wrapping_minus] = ACTIONS(3236), - [sym_binary_wrapping_plus] = ACTIONS(3236), - [sym_binary_wrapping_minus] = ACTIONS(3236), - [sym__unary_star] = ACTIONS(3236), - [sym__binary_star] = ACTIONS(3236), - [sym__unary_double_star] = ACTIONS(3236), - [sym__binary_double_star] = ACTIONS(3236), - [sym__block_ampersand] = ACTIONS(3236), - [sym_binary_ampersand] = ACTIONS(3236), - [sym__beginless_range_operator] = ACTIONS(3236), - [sym__regex_start] = ACTIONS(3236), - [sym__binary_slash] = ACTIONS(3236), - [sym__binary_double_slash] = ACTIONS(3236), - [sym__regular_if_keyword] = ACTIONS(3236), - [sym__regular_unless_keyword] = ACTIONS(3236), - [sym__modulo_operator] = ACTIONS(3236), - [sym__string_literal_start] = ACTIONS(3236), - [sym__string_percent_literal_start] = ACTIONS(3236), - [sym__command_percent_literal_start] = ACTIONS(3236), - [sym__string_array_percent_literal_start] = ACTIONS(3236), - [sym__symbol_array_percent_literal_start] = ACTIONS(3236), - [sym__regex_percent_literal_start] = ACTIONS(3236), - [sym_heredoc_start] = ACTIONS(3236), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3236), + [sym_identifier] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym_RPAREN] = ACTIONS(3267), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [aux_sym_integer_token2] = ACTIONS(3269), + [aux_sym_float_token2] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3267), + [sym_operator_symbol] = ACTIONS(3267), + [sym_unquoted_symbol] = ACTIONS(3267), + [anon_sym_COLON_DQUOTE] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3267), + [anon_sym_RBRACK] = ACTIONS(3267), + [anon_sym_EQ_GT] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3267), + [anon_sym_end] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3267), + [anon_sym_GT_GT] = ACTIONS(3267), + [anon_sym_LT_LT] = ACTIONS(3267), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ_GT] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_AMP_STAR] = ACTIONS(3269), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3269), + [anon_sym_instance_sizeof] = ACTIONS(3269), + [anon_sym_offsetof] = ACTIONS(3269), + [sym__constant_segment] = ACTIONS(3267), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym___LINE__] = ACTIONS(3269), + [anon_sym___END_LINE__] = ACTIONS(3269), + [anon_sym___FILE__] = ACTIONS(3269), + [anon_sym___DIR__] = ACTIONS(3269), + [sym_special_variable] = ACTIONS(3267), + [sym_identifier_method_call] = ACTIONS(3267), + [sym_instance_var] = ACTIONS(3267), + [sym_class_var] = ACTIONS(3267), + [sym_self] = ACTIONS(3269), + [anon_sym_LPAREN2] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3267), + [anon_sym_PIPE_PIPE] = ACTIONS(3267), + [anon_sym_COLON2] = ACTIONS(3269), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_begin] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_until] = ACTIONS(3269), + [anon_sym_else] = ACTIONS(3269), + [anon_sym_when] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [anon_sym_in] = ACTIONS(3269), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3267), + [sym__start_of_hash_or_tuple] = ACTIONS(3267), + [sym__start_of_named_tuple] = ACTIONS(3267), + [sym__start_of_index_operator] = ACTIONS(3267), + [sym_unary_plus] = ACTIONS(3267), + [sym_unary_minus] = ACTIONS(3267), + [sym_binary_plus] = ACTIONS(3267), + [sym_binary_minus] = ACTIONS(3267), + [sym_unary_wrapping_plus] = ACTIONS(3267), + [sym_unary_wrapping_minus] = ACTIONS(3267), + [sym_binary_wrapping_plus] = ACTIONS(3267), + [sym_binary_wrapping_minus] = ACTIONS(3267), + [sym__unary_star] = ACTIONS(3267), + [sym__binary_star] = ACTIONS(3267), + [sym__unary_double_star] = ACTIONS(3267), + [sym__binary_double_star] = ACTIONS(3267), + [sym__block_ampersand] = ACTIONS(3267), + [sym_binary_ampersand] = ACTIONS(3267), + [sym__beginless_range_operator] = ACTIONS(3267), + [sym__regex_start] = ACTIONS(3267), + [sym__binary_slash] = ACTIONS(3267), + [sym__binary_double_slash] = ACTIONS(3267), + [sym__regular_if_keyword] = ACTIONS(3267), + [sym__regular_unless_keyword] = ACTIONS(3267), + [sym__modulo_operator] = ACTIONS(3267), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3267), + [sym__command_percent_literal_start] = ACTIONS(3267), + [sym__string_array_percent_literal_start] = ACTIONS(3267), + [sym__symbol_array_percent_literal_start] = ACTIONS(3267), + [sym__regex_percent_literal_start] = ACTIONS(3267), + [sym_heredoc_start] = ACTIONS(3267), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3267), }, [1965] = { [sym_heredoc_body] = STATE(1965), - [sym_identifier] = ACTIONS(4305), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4305), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4305), - [sym_true] = ACTIONS(4305), - [sym_false] = ACTIONS(4305), - [aux_sym_integer_token2] = ACTIONS(4305), - [aux_sym_float_token2] = ACTIONS(4303), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym_operator_symbol] = ACTIONS(4303), - [sym_unquoted_symbol] = ACTIONS(4303), - [anon_sym_COLON_DQUOTE] = ACTIONS(4303), - [anon_sym_BQUOTE] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_DOT_DOT] = ACTIONS(4305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), - [anon_sym_DASH_GT] = ACTIONS(4303), - [anon_sym_end] = ACTIONS(4305), - [anon_sym_LT] = ACTIONS(4305), - [anon_sym_PIPE] = ACTIONS(4305), - [anon_sym_CARET] = ACTIONS(4303), - [anon_sym_GT_GT] = ACTIONS(4303), - [anon_sym_LT_LT] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4305), - [anon_sym_BANG_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4305), - [anon_sym_GT] = ACTIONS(4305), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ_GT] = ACTIONS(4303), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4305), - [anon_sym_TILDE] = ACTIONS(4303), - [anon_sym_BANG_TILDE] = ACTIONS(4303), - [anon_sym_EQ_TILDE] = ACTIONS(4303), - [anon_sym_AMP_STAR] = ACTIONS(4305), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4303), - [anon_sym_DOT] = ACTIONS(4305), - [anon_sym_with] = ACTIONS(4305), - [anon_sym_yield] = ACTIONS(4305), - [anon_sym_typeof] = ACTIONS(4305), - [anon_sym_sizeof] = ACTIONS(4305), - [anon_sym_instance_sizeof] = ACTIONS(4305), - [anon_sym_offsetof] = ACTIONS(4305), - [sym__constant_segment] = ACTIONS(4303), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym___LINE__] = ACTIONS(4305), - [anon_sym___END_LINE__] = ACTIONS(4305), - [anon_sym___FILE__] = ACTIONS(4305), - [anon_sym___DIR__] = ACTIONS(4305), - [sym_special_variable] = ACTIONS(4303), - [sym_identifier_method_call] = ACTIONS(4303), - [sym_instance_var] = ACTIONS(4303), - [sym_class_var] = ACTIONS(4303), - [sym_self] = ACTIONS(4305), - [anon_sym_LPAREN2] = ACTIONS(4303), - [anon_sym_QMARK] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_do] = ACTIONS(4305), - [anon_sym_begin] = ACTIONS(4305), - [anon_sym_while] = ACTIONS(4305), - [anon_sym_until] = ACTIONS(4305), - [anon_sym_case] = ACTIONS(4305), - [sym__line_break] = ACTIONS(4303), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4303), - [sym__start_of_hash_or_tuple] = ACTIONS(4303), - [sym__start_of_named_tuple] = ACTIONS(4303), - [sym__start_of_index_operator] = ACTIONS(4303), - [sym_unary_plus] = ACTIONS(4303), - [sym_unary_minus] = ACTIONS(4303), - [sym_binary_plus] = ACTIONS(4303), - [sym_binary_minus] = ACTIONS(4303), - [sym_unary_wrapping_plus] = ACTIONS(4303), - [sym_unary_wrapping_minus] = ACTIONS(4303), - [sym_binary_wrapping_plus] = ACTIONS(4303), - [sym_binary_wrapping_minus] = ACTIONS(4303), - [sym__unary_star] = ACTIONS(4303), - [sym__binary_star] = ACTIONS(4303), - [sym__unary_double_star] = ACTIONS(4303), - [sym__binary_double_star] = ACTIONS(4303), - [sym__block_ampersand] = ACTIONS(4303), - [sym_binary_ampersand] = ACTIONS(4303), - [sym__beginless_range_operator] = ACTIONS(4303), - [sym__regex_start] = ACTIONS(4303), - [sym__binary_slash] = ACTIONS(4303), - [sym__binary_double_slash] = ACTIONS(4303), - [sym__regular_if_keyword] = ACTIONS(4303), - [sym__modifier_if_keyword] = ACTIONS(4303), - [sym__regular_unless_keyword] = ACTIONS(4303), - [sym__modifier_unless_keyword] = ACTIONS(4303), - [sym__modifier_rescue_keyword] = ACTIONS(4303), - [sym__regular_ensure_keyword] = ACTIONS(4303), - [sym__modifier_ensure_keyword] = ACTIONS(4303), - [sym__modulo_operator] = ACTIONS(4303), - [sym__string_literal_start] = ACTIONS(4303), - [sym__string_percent_literal_start] = ACTIONS(4303), - [sym__command_percent_literal_start] = ACTIONS(4303), - [sym__string_array_percent_literal_start] = ACTIONS(4303), - [sym__symbol_array_percent_literal_start] = ACTIONS(4303), - [sym__regex_percent_literal_start] = ACTIONS(4303), - [sym_heredoc_start] = ACTIONS(4303), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4303), + [sym_identifier] = ACTIONS(3269), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3269), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [aux_sym_integer_token2] = ACTIONS(3269), + [aux_sym_float_token2] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [sym_operator_symbol] = ACTIONS(3267), + [sym_unquoted_symbol] = ACTIONS(3267), + [anon_sym_COLON_DQUOTE] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3267), + [anon_sym_end] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3267), + [anon_sym_GT_GT] = ACTIONS(3267), + [anon_sym_LT_LT] = ACTIONS(3267), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ_GT] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_AMP_STAR] = ACTIONS(3269), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3269), + [anon_sym_instance_sizeof] = ACTIONS(3269), + [anon_sym_offsetof] = ACTIONS(3269), + [sym__constant_segment] = ACTIONS(3267), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym___LINE__] = ACTIONS(3269), + [anon_sym___END_LINE__] = ACTIONS(3269), + [anon_sym___FILE__] = ACTIONS(3269), + [anon_sym___DIR__] = ACTIONS(3269), + [sym_special_variable] = ACTIONS(3267), + [sym_identifier_method_call] = ACTIONS(3267), + [sym_instance_var] = ACTIONS(3267), + [sym_class_var] = ACTIONS(3267), + [sym_self] = ACTIONS(3269), + [anon_sym_LPAREN2] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3267), + [anon_sym_PIPE_PIPE] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_begin] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_until] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [sym__line_break] = ACTIONS(3267), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3267), + [sym__start_of_hash_or_tuple] = ACTIONS(3267), + [sym__start_of_named_tuple] = ACTIONS(3267), + [sym__start_of_index_operator] = ACTIONS(3267), + [sym_unary_plus] = ACTIONS(3267), + [sym_unary_minus] = ACTIONS(3267), + [sym_binary_plus] = ACTIONS(3267), + [sym_binary_minus] = ACTIONS(3267), + [sym_unary_wrapping_plus] = ACTIONS(3267), + [sym_unary_wrapping_minus] = ACTIONS(3267), + [sym_binary_wrapping_plus] = ACTIONS(3267), + [sym_binary_wrapping_minus] = ACTIONS(3267), + [sym__unary_star] = ACTIONS(3267), + [sym__binary_star] = ACTIONS(3267), + [sym__unary_double_star] = ACTIONS(3267), + [sym__binary_double_star] = ACTIONS(3267), + [sym__block_ampersand] = ACTIONS(3267), + [sym_binary_ampersand] = ACTIONS(3267), + [sym__beginless_range_operator] = ACTIONS(3267), + [sym__regex_start] = ACTIONS(3267), + [sym__binary_slash] = ACTIONS(3267), + [sym__binary_double_slash] = ACTIONS(3267), + [sym__regular_if_keyword] = ACTIONS(3267), + [sym__modifier_if_keyword] = ACTIONS(3267), + [sym__regular_unless_keyword] = ACTIONS(3267), + [sym__modifier_unless_keyword] = ACTIONS(3267), + [sym__modifier_rescue_keyword] = ACTIONS(3267), + [sym__regular_ensure_keyword] = ACTIONS(3267), + [sym__modifier_ensure_keyword] = ACTIONS(3267), + [sym__modulo_operator] = ACTIONS(3267), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3267), + [sym__command_percent_literal_start] = ACTIONS(3267), + [sym__string_array_percent_literal_start] = ACTIONS(3267), + [sym__symbol_array_percent_literal_start] = ACTIONS(3267), + [sym__regex_percent_literal_start] = ACTIONS(3267), + [sym_heredoc_start] = ACTIONS(3267), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3267), }, [1966] = { [sym_heredoc_body] = STATE(1966), - [sym_identifier] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_LPAREN] = ACTIONS(4301), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4301), - [sym_true] = ACTIONS(4301), - [sym_false] = ACTIONS(4301), - [aux_sym_integer_token2] = ACTIONS(4301), - [aux_sym_float_token2] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_operator_symbol] = ACTIONS(4299), - [sym_unquoted_symbol] = ACTIONS(4299), - [anon_sym_COLON_DQUOTE] = ACTIONS(4299), - [anon_sym_BQUOTE] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [anon_sym_COMMA] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4299), - [anon_sym_DASH_GT] = ACTIONS(4299), - [anon_sym_end] = ACTIONS(4301), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_PIPE] = ACTIONS(4301), - [anon_sym_CARET] = ACTIONS(4299), - [anon_sym_GT_GT] = ACTIONS(4299), - [anon_sym_LT_LT] = ACTIONS(4299), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ_GT] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4299), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_TILDE] = ACTIONS(4299), - [anon_sym_BANG_TILDE] = ACTIONS(4299), - [anon_sym_EQ_TILDE] = ACTIONS(4299), - [anon_sym_AMP_STAR] = ACTIONS(4301), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_with] = ACTIONS(4301), - [anon_sym_yield] = ACTIONS(4301), - [anon_sym_typeof] = ACTIONS(4301), - [anon_sym_sizeof] = ACTIONS(4301), - [anon_sym_instance_sizeof] = ACTIONS(4301), - [anon_sym_offsetof] = ACTIONS(4301), - [sym__constant_segment] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4299), - [anon_sym___LINE__] = ACTIONS(4301), - [anon_sym___END_LINE__] = ACTIONS(4301), - [anon_sym___FILE__] = ACTIONS(4301), - [anon_sym___DIR__] = ACTIONS(4301), - [sym_special_variable] = ACTIONS(4299), - [sym_identifier_method_call] = ACTIONS(4299), - [sym_instance_var] = ACTIONS(4299), - [sym_class_var] = ACTIONS(4299), - [sym_self] = ACTIONS(4301), - [anon_sym_LPAREN2] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4299), - [anon_sym_AMP_AMP] = ACTIONS(4299), - [anon_sym_PIPE_PIPE] = ACTIONS(4299), - [anon_sym_do] = ACTIONS(4301), - [anon_sym_begin] = ACTIONS(4301), - [anon_sym_while] = ACTIONS(4301), - [anon_sym_until] = ACTIONS(4301), - [anon_sym_case] = ACTIONS(4301), - [sym__line_break] = ACTIONS(4299), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4299), - [sym__start_of_hash_or_tuple] = ACTIONS(4299), - [sym__start_of_named_tuple] = ACTIONS(4299), - [sym__start_of_index_operator] = ACTIONS(4299), - [sym_unary_plus] = ACTIONS(4299), - [sym_unary_minus] = ACTIONS(4299), - [sym_binary_plus] = ACTIONS(4299), - [sym_binary_minus] = ACTIONS(4299), - [sym_unary_wrapping_plus] = ACTIONS(4299), - [sym_unary_wrapping_minus] = ACTIONS(4299), - [sym_binary_wrapping_plus] = ACTIONS(4299), - [sym_binary_wrapping_minus] = ACTIONS(4299), - [sym__unary_star] = ACTIONS(4299), - [sym__binary_star] = ACTIONS(4299), - [sym__unary_double_star] = ACTIONS(4299), - [sym__binary_double_star] = ACTIONS(4299), - [sym__block_ampersand] = ACTIONS(4299), - [sym_binary_ampersand] = ACTIONS(4299), - [sym__beginless_range_operator] = ACTIONS(4299), - [sym__regex_start] = ACTIONS(4299), - [sym__binary_slash] = ACTIONS(4299), - [sym__binary_double_slash] = ACTIONS(4299), - [sym__regular_if_keyword] = ACTIONS(4299), - [sym__modifier_if_keyword] = ACTIONS(4299), - [sym__regular_unless_keyword] = ACTIONS(4299), - [sym__modifier_unless_keyword] = ACTIONS(4299), - [sym__modifier_rescue_keyword] = ACTIONS(4299), - [sym__regular_ensure_keyword] = ACTIONS(4299), - [sym__modifier_ensure_keyword] = ACTIONS(4299), - [sym__modulo_operator] = ACTIONS(4299), - [sym__string_literal_start] = ACTIONS(4299), - [sym__string_percent_literal_start] = ACTIONS(4299), - [sym__command_percent_literal_start] = ACTIONS(4299), - [sym__string_array_percent_literal_start] = ACTIONS(4299), - [sym__symbol_array_percent_literal_start] = ACTIONS(4299), - [sym__regex_percent_literal_start] = ACTIONS(4299), - [sym_heredoc_start] = ACTIONS(4299), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4299), + [sym_identifier] = ACTIONS(4338), + [anon_sym_SEMI] = ACTIONS(4336), + [anon_sym_LPAREN] = ACTIONS(4338), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4338), + [sym_true] = ACTIONS(4338), + [sym_false] = ACTIONS(4338), + [aux_sym_integer_token2] = ACTIONS(4338), + [aux_sym_float_token2] = ACTIONS(4336), + [anon_sym_SQUOTE] = ACTIONS(4336), + [sym_operator_symbol] = ACTIONS(4336), + [sym_unquoted_symbol] = ACTIONS(4336), + [anon_sym_COLON_DQUOTE] = ACTIONS(4336), + [anon_sym_BQUOTE] = ACTIONS(4336), + [anon_sym_LBRACK] = ACTIONS(4336), + [anon_sym_COMMA] = ACTIONS(4336), + [anon_sym_DOT_DOT] = ACTIONS(4338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4336), + [anon_sym_DASH_GT] = ACTIONS(4336), + [anon_sym_end] = ACTIONS(4338), + [anon_sym_LT] = ACTIONS(4338), + [anon_sym_PIPE] = ACTIONS(4338), + [anon_sym_CARET] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4336), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_EQ_EQ] = ACTIONS(4338), + [anon_sym_BANG_EQ] = ACTIONS(4336), + [anon_sym_LT_EQ] = ACTIONS(4338), + [anon_sym_GT] = ACTIONS(4338), + [anon_sym_GT_EQ] = ACTIONS(4336), + [anon_sym_LT_EQ_GT] = ACTIONS(4336), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4336), + [anon_sym_BANG] = ACTIONS(4338), + [anon_sym_TILDE] = ACTIONS(4336), + [anon_sym_BANG_TILDE] = ACTIONS(4336), + [anon_sym_EQ_TILDE] = ACTIONS(4336), + [anon_sym_AMP_STAR] = ACTIONS(4338), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4336), + [anon_sym_DOT] = ACTIONS(4338), + [anon_sym_with] = ACTIONS(4338), + [anon_sym_yield] = ACTIONS(4338), + [anon_sym_typeof] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4338), + [anon_sym_instance_sizeof] = ACTIONS(4338), + [anon_sym_offsetof] = ACTIONS(4338), + [sym__constant_segment] = ACTIONS(4336), + [anon_sym_COLON_COLON] = ACTIONS(4336), + [anon_sym___LINE__] = ACTIONS(4338), + [anon_sym___END_LINE__] = ACTIONS(4338), + [anon_sym___FILE__] = ACTIONS(4338), + [anon_sym___DIR__] = ACTIONS(4338), + [sym_special_variable] = ACTIONS(4336), + [sym_identifier_method_call] = ACTIONS(4336), + [sym_instance_var] = ACTIONS(4336), + [sym_class_var] = ACTIONS(4336), + [sym_self] = ACTIONS(4338), + [anon_sym_LPAREN2] = ACTIONS(4336), + [anon_sym_QMARK] = ACTIONS(4336), + [anon_sym_AMP_AMP] = ACTIONS(4336), + [anon_sym_PIPE_PIPE] = ACTIONS(4336), + [anon_sym_do] = ACTIONS(4338), + [anon_sym_begin] = ACTIONS(4338), + [anon_sym_while] = ACTIONS(4338), + [anon_sym_until] = ACTIONS(4338), + [anon_sym_case] = ACTIONS(4338), + [anon_sym_select] = ACTIONS(4338), + [sym__line_break] = ACTIONS(4336), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4336), + [sym__start_of_hash_or_tuple] = ACTIONS(4336), + [sym__start_of_named_tuple] = ACTIONS(4336), + [sym__start_of_index_operator] = ACTIONS(4336), + [sym_unary_plus] = ACTIONS(4336), + [sym_unary_minus] = ACTIONS(4336), + [sym_binary_plus] = ACTIONS(4336), + [sym_binary_minus] = ACTIONS(4336), + [sym_unary_wrapping_plus] = ACTIONS(4336), + [sym_unary_wrapping_minus] = ACTIONS(4336), + [sym_binary_wrapping_plus] = ACTIONS(4336), + [sym_binary_wrapping_minus] = ACTIONS(4336), + [sym__unary_star] = ACTIONS(4336), + [sym__binary_star] = ACTIONS(4336), + [sym__unary_double_star] = ACTIONS(4336), + [sym__binary_double_star] = ACTIONS(4336), + [sym__block_ampersand] = ACTIONS(4336), + [sym_binary_ampersand] = ACTIONS(4336), + [sym__beginless_range_operator] = ACTIONS(4336), + [sym__regex_start] = ACTIONS(4336), + [sym__binary_slash] = ACTIONS(4336), + [sym__binary_double_slash] = ACTIONS(4336), + [sym__regular_if_keyword] = ACTIONS(4336), + [sym__modifier_if_keyword] = ACTIONS(4336), + [sym__regular_unless_keyword] = ACTIONS(4336), + [sym__modifier_unless_keyword] = ACTIONS(4336), + [sym__modifier_rescue_keyword] = ACTIONS(4336), + [sym__regular_ensure_keyword] = ACTIONS(4336), + [sym__modifier_ensure_keyword] = ACTIONS(4336), + [sym__modulo_operator] = ACTIONS(4336), + [sym__string_literal_start] = ACTIONS(4336), + [sym__string_percent_literal_start] = ACTIONS(4336), + [sym__command_percent_literal_start] = ACTIONS(4336), + [sym__string_array_percent_literal_start] = ACTIONS(4336), + [sym__symbol_array_percent_literal_start] = ACTIONS(4336), + [sym__regex_percent_literal_start] = ACTIONS(4336), + [sym_heredoc_start] = ACTIONS(4336), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4336), }, [1967] = { [sym_heredoc_body] = STATE(1967), - [sym_identifier] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3238), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [sym_operator_symbol] = ACTIONS(3236), - [sym_unquoted_symbol] = ACTIONS(3236), - [anon_sym_COLON_DQUOTE] = ACTIONS(3236), - [anon_sym_BQUOTE] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_COMMA] = ACTIONS(3236), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_DASH_GT] = ACTIONS(3236), - [anon_sym_end] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3236), - [anon_sym_GT_GT] = ACTIONS(3236), - [anon_sym_LT_LT] = ACTIONS(3236), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ_GT] = ACTIONS(3236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG_TILDE] = ACTIONS(3236), - [anon_sym_EQ_TILDE] = ACTIONS(3236), - [anon_sym_AMP_STAR] = ACTIONS(3238), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3236), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym_instance_sizeof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [sym__constant_segment] = ACTIONS(3236), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym___LINE__] = ACTIONS(3238), - [anon_sym___END_LINE__] = ACTIONS(3238), - [anon_sym___FILE__] = ACTIONS(3238), - [anon_sym___DIR__] = ACTIONS(3238), - [sym_special_variable] = ACTIONS(3236), - [sym_identifier_method_call] = ACTIONS(3236), - [sym_instance_var] = ACTIONS(3236), - [sym_class_var] = ACTIONS(3236), - [sym_self] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3236), - [anon_sym_PIPE_PIPE] = ACTIONS(3236), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_begin] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_until] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [sym__line_break] = ACTIONS(3236), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3236), - [sym__start_of_hash_or_tuple] = ACTIONS(3236), - [sym__start_of_named_tuple] = ACTIONS(3236), - [sym__start_of_index_operator] = ACTIONS(3236), - [sym_unary_plus] = ACTIONS(3236), - [sym_unary_minus] = ACTIONS(3236), - [sym_binary_plus] = ACTIONS(3236), - [sym_binary_minus] = ACTIONS(3236), - [sym_unary_wrapping_plus] = ACTIONS(3236), - [sym_unary_wrapping_minus] = ACTIONS(3236), - [sym_binary_wrapping_plus] = ACTIONS(3236), - [sym_binary_wrapping_minus] = ACTIONS(3236), - [sym__unary_star] = ACTIONS(3236), - [sym__binary_star] = ACTIONS(3236), - [sym__unary_double_star] = ACTIONS(3236), - [sym__binary_double_star] = ACTIONS(3236), - [sym__block_ampersand] = ACTIONS(3236), - [sym_binary_ampersand] = ACTIONS(3236), - [sym__beginless_range_operator] = ACTIONS(3236), - [sym__regex_start] = ACTIONS(3236), - [sym__binary_slash] = ACTIONS(3236), - [sym__binary_double_slash] = ACTIONS(3236), - [sym__regular_if_keyword] = ACTIONS(3236), - [sym__modifier_if_keyword] = ACTIONS(3236), - [sym__regular_unless_keyword] = ACTIONS(3236), - [sym__modifier_unless_keyword] = ACTIONS(3236), - [sym__modifier_rescue_keyword] = ACTIONS(3236), - [sym__regular_ensure_keyword] = ACTIONS(3236), - [sym__modifier_ensure_keyword] = ACTIONS(3236), - [sym__modulo_operator] = ACTIONS(3236), - [sym__string_literal_start] = ACTIONS(3236), - [sym__string_percent_literal_start] = ACTIONS(3236), - [sym__command_percent_literal_start] = ACTIONS(3236), - [sym__string_array_percent_literal_start] = ACTIONS(3236), - [sym__symbol_array_percent_literal_start] = ACTIONS(3236), - [sym__regex_percent_literal_start] = ACTIONS(3236), - [sym_heredoc_start] = ACTIONS(3236), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3236), + [sym_identifier] = ACTIONS(4346), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4346), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4346), + [sym_true] = ACTIONS(4346), + [sym_false] = ACTIONS(4346), + [aux_sym_integer_token2] = ACTIONS(4346), + [aux_sym_float_token2] = ACTIONS(4344), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym_operator_symbol] = ACTIONS(4344), + [sym_unquoted_symbol] = ACTIONS(4344), + [anon_sym_COLON_DQUOTE] = ACTIONS(4344), + [anon_sym_BQUOTE] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_DOT_DOT] = ACTIONS(4346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4344), + [anon_sym_DASH_GT] = ACTIONS(4344), + [anon_sym_end] = ACTIONS(4346), + [anon_sym_LT] = ACTIONS(4346), + [anon_sym_PIPE] = ACTIONS(4346), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_GT_GT] = ACTIONS(4344), + [anon_sym_LT_LT] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4346), + [anon_sym_BANG_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4346), + [anon_sym_GT] = ACTIONS(4346), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ_GT] = ACTIONS(4344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4346), + [anon_sym_TILDE] = ACTIONS(4344), + [anon_sym_BANG_TILDE] = ACTIONS(4344), + [anon_sym_EQ_TILDE] = ACTIONS(4344), + [anon_sym_AMP_STAR] = ACTIONS(4346), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4346), + [anon_sym_with] = ACTIONS(4346), + [anon_sym_yield] = ACTIONS(4346), + [anon_sym_typeof] = ACTIONS(4346), + [anon_sym_sizeof] = ACTIONS(4346), + [anon_sym_instance_sizeof] = ACTIONS(4346), + [anon_sym_offsetof] = ACTIONS(4346), + [sym__constant_segment] = ACTIONS(4344), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym___LINE__] = ACTIONS(4346), + [anon_sym___END_LINE__] = ACTIONS(4346), + [anon_sym___FILE__] = ACTIONS(4346), + [anon_sym___DIR__] = ACTIONS(4346), + [sym_special_variable] = ACTIONS(4344), + [sym_identifier_method_call] = ACTIONS(4344), + [sym_instance_var] = ACTIONS(4344), + [sym_class_var] = ACTIONS(4344), + [sym_self] = ACTIONS(4346), + [anon_sym_LPAREN2] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_do] = ACTIONS(4346), + [anon_sym_begin] = ACTIONS(4346), + [anon_sym_while] = ACTIONS(4346), + [anon_sym_until] = ACTIONS(4346), + [anon_sym_case] = ACTIONS(4346), + [anon_sym_select] = ACTIONS(4346), + [sym__line_break] = ACTIONS(4344), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4344), + [sym__start_of_hash_or_tuple] = ACTIONS(4344), + [sym__start_of_named_tuple] = ACTIONS(4344), + [sym__start_of_index_operator] = ACTIONS(4344), + [sym_unary_plus] = ACTIONS(4344), + [sym_unary_minus] = ACTIONS(4344), + [sym_binary_plus] = ACTIONS(4344), + [sym_binary_minus] = ACTIONS(4344), + [sym_unary_wrapping_plus] = ACTIONS(4344), + [sym_unary_wrapping_minus] = ACTIONS(4344), + [sym_binary_wrapping_plus] = ACTIONS(4344), + [sym_binary_wrapping_minus] = ACTIONS(4344), + [sym__unary_star] = ACTIONS(4344), + [sym__binary_star] = ACTIONS(4344), + [sym__unary_double_star] = ACTIONS(4344), + [sym__binary_double_star] = ACTIONS(4344), + [sym__block_ampersand] = ACTIONS(4344), + [sym_binary_ampersand] = ACTIONS(4344), + [sym__beginless_range_operator] = ACTIONS(4344), + [sym__regex_start] = ACTIONS(4344), + [sym__binary_slash] = ACTIONS(4344), + [sym__binary_double_slash] = ACTIONS(4344), + [sym__regular_if_keyword] = ACTIONS(4344), + [sym__modifier_if_keyword] = ACTIONS(4344), + [sym__regular_unless_keyword] = ACTIONS(4344), + [sym__modifier_unless_keyword] = ACTIONS(4344), + [sym__modifier_rescue_keyword] = ACTIONS(4344), + [sym__regular_ensure_keyword] = ACTIONS(4344), + [sym__modifier_ensure_keyword] = ACTIONS(4344), + [sym__modulo_operator] = ACTIONS(4344), + [sym__string_literal_start] = ACTIONS(4344), + [sym__string_percent_literal_start] = ACTIONS(4344), + [sym__command_percent_literal_start] = ACTIONS(4344), + [sym__string_array_percent_literal_start] = ACTIONS(4344), + [sym__symbol_array_percent_literal_start] = ACTIONS(4344), + [sym__regex_percent_literal_start] = ACTIONS(4344), + [sym_heredoc_start] = ACTIONS(4344), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4344), }, [1968] = { [sym_heredoc_body] = STATE(1968), - [sym_identifier] = ACTIONS(4309), - [anon_sym_SEMI] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4309), - [sym_true] = ACTIONS(4309), - [sym_false] = ACTIONS(4309), - [aux_sym_integer_token2] = ACTIONS(4309), - [aux_sym_float_token2] = ACTIONS(4307), - [anon_sym_SQUOTE] = ACTIONS(4307), - [sym_operator_symbol] = ACTIONS(4307), - [sym_unquoted_symbol] = ACTIONS(4307), - [anon_sym_COLON_DQUOTE] = ACTIONS(4307), - [anon_sym_BQUOTE] = ACTIONS(4307), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_COMMA] = ACTIONS(4307), - [anon_sym_DOT_DOT] = ACTIONS(4309), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4307), - [anon_sym_DASH_GT] = ACTIONS(4307), - [anon_sym_end] = ACTIONS(4309), - [anon_sym_LT] = ACTIONS(4309), - [anon_sym_PIPE] = ACTIONS(4309), - [anon_sym_CARET] = ACTIONS(4307), - [anon_sym_GT_GT] = ACTIONS(4307), - [anon_sym_LT_LT] = ACTIONS(4307), - [anon_sym_EQ_EQ] = ACTIONS(4309), - [anon_sym_BANG_EQ] = ACTIONS(4307), - [anon_sym_LT_EQ] = ACTIONS(4309), - [anon_sym_GT] = ACTIONS(4309), - [anon_sym_GT_EQ] = ACTIONS(4307), - [anon_sym_LT_EQ_GT] = ACTIONS(4307), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), - [anon_sym_BANG] = ACTIONS(4309), - [anon_sym_TILDE] = ACTIONS(4307), - [anon_sym_BANG_TILDE] = ACTIONS(4307), - [anon_sym_EQ_TILDE] = ACTIONS(4307), - [anon_sym_AMP_STAR] = ACTIONS(4309), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4307), - [anon_sym_DOT] = ACTIONS(4309), - [anon_sym_with] = ACTIONS(4309), - [anon_sym_yield] = ACTIONS(4309), - [anon_sym_typeof] = ACTIONS(4309), - [anon_sym_sizeof] = ACTIONS(4309), - [anon_sym_instance_sizeof] = ACTIONS(4309), - [anon_sym_offsetof] = ACTIONS(4309), - [sym__constant_segment] = ACTIONS(4307), - [anon_sym_COLON_COLON] = ACTIONS(4307), - [anon_sym___LINE__] = ACTIONS(4309), - [anon_sym___END_LINE__] = ACTIONS(4309), - [anon_sym___FILE__] = ACTIONS(4309), - [anon_sym___DIR__] = ACTIONS(4309), - [sym_special_variable] = ACTIONS(4307), - [sym_identifier_method_call] = ACTIONS(4307), - [sym_instance_var] = ACTIONS(4307), - [sym_class_var] = ACTIONS(4307), - [sym_self] = ACTIONS(4309), - [anon_sym_LPAREN2] = ACTIONS(4307), - [anon_sym_QMARK] = ACTIONS(4307), - [anon_sym_AMP_AMP] = ACTIONS(4307), - [anon_sym_PIPE_PIPE] = ACTIONS(4307), - [anon_sym_do] = ACTIONS(4309), - [anon_sym_begin] = ACTIONS(4309), - [anon_sym_while] = ACTIONS(4309), - [anon_sym_until] = ACTIONS(4309), - [anon_sym_case] = ACTIONS(4309), - [sym__line_break] = ACTIONS(4307), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4307), - [sym__start_of_hash_or_tuple] = ACTIONS(4307), - [sym__start_of_named_tuple] = ACTIONS(4307), - [sym__start_of_index_operator] = ACTIONS(4307), - [sym_unary_plus] = ACTIONS(4307), - [sym_unary_minus] = ACTIONS(4307), - [sym_binary_plus] = ACTIONS(4307), - [sym_binary_minus] = ACTIONS(4307), - [sym_unary_wrapping_plus] = ACTIONS(4307), - [sym_unary_wrapping_minus] = ACTIONS(4307), - [sym_binary_wrapping_plus] = ACTIONS(4307), - [sym_binary_wrapping_minus] = ACTIONS(4307), - [sym__unary_star] = ACTIONS(4307), - [sym__binary_star] = ACTIONS(4307), - [sym__unary_double_star] = ACTIONS(4307), - [sym__binary_double_star] = ACTIONS(4307), - [sym__block_ampersand] = ACTIONS(4307), - [sym_binary_ampersand] = ACTIONS(4307), - [sym__beginless_range_operator] = ACTIONS(4307), - [sym__regex_start] = ACTIONS(4307), - [sym__binary_slash] = ACTIONS(4307), - [sym__binary_double_slash] = ACTIONS(4307), - [sym__regular_if_keyword] = ACTIONS(4307), - [sym__modifier_if_keyword] = ACTIONS(4307), - [sym__regular_unless_keyword] = ACTIONS(4307), - [sym__modifier_unless_keyword] = ACTIONS(4307), - [sym__modifier_rescue_keyword] = ACTIONS(4307), - [sym__regular_ensure_keyword] = ACTIONS(4307), - [sym__modifier_ensure_keyword] = ACTIONS(4307), - [sym__modulo_operator] = ACTIONS(4307), - [sym__string_literal_start] = ACTIONS(4307), - [sym__string_percent_literal_start] = ACTIONS(4307), - [sym__command_percent_literal_start] = ACTIONS(4307), - [sym__string_array_percent_literal_start] = ACTIONS(4307), - [sym__symbol_array_percent_literal_start] = ACTIONS(4307), - [sym__regex_percent_literal_start] = ACTIONS(4307), - [sym_heredoc_start] = ACTIONS(4307), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4307), + [sym_identifier] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4340), + [anon_sym_LPAREN] = ACTIONS(4342), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4342), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [aux_sym_integer_token2] = ACTIONS(4342), + [aux_sym_float_token2] = ACTIONS(4340), + [anon_sym_SQUOTE] = ACTIONS(4340), + [sym_operator_symbol] = ACTIONS(4340), + [sym_unquoted_symbol] = ACTIONS(4340), + [anon_sym_COLON_DQUOTE] = ACTIONS(4340), + [anon_sym_BQUOTE] = ACTIONS(4340), + [anon_sym_LBRACK] = ACTIONS(4340), + [anon_sym_COMMA] = ACTIONS(4340), + [anon_sym_DOT_DOT] = ACTIONS(4342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4340), + [anon_sym_DASH_GT] = ACTIONS(4340), + [anon_sym_end] = ACTIONS(4342), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_PIPE] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4340), + [anon_sym_GT_GT] = ACTIONS(4340), + [anon_sym_LT_LT] = ACTIONS(4340), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ] = ACTIONS(4340), + [anon_sym_LT_EQ] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4340), + [anon_sym_LT_EQ_GT] = ACTIONS(4340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4340), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_TILDE] = ACTIONS(4340), + [anon_sym_BANG_TILDE] = ACTIONS(4340), + [anon_sym_EQ_TILDE] = ACTIONS(4340), + [anon_sym_AMP_STAR] = ACTIONS(4342), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4340), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_with] = ACTIONS(4342), + [anon_sym_yield] = ACTIONS(4342), + [anon_sym_typeof] = ACTIONS(4342), + [anon_sym_sizeof] = ACTIONS(4342), + [anon_sym_instance_sizeof] = ACTIONS(4342), + [anon_sym_offsetof] = ACTIONS(4342), + [sym__constant_segment] = ACTIONS(4340), + [anon_sym_COLON_COLON] = ACTIONS(4340), + [anon_sym___LINE__] = ACTIONS(4342), + [anon_sym___END_LINE__] = ACTIONS(4342), + [anon_sym___FILE__] = ACTIONS(4342), + [anon_sym___DIR__] = ACTIONS(4342), + [sym_special_variable] = ACTIONS(4340), + [sym_identifier_method_call] = ACTIONS(4340), + [sym_instance_var] = ACTIONS(4340), + [sym_class_var] = ACTIONS(4340), + [sym_self] = ACTIONS(4342), + [anon_sym_LPAREN2] = ACTIONS(4340), + [anon_sym_QMARK] = ACTIONS(4340), + [anon_sym_AMP_AMP] = ACTIONS(4340), + [anon_sym_PIPE_PIPE] = ACTIONS(4340), + [anon_sym_do] = ACTIONS(4342), + [anon_sym_begin] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_until] = ACTIONS(4342), + [anon_sym_case] = ACTIONS(4342), + [anon_sym_select] = ACTIONS(4342), + [sym__line_break] = ACTIONS(4340), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4340), + [sym__start_of_hash_or_tuple] = ACTIONS(4340), + [sym__start_of_named_tuple] = ACTIONS(4340), + [sym__start_of_index_operator] = ACTIONS(4340), + [sym_unary_plus] = ACTIONS(4340), + [sym_unary_minus] = ACTIONS(4340), + [sym_binary_plus] = ACTIONS(4340), + [sym_binary_minus] = ACTIONS(4340), + [sym_unary_wrapping_plus] = ACTIONS(4340), + [sym_unary_wrapping_minus] = ACTIONS(4340), + [sym_binary_wrapping_plus] = ACTIONS(4340), + [sym_binary_wrapping_minus] = ACTIONS(4340), + [sym__unary_star] = ACTIONS(4340), + [sym__binary_star] = ACTIONS(4340), + [sym__unary_double_star] = ACTIONS(4340), + [sym__binary_double_star] = ACTIONS(4340), + [sym__block_ampersand] = ACTIONS(4340), + [sym_binary_ampersand] = ACTIONS(4340), + [sym__beginless_range_operator] = ACTIONS(4340), + [sym__regex_start] = ACTIONS(4340), + [sym__binary_slash] = ACTIONS(4340), + [sym__binary_double_slash] = ACTIONS(4340), + [sym__regular_if_keyword] = ACTIONS(4340), + [sym__modifier_if_keyword] = ACTIONS(4340), + [sym__regular_unless_keyword] = ACTIONS(4340), + [sym__modifier_unless_keyword] = ACTIONS(4340), + [sym__modifier_rescue_keyword] = ACTIONS(4340), + [sym__regular_ensure_keyword] = ACTIONS(4340), + [sym__modifier_ensure_keyword] = ACTIONS(4340), + [sym__modulo_operator] = ACTIONS(4340), + [sym__string_literal_start] = ACTIONS(4340), + [sym__string_percent_literal_start] = ACTIONS(4340), + [sym__command_percent_literal_start] = ACTIONS(4340), + [sym__string_array_percent_literal_start] = ACTIONS(4340), + [sym__symbol_array_percent_literal_start] = ACTIONS(4340), + [sym__regex_percent_literal_start] = ACTIONS(4340), + [sym_heredoc_start] = ACTIONS(4340), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4340), }, [1969] = { [sym_heredoc_body] = STATE(1969), - [sym_typeof] = STATE(2012), - [sym_constant] = STATE(2006), - [sym__type] = STATE(2007), - [sym_class_type] = STATE(2012), - [sym_union_type] = STATE(2012), - [sym__parenthesized_type] = STATE(2012), - [sym_no_args_proc_type] = STATE(2012), - [sym_parenthesized_proc_type] = STATE(2012), - [sym_tuple_type] = STATE(2012), - [sym_named_tuple_type] = STATE(2012), - [sym_generic_instance_type] = STATE(2012), - [sym_nilable_type] = STATE(2012), - [sym_pointer_type] = STATE(2012), - [sym_static_array_type] = STATE(2012), - [sym_identifier] = ACTIONS(4323), - [anon_sym_SEMI] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(4327), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4323), - [sym_true] = ACTIONS(4323), - [sym_false] = ACTIONS(4323), - [aux_sym_integer_token2] = ACTIONS(4323), - [aux_sym_float_token2] = ACTIONS(4325), - [anon_sym_SQUOTE] = ACTIONS(4325), - [sym_operator_symbol] = ACTIONS(4325), - [sym_unquoted_symbol] = ACTIONS(4325), - [anon_sym_COLON_DQUOTE] = ACTIONS(4325), - [anon_sym_BQUOTE] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(4330), - [anon_sym_annotation] = ACTIONS(4323), - [anon_sym_end] = ACTIONS(4323), - [anon_sym_AT_LBRACK] = ACTIONS(4325), - [anon_sym_private] = ACTIONS(4323), - [anon_sym_module] = ACTIONS(4323), - [anon_sym_abstract] = ACTIONS(4323), - [anon_sym_class] = ACTIONS(4323), - [anon_sym_struct] = ACTIONS(4323), - [anon_sym_enum] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4325), - [anon_sym_BANG] = ACTIONS(4325), - [anon_sym_TILDE] = ACTIONS(4325), - [anon_sym_def] = ACTIONS(4323), - [anon_sym_DOT] = ACTIONS(4325), - [anon_sym_protected] = ACTIONS(4323), - [anon_sym_include] = ACTIONS(4323), - [anon_sym_extend] = ACTIONS(4323), - [anon_sym_forall] = ACTIONS(4323), - [anon_sym_return] = ACTIONS(4323), - [anon_sym_next] = ACTIONS(4323), - [anon_sym_break] = ACTIONS(4323), - [anon_sym_with] = ACTIONS(4323), - [anon_sym_yield] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(4333), - [anon_sym_sizeof] = ACTIONS(4323), - [anon_sym_instance_sizeof] = ACTIONS(4323), - [anon_sym_offsetof] = ACTIONS(4323), - [sym__constant_segment] = ACTIONS(4336), - [anon_sym_COLON_COLON] = ACTIONS(4339), - [anon_sym___LINE__] = ACTIONS(4323), - [anon_sym___END_LINE__] = ACTIONS(4323), - [anon_sym___FILE__] = ACTIONS(4323), - [anon_sym___DIR__] = ACTIONS(4323), - [sym_special_variable] = ACTIONS(4325), - [sym_identifier_method_call] = ACTIONS(4325), - [sym_instance_var] = ACTIONS(4325), - [sym_class_var] = ACTIONS(4325), - [sym_self] = ACTIONS(4342), - [sym_underscore_type] = ACTIONS(4345), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_alias] = ACTIONS(4323), - [anon_sym_begin] = ACTIONS(4323), - [anon_sym_while] = ACTIONS(4323), - [anon_sym_until] = ACTIONS(4323), - [anon_sym_else] = ACTIONS(4323), - [anon_sym_require] = ACTIONS(4323), - [anon_sym_case] = ACTIONS(4323), - [sym__line_break] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4325), - [sym__start_of_named_tuple] = ACTIONS(4325), - [sym__start_of_tuple_type] = ACTIONS(4347), - [sym__start_of_named_tuple_type] = ACTIONS(4349), - [sym_unary_plus] = ACTIONS(4325), - [sym_unary_minus] = ACTIONS(4325), - [sym_unary_wrapping_plus] = ACTIONS(4325), - [sym_unary_wrapping_minus] = ACTIONS(4325), - [sym__beginless_range_operator] = ACTIONS(4325), - [sym__regex_start] = ACTIONS(4325), - [sym__regular_if_keyword] = ACTIONS(4325), - [sym__regular_unless_keyword] = ACTIONS(4325), - [sym__regular_rescue_keyword] = ACTIONS(4325), - [sym__regular_ensure_keyword] = ACTIONS(4325), - [sym__string_literal_start] = ACTIONS(4325), - [sym__string_percent_literal_start] = ACTIONS(4325), - [sym__command_percent_literal_start] = ACTIONS(4325), - [sym__string_array_percent_literal_start] = ACTIONS(4325), - [sym__symbol_array_percent_literal_start] = ACTIONS(4325), - [sym__regex_percent_literal_start] = ACTIONS(4325), - [sym_heredoc_start] = ACTIONS(4325), + [sym_typeof] = STATE(2024), + [sym_constant] = STATE(2008), + [sym__type] = STATE(2000), + [sym_class_type] = STATE(2024), + [sym_union_type] = STATE(2024), + [sym__parenthesized_type] = STATE(2024), + [sym_no_args_proc_type] = STATE(2024), + [sym_parenthesized_proc_type] = STATE(2024), + [sym_tuple_type] = STATE(2024), + [sym_named_tuple_type] = STATE(2024), + [sym_generic_instance_type] = STATE(2024), + [sym_nilable_type] = STATE(2024), + [sym_pointer_type] = STATE(2024), + [sym_static_array_type] = STATE(2024), + [sym_identifier] = ACTIONS(4360), + [anon_sym_SEMI] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4364), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4360), + [sym_true] = ACTIONS(4360), + [sym_false] = ACTIONS(4360), + [aux_sym_integer_token2] = ACTIONS(4360), + [aux_sym_float_token2] = ACTIONS(4362), + [anon_sym_SQUOTE] = ACTIONS(4362), + [sym_operator_symbol] = ACTIONS(4362), + [sym_unquoted_symbol] = ACTIONS(4362), + [anon_sym_COLON_DQUOTE] = ACTIONS(4362), + [anon_sym_BQUOTE] = ACTIONS(4362), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(4367), + [anon_sym_annotation] = ACTIONS(4360), + [anon_sym_end] = ACTIONS(4360), + [anon_sym_AT_LBRACK] = ACTIONS(4362), + [anon_sym_private] = ACTIONS(4360), + [anon_sym_module] = ACTIONS(4360), + [anon_sym_abstract] = ACTIONS(4360), + [anon_sym_class] = ACTIONS(4360), + [anon_sym_struct] = ACTIONS(4360), + [anon_sym_enum] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4362), + [anon_sym_TILDE] = ACTIONS(4362), + [anon_sym_def] = ACTIONS(4360), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_protected] = ACTIONS(4360), + [anon_sym_include] = ACTIONS(4360), + [anon_sym_extend] = ACTIONS(4360), + [anon_sym_forall] = ACTIONS(4360), + [anon_sym_return] = ACTIONS(4360), + [anon_sym_next] = ACTIONS(4360), + [anon_sym_break] = ACTIONS(4360), + [anon_sym_with] = ACTIONS(4360), + [anon_sym_yield] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(4360), + [anon_sym_instance_sizeof] = ACTIONS(4360), + [anon_sym_offsetof] = ACTIONS(4360), + [sym__constant_segment] = ACTIONS(4373), + [anon_sym_COLON_COLON] = ACTIONS(4376), + [anon_sym___LINE__] = ACTIONS(4360), + [anon_sym___END_LINE__] = ACTIONS(4360), + [anon_sym___FILE__] = ACTIONS(4360), + [anon_sym___DIR__] = ACTIONS(4360), + [sym_special_variable] = ACTIONS(4362), + [sym_identifier_method_call] = ACTIONS(4362), + [sym_instance_var] = ACTIONS(4362), + [sym_class_var] = ACTIONS(4362), + [sym_self] = ACTIONS(4379), + [sym_underscore_type] = ACTIONS(4382), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_alias] = ACTIONS(4360), + [anon_sym_begin] = ACTIONS(4360), + [anon_sym_while] = ACTIONS(4360), + [anon_sym_until] = ACTIONS(4360), + [anon_sym_else] = ACTIONS(4360), + [anon_sym_require] = ACTIONS(4360), + [anon_sym_case] = ACTIONS(4360), + [anon_sym_select] = ACTIONS(4360), + [sym__line_break] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4362), + [sym__start_of_named_tuple] = ACTIONS(4362), + [sym__start_of_tuple_type] = ACTIONS(4384), + [sym__start_of_named_tuple_type] = ACTIONS(4386), + [sym_unary_plus] = ACTIONS(4362), + [sym_unary_minus] = ACTIONS(4362), + [sym_unary_wrapping_plus] = ACTIONS(4362), + [sym_unary_wrapping_minus] = ACTIONS(4362), + [sym__beginless_range_operator] = ACTIONS(4362), + [sym__regex_start] = ACTIONS(4362), + [sym__regular_if_keyword] = ACTIONS(4362), + [sym__regular_unless_keyword] = ACTIONS(4362), + [sym__regular_rescue_keyword] = ACTIONS(4362), + [sym__regular_ensure_keyword] = ACTIONS(4362), + [sym__string_literal_start] = ACTIONS(4362), + [sym__string_percent_literal_start] = ACTIONS(4362), + [sym__command_percent_literal_start] = ACTIONS(4362), + [sym__string_array_percent_literal_start] = ACTIONS(4362), + [sym__symbol_array_percent_literal_start] = ACTIONS(4362), + [sym__regex_percent_literal_start] = ACTIONS(4362), + [sym_heredoc_start] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [1970] = { [sym_heredoc_body] = STATE(1970), - [sym_typeof] = STATE(2012), - [sym_constant] = STATE(2006), - [sym__type] = STATE(2008), - [sym_class_type] = STATE(2012), - [sym_union_type] = STATE(2012), - [sym__parenthesized_type] = STATE(2012), - [sym_no_args_proc_type] = STATE(2012), - [sym_parenthesized_proc_type] = STATE(2012), - [sym_tuple_type] = STATE(2012), - [sym_named_tuple_type] = STATE(2012), - [sym_generic_instance_type] = STATE(2012), - [sym_nilable_type] = STATE(2012), - [sym_pointer_type] = STATE(2012), - [sym_static_array_type] = STATE(2012), - [sym_identifier] = ACTIONS(4351), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(4355), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4351), - [sym_true] = ACTIONS(4351), - [sym_false] = ACTIONS(4351), - [aux_sym_integer_token2] = ACTIONS(4351), - [aux_sym_float_token2] = ACTIONS(4353), - [anon_sym_SQUOTE] = ACTIONS(4353), - [sym_operator_symbol] = ACTIONS(4353), - [sym_unquoted_symbol] = ACTIONS(4353), - [anon_sym_COLON_DQUOTE] = ACTIONS(4353), - [anon_sym_BQUOTE] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(4358), - [anon_sym_annotation] = ACTIONS(4351), - [anon_sym_end] = ACTIONS(4351), - [anon_sym_AT_LBRACK] = ACTIONS(4353), - [anon_sym_private] = ACTIONS(4351), - [anon_sym_module] = ACTIONS(4351), - [anon_sym_abstract] = ACTIONS(4351), - [anon_sym_class] = ACTIONS(4351), - [anon_sym_struct] = ACTIONS(4351), - [anon_sym_enum] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4353), - [anon_sym_BANG] = ACTIONS(4353), - [anon_sym_TILDE] = ACTIONS(4353), - [anon_sym_def] = ACTIONS(4351), - [anon_sym_DOT] = ACTIONS(4353), - [anon_sym_protected] = ACTIONS(4351), - [anon_sym_include] = ACTIONS(4351), - [anon_sym_extend] = ACTIONS(4351), - [anon_sym_forall] = ACTIONS(4351), - [anon_sym_return] = ACTIONS(4351), - [anon_sym_next] = ACTIONS(4351), - [anon_sym_break] = ACTIONS(4351), - [anon_sym_with] = ACTIONS(4351), - [anon_sym_yield] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(4361), - [anon_sym_sizeof] = ACTIONS(4351), - [anon_sym_instance_sizeof] = ACTIONS(4351), - [anon_sym_offsetof] = ACTIONS(4351), - [sym__constant_segment] = ACTIONS(4364), - [anon_sym_COLON_COLON] = ACTIONS(4367), - [anon_sym___LINE__] = ACTIONS(4351), - [anon_sym___END_LINE__] = ACTIONS(4351), - [anon_sym___FILE__] = ACTIONS(4351), - [anon_sym___DIR__] = ACTIONS(4351), - [sym_special_variable] = ACTIONS(4353), - [sym_identifier_method_call] = ACTIONS(4353), - [sym_instance_var] = ACTIONS(4353), - [sym_class_var] = ACTIONS(4353), - [sym_self] = ACTIONS(4370), - [sym_underscore_type] = ACTIONS(4345), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_alias] = ACTIONS(4351), - [anon_sym_begin] = ACTIONS(4351), - [anon_sym_while] = ACTIONS(4351), - [anon_sym_until] = ACTIONS(4351), - [anon_sym_else] = ACTIONS(4351), - [anon_sym_require] = ACTIONS(4351), - [anon_sym_case] = ACTIONS(4351), - [sym__line_break] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4353), - [sym__start_of_named_tuple] = ACTIONS(4353), - [sym__start_of_tuple_type] = ACTIONS(4347), - [sym__start_of_named_tuple_type] = ACTIONS(4349), - [sym_unary_plus] = ACTIONS(4353), - [sym_unary_minus] = ACTIONS(4353), - [sym_unary_wrapping_plus] = ACTIONS(4353), - [sym_unary_wrapping_minus] = ACTIONS(4353), - [sym__beginless_range_operator] = ACTIONS(4353), - [sym__regex_start] = ACTIONS(4353), - [sym__regular_if_keyword] = ACTIONS(4353), - [sym__regular_unless_keyword] = ACTIONS(4353), - [sym__regular_rescue_keyword] = ACTIONS(4353), - [sym__regular_ensure_keyword] = ACTIONS(4353), - [sym__string_literal_start] = ACTIONS(4353), - [sym__string_percent_literal_start] = ACTIONS(4353), - [sym__command_percent_literal_start] = ACTIONS(4353), - [sym__string_array_percent_literal_start] = ACTIONS(4353), - [sym__symbol_array_percent_literal_start] = ACTIONS(4353), - [sym__regex_percent_literal_start] = ACTIONS(4353), - [sym_heredoc_start] = ACTIONS(4353), + [sym_typeof] = STATE(2024), + [sym_constant] = STATE(2008), + [sym__type] = STATE(2002), + [sym_class_type] = STATE(2024), + [sym_union_type] = STATE(2024), + [sym__parenthesized_type] = STATE(2024), + [sym_no_args_proc_type] = STATE(2024), + [sym_parenthesized_proc_type] = STATE(2024), + [sym_tuple_type] = STATE(2024), + [sym_named_tuple_type] = STATE(2024), + [sym_generic_instance_type] = STATE(2024), + [sym_nilable_type] = STATE(2024), + [sym_pointer_type] = STATE(2024), + [sym_static_array_type] = STATE(2024), + [sym_identifier] = ACTIONS(4388), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(4392), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4388), + [sym_true] = ACTIONS(4388), + [sym_false] = ACTIONS(4388), + [aux_sym_integer_token2] = ACTIONS(4388), + [aux_sym_float_token2] = ACTIONS(4390), + [anon_sym_SQUOTE] = ACTIONS(4390), + [sym_operator_symbol] = ACTIONS(4390), + [sym_unquoted_symbol] = ACTIONS(4390), + [anon_sym_COLON_DQUOTE] = ACTIONS(4390), + [anon_sym_BQUOTE] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(4395), + [anon_sym_annotation] = ACTIONS(4388), + [anon_sym_end] = ACTIONS(4388), + [anon_sym_AT_LBRACK] = ACTIONS(4390), + [anon_sym_private] = ACTIONS(4388), + [anon_sym_module] = ACTIONS(4388), + [anon_sym_abstract] = ACTIONS(4388), + [anon_sym_class] = ACTIONS(4388), + [anon_sym_struct] = ACTIONS(4388), + [anon_sym_enum] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4390), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_TILDE] = ACTIONS(4390), + [anon_sym_def] = ACTIONS(4388), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_protected] = ACTIONS(4388), + [anon_sym_include] = ACTIONS(4388), + [anon_sym_extend] = ACTIONS(4388), + [anon_sym_forall] = ACTIONS(4388), + [anon_sym_return] = ACTIONS(4388), + [anon_sym_next] = ACTIONS(4388), + [anon_sym_break] = ACTIONS(4388), + [anon_sym_with] = ACTIONS(4388), + [anon_sym_yield] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(4398), + [anon_sym_sizeof] = ACTIONS(4388), + [anon_sym_instance_sizeof] = ACTIONS(4388), + [anon_sym_offsetof] = ACTIONS(4388), + [sym__constant_segment] = ACTIONS(4401), + [anon_sym_COLON_COLON] = ACTIONS(4404), + [anon_sym___LINE__] = ACTIONS(4388), + [anon_sym___END_LINE__] = ACTIONS(4388), + [anon_sym___FILE__] = ACTIONS(4388), + [anon_sym___DIR__] = ACTIONS(4388), + [sym_special_variable] = ACTIONS(4390), + [sym_identifier_method_call] = ACTIONS(4390), + [sym_instance_var] = ACTIONS(4390), + [sym_class_var] = ACTIONS(4390), + [sym_self] = ACTIONS(4407), + [sym_underscore_type] = ACTIONS(4382), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_alias] = ACTIONS(4388), + [anon_sym_begin] = ACTIONS(4388), + [anon_sym_while] = ACTIONS(4388), + [anon_sym_until] = ACTIONS(4388), + [anon_sym_else] = ACTIONS(4388), + [anon_sym_require] = ACTIONS(4388), + [anon_sym_case] = ACTIONS(4388), + [anon_sym_select] = ACTIONS(4388), + [sym__line_break] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4390), + [sym__start_of_named_tuple] = ACTIONS(4390), + [sym__start_of_tuple_type] = ACTIONS(4384), + [sym__start_of_named_tuple_type] = ACTIONS(4386), + [sym_unary_plus] = ACTIONS(4390), + [sym_unary_minus] = ACTIONS(4390), + [sym_unary_wrapping_plus] = ACTIONS(4390), + [sym_unary_wrapping_minus] = ACTIONS(4390), + [sym__beginless_range_operator] = ACTIONS(4390), + [sym__regex_start] = ACTIONS(4390), + [sym__regular_if_keyword] = ACTIONS(4390), + [sym__regular_unless_keyword] = ACTIONS(4390), + [sym__regular_rescue_keyword] = ACTIONS(4390), + [sym__regular_ensure_keyword] = ACTIONS(4390), + [sym__string_literal_start] = ACTIONS(4390), + [sym__string_percent_literal_start] = ACTIONS(4390), + [sym__command_percent_literal_start] = ACTIONS(4390), + [sym__string_array_percent_literal_start] = ACTIONS(4390), + [sym__symbol_array_percent_literal_start] = ACTIONS(4390), + [sym__regex_percent_literal_start] = ACTIONS(4390), + [sym_heredoc_start] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [1971] = { [sym_heredoc_body] = STATE(1971), - [sym_typeof] = STATE(2012), - [sym_constant] = STATE(2006), - [sym__type] = STATE(2000), - [sym_class_type] = STATE(2012), - [sym_union_type] = STATE(2012), - [sym__parenthesized_type] = STATE(2012), - [sym_no_args_proc_type] = STATE(2012), - [sym_parenthesized_proc_type] = STATE(2012), - [sym_tuple_type] = STATE(2012), - [sym_named_tuple_type] = STATE(2012), - [sym_generic_instance_type] = STATE(2012), - [sym_nilable_type] = STATE(2012), - [sym_pointer_type] = STATE(2012), - [sym_static_array_type] = STATE(2012), - [sym_identifier] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4377), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4373), - [sym_true] = ACTIONS(4373), - [sym_false] = ACTIONS(4373), - [aux_sym_integer_token2] = ACTIONS(4373), - [aux_sym_float_token2] = ACTIONS(4375), - [anon_sym_SQUOTE] = ACTIONS(4375), - [sym_operator_symbol] = ACTIONS(4375), - [sym_unquoted_symbol] = ACTIONS(4375), - [anon_sym_COLON_DQUOTE] = ACTIONS(4375), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(4380), - [anon_sym_annotation] = ACTIONS(4373), - [anon_sym_end] = ACTIONS(4373), - [anon_sym_AT_LBRACK] = ACTIONS(4375), - [anon_sym_private] = ACTIONS(4373), - [anon_sym_module] = ACTIONS(4373), - [anon_sym_abstract] = ACTIONS(4373), - [anon_sym_class] = ACTIONS(4373), - [anon_sym_struct] = ACTIONS(4373), - [anon_sym_enum] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4375), - [anon_sym_BANG] = ACTIONS(4375), - [anon_sym_TILDE] = ACTIONS(4375), - [anon_sym_def] = ACTIONS(4373), - [anon_sym_DOT] = ACTIONS(4375), - [anon_sym_protected] = ACTIONS(4373), - [anon_sym_include] = ACTIONS(4373), - [anon_sym_extend] = ACTIONS(4373), - [anon_sym_forall] = ACTIONS(4373), - [anon_sym_return] = ACTIONS(4373), - [anon_sym_next] = ACTIONS(4373), - [anon_sym_break] = ACTIONS(4373), - [anon_sym_with] = ACTIONS(4373), - [anon_sym_yield] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(4383), - [anon_sym_sizeof] = ACTIONS(4373), - [anon_sym_instance_sizeof] = ACTIONS(4373), - [anon_sym_offsetof] = ACTIONS(4373), - [sym__constant_segment] = ACTIONS(4386), - [anon_sym_COLON_COLON] = ACTIONS(4389), - [anon_sym___LINE__] = ACTIONS(4373), - [anon_sym___END_LINE__] = ACTIONS(4373), - [anon_sym___FILE__] = ACTIONS(4373), - [anon_sym___DIR__] = ACTIONS(4373), - [sym_special_variable] = ACTIONS(4375), - [sym_identifier_method_call] = ACTIONS(4375), - [sym_instance_var] = ACTIONS(4375), - [sym_class_var] = ACTIONS(4375), - [sym_self] = ACTIONS(4392), - [sym_underscore_type] = ACTIONS(4345), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_alias] = ACTIONS(4373), - [anon_sym_begin] = ACTIONS(4373), - [anon_sym_while] = ACTIONS(4373), - [anon_sym_until] = ACTIONS(4373), - [anon_sym_else] = ACTIONS(4373), - [anon_sym_require] = ACTIONS(4373), - [anon_sym_case] = ACTIONS(4373), - [sym__line_break] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4375), - [sym__start_of_named_tuple] = ACTIONS(4375), - [sym__start_of_tuple_type] = ACTIONS(4347), - [sym__start_of_named_tuple_type] = ACTIONS(4349), - [sym_unary_plus] = ACTIONS(4375), - [sym_unary_minus] = ACTIONS(4375), - [sym_unary_wrapping_plus] = ACTIONS(4375), - [sym_unary_wrapping_minus] = ACTIONS(4375), - [sym__beginless_range_operator] = ACTIONS(4375), - [sym__regex_start] = ACTIONS(4375), - [sym__regular_if_keyword] = ACTIONS(4375), - [sym__regular_unless_keyword] = ACTIONS(4375), - [sym__regular_rescue_keyword] = ACTIONS(4375), - [sym__regular_ensure_keyword] = ACTIONS(4375), - [sym__string_literal_start] = ACTIONS(4375), - [sym__string_percent_literal_start] = ACTIONS(4375), - [sym__command_percent_literal_start] = ACTIONS(4375), - [sym__string_array_percent_literal_start] = ACTIONS(4375), - [sym__symbol_array_percent_literal_start] = ACTIONS(4375), - [sym__regex_percent_literal_start] = ACTIONS(4375), - [sym_heredoc_start] = ACTIONS(4375), + [sym_typeof] = STATE(2024), + [sym_constant] = STATE(2008), + [sym__type] = STATE(2009), + [sym_class_type] = STATE(2024), + [sym_union_type] = STATE(2024), + [sym__parenthesized_type] = STATE(2024), + [sym_no_args_proc_type] = STATE(2024), + [sym_parenthesized_proc_type] = STATE(2024), + [sym_tuple_type] = STATE(2024), + [sym_named_tuple_type] = STATE(2024), + [sym_generic_instance_type] = STATE(2024), + [sym_nilable_type] = STATE(2024), + [sym_pointer_type] = STATE(2024), + [sym_static_array_type] = STATE(2024), + [sym_identifier] = ACTIONS(4410), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(4414), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4410), + [sym_true] = ACTIONS(4410), + [sym_false] = ACTIONS(4410), + [aux_sym_integer_token2] = ACTIONS(4410), + [aux_sym_float_token2] = ACTIONS(4412), + [anon_sym_SQUOTE] = ACTIONS(4412), + [sym_operator_symbol] = ACTIONS(4412), + [sym_unquoted_symbol] = ACTIONS(4412), + [anon_sym_COLON_DQUOTE] = ACTIONS(4412), + [anon_sym_BQUOTE] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(4417), + [anon_sym_annotation] = ACTIONS(4410), + [anon_sym_end] = ACTIONS(4410), + [anon_sym_AT_LBRACK] = ACTIONS(4412), + [anon_sym_private] = ACTIONS(4410), + [anon_sym_module] = ACTIONS(4410), + [anon_sym_abstract] = ACTIONS(4410), + [anon_sym_class] = ACTIONS(4410), + [anon_sym_struct] = ACTIONS(4410), + [anon_sym_enum] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4412), + [anon_sym_BANG] = ACTIONS(4412), + [anon_sym_TILDE] = ACTIONS(4412), + [anon_sym_def] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4412), + [anon_sym_protected] = ACTIONS(4410), + [anon_sym_include] = ACTIONS(4410), + [anon_sym_extend] = ACTIONS(4410), + [anon_sym_forall] = ACTIONS(4410), + [anon_sym_return] = ACTIONS(4410), + [anon_sym_next] = ACTIONS(4410), + [anon_sym_break] = ACTIONS(4410), + [anon_sym_with] = ACTIONS(4410), + [anon_sym_yield] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(4420), + [anon_sym_sizeof] = ACTIONS(4410), + [anon_sym_instance_sizeof] = ACTIONS(4410), + [anon_sym_offsetof] = ACTIONS(4410), + [sym__constant_segment] = ACTIONS(4423), + [anon_sym_COLON_COLON] = ACTIONS(4426), + [anon_sym___LINE__] = ACTIONS(4410), + [anon_sym___END_LINE__] = ACTIONS(4410), + [anon_sym___FILE__] = ACTIONS(4410), + [anon_sym___DIR__] = ACTIONS(4410), + [sym_special_variable] = ACTIONS(4412), + [sym_identifier_method_call] = ACTIONS(4412), + [sym_instance_var] = ACTIONS(4412), + [sym_class_var] = ACTIONS(4412), + [sym_self] = ACTIONS(4429), + [sym_underscore_type] = ACTIONS(4382), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_alias] = ACTIONS(4410), + [anon_sym_begin] = ACTIONS(4410), + [anon_sym_while] = ACTIONS(4410), + [anon_sym_until] = ACTIONS(4410), + [anon_sym_else] = ACTIONS(4410), + [anon_sym_require] = ACTIONS(4410), + [anon_sym_case] = ACTIONS(4410), + [anon_sym_select] = ACTIONS(4410), + [sym__line_break] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4412), + [sym__start_of_named_tuple] = ACTIONS(4412), + [sym__start_of_tuple_type] = ACTIONS(4384), + [sym__start_of_named_tuple_type] = ACTIONS(4386), + [sym_unary_plus] = ACTIONS(4412), + [sym_unary_minus] = ACTIONS(4412), + [sym_unary_wrapping_plus] = ACTIONS(4412), + [sym_unary_wrapping_minus] = ACTIONS(4412), + [sym__beginless_range_operator] = ACTIONS(4412), + [sym__regex_start] = ACTIONS(4412), + [sym__regular_if_keyword] = ACTIONS(4412), + [sym__regular_unless_keyword] = ACTIONS(4412), + [sym__regular_rescue_keyword] = ACTIONS(4412), + [sym__regular_ensure_keyword] = ACTIONS(4412), + [sym__string_literal_start] = ACTIONS(4412), + [sym__string_percent_literal_start] = ACTIONS(4412), + [sym__command_percent_literal_start] = ACTIONS(4412), + [sym__string_array_percent_literal_start] = ACTIONS(4412), + [sym__symbol_array_percent_literal_start] = ACTIONS(4412), + [sym__regex_percent_literal_start] = ACTIONS(4412), + [sym_heredoc_start] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [1972] = { [sym_heredoc_body] = STATE(1972), - [sym_identifier] = ACTIONS(4293), - [anon_sym_SEMI] = ACTIONS(4291), - [anon_sym_LPAREN] = ACTIONS(4293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4293), - [sym_true] = ACTIONS(4293), - [sym_false] = ACTIONS(4293), - [aux_sym_integer_token2] = ACTIONS(4293), - [aux_sym_float_token2] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4291), - [sym_operator_symbol] = ACTIONS(4291), - [sym_unquoted_symbol] = ACTIONS(4291), - [anon_sym_COLON_DQUOTE] = ACTIONS(4291), - [anon_sym_BQUOTE] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), - [anon_sym_DASH_GT] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_PIPE] = ACTIONS(4293), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_GT_GT] = ACTIONS(4291), - [anon_sym_LT_LT] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ_GT] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4293), - [anon_sym_TILDE] = ACTIONS(4291), - [anon_sym_BANG_TILDE] = ACTIONS(4291), - [anon_sym_EQ_TILDE] = ACTIONS(4291), - [anon_sym_AMP_STAR] = ACTIONS(4293), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_EQ] = ACTIONS(4395), - [anon_sym_with] = ACTIONS(4293), - [anon_sym_yield] = ACTIONS(4293), - [anon_sym_typeof] = ACTIONS(4293), - [anon_sym_sizeof] = ACTIONS(4293), - [anon_sym_instance_sizeof] = ACTIONS(4293), - [anon_sym_offsetof] = ACTIONS(4293), - [sym__constant_segment] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym___LINE__] = ACTIONS(4293), - [anon_sym___END_LINE__] = ACTIONS(4293), - [anon_sym___FILE__] = ACTIONS(4293), - [anon_sym___DIR__] = ACTIONS(4293), - [sym_special_variable] = ACTIONS(4291), - [sym_identifier_method_call] = ACTIONS(4291), - [sym_instance_var] = ACTIONS(4291), - [sym_class_var] = ACTIONS(4291), - [sym_self] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4291), - [anon_sym_QMARK] = ACTIONS(4293), - [anon_sym_QMARK2] = ACTIONS(4397), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_do] = ACTIONS(4293), - [anon_sym_begin] = ACTIONS(4293), - [anon_sym_while] = ACTIONS(4293), - [anon_sym_until] = ACTIONS(4293), - [anon_sym_then] = ACTIONS(4293), - [anon_sym_case] = ACTIONS(4293), - [sym__line_break] = ACTIONS(4291), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4291), - [sym__start_of_hash_or_tuple] = ACTIONS(4291), - [sym__start_of_named_tuple] = ACTIONS(4291), - [sym__start_of_index_operator] = ACTIONS(4291), - [sym_unary_plus] = ACTIONS(4291), - [sym_unary_minus] = ACTIONS(4291), - [sym_binary_plus] = ACTIONS(4291), - [sym_binary_minus] = ACTIONS(4291), - [sym_unary_wrapping_plus] = ACTIONS(4291), - [sym_unary_wrapping_minus] = ACTIONS(4291), - [sym_binary_wrapping_plus] = ACTIONS(4291), - [sym_binary_wrapping_minus] = ACTIONS(4291), - [sym__unary_star] = ACTIONS(4291), - [sym__binary_star] = ACTIONS(4291), - [sym__unary_double_star] = ACTIONS(4291), - [sym__binary_double_star] = ACTIONS(4291), - [sym__block_ampersand] = ACTIONS(4291), - [sym_binary_ampersand] = ACTIONS(4291), - [sym__beginless_range_operator] = ACTIONS(4291), - [sym__regex_start] = ACTIONS(4291), - [sym__binary_slash] = ACTIONS(4291), - [sym__binary_double_slash] = ACTIONS(4291), - [sym__regular_if_keyword] = ACTIONS(4291), - [sym__regular_unless_keyword] = ACTIONS(4291), - [sym__modulo_operator] = ACTIONS(4291), - [sym__string_literal_start] = ACTIONS(4291), - [sym__string_percent_literal_start] = ACTIONS(4291), - [sym__command_percent_literal_start] = ACTIONS(4291), - [sym__string_array_percent_literal_start] = ACTIONS(4291), - [sym__symbol_array_percent_literal_start] = ACTIONS(4291), - [sym__regex_percent_literal_start] = ACTIONS(4291), - [sym_heredoc_start] = ACTIONS(4291), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4291), + [sym_identifier] = ACTIONS(4330), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4330), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4330), + [sym_true] = ACTIONS(4330), + [sym_false] = ACTIONS(4330), + [aux_sym_integer_token2] = ACTIONS(4330), + [aux_sym_float_token2] = ACTIONS(4328), + [anon_sym_SQUOTE] = ACTIONS(4328), + [sym_operator_symbol] = ACTIONS(4328), + [sym_unquoted_symbol] = ACTIONS(4328), + [anon_sym_COLON_DQUOTE] = ACTIONS(4328), + [anon_sym_BQUOTE] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_DOT_DOT] = ACTIONS(4330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4328), + [anon_sym_DASH_GT] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym_PIPE] = ACTIONS(4330), + [anon_sym_CARET] = ACTIONS(4328), + [anon_sym_GT_GT] = ACTIONS(4328), + [anon_sym_LT_LT] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4330), + [anon_sym_BANG_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4330), + [anon_sym_GT] = ACTIONS(4330), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ_GT] = ACTIONS(4328), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4330), + [anon_sym_TILDE] = ACTIONS(4328), + [anon_sym_BANG_TILDE] = ACTIONS(4328), + [anon_sym_EQ_TILDE] = ACTIONS(4328), + [anon_sym_AMP_STAR] = ACTIONS(4330), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4328), + [anon_sym_DOT] = ACTIONS(4330), + [anon_sym_EQ] = ACTIONS(4432), + [anon_sym_with] = ACTIONS(4330), + [anon_sym_yield] = ACTIONS(4330), + [anon_sym_typeof] = ACTIONS(4330), + [anon_sym_sizeof] = ACTIONS(4330), + [anon_sym_instance_sizeof] = ACTIONS(4330), + [anon_sym_offsetof] = ACTIONS(4330), + [sym__constant_segment] = ACTIONS(4328), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym___LINE__] = ACTIONS(4330), + [anon_sym___END_LINE__] = ACTIONS(4330), + [anon_sym___FILE__] = ACTIONS(4330), + [anon_sym___DIR__] = ACTIONS(4330), + [sym_special_variable] = ACTIONS(4328), + [sym_identifier_method_call] = ACTIONS(4328), + [sym_instance_var] = ACTIONS(4328), + [sym_class_var] = ACTIONS(4328), + [sym_self] = ACTIONS(4330), + [anon_sym_LPAREN2] = ACTIONS(4328), + [anon_sym_QMARK] = ACTIONS(4330), + [anon_sym_QMARK2] = ACTIONS(4434), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_do] = ACTIONS(4330), + [anon_sym_begin] = ACTIONS(4330), + [anon_sym_while] = ACTIONS(4330), + [anon_sym_until] = ACTIONS(4330), + [anon_sym_then] = ACTIONS(4330), + [anon_sym_case] = ACTIONS(4330), + [anon_sym_select] = ACTIONS(4330), + [sym__line_break] = ACTIONS(4328), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4328), + [sym__start_of_hash_or_tuple] = ACTIONS(4328), + [sym__start_of_named_tuple] = ACTIONS(4328), + [sym__start_of_index_operator] = ACTIONS(4328), + [sym_unary_plus] = ACTIONS(4328), + [sym_unary_minus] = ACTIONS(4328), + [sym_binary_plus] = ACTIONS(4328), + [sym_binary_minus] = ACTIONS(4328), + [sym_unary_wrapping_plus] = ACTIONS(4328), + [sym_unary_wrapping_minus] = ACTIONS(4328), + [sym_binary_wrapping_plus] = ACTIONS(4328), + [sym_binary_wrapping_minus] = ACTIONS(4328), + [sym__unary_star] = ACTIONS(4328), + [sym__binary_star] = ACTIONS(4328), + [sym__unary_double_star] = ACTIONS(4328), + [sym__binary_double_star] = ACTIONS(4328), + [sym__block_ampersand] = ACTIONS(4328), + [sym_binary_ampersand] = ACTIONS(4328), + [sym__beginless_range_operator] = ACTIONS(4328), + [sym__regex_start] = ACTIONS(4328), + [sym__binary_slash] = ACTIONS(4328), + [sym__binary_double_slash] = ACTIONS(4328), + [sym__regular_if_keyword] = ACTIONS(4328), + [sym__regular_unless_keyword] = ACTIONS(4328), + [sym__modulo_operator] = ACTIONS(4328), + [sym__string_literal_start] = ACTIONS(4328), + [sym__string_percent_literal_start] = ACTIONS(4328), + [sym__command_percent_literal_start] = ACTIONS(4328), + [sym__string_array_percent_literal_start] = ACTIONS(4328), + [sym__symbol_array_percent_literal_start] = ACTIONS(4328), + [sym__regex_percent_literal_start] = ACTIONS(4328), + [sym_heredoc_start] = ACTIONS(4328), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4328), }, [1973] = { [sym_heredoc_body] = STATE(1973), - [sym_identifier] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4293), - [sym_true] = ACTIONS(4293), - [sym_false] = ACTIONS(4293), - [aux_sym_integer_token2] = ACTIONS(4293), - [aux_sym_float_token2] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4291), - [anon_sym_RBRACE] = ACTIONS(4291), - [sym_operator_symbol] = ACTIONS(4291), - [sym_unquoted_symbol] = ACTIONS(4291), - [anon_sym_COLON_DQUOTE] = ACTIONS(4291), - [anon_sym_BQUOTE] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_EQ_GT] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), - [anon_sym_DASH_GT] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_PIPE] = ACTIONS(4293), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_GT_GT] = ACTIONS(4291), - [anon_sym_LT_LT] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ_GT] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4293), - [anon_sym_TILDE] = ACTIONS(4291), - [anon_sym_BANG_TILDE] = ACTIONS(4291), - [anon_sym_EQ_TILDE] = ACTIONS(4291), - [anon_sym_AMP_STAR] = ACTIONS(4293), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_EQ] = ACTIONS(4319), - [anon_sym_with] = ACTIONS(4293), - [anon_sym_yield] = ACTIONS(4293), - [anon_sym_typeof] = ACTIONS(4293), - [anon_sym_sizeof] = ACTIONS(4293), - [anon_sym_instance_sizeof] = ACTIONS(4293), - [anon_sym_offsetof] = ACTIONS(4293), - [sym__constant_segment] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym___LINE__] = ACTIONS(4293), - [anon_sym___END_LINE__] = ACTIONS(4293), - [anon_sym___FILE__] = ACTIONS(4293), - [anon_sym___DIR__] = ACTIONS(4293), - [sym_special_variable] = ACTIONS(4291), - [sym_identifier_method_call] = ACTIONS(4291), - [sym_instance_var] = ACTIONS(4291), - [sym_class_var] = ACTIONS(4291), - [sym_self] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4291), - [anon_sym_QMARK] = ACTIONS(4293), - [anon_sym_QMARK2] = ACTIONS(4321), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_do] = ACTIONS(4293), - [anon_sym_begin] = ACTIONS(4293), - [anon_sym_while] = ACTIONS(4293), - [anon_sym_until] = ACTIONS(4293), - [anon_sym_case] = ACTIONS(4293), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4291), - [sym__start_of_hash_or_tuple] = ACTIONS(4291), - [sym__start_of_named_tuple] = ACTIONS(4291), - [sym__start_of_index_operator] = ACTIONS(4291), - [sym_unary_plus] = ACTIONS(4291), - [sym_unary_minus] = ACTIONS(4291), - [sym_binary_plus] = ACTIONS(4291), - [sym_binary_minus] = ACTIONS(4291), - [sym_unary_wrapping_plus] = ACTIONS(4291), - [sym_unary_wrapping_minus] = ACTIONS(4291), - [sym_binary_wrapping_plus] = ACTIONS(4291), - [sym_binary_wrapping_minus] = ACTIONS(4291), - [sym__unary_star] = ACTIONS(4291), - [sym__binary_star] = ACTIONS(4291), - [sym__unary_double_star] = ACTIONS(4291), - [sym__binary_double_star] = ACTIONS(4291), - [sym__block_ampersand] = ACTIONS(4291), - [sym_binary_ampersand] = ACTIONS(4291), - [sym__beginless_range_operator] = ACTIONS(4291), - [sym__regex_start] = ACTIONS(4291), - [sym__binary_slash] = ACTIONS(4291), - [sym__binary_double_slash] = ACTIONS(4291), - [sym__regular_if_keyword] = ACTIONS(4291), - [sym__regular_unless_keyword] = ACTIONS(4291), - [sym__modulo_operator] = ACTIONS(4291), - [sym__string_literal_start] = ACTIONS(4291), - [sym__string_percent_literal_start] = ACTIONS(4291), - [sym__command_percent_literal_start] = ACTIONS(4291), - [sym__string_array_percent_literal_start] = ACTIONS(4291), - [sym__symbol_array_percent_literal_start] = ACTIONS(4291), - [sym__regex_percent_literal_start] = ACTIONS(4291), - [sym_heredoc_start] = ACTIONS(4291), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4291), + [sym_identifier] = ACTIONS(4330), + [anon_sym_LPAREN] = ACTIONS(4330), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4330), + [sym_true] = ACTIONS(4330), + [sym_false] = ACTIONS(4330), + [aux_sym_integer_token2] = ACTIONS(4330), + [aux_sym_float_token2] = ACTIONS(4328), + [anon_sym_SQUOTE] = ACTIONS(4328), + [sym_operator_symbol] = ACTIONS(4328), + [sym_unquoted_symbol] = ACTIONS(4328), + [anon_sym_COLON_DQUOTE] = ACTIONS(4328), + [anon_sym_BQUOTE] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_RBRACK] = ACTIONS(4330), + [anon_sym_DOT_DOT] = ACTIONS(4330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4328), + [anon_sym_DASH_GT] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym_PIPE] = ACTIONS(4330), + [anon_sym_CARET] = ACTIONS(4328), + [anon_sym_GT_GT] = ACTIONS(4328), + [anon_sym_LT_LT] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4330), + [anon_sym_BANG_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4330), + [anon_sym_GT] = ACTIONS(4330), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ_GT] = ACTIONS(4328), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4330), + [anon_sym_TILDE] = ACTIONS(4328), + [anon_sym_BANG_TILDE] = ACTIONS(4328), + [anon_sym_EQ_TILDE] = ACTIONS(4328), + [anon_sym_AMP_STAR] = ACTIONS(4330), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4328), + [anon_sym_DOT] = ACTIONS(4330), + [anon_sym_EQ] = ACTIONS(4436), + [anon_sym_with] = ACTIONS(4330), + [anon_sym_yield] = ACTIONS(4330), + [anon_sym_typeof] = ACTIONS(4330), + [anon_sym_sizeof] = ACTIONS(4330), + [anon_sym_instance_sizeof] = ACTIONS(4330), + [anon_sym_offsetof] = ACTIONS(4330), + [sym__constant_segment] = ACTIONS(4328), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym___LINE__] = ACTIONS(4330), + [anon_sym___END_LINE__] = ACTIONS(4330), + [anon_sym___FILE__] = ACTIONS(4330), + [anon_sym___DIR__] = ACTIONS(4330), + [sym_special_variable] = ACTIONS(4328), + [sym_identifier_method_call] = ACTIONS(4328), + [sym_instance_var] = ACTIONS(4328), + [sym_class_var] = ACTIONS(4328), + [sym_self] = ACTIONS(4330), + [anon_sym_LPAREN2] = ACTIONS(4328), + [anon_sym_QMARK] = ACTIONS(4330), + [anon_sym_QMARK2] = ACTIONS(4438), + [anon_sym_RBRACK_QMARK] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_do] = ACTIONS(4330), + [anon_sym_begin] = ACTIONS(4330), + [anon_sym_while] = ACTIONS(4330), + [anon_sym_until] = ACTIONS(4330), + [anon_sym_case] = ACTIONS(4330), + [anon_sym_select] = ACTIONS(4330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4328), + [sym__start_of_hash_or_tuple] = ACTIONS(4328), + [sym__start_of_named_tuple] = ACTIONS(4328), + [sym__start_of_index_operator] = ACTIONS(4328), + [sym_unary_plus] = ACTIONS(4328), + [sym_unary_minus] = ACTIONS(4328), + [sym_binary_plus] = ACTIONS(4328), + [sym_binary_minus] = ACTIONS(4328), + [sym_unary_wrapping_plus] = ACTIONS(4328), + [sym_unary_wrapping_minus] = ACTIONS(4328), + [sym_binary_wrapping_plus] = ACTIONS(4328), + [sym_binary_wrapping_minus] = ACTIONS(4328), + [sym__unary_star] = ACTIONS(4328), + [sym__binary_star] = ACTIONS(4328), + [sym__unary_double_star] = ACTIONS(4328), + [sym__binary_double_star] = ACTIONS(4328), + [sym__block_ampersand] = ACTIONS(4328), + [sym_binary_ampersand] = ACTIONS(4328), + [sym__beginless_range_operator] = ACTIONS(4328), + [sym__regex_start] = ACTIONS(4328), + [sym__binary_slash] = ACTIONS(4328), + [sym__binary_double_slash] = ACTIONS(4328), + [sym__regular_if_keyword] = ACTIONS(4328), + [sym__regular_unless_keyword] = ACTIONS(4328), + [sym__modulo_operator] = ACTIONS(4328), + [sym__string_literal_start] = ACTIONS(4328), + [sym__string_percent_literal_start] = ACTIONS(4328), + [sym__command_percent_literal_start] = ACTIONS(4328), + [sym__string_array_percent_literal_start] = ACTIONS(4328), + [sym__symbol_array_percent_literal_start] = ACTIONS(4328), + [sym__regex_percent_literal_start] = ACTIONS(4328), + [sym_heredoc_start] = ACTIONS(4328), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4328), }, [1974] = { [sym_heredoc_body] = STATE(1974), - [sym_identifier] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4293), - [sym_true] = ACTIONS(4293), - [sym_false] = ACTIONS(4293), - [aux_sym_integer_token2] = ACTIONS(4293), - [aux_sym_float_token2] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4291), - [sym_operator_symbol] = ACTIONS(4291), - [sym_unquoted_symbol] = ACTIONS(4291), - [anon_sym_COLON_DQUOTE] = ACTIONS(4291), - [anon_sym_BQUOTE] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_RBRACK] = ACTIONS(4293), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), - [anon_sym_DASH_GT] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_PIPE] = ACTIONS(4293), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_GT_GT] = ACTIONS(4291), - [anon_sym_LT_LT] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ_GT] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4293), - [anon_sym_TILDE] = ACTIONS(4291), - [anon_sym_BANG_TILDE] = ACTIONS(4291), - [anon_sym_EQ_TILDE] = ACTIONS(4291), - [anon_sym_AMP_STAR] = ACTIONS(4293), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_EQ] = ACTIONS(4399), - [anon_sym_with] = ACTIONS(4293), - [anon_sym_yield] = ACTIONS(4293), - [anon_sym_typeof] = ACTIONS(4293), - [anon_sym_sizeof] = ACTIONS(4293), - [anon_sym_instance_sizeof] = ACTIONS(4293), - [anon_sym_offsetof] = ACTIONS(4293), - [sym__constant_segment] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym___LINE__] = ACTIONS(4293), - [anon_sym___END_LINE__] = ACTIONS(4293), - [anon_sym___FILE__] = ACTIONS(4293), - [anon_sym___DIR__] = ACTIONS(4293), - [sym_special_variable] = ACTIONS(4291), - [sym_identifier_method_call] = ACTIONS(4291), - [sym_instance_var] = ACTIONS(4291), - [sym_class_var] = ACTIONS(4291), - [sym_self] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4291), - [anon_sym_QMARK] = ACTIONS(4293), - [anon_sym_QMARK2] = ACTIONS(4401), - [anon_sym_RBRACK_QMARK] = ACTIONS(4291), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_do] = ACTIONS(4293), - [anon_sym_begin] = ACTIONS(4293), - [anon_sym_while] = ACTIONS(4293), - [anon_sym_until] = ACTIONS(4293), - [anon_sym_case] = ACTIONS(4293), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4291), - [sym__start_of_hash_or_tuple] = ACTIONS(4291), - [sym__start_of_named_tuple] = ACTIONS(4291), - [sym__start_of_index_operator] = ACTIONS(4291), - [sym_unary_plus] = ACTIONS(4291), - [sym_unary_minus] = ACTIONS(4291), - [sym_binary_plus] = ACTIONS(4291), - [sym_binary_minus] = ACTIONS(4291), - [sym_unary_wrapping_plus] = ACTIONS(4291), - [sym_unary_wrapping_minus] = ACTIONS(4291), - [sym_binary_wrapping_plus] = ACTIONS(4291), - [sym_binary_wrapping_minus] = ACTIONS(4291), - [sym__unary_star] = ACTIONS(4291), - [sym__binary_star] = ACTIONS(4291), - [sym__unary_double_star] = ACTIONS(4291), - [sym__binary_double_star] = ACTIONS(4291), - [sym__block_ampersand] = ACTIONS(4291), - [sym_binary_ampersand] = ACTIONS(4291), - [sym__beginless_range_operator] = ACTIONS(4291), - [sym__regex_start] = ACTIONS(4291), - [sym__binary_slash] = ACTIONS(4291), - [sym__binary_double_slash] = ACTIONS(4291), - [sym__regular_if_keyword] = ACTIONS(4291), - [sym__regular_unless_keyword] = ACTIONS(4291), - [sym__modulo_operator] = ACTIONS(4291), - [sym__string_literal_start] = ACTIONS(4291), - [sym__string_percent_literal_start] = ACTIONS(4291), - [sym__command_percent_literal_start] = ACTIONS(4291), - [sym__string_array_percent_literal_start] = ACTIONS(4291), - [sym__symbol_array_percent_literal_start] = ACTIONS(4291), - [sym__regex_percent_literal_start] = ACTIONS(4291), - [sym_heredoc_start] = ACTIONS(4291), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4291), + [sym_identifier] = ACTIONS(4330), + [anon_sym_LPAREN] = ACTIONS(4330), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4330), + [sym_true] = ACTIONS(4330), + [sym_false] = ACTIONS(4330), + [aux_sym_integer_token2] = ACTIONS(4330), + [aux_sym_float_token2] = ACTIONS(4328), + [anon_sym_SQUOTE] = ACTIONS(4328), + [anon_sym_RBRACE] = ACTIONS(4328), + [sym_operator_symbol] = ACTIONS(4328), + [sym_unquoted_symbol] = ACTIONS(4328), + [anon_sym_COLON_DQUOTE] = ACTIONS(4328), + [anon_sym_BQUOTE] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_EQ_GT] = ACTIONS(4328), + [anon_sym_DOT_DOT] = ACTIONS(4330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4328), + [anon_sym_DASH_GT] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym_PIPE] = ACTIONS(4330), + [anon_sym_CARET] = ACTIONS(4328), + [anon_sym_GT_GT] = ACTIONS(4328), + [anon_sym_LT_LT] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4330), + [anon_sym_BANG_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4330), + [anon_sym_GT] = ACTIONS(4330), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ_GT] = ACTIONS(4328), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4330), + [anon_sym_TILDE] = ACTIONS(4328), + [anon_sym_BANG_TILDE] = ACTIONS(4328), + [anon_sym_EQ_TILDE] = ACTIONS(4328), + [anon_sym_AMP_STAR] = ACTIONS(4330), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4328), + [anon_sym_DOT] = ACTIONS(4330), + [anon_sym_EQ] = ACTIONS(4356), + [anon_sym_with] = ACTIONS(4330), + [anon_sym_yield] = ACTIONS(4330), + [anon_sym_typeof] = ACTIONS(4330), + [anon_sym_sizeof] = ACTIONS(4330), + [anon_sym_instance_sizeof] = ACTIONS(4330), + [anon_sym_offsetof] = ACTIONS(4330), + [sym__constant_segment] = ACTIONS(4328), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym___LINE__] = ACTIONS(4330), + [anon_sym___END_LINE__] = ACTIONS(4330), + [anon_sym___FILE__] = ACTIONS(4330), + [anon_sym___DIR__] = ACTIONS(4330), + [sym_special_variable] = ACTIONS(4328), + [sym_identifier_method_call] = ACTIONS(4328), + [sym_instance_var] = ACTIONS(4328), + [sym_class_var] = ACTIONS(4328), + [sym_self] = ACTIONS(4330), + [anon_sym_LPAREN2] = ACTIONS(4328), + [anon_sym_QMARK] = ACTIONS(4330), + [anon_sym_QMARK2] = ACTIONS(4358), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_do] = ACTIONS(4330), + [anon_sym_begin] = ACTIONS(4330), + [anon_sym_while] = ACTIONS(4330), + [anon_sym_until] = ACTIONS(4330), + [anon_sym_case] = ACTIONS(4330), + [anon_sym_select] = ACTIONS(4330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4328), + [sym__start_of_hash_or_tuple] = ACTIONS(4328), + [sym__start_of_named_tuple] = ACTIONS(4328), + [sym__start_of_index_operator] = ACTIONS(4328), + [sym_unary_plus] = ACTIONS(4328), + [sym_unary_minus] = ACTIONS(4328), + [sym_binary_plus] = ACTIONS(4328), + [sym_binary_minus] = ACTIONS(4328), + [sym_unary_wrapping_plus] = ACTIONS(4328), + [sym_unary_wrapping_minus] = ACTIONS(4328), + [sym_binary_wrapping_plus] = ACTIONS(4328), + [sym_binary_wrapping_minus] = ACTIONS(4328), + [sym__unary_star] = ACTIONS(4328), + [sym__binary_star] = ACTIONS(4328), + [sym__unary_double_star] = ACTIONS(4328), + [sym__binary_double_star] = ACTIONS(4328), + [sym__block_ampersand] = ACTIONS(4328), + [sym_binary_ampersand] = ACTIONS(4328), + [sym__beginless_range_operator] = ACTIONS(4328), + [sym__regex_start] = ACTIONS(4328), + [sym__binary_slash] = ACTIONS(4328), + [sym__binary_double_slash] = ACTIONS(4328), + [sym__regular_if_keyword] = ACTIONS(4328), + [sym__regular_unless_keyword] = ACTIONS(4328), + [sym__modulo_operator] = ACTIONS(4328), + [sym__string_literal_start] = ACTIONS(4328), + [sym__string_percent_literal_start] = ACTIONS(4328), + [sym__command_percent_literal_start] = ACTIONS(4328), + [sym__string_array_percent_literal_start] = ACTIONS(4328), + [sym__symbol_array_percent_literal_start] = ACTIONS(4328), + [sym__regex_percent_literal_start] = ACTIONS(4328), + [sym_heredoc_start] = ACTIONS(4328), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4328), }, [1975] = { [sym_heredoc_body] = STATE(1975), - [sym_identifier] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3238), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [sym_operator_symbol] = ACTIONS(3236), - [sym_unquoted_symbol] = ACTIONS(3236), - [anon_sym_COLON_DQUOTE] = ACTIONS(3236), - [anon_sym_BQUOTE] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_COMMA] = ACTIONS(3236), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_DASH_GT] = ACTIONS(3236), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3236), - [anon_sym_GT_GT] = ACTIONS(3236), - [anon_sym_LT_LT] = ACTIONS(3236), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ_GT] = ACTIONS(3236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG_TILDE] = ACTIONS(3236), - [anon_sym_EQ_TILDE] = ACTIONS(3236), - [anon_sym_AMP_STAR] = ACTIONS(3238), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3236), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym_instance_sizeof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [sym__constant_segment] = ACTIONS(3236), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym___LINE__] = ACTIONS(3238), - [anon_sym___END_LINE__] = ACTIONS(3238), - [anon_sym___FILE__] = ACTIONS(3238), - [anon_sym___DIR__] = ACTIONS(3238), - [sym_special_variable] = ACTIONS(3236), - [sym_identifier_method_call] = ACTIONS(3236), - [sym_instance_var] = ACTIONS(3236), - [sym_class_var] = ACTIONS(3236), - [sym_self] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3236), - [anon_sym_PIPE_PIPE] = ACTIONS(3236), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_begin] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_until] = ACTIONS(3238), - [anon_sym_then] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [sym__line_break] = ACTIONS(3236), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3236), - [sym__start_of_hash_or_tuple] = ACTIONS(3236), - [sym__start_of_named_tuple] = ACTIONS(3236), - [sym__start_of_index_operator] = ACTIONS(3236), - [sym_unary_plus] = ACTIONS(3236), - [sym_unary_minus] = ACTIONS(3236), - [sym_binary_plus] = ACTIONS(3236), - [sym_binary_minus] = ACTIONS(3236), - [sym_unary_wrapping_plus] = ACTIONS(3236), - [sym_unary_wrapping_minus] = ACTIONS(3236), - [sym_binary_wrapping_plus] = ACTIONS(3236), - [sym_binary_wrapping_minus] = ACTIONS(3236), - [sym__unary_star] = ACTIONS(3236), - [sym__binary_star] = ACTIONS(3236), - [sym__unary_double_star] = ACTIONS(3236), - [sym__binary_double_star] = ACTIONS(3236), - [sym__block_ampersand] = ACTIONS(3236), - [sym_binary_ampersand] = ACTIONS(3236), - [sym__beginless_range_operator] = ACTIONS(3236), - [sym__regex_start] = ACTIONS(3236), - [sym__binary_slash] = ACTIONS(3236), - [sym__binary_double_slash] = ACTIONS(3236), - [sym__regular_if_keyword] = ACTIONS(3236), - [sym__regular_unless_keyword] = ACTIONS(3236), - [sym__modulo_operator] = ACTIONS(3236), - [sym__string_literal_start] = ACTIONS(3236), - [sym__string_percent_literal_start] = ACTIONS(3236), - [sym__command_percent_literal_start] = ACTIONS(3236), - [sym__string_array_percent_literal_start] = ACTIONS(3236), - [sym__symbol_array_percent_literal_start] = ACTIONS(3236), - [sym__regex_percent_literal_start] = ACTIONS(3236), - [sym_heredoc_start] = ACTIONS(3236), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3236), + [sym_identifier] = ACTIONS(4342), + [anon_sym_SEMI] = ACTIONS(4340), + [anon_sym_LPAREN] = ACTIONS(4342), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4342), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [aux_sym_integer_token2] = ACTIONS(4342), + [aux_sym_float_token2] = ACTIONS(4340), + [anon_sym_SQUOTE] = ACTIONS(4340), + [sym_operator_symbol] = ACTIONS(4340), + [sym_unquoted_symbol] = ACTIONS(4340), + [anon_sym_COLON_DQUOTE] = ACTIONS(4340), + [anon_sym_BQUOTE] = ACTIONS(4340), + [anon_sym_LBRACK] = ACTIONS(4340), + [anon_sym_COMMA] = ACTIONS(4340), + [anon_sym_DOT_DOT] = ACTIONS(4342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4340), + [anon_sym_DASH_GT] = ACTIONS(4340), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_PIPE] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4340), + [anon_sym_GT_GT] = ACTIONS(4340), + [anon_sym_LT_LT] = ACTIONS(4340), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ] = ACTIONS(4340), + [anon_sym_LT_EQ] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4340), + [anon_sym_LT_EQ_GT] = ACTIONS(4340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4340), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_TILDE] = ACTIONS(4340), + [anon_sym_BANG_TILDE] = ACTIONS(4340), + [anon_sym_EQ_TILDE] = ACTIONS(4340), + [anon_sym_AMP_STAR] = ACTIONS(4342), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4340), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_with] = ACTIONS(4342), + [anon_sym_yield] = ACTIONS(4342), + [anon_sym_typeof] = ACTIONS(4342), + [anon_sym_sizeof] = ACTIONS(4342), + [anon_sym_instance_sizeof] = ACTIONS(4342), + [anon_sym_offsetof] = ACTIONS(4342), + [sym__constant_segment] = ACTIONS(4340), + [anon_sym_COLON_COLON] = ACTIONS(4340), + [anon_sym___LINE__] = ACTIONS(4342), + [anon_sym___END_LINE__] = ACTIONS(4342), + [anon_sym___FILE__] = ACTIONS(4342), + [anon_sym___DIR__] = ACTIONS(4342), + [sym_special_variable] = ACTIONS(4340), + [sym_identifier_method_call] = ACTIONS(4340), + [sym_instance_var] = ACTIONS(4340), + [sym_class_var] = ACTIONS(4340), + [sym_self] = ACTIONS(4342), + [anon_sym_LPAREN2] = ACTIONS(4340), + [anon_sym_QMARK] = ACTIONS(4340), + [anon_sym_AMP_AMP] = ACTIONS(4340), + [anon_sym_PIPE_PIPE] = ACTIONS(4340), + [anon_sym_do] = ACTIONS(4342), + [anon_sym_begin] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_until] = ACTIONS(4342), + [anon_sym_then] = ACTIONS(4342), + [anon_sym_case] = ACTIONS(4342), + [anon_sym_select] = ACTIONS(4342), + [sym__line_break] = ACTIONS(4340), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4340), + [sym__start_of_hash_or_tuple] = ACTIONS(4340), + [sym__start_of_named_tuple] = ACTIONS(4340), + [sym__start_of_index_operator] = ACTIONS(4340), + [sym_unary_plus] = ACTIONS(4340), + [sym_unary_minus] = ACTIONS(4340), + [sym_binary_plus] = ACTIONS(4340), + [sym_binary_minus] = ACTIONS(4340), + [sym_unary_wrapping_plus] = ACTIONS(4340), + [sym_unary_wrapping_minus] = ACTIONS(4340), + [sym_binary_wrapping_plus] = ACTIONS(4340), + [sym_binary_wrapping_minus] = ACTIONS(4340), + [sym__unary_star] = ACTIONS(4340), + [sym__binary_star] = ACTIONS(4340), + [sym__unary_double_star] = ACTIONS(4340), + [sym__binary_double_star] = ACTIONS(4340), + [sym__block_ampersand] = ACTIONS(4340), + [sym_binary_ampersand] = ACTIONS(4340), + [sym__beginless_range_operator] = ACTIONS(4340), + [sym__regex_start] = ACTIONS(4340), + [sym__binary_slash] = ACTIONS(4340), + [sym__binary_double_slash] = ACTIONS(4340), + [sym__regular_if_keyword] = ACTIONS(4340), + [sym__regular_unless_keyword] = ACTIONS(4340), + [sym__modulo_operator] = ACTIONS(4340), + [sym__string_literal_start] = ACTIONS(4340), + [sym__string_percent_literal_start] = ACTIONS(4340), + [sym__command_percent_literal_start] = ACTIONS(4340), + [sym__string_array_percent_literal_start] = ACTIONS(4340), + [sym__symbol_array_percent_literal_start] = ACTIONS(4340), + [sym__regex_percent_literal_start] = ACTIONS(4340), + [sym_heredoc_start] = ACTIONS(4340), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4340), }, [1976] = { [sym_heredoc_body] = STATE(1976), - [sym_identifier] = ACTIONS(4301), - [anon_sym_SEMI] = ACTIONS(4299), - [anon_sym_LPAREN] = ACTIONS(4301), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4301), - [sym_true] = ACTIONS(4301), - [sym_false] = ACTIONS(4301), - [aux_sym_integer_token2] = ACTIONS(4301), - [aux_sym_float_token2] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_operator_symbol] = ACTIONS(4299), - [sym_unquoted_symbol] = ACTIONS(4299), - [anon_sym_COLON_DQUOTE] = ACTIONS(4299), - [anon_sym_BQUOTE] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [anon_sym_COMMA] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4299), - [anon_sym_DASH_GT] = ACTIONS(4299), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_PIPE] = ACTIONS(4301), - [anon_sym_CARET] = ACTIONS(4299), - [anon_sym_GT_GT] = ACTIONS(4299), - [anon_sym_LT_LT] = ACTIONS(4299), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ_GT] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4299), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_TILDE] = ACTIONS(4299), - [anon_sym_BANG_TILDE] = ACTIONS(4299), - [anon_sym_EQ_TILDE] = ACTIONS(4299), - [anon_sym_AMP_STAR] = ACTIONS(4301), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_with] = ACTIONS(4301), - [anon_sym_yield] = ACTIONS(4301), - [anon_sym_typeof] = ACTIONS(4301), - [anon_sym_sizeof] = ACTIONS(4301), - [anon_sym_instance_sizeof] = ACTIONS(4301), - [anon_sym_offsetof] = ACTIONS(4301), - [sym__constant_segment] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4299), - [anon_sym___LINE__] = ACTIONS(4301), - [anon_sym___END_LINE__] = ACTIONS(4301), - [anon_sym___FILE__] = ACTIONS(4301), - [anon_sym___DIR__] = ACTIONS(4301), - [sym_special_variable] = ACTIONS(4299), - [sym_identifier_method_call] = ACTIONS(4299), - [sym_instance_var] = ACTIONS(4299), - [sym_class_var] = ACTIONS(4299), - [sym_self] = ACTIONS(4301), - [anon_sym_LPAREN2] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4299), - [anon_sym_AMP_AMP] = ACTIONS(4299), - [anon_sym_PIPE_PIPE] = ACTIONS(4299), - [anon_sym_do] = ACTIONS(4301), - [anon_sym_begin] = ACTIONS(4301), - [anon_sym_while] = ACTIONS(4301), - [anon_sym_until] = ACTIONS(4301), - [anon_sym_then] = ACTIONS(4301), - [anon_sym_case] = ACTIONS(4301), - [sym__line_break] = ACTIONS(4299), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4299), - [sym__start_of_hash_or_tuple] = ACTIONS(4299), - [sym__start_of_named_tuple] = ACTIONS(4299), - [sym__start_of_index_operator] = ACTIONS(4299), - [sym_unary_plus] = ACTIONS(4299), - [sym_unary_minus] = ACTIONS(4299), - [sym_binary_plus] = ACTIONS(4299), - [sym_binary_minus] = ACTIONS(4299), - [sym_unary_wrapping_plus] = ACTIONS(4299), - [sym_unary_wrapping_minus] = ACTIONS(4299), - [sym_binary_wrapping_plus] = ACTIONS(4299), - [sym_binary_wrapping_minus] = ACTIONS(4299), - [sym__unary_star] = ACTIONS(4299), - [sym__binary_star] = ACTIONS(4299), - [sym__unary_double_star] = ACTIONS(4299), - [sym__binary_double_star] = ACTIONS(4299), - [sym__block_ampersand] = ACTIONS(4299), - [sym_binary_ampersand] = ACTIONS(4299), - [sym__beginless_range_operator] = ACTIONS(4299), - [sym__regex_start] = ACTIONS(4299), - [sym__binary_slash] = ACTIONS(4299), - [sym__binary_double_slash] = ACTIONS(4299), - [sym__regular_if_keyword] = ACTIONS(4299), - [sym__regular_unless_keyword] = ACTIONS(4299), - [sym__modulo_operator] = ACTIONS(4299), - [sym__string_literal_start] = ACTIONS(4299), - [sym__string_percent_literal_start] = ACTIONS(4299), - [sym__command_percent_literal_start] = ACTIONS(4299), - [sym__string_array_percent_literal_start] = ACTIONS(4299), - [sym__symbol_array_percent_literal_start] = ACTIONS(4299), - [sym__regex_percent_literal_start] = ACTIONS(4299), - [sym_heredoc_start] = ACTIONS(4299), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4299), + [sym_identifier] = ACTIONS(4330), + [anon_sym_LPAREN] = ACTIONS(4330), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4330), + [sym_true] = ACTIONS(4330), + [sym_false] = ACTIONS(4330), + [aux_sym_integer_token2] = ACTIONS(4330), + [aux_sym_float_token2] = ACTIONS(4328), + [anon_sym_SQUOTE] = ACTIONS(4328), + [sym_operator_symbol] = ACTIONS(4328), + [sym_unquoted_symbol] = ACTIONS(4328), + [anon_sym_COLON_DQUOTE] = ACTIONS(4328), + [anon_sym_BQUOTE] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4328), + [anon_sym_COMMA] = ACTIONS(4328), + [anon_sym_DOT_DOT] = ACTIONS(4330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4328), + [anon_sym_DASH_GT] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym_PIPE] = ACTIONS(4330), + [anon_sym_CARET] = ACTIONS(4328), + [anon_sym_GT_GT] = ACTIONS(4328), + [anon_sym_LT_LT] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4330), + [anon_sym_BANG_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4330), + [anon_sym_GT] = ACTIONS(4330), + [anon_sym_GT_EQ] = ACTIONS(4328), + [anon_sym_LT_EQ_GT] = ACTIONS(4328), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4330), + [anon_sym_TILDE] = ACTIONS(4328), + [anon_sym_BANG_TILDE] = ACTIONS(4328), + [anon_sym_EQ_TILDE] = ACTIONS(4328), + [anon_sym_AMP_STAR] = ACTIONS(4330), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4328), + [anon_sym_DOT] = ACTIONS(4330), + [anon_sym_EQ] = ACTIONS(4440), + [anon_sym_with] = ACTIONS(4330), + [anon_sym_yield] = ACTIONS(4330), + [anon_sym_typeof] = ACTIONS(4330), + [anon_sym_sizeof] = ACTIONS(4330), + [anon_sym_instance_sizeof] = ACTIONS(4330), + [anon_sym_offsetof] = ACTIONS(4330), + [sym__constant_segment] = ACTIONS(4328), + [anon_sym_COLON_COLON] = ACTIONS(4328), + [anon_sym___LINE__] = ACTIONS(4330), + [anon_sym___END_LINE__] = ACTIONS(4330), + [anon_sym___FILE__] = ACTIONS(4330), + [anon_sym___DIR__] = ACTIONS(4330), + [sym_special_variable] = ACTIONS(4328), + [sym_identifier_method_call] = ACTIONS(4328), + [sym_instance_var] = ACTIONS(4328), + [sym_class_var] = ACTIONS(4328), + [sym_self] = ACTIONS(4330), + [anon_sym_LPAREN2] = ACTIONS(4328), + [anon_sym_QMARK] = ACTIONS(4330), + [anon_sym_QMARK2] = ACTIONS(4442), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_do] = ACTIONS(4330), + [anon_sym_begin] = ACTIONS(4330), + [anon_sym_while] = ACTIONS(4330), + [anon_sym_until] = ACTIONS(4330), + [anon_sym_case] = ACTIONS(4330), + [anon_sym_select] = ACTIONS(4330), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4328), + [sym__start_of_hash_or_tuple] = ACTIONS(4328), + [sym__start_of_named_tuple] = ACTIONS(4328), + [sym__start_of_index_operator] = ACTIONS(4328), + [sym__end_of_with_expression] = ACTIONS(4328), + [sym_unary_plus] = ACTIONS(4328), + [sym_unary_minus] = ACTIONS(4328), + [sym_binary_plus] = ACTIONS(4328), + [sym_binary_minus] = ACTIONS(4328), + [sym_unary_wrapping_plus] = ACTIONS(4328), + [sym_unary_wrapping_minus] = ACTIONS(4328), + [sym_binary_wrapping_plus] = ACTIONS(4328), + [sym_binary_wrapping_minus] = ACTIONS(4328), + [sym__unary_star] = ACTIONS(4328), + [sym__binary_star] = ACTIONS(4328), + [sym__unary_double_star] = ACTIONS(4328), + [sym__binary_double_star] = ACTIONS(4328), + [sym__block_ampersand] = ACTIONS(4328), + [sym_binary_ampersand] = ACTIONS(4328), + [sym__beginless_range_operator] = ACTIONS(4328), + [sym__regex_start] = ACTIONS(4328), + [sym__binary_slash] = ACTIONS(4328), + [sym__binary_double_slash] = ACTIONS(4328), + [sym__regular_if_keyword] = ACTIONS(4328), + [sym__regular_unless_keyword] = ACTIONS(4328), + [sym__modulo_operator] = ACTIONS(4328), + [sym__string_literal_start] = ACTIONS(4328), + [sym__string_percent_literal_start] = ACTIONS(4328), + [sym__command_percent_literal_start] = ACTIONS(4328), + [sym__string_array_percent_literal_start] = ACTIONS(4328), + [sym__symbol_array_percent_literal_start] = ACTIONS(4328), + [sym__regex_percent_literal_start] = ACTIONS(4328), + [sym_heredoc_start] = ACTIONS(4328), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4328), }, [1977] = { [sym_heredoc_body] = STATE(1977), - [sym_identifier] = ACTIONS(4309), - [anon_sym_SEMI] = ACTIONS(4307), - [anon_sym_LPAREN] = ACTIONS(4309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4309), - [sym_true] = ACTIONS(4309), - [sym_false] = ACTIONS(4309), - [aux_sym_integer_token2] = ACTIONS(4309), - [aux_sym_float_token2] = ACTIONS(4307), - [anon_sym_SQUOTE] = ACTIONS(4307), - [sym_operator_symbol] = ACTIONS(4307), - [sym_unquoted_symbol] = ACTIONS(4307), - [anon_sym_COLON_DQUOTE] = ACTIONS(4307), - [anon_sym_BQUOTE] = ACTIONS(4307), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_COMMA] = ACTIONS(4307), - [anon_sym_DOT_DOT] = ACTIONS(4309), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4307), - [anon_sym_DASH_GT] = ACTIONS(4307), - [anon_sym_LT] = ACTIONS(4309), - [anon_sym_PIPE] = ACTIONS(4309), - [anon_sym_CARET] = ACTIONS(4307), - [anon_sym_GT_GT] = ACTIONS(4307), - [anon_sym_LT_LT] = ACTIONS(4307), - [anon_sym_EQ_EQ] = ACTIONS(4309), - [anon_sym_BANG_EQ] = ACTIONS(4307), - [anon_sym_LT_EQ] = ACTIONS(4309), - [anon_sym_GT] = ACTIONS(4309), - [anon_sym_GT_EQ] = ACTIONS(4307), - [anon_sym_LT_EQ_GT] = ACTIONS(4307), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), - [anon_sym_BANG] = ACTIONS(4309), - [anon_sym_TILDE] = ACTIONS(4307), - [anon_sym_BANG_TILDE] = ACTIONS(4307), - [anon_sym_EQ_TILDE] = ACTIONS(4307), - [anon_sym_AMP_STAR] = ACTIONS(4309), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4307), - [anon_sym_DOT] = ACTIONS(4309), - [anon_sym_with] = ACTIONS(4309), - [anon_sym_yield] = ACTIONS(4309), - [anon_sym_typeof] = ACTIONS(4309), - [anon_sym_sizeof] = ACTIONS(4309), - [anon_sym_instance_sizeof] = ACTIONS(4309), - [anon_sym_offsetof] = ACTIONS(4309), - [sym__constant_segment] = ACTIONS(4307), - [anon_sym_COLON_COLON] = ACTIONS(4307), - [anon_sym___LINE__] = ACTIONS(4309), - [anon_sym___END_LINE__] = ACTIONS(4309), - [anon_sym___FILE__] = ACTIONS(4309), - [anon_sym___DIR__] = ACTIONS(4309), - [sym_special_variable] = ACTIONS(4307), - [sym_identifier_method_call] = ACTIONS(4307), - [sym_instance_var] = ACTIONS(4307), - [sym_class_var] = ACTIONS(4307), - [sym_self] = ACTIONS(4309), - [anon_sym_LPAREN2] = ACTIONS(4307), - [anon_sym_QMARK] = ACTIONS(4307), - [anon_sym_AMP_AMP] = ACTIONS(4307), - [anon_sym_PIPE_PIPE] = ACTIONS(4307), - [anon_sym_do] = ACTIONS(4309), - [anon_sym_begin] = ACTIONS(4309), - [anon_sym_while] = ACTIONS(4309), - [anon_sym_until] = ACTIONS(4309), - [anon_sym_then] = ACTIONS(4309), - [anon_sym_case] = ACTIONS(4309), - [sym__line_break] = ACTIONS(4307), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4307), - [sym__start_of_hash_or_tuple] = ACTIONS(4307), - [sym__start_of_named_tuple] = ACTIONS(4307), - [sym__start_of_index_operator] = ACTIONS(4307), - [sym_unary_plus] = ACTIONS(4307), - [sym_unary_minus] = ACTIONS(4307), - [sym_binary_plus] = ACTIONS(4307), - [sym_binary_minus] = ACTIONS(4307), - [sym_unary_wrapping_plus] = ACTIONS(4307), - [sym_unary_wrapping_minus] = ACTIONS(4307), - [sym_binary_wrapping_plus] = ACTIONS(4307), - [sym_binary_wrapping_minus] = ACTIONS(4307), - [sym__unary_star] = ACTIONS(4307), - [sym__binary_star] = ACTIONS(4307), - [sym__unary_double_star] = ACTIONS(4307), - [sym__binary_double_star] = ACTIONS(4307), - [sym__block_ampersand] = ACTIONS(4307), - [sym_binary_ampersand] = ACTIONS(4307), - [sym__beginless_range_operator] = ACTIONS(4307), - [sym__regex_start] = ACTIONS(4307), - [sym__binary_slash] = ACTIONS(4307), - [sym__binary_double_slash] = ACTIONS(4307), - [sym__regular_if_keyword] = ACTIONS(4307), - [sym__regular_unless_keyword] = ACTIONS(4307), - [sym__modulo_operator] = ACTIONS(4307), - [sym__string_literal_start] = ACTIONS(4307), - [sym__string_percent_literal_start] = ACTIONS(4307), - [sym__command_percent_literal_start] = ACTIONS(4307), - [sym__string_array_percent_literal_start] = ACTIONS(4307), - [sym__symbol_array_percent_literal_start] = ACTIONS(4307), - [sym__regex_percent_literal_start] = ACTIONS(4307), - [sym_heredoc_start] = ACTIONS(4307), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4307), + [sym_identifier] = ACTIONS(4346), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4346), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4346), + [sym_true] = ACTIONS(4346), + [sym_false] = ACTIONS(4346), + [aux_sym_integer_token2] = ACTIONS(4346), + [aux_sym_float_token2] = ACTIONS(4344), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym_operator_symbol] = ACTIONS(4344), + [sym_unquoted_symbol] = ACTIONS(4344), + [anon_sym_COLON_DQUOTE] = ACTIONS(4344), + [anon_sym_BQUOTE] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_DOT_DOT] = ACTIONS(4346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4344), + [anon_sym_DASH_GT] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4346), + [anon_sym_PIPE] = ACTIONS(4346), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_GT_GT] = ACTIONS(4344), + [anon_sym_LT_LT] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4346), + [anon_sym_BANG_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4346), + [anon_sym_GT] = ACTIONS(4346), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ_GT] = ACTIONS(4344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4346), + [anon_sym_TILDE] = ACTIONS(4344), + [anon_sym_BANG_TILDE] = ACTIONS(4344), + [anon_sym_EQ_TILDE] = ACTIONS(4344), + [anon_sym_AMP_STAR] = ACTIONS(4346), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4346), + [anon_sym_with] = ACTIONS(4346), + [anon_sym_yield] = ACTIONS(4346), + [anon_sym_typeof] = ACTIONS(4346), + [anon_sym_sizeof] = ACTIONS(4346), + [anon_sym_instance_sizeof] = ACTIONS(4346), + [anon_sym_offsetof] = ACTIONS(4346), + [sym__constant_segment] = ACTIONS(4344), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym___LINE__] = ACTIONS(4346), + [anon_sym___END_LINE__] = ACTIONS(4346), + [anon_sym___FILE__] = ACTIONS(4346), + [anon_sym___DIR__] = ACTIONS(4346), + [sym_special_variable] = ACTIONS(4344), + [sym_identifier_method_call] = ACTIONS(4344), + [sym_instance_var] = ACTIONS(4344), + [sym_class_var] = ACTIONS(4344), + [sym_self] = ACTIONS(4346), + [anon_sym_LPAREN2] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_do] = ACTIONS(4346), + [anon_sym_begin] = ACTIONS(4346), + [anon_sym_while] = ACTIONS(4346), + [anon_sym_until] = ACTIONS(4346), + [anon_sym_then] = ACTIONS(4346), + [anon_sym_case] = ACTIONS(4346), + [anon_sym_select] = ACTIONS(4346), + [sym__line_break] = ACTIONS(4344), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4344), + [sym__start_of_hash_or_tuple] = ACTIONS(4344), + [sym__start_of_named_tuple] = ACTIONS(4344), + [sym__start_of_index_operator] = ACTIONS(4344), + [sym_unary_plus] = ACTIONS(4344), + [sym_unary_minus] = ACTIONS(4344), + [sym_binary_plus] = ACTIONS(4344), + [sym_binary_minus] = ACTIONS(4344), + [sym_unary_wrapping_plus] = ACTIONS(4344), + [sym_unary_wrapping_minus] = ACTIONS(4344), + [sym_binary_wrapping_plus] = ACTIONS(4344), + [sym_binary_wrapping_minus] = ACTIONS(4344), + [sym__unary_star] = ACTIONS(4344), + [sym__binary_star] = ACTIONS(4344), + [sym__unary_double_star] = ACTIONS(4344), + [sym__binary_double_star] = ACTIONS(4344), + [sym__block_ampersand] = ACTIONS(4344), + [sym_binary_ampersand] = ACTIONS(4344), + [sym__beginless_range_operator] = ACTIONS(4344), + [sym__regex_start] = ACTIONS(4344), + [sym__binary_slash] = ACTIONS(4344), + [sym__binary_double_slash] = ACTIONS(4344), + [sym__regular_if_keyword] = ACTIONS(4344), + [sym__regular_unless_keyword] = ACTIONS(4344), + [sym__modulo_operator] = ACTIONS(4344), + [sym__string_literal_start] = ACTIONS(4344), + [sym__string_percent_literal_start] = ACTIONS(4344), + [sym__command_percent_literal_start] = ACTIONS(4344), + [sym__string_array_percent_literal_start] = ACTIONS(4344), + [sym__symbol_array_percent_literal_start] = ACTIONS(4344), + [sym__regex_percent_literal_start] = ACTIONS(4344), + [sym_heredoc_start] = ACTIONS(4344), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4344), }, [1978] = { [sym_heredoc_body] = STATE(1978), - [sym_identifier] = ACTIONS(4305), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4305), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4305), - [sym_true] = ACTIONS(4305), - [sym_false] = ACTIONS(4305), - [aux_sym_integer_token2] = ACTIONS(4305), - [aux_sym_float_token2] = ACTIONS(4303), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym_operator_symbol] = ACTIONS(4303), - [sym_unquoted_symbol] = ACTIONS(4303), - [anon_sym_COLON_DQUOTE] = ACTIONS(4303), - [anon_sym_BQUOTE] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_DOT_DOT] = ACTIONS(4305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), - [anon_sym_DASH_GT] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4305), - [anon_sym_PIPE] = ACTIONS(4305), - [anon_sym_CARET] = ACTIONS(4303), - [anon_sym_GT_GT] = ACTIONS(4303), - [anon_sym_LT_LT] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4305), - [anon_sym_BANG_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4305), - [anon_sym_GT] = ACTIONS(4305), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ_GT] = ACTIONS(4303), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4305), - [anon_sym_TILDE] = ACTIONS(4303), - [anon_sym_BANG_TILDE] = ACTIONS(4303), - [anon_sym_EQ_TILDE] = ACTIONS(4303), - [anon_sym_AMP_STAR] = ACTIONS(4305), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4303), - [anon_sym_DOT] = ACTIONS(4305), - [anon_sym_with] = ACTIONS(4305), - [anon_sym_yield] = ACTIONS(4305), - [anon_sym_typeof] = ACTIONS(4305), - [anon_sym_sizeof] = ACTIONS(4305), - [anon_sym_instance_sizeof] = ACTIONS(4305), - [anon_sym_offsetof] = ACTIONS(4305), - [sym__constant_segment] = ACTIONS(4303), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym___LINE__] = ACTIONS(4305), - [anon_sym___END_LINE__] = ACTIONS(4305), - [anon_sym___FILE__] = ACTIONS(4305), - [anon_sym___DIR__] = ACTIONS(4305), - [sym_special_variable] = ACTIONS(4303), - [sym_identifier_method_call] = ACTIONS(4303), - [sym_instance_var] = ACTIONS(4303), - [sym_class_var] = ACTIONS(4303), - [sym_self] = ACTIONS(4305), - [anon_sym_LPAREN2] = ACTIONS(4303), - [anon_sym_QMARK] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_do] = ACTIONS(4305), - [anon_sym_begin] = ACTIONS(4305), - [anon_sym_while] = ACTIONS(4305), - [anon_sym_until] = ACTIONS(4305), - [anon_sym_then] = ACTIONS(4305), - [anon_sym_case] = ACTIONS(4305), - [sym__line_break] = ACTIONS(4303), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4303), - [sym__start_of_hash_or_tuple] = ACTIONS(4303), - [sym__start_of_named_tuple] = ACTIONS(4303), - [sym__start_of_index_operator] = ACTIONS(4303), - [sym_unary_plus] = ACTIONS(4303), - [sym_unary_minus] = ACTIONS(4303), - [sym_binary_plus] = ACTIONS(4303), - [sym_binary_minus] = ACTIONS(4303), - [sym_unary_wrapping_plus] = ACTIONS(4303), - [sym_unary_wrapping_minus] = ACTIONS(4303), - [sym_binary_wrapping_plus] = ACTIONS(4303), - [sym_binary_wrapping_minus] = ACTIONS(4303), - [sym__unary_star] = ACTIONS(4303), - [sym__binary_star] = ACTIONS(4303), - [sym__unary_double_star] = ACTIONS(4303), - [sym__binary_double_star] = ACTIONS(4303), - [sym__block_ampersand] = ACTIONS(4303), - [sym_binary_ampersand] = ACTIONS(4303), - [sym__beginless_range_operator] = ACTIONS(4303), - [sym__regex_start] = ACTIONS(4303), - [sym__binary_slash] = ACTIONS(4303), - [sym__binary_double_slash] = ACTIONS(4303), - [sym__regular_if_keyword] = ACTIONS(4303), - [sym__regular_unless_keyword] = ACTIONS(4303), - [sym__modulo_operator] = ACTIONS(4303), - [sym__string_literal_start] = ACTIONS(4303), - [sym__string_percent_literal_start] = ACTIONS(4303), - [sym__command_percent_literal_start] = ACTIONS(4303), - [sym__string_array_percent_literal_start] = ACTIONS(4303), - [sym__symbol_array_percent_literal_start] = ACTIONS(4303), - [sym__regex_percent_literal_start] = ACTIONS(4303), - [sym_heredoc_start] = ACTIONS(4303), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4303), + [sym_identifier] = ACTIONS(3269), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3269), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [aux_sym_integer_token2] = ACTIONS(3269), + [aux_sym_float_token2] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [sym_operator_symbol] = ACTIONS(3267), + [sym_unquoted_symbol] = ACTIONS(3267), + [anon_sym_COLON_DQUOTE] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3267), + [anon_sym_GT_GT] = ACTIONS(3267), + [anon_sym_LT_LT] = ACTIONS(3267), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ_GT] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_AMP_STAR] = ACTIONS(3269), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3269), + [anon_sym_instance_sizeof] = ACTIONS(3269), + [anon_sym_offsetof] = ACTIONS(3269), + [sym__constant_segment] = ACTIONS(3267), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym___LINE__] = ACTIONS(3269), + [anon_sym___END_LINE__] = ACTIONS(3269), + [anon_sym___FILE__] = ACTIONS(3269), + [anon_sym___DIR__] = ACTIONS(3269), + [sym_special_variable] = ACTIONS(3267), + [sym_identifier_method_call] = ACTIONS(3267), + [sym_instance_var] = ACTIONS(3267), + [sym_class_var] = ACTIONS(3267), + [sym_self] = ACTIONS(3269), + [anon_sym_LPAREN2] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3267), + [anon_sym_PIPE_PIPE] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_begin] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_until] = ACTIONS(3269), + [anon_sym_then] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [sym__line_break] = ACTIONS(3267), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3267), + [sym__start_of_hash_or_tuple] = ACTIONS(3267), + [sym__start_of_named_tuple] = ACTIONS(3267), + [sym__start_of_index_operator] = ACTIONS(3267), + [sym_unary_plus] = ACTIONS(3267), + [sym_unary_minus] = ACTIONS(3267), + [sym_binary_plus] = ACTIONS(3267), + [sym_binary_minus] = ACTIONS(3267), + [sym_unary_wrapping_plus] = ACTIONS(3267), + [sym_unary_wrapping_minus] = ACTIONS(3267), + [sym_binary_wrapping_plus] = ACTIONS(3267), + [sym_binary_wrapping_minus] = ACTIONS(3267), + [sym__unary_star] = ACTIONS(3267), + [sym__binary_star] = ACTIONS(3267), + [sym__unary_double_star] = ACTIONS(3267), + [sym__binary_double_star] = ACTIONS(3267), + [sym__block_ampersand] = ACTIONS(3267), + [sym_binary_ampersand] = ACTIONS(3267), + [sym__beginless_range_operator] = ACTIONS(3267), + [sym__regex_start] = ACTIONS(3267), + [sym__binary_slash] = ACTIONS(3267), + [sym__binary_double_slash] = ACTIONS(3267), + [sym__regular_if_keyword] = ACTIONS(3267), + [sym__regular_unless_keyword] = ACTIONS(3267), + [sym__modulo_operator] = ACTIONS(3267), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3267), + [sym__command_percent_literal_start] = ACTIONS(3267), + [sym__string_array_percent_literal_start] = ACTIONS(3267), + [sym__symbol_array_percent_literal_start] = ACTIONS(3267), + [sym__regex_percent_literal_start] = ACTIONS(3267), + [sym_heredoc_start] = ACTIONS(3267), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3267), }, [1979] = { [sym_heredoc_body] = STATE(1979), - [sym_identifier] = ACTIONS(4293), - [anon_sym_LPAREN] = ACTIONS(4293), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4293), - [sym_true] = ACTIONS(4293), - [sym_false] = ACTIONS(4293), - [aux_sym_integer_token2] = ACTIONS(4293), - [aux_sym_float_token2] = ACTIONS(4291), - [anon_sym_SQUOTE] = ACTIONS(4291), - [sym_operator_symbol] = ACTIONS(4291), - [sym_unquoted_symbol] = ACTIONS(4291), - [anon_sym_COLON_DQUOTE] = ACTIONS(4291), - [anon_sym_BQUOTE] = ACTIONS(4291), - [anon_sym_LBRACK] = ACTIONS(4291), - [anon_sym_COMMA] = ACTIONS(4291), - [anon_sym_DOT_DOT] = ACTIONS(4293), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4291), - [anon_sym_DASH_GT] = ACTIONS(4291), - [anon_sym_LT] = ACTIONS(4293), - [anon_sym_PIPE] = ACTIONS(4293), - [anon_sym_CARET] = ACTIONS(4291), - [anon_sym_GT_GT] = ACTIONS(4291), - [anon_sym_LT_LT] = ACTIONS(4291), - [anon_sym_EQ_EQ] = ACTIONS(4293), - [anon_sym_BANG_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ] = ACTIONS(4293), - [anon_sym_GT] = ACTIONS(4293), - [anon_sym_GT_EQ] = ACTIONS(4291), - [anon_sym_LT_EQ_GT] = ACTIONS(4291), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4291), - [anon_sym_BANG] = ACTIONS(4293), - [anon_sym_TILDE] = ACTIONS(4291), - [anon_sym_BANG_TILDE] = ACTIONS(4291), - [anon_sym_EQ_TILDE] = ACTIONS(4291), - [anon_sym_AMP_STAR] = ACTIONS(4293), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4291), - [anon_sym_DOT] = ACTIONS(4293), - [anon_sym_EQ] = ACTIONS(4403), - [anon_sym_with] = ACTIONS(4293), - [anon_sym_yield] = ACTIONS(4293), - [anon_sym_typeof] = ACTIONS(4293), - [anon_sym_sizeof] = ACTIONS(4293), - [anon_sym_instance_sizeof] = ACTIONS(4293), - [anon_sym_offsetof] = ACTIONS(4293), - [sym__constant_segment] = ACTIONS(4291), - [anon_sym_COLON_COLON] = ACTIONS(4291), - [anon_sym___LINE__] = ACTIONS(4293), - [anon_sym___END_LINE__] = ACTIONS(4293), - [anon_sym___FILE__] = ACTIONS(4293), - [anon_sym___DIR__] = ACTIONS(4293), - [sym_special_variable] = ACTIONS(4291), - [sym_identifier_method_call] = ACTIONS(4291), - [sym_instance_var] = ACTIONS(4291), - [sym_class_var] = ACTIONS(4291), - [sym_self] = ACTIONS(4293), - [anon_sym_LPAREN2] = ACTIONS(4291), - [anon_sym_QMARK] = ACTIONS(4293), - [anon_sym_QMARK2] = ACTIONS(4405), - [anon_sym_AMP_AMP] = ACTIONS(4291), - [anon_sym_PIPE_PIPE] = ACTIONS(4291), - [anon_sym_do] = ACTIONS(4293), - [anon_sym_begin] = ACTIONS(4293), - [anon_sym_while] = ACTIONS(4293), - [anon_sym_until] = ACTIONS(4293), - [anon_sym_case] = ACTIONS(4293), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4291), - [sym__start_of_hash_or_tuple] = ACTIONS(4291), - [sym__start_of_named_tuple] = ACTIONS(4291), - [sym__start_of_index_operator] = ACTIONS(4291), - [sym__end_of_with_expression] = ACTIONS(4291), - [sym_unary_plus] = ACTIONS(4291), - [sym_unary_minus] = ACTIONS(4291), - [sym_binary_plus] = ACTIONS(4291), - [sym_binary_minus] = ACTIONS(4291), - [sym_unary_wrapping_plus] = ACTIONS(4291), - [sym_unary_wrapping_minus] = ACTIONS(4291), - [sym_binary_wrapping_plus] = ACTIONS(4291), - [sym_binary_wrapping_minus] = ACTIONS(4291), - [sym__unary_star] = ACTIONS(4291), - [sym__binary_star] = ACTIONS(4291), - [sym__unary_double_star] = ACTIONS(4291), - [sym__binary_double_star] = ACTIONS(4291), - [sym__block_ampersand] = ACTIONS(4291), - [sym_binary_ampersand] = ACTIONS(4291), - [sym__beginless_range_operator] = ACTIONS(4291), - [sym__regex_start] = ACTIONS(4291), - [sym__binary_slash] = ACTIONS(4291), - [sym__binary_double_slash] = ACTIONS(4291), - [sym__regular_if_keyword] = ACTIONS(4291), - [sym__regular_unless_keyword] = ACTIONS(4291), - [sym__modulo_operator] = ACTIONS(4291), - [sym__string_literal_start] = ACTIONS(4291), - [sym__string_percent_literal_start] = ACTIONS(4291), - [sym__command_percent_literal_start] = ACTIONS(4291), - [sym__string_array_percent_literal_start] = ACTIONS(4291), - [sym__symbol_array_percent_literal_start] = ACTIONS(4291), - [sym__regex_percent_literal_start] = ACTIONS(4291), - [sym_heredoc_start] = ACTIONS(4291), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4291), + [sym_identifier] = ACTIONS(4338), + [anon_sym_SEMI] = ACTIONS(4336), + [anon_sym_LPAREN] = ACTIONS(4338), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4338), + [sym_true] = ACTIONS(4338), + [sym_false] = ACTIONS(4338), + [aux_sym_integer_token2] = ACTIONS(4338), + [aux_sym_float_token2] = ACTIONS(4336), + [anon_sym_SQUOTE] = ACTIONS(4336), + [sym_operator_symbol] = ACTIONS(4336), + [sym_unquoted_symbol] = ACTIONS(4336), + [anon_sym_COLON_DQUOTE] = ACTIONS(4336), + [anon_sym_BQUOTE] = ACTIONS(4336), + [anon_sym_LBRACK] = ACTIONS(4336), + [anon_sym_COMMA] = ACTIONS(4336), + [anon_sym_DOT_DOT] = ACTIONS(4338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4336), + [anon_sym_DASH_GT] = ACTIONS(4336), + [anon_sym_LT] = ACTIONS(4338), + [anon_sym_PIPE] = ACTIONS(4338), + [anon_sym_CARET] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4336), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_EQ_EQ] = ACTIONS(4338), + [anon_sym_BANG_EQ] = ACTIONS(4336), + [anon_sym_LT_EQ] = ACTIONS(4338), + [anon_sym_GT] = ACTIONS(4338), + [anon_sym_GT_EQ] = ACTIONS(4336), + [anon_sym_LT_EQ_GT] = ACTIONS(4336), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4336), + [anon_sym_BANG] = ACTIONS(4338), + [anon_sym_TILDE] = ACTIONS(4336), + [anon_sym_BANG_TILDE] = ACTIONS(4336), + [anon_sym_EQ_TILDE] = ACTIONS(4336), + [anon_sym_AMP_STAR] = ACTIONS(4338), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4336), + [anon_sym_DOT] = ACTIONS(4338), + [anon_sym_with] = ACTIONS(4338), + [anon_sym_yield] = ACTIONS(4338), + [anon_sym_typeof] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4338), + [anon_sym_instance_sizeof] = ACTIONS(4338), + [anon_sym_offsetof] = ACTIONS(4338), + [sym__constant_segment] = ACTIONS(4336), + [anon_sym_COLON_COLON] = ACTIONS(4336), + [anon_sym___LINE__] = ACTIONS(4338), + [anon_sym___END_LINE__] = ACTIONS(4338), + [anon_sym___FILE__] = ACTIONS(4338), + [anon_sym___DIR__] = ACTIONS(4338), + [sym_special_variable] = ACTIONS(4336), + [sym_identifier_method_call] = ACTIONS(4336), + [sym_instance_var] = ACTIONS(4336), + [sym_class_var] = ACTIONS(4336), + [sym_self] = ACTIONS(4338), + [anon_sym_LPAREN2] = ACTIONS(4336), + [anon_sym_QMARK] = ACTIONS(4336), + [anon_sym_AMP_AMP] = ACTIONS(4336), + [anon_sym_PIPE_PIPE] = ACTIONS(4336), + [anon_sym_do] = ACTIONS(4338), + [anon_sym_begin] = ACTIONS(4338), + [anon_sym_while] = ACTIONS(4338), + [anon_sym_until] = ACTIONS(4338), + [anon_sym_then] = ACTIONS(4338), + [anon_sym_case] = ACTIONS(4338), + [anon_sym_select] = ACTIONS(4338), + [sym__line_break] = ACTIONS(4336), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4336), + [sym__start_of_hash_or_tuple] = ACTIONS(4336), + [sym__start_of_named_tuple] = ACTIONS(4336), + [sym__start_of_index_operator] = ACTIONS(4336), + [sym_unary_plus] = ACTIONS(4336), + [sym_unary_minus] = ACTIONS(4336), + [sym_binary_plus] = ACTIONS(4336), + [sym_binary_minus] = ACTIONS(4336), + [sym_unary_wrapping_plus] = ACTIONS(4336), + [sym_unary_wrapping_minus] = ACTIONS(4336), + [sym_binary_wrapping_plus] = ACTIONS(4336), + [sym_binary_wrapping_minus] = ACTIONS(4336), + [sym__unary_star] = ACTIONS(4336), + [sym__binary_star] = ACTIONS(4336), + [sym__unary_double_star] = ACTIONS(4336), + [sym__binary_double_star] = ACTIONS(4336), + [sym__block_ampersand] = ACTIONS(4336), + [sym_binary_ampersand] = ACTIONS(4336), + [sym__beginless_range_operator] = ACTIONS(4336), + [sym__regex_start] = ACTIONS(4336), + [sym__binary_slash] = ACTIONS(4336), + [sym__binary_double_slash] = ACTIONS(4336), + [sym__regular_if_keyword] = ACTIONS(4336), + [sym__regular_unless_keyword] = ACTIONS(4336), + [sym__modulo_operator] = ACTIONS(4336), + [sym__string_literal_start] = ACTIONS(4336), + [sym__string_percent_literal_start] = ACTIONS(4336), + [sym__command_percent_literal_start] = ACTIONS(4336), + [sym__string_array_percent_literal_start] = ACTIONS(4336), + [sym__symbol_array_percent_literal_start] = ACTIONS(4336), + [sym__regex_percent_literal_start] = ACTIONS(4336), + [sym_heredoc_start] = ACTIONS(4336), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4336), }, [1980] = { [sym_heredoc_body] = STATE(1980), - [sym_identifier] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4301), - [sym_true] = ACTIONS(4301), - [sym_false] = ACTIONS(4301), - [aux_sym_integer_token2] = ACTIONS(4301), - [aux_sym_float_token2] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_operator_symbol] = ACTIONS(4299), - [sym_unquoted_symbol] = ACTIONS(4299), - [anon_sym_COLON_DQUOTE] = ACTIONS(4299), - [anon_sym_BQUOTE] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [anon_sym_COMMA] = ACTIONS(4299), - [anon_sym_RBRACK] = ACTIONS(4301), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4299), - [anon_sym_DASH_GT] = ACTIONS(4299), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_PIPE] = ACTIONS(4301), - [anon_sym_CARET] = ACTIONS(4299), - [anon_sym_GT_GT] = ACTIONS(4299), - [anon_sym_LT_LT] = ACTIONS(4299), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ_GT] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4299), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_TILDE] = ACTIONS(4299), - [anon_sym_BANG_TILDE] = ACTIONS(4299), - [anon_sym_EQ_TILDE] = ACTIONS(4299), - [anon_sym_AMP_STAR] = ACTIONS(4301), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_with] = ACTIONS(4301), - [anon_sym_yield] = ACTIONS(4301), - [anon_sym_typeof] = ACTIONS(4301), - [anon_sym_sizeof] = ACTIONS(4301), - [anon_sym_instance_sizeof] = ACTIONS(4301), - [anon_sym_offsetof] = ACTIONS(4301), - [sym__constant_segment] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4299), - [anon_sym___LINE__] = ACTIONS(4301), - [anon_sym___END_LINE__] = ACTIONS(4301), - [anon_sym___FILE__] = ACTIONS(4301), - [anon_sym___DIR__] = ACTIONS(4301), - [sym_special_variable] = ACTIONS(4299), - [sym_identifier_method_call] = ACTIONS(4299), - [sym_instance_var] = ACTIONS(4299), - [sym_class_var] = ACTIONS(4299), - [sym_self] = ACTIONS(4301), - [anon_sym_LPAREN2] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4299), - [anon_sym_RBRACK_QMARK] = ACTIONS(4299), - [anon_sym_AMP_AMP] = ACTIONS(4299), - [anon_sym_PIPE_PIPE] = ACTIONS(4299), - [anon_sym_do] = ACTIONS(4301), - [anon_sym_begin] = ACTIONS(4301), - [anon_sym_while] = ACTIONS(4301), - [anon_sym_until] = ACTIONS(4301), - [anon_sym_case] = ACTIONS(4301), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4299), - [sym__start_of_hash_or_tuple] = ACTIONS(4299), - [sym__start_of_named_tuple] = ACTIONS(4299), - [sym__start_of_index_operator] = ACTIONS(4299), - [sym_unary_plus] = ACTIONS(4299), - [sym_unary_minus] = ACTIONS(4299), - [sym_binary_plus] = ACTIONS(4299), - [sym_binary_minus] = ACTIONS(4299), - [sym_unary_wrapping_plus] = ACTIONS(4299), - [sym_unary_wrapping_minus] = ACTIONS(4299), - [sym_binary_wrapping_plus] = ACTIONS(4299), - [sym_binary_wrapping_minus] = ACTIONS(4299), - [sym__unary_star] = ACTIONS(4299), - [sym__binary_star] = ACTIONS(4299), - [sym__unary_double_star] = ACTIONS(4299), - [sym__binary_double_star] = ACTIONS(4299), - [sym__block_ampersand] = ACTIONS(4299), - [sym_binary_ampersand] = ACTIONS(4299), - [sym__beginless_range_operator] = ACTIONS(4299), - [sym__regex_start] = ACTIONS(4299), - [sym__binary_slash] = ACTIONS(4299), - [sym__binary_double_slash] = ACTIONS(4299), - [sym__regular_if_keyword] = ACTIONS(4299), - [sym__regular_unless_keyword] = ACTIONS(4299), - [sym__modulo_operator] = ACTIONS(4299), - [sym__string_literal_start] = ACTIONS(4299), - [sym__string_percent_literal_start] = ACTIONS(4299), - [sym__command_percent_literal_start] = ACTIONS(4299), - [sym__string_array_percent_literal_start] = ACTIONS(4299), - [sym__symbol_array_percent_literal_start] = ACTIONS(4299), - [sym__regex_percent_literal_start] = ACTIONS(4299), - [sym_heredoc_start] = ACTIONS(4299), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4299), + [sym_identifier] = ACTIONS(4338), + [anon_sym_LPAREN] = ACTIONS(4338), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4338), + [sym_true] = ACTIONS(4338), + [sym_false] = ACTIONS(4338), + [aux_sym_integer_token2] = ACTIONS(4338), + [aux_sym_float_token2] = ACTIONS(4336), + [anon_sym_SQUOTE] = ACTIONS(4336), + [sym_operator_symbol] = ACTIONS(4336), + [sym_unquoted_symbol] = ACTIONS(4336), + [anon_sym_COLON_DQUOTE] = ACTIONS(4336), + [anon_sym_BQUOTE] = ACTIONS(4336), + [anon_sym_LBRACK] = ACTIONS(4336), + [anon_sym_COMMA] = ACTIONS(4336), + [anon_sym_RBRACK] = ACTIONS(4338), + [anon_sym_DOT_DOT] = ACTIONS(4338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4336), + [anon_sym_DASH_GT] = ACTIONS(4336), + [anon_sym_LT] = ACTIONS(4338), + [anon_sym_PIPE] = ACTIONS(4338), + [anon_sym_CARET] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4336), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_EQ_EQ] = ACTIONS(4338), + [anon_sym_BANG_EQ] = ACTIONS(4336), + [anon_sym_LT_EQ] = ACTIONS(4338), + [anon_sym_GT] = ACTIONS(4338), + [anon_sym_GT_EQ] = ACTIONS(4336), + [anon_sym_LT_EQ_GT] = ACTIONS(4336), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4336), + [anon_sym_BANG] = ACTIONS(4338), + [anon_sym_TILDE] = ACTIONS(4336), + [anon_sym_BANG_TILDE] = ACTIONS(4336), + [anon_sym_EQ_TILDE] = ACTIONS(4336), + [anon_sym_AMP_STAR] = ACTIONS(4338), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4336), + [anon_sym_DOT] = ACTIONS(4338), + [anon_sym_with] = ACTIONS(4338), + [anon_sym_yield] = ACTIONS(4338), + [anon_sym_typeof] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4338), + [anon_sym_instance_sizeof] = ACTIONS(4338), + [anon_sym_offsetof] = ACTIONS(4338), + [sym__constant_segment] = ACTIONS(4336), + [anon_sym_COLON_COLON] = ACTIONS(4336), + [anon_sym___LINE__] = ACTIONS(4338), + [anon_sym___END_LINE__] = ACTIONS(4338), + [anon_sym___FILE__] = ACTIONS(4338), + [anon_sym___DIR__] = ACTIONS(4338), + [sym_special_variable] = ACTIONS(4336), + [sym_identifier_method_call] = ACTIONS(4336), + [sym_instance_var] = ACTIONS(4336), + [sym_class_var] = ACTIONS(4336), + [sym_self] = ACTIONS(4338), + [anon_sym_LPAREN2] = ACTIONS(4336), + [anon_sym_QMARK] = ACTIONS(4336), + [anon_sym_RBRACK_QMARK] = ACTIONS(4336), + [anon_sym_AMP_AMP] = ACTIONS(4336), + [anon_sym_PIPE_PIPE] = ACTIONS(4336), + [anon_sym_do] = ACTIONS(4338), + [anon_sym_begin] = ACTIONS(4338), + [anon_sym_while] = ACTIONS(4338), + [anon_sym_until] = ACTIONS(4338), + [anon_sym_case] = ACTIONS(4338), + [anon_sym_select] = ACTIONS(4338), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4336), + [sym__start_of_hash_or_tuple] = ACTIONS(4336), + [sym__start_of_named_tuple] = ACTIONS(4336), + [sym__start_of_index_operator] = ACTIONS(4336), + [sym_unary_plus] = ACTIONS(4336), + [sym_unary_minus] = ACTIONS(4336), + [sym_binary_plus] = ACTIONS(4336), + [sym_binary_minus] = ACTIONS(4336), + [sym_unary_wrapping_plus] = ACTIONS(4336), + [sym_unary_wrapping_minus] = ACTIONS(4336), + [sym_binary_wrapping_plus] = ACTIONS(4336), + [sym_binary_wrapping_minus] = ACTIONS(4336), + [sym__unary_star] = ACTIONS(4336), + [sym__binary_star] = ACTIONS(4336), + [sym__unary_double_star] = ACTIONS(4336), + [sym__binary_double_star] = ACTIONS(4336), + [sym__block_ampersand] = ACTIONS(4336), + [sym_binary_ampersand] = ACTIONS(4336), + [sym__beginless_range_operator] = ACTIONS(4336), + [sym__regex_start] = ACTIONS(4336), + [sym__binary_slash] = ACTIONS(4336), + [sym__binary_double_slash] = ACTIONS(4336), + [sym__regular_if_keyword] = ACTIONS(4336), + [sym__regular_unless_keyword] = ACTIONS(4336), + [sym__modulo_operator] = ACTIONS(4336), + [sym__string_literal_start] = ACTIONS(4336), + [sym__string_percent_literal_start] = ACTIONS(4336), + [sym__command_percent_literal_start] = ACTIONS(4336), + [sym__string_array_percent_literal_start] = ACTIONS(4336), + [sym__symbol_array_percent_literal_start] = ACTIONS(4336), + [sym__regex_percent_literal_start] = ACTIONS(4336), + [sym_heredoc_start] = ACTIONS(4336), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4336), }, [1981] = { [sym_heredoc_body] = STATE(1981), - [sym_identifier] = ACTIONS(4305), - [anon_sym_LPAREN] = ACTIONS(4305), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4305), - [sym_true] = ACTIONS(4305), - [sym_false] = ACTIONS(4305), - [aux_sym_integer_token2] = ACTIONS(4305), - [aux_sym_float_token2] = ACTIONS(4303), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym_operator_symbol] = ACTIONS(4303), - [sym_unquoted_symbol] = ACTIONS(4303), - [anon_sym_COLON_DQUOTE] = ACTIONS(4303), - [anon_sym_BQUOTE] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_RBRACK] = ACTIONS(4305), - [anon_sym_DOT_DOT] = ACTIONS(4305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), - [anon_sym_DASH_GT] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4305), - [anon_sym_PIPE] = ACTIONS(4305), - [anon_sym_CARET] = ACTIONS(4303), - [anon_sym_GT_GT] = ACTIONS(4303), - [anon_sym_LT_LT] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4305), - [anon_sym_BANG_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4305), - [anon_sym_GT] = ACTIONS(4305), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ_GT] = ACTIONS(4303), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4305), - [anon_sym_TILDE] = ACTIONS(4303), - [anon_sym_BANG_TILDE] = ACTIONS(4303), - [anon_sym_EQ_TILDE] = ACTIONS(4303), - [anon_sym_AMP_STAR] = ACTIONS(4305), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4303), - [anon_sym_DOT] = ACTIONS(4305), - [anon_sym_with] = ACTIONS(4305), - [anon_sym_yield] = ACTIONS(4305), - [anon_sym_typeof] = ACTIONS(4305), - [anon_sym_sizeof] = ACTIONS(4305), - [anon_sym_instance_sizeof] = ACTIONS(4305), - [anon_sym_offsetof] = ACTIONS(4305), - [sym__constant_segment] = ACTIONS(4303), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym___LINE__] = ACTIONS(4305), - [anon_sym___END_LINE__] = ACTIONS(4305), - [anon_sym___FILE__] = ACTIONS(4305), - [anon_sym___DIR__] = ACTIONS(4305), - [sym_special_variable] = ACTIONS(4303), - [sym_identifier_method_call] = ACTIONS(4303), - [sym_instance_var] = ACTIONS(4303), - [sym_class_var] = ACTIONS(4303), - [sym_self] = ACTIONS(4305), - [anon_sym_LPAREN2] = ACTIONS(4303), - [anon_sym_QMARK] = ACTIONS(4303), - [anon_sym_RBRACK_QMARK] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_do] = ACTIONS(4305), - [anon_sym_begin] = ACTIONS(4305), - [anon_sym_while] = ACTIONS(4305), - [anon_sym_until] = ACTIONS(4305), - [anon_sym_case] = ACTIONS(4305), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4303), - [sym__start_of_hash_or_tuple] = ACTIONS(4303), - [sym__start_of_named_tuple] = ACTIONS(4303), - [sym__start_of_index_operator] = ACTIONS(4303), - [sym_unary_plus] = ACTIONS(4303), - [sym_unary_minus] = ACTIONS(4303), - [sym_binary_plus] = ACTIONS(4303), - [sym_binary_minus] = ACTIONS(4303), - [sym_unary_wrapping_plus] = ACTIONS(4303), - [sym_unary_wrapping_minus] = ACTIONS(4303), - [sym_binary_wrapping_plus] = ACTIONS(4303), - [sym_binary_wrapping_minus] = ACTIONS(4303), - [sym__unary_star] = ACTIONS(4303), - [sym__binary_star] = ACTIONS(4303), - [sym__unary_double_star] = ACTIONS(4303), - [sym__binary_double_star] = ACTIONS(4303), - [sym__block_ampersand] = ACTIONS(4303), - [sym_binary_ampersand] = ACTIONS(4303), - [sym__beginless_range_operator] = ACTIONS(4303), - [sym__regex_start] = ACTIONS(4303), - [sym__binary_slash] = ACTIONS(4303), - [sym__binary_double_slash] = ACTIONS(4303), - [sym__regular_if_keyword] = ACTIONS(4303), - [sym__regular_unless_keyword] = ACTIONS(4303), - [sym__modulo_operator] = ACTIONS(4303), - [sym__string_literal_start] = ACTIONS(4303), - [sym__string_percent_literal_start] = ACTIONS(4303), - [sym__command_percent_literal_start] = ACTIONS(4303), - [sym__string_array_percent_literal_start] = ACTIONS(4303), - [sym__symbol_array_percent_literal_start] = ACTIONS(4303), - [sym__regex_percent_literal_start] = ACTIONS(4303), - [sym_heredoc_start] = ACTIONS(4303), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4303), + [sym_identifier] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [aux_sym_integer_token2] = ACTIONS(3269), + [aux_sym_float_token2] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [sym_operator_symbol] = ACTIONS(3267), + [sym_unquoted_symbol] = ACTIONS(3267), + [anon_sym_COLON_DQUOTE] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3267), + [anon_sym_RBRACK] = ACTIONS(3269), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3267), + [anon_sym_GT_GT] = ACTIONS(3267), + [anon_sym_LT_LT] = ACTIONS(3267), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ_GT] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_AMP_STAR] = ACTIONS(3269), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3269), + [anon_sym_instance_sizeof] = ACTIONS(3269), + [anon_sym_offsetof] = ACTIONS(3269), + [sym__constant_segment] = ACTIONS(3267), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym___LINE__] = ACTIONS(3269), + [anon_sym___END_LINE__] = ACTIONS(3269), + [anon_sym___FILE__] = ACTIONS(3269), + [anon_sym___DIR__] = ACTIONS(3269), + [sym_special_variable] = ACTIONS(3267), + [sym_identifier_method_call] = ACTIONS(3267), + [sym_instance_var] = ACTIONS(3267), + [sym_class_var] = ACTIONS(3267), + [sym_self] = ACTIONS(3269), + [anon_sym_LPAREN2] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3267), + [anon_sym_RBRACK_QMARK] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3267), + [anon_sym_PIPE_PIPE] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_begin] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_until] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3267), + [sym__start_of_hash_or_tuple] = ACTIONS(3267), + [sym__start_of_named_tuple] = ACTIONS(3267), + [sym__start_of_index_operator] = ACTIONS(3267), + [sym_unary_plus] = ACTIONS(3267), + [sym_unary_minus] = ACTIONS(3267), + [sym_binary_plus] = ACTIONS(3267), + [sym_binary_minus] = ACTIONS(3267), + [sym_unary_wrapping_plus] = ACTIONS(3267), + [sym_unary_wrapping_minus] = ACTIONS(3267), + [sym_binary_wrapping_plus] = ACTIONS(3267), + [sym_binary_wrapping_minus] = ACTIONS(3267), + [sym__unary_star] = ACTIONS(3267), + [sym__binary_star] = ACTIONS(3267), + [sym__unary_double_star] = ACTIONS(3267), + [sym__binary_double_star] = ACTIONS(3267), + [sym__block_ampersand] = ACTIONS(3267), + [sym_binary_ampersand] = ACTIONS(3267), + [sym__beginless_range_operator] = ACTIONS(3267), + [sym__regex_start] = ACTIONS(3267), + [sym__binary_slash] = ACTIONS(3267), + [sym__binary_double_slash] = ACTIONS(3267), + [sym__regular_if_keyword] = ACTIONS(3267), + [sym__regular_unless_keyword] = ACTIONS(3267), + [sym__modulo_operator] = ACTIONS(3267), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3267), + [sym__command_percent_literal_start] = ACTIONS(3267), + [sym__string_array_percent_literal_start] = ACTIONS(3267), + [sym__symbol_array_percent_literal_start] = ACTIONS(3267), + [sym__regex_percent_literal_start] = ACTIONS(3267), + [sym_heredoc_start] = ACTIONS(3267), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3267), }, [1982] = { [sym_heredoc_body] = STATE(1982), - [sym_identifier] = ACTIONS(4309), - [anon_sym_LPAREN] = ACTIONS(4309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4309), - [sym_true] = ACTIONS(4309), - [sym_false] = ACTIONS(4309), - [aux_sym_integer_token2] = ACTIONS(4309), - [aux_sym_float_token2] = ACTIONS(4307), - [anon_sym_SQUOTE] = ACTIONS(4307), - [sym_operator_symbol] = ACTIONS(4307), - [sym_unquoted_symbol] = ACTIONS(4307), - [anon_sym_COLON_DQUOTE] = ACTIONS(4307), - [anon_sym_BQUOTE] = ACTIONS(4307), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_COMMA] = ACTIONS(4307), - [anon_sym_RBRACK] = ACTIONS(4309), - [anon_sym_DOT_DOT] = ACTIONS(4309), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4307), - [anon_sym_DASH_GT] = ACTIONS(4307), - [anon_sym_LT] = ACTIONS(4309), - [anon_sym_PIPE] = ACTIONS(4309), - [anon_sym_CARET] = ACTIONS(4307), - [anon_sym_GT_GT] = ACTIONS(4307), - [anon_sym_LT_LT] = ACTIONS(4307), - [anon_sym_EQ_EQ] = ACTIONS(4309), - [anon_sym_BANG_EQ] = ACTIONS(4307), - [anon_sym_LT_EQ] = ACTIONS(4309), - [anon_sym_GT] = ACTIONS(4309), - [anon_sym_GT_EQ] = ACTIONS(4307), - [anon_sym_LT_EQ_GT] = ACTIONS(4307), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), - [anon_sym_BANG] = ACTIONS(4309), - [anon_sym_TILDE] = ACTIONS(4307), - [anon_sym_BANG_TILDE] = ACTIONS(4307), - [anon_sym_EQ_TILDE] = ACTIONS(4307), - [anon_sym_AMP_STAR] = ACTIONS(4309), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4307), - [anon_sym_DOT] = ACTIONS(4309), - [anon_sym_with] = ACTIONS(4309), - [anon_sym_yield] = ACTIONS(4309), - [anon_sym_typeof] = ACTIONS(4309), - [anon_sym_sizeof] = ACTIONS(4309), - [anon_sym_instance_sizeof] = ACTIONS(4309), - [anon_sym_offsetof] = ACTIONS(4309), - [sym__constant_segment] = ACTIONS(4307), - [anon_sym_COLON_COLON] = ACTIONS(4307), - [anon_sym___LINE__] = ACTIONS(4309), - [anon_sym___END_LINE__] = ACTIONS(4309), - [anon_sym___FILE__] = ACTIONS(4309), - [anon_sym___DIR__] = ACTIONS(4309), - [sym_special_variable] = ACTIONS(4307), - [sym_identifier_method_call] = ACTIONS(4307), - [sym_instance_var] = ACTIONS(4307), - [sym_class_var] = ACTIONS(4307), - [sym_self] = ACTIONS(4309), - [anon_sym_LPAREN2] = ACTIONS(4307), - [anon_sym_QMARK] = ACTIONS(4307), - [anon_sym_RBRACK_QMARK] = ACTIONS(4307), - [anon_sym_AMP_AMP] = ACTIONS(4307), - [anon_sym_PIPE_PIPE] = ACTIONS(4307), - [anon_sym_do] = ACTIONS(4309), - [anon_sym_begin] = ACTIONS(4309), - [anon_sym_while] = ACTIONS(4309), - [anon_sym_until] = ACTIONS(4309), - [anon_sym_case] = ACTIONS(4309), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4307), - [sym__start_of_hash_or_tuple] = ACTIONS(4307), - [sym__start_of_named_tuple] = ACTIONS(4307), - [sym__start_of_index_operator] = ACTIONS(4307), - [sym_unary_plus] = ACTIONS(4307), - [sym_unary_minus] = ACTIONS(4307), - [sym_binary_plus] = ACTIONS(4307), - [sym_binary_minus] = ACTIONS(4307), - [sym_unary_wrapping_plus] = ACTIONS(4307), - [sym_unary_wrapping_minus] = ACTIONS(4307), - [sym_binary_wrapping_plus] = ACTIONS(4307), - [sym_binary_wrapping_minus] = ACTIONS(4307), - [sym__unary_star] = ACTIONS(4307), - [sym__binary_star] = ACTIONS(4307), - [sym__unary_double_star] = ACTIONS(4307), - [sym__binary_double_star] = ACTIONS(4307), - [sym__block_ampersand] = ACTIONS(4307), - [sym_binary_ampersand] = ACTIONS(4307), - [sym__beginless_range_operator] = ACTIONS(4307), - [sym__regex_start] = ACTIONS(4307), - [sym__binary_slash] = ACTIONS(4307), - [sym__binary_double_slash] = ACTIONS(4307), - [sym__regular_if_keyword] = ACTIONS(4307), - [sym__regular_unless_keyword] = ACTIONS(4307), - [sym__modulo_operator] = ACTIONS(4307), - [sym__string_literal_start] = ACTIONS(4307), - [sym__string_percent_literal_start] = ACTIONS(4307), - [sym__command_percent_literal_start] = ACTIONS(4307), - [sym__string_array_percent_literal_start] = ACTIONS(4307), - [sym__symbol_array_percent_literal_start] = ACTIONS(4307), - [sym__regex_percent_literal_start] = ACTIONS(4307), - [sym_heredoc_start] = ACTIONS(4307), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4307), + [sym_identifier] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4342), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4342), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [aux_sym_integer_token2] = ACTIONS(4342), + [aux_sym_float_token2] = ACTIONS(4340), + [anon_sym_SQUOTE] = ACTIONS(4340), + [sym_operator_symbol] = ACTIONS(4340), + [sym_unquoted_symbol] = ACTIONS(4340), + [anon_sym_COLON_DQUOTE] = ACTIONS(4340), + [anon_sym_BQUOTE] = ACTIONS(4340), + [anon_sym_LBRACK] = ACTIONS(4340), + [anon_sym_COMMA] = ACTIONS(4340), + [anon_sym_RBRACK] = ACTIONS(4342), + [anon_sym_DOT_DOT] = ACTIONS(4342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4340), + [anon_sym_DASH_GT] = ACTIONS(4340), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_PIPE] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4340), + [anon_sym_GT_GT] = ACTIONS(4340), + [anon_sym_LT_LT] = ACTIONS(4340), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ] = ACTIONS(4340), + [anon_sym_LT_EQ] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4340), + [anon_sym_LT_EQ_GT] = ACTIONS(4340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4340), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_TILDE] = ACTIONS(4340), + [anon_sym_BANG_TILDE] = ACTIONS(4340), + [anon_sym_EQ_TILDE] = ACTIONS(4340), + [anon_sym_AMP_STAR] = ACTIONS(4342), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4340), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_with] = ACTIONS(4342), + [anon_sym_yield] = ACTIONS(4342), + [anon_sym_typeof] = ACTIONS(4342), + [anon_sym_sizeof] = ACTIONS(4342), + [anon_sym_instance_sizeof] = ACTIONS(4342), + [anon_sym_offsetof] = ACTIONS(4342), + [sym__constant_segment] = ACTIONS(4340), + [anon_sym_COLON_COLON] = ACTIONS(4340), + [anon_sym___LINE__] = ACTIONS(4342), + [anon_sym___END_LINE__] = ACTIONS(4342), + [anon_sym___FILE__] = ACTIONS(4342), + [anon_sym___DIR__] = ACTIONS(4342), + [sym_special_variable] = ACTIONS(4340), + [sym_identifier_method_call] = ACTIONS(4340), + [sym_instance_var] = ACTIONS(4340), + [sym_class_var] = ACTIONS(4340), + [sym_self] = ACTIONS(4342), + [anon_sym_LPAREN2] = ACTIONS(4340), + [anon_sym_QMARK] = ACTIONS(4340), + [anon_sym_RBRACK_QMARK] = ACTIONS(4340), + [anon_sym_AMP_AMP] = ACTIONS(4340), + [anon_sym_PIPE_PIPE] = ACTIONS(4340), + [anon_sym_do] = ACTIONS(4342), + [anon_sym_begin] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_until] = ACTIONS(4342), + [anon_sym_case] = ACTIONS(4342), + [anon_sym_select] = ACTIONS(4342), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4340), + [sym__start_of_hash_or_tuple] = ACTIONS(4340), + [sym__start_of_named_tuple] = ACTIONS(4340), + [sym__start_of_index_operator] = ACTIONS(4340), + [sym_unary_plus] = ACTIONS(4340), + [sym_unary_minus] = ACTIONS(4340), + [sym_binary_plus] = ACTIONS(4340), + [sym_binary_minus] = ACTIONS(4340), + [sym_unary_wrapping_plus] = ACTIONS(4340), + [sym_unary_wrapping_minus] = ACTIONS(4340), + [sym_binary_wrapping_plus] = ACTIONS(4340), + [sym_binary_wrapping_minus] = ACTIONS(4340), + [sym__unary_star] = ACTIONS(4340), + [sym__binary_star] = ACTIONS(4340), + [sym__unary_double_star] = ACTIONS(4340), + [sym__binary_double_star] = ACTIONS(4340), + [sym__block_ampersand] = ACTIONS(4340), + [sym_binary_ampersand] = ACTIONS(4340), + [sym__beginless_range_operator] = ACTIONS(4340), + [sym__regex_start] = ACTIONS(4340), + [sym__binary_slash] = ACTIONS(4340), + [sym__binary_double_slash] = ACTIONS(4340), + [sym__regular_if_keyword] = ACTIONS(4340), + [sym__regular_unless_keyword] = ACTIONS(4340), + [sym__modulo_operator] = ACTIONS(4340), + [sym__string_literal_start] = ACTIONS(4340), + [sym__string_percent_literal_start] = ACTIONS(4340), + [sym__command_percent_literal_start] = ACTIONS(4340), + [sym__string_array_percent_literal_start] = ACTIONS(4340), + [sym__symbol_array_percent_literal_start] = ACTIONS(4340), + [sym__regex_percent_literal_start] = ACTIONS(4340), + [sym_heredoc_start] = ACTIONS(4340), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4340), }, [1983] = { [sym_heredoc_body] = STATE(1983), - [sym_identifier] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3238), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [sym_operator_symbol] = ACTIONS(3236), - [sym_unquoted_symbol] = ACTIONS(3236), - [anon_sym_COLON_DQUOTE] = ACTIONS(3236), - [anon_sym_BQUOTE] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_COMMA] = ACTIONS(3236), - [anon_sym_RBRACK] = ACTIONS(3238), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_DASH_GT] = ACTIONS(3236), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3236), - [anon_sym_GT_GT] = ACTIONS(3236), - [anon_sym_LT_LT] = ACTIONS(3236), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ_GT] = ACTIONS(3236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG_TILDE] = ACTIONS(3236), - [anon_sym_EQ_TILDE] = ACTIONS(3236), - [anon_sym_AMP_STAR] = ACTIONS(3238), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3236), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym_instance_sizeof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [sym__constant_segment] = ACTIONS(3236), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym___LINE__] = ACTIONS(3238), - [anon_sym___END_LINE__] = ACTIONS(3238), - [anon_sym___FILE__] = ACTIONS(3238), - [anon_sym___DIR__] = ACTIONS(3238), - [sym_special_variable] = ACTIONS(3236), - [sym_identifier_method_call] = ACTIONS(3236), - [sym_instance_var] = ACTIONS(3236), - [sym_class_var] = ACTIONS(3236), - [sym_self] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(3236), - [anon_sym_RBRACK_QMARK] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3236), - [anon_sym_PIPE_PIPE] = ACTIONS(3236), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_begin] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_until] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3236), - [sym__start_of_hash_or_tuple] = ACTIONS(3236), - [sym__start_of_named_tuple] = ACTIONS(3236), - [sym__start_of_index_operator] = ACTIONS(3236), - [sym_unary_plus] = ACTIONS(3236), - [sym_unary_minus] = ACTIONS(3236), - [sym_binary_plus] = ACTIONS(3236), - [sym_binary_minus] = ACTIONS(3236), - [sym_unary_wrapping_plus] = ACTIONS(3236), - [sym_unary_wrapping_minus] = ACTIONS(3236), - [sym_binary_wrapping_plus] = ACTIONS(3236), - [sym_binary_wrapping_minus] = ACTIONS(3236), - [sym__unary_star] = ACTIONS(3236), - [sym__binary_star] = ACTIONS(3236), - [sym__unary_double_star] = ACTIONS(3236), - [sym__binary_double_star] = ACTIONS(3236), - [sym__block_ampersand] = ACTIONS(3236), - [sym_binary_ampersand] = ACTIONS(3236), - [sym__beginless_range_operator] = ACTIONS(3236), - [sym__regex_start] = ACTIONS(3236), - [sym__binary_slash] = ACTIONS(3236), - [sym__binary_double_slash] = ACTIONS(3236), - [sym__regular_if_keyword] = ACTIONS(3236), - [sym__regular_unless_keyword] = ACTIONS(3236), - [sym__modulo_operator] = ACTIONS(3236), - [sym__string_literal_start] = ACTIONS(3236), - [sym__string_percent_literal_start] = ACTIONS(3236), - [sym__command_percent_literal_start] = ACTIONS(3236), - [sym__string_array_percent_literal_start] = ACTIONS(3236), - [sym__symbol_array_percent_literal_start] = ACTIONS(3236), - [sym__regex_percent_literal_start] = ACTIONS(3236), - [sym_heredoc_start] = ACTIONS(3236), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3236), + [sym_identifier] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(4346), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4346), + [sym_true] = ACTIONS(4346), + [sym_false] = ACTIONS(4346), + [aux_sym_integer_token2] = ACTIONS(4346), + [aux_sym_float_token2] = ACTIONS(4344), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym_operator_symbol] = ACTIONS(4344), + [sym_unquoted_symbol] = ACTIONS(4344), + [anon_sym_COLON_DQUOTE] = ACTIONS(4344), + [anon_sym_BQUOTE] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_RBRACK] = ACTIONS(4346), + [anon_sym_DOT_DOT] = ACTIONS(4346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4344), + [anon_sym_DASH_GT] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4346), + [anon_sym_PIPE] = ACTIONS(4346), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_GT_GT] = ACTIONS(4344), + [anon_sym_LT_LT] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4346), + [anon_sym_BANG_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4346), + [anon_sym_GT] = ACTIONS(4346), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ_GT] = ACTIONS(4344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4346), + [anon_sym_TILDE] = ACTIONS(4344), + [anon_sym_BANG_TILDE] = ACTIONS(4344), + [anon_sym_EQ_TILDE] = ACTIONS(4344), + [anon_sym_AMP_STAR] = ACTIONS(4346), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4346), + [anon_sym_with] = ACTIONS(4346), + [anon_sym_yield] = ACTIONS(4346), + [anon_sym_typeof] = ACTIONS(4346), + [anon_sym_sizeof] = ACTIONS(4346), + [anon_sym_instance_sizeof] = ACTIONS(4346), + [anon_sym_offsetof] = ACTIONS(4346), + [sym__constant_segment] = ACTIONS(4344), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym___LINE__] = ACTIONS(4346), + [anon_sym___END_LINE__] = ACTIONS(4346), + [anon_sym___FILE__] = ACTIONS(4346), + [anon_sym___DIR__] = ACTIONS(4346), + [sym_special_variable] = ACTIONS(4344), + [sym_identifier_method_call] = ACTIONS(4344), + [sym_instance_var] = ACTIONS(4344), + [sym_class_var] = ACTIONS(4344), + [sym_self] = ACTIONS(4346), + [anon_sym_LPAREN2] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [anon_sym_RBRACK_QMARK] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_do] = ACTIONS(4346), + [anon_sym_begin] = ACTIONS(4346), + [anon_sym_while] = ACTIONS(4346), + [anon_sym_until] = ACTIONS(4346), + [anon_sym_case] = ACTIONS(4346), + [anon_sym_select] = ACTIONS(4346), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4344), + [sym__start_of_hash_or_tuple] = ACTIONS(4344), + [sym__start_of_named_tuple] = ACTIONS(4344), + [sym__start_of_index_operator] = ACTIONS(4344), + [sym_unary_plus] = ACTIONS(4344), + [sym_unary_minus] = ACTIONS(4344), + [sym_binary_plus] = ACTIONS(4344), + [sym_binary_minus] = ACTIONS(4344), + [sym_unary_wrapping_plus] = ACTIONS(4344), + [sym_unary_wrapping_minus] = ACTIONS(4344), + [sym_binary_wrapping_plus] = ACTIONS(4344), + [sym_binary_wrapping_minus] = ACTIONS(4344), + [sym__unary_star] = ACTIONS(4344), + [sym__binary_star] = ACTIONS(4344), + [sym__unary_double_star] = ACTIONS(4344), + [sym__binary_double_star] = ACTIONS(4344), + [sym__block_ampersand] = ACTIONS(4344), + [sym_binary_ampersand] = ACTIONS(4344), + [sym__beginless_range_operator] = ACTIONS(4344), + [sym__regex_start] = ACTIONS(4344), + [sym__binary_slash] = ACTIONS(4344), + [sym__binary_double_slash] = ACTIONS(4344), + [sym__regular_if_keyword] = ACTIONS(4344), + [sym__regular_unless_keyword] = ACTIONS(4344), + [sym__modulo_operator] = ACTIONS(4344), + [sym__string_literal_start] = ACTIONS(4344), + [sym__string_percent_literal_start] = ACTIONS(4344), + [sym__command_percent_literal_start] = ACTIONS(4344), + [sym__string_array_percent_literal_start] = ACTIONS(4344), + [sym__symbol_array_percent_literal_start] = ACTIONS(4344), + [sym__regex_percent_literal_start] = ACTIONS(4344), + [sym_heredoc_start] = ACTIONS(4344), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4344), }, [1984] = { [sym_heredoc_body] = STATE(1984), - [sym_typeof] = STATE(2012), - [sym_constant] = STATE(2006), - [sym__type] = STATE(2028), - [sym_class_type] = STATE(2012), - [sym_union_type] = STATE(2012), - [sym__parenthesized_type] = STATE(2012), - [sym_no_args_proc_type] = STATE(2012), - [sym_parenthesized_proc_type] = STATE(2012), - [sym_tuple_type] = STATE(2012), - [sym_named_tuple_type] = STATE(2012), - [sym_generic_instance_type] = STATE(2012), - [sym_nilable_type] = STATE(2012), - [sym_pointer_type] = STATE(2012), - [sym_static_array_type] = STATE(2012), - [sym_identifier] = ACTIONS(4407), - [anon_sym_SEMI] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(4411), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4407), - [sym_true] = ACTIONS(4407), - [sym_false] = ACTIONS(4407), - [aux_sym_integer_token2] = ACTIONS(4407), - [aux_sym_float_token2] = ACTIONS(4409), - [anon_sym_SQUOTE] = ACTIONS(4409), - [sym_operator_symbol] = ACTIONS(4409), - [sym_unquoted_symbol] = ACTIONS(4409), - [anon_sym_COLON_DQUOTE] = ACTIONS(4409), - [anon_sym_BQUOTE] = ACTIONS(4409), - [anon_sym_LBRACK] = ACTIONS(4409), - [anon_sym_DASH_GT] = ACTIONS(4414), - [anon_sym_annotation] = ACTIONS(4407), - [anon_sym_end] = ACTIONS(4407), - [anon_sym_AT_LBRACK] = ACTIONS(4409), - [anon_sym_private] = ACTIONS(4407), - [anon_sym_module] = ACTIONS(4407), - [anon_sym_abstract] = ACTIONS(4407), - [anon_sym_class] = ACTIONS(4407), - [anon_sym_struct] = ACTIONS(4407), - [anon_sym_enum] = ACTIONS(4407), - [anon_sym_STAR] = ACTIONS(4409), - [anon_sym_BANG] = ACTIONS(4409), - [anon_sym_TILDE] = ACTIONS(4409), - [anon_sym_def] = ACTIONS(4407), - [anon_sym_protected] = ACTIONS(4407), - [anon_sym_include] = ACTIONS(4407), - [anon_sym_extend] = ACTIONS(4407), - [anon_sym_forall] = ACTIONS(4407), - [anon_sym_return] = ACTIONS(4407), - [anon_sym_next] = ACTIONS(4407), - [anon_sym_break] = ACTIONS(4407), - [anon_sym_with] = ACTIONS(4407), - [anon_sym_yield] = ACTIONS(4407), - [anon_sym_typeof] = ACTIONS(4417), - [anon_sym_sizeof] = ACTIONS(4407), - [anon_sym_instance_sizeof] = ACTIONS(4407), - [anon_sym_offsetof] = ACTIONS(4407), - [sym__constant_segment] = ACTIONS(4420), - [anon_sym_COLON_COLON] = ACTIONS(4423), - [anon_sym___LINE__] = ACTIONS(4407), - [anon_sym___END_LINE__] = ACTIONS(4407), - [anon_sym___FILE__] = ACTIONS(4407), - [anon_sym___DIR__] = ACTIONS(4407), - [sym_special_variable] = ACTIONS(4409), - [sym_identifier_method_call] = ACTIONS(4409), - [sym_instance_var] = ACTIONS(4409), - [sym_class_var] = ACTIONS(4409), - [sym_self] = ACTIONS(4426), - [sym_underscore_type] = ACTIONS(4345), - [anon_sym_alias] = ACTIONS(4407), - [anon_sym_begin] = ACTIONS(4407), - [anon_sym_while] = ACTIONS(4407), - [anon_sym_until] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(4407), - [anon_sym_require] = ACTIONS(4407), - [anon_sym_case] = ACTIONS(4407), - [sym__line_break] = ACTIONS(4409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4409), - [sym__start_of_named_tuple] = ACTIONS(4409), - [sym__start_of_tuple_type] = ACTIONS(4347), - [sym__start_of_named_tuple_type] = ACTIONS(4349), - [sym_unary_plus] = ACTIONS(4409), - [sym_unary_minus] = ACTIONS(4409), - [sym_unary_wrapping_plus] = ACTIONS(4409), - [sym_unary_wrapping_minus] = ACTIONS(4409), - [sym__beginless_range_operator] = ACTIONS(4409), - [sym__regex_start] = ACTIONS(4409), - [sym__regular_if_keyword] = ACTIONS(4409), - [sym__regular_unless_keyword] = ACTIONS(4409), - [sym__regular_rescue_keyword] = ACTIONS(4409), - [sym__regular_ensure_keyword] = ACTIONS(4409), - [sym__string_literal_start] = ACTIONS(4409), - [sym__string_percent_literal_start] = ACTIONS(4409), - [sym__command_percent_literal_start] = ACTIONS(4409), - [sym__string_array_percent_literal_start] = ACTIONS(4409), - [sym__symbol_array_percent_literal_start] = ACTIONS(4409), - [sym__regex_percent_literal_start] = ACTIONS(4409), - [sym_heredoc_start] = ACTIONS(4409), + [sym_typeof] = STATE(2024), + [sym_constant] = STATE(2008), + [sym__type] = STATE(2014), + [sym_class_type] = STATE(2024), + [sym_union_type] = STATE(2024), + [sym__parenthesized_type] = STATE(2024), + [sym_no_args_proc_type] = STATE(2024), + [sym_parenthesized_proc_type] = STATE(2024), + [sym_tuple_type] = STATE(2024), + [sym_named_tuple_type] = STATE(2024), + [sym_generic_instance_type] = STATE(2024), + [sym_nilable_type] = STATE(2024), + [sym_pointer_type] = STATE(2024), + [sym_static_array_type] = STATE(2024), + [sym_identifier] = ACTIONS(4444), + [anon_sym_SEMI] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4448), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4444), + [sym_true] = ACTIONS(4444), + [sym_false] = ACTIONS(4444), + [aux_sym_integer_token2] = ACTIONS(4444), + [aux_sym_float_token2] = ACTIONS(4446), + [anon_sym_SQUOTE] = ACTIONS(4446), + [sym_operator_symbol] = ACTIONS(4446), + [sym_unquoted_symbol] = ACTIONS(4446), + [anon_sym_COLON_DQUOTE] = ACTIONS(4446), + [anon_sym_BQUOTE] = ACTIONS(4446), + [anon_sym_LBRACK] = ACTIONS(4446), + [anon_sym_DASH_GT] = ACTIONS(4451), + [anon_sym_annotation] = ACTIONS(4444), + [anon_sym_end] = ACTIONS(4444), + [anon_sym_AT_LBRACK] = ACTIONS(4446), + [anon_sym_private] = ACTIONS(4444), + [anon_sym_module] = ACTIONS(4444), + [anon_sym_abstract] = ACTIONS(4444), + [anon_sym_class] = ACTIONS(4444), + [anon_sym_struct] = ACTIONS(4444), + [anon_sym_enum] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_BANG] = ACTIONS(4446), + [anon_sym_TILDE] = ACTIONS(4446), + [anon_sym_def] = ACTIONS(4444), + [anon_sym_protected] = ACTIONS(4444), + [anon_sym_include] = ACTIONS(4444), + [anon_sym_extend] = ACTIONS(4444), + [anon_sym_forall] = ACTIONS(4444), + [anon_sym_return] = ACTIONS(4444), + [anon_sym_next] = ACTIONS(4444), + [anon_sym_break] = ACTIONS(4444), + [anon_sym_with] = ACTIONS(4444), + [anon_sym_yield] = ACTIONS(4444), + [anon_sym_typeof] = ACTIONS(4454), + [anon_sym_sizeof] = ACTIONS(4444), + [anon_sym_instance_sizeof] = ACTIONS(4444), + [anon_sym_offsetof] = ACTIONS(4444), + [sym__constant_segment] = ACTIONS(4457), + [anon_sym_COLON_COLON] = ACTIONS(4460), + [anon_sym___LINE__] = ACTIONS(4444), + [anon_sym___END_LINE__] = ACTIONS(4444), + [anon_sym___FILE__] = ACTIONS(4444), + [anon_sym___DIR__] = ACTIONS(4444), + [sym_special_variable] = ACTIONS(4446), + [sym_identifier_method_call] = ACTIONS(4446), + [sym_instance_var] = ACTIONS(4446), + [sym_class_var] = ACTIONS(4446), + [sym_self] = ACTIONS(4463), + [sym_underscore_type] = ACTIONS(4382), + [anon_sym_alias] = ACTIONS(4444), + [anon_sym_begin] = ACTIONS(4444), + [anon_sym_while] = ACTIONS(4444), + [anon_sym_until] = ACTIONS(4444), + [anon_sym_else] = ACTIONS(4444), + [anon_sym_require] = ACTIONS(4444), + [anon_sym_case] = ACTIONS(4444), + [anon_sym_select] = ACTIONS(4444), + [sym__line_break] = ACTIONS(4446), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4446), + [sym__start_of_named_tuple] = ACTIONS(4446), + [sym__start_of_tuple_type] = ACTIONS(4384), + [sym__start_of_named_tuple_type] = ACTIONS(4386), + [sym_unary_plus] = ACTIONS(4446), + [sym_unary_minus] = ACTIONS(4446), + [sym_unary_wrapping_plus] = ACTIONS(4446), + [sym_unary_wrapping_minus] = ACTIONS(4446), + [sym__beginless_range_operator] = ACTIONS(4446), + [sym__regex_start] = ACTIONS(4446), + [sym__regular_if_keyword] = ACTIONS(4446), + [sym__regular_unless_keyword] = ACTIONS(4446), + [sym__regular_rescue_keyword] = ACTIONS(4446), + [sym__regular_ensure_keyword] = ACTIONS(4446), + [sym__string_literal_start] = ACTIONS(4446), + [sym__string_percent_literal_start] = ACTIONS(4446), + [sym__command_percent_literal_start] = ACTIONS(4446), + [sym__string_array_percent_literal_start] = ACTIONS(4446), + [sym__symbol_array_percent_literal_start] = ACTIONS(4446), + [sym__regex_percent_literal_start] = ACTIONS(4446), + [sym_heredoc_start] = ACTIONS(4446), [sym__heredoc_body_start] = ACTIONS(7), }, [1985] = { [sym_heredoc_body] = STATE(1985), - [sym_identifier] = ACTIONS(4309), - [anon_sym_LPAREN] = ACTIONS(4309), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4309), - [sym_true] = ACTIONS(4309), - [sym_false] = ACTIONS(4309), - [aux_sym_integer_token2] = ACTIONS(4309), - [aux_sym_float_token2] = ACTIONS(4307), - [anon_sym_SQUOTE] = ACTIONS(4307), - [sym_operator_symbol] = ACTIONS(4307), - [sym_unquoted_symbol] = ACTIONS(4307), - [anon_sym_COLON_DQUOTE] = ACTIONS(4307), - [anon_sym_BQUOTE] = ACTIONS(4307), - [anon_sym_LBRACK] = ACTIONS(4307), - [anon_sym_COMMA] = ACTIONS(4307), - [anon_sym_DOT_DOT] = ACTIONS(4309), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4307), - [anon_sym_DASH_GT] = ACTIONS(4307), - [anon_sym_LT] = ACTIONS(4309), - [anon_sym_PIPE] = ACTIONS(4309), - [anon_sym_CARET] = ACTIONS(4307), - [anon_sym_GT_GT] = ACTIONS(4307), - [anon_sym_LT_LT] = ACTIONS(4307), - [anon_sym_EQ_EQ] = ACTIONS(4309), - [anon_sym_BANG_EQ] = ACTIONS(4307), - [anon_sym_LT_EQ] = ACTIONS(4309), - [anon_sym_GT] = ACTIONS(4309), - [anon_sym_GT_EQ] = ACTIONS(4307), - [anon_sym_LT_EQ_GT] = ACTIONS(4307), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4307), - [anon_sym_BANG] = ACTIONS(4309), - [anon_sym_TILDE] = ACTIONS(4307), - [anon_sym_BANG_TILDE] = ACTIONS(4307), - [anon_sym_EQ_TILDE] = ACTIONS(4307), - [anon_sym_AMP_STAR] = ACTIONS(4309), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4307), - [anon_sym_DOT] = ACTIONS(4309), - [anon_sym_with] = ACTIONS(4309), - [anon_sym_yield] = ACTIONS(4309), - [anon_sym_typeof] = ACTIONS(4309), - [anon_sym_sizeof] = ACTIONS(4309), - [anon_sym_instance_sizeof] = ACTIONS(4309), - [anon_sym_offsetof] = ACTIONS(4309), - [sym__constant_segment] = ACTIONS(4307), - [anon_sym_COLON_COLON] = ACTIONS(4307), - [anon_sym___LINE__] = ACTIONS(4309), - [anon_sym___END_LINE__] = ACTIONS(4309), - [anon_sym___FILE__] = ACTIONS(4309), - [anon_sym___DIR__] = ACTIONS(4309), - [sym_special_variable] = ACTIONS(4307), - [sym_identifier_method_call] = ACTIONS(4307), - [sym_instance_var] = ACTIONS(4307), - [sym_class_var] = ACTIONS(4307), - [sym_self] = ACTIONS(4309), - [anon_sym_LPAREN2] = ACTIONS(4307), - [anon_sym_QMARK] = ACTIONS(4307), - [anon_sym_AMP_AMP] = ACTIONS(4307), - [anon_sym_PIPE_PIPE] = ACTIONS(4307), - [anon_sym_do] = ACTIONS(4309), - [anon_sym_begin] = ACTIONS(4309), - [anon_sym_while] = ACTIONS(4309), - [anon_sym_until] = ACTIONS(4309), - [anon_sym_case] = ACTIONS(4309), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4307), - [sym__start_of_hash_or_tuple] = ACTIONS(4307), - [sym__start_of_named_tuple] = ACTIONS(4307), - [sym__start_of_index_operator] = ACTIONS(4307), - [sym__end_of_with_expression] = ACTIONS(4307), - [sym_unary_plus] = ACTIONS(4307), - [sym_unary_minus] = ACTIONS(4307), - [sym_binary_plus] = ACTIONS(4307), - [sym_binary_minus] = ACTIONS(4307), - [sym_unary_wrapping_plus] = ACTIONS(4307), - [sym_unary_wrapping_minus] = ACTIONS(4307), - [sym_binary_wrapping_plus] = ACTIONS(4307), - [sym_binary_wrapping_minus] = ACTIONS(4307), - [sym__unary_star] = ACTIONS(4307), - [sym__binary_star] = ACTIONS(4307), - [sym__unary_double_star] = ACTIONS(4307), - [sym__binary_double_star] = ACTIONS(4307), - [sym__block_ampersand] = ACTIONS(4307), - [sym_binary_ampersand] = ACTIONS(4307), - [sym__beginless_range_operator] = ACTIONS(4307), - [sym__regex_start] = ACTIONS(4307), - [sym__binary_slash] = ACTIONS(4307), - [sym__binary_double_slash] = ACTIONS(4307), - [sym__regular_if_keyword] = ACTIONS(4307), - [sym__regular_unless_keyword] = ACTIONS(4307), - [sym__modulo_operator] = ACTIONS(4307), - [sym__string_literal_start] = ACTIONS(4307), - [sym__string_percent_literal_start] = ACTIONS(4307), - [sym__command_percent_literal_start] = ACTIONS(4307), - [sym__string_array_percent_literal_start] = ACTIONS(4307), - [sym__symbol_array_percent_literal_start] = ACTIONS(4307), - [sym__regex_percent_literal_start] = ACTIONS(4307), - [sym_heredoc_start] = ACTIONS(4307), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4307), + [sym_identifier] = ACTIONS(4342), + [anon_sym_LPAREN] = ACTIONS(4342), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4342), + [sym_true] = ACTIONS(4342), + [sym_false] = ACTIONS(4342), + [aux_sym_integer_token2] = ACTIONS(4342), + [aux_sym_float_token2] = ACTIONS(4340), + [anon_sym_SQUOTE] = ACTIONS(4340), + [sym_operator_symbol] = ACTIONS(4340), + [sym_unquoted_symbol] = ACTIONS(4340), + [anon_sym_COLON_DQUOTE] = ACTIONS(4340), + [anon_sym_BQUOTE] = ACTIONS(4340), + [anon_sym_LBRACK] = ACTIONS(4340), + [anon_sym_COMMA] = ACTIONS(4340), + [anon_sym_DOT_DOT] = ACTIONS(4342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4340), + [anon_sym_DASH_GT] = ACTIONS(4340), + [anon_sym_LT] = ACTIONS(4342), + [anon_sym_PIPE] = ACTIONS(4342), + [anon_sym_CARET] = ACTIONS(4340), + [anon_sym_GT_GT] = ACTIONS(4340), + [anon_sym_LT_LT] = ACTIONS(4340), + [anon_sym_EQ_EQ] = ACTIONS(4342), + [anon_sym_BANG_EQ] = ACTIONS(4340), + [anon_sym_LT_EQ] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT_EQ] = ACTIONS(4340), + [anon_sym_LT_EQ_GT] = ACTIONS(4340), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4340), + [anon_sym_BANG] = ACTIONS(4342), + [anon_sym_TILDE] = ACTIONS(4340), + [anon_sym_BANG_TILDE] = ACTIONS(4340), + [anon_sym_EQ_TILDE] = ACTIONS(4340), + [anon_sym_AMP_STAR] = ACTIONS(4342), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4340), + [anon_sym_DOT] = ACTIONS(4342), + [anon_sym_with] = ACTIONS(4342), + [anon_sym_yield] = ACTIONS(4342), + [anon_sym_typeof] = ACTIONS(4342), + [anon_sym_sizeof] = ACTIONS(4342), + [anon_sym_instance_sizeof] = ACTIONS(4342), + [anon_sym_offsetof] = ACTIONS(4342), + [sym__constant_segment] = ACTIONS(4340), + [anon_sym_COLON_COLON] = ACTIONS(4340), + [anon_sym___LINE__] = ACTIONS(4342), + [anon_sym___END_LINE__] = ACTIONS(4342), + [anon_sym___FILE__] = ACTIONS(4342), + [anon_sym___DIR__] = ACTIONS(4342), + [sym_special_variable] = ACTIONS(4340), + [sym_identifier_method_call] = ACTIONS(4340), + [sym_instance_var] = ACTIONS(4340), + [sym_class_var] = ACTIONS(4340), + [sym_self] = ACTIONS(4342), + [anon_sym_LPAREN2] = ACTIONS(4340), + [anon_sym_QMARK] = ACTIONS(4340), + [anon_sym_AMP_AMP] = ACTIONS(4340), + [anon_sym_PIPE_PIPE] = ACTIONS(4340), + [anon_sym_do] = ACTIONS(4342), + [anon_sym_begin] = ACTIONS(4342), + [anon_sym_while] = ACTIONS(4342), + [anon_sym_until] = ACTIONS(4342), + [anon_sym_case] = ACTIONS(4342), + [anon_sym_select] = ACTIONS(4342), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4340), + [sym__start_of_hash_or_tuple] = ACTIONS(4340), + [sym__start_of_named_tuple] = ACTIONS(4340), + [sym__start_of_index_operator] = ACTIONS(4340), + [sym__end_of_with_expression] = ACTIONS(4340), + [sym_unary_plus] = ACTIONS(4340), + [sym_unary_minus] = ACTIONS(4340), + [sym_binary_plus] = ACTIONS(4340), + [sym_binary_minus] = ACTIONS(4340), + [sym_unary_wrapping_plus] = ACTIONS(4340), + [sym_unary_wrapping_minus] = ACTIONS(4340), + [sym_binary_wrapping_plus] = ACTIONS(4340), + [sym_binary_wrapping_minus] = ACTIONS(4340), + [sym__unary_star] = ACTIONS(4340), + [sym__binary_star] = ACTIONS(4340), + [sym__unary_double_star] = ACTIONS(4340), + [sym__binary_double_star] = ACTIONS(4340), + [sym__block_ampersand] = ACTIONS(4340), + [sym_binary_ampersand] = ACTIONS(4340), + [sym__beginless_range_operator] = ACTIONS(4340), + [sym__regex_start] = ACTIONS(4340), + [sym__binary_slash] = ACTIONS(4340), + [sym__binary_double_slash] = ACTIONS(4340), + [sym__regular_if_keyword] = ACTIONS(4340), + [sym__regular_unless_keyword] = ACTIONS(4340), + [sym__modulo_operator] = ACTIONS(4340), + [sym__string_literal_start] = ACTIONS(4340), + [sym__string_percent_literal_start] = ACTIONS(4340), + [sym__command_percent_literal_start] = ACTIONS(4340), + [sym__string_array_percent_literal_start] = ACTIONS(4340), + [sym__symbol_array_percent_literal_start] = ACTIONS(4340), + [sym__regex_percent_literal_start] = ACTIONS(4340), + [sym_heredoc_start] = ACTIONS(4340), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4340), }, [1986] = { [sym_heredoc_body] = STATE(1986), - [sym_identifier] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3238), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [aux_sym_integer_token2] = ACTIONS(3238), - [aux_sym_float_token2] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [sym_operator_symbol] = ACTIONS(3236), - [sym_unquoted_symbol] = ACTIONS(3236), - [anon_sym_COLON_DQUOTE] = ACTIONS(3236), - [anon_sym_BQUOTE] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_COMMA] = ACTIONS(3236), - [anon_sym_DOT_DOT] = ACTIONS(3238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3236), - [anon_sym_DASH_GT] = ACTIONS(3236), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3238), - [anon_sym_CARET] = ACTIONS(3236), - [anon_sym_GT_GT] = ACTIONS(3236), - [anon_sym_LT_LT] = ACTIONS(3236), - [anon_sym_EQ_EQ] = ACTIONS(3238), - [anon_sym_BANG_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ] = ACTIONS(3238), - [anon_sym_GT] = ACTIONS(3238), - [anon_sym_GT_EQ] = ACTIONS(3236), - [anon_sym_LT_EQ_GT] = ACTIONS(3236), - [anon_sym_EQ_EQ_EQ] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_BANG_TILDE] = ACTIONS(3236), - [anon_sym_EQ_TILDE] = ACTIONS(3236), - [anon_sym_AMP_STAR] = ACTIONS(3238), - [anon_sym_AMP_STAR_STAR] = ACTIONS(3236), - [anon_sym_DOT] = ACTIONS(3238), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_sizeof] = ACTIONS(3238), - [anon_sym_instance_sizeof] = ACTIONS(3238), - [anon_sym_offsetof] = ACTIONS(3238), - [sym__constant_segment] = ACTIONS(3236), - [anon_sym_COLON_COLON] = ACTIONS(3236), - [anon_sym___LINE__] = ACTIONS(3238), - [anon_sym___END_LINE__] = ACTIONS(3238), - [anon_sym___FILE__] = ACTIONS(3238), - [anon_sym___DIR__] = ACTIONS(3238), - [sym_special_variable] = ACTIONS(3236), - [sym_identifier_method_call] = ACTIONS(3236), - [sym_instance_var] = ACTIONS(3236), - [sym_class_var] = ACTIONS(3236), - [sym_self] = ACTIONS(3238), - [anon_sym_LPAREN2] = ACTIONS(3236), - [anon_sym_QMARK] = ACTIONS(3236), - [anon_sym_AMP_AMP] = ACTIONS(3236), - [anon_sym_PIPE_PIPE] = ACTIONS(3236), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_begin] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_until] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(3236), - [sym__start_of_hash_or_tuple] = ACTIONS(3236), - [sym__start_of_named_tuple] = ACTIONS(3236), - [sym__start_of_index_operator] = ACTIONS(3236), - [sym__end_of_with_expression] = ACTIONS(3236), - [sym_unary_plus] = ACTIONS(3236), - [sym_unary_minus] = ACTIONS(3236), - [sym_binary_plus] = ACTIONS(3236), - [sym_binary_minus] = ACTIONS(3236), - [sym_unary_wrapping_plus] = ACTIONS(3236), - [sym_unary_wrapping_minus] = ACTIONS(3236), - [sym_binary_wrapping_plus] = ACTIONS(3236), - [sym_binary_wrapping_minus] = ACTIONS(3236), - [sym__unary_star] = ACTIONS(3236), - [sym__binary_star] = ACTIONS(3236), - [sym__unary_double_star] = ACTIONS(3236), - [sym__binary_double_star] = ACTIONS(3236), - [sym__block_ampersand] = ACTIONS(3236), - [sym_binary_ampersand] = ACTIONS(3236), - [sym__beginless_range_operator] = ACTIONS(3236), - [sym__regex_start] = ACTIONS(3236), - [sym__binary_slash] = ACTIONS(3236), - [sym__binary_double_slash] = ACTIONS(3236), - [sym__regular_if_keyword] = ACTIONS(3236), - [sym__regular_unless_keyword] = ACTIONS(3236), - [sym__modulo_operator] = ACTIONS(3236), - [sym__string_literal_start] = ACTIONS(3236), - [sym__string_percent_literal_start] = ACTIONS(3236), - [sym__command_percent_literal_start] = ACTIONS(3236), - [sym__string_array_percent_literal_start] = ACTIONS(3236), - [sym__symbol_array_percent_literal_start] = ACTIONS(3236), - [sym__regex_percent_literal_start] = ACTIONS(3236), - [sym_heredoc_start] = ACTIONS(3236), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(3236), + [sym_identifier] = ACTIONS(4338), + [anon_sym_LPAREN] = ACTIONS(4338), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4338), + [sym_true] = ACTIONS(4338), + [sym_false] = ACTIONS(4338), + [aux_sym_integer_token2] = ACTIONS(4338), + [aux_sym_float_token2] = ACTIONS(4336), + [anon_sym_SQUOTE] = ACTIONS(4336), + [sym_operator_symbol] = ACTIONS(4336), + [sym_unquoted_symbol] = ACTIONS(4336), + [anon_sym_COLON_DQUOTE] = ACTIONS(4336), + [anon_sym_BQUOTE] = ACTIONS(4336), + [anon_sym_LBRACK] = ACTIONS(4336), + [anon_sym_COMMA] = ACTIONS(4336), + [anon_sym_DOT_DOT] = ACTIONS(4338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4336), + [anon_sym_DASH_GT] = ACTIONS(4336), + [anon_sym_LT] = ACTIONS(4338), + [anon_sym_PIPE] = ACTIONS(4338), + [anon_sym_CARET] = ACTIONS(4336), + [anon_sym_GT_GT] = ACTIONS(4336), + [anon_sym_LT_LT] = ACTIONS(4336), + [anon_sym_EQ_EQ] = ACTIONS(4338), + [anon_sym_BANG_EQ] = ACTIONS(4336), + [anon_sym_LT_EQ] = ACTIONS(4338), + [anon_sym_GT] = ACTIONS(4338), + [anon_sym_GT_EQ] = ACTIONS(4336), + [anon_sym_LT_EQ_GT] = ACTIONS(4336), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4336), + [anon_sym_BANG] = ACTIONS(4338), + [anon_sym_TILDE] = ACTIONS(4336), + [anon_sym_BANG_TILDE] = ACTIONS(4336), + [anon_sym_EQ_TILDE] = ACTIONS(4336), + [anon_sym_AMP_STAR] = ACTIONS(4338), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4336), + [anon_sym_DOT] = ACTIONS(4338), + [anon_sym_with] = ACTIONS(4338), + [anon_sym_yield] = ACTIONS(4338), + [anon_sym_typeof] = ACTIONS(4338), + [anon_sym_sizeof] = ACTIONS(4338), + [anon_sym_instance_sizeof] = ACTIONS(4338), + [anon_sym_offsetof] = ACTIONS(4338), + [sym__constant_segment] = ACTIONS(4336), + [anon_sym_COLON_COLON] = ACTIONS(4336), + [anon_sym___LINE__] = ACTIONS(4338), + [anon_sym___END_LINE__] = ACTIONS(4338), + [anon_sym___FILE__] = ACTIONS(4338), + [anon_sym___DIR__] = ACTIONS(4338), + [sym_special_variable] = ACTIONS(4336), + [sym_identifier_method_call] = ACTIONS(4336), + [sym_instance_var] = ACTIONS(4336), + [sym_class_var] = ACTIONS(4336), + [sym_self] = ACTIONS(4338), + [anon_sym_LPAREN2] = ACTIONS(4336), + [anon_sym_QMARK] = ACTIONS(4336), + [anon_sym_AMP_AMP] = ACTIONS(4336), + [anon_sym_PIPE_PIPE] = ACTIONS(4336), + [anon_sym_do] = ACTIONS(4338), + [anon_sym_begin] = ACTIONS(4338), + [anon_sym_while] = ACTIONS(4338), + [anon_sym_until] = ACTIONS(4338), + [anon_sym_case] = ACTIONS(4338), + [anon_sym_select] = ACTIONS(4338), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4336), + [sym__start_of_hash_or_tuple] = ACTIONS(4336), + [sym__start_of_named_tuple] = ACTIONS(4336), + [sym__start_of_index_operator] = ACTIONS(4336), + [sym__end_of_with_expression] = ACTIONS(4336), + [sym_unary_plus] = ACTIONS(4336), + [sym_unary_minus] = ACTIONS(4336), + [sym_binary_plus] = ACTIONS(4336), + [sym_binary_minus] = ACTIONS(4336), + [sym_unary_wrapping_plus] = ACTIONS(4336), + [sym_unary_wrapping_minus] = ACTIONS(4336), + [sym_binary_wrapping_plus] = ACTIONS(4336), + [sym_binary_wrapping_minus] = ACTIONS(4336), + [sym__unary_star] = ACTIONS(4336), + [sym__binary_star] = ACTIONS(4336), + [sym__unary_double_star] = ACTIONS(4336), + [sym__binary_double_star] = ACTIONS(4336), + [sym__block_ampersand] = ACTIONS(4336), + [sym_binary_ampersand] = ACTIONS(4336), + [sym__beginless_range_operator] = ACTIONS(4336), + [sym__regex_start] = ACTIONS(4336), + [sym__binary_slash] = ACTIONS(4336), + [sym__binary_double_slash] = ACTIONS(4336), + [sym__regular_if_keyword] = ACTIONS(4336), + [sym__regular_unless_keyword] = ACTIONS(4336), + [sym__modulo_operator] = ACTIONS(4336), + [sym__string_literal_start] = ACTIONS(4336), + [sym__string_percent_literal_start] = ACTIONS(4336), + [sym__command_percent_literal_start] = ACTIONS(4336), + [sym__string_array_percent_literal_start] = ACTIONS(4336), + [sym__symbol_array_percent_literal_start] = ACTIONS(4336), + [sym__regex_percent_literal_start] = ACTIONS(4336), + [sym_heredoc_start] = ACTIONS(4336), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4336), }, [1987] = { [sym_heredoc_body] = STATE(1987), - [sym_identifier] = ACTIONS(4301), - [anon_sym_LPAREN] = ACTIONS(4301), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4301), - [sym_true] = ACTIONS(4301), - [sym_false] = ACTIONS(4301), - [aux_sym_integer_token2] = ACTIONS(4301), - [aux_sym_float_token2] = ACTIONS(4299), - [anon_sym_SQUOTE] = ACTIONS(4299), - [sym_operator_symbol] = ACTIONS(4299), - [sym_unquoted_symbol] = ACTIONS(4299), - [anon_sym_COLON_DQUOTE] = ACTIONS(4299), - [anon_sym_BQUOTE] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4299), - [anon_sym_COMMA] = ACTIONS(4299), - [anon_sym_DOT_DOT] = ACTIONS(4301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4299), - [anon_sym_DASH_GT] = ACTIONS(4299), - [anon_sym_LT] = ACTIONS(4301), - [anon_sym_PIPE] = ACTIONS(4301), - [anon_sym_CARET] = ACTIONS(4299), - [anon_sym_GT_GT] = ACTIONS(4299), - [anon_sym_LT_LT] = ACTIONS(4299), - [anon_sym_EQ_EQ] = ACTIONS(4301), - [anon_sym_BANG_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ] = ACTIONS(4301), - [anon_sym_GT] = ACTIONS(4301), - [anon_sym_GT_EQ] = ACTIONS(4299), - [anon_sym_LT_EQ_GT] = ACTIONS(4299), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4299), - [anon_sym_BANG] = ACTIONS(4301), - [anon_sym_TILDE] = ACTIONS(4299), - [anon_sym_BANG_TILDE] = ACTIONS(4299), - [anon_sym_EQ_TILDE] = ACTIONS(4299), - [anon_sym_AMP_STAR] = ACTIONS(4301), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4299), - [anon_sym_DOT] = ACTIONS(4301), - [anon_sym_with] = ACTIONS(4301), - [anon_sym_yield] = ACTIONS(4301), - [anon_sym_typeof] = ACTIONS(4301), - [anon_sym_sizeof] = ACTIONS(4301), - [anon_sym_instance_sizeof] = ACTIONS(4301), - [anon_sym_offsetof] = ACTIONS(4301), - [sym__constant_segment] = ACTIONS(4299), - [anon_sym_COLON_COLON] = ACTIONS(4299), - [anon_sym___LINE__] = ACTIONS(4301), - [anon_sym___END_LINE__] = ACTIONS(4301), - [anon_sym___FILE__] = ACTIONS(4301), - [anon_sym___DIR__] = ACTIONS(4301), - [sym_special_variable] = ACTIONS(4299), - [sym_identifier_method_call] = ACTIONS(4299), - [sym_instance_var] = ACTIONS(4299), - [sym_class_var] = ACTIONS(4299), - [sym_self] = ACTIONS(4301), - [anon_sym_LPAREN2] = ACTIONS(4299), - [anon_sym_QMARK] = ACTIONS(4299), - [anon_sym_AMP_AMP] = ACTIONS(4299), - [anon_sym_PIPE_PIPE] = ACTIONS(4299), - [anon_sym_do] = ACTIONS(4301), - [anon_sym_begin] = ACTIONS(4301), - [anon_sym_while] = ACTIONS(4301), - [anon_sym_until] = ACTIONS(4301), - [anon_sym_case] = ACTIONS(4301), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4299), - [sym__start_of_hash_or_tuple] = ACTIONS(4299), - [sym__start_of_named_tuple] = ACTIONS(4299), - [sym__start_of_index_operator] = ACTIONS(4299), - [sym__end_of_with_expression] = ACTIONS(4299), - [sym_unary_plus] = ACTIONS(4299), - [sym_unary_minus] = ACTIONS(4299), - [sym_binary_plus] = ACTIONS(4299), - [sym_binary_minus] = ACTIONS(4299), - [sym_unary_wrapping_plus] = ACTIONS(4299), - [sym_unary_wrapping_minus] = ACTIONS(4299), - [sym_binary_wrapping_plus] = ACTIONS(4299), - [sym_binary_wrapping_minus] = ACTIONS(4299), - [sym__unary_star] = ACTIONS(4299), - [sym__binary_star] = ACTIONS(4299), - [sym__unary_double_star] = ACTIONS(4299), - [sym__binary_double_star] = ACTIONS(4299), - [sym__block_ampersand] = ACTIONS(4299), - [sym_binary_ampersand] = ACTIONS(4299), - [sym__beginless_range_operator] = ACTIONS(4299), - [sym__regex_start] = ACTIONS(4299), - [sym__binary_slash] = ACTIONS(4299), - [sym__binary_double_slash] = ACTIONS(4299), - [sym__regular_if_keyword] = ACTIONS(4299), - [sym__regular_unless_keyword] = ACTIONS(4299), - [sym__modulo_operator] = ACTIONS(4299), - [sym__string_literal_start] = ACTIONS(4299), - [sym__string_percent_literal_start] = ACTIONS(4299), - [sym__command_percent_literal_start] = ACTIONS(4299), - [sym__string_array_percent_literal_start] = ACTIONS(4299), - [sym__symbol_array_percent_literal_start] = ACTIONS(4299), - [sym__regex_percent_literal_start] = ACTIONS(4299), - [sym_heredoc_start] = ACTIONS(4299), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4299), + [sym_typeof] = STATE(2024), + [sym_constant] = STATE(2008), + [sym__type] = STATE(2018), + [sym_class_type] = STATE(2024), + [sym_union_type] = STATE(2024), + [sym__parenthesized_type] = STATE(2024), + [sym_no_args_proc_type] = STATE(2024), + [sym_parenthesized_proc_type] = STATE(2024), + [sym_tuple_type] = STATE(2024), + [sym_named_tuple_type] = STATE(2024), + [sym_generic_instance_type] = STATE(2024), + [sym_nilable_type] = STATE(2024), + [sym_pointer_type] = STATE(2024), + [sym_static_array_type] = STATE(2024), + [sym_identifier] = ACTIONS(4466), + [anon_sym_SEMI] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(4470), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4466), + [sym_true] = ACTIONS(4466), + [sym_false] = ACTIONS(4466), + [aux_sym_integer_token2] = ACTIONS(4466), + [aux_sym_float_token2] = ACTIONS(4468), + [anon_sym_SQUOTE] = ACTIONS(4468), + [sym_operator_symbol] = ACTIONS(4468), + [sym_unquoted_symbol] = ACTIONS(4468), + [anon_sym_COLON_DQUOTE] = ACTIONS(4468), + [anon_sym_BQUOTE] = ACTIONS(4468), + [anon_sym_LBRACK] = ACTIONS(4468), + [anon_sym_DASH_GT] = ACTIONS(4473), + [anon_sym_annotation] = ACTIONS(4466), + [anon_sym_end] = ACTIONS(4466), + [anon_sym_AT_LBRACK] = ACTIONS(4468), + [anon_sym_private] = ACTIONS(4466), + [anon_sym_module] = ACTIONS(4466), + [anon_sym_abstract] = ACTIONS(4466), + [anon_sym_class] = ACTIONS(4466), + [anon_sym_struct] = ACTIONS(4466), + [anon_sym_enum] = ACTIONS(4466), + [anon_sym_STAR] = ACTIONS(4468), + [anon_sym_BANG] = ACTIONS(4468), + [anon_sym_TILDE] = ACTIONS(4468), + [anon_sym_def] = ACTIONS(4466), + [anon_sym_protected] = ACTIONS(4466), + [anon_sym_include] = ACTIONS(4466), + [anon_sym_extend] = ACTIONS(4466), + [anon_sym_forall] = ACTIONS(4466), + [anon_sym_return] = ACTIONS(4466), + [anon_sym_next] = ACTIONS(4466), + [anon_sym_break] = ACTIONS(4466), + [anon_sym_with] = ACTIONS(4466), + [anon_sym_yield] = ACTIONS(4466), + [anon_sym_typeof] = ACTIONS(4476), + [anon_sym_sizeof] = ACTIONS(4466), + [anon_sym_instance_sizeof] = ACTIONS(4466), + [anon_sym_offsetof] = ACTIONS(4466), + [sym__constant_segment] = ACTIONS(4479), + [anon_sym_COLON_COLON] = ACTIONS(4482), + [anon_sym___LINE__] = ACTIONS(4466), + [anon_sym___END_LINE__] = ACTIONS(4466), + [anon_sym___FILE__] = ACTIONS(4466), + [anon_sym___DIR__] = ACTIONS(4466), + [sym_special_variable] = ACTIONS(4468), + [sym_identifier_method_call] = ACTIONS(4468), + [sym_instance_var] = ACTIONS(4468), + [sym_class_var] = ACTIONS(4468), + [sym_self] = ACTIONS(4485), + [sym_underscore_type] = ACTIONS(4382), + [anon_sym_alias] = ACTIONS(4466), + [anon_sym_begin] = ACTIONS(4466), + [anon_sym_while] = ACTIONS(4466), + [anon_sym_until] = ACTIONS(4466), + [anon_sym_else] = ACTIONS(4466), + [anon_sym_require] = ACTIONS(4466), + [anon_sym_case] = ACTIONS(4466), + [anon_sym_select] = ACTIONS(4466), + [sym__line_break] = ACTIONS(4468), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4468), + [sym__start_of_named_tuple] = ACTIONS(4468), + [sym__start_of_tuple_type] = ACTIONS(4384), + [sym__start_of_named_tuple_type] = ACTIONS(4386), + [sym_unary_plus] = ACTIONS(4468), + [sym_unary_minus] = ACTIONS(4468), + [sym_unary_wrapping_plus] = ACTIONS(4468), + [sym_unary_wrapping_minus] = ACTIONS(4468), + [sym__beginless_range_operator] = ACTIONS(4468), + [sym__regex_start] = ACTIONS(4468), + [sym__regular_if_keyword] = ACTIONS(4468), + [sym__regular_unless_keyword] = ACTIONS(4468), + [sym__regular_rescue_keyword] = ACTIONS(4468), + [sym__regular_ensure_keyword] = ACTIONS(4468), + [sym__string_literal_start] = ACTIONS(4468), + [sym__string_percent_literal_start] = ACTIONS(4468), + [sym__command_percent_literal_start] = ACTIONS(4468), + [sym__string_array_percent_literal_start] = ACTIONS(4468), + [sym__symbol_array_percent_literal_start] = ACTIONS(4468), + [sym__regex_percent_literal_start] = ACTIONS(4468), + [sym_heredoc_start] = ACTIONS(4468), + [sym__heredoc_body_start] = ACTIONS(7), }, [1988] = { [sym_heredoc_body] = STATE(1988), - [sym_identifier] = ACTIONS(4305), - [anon_sym_LPAREN] = ACTIONS(4305), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4305), - [sym_true] = ACTIONS(4305), - [sym_false] = ACTIONS(4305), - [aux_sym_integer_token2] = ACTIONS(4305), - [aux_sym_float_token2] = ACTIONS(4303), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym_operator_symbol] = ACTIONS(4303), - [sym_unquoted_symbol] = ACTIONS(4303), - [anon_sym_COLON_DQUOTE] = ACTIONS(4303), - [anon_sym_BQUOTE] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_COMMA] = ACTIONS(4303), - [anon_sym_DOT_DOT] = ACTIONS(4305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4303), - [anon_sym_DASH_GT] = ACTIONS(4303), - [anon_sym_LT] = ACTIONS(4305), - [anon_sym_PIPE] = ACTIONS(4305), - [anon_sym_CARET] = ACTIONS(4303), - [anon_sym_GT_GT] = ACTIONS(4303), - [anon_sym_LT_LT] = ACTIONS(4303), - [anon_sym_EQ_EQ] = ACTIONS(4305), - [anon_sym_BANG_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ] = ACTIONS(4305), - [anon_sym_GT] = ACTIONS(4305), - [anon_sym_GT_EQ] = ACTIONS(4303), - [anon_sym_LT_EQ_GT] = ACTIONS(4303), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4305), - [anon_sym_TILDE] = ACTIONS(4303), - [anon_sym_BANG_TILDE] = ACTIONS(4303), - [anon_sym_EQ_TILDE] = ACTIONS(4303), - [anon_sym_AMP_STAR] = ACTIONS(4305), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4303), - [anon_sym_DOT] = ACTIONS(4305), - [anon_sym_with] = ACTIONS(4305), - [anon_sym_yield] = ACTIONS(4305), - [anon_sym_typeof] = ACTIONS(4305), - [anon_sym_sizeof] = ACTIONS(4305), - [anon_sym_instance_sizeof] = ACTIONS(4305), - [anon_sym_offsetof] = ACTIONS(4305), - [sym__constant_segment] = ACTIONS(4303), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym___LINE__] = ACTIONS(4305), - [anon_sym___END_LINE__] = ACTIONS(4305), - [anon_sym___FILE__] = ACTIONS(4305), - [anon_sym___DIR__] = ACTIONS(4305), - [sym_special_variable] = ACTIONS(4303), - [sym_identifier_method_call] = ACTIONS(4303), - [sym_instance_var] = ACTIONS(4303), - [sym_class_var] = ACTIONS(4303), - [sym_self] = ACTIONS(4305), - [anon_sym_LPAREN2] = ACTIONS(4303), - [anon_sym_QMARK] = ACTIONS(4303), - [anon_sym_AMP_AMP] = ACTIONS(4303), - [anon_sym_PIPE_PIPE] = ACTIONS(4303), - [anon_sym_do] = ACTIONS(4305), - [anon_sym_begin] = ACTIONS(4305), - [anon_sym_while] = ACTIONS(4305), - [anon_sym_until] = ACTIONS(4305), - [anon_sym_case] = ACTIONS(4305), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4303), - [sym__start_of_hash_or_tuple] = ACTIONS(4303), - [sym__start_of_named_tuple] = ACTIONS(4303), - [sym__start_of_index_operator] = ACTIONS(4303), - [sym__end_of_with_expression] = ACTIONS(4303), - [sym_unary_plus] = ACTIONS(4303), - [sym_unary_minus] = ACTIONS(4303), - [sym_binary_plus] = ACTIONS(4303), - [sym_binary_minus] = ACTIONS(4303), - [sym_unary_wrapping_plus] = ACTIONS(4303), - [sym_unary_wrapping_minus] = ACTIONS(4303), - [sym_binary_wrapping_plus] = ACTIONS(4303), - [sym_binary_wrapping_minus] = ACTIONS(4303), - [sym__unary_star] = ACTIONS(4303), - [sym__binary_star] = ACTIONS(4303), - [sym__unary_double_star] = ACTIONS(4303), - [sym__binary_double_star] = ACTIONS(4303), - [sym__block_ampersand] = ACTIONS(4303), - [sym_binary_ampersand] = ACTIONS(4303), - [sym__beginless_range_operator] = ACTIONS(4303), - [sym__regex_start] = ACTIONS(4303), - [sym__binary_slash] = ACTIONS(4303), - [sym__binary_double_slash] = ACTIONS(4303), - [sym__regular_if_keyword] = ACTIONS(4303), - [sym__regular_unless_keyword] = ACTIONS(4303), - [sym__modulo_operator] = ACTIONS(4303), - [sym__string_literal_start] = ACTIONS(4303), - [sym__string_percent_literal_start] = ACTIONS(4303), - [sym__command_percent_literal_start] = ACTIONS(4303), - [sym__string_array_percent_literal_start] = ACTIONS(4303), - [sym__symbol_array_percent_literal_start] = ACTIONS(4303), - [sym__regex_percent_literal_start] = ACTIONS(4303), - [sym_heredoc_start] = ACTIONS(4303), - [sym__heredoc_body_start] = ACTIONS(7), - [sym__start_of_parenless_args] = ACTIONS(4303), + [sym_identifier] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [aux_sym_integer_token2] = ACTIONS(3269), + [aux_sym_float_token2] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [sym_operator_symbol] = ACTIONS(3267), + [sym_unquoted_symbol] = ACTIONS(3267), + [anon_sym_COLON_DQUOTE] = ACTIONS(3267), + [anon_sym_BQUOTE] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3267), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), + [anon_sym_DASH_GT] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3267), + [anon_sym_GT_GT] = ACTIONS(3267), + [anon_sym_LT_LT] = ACTIONS(3267), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ_GT] = ACTIONS(3267), + [anon_sym_EQ_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_BANG_TILDE] = ACTIONS(3267), + [anon_sym_EQ_TILDE] = ACTIONS(3267), + [anon_sym_AMP_STAR] = ACTIONS(3269), + [anon_sym_AMP_STAR_STAR] = ACTIONS(3267), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_sizeof] = ACTIONS(3269), + [anon_sym_instance_sizeof] = ACTIONS(3269), + [anon_sym_offsetof] = ACTIONS(3269), + [sym__constant_segment] = ACTIONS(3267), + [anon_sym_COLON_COLON] = ACTIONS(3267), + [anon_sym___LINE__] = ACTIONS(3269), + [anon_sym___END_LINE__] = ACTIONS(3269), + [anon_sym___FILE__] = ACTIONS(3269), + [anon_sym___DIR__] = ACTIONS(3269), + [sym_special_variable] = ACTIONS(3267), + [sym_identifier_method_call] = ACTIONS(3267), + [sym_instance_var] = ACTIONS(3267), + [sym_class_var] = ACTIONS(3267), + [sym_self] = ACTIONS(3269), + [anon_sym_LPAREN2] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3267), + [anon_sym_PIPE_PIPE] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_begin] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_until] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(3267), + [sym__start_of_hash_or_tuple] = ACTIONS(3267), + [sym__start_of_named_tuple] = ACTIONS(3267), + [sym__start_of_index_operator] = ACTIONS(3267), + [sym__end_of_with_expression] = ACTIONS(3267), + [sym_unary_plus] = ACTIONS(3267), + [sym_unary_minus] = ACTIONS(3267), + [sym_binary_plus] = ACTIONS(3267), + [sym_binary_minus] = ACTIONS(3267), + [sym_unary_wrapping_plus] = ACTIONS(3267), + [sym_unary_wrapping_minus] = ACTIONS(3267), + [sym_binary_wrapping_plus] = ACTIONS(3267), + [sym_binary_wrapping_minus] = ACTIONS(3267), + [sym__unary_star] = ACTIONS(3267), + [sym__binary_star] = ACTIONS(3267), + [sym__unary_double_star] = ACTIONS(3267), + [sym__binary_double_star] = ACTIONS(3267), + [sym__block_ampersand] = ACTIONS(3267), + [sym_binary_ampersand] = ACTIONS(3267), + [sym__beginless_range_operator] = ACTIONS(3267), + [sym__regex_start] = ACTIONS(3267), + [sym__binary_slash] = ACTIONS(3267), + [sym__binary_double_slash] = ACTIONS(3267), + [sym__regular_if_keyword] = ACTIONS(3267), + [sym__regular_unless_keyword] = ACTIONS(3267), + [sym__modulo_operator] = ACTIONS(3267), + [sym__string_literal_start] = ACTIONS(3267), + [sym__string_percent_literal_start] = ACTIONS(3267), + [sym__command_percent_literal_start] = ACTIONS(3267), + [sym__string_array_percent_literal_start] = ACTIONS(3267), + [sym__symbol_array_percent_literal_start] = ACTIONS(3267), + [sym__regex_percent_literal_start] = ACTIONS(3267), + [sym_heredoc_start] = ACTIONS(3267), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(3267), }, [1989] = { [sym_heredoc_body] = STATE(1989), - [sym_typeof] = STATE(2012), - [sym_constant] = STATE(2006), - [sym__type] = STATE(2017), - [sym_class_type] = STATE(2012), - [sym_union_type] = STATE(2012), - [sym__parenthesized_type] = STATE(2012), - [sym_no_args_proc_type] = STATE(2012), - [sym_parenthesized_proc_type] = STATE(2012), - [sym_tuple_type] = STATE(2012), - [sym_named_tuple_type] = STATE(2012), - [sym_generic_instance_type] = STATE(2012), - [sym_nilable_type] = STATE(2012), - [sym_pointer_type] = STATE(2012), - [sym_static_array_type] = STATE(2012), - [sym_identifier] = ACTIONS(4429), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(4433), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4429), - [sym_true] = ACTIONS(4429), - [sym_false] = ACTIONS(4429), - [aux_sym_integer_token2] = ACTIONS(4429), - [aux_sym_float_token2] = ACTIONS(4431), - [anon_sym_SQUOTE] = ACTIONS(4431), - [sym_operator_symbol] = ACTIONS(4431), - [sym_unquoted_symbol] = ACTIONS(4431), - [anon_sym_COLON_DQUOTE] = ACTIONS(4431), - [anon_sym_BQUOTE] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(4436), - [anon_sym_annotation] = ACTIONS(4429), - [anon_sym_end] = ACTIONS(4429), - [anon_sym_AT_LBRACK] = ACTIONS(4431), - [anon_sym_private] = ACTIONS(4429), - [anon_sym_module] = ACTIONS(4429), - [anon_sym_abstract] = ACTIONS(4429), - [anon_sym_class] = ACTIONS(4429), - [anon_sym_struct] = ACTIONS(4429), - [anon_sym_enum] = ACTIONS(4429), - [anon_sym_STAR] = ACTIONS(4431), - [anon_sym_BANG] = ACTIONS(4431), - [anon_sym_TILDE] = ACTIONS(4431), - [anon_sym_def] = ACTIONS(4429), - [anon_sym_protected] = ACTIONS(4429), - [anon_sym_include] = ACTIONS(4429), - [anon_sym_extend] = ACTIONS(4429), - [anon_sym_forall] = ACTIONS(4429), - [anon_sym_return] = ACTIONS(4429), - [anon_sym_next] = ACTIONS(4429), - [anon_sym_break] = ACTIONS(4429), - [anon_sym_with] = ACTIONS(4429), - [anon_sym_yield] = ACTIONS(4429), - [anon_sym_typeof] = ACTIONS(4439), - [anon_sym_sizeof] = ACTIONS(4429), - [anon_sym_instance_sizeof] = ACTIONS(4429), - [anon_sym_offsetof] = ACTIONS(4429), - [sym__constant_segment] = ACTIONS(4442), - [anon_sym_COLON_COLON] = ACTIONS(4445), - [anon_sym___LINE__] = ACTIONS(4429), - [anon_sym___END_LINE__] = ACTIONS(4429), - [anon_sym___FILE__] = ACTIONS(4429), - [anon_sym___DIR__] = ACTIONS(4429), - [sym_special_variable] = ACTIONS(4431), - [sym_identifier_method_call] = ACTIONS(4431), - [sym_instance_var] = ACTIONS(4431), - [sym_class_var] = ACTIONS(4431), - [sym_self] = ACTIONS(4448), - [sym_underscore_type] = ACTIONS(4345), - [anon_sym_alias] = ACTIONS(4429), - [anon_sym_begin] = ACTIONS(4429), - [anon_sym_while] = ACTIONS(4429), - [anon_sym_until] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4429), - [anon_sym_require] = ACTIONS(4429), - [anon_sym_case] = ACTIONS(4429), - [sym__line_break] = ACTIONS(4431), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4431), - [sym__start_of_named_tuple] = ACTIONS(4431), - [sym__start_of_tuple_type] = ACTIONS(4347), - [sym__start_of_named_tuple_type] = ACTIONS(4349), - [sym_unary_plus] = ACTIONS(4431), - [sym_unary_minus] = ACTIONS(4431), - [sym_unary_wrapping_plus] = ACTIONS(4431), - [sym_unary_wrapping_minus] = ACTIONS(4431), - [sym__beginless_range_operator] = ACTIONS(4431), - [sym__regex_start] = ACTIONS(4431), - [sym__regular_if_keyword] = ACTIONS(4431), - [sym__regular_unless_keyword] = ACTIONS(4431), - [sym__regular_rescue_keyword] = ACTIONS(4431), - [sym__regular_ensure_keyword] = ACTIONS(4431), - [sym__string_literal_start] = ACTIONS(4431), - [sym__string_percent_literal_start] = ACTIONS(4431), - [sym__command_percent_literal_start] = ACTIONS(4431), - [sym__string_array_percent_literal_start] = ACTIONS(4431), - [sym__symbol_array_percent_literal_start] = ACTIONS(4431), - [sym__regex_percent_literal_start] = ACTIONS(4431), - [sym_heredoc_start] = ACTIONS(4431), - [sym__heredoc_body_start] = ACTIONS(7), + [sym_identifier] = ACTIONS(4346), + [anon_sym_LPAREN] = ACTIONS(4346), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4346), + [sym_true] = ACTIONS(4346), + [sym_false] = ACTIONS(4346), + [aux_sym_integer_token2] = ACTIONS(4346), + [aux_sym_float_token2] = ACTIONS(4344), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym_operator_symbol] = ACTIONS(4344), + [sym_unquoted_symbol] = ACTIONS(4344), + [anon_sym_COLON_DQUOTE] = ACTIONS(4344), + [anon_sym_BQUOTE] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_COMMA] = ACTIONS(4344), + [anon_sym_DOT_DOT] = ACTIONS(4346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4344), + [anon_sym_DASH_GT] = ACTIONS(4344), + [anon_sym_LT] = ACTIONS(4346), + [anon_sym_PIPE] = ACTIONS(4346), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_GT_GT] = ACTIONS(4344), + [anon_sym_LT_LT] = ACTIONS(4344), + [anon_sym_EQ_EQ] = ACTIONS(4346), + [anon_sym_BANG_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ] = ACTIONS(4346), + [anon_sym_GT] = ACTIONS(4346), + [anon_sym_GT_EQ] = ACTIONS(4344), + [anon_sym_LT_EQ_GT] = ACTIONS(4344), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4346), + [anon_sym_TILDE] = ACTIONS(4344), + [anon_sym_BANG_TILDE] = ACTIONS(4344), + [anon_sym_EQ_TILDE] = ACTIONS(4344), + [anon_sym_AMP_STAR] = ACTIONS(4346), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4344), + [anon_sym_DOT] = ACTIONS(4346), + [anon_sym_with] = ACTIONS(4346), + [anon_sym_yield] = ACTIONS(4346), + [anon_sym_typeof] = ACTIONS(4346), + [anon_sym_sizeof] = ACTIONS(4346), + [anon_sym_instance_sizeof] = ACTIONS(4346), + [anon_sym_offsetof] = ACTIONS(4346), + [sym__constant_segment] = ACTIONS(4344), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym___LINE__] = ACTIONS(4346), + [anon_sym___END_LINE__] = ACTIONS(4346), + [anon_sym___FILE__] = ACTIONS(4346), + [anon_sym___DIR__] = ACTIONS(4346), + [sym_special_variable] = ACTIONS(4344), + [sym_identifier_method_call] = ACTIONS(4344), + [sym_instance_var] = ACTIONS(4344), + [sym_class_var] = ACTIONS(4344), + [sym_self] = ACTIONS(4346), + [anon_sym_LPAREN2] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [anon_sym_AMP_AMP] = ACTIONS(4344), + [anon_sym_PIPE_PIPE] = ACTIONS(4344), + [anon_sym_do] = ACTIONS(4346), + [anon_sym_begin] = ACTIONS(4346), + [anon_sym_while] = ACTIONS(4346), + [anon_sym_until] = ACTIONS(4346), + [anon_sym_case] = ACTIONS(4346), + [anon_sym_select] = ACTIONS(4346), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4344), + [sym__start_of_hash_or_tuple] = ACTIONS(4344), + [sym__start_of_named_tuple] = ACTIONS(4344), + [sym__start_of_index_operator] = ACTIONS(4344), + [sym__end_of_with_expression] = ACTIONS(4344), + [sym_unary_plus] = ACTIONS(4344), + [sym_unary_minus] = ACTIONS(4344), + [sym_binary_plus] = ACTIONS(4344), + [sym_binary_minus] = ACTIONS(4344), + [sym_unary_wrapping_plus] = ACTIONS(4344), + [sym_unary_wrapping_minus] = ACTIONS(4344), + [sym_binary_wrapping_plus] = ACTIONS(4344), + [sym_binary_wrapping_minus] = ACTIONS(4344), + [sym__unary_star] = ACTIONS(4344), + [sym__binary_star] = ACTIONS(4344), + [sym__unary_double_star] = ACTIONS(4344), + [sym__binary_double_star] = ACTIONS(4344), + [sym__block_ampersand] = ACTIONS(4344), + [sym_binary_ampersand] = ACTIONS(4344), + [sym__beginless_range_operator] = ACTIONS(4344), + [sym__regex_start] = ACTIONS(4344), + [sym__binary_slash] = ACTIONS(4344), + [sym__binary_double_slash] = ACTIONS(4344), + [sym__regular_if_keyword] = ACTIONS(4344), + [sym__regular_unless_keyword] = ACTIONS(4344), + [sym__modulo_operator] = ACTIONS(4344), + [sym__string_literal_start] = ACTIONS(4344), + [sym__string_percent_literal_start] = ACTIONS(4344), + [sym__command_percent_literal_start] = ACTIONS(4344), + [sym__string_array_percent_literal_start] = ACTIONS(4344), + [sym__symbol_array_percent_literal_start] = ACTIONS(4344), + [sym__regex_percent_literal_start] = ACTIONS(4344), + [sym_heredoc_start] = ACTIONS(4344), + [sym__heredoc_body_start] = ACTIONS(7), + [sym__start_of_parenless_args] = ACTIONS(4344), }, [1990] = { [sym_heredoc_body] = STATE(1990), - [sym_typeof] = STATE(2095), - [sym_constant] = STATE(2077), - [sym__type] = STATE(2060), - [sym_class_type] = STATE(2095), - [sym_union_type] = STATE(2095), - [sym__parenthesized_type] = STATE(2095), - [sym_no_args_proc_type] = STATE(2095), - [sym_parenthesized_proc_type] = STATE(2095), - [sym_tuple_type] = STATE(2095), - [sym_named_tuple_type] = STATE(2095), - [sym_generic_instance_type] = STATE(2095), - [sym_nilable_type] = STATE(2095), - [sym_pointer_type] = STATE(2095), - [sym_static_array_type] = STATE(2095), - [sym_identifier] = ACTIONS(4373), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4451), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4373), - [sym_true] = ACTIONS(4373), - [sym_false] = ACTIONS(4373), - [aux_sym_integer_token2] = ACTIONS(4373), - [aux_sym_float_token2] = ACTIONS(4375), - [anon_sym_SQUOTE] = ACTIONS(4375), - [sym_operator_symbol] = ACTIONS(4375), - [sym_unquoted_symbol] = ACTIONS(4375), - [anon_sym_COLON_DQUOTE] = ACTIONS(4375), - [anon_sym_BQUOTE] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(4454), - [anon_sym_annotation] = ACTIONS(4373), - [anon_sym_end] = ACTIONS(4373), - [anon_sym_AT_LBRACK] = ACTIONS(4375), - [anon_sym_private] = ACTIONS(4373), - [anon_sym_module] = ACTIONS(4373), - [anon_sym_abstract] = ACTIONS(4373), - [anon_sym_class] = ACTIONS(4373), - [anon_sym_struct] = ACTIONS(4373), - [anon_sym_enum] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4375), - [anon_sym_BANG] = ACTIONS(4375), - [anon_sym_TILDE] = ACTIONS(4375), - [anon_sym_def] = ACTIONS(4373), - [anon_sym_DOT] = ACTIONS(4375), - [anon_sym_protected] = ACTIONS(4373), - [anon_sym_include] = ACTIONS(4373), - [anon_sym_extend] = ACTIONS(4373), - [anon_sym_return] = ACTIONS(4373), - [anon_sym_next] = ACTIONS(4373), - [anon_sym_break] = ACTIONS(4373), - [anon_sym_with] = ACTIONS(4373), - [anon_sym_yield] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(4457), - [anon_sym_sizeof] = ACTIONS(4373), - [anon_sym_instance_sizeof] = ACTIONS(4373), - [anon_sym_offsetof] = ACTIONS(4373), - [sym__constant_segment] = ACTIONS(4460), - [anon_sym_COLON_COLON] = ACTIONS(4463), - [anon_sym___LINE__] = ACTIONS(4373), - [anon_sym___END_LINE__] = ACTIONS(4373), - [anon_sym___FILE__] = ACTIONS(4373), - [anon_sym___DIR__] = ACTIONS(4373), - [sym_special_variable] = ACTIONS(4375), - [sym_identifier_method_call] = ACTIONS(4375), - [sym_instance_var] = ACTIONS(4375), - [sym_class_var] = ACTIONS(4375), - [sym_self] = ACTIONS(4466), - [sym_underscore_type] = ACTIONS(4469), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_alias] = ACTIONS(4373), - [anon_sym_begin] = ACTIONS(4373), - [anon_sym_while] = ACTIONS(4373), - [anon_sym_until] = ACTIONS(4373), - [anon_sym_require] = ACTIONS(4373), - [anon_sym_case] = ACTIONS(4373), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4375), - [sym__start_of_named_tuple] = ACTIONS(4375), - [sym__start_of_tuple_type] = ACTIONS(4471), - [sym__start_of_named_tuple_type] = ACTIONS(4473), - [sym_unary_plus] = ACTIONS(4375), - [sym_unary_minus] = ACTIONS(4375), - [sym_unary_wrapping_plus] = ACTIONS(4375), - [sym_unary_wrapping_minus] = ACTIONS(4375), - [sym__beginless_range_operator] = ACTIONS(4375), - [sym__regex_start] = ACTIONS(4375), - [sym__regular_if_keyword] = ACTIONS(4375), - [sym__regular_unless_keyword] = ACTIONS(4375), - [sym__string_literal_start] = ACTIONS(4375), - [sym__string_percent_literal_start] = ACTIONS(4375), - [sym__command_percent_literal_start] = ACTIONS(4375), - [sym__string_array_percent_literal_start] = ACTIONS(4375), - [sym__symbol_array_percent_literal_start] = ACTIONS(4375), - [sym__regex_percent_literal_start] = ACTIONS(4375), - [sym_heredoc_start] = ACTIONS(4375), + [sym_typeof] = STATE(2081), + [sym_constant] = STATE(2064), + [sym__type] = STATE(2057), + [sym_class_type] = STATE(2081), + [sym_union_type] = STATE(2081), + [sym__parenthesized_type] = STATE(2081), + [sym_no_args_proc_type] = STATE(2081), + [sym_parenthesized_proc_type] = STATE(2081), + [sym_tuple_type] = STATE(2081), + [sym_named_tuple_type] = STATE(2081), + [sym_generic_instance_type] = STATE(2081), + [sym_nilable_type] = STATE(2081), + [sym_pointer_type] = STATE(2081), + [sym_static_array_type] = STATE(2081), + [sym_identifier] = ACTIONS(4388), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(4488), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4388), + [sym_true] = ACTIONS(4388), + [sym_false] = ACTIONS(4388), + [aux_sym_integer_token2] = ACTIONS(4388), + [aux_sym_float_token2] = ACTIONS(4390), + [anon_sym_SQUOTE] = ACTIONS(4390), + [sym_operator_symbol] = ACTIONS(4390), + [sym_unquoted_symbol] = ACTIONS(4390), + [anon_sym_COLON_DQUOTE] = ACTIONS(4390), + [anon_sym_BQUOTE] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(4491), + [anon_sym_annotation] = ACTIONS(4388), + [anon_sym_end] = ACTIONS(4388), + [anon_sym_AT_LBRACK] = ACTIONS(4390), + [anon_sym_private] = ACTIONS(4388), + [anon_sym_module] = ACTIONS(4388), + [anon_sym_abstract] = ACTIONS(4388), + [anon_sym_class] = ACTIONS(4388), + [anon_sym_struct] = ACTIONS(4388), + [anon_sym_enum] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4390), + [anon_sym_BANG] = ACTIONS(4390), + [anon_sym_TILDE] = ACTIONS(4390), + [anon_sym_def] = ACTIONS(4388), + [anon_sym_DOT] = ACTIONS(4390), + [anon_sym_protected] = ACTIONS(4388), + [anon_sym_include] = ACTIONS(4388), + [anon_sym_extend] = ACTIONS(4388), + [anon_sym_return] = ACTIONS(4388), + [anon_sym_next] = ACTIONS(4388), + [anon_sym_break] = ACTIONS(4388), + [anon_sym_with] = ACTIONS(4388), + [anon_sym_yield] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(4494), + [anon_sym_sizeof] = ACTIONS(4388), + [anon_sym_instance_sizeof] = ACTIONS(4388), + [anon_sym_offsetof] = ACTIONS(4388), + [sym__constant_segment] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4500), + [anon_sym___LINE__] = ACTIONS(4388), + [anon_sym___END_LINE__] = ACTIONS(4388), + [anon_sym___FILE__] = ACTIONS(4388), + [anon_sym___DIR__] = ACTIONS(4388), + [sym_special_variable] = ACTIONS(4390), + [sym_identifier_method_call] = ACTIONS(4390), + [sym_instance_var] = ACTIONS(4390), + [sym_class_var] = ACTIONS(4390), + [sym_self] = ACTIONS(4503), + [sym_underscore_type] = ACTIONS(4506), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_alias] = ACTIONS(4388), + [anon_sym_begin] = ACTIONS(4388), + [anon_sym_while] = ACTIONS(4388), + [anon_sym_until] = ACTIONS(4388), + [anon_sym_require] = ACTIONS(4388), + [anon_sym_case] = ACTIONS(4388), + [anon_sym_select] = ACTIONS(4388), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4390), + [sym__start_of_named_tuple] = ACTIONS(4390), + [sym__start_of_tuple_type] = ACTIONS(4508), + [sym__start_of_named_tuple_type] = ACTIONS(4510), + [sym_unary_plus] = ACTIONS(4390), + [sym_unary_minus] = ACTIONS(4390), + [sym_unary_wrapping_plus] = ACTIONS(4390), + [sym_unary_wrapping_minus] = ACTIONS(4390), + [sym__beginless_range_operator] = ACTIONS(4390), + [sym__regex_start] = ACTIONS(4390), + [sym__regular_if_keyword] = ACTIONS(4390), + [sym__regular_unless_keyword] = ACTIONS(4390), + [sym__string_literal_start] = ACTIONS(4390), + [sym__string_percent_literal_start] = ACTIONS(4390), + [sym__command_percent_literal_start] = ACTIONS(4390), + [sym__string_array_percent_literal_start] = ACTIONS(4390), + [sym__symbol_array_percent_literal_start] = ACTIONS(4390), + [sym__regex_percent_literal_start] = ACTIONS(4390), + [sym_heredoc_start] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [1991] = { [sym_heredoc_body] = STATE(1991), - [sym_typeof] = STATE(2095), - [sym_constant] = STATE(2077), - [sym__type] = STATE(2070), - [sym_class_type] = STATE(2095), - [sym_union_type] = STATE(2095), - [sym__parenthesized_type] = STATE(2095), - [sym_no_args_proc_type] = STATE(2095), - [sym_parenthesized_proc_type] = STATE(2095), - [sym_tuple_type] = STATE(2095), - [sym_named_tuple_type] = STATE(2095), - [sym_generic_instance_type] = STATE(2095), - [sym_nilable_type] = STATE(2095), - [sym_pointer_type] = STATE(2095), - [sym_static_array_type] = STATE(2095), - [sym_identifier] = ACTIONS(4323), - [anon_sym_SEMI] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(4475), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4323), - [sym_true] = ACTIONS(4323), - [sym_false] = ACTIONS(4323), - [aux_sym_integer_token2] = ACTIONS(4323), - [aux_sym_float_token2] = ACTIONS(4325), - [anon_sym_SQUOTE] = ACTIONS(4325), - [sym_operator_symbol] = ACTIONS(4325), - [sym_unquoted_symbol] = ACTIONS(4325), - [anon_sym_COLON_DQUOTE] = ACTIONS(4325), - [anon_sym_BQUOTE] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(4478), - [anon_sym_annotation] = ACTIONS(4323), - [anon_sym_end] = ACTIONS(4323), - [anon_sym_AT_LBRACK] = ACTIONS(4325), - [anon_sym_private] = ACTIONS(4323), - [anon_sym_module] = ACTIONS(4323), - [anon_sym_abstract] = ACTIONS(4323), - [anon_sym_class] = ACTIONS(4323), - [anon_sym_struct] = ACTIONS(4323), - [anon_sym_enum] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4325), - [anon_sym_BANG] = ACTIONS(4325), - [anon_sym_TILDE] = ACTIONS(4325), - [anon_sym_def] = ACTIONS(4323), - [anon_sym_DOT] = ACTIONS(4325), - [anon_sym_protected] = ACTIONS(4323), - [anon_sym_include] = ACTIONS(4323), - [anon_sym_extend] = ACTIONS(4323), - [anon_sym_return] = ACTIONS(4323), - [anon_sym_next] = ACTIONS(4323), - [anon_sym_break] = ACTIONS(4323), - [anon_sym_with] = ACTIONS(4323), - [anon_sym_yield] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(4481), - [anon_sym_sizeof] = ACTIONS(4323), - [anon_sym_instance_sizeof] = ACTIONS(4323), - [anon_sym_offsetof] = ACTIONS(4323), - [sym__constant_segment] = ACTIONS(4484), - [anon_sym_COLON_COLON] = ACTIONS(4487), - [anon_sym___LINE__] = ACTIONS(4323), - [anon_sym___END_LINE__] = ACTIONS(4323), - [anon_sym___FILE__] = ACTIONS(4323), - [anon_sym___DIR__] = ACTIONS(4323), - [sym_special_variable] = ACTIONS(4325), - [sym_identifier_method_call] = ACTIONS(4325), - [sym_instance_var] = ACTIONS(4325), - [sym_class_var] = ACTIONS(4325), - [sym_self] = ACTIONS(4490), - [sym_underscore_type] = ACTIONS(4469), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_alias] = ACTIONS(4323), - [anon_sym_begin] = ACTIONS(4323), - [anon_sym_while] = ACTIONS(4323), - [anon_sym_until] = ACTIONS(4323), - [anon_sym_require] = ACTIONS(4323), - [anon_sym_case] = ACTIONS(4323), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4325), - [sym__start_of_named_tuple] = ACTIONS(4325), - [sym__start_of_tuple_type] = ACTIONS(4471), - [sym__start_of_named_tuple_type] = ACTIONS(4473), - [sym_unary_plus] = ACTIONS(4325), - [sym_unary_minus] = ACTIONS(4325), - [sym_unary_wrapping_plus] = ACTIONS(4325), - [sym_unary_wrapping_minus] = ACTIONS(4325), - [sym__beginless_range_operator] = ACTIONS(4325), - [sym__regex_start] = ACTIONS(4325), - [sym__regular_if_keyword] = ACTIONS(4325), - [sym__regular_unless_keyword] = ACTIONS(4325), - [sym__string_literal_start] = ACTIONS(4325), - [sym__string_percent_literal_start] = ACTIONS(4325), - [sym__command_percent_literal_start] = ACTIONS(4325), - [sym__string_array_percent_literal_start] = ACTIONS(4325), - [sym__symbol_array_percent_literal_start] = ACTIONS(4325), - [sym__regex_percent_literal_start] = ACTIONS(4325), - [sym_heredoc_start] = ACTIONS(4325), + [sym_typeof] = STATE(2081), + [sym_constant] = STATE(2064), + [sym__type] = STATE(2074), + [sym_class_type] = STATE(2081), + [sym_union_type] = STATE(2081), + [sym__parenthesized_type] = STATE(2081), + [sym_no_args_proc_type] = STATE(2081), + [sym_parenthesized_proc_type] = STATE(2081), + [sym_tuple_type] = STATE(2081), + [sym_named_tuple_type] = STATE(2081), + [sym_generic_instance_type] = STATE(2081), + [sym_nilable_type] = STATE(2081), + [sym_pointer_type] = STATE(2081), + [sym_static_array_type] = STATE(2081), + [sym_identifier] = ACTIONS(4410), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(4512), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4410), + [sym_true] = ACTIONS(4410), + [sym_false] = ACTIONS(4410), + [aux_sym_integer_token2] = ACTIONS(4410), + [aux_sym_float_token2] = ACTIONS(4412), + [anon_sym_SQUOTE] = ACTIONS(4412), + [sym_operator_symbol] = ACTIONS(4412), + [sym_unquoted_symbol] = ACTIONS(4412), + [anon_sym_COLON_DQUOTE] = ACTIONS(4412), + [anon_sym_BQUOTE] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(4515), + [anon_sym_annotation] = ACTIONS(4410), + [anon_sym_end] = ACTIONS(4410), + [anon_sym_AT_LBRACK] = ACTIONS(4412), + [anon_sym_private] = ACTIONS(4410), + [anon_sym_module] = ACTIONS(4410), + [anon_sym_abstract] = ACTIONS(4410), + [anon_sym_class] = ACTIONS(4410), + [anon_sym_struct] = ACTIONS(4410), + [anon_sym_enum] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4412), + [anon_sym_BANG] = ACTIONS(4412), + [anon_sym_TILDE] = ACTIONS(4412), + [anon_sym_def] = ACTIONS(4410), + [anon_sym_DOT] = ACTIONS(4412), + [anon_sym_protected] = ACTIONS(4410), + [anon_sym_include] = ACTIONS(4410), + [anon_sym_extend] = ACTIONS(4410), + [anon_sym_return] = ACTIONS(4410), + [anon_sym_next] = ACTIONS(4410), + [anon_sym_break] = ACTIONS(4410), + [anon_sym_with] = ACTIONS(4410), + [anon_sym_yield] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(4518), + [anon_sym_sizeof] = ACTIONS(4410), + [anon_sym_instance_sizeof] = ACTIONS(4410), + [anon_sym_offsetof] = ACTIONS(4410), + [sym__constant_segment] = ACTIONS(4521), + [anon_sym_COLON_COLON] = ACTIONS(4524), + [anon_sym___LINE__] = ACTIONS(4410), + [anon_sym___END_LINE__] = ACTIONS(4410), + [anon_sym___FILE__] = ACTIONS(4410), + [anon_sym___DIR__] = ACTIONS(4410), + [sym_special_variable] = ACTIONS(4412), + [sym_identifier_method_call] = ACTIONS(4412), + [sym_instance_var] = ACTIONS(4412), + [sym_class_var] = ACTIONS(4412), + [sym_self] = ACTIONS(4527), + [sym_underscore_type] = ACTIONS(4506), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_alias] = ACTIONS(4410), + [anon_sym_begin] = ACTIONS(4410), + [anon_sym_while] = ACTIONS(4410), + [anon_sym_until] = ACTIONS(4410), + [anon_sym_require] = ACTIONS(4410), + [anon_sym_case] = ACTIONS(4410), + [anon_sym_select] = ACTIONS(4410), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4412), + [sym__start_of_named_tuple] = ACTIONS(4412), + [sym__start_of_tuple_type] = ACTIONS(4508), + [sym__start_of_named_tuple_type] = ACTIONS(4510), + [sym_unary_plus] = ACTIONS(4412), + [sym_unary_minus] = ACTIONS(4412), + [sym_unary_wrapping_plus] = ACTIONS(4412), + [sym_unary_wrapping_minus] = ACTIONS(4412), + [sym__beginless_range_operator] = ACTIONS(4412), + [sym__regex_start] = ACTIONS(4412), + [sym__regular_if_keyword] = ACTIONS(4412), + [sym__regular_unless_keyword] = ACTIONS(4412), + [sym__string_literal_start] = ACTIONS(4412), + [sym__string_percent_literal_start] = ACTIONS(4412), + [sym__command_percent_literal_start] = ACTIONS(4412), + [sym__string_array_percent_literal_start] = ACTIONS(4412), + [sym__symbol_array_percent_literal_start] = ACTIONS(4412), + [sym__regex_percent_literal_start] = ACTIONS(4412), + [sym_heredoc_start] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [1992] = { [sym_heredoc_body] = STATE(1992), - [sym_typeof] = STATE(2095), - [sym_constant] = STATE(2077), - [sym__type] = STATE(2071), - [sym_class_type] = STATE(2095), - [sym_union_type] = STATE(2095), - [sym__parenthesized_type] = STATE(2095), - [sym_no_args_proc_type] = STATE(2095), - [sym_parenthesized_proc_type] = STATE(2095), - [sym_tuple_type] = STATE(2095), - [sym_named_tuple_type] = STATE(2095), - [sym_generic_instance_type] = STATE(2095), - [sym_nilable_type] = STATE(2095), - [sym_pointer_type] = STATE(2095), - [sym_static_array_type] = STATE(2095), - [sym_identifier] = ACTIONS(4351), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(4493), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4351), - [sym_true] = ACTIONS(4351), - [sym_false] = ACTIONS(4351), - [aux_sym_integer_token2] = ACTIONS(4351), - [aux_sym_float_token2] = ACTIONS(4353), - [anon_sym_SQUOTE] = ACTIONS(4353), - [sym_operator_symbol] = ACTIONS(4353), - [sym_unquoted_symbol] = ACTIONS(4353), - [anon_sym_COLON_DQUOTE] = ACTIONS(4353), - [anon_sym_BQUOTE] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(4496), - [anon_sym_annotation] = ACTIONS(4351), - [anon_sym_end] = ACTIONS(4351), - [anon_sym_AT_LBRACK] = ACTIONS(4353), - [anon_sym_private] = ACTIONS(4351), - [anon_sym_module] = ACTIONS(4351), - [anon_sym_abstract] = ACTIONS(4351), - [anon_sym_class] = ACTIONS(4351), - [anon_sym_struct] = ACTIONS(4351), - [anon_sym_enum] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4353), - [anon_sym_BANG] = ACTIONS(4353), - [anon_sym_TILDE] = ACTIONS(4353), - [anon_sym_def] = ACTIONS(4351), - [anon_sym_DOT] = ACTIONS(4353), - [anon_sym_protected] = ACTIONS(4351), - [anon_sym_include] = ACTIONS(4351), - [anon_sym_extend] = ACTIONS(4351), - [anon_sym_return] = ACTIONS(4351), - [anon_sym_next] = ACTIONS(4351), - [anon_sym_break] = ACTIONS(4351), - [anon_sym_with] = ACTIONS(4351), - [anon_sym_yield] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(4499), - [anon_sym_sizeof] = ACTIONS(4351), - [anon_sym_instance_sizeof] = ACTIONS(4351), - [anon_sym_offsetof] = ACTIONS(4351), - [sym__constant_segment] = ACTIONS(4502), - [anon_sym_COLON_COLON] = ACTIONS(4505), - [anon_sym___LINE__] = ACTIONS(4351), - [anon_sym___END_LINE__] = ACTIONS(4351), - [anon_sym___FILE__] = ACTIONS(4351), - [anon_sym___DIR__] = ACTIONS(4351), - [sym_special_variable] = ACTIONS(4353), - [sym_identifier_method_call] = ACTIONS(4353), - [sym_instance_var] = ACTIONS(4353), - [sym_class_var] = ACTIONS(4353), - [sym_self] = ACTIONS(4508), - [sym_underscore_type] = ACTIONS(4469), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_alias] = ACTIONS(4351), - [anon_sym_begin] = ACTIONS(4351), - [anon_sym_while] = ACTIONS(4351), - [anon_sym_until] = ACTIONS(4351), - [anon_sym_require] = ACTIONS(4351), - [anon_sym_case] = ACTIONS(4351), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4353), - [sym__start_of_named_tuple] = ACTIONS(4353), - [sym__start_of_tuple_type] = ACTIONS(4471), - [sym__start_of_named_tuple_type] = ACTIONS(4473), - [sym_unary_plus] = ACTIONS(4353), - [sym_unary_minus] = ACTIONS(4353), - [sym_unary_wrapping_plus] = ACTIONS(4353), - [sym_unary_wrapping_minus] = ACTIONS(4353), - [sym__beginless_range_operator] = ACTIONS(4353), - [sym__regex_start] = ACTIONS(4353), - [sym__regular_if_keyword] = ACTIONS(4353), - [sym__regular_unless_keyword] = ACTIONS(4353), - [sym__string_literal_start] = ACTIONS(4353), - [sym__string_percent_literal_start] = ACTIONS(4353), - [sym__command_percent_literal_start] = ACTIONS(4353), - [sym__string_array_percent_literal_start] = ACTIONS(4353), - [sym__symbol_array_percent_literal_start] = ACTIONS(4353), - [sym__regex_percent_literal_start] = ACTIONS(4353), - [sym_heredoc_start] = ACTIONS(4353), + [sym_typeof] = STATE(2081), + [sym_constant] = STATE(2064), + [sym__type] = STATE(2060), + [sym_class_type] = STATE(2081), + [sym_union_type] = STATE(2081), + [sym__parenthesized_type] = STATE(2081), + [sym_no_args_proc_type] = STATE(2081), + [sym_parenthesized_proc_type] = STATE(2081), + [sym_tuple_type] = STATE(2081), + [sym_named_tuple_type] = STATE(2081), + [sym_generic_instance_type] = STATE(2081), + [sym_nilable_type] = STATE(2081), + [sym_pointer_type] = STATE(2081), + [sym_static_array_type] = STATE(2081), + [sym_identifier] = ACTIONS(4360), + [anon_sym_SEMI] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4530), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4360), + [sym_true] = ACTIONS(4360), + [sym_false] = ACTIONS(4360), + [aux_sym_integer_token2] = ACTIONS(4360), + [aux_sym_float_token2] = ACTIONS(4362), + [anon_sym_SQUOTE] = ACTIONS(4362), + [sym_operator_symbol] = ACTIONS(4362), + [sym_unquoted_symbol] = ACTIONS(4362), + [anon_sym_COLON_DQUOTE] = ACTIONS(4362), + [anon_sym_BQUOTE] = ACTIONS(4362), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(4533), + [anon_sym_annotation] = ACTIONS(4360), + [anon_sym_end] = ACTIONS(4360), + [anon_sym_AT_LBRACK] = ACTIONS(4362), + [anon_sym_private] = ACTIONS(4360), + [anon_sym_module] = ACTIONS(4360), + [anon_sym_abstract] = ACTIONS(4360), + [anon_sym_class] = ACTIONS(4360), + [anon_sym_struct] = ACTIONS(4360), + [anon_sym_enum] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4362), + [anon_sym_BANG] = ACTIONS(4362), + [anon_sym_TILDE] = ACTIONS(4362), + [anon_sym_def] = ACTIONS(4360), + [anon_sym_DOT] = ACTIONS(4362), + [anon_sym_protected] = ACTIONS(4360), + [anon_sym_include] = ACTIONS(4360), + [anon_sym_extend] = ACTIONS(4360), + [anon_sym_return] = ACTIONS(4360), + [anon_sym_next] = ACTIONS(4360), + [anon_sym_break] = ACTIONS(4360), + [anon_sym_with] = ACTIONS(4360), + [anon_sym_yield] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(4536), + [anon_sym_sizeof] = ACTIONS(4360), + [anon_sym_instance_sizeof] = ACTIONS(4360), + [anon_sym_offsetof] = ACTIONS(4360), + [sym__constant_segment] = ACTIONS(4539), + [anon_sym_COLON_COLON] = ACTIONS(4542), + [anon_sym___LINE__] = ACTIONS(4360), + [anon_sym___END_LINE__] = ACTIONS(4360), + [anon_sym___FILE__] = ACTIONS(4360), + [anon_sym___DIR__] = ACTIONS(4360), + [sym_special_variable] = ACTIONS(4362), + [sym_identifier_method_call] = ACTIONS(4362), + [sym_instance_var] = ACTIONS(4362), + [sym_class_var] = ACTIONS(4362), + [sym_self] = ACTIONS(4545), + [sym_underscore_type] = ACTIONS(4506), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_alias] = ACTIONS(4360), + [anon_sym_begin] = ACTIONS(4360), + [anon_sym_while] = ACTIONS(4360), + [anon_sym_until] = ACTIONS(4360), + [anon_sym_require] = ACTIONS(4360), + [anon_sym_case] = ACTIONS(4360), + [anon_sym_select] = ACTIONS(4360), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4362), + [sym__start_of_named_tuple] = ACTIONS(4362), + [sym__start_of_tuple_type] = ACTIONS(4508), + [sym__start_of_named_tuple_type] = ACTIONS(4510), + [sym_unary_plus] = ACTIONS(4362), + [sym_unary_minus] = ACTIONS(4362), + [sym_unary_wrapping_plus] = ACTIONS(4362), + [sym_unary_wrapping_minus] = ACTIONS(4362), + [sym__beginless_range_operator] = ACTIONS(4362), + [sym__regex_start] = ACTIONS(4362), + [sym__regular_if_keyword] = ACTIONS(4362), + [sym__regular_unless_keyword] = ACTIONS(4362), + [sym__string_literal_start] = ACTIONS(4362), + [sym__string_percent_literal_start] = ACTIONS(4362), + [sym__command_percent_literal_start] = ACTIONS(4362), + [sym__string_array_percent_literal_start] = ACTIONS(4362), + [sym__symbol_array_percent_literal_start] = ACTIONS(4362), + [sym__regex_percent_literal_start] = ACTIONS(4362), + [sym_heredoc_start] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [1993] = { [sym_heredoc_body] = STATE(1993), - [sym_typeof] = STATE(2095), - [sym_constant] = STATE(2077), - [sym__type] = STATE(2097), - [sym_class_type] = STATE(2095), - [sym_union_type] = STATE(2095), - [sym__parenthesized_type] = STATE(2095), - [sym_no_args_proc_type] = STATE(2095), - [sym_parenthesized_proc_type] = STATE(2095), - [sym_tuple_type] = STATE(2095), - [sym_named_tuple_type] = STATE(2095), - [sym_generic_instance_type] = STATE(2095), - [sym_nilable_type] = STATE(2095), - [sym_pointer_type] = STATE(2095), - [sym_static_array_type] = STATE(2095), - [sym_identifier] = ACTIONS(4407), - [anon_sym_SEMI] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(4511), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4407), - [sym_true] = ACTIONS(4407), - [sym_false] = ACTIONS(4407), - [aux_sym_integer_token2] = ACTIONS(4407), - [aux_sym_float_token2] = ACTIONS(4409), - [anon_sym_SQUOTE] = ACTIONS(4409), - [sym_operator_symbol] = ACTIONS(4409), - [sym_unquoted_symbol] = ACTIONS(4409), - [anon_sym_COLON_DQUOTE] = ACTIONS(4409), - [anon_sym_BQUOTE] = ACTIONS(4409), - [anon_sym_LBRACK] = ACTIONS(4409), - [anon_sym_DASH_GT] = ACTIONS(4514), - [anon_sym_annotation] = ACTIONS(4407), - [anon_sym_end] = ACTIONS(4407), - [anon_sym_AT_LBRACK] = ACTIONS(4409), - [anon_sym_private] = ACTIONS(4407), - [anon_sym_module] = ACTIONS(4407), - [anon_sym_abstract] = ACTIONS(4407), - [anon_sym_class] = ACTIONS(4407), - [anon_sym_struct] = ACTIONS(4407), - [anon_sym_enum] = ACTIONS(4407), - [anon_sym_STAR] = ACTIONS(4409), - [anon_sym_BANG] = ACTIONS(4409), - [anon_sym_TILDE] = ACTIONS(4409), - [anon_sym_def] = ACTIONS(4407), - [anon_sym_protected] = ACTIONS(4407), - [anon_sym_include] = ACTIONS(4407), - [anon_sym_extend] = ACTIONS(4407), - [anon_sym_return] = ACTIONS(4407), - [anon_sym_next] = ACTIONS(4407), - [anon_sym_break] = ACTIONS(4407), - [anon_sym_with] = ACTIONS(4407), - [anon_sym_yield] = ACTIONS(4407), - [anon_sym_typeof] = ACTIONS(4517), - [anon_sym_sizeof] = ACTIONS(4407), - [anon_sym_instance_sizeof] = ACTIONS(4407), - [anon_sym_offsetof] = ACTIONS(4407), - [sym__constant_segment] = ACTIONS(4520), - [anon_sym_COLON_COLON] = ACTIONS(4523), - [anon_sym___LINE__] = ACTIONS(4407), - [anon_sym___END_LINE__] = ACTIONS(4407), - [anon_sym___FILE__] = ACTIONS(4407), - [anon_sym___DIR__] = ACTIONS(4407), - [sym_special_variable] = ACTIONS(4409), - [sym_identifier_method_call] = ACTIONS(4409), - [sym_instance_var] = ACTIONS(4409), - [sym_class_var] = ACTIONS(4409), - [sym_self] = ACTIONS(4526), - [sym_underscore_type] = ACTIONS(4469), - [anon_sym_alias] = ACTIONS(4407), - [anon_sym_begin] = ACTIONS(4407), - [anon_sym_while] = ACTIONS(4407), - [anon_sym_until] = ACTIONS(4407), - [anon_sym_require] = ACTIONS(4407), - [anon_sym_case] = ACTIONS(4407), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4409), - [sym__start_of_named_tuple] = ACTIONS(4409), - [sym__start_of_tuple_type] = ACTIONS(4471), - [sym__start_of_named_tuple_type] = ACTIONS(4473), - [sym_unary_plus] = ACTIONS(4409), - [sym_unary_minus] = ACTIONS(4409), - [sym_unary_wrapping_plus] = ACTIONS(4409), - [sym_unary_wrapping_minus] = ACTIONS(4409), - [sym__beginless_range_operator] = ACTIONS(4409), - [sym__regex_start] = ACTIONS(4409), - [sym__regular_if_keyword] = ACTIONS(4409), - [sym__regular_unless_keyword] = ACTIONS(4409), - [sym__string_literal_start] = ACTIONS(4409), - [sym__string_percent_literal_start] = ACTIONS(4409), - [sym__command_percent_literal_start] = ACTIONS(4409), - [sym__string_array_percent_literal_start] = ACTIONS(4409), - [sym__symbol_array_percent_literal_start] = ACTIONS(4409), - [sym__regex_percent_literal_start] = ACTIONS(4409), - [sym_heredoc_start] = ACTIONS(4409), + [sym_typeof] = STATE(2081), + [sym_constant] = STATE(2064), + [sym__type] = STATE(2086), + [sym_class_type] = STATE(2081), + [sym_union_type] = STATE(2081), + [sym__parenthesized_type] = STATE(2081), + [sym_no_args_proc_type] = STATE(2081), + [sym_parenthesized_proc_type] = STATE(2081), + [sym_tuple_type] = STATE(2081), + [sym_named_tuple_type] = STATE(2081), + [sym_generic_instance_type] = STATE(2081), + [sym_nilable_type] = STATE(2081), + [sym_pointer_type] = STATE(2081), + [sym_static_array_type] = STATE(2081), + [sym_identifier] = ACTIONS(4444), + [anon_sym_SEMI] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4548), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4444), + [sym_true] = ACTIONS(4444), + [sym_false] = ACTIONS(4444), + [aux_sym_integer_token2] = ACTIONS(4444), + [aux_sym_float_token2] = ACTIONS(4446), + [anon_sym_SQUOTE] = ACTIONS(4446), + [sym_operator_symbol] = ACTIONS(4446), + [sym_unquoted_symbol] = ACTIONS(4446), + [anon_sym_COLON_DQUOTE] = ACTIONS(4446), + [anon_sym_BQUOTE] = ACTIONS(4446), + [anon_sym_LBRACK] = ACTIONS(4446), + [anon_sym_DASH_GT] = ACTIONS(4551), + [anon_sym_annotation] = ACTIONS(4444), + [anon_sym_end] = ACTIONS(4444), + [anon_sym_AT_LBRACK] = ACTIONS(4446), + [anon_sym_private] = ACTIONS(4444), + [anon_sym_module] = ACTIONS(4444), + [anon_sym_abstract] = ACTIONS(4444), + [anon_sym_class] = ACTIONS(4444), + [anon_sym_struct] = ACTIONS(4444), + [anon_sym_enum] = ACTIONS(4444), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_BANG] = ACTIONS(4446), + [anon_sym_TILDE] = ACTIONS(4446), + [anon_sym_def] = ACTIONS(4444), + [anon_sym_protected] = ACTIONS(4444), + [anon_sym_include] = ACTIONS(4444), + [anon_sym_extend] = ACTIONS(4444), + [anon_sym_return] = ACTIONS(4444), + [anon_sym_next] = ACTIONS(4444), + [anon_sym_break] = ACTIONS(4444), + [anon_sym_with] = ACTIONS(4444), + [anon_sym_yield] = ACTIONS(4444), + [anon_sym_typeof] = ACTIONS(4554), + [anon_sym_sizeof] = ACTIONS(4444), + [anon_sym_instance_sizeof] = ACTIONS(4444), + [anon_sym_offsetof] = ACTIONS(4444), + [sym__constant_segment] = ACTIONS(4557), + [anon_sym_COLON_COLON] = ACTIONS(4560), + [anon_sym___LINE__] = ACTIONS(4444), + [anon_sym___END_LINE__] = ACTIONS(4444), + [anon_sym___FILE__] = ACTIONS(4444), + [anon_sym___DIR__] = ACTIONS(4444), + [sym_special_variable] = ACTIONS(4446), + [sym_identifier_method_call] = ACTIONS(4446), + [sym_instance_var] = ACTIONS(4446), + [sym_class_var] = ACTIONS(4446), + [sym_self] = ACTIONS(4563), + [sym_underscore_type] = ACTIONS(4506), + [anon_sym_alias] = ACTIONS(4444), + [anon_sym_begin] = ACTIONS(4444), + [anon_sym_while] = ACTIONS(4444), + [anon_sym_until] = ACTIONS(4444), + [anon_sym_require] = ACTIONS(4444), + [anon_sym_case] = ACTIONS(4444), + [anon_sym_select] = ACTIONS(4444), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4446), + [sym__start_of_named_tuple] = ACTIONS(4446), + [sym__start_of_tuple_type] = ACTIONS(4508), + [sym__start_of_named_tuple_type] = ACTIONS(4510), + [sym_unary_plus] = ACTIONS(4446), + [sym_unary_minus] = ACTIONS(4446), + [sym_unary_wrapping_plus] = ACTIONS(4446), + [sym_unary_wrapping_minus] = ACTIONS(4446), + [sym__beginless_range_operator] = ACTIONS(4446), + [sym__regex_start] = ACTIONS(4446), + [sym__regular_if_keyword] = ACTIONS(4446), + [sym__regular_unless_keyword] = ACTIONS(4446), + [sym__string_literal_start] = ACTIONS(4446), + [sym__string_percent_literal_start] = ACTIONS(4446), + [sym__command_percent_literal_start] = ACTIONS(4446), + [sym__string_array_percent_literal_start] = ACTIONS(4446), + [sym__symbol_array_percent_literal_start] = ACTIONS(4446), + [sym__regex_percent_literal_start] = ACTIONS(4446), + [sym_heredoc_start] = ACTIONS(4446), [sym__heredoc_body_start] = ACTIONS(7), }, [1994] = { [sym_heredoc_body] = STATE(1994), - [sym_typeof] = STATE(2095), - [sym_constant] = STATE(2077), - [sym__type] = STATE(2093), - [sym_class_type] = STATE(2095), - [sym_union_type] = STATE(2095), - [sym__parenthesized_type] = STATE(2095), - [sym_no_args_proc_type] = STATE(2095), - [sym_parenthesized_proc_type] = STATE(2095), - [sym_tuple_type] = STATE(2095), - [sym_named_tuple_type] = STATE(2095), - [sym_generic_instance_type] = STATE(2095), - [sym_nilable_type] = STATE(2095), - [sym_pointer_type] = STATE(2095), - [sym_static_array_type] = STATE(2095), - [sym_identifier] = ACTIONS(4429), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(4529), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4429), - [sym_true] = ACTIONS(4429), - [sym_false] = ACTIONS(4429), - [aux_sym_integer_token2] = ACTIONS(4429), - [aux_sym_float_token2] = ACTIONS(4431), - [anon_sym_SQUOTE] = ACTIONS(4431), - [sym_operator_symbol] = ACTIONS(4431), - [sym_unquoted_symbol] = ACTIONS(4431), - [anon_sym_COLON_DQUOTE] = ACTIONS(4431), - [anon_sym_BQUOTE] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(4532), - [anon_sym_annotation] = ACTIONS(4429), - [anon_sym_end] = ACTIONS(4429), - [anon_sym_AT_LBRACK] = ACTIONS(4431), - [anon_sym_private] = ACTIONS(4429), - [anon_sym_module] = ACTIONS(4429), - [anon_sym_abstract] = ACTIONS(4429), - [anon_sym_class] = ACTIONS(4429), - [anon_sym_struct] = ACTIONS(4429), - [anon_sym_enum] = ACTIONS(4429), - [anon_sym_STAR] = ACTIONS(4431), - [anon_sym_BANG] = ACTIONS(4431), - [anon_sym_TILDE] = ACTIONS(4431), - [anon_sym_def] = ACTIONS(4429), - [anon_sym_protected] = ACTIONS(4429), - [anon_sym_include] = ACTIONS(4429), - [anon_sym_extend] = ACTIONS(4429), - [anon_sym_return] = ACTIONS(4429), - [anon_sym_next] = ACTIONS(4429), - [anon_sym_break] = ACTIONS(4429), - [anon_sym_with] = ACTIONS(4429), - [anon_sym_yield] = ACTIONS(4429), - [anon_sym_typeof] = ACTIONS(4535), - [anon_sym_sizeof] = ACTIONS(4429), - [anon_sym_instance_sizeof] = ACTIONS(4429), - [anon_sym_offsetof] = ACTIONS(4429), - [sym__constant_segment] = ACTIONS(4538), - [anon_sym_COLON_COLON] = ACTIONS(4541), - [anon_sym___LINE__] = ACTIONS(4429), - [anon_sym___END_LINE__] = ACTIONS(4429), - [anon_sym___FILE__] = ACTIONS(4429), - [anon_sym___DIR__] = ACTIONS(4429), - [sym_special_variable] = ACTIONS(4431), - [sym_identifier_method_call] = ACTIONS(4431), - [sym_instance_var] = ACTIONS(4431), - [sym_class_var] = ACTIONS(4431), - [sym_self] = ACTIONS(4544), - [sym_underscore_type] = ACTIONS(4469), - [anon_sym_alias] = ACTIONS(4429), - [anon_sym_begin] = ACTIONS(4429), - [anon_sym_while] = ACTIONS(4429), - [anon_sym_until] = ACTIONS(4429), - [anon_sym_require] = ACTIONS(4429), - [anon_sym_case] = ACTIONS(4429), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4431), - [sym__start_of_named_tuple] = ACTIONS(4431), - [sym__start_of_tuple_type] = ACTIONS(4471), - [sym__start_of_named_tuple_type] = ACTIONS(4473), - [sym_unary_plus] = ACTIONS(4431), - [sym_unary_minus] = ACTIONS(4431), - [sym_unary_wrapping_plus] = ACTIONS(4431), - [sym_unary_wrapping_minus] = ACTIONS(4431), - [sym__beginless_range_operator] = ACTIONS(4431), - [sym__regex_start] = ACTIONS(4431), - [sym__regular_if_keyword] = ACTIONS(4431), - [sym__regular_unless_keyword] = ACTIONS(4431), - [sym__string_literal_start] = ACTIONS(4431), - [sym__string_percent_literal_start] = ACTIONS(4431), - [sym__command_percent_literal_start] = ACTIONS(4431), - [sym__string_array_percent_literal_start] = ACTIONS(4431), - [sym__symbol_array_percent_literal_start] = ACTIONS(4431), - [sym__regex_percent_literal_start] = ACTIONS(4431), - [sym_heredoc_start] = ACTIONS(4431), + [sym_typeof] = STATE(2081), + [sym_constant] = STATE(2064), + [sym__type] = STATE(2082), + [sym_class_type] = STATE(2081), + [sym_union_type] = STATE(2081), + [sym__parenthesized_type] = STATE(2081), + [sym_no_args_proc_type] = STATE(2081), + [sym_parenthesized_proc_type] = STATE(2081), + [sym_tuple_type] = STATE(2081), + [sym_named_tuple_type] = STATE(2081), + [sym_generic_instance_type] = STATE(2081), + [sym_nilable_type] = STATE(2081), + [sym_pointer_type] = STATE(2081), + [sym_static_array_type] = STATE(2081), + [sym_identifier] = ACTIONS(4466), + [anon_sym_SEMI] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(4566), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4466), + [sym_true] = ACTIONS(4466), + [sym_false] = ACTIONS(4466), + [aux_sym_integer_token2] = ACTIONS(4466), + [aux_sym_float_token2] = ACTIONS(4468), + [anon_sym_SQUOTE] = ACTIONS(4468), + [sym_operator_symbol] = ACTIONS(4468), + [sym_unquoted_symbol] = ACTIONS(4468), + [anon_sym_COLON_DQUOTE] = ACTIONS(4468), + [anon_sym_BQUOTE] = ACTIONS(4468), + [anon_sym_LBRACK] = ACTIONS(4468), + [anon_sym_DASH_GT] = ACTIONS(4569), + [anon_sym_annotation] = ACTIONS(4466), + [anon_sym_end] = ACTIONS(4466), + [anon_sym_AT_LBRACK] = ACTIONS(4468), + [anon_sym_private] = ACTIONS(4466), + [anon_sym_module] = ACTIONS(4466), + [anon_sym_abstract] = ACTIONS(4466), + [anon_sym_class] = ACTIONS(4466), + [anon_sym_struct] = ACTIONS(4466), + [anon_sym_enum] = ACTIONS(4466), + [anon_sym_STAR] = ACTIONS(4468), + [anon_sym_BANG] = ACTIONS(4468), + [anon_sym_TILDE] = ACTIONS(4468), + [anon_sym_def] = ACTIONS(4466), + [anon_sym_protected] = ACTIONS(4466), + [anon_sym_include] = ACTIONS(4466), + [anon_sym_extend] = ACTIONS(4466), + [anon_sym_return] = ACTIONS(4466), + [anon_sym_next] = ACTIONS(4466), + [anon_sym_break] = ACTIONS(4466), + [anon_sym_with] = ACTIONS(4466), + [anon_sym_yield] = ACTIONS(4466), + [anon_sym_typeof] = ACTIONS(4572), + [anon_sym_sizeof] = ACTIONS(4466), + [anon_sym_instance_sizeof] = ACTIONS(4466), + [anon_sym_offsetof] = ACTIONS(4466), + [sym__constant_segment] = ACTIONS(4575), + [anon_sym_COLON_COLON] = ACTIONS(4578), + [anon_sym___LINE__] = ACTIONS(4466), + [anon_sym___END_LINE__] = ACTIONS(4466), + [anon_sym___FILE__] = ACTIONS(4466), + [anon_sym___DIR__] = ACTIONS(4466), + [sym_special_variable] = ACTIONS(4468), + [sym_identifier_method_call] = ACTIONS(4468), + [sym_instance_var] = ACTIONS(4468), + [sym_class_var] = ACTIONS(4468), + [sym_self] = ACTIONS(4581), + [sym_underscore_type] = ACTIONS(4506), + [anon_sym_alias] = ACTIONS(4466), + [anon_sym_begin] = ACTIONS(4466), + [anon_sym_while] = ACTIONS(4466), + [anon_sym_until] = ACTIONS(4466), + [anon_sym_require] = ACTIONS(4466), + [anon_sym_case] = ACTIONS(4466), + [anon_sym_select] = ACTIONS(4466), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4468), + [sym__start_of_named_tuple] = ACTIONS(4468), + [sym__start_of_tuple_type] = ACTIONS(4508), + [sym__start_of_named_tuple_type] = ACTIONS(4510), + [sym_unary_plus] = ACTIONS(4468), + [sym_unary_minus] = ACTIONS(4468), + [sym_unary_wrapping_plus] = ACTIONS(4468), + [sym_unary_wrapping_minus] = ACTIONS(4468), + [sym__beginless_range_operator] = ACTIONS(4468), + [sym__regex_start] = ACTIONS(4468), + [sym__regular_if_keyword] = ACTIONS(4468), + [sym__regular_unless_keyword] = ACTIONS(4468), + [sym__string_literal_start] = ACTIONS(4468), + [sym__string_percent_literal_start] = ACTIONS(4468), + [sym__command_percent_literal_start] = ACTIONS(4468), + [sym__string_array_percent_literal_start] = ACTIONS(4468), + [sym__symbol_array_percent_literal_start] = ACTIONS(4468), + [sym__regex_percent_literal_start] = ACTIONS(4468), + [sym_heredoc_start] = ACTIONS(4468), [sym__heredoc_body_start] = ACTIONS(7), }, [1995] = { [sym_heredoc_body] = STATE(1995), - [aux_sym_constant_repeat1] = STATE(1999), - [sym_identifier] = ACTIONS(4547), - [anon_sym_SEMI] = ACTIONS(4549), - [anon_sym_LPAREN] = ACTIONS(4547), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4547), - [sym_true] = ACTIONS(4547), - [sym_false] = ACTIONS(4547), - [aux_sym_integer_token2] = ACTIONS(4547), - [aux_sym_float_token2] = ACTIONS(4549), - [anon_sym_SQUOTE] = ACTIONS(4549), - [sym_operator_symbol] = ACTIONS(4549), - [sym_unquoted_symbol] = ACTIONS(4549), - [anon_sym_COLON_DQUOTE] = ACTIONS(4549), - [anon_sym_BQUOTE] = ACTIONS(4549), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_COMMA] = ACTIONS(4549), - [anon_sym_DASH_GT] = ACTIONS(4549), - [anon_sym_annotation] = ACTIONS(4547), - [anon_sym_end] = ACTIONS(4547), - [anon_sym_AT_LBRACK] = ACTIONS(4549), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_module] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_class] = ACTIONS(4547), - [anon_sym_struct] = ACTIONS(4547), - [anon_sym_enum] = ACTIONS(4547), - [anon_sym_STAR] = ACTIONS(4549), - [anon_sym_PIPE] = ACTIONS(4549), - [anon_sym_BANG] = ACTIONS(4549), - [anon_sym_TILDE] = ACTIONS(4549), - [anon_sym_def] = ACTIONS(4547), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_protected] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_extend] = ACTIONS(4547), - [anon_sym_forall] = ACTIONS(4547), - [anon_sym_return] = ACTIONS(4547), - [anon_sym_next] = ACTIONS(4547), - [anon_sym_break] = ACTIONS(4547), - [anon_sym_with] = ACTIONS(4547), - [anon_sym_yield] = ACTIONS(4547), - [anon_sym_typeof] = ACTIONS(4547), - [anon_sym_sizeof] = ACTIONS(4547), - [anon_sym_instance_sizeof] = ACTIONS(4547), - [anon_sym_offsetof] = ACTIONS(4547), - [sym__constant_segment] = ACTIONS(4549), - [anon_sym_COLON_COLON] = ACTIONS(4551), - [anon_sym___LINE__] = ACTIONS(4547), - [anon_sym___END_LINE__] = ACTIONS(4547), - [anon_sym___FILE__] = ACTIONS(4547), - [anon_sym___DIR__] = ACTIONS(4547), - [sym_special_variable] = ACTIONS(4549), - [sym_identifier_method_call] = ACTIONS(4549), - [sym_instance_var] = ACTIONS(4549), - [sym_class_var] = ACTIONS(4549), - [sym_self] = ACTIONS(4547), - [anon_sym_LPAREN2] = ACTIONS(4549), - [anon_sym_QMARK] = ACTIONS(4549), - [anon_sym_alias] = ACTIONS(4547), - [anon_sym_begin] = ACTIONS(4547), - [anon_sym_while] = ACTIONS(4547), - [anon_sym_until] = ACTIONS(4547), - [anon_sym_else] = ACTIONS(4547), - [anon_sym_require] = ACTIONS(4547), - [anon_sym_case] = ACTIONS(4547), - [sym__line_break] = ACTIONS(4549), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4549), - [sym__start_of_named_tuple] = ACTIONS(4549), - [sym_unary_plus] = ACTIONS(4549), - [sym_unary_minus] = ACTIONS(4549), - [sym_unary_wrapping_plus] = ACTIONS(4549), - [sym_unary_wrapping_minus] = ACTIONS(4549), - [sym__beginless_range_operator] = ACTIONS(4549), - [sym__regex_start] = ACTIONS(4549), - [sym__regular_if_keyword] = ACTIONS(4549), - [sym__regular_unless_keyword] = ACTIONS(4549), - [sym__regular_rescue_keyword] = ACTIONS(4549), - [sym__regular_ensure_keyword] = ACTIONS(4549), - [sym__string_literal_start] = ACTIONS(4549), - [sym__string_percent_literal_start] = ACTIONS(4549), - [sym__command_percent_literal_start] = ACTIONS(4549), - [sym__string_array_percent_literal_start] = ACTIONS(4549), - [sym__symbol_array_percent_literal_start] = ACTIONS(4549), - [sym__regex_percent_literal_start] = ACTIONS(4549), - [sym_heredoc_start] = ACTIONS(4549), + [aux_sym_constant_repeat1] = STATE(1997), + [sym_identifier] = ACTIONS(4584), + [anon_sym_SEMI] = ACTIONS(4586), + [anon_sym_LPAREN] = ACTIONS(4584), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4584), + [sym_true] = ACTIONS(4584), + [sym_false] = ACTIONS(4584), + [aux_sym_integer_token2] = ACTIONS(4584), + [aux_sym_float_token2] = ACTIONS(4586), + [anon_sym_SQUOTE] = ACTIONS(4586), + [sym_operator_symbol] = ACTIONS(4586), + [sym_unquoted_symbol] = ACTIONS(4586), + [anon_sym_COLON_DQUOTE] = ACTIONS(4586), + [anon_sym_BQUOTE] = ACTIONS(4586), + [anon_sym_LBRACK] = ACTIONS(4586), + [anon_sym_COMMA] = ACTIONS(4586), + [anon_sym_DASH_GT] = ACTIONS(4586), + [anon_sym_annotation] = ACTIONS(4584), + [anon_sym_end] = ACTIONS(4584), + [anon_sym_AT_LBRACK] = ACTIONS(4586), + [anon_sym_private] = ACTIONS(4584), + [anon_sym_module] = ACTIONS(4584), + [anon_sym_abstract] = ACTIONS(4584), + [anon_sym_class] = ACTIONS(4584), + [anon_sym_struct] = ACTIONS(4584), + [anon_sym_enum] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4586), + [anon_sym_PIPE] = ACTIONS(4586), + [anon_sym_BANG] = ACTIONS(4586), + [anon_sym_TILDE] = ACTIONS(4586), + [anon_sym_def] = ACTIONS(4584), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_protected] = ACTIONS(4584), + [anon_sym_include] = ACTIONS(4584), + [anon_sym_extend] = ACTIONS(4584), + [anon_sym_forall] = ACTIONS(4584), + [anon_sym_return] = ACTIONS(4584), + [anon_sym_next] = ACTIONS(4584), + [anon_sym_break] = ACTIONS(4584), + [anon_sym_with] = ACTIONS(4584), + [anon_sym_yield] = ACTIONS(4584), + [anon_sym_typeof] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(4584), + [anon_sym_instance_sizeof] = ACTIONS(4584), + [anon_sym_offsetof] = ACTIONS(4584), + [sym__constant_segment] = ACTIONS(4586), + [anon_sym_COLON_COLON] = ACTIONS(4588), + [anon_sym___LINE__] = ACTIONS(4584), + [anon_sym___END_LINE__] = ACTIONS(4584), + [anon_sym___FILE__] = ACTIONS(4584), + [anon_sym___DIR__] = ACTIONS(4584), + [sym_special_variable] = ACTIONS(4586), + [sym_identifier_method_call] = ACTIONS(4586), + [sym_instance_var] = ACTIONS(4586), + [sym_class_var] = ACTIONS(4586), + [sym_self] = ACTIONS(4584), + [anon_sym_LPAREN2] = ACTIONS(4586), + [anon_sym_QMARK] = ACTIONS(4586), + [anon_sym_alias] = ACTIONS(4584), + [anon_sym_begin] = ACTIONS(4584), + [anon_sym_while] = ACTIONS(4584), + [anon_sym_until] = ACTIONS(4584), + [anon_sym_else] = ACTIONS(4584), + [anon_sym_require] = ACTIONS(4584), + [anon_sym_case] = ACTIONS(4584), + [anon_sym_select] = ACTIONS(4584), + [sym__line_break] = ACTIONS(4586), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4586), + [sym__start_of_named_tuple] = ACTIONS(4586), + [sym_unary_plus] = ACTIONS(4586), + [sym_unary_minus] = ACTIONS(4586), + [sym_unary_wrapping_plus] = ACTIONS(4586), + [sym_unary_wrapping_minus] = ACTIONS(4586), + [sym__beginless_range_operator] = ACTIONS(4586), + [sym__regex_start] = ACTIONS(4586), + [sym__regular_if_keyword] = ACTIONS(4586), + [sym__regular_unless_keyword] = ACTIONS(4586), + [sym__regular_rescue_keyword] = ACTIONS(4586), + [sym__regular_ensure_keyword] = ACTIONS(4586), + [sym__string_literal_start] = ACTIONS(4586), + [sym__string_percent_literal_start] = ACTIONS(4586), + [sym__command_percent_literal_start] = ACTIONS(4586), + [sym__string_array_percent_literal_start] = ACTIONS(4586), + [sym__symbol_array_percent_literal_start] = ACTIONS(4586), + [sym__regex_percent_literal_start] = ACTIONS(4586), + [sym_heredoc_start] = ACTIONS(4586), [sym__heredoc_body_start] = ACTIONS(7), }, [1996] = { [sym_heredoc_body] = STATE(1996), - [aux_sym_constant_repeat1] = STATE(1997), - [sym_identifier] = ACTIONS(4553), - [anon_sym_SEMI] = ACTIONS(4555), - [anon_sym_LPAREN] = ACTIONS(4553), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4553), - [sym_true] = ACTIONS(4553), - [sym_false] = ACTIONS(4553), - [aux_sym_integer_token2] = ACTIONS(4553), - [aux_sym_float_token2] = ACTIONS(4555), - [anon_sym_SQUOTE] = ACTIONS(4555), - [sym_operator_symbol] = ACTIONS(4555), - [sym_unquoted_symbol] = ACTIONS(4555), - [anon_sym_COLON_DQUOTE] = ACTIONS(4555), - [anon_sym_BQUOTE] = ACTIONS(4555), - [anon_sym_LBRACK] = ACTIONS(4555), - [anon_sym_COMMA] = ACTIONS(4555), - [anon_sym_DASH_GT] = ACTIONS(4555), - [anon_sym_annotation] = ACTIONS(4553), - [anon_sym_end] = ACTIONS(4553), - [anon_sym_AT_LBRACK] = ACTIONS(4555), - [anon_sym_private] = ACTIONS(4553), - [anon_sym_module] = ACTIONS(4553), - [anon_sym_abstract] = ACTIONS(4553), - [anon_sym_class] = ACTIONS(4553), - [anon_sym_struct] = ACTIONS(4553), - [anon_sym_enum] = ACTIONS(4553), - [anon_sym_STAR] = ACTIONS(4555), - [anon_sym_PIPE] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(4555), - [anon_sym_TILDE] = ACTIONS(4555), - [anon_sym_def] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_protected] = ACTIONS(4553), - [anon_sym_include] = ACTIONS(4553), - [anon_sym_extend] = ACTIONS(4553), - [anon_sym_forall] = ACTIONS(4553), - [anon_sym_return] = ACTIONS(4553), - [anon_sym_next] = ACTIONS(4553), - [anon_sym_break] = ACTIONS(4553), - [anon_sym_with] = ACTIONS(4553), - [anon_sym_yield] = ACTIONS(4553), - [anon_sym_typeof] = ACTIONS(4553), - [anon_sym_sizeof] = ACTIONS(4553), - [anon_sym_instance_sizeof] = ACTIONS(4553), - [anon_sym_offsetof] = ACTIONS(4553), - [sym__constant_segment] = ACTIONS(4555), - [anon_sym_COLON_COLON] = ACTIONS(4551), - [anon_sym___LINE__] = ACTIONS(4553), - [anon_sym___END_LINE__] = ACTIONS(4553), - [anon_sym___FILE__] = ACTIONS(4553), - [anon_sym___DIR__] = ACTIONS(4553), - [sym_special_variable] = ACTIONS(4555), - [sym_identifier_method_call] = ACTIONS(4555), - [sym_instance_var] = ACTIONS(4555), - [sym_class_var] = ACTIONS(4555), - [sym_self] = ACTIONS(4553), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_QMARK] = ACTIONS(4555), - [anon_sym_alias] = ACTIONS(4553), - [anon_sym_begin] = ACTIONS(4553), - [anon_sym_while] = ACTIONS(4553), - [anon_sym_until] = ACTIONS(4553), - [anon_sym_else] = ACTIONS(4553), - [anon_sym_require] = ACTIONS(4553), - [anon_sym_case] = ACTIONS(4553), - [sym__line_break] = ACTIONS(4555), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4555), - [sym__start_of_named_tuple] = ACTIONS(4555), - [sym_unary_plus] = ACTIONS(4555), - [sym_unary_minus] = ACTIONS(4555), - [sym_unary_wrapping_plus] = ACTIONS(4555), - [sym_unary_wrapping_minus] = ACTIONS(4555), - [sym__beginless_range_operator] = ACTIONS(4555), - [sym__regex_start] = ACTIONS(4555), - [sym__regular_if_keyword] = ACTIONS(4555), - [sym__regular_unless_keyword] = ACTIONS(4555), - [sym__regular_rescue_keyword] = ACTIONS(4555), - [sym__regular_ensure_keyword] = ACTIONS(4555), - [sym__string_literal_start] = ACTIONS(4555), - [sym__string_percent_literal_start] = ACTIONS(4555), - [sym__command_percent_literal_start] = ACTIONS(4555), - [sym__string_array_percent_literal_start] = ACTIONS(4555), - [sym__symbol_array_percent_literal_start] = ACTIONS(4555), - [sym__regex_percent_literal_start] = ACTIONS(4555), - [sym_heredoc_start] = ACTIONS(4555), + [aux_sym_constant_repeat1] = STATE(1999), + [sym_identifier] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(4592), + [anon_sym_LPAREN] = ACTIONS(4590), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4590), + [sym_true] = ACTIONS(4590), + [sym_false] = ACTIONS(4590), + [aux_sym_integer_token2] = ACTIONS(4590), + [aux_sym_float_token2] = ACTIONS(4592), + [anon_sym_SQUOTE] = ACTIONS(4592), + [sym_operator_symbol] = ACTIONS(4592), + [sym_unquoted_symbol] = ACTIONS(4592), + [anon_sym_COLON_DQUOTE] = ACTIONS(4592), + [anon_sym_BQUOTE] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_DASH_GT] = ACTIONS(4592), + [anon_sym_annotation] = ACTIONS(4590), + [anon_sym_end] = ACTIONS(4590), + [anon_sym_AT_LBRACK] = ACTIONS(4592), + [anon_sym_private] = ACTIONS(4590), + [anon_sym_module] = ACTIONS(4590), + [anon_sym_abstract] = ACTIONS(4590), + [anon_sym_class] = ACTIONS(4590), + [anon_sym_struct] = ACTIONS(4590), + [anon_sym_enum] = ACTIONS(4590), + [anon_sym_STAR] = ACTIONS(4592), + [anon_sym_PIPE] = ACTIONS(4592), + [anon_sym_BANG] = ACTIONS(4592), + [anon_sym_TILDE] = ACTIONS(4592), + [anon_sym_def] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4592), + [anon_sym_protected] = ACTIONS(4590), + [anon_sym_include] = ACTIONS(4590), + [anon_sym_extend] = ACTIONS(4590), + [anon_sym_forall] = ACTIONS(4590), + [anon_sym_return] = ACTIONS(4590), + [anon_sym_next] = ACTIONS(4590), + [anon_sym_break] = ACTIONS(4590), + [anon_sym_with] = ACTIONS(4590), + [anon_sym_yield] = ACTIONS(4590), + [anon_sym_typeof] = ACTIONS(4590), + [anon_sym_sizeof] = ACTIONS(4590), + [anon_sym_instance_sizeof] = ACTIONS(4590), + [anon_sym_offsetof] = ACTIONS(4590), + [sym__constant_segment] = ACTIONS(4592), + [anon_sym_COLON_COLON] = ACTIONS(4588), + [anon_sym___LINE__] = ACTIONS(4590), + [anon_sym___END_LINE__] = ACTIONS(4590), + [anon_sym___FILE__] = ACTIONS(4590), + [anon_sym___DIR__] = ACTIONS(4590), + [sym_special_variable] = ACTIONS(4592), + [sym_identifier_method_call] = ACTIONS(4592), + [sym_instance_var] = ACTIONS(4592), + [sym_class_var] = ACTIONS(4592), + [sym_self] = ACTIONS(4590), + [anon_sym_LPAREN2] = ACTIONS(4592), + [anon_sym_QMARK] = ACTIONS(4592), + [anon_sym_alias] = ACTIONS(4590), + [anon_sym_begin] = ACTIONS(4590), + [anon_sym_while] = ACTIONS(4590), + [anon_sym_until] = ACTIONS(4590), + [anon_sym_else] = ACTIONS(4590), + [anon_sym_require] = ACTIONS(4590), + [anon_sym_case] = ACTIONS(4590), + [anon_sym_select] = ACTIONS(4590), + [sym__line_break] = ACTIONS(4592), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4592), + [sym__start_of_named_tuple] = ACTIONS(4592), + [sym_unary_plus] = ACTIONS(4592), + [sym_unary_minus] = ACTIONS(4592), + [sym_unary_wrapping_plus] = ACTIONS(4592), + [sym_unary_wrapping_minus] = ACTIONS(4592), + [sym__beginless_range_operator] = ACTIONS(4592), + [sym__regex_start] = ACTIONS(4592), + [sym__regular_if_keyword] = ACTIONS(4592), + [sym__regular_unless_keyword] = ACTIONS(4592), + [sym__regular_rescue_keyword] = ACTIONS(4592), + [sym__regular_ensure_keyword] = ACTIONS(4592), + [sym__string_literal_start] = ACTIONS(4592), + [sym__string_percent_literal_start] = ACTIONS(4592), + [sym__command_percent_literal_start] = ACTIONS(4592), + [sym__string_array_percent_literal_start] = ACTIONS(4592), + [sym__symbol_array_percent_literal_start] = ACTIONS(4592), + [sym__regex_percent_literal_start] = ACTIONS(4592), + [sym_heredoc_start] = ACTIONS(4592), [sym__heredoc_body_start] = ACTIONS(7), }, [1997] = { [sym_heredoc_body] = STATE(1997), - [aux_sym_constant_repeat1] = STATE(1998), - [sym_identifier] = ACTIONS(4557), - [anon_sym_SEMI] = ACTIONS(4559), - [anon_sym_LPAREN] = ACTIONS(4557), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4557), - [sym_true] = ACTIONS(4557), - [sym_false] = ACTIONS(4557), - [aux_sym_integer_token2] = ACTIONS(4557), - [aux_sym_float_token2] = ACTIONS(4559), - [anon_sym_SQUOTE] = ACTIONS(4559), - [sym_operator_symbol] = ACTIONS(4559), - [sym_unquoted_symbol] = ACTIONS(4559), - [anon_sym_COLON_DQUOTE] = ACTIONS(4559), - [anon_sym_BQUOTE] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(4559), - [anon_sym_COMMA] = ACTIONS(4559), - [anon_sym_DASH_GT] = ACTIONS(4559), - [anon_sym_annotation] = ACTIONS(4557), - [anon_sym_end] = ACTIONS(4557), - [anon_sym_AT_LBRACK] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4557), - [anon_sym_module] = ACTIONS(4557), - [anon_sym_abstract] = ACTIONS(4557), - [anon_sym_class] = ACTIONS(4557), - [anon_sym_struct] = ACTIONS(4557), - [anon_sym_enum] = ACTIONS(4557), - [anon_sym_STAR] = ACTIONS(4559), - [anon_sym_PIPE] = ACTIONS(4559), - [anon_sym_BANG] = ACTIONS(4559), - [anon_sym_TILDE] = ACTIONS(4559), - [anon_sym_def] = ACTIONS(4557), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_protected] = ACTIONS(4557), - [anon_sym_include] = ACTIONS(4557), - [anon_sym_extend] = ACTIONS(4557), - [anon_sym_forall] = ACTIONS(4557), - [anon_sym_return] = ACTIONS(4557), - [anon_sym_next] = ACTIONS(4557), - [anon_sym_break] = ACTIONS(4557), - [anon_sym_with] = ACTIONS(4557), - [anon_sym_yield] = ACTIONS(4557), - [anon_sym_typeof] = ACTIONS(4557), - [anon_sym_sizeof] = ACTIONS(4557), - [anon_sym_instance_sizeof] = ACTIONS(4557), - [anon_sym_offsetof] = ACTIONS(4557), - [sym__constant_segment] = ACTIONS(4559), - [anon_sym_COLON_COLON] = ACTIONS(4551), - [anon_sym___LINE__] = ACTIONS(4557), - [anon_sym___END_LINE__] = ACTIONS(4557), - [anon_sym___FILE__] = ACTIONS(4557), - [anon_sym___DIR__] = ACTIONS(4557), - [sym_special_variable] = ACTIONS(4559), - [sym_identifier_method_call] = ACTIONS(4559), - [sym_instance_var] = ACTIONS(4559), - [sym_class_var] = ACTIONS(4559), - [sym_self] = ACTIONS(4557), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_QMARK] = ACTIONS(4559), - [anon_sym_alias] = ACTIONS(4557), - [anon_sym_begin] = ACTIONS(4557), - [anon_sym_while] = ACTIONS(4557), - [anon_sym_until] = ACTIONS(4557), - [anon_sym_else] = ACTIONS(4557), - [anon_sym_require] = ACTIONS(4557), - [anon_sym_case] = ACTIONS(4557), - [sym__line_break] = ACTIONS(4559), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4559), - [sym__start_of_named_tuple] = ACTIONS(4559), - [sym_unary_plus] = ACTIONS(4559), - [sym_unary_minus] = ACTIONS(4559), - [sym_unary_wrapping_plus] = ACTIONS(4559), - [sym_unary_wrapping_minus] = ACTIONS(4559), - [sym__beginless_range_operator] = ACTIONS(4559), - [sym__regex_start] = ACTIONS(4559), - [sym__regular_if_keyword] = ACTIONS(4559), - [sym__regular_unless_keyword] = ACTIONS(4559), - [sym__regular_rescue_keyword] = ACTIONS(4559), - [sym__regular_ensure_keyword] = ACTIONS(4559), - [sym__string_literal_start] = ACTIONS(4559), - [sym__string_percent_literal_start] = ACTIONS(4559), - [sym__command_percent_literal_start] = ACTIONS(4559), - [sym__string_array_percent_literal_start] = ACTIONS(4559), - [sym__symbol_array_percent_literal_start] = ACTIONS(4559), - [sym__regex_percent_literal_start] = ACTIONS(4559), - [sym_heredoc_start] = ACTIONS(4559), + [aux_sym_constant_repeat1] = STATE(1999), + [sym_identifier] = ACTIONS(4594), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4594), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4594), + [sym_true] = ACTIONS(4594), + [sym_false] = ACTIONS(4594), + [aux_sym_integer_token2] = ACTIONS(4594), + [aux_sym_float_token2] = ACTIONS(4596), + [anon_sym_SQUOTE] = ACTIONS(4596), + [sym_operator_symbol] = ACTIONS(4596), + [sym_unquoted_symbol] = ACTIONS(4596), + [anon_sym_COLON_DQUOTE] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH_GT] = ACTIONS(4596), + [anon_sym_annotation] = ACTIONS(4594), + [anon_sym_end] = ACTIONS(4594), + [anon_sym_AT_LBRACK] = ACTIONS(4596), + [anon_sym_private] = ACTIONS(4594), + [anon_sym_module] = ACTIONS(4594), + [anon_sym_abstract] = ACTIONS(4594), + [anon_sym_class] = ACTIONS(4594), + [anon_sym_struct] = ACTIONS(4594), + [anon_sym_enum] = ACTIONS(4594), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_def] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_protected] = ACTIONS(4594), + [anon_sym_include] = ACTIONS(4594), + [anon_sym_extend] = ACTIONS(4594), + [anon_sym_forall] = ACTIONS(4594), + [anon_sym_return] = ACTIONS(4594), + [anon_sym_next] = ACTIONS(4594), + [anon_sym_break] = ACTIONS(4594), + [anon_sym_with] = ACTIONS(4594), + [anon_sym_yield] = ACTIONS(4594), + [anon_sym_typeof] = ACTIONS(4594), + [anon_sym_sizeof] = ACTIONS(4594), + [anon_sym_instance_sizeof] = ACTIONS(4594), + [anon_sym_offsetof] = ACTIONS(4594), + [sym__constant_segment] = ACTIONS(4596), + [anon_sym_COLON_COLON] = ACTIONS(4588), + [anon_sym___LINE__] = ACTIONS(4594), + [anon_sym___END_LINE__] = ACTIONS(4594), + [anon_sym___FILE__] = ACTIONS(4594), + [anon_sym___DIR__] = ACTIONS(4594), + [sym_special_variable] = ACTIONS(4596), + [sym_identifier_method_call] = ACTIONS(4596), + [sym_instance_var] = ACTIONS(4596), + [sym_class_var] = ACTIONS(4596), + [sym_self] = ACTIONS(4594), + [anon_sym_LPAREN2] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_alias] = ACTIONS(4594), + [anon_sym_begin] = ACTIONS(4594), + [anon_sym_while] = ACTIONS(4594), + [anon_sym_until] = ACTIONS(4594), + [anon_sym_else] = ACTIONS(4594), + [anon_sym_require] = ACTIONS(4594), + [anon_sym_case] = ACTIONS(4594), + [anon_sym_select] = ACTIONS(4594), + [sym__line_break] = ACTIONS(4596), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4596), + [sym__start_of_named_tuple] = ACTIONS(4596), + [sym_unary_plus] = ACTIONS(4596), + [sym_unary_minus] = ACTIONS(4596), + [sym_unary_wrapping_plus] = ACTIONS(4596), + [sym_unary_wrapping_minus] = ACTIONS(4596), + [sym__beginless_range_operator] = ACTIONS(4596), + [sym__regex_start] = ACTIONS(4596), + [sym__regular_if_keyword] = ACTIONS(4596), + [sym__regular_unless_keyword] = ACTIONS(4596), + [sym__regular_rescue_keyword] = ACTIONS(4596), + [sym__regular_ensure_keyword] = ACTIONS(4596), + [sym__string_literal_start] = ACTIONS(4596), + [sym__string_percent_literal_start] = ACTIONS(4596), + [sym__command_percent_literal_start] = ACTIONS(4596), + [sym__string_array_percent_literal_start] = ACTIONS(4596), + [sym__symbol_array_percent_literal_start] = ACTIONS(4596), + [sym__regex_percent_literal_start] = ACTIONS(4596), + [sym_heredoc_start] = ACTIONS(4596), [sym__heredoc_body_start] = ACTIONS(7), }, [1998] = { [sym_heredoc_body] = STATE(1998), - [aux_sym_constant_repeat1] = STATE(1998), - [sym_identifier] = ACTIONS(4561), - [anon_sym_SEMI] = ACTIONS(4563), - [anon_sym_LPAREN] = ACTIONS(4561), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4561), - [sym_true] = ACTIONS(4561), - [sym_false] = ACTIONS(4561), - [aux_sym_integer_token2] = ACTIONS(4561), - [aux_sym_float_token2] = ACTIONS(4563), - [anon_sym_SQUOTE] = ACTIONS(4563), - [sym_operator_symbol] = ACTIONS(4563), - [sym_unquoted_symbol] = ACTIONS(4563), - [anon_sym_COLON_DQUOTE] = ACTIONS(4563), - [anon_sym_BQUOTE] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(4563), - [anon_sym_COMMA] = ACTIONS(4563), - [anon_sym_DASH_GT] = ACTIONS(4563), - [anon_sym_annotation] = ACTIONS(4561), - [anon_sym_end] = ACTIONS(4561), - [anon_sym_AT_LBRACK] = ACTIONS(4563), - [anon_sym_private] = ACTIONS(4561), - [anon_sym_module] = ACTIONS(4561), - [anon_sym_abstract] = ACTIONS(4561), - [anon_sym_class] = ACTIONS(4561), - [anon_sym_struct] = ACTIONS(4561), - [anon_sym_enum] = ACTIONS(4561), - [anon_sym_STAR] = ACTIONS(4563), - [anon_sym_PIPE] = ACTIONS(4563), - [anon_sym_BANG] = ACTIONS(4563), - [anon_sym_TILDE] = ACTIONS(4563), - [anon_sym_def] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4563), - [anon_sym_protected] = ACTIONS(4561), - [anon_sym_include] = ACTIONS(4561), - [anon_sym_extend] = ACTIONS(4561), - [anon_sym_forall] = ACTIONS(4561), - [anon_sym_return] = ACTIONS(4561), - [anon_sym_next] = ACTIONS(4561), - [anon_sym_break] = ACTIONS(4561), - [anon_sym_with] = ACTIONS(4561), - [anon_sym_yield] = ACTIONS(4561), - [anon_sym_typeof] = ACTIONS(4561), - [anon_sym_sizeof] = ACTIONS(4561), - [anon_sym_instance_sizeof] = ACTIONS(4561), - [anon_sym_offsetof] = ACTIONS(4561), - [sym__constant_segment] = ACTIONS(4563), - [anon_sym_COLON_COLON] = ACTIONS(4565), - [anon_sym___LINE__] = ACTIONS(4561), - [anon_sym___END_LINE__] = ACTIONS(4561), - [anon_sym___FILE__] = ACTIONS(4561), - [anon_sym___DIR__] = ACTIONS(4561), - [sym_special_variable] = ACTIONS(4563), - [sym_identifier_method_call] = ACTIONS(4563), - [sym_instance_var] = ACTIONS(4563), - [sym_class_var] = ACTIONS(4563), - [sym_self] = ACTIONS(4561), - [anon_sym_LPAREN2] = ACTIONS(4563), - [anon_sym_QMARK] = ACTIONS(4563), - [anon_sym_alias] = ACTIONS(4561), - [anon_sym_begin] = ACTIONS(4561), - [anon_sym_while] = ACTIONS(4561), - [anon_sym_until] = ACTIONS(4561), - [anon_sym_else] = ACTIONS(4561), - [anon_sym_require] = ACTIONS(4561), - [anon_sym_case] = ACTIONS(4561), - [sym__line_break] = ACTIONS(4563), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4563), - [sym__start_of_named_tuple] = ACTIONS(4563), - [sym_unary_plus] = ACTIONS(4563), - [sym_unary_minus] = ACTIONS(4563), - [sym_unary_wrapping_plus] = ACTIONS(4563), - [sym_unary_wrapping_minus] = ACTIONS(4563), - [sym__beginless_range_operator] = ACTIONS(4563), - [sym__regex_start] = ACTIONS(4563), - [sym__regular_if_keyword] = ACTIONS(4563), - [sym__regular_unless_keyword] = ACTIONS(4563), - [sym__regular_rescue_keyword] = ACTIONS(4563), - [sym__regular_ensure_keyword] = ACTIONS(4563), - [sym__string_literal_start] = ACTIONS(4563), - [sym__string_percent_literal_start] = ACTIONS(4563), - [sym__command_percent_literal_start] = ACTIONS(4563), - [sym__string_array_percent_literal_start] = ACTIONS(4563), - [sym__symbol_array_percent_literal_start] = ACTIONS(4563), - [sym__regex_percent_literal_start] = ACTIONS(4563), - [sym_heredoc_start] = ACTIONS(4563), + [aux_sym_constant_repeat1] = STATE(1996), + [sym_identifier] = ACTIONS(4594), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4594), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4594), + [sym_true] = ACTIONS(4594), + [sym_false] = ACTIONS(4594), + [aux_sym_integer_token2] = ACTIONS(4594), + [aux_sym_float_token2] = ACTIONS(4596), + [anon_sym_SQUOTE] = ACTIONS(4596), + [sym_operator_symbol] = ACTIONS(4596), + [sym_unquoted_symbol] = ACTIONS(4596), + [anon_sym_COLON_DQUOTE] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH_GT] = ACTIONS(4596), + [anon_sym_annotation] = ACTIONS(4594), + [anon_sym_end] = ACTIONS(4594), + [anon_sym_AT_LBRACK] = ACTIONS(4596), + [anon_sym_private] = ACTIONS(4594), + [anon_sym_module] = ACTIONS(4594), + [anon_sym_abstract] = ACTIONS(4594), + [anon_sym_class] = ACTIONS(4594), + [anon_sym_struct] = ACTIONS(4594), + [anon_sym_enum] = ACTIONS(4594), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_def] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_protected] = ACTIONS(4594), + [anon_sym_include] = ACTIONS(4594), + [anon_sym_extend] = ACTIONS(4594), + [anon_sym_forall] = ACTIONS(4594), + [anon_sym_return] = ACTIONS(4594), + [anon_sym_next] = ACTIONS(4594), + [anon_sym_break] = ACTIONS(4594), + [anon_sym_with] = ACTIONS(4594), + [anon_sym_yield] = ACTIONS(4594), + [anon_sym_typeof] = ACTIONS(4594), + [anon_sym_sizeof] = ACTIONS(4594), + [anon_sym_instance_sizeof] = ACTIONS(4594), + [anon_sym_offsetof] = ACTIONS(4594), + [sym__constant_segment] = ACTIONS(4596), + [anon_sym_COLON_COLON] = ACTIONS(4588), + [anon_sym___LINE__] = ACTIONS(4594), + [anon_sym___END_LINE__] = ACTIONS(4594), + [anon_sym___FILE__] = ACTIONS(4594), + [anon_sym___DIR__] = ACTIONS(4594), + [sym_special_variable] = ACTIONS(4596), + [sym_identifier_method_call] = ACTIONS(4596), + [sym_instance_var] = ACTIONS(4596), + [sym_class_var] = ACTIONS(4596), + [sym_self] = ACTIONS(4594), + [anon_sym_LPAREN2] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_alias] = ACTIONS(4594), + [anon_sym_begin] = ACTIONS(4594), + [anon_sym_while] = ACTIONS(4594), + [anon_sym_until] = ACTIONS(4594), + [anon_sym_else] = ACTIONS(4594), + [anon_sym_require] = ACTIONS(4594), + [anon_sym_case] = ACTIONS(4594), + [anon_sym_select] = ACTIONS(4594), + [sym__line_break] = ACTIONS(4596), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4596), + [sym__start_of_named_tuple] = ACTIONS(4596), + [sym_unary_plus] = ACTIONS(4596), + [sym_unary_minus] = ACTIONS(4596), + [sym_unary_wrapping_plus] = ACTIONS(4596), + [sym_unary_wrapping_minus] = ACTIONS(4596), + [sym__beginless_range_operator] = ACTIONS(4596), + [sym__regex_start] = ACTIONS(4596), + [sym__regular_if_keyword] = ACTIONS(4596), + [sym__regular_unless_keyword] = ACTIONS(4596), + [sym__regular_rescue_keyword] = ACTIONS(4596), + [sym__regular_ensure_keyword] = ACTIONS(4596), + [sym__string_literal_start] = ACTIONS(4596), + [sym__string_percent_literal_start] = ACTIONS(4596), + [sym__command_percent_literal_start] = ACTIONS(4596), + [sym__string_array_percent_literal_start] = ACTIONS(4596), + [sym__symbol_array_percent_literal_start] = ACTIONS(4596), + [sym__regex_percent_literal_start] = ACTIONS(4596), + [sym_heredoc_start] = ACTIONS(4596), [sym__heredoc_body_start] = ACTIONS(7), }, [1999] = { [sym_heredoc_body] = STATE(1999), - [aux_sym_constant_repeat1] = STATE(1998), - [sym_identifier] = ACTIONS(4553), - [anon_sym_SEMI] = ACTIONS(4555), - [anon_sym_LPAREN] = ACTIONS(4553), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4553), - [sym_true] = ACTIONS(4553), - [sym_false] = ACTIONS(4553), - [aux_sym_integer_token2] = ACTIONS(4553), - [aux_sym_float_token2] = ACTIONS(4555), - [anon_sym_SQUOTE] = ACTIONS(4555), - [sym_operator_symbol] = ACTIONS(4555), - [sym_unquoted_symbol] = ACTIONS(4555), - [anon_sym_COLON_DQUOTE] = ACTIONS(4555), - [anon_sym_BQUOTE] = ACTIONS(4555), - [anon_sym_LBRACK] = ACTIONS(4555), - [anon_sym_COMMA] = ACTIONS(4555), - [anon_sym_DASH_GT] = ACTIONS(4555), - [anon_sym_annotation] = ACTIONS(4553), - [anon_sym_end] = ACTIONS(4553), - [anon_sym_AT_LBRACK] = ACTIONS(4555), - [anon_sym_private] = ACTIONS(4553), - [anon_sym_module] = ACTIONS(4553), - [anon_sym_abstract] = ACTIONS(4553), - [anon_sym_class] = ACTIONS(4553), - [anon_sym_struct] = ACTIONS(4553), - [anon_sym_enum] = ACTIONS(4553), - [anon_sym_STAR] = ACTIONS(4555), - [anon_sym_PIPE] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(4555), - [anon_sym_TILDE] = ACTIONS(4555), - [anon_sym_def] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_protected] = ACTIONS(4553), - [anon_sym_include] = ACTIONS(4553), - [anon_sym_extend] = ACTIONS(4553), - [anon_sym_forall] = ACTIONS(4553), - [anon_sym_return] = ACTIONS(4553), - [anon_sym_next] = ACTIONS(4553), - [anon_sym_break] = ACTIONS(4553), - [anon_sym_with] = ACTIONS(4553), - [anon_sym_yield] = ACTIONS(4553), - [anon_sym_typeof] = ACTIONS(4553), - [anon_sym_sizeof] = ACTIONS(4553), - [anon_sym_instance_sizeof] = ACTIONS(4553), - [anon_sym_offsetof] = ACTIONS(4553), - [sym__constant_segment] = ACTIONS(4555), - [anon_sym_COLON_COLON] = ACTIONS(4551), - [anon_sym___LINE__] = ACTIONS(4553), - [anon_sym___END_LINE__] = ACTIONS(4553), - [anon_sym___FILE__] = ACTIONS(4553), - [anon_sym___DIR__] = ACTIONS(4553), - [sym_special_variable] = ACTIONS(4555), - [sym_identifier_method_call] = ACTIONS(4555), - [sym_instance_var] = ACTIONS(4555), - [sym_class_var] = ACTIONS(4555), - [sym_self] = ACTIONS(4553), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_QMARK] = ACTIONS(4555), - [anon_sym_alias] = ACTIONS(4553), - [anon_sym_begin] = ACTIONS(4553), - [anon_sym_while] = ACTIONS(4553), - [anon_sym_until] = ACTIONS(4553), - [anon_sym_else] = ACTIONS(4553), - [anon_sym_require] = ACTIONS(4553), - [anon_sym_case] = ACTIONS(4553), - [sym__line_break] = ACTIONS(4555), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4555), - [sym__start_of_named_tuple] = ACTIONS(4555), - [sym_unary_plus] = ACTIONS(4555), - [sym_unary_minus] = ACTIONS(4555), - [sym_unary_wrapping_plus] = ACTIONS(4555), - [sym_unary_wrapping_minus] = ACTIONS(4555), - [sym__beginless_range_operator] = ACTIONS(4555), - [sym__regex_start] = ACTIONS(4555), - [sym__regular_if_keyword] = ACTIONS(4555), - [sym__regular_unless_keyword] = ACTIONS(4555), - [sym__regular_rescue_keyword] = ACTIONS(4555), - [sym__regular_ensure_keyword] = ACTIONS(4555), - [sym__string_literal_start] = ACTIONS(4555), - [sym__string_percent_literal_start] = ACTIONS(4555), - [sym__command_percent_literal_start] = ACTIONS(4555), - [sym__string_array_percent_literal_start] = ACTIONS(4555), - [sym__symbol_array_percent_literal_start] = ACTIONS(4555), - [sym__regex_percent_literal_start] = ACTIONS(4555), - [sym_heredoc_start] = ACTIONS(4555), + [aux_sym_constant_repeat1] = STATE(1999), + [sym_identifier] = ACTIONS(4598), + [anon_sym_SEMI] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(4598), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4598), + [sym_true] = ACTIONS(4598), + [sym_false] = ACTIONS(4598), + [aux_sym_integer_token2] = ACTIONS(4598), + [aux_sym_float_token2] = ACTIONS(4600), + [anon_sym_SQUOTE] = ACTIONS(4600), + [sym_operator_symbol] = ACTIONS(4600), + [sym_unquoted_symbol] = ACTIONS(4600), + [anon_sym_COLON_DQUOTE] = ACTIONS(4600), + [anon_sym_BQUOTE] = ACTIONS(4600), + [anon_sym_LBRACK] = ACTIONS(4600), + [anon_sym_COMMA] = ACTIONS(4600), + [anon_sym_DASH_GT] = ACTIONS(4600), + [anon_sym_annotation] = ACTIONS(4598), + [anon_sym_end] = ACTIONS(4598), + [anon_sym_AT_LBRACK] = ACTIONS(4600), + [anon_sym_private] = ACTIONS(4598), + [anon_sym_module] = ACTIONS(4598), + [anon_sym_abstract] = ACTIONS(4598), + [anon_sym_class] = ACTIONS(4598), + [anon_sym_struct] = ACTIONS(4598), + [anon_sym_enum] = ACTIONS(4598), + [anon_sym_STAR] = ACTIONS(4600), + [anon_sym_PIPE] = ACTIONS(4600), + [anon_sym_BANG] = ACTIONS(4600), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_def] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4600), + [anon_sym_protected] = ACTIONS(4598), + [anon_sym_include] = ACTIONS(4598), + [anon_sym_extend] = ACTIONS(4598), + [anon_sym_forall] = ACTIONS(4598), + [anon_sym_return] = ACTIONS(4598), + [anon_sym_next] = ACTIONS(4598), + [anon_sym_break] = ACTIONS(4598), + [anon_sym_with] = ACTIONS(4598), + [anon_sym_yield] = ACTIONS(4598), + [anon_sym_typeof] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(4598), + [anon_sym_instance_sizeof] = ACTIONS(4598), + [anon_sym_offsetof] = ACTIONS(4598), + [sym__constant_segment] = ACTIONS(4600), + [anon_sym_COLON_COLON] = ACTIONS(4602), + [anon_sym___LINE__] = ACTIONS(4598), + [anon_sym___END_LINE__] = ACTIONS(4598), + [anon_sym___FILE__] = ACTIONS(4598), + [anon_sym___DIR__] = ACTIONS(4598), + [sym_special_variable] = ACTIONS(4600), + [sym_identifier_method_call] = ACTIONS(4600), + [sym_instance_var] = ACTIONS(4600), + [sym_class_var] = ACTIONS(4600), + [sym_self] = ACTIONS(4598), + [anon_sym_LPAREN2] = ACTIONS(4600), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_alias] = ACTIONS(4598), + [anon_sym_begin] = ACTIONS(4598), + [anon_sym_while] = ACTIONS(4598), + [anon_sym_until] = ACTIONS(4598), + [anon_sym_else] = ACTIONS(4598), + [anon_sym_require] = ACTIONS(4598), + [anon_sym_case] = ACTIONS(4598), + [anon_sym_select] = ACTIONS(4598), + [sym__line_break] = ACTIONS(4600), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4600), + [sym__start_of_named_tuple] = ACTIONS(4600), + [sym_unary_plus] = ACTIONS(4600), + [sym_unary_minus] = ACTIONS(4600), + [sym_unary_wrapping_plus] = ACTIONS(4600), + [sym_unary_wrapping_minus] = ACTIONS(4600), + [sym__beginless_range_operator] = ACTIONS(4600), + [sym__regex_start] = ACTIONS(4600), + [sym__regular_if_keyword] = ACTIONS(4600), + [sym__regular_unless_keyword] = ACTIONS(4600), + [sym__regular_rescue_keyword] = ACTIONS(4600), + [sym__regular_ensure_keyword] = ACTIONS(4600), + [sym__string_literal_start] = ACTIONS(4600), + [sym__string_percent_literal_start] = ACTIONS(4600), + [sym__command_percent_literal_start] = ACTIONS(4600), + [sym__string_array_percent_literal_start] = ACTIONS(4600), + [sym__symbol_array_percent_literal_start] = ACTIONS(4600), + [sym__regex_percent_literal_start] = ACTIONS(4600), + [sym_heredoc_start] = ACTIONS(4600), [sym__heredoc_body_start] = ACTIONS(7), }, [2000] = { [sym_heredoc_body] = STATE(2000), - [aux_sym_union_type_repeat1] = STATE(2001), - [sym_identifier] = ACTIONS(4568), - [anon_sym_SEMI] = ACTIONS(4570), - [anon_sym_LPAREN] = ACTIONS(4570), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4568), - [sym_true] = ACTIONS(4568), - [sym_false] = ACTIONS(4568), - [aux_sym_integer_token2] = ACTIONS(4568), - [aux_sym_float_token2] = ACTIONS(4570), - [anon_sym_SQUOTE] = ACTIONS(4570), - [sym_operator_symbol] = ACTIONS(4570), - [sym_unquoted_symbol] = ACTIONS(4570), - [anon_sym_COLON_DQUOTE] = ACTIONS(4570), - [anon_sym_BQUOTE] = ACTIONS(4570), - [anon_sym_LBRACK] = ACTIONS(4572), - [anon_sym_COMMA] = ACTIONS(4570), - [anon_sym_DASH_GT] = ACTIONS(4570), - [anon_sym_annotation] = ACTIONS(4568), - [anon_sym_end] = ACTIONS(4568), - [anon_sym_AT_LBRACK] = ACTIONS(4570), - [anon_sym_private] = ACTIONS(4568), - [anon_sym_module] = ACTIONS(4568), - [anon_sym_abstract] = ACTIONS(4568), - [anon_sym_class] = ACTIONS(4568), - [anon_sym_struct] = ACTIONS(4568), - [anon_sym_enum] = ACTIONS(4568), - [anon_sym_STAR] = ACTIONS(4574), - [anon_sym_PIPE] = ACTIONS(4576), - [anon_sym_BANG] = ACTIONS(4570), - [anon_sym_TILDE] = ACTIONS(4570), - [anon_sym_def] = ACTIONS(4568), - [anon_sym_DOT] = ACTIONS(4578), - [anon_sym_protected] = ACTIONS(4568), - [anon_sym_include] = ACTIONS(4568), - [anon_sym_extend] = ACTIONS(4568), - [anon_sym_forall] = ACTIONS(4568), - [anon_sym_return] = ACTIONS(4568), - [anon_sym_next] = ACTIONS(4568), - [anon_sym_break] = ACTIONS(4568), - [anon_sym_with] = ACTIONS(4568), - [anon_sym_yield] = ACTIONS(4568), - [anon_sym_typeof] = ACTIONS(4568), - [anon_sym_sizeof] = ACTIONS(4568), - [anon_sym_instance_sizeof] = ACTIONS(4568), - [anon_sym_offsetof] = ACTIONS(4568), - [sym__constant_segment] = ACTIONS(4570), - [anon_sym_COLON_COLON] = ACTIONS(4570), - [anon_sym___LINE__] = ACTIONS(4568), - [anon_sym___END_LINE__] = ACTIONS(4568), - [anon_sym___FILE__] = ACTIONS(4568), - [anon_sym___DIR__] = ACTIONS(4568), - [sym_special_variable] = ACTIONS(4570), - [sym_identifier_method_call] = ACTIONS(4570), - [sym_instance_var] = ACTIONS(4570), - [sym_class_var] = ACTIONS(4570), - [sym_self] = ACTIONS(4568), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_alias] = ACTIONS(4568), - [anon_sym_begin] = ACTIONS(4568), - [anon_sym_while] = ACTIONS(4568), - [anon_sym_until] = ACTIONS(4568), - [anon_sym_else] = ACTIONS(4568), - [anon_sym_require] = ACTIONS(4568), - [anon_sym_case] = ACTIONS(4568), - [sym__line_break] = ACTIONS(4570), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4570), - [sym__start_of_named_tuple] = ACTIONS(4570), - [sym_unary_plus] = ACTIONS(4570), - [sym_unary_minus] = ACTIONS(4570), - [sym_unary_wrapping_plus] = ACTIONS(4570), - [sym_unary_wrapping_minus] = ACTIONS(4570), - [sym__beginless_range_operator] = ACTIONS(4570), - [sym__regex_start] = ACTIONS(4570), - [sym__regular_if_keyword] = ACTIONS(4570), - [sym__regular_unless_keyword] = ACTIONS(4570), - [sym__regular_rescue_keyword] = ACTIONS(4570), - [sym__regular_ensure_keyword] = ACTIONS(4570), - [sym__string_literal_start] = ACTIONS(4570), - [sym__string_percent_literal_start] = ACTIONS(4570), - [sym__command_percent_literal_start] = ACTIONS(4570), - [sym__string_array_percent_literal_start] = ACTIONS(4570), - [sym__symbol_array_percent_literal_start] = ACTIONS(4570), - [sym__regex_percent_literal_start] = ACTIONS(4570), - [sym_heredoc_start] = ACTIONS(4570), + [aux_sym_union_type_repeat1] = STATE(2004), + [sym_identifier] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_LPAREN] = ACTIONS(4607), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4605), + [sym_true] = ACTIONS(4605), + [sym_false] = ACTIONS(4605), + [aux_sym_integer_token2] = ACTIONS(4605), + [aux_sym_float_token2] = ACTIONS(4607), + [anon_sym_SQUOTE] = ACTIONS(4607), + [sym_operator_symbol] = ACTIONS(4607), + [sym_unquoted_symbol] = ACTIONS(4607), + [anon_sym_COLON_DQUOTE] = ACTIONS(4607), + [anon_sym_BQUOTE] = ACTIONS(4607), + [anon_sym_LBRACK] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4607), + [anon_sym_DASH_GT] = ACTIONS(4607), + [anon_sym_annotation] = ACTIONS(4605), + [anon_sym_end] = ACTIONS(4605), + [anon_sym_AT_LBRACK] = ACTIONS(4607), + [anon_sym_private] = ACTIONS(4605), + [anon_sym_module] = ACTIONS(4605), + [anon_sym_abstract] = ACTIONS(4605), + [anon_sym_class] = ACTIONS(4605), + [anon_sym_struct] = ACTIONS(4605), + [anon_sym_enum] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4611), + [anon_sym_PIPE] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4607), + [anon_sym_TILDE] = ACTIONS(4607), + [anon_sym_def] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_protected] = ACTIONS(4605), + [anon_sym_include] = ACTIONS(4605), + [anon_sym_extend] = ACTIONS(4605), + [anon_sym_forall] = ACTIONS(4605), + [anon_sym_return] = ACTIONS(4605), + [anon_sym_next] = ACTIONS(4605), + [anon_sym_break] = ACTIONS(4605), + [anon_sym_with] = ACTIONS(4605), + [anon_sym_yield] = ACTIONS(4605), + [anon_sym_typeof] = ACTIONS(4605), + [anon_sym_sizeof] = ACTIONS(4605), + [anon_sym_instance_sizeof] = ACTIONS(4605), + [anon_sym_offsetof] = ACTIONS(4605), + [sym__constant_segment] = ACTIONS(4607), + [anon_sym_COLON_COLON] = ACTIONS(4607), + [anon_sym___LINE__] = ACTIONS(4605), + [anon_sym___END_LINE__] = ACTIONS(4605), + [anon_sym___FILE__] = ACTIONS(4605), + [anon_sym___DIR__] = ACTIONS(4605), + [sym_special_variable] = ACTIONS(4607), + [sym_identifier_method_call] = ACTIONS(4607), + [sym_instance_var] = ACTIONS(4607), + [sym_class_var] = ACTIONS(4607), + [sym_self] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4617), + [anon_sym_alias] = ACTIONS(4605), + [anon_sym_begin] = ACTIONS(4605), + [anon_sym_while] = ACTIONS(4605), + [anon_sym_until] = ACTIONS(4605), + [anon_sym_else] = ACTIONS(4605), + [anon_sym_require] = ACTIONS(4605), + [anon_sym_case] = ACTIONS(4605), + [anon_sym_select] = ACTIONS(4605), + [sym__line_break] = ACTIONS(4607), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4607), + [sym__start_of_named_tuple] = ACTIONS(4607), + [sym_unary_plus] = ACTIONS(4607), + [sym_unary_minus] = ACTIONS(4607), + [sym_unary_wrapping_plus] = ACTIONS(4607), + [sym_unary_wrapping_minus] = ACTIONS(4607), + [sym__beginless_range_operator] = ACTIONS(4607), + [sym__regex_start] = ACTIONS(4607), + [sym__regular_if_keyword] = ACTIONS(4607), + [sym__regular_unless_keyword] = ACTIONS(4607), + [sym__regular_rescue_keyword] = ACTIONS(4607), + [sym__regular_ensure_keyword] = ACTIONS(4607), + [sym__string_literal_start] = ACTIONS(4607), + [sym__string_percent_literal_start] = ACTIONS(4607), + [sym__command_percent_literal_start] = ACTIONS(4607), + [sym__string_array_percent_literal_start] = ACTIONS(4607), + [sym__symbol_array_percent_literal_start] = ACTIONS(4607), + [sym__regex_percent_literal_start] = ACTIONS(4607), + [sym_heredoc_start] = ACTIONS(4607), [sym__heredoc_body_start] = ACTIONS(7), }, [2001] = { [sym_heredoc_body] = STATE(2001), - [aux_sym_union_type_repeat1] = STATE(2002), - [sym_identifier] = ACTIONS(4582), - [anon_sym_SEMI] = ACTIONS(4584), - [anon_sym_LPAREN] = ACTIONS(4584), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4582), - [sym_true] = ACTIONS(4582), - [sym_false] = ACTIONS(4582), - [aux_sym_integer_token2] = ACTIONS(4582), - [aux_sym_float_token2] = ACTIONS(4584), - [anon_sym_SQUOTE] = ACTIONS(4584), - [sym_operator_symbol] = ACTIONS(4584), - [sym_unquoted_symbol] = ACTIONS(4584), - [anon_sym_COLON_DQUOTE] = ACTIONS(4584), - [anon_sym_BQUOTE] = ACTIONS(4584), - [anon_sym_LBRACK] = ACTIONS(4584), - [anon_sym_COMMA] = ACTIONS(4584), - [anon_sym_DASH_GT] = ACTIONS(4584), - [anon_sym_annotation] = ACTIONS(4582), - [anon_sym_end] = ACTIONS(4582), - [anon_sym_AT_LBRACK] = ACTIONS(4584), - [anon_sym_private] = ACTIONS(4582), - [anon_sym_module] = ACTIONS(4582), - [anon_sym_abstract] = ACTIONS(4582), - [anon_sym_class] = ACTIONS(4582), - [anon_sym_struct] = ACTIONS(4582), - [anon_sym_enum] = ACTIONS(4582), - [anon_sym_STAR] = ACTIONS(4584), - [anon_sym_PIPE] = ACTIONS(4576), - [anon_sym_BANG] = ACTIONS(4584), - [anon_sym_TILDE] = ACTIONS(4584), - [anon_sym_def] = ACTIONS(4582), - [anon_sym_DOT] = ACTIONS(4584), - [anon_sym_protected] = ACTIONS(4582), - [anon_sym_include] = ACTIONS(4582), - [anon_sym_extend] = ACTIONS(4582), - [anon_sym_forall] = ACTIONS(4582), - [anon_sym_return] = ACTIONS(4582), - [anon_sym_next] = ACTIONS(4582), - [anon_sym_break] = ACTIONS(4582), - [anon_sym_with] = ACTIONS(4582), - [anon_sym_yield] = ACTIONS(4582), - [anon_sym_typeof] = ACTIONS(4582), - [anon_sym_sizeof] = ACTIONS(4582), - [anon_sym_instance_sizeof] = ACTIONS(4582), - [anon_sym_offsetof] = ACTIONS(4582), - [sym__constant_segment] = ACTIONS(4584), - [anon_sym_COLON_COLON] = ACTIONS(4584), - [anon_sym___LINE__] = ACTIONS(4582), - [anon_sym___END_LINE__] = ACTIONS(4582), - [anon_sym___FILE__] = ACTIONS(4582), - [anon_sym___DIR__] = ACTIONS(4582), - [sym_special_variable] = ACTIONS(4584), - [sym_identifier_method_call] = ACTIONS(4584), - [sym_instance_var] = ACTIONS(4584), - [sym_class_var] = ACTIONS(4584), - [sym_self] = ACTIONS(4582), - [anon_sym_QMARK] = ACTIONS(4584), - [anon_sym_alias] = ACTIONS(4582), - [anon_sym_begin] = ACTIONS(4582), - [anon_sym_while] = ACTIONS(4582), - [anon_sym_until] = ACTIONS(4582), - [anon_sym_else] = ACTIONS(4582), - [anon_sym_require] = ACTIONS(4582), - [anon_sym_case] = ACTIONS(4582), - [sym__line_break] = ACTIONS(4584), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4584), - [sym__start_of_named_tuple] = ACTIONS(4584), - [sym_unary_plus] = ACTIONS(4584), - [sym_unary_minus] = ACTIONS(4584), - [sym_unary_wrapping_plus] = ACTIONS(4584), - [sym_unary_wrapping_minus] = ACTIONS(4584), - [sym__beginless_range_operator] = ACTIONS(4584), - [sym__regex_start] = ACTIONS(4584), - [sym__regular_if_keyword] = ACTIONS(4584), - [sym__regular_unless_keyword] = ACTIONS(4584), - [sym__regular_rescue_keyword] = ACTIONS(4584), - [sym__regular_ensure_keyword] = ACTIONS(4584), - [sym__string_literal_start] = ACTIONS(4584), - [sym__string_percent_literal_start] = ACTIONS(4584), - [sym__command_percent_literal_start] = ACTIONS(4584), - [sym__string_array_percent_literal_start] = ACTIONS(4584), - [sym__symbol_array_percent_literal_start] = ACTIONS(4584), - [sym__regex_percent_literal_start] = ACTIONS(4584), - [sym_heredoc_start] = ACTIONS(4584), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2002] = { - [sym_heredoc_body] = STATE(2002), - [aux_sym_union_type_repeat1] = STATE(2002), - [sym_identifier] = ACTIONS(4586), - [anon_sym_SEMI] = ACTIONS(4588), - [anon_sym_LPAREN] = ACTIONS(4588), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4586), - [sym_true] = ACTIONS(4586), - [sym_false] = ACTIONS(4586), - [aux_sym_integer_token2] = ACTIONS(4586), - [aux_sym_float_token2] = ACTIONS(4588), - [anon_sym_SQUOTE] = ACTIONS(4588), - [sym_operator_symbol] = ACTIONS(4588), - [sym_unquoted_symbol] = ACTIONS(4588), - [anon_sym_COLON_DQUOTE] = ACTIONS(4588), - [anon_sym_BQUOTE] = ACTIONS(4588), - [anon_sym_LBRACK] = ACTIONS(4588), - [anon_sym_COMMA] = ACTIONS(4588), - [anon_sym_DASH_GT] = ACTIONS(4588), - [anon_sym_annotation] = ACTIONS(4586), - [anon_sym_end] = ACTIONS(4586), - [anon_sym_AT_LBRACK] = ACTIONS(4588), - [anon_sym_private] = ACTIONS(4586), - [anon_sym_module] = ACTIONS(4586), - [anon_sym_abstract] = ACTIONS(4586), - [anon_sym_class] = ACTIONS(4586), - [anon_sym_struct] = ACTIONS(4586), - [anon_sym_enum] = ACTIONS(4586), - [anon_sym_STAR] = ACTIONS(4588), - [anon_sym_PIPE] = ACTIONS(4590), - [anon_sym_BANG] = ACTIONS(4588), - [anon_sym_TILDE] = ACTIONS(4588), - [anon_sym_def] = ACTIONS(4586), - [anon_sym_DOT] = ACTIONS(4588), - [anon_sym_protected] = ACTIONS(4586), - [anon_sym_include] = ACTIONS(4586), - [anon_sym_extend] = ACTIONS(4586), - [anon_sym_forall] = ACTIONS(4586), - [anon_sym_return] = ACTIONS(4586), - [anon_sym_next] = ACTIONS(4586), - [anon_sym_break] = ACTIONS(4586), - [anon_sym_with] = ACTIONS(4586), - [anon_sym_yield] = ACTIONS(4586), - [anon_sym_typeof] = ACTIONS(4586), - [anon_sym_sizeof] = ACTIONS(4586), - [anon_sym_instance_sizeof] = ACTIONS(4586), - [anon_sym_offsetof] = ACTIONS(4586), - [sym__constant_segment] = ACTIONS(4588), - [anon_sym_COLON_COLON] = ACTIONS(4588), - [anon_sym___LINE__] = ACTIONS(4586), - [anon_sym___END_LINE__] = ACTIONS(4586), - [anon_sym___FILE__] = ACTIONS(4586), - [anon_sym___DIR__] = ACTIONS(4586), - [sym_special_variable] = ACTIONS(4588), - [sym_identifier_method_call] = ACTIONS(4588), - [sym_instance_var] = ACTIONS(4588), - [sym_class_var] = ACTIONS(4588), - [sym_self] = ACTIONS(4586), - [anon_sym_QMARK] = ACTIONS(4588), - [anon_sym_alias] = ACTIONS(4586), - [anon_sym_begin] = ACTIONS(4586), - [anon_sym_while] = ACTIONS(4586), - [anon_sym_until] = ACTIONS(4586), - [anon_sym_else] = ACTIONS(4586), - [anon_sym_require] = ACTIONS(4586), - [anon_sym_case] = ACTIONS(4586), - [sym__line_break] = ACTIONS(4588), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4588), - [sym__start_of_named_tuple] = ACTIONS(4588), - [sym_unary_plus] = ACTIONS(4588), - [sym_unary_minus] = ACTIONS(4588), - [sym_unary_wrapping_plus] = ACTIONS(4588), - [sym_unary_wrapping_minus] = ACTIONS(4588), - [sym__beginless_range_operator] = ACTIONS(4588), - [sym__regex_start] = ACTIONS(4588), - [sym__regular_if_keyword] = ACTIONS(4588), - [sym__regular_unless_keyword] = ACTIONS(4588), - [sym__regular_rescue_keyword] = ACTIONS(4588), - [sym__regular_ensure_keyword] = ACTIONS(4588), - [sym__string_literal_start] = ACTIONS(4588), - [sym__string_percent_literal_start] = ACTIONS(4588), - [sym__command_percent_literal_start] = ACTIONS(4588), - [sym__string_array_percent_literal_start] = ACTIONS(4588), - [sym__symbol_array_percent_literal_start] = ACTIONS(4588), - [sym__regex_percent_literal_start] = ACTIONS(4588), - [sym_heredoc_start] = ACTIONS(4588), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2003] = { - [sym_heredoc_body] = STATE(2003), - [aux_sym_union_type_repeat1] = STATE(2001), - [sym_identifier] = ACTIONS(4586), - [anon_sym_SEMI] = ACTIONS(4588), - [anon_sym_LPAREN] = ACTIONS(4588), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4586), - [sym_true] = ACTIONS(4586), - [sym_false] = ACTIONS(4586), - [aux_sym_integer_token2] = ACTIONS(4586), - [aux_sym_float_token2] = ACTIONS(4588), - [anon_sym_SQUOTE] = ACTIONS(4588), - [sym_operator_symbol] = ACTIONS(4588), - [sym_unquoted_symbol] = ACTIONS(4588), - [anon_sym_COLON_DQUOTE] = ACTIONS(4588), - [anon_sym_BQUOTE] = ACTIONS(4588), - [anon_sym_LBRACK] = ACTIONS(4588), - [anon_sym_COMMA] = ACTIONS(4588), - [anon_sym_DASH_GT] = ACTIONS(4588), - [anon_sym_annotation] = ACTIONS(4586), - [anon_sym_end] = ACTIONS(4586), - [anon_sym_AT_LBRACK] = ACTIONS(4588), - [anon_sym_private] = ACTIONS(4586), - [anon_sym_module] = ACTIONS(4586), - [anon_sym_abstract] = ACTIONS(4586), - [anon_sym_class] = ACTIONS(4586), - [anon_sym_struct] = ACTIONS(4586), - [anon_sym_enum] = ACTIONS(4586), - [anon_sym_STAR] = ACTIONS(4588), - [anon_sym_PIPE] = ACTIONS(4588), - [anon_sym_BANG] = ACTIONS(4588), - [anon_sym_TILDE] = ACTIONS(4588), - [anon_sym_def] = ACTIONS(4586), - [anon_sym_DOT] = ACTIONS(4588), - [anon_sym_protected] = ACTIONS(4586), - [anon_sym_include] = ACTIONS(4586), - [anon_sym_extend] = ACTIONS(4586), - [anon_sym_forall] = ACTIONS(4586), - [anon_sym_return] = ACTIONS(4586), - [anon_sym_next] = ACTIONS(4586), - [anon_sym_break] = ACTIONS(4586), - [anon_sym_with] = ACTIONS(4586), - [anon_sym_yield] = ACTIONS(4586), - [anon_sym_typeof] = ACTIONS(4586), - [anon_sym_sizeof] = ACTIONS(4586), - [anon_sym_instance_sizeof] = ACTIONS(4586), - [anon_sym_offsetof] = ACTIONS(4586), - [sym__constant_segment] = ACTIONS(4588), - [anon_sym_COLON_COLON] = ACTIONS(4588), - [anon_sym___LINE__] = ACTIONS(4586), - [anon_sym___END_LINE__] = ACTIONS(4586), - [anon_sym___FILE__] = ACTIONS(4586), - [anon_sym___DIR__] = ACTIONS(4586), - [sym_special_variable] = ACTIONS(4588), - [sym_identifier_method_call] = ACTIONS(4588), - [sym_instance_var] = ACTIONS(4588), - [sym_class_var] = ACTIONS(4588), - [sym_self] = ACTIONS(4586), - [anon_sym_QMARK] = ACTIONS(4588), - [anon_sym_alias] = ACTIONS(4586), - [anon_sym_begin] = ACTIONS(4586), - [anon_sym_while] = ACTIONS(4586), - [anon_sym_until] = ACTIONS(4586), - [anon_sym_else] = ACTIONS(4586), - [anon_sym_require] = ACTIONS(4586), - [anon_sym_case] = ACTIONS(4586), - [sym__line_break] = ACTIONS(4588), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4588), - [sym__start_of_named_tuple] = ACTIONS(4588), - [sym_unary_plus] = ACTIONS(4588), - [sym_unary_minus] = ACTIONS(4588), - [sym_unary_wrapping_plus] = ACTIONS(4588), - [sym_unary_wrapping_minus] = ACTIONS(4588), - [sym__beginless_range_operator] = ACTIONS(4588), - [sym__regex_start] = ACTIONS(4588), - [sym__regular_if_keyword] = ACTIONS(4588), - [sym__regular_unless_keyword] = ACTIONS(4588), - [sym__regular_rescue_keyword] = ACTIONS(4588), - [sym__regular_ensure_keyword] = ACTIONS(4588), - [sym__string_literal_start] = ACTIONS(4588), - [sym__string_percent_literal_start] = ACTIONS(4588), - [sym__command_percent_literal_start] = ACTIONS(4588), - [sym__string_array_percent_literal_start] = ACTIONS(4588), - [sym__symbol_array_percent_literal_start] = ACTIONS(4588), - [sym__regex_percent_literal_start] = ACTIONS(4588), - [sym_heredoc_start] = ACTIONS(4588), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2004] = { - [sym_heredoc_body] = STATE(2004), - [aux_sym_union_type_repeat1] = STATE(2001), - [sym_identifier] = ACTIONS(4593), - [anon_sym_SEMI] = ACTIONS(4595), - [anon_sym_LPAREN] = ACTIONS(4595), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4593), - [sym_true] = ACTIONS(4593), - [sym_false] = ACTIONS(4593), - [aux_sym_integer_token2] = ACTIONS(4593), - [aux_sym_float_token2] = ACTIONS(4595), - [anon_sym_SQUOTE] = ACTIONS(4595), - [sym_operator_symbol] = ACTIONS(4595), - [sym_unquoted_symbol] = ACTIONS(4595), - [anon_sym_COLON_DQUOTE] = ACTIONS(4595), - [anon_sym_BQUOTE] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4572), - [anon_sym_COMMA] = ACTIONS(4595), - [anon_sym_DASH_GT] = ACTIONS(4595), - [anon_sym_annotation] = ACTIONS(4593), - [anon_sym_end] = ACTIONS(4593), - [anon_sym_AT_LBRACK] = ACTIONS(4595), - [anon_sym_private] = ACTIONS(4593), - [anon_sym_module] = ACTIONS(4593), - [anon_sym_abstract] = ACTIONS(4593), - [anon_sym_class] = ACTIONS(4593), - [anon_sym_struct] = ACTIONS(4593), - [anon_sym_enum] = ACTIONS(4593), - [anon_sym_STAR] = ACTIONS(4574), - [anon_sym_PIPE] = ACTIONS(4576), - [anon_sym_BANG] = ACTIONS(4595), - [anon_sym_TILDE] = ACTIONS(4595), - [anon_sym_def] = ACTIONS(4593), - [anon_sym_DOT] = ACTIONS(4578), - [anon_sym_protected] = ACTIONS(4593), - [anon_sym_include] = ACTIONS(4593), - [anon_sym_extend] = ACTIONS(4593), - [anon_sym_forall] = ACTIONS(4593), - [anon_sym_return] = ACTIONS(4593), - [anon_sym_next] = ACTIONS(4593), - [anon_sym_break] = ACTIONS(4593), - [anon_sym_with] = ACTIONS(4593), - [anon_sym_yield] = ACTIONS(4593), - [anon_sym_typeof] = ACTIONS(4593), - [anon_sym_sizeof] = ACTIONS(4593), - [anon_sym_instance_sizeof] = ACTIONS(4593), - [anon_sym_offsetof] = ACTIONS(4593), - [sym__constant_segment] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4595), - [anon_sym___LINE__] = ACTIONS(4593), - [anon_sym___END_LINE__] = ACTIONS(4593), - [anon_sym___FILE__] = ACTIONS(4593), - [anon_sym___DIR__] = ACTIONS(4593), - [sym_special_variable] = ACTIONS(4595), - [sym_identifier_method_call] = ACTIONS(4595), - [sym_instance_var] = ACTIONS(4595), - [sym_class_var] = ACTIONS(4595), - [sym_self] = ACTIONS(4593), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_alias] = ACTIONS(4593), - [anon_sym_begin] = ACTIONS(4593), - [anon_sym_while] = ACTIONS(4593), - [anon_sym_until] = ACTIONS(4593), - [anon_sym_else] = ACTIONS(4593), - [anon_sym_require] = ACTIONS(4593), - [anon_sym_case] = ACTIONS(4593), - [sym__line_break] = ACTIONS(4595), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4595), - [sym__start_of_named_tuple] = ACTIONS(4595), - [sym_unary_plus] = ACTIONS(4595), - [sym_unary_minus] = ACTIONS(4595), - [sym_unary_wrapping_plus] = ACTIONS(4595), - [sym_unary_wrapping_minus] = ACTIONS(4595), - [sym__beginless_range_operator] = ACTIONS(4595), - [sym__regex_start] = ACTIONS(4595), - [sym__regular_if_keyword] = ACTIONS(4595), - [sym__regular_unless_keyword] = ACTIONS(4595), - [sym__regular_rescue_keyword] = ACTIONS(4595), - [sym__regular_ensure_keyword] = ACTIONS(4595), - [sym__string_literal_start] = ACTIONS(4595), - [sym__string_percent_literal_start] = ACTIONS(4595), - [sym__command_percent_literal_start] = ACTIONS(4595), - [sym__string_array_percent_literal_start] = ACTIONS(4595), - [sym__symbol_array_percent_literal_start] = ACTIONS(4595), - [sym__regex_percent_literal_start] = ACTIONS(4595), - [sym_heredoc_start] = ACTIONS(4595), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2005] = { - [sym_heredoc_body] = STATE(2005), - [sym_identifier] = ACTIONS(4561), - [anon_sym_SEMI] = ACTIONS(4563), - [anon_sym_LPAREN] = ACTIONS(4561), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4561), - [sym_true] = ACTIONS(4561), - [sym_false] = ACTIONS(4561), - [aux_sym_integer_token2] = ACTIONS(4561), - [aux_sym_float_token2] = ACTIONS(4563), - [anon_sym_SQUOTE] = ACTIONS(4563), - [sym_operator_symbol] = ACTIONS(4563), - [sym_unquoted_symbol] = ACTIONS(4563), - [anon_sym_COLON_DQUOTE] = ACTIONS(4563), - [anon_sym_BQUOTE] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(4563), - [anon_sym_COMMA] = ACTIONS(4563), - [anon_sym_DASH_GT] = ACTIONS(4563), - [anon_sym_annotation] = ACTIONS(4561), - [anon_sym_end] = ACTIONS(4561), - [anon_sym_AT_LBRACK] = ACTIONS(4563), - [anon_sym_private] = ACTIONS(4561), - [anon_sym_module] = ACTIONS(4561), - [anon_sym_abstract] = ACTIONS(4561), - [anon_sym_class] = ACTIONS(4561), - [anon_sym_struct] = ACTIONS(4561), - [anon_sym_enum] = ACTIONS(4561), - [anon_sym_STAR] = ACTIONS(4563), - [anon_sym_PIPE] = ACTIONS(4563), - [anon_sym_BANG] = ACTIONS(4563), - [anon_sym_TILDE] = ACTIONS(4563), - [anon_sym_def] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4563), - [anon_sym_protected] = ACTIONS(4561), - [anon_sym_include] = ACTIONS(4561), - [anon_sym_extend] = ACTIONS(4561), - [anon_sym_forall] = ACTIONS(4561), - [anon_sym_return] = ACTIONS(4561), - [anon_sym_next] = ACTIONS(4561), - [anon_sym_break] = ACTIONS(4561), - [anon_sym_with] = ACTIONS(4561), - [anon_sym_yield] = ACTIONS(4561), - [anon_sym_typeof] = ACTIONS(4561), - [anon_sym_sizeof] = ACTIONS(4561), - [anon_sym_instance_sizeof] = ACTIONS(4561), - [anon_sym_offsetof] = ACTIONS(4561), - [sym__constant_segment] = ACTIONS(4563), - [anon_sym_COLON_COLON] = ACTIONS(4563), - [anon_sym___LINE__] = ACTIONS(4561), - [anon_sym___END_LINE__] = ACTIONS(4561), - [anon_sym___FILE__] = ACTIONS(4561), - [anon_sym___DIR__] = ACTIONS(4561), - [sym_special_variable] = ACTIONS(4563), - [sym_identifier_method_call] = ACTIONS(4563), - [sym_instance_var] = ACTIONS(4563), - [sym_class_var] = ACTIONS(4563), - [sym_self] = ACTIONS(4561), - [anon_sym_LPAREN2] = ACTIONS(4563), - [anon_sym_QMARK] = ACTIONS(4563), - [anon_sym_alias] = ACTIONS(4561), - [anon_sym_begin] = ACTIONS(4561), - [anon_sym_while] = ACTIONS(4561), - [anon_sym_until] = ACTIONS(4561), - [anon_sym_else] = ACTIONS(4561), - [anon_sym_require] = ACTIONS(4561), - [anon_sym_case] = ACTIONS(4561), - [sym__line_break] = ACTIONS(4563), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4563), - [sym__start_of_named_tuple] = ACTIONS(4563), - [sym_unary_plus] = ACTIONS(4563), - [sym_unary_minus] = ACTIONS(4563), - [sym_unary_wrapping_plus] = ACTIONS(4563), - [sym_unary_wrapping_minus] = ACTIONS(4563), - [sym__beginless_range_operator] = ACTIONS(4563), - [sym__regex_start] = ACTIONS(4563), - [sym__regular_if_keyword] = ACTIONS(4563), - [sym__regular_unless_keyword] = ACTIONS(4563), - [sym__regular_rescue_keyword] = ACTIONS(4563), - [sym__regular_ensure_keyword] = ACTIONS(4563), - [sym__string_literal_start] = ACTIONS(4563), - [sym__string_percent_literal_start] = ACTIONS(4563), - [sym__command_percent_literal_start] = ACTIONS(4563), - [sym__string_array_percent_literal_start] = ACTIONS(4563), - [sym__symbol_array_percent_literal_start] = ACTIONS(4563), - [sym__regex_percent_literal_start] = ACTIONS(4563), - [sym_heredoc_start] = ACTIONS(4563), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2006] = { - [sym_heredoc_body] = STATE(2006), - [sym_identifier] = ACTIONS(4597), - [anon_sym_SEMI] = ACTIONS(4599), - [anon_sym_LPAREN] = ACTIONS(4597), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4597), - [sym_true] = ACTIONS(4597), - [sym_false] = ACTIONS(4597), - [aux_sym_integer_token2] = ACTIONS(4597), - [aux_sym_float_token2] = ACTIONS(4599), - [anon_sym_SQUOTE] = ACTIONS(4599), - [sym_operator_symbol] = ACTIONS(4599), - [sym_unquoted_symbol] = ACTIONS(4599), - [anon_sym_COLON_DQUOTE] = ACTIONS(4599), - [anon_sym_BQUOTE] = ACTIONS(4599), - [anon_sym_LBRACK] = ACTIONS(4599), - [anon_sym_COMMA] = ACTIONS(4599), - [anon_sym_DASH_GT] = ACTIONS(4599), - [anon_sym_annotation] = ACTIONS(4597), - [anon_sym_end] = ACTIONS(4597), - [anon_sym_AT_LBRACK] = ACTIONS(4599), - [anon_sym_private] = ACTIONS(4597), - [anon_sym_module] = ACTIONS(4597), - [anon_sym_abstract] = ACTIONS(4597), - [anon_sym_class] = ACTIONS(4597), - [anon_sym_struct] = ACTIONS(4597), - [anon_sym_enum] = ACTIONS(4597), - [anon_sym_STAR] = ACTIONS(4599), - [anon_sym_PIPE] = ACTIONS(4599), - [anon_sym_BANG] = ACTIONS(4599), - [anon_sym_TILDE] = ACTIONS(4599), - [anon_sym_def] = ACTIONS(4597), - [anon_sym_DOT] = ACTIONS(4599), - [anon_sym_protected] = ACTIONS(4597), - [anon_sym_include] = ACTIONS(4597), - [anon_sym_extend] = ACTIONS(4597), - [anon_sym_forall] = ACTIONS(4597), - [anon_sym_return] = ACTIONS(4597), - [anon_sym_next] = ACTIONS(4597), - [anon_sym_break] = ACTIONS(4597), - [anon_sym_with] = ACTIONS(4597), - [anon_sym_yield] = ACTIONS(4597), - [anon_sym_typeof] = ACTIONS(4597), - [anon_sym_sizeof] = ACTIONS(4597), - [anon_sym_instance_sizeof] = ACTIONS(4597), - [anon_sym_offsetof] = ACTIONS(4597), - [sym__constant_segment] = ACTIONS(4599), - [anon_sym_COLON_COLON] = ACTIONS(4599), - [anon_sym___LINE__] = ACTIONS(4597), - [anon_sym___END_LINE__] = ACTIONS(4597), - [anon_sym___FILE__] = ACTIONS(4597), - [anon_sym___DIR__] = ACTIONS(4597), - [sym_special_variable] = ACTIONS(4599), - [sym_identifier_method_call] = ACTIONS(4599), - [sym_instance_var] = ACTIONS(4599), - [sym_class_var] = ACTIONS(4599), - [sym_self] = ACTIONS(4597), - [anon_sym_LPAREN2] = ACTIONS(4601), - [anon_sym_QMARK] = ACTIONS(4599), - [anon_sym_alias] = ACTIONS(4597), - [anon_sym_begin] = ACTIONS(4597), - [anon_sym_while] = ACTIONS(4597), - [anon_sym_until] = ACTIONS(4597), - [anon_sym_else] = ACTIONS(4597), - [anon_sym_require] = ACTIONS(4597), - [anon_sym_case] = ACTIONS(4597), - [sym__line_break] = ACTIONS(4599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4599), - [sym__start_of_named_tuple] = ACTIONS(4599), - [sym_unary_plus] = ACTIONS(4599), - [sym_unary_minus] = ACTIONS(4599), - [sym_unary_wrapping_plus] = ACTIONS(4599), - [sym_unary_wrapping_minus] = ACTIONS(4599), - [sym__beginless_range_operator] = ACTIONS(4599), - [sym__regex_start] = ACTIONS(4599), - [sym__regular_if_keyword] = ACTIONS(4599), - [sym__regular_unless_keyword] = ACTIONS(4599), - [sym__regular_rescue_keyword] = ACTIONS(4599), - [sym__regular_ensure_keyword] = ACTIONS(4599), - [sym__string_literal_start] = ACTIONS(4599), - [sym__string_percent_literal_start] = ACTIONS(4599), - [sym__command_percent_literal_start] = ACTIONS(4599), - [sym__string_array_percent_literal_start] = ACTIONS(4599), - [sym__symbol_array_percent_literal_start] = ACTIONS(4599), - [sym__regex_percent_literal_start] = ACTIONS(4599), - [sym_heredoc_start] = ACTIONS(4599), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2007] = { - [sym_heredoc_body] = STATE(2007), - [aux_sym_union_type_repeat1] = STATE(2001), - [sym_identifier] = ACTIONS(4603), - [anon_sym_SEMI] = ACTIONS(4605), - [anon_sym_LPAREN] = ACTIONS(4605), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4603), - [sym_true] = ACTIONS(4603), - [sym_false] = ACTIONS(4603), - [aux_sym_integer_token2] = ACTIONS(4603), - [aux_sym_float_token2] = ACTIONS(4605), - [anon_sym_SQUOTE] = ACTIONS(4605), - [sym_operator_symbol] = ACTIONS(4605), - [sym_unquoted_symbol] = ACTIONS(4605), - [anon_sym_COLON_DQUOTE] = ACTIONS(4605), - [anon_sym_BQUOTE] = ACTIONS(4605), - [anon_sym_LBRACK] = ACTIONS(4572), - [anon_sym_COMMA] = ACTIONS(4605), - [anon_sym_DASH_GT] = ACTIONS(4605), - [anon_sym_annotation] = ACTIONS(4603), - [anon_sym_end] = ACTIONS(4603), - [anon_sym_AT_LBRACK] = ACTIONS(4605), - [anon_sym_private] = ACTIONS(4603), - [anon_sym_module] = ACTIONS(4603), - [anon_sym_abstract] = ACTIONS(4603), - [anon_sym_class] = ACTIONS(4603), - [anon_sym_struct] = ACTIONS(4603), - [anon_sym_enum] = ACTIONS(4603), - [anon_sym_STAR] = ACTIONS(4574), - [anon_sym_PIPE] = ACTIONS(4576), - [anon_sym_BANG] = ACTIONS(4605), - [anon_sym_TILDE] = ACTIONS(4605), - [anon_sym_def] = ACTIONS(4603), - [anon_sym_DOT] = ACTIONS(4578), - [anon_sym_protected] = ACTIONS(4603), - [anon_sym_include] = ACTIONS(4603), - [anon_sym_extend] = ACTIONS(4603), - [anon_sym_forall] = ACTIONS(4603), - [anon_sym_return] = ACTIONS(4603), - [anon_sym_next] = ACTIONS(4603), - [anon_sym_break] = ACTIONS(4603), - [anon_sym_with] = ACTIONS(4603), - [anon_sym_yield] = ACTIONS(4603), - [anon_sym_typeof] = ACTIONS(4603), - [anon_sym_sizeof] = ACTIONS(4603), - [anon_sym_instance_sizeof] = ACTIONS(4603), - [anon_sym_offsetof] = ACTIONS(4603), - [sym__constant_segment] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(4605), - [anon_sym___LINE__] = ACTIONS(4603), - [anon_sym___END_LINE__] = ACTIONS(4603), - [anon_sym___FILE__] = ACTIONS(4603), - [anon_sym___DIR__] = ACTIONS(4603), - [sym_special_variable] = ACTIONS(4605), - [sym_identifier_method_call] = ACTIONS(4605), - [sym_instance_var] = ACTIONS(4605), - [sym_class_var] = ACTIONS(4605), - [sym_self] = ACTIONS(4603), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_alias] = ACTIONS(4603), - [anon_sym_begin] = ACTIONS(4603), - [anon_sym_while] = ACTIONS(4603), - [anon_sym_until] = ACTIONS(4603), - [anon_sym_else] = ACTIONS(4603), - [anon_sym_require] = ACTIONS(4603), - [anon_sym_case] = ACTIONS(4603), - [sym__line_break] = ACTIONS(4605), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4605), - [sym__start_of_named_tuple] = ACTIONS(4605), - [sym_unary_plus] = ACTIONS(4605), - [sym_unary_minus] = ACTIONS(4605), - [sym_unary_wrapping_plus] = ACTIONS(4605), - [sym_unary_wrapping_minus] = ACTIONS(4605), - [sym__beginless_range_operator] = ACTIONS(4605), - [sym__regex_start] = ACTIONS(4605), - [sym__regular_if_keyword] = ACTIONS(4605), - [sym__regular_unless_keyword] = ACTIONS(4605), - [sym__regular_rescue_keyword] = ACTIONS(4605), - [sym__regular_ensure_keyword] = ACTIONS(4605), - [sym__string_literal_start] = ACTIONS(4605), - [sym__string_percent_literal_start] = ACTIONS(4605), - [sym__command_percent_literal_start] = ACTIONS(4605), - [sym__string_array_percent_literal_start] = ACTIONS(4605), - [sym__symbol_array_percent_literal_start] = ACTIONS(4605), - [sym__regex_percent_literal_start] = ACTIONS(4605), - [sym_heredoc_start] = ACTIONS(4605), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2008] = { - [sym_heredoc_body] = STATE(2008), - [aux_sym_union_type_repeat1] = STATE(2001), - [sym_identifier] = ACTIONS(4607), - [anon_sym_SEMI] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4609), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4607), - [sym_true] = ACTIONS(4607), - [sym_false] = ACTIONS(4607), - [aux_sym_integer_token2] = ACTIONS(4607), - [aux_sym_float_token2] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [sym_operator_symbol] = ACTIONS(4609), - [sym_unquoted_symbol] = ACTIONS(4609), - [anon_sym_COLON_DQUOTE] = ACTIONS(4609), - [anon_sym_BQUOTE] = ACTIONS(4609), - [anon_sym_LBRACK] = ACTIONS(4572), - [anon_sym_COMMA] = ACTIONS(4609), - [anon_sym_DASH_GT] = ACTIONS(4609), - [anon_sym_annotation] = ACTIONS(4607), - [anon_sym_end] = ACTIONS(4607), - [anon_sym_AT_LBRACK] = ACTIONS(4609), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_module] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_class] = ACTIONS(4607), - [anon_sym_struct] = ACTIONS(4607), - [anon_sym_enum] = ACTIONS(4607), - [anon_sym_STAR] = ACTIONS(4574), - [anon_sym_PIPE] = ACTIONS(4576), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_TILDE] = ACTIONS(4609), - [anon_sym_def] = ACTIONS(4607), - [anon_sym_DOT] = ACTIONS(4578), - [anon_sym_protected] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_extend] = ACTIONS(4607), - [anon_sym_forall] = ACTIONS(4607), - [anon_sym_return] = ACTIONS(4607), - [anon_sym_next] = ACTIONS(4607), - [anon_sym_break] = ACTIONS(4607), - [anon_sym_with] = ACTIONS(4607), - [anon_sym_yield] = ACTIONS(4607), - [anon_sym_typeof] = ACTIONS(4607), - [anon_sym_sizeof] = ACTIONS(4607), - [anon_sym_instance_sizeof] = ACTIONS(4607), - [anon_sym_offsetof] = ACTIONS(4607), - [sym__constant_segment] = ACTIONS(4609), - [anon_sym_COLON_COLON] = ACTIONS(4609), - [anon_sym___LINE__] = ACTIONS(4607), - [anon_sym___END_LINE__] = ACTIONS(4607), - [anon_sym___FILE__] = ACTIONS(4607), - [anon_sym___DIR__] = ACTIONS(4607), - [sym_special_variable] = ACTIONS(4609), - [sym_identifier_method_call] = ACTIONS(4609), - [sym_instance_var] = ACTIONS(4609), - [sym_class_var] = ACTIONS(4609), - [sym_self] = ACTIONS(4607), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_alias] = ACTIONS(4607), - [anon_sym_begin] = ACTIONS(4607), - [anon_sym_while] = ACTIONS(4607), - [anon_sym_until] = ACTIONS(4607), - [anon_sym_else] = ACTIONS(4607), - [anon_sym_require] = ACTIONS(4607), - [anon_sym_case] = ACTIONS(4607), - [sym__line_break] = ACTIONS(4609), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4609), - [sym__start_of_named_tuple] = ACTIONS(4609), - [sym_unary_plus] = ACTIONS(4609), - [sym_unary_minus] = ACTIONS(4609), - [sym_unary_wrapping_plus] = ACTIONS(4609), - [sym_unary_wrapping_minus] = ACTIONS(4609), - [sym__beginless_range_operator] = ACTIONS(4609), - [sym__regex_start] = ACTIONS(4609), - [sym__regular_if_keyword] = ACTIONS(4609), - [sym__regular_unless_keyword] = ACTIONS(4609), - [sym__regular_rescue_keyword] = ACTIONS(4609), - [sym__regular_ensure_keyword] = ACTIONS(4609), - [sym__string_literal_start] = ACTIONS(4609), - [sym__string_percent_literal_start] = ACTIONS(4609), - [sym__command_percent_literal_start] = ACTIONS(4609), - [sym__string_array_percent_literal_start] = ACTIONS(4609), - [sym__symbol_array_percent_literal_start] = ACTIONS(4609), - [sym__regex_percent_literal_start] = ACTIONS(4609), - [sym_heredoc_start] = ACTIONS(4609), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2009] = { - [sym_heredoc_body] = STATE(2009), - [aux_sym_union_type_repeat1] = STATE(2001), - [sym_identifier] = ACTIONS(4611), - [anon_sym_SEMI] = ACTIONS(4613), - [anon_sym_LPAREN] = ACTIONS(4613), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4611), - [sym_true] = ACTIONS(4611), - [sym_false] = ACTIONS(4611), - [aux_sym_integer_token2] = ACTIONS(4611), - [aux_sym_float_token2] = ACTIONS(4613), - [anon_sym_SQUOTE] = ACTIONS(4613), - [sym_operator_symbol] = ACTIONS(4613), - [sym_unquoted_symbol] = ACTIONS(4613), - [anon_sym_COLON_DQUOTE] = ACTIONS(4613), - [anon_sym_BQUOTE] = ACTIONS(4613), - [anon_sym_LBRACK] = ACTIONS(4572), - [anon_sym_COMMA] = ACTIONS(4613), - [anon_sym_DASH_GT] = ACTIONS(4613), - [anon_sym_annotation] = ACTIONS(4611), - [anon_sym_end] = ACTIONS(4611), - [anon_sym_AT_LBRACK] = ACTIONS(4613), - [anon_sym_private] = ACTIONS(4611), - [anon_sym_module] = ACTIONS(4611), - [anon_sym_abstract] = ACTIONS(4611), - [anon_sym_class] = ACTIONS(4611), - [anon_sym_struct] = ACTIONS(4611), - [anon_sym_enum] = ACTIONS(4611), - [anon_sym_STAR] = ACTIONS(4574), - [anon_sym_PIPE] = ACTIONS(4576), - [anon_sym_BANG] = ACTIONS(4613), - [anon_sym_TILDE] = ACTIONS(4613), - [anon_sym_def] = ACTIONS(4611), - [anon_sym_DOT] = ACTIONS(4578), - [anon_sym_protected] = ACTIONS(4611), - [anon_sym_include] = ACTIONS(4611), - [anon_sym_extend] = ACTIONS(4611), - [anon_sym_forall] = ACTIONS(4611), - [anon_sym_return] = ACTIONS(4611), - [anon_sym_next] = ACTIONS(4611), - [anon_sym_break] = ACTIONS(4611), - [anon_sym_with] = ACTIONS(4611), - [anon_sym_yield] = ACTIONS(4611), - [anon_sym_typeof] = ACTIONS(4611), - [anon_sym_sizeof] = ACTIONS(4611), - [anon_sym_instance_sizeof] = ACTIONS(4611), - [anon_sym_offsetof] = ACTIONS(4611), - [sym__constant_segment] = ACTIONS(4613), - [anon_sym_COLON_COLON] = ACTIONS(4613), - [anon_sym___LINE__] = ACTIONS(4611), - [anon_sym___END_LINE__] = ACTIONS(4611), - [anon_sym___FILE__] = ACTIONS(4611), - [anon_sym___DIR__] = ACTIONS(4611), - [sym_special_variable] = ACTIONS(4613), - [sym_identifier_method_call] = ACTIONS(4613), - [sym_instance_var] = ACTIONS(4613), - [sym_class_var] = ACTIONS(4613), - [sym_self] = ACTIONS(4611), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_alias] = ACTIONS(4611), - [anon_sym_begin] = ACTIONS(4611), - [anon_sym_while] = ACTIONS(4611), - [anon_sym_until] = ACTIONS(4611), - [anon_sym_else] = ACTIONS(4611), - [anon_sym_require] = ACTIONS(4611), - [anon_sym_case] = ACTIONS(4611), - [sym__line_break] = ACTIONS(4613), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4613), - [sym__start_of_named_tuple] = ACTIONS(4613), - [sym_unary_plus] = ACTIONS(4613), - [sym_unary_minus] = ACTIONS(4613), - [sym_unary_wrapping_plus] = ACTIONS(4613), - [sym_unary_wrapping_minus] = ACTIONS(4613), - [sym__beginless_range_operator] = ACTIONS(4613), - [sym__regex_start] = ACTIONS(4613), - [sym__regular_if_keyword] = ACTIONS(4613), - [sym__regular_unless_keyword] = ACTIONS(4613), - [sym__regular_rescue_keyword] = ACTIONS(4613), - [sym__regular_ensure_keyword] = ACTIONS(4613), - [sym__string_literal_start] = ACTIONS(4613), - [sym__string_percent_literal_start] = ACTIONS(4613), - [sym__command_percent_literal_start] = ACTIONS(4613), - [sym__string_array_percent_literal_start] = ACTIONS(4613), - [sym__symbol_array_percent_literal_start] = ACTIONS(4613), - [sym__regex_percent_literal_start] = ACTIONS(4613), - [sym_heredoc_start] = ACTIONS(4613), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2010] = { - [sym_heredoc_body] = STATE(2010), - [sym_identifier] = ACTIONS(4615), - [anon_sym_SEMI] = ACTIONS(4617), - [anon_sym_LPAREN] = ACTIONS(4617), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4615), - [sym_true] = ACTIONS(4615), - [sym_false] = ACTIONS(4615), - [aux_sym_integer_token2] = ACTIONS(4615), - [aux_sym_float_token2] = ACTIONS(4617), - [anon_sym_SQUOTE] = ACTIONS(4617), - [sym_operator_symbol] = ACTIONS(4617), - [sym_unquoted_symbol] = ACTIONS(4617), - [anon_sym_COLON_DQUOTE] = ACTIONS(4617), - [anon_sym_BQUOTE] = ACTIONS(4617), - [anon_sym_LBRACK] = ACTIONS(4617), - [anon_sym_COMMA] = ACTIONS(4617), - [anon_sym_DASH_GT] = ACTIONS(4617), - [anon_sym_annotation] = ACTIONS(4615), - [anon_sym_end] = ACTIONS(4615), - [anon_sym_AT_LBRACK] = ACTIONS(4617), - [anon_sym_private] = ACTIONS(4615), - [anon_sym_module] = ACTIONS(4615), - [anon_sym_abstract] = ACTIONS(4615), - [anon_sym_class] = ACTIONS(4615), - [anon_sym_struct] = ACTIONS(4615), - [anon_sym_enum] = ACTIONS(4615), - [anon_sym_STAR] = ACTIONS(4617), - [anon_sym_PIPE] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(4617), - [anon_sym_TILDE] = ACTIONS(4617), - [anon_sym_def] = ACTIONS(4615), - [anon_sym_DOT] = ACTIONS(4617), - [anon_sym_protected] = ACTIONS(4615), - [anon_sym_include] = ACTIONS(4615), - [anon_sym_extend] = ACTIONS(4615), - [anon_sym_forall] = ACTIONS(4615), - [anon_sym_return] = ACTIONS(4615), - [anon_sym_next] = ACTIONS(4615), - [anon_sym_break] = ACTIONS(4615), - [anon_sym_with] = ACTIONS(4615), - [anon_sym_yield] = ACTIONS(4615), - [anon_sym_typeof] = ACTIONS(4615), - [anon_sym_sizeof] = ACTIONS(4615), - [anon_sym_instance_sizeof] = ACTIONS(4615), - [anon_sym_offsetof] = ACTIONS(4615), - [sym__constant_segment] = ACTIONS(4617), - [anon_sym_COLON_COLON] = ACTIONS(4617), - [anon_sym___LINE__] = ACTIONS(4615), - [anon_sym___END_LINE__] = ACTIONS(4615), - [anon_sym___FILE__] = ACTIONS(4615), - [anon_sym___DIR__] = ACTIONS(4615), - [sym_special_variable] = ACTIONS(4617), - [sym_identifier_method_call] = ACTIONS(4617), - [sym_instance_var] = ACTIONS(4617), - [sym_class_var] = ACTIONS(4617), - [sym_self] = ACTIONS(4615), - [anon_sym_QMARK] = ACTIONS(4617), - [anon_sym_alias] = ACTIONS(4615), - [anon_sym_begin] = ACTIONS(4615), - [anon_sym_while] = ACTIONS(4615), - [anon_sym_until] = ACTIONS(4615), - [anon_sym_else] = ACTIONS(4615), - [anon_sym_require] = ACTIONS(4615), - [anon_sym_case] = ACTIONS(4615), - [sym__line_break] = ACTIONS(4617), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4617), - [sym__start_of_named_tuple] = ACTIONS(4617), - [sym_unary_plus] = ACTIONS(4617), - [sym_unary_minus] = ACTIONS(4617), - [sym_unary_wrapping_plus] = ACTIONS(4617), - [sym_unary_wrapping_minus] = ACTIONS(4617), - [sym__beginless_range_operator] = ACTIONS(4617), - [sym__regex_start] = ACTIONS(4617), - [sym__regular_if_keyword] = ACTIONS(4617), - [sym__regular_unless_keyword] = ACTIONS(4617), - [sym__regular_rescue_keyword] = ACTIONS(4617), - [sym__regular_ensure_keyword] = ACTIONS(4617), - [sym__string_literal_start] = ACTIONS(4617), - [sym__string_percent_literal_start] = ACTIONS(4617), - [sym__command_percent_literal_start] = ACTIONS(4617), - [sym__string_array_percent_literal_start] = ACTIONS(4617), - [sym__symbol_array_percent_literal_start] = ACTIONS(4617), - [sym__regex_percent_literal_start] = ACTIONS(4617), - [sym_heredoc_start] = ACTIONS(4617), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2011] = { - [sym_heredoc_body] = STATE(2011), + [aux_sym_union_type_repeat1] = STATE(2004), [sym_identifier] = ACTIONS(4619), [anon_sym_SEMI] = ACTIONS(4621), [anon_sym_LPAREN] = ACTIONS(4621), @@ -306497,7 +309756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(4621), [anon_sym_COLON_DQUOTE] = ACTIONS(4621), [anon_sym_BQUOTE] = ACTIONS(4621), - [anon_sym_LBRACK] = ACTIONS(4621), + [anon_sym_LBRACK] = ACTIONS(4609), [anon_sym_COMMA] = ACTIONS(4621), [anon_sym_DASH_GT] = ACTIONS(4621), [anon_sym_annotation] = ACTIONS(4619), @@ -306509,12 +309768,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(4619), [anon_sym_struct] = ACTIONS(4619), [anon_sym_enum] = ACTIONS(4619), - [anon_sym_STAR] = ACTIONS(4621), - [anon_sym_PIPE] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4611), + [anon_sym_PIPE] = ACTIONS(4613), [anon_sym_BANG] = ACTIONS(4621), [anon_sym_TILDE] = ACTIONS(4621), [anon_sym_def] = ACTIONS(4619), - [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4615), [anon_sym_protected] = ACTIONS(4619), [anon_sym_include] = ACTIONS(4619), [anon_sym_extend] = ACTIONS(4619), @@ -306539,7 +309798,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(4621), [sym_class_var] = ACTIONS(4621), [sym_self] = ACTIONS(4619), - [anon_sym_QMARK] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4617), [anon_sym_alias] = ACTIONS(4619), [anon_sym_begin] = ACTIONS(4619), [anon_sym_while] = ACTIONS(4619), @@ -306547,6 +309806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(4619), [anon_sym_require] = ACTIONS(4619), [anon_sym_case] = ACTIONS(4619), + [anon_sym_select] = ACTIONS(4619), [sym__line_break] = ACTIONS(4621), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(4621), @@ -306570,97 +309830,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4621), [sym__heredoc_body_start] = ACTIONS(7), }, - [2012] = { - [sym_heredoc_body] = STATE(2012), - [sym_identifier] = ACTIONS(4597), - [anon_sym_SEMI] = ACTIONS(4599), - [anon_sym_LPAREN] = ACTIONS(4599), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4597), - [sym_true] = ACTIONS(4597), - [sym_false] = ACTIONS(4597), - [aux_sym_integer_token2] = ACTIONS(4597), - [aux_sym_float_token2] = ACTIONS(4599), - [anon_sym_SQUOTE] = ACTIONS(4599), - [sym_operator_symbol] = ACTIONS(4599), - [sym_unquoted_symbol] = ACTIONS(4599), - [anon_sym_COLON_DQUOTE] = ACTIONS(4599), - [anon_sym_BQUOTE] = ACTIONS(4599), - [anon_sym_LBRACK] = ACTIONS(4599), - [anon_sym_COMMA] = ACTIONS(4599), - [anon_sym_DASH_GT] = ACTIONS(4599), - [anon_sym_annotation] = ACTIONS(4597), - [anon_sym_end] = ACTIONS(4597), - [anon_sym_AT_LBRACK] = ACTIONS(4599), - [anon_sym_private] = ACTIONS(4597), - [anon_sym_module] = ACTIONS(4597), - [anon_sym_abstract] = ACTIONS(4597), - [anon_sym_class] = ACTIONS(4597), - [anon_sym_struct] = ACTIONS(4597), - [anon_sym_enum] = ACTIONS(4597), - [anon_sym_STAR] = ACTIONS(4599), - [anon_sym_PIPE] = ACTIONS(4599), - [anon_sym_BANG] = ACTIONS(4599), - [anon_sym_TILDE] = ACTIONS(4599), - [anon_sym_def] = ACTIONS(4597), - [anon_sym_DOT] = ACTIONS(4599), - [anon_sym_protected] = ACTIONS(4597), - [anon_sym_include] = ACTIONS(4597), - [anon_sym_extend] = ACTIONS(4597), - [anon_sym_forall] = ACTIONS(4597), - [anon_sym_return] = ACTIONS(4597), - [anon_sym_next] = ACTIONS(4597), - [anon_sym_break] = ACTIONS(4597), - [anon_sym_with] = ACTIONS(4597), - [anon_sym_yield] = ACTIONS(4597), - [anon_sym_typeof] = ACTIONS(4597), - [anon_sym_sizeof] = ACTIONS(4597), - [anon_sym_instance_sizeof] = ACTIONS(4597), - [anon_sym_offsetof] = ACTIONS(4597), - [sym__constant_segment] = ACTIONS(4599), - [anon_sym_COLON_COLON] = ACTIONS(4599), - [anon_sym___LINE__] = ACTIONS(4597), - [anon_sym___END_LINE__] = ACTIONS(4597), - [anon_sym___FILE__] = ACTIONS(4597), - [anon_sym___DIR__] = ACTIONS(4597), - [sym_special_variable] = ACTIONS(4599), - [sym_identifier_method_call] = ACTIONS(4599), - [sym_instance_var] = ACTIONS(4599), - [sym_class_var] = ACTIONS(4599), - [sym_self] = ACTIONS(4597), - [anon_sym_QMARK] = ACTIONS(4599), - [anon_sym_alias] = ACTIONS(4597), - [anon_sym_begin] = ACTIONS(4597), - [anon_sym_while] = ACTIONS(4597), - [anon_sym_until] = ACTIONS(4597), - [anon_sym_else] = ACTIONS(4597), - [anon_sym_require] = ACTIONS(4597), - [anon_sym_case] = ACTIONS(4597), - [sym__line_break] = ACTIONS(4599), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4599), - [sym__start_of_named_tuple] = ACTIONS(4599), - [sym_unary_plus] = ACTIONS(4599), - [sym_unary_minus] = ACTIONS(4599), - [sym_unary_wrapping_plus] = ACTIONS(4599), - [sym_unary_wrapping_minus] = ACTIONS(4599), - [sym__beginless_range_operator] = ACTIONS(4599), - [sym__regex_start] = ACTIONS(4599), - [sym__regular_if_keyword] = ACTIONS(4599), - [sym__regular_unless_keyword] = ACTIONS(4599), - [sym__regular_rescue_keyword] = ACTIONS(4599), - [sym__regular_ensure_keyword] = ACTIONS(4599), - [sym__string_literal_start] = ACTIONS(4599), - [sym__string_percent_literal_start] = ACTIONS(4599), - [sym__command_percent_literal_start] = ACTIONS(4599), - [sym__string_array_percent_literal_start] = ACTIONS(4599), - [sym__symbol_array_percent_literal_start] = ACTIONS(4599), - [sym__regex_percent_literal_start] = ACTIONS(4599), - [sym_heredoc_start] = ACTIONS(4599), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2013] = { - [sym_heredoc_body] = STATE(2013), + [2002] = { + [sym_heredoc_body] = STATE(2002), + [aux_sym_union_type_repeat1] = STATE(2004), [sym_identifier] = ACTIONS(4623), [anon_sym_SEMI] = ACTIONS(4625), [anon_sym_LPAREN] = ACTIONS(4625), @@ -306675,7 +309847,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(4625), [anon_sym_COLON_DQUOTE] = ACTIONS(4625), [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4625), + [anon_sym_LBRACK] = ACTIONS(4609), [anon_sym_COMMA] = ACTIONS(4625), [anon_sym_DASH_GT] = ACTIONS(4625), [anon_sym_annotation] = ACTIONS(4623), @@ -306687,12 +309859,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(4623), [anon_sym_struct] = ACTIONS(4623), [anon_sym_enum] = ACTIONS(4623), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PIPE] = ACTIONS(4625), + [anon_sym_STAR] = ACTIONS(4611), + [anon_sym_PIPE] = ACTIONS(4613), [anon_sym_BANG] = ACTIONS(4625), [anon_sym_TILDE] = ACTIONS(4625), [anon_sym_def] = ACTIONS(4623), - [anon_sym_DOT] = ACTIONS(4625), + [anon_sym_DOT] = ACTIONS(4615), [anon_sym_protected] = ACTIONS(4623), [anon_sym_include] = ACTIONS(4623), [anon_sym_extend] = ACTIONS(4623), @@ -306717,7 +309889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(4625), [sym_class_var] = ACTIONS(4625), [sym_self] = ACTIONS(4623), - [anon_sym_QMARK] = ACTIONS(4625), + [anon_sym_QMARK] = ACTIONS(4617), [anon_sym_alias] = ACTIONS(4623), [anon_sym_begin] = ACTIONS(4623), [anon_sym_while] = ACTIONS(4623), @@ -306725,6 +309897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(4623), [anon_sym_require] = ACTIONS(4623), [anon_sym_case] = ACTIONS(4623), + [anon_sym_select] = ACTIONS(4623), [sym__line_break] = ACTIONS(4625), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(4625), @@ -306748,8 +309921,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4625), [sym__heredoc_body_start] = ACTIONS(7), }, - [2014] = { - [sym_heredoc_body] = STATE(2014), + [2003] = { + [sym_heredoc_body] = STATE(2003), + [aux_sym_union_type_repeat1] = STATE(2003), + [sym_identifier] = ACTIONS(4627), + [anon_sym_SEMI] = ACTIONS(4629), + [anon_sym_LPAREN] = ACTIONS(4629), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4627), + [sym_true] = ACTIONS(4627), + [sym_false] = ACTIONS(4627), + [aux_sym_integer_token2] = ACTIONS(4627), + [aux_sym_float_token2] = ACTIONS(4629), + [anon_sym_SQUOTE] = ACTIONS(4629), + [sym_operator_symbol] = ACTIONS(4629), + [sym_unquoted_symbol] = ACTIONS(4629), + [anon_sym_COLON_DQUOTE] = ACTIONS(4629), + [anon_sym_BQUOTE] = ACTIONS(4629), + [anon_sym_LBRACK] = ACTIONS(4629), + [anon_sym_COMMA] = ACTIONS(4629), + [anon_sym_DASH_GT] = ACTIONS(4629), + [anon_sym_annotation] = ACTIONS(4627), + [anon_sym_end] = ACTIONS(4627), + [anon_sym_AT_LBRACK] = ACTIONS(4629), + [anon_sym_private] = ACTIONS(4627), + [anon_sym_module] = ACTIONS(4627), + [anon_sym_abstract] = ACTIONS(4627), + [anon_sym_class] = ACTIONS(4627), + [anon_sym_struct] = ACTIONS(4627), + [anon_sym_enum] = ACTIONS(4627), + [anon_sym_STAR] = ACTIONS(4629), + [anon_sym_PIPE] = ACTIONS(4631), + [anon_sym_BANG] = ACTIONS(4629), + [anon_sym_TILDE] = ACTIONS(4629), + [anon_sym_def] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4629), + [anon_sym_protected] = ACTIONS(4627), + [anon_sym_include] = ACTIONS(4627), + [anon_sym_extend] = ACTIONS(4627), + [anon_sym_forall] = ACTIONS(4627), + [anon_sym_return] = ACTIONS(4627), + [anon_sym_next] = ACTIONS(4627), + [anon_sym_break] = ACTIONS(4627), + [anon_sym_with] = ACTIONS(4627), + [anon_sym_yield] = ACTIONS(4627), + [anon_sym_typeof] = ACTIONS(4627), + [anon_sym_sizeof] = ACTIONS(4627), + [anon_sym_instance_sizeof] = ACTIONS(4627), + [anon_sym_offsetof] = ACTIONS(4627), + [sym__constant_segment] = ACTIONS(4629), + [anon_sym_COLON_COLON] = ACTIONS(4629), + [anon_sym___LINE__] = ACTIONS(4627), + [anon_sym___END_LINE__] = ACTIONS(4627), + [anon_sym___FILE__] = ACTIONS(4627), + [anon_sym___DIR__] = ACTIONS(4627), + [sym_special_variable] = ACTIONS(4629), + [sym_identifier_method_call] = ACTIONS(4629), + [sym_instance_var] = ACTIONS(4629), + [sym_class_var] = ACTIONS(4629), + [sym_self] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4629), + [anon_sym_alias] = ACTIONS(4627), + [anon_sym_begin] = ACTIONS(4627), + [anon_sym_while] = ACTIONS(4627), + [anon_sym_until] = ACTIONS(4627), + [anon_sym_else] = ACTIONS(4627), + [anon_sym_require] = ACTIONS(4627), + [anon_sym_case] = ACTIONS(4627), + [anon_sym_select] = ACTIONS(4627), + [sym__line_break] = ACTIONS(4629), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4629), + [sym__start_of_named_tuple] = ACTIONS(4629), + [sym_unary_plus] = ACTIONS(4629), + [sym_unary_minus] = ACTIONS(4629), + [sym_unary_wrapping_plus] = ACTIONS(4629), + [sym_unary_wrapping_minus] = ACTIONS(4629), + [sym__beginless_range_operator] = ACTIONS(4629), + [sym__regex_start] = ACTIONS(4629), + [sym__regular_if_keyword] = ACTIONS(4629), + [sym__regular_unless_keyword] = ACTIONS(4629), + [sym__regular_rescue_keyword] = ACTIONS(4629), + [sym__regular_ensure_keyword] = ACTIONS(4629), + [sym__string_literal_start] = ACTIONS(4629), + [sym__string_percent_literal_start] = ACTIONS(4629), + [sym__command_percent_literal_start] = ACTIONS(4629), + [sym__string_array_percent_literal_start] = ACTIONS(4629), + [sym__symbol_array_percent_literal_start] = ACTIONS(4629), + [sym__regex_percent_literal_start] = ACTIONS(4629), + [sym_heredoc_start] = ACTIONS(4629), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2004] = { + [sym_heredoc_body] = STATE(2004), + [aux_sym_union_type_repeat1] = STATE(2003), + [sym_identifier] = ACTIONS(4634), + [anon_sym_SEMI] = ACTIONS(4636), + [anon_sym_LPAREN] = ACTIONS(4636), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4634), + [sym_true] = ACTIONS(4634), + [sym_false] = ACTIONS(4634), + [aux_sym_integer_token2] = ACTIONS(4634), + [aux_sym_float_token2] = ACTIONS(4636), + [anon_sym_SQUOTE] = ACTIONS(4636), + [sym_operator_symbol] = ACTIONS(4636), + [sym_unquoted_symbol] = ACTIONS(4636), + [anon_sym_COLON_DQUOTE] = ACTIONS(4636), + [anon_sym_BQUOTE] = ACTIONS(4636), + [anon_sym_LBRACK] = ACTIONS(4636), + [anon_sym_COMMA] = ACTIONS(4636), + [anon_sym_DASH_GT] = ACTIONS(4636), + [anon_sym_annotation] = ACTIONS(4634), + [anon_sym_end] = ACTIONS(4634), + [anon_sym_AT_LBRACK] = ACTIONS(4636), + [anon_sym_private] = ACTIONS(4634), + [anon_sym_module] = ACTIONS(4634), + [anon_sym_abstract] = ACTIONS(4634), + [anon_sym_class] = ACTIONS(4634), + [anon_sym_struct] = ACTIONS(4634), + [anon_sym_enum] = ACTIONS(4634), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_PIPE] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4636), + [anon_sym_TILDE] = ACTIONS(4636), + [anon_sym_def] = ACTIONS(4634), + [anon_sym_DOT] = ACTIONS(4636), + [anon_sym_protected] = ACTIONS(4634), + [anon_sym_include] = ACTIONS(4634), + [anon_sym_extend] = ACTIONS(4634), + [anon_sym_forall] = ACTIONS(4634), + [anon_sym_return] = ACTIONS(4634), + [anon_sym_next] = ACTIONS(4634), + [anon_sym_break] = ACTIONS(4634), + [anon_sym_with] = ACTIONS(4634), + [anon_sym_yield] = ACTIONS(4634), + [anon_sym_typeof] = ACTIONS(4634), + [anon_sym_sizeof] = ACTIONS(4634), + [anon_sym_instance_sizeof] = ACTIONS(4634), + [anon_sym_offsetof] = ACTIONS(4634), + [sym__constant_segment] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(4636), + [anon_sym___LINE__] = ACTIONS(4634), + [anon_sym___END_LINE__] = ACTIONS(4634), + [anon_sym___FILE__] = ACTIONS(4634), + [anon_sym___DIR__] = ACTIONS(4634), + [sym_special_variable] = ACTIONS(4636), + [sym_identifier_method_call] = ACTIONS(4636), + [sym_instance_var] = ACTIONS(4636), + [sym_class_var] = ACTIONS(4636), + [sym_self] = ACTIONS(4634), + [anon_sym_QMARK] = ACTIONS(4636), + [anon_sym_alias] = ACTIONS(4634), + [anon_sym_begin] = ACTIONS(4634), + [anon_sym_while] = ACTIONS(4634), + [anon_sym_until] = ACTIONS(4634), + [anon_sym_else] = ACTIONS(4634), + [anon_sym_require] = ACTIONS(4634), + [anon_sym_case] = ACTIONS(4634), + [anon_sym_select] = ACTIONS(4634), + [sym__line_break] = ACTIONS(4636), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4636), + [sym__start_of_named_tuple] = ACTIONS(4636), + [sym_unary_plus] = ACTIONS(4636), + [sym_unary_minus] = ACTIONS(4636), + [sym_unary_wrapping_plus] = ACTIONS(4636), + [sym_unary_wrapping_minus] = ACTIONS(4636), + [sym__beginless_range_operator] = ACTIONS(4636), + [sym__regex_start] = ACTIONS(4636), + [sym__regular_if_keyword] = ACTIONS(4636), + [sym__regular_unless_keyword] = ACTIONS(4636), + [sym__regular_rescue_keyword] = ACTIONS(4636), + [sym__regular_ensure_keyword] = ACTIONS(4636), + [sym__string_literal_start] = ACTIONS(4636), + [sym__string_percent_literal_start] = ACTIONS(4636), + [sym__command_percent_literal_start] = ACTIONS(4636), + [sym__string_array_percent_literal_start] = ACTIONS(4636), + [sym__symbol_array_percent_literal_start] = ACTIONS(4636), + [sym__regex_percent_literal_start] = ACTIONS(4636), + [sym_heredoc_start] = ACTIONS(4636), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2005] = { + [sym_heredoc_body] = STATE(2005), + [sym_identifier] = ACTIONS(4598), + [anon_sym_SEMI] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(4598), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4598), + [sym_true] = ACTIONS(4598), + [sym_false] = ACTIONS(4598), + [aux_sym_integer_token2] = ACTIONS(4598), + [aux_sym_float_token2] = ACTIONS(4600), + [anon_sym_SQUOTE] = ACTIONS(4600), + [sym_operator_symbol] = ACTIONS(4600), + [sym_unquoted_symbol] = ACTIONS(4600), + [anon_sym_COLON_DQUOTE] = ACTIONS(4600), + [anon_sym_BQUOTE] = ACTIONS(4600), + [anon_sym_LBRACK] = ACTIONS(4600), + [anon_sym_COMMA] = ACTIONS(4600), + [anon_sym_DASH_GT] = ACTIONS(4600), + [anon_sym_annotation] = ACTIONS(4598), + [anon_sym_end] = ACTIONS(4598), + [anon_sym_AT_LBRACK] = ACTIONS(4600), + [anon_sym_private] = ACTIONS(4598), + [anon_sym_module] = ACTIONS(4598), + [anon_sym_abstract] = ACTIONS(4598), + [anon_sym_class] = ACTIONS(4598), + [anon_sym_struct] = ACTIONS(4598), + [anon_sym_enum] = ACTIONS(4598), + [anon_sym_STAR] = ACTIONS(4600), + [anon_sym_PIPE] = ACTIONS(4600), + [anon_sym_BANG] = ACTIONS(4600), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_def] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4600), + [anon_sym_protected] = ACTIONS(4598), + [anon_sym_include] = ACTIONS(4598), + [anon_sym_extend] = ACTIONS(4598), + [anon_sym_forall] = ACTIONS(4598), + [anon_sym_return] = ACTIONS(4598), + [anon_sym_next] = ACTIONS(4598), + [anon_sym_break] = ACTIONS(4598), + [anon_sym_with] = ACTIONS(4598), + [anon_sym_yield] = ACTIONS(4598), + [anon_sym_typeof] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(4598), + [anon_sym_instance_sizeof] = ACTIONS(4598), + [anon_sym_offsetof] = ACTIONS(4598), + [sym__constant_segment] = ACTIONS(4600), + [anon_sym_COLON_COLON] = ACTIONS(4600), + [anon_sym___LINE__] = ACTIONS(4598), + [anon_sym___END_LINE__] = ACTIONS(4598), + [anon_sym___FILE__] = ACTIONS(4598), + [anon_sym___DIR__] = ACTIONS(4598), + [sym_special_variable] = ACTIONS(4600), + [sym_identifier_method_call] = ACTIONS(4600), + [sym_instance_var] = ACTIONS(4600), + [sym_class_var] = ACTIONS(4600), + [sym_self] = ACTIONS(4598), + [anon_sym_LPAREN2] = ACTIONS(4600), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_alias] = ACTIONS(4598), + [anon_sym_begin] = ACTIONS(4598), + [anon_sym_while] = ACTIONS(4598), + [anon_sym_until] = ACTIONS(4598), + [anon_sym_else] = ACTIONS(4598), + [anon_sym_require] = ACTIONS(4598), + [anon_sym_case] = ACTIONS(4598), + [anon_sym_select] = ACTIONS(4598), + [sym__line_break] = ACTIONS(4600), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4600), + [sym__start_of_named_tuple] = ACTIONS(4600), + [sym_unary_plus] = ACTIONS(4600), + [sym_unary_minus] = ACTIONS(4600), + [sym_unary_wrapping_plus] = ACTIONS(4600), + [sym_unary_wrapping_minus] = ACTIONS(4600), + [sym__beginless_range_operator] = ACTIONS(4600), + [sym__regex_start] = ACTIONS(4600), + [sym__regular_if_keyword] = ACTIONS(4600), + [sym__regular_unless_keyword] = ACTIONS(4600), + [sym__regular_rescue_keyword] = ACTIONS(4600), + [sym__regular_ensure_keyword] = ACTIONS(4600), + [sym__string_literal_start] = ACTIONS(4600), + [sym__string_percent_literal_start] = ACTIONS(4600), + [sym__command_percent_literal_start] = ACTIONS(4600), + [sym__string_array_percent_literal_start] = ACTIONS(4600), + [sym__symbol_array_percent_literal_start] = ACTIONS(4600), + [sym__regex_percent_literal_start] = ACTIONS(4600), + [sym_heredoc_start] = ACTIONS(4600), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2006] = { + [sym_heredoc_body] = STATE(2006), + [aux_sym_union_type_repeat1] = STATE(2004), + [sym_identifier] = ACTIONS(4638), + [anon_sym_SEMI] = ACTIONS(4640), + [anon_sym_LPAREN] = ACTIONS(4640), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4638), + [sym_true] = ACTIONS(4638), + [sym_false] = ACTIONS(4638), + [aux_sym_integer_token2] = ACTIONS(4638), + [aux_sym_float_token2] = ACTIONS(4640), + [anon_sym_SQUOTE] = ACTIONS(4640), + [sym_operator_symbol] = ACTIONS(4640), + [sym_unquoted_symbol] = ACTIONS(4640), + [anon_sym_COLON_DQUOTE] = ACTIONS(4640), + [anon_sym_BQUOTE] = ACTIONS(4640), + [anon_sym_LBRACK] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4640), + [anon_sym_DASH_GT] = ACTIONS(4640), + [anon_sym_annotation] = ACTIONS(4638), + [anon_sym_end] = ACTIONS(4638), + [anon_sym_AT_LBRACK] = ACTIONS(4640), + [anon_sym_private] = ACTIONS(4638), + [anon_sym_module] = ACTIONS(4638), + [anon_sym_abstract] = ACTIONS(4638), + [anon_sym_class] = ACTIONS(4638), + [anon_sym_struct] = ACTIONS(4638), + [anon_sym_enum] = ACTIONS(4638), + [anon_sym_STAR] = ACTIONS(4611), + [anon_sym_PIPE] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4640), + [anon_sym_TILDE] = ACTIONS(4640), + [anon_sym_def] = ACTIONS(4638), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_protected] = ACTIONS(4638), + [anon_sym_include] = ACTIONS(4638), + [anon_sym_extend] = ACTIONS(4638), + [anon_sym_forall] = ACTIONS(4638), + [anon_sym_return] = ACTIONS(4638), + [anon_sym_next] = ACTIONS(4638), + [anon_sym_break] = ACTIONS(4638), + [anon_sym_with] = ACTIONS(4638), + [anon_sym_yield] = ACTIONS(4638), + [anon_sym_typeof] = ACTIONS(4638), + [anon_sym_sizeof] = ACTIONS(4638), + [anon_sym_instance_sizeof] = ACTIONS(4638), + [anon_sym_offsetof] = ACTIONS(4638), + [sym__constant_segment] = ACTIONS(4640), + [anon_sym_COLON_COLON] = ACTIONS(4640), + [anon_sym___LINE__] = ACTIONS(4638), + [anon_sym___END_LINE__] = ACTIONS(4638), + [anon_sym___FILE__] = ACTIONS(4638), + [anon_sym___DIR__] = ACTIONS(4638), + [sym_special_variable] = ACTIONS(4640), + [sym_identifier_method_call] = ACTIONS(4640), + [sym_instance_var] = ACTIONS(4640), + [sym_class_var] = ACTIONS(4640), + [sym_self] = ACTIONS(4638), + [anon_sym_QMARK] = ACTIONS(4617), + [anon_sym_alias] = ACTIONS(4638), + [anon_sym_begin] = ACTIONS(4638), + [anon_sym_while] = ACTIONS(4638), + [anon_sym_until] = ACTIONS(4638), + [anon_sym_else] = ACTIONS(4638), + [anon_sym_require] = ACTIONS(4638), + [anon_sym_case] = ACTIONS(4638), + [anon_sym_select] = ACTIONS(4638), + [sym__line_break] = ACTIONS(4640), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4640), + [sym__start_of_named_tuple] = ACTIONS(4640), + [sym_unary_plus] = ACTIONS(4640), + [sym_unary_minus] = ACTIONS(4640), + [sym_unary_wrapping_plus] = ACTIONS(4640), + [sym_unary_wrapping_minus] = ACTIONS(4640), + [sym__beginless_range_operator] = ACTIONS(4640), + [sym__regex_start] = ACTIONS(4640), + [sym__regular_if_keyword] = ACTIONS(4640), + [sym__regular_unless_keyword] = ACTIONS(4640), + [sym__regular_rescue_keyword] = ACTIONS(4640), + [sym__regular_ensure_keyword] = ACTIONS(4640), + [sym__string_literal_start] = ACTIONS(4640), + [sym__string_percent_literal_start] = ACTIONS(4640), + [sym__command_percent_literal_start] = ACTIONS(4640), + [sym__string_array_percent_literal_start] = ACTIONS(4640), + [sym__symbol_array_percent_literal_start] = ACTIONS(4640), + [sym__regex_percent_literal_start] = ACTIONS(4640), + [sym_heredoc_start] = ACTIONS(4640), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2007] = { + [sym_heredoc_body] = STATE(2007), + [aux_sym_union_type_repeat1] = STATE(2004), [sym_identifier] = ACTIONS(4627), [anon_sym_SEMI] = ACTIONS(4629), [anon_sym_LPAREN] = ACTIONS(4629), @@ -306814,6 +310352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(4627), [anon_sym_require] = ACTIONS(4627), [anon_sym_case] = ACTIONS(4627), + [anon_sym_select] = ACTIONS(4627), [sym__line_break] = ACTIONS(4629), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(4629), @@ -306837,3035 +310376,2645 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4629), [sym__heredoc_body_start] = ACTIONS(7), }, + [2008] = { + [sym_heredoc_body] = STATE(2008), + [sym_identifier] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4642), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4642), + [sym_true] = ACTIONS(4642), + [sym_false] = ACTIONS(4642), + [aux_sym_integer_token2] = ACTIONS(4642), + [aux_sym_float_token2] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4644), + [sym_operator_symbol] = ACTIONS(4644), + [sym_unquoted_symbol] = ACTIONS(4644), + [anon_sym_COLON_DQUOTE] = ACTIONS(4644), + [anon_sym_BQUOTE] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_COMMA] = ACTIONS(4644), + [anon_sym_DASH_GT] = ACTIONS(4644), + [anon_sym_annotation] = ACTIONS(4642), + [anon_sym_end] = ACTIONS(4642), + [anon_sym_AT_LBRACK] = ACTIONS(4644), + [anon_sym_private] = ACTIONS(4642), + [anon_sym_module] = ACTIONS(4642), + [anon_sym_abstract] = ACTIONS(4642), + [anon_sym_class] = ACTIONS(4642), + [anon_sym_struct] = ACTIONS(4642), + [anon_sym_enum] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4644), + [anon_sym_PIPE] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_TILDE] = ACTIONS(4644), + [anon_sym_def] = ACTIONS(4642), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_protected] = ACTIONS(4642), + [anon_sym_include] = ACTIONS(4642), + [anon_sym_extend] = ACTIONS(4642), + [anon_sym_forall] = ACTIONS(4642), + [anon_sym_return] = ACTIONS(4642), + [anon_sym_next] = ACTIONS(4642), + [anon_sym_break] = ACTIONS(4642), + [anon_sym_with] = ACTIONS(4642), + [anon_sym_yield] = ACTIONS(4642), + [anon_sym_typeof] = ACTIONS(4642), + [anon_sym_sizeof] = ACTIONS(4642), + [anon_sym_instance_sizeof] = ACTIONS(4642), + [anon_sym_offsetof] = ACTIONS(4642), + [sym__constant_segment] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4644), + [anon_sym___LINE__] = ACTIONS(4642), + [anon_sym___END_LINE__] = ACTIONS(4642), + [anon_sym___FILE__] = ACTIONS(4642), + [anon_sym___DIR__] = ACTIONS(4642), + [sym_special_variable] = ACTIONS(4644), + [sym_identifier_method_call] = ACTIONS(4644), + [sym_instance_var] = ACTIONS(4644), + [sym_class_var] = ACTIONS(4644), + [sym_self] = ACTIONS(4642), + [anon_sym_LPAREN2] = ACTIONS(4646), + [anon_sym_QMARK] = ACTIONS(4644), + [anon_sym_alias] = ACTIONS(4642), + [anon_sym_begin] = ACTIONS(4642), + [anon_sym_while] = ACTIONS(4642), + [anon_sym_until] = ACTIONS(4642), + [anon_sym_else] = ACTIONS(4642), + [anon_sym_require] = ACTIONS(4642), + [anon_sym_case] = ACTIONS(4642), + [anon_sym_select] = ACTIONS(4642), + [sym__line_break] = ACTIONS(4644), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4644), + [sym__start_of_named_tuple] = ACTIONS(4644), + [sym_unary_plus] = ACTIONS(4644), + [sym_unary_minus] = ACTIONS(4644), + [sym_unary_wrapping_plus] = ACTIONS(4644), + [sym_unary_wrapping_minus] = ACTIONS(4644), + [sym__beginless_range_operator] = ACTIONS(4644), + [sym__regex_start] = ACTIONS(4644), + [sym__regular_if_keyword] = ACTIONS(4644), + [sym__regular_unless_keyword] = ACTIONS(4644), + [sym__regular_rescue_keyword] = ACTIONS(4644), + [sym__regular_ensure_keyword] = ACTIONS(4644), + [sym__string_literal_start] = ACTIONS(4644), + [sym__string_percent_literal_start] = ACTIONS(4644), + [sym__command_percent_literal_start] = ACTIONS(4644), + [sym__string_array_percent_literal_start] = ACTIONS(4644), + [sym__symbol_array_percent_literal_start] = ACTIONS(4644), + [sym__regex_percent_literal_start] = ACTIONS(4644), + [sym_heredoc_start] = ACTIONS(4644), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2009] = { + [sym_heredoc_body] = STATE(2009), + [aux_sym_union_type_repeat1] = STATE(2004), + [sym_identifier] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym_LPAREN] = ACTIONS(4650), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4648), + [sym_true] = ACTIONS(4648), + [sym_false] = ACTIONS(4648), + [aux_sym_integer_token2] = ACTIONS(4648), + [aux_sym_float_token2] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4650), + [sym_operator_symbol] = ACTIONS(4650), + [sym_unquoted_symbol] = ACTIONS(4650), + [anon_sym_COLON_DQUOTE] = ACTIONS(4650), + [anon_sym_BQUOTE] = ACTIONS(4650), + [anon_sym_LBRACK] = ACTIONS(4609), + [anon_sym_COMMA] = ACTIONS(4650), + [anon_sym_DASH_GT] = ACTIONS(4650), + [anon_sym_annotation] = ACTIONS(4648), + [anon_sym_end] = ACTIONS(4648), + [anon_sym_AT_LBRACK] = ACTIONS(4650), + [anon_sym_private] = ACTIONS(4648), + [anon_sym_module] = ACTIONS(4648), + [anon_sym_abstract] = ACTIONS(4648), + [anon_sym_class] = ACTIONS(4648), + [anon_sym_struct] = ACTIONS(4648), + [anon_sym_enum] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4611), + [anon_sym_PIPE] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4650), + [anon_sym_TILDE] = ACTIONS(4650), + [anon_sym_def] = ACTIONS(4648), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_protected] = ACTIONS(4648), + [anon_sym_include] = ACTIONS(4648), + [anon_sym_extend] = ACTIONS(4648), + [anon_sym_forall] = ACTIONS(4648), + [anon_sym_return] = ACTIONS(4648), + [anon_sym_next] = ACTIONS(4648), + [anon_sym_break] = ACTIONS(4648), + [anon_sym_with] = ACTIONS(4648), + [anon_sym_yield] = ACTIONS(4648), + [anon_sym_typeof] = ACTIONS(4648), + [anon_sym_sizeof] = ACTIONS(4648), + [anon_sym_instance_sizeof] = ACTIONS(4648), + [anon_sym_offsetof] = ACTIONS(4648), + [sym__constant_segment] = ACTIONS(4650), + [anon_sym_COLON_COLON] = ACTIONS(4650), + [anon_sym___LINE__] = ACTIONS(4648), + [anon_sym___END_LINE__] = ACTIONS(4648), + [anon_sym___FILE__] = ACTIONS(4648), + [anon_sym___DIR__] = ACTIONS(4648), + [sym_special_variable] = ACTIONS(4650), + [sym_identifier_method_call] = ACTIONS(4650), + [sym_instance_var] = ACTIONS(4650), + [sym_class_var] = ACTIONS(4650), + [sym_self] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4617), + [anon_sym_alias] = ACTIONS(4648), + [anon_sym_begin] = ACTIONS(4648), + [anon_sym_while] = ACTIONS(4648), + [anon_sym_until] = ACTIONS(4648), + [anon_sym_else] = ACTIONS(4648), + [anon_sym_require] = ACTIONS(4648), + [anon_sym_case] = ACTIONS(4648), + [anon_sym_select] = ACTIONS(4648), + [sym__line_break] = ACTIONS(4650), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4650), + [sym__start_of_named_tuple] = ACTIONS(4650), + [sym_unary_plus] = ACTIONS(4650), + [sym_unary_minus] = ACTIONS(4650), + [sym_unary_wrapping_plus] = ACTIONS(4650), + [sym_unary_wrapping_minus] = ACTIONS(4650), + [sym__beginless_range_operator] = ACTIONS(4650), + [sym__regex_start] = ACTIONS(4650), + [sym__regular_if_keyword] = ACTIONS(4650), + [sym__regular_unless_keyword] = ACTIONS(4650), + [sym__regular_rescue_keyword] = ACTIONS(4650), + [sym__regular_ensure_keyword] = ACTIONS(4650), + [sym__string_literal_start] = ACTIONS(4650), + [sym__string_percent_literal_start] = ACTIONS(4650), + [sym__command_percent_literal_start] = ACTIONS(4650), + [sym__string_array_percent_literal_start] = ACTIONS(4650), + [sym__symbol_array_percent_literal_start] = ACTIONS(4650), + [sym__regex_percent_literal_start] = ACTIONS(4650), + [sym_heredoc_start] = ACTIONS(4650), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2010] = { + [sym_heredoc_body] = STATE(2010), + [sym_identifier] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4652), + [sym_true] = ACTIONS(4652), + [sym_false] = ACTIONS(4652), + [aux_sym_integer_token2] = ACTIONS(4652), + [aux_sym_float_token2] = ACTIONS(4654), + [anon_sym_SQUOTE] = ACTIONS(4654), + [sym_operator_symbol] = ACTIONS(4654), + [sym_unquoted_symbol] = ACTIONS(4654), + [anon_sym_COLON_DQUOTE] = ACTIONS(4654), + [anon_sym_BQUOTE] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_DASH_GT] = ACTIONS(4654), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_end] = ACTIONS(4652), + [anon_sym_AT_LBRACK] = ACTIONS(4654), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_module] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_class] = ACTIONS(4652), + [anon_sym_struct] = ACTIONS(4652), + [anon_sym_enum] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4654), + [anon_sym_PIPE] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4654), + [anon_sym_TILDE] = ACTIONS(4654), + [anon_sym_def] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4654), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_include] = ACTIONS(4652), + [anon_sym_extend] = ACTIONS(4652), + [anon_sym_forall] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_next] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_with] = ACTIONS(4652), + [anon_sym_yield] = ACTIONS(4652), + [anon_sym_typeof] = ACTIONS(4652), + [anon_sym_sizeof] = ACTIONS(4652), + [anon_sym_instance_sizeof] = ACTIONS(4652), + [anon_sym_offsetof] = ACTIONS(4652), + [sym__constant_segment] = ACTIONS(4654), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym___LINE__] = ACTIONS(4652), + [anon_sym___END_LINE__] = ACTIONS(4652), + [anon_sym___FILE__] = ACTIONS(4652), + [anon_sym___DIR__] = ACTIONS(4652), + [sym_special_variable] = ACTIONS(4654), + [sym_identifier_method_call] = ACTIONS(4654), + [sym_instance_var] = ACTIONS(4654), + [sym_class_var] = ACTIONS(4654), + [sym_self] = ACTIONS(4652), + [anon_sym_QMARK] = ACTIONS(4654), + [anon_sym_alias] = ACTIONS(4652), + [anon_sym_begin] = ACTIONS(4652), + [anon_sym_while] = ACTIONS(4652), + [anon_sym_until] = ACTIONS(4652), + [anon_sym_else] = ACTIONS(4652), + [anon_sym_require] = ACTIONS(4652), + [anon_sym_case] = ACTIONS(4652), + [anon_sym_select] = ACTIONS(4652), + [sym__line_break] = ACTIONS(4654), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4654), + [sym__start_of_named_tuple] = ACTIONS(4654), + [sym_unary_plus] = ACTIONS(4654), + [sym_unary_minus] = ACTIONS(4654), + [sym_unary_wrapping_plus] = ACTIONS(4654), + [sym_unary_wrapping_minus] = ACTIONS(4654), + [sym__beginless_range_operator] = ACTIONS(4654), + [sym__regex_start] = ACTIONS(4654), + [sym__regular_if_keyword] = ACTIONS(4654), + [sym__regular_unless_keyword] = ACTIONS(4654), + [sym__regular_rescue_keyword] = ACTIONS(4654), + [sym__regular_ensure_keyword] = ACTIONS(4654), + [sym__string_literal_start] = ACTIONS(4654), + [sym__string_percent_literal_start] = ACTIONS(4654), + [sym__command_percent_literal_start] = ACTIONS(4654), + [sym__string_array_percent_literal_start] = ACTIONS(4654), + [sym__symbol_array_percent_literal_start] = ACTIONS(4654), + [sym__regex_percent_literal_start] = ACTIONS(4654), + [sym_heredoc_start] = ACTIONS(4654), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2011] = { + [sym_heredoc_body] = STATE(2011), + [sym_identifier] = ACTIONS(4656), + [anon_sym_SEMI] = ACTIONS(4658), + [anon_sym_LPAREN] = ACTIONS(4658), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4656), + [sym_true] = ACTIONS(4656), + [sym_false] = ACTIONS(4656), + [aux_sym_integer_token2] = ACTIONS(4656), + [aux_sym_float_token2] = ACTIONS(4658), + [anon_sym_SQUOTE] = ACTIONS(4658), + [sym_operator_symbol] = ACTIONS(4658), + [sym_unquoted_symbol] = ACTIONS(4658), + [anon_sym_COLON_DQUOTE] = ACTIONS(4658), + [anon_sym_BQUOTE] = ACTIONS(4658), + [anon_sym_LBRACK] = ACTIONS(4658), + [anon_sym_COMMA] = ACTIONS(4658), + [anon_sym_DASH_GT] = ACTIONS(4658), + [anon_sym_annotation] = ACTIONS(4656), + [anon_sym_end] = ACTIONS(4656), + [anon_sym_AT_LBRACK] = ACTIONS(4658), + [anon_sym_private] = ACTIONS(4656), + [anon_sym_module] = ACTIONS(4656), + [anon_sym_abstract] = ACTIONS(4656), + [anon_sym_class] = ACTIONS(4656), + [anon_sym_struct] = ACTIONS(4656), + [anon_sym_enum] = ACTIONS(4656), + [anon_sym_STAR] = ACTIONS(4658), + [anon_sym_PIPE] = ACTIONS(4658), + [anon_sym_BANG] = ACTIONS(4658), + [anon_sym_TILDE] = ACTIONS(4658), + [anon_sym_def] = ACTIONS(4656), + [anon_sym_DOT] = ACTIONS(4658), + [anon_sym_protected] = ACTIONS(4656), + [anon_sym_include] = ACTIONS(4656), + [anon_sym_extend] = ACTIONS(4656), + [anon_sym_forall] = ACTIONS(4656), + [anon_sym_return] = ACTIONS(4656), + [anon_sym_next] = ACTIONS(4656), + [anon_sym_break] = ACTIONS(4656), + [anon_sym_with] = ACTIONS(4656), + [anon_sym_yield] = ACTIONS(4656), + [anon_sym_typeof] = ACTIONS(4656), + [anon_sym_sizeof] = ACTIONS(4656), + [anon_sym_instance_sizeof] = ACTIONS(4656), + [anon_sym_offsetof] = ACTIONS(4656), + [sym__constant_segment] = ACTIONS(4658), + [anon_sym_COLON_COLON] = ACTIONS(4658), + [anon_sym___LINE__] = ACTIONS(4656), + [anon_sym___END_LINE__] = ACTIONS(4656), + [anon_sym___FILE__] = ACTIONS(4656), + [anon_sym___DIR__] = ACTIONS(4656), + [sym_special_variable] = ACTIONS(4658), + [sym_identifier_method_call] = ACTIONS(4658), + [sym_instance_var] = ACTIONS(4658), + [sym_class_var] = ACTIONS(4658), + [sym_self] = ACTIONS(4656), + [anon_sym_QMARK] = ACTIONS(4658), + [anon_sym_alias] = ACTIONS(4656), + [anon_sym_begin] = ACTIONS(4656), + [anon_sym_while] = ACTIONS(4656), + [anon_sym_until] = ACTIONS(4656), + [anon_sym_else] = ACTIONS(4656), + [anon_sym_require] = ACTIONS(4656), + [anon_sym_case] = ACTIONS(4656), + [anon_sym_select] = ACTIONS(4656), + [sym__line_break] = ACTIONS(4658), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4658), + [sym__start_of_named_tuple] = ACTIONS(4658), + [sym_unary_plus] = ACTIONS(4658), + [sym_unary_minus] = ACTIONS(4658), + [sym_unary_wrapping_plus] = ACTIONS(4658), + [sym_unary_wrapping_minus] = ACTIONS(4658), + [sym__beginless_range_operator] = ACTIONS(4658), + [sym__regex_start] = ACTIONS(4658), + [sym__regular_if_keyword] = ACTIONS(4658), + [sym__regular_unless_keyword] = ACTIONS(4658), + [sym__regular_rescue_keyword] = ACTIONS(4658), + [sym__regular_ensure_keyword] = ACTIONS(4658), + [sym__string_literal_start] = ACTIONS(4658), + [sym__string_percent_literal_start] = ACTIONS(4658), + [sym__command_percent_literal_start] = ACTIONS(4658), + [sym__string_array_percent_literal_start] = ACTIONS(4658), + [sym__symbol_array_percent_literal_start] = ACTIONS(4658), + [sym__regex_percent_literal_start] = ACTIONS(4658), + [sym_heredoc_start] = ACTIONS(4658), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2012] = { + [sym_heredoc_body] = STATE(2012), + [sym_identifier] = ACTIONS(4660), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4660), + [sym_true] = ACTIONS(4660), + [sym_false] = ACTIONS(4660), + [aux_sym_integer_token2] = ACTIONS(4660), + [aux_sym_float_token2] = ACTIONS(4662), + [anon_sym_SQUOTE] = ACTIONS(4662), + [sym_operator_symbol] = ACTIONS(4662), + [sym_unquoted_symbol] = ACTIONS(4662), + [anon_sym_COLON_DQUOTE] = ACTIONS(4662), + [anon_sym_BQUOTE] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_DASH_GT] = ACTIONS(4662), + [anon_sym_annotation] = ACTIONS(4660), + [anon_sym_end] = ACTIONS(4660), + [anon_sym_AT_LBRACK] = ACTIONS(4662), + [anon_sym_private] = ACTIONS(4660), + [anon_sym_module] = ACTIONS(4660), + [anon_sym_abstract] = ACTIONS(4660), + [anon_sym_class] = ACTIONS(4660), + [anon_sym_struct] = ACTIONS(4660), + [anon_sym_enum] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4662), + [anon_sym_PIPE] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(4662), + [anon_sym_TILDE] = ACTIONS(4662), + [anon_sym_def] = ACTIONS(4660), + [anon_sym_DOT] = ACTIONS(4662), + [anon_sym_protected] = ACTIONS(4660), + [anon_sym_include] = ACTIONS(4660), + [anon_sym_extend] = ACTIONS(4660), + [anon_sym_forall] = ACTIONS(4660), + [anon_sym_return] = ACTIONS(4660), + [anon_sym_next] = ACTIONS(4660), + [anon_sym_break] = ACTIONS(4660), + [anon_sym_with] = ACTIONS(4660), + [anon_sym_yield] = ACTIONS(4660), + [anon_sym_typeof] = ACTIONS(4660), + [anon_sym_sizeof] = ACTIONS(4660), + [anon_sym_instance_sizeof] = ACTIONS(4660), + [anon_sym_offsetof] = ACTIONS(4660), + [sym__constant_segment] = ACTIONS(4662), + [anon_sym_COLON_COLON] = ACTIONS(4662), + [anon_sym___LINE__] = ACTIONS(4660), + [anon_sym___END_LINE__] = ACTIONS(4660), + [anon_sym___FILE__] = ACTIONS(4660), + [anon_sym___DIR__] = ACTIONS(4660), + [sym_special_variable] = ACTIONS(4662), + [sym_identifier_method_call] = ACTIONS(4662), + [sym_instance_var] = ACTIONS(4662), + [sym_class_var] = ACTIONS(4662), + [sym_self] = ACTIONS(4660), + [anon_sym_QMARK] = ACTIONS(4662), + [anon_sym_alias] = ACTIONS(4660), + [anon_sym_begin] = ACTIONS(4660), + [anon_sym_while] = ACTIONS(4660), + [anon_sym_until] = ACTIONS(4660), + [anon_sym_else] = ACTIONS(4660), + [anon_sym_require] = ACTIONS(4660), + [anon_sym_case] = ACTIONS(4660), + [anon_sym_select] = ACTIONS(4660), + [sym__line_break] = ACTIONS(4662), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4662), + [sym__start_of_named_tuple] = ACTIONS(4662), + [sym_unary_plus] = ACTIONS(4662), + [sym_unary_minus] = ACTIONS(4662), + [sym_unary_wrapping_plus] = ACTIONS(4662), + [sym_unary_wrapping_minus] = ACTIONS(4662), + [sym__beginless_range_operator] = ACTIONS(4662), + [sym__regex_start] = ACTIONS(4662), + [sym__regular_if_keyword] = ACTIONS(4662), + [sym__regular_unless_keyword] = ACTIONS(4662), + [sym__regular_rescue_keyword] = ACTIONS(4662), + [sym__regular_ensure_keyword] = ACTIONS(4662), + [sym__string_literal_start] = ACTIONS(4662), + [sym__string_percent_literal_start] = ACTIONS(4662), + [sym__command_percent_literal_start] = ACTIONS(4662), + [sym__string_array_percent_literal_start] = ACTIONS(4662), + [sym__symbol_array_percent_literal_start] = ACTIONS(4662), + [sym__regex_percent_literal_start] = ACTIONS(4662), + [sym_heredoc_start] = ACTIONS(4662), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2013] = { + [sym_heredoc_body] = STATE(2013), + [sym_identifier] = ACTIONS(4664), + [anon_sym_SEMI] = ACTIONS(4666), + [anon_sym_LPAREN] = ACTIONS(4666), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4664), + [sym_true] = ACTIONS(4664), + [sym_false] = ACTIONS(4664), + [aux_sym_integer_token2] = ACTIONS(4664), + [aux_sym_float_token2] = ACTIONS(4666), + [anon_sym_SQUOTE] = ACTIONS(4666), + [sym_operator_symbol] = ACTIONS(4666), + [sym_unquoted_symbol] = ACTIONS(4666), + [anon_sym_COLON_DQUOTE] = ACTIONS(4666), + [anon_sym_BQUOTE] = ACTIONS(4666), + [anon_sym_LBRACK] = ACTIONS(4666), + [anon_sym_COMMA] = ACTIONS(4666), + [anon_sym_DASH_GT] = ACTIONS(4666), + [anon_sym_annotation] = ACTIONS(4664), + [anon_sym_end] = ACTIONS(4664), + [anon_sym_AT_LBRACK] = ACTIONS(4666), + [anon_sym_private] = ACTIONS(4664), + [anon_sym_module] = ACTIONS(4664), + [anon_sym_abstract] = ACTIONS(4664), + [anon_sym_class] = ACTIONS(4664), + [anon_sym_struct] = ACTIONS(4664), + [anon_sym_enum] = ACTIONS(4664), + [anon_sym_STAR] = ACTIONS(4666), + [anon_sym_PIPE] = ACTIONS(4666), + [anon_sym_BANG] = ACTIONS(4666), + [anon_sym_TILDE] = ACTIONS(4666), + [anon_sym_def] = ACTIONS(4664), + [anon_sym_DOT] = ACTIONS(4666), + [anon_sym_protected] = ACTIONS(4664), + [anon_sym_include] = ACTIONS(4664), + [anon_sym_extend] = ACTIONS(4664), + [anon_sym_forall] = ACTIONS(4664), + [anon_sym_return] = ACTIONS(4664), + [anon_sym_next] = ACTIONS(4664), + [anon_sym_break] = ACTIONS(4664), + [anon_sym_with] = ACTIONS(4664), + [anon_sym_yield] = ACTIONS(4664), + [anon_sym_typeof] = ACTIONS(4664), + [anon_sym_sizeof] = ACTIONS(4664), + [anon_sym_instance_sizeof] = ACTIONS(4664), + [anon_sym_offsetof] = ACTIONS(4664), + [sym__constant_segment] = ACTIONS(4666), + [anon_sym_COLON_COLON] = ACTIONS(4666), + [anon_sym___LINE__] = ACTIONS(4664), + [anon_sym___END_LINE__] = ACTIONS(4664), + [anon_sym___FILE__] = ACTIONS(4664), + [anon_sym___DIR__] = ACTIONS(4664), + [sym_special_variable] = ACTIONS(4666), + [sym_identifier_method_call] = ACTIONS(4666), + [sym_instance_var] = ACTIONS(4666), + [sym_class_var] = ACTIONS(4666), + [sym_self] = ACTIONS(4664), + [anon_sym_QMARK] = ACTIONS(4666), + [anon_sym_alias] = ACTIONS(4664), + [anon_sym_begin] = ACTIONS(4664), + [anon_sym_while] = ACTIONS(4664), + [anon_sym_until] = ACTIONS(4664), + [anon_sym_else] = ACTIONS(4664), + [anon_sym_require] = ACTIONS(4664), + [anon_sym_case] = ACTIONS(4664), + [anon_sym_select] = ACTIONS(4664), + [sym__line_break] = ACTIONS(4666), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4666), + [sym__start_of_named_tuple] = ACTIONS(4666), + [sym_unary_plus] = ACTIONS(4666), + [sym_unary_minus] = ACTIONS(4666), + [sym_unary_wrapping_plus] = ACTIONS(4666), + [sym_unary_wrapping_minus] = ACTIONS(4666), + [sym__beginless_range_operator] = ACTIONS(4666), + [sym__regex_start] = ACTIONS(4666), + [sym__regular_if_keyword] = ACTIONS(4666), + [sym__regular_unless_keyword] = ACTIONS(4666), + [sym__regular_rescue_keyword] = ACTIONS(4666), + [sym__regular_ensure_keyword] = ACTIONS(4666), + [sym__string_literal_start] = ACTIONS(4666), + [sym__string_percent_literal_start] = ACTIONS(4666), + [sym__command_percent_literal_start] = ACTIONS(4666), + [sym__string_array_percent_literal_start] = ACTIONS(4666), + [sym__symbol_array_percent_literal_start] = ACTIONS(4666), + [sym__regex_percent_literal_start] = ACTIONS(4666), + [sym_heredoc_start] = ACTIONS(4666), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2014] = { + [sym_heredoc_body] = STATE(2014), + [aux_sym_union_type_repeat1] = STATE(2004), + [sym_identifier] = ACTIONS(4668), + [anon_sym_SEMI] = ACTIONS(4670), + [anon_sym_LPAREN] = ACTIONS(4670), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4668), + [sym_true] = ACTIONS(4668), + [sym_false] = ACTIONS(4668), + [aux_sym_integer_token2] = ACTIONS(4668), + [aux_sym_float_token2] = ACTIONS(4670), + [anon_sym_SQUOTE] = ACTIONS(4670), + [sym_operator_symbol] = ACTIONS(4670), + [sym_unquoted_symbol] = ACTIONS(4670), + [anon_sym_COLON_DQUOTE] = ACTIONS(4670), + [anon_sym_BQUOTE] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4609), + [anon_sym_DASH_GT] = ACTIONS(4670), + [anon_sym_annotation] = ACTIONS(4668), + [anon_sym_end] = ACTIONS(4668), + [anon_sym_AT_LBRACK] = ACTIONS(4670), + [anon_sym_private] = ACTIONS(4668), + [anon_sym_module] = ACTIONS(4668), + [anon_sym_abstract] = ACTIONS(4668), + [anon_sym_class] = ACTIONS(4668), + [anon_sym_struct] = ACTIONS(4668), + [anon_sym_enum] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4611), + [anon_sym_PIPE] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4670), + [anon_sym_TILDE] = ACTIONS(4670), + [anon_sym_def] = ACTIONS(4668), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_protected] = ACTIONS(4668), + [anon_sym_include] = ACTIONS(4668), + [anon_sym_extend] = ACTIONS(4668), + [anon_sym_forall] = ACTIONS(4668), + [anon_sym_return] = ACTIONS(4668), + [anon_sym_next] = ACTIONS(4668), + [anon_sym_break] = ACTIONS(4668), + [anon_sym_with] = ACTIONS(4668), + [anon_sym_yield] = ACTIONS(4668), + [anon_sym_typeof] = ACTIONS(4668), + [anon_sym_sizeof] = ACTIONS(4668), + [anon_sym_instance_sizeof] = ACTIONS(4668), + [anon_sym_offsetof] = ACTIONS(4668), + [sym__constant_segment] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4670), + [anon_sym___LINE__] = ACTIONS(4668), + [anon_sym___END_LINE__] = ACTIONS(4668), + [anon_sym___FILE__] = ACTIONS(4668), + [anon_sym___DIR__] = ACTIONS(4668), + [sym_special_variable] = ACTIONS(4670), + [sym_identifier_method_call] = ACTIONS(4670), + [sym_instance_var] = ACTIONS(4670), + [sym_class_var] = ACTIONS(4670), + [sym_self] = ACTIONS(4668), + [anon_sym_QMARK] = ACTIONS(4617), + [anon_sym_alias] = ACTIONS(4668), + [anon_sym_begin] = ACTIONS(4668), + [anon_sym_while] = ACTIONS(4668), + [anon_sym_until] = ACTIONS(4668), + [anon_sym_else] = ACTIONS(4668), + [anon_sym_require] = ACTIONS(4668), + [anon_sym_case] = ACTIONS(4668), + [anon_sym_select] = ACTIONS(4668), + [sym__line_break] = ACTIONS(4670), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4670), + [sym__start_of_named_tuple] = ACTIONS(4670), + [sym_unary_plus] = ACTIONS(4670), + [sym_unary_minus] = ACTIONS(4670), + [sym_unary_wrapping_plus] = ACTIONS(4670), + [sym_unary_wrapping_minus] = ACTIONS(4670), + [sym__beginless_range_operator] = ACTIONS(4670), + [sym__regex_start] = ACTIONS(4670), + [sym__regular_if_keyword] = ACTIONS(4670), + [sym__regular_unless_keyword] = ACTIONS(4670), + [sym__regular_rescue_keyword] = ACTIONS(4670), + [sym__regular_ensure_keyword] = ACTIONS(4670), + [sym__string_literal_start] = ACTIONS(4670), + [sym__string_percent_literal_start] = ACTIONS(4670), + [sym__command_percent_literal_start] = ACTIONS(4670), + [sym__string_array_percent_literal_start] = ACTIONS(4670), + [sym__symbol_array_percent_literal_start] = ACTIONS(4670), + [sym__regex_percent_literal_start] = ACTIONS(4670), + [sym_heredoc_start] = ACTIONS(4670), + [sym__heredoc_body_start] = ACTIONS(7), + }, [2015] = { [sym_heredoc_body] = STATE(2015), - [sym_identifier] = ACTIONS(4631), - [anon_sym_SEMI] = ACTIONS(4633), - [anon_sym_LPAREN] = ACTIONS(4633), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4631), - [sym_true] = ACTIONS(4631), - [sym_false] = ACTIONS(4631), - [aux_sym_integer_token2] = ACTIONS(4631), - [aux_sym_float_token2] = ACTIONS(4633), - [anon_sym_SQUOTE] = ACTIONS(4633), - [sym_operator_symbol] = ACTIONS(4633), - [sym_unquoted_symbol] = ACTIONS(4633), - [anon_sym_COLON_DQUOTE] = ACTIONS(4633), - [anon_sym_BQUOTE] = ACTIONS(4633), - [anon_sym_LBRACK] = ACTIONS(4633), - [anon_sym_COMMA] = ACTIONS(4633), - [anon_sym_DASH_GT] = ACTIONS(4633), - [anon_sym_annotation] = ACTIONS(4631), - [anon_sym_end] = ACTIONS(4631), - [anon_sym_AT_LBRACK] = ACTIONS(4633), - [anon_sym_private] = ACTIONS(4631), - [anon_sym_module] = ACTIONS(4631), - [anon_sym_abstract] = ACTIONS(4631), - [anon_sym_class] = ACTIONS(4631), - [anon_sym_struct] = ACTIONS(4631), - [anon_sym_enum] = ACTIONS(4631), - [anon_sym_STAR] = ACTIONS(4633), - [anon_sym_PIPE] = ACTIONS(4633), - [anon_sym_BANG] = ACTIONS(4633), - [anon_sym_TILDE] = ACTIONS(4633), - [anon_sym_def] = ACTIONS(4631), - [anon_sym_DOT] = ACTIONS(4633), - [anon_sym_protected] = ACTIONS(4631), - [anon_sym_include] = ACTIONS(4631), - [anon_sym_extend] = ACTIONS(4631), - [anon_sym_forall] = ACTIONS(4631), - [anon_sym_return] = ACTIONS(4631), - [anon_sym_next] = ACTIONS(4631), - [anon_sym_break] = ACTIONS(4631), - [anon_sym_with] = ACTIONS(4631), - [anon_sym_yield] = ACTIONS(4631), - [anon_sym_typeof] = ACTIONS(4631), - [anon_sym_sizeof] = ACTIONS(4631), - [anon_sym_instance_sizeof] = ACTIONS(4631), - [anon_sym_offsetof] = ACTIONS(4631), - [sym__constant_segment] = ACTIONS(4633), - [anon_sym_COLON_COLON] = ACTIONS(4633), - [anon_sym___LINE__] = ACTIONS(4631), - [anon_sym___END_LINE__] = ACTIONS(4631), - [anon_sym___FILE__] = ACTIONS(4631), - [anon_sym___DIR__] = ACTIONS(4631), - [sym_special_variable] = ACTIONS(4633), - [sym_identifier_method_call] = ACTIONS(4633), - [sym_instance_var] = ACTIONS(4633), - [sym_class_var] = ACTIONS(4633), - [sym_self] = ACTIONS(4631), - [anon_sym_QMARK] = ACTIONS(4633), - [anon_sym_alias] = ACTIONS(4631), - [anon_sym_begin] = ACTIONS(4631), - [anon_sym_while] = ACTIONS(4631), - [anon_sym_until] = ACTIONS(4631), - [anon_sym_else] = ACTIONS(4631), - [anon_sym_require] = ACTIONS(4631), - [anon_sym_case] = ACTIONS(4631), - [sym__line_break] = ACTIONS(4633), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4633), - [sym__start_of_named_tuple] = ACTIONS(4633), - [sym_unary_plus] = ACTIONS(4633), - [sym_unary_minus] = ACTIONS(4633), - [sym_unary_wrapping_plus] = ACTIONS(4633), - [sym_unary_wrapping_minus] = ACTIONS(4633), - [sym__beginless_range_operator] = ACTIONS(4633), - [sym__regex_start] = ACTIONS(4633), - [sym__regular_if_keyword] = ACTIONS(4633), - [sym__regular_unless_keyword] = ACTIONS(4633), - [sym__regular_rescue_keyword] = ACTIONS(4633), - [sym__regular_ensure_keyword] = ACTIONS(4633), - [sym__string_literal_start] = ACTIONS(4633), - [sym__string_percent_literal_start] = ACTIONS(4633), - [sym__command_percent_literal_start] = ACTIONS(4633), - [sym__string_array_percent_literal_start] = ACTIONS(4633), - [sym__symbol_array_percent_literal_start] = ACTIONS(4633), - [sym__regex_percent_literal_start] = ACTIONS(4633), - [sym_heredoc_start] = ACTIONS(4633), + [sym_identifier] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4674), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4672), + [sym_true] = ACTIONS(4672), + [sym_false] = ACTIONS(4672), + [aux_sym_integer_token2] = ACTIONS(4672), + [aux_sym_float_token2] = ACTIONS(4674), + [anon_sym_SQUOTE] = ACTIONS(4674), + [sym_operator_symbol] = ACTIONS(4674), + [sym_unquoted_symbol] = ACTIONS(4674), + [anon_sym_COLON_DQUOTE] = ACTIONS(4674), + [anon_sym_BQUOTE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_DASH_GT] = ACTIONS(4674), + [anon_sym_annotation] = ACTIONS(4672), + [anon_sym_end] = ACTIONS(4672), + [anon_sym_AT_LBRACK] = ACTIONS(4674), + [anon_sym_private] = ACTIONS(4672), + [anon_sym_module] = ACTIONS(4672), + [anon_sym_abstract] = ACTIONS(4672), + [anon_sym_class] = ACTIONS(4672), + [anon_sym_struct] = ACTIONS(4672), + [anon_sym_enum] = ACTIONS(4672), + [anon_sym_STAR] = ACTIONS(4674), + [anon_sym_PIPE] = ACTIONS(4674), + [anon_sym_BANG] = ACTIONS(4674), + [anon_sym_TILDE] = ACTIONS(4674), + [anon_sym_def] = ACTIONS(4672), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_protected] = ACTIONS(4672), + [anon_sym_include] = ACTIONS(4672), + [anon_sym_extend] = ACTIONS(4672), + [anon_sym_forall] = ACTIONS(4672), + [anon_sym_return] = ACTIONS(4672), + [anon_sym_next] = ACTIONS(4672), + [anon_sym_break] = ACTIONS(4672), + [anon_sym_with] = ACTIONS(4672), + [anon_sym_yield] = ACTIONS(4672), + [anon_sym_typeof] = ACTIONS(4672), + [anon_sym_sizeof] = ACTIONS(4672), + [anon_sym_instance_sizeof] = ACTIONS(4672), + [anon_sym_offsetof] = ACTIONS(4672), + [sym__constant_segment] = ACTIONS(4674), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym___LINE__] = ACTIONS(4672), + [anon_sym___END_LINE__] = ACTIONS(4672), + [anon_sym___FILE__] = ACTIONS(4672), + [anon_sym___DIR__] = ACTIONS(4672), + [sym_special_variable] = ACTIONS(4674), + [sym_identifier_method_call] = ACTIONS(4674), + [sym_instance_var] = ACTIONS(4674), + [sym_class_var] = ACTIONS(4674), + [sym_self] = ACTIONS(4672), + [anon_sym_QMARK] = ACTIONS(4674), + [anon_sym_alias] = ACTIONS(4672), + [anon_sym_begin] = ACTIONS(4672), + [anon_sym_while] = ACTIONS(4672), + [anon_sym_until] = ACTIONS(4672), + [anon_sym_else] = ACTIONS(4672), + [anon_sym_require] = ACTIONS(4672), + [anon_sym_case] = ACTIONS(4672), + [anon_sym_select] = ACTIONS(4672), + [sym__line_break] = ACTIONS(4674), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4674), + [sym__start_of_named_tuple] = ACTIONS(4674), + [sym_unary_plus] = ACTIONS(4674), + [sym_unary_minus] = ACTIONS(4674), + [sym_unary_wrapping_plus] = ACTIONS(4674), + [sym_unary_wrapping_minus] = ACTIONS(4674), + [sym__beginless_range_operator] = ACTIONS(4674), + [sym__regex_start] = ACTIONS(4674), + [sym__regular_if_keyword] = ACTIONS(4674), + [sym__regular_unless_keyword] = ACTIONS(4674), + [sym__regular_rescue_keyword] = ACTIONS(4674), + [sym__regular_ensure_keyword] = ACTIONS(4674), + [sym__string_literal_start] = ACTIONS(4674), + [sym__string_percent_literal_start] = ACTIONS(4674), + [sym__command_percent_literal_start] = ACTIONS(4674), + [sym__string_array_percent_literal_start] = ACTIONS(4674), + [sym__symbol_array_percent_literal_start] = ACTIONS(4674), + [sym__regex_percent_literal_start] = ACTIONS(4674), + [sym_heredoc_start] = ACTIONS(4674), [sym__heredoc_body_start] = ACTIONS(7), }, [2016] = { [sym_heredoc_body] = STATE(2016), - [sym_identifier] = ACTIONS(4635), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4635), - [sym_true] = ACTIONS(4635), - [sym_false] = ACTIONS(4635), - [aux_sym_integer_token2] = ACTIONS(4635), - [aux_sym_float_token2] = ACTIONS(4637), - [anon_sym_SQUOTE] = ACTIONS(4637), - [sym_operator_symbol] = ACTIONS(4637), - [sym_unquoted_symbol] = ACTIONS(4637), - [anon_sym_COLON_DQUOTE] = ACTIONS(4637), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_annotation] = ACTIONS(4635), - [anon_sym_end] = ACTIONS(4635), - [anon_sym_AT_LBRACK] = ACTIONS(4637), - [anon_sym_private] = ACTIONS(4635), - [anon_sym_module] = ACTIONS(4635), - [anon_sym_abstract] = ACTIONS(4635), - [anon_sym_class] = ACTIONS(4635), - [anon_sym_struct] = ACTIONS(4635), - [anon_sym_enum] = ACTIONS(4635), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_def] = ACTIONS(4635), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_protected] = ACTIONS(4635), - [anon_sym_include] = ACTIONS(4635), - [anon_sym_extend] = ACTIONS(4635), - [anon_sym_forall] = ACTIONS(4635), - [anon_sym_return] = ACTIONS(4635), - [anon_sym_next] = ACTIONS(4635), - [anon_sym_break] = ACTIONS(4635), - [anon_sym_with] = ACTIONS(4635), - [anon_sym_yield] = ACTIONS(4635), - [anon_sym_typeof] = ACTIONS(4635), - [anon_sym_sizeof] = ACTIONS(4635), - [anon_sym_instance_sizeof] = ACTIONS(4635), - [anon_sym_offsetof] = ACTIONS(4635), - [sym__constant_segment] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4637), - [anon_sym___LINE__] = ACTIONS(4635), - [anon_sym___END_LINE__] = ACTIONS(4635), - [anon_sym___FILE__] = ACTIONS(4635), - [anon_sym___DIR__] = ACTIONS(4635), - [sym_special_variable] = ACTIONS(4637), - [sym_identifier_method_call] = ACTIONS(4637), - [sym_instance_var] = ACTIONS(4637), - [sym_class_var] = ACTIONS(4637), - [sym_self] = ACTIONS(4635), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_alias] = ACTIONS(4635), - [anon_sym_begin] = ACTIONS(4635), - [anon_sym_while] = ACTIONS(4635), - [anon_sym_until] = ACTIONS(4635), - [anon_sym_else] = ACTIONS(4635), - [anon_sym_require] = ACTIONS(4635), - [anon_sym_case] = ACTIONS(4635), - [sym__line_break] = ACTIONS(4637), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4637), - [sym__start_of_named_tuple] = ACTIONS(4637), - [sym_unary_plus] = ACTIONS(4637), - [sym_unary_minus] = ACTIONS(4637), - [sym_unary_wrapping_plus] = ACTIONS(4637), - [sym_unary_wrapping_minus] = ACTIONS(4637), - [sym__beginless_range_operator] = ACTIONS(4637), - [sym__regex_start] = ACTIONS(4637), - [sym__regular_if_keyword] = ACTIONS(4637), - [sym__regular_unless_keyword] = ACTIONS(4637), - [sym__regular_rescue_keyword] = ACTIONS(4637), - [sym__regular_ensure_keyword] = ACTIONS(4637), - [sym__string_literal_start] = ACTIONS(4637), - [sym__string_percent_literal_start] = ACTIONS(4637), - [sym__command_percent_literal_start] = ACTIONS(4637), - [sym__string_array_percent_literal_start] = ACTIONS(4637), - [sym__symbol_array_percent_literal_start] = ACTIONS(4637), - [sym__regex_percent_literal_start] = ACTIONS(4637), - [sym_heredoc_start] = ACTIONS(4637), + [sym_identifier] = ACTIONS(4676), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4678), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4676), + [sym_true] = ACTIONS(4676), + [sym_false] = ACTIONS(4676), + [aux_sym_integer_token2] = ACTIONS(4676), + [aux_sym_float_token2] = ACTIONS(4678), + [anon_sym_SQUOTE] = ACTIONS(4678), + [sym_operator_symbol] = ACTIONS(4678), + [sym_unquoted_symbol] = ACTIONS(4678), + [anon_sym_COLON_DQUOTE] = ACTIONS(4678), + [anon_sym_BQUOTE] = ACTIONS(4678), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_DASH_GT] = ACTIONS(4678), + [anon_sym_annotation] = ACTIONS(4676), + [anon_sym_end] = ACTIONS(4676), + [anon_sym_AT_LBRACK] = ACTIONS(4678), + [anon_sym_private] = ACTIONS(4676), + [anon_sym_module] = ACTIONS(4676), + [anon_sym_abstract] = ACTIONS(4676), + [anon_sym_class] = ACTIONS(4676), + [anon_sym_struct] = ACTIONS(4676), + [anon_sym_enum] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_PIPE] = ACTIONS(4678), + [anon_sym_BANG] = ACTIONS(4678), + [anon_sym_TILDE] = ACTIONS(4678), + [anon_sym_def] = ACTIONS(4676), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_protected] = ACTIONS(4676), + [anon_sym_include] = ACTIONS(4676), + [anon_sym_extend] = ACTIONS(4676), + [anon_sym_forall] = ACTIONS(4676), + [anon_sym_return] = ACTIONS(4676), + [anon_sym_next] = ACTIONS(4676), + [anon_sym_break] = ACTIONS(4676), + [anon_sym_with] = ACTIONS(4676), + [anon_sym_yield] = ACTIONS(4676), + [anon_sym_typeof] = ACTIONS(4676), + [anon_sym_sizeof] = ACTIONS(4676), + [anon_sym_instance_sizeof] = ACTIONS(4676), + [anon_sym_offsetof] = ACTIONS(4676), + [sym__constant_segment] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4678), + [anon_sym___LINE__] = ACTIONS(4676), + [anon_sym___END_LINE__] = ACTIONS(4676), + [anon_sym___FILE__] = ACTIONS(4676), + [anon_sym___DIR__] = ACTIONS(4676), + [sym_special_variable] = ACTIONS(4678), + [sym_identifier_method_call] = ACTIONS(4678), + [sym_instance_var] = ACTIONS(4678), + [sym_class_var] = ACTIONS(4678), + [sym_self] = ACTIONS(4676), + [anon_sym_QMARK] = ACTIONS(4678), + [anon_sym_alias] = ACTIONS(4676), + [anon_sym_begin] = ACTIONS(4676), + [anon_sym_while] = ACTIONS(4676), + [anon_sym_until] = ACTIONS(4676), + [anon_sym_else] = ACTIONS(4676), + [anon_sym_require] = ACTIONS(4676), + [anon_sym_case] = ACTIONS(4676), + [anon_sym_select] = ACTIONS(4676), + [sym__line_break] = ACTIONS(4678), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4678), + [sym__start_of_named_tuple] = ACTIONS(4678), + [sym_unary_plus] = ACTIONS(4678), + [sym_unary_minus] = ACTIONS(4678), + [sym_unary_wrapping_plus] = ACTIONS(4678), + [sym_unary_wrapping_minus] = ACTIONS(4678), + [sym__beginless_range_operator] = ACTIONS(4678), + [sym__regex_start] = ACTIONS(4678), + [sym__regular_if_keyword] = ACTIONS(4678), + [sym__regular_unless_keyword] = ACTIONS(4678), + [sym__regular_rescue_keyword] = ACTIONS(4678), + [sym__regular_ensure_keyword] = ACTIONS(4678), + [sym__string_literal_start] = ACTIONS(4678), + [sym__string_percent_literal_start] = ACTIONS(4678), + [sym__command_percent_literal_start] = ACTIONS(4678), + [sym__string_array_percent_literal_start] = ACTIONS(4678), + [sym__symbol_array_percent_literal_start] = ACTIONS(4678), + [sym__regex_percent_literal_start] = ACTIONS(4678), + [sym_heredoc_start] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, [2017] = { [sym_heredoc_body] = STATE(2017), - [aux_sym_union_type_repeat1] = STATE(2001), - [sym_identifier] = ACTIONS(4639), - [anon_sym_SEMI] = ACTIONS(4641), - [anon_sym_LPAREN] = ACTIONS(4641), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4639), - [sym_true] = ACTIONS(4639), - [sym_false] = ACTIONS(4639), - [aux_sym_integer_token2] = ACTIONS(4639), - [aux_sym_float_token2] = ACTIONS(4641), - [anon_sym_SQUOTE] = ACTIONS(4641), - [sym_operator_symbol] = ACTIONS(4641), - [sym_unquoted_symbol] = ACTIONS(4641), - [anon_sym_COLON_DQUOTE] = ACTIONS(4641), - [anon_sym_BQUOTE] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4572), - [anon_sym_DASH_GT] = ACTIONS(4641), - [anon_sym_annotation] = ACTIONS(4639), - [anon_sym_end] = ACTIONS(4639), - [anon_sym_AT_LBRACK] = ACTIONS(4641), - [anon_sym_private] = ACTIONS(4639), - [anon_sym_module] = ACTIONS(4639), - [anon_sym_abstract] = ACTIONS(4639), - [anon_sym_class] = ACTIONS(4639), - [anon_sym_struct] = ACTIONS(4639), - [anon_sym_enum] = ACTIONS(4639), - [anon_sym_STAR] = ACTIONS(4574), - [anon_sym_PIPE] = ACTIONS(4576), - [anon_sym_BANG] = ACTIONS(4641), - [anon_sym_TILDE] = ACTIONS(4641), - [anon_sym_def] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4578), - [anon_sym_protected] = ACTIONS(4639), - [anon_sym_include] = ACTIONS(4639), - [anon_sym_extend] = ACTIONS(4639), - [anon_sym_forall] = ACTIONS(4639), - [anon_sym_return] = ACTIONS(4639), - [anon_sym_next] = ACTIONS(4639), - [anon_sym_break] = ACTIONS(4639), - [anon_sym_with] = ACTIONS(4639), - [anon_sym_yield] = ACTIONS(4639), - [anon_sym_typeof] = ACTIONS(4639), - [anon_sym_sizeof] = ACTIONS(4639), - [anon_sym_instance_sizeof] = ACTIONS(4639), - [anon_sym_offsetof] = ACTIONS(4639), - [sym__constant_segment] = ACTIONS(4641), - [anon_sym_COLON_COLON] = ACTIONS(4641), - [anon_sym___LINE__] = ACTIONS(4639), - [anon_sym___END_LINE__] = ACTIONS(4639), - [anon_sym___FILE__] = ACTIONS(4639), - [anon_sym___DIR__] = ACTIONS(4639), - [sym_special_variable] = ACTIONS(4641), - [sym_identifier_method_call] = ACTIONS(4641), - [sym_instance_var] = ACTIONS(4641), - [sym_class_var] = ACTIONS(4641), - [sym_self] = ACTIONS(4639), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_alias] = ACTIONS(4639), - [anon_sym_begin] = ACTIONS(4639), - [anon_sym_while] = ACTIONS(4639), - [anon_sym_until] = ACTIONS(4639), - [anon_sym_else] = ACTIONS(4639), - [anon_sym_require] = ACTIONS(4639), - [anon_sym_case] = ACTIONS(4639), - [sym__line_break] = ACTIONS(4641), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4641), - [sym__start_of_named_tuple] = ACTIONS(4641), - [sym_unary_plus] = ACTIONS(4641), - [sym_unary_minus] = ACTIONS(4641), - [sym_unary_wrapping_plus] = ACTIONS(4641), - [sym_unary_wrapping_minus] = ACTIONS(4641), - [sym__beginless_range_operator] = ACTIONS(4641), - [sym__regex_start] = ACTIONS(4641), - [sym__regular_if_keyword] = ACTIONS(4641), - [sym__regular_unless_keyword] = ACTIONS(4641), - [sym__regular_rescue_keyword] = ACTIONS(4641), - [sym__regular_ensure_keyword] = ACTIONS(4641), - [sym__string_literal_start] = ACTIONS(4641), - [sym__string_percent_literal_start] = ACTIONS(4641), - [sym__command_percent_literal_start] = ACTIONS(4641), - [sym__string_array_percent_literal_start] = ACTIONS(4641), - [sym__symbol_array_percent_literal_start] = ACTIONS(4641), - [sym__regex_percent_literal_start] = ACTIONS(4641), - [sym_heredoc_start] = ACTIONS(4641), + [sym_identifier] = ACTIONS(4680), + [anon_sym_SEMI] = ACTIONS(4682), + [anon_sym_LPAREN] = ACTIONS(4682), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4680), + [sym_true] = ACTIONS(4680), + [sym_false] = ACTIONS(4680), + [aux_sym_integer_token2] = ACTIONS(4680), + [aux_sym_float_token2] = ACTIONS(4682), + [anon_sym_SQUOTE] = ACTIONS(4682), + [sym_operator_symbol] = ACTIONS(4682), + [sym_unquoted_symbol] = ACTIONS(4682), + [anon_sym_COLON_DQUOTE] = ACTIONS(4682), + [anon_sym_BQUOTE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(4682), + [anon_sym_COMMA] = ACTIONS(4682), + [anon_sym_DASH_GT] = ACTIONS(4682), + [anon_sym_annotation] = ACTIONS(4680), + [anon_sym_end] = ACTIONS(4680), + [anon_sym_AT_LBRACK] = ACTIONS(4682), + [anon_sym_private] = ACTIONS(4680), + [anon_sym_module] = ACTIONS(4680), + [anon_sym_abstract] = ACTIONS(4680), + [anon_sym_class] = ACTIONS(4680), + [anon_sym_struct] = ACTIONS(4680), + [anon_sym_enum] = ACTIONS(4680), + [anon_sym_STAR] = ACTIONS(4682), + [anon_sym_PIPE] = ACTIONS(4682), + [anon_sym_BANG] = ACTIONS(4682), + [anon_sym_TILDE] = ACTIONS(4682), + [anon_sym_def] = ACTIONS(4680), + [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_protected] = ACTIONS(4680), + [anon_sym_include] = ACTIONS(4680), + [anon_sym_extend] = ACTIONS(4680), + [anon_sym_forall] = ACTIONS(4680), + [anon_sym_return] = ACTIONS(4680), + [anon_sym_next] = ACTIONS(4680), + [anon_sym_break] = ACTIONS(4680), + [anon_sym_with] = ACTIONS(4680), + [anon_sym_yield] = ACTIONS(4680), + [anon_sym_typeof] = ACTIONS(4680), + [anon_sym_sizeof] = ACTIONS(4680), + [anon_sym_instance_sizeof] = ACTIONS(4680), + [anon_sym_offsetof] = ACTIONS(4680), + [sym__constant_segment] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym___LINE__] = ACTIONS(4680), + [anon_sym___END_LINE__] = ACTIONS(4680), + [anon_sym___FILE__] = ACTIONS(4680), + [anon_sym___DIR__] = ACTIONS(4680), + [sym_special_variable] = ACTIONS(4682), + [sym_identifier_method_call] = ACTIONS(4682), + [sym_instance_var] = ACTIONS(4682), + [sym_class_var] = ACTIONS(4682), + [sym_self] = ACTIONS(4680), + [anon_sym_QMARK] = ACTIONS(4682), + [anon_sym_alias] = ACTIONS(4680), + [anon_sym_begin] = ACTIONS(4680), + [anon_sym_while] = ACTIONS(4680), + [anon_sym_until] = ACTIONS(4680), + [anon_sym_else] = ACTIONS(4680), + [anon_sym_require] = ACTIONS(4680), + [anon_sym_case] = ACTIONS(4680), + [anon_sym_select] = ACTIONS(4680), + [sym__line_break] = ACTIONS(4682), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4682), + [sym__start_of_named_tuple] = ACTIONS(4682), + [sym_unary_plus] = ACTIONS(4682), + [sym_unary_minus] = ACTIONS(4682), + [sym_unary_wrapping_plus] = ACTIONS(4682), + [sym_unary_wrapping_minus] = ACTIONS(4682), + [sym__beginless_range_operator] = ACTIONS(4682), + [sym__regex_start] = ACTIONS(4682), + [sym__regular_if_keyword] = ACTIONS(4682), + [sym__regular_unless_keyword] = ACTIONS(4682), + [sym__regular_rescue_keyword] = ACTIONS(4682), + [sym__regular_ensure_keyword] = ACTIONS(4682), + [sym__string_literal_start] = ACTIONS(4682), + [sym__string_percent_literal_start] = ACTIONS(4682), + [sym__command_percent_literal_start] = ACTIONS(4682), + [sym__string_array_percent_literal_start] = ACTIONS(4682), + [sym__symbol_array_percent_literal_start] = ACTIONS(4682), + [sym__regex_percent_literal_start] = ACTIONS(4682), + [sym_heredoc_start] = ACTIONS(4682), [sym__heredoc_body_start] = ACTIONS(7), }, [2018] = { [sym_heredoc_body] = STATE(2018), - [sym_identifier] = ACTIONS(4643), - [anon_sym_SEMI] = ACTIONS(4645), - [anon_sym_LPAREN] = ACTIONS(4645), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4643), - [sym_true] = ACTIONS(4643), - [sym_false] = ACTIONS(4643), - [aux_sym_integer_token2] = ACTIONS(4643), - [aux_sym_float_token2] = ACTIONS(4645), - [anon_sym_SQUOTE] = ACTIONS(4645), - [sym_operator_symbol] = ACTIONS(4645), - [sym_unquoted_symbol] = ACTIONS(4645), - [anon_sym_COLON_DQUOTE] = ACTIONS(4645), - [anon_sym_BQUOTE] = ACTIONS(4645), - [anon_sym_LBRACK] = ACTIONS(4645), - [anon_sym_COMMA] = ACTIONS(4645), - [anon_sym_DASH_GT] = ACTIONS(4645), - [anon_sym_annotation] = ACTIONS(4643), - [anon_sym_end] = ACTIONS(4643), - [anon_sym_AT_LBRACK] = ACTIONS(4645), - [anon_sym_private] = ACTIONS(4643), - [anon_sym_module] = ACTIONS(4643), - [anon_sym_abstract] = ACTIONS(4643), - [anon_sym_class] = ACTIONS(4643), - [anon_sym_struct] = ACTIONS(4643), - [anon_sym_enum] = ACTIONS(4643), - [anon_sym_STAR] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4645), - [anon_sym_BANG] = ACTIONS(4645), - [anon_sym_TILDE] = ACTIONS(4645), - [anon_sym_def] = ACTIONS(4643), - [anon_sym_DOT] = ACTIONS(4645), - [anon_sym_protected] = ACTIONS(4643), - [anon_sym_include] = ACTIONS(4643), - [anon_sym_extend] = ACTIONS(4643), - [anon_sym_forall] = ACTIONS(4643), - [anon_sym_return] = ACTIONS(4643), - [anon_sym_next] = ACTIONS(4643), - [anon_sym_break] = ACTIONS(4643), - [anon_sym_with] = ACTIONS(4643), - [anon_sym_yield] = ACTIONS(4643), - [anon_sym_typeof] = ACTIONS(4643), - [anon_sym_sizeof] = ACTIONS(4643), - [anon_sym_instance_sizeof] = ACTIONS(4643), - [anon_sym_offsetof] = ACTIONS(4643), - [sym__constant_segment] = ACTIONS(4645), - [anon_sym_COLON_COLON] = ACTIONS(4645), - [anon_sym___LINE__] = ACTIONS(4643), - [anon_sym___END_LINE__] = ACTIONS(4643), - [anon_sym___FILE__] = ACTIONS(4643), - [anon_sym___DIR__] = ACTIONS(4643), - [sym_special_variable] = ACTIONS(4645), - [sym_identifier_method_call] = ACTIONS(4645), - [sym_instance_var] = ACTIONS(4645), - [sym_class_var] = ACTIONS(4645), - [sym_self] = ACTIONS(4643), - [anon_sym_QMARK] = ACTIONS(4645), - [anon_sym_alias] = ACTIONS(4643), - [anon_sym_begin] = ACTIONS(4643), - [anon_sym_while] = ACTIONS(4643), - [anon_sym_until] = ACTIONS(4643), - [anon_sym_else] = ACTIONS(4643), - [anon_sym_require] = ACTIONS(4643), - [anon_sym_case] = ACTIONS(4643), - [sym__line_break] = ACTIONS(4645), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4645), - [sym__start_of_named_tuple] = ACTIONS(4645), - [sym_unary_plus] = ACTIONS(4645), - [sym_unary_minus] = ACTIONS(4645), - [sym_unary_wrapping_plus] = ACTIONS(4645), - [sym_unary_wrapping_minus] = ACTIONS(4645), - [sym__beginless_range_operator] = ACTIONS(4645), - [sym__regex_start] = ACTIONS(4645), - [sym__regular_if_keyword] = ACTIONS(4645), - [sym__regular_unless_keyword] = ACTIONS(4645), - [sym__regular_rescue_keyword] = ACTIONS(4645), - [sym__regular_ensure_keyword] = ACTIONS(4645), - [sym__string_literal_start] = ACTIONS(4645), - [sym__string_percent_literal_start] = ACTIONS(4645), - [sym__command_percent_literal_start] = ACTIONS(4645), - [sym__string_array_percent_literal_start] = ACTIONS(4645), - [sym__symbol_array_percent_literal_start] = ACTIONS(4645), - [sym__regex_percent_literal_start] = ACTIONS(4645), - [sym_heredoc_start] = ACTIONS(4645), + [aux_sym_union_type_repeat1] = STATE(2004), + [sym_identifier] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4684), + [sym_true] = ACTIONS(4684), + [sym_false] = ACTIONS(4684), + [aux_sym_integer_token2] = ACTIONS(4684), + [aux_sym_float_token2] = ACTIONS(4686), + [anon_sym_SQUOTE] = ACTIONS(4686), + [sym_operator_symbol] = ACTIONS(4686), + [sym_unquoted_symbol] = ACTIONS(4686), + [anon_sym_COLON_DQUOTE] = ACTIONS(4686), + [anon_sym_BQUOTE] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4609), + [anon_sym_DASH_GT] = ACTIONS(4686), + [anon_sym_annotation] = ACTIONS(4684), + [anon_sym_end] = ACTIONS(4684), + [anon_sym_AT_LBRACK] = ACTIONS(4686), + [anon_sym_private] = ACTIONS(4684), + [anon_sym_module] = ACTIONS(4684), + [anon_sym_abstract] = ACTIONS(4684), + [anon_sym_class] = ACTIONS(4684), + [anon_sym_struct] = ACTIONS(4684), + [anon_sym_enum] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4611), + [anon_sym_PIPE] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4686), + [anon_sym_TILDE] = ACTIONS(4686), + [anon_sym_def] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_protected] = ACTIONS(4684), + [anon_sym_include] = ACTIONS(4684), + [anon_sym_extend] = ACTIONS(4684), + [anon_sym_forall] = ACTIONS(4684), + [anon_sym_return] = ACTIONS(4684), + [anon_sym_next] = ACTIONS(4684), + [anon_sym_break] = ACTIONS(4684), + [anon_sym_with] = ACTIONS(4684), + [anon_sym_yield] = ACTIONS(4684), + [anon_sym_typeof] = ACTIONS(4684), + [anon_sym_sizeof] = ACTIONS(4684), + [anon_sym_instance_sizeof] = ACTIONS(4684), + [anon_sym_offsetof] = ACTIONS(4684), + [sym__constant_segment] = ACTIONS(4686), + [anon_sym_COLON_COLON] = ACTIONS(4686), + [anon_sym___LINE__] = ACTIONS(4684), + [anon_sym___END_LINE__] = ACTIONS(4684), + [anon_sym___FILE__] = ACTIONS(4684), + [anon_sym___DIR__] = ACTIONS(4684), + [sym_special_variable] = ACTIONS(4686), + [sym_identifier_method_call] = ACTIONS(4686), + [sym_instance_var] = ACTIONS(4686), + [sym_class_var] = ACTIONS(4686), + [sym_self] = ACTIONS(4684), + [anon_sym_QMARK] = ACTIONS(4617), + [anon_sym_alias] = ACTIONS(4684), + [anon_sym_begin] = ACTIONS(4684), + [anon_sym_while] = ACTIONS(4684), + [anon_sym_until] = ACTIONS(4684), + [anon_sym_else] = ACTIONS(4684), + [anon_sym_require] = ACTIONS(4684), + [anon_sym_case] = ACTIONS(4684), + [anon_sym_select] = ACTIONS(4684), + [sym__line_break] = ACTIONS(4686), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4686), + [sym__start_of_named_tuple] = ACTIONS(4686), + [sym_unary_plus] = ACTIONS(4686), + [sym_unary_minus] = ACTIONS(4686), + [sym_unary_wrapping_plus] = ACTIONS(4686), + [sym_unary_wrapping_minus] = ACTIONS(4686), + [sym__beginless_range_operator] = ACTIONS(4686), + [sym__regex_start] = ACTIONS(4686), + [sym__regular_if_keyword] = ACTIONS(4686), + [sym__regular_unless_keyword] = ACTIONS(4686), + [sym__regular_rescue_keyword] = ACTIONS(4686), + [sym__regular_ensure_keyword] = ACTIONS(4686), + [sym__string_literal_start] = ACTIONS(4686), + [sym__string_percent_literal_start] = ACTIONS(4686), + [sym__command_percent_literal_start] = ACTIONS(4686), + [sym__string_array_percent_literal_start] = ACTIONS(4686), + [sym__symbol_array_percent_literal_start] = ACTIONS(4686), + [sym__regex_percent_literal_start] = ACTIONS(4686), + [sym_heredoc_start] = ACTIONS(4686), [sym__heredoc_body_start] = ACTIONS(7), }, [2019] = { [sym_heredoc_body] = STATE(2019), - [sym_identifier] = ACTIONS(4647), - [anon_sym_SEMI] = ACTIONS(4649), - [anon_sym_LPAREN] = ACTIONS(4649), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4647), - [sym_true] = ACTIONS(4647), - [sym_false] = ACTIONS(4647), - [aux_sym_integer_token2] = ACTIONS(4647), - [aux_sym_float_token2] = ACTIONS(4649), - [anon_sym_SQUOTE] = ACTIONS(4649), - [sym_operator_symbol] = ACTIONS(4649), - [sym_unquoted_symbol] = ACTIONS(4649), - [anon_sym_COLON_DQUOTE] = ACTIONS(4649), - [anon_sym_BQUOTE] = ACTIONS(4649), - [anon_sym_LBRACK] = ACTIONS(4649), - [anon_sym_COMMA] = ACTIONS(4649), - [anon_sym_DASH_GT] = ACTIONS(4649), - [anon_sym_annotation] = ACTIONS(4647), - [anon_sym_end] = ACTIONS(4647), - [anon_sym_AT_LBRACK] = ACTIONS(4649), - [anon_sym_private] = ACTIONS(4647), - [anon_sym_module] = ACTIONS(4647), - [anon_sym_abstract] = ACTIONS(4647), - [anon_sym_class] = ACTIONS(4647), - [anon_sym_struct] = ACTIONS(4647), - [anon_sym_enum] = ACTIONS(4647), - [anon_sym_STAR] = ACTIONS(4649), - [anon_sym_PIPE] = ACTIONS(4649), - [anon_sym_BANG] = ACTIONS(4649), - [anon_sym_TILDE] = ACTIONS(4649), - [anon_sym_def] = ACTIONS(4647), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_protected] = ACTIONS(4647), - [anon_sym_include] = ACTIONS(4647), - [anon_sym_extend] = ACTIONS(4647), - [anon_sym_forall] = ACTIONS(4647), - [anon_sym_return] = ACTIONS(4647), - [anon_sym_next] = ACTIONS(4647), - [anon_sym_break] = ACTIONS(4647), - [anon_sym_with] = ACTIONS(4647), - [anon_sym_yield] = ACTIONS(4647), - [anon_sym_typeof] = ACTIONS(4647), - [anon_sym_sizeof] = ACTIONS(4647), - [anon_sym_instance_sizeof] = ACTIONS(4647), - [anon_sym_offsetof] = ACTIONS(4647), - [sym__constant_segment] = ACTIONS(4649), - [anon_sym_COLON_COLON] = ACTIONS(4649), - [anon_sym___LINE__] = ACTIONS(4647), - [anon_sym___END_LINE__] = ACTIONS(4647), - [anon_sym___FILE__] = ACTIONS(4647), - [anon_sym___DIR__] = ACTIONS(4647), - [sym_special_variable] = ACTIONS(4649), - [sym_identifier_method_call] = ACTIONS(4649), - [sym_instance_var] = ACTIONS(4649), - [sym_class_var] = ACTIONS(4649), - [sym_self] = ACTIONS(4647), - [anon_sym_QMARK] = ACTIONS(4649), - [anon_sym_alias] = ACTIONS(4647), - [anon_sym_begin] = ACTIONS(4647), - [anon_sym_while] = ACTIONS(4647), - [anon_sym_until] = ACTIONS(4647), - [anon_sym_else] = ACTIONS(4647), - [anon_sym_require] = ACTIONS(4647), - [anon_sym_case] = ACTIONS(4647), - [sym__line_break] = ACTIONS(4649), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4649), - [sym__start_of_named_tuple] = ACTIONS(4649), - [sym_unary_plus] = ACTIONS(4649), - [sym_unary_minus] = ACTIONS(4649), - [sym_unary_wrapping_plus] = ACTIONS(4649), - [sym_unary_wrapping_minus] = ACTIONS(4649), - [sym__beginless_range_operator] = ACTIONS(4649), - [sym__regex_start] = ACTIONS(4649), - [sym__regular_if_keyword] = ACTIONS(4649), - [sym__regular_unless_keyword] = ACTIONS(4649), - [sym__regular_rescue_keyword] = ACTIONS(4649), - [sym__regular_ensure_keyword] = ACTIONS(4649), - [sym__string_literal_start] = ACTIONS(4649), - [sym__string_percent_literal_start] = ACTIONS(4649), - [sym__command_percent_literal_start] = ACTIONS(4649), - [sym__string_array_percent_literal_start] = ACTIONS(4649), - [sym__symbol_array_percent_literal_start] = ACTIONS(4649), - [sym__regex_percent_literal_start] = ACTIONS(4649), - [sym_heredoc_start] = ACTIONS(4649), + [sym_identifier] = ACTIONS(4688), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4688), + [sym_true] = ACTIONS(4688), + [sym_false] = ACTIONS(4688), + [aux_sym_integer_token2] = ACTIONS(4688), + [aux_sym_float_token2] = ACTIONS(4690), + [anon_sym_SQUOTE] = ACTIONS(4690), + [sym_operator_symbol] = ACTIONS(4690), + [sym_unquoted_symbol] = ACTIONS(4690), + [anon_sym_COLON_DQUOTE] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH_GT] = ACTIONS(4690), + [anon_sym_annotation] = ACTIONS(4688), + [anon_sym_end] = ACTIONS(4688), + [anon_sym_AT_LBRACK] = ACTIONS(4690), + [anon_sym_private] = ACTIONS(4688), + [anon_sym_module] = ACTIONS(4688), + [anon_sym_abstract] = ACTIONS(4688), + [anon_sym_class] = ACTIONS(4688), + [anon_sym_struct] = ACTIONS(4688), + [anon_sym_enum] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_def] = ACTIONS(4688), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_protected] = ACTIONS(4688), + [anon_sym_include] = ACTIONS(4688), + [anon_sym_extend] = ACTIONS(4688), + [anon_sym_forall] = ACTIONS(4688), + [anon_sym_return] = ACTIONS(4688), + [anon_sym_next] = ACTIONS(4688), + [anon_sym_break] = ACTIONS(4688), + [anon_sym_with] = ACTIONS(4688), + [anon_sym_yield] = ACTIONS(4688), + [anon_sym_typeof] = ACTIONS(4688), + [anon_sym_sizeof] = ACTIONS(4688), + [anon_sym_instance_sizeof] = ACTIONS(4688), + [anon_sym_offsetof] = ACTIONS(4688), + [sym__constant_segment] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym___LINE__] = ACTIONS(4688), + [anon_sym___END_LINE__] = ACTIONS(4688), + [anon_sym___FILE__] = ACTIONS(4688), + [anon_sym___DIR__] = ACTIONS(4688), + [sym_special_variable] = ACTIONS(4690), + [sym_identifier_method_call] = ACTIONS(4690), + [sym_instance_var] = ACTIONS(4690), + [sym_class_var] = ACTIONS(4690), + [sym_self] = ACTIONS(4688), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_alias] = ACTIONS(4688), + [anon_sym_begin] = ACTIONS(4688), + [anon_sym_while] = ACTIONS(4688), + [anon_sym_until] = ACTIONS(4688), + [anon_sym_else] = ACTIONS(4688), + [anon_sym_require] = ACTIONS(4688), + [anon_sym_case] = ACTIONS(4688), + [anon_sym_select] = ACTIONS(4688), + [sym__line_break] = ACTIONS(4690), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4690), + [sym__start_of_named_tuple] = ACTIONS(4690), + [sym_unary_plus] = ACTIONS(4690), + [sym_unary_minus] = ACTIONS(4690), + [sym_unary_wrapping_plus] = ACTIONS(4690), + [sym_unary_wrapping_minus] = ACTIONS(4690), + [sym__beginless_range_operator] = ACTIONS(4690), + [sym__regex_start] = ACTIONS(4690), + [sym__regular_if_keyword] = ACTIONS(4690), + [sym__regular_unless_keyword] = ACTIONS(4690), + [sym__regular_rescue_keyword] = ACTIONS(4690), + [sym__regular_ensure_keyword] = ACTIONS(4690), + [sym__string_literal_start] = ACTIONS(4690), + [sym__string_percent_literal_start] = ACTIONS(4690), + [sym__command_percent_literal_start] = ACTIONS(4690), + [sym__string_array_percent_literal_start] = ACTIONS(4690), + [sym__symbol_array_percent_literal_start] = ACTIONS(4690), + [sym__regex_percent_literal_start] = ACTIONS(4690), + [sym_heredoc_start] = ACTIONS(4690), [sym__heredoc_body_start] = ACTIONS(7), }, [2020] = { [sym_heredoc_body] = STATE(2020), - [sym_identifier] = ACTIONS(4651), - [anon_sym_SEMI] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4653), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4651), - [sym_true] = ACTIONS(4651), - [sym_false] = ACTIONS(4651), - [aux_sym_integer_token2] = ACTIONS(4651), - [aux_sym_float_token2] = ACTIONS(4653), - [anon_sym_SQUOTE] = ACTIONS(4653), - [sym_operator_symbol] = ACTIONS(4653), - [sym_unquoted_symbol] = ACTIONS(4653), - [anon_sym_COLON_DQUOTE] = ACTIONS(4653), - [anon_sym_BQUOTE] = ACTIONS(4653), - [anon_sym_LBRACK] = ACTIONS(4653), - [anon_sym_COMMA] = ACTIONS(4653), - [anon_sym_DASH_GT] = ACTIONS(4653), - [anon_sym_annotation] = ACTIONS(4651), - [anon_sym_end] = ACTIONS(4651), - [anon_sym_AT_LBRACK] = ACTIONS(4653), - [anon_sym_private] = ACTIONS(4651), - [anon_sym_module] = ACTIONS(4651), - [anon_sym_abstract] = ACTIONS(4651), - [anon_sym_class] = ACTIONS(4651), - [anon_sym_struct] = ACTIONS(4651), - [anon_sym_enum] = ACTIONS(4651), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_PIPE] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_TILDE] = ACTIONS(4653), - [anon_sym_def] = ACTIONS(4651), - [anon_sym_DOT] = ACTIONS(4653), - [anon_sym_protected] = ACTIONS(4651), - [anon_sym_include] = ACTIONS(4651), - [anon_sym_extend] = ACTIONS(4651), - [anon_sym_forall] = ACTIONS(4651), - [anon_sym_return] = ACTIONS(4651), - [anon_sym_next] = ACTIONS(4651), - [anon_sym_break] = ACTIONS(4651), - [anon_sym_with] = ACTIONS(4651), - [anon_sym_yield] = ACTIONS(4651), - [anon_sym_typeof] = ACTIONS(4651), - [anon_sym_sizeof] = ACTIONS(4651), - [anon_sym_instance_sizeof] = ACTIONS(4651), - [anon_sym_offsetof] = ACTIONS(4651), - [sym__constant_segment] = ACTIONS(4653), - [anon_sym_COLON_COLON] = ACTIONS(4653), - [anon_sym___LINE__] = ACTIONS(4651), - [anon_sym___END_LINE__] = ACTIONS(4651), - [anon_sym___FILE__] = ACTIONS(4651), - [anon_sym___DIR__] = ACTIONS(4651), - [sym_special_variable] = ACTIONS(4653), - [sym_identifier_method_call] = ACTIONS(4653), - [sym_instance_var] = ACTIONS(4653), - [sym_class_var] = ACTIONS(4653), - [sym_self] = ACTIONS(4651), - [anon_sym_QMARK] = ACTIONS(4653), - [anon_sym_alias] = ACTIONS(4651), - [anon_sym_begin] = ACTIONS(4651), - [anon_sym_while] = ACTIONS(4651), - [anon_sym_until] = ACTIONS(4651), - [anon_sym_else] = ACTIONS(4651), - [anon_sym_require] = ACTIONS(4651), - [anon_sym_case] = ACTIONS(4651), - [sym__line_break] = ACTIONS(4653), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4653), - [sym__start_of_named_tuple] = ACTIONS(4653), - [sym_unary_plus] = ACTIONS(4653), - [sym_unary_minus] = ACTIONS(4653), - [sym_unary_wrapping_plus] = ACTIONS(4653), - [sym_unary_wrapping_minus] = ACTIONS(4653), - [sym__beginless_range_operator] = ACTIONS(4653), - [sym__regex_start] = ACTIONS(4653), - [sym__regular_if_keyword] = ACTIONS(4653), - [sym__regular_unless_keyword] = ACTIONS(4653), - [sym__regular_rescue_keyword] = ACTIONS(4653), - [sym__regular_ensure_keyword] = ACTIONS(4653), - [sym__string_literal_start] = ACTIONS(4653), - [sym__string_percent_literal_start] = ACTIONS(4653), - [sym__command_percent_literal_start] = ACTIONS(4653), - [sym__string_array_percent_literal_start] = ACTIONS(4653), - [sym__symbol_array_percent_literal_start] = ACTIONS(4653), - [sym__regex_percent_literal_start] = ACTIONS(4653), - [sym_heredoc_start] = ACTIONS(4653), + [sym_identifier] = ACTIONS(4692), + [anon_sym_SEMI] = ACTIONS(4694), + [anon_sym_LPAREN] = ACTIONS(4694), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4692), + [sym_true] = ACTIONS(4692), + [sym_false] = ACTIONS(4692), + [aux_sym_integer_token2] = ACTIONS(4692), + [aux_sym_float_token2] = ACTIONS(4694), + [anon_sym_SQUOTE] = ACTIONS(4694), + [sym_operator_symbol] = ACTIONS(4694), + [sym_unquoted_symbol] = ACTIONS(4694), + [anon_sym_COLON_DQUOTE] = ACTIONS(4694), + [anon_sym_BQUOTE] = ACTIONS(4694), + [anon_sym_LBRACK] = ACTIONS(4694), + [anon_sym_COMMA] = ACTIONS(4694), + [anon_sym_DASH_GT] = ACTIONS(4694), + [anon_sym_annotation] = ACTIONS(4692), + [anon_sym_end] = ACTIONS(4692), + [anon_sym_AT_LBRACK] = ACTIONS(4694), + [anon_sym_private] = ACTIONS(4692), + [anon_sym_module] = ACTIONS(4692), + [anon_sym_abstract] = ACTIONS(4692), + [anon_sym_class] = ACTIONS(4692), + [anon_sym_struct] = ACTIONS(4692), + [anon_sym_enum] = ACTIONS(4692), + [anon_sym_STAR] = ACTIONS(4694), + [anon_sym_PIPE] = ACTIONS(4694), + [anon_sym_BANG] = ACTIONS(4694), + [anon_sym_TILDE] = ACTIONS(4694), + [anon_sym_def] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_protected] = ACTIONS(4692), + [anon_sym_include] = ACTIONS(4692), + [anon_sym_extend] = ACTIONS(4692), + [anon_sym_forall] = ACTIONS(4692), + [anon_sym_return] = ACTIONS(4692), + [anon_sym_next] = ACTIONS(4692), + [anon_sym_break] = ACTIONS(4692), + [anon_sym_with] = ACTIONS(4692), + [anon_sym_yield] = ACTIONS(4692), + [anon_sym_typeof] = ACTIONS(4692), + [anon_sym_sizeof] = ACTIONS(4692), + [anon_sym_instance_sizeof] = ACTIONS(4692), + [anon_sym_offsetof] = ACTIONS(4692), + [sym__constant_segment] = ACTIONS(4694), + [anon_sym_COLON_COLON] = ACTIONS(4694), + [anon_sym___LINE__] = ACTIONS(4692), + [anon_sym___END_LINE__] = ACTIONS(4692), + [anon_sym___FILE__] = ACTIONS(4692), + [anon_sym___DIR__] = ACTIONS(4692), + [sym_special_variable] = ACTIONS(4694), + [sym_identifier_method_call] = ACTIONS(4694), + [sym_instance_var] = ACTIONS(4694), + [sym_class_var] = ACTIONS(4694), + [sym_self] = ACTIONS(4692), + [anon_sym_QMARK] = ACTIONS(4694), + [anon_sym_alias] = ACTIONS(4692), + [anon_sym_begin] = ACTIONS(4692), + [anon_sym_while] = ACTIONS(4692), + [anon_sym_until] = ACTIONS(4692), + [anon_sym_else] = ACTIONS(4692), + [anon_sym_require] = ACTIONS(4692), + [anon_sym_case] = ACTIONS(4692), + [anon_sym_select] = ACTIONS(4692), + [sym__line_break] = ACTIONS(4694), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4694), + [sym__start_of_named_tuple] = ACTIONS(4694), + [sym_unary_plus] = ACTIONS(4694), + [sym_unary_minus] = ACTIONS(4694), + [sym_unary_wrapping_plus] = ACTIONS(4694), + [sym_unary_wrapping_minus] = ACTIONS(4694), + [sym__beginless_range_operator] = ACTIONS(4694), + [sym__regex_start] = ACTIONS(4694), + [sym__regular_if_keyword] = ACTIONS(4694), + [sym__regular_unless_keyword] = ACTIONS(4694), + [sym__regular_rescue_keyword] = ACTIONS(4694), + [sym__regular_ensure_keyword] = ACTIONS(4694), + [sym__string_literal_start] = ACTIONS(4694), + [sym__string_percent_literal_start] = ACTIONS(4694), + [sym__command_percent_literal_start] = ACTIONS(4694), + [sym__string_array_percent_literal_start] = ACTIONS(4694), + [sym__symbol_array_percent_literal_start] = ACTIONS(4694), + [sym__regex_percent_literal_start] = ACTIONS(4694), + [sym_heredoc_start] = ACTIONS(4694), [sym__heredoc_body_start] = ACTIONS(7), }, [2021] = { [sym_heredoc_body] = STATE(2021), - [sym_identifier] = ACTIONS(4655), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4655), - [sym_true] = ACTIONS(4655), - [sym_false] = ACTIONS(4655), - [aux_sym_integer_token2] = ACTIONS(4655), - [aux_sym_float_token2] = ACTIONS(4657), - [anon_sym_SQUOTE] = ACTIONS(4657), - [sym_operator_symbol] = ACTIONS(4657), - [sym_unquoted_symbol] = ACTIONS(4657), - [anon_sym_COLON_DQUOTE] = ACTIONS(4657), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH_GT] = ACTIONS(4657), - [anon_sym_annotation] = ACTIONS(4655), - [anon_sym_end] = ACTIONS(4655), - [anon_sym_AT_LBRACK] = ACTIONS(4657), - [anon_sym_private] = ACTIONS(4655), - [anon_sym_module] = ACTIONS(4655), - [anon_sym_abstract] = ACTIONS(4655), - [anon_sym_class] = ACTIONS(4655), - [anon_sym_struct] = ACTIONS(4655), - [anon_sym_enum] = ACTIONS(4655), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_def] = ACTIONS(4655), - [anon_sym_DOT] = ACTIONS(4657), - [anon_sym_protected] = ACTIONS(4655), - [anon_sym_include] = ACTIONS(4655), - [anon_sym_extend] = ACTIONS(4655), - [anon_sym_forall] = ACTIONS(4655), - [anon_sym_return] = ACTIONS(4655), - [anon_sym_next] = ACTIONS(4655), - [anon_sym_break] = ACTIONS(4655), - [anon_sym_with] = ACTIONS(4655), - [anon_sym_yield] = ACTIONS(4655), - [anon_sym_typeof] = ACTIONS(4655), - [anon_sym_sizeof] = ACTIONS(4655), - [anon_sym_instance_sizeof] = ACTIONS(4655), - [anon_sym_offsetof] = ACTIONS(4655), - [sym__constant_segment] = ACTIONS(4657), - [anon_sym_COLON_COLON] = ACTIONS(4657), - [anon_sym___LINE__] = ACTIONS(4655), - [anon_sym___END_LINE__] = ACTIONS(4655), - [anon_sym___FILE__] = ACTIONS(4655), - [anon_sym___DIR__] = ACTIONS(4655), - [sym_special_variable] = ACTIONS(4657), - [sym_identifier_method_call] = ACTIONS(4657), - [sym_instance_var] = ACTIONS(4657), - [sym_class_var] = ACTIONS(4657), - [sym_self] = ACTIONS(4655), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_alias] = ACTIONS(4655), - [anon_sym_begin] = ACTIONS(4655), - [anon_sym_while] = ACTIONS(4655), - [anon_sym_until] = ACTIONS(4655), - [anon_sym_else] = ACTIONS(4655), - [anon_sym_require] = ACTIONS(4655), - [anon_sym_case] = ACTIONS(4655), - [sym__line_break] = ACTIONS(4657), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4657), - [sym__start_of_named_tuple] = ACTIONS(4657), - [sym_unary_plus] = ACTIONS(4657), - [sym_unary_minus] = ACTIONS(4657), - [sym_unary_wrapping_plus] = ACTIONS(4657), - [sym_unary_wrapping_minus] = ACTIONS(4657), - [sym__beginless_range_operator] = ACTIONS(4657), - [sym__regex_start] = ACTIONS(4657), - [sym__regular_if_keyword] = ACTIONS(4657), - [sym__regular_unless_keyword] = ACTIONS(4657), - [sym__regular_rescue_keyword] = ACTIONS(4657), - [sym__regular_ensure_keyword] = ACTIONS(4657), - [sym__string_literal_start] = ACTIONS(4657), - [sym__string_percent_literal_start] = ACTIONS(4657), - [sym__command_percent_literal_start] = ACTIONS(4657), - [sym__string_array_percent_literal_start] = ACTIONS(4657), - [sym__symbol_array_percent_literal_start] = ACTIONS(4657), - [sym__regex_percent_literal_start] = ACTIONS(4657), - [sym_heredoc_start] = ACTIONS(4657), + [sym_identifier] = ACTIONS(4696), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4696), + [sym_true] = ACTIONS(4696), + [sym_false] = ACTIONS(4696), + [aux_sym_integer_token2] = ACTIONS(4696), + [aux_sym_float_token2] = ACTIONS(4698), + [anon_sym_SQUOTE] = ACTIONS(4698), + [sym_operator_symbol] = ACTIONS(4698), + [sym_unquoted_symbol] = ACTIONS(4698), + [anon_sym_COLON_DQUOTE] = ACTIONS(4698), + [anon_sym_BQUOTE] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_DASH_GT] = ACTIONS(4698), + [anon_sym_annotation] = ACTIONS(4696), + [anon_sym_end] = ACTIONS(4696), + [anon_sym_AT_LBRACK] = ACTIONS(4698), + [anon_sym_private] = ACTIONS(4696), + [anon_sym_module] = ACTIONS(4696), + [anon_sym_abstract] = ACTIONS(4696), + [anon_sym_class] = ACTIONS(4696), + [anon_sym_struct] = ACTIONS(4696), + [anon_sym_enum] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4698), + [anon_sym_TILDE] = ACTIONS(4698), + [anon_sym_def] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_protected] = ACTIONS(4696), + [anon_sym_include] = ACTIONS(4696), + [anon_sym_extend] = ACTIONS(4696), + [anon_sym_forall] = ACTIONS(4696), + [anon_sym_return] = ACTIONS(4696), + [anon_sym_next] = ACTIONS(4696), + [anon_sym_break] = ACTIONS(4696), + [anon_sym_with] = ACTIONS(4696), + [anon_sym_yield] = ACTIONS(4696), + [anon_sym_typeof] = ACTIONS(4696), + [anon_sym_sizeof] = ACTIONS(4696), + [anon_sym_instance_sizeof] = ACTIONS(4696), + [anon_sym_offsetof] = ACTIONS(4696), + [sym__constant_segment] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(4698), + [anon_sym___LINE__] = ACTIONS(4696), + [anon_sym___END_LINE__] = ACTIONS(4696), + [anon_sym___FILE__] = ACTIONS(4696), + [anon_sym___DIR__] = ACTIONS(4696), + [sym_special_variable] = ACTIONS(4698), + [sym_identifier_method_call] = ACTIONS(4698), + [sym_instance_var] = ACTIONS(4698), + [sym_class_var] = ACTIONS(4698), + [sym_self] = ACTIONS(4696), + [anon_sym_QMARK] = ACTIONS(4698), + [anon_sym_alias] = ACTIONS(4696), + [anon_sym_begin] = ACTIONS(4696), + [anon_sym_while] = ACTIONS(4696), + [anon_sym_until] = ACTIONS(4696), + [anon_sym_else] = ACTIONS(4696), + [anon_sym_require] = ACTIONS(4696), + [anon_sym_case] = ACTIONS(4696), + [anon_sym_select] = ACTIONS(4696), + [sym__line_break] = ACTIONS(4698), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4698), + [sym__start_of_named_tuple] = ACTIONS(4698), + [sym_unary_plus] = ACTIONS(4698), + [sym_unary_minus] = ACTIONS(4698), + [sym_unary_wrapping_plus] = ACTIONS(4698), + [sym_unary_wrapping_minus] = ACTIONS(4698), + [sym__beginless_range_operator] = ACTIONS(4698), + [sym__regex_start] = ACTIONS(4698), + [sym__regular_if_keyword] = ACTIONS(4698), + [sym__regular_unless_keyword] = ACTIONS(4698), + [sym__regular_rescue_keyword] = ACTIONS(4698), + [sym__regular_ensure_keyword] = ACTIONS(4698), + [sym__string_literal_start] = ACTIONS(4698), + [sym__string_percent_literal_start] = ACTIONS(4698), + [sym__command_percent_literal_start] = ACTIONS(4698), + [sym__string_array_percent_literal_start] = ACTIONS(4698), + [sym__symbol_array_percent_literal_start] = ACTIONS(4698), + [sym__regex_percent_literal_start] = ACTIONS(4698), + [sym_heredoc_start] = ACTIONS(4698), [sym__heredoc_body_start] = ACTIONS(7), }, [2022] = { [sym_heredoc_body] = STATE(2022), - [sym_identifier] = ACTIONS(4659), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4659), - [sym_true] = ACTIONS(4659), - [sym_false] = ACTIONS(4659), - [aux_sym_integer_token2] = ACTIONS(4659), - [aux_sym_float_token2] = ACTIONS(4661), - [anon_sym_SQUOTE] = ACTIONS(4661), - [sym_operator_symbol] = ACTIONS(4661), - [sym_unquoted_symbol] = ACTIONS(4661), - [anon_sym_COLON_DQUOTE] = ACTIONS(4661), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH_GT] = ACTIONS(4661), - [anon_sym_annotation] = ACTIONS(4659), - [anon_sym_end] = ACTIONS(4659), - [anon_sym_AT_LBRACK] = ACTIONS(4661), - [anon_sym_private] = ACTIONS(4659), - [anon_sym_module] = ACTIONS(4659), - [anon_sym_abstract] = ACTIONS(4659), - [anon_sym_class] = ACTIONS(4659), - [anon_sym_struct] = ACTIONS(4659), - [anon_sym_enum] = ACTIONS(4659), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_def] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4661), - [anon_sym_protected] = ACTIONS(4659), - [anon_sym_include] = ACTIONS(4659), - [anon_sym_extend] = ACTIONS(4659), - [anon_sym_forall] = ACTIONS(4659), - [anon_sym_return] = ACTIONS(4659), - [anon_sym_next] = ACTIONS(4659), - [anon_sym_break] = ACTIONS(4659), - [anon_sym_with] = ACTIONS(4659), - [anon_sym_yield] = ACTIONS(4659), - [anon_sym_typeof] = ACTIONS(4659), - [anon_sym_sizeof] = ACTIONS(4659), - [anon_sym_instance_sizeof] = ACTIONS(4659), - [anon_sym_offsetof] = ACTIONS(4659), - [sym__constant_segment] = ACTIONS(4661), - [anon_sym_COLON_COLON] = ACTIONS(4661), - [anon_sym___LINE__] = ACTIONS(4659), - [anon_sym___END_LINE__] = ACTIONS(4659), - [anon_sym___FILE__] = ACTIONS(4659), - [anon_sym___DIR__] = ACTIONS(4659), - [sym_special_variable] = ACTIONS(4661), - [sym_identifier_method_call] = ACTIONS(4661), - [sym_instance_var] = ACTIONS(4661), - [sym_class_var] = ACTIONS(4661), - [sym_self] = ACTIONS(4659), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_alias] = ACTIONS(4659), - [anon_sym_begin] = ACTIONS(4659), - [anon_sym_while] = ACTIONS(4659), - [anon_sym_until] = ACTIONS(4659), - [anon_sym_else] = ACTIONS(4659), - [anon_sym_require] = ACTIONS(4659), - [anon_sym_case] = ACTIONS(4659), - [sym__line_break] = ACTIONS(4661), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4661), - [sym__start_of_named_tuple] = ACTIONS(4661), - [sym_unary_plus] = ACTIONS(4661), - [sym_unary_minus] = ACTIONS(4661), - [sym_unary_wrapping_plus] = ACTIONS(4661), - [sym_unary_wrapping_minus] = ACTIONS(4661), - [sym__beginless_range_operator] = ACTIONS(4661), - [sym__regex_start] = ACTIONS(4661), - [sym__regular_if_keyword] = ACTIONS(4661), - [sym__regular_unless_keyword] = ACTIONS(4661), - [sym__regular_rescue_keyword] = ACTIONS(4661), - [sym__regular_ensure_keyword] = ACTIONS(4661), - [sym__string_literal_start] = ACTIONS(4661), - [sym__string_percent_literal_start] = ACTIONS(4661), - [sym__command_percent_literal_start] = ACTIONS(4661), - [sym__string_array_percent_literal_start] = ACTIONS(4661), - [sym__symbol_array_percent_literal_start] = ACTIONS(4661), - [sym__regex_percent_literal_start] = ACTIONS(4661), - [sym_heredoc_start] = ACTIONS(4661), + [sym_identifier] = ACTIONS(4700), + [anon_sym_SEMI] = ACTIONS(4702), + [anon_sym_LPAREN] = ACTIONS(4702), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4700), + [sym_true] = ACTIONS(4700), + [sym_false] = ACTIONS(4700), + [aux_sym_integer_token2] = ACTIONS(4700), + [aux_sym_float_token2] = ACTIONS(4702), + [anon_sym_SQUOTE] = ACTIONS(4702), + [sym_operator_symbol] = ACTIONS(4702), + [sym_unquoted_symbol] = ACTIONS(4702), + [anon_sym_COLON_DQUOTE] = ACTIONS(4702), + [anon_sym_BQUOTE] = ACTIONS(4702), + [anon_sym_LBRACK] = ACTIONS(4702), + [anon_sym_COMMA] = ACTIONS(4702), + [anon_sym_DASH_GT] = ACTIONS(4702), + [anon_sym_annotation] = ACTIONS(4700), + [anon_sym_end] = ACTIONS(4700), + [anon_sym_AT_LBRACK] = ACTIONS(4702), + [anon_sym_private] = ACTIONS(4700), + [anon_sym_module] = ACTIONS(4700), + [anon_sym_abstract] = ACTIONS(4700), + [anon_sym_class] = ACTIONS(4700), + [anon_sym_struct] = ACTIONS(4700), + [anon_sym_enum] = ACTIONS(4700), + [anon_sym_STAR] = ACTIONS(4702), + [anon_sym_PIPE] = ACTIONS(4702), + [anon_sym_BANG] = ACTIONS(4702), + [anon_sym_TILDE] = ACTIONS(4702), + [anon_sym_def] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4702), + [anon_sym_protected] = ACTIONS(4700), + [anon_sym_include] = ACTIONS(4700), + [anon_sym_extend] = ACTIONS(4700), + [anon_sym_forall] = ACTIONS(4700), + [anon_sym_return] = ACTIONS(4700), + [anon_sym_next] = ACTIONS(4700), + [anon_sym_break] = ACTIONS(4700), + [anon_sym_with] = ACTIONS(4700), + [anon_sym_yield] = ACTIONS(4700), + [anon_sym_typeof] = ACTIONS(4700), + [anon_sym_sizeof] = ACTIONS(4700), + [anon_sym_instance_sizeof] = ACTIONS(4700), + [anon_sym_offsetof] = ACTIONS(4700), + [sym__constant_segment] = ACTIONS(4702), + [anon_sym_COLON_COLON] = ACTIONS(4702), + [anon_sym___LINE__] = ACTIONS(4700), + [anon_sym___END_LINE__] = ACTIONS(4700), + [anon_sym___FILE__] = ACTIONS(4700), + [anon_sym___DIR__] = ACTIONS(4700), + [sym_special_variable] = ACTIONS(4702), + [sym_identifier_method_call] = ACTIONS(4702), + [sym_instance_var] = ACTIONS(4702), + [sym_class_var] = ACTIONS(4702), + [sym_self] = ACTIONS(4700), + [anon_sym_QMARK] = ACTIONS(4702), + [anon_sym_alias] = ACTIONS(4700), + [anon_sym_begin] = ACTIONS(4700), + [anon_sym_while] = ACTIONS(4700), + [anon_sym_until] = ACTIONS(4700), + [anon_sym_else] = ACTIONS(4700), + [anon_sym_require] = ACTIONS(4700), + [anon_sym_case] = ACTIONS(4700), + [anon_sym_select] = ACTIONS(4700), + [sym__line_break] = ACTIONS(4702), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4702), + [sym__start_of_named_tuple] = ACTIONS(4702), + [sym_unary_plus] = ACTIONS(4702), + [sym_unary_minus] = ACTIONS(4702), + [sym_unary_wrapping_plus] = ACTIONS(4702), + [sym_unary_wrapping_minus] = ACTIONS(4702), + [sym__beginless_range_operator] = ACTIONS(4702), + [sym__regex_start] = ACTIONS(4702), + [sym__regular_if_keyword] = ACTIONS(4702), + [sym__regular_unless_keyword] = ACTIONS(4702), + [sym__regular_rescue_keyword] = ACTIONS(4702), + [sym__regular_ensure_keyword] = ACTIONS(4702), + [sym__string_literal_start] = ACTIONS(4702), + [sym__string_percent_literal_start] = ACTIONS(4702), + [sym__command_percent_literal_start] = ACTIONS(4702), + [sym__string_array_percent_literal_start] = ACTIONS(4702), + [sym__symbol_array_percent_literal_start] = ACTIONS(4702), + [sym__regex_percent_literal_start] = ACTIONS(4702), + [sym_heredoc_start] = ACTIONS(4702), [sym__heredoc_body_start] = ACTIONS(7), }, [2023] = { [sym_heredoc_body] = STATE(2023), - [sym_identifier] = ACTIONS(4663), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4663), - [sym_true] = ACTIONS(4663), - [sym_false] = ACTIONS(4663), - [aux_sym_integer_token2] = ACTIONS(4663), - [aux_sym_float_token2] = ACTIONS(4665), - [anon_sym_SQUOTE] = ACTIONS(4665), - [sym_operator_symbol] = ACTIONS(4665), - [sym_unquoted_symbol] = ACTIONS(4665), - [anon_sym_COLON_DQUOTE] = ACTIONS(4665), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH_GT] = ACTIONS(4665), - [anon_sym_annotation] = ACTIONS(4663), - [anon_sym_end] = ACTIONS(4663), - [anon_sym_AT_LBRACK] = ACTIONS(4665), - [anon_sym_private] = ACTIONS(4663), - [anon_sym_module] = ACTIONS(4663), - [anon_sym_abstract] = ACTIONS(4663), - [anon_sym_class] = ACTIONS(4663), - [anon_sym_struct] = ACTIONS(4663), - [anon_sym_enum] = ACTIONS(4663), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_def] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4665), - [anon_sym_protected] = ACTIONS(4663), - [anon_sym_include] = ACTIONS(4663), - [anon_sym_extend] = ACTIONS(4663), - [anon_sym_forall] = ACTIONS(4663), - [anon_sym_return] = ACTIONS(4663), - [anon_sym_next] = ACTIONS(4663), - [anon_sym_break] = ACTIONS(4663), - [anon_sym_with] = ACTIONS(4663), - [anon_sym_yield] = ACTIONS(4663), - [anon_sym_typeof] = ACTIONS(4663), - [anon_sym_sizeof] = ACTIONS(4663), - [anon_sym_instance_sizeof] = ACTIONS(4663), - [anon_sym_offsetof] = ACTIONS(4663), - [sym__constant_segment] = ACTIONS(4665), - [anon_sym_COLON_COLON] = ACTIONS(4665), - [anon_sym___LINE__] = ACTIONS(4663), - [anon_sym___END_LINE__] = ACTIONS(4663), - [anon_sym___FILE__] = ACTIONS(4663), - [anon_sym___DIR__] = ACTIONS(4663), - [sym_special_variable] = ACTIONS(4665), - [sym_identifier_method_call] = ACTIONS(4665), - [sym_instance_var] = ACTIONS(4665), - [sym_class_var] = ACTIONS(4665), - [sym_self] = ACTIONS(4663), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_alias] = ACTIONS(4663), - [anon_sym_begin] = ACTIONS(4663), - [anon_sym_while] = ACTIONS(4663), - [anon_sym_until] = ACTIONS(4663), - [anon_sym_else] = ACTIONS(4663), - [anon_sym_require] = ACTIONS(4663), - [anon_sym_case] = ACTIONS(4663), - [sym__line_break] = ACTIONS(4665), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4665), - [sym__start_of_named_tuple] = ACTIONS(4665), - [sym_unary_plus] = ACTIONS(4665), - [sym_unary_minus] = ACTIONS(4665), - [sym_unary_wrapping_plus] = ACTIONS(4665), - [sym_unary_wrapping_minus] = ACTIONS(4665), - [sym__beginless_range_operator] = ACTIONS(4665), - [sym__regex_start] = ACTIONS(4665), - [sym__regular_if_keyword] = ACTIONS(4665), - [sym__regular_unless_keyword] = ACTIONS(4665), - [sym__regular_rescue_keyword] = ACTIONS(4665), - [sym__regular_ensure_keyword] = ACTIONS(4665), - [sym__string_literal_start] = ACTIONS(4665), - [sym__string_percent_literal_start] = ACTIONS(4665), - [sym__command_percent_literal_start] = ACTIONS(4665), - [sym__string_array_percent_literal_start] = ACTIONS(4665), - [sym__symbol_array_percent_literal_start] = ACTIONS(4665), - [sym__regex_percent_literal_start] = ACTIONS(4665), - [sym_heredoc_start] = ACTIONS(4665), + [sym_identifier] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4706), + [anon_sym_LPAREN] = ACTIONS(4706), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4704), + [sym_true] = ACTIONS(4704), + [sym_false] = ACTIONS(4704), + [aux_sym_integer_token2] = ACTIONS(4704), + [aux_sym_float_token2] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4706), + [sym_operator_symbol] = ACTIONS(4706), + [sym_unquoted_symbol] = ACTIONS(4706), + [anon_sym_COLON_DQUOTE] = ACTIONS(4706), + [anon_sym_BQUOTE] = ACTIONS(4706), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_COMMA] = ACTIONS(4706), + [anon_sym_DASH_GT] = ACTIONS(4706), + [anon_sym_annotation] = ACTIONS(4704), + [anon_sym_end] = ACTIONS(4704), + [anon_sym_AT_LBRACK] = ACTIONS(4706), + [anon_sym_private] = ACTIONS(4704), + [anon_sym_module] = ACTIONS(4704), + [anon_sym_abstract] = ACTIONS(4704), + [anon_sym_class] = ACTIONS(4704), + [anon_sym_struct] = ACTIONS(4704), + [anon_sym_enum] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4706), + [anon_sym_PIPE] = ACTIONS(4706), + [anon_sym_BANG] = ACTIONS(4706), + [anon_sym_TILDE] = ACTIONS(4706), + [anon_sym_def] = ACTIONS(4704), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_protected] = ACTIONS(4704), + [anon_sym_include] = ACTIONS(4704), + [anon_sym_extend] = ACTIONS(4704), + [anon_sym_forall] = ACTIONS(4704), + [anon_sym_return] = ACTIONS(4704), + [anon_sym_next] = ACTIONS(4704), + [anon_sym_break] = ACTIONS(4704), + [anon_sym_with] = ACTIONS(4704), + [anon_sym_yield] = ACTIONS(4704), + [anon_sym_typeof] = ACTIONS(4704), + [anon_sym_sizeof] = ACTIONS(4704), + [anon_sym_instance_sizeof] = ACTIONS(4704), + [anon_sym_offsetof] = ACTIONS(4704), + [sym__constant_segment] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(4706), + [anon_sym___LINE__] = ACTIONS(4704), + [anon_sym___END_LINE__] = ACTIONS(4704), + [anon_sym___FILE__] = ACTIONS(4704), + [anon_sym___DIR__] = ACTIONS(4704), + [sym_special_variable] = ACTIONS(4706), + [sym_identifier_method_call] = ACTIONS(4706), + [sym_instance_var] = ACTIONS(4706), + [sym_class_var] = ACTIONS(4706), + [sym_self] = ACTIONS(4704), + [anon_sym_QMARK] = ACTIONS(4706), + [anon_sym_alias] = ACTIONS(4704), + [anon_sym_begin] = ACTIONS(4704), + [anon_sym_while] = ACTIONS(4704), + [anon_sym_until] = ACTIONS(4704), + [anon_sym_else] = ACTIONS(4704), + [anon_sym_require] = ACTIONS(4704), + [anon_sym_case] = ACTIONS(4704), + [anon_sym_select] = ACTIONS(4704), + [sym__line_break] = ACTIONS(4706), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4706), + [sym__start_of_named_tuple] = ACTIONS(4706), + [sym_unary_plus] = ACTIONS(4706), + [sym_unary_minus] = ACTIONS(4706), + [sym_unary_wrapping_plus] = ACTIONS(4706), + [sym_unary_wrapping_minus] = ACTIONS(4706), + [sym__beginless_range_operator] = ACTIONS(4706), + [sym__regex_start] = ACTIONS(4706), + [sym__regular_if_keyword] = ACTIONS(4706), + [sym__regular_unless_keyword] = ACTIONS(4706), + [sym__regular_rescue_keyword] = ACTIONS(4706), + [sym__regular_ensure_keyword] = ACTIONS(4706), + [sym__string_literal_start] = ACTIONS(4706), + [sym__string_percent_literal_start] = ACTIONS(4706), + [sym__command_percent_literal_start] = ACTIONS(4706), + [sym__string_array_percent_literal_start] = ACTIONS(4706), + [sym__symbol_array_percent_literal_start] = ACTIONS(4706), + [sym__regex_percent_literal_start] = ACTIONS(4706), + [sym_heredoc_start] = ACTIONS(4706), [sym__heredoc_body_start] = ACTIONS(7), }, [2024] = { [sym_heredoc_body] = STATE(2024), - [sym_identifier] = ACTIONS(4667), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4667), - [sym_true] = ACTIONS(4667), - [sym_false] = ACTIONS(4667), - [aux_sym_integer_token2] = ACTIONS(4667), - [aux_sym_float_token2] = ACTIONS(4669), - [anon_sym_SQUOTE] = ACTIONS(4669), - [sym_operator_symbol] = ACTIONS(4669), - [sym_unquoted_symbol] = ACTIONS(4669), - [anon_sym_COLON_DQUOTE] = ACTIONS(4669), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH_GT] = ACTIONS(4669), - [anon_sym_annotation] = ACTIONS(4667), - [anon_sym_end] = ACTIONS(4667), - [anon_sym_AT_LBRACK] = ACTIONS(4669), - [anon_sym_private] = ACTIONS(4667), - [anon_sym_module] = ACTIONS(4667), - [anon_sym_abstract] = ACTIONS(4667), - [anon_sym_class] = ACTIONS(4667), - [anon_sym_struct] = ACTIONS(4667), - [anon_sym_enum] = ACTIONS(4667), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_def] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4669), - [anon_sym_protected] = ACTIONS(4667), - [anon_sym_include] = ACTIONS(4667), - [anon_sym_extend] = ACTIONS(4667), - [anon_sym_forall] = ACTIONS(4667), - [anon_sym_return] = ACTIONS(4667), - [anon_sym_next] = ACTIONS(4667), - [anon_sym_break] = ACTIONS(4667), - [anon_sym_with] = ACTIONS(4667), - [anon_sym_yield] = ACTIONS(4667), - [anon_sym_typeof] = ACTIONS(4667), - [anon_sym_sizeof] = ACTIONS(4667), - [anon_sym_instance_sizeof] = ACTIONS(4667), - [anon_sym_offsetof] = ACTIONS(4667), - [sym__constant_segment] = ACTIONS(4669), - [anon_sym_COLON_COLON] = ACTIONS(4669), - [anon_sym___LINE__] = ACTIONS(4667), - [anon_sym___END_LINE__] = ACTIONS(4667), - [anon_sym___FILE__] = ACTIONS(4667), - [anon_sym___DIR__] = ACTIONS(4667), - [sym_special_variable] = ACTIONS(4669), - [sym_identifier_method_call] = ACTIONS(4669), - [sym_instance_var] = ACTIONS(4669), - [sym_class_var] = ACTIONS(4669), - [sym_self] = ACTIONS(4667), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_alias] = ACTIONS(4667), - [anon_sym_begin] = ACTIONS(4667), - [anon_sym_while] = ACTIONS(4667), - [anon_sym_until] = ACTIONS(4667), - [anon_sym_else] = ACTIONS(4667), - [anon_sym_require] = ACTIONS(4667), - [anon_sym_case] = ACTIONS(4667), - [sym__line_break] = ACTIONS(4669), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4669), - [sym__start_of_named_tuple] = ACTIONS(4669), - [sym_unary_plus] = ACTIONS(4669), - [sym_unary_minus] = ACTIONS(4669), - [sym_unary_wrapping_plus] = ACTIONS(4669), - [sym_unary_wrapping_minus] = ACTIONS(4669), - [sym__beginless_range_operator] = ACTIONS(4669), - [sym__regex_start] = ACTIONS(4669), - [sym__regular_if_keyword] = ACTIONS(4669), - [sym__regular_unless_keyword] = ACTIONS(4669), - [sym__regular_rescue_keyword] = ACTIONS(4669), - [sym__regular_ensure_keyword] = ACTIONS(4669), - [sym__string_literal_start] = ACTIONS(4669), - [sym__string_percent_literal_start] = ACTIONS(4669), - [sym__command_percent_literal_start] = ACTIONS(4669), - [sym__string_array_percent_literal_start] = ACTIONS(4669), - [sym__symbol_array_percent_literal_start] = ACTIONS(4669), - [sym__regex_percent_literal_start] = ACTIONS(4669), - [sym_heredoc_start] = ACTIONS(4669), + [sym_identifier] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4644), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4642), + [sym_true] = ACTIONS(4642), + [sym_false] = ACTIONS(4642), + [aux_sym_integer_token2] = ACTIONS(4642), + [aux_sym_float_token2] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4644), + [sym_operator_symbol] = ACTIONS(4644), + [sym_unquoted_symbol] = ACTIONS(4644), + [anon_sym_COLON_DQUOTE] = ACTIONS(4644), + [anon_sym_BQUOTE] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_COMMA] = ACTIONS(4644), + [anon_sym_DASH_GT] = ACTIONS(4644), + [anon_sym_annotation] = ACTIONS(4642), + [anon_sym_end] = ACTIONS(4642), + [anon_sym_AT_LBRACK] = ACTIONS(4644), + [anon_sym_private] = ACTIONS(4642), + [anon_sym_module] = ACTIONS(4642), + [anon_sym_abstract] = ACTIONS(4642), + [anon_sym_class] = ACTIONS(4642), + [anon_sym_struct] = ACTIONS(4642), + [anon_sym_enum] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4644), + [anon_sym_PIPE] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_TILDE] = ACTIONS(4644), + [anon_sym_def] = ACTIONS(4642), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_protected] = ACTIONS(4642), + [anon_sym_include] = ACTIONS(4642), + [anon_sym_extend] = ACTIONS(4642), + [anon_sym_forall] = ACTIONS(4642), + [anon_sym_return] = ACTIONS(4642), + [anon_sym_next] = ACTIONS(4642), + [anon_sym_break] = ACTIONS(4642), + [anon_sym_with] = ACTIONS(4642), + [anon_sym_yield] = ACTIONS(4642), + [anon_sym_typeof] = ACTIONS(4642), + [anon_sym_sizeof] = ACTIONS(4642), + [anon_sym_instance_sizeof] = ACTIONS(4642), + [anon_sym_offsetof] = ACTIONS(4642), + [sym__constant_segment] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4644), + [anon_sym___LINE__] = ACTIONS(4642), + [anon_sym___END_LINE__] = ACTIONS(4642), + [anon_sym___FILE__] = ACTIONS(4642), + [anon_sym___DIR__] = ACTIONS(4642), + [sym_special_variable] = ACTIONS(4644), + [sym_identifier_method_call] = ACTIONS(4644), + [sym_instance_var] = ACTIONS(4644), + [sym_class_var] = ACTIONS(4644), + [sym_self] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4644), + [anon_sym_alias] = ACTIONS(4642), + [anon_sym_begin] = ACTIONS(4642), + [anon_sym_while] = ACTIONS(4642), + [anon_sym_until] = ACTIONS(4642), + [anon_sym_else] = ACTIONS(4642), + [anon_sym_require] = ACTIONS(4642), + [anon_sym_case] = ACTIONS(4642), + [anon_sym_select] = ACTIONS(4642), + [sym__line_break] = ACTIONS(4644), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4644), + [sym__start_of_named_tuple] = ACTIONS(4644), + [sym_unary_plus] = ACTIONS(4644), + [sym_unary_minus] = ACTIONS(4644), + [sym_unary_wrapping_plus] = ACTIONS(4644), + [sym_unary_wrapping_minus] = ACTIONS(4644), + [sym__beginless_range_operator] = ACTIONS(4644), + [sym__regex_start] = ACTIONS(4644), + [sym__regular_if_keyword] = ACTIONS(4644), + [sym__regular_unless_keyword] = ACTIONS(4644), + [sym__regular_rescue_keyword] = ACTIONS(4644), + [sym__regular_ensure_keyword] = ACTIONS(4644), + [sym__string_literal_start] = ACTIONS(4644), + [sym__string_percent_literal_start] = ACTIONS(4644), + [sym__command_percent_literal_start] = ACTIONS(4644), + [sym__string_array_percent_literal_start] = ACTIONS(4644), + [sym__symbol_array_percent_literal_start] = ACTIONS(4644), + [sym__regex_percent_literal_start] = ACTIONS(4644), + [sym_heredoc_start] = ACTIONS(4644), [sym__heredoc_body_start] = ACTIONS(7), }, [2025] = { [sym_heredoc_body] = STATE(2025), - [sym_identifier] = ACTIONS(4671), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4671), - [sym_true] = ACTIONS(4671), - [sym_false] = ACTIONS(4671), - [aux_sym_integer_token2] = ACTIONS(4671), - [aux_sym_float_token2] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [sym_operator_symbol] = ACTIONS(4673), - [sym_unquoted_symbol] = ACTIONS(4673), - [anon_sym_COLON_DQUOTE] = ACTIONS(4673), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH_GT] = ACTIONS(4673), - [anon_sym_annotation] = ACTIONS(4671), - [anon_sym_end] = ACTIONS(4671), - [anon_sym_AT_LBRACK] = ACTIONS(4673), - [anon_sym_private] = ACTIONS(4671), - [anon_sym_module] = ACTIONS(4671), - [anon_sym_abstract] = ACTIONS(4671), - [anon_sym_class] = ACTIONS(4671), - [anon_sym_struct] = ACTIONS(4671), - [anon_sym_enum] = ACTIONS(4671), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_def] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4673), - [anon_sym_protected] = ACTIONS(4671), - [anon_sym_include] = ACTIONS(4671), - [anon_sym_extend] = ACTIONS(4671), - [anon_sym_forall] = ACTIONS(4671), - [anon_sym_return] = ACTIONS(4671), - [anon_sym_next] = ACTIONS(4671), - [anon_sym_break] = ACTIONS(4671), - [anon_sym_with] = ACTIONS(4671), - [anon_sym_yield] = ACTIONS(4671), - [anon_sym_typeof] = ACTIONS(4671), - [anon_sym_sizeof] = ACTIONS(4671), - [anon_sym_instance_sizeof] = ACTIONS(4671), - [anon_sym_offsetof] = ACTIONS(4671), - [sym__constant_segment] = ACTIONS(4673), - [anon_sym_COLON_COLON] = ACTIONS(4673), - [anon_sym___LINE__] = ACTIONS(4671), - [anon_sym___END_LINE__] = ACTIONS(4671), - [anon_sym___FILE__] = ACTIONS(4671), - [anon_sym___DIR__] = ACTIONS(4671), - [sym_special_variable] = ACTIONS(4673), - [sym_identifier_method_call] = ACTIONS(4673), - [sym_instance_var] = ACTIONS(4673), - [sym_class_var] = ACTIONS(4673), - [sym_self] = ACTIONS(4671), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_alias] = ACTIONS(4671), - [anon_sym_begin] = ACTIONS(4671), - [anon_sym_while] = ACTIONS(4671), - [anon_sym_until] = ACTIONS(4671), - [anon_sym_else] = ACTIONS(4671), - [anon_sym_require] = ACTIONS(4671), - [anon_sym_case] = ACTIONS(4671), - [sym__line_break] = ACTIONS(4673), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4673), - [sym__start_of_named_tuple] = ACTIONS(4673), - [sym_unary_plus] = ACTIONS(4673), - [sym_unary_minus] = ACTIONS(4673), - [sym_unary_wrapping_plus] = ACTIONS(4673), - [sym_unary_wrapping_minus] = ACTIONS(4673), - [sym__beginless_range_operator] = ACTIONS(4673), - [sym__regex_start] = ACTIONS(4673), - [sym__regular_if_keyword] = ACTIONS(4673), - [sym__regular_unless_keyword] = ACTIONS(4673), - [sym__regular_rescue_keyword] = ACTIONS(4673), - [sym__regular_ensure_keyword] = ACTIONS(4673), - [sym__string_literal_start] = ACTIONS(4673), - [sym__string_percent_literal_start] = ACTIONS(4673), - [sym__command_percent_literal_start] = ACTIONS(4673), - [sym__string_array_percent_literal_start] = ACTIONS(4673), - [sym__symbol_array_percent_literal_start] = ACTIONS(4673), - [sym__regex_percent_literal_start] = ACTIONS(4673), - [sym_heredoc_start] = ACTIONS(4673), + [sym_identifier] = ACTIONS(4708), + [anon_sym_SEMI] = ACTIONS(4710), + [anon_sym_LPAREN] = ACTIONS(4710), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4708), + [sym_true] = ACTIONS(4708), + [sym_false] = ACTIONS(4708), + [aux_sym_integer_token2] = ACTIONS(4708), + [aux_sym_float_token2] = ACTIONS(4710), + [anon_sym_SQUOTE] = ACTIONS(4710), + [sym_operator_symbol] = ACTIONS(4710), + [sym_unquoted_symbol] = ACTIONS(4710), + [anon_sym_COLON_DQUOTE] = ACTIONS(4710), + [anon_sym_BQUOTE] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4710), + [anon_sym_COMMA] = ACTIONS(4710), + [anon_sym_DASH_GT] = ACTIONS(4710), + [anon_sym_annotation] = ACTIONS(4708), + [anon_sym_end] = ACTIONS(4708), + [anon_sym_AT_LBRACK] = ACTIONS(4710), + [anon_sym_private] = ACTIONS(4708), + [anon_sym_module] = ACTIONS(4708), + [anon_sym_abstract] = ACTIONS(4708), + [anon_sym_class] = ACTIONS(4708), + [anon_sym_struct] = ACTIONS(4708), + [anon_sym_enum] = ACTIONS(4708), + [anon_sym_STAR] = ACTIONS(4710), + [anon_sym_PIPE] = ACTIONS(4710), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_TILDE] = ACTIONS(4710), + [anon_sym_def] = ACTIONS(4708), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_protected] = ACTIONS(4708), + [anon_sym_include] = ACTIONS(4708), + [anon_sym_extend] = ACTIONS(4708), + [anon_sym_forall] = ACTIONS(4708), + [anon_sym_return] = ACTIONS(4708), + [anon_sym_next] = ACTIONS(4708), + [anon_sym_break] = ACTIONS(4708), + [anon_sym_with] = ACTIONS(4708), + [anon_sym_yield] = ACTIONS(4708), + [anon_sym_typeof] = ACTIONS(4708), + [anon_sym_sizeof] = ACTIONS(4708), + [anon_sym_instance_sizeof] = ACTIONS(4708), + [anon_sym_offsetof] = ACTIONS(4708), + [sym__constant_segment] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4710), + [anon_sym___LINE__] = ACTIONS(4708), + [anon_sym___END_LINE__] = ACTIONS(4708), + [anon_sym___FILE__] = ACTIONS(4708), + [anon_sym___DIR__] = ACTIONS(4708), + [sym_special_variable] = ACTIONS(4710), + [sym_identifier_method_call] = ACTIONS(4710), + [sym_instance_var] = ACTIONS(4710), + [sym_class_var] = ACTIONS(4710), + [sym_self] = ACTIONS(4708), + [anon_sym_QMARK] = ACTIONS(4710), + [anon_sym_alias] = ACTIONS(4708), + [anon_sym_begin] = ACTIONS(4708), + [anon_sym_while] = ACTIONS(4708), + [anon_sym_until] = ACTIONS(4708), + [anon_sym_else] = ACTIONS(4708), + [anon_sym_require] = ACTIONS(4708), + [anon_sym_case] = ACTIONS(4708), + [anon_sym_select] = ACTIONS(4708), + [sym__line_break] = ACTIONS(4710), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4710), + [sym__start_of_named_tuple] = ACTIONS(4710), + [sym_unary_plus] = ACTIONS(4710), + [sym_unary_minus] = ACTIONS(4710), + [sym_unary_wrapping_plus] = ACTIONS(4710), + [sym_unary_wrapping_minus] = ACTIONS(4710), + [sym__beginless_range_operator] = ACTIONS(4710), + [sym__regex_start] = ACTIONS(4710), + [sym__regular_if_keyword] = ACTIONS(4710), + [sym__regular_unless_keyword] = ACTIONS(4710), + [sym__regular_rescue_keyword] = ACTIONS(4710), + [sym__regular_ensure_keyword] = ACTIONS(4710), + [sym__string_literal_start] = ACTIONS(4710), + [sym__string_percent_literal_start] = ACTIONS(4710), + [sym__command_percent_literal_start] = ACTIONS(4710), + [sym__string_array_percent_literal_start] = ACTIONS(4710), + [sym__symbol_array_percent_literal_start] = ACTIONS(4710), + [sym__regex_percent_literal_start] = ACTIONS(4710), + [sym_heredoc_start] = ACTIONS(4710), [sym__heredoc_body_start] = ACTIONS(7), }, [2026] = { [sym_heredoc_body] = STATE(2026), - [sym_identifier] = ACTIONS(4675), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4675), - [sym_true] = ACTIONS(4675), - [sym_false] = ACTIONS(4675), - [aux_sym_integer_token2] = ACTIONS(4675), - [aux_sym_float_token2] = ACTIONS(4677), - [anon_sym_SQUOTE] = ACTIONS(4677), - [sym_operator_symbol] = ACTIONS(4677), - [sym_unquoted_symbol] = ACTIONS(4677), - [anon_sym_COLON_DQUOTE] = ACTIONS(4677), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH_GT] = ACTIONS(4677), - [anon_sym_annotation] = ACTIONS(4675), - [anon_sym_end] = ACTIONS(4675), - [anon_sym_AT_LBRACK] = ACTIONS(4677), - [anon_sym_private] = ACTIONS(4675), - [anon_sym_module] = ACTIONS(4675), - [anon_sym_abstract] = ACTIONS(4675), - [anon_sym_class] = ACTIONS(4675), - [anon_sym_struct] = ACTIONS(4675), - [anon_sym_enum] = ACTIONS(4675), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_def] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4677), - [anon_sym_protected] = ACTIONS(4675), - [anon_sym_include] = ACTIONS(4675), - [anon_sym_extend] = ACTIONS(4675), - [anon_sym_forall] = ACTIONS(4675), - [anon_sym_return] = ACTIONS(4675), - [anon_sym_next] = ACTIONS(4675), - [anon_sym_break] = ACTIONS(4675), - [anon_sym_with] = ACTIONS(4675), - [anon_sym_yield] = ACTIONS(4675), - [anon_sym_typeof] = ACTIONS(4675), - [anon_sym_sizeof] = ACTIONS(4675), - [anon_sym_instance_sizeof] = ACTIONS(4675), - [anon_sym_offsetof] = ACTIONS(4675), - [sym__constant_segment] = ACTIONS(4677), - [anon_sym_COLON_COLON] = ACTIONS(4677), - [anon_sym___LINE__] = ACTIONS(4675), - [anon_sym___END_LINE__] = ACTIONS(4675), - [anon_sym___FILE__] = ACTIONS(4675), - [anon_sym___DIR__] = ACTIONS(4675), - [sym_special_variable] = ACTIONS(4677), - [sym_identifier_method_call] = ACTIONS(4677), - [sym_instance_var] = ACTIONS(4677), - [sym_class_var] = ACTIONS(4677), - [sym_self] = ACTIONS(4675), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_alias] = ACTIONS(4675), - [anon_sym_begin] = ACTIONS(4675), - [anon_sym_while] = ACTIONS(4675), - [anon_sym_until] = ACTIONS(4675), - [anon_sym_else] = ACTIONS(4675), - [anon_sym_require] = ACTIONS(4675), - [anon_sym_case] = ACTIONS(4675), - [sym__line_break] = ACTIONS(4677), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4677), - [sym__start_of_named_tuple] = ACTIONS(4677), - [sym_unary_plus] = ACTIONS(4677), - [sym_unary_minus] = ACTIONS(4677), - [sym_unary_wrapping_plus] = ACTIONS(4677), - [sym_unary_wrapping_minus] = ACTIONS(4677), - [sym__beginless_range_operator] = ACTIONS(4677), - [sym__regex_start] = ACTIONS(4677), - [sym__regular_if_keyword] = ACTIONS(4677), - [sym__regular_unless_keyword] = ACTIONS(4677), - [sym__regular_rescue_keyword] = ACTIONS(4677), - [sym__regular_ensure_keyword] = ACTIONS(4677), - [sym__string_literal_start] = ACTIONS(4677), - [sym__string_percent_literal_start] = ACTIONS(4677), - [sym__command_percent_literal_start] = ACTIONS(4677), - [sym__string_array_percent_literal_start] = ACTIONS(4677), - [sym__symbol_array_percent_literal_start] = ACTIONS(4677), - [sym__regex_percent_literal_start] = ACTIONS(4677), - [sym_heredoc_start] = ACTIONS(4677), + [sym_identifier] = ACTIONS(4712), + [anon_sym_SEMI] = ACTIONS(4714), + [anon_sym_LPAREN] = ACTIONS(4714), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4712), + [sym_true] = ACTIONS(4712), + [sym_false] = ACTIONS(4712), + [aux_sym_integer_token2] = ACTIONS(4712), + [aux_sym_float_token2] = ACTIONS(4714), + [anon_sym_SQUOTE] = ACTIONS(4714), + [sym_operator_symbol] = ACTIONS(4714), + [sym_unquoted_symbol] = ACTIONS(4714), + [anon_sym_COLON_DQUOTE] = ACTIONS(4714), + [anon_sym_BQUOTE] = ACTIONS(4714), + [anon_sym_LBRACK] = ACTIONS(4714), + [anon_sym_COMMA] = ACTIONS(4714), + [anon_sym_DASH_GT] = ACTIONS(4714), + [anon_sym_annotation] = ACTIONS(4712), + [anon_sym_end] = ACTIONS(4712), + [anon_sym_AT_LBRACK] = ACTIONS(4714), + [anon_sym_private] = ACTIONS(4712), + [anon_sym_module] = ACTIONS(4712), + [anon_sym_abstract] = ACTIONS(4712), + [anon_sym_class] = ACTIONS(4712), + [anon_sym_struct] = ACTIONS(4712), + [anon_sym_enum] = ACTIONS(4712), + [anon_sym_STAR] = ACTIONS(4714), + [anon_sym_PIPE] = ACTIONS(4714), + [anon_sym_BANG] = ACTIONS(4714), + [anon_sym_TILDE] = ACTIONS(4714), + [anon_sym_def] = ACTIONS(4712), + [anon_sym_DOT] = ACTIONS(4714), + [anon_sym_protected] = ACTIONS(4712), + [anon_sym_include] = ACTIONS(4712), + [anon_sym_extend] = ACTIONS(4712), + [anon_sym_forall] = ACTIONS(4712), + [anon_sym_return] = ACTIONS(4712), + [anon_sym_next] = ACTIONS(4712), + [anon_sym_break] = ACTIONS(4712), + [anon_sym_with] = ACTIONS(4712), + [anon_sym_yield] = ACTIONS(4712), + [anon_sym_typeof] = ACTIONS(4712), + [anon_sym_sizeof] = ACTIONS(4712), + [anon_sym_instance_sizeof] = ACTIONS(4712), + [anon_sym_offsetof] = ACTIONS(4712), + [sym__constant_segment] = ACTIONS(4714), + [anon_sym_COLON_COLON] = ACTIONS(4714), + [anon_sym___LINE__] = ACTIONS(4712), + [anon_sym___END_LINE__] = ACTIONS(4712), + [anon_sym___FILE__] = ACTIONS(4712), + [anon_sym___DIR__] = ACTIONS(4712), + [sym_special_variable] = ACTIONS(4714), + [sym_identifier_method_call] = ACTIONS(4714), + [sym_instance_var] = ACTIONS(4714), + [sym_class_var] = ACTIONS(4714), + [sym_self] = ACTIONS(4712), + [anon_sym_QMARK] = ACTIONS(4714), + [anon_sym_alias] = ACTIONS(4712), + [anon_sym_begin] = ACTIONS(4712), + [anon_sym_while] = ACTIONS(4712), + [anon_sym_until] = ACTIONS(4712), + [anon_sym_else] = ACTIONS(4712), + [anon_sym_require] = ACTIONS(4712), + [anon_sym_case] = ACTIONS(4712), + [anon_sym_select] = ACTIONS(4712), + [sym__line_break] = ACTIONS(4714), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4714), + [sym__start_of_named_tuple] = ACTIONS(4714), + [sym_unary_plus] = ACTIONS(4714), + [sym_unary_minus] = ACTIONS(4714), + [sym_unary_wrapping_plus] = ACTIONS(4714), + [sym_unary_wrapping_minus] = ACTIONS(4714), + [sym__beginless_range_operator] = ACTIONS(4714), + [sym__regex_start] = ACTIONS(4714), + [sym__regular_if_keyword] = ACTIONS(4714), + [sym__regular_unless_keyword] = ACTIONS(4714), + [sym__regular_rescue_keyword] = ACTIONS(4714), + [sym__regular_ensure_keyword] = ACTIONS(4714), + [sym__string_literal_start] = ACTIONS(4714), + [sym__string_percent_literal_start] = ACTIONS(4714), + [sym__command_percent_literal_start] = ACTIONS(4714), + [sym__string_array_percent_literal_start] = ACTIONS(4714), + [sym__symbol_array_percent_literal_start] = ACTIONS(4714), + [sym__regex_percent_literal_start] = ACTIONS(4714), + [sym_heredoc_start] = ACTIONS(4714), [sym__heredoc_body_start] = ACTIONS(7), }, [2027] = { [sym_heredoc_body] = STATE(2027), - [sym_identifier] = ACTIONS(4679), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4679), - [sym_true] = ACTIONS(4679), - [sym_false] = ACTIONS(4679), - [aux_sym_integer_token2] = ACTIONS(4679), - [aux_sym_float_token2] = ACTIONS(4681), - [anon_sym_SQUOTE] = ACTIONS(4681), - [sym_operator_symbol] = ACTIONS(4681), - [sym_unquoted_symbol] = ACTIONS(4681), - [anon_sym_COLON_DQUOTE] = ACTIONS(4681), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH_GT] = ACTIONS(4681), - [anon_sym_annotation] = ACTIONS(4679), - [anon_sym_end] = ACTIONS(4679), - [anon_sym_AT_LBRACK] = ACTIONS(4681), - [anon_sym_private] = ACTIONS(4679), - [anon_sym_module] = ACTIONS(4679), - [anon_sym_abstract] = ACTIONS(4679), - [anon_sym_class] = ACTIONS(4679), - [anon_sym_struct] = ACTIONS(4679), - [anon_sym_enum] = ACTIONS(4679), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_def] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4681), - [anon_sym_protected] = ACTIONS(4679), - [anon_sym_include] = ACTIONS(4679), - [anon_sym_extend] = ACTIONS(4679), - [anon_sym_forall] = ACTIONS(4679), - [anon_sym_return] = ACTIONS(4679), - [anon_sym_next] = ACTIONS(4679), - [anon_sym_break] = ACTIONS(4679), - [anon_sym_with] = ACTIONS(4679), - [anon_sym_yield] = ACTIONS(4679), - [anon_sym_typeof] = ACTIONS(4679), - [anon_sym_sizeof] = ACTIONS(4679), - [anon_sym_instance_sizeof] = ACTIONS(4679), - [anon_sym_offsetof] = ACTIONS(4679), - [sym__constant_segment] = ACTIONS(4681), - [anon_sym_COLON_COLON] = ACTIONS(4681), - [anon_sym___LINE__] = ACTIONS(4679), - [anon_sym___END_LINE__] = ACTIONS(4679), - [anon_sym___FILE__] = ACTIONS(4679), - [anon_sym___DIR__] = ACTIONS(4679), - [sym_special_variable] = ACTIONS(4681), - [sym_identifier_method_call] = ACTIONS(4681), - [sym_instance_var] = ACTIONS(4681), - [sym_class_var] = ACTIONS(4681), - [sym_self] = ACTIONS(4679), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_alias] = ACTIONS(4679), - [anon_sym_begin] = ACTIONS(4679), - [anon_sym_while] = ACTIONS(4679), - [anon_sym_until] = ACTIONS(4679), - [anon_sym_else] = ACTIONS(4679), - [anon_sym_require] = ACTIONS(4679), - [anon_sym_case] = ACTIONS(4679), - [sym__line_break] = ACTIONS(4681), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4681), - [sym__start_of_named_tuple] = ACTIONS(4681), - [sym_unary_plus] = ACTIONS(4681), - [sym_unary_minus] = ACTIONS(4681), - [sym_unary_wrapping_plus] = ACTIONS(4681), - [sym_unary_wrapping_minus] = ACTIONS(4681), - [sym__beginless_range_operator] = ACTIONS(4681), - [sym__regex_start] = ACTIONS(4681), - [sym__regular_if_keyword] = ACTIONS(4681), - [sym__regular_unless_keyword] = ACTIONS(4681), - [sym__regular_rescue_keyword] = ACTIONS(4681), - [sym__regular_ensure_keyword] = ACTIONS(4681), - [sym__string_literal_start] = ACTIONS(4681), - [sym__string_percent_literal_start] = ACTIONS(4681), - [sym__command_percent_literal_start] = ACTIONS(4681), - [sym__string_array_percent_literal_start] = ACTIONS(4681), - [sym__symbol_array_percent_literal_start] = ACTIONS(4681), - [sym__regex_percent_literal_start] = ACTIONS(4681), - [sym_heredoc_start] = ACTIONS(4681), + [sym_identifier] = ACTIONS(4716), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4716), + [sym_true] = ACTIONS(4716), + [sym_false] = ACTIONS(4716), + [aux_sym_integer_token2] = ACTIONS(4716), + [aux_sym_float_token2] = ACTIONS(4718), + [anon_sym_SQUOTE] = ACTIONS(4718), + [sym_operator_symbol] = ACTIONS(4718), + [sym_unquoted_symbol] = ACTIONS(4718), + [anon_sym_COLON_DQUOTE] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_DASH_GT] = ACTIONS(4718), + [anon_sym_annotation] = ACTIONS(4716), + [anon_sym_end] = ACTIONS(4716), + [anon_sym_AT_LBRACK] = ACTIONS(4718), + [anon_sym_private] = ACTIONS(4716), + [anon_sym_module] = ACTIONS(4716), + [anon_sym_abstract] = ACTIONS(4716), + [anon_sym_class] = ACTIONS(4716), + [anon_sym_struct] = ACTIONS(4716), + [anon_sym_enum] = ACTIONS(4716), + [anon_sym_STAR] = ACTIONS(4718), + [anon_sym_PIPE] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_TILDE] = ACTIONS(4718), + [anon_sym_def] = ACTIONS(4716), + [anon_sym_DOT] = ACTIONS(4718), + [anon_sym_protected] = ACTIONS(4716), + [anon_sym_include] = ACTIONS(4716), + [anon_sym_extend] = ACTIONS(4716), + [anon_sym_forall] = ACTIONS(4716), + [anon_sym_return] = ACTIONS(4716), + [anon_sym_next] = ACTIONS(4716), + [anon_sym_break] = ACTIONS(4716), + [anon_sym_with] = ACTIONS(4716), + [anon_sym_yield] = ACTIONS(4716), + [anon_sym_typeof] = ACTIONS(4716), + [anon_sym_sizeof] = ACTIONS(4716), + [anon_sym_instance_sizeof] = ACTIONS(4716), + [anon_sym_offsetof] = ACTIONS(4716), + [sym__constant_segment] = ACTIONS(4718), + [anon_sym_COLON_COLON] = ACTIONS(4718), + [anon_sym___LINE__] = ACTIONS(4716), + [anon_sym___END_LINE__] = ACTIONS(4716), + [anon_sym___FILE__] = ACTIONS(4716), + [anon_sym___DIR__] = ACTIONS(4716), + [sym_special_variable] = ACTIONS(4718), + [sym_identifier_method_call] = ACTIONS(4718), + [sym_instance_var] = ACTIONS(4718), + [sym_class_var] = ACTIONS(4718), + [sym_self] = ACTIONS(4716), + [anon_sym_QMARK] = ACTIONS(4718), + [anon_sym_alias] = ACTIONS(4716), + [anon_sym_begin] = ACTIONS(4716), + [anon_sym_while] = ACTIONS(4716), + [anon_sym_until] = ACTIONS(4716), + [anon_sym_else] = ACTIONS(4716), + [anon_sym_require] = ACTIONS(4716), + [anon_sym_case] = ACTIONS(4716), + [anon_sym_select] = ACTIONS(4716), + [sym__line_break] = ACTIONS(4718), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4718), + [sym__start_of_named_tuple] = ACTIONS(4718), + [sym_unary_plus] = ACTIONS(4718), + [sym_unary_minus] = ACTIONS(4718), + [sym_unary_wrapping_plus] = ACTIONS(4718), + [sym_unary_wrapping_minus] = ACTIONS(4718), + [sym__beginless_range_operator] = ACTIONS(4718), + [sym__regex_start] = ACTIONS(4718), + [sym__regular_if_keyword] = ACTIONS(4718), + [sym__regular_unless_keyword] = ACTIONS(4718), + [sym__regular_rescue_keyword] = ACTIONS(4718), + [sym__regular_ensure_keyword] = ACTIONS(4718), + [sym__string_literal_start] = ACTIONS(4718), + [sym__string_percent_literal_start] = ACTIONS(4718), + [sym__command_percent_literal_start] = ACTIONS(4718), + [sym__string_array_percent_literal_start] = ACTIONS(4718), + [sym__symbol_array_percent_literal_start] = ACTIONS(4718), + [sym__regex_percent_literal_start] = ACTIONS(4718), + [sym_heredoc_start] = ACTIONS(4718), [sym__heredoc_body_start] = ACTIONS(7), }, [2028] = { [sym_heredoc_body] = STATE(2028), - [aux_sym_union_type_repeat1] = STATE(2001), - [sym_identifier] = ACTIONS(4683), - [anon_sym_SEMI] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4685), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4683), - [sym_true] = ACTIONS(4683), - [sym_false] = ACTIONS(4683), - [aux_sym_integer_token2] = ACTIONS(4683), - [aux_sym_float_token2] = ACTIONS(4685), - [anon_sym_SQUOTE] = ACTIONS(4685), - [sym_operator_symbol] = ACTIONS(4685), - [sym_unquoted_symbol] = ACTIONS(4685), - [anon_sym_COLON_DQUOTE] = ACTIONS(4685), - [anon_sym_BQUOTE] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4572), - [anon_sym_DASH_GT] = ACTIONS(4685), - [anon_sym_annotation] = ACTIONS(4683), - [anon_sym_end] = ACTIONS(4683), - [anon_sym_AT_LBRACK] = ACTIONS(4685), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_module] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_class] = ACTIONS(4683), - [anon_sym_struct] = ACTIONS(4683), - [anon_sym_enum] = ACTIONS(4683), - [anon_sym_STAR] = ACTIONS(4574), - [anon_sym_PIPE] = ACTIONS(4576), - [anon_sym_BANG] = ACTIONS(4685), - [anon_sym_TILDE] = ACTIONS(4685), - [anon_sym_def] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4578), - [anon_sym_protected] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_extend] = ACTIONS(4683), - [anon_sym_forall] = ACTIONS(4683), - [anon_sym_return] = ACTIONS(4683), - [anon_sym_next] = ACTIONS(4683), - [anon_sym_break] = ACTIONS(4683), - [anon_sym_with] = ACTIONS(4683), - [anon_sym_yield] = ACTIONS(4683), - [anon_sym_typeof] = ACTIONS(4683), - [anon_sym_sizeof] = ACTIONS(4683), - [anon_sym_instance_sizeof] = ACTIONS(4683), - [anon_sym_offsetof] = ACTIONS(4683), - [sym__constant_segment] = ACTIONS(4685), - [anon_sym_COLON_COLON] = ACTIONS(4685), - [anon_sym___LINE__] = ACTIONS(4683), - [anon_sym___END_LINE__] = ACTIONS(4683), - [anon_sym___FILE__] = ACTIONS(4683), - [anon_sym___DIR__] = ACTIONS(4683), - [sym_special_variable] = ACTIONS(4685), - [sym_identifier_method_call] = ACTIONS(4685), - [sym_instance_var] = ACTIONS(4685), - [sym_class_var] = ACTIONS(4685), - [sym_self] = ACTIONS(4683), - [anon_sym_QMARK] = ACTIONS(4580), - [anon_sym_alias] = ACTIONS(4683), - [anon_sym_begin] = ACTIONS(4683), - [anon_sym_while] = ACTIONS(4683), - [anon_sym_until] = ACTIONS(4683), - [anon_sym_else] = ACTIONS(4683), - [anon_sym_require] = ACTIONS(4683), - [anon_sym_case] = ACTIONS(4683), - [sym__line_break] = ACTIONS(4685), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4685), - [sym__start_of_named_tuple] = ACTIONS(4685), - [sym_unary_plus] = ACTIONS(4685), - [sym_unary_minus] = ACTIONS(4685), - [sym_unary_wrapping_plus] = ACTIONS(4685), - [sym_unary_wrapping_minus] = ACTIONS(4685), - [sym__beginless_range_operator] = ACTIONS(4685), - [sym__regex_start] = ACTIONS(4685), - [sym__regular_if_keyword] = ACTIONS(4685), - [sym__regular_unless_keyword] = ACTIONS(4685), - [sym__regular_rescue_keyword] = ACTIONS(4685), - [sym__regular_ensure_keyword] = ACTIONS(4685), - [sym__string_literal_start] = ACTIONS(4685), - [sym__string_percent_literal_start] = ACTIONS(4685), - [sym__command_percent_literal_start] = ACTIONS(4685), - [sym__string_array_percent_literal_start] = ACTIONS(4685), - [sym__symbol_array_percent_literal_start] = ACTIONS(4685), - [sym__regex_percent_literal_start] = ACTIONS(4685), - [sym_heredoc_start] = ACTIONS(4685), + [sym_identifier] = ACTIONS(4720), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(4722), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4720), + [sym_true] = ACTIONS(4720), + [sym_false] = ACTIONS(4720), + [aux_sym_integer_token2] = ACTIONS(4720), + [aux_sym_float_token2] = ACTIONS(4722), + [anon_sym_SQUOTE] = ACTIONS(4722), + [sym_operator_symbol] = ACTIONS(4722), + [sym_unquoted_symbol] = ACTIONS(4722), + [anon_sym_COLON_DQUOTE] = ACTIONS(4722), + [anon_sym_BQUOTE] = ACTIONS(4722), + [anon_sym_LBRACK] = ACTIONS(4722), + [anon_sym_COMMA] = ACTIONS(4722), + [anon_sym_DASH_GT] = ACTIONS(4722), + [anon_sym_annotation] = ACTIONS(4720), + [anon_sym_end] = ACTIONS(4720), + [anon_sym_AT_LBRACK] = ACTIONS(4722), + [anon_sym_private] = ACTIONS(4720), + [anon_sym_module] = ACTIONS(4720), + [anon_sym_abstract] = ACTIONS(4720), + [anon_sym_class] = ACTIONS(4720), + [anon_sym_struct] = ACTIONS(4720), + [anon_sym_enum] = ACTIONS(4720), + [anon_sym_STAR] = ACTIONS(4722), + [anon_sym_PIPE] = ACTIONS(4722), + [anon_sym_BANG] = ACTIONS(4722), + [anon_sym_TILDE] = ACTIONS(4722), + [anon_sym_def] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4722), + [anon_sym_protected] = ACTIONS(4720), + [anon_sym_include] = ACTIONS(4720), + [anon_sym_extend] = ACTIONS(4720), + [anon_sym_forall] = ACTIONS(4720), + [anon_sym_return] = ACTIONS(4720), + [anon_sym_next] = ACTIONS(4720), + [anon_sym_break] = ACTIONS(4720), + [anon_sym_with] = ACTIONS(4720), + [anon_sym_yield] = ACTIONS(4720), + [anon_sym_typeof] = ACTIONS(4720), + [anon_sym_sizeof] = ACTIONS(4720), + [anon_sym_instance_sizeof] = ACTIONS(4720), + [anon_sym_offsetof] = ACTIONS(4720), + [sym__constant_segment] = ACTIONS(4722), + [anon_sym_COLON_COLON] = ACTIONS(4722), + [anon_sym___LINE__] = ACTIONS(4720), + [anon_sym___END_LINE__] = ACTIONS(4720), + [anon_sym___FILE__] = ACTIONS(4720), + [anon_sym___DIR__] = ACTIONS(4720), + [sym_special_variable] = ACTIONS(4722), + [sym_identifier_method_call] = ACTIONS(4722), + [sym_instance_var] = ACTIONS(4722), + [sym_class_var] = ACTIONS(4722), + [sym_self] = ACTIONS(4720), + [anon_sym_QMARK] = ACTIONS(4722), + [anon_sym_alias] = ACTIONS(4720), + [anon_sym_begin] = ACTIONS(4720), + [anon_sym_while] = ACTIONS(4720), + [anon_sym_until] = ACTIONS(4720), + [anon_sym_else] = ACTIONS(4720), + [anon_sym_require] = ACTIONS(4720), + [anon_sym_case] = ACTIONS(4720), + [anon_sym_select] = ACTIONS(4720), + [sym__line_break] = ACTIONS(4722), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4722), + [sym__start_of_named_tuple] = ACTIONS(4722), + [sym_unary_plus] = ACTIONS(4722), + [sym_unary_minus] = ACTIONS(4722), + [sym_unary_wrapping_plus] = ACTIONS(4722), + [sym_unary_wrapping_minus] = ACTIONS(4722), + [sym__beginless_range_operator] = ACTIONS(4722), + [sym__regex_start] = ACTIONS(4722), + [sym__regular_if_keyword] = ACTIONS(4722), + [sym__regular_unless_keyword] = ACTIONS(4722), + [sym__regular_rescue_keyword] = ACTIONS(4722), + [sym__regular_ensure_keyword] = ACTIONS(4722), + [sym__string_literal_start] = ACTIONS(4722), + [sym__string_percent_literal_start] = ACTIONS(4722), + [sym__command_percent_literal_start] = ACTIONS(4722), + [sym__string_array_percent_literal_start] = ACTIONS(4722), + [sym__symbol_array_percent_literal_start] = ACTIONS(4722), + [sym__regex_percent_literal_start] = ACTIONS(4722), + [sym_heredoc_start] = ACTIONS(4722), [sym__heredoc_body_start] = ACTIONS(7), }, [2029] = { - [sym__terminator] = STATE(2115), + [sym__terminator] = STATE(2122), [sym_heredoc_body] = STATE(2029), - [sym_forall] = STATE(2068), - [sym_identifier] = ACTIONS(4687), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4689), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4687), - [sym_true] = ACTIONS(4687), - [sym_false] = ACTIONS(4687), - [aux_sym_integer_token2] = ACTIONS(4687), - [aux_sym_float_token2] = ACTIONS(4689), - [anon_sym_SQUOTE] = ACTIONS(4689), - [sym_operator_symbol] = ACTIONS(4689), - [sym_unquoted_symbol] = ACTIONS(4689), - [anon_sym_COLON_DQUOTE] = ACTIONS(4689), - [anon_sym_BQUOTE] = ACTIONS(4689), - [anon_sym_LBRACK] = ACTIONS(4689), - [anon_sym_DASH_GT] = ACTIONS(4689), - [anon_sym_annotation] = ACTIONS(4687), - [anon_sym_end] = ACTIONS(4687), - [anon_sym_AT_LBRACK] = ACTIONS(4689), - [anon_sym_private] = ACTIONS(4687), - [anon_sym_module] = ACTIONS(4687), - [anon_sym_abstract] = ACTIONS(4687), - [anon_sym_class] = ACTIONS(4687), - [anon_sym_struct] = ACTIONS(4687), - [anon_sym_enum] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4689), - [anon_sym_BANG] = ACTIONS(4689), - [anon_sym_TILDE] = ACTIONS(4689), - [anon_sym_def] = ACTIONS(4687), - [aux_sym__base_method_def_token1] = ACTIONS(4691), - [anon_sym_protected] = ACTIONS(4687), - [anon_sym_include] = ACTIONS(4687), - [anon_sym_extend] = ACTIONS(4687), - [anon_sym_forall] = ACTIONS(4693), - [anon_sym_return] = ACTIONS(4687), - [anon_sym_next] = ACTIONS(4687), - [anon_sym_break] = ACTIONS(4687), - [anon_sym_with] = ACTIONS(4687), - [anon_sym_yield] = ACTIONS(4687), - [anon_sym_typeof] = ACTIONS(4687), - [anon_sym_sizeof] = ACTIONS(4687), - [anon_sym_instance_sizeof] = ACTIONS(4687), - [anon_sym_offsetof] = ACTIONS(4687), - [sym__constant_segment] = ACTIONS(4689), - [anon_sym_COLON_COLON] = ACTIONS(4689), - [anon_sym___LINE__] = ACTIONS(4687), - [anon_sym___END_LINE__] = ACTIONS(4687), - [anon_sym___FILE__] = ACTIONS(4687), - [anon_sym___DIR__] = ACTIONS(4687), - [sym_special_variable] = ACTIONS(4689), - [sym_identifier_method_call] = ACTIONS(4689), - [sym_instance_var] = ACTIONS(4689), - [sym_class_var] = ACTIONS(4689), - [sym_self] = ACTIONS(4687), - [anon_sym_alias] = ACTIONS(4687), - [anon_sym_begin] = ACTIONS(4687), - [anon_sym_while] = ACTIONS(4687), - [anon_sym_until] = ACTIONS(4687), - [anon_sym_else] = ACTIONS(4687), - [anon_sym_require] = ACTIONS(4687), - [anon_sym_case] = ACTIONS(4687), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4689), - [sym__start_of_named_tuple] = ACTIONS(4689), - [sym_unary_plus] = ACTIONS(4689), - [sym_unary_minus] = ACTIONS(4689), - [sym_unary_wrapping_plus] = ACTIONS(4689), - [sym_unary_wrapping_minus] = ACTIONS(4689), - [sym__beginless_range_operator] = ACTIONS(4689), - [sym__regex_start] = ACTIONS(4689), - [sym__regular_if_keyword] = ACTIONS(4689), - [sym__regular_unless_keyword] = ACTIONS(4689), - [sym__regular_rescue_keyword] = ACTIONS(4689), - [sym__regular_ensure_keyword] = ACTIONS(4689), - [sym__string_literal_start] = ACTIONS(4689), - [sym__string_percent_literal_start] = ACTIONS(4689), - [sym__command_percent_literal_start] = ACTIONS(4689), - [sym__string_array_percent_literal_start] = ACTIONS(4689), - [sym__symbol_array_percent_literal_start] = ACTIONS(4689), - [sym__regex_percent_literal_start] = ACTIONS(4689), - [sym_heredoc_start] = ACTIONS(4689), + [sym_forall] = STATE(2070), + [sym_identifier] = ACTIONS(4724), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4726), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4724), + [sym_true] = ACTIONS(4724), + [sym_false] = ACTIONS(4724), + [aux_sym_integer_token2] = ACTIONS(4724), + [aux_sym_float_token2] = ACTIONS(4728), + [anon_sym_SQUOTE] = ACTIONS(4728), + [sym_operator_symbol] = ACTIONS(4728), + [sym_unquoted_symbol] = ACTIONS(4728), + [anon_sym_COLON_DQUOTE] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LBRACK] = ACTIONS(4728), + [anon_sym_DASH_GT] = ACTIONS(4728), + [anon_sym_annotation] = ACTIONS(4724), + [anon_sym_end] = ACTIONS(4724), + [anon_sym_AT_LBRACK] = ACTIONS(4728), + [anon_sym_private] = ACTIONS(4724), + [anon_sym_module] = ACTIONS(4724), + [anon_sym_abstract] = ACTIONS(4724), + [anon_sym_class] = ACTIONS(4724), + [anon_sym_struct] = ACTIONS(4724), + [anon_sym_enum] = ACTIONS(4724), + [anon_sym_STAR] = ACTIONS(4728), + [anon_sym_BANG] = ACTIONS(4728), + [anon_sym_TILDE] = ACTIONS(4728), + [anon_sym_def] = ACTIONS(4724), + [aux_sym__base_method_def_token1] = ACTIONS(4730), + [anon_sym_protected] = ACTIONS(4724), + [anon_sym_include] = ACTIONS(4724), + [anon_sym_extend] = ACTIONS(4724), + [anon_sym_forall] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4724), + [anon_sym_next] = ACTIONS(4724), + [anon_sym_break] = ACTIONS(4724), + [anon_sym_with] = ACTIONS(4724), + [anon_sym_yield] = ACTIONS(4724), + [anon_sym_typeof] = ACTIONS(4724), + [anon_sym_sizeof] = ACTIONS(4724), + [anon_sym_instance_sizeof] = ACTIONS(4724), + [anon_sym_offsetof] = ACTIONS(4724), + [sym__constant_segment] = ACTIONS(4728), + [anon_sym_COLON_COLON] = ACTIONS(4728), + [anon_sym___LINE__] = ACTIONS(4724), + [anon_sym___END_LINE__] = ACTIONS(4724), + [anon_sym___FILE__] = ACTIONS(4724), + [anon_sym___DIR__] = ACTIONS(4724), + [sym_special_variable] = ACTIONS(4728), + [sym_identifier_method_call] = ACTIONS(4728), + [sym_instance_var] = ACTIONS(4728), + [sym_class_var] = ACTIONS(4728), + [sym_self] = ACTIONS(4724), + [anon_sym_alias] = ACTIONS(4724), + [anon_sym_begin] = ACTIONS(4724), + [anon_sym_while] = ACTIONS(4724), + [anon_sym_until] = ACTIONS(4724), + [anon_sym_else] = ACTIONS(4724), + [anon_sym_require] = ACTIONS(4724), + [anon_sym_case] = ACTIONS(4724), + [anon_sym_select] = ACTIONS(4724), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4728), + [sym__start_of_named_tuple] = ACTIONS(4728), + [sym_unary_plus] = ACTIONS(4728), + [sym_unary_minus] = ACTIONS(4728), + [sym_unary_wrapping_plus] = ACTIONS(4728), + [sym_unary_wrapping_minus] = ACTIONS(4728), + [sym__beginless_range_operator] = ACTIONS(4728), + [sym__regex_start] = ACTIONS(4728), + [sym__regular_if_keyword] = ACTIONS(4728), + [sym__regular_unless_keyword] = ACTIONS(4728), + [sym__regular_rescue_keyword] = ACTIONS(4728), + [sym__regular_ensure_keyword] = ACTIONS(4728), + [sym__string_literal_start] = ACTIONS(4728), + [sym__string_percent_literal_start] = ACTIONS(4728), + [sym__command_percent_literal_start] = ACTIONS(4728), + [sym__string_array_percent_literal_start] = ACTIONS(4728), + [sym__symbol_array_percent_literal_start] = ACTIONS(4728), + [sym__regex_percent_literal_start] = ACTIONS(4728), + [sym_heredoc_start] = ACTIONS(4728), [sym__heredoc_body_start] = ACTIONS(7), }, [2030] = { - [sym__terminator] = STATE(2121), + [sym__terminator] = STATE(2115), [sym_heredoc_body] = STATE(2030), - [sym_forall] = STATE(2065), - [sym_identifier] = ACTIONS(4695), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4697), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4695), - [sym_true] = ACTIONS(4695), - [sym_false] = ACTIONS(4695), - [aux_sym_integer_token2] = ACTIONS(4695), - [aux_sym_float_token2] = ACTIONS(4697), - [anon_sym_SQUOTE] = ACTIONS(4697), - [sym_operator_symbol] = ACTIONS(4697), - [sym_unquoted_symbol] = ACTIONS(4697), - [anon_sym_COLON_DQUOTE] = ACTIONS(4697), - [anon_sym_BQUOTE] = ACTIONS(4697), - [anon_sym_LBRACK] = ACTIONS(4697), - [anon_sym_DASH_GT] = ACTIONS(4697), - [anon_sym_annotation] = ACTIONS(4695), - [anon_sym_end] = ACTIONS(4695), - [anon_sym_AT_LBRACK] = ACTIONS(4697), - [anon_sym_private] = ACTIONS(4695), - [anon_sym_module] = ACTIONS(4695), - [anon_sym_abstract] = ACTIONS(4695), - [anon_sym_class] = ACTIONS(4695), - [anon_sym_struct] = ACTIONS(4695), - [anon_sym_enum] = ACTIONS(4695), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_TILDE] = ACTIONS(4697), - [anon_sym_def] = ACTIONS(4695), - [aux_sym__base_method_def_token1] = ACTIONS(4699), - [anon_sym_protected] = ACTIONS(4695), - [anon_sym_include] = ACTIONS(4695), - [anon_sym_extend] = ACTIONS(4695), - [anon_sym_forall] = ACTIONS(4693), - [anon_sym_return] = ACTIONS(4695), - [anon_sym_next] = ACTIONS(4695), - [anon_sym_break] = ACTIONS(4695), - [anon_sym_with] = ACTIONS(4695), - [anon_sym_yield] = ACTIONS(4695), - [anon_sym_typeof] = ACTIONS(4695), - [anon_sym_sizeof] = ACTIONS(4695), - [anon_sym_instance_sizeof] = ACTIONS(4695), - [anon_sym_offsetof] = ACTIONS(4695), - [sym__constant_segment] = ACTIONS(4697), - [anon_sym_COLON_COLON] = ACTIONS(4697), - [anon_sym___LINE__] = ACTIONS(4695), - [anon_sym___END_LINE__] = ACTIONS(4695), - [anon_sym___FILE__] = ACTIONS(4695), - [anon_sym___DIR__] = ACTIONS(4695), - [sym_special_variable] = ACTIONS(4697), - [sym_identifier_method_call] = ACTIONS(4697), - [sym_instance_var] = ACTIONS(4697), - [sym_class_var] = ACTIONS(4697), - [sym_self] = ACTIONS(4695), - [anon_sym_alias] = ACTIONS(4695), - [anon_sym_begin] = ACTIONS(4695), - [anon_sym_while] = ACTIONS(4695), - [anon_sym_until] = ACTIONS(4695), - [anon_sym_else] = ACTIONS(4695), - [anon_sym_require] = ACTIONS(4695), - [anon_sym_case] = ACTIONS(4695), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4697), - [sym__start_of_named_tuple] = ACTIONS(4697), - [sym_unary_plus] = ACTIONS(4697), - [sym_unary_minus] = ACTIONS(4697), - [sym_unary_wrapping_plus] = ACTIONS(4697), - [sym_unary_wrapping_minus] = ACTIONS(4697), - [sym__beginless_range_operator] = ACTIONS(4697), - [sym__regex_start] = ACTIONS(4697), - [sym__regular_if_keyword] = ACTIONS(4697), - [sym__regular_unless_keyword] = ACTIONS(4697), - [sym__regular_rescue_keyword] = ACTIONS(4697), - [sym__regular_ensure_keyword] = ACTIONS(4697), - [sym__string_literal_start] = ACTIONS(4697), - [sym__string_percent_literal_start] = ACTIONS(4697), - [sym__command_percent_literal_start] = ACTIONS(4697), - [sym__string_array_percent_literal_start] = ACTIONS(4697), - [sym__symbol_array_percent_literal_start] = ACTIONS(4697), - [sym__regex_percent_literal_start] = ACTIONS(4697), - [sym_heredoc_start] = ACTIONS(4697), + [sym_forall] = STATE(2067), + [sym_identifier] = ACTIONS(4734), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4736), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4734), + [sym_true] = ACTIONS(4734), + [sym_false] = ACTIONS(4734), + [aux_sym_integer_token2] = ACTIONS(4734), + [aux_sym_float_token2] = ACTIONS(4736), + [anon_sym_SQUOTE] = ACTIONS(4736), + [sym_operator_symbol] = ACTIONS(4736), + [sym_unquoted_symbol] = ACTIONS(4736), + [anon_sym_COLON_DQUOTE] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), + [anon_sym_LBRACK] = ACTIONS(4736), + [anon_sym_DASH_GT] = ACTIONS(4736), + [anon_sym_annotation] = ACTIONS(4734), + [anon_sym_end] = ACTIONS(4734), + [anon_sym_AT_LBRACK] = ACTIONS(4736), + [anon_sym_private] = ACTIONS(4734), + [anon_sym_module] = ACTIONS(4734), + [anon_sym_abstract] = ACTIONS(4734), + [anon_sym_class] = ACTIONS(4734), + [anon_sym_struct] = ACTIONS(4734), + [anon_sym_enum] = ACTIONS(4734), + [anon_sym_STAR] = ACTIONS(4736), + [anon_sym_BANG] = ACTIONS(4736), + [anon_sym_TILDE] = ACTIONS(4736), + [anon_sym_def] = ACTIONS(4734), + [aux_sym__base_method_def_token1] = ACTIONS(4738), + [anon_sym_protected] = ACTIONS(4734), + [anon_sym_include] = ACTIONS(4734), + [anon_sym_extend] = ACTIONS(4734), + [anon_sym_forall] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4734), + [anon_sym_next] = ACTIONS(4734), + [anon_sym_break] = ACTIONS(4734), + [anon_sym_with] = ACTIONS(4734), + [anon_sym_yield] = ACTIONS(4734), + [anon_sym_typeof] = ACTIONS(4734), + [anon_sym_sizeof] = ACTIONS(4734), + [anon_sym_instance_sizeof] = ACTIONS(4734), + [anon_sym_offsetof] = ACTIONS(4734), + [sym__constant_segment] = ACTIONS(4736), + [anon_sym_COLON_COLON] = ACTIONS(4736), + [anon_sym___LINE__] = ACTIONS(4734), + [anon_sym___END_LINE__] = ACTIONS(4734), + [anon_sym___FILE__] = ACTIONS(4734), + [anon_sym___DIR__] = ACTIONS(4734), + [sym_special_variable] = ACTIONS(4736), + [sym_identifier_method_call] = ACTIONS(4736), + [sym_instance_var] = ACTIONS(4736), + [sym_class_var] = ACTIONS(4736), + [sym_self] = ACTIONS(4734), + [anon_sym_alias] = ACTIONS(4734), + [anon_sym_begin] = ACTIONS(4734), + [anon_sym_while] = ACTIONS(4734), + [anon_sym_until] = ACTIONS(4734), + [anon_sym_else] = ACTIONS(4734), + [anon_sym_require] = ACTIONS(4734), + [anon_sym_case] = ACTIONS(4734), + [anon_sym_select] = ACTIONS(4734), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4736), + [sym__start_of_named_tuple] = ACTIONS(4736), + [sym_unary_plus] = ACTIONS(4736), + [sym_unary_minus] = ACTIONS(4736), + [sym_unary_wrapping_plus] = ACTIONS(4736), + [sym_unary_wrapping_minus] = ACTIONS(4736), + [sym__beginless_range_operator] = ACTIONS(4736), + [sym__regex_start] = ACTIONS(4736), + [sym__regular_if_keyword] = ACTIONS(4736), + [sym__regular_unless_keyword] = ACTIONS(4736), + [sym__regular_rescue_keyword] = ACTIONS(4736), + [sym__regular_ensure_keyword] = ACTIONS(4736), + [sym__string_literal_start] = ACTIONS(4736), + [sym__string_percent_literal_start] = ACTIONS(4736), + [sym__command_percent_literal_start] = ACTIONS(4736), + [sym__string_array_percent_literal_start] = ACTIONS(4736), + [sym__symbol_array_percent_literal_start] = ACTIONS(4736), + [sym__regex_percent_literal_start] = ACTIONS(4736), + [sym_heredoc_start] = ACTIONS(4736), [sym__heredoc_body_start] = ACTIONS(7), }, [2031] = { - [sym__terminator] = STATE(2108), + [sym__terminator] = STATE(2124), [sym_heredoc_body] = STATE(2031), - [sym_forall] = STATE(2064), - [sym_identifier] = ACTIONS(4701), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4703), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4701), - [sym_true] = ACTIONS(4701), - [sym_false] = ACTIONS(4701), - [aux_sym_integer_token2] = ACTIONS(4701), - [aux_sym_float_token2] = ACTIONS(4703), - [anon_sym_SQUOTE] = ACTIONS(4703), - [sym_operator_symbol] = ACTIONS(4703), - [sym_unquoted_symbol] = ACTIONS(4703), - [anon_sym_COLON_DQUOTE] = ACTIONS(4703), - [anon_sym_BQUOTE] = ACTIONS(4703), - [anon_sym_LBRACK] = ACTIONS(4703), - [anon_sym_DASH_GT] = ACTIONS(4703), - [anon_sym_annotation] = ACTIONS(4701), - [anon_sym_end] = ACTIONS(4701), - [anon_sym_AT_LBRACK] = ACTIONS(4703), - [anon_sym_private] = ACTIONS(4701), - [anon_sym_module] = ACTIONS(4701), - [anon_sym_abstract] = ACTIONS(4701), - [anon_sym_class] = ACTIONS(4701), - [anon_sym_struct] = ACTIONS(4701), - [anon_sym_enum] = ACTIONS(4701), - [anon_sym_STAR] = ACTIONS(4703), - [anon_sym_BANG] = ACTIONS(4703), - [anon_sym_TILDE] = ACTIONS(4703), - [anon_sym_def] = ACTIONS(4701), - [aux_sym__base_method_def_token1] = ACTIONS(4705), - [anon_sym_protected] = ACTIONS(4701), - [anon_sym_include] = ACTIONS(4701), - [anon_sym_extend] = ACTIONS(4701), - [anon_sym_forall] = ACTIONS(4693), - [anon_sym_return] = ACTIONS(4701), - [anon_sym_next] = ACTIONS(4701), - [anon_sym_break] = ACTIONS(4701), - [anon_sym_with] = ACTIONS(4701), - [anon_sym_yield] = ACTIONS(4701), - [anon_sym_typeof] = ACTIONS(4701), - [anon_sym_sizeof] = ACTIONS(4701), - [anon_sym_instance_sizeof] = ACTIONS(4701), - [anon_sym_offsetof] = ACTIONS(4701), - [sym__constant_segment] = ACTIONS(4703), - [anon_sym_COLON_COLON] = ACTIONS(4703), - [anon_sym___LINE__] = ACTIONS(4701), - [anon_sym___END_LINE__] = ACTIONS(4701), - [anon_sym___FILE__] = ACTIONS(4701), - [anon_sym___DIR__] = ACTIONS(4701), - [sym_special_variable] = ACTIONS(4703), - [sym_identifier_method_call] = ACTIONS(4703), - [sym_instance_var] = ACTIONS(4703), - [sym_class_var] = ACTIONS(4703), - [sym_self] = ACTIONS(4701), - [anon_sym_alias] = ACTIONS(4701), - [anon_sym_begin] = ACTIONS(4701), - [anon_sym_while] = ACTIONS(4701), - [anon_sym_until] = ACTIONS(4701), - [anon_sym_else] = ACTIONS(4701), - [anon_sym_require] = ACTIONS(4701), - [anon_sym_case] = ACTIONS(4701), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4703), - [sym__start_of_named_tuple] = ACTIONS(4703), - [sym_unary_plus] = ACTIONS(4703), - [sym_unary_minus] = ACTIONS(4703), - [sym_unary_wrapping_plus] = ACTIONS(4703), - [sym_unary_wrapping_minus] = ACTIONS(4703), - [sym__beginless_range_operator] = ACTIONS(4703), - [sym__regex_start] = ACTIONS(4703), - [sym__regular_if_keyword] = ACTIONS(4703), - [sym__regular_unless_keyword] = ACTIONS(4703), - [sym__regular_rescue_keyword] = ACTIONS(4703), - [sym__regular_ensure_keyword] = ACTIONS(4703), - [sym__string_literal_start] = ACTIONS(4703), - [sym__string_percent_literal_start] = ACTIONS(4703), - [sym__command_percent_literal_start] = ACTIONS(4703), - [sym__string_array_percent_literal_start] = ACTIONS(4703), - [sym__symbol_array_percent_literal_start] = ACTIONS(4703), - [sym__regex_percent_literal_start] = ACTIONS(4703), - [sym_heredoc_start] = ACTIONS(4703), + [sym_forall] = STATE(2078), + [sym_identifier] = ACTIONS(4740), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4742), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4740), + [sym_true] = ACTIONS(4740), + [sym_false] = ACTIONS(4740), + [aux_sym_integer_token2] = ACTIONS(4740), + [aux_sym_float_token2] = ACTIONS(4744), + [anon_sym_SQUOTE] = ACTIONS(4744), + [sym_operator_symbol] = ACTIONS(4744), + [sym_unquoted_symbol] = ACTIONS(4744), + [anon_sym_COLON_DQUOTE] = ACTIONS(4744), + [anon_sym_BQUOTE] = ACTIONS(4744), + [anon_sym_LBRACK] = ACTIONS(4744), + [anon_sym_DASH_GT] = ACTIONS(4744), + [anon_sym_annotation] = ACTIONS(4740), + [anon_sym_end] = ACTIONS(4740), + [anon_sym_AT_LBRACK] = ACTIONS(4744), + [anon_sym_private] = ACTIONS(4740), + [anon_sym_module] = ACTIONS(4740), + [anon_sym_abstract] = ACTIONS(4740), + [anon_sym_class] = ACTIONS(4740), + [anon_sym_struct] = ACTIONS(4740), + [anon_sym_enum] = ACTIONS(4740), + [anon_sym_STAR] = ACTIONS(4744), + [anon_sym_BANG] = ACTIONS(4744), + [anon_sym_TILDE] = ACTIONS(4744), + [anon_sym_def] = ACTIONS(4740), + [aux_sym__base_method_def_token1] = ACTIONS(4746), + [anon_sym_protected] = ACTIONS(4740), + [anon_sym_include] = ACTIONS(4740), + [anon_sym_extend] = ACTIONS(4740), + [anon_sym_forall] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4740), + [anon_sym_next] = ACTIONS(4740), + [anon_sym_break] = ACTIONS(4740), + [anon_sym_with] = ACTIONS(4740), + [anon_sym_yield] = ACTIONS(4740), + [anon_sym_typeof] = ACTIONS(4740), + [anon_sym_sizeof] = ACTIONS(4740), + [anon_sym_instance_sizeof] = ACTIONS(4740), + [anon_sym_offsetof] = ACTIONS(4740), + [sym__constant_segment] = ACTIONS(4744), + [anon_sym_COLON_COLON] = ACTIONS(4744), + [anon_sym___LINE__] = ACTIONS(4740), + [anon_sym___END_LINE__] = ACTIONS(4740), + [anon_sym___FILE__] = ACTIONS(4740), + [anon_sym___DIR__] = ACTIONS(4740), + [sym_special_variable] = ACTIONS(4744), + [sym_identifier_method_call] = ACTIONS(4744), + [sym_instance_var] = ACTIONS(4744), + [sym_class_var] = ACTIONS(4744), + [sym_self] = ACTIONS(4740), + [anon_sym_alias] = ACTIONS(4740), + [anon_sym_begin] = ACTIONS(4740), + [anon_sym_while] = ACTIONS(4740), + [anon_sym_until] = ACTIONS(4740), + [anon_sym_else] = ACTIONS(4740), + [anon_sym_require] = ACTIONS(4740), + [anon_sym_case] = ACTIONS(4740), + [anon_sym_select] = ACTIONS(4740), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4744), + [sym__start_of_named_tuple] = ACTIONS(4744), + [sym_unary_plus] = ACTIONS(4744), + [sym_unary_minus] = ACTIONS(4744), + [sym_unary_wrapping_plus] = ACTIONS(4744), + [sym_unary_wrapping_minus] = ACTIONS(4744), + [sym__beginless_range_operator] = ACTIONS(4744), + [sym__regex_start] = ACTIONS(4744), + [sym__regular_if_keyword] = ACTIONS(4744), + [sym__regular_unless_keyword] = ACTIONS(4744), + [sym__regular_rescue_keyword] = ACTIONS(4744), + [sym__regular_ensure_keyword] = ACTIONS(4744), + [sym__string_literal_start] = ACTIONS(4744), + [sym__string_percent_literal_start] = ACTIONS(4744), + [sym__command_percent_literal_start] = ACTIONS(4744), + [sym__string_array_percent_literal_start] = ACTIONS(4744), + [sym__symbol_array_percent_literal_start] = ACTIONS(4744), + [sym__regex_percent_literal_start] = ACTIONS(4744), + [sym_heredoc_start] = ACTIONS(4744), [sym__heredoc_body_start] = ACTIONS(7), }, [2032] = { - [sym__terminator] = STATE(2104), + [sym__terminator] = STATE(2101), [sym_heredoc_body] = STATE(2032), - [sym_forall] = STATE(2057), - [sym_identifier] = ACTIONS(4707), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4709), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4707), - [sym_true] = ACTIONS(4707), - [sym_false] = ACTIONS(4707), - [aux_sym_integer_token2] = ACTIONS(4707), - [aux_sym_float_token2] = ACTIONS(4711), - [anon_sym_SQUOTE] = ACTIONS(4711), - [sym_operator_symbol] = ACTIONS(4711), - [sym_unquoted_symbol] = ACTIONS(4711), - [anon_sym_COLON_DQUOTE] = ACTIONS(4711), - [anon_sym_BQUOTE] = ACTIONS(4711), - [anon_sym_LBRACK] = ACTIONS(4711), - [anon_sym_DASH_GT] = ACTIONS(4711), - [anon_sym_annotation] = ACTIONS(4707), - [anon_sym_end] = ACTIONS(4707), - [anon_sym_AT_LBRACK] = ACTIONS(4711), - [anon_sym_private] = ACTIONS(4707), - [anon_sym_module] = ACTIONS(4707), - [anon_sym_abstract] = ACTIONS(4707), - [anon_sym_class] = ACTIONS(4707), - [anon_sym_struct] = ACTIONS(4707), - [anon_sym_enum] = ACTIONS(4707), - [anon_sym_STAR] = ACTIONS(4711), - [anon_sym_BANG] = ACTIONS(4711), - [anon_sym_TILDE] = ACTIONS(4711), - [anon_sym_def] = ACTIONS(4707), - [aux_sym__base_method_def_token1] = ACTIONS(4713), - [anon_sym_protected] = ACTIONS(4707), - [anon_sym_include] = ACTIONS(4707), - [anon_sym_extend] = ACTIONS(4707), - [anon_sym_forall] = ACTIONS(4693), - [anon_sym_return] = ACTIONS(4707), - [anon_sym_next] = ACTIONS(4707), - [anon_sym_break] = ACTIONS(4707), - [anon_sym_with] = ACTIONS(4707), - [anon_sym_yield] = ACTIONS(4707), - [anon_sym_typeof] = ACTIONS(4707), - [anon_sym_sizeof] = ACTIONS(4707), - [anon_sym_instance_sizeof] = ACTIONS(4707), - [anon_sym_offsetof] = ACTIONS(4707), - [sym__constant_segment] = ACTIONS(4711), - [anon_sym_COLON_COLON] = ACTIONS(4711), - [anon_sym___LINE__] = ACTIONS(4707), - [anon_sym___END_LINE__] = ACTIONS(4707), - [anon_sym___FILE__] = ACTIONS(4707), - [anon_sym___DIR__] = ACTIONS(4707), - [sym_special_variable] = ACTIONS(4711), - [sym_identifier_method_call] = ACTIONS(4711), - [sym_instance_var] = ACTIONS(4711), - [sym_class_var] = ACTIONS(4711), - [sym_self] = ACTIONS(4707), - [anon_sym_alias] = ACTIONS(4707), - [anon_sym_begin] = ACTIONS(4707), - [anon_sym_while] = ACTIONS(4707), - [anon_sym_until] = ACTIONS(4707), - [anon_sym_else] = ACTIONS(4707), - [anon_sym_require] = ACTIONS(4707), - [anon_sym_case] = ACTIONS(4707), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4711), - [sym__start_of_named_tuple] = ACTIONS(4711), - [sym_unary_plus] = ACTIONS(4711), - [sym_unary_minus] = ACTIONS(4711), - [sym_unary_wrapping_plus] = ACTIONS(4711), - [sym_unary_wrapping_minus] = ACTIONS(4711), - [sym__beginless_range_operator] = ACTIONS(4711), - [sym__regex_start] = ACTIONS(4711), - [sym__regular_if_keyword] = ACTIONS(4711), - [sym__regular_unless_keyword] = ACTIONS(4711), - [sym__regular_rescue_keyword] = ACTIONS(4711), - [sym__regular_ensure_keyword] = ACTIONS(4711), - [sym__string_literal_start] = ACTIONS(4711), - [sym__string_percent_literal_start] = ACTIONS(4711), - [sym__command_percent_literal_start] = ACTIONS(4711), - [sym__string_array_percent_literal_start] = ACTIONS(4711), - [sym__symbol_array_percent_literal_start] = ACTIONS(4711), - [sym__regex_percent_literal_start] = ACTIONS(4711), - [sym_heredoc_start] = ACTIONS(4711), + [sym_forall] = STATE(2072), + [sym_identifier] = ACTIONS(4748), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4750), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4748), + [sym_true] = ACTIONS(4748), + [sym_false] = ACTIONS(4748), + [aux_sym_integer_token2] = ACTIONS(4748), + [aux_sym_float_token2] = ACTIONS(4750), + [anon_sym_SQUOTE] = ACTIONS(4750), + [sym_operator_symbol] = ACTIONS(4750), + [sym_unquoted_symbol] = ACTIONS(4750), + [anon_sym_COLON_DQUOTE] = ACTIONS(4750), + [anon_sym_BQUOTE] = ACTIONS(4750), + [anon_sym_LBRACK] = ACTIONS(4750), + [anon_sym_DASH_GT] = ACTIONS(4750), + [anon_sym_annotation] = ACTIONS(4748), + [anon_sym_end] = ACTIONS(4748), + [anon_sym_AT_LBRACK] = ACTIONS(4750), + [anon_sym_private] = ACTIONS(4748), + [anon_sym_module] = ACTIONS(4748), + [anon_sym_abstract] = ACTIONS(4748), + [anon_sym_class] = ACTIONS(4748), + [anon_sym_struct] = ACTIONS(4748), + [anon_sym_enum] = ACTIONS(4748), + [anon_sym_STAR] = ACTIONS(4750), + [anon_sym_BANG] = ACTIONS(4750), + [anon_sym_TILDE] = ACTIONS(4750), + [anon_sym_def] = ACTIONS(4748), + [aux_sym__base_method_def_token1] = ACTIONS(4752), + [anon_sym_protected] = ACTIONS(4748), + [anon_sym_include] = ACTIONS(4748), + [anon_sym_extend] = ACTIONS(4748), + [anon_sym_forall] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4748), + [anon_sym_next] = ACTIONS(4748), + [anon_sym_break] = ACTIONS(4748), + [anon_sym_with] = ACTIONS(4748), + [anon_sym_yield] = ACTIONS(4748), + [anon_sym_typeof] = ACTIONS(4748), + [anon_sym_sizeof] = ACTIONS(4748), + [anon_sym_instance_sizeof] = ACTIONS(4748), + [anon_sym_offsetof] = ACTIONS(4748), + [sym__constant_segment] = ACTIONS(4750), + [anon_sym_COLON_COLON] = ACTIONS(4750), + [anon_sym___LINE__] = ACTIONS(4748), + [anon_sym___END_LINE__] = ACTIONS(4748), + [anon_sym___FILE__] = ACTIONS(4748), + [anon_sym___DIR__] = ACTIONS(4748), + [sym_special_variable] = ACTIONS(4750), + [sym_identifier_method_call] = ACTIONS(4750), + [sym_instance_var] = ACTIONS(4750), + [sym_class_var] = ACTIONS(4750), + [sym_self] = ACTIONS(4748), + [anon_sym_alias] = ACTIONS(4748), + [anon_sym_begin] = ACTIONS(4748), + [anon_sym_while] = ACTIONS(4748), + [anon_sym_until] = ACTIONS(4748), + [anon_sym_else] = ACTIONS(4748), + [anon_sym_require] = ACTIONS(4748), + [anon_sym_case] = ACTIONS(4748), + [anon_sym_select] = ACTIONS(4748), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4750), + [sym__start_of_named_tuple] = ACTIONS(4750), + [sym_unary_plus] = ACTIONS(4750), + [sym_unary_minus] = ACTIONS(4750), + [sym_unary_wrapping_plus] = ACTIONS(4750), + [sym_unary_wrapping_minus] = ACTIONS(4750), + [sym__beginless_range_operator] = ACTIONS(4750), + [sym__regex_start] = ACTIONS(4750), + [sym__regular_if_keyword] = ACTIONS(4750), + [sym__regular_unless_keyword] = ACTIONS(4750), + [sym__regular_rescue_keyword] = ACTIONS(4750), + [sym__regular_ensure_keyword] = ACTIONS(4750), + [sym__string_literal_start] = ACTIONS(4750), + [sym__string_percent_literal_start] = ACTIONS(4750), + [sym__command_percent_literal_start] = ACTIONS(4750), + [sym__string_array_percent_literal_start] = ACTIONS(4750), + [sym__symbol_array_percent_literal_start] = ACTIONS(4750), + [sym__regex_percent_literal_start] = ACTIONS(4750), + [sym_heredoc_start] = ACTIONS(4750), [sym__heredoc_body_start] = ACTIONS(7), }, [2033] = { - [sym__terminator] = STATE(2100), + [sym__terminator] = STATE(2107), [sym_heredoc_body] = STATE(2033), - [sym_forall] = STATE(2078), - [sym_identifier] = ACTIONS(4715), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4717), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4715), - [sym_true] = ACTIONS(4715), - [sym_false] = ACTIONS(4715), - [aux_sym_integer_token2] = ACTIONS(4715), - [aux_sym_float_token2] = ACTIONS(4719), - [anon_sym_SQUOTE] = ACTIONS(4719), - [sym_operator_symbol] = ACTIONS(4719), - [sym_unquoted_symbol] = ACTIONS(4719), - [anon_sym_COLON_DQUOTE] = ACTIONS(4719), - [anon_sym_BQUOTE] = ACTIONS(4719), - [anon_sym_LBRACK] = ACTIONS(4719), - [anon_sym_DASH_GT] = ACTIONS(4719), - [anon_sym_annotation] = ACTIONS(4715), - [anon_sym_end] = ACTIONS(4715), - [anon_sym_AT_LBRACK] = ACTIONS(4719), - [anon_sym_private] = ACTIONS(4715), - [anon_sym_module] = ACTIONS(4715), - [anon_sym_abstract] = ACTIONS(4715), - [anon_sym_class] = ACTIONS(4715), - [anon_sym_struct] = ACTIONS(4715), - [anon_sym_enum] = ACTIONS(4715), - [anon_sym_STAR] = ACTIONS(4719), - [anon_sym_BANG] = ACTIONS(4719), - [anon_sym_TILDE] = ACTIONS(4719), - [anon_sym_def] = ACTIONS(4715), - [aux_sym__base_method_def_token1] = ACTIONS(4721), - [anon_sym_protected] = ACTIONS(4715), - [anon_sym_include] = ACTIONS(4715), - [anon_sym_extend] = ACTIONS(4715), - [anon_sym_forall] = ACTIONS(4693), - [anon_sym_return] = ACTIONS(4715), - [anon_sym_next] = ACTIONS(4715), - [anon_sym_break] = ACTIONS(4715), - [anon_sym_with] = ACTIONS(4715), - [anon_sym_yield] = ACTIONS(4715), - [anon_sym_typeof] = ACTIONS(4715), - [anon_sym_sizeof] = ACTIONS(4715), - [anon_sym_instance_sizeof] = ACTIONS(4715), - [anon_sym_offsetof] = ACTIONS(4715), - [sym__constant_segment] = ACTIONS(4719), - [anon_sym_COLON_COLON] = ACTIONS(4719), - [anon_sym___LINE__] = ACTIONS(4715), - [anon_sym___END_LINE__] = ACTIONS(4715), - [anon_sym___FILE__] = ACTIONS(4715), - [anon_sym___DIR__] = ACTIONS(4715), - [sym_special_variable] = ACTIONS(4719), - [sym_identifier_method_call] = ACTIONS(4719), - [sym_instance_var] = ACTIONS(4719), - [sym_class_var] = ACTIONS(4719), - [sym_self] = ACTIONS(4715), - [anon_sym_alias] = ACTIONS(4715), - [anon_sym_begin] = ACTIONS(4715), - [anon_sym_while] = ACTIONS(4715), - [anon_sym_until] = ACTIONS(4715), - [anon_sym_else] = ACTIONS(4715), - [anon_sym_require] = ACTIONS(4715), - [anon_sym_case] = ACTIONS(4715), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4719), - [sym__start_of_named_tuple] = ACTIONS(4719), - [sym_unary_plus] = ACTIONS(4719), - [sym_unary_minus] = ACTIONS(4719), - [sym_unary_wrapping_plus] = ACTIONS(4719), - [sym_unary_wrapping_minus] = ACTIONS(4719), - [sym__beginless_range_operator] = ACTIONS(4719), - [sym__regex_start] = ACTIONS(4719), - [sym__regular_if_keyword] = ACTIONS(4719), - [sym__regular_unless_keyword] = ACTIONS(4719), - [sym__regular_rescue_keyword] = ACTIONS(4719), - [sym__regular_ensure_keyword] = ACTIONS(4719), - [sym__string_literal_start] = ACTIONS(4719), - [sym__string_percent_literal_start] = ACTIONS(4719), - [sym__command_percent_literal_start] = ACTIONS(4719), - [sym__string_array_percent_literal_start] = ACTIONS(4719), - [sym__symbol_array_percent_literal_start] = ACTIONS(4719), - [sym__regex_percent_literal_start] = ACTIONS(4719), - [sym_heredoc_start] = ACTIONS(4719), + [sym_forall] = STATE(2059), + [sym_identifier] = ACTIONS(4754), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4756), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4754), + [sym_true] = ACTIONS(4754), + [sym_false] = ACTIONS(4754), + [aux_sym_integer_token2] = ACTIONS(4754), + [aux_sym_float_token2] = ACTIONS(4756), + [anon_sym_SQUOTE] = ACTIONS(4756), + [sym_operator_symbol] = ACTIONS(4756), + [sym_unquoted_symbol] = ACTIONS(4756), + [anon_sym_COLON_DQUOTE] = ACTIONS(4756), + [anon_sym_BQUOTE] = ACTIONS(4756), + [anon_sym_LBRACK] = ACTIONS(4756), + [anon_sym_DASH_GT] = ACTIONS(4756), + [anon_sym_annotation] = ACTIONS(4754), + [anon_sym_end] = ACTIONS(4754), + [anon_sym_AT_LBRACK] = ACTIONS(4756), + [anon_sym_private] = ACTIONS(4754), + [anon_sym_module] = ACTIONS(4754), + [anon_sym_abstract] = ACTIONS(4754), + [anon_sym_class] = ACTIONS(4754), + [anon_sym_struct] = ACTIONS(4754), + [anon_sym_enum] = ACTIONS(4754), + [anon_sym_STAR] = ACTIONS(4756), + [anon_sym_BANG] = ACTIONS(4756), + [anon_sym_TILDE] = ACTIONS(4756), + [anon_sym_def] = ACTIONS(4754), + [aux_sym__base_method_def_token1] = ACTIONS(4758), + [anon_sym_protected] = ACTIONS(4754), + [anon_sym_include] = ACTIONS(4754), + [anon_sym_extend] = ACTIONS(4754), + [anon_sym_forall] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4754), + [anon_sym_next] = ACTIONS(4754), + [anon_sym_break] = ACTIONS(4754), + [anon_sym_with] = ACTIONS(4754), + [anon_sym_yield] = ACTIONS(4754), + [anon_sym_typeof] = ACTIONS(4754), + [anon_sym_sizeof] = ACTIONS(4754), + [anon_sym_instance_sizeof] = ACTIONS(4754), + [anon_sym_offsetof] = ACTIONS(4754), + [sym__constant_segment] = ACTIONS(4756), + [anon_sym_COLON_COLON] = ACTIONS(4756), + [anon_sym___LINE__] = ACTIONS(4754), + [anon_sym___END_LINE__] = ACTIONS(4754), + [anon_sym___FILE__] = ACTIONS(4754), + [anon_sym___DIR__] = ACTIONS(4754), + [sym_special_variable] = ACTIONS(4756), + [sym_identifier_method_call] = ACTIONS(4756), + [sym_instance_var] = ACTIONS(4756), + [sym_class_var] = ACTIONS(4756), + [sym_self] = ACTIONS(4754), + [anon_sym_alias] = ACTIONS(4754), + [anon_sym_begin] = ACTIONS(4754), + [anon_sym_while] = ACTIONS(4754), + [anon_sym_until] = ACTIONS(4754), + [anon_sym_else] = ACTIONS(4754), + [anon_sym_require] = ACTIONS(4754), + [anon_sym_case] = ACTIONS(4754), + [anon_sym_select] = ACTIONS(4754), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4756), + [sym__start_of_named_tuple] = ACTIONS(4756), + [sym_unary_plus] = ACTIONS(4756), + [sym_unary_minus] = ACTIONS(4756), + [sym_unary_wrapping_plus] = ACTIONS(4756), + [sym_unary_wrapping_minus] = ACTIONS(4756), + [sym__beginless_range_operator] = ACTIONS(4756), + [sym__regex_start] = ACTIONS(4756), + [sym__regular_if_keyword] = ACTIONS(4756), + [sym__regular_unless_keyword] = ACTIONS(4756), + [sym__regular_rescue_keyword] = ACTIONS(4756), + [sym__regular_ensure_keyword] = ACTIONS(4756), + [sym__string_literal_start] = ACTIONS(4756), + [sym__string_percent_literal_start] = ACTIONS(4756), + [sym__command_percent_literal_start] = ACTIONS(4756), + [sym__string_array_percent_literal_start] = ACTIONS(4756), + [sym__symbol_array_percent_literal_start] = ACTIONS(4756), + [sym__regex_percent_literal_start] = ACTIONS(4756), + [sym_heredoc_start] = ACTIONS(4756), [sym__heredoc_body_start] = ACTIONS(7), }, [2034] = { - [sym__terminator] = STATE(2124), + [sym__terminator] = STATE(2109), [sym_heredoc_body] = STATE(2034), - [sym_forall] = STATE(2062), - [sym_identifier] = ACTIONS(4723), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4725), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4723), - [sym_true] = ACTIONS(4723), - [sym_false] = ACTIONS(4723), - [aux_sym_integer_token2] = ACTIONS(4723), - [aux_sym_float_token2] = ACTIONS(4725), - [anon_sym_SQUOTE] = ACTIONS(4725), - [sym_operator_symbol] = ACTIONS(4725), - [sym_unquoted_symbol] = ACTIONS(4725), - [anon_sym_COLON_DQUOTE] = ACTIONS(4725), - [anon_sym_BQUOTE] = ACTIONS(4725), - [anon_sym_LBRACK] = ACTIONS(4725), - [anon_sym_DASH_GT] = ACTIONS(4725), - [anon_sym_annotation] = ACTIONS(4723), - [anon_sym_end] = ACTIONS(4723), - [anon_sym_AT_LBRACK] = ACTIONS(4725), - [anon_sym_private] = ACTIONS(4723), - [anon_sym_module] = ACTIONS(4723), - [anon_sym_abstract] = ACTIONS(4723), - [anon_sym_class] = ACTIONS(4723), - [anon_sym_struct] = ACTIONS(4723), - [anon_sym_enum] = ACTIONS(4723), - [anon_sym_STAR] = ACTIONS(4725), - [anon_sym_BANG] = ACTIONS(4725), - [anon_sym_TILDE] = ACTIONS(4725), - [anon_sym_def] = ACTIONS(4723), - [aux_sym__base_method_def_token1] = ACTIONS(4727), - [anon_sym_protected] = ACTIONS(4723), - [anon_sym_include] = ACTIONS(4723), - [anon_sym_extend] = ACTIONS(4723), - [anon_sym_forall] = ACTIONS(4693), - [anon_sym_return] = ACTIONS(4723), - [anon_sym_next] = ACTIONS(4723), - [anon_sym_break] = ACTIONS(4723), - [anon_sym_with] = ACTIONS(4723), - [anon_sym_yield] = ACTIONS(4723), - [anon_sym_typeof] = ACTIONS(4723), - [anon_sym_sizeof] = ACTIONS(4723), - [anon_sym_instance_sizeof] = ACTIONS(4723), - [anon_sym_offsetof] = ACTIONS(4723), - [sym__constant_segment] = ACTIONS(4725), - [anon_sym_COLON_COLON] = ACTIONS(4725), - [anon_sym___LINE__] = ACTIONS(4723), - [anon_sym___END_LINE__] = ACTIONS(4723), - [anon_sym___FILE__] = ACTIONS(4723), - [anon_sym___DIR__] = ACTIONS(4723), - [sym_special_variable] = ACTIONS(4725), - [sym_identifier_method_call] = ACTIONS(4725), - [sym_instance_var] = ACTIONS(4725), - [sym_class_var] = ACTIONS(4725), - [sym_self] = ACTIONS(4723), - [anon_sym_alias] = ACTIONS(4723), - [anon_sym_begin] = ACTIONS(4723), - [anon_sym_while] = ACTIONS(4723), - [anon_sym_until] = ACTIONS(4723), - [anon_sym_else] = ACTIONS(4723), - [anon_sym_require] = ACTIONS(4723), - [anon_sym_case] = ACTIONS(4723), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4725), - [sym__start_of_named_tuple] = ACTIONS(4725), - [sym_unary_plus] = ACTIONS(4725), - [sym_unary_minus] = ACTIONS(4725), - [sym_unary_wrapping_plus] = ACTIONS(4725), - [sym_unary_wrapping_minus] = ACTIONS(4725), - [sym__beginless_range_operator] = ACTIONS(4725), - [sym__regex_start] = ACTIONS(4725), - [sym__regular_if_keyword] = ACTIONS(4725), - [sym__regular_unless_keyword] = ACTIONS(4725), - [sym__regular_rescue_keyword] = ACTIONS(4725), - [sym__regular_ensure_keyword] = ACTIONS(4725), - [sym__string_literal_start] = ACTIONS(4725), - [sym__string_percent_literal_start] = ACTIONS(4725), - [sym__command_percent_literal_start] = ACTIONS(4725), - [sym__string_array_percent_literal_start] = ACTIONS(4725), - [sym__symbol_array_percent_literal_start] = ACTIONS(4725), - [sym__regex_percent_literal_start] = ACTIONS(4725), - [sym_heredoc_start] = ACTIONS(4725), + [sym_forall] = STATE(2061), + [sym_identifier] = ACTIONS(4760), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4762), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4760), + [sym_true] = ACTIONS(4760), + [sym_false] = ACTIONS(4760), + [aux_sym_integer_token2] = ACTIONS(4760), + [aux_sym_float_token2] = ACTIONS(4762), + [anon_sym_SQUOTE] = ACTIONS(4762), + [sym_operator_symbol] = ACTIONS(4762), + [sym_unquoted_symbol] = ACTIONS(4762), + [anon_sym_COLON_DQUOTE] = ACTIONS(4762), + [anon_sym_BQUOTE] = ACTIONS(4762), + [anon_sym_LBRACK] = ACTIONS(4762), + [anon_sym_DASH_GT] = ACTIONS(4762), + [anon_sym_annotation] = ACTIONS(4760), + [anon_sym_end] = ACTIONS(4760), + [anon_sym_AT_LBRACK] = ACTIONS(4762), + [anon_sym_private] = ACTIONS(4760), + [anon_sym_module] = ACTIONS(4760), + [anon_sym_abstract] = ACTIONS(4760), + [anon_sym_class] = ACTIONS(4760), + [anon_sym_struct] = ACTIONS(4760), + [anon_sym_enum] = ACTIONS(4760), + [anon_sym_STAR] = ACTIONS(4762), + [anon_sym_BANG] = ACTIONS(4762), + [anon_sym_TILDE] = ACTIONS(4762), + [anon_sym_def] = ACTIONS(4760), + [aux_sym__base_method_def_token1] = ACTIONS(4764), + [anon_sym_protected] = ACTIONS(4760), + [anon_sym_include] = ACTIONS(4760), + [anon_sym_extend] = ACTIONS(4760), + [anon_sym_forall] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4760), + [anon_sym_next] = ACTIONS(4760), + [anon_sym_break] = ACTIONS(4760), + [anon_sym_with] = ACTIONS(4760), + [anon_sym_yield] = ACTIONS(4760), + [anon_sym_typeof] = ACTIONS(4760), + [anon_sym_sizeof] = ACTIONS(4760), + [anon_sym_instance_sizeof] = ACTIONS(4760), + [anon_sym_offsetof] = ACTIONS(4760), + [sym__constant_segment] = ACTIONS(4762), + [anon_sym_COLON_COLON] = ACTIONS(4762), + [anon_sym___LINE__] = ACTIONS(4760), + [anon_sym___END_LINE__] = ACTIONS(4760), + [anon_sym___FILE__] = ACTIONS(4760), + [anon_sym___DIR__] = ACTIONS(4760), + [sym_special_variable] = ACTIONS(4762), + [sym_identifier_method_call] = ACTIONS(4762), + [sym_instance_var] = ACTIONS(4762), + [sym_class_var] = ACTIONS(4762), + [sym_self] = ACTIONS(4760), + [anon_sym_alias] = ACTIONS(4760), + [anon_sym_begin] = ACTIONS(4760), + [anon_sym_while] = ACTIONS(4760), + [anon_sym_until] = ACTIONS(4760), + [anon_sym_else] = ACTIONS(4760), + [anon_sym_require] = ACTIONS(4760), + [anon_sym_case] = ACTIONS(4760), + [anon_sym_select] = ACTIONS(4760), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4762), + [sym__start_of_named_tuple] = ACTIONS(4762), + [sym_unary_plus] = ACTIONS(4762), + [sym_unary_minus] = ACTIONS(4762), + [sym_unary_wrapping_plus] = ACTIONS(4762), + [sym_unary_wrapping_minus] = ACTIONS(4762), + [sym__beginless_range_operator] = ACTIONS(4762), + [sym__regex_start] = ACTIONS(4762), + [sym__regular_if_keyword] = ACTIONS(4762), + [sym__regular_unless_keyword] = ACTIONS(4762), + [sym__regular_rescue_keyword] = ACTIONS(4762), + [sym__regular_ensure_keyword] = ACTIONS(4762), + [sym__string_literal_start] = ACTIONS(4762), + [sym__string_percent_literal_start] = ACTIONS(4762), + [sym__command_percent_literal_start] = ACTIONS(4762), + [sym__string_array_percent_literal_start] = ACTIONS(4762), + [sym__symbol_array_percent_literal_start] = ACTIONS(4762), + [sym__regex_percent_literal_start] = ACTIONS(4762), + [sym_heredoc_start] = ACTIONS(4762), [sym__heredoc_body_start] = ACTIONS(7), }, [2035] = { - [sym__terminator] = STATE(2125), [sym_heredoc_body] = STATE(2035), - [sym_forall] = STATE(2074), - [sym_identifier] = ACTIONS(4729), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4731), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4729), - [sym_true] = ACTIONS(4729), - [sym_false] = ACTIONS(4729), - [aux_sym_integer_token2] = ACTIONS(4729), - [aux_sym_float_token2] = ACTIONS(4731), - [anon_sym_SQUOTE] = ACTIONS(4731), - [sym_operator_symbol] = ACTIONS(4731), - [sym_unquoted_symbol] = ACTIONS(4731), - [anon_sym_COLON_DQUOTE] = ACTIONS(4731), - [anon_sym_BQUOTE] = ACTIONS(4731), - [anon_sym_LBRACK] = ACTIONS(4731), - [anon_sym_DASH_GT] = ACTIONS(4731), - [anon_sym_annotation] = ACTIONS(4729), - [anon_sym_end] = ACTIONS(4729), - [anon_sym_AT_LBRACK] = ACTIONS(4731), - [anon_sym_private] = ACTIONS(4729), - [anon_sym_module] = ACTIONS(4729), - [anon_sym_abstract] = ACTIONS(4729), - [anon_sym_class] = ACTIONS(4729), - [anon_sym_struct] = ACTIONS(4729), - [anon_sym_enum] = ACTIONS(4729), - [anon_sym_STAR] = ACTIONS(4731), - [anon_sym_BANG] = ACTIONS(4731), - [anon_sym_TILDE] = ACTIONS(4731), - [anon_sym_def] = ACTIONS(4729), - [anon_sym_protected] = ACTIONS(4729), - [anon_sym_include] = ACTIONS(4729), - [anon_sym_extend] = ACTIONS(4729), - [anon_sym_forall] = ACTIONS(4693), - [anon_sym_return] = ACTIONS(4729), - [anon_sym_next] = ACTIONS(4729), - [anon_sym_break] = ACTIONS(4729), - [anon_sym_with] = ACTIONS(4729), - [anon_sym_yield] = ACTIONS(4729), - [anon_sym_typeof] = ACTIONS(4729), - [anon_sym_sizeof] = ACTIONS(4729), - [anon_sym_instance_sizeof] = ACTIONS(4729), - [anon_sym_offsetof] = ACTIONS(4729), - [sym__constant_segment] = ACTIONS(4731), - [anon_sym_COLON_COLON] = ACTIONS(4731), - [anon_sym___LINE__] = ACTIONS(4729), - [anon_sym___END_LINE__] = ACTIONS(4729), - [anon_sym___FILE__] = ACTIONS(4729), - [anon_sym___DIR__] = ACTIONS(4729), - [sym_special_variable] = ACTIONS(4731), - [sym_identifier_method_call] = ACTIONS(4731), - [sym_instance_var] = ACTIONS(4731), - [sym_class_var] = ACTIONS(4731), - [sym_self] = ACTIONS(4729), - [anon_sym_alias] = ACTIONS(4729), - [anon_sym_begin] = ACTIONS(4729), - [anon_sym_while] = ACTIONS(4729), - [anon_sym_until] = ACTIONS(4729), - [anon_sym_else] = ACTIONS(4729), - [anon_sym_require] = ACTIONS(4729), - [anon_sym_case] = ACTIONS(4729), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4731), - [sym__start_of_named_tuple] = ACTIONS(4731), - [sym_unary_plus] = ACTIONS(4731), - [sym_unary_minus] = ACTIONS(4731), - [sym_unary_wrapping_plus] = ACTIONS(4731), - [sym_unary_wrapping_minus] = ACTIONS(4731), - [sym__beginless_range_operator] = ACTIONS(4731), - [sym__regex_start] = ACTIONS(4731), - [sym__regular_if_keyword] = ACTIONS(4731), - [sym__regular_unless_keyword] = ACTIONS(4731), - [sym__regular_rescue_keyword] = ACTIONS(4731), - [sym__regular_ensure_keyword] = ACTIONS(4731), - [sym__string_literal_start] = ACTIONS(4731), - [sym__string_percent_literal_start] = ACTIONS(4731), - [sym__command_percent_literal_start] = ACTIONS(4731), - [sym__string_array_percent_literal_start] = ACTIONS(4731), - [sym__symbol_array_percent_literal_start] = ACTIONS(4731), - [sym__regex_percent_literal_start] = ACTIONS(4731), - [sym_heredoc_start] = ACTIONS(4731), + [aux_sym_constant_repeat1] = STATE(2035), + [sym_identifier] = ACTIONS(4598), + [anon_sym_SEMI] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(4598), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4598), + [sym_true] = ACTIONS(4598), + [sym_false] = ACTIONS(4598), + [aux_sym_integer_token2] = ACTIONS(4598), + [aux_sym_float_token2] = ACTIONS(4600), + [anon_sym_SQUOTE] = ACTIONS(4600), + [sym_operator_symbol] = ACTIONS(4600), + [sym_unquoted_symbol] = ACTIONS(4600), + [anon_sym_COLON_DQUOTE] = ACTIONS(4600), + [anon_sym_BQUOTE] = ACTIONS(4600), + [anon_sym_LBRACK] = ACTIONS(4600), + [anon_sym_COMMA] = ACTIONS(4600), + [anon_sym_DASH_GT] = ACTIONS(4600), + [anon_sym_annotation] = ACTIONS(4598), + [anon_sym_end] = ACTIONS(4598), + [anon_sym_AT_LBRACK] = ACTIONS(4600), + [anon_sym_private] = ACTIONS(4598), + [anon_sym_module] = ACTIONS(4598), + [anon_sym_abstract] = ACTIONS(4598), + [anon_sym_class] = ACTIONS(4598), + [anon_sym_LT] = ACTIONS(4600), + [anon_sym_struct] = ACTIONS(4598), + [anon_sym_enum] = ACTIONS(4598), + [anon_sym_STAR] = ACTIONS(4600), + [anon_sym_PIPE] = ACTIONS(4600), + [anon_sym_BANG] = ACTIONS(4600), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_def] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4600), + [anon_sym_protected] = ACTIONS(4598), + [anon_sym_include] = ACTIONS(4598), + [anon_sym_extend] = ACTIONS(4598), + [anon_sym_return] = ACTIONS(4598), + [anon_sym_next] = ACTIONS(4598), + [anon_sym_break] = ACTIONS(4598), + [anon_sym_with] = ACTIONS(4598), + [anon_sym_yield] = ACTIONS(4598), + [anon_sym_typeof] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(4598), + [anon_sym_instance_sizeof] = ACTIONS(4598), + [anon_sym_offsetof] = ACTIONS(4598), + [sym__constant_segment] = ACTIONS(4600), + [anon_sym_COLON_COLON] = ACTIONS(4766), + [anon_sym___LINE__] = ACTIONS(4598), + [anon_sym___END_LINE__] = ACTIONS(4598), + [anon_sym___FILE__] = ACTIONS(4598), + [anon_sym___DIR__] = ACTIONS(4598), + [sym_special_variable] = ACTIONS(4600), + [sym_identifier_method_call] = ACTIONS(4600), + [sym_instance_var] = ACTIONS(4600), + [sym_class_var] = ACTIONS(4600), + [sym_self] = ACTIONS(4598), + [anon_sym_LPAREN2] = ACTIONS(4600), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_alias] = ACTIONS(4598), + [anon_sym_begin] = ACTIONS(4598), + [anon_sym_while] = ACTIONS(4598), + [anon_sym_until] = ACTIONS(4598), + [anon_sym_require] = ACTIONS(4598), + [anon_sym_case] = ACTIONS(4598), + [anon_sym_select] = ACTIONS(4598), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4600), + [sym__start_of_named_tuple] = ACTIONS(4600), + [sym_unary_plus] = ACTIONS(4600), + [sym_unary_minus] = ACTIONS(4600), + [sym_unary_wrapping_plus] = ACTIONS(4600), + [sym_unary_wrapping_minus] = ACTIONS(4600), + [sym__beginless_range_operator] = ACTIONS(4600), + [sym__regex_start] = ACTIONS(4600), + [sym__regular_if_keyword] = ACTIONS(4600), + [sym__regular_unless_keyword] = ACTIONS(4600), + [sym__string_literal_start] = ACTIONS(4600), + [sym__string_percent_literal_start] = ACTIONS(4600), + [sym__command_percent_literal_start] = ACTIONS(4600), + [sym__string_array_percent_literal_start] = ACTIONS(4600), + [sym__symbol_array_percent_literal_start] = ACTIONS(4600), + [sym__regex_percent_literal_start] = ACTIONS(4600), + [sym_heredoc_start] = ACTIONS(4600), [sym__heredoc_body_start] = ACTIONS(7), }, [2036] = { - [sym_heredoc_body] = STATE(2036), - [ts_builtin_sym_end] = ACTIONS(1795), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_RPAREN] = ACTIONS(1795), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1836), - [sym_true] = ACTIONS(1836), - [sym_false] = ACTIONS(1836), - [aux_sym_integer_token2] = ACTIONS(1836), - [aux_sym_float_token2] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [sym_operator_symbol] = ACTIONS(1795), - [sym_unquoted_symbol] = ACTIONS(1795), - [anon_sym_COLON_DQUOTE] = ACTIONS(1795), - [anon_sym_BQUOTE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_DASH_GT] = ACTIONS(1795), - [anon_sym_annotation] = ACTIONS(1836), - [anon_sym_end] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_abstract] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_protected] = ACTIONS(1836), - [anon_sym_include] = ACTIONS(1836), - [anon_sym_extend] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_next] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_with] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1836), - [anon_sym_instance_sizeof] = ACTIONS(1836), - [anon_sym_offsetof] = ACTIONS(1836), - [sym__constant_segment] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym___LINE__] = ACTIONS(1836), - [anon_sym___END_LINE__] = ACTIONS(1836), - [anon_sym___FILE__] = ACTIONS(1836), - [anon_sym___DIR__] = ACTIONS(1836), - [sym_special_variable] = ACTIONS(1795), - [sym_identifier_method_call] = ACTIONS(1795), - [sym_instance_var] = ACTIONS(1795), - [sym_class_var] = ACTIONS(1795), - [sym_self] = ACTIONS(1836), - [anon_sym_alias] = ACTIONS(1836), - [anon_sym_begin] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_until] = ACTIONS(1836), - [anon_sym_elsif] = ACTIONS(1836), - [anon_sym_else] = ACTIONS(1836), - [anon_sym_require] = ACTIONS(1836), - [anon_sym_when] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1836), - [anon_sym_in] = ACTIONS(1836), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1795), - [sym__start_of_named_tuple] = ACTIONS(1795), - [sym_unary_plus] = ACTIONS(1795), - [sym_unary_minus] = ACTIONS(1795), - [sym_unary_wrapping_plus] = ACTIONS(1795), - [sym_unary_wrapping_minus] = ACTIONS(1795), - [sym__beginless_range_operator] = ACTIONS(1795), - [sym__regex_start] = ACTIONS(1795), - [sym__regular_if_keyword] = ACTIONS(1795), - [sym__regular_unless_keyword] = ACTIONS(1795), - [sym__string_literal_start] = ACTIONS(1795), - [sym__string_percent_literal_start] = ACTIONS(1795), - [sym__command_percent_literal_start] = ACTIONS(1795), - [sym__string_array_percent_literal_start] = ACTIONS(1795), - [sym__symbol_array_percent_literal_start] = ACTIONS(1795), - [sym__regex_percent_literal_start] = ACTIONS(1795), - [sym_heredoc_start] = ACTIONS(1795), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2037] = { - [sym__terminator] = STATE(2116), - [sym_heredoc_body] = STATE(2037), - [sym_forall] = STATE(2058), - [sym_identifier] = ACTIONS(4733), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4735), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4733), - [sym_true] = ACTIONS(4733), - [sym_false] = ACTIONS(4733), - [aux_sym_integer_token2] = ACTIONS(4733), - [aux_sym_float_token2] = ACTIONS(4735), - [anon_sym_SQUOTE] = ACTIONS(4735), - [sym_operator_symbol] = ACTIONS(4735), - [sym_unquoted_symbol] = ACTIONS(4735), - [anon_sym_COLON_DQUOTE] = ACTIONS(4735), - [anon_sym_BQUOTE] = ACTIONS(4735), - [anon_sym_LBRACK] = ACTIONS(4735), - [anon_sym_DASH_GT] = ACTIONS(4735), - [anon_sym_annotation] = ACTIONS(4733), - [anon_sym_end] = ACTIONS(4733), - [anon_sym_AT_LBRACK] = ACTIONS(4735), - [anon_sym_private] = ACTIONS(4733), - [anon_sym_module] = ACTIONS(4733), - [anon_sym_abstract] = ACTIONS(4733), - [anon_sym_class] = ACTIONS(4733), - [anon_sym_struct] = ACTIONS(4733), - [anon_sym_enum] = ACTIONS(4733), - [anon_sym_STAR] = ACTIONS(4735), - [anon_sym_BANG] = ACTIONS(4735), - [anon_sym_TILDE] = ACTIONS(4735), - [anon_sym_def] = ACTIONS(4733), - [anon_sym_protected] = ACTIONS(4733), - [anon_sym_include] = ACTIONS(4733), - [anon_sym_extend] = ACTIONS(4733), - [anon_sym_forall] = ACTIONS(4693), - [anon_sym_return] = ACTIONS(4733), - [anon_sym_next] = ACTIONS(4733), - [anon_sym_break] = ACTIONS(4733), - [anon_sym_with] = ACTIONS(4733), - [anon_sym_yield] = ACTIONS(4733), - [anon_sym_typeof] = ACTIONS(4733), - [anon_sym_sizeof] = ACTIONS(4733), - [anon_sym_instance_sizeof] = ACTIONS(4733), - [anon_sym_offsetof] = ACTIONS(4733), - [sym__constant_segment] = ACTIONS(4735), - [anon_sym_COLON_COLON] = ACTIONS(4735), - [anon_sym___LINE__] = ACTIONS(4733), - [anon_sym___END_LINE__] = ACTIONS(4733), - [anon_sym___FILE__] = ACTIONS(4733), - [anon_sym___DIR__] = ACTIONS(4733), - [sym_special_variable] = ACTIONS(4735), - [sym_identifier_method_call] = ACTIONS(4735), - [sym_instance_var] = ACTIONS(4735), - [sym_class_var] = ACTIONS(4735), - [sym_self] = ACTIONS(4733), - [anon_sym_alias] = ACTIONS(4733), - [anon_sym_begin] = ACTIONS(4733), - [anon_sym_while] = ACTIONS(4733), - [anon_sym_until] = ACTIONS(4733), - [anon_sym_else] = ACTIONS(4733), - [anon_sym_require] = ACTIONS(4733), - [anon_sym_case] = ACTIONS(4733), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4735), - [sym__start_of_named_tuple] = ACTIONS(4735), - [sym_unary_plus] = ACTIONS(4735), - [sym_unary_minus] = ACTIONS(4735), - [sym_unary_wrapping_plus] = ACTIONS(4735), - [sym_unary_wrapping_minus] = ACTIONS(4735), - [sym__beginless_range_operator] = ACTIONS(4735), - [sym__regex_start] = ACTIONS(4735), - [sym__regular_if_keyword] = ACTIONS(4735), - [sym__regular_unless_keyword] = ACTIONS(4735), - [sym__regular_rescue_keyword] = ACTIONS(4735), - [sym__regular_ensure_keyword] = ACTIONS(4735), - [sym__string_literal_start] = ACTIONS(4735), - [sym__string_percent_literal_start] = ACTIONS(4735), - [sym__command_percent_literal_start] = ACTIONS(4735), - [sym__string_array_percent_literal_start] = ACTIONS(4735), - [sym__symbol_array_percent_literal_start] = ACTIONS(4735), - [sym__regex_percent_literal_start] = ACTIONS(4735), - [sym_heredoc_start] = ACTIONS(4735), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2038] = { [sym__terminator] = STATE(2103), - [sym_heredoc_body] = STATE(2038), - [sym_forall] = STATE(2056), - [sym_identifier] = ACTIONS(4737), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4739), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4737), - [sym_true] = ACTIONS(4737), - [sym_false] = ACTIONS(4737), - [aux_sym_integer_token2] = ACTIONS(4737), - [aux_sym_float_token2] = ACTIONS(4739), - [anon_sym_SQUOTE] = ACTIONS(4739), - [sym_operator_symbol] = ACTIONS(4739), - [sym_unquoted_symbol] = ACTIONS(4739), - [anon_sym_COLON_DQUOTE] = ACTIONS(4739), - [anon_sym_BQUOTE] = ACTIONS(4739), - [anon_sym_LBRACK] = ACTIONS(4739), - [anon_sym_DASH_GT] = ACTIONS(4739), - [anon_sym_annotation] = ACTIONS(4737), - [anon_sym_end] = ACTIONS(4737), - [anon_sym_AT_LBRACK] = ACTIONS(4739), - [anon_sym_private] = ACTIONS(4737), - [anon_sym_module] = ACTIONS(4737), - [anon_sym_abstract] = ACTIONS(4737), - [anon_sym_class] = ACTIONS(4737), - [anon_sym_struct] = ACTIONS(4737), - [anon_sym_enum] = ACTIONS(4737), - [anon_sym_STAR] = ACTIONS(4739), - [anon_sym_BANG] = ACTIONS(4739), - [anon_sym_TILDE] = ACTIONS(4739), - [anon_sym_def] = ACTIONS(4737), - [anon_sym_protected] = ACTIONS(4737), - [anon_sym_include] = ACTIONS(4737), - [anon_sym_extend] = ACTIONS(4737), - [anon_sym_forall] = ACTIONS(4693), - [anon_sym_return] = ACTIONS(4737), - [anon_sym_next] = ACTIONS(4737), - [anon_sym_break] = ACTIONS(4737), - [anon_sym_with] = ACTIONS(4737), - [anon_sym_yield] = ACTIONS(4737), - [anon_sym_typeof] = ACTIONS(4737), - [anon_sym_sizeof] = ACTIONS(4737), - [anon_sym_instance_sizeof] = ACTIONS(4737), - [anon_sym_offsetof] = ACTIONS(4737), - [sym__constant_segment] = ACTIONS(4739), - [anon_sym_COLON_COLON] = ACTIONS(4739), - [anon_sym___LINE__] = ACTIONS(4737), - [anon_sym___END_LINE__] = ACTIONS(4737), - [anon_sym___FILE__] = ACTIONS(4737), - [anon_sym___DIR__] = ACTIONS(4737), - [sym_special_variable] = ACTIONS(4739), - [sym_identifier_method_call] = ACTIONS(4739), - [sym_instance_var] = ACTIONS(4739), - [sym_class_var] = ACTIONS(4739), - [sym_self] = ACTIONS(4737), - [anon_sym_alias] = ACTIONS(4737), - [anon_sym_begin] = ACTIONS(4737), - [anon_sym_while] = ACTIONS(4737), - [anon_sym_until] = ACTIONS(4737), - [anon_sym_else] = ACTIONS(4737), - [anon_sym_require] = ACTIONS(4737), - [anon_sym_case] = ACTIONS(4737), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4739), - [sym__start_of_named_tuple] = ACTIONS(4739), - [sym_unary_plus] = ACTIONS(4739), - [sym_unary_minus] = ACTIONS(4739), - [sym_unary_wrapping_plus] = ACTIONS(4739), - [sym_unary_wrapping_minus] = ACTIONS(4739), - [sym__beginless_range_operator] = ACTIONS(4739), - [sym__regex_start] = ACTIONS(4739), - [sym__regular_if_keyword] = ACTIONS(4739), - [sym__regular_unless_keyword] = ACTIONS(4739), - [sym__regular_rescue_keyword] = ACTIONS(4739), - [sym__regular_ensure_keyword] = ACTIONS(4739), - [sym__string_literal_start] = ACTIONS(4739), - [sym__string_percent_literal_start] = ACTIONS(4739), - [sym__command_percent_literal_start] = ACTIONS(4739), - [sym__string_array_percent_literal_start] = ACTIONS(4739), - [sym__symbol_array_percent_literal_start] = ACTIONS(4739), - [sym__regex_percent_literal_start] = ACTIONS(4739), - [sym_heredoc_start] = ACTIONS(4739), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2039] = { - [sym_heredoc_body] = STATE(2039), - [aux_sym_constant_repeat1] = STATE(2041), - [sym_identifier] = ACTIONS(4547), - [anon_sym_SEMI] = ACTIONS(4549), - [anon_sym_LPAREN] = ACTIONS(4547), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4547), - [sym_true] = ACTIONS(4547), - [sym_false] = ACTIONS(4547), - [aux_sym_integer_token2] = ACTIONS(4547), - [aux_sym_float_token2] = ACTIONS(4549), - [anon_sym_SQUOTE] = ACTIONS(4549), - [sym_operator_symbol] = ACTIONS(4549), - [sym_unquoted_symbol] = ACTIONS(4549), - [anon_sym_COLON_DQUOTE] = ACTIONS(4549), - [anon_sym_BQUOTE] = ACTIONS(4549), - [anon_sym_LBRACK] = ACTIONS(4549), - [anon_sym_COMMA] = ACTIONS(4549), - [anon_sym_DASH_GT] = ACTIONS(4549), - [anon_sym_annotation] = ACTIONS(4547), - [anon_sym_end] = ACTIONS(4547), - [anon_sym_AT_LBRACK] = ACTIONS(4549), - [anon_sym_private] = ACTIONS(4547), - [anon_sym_module] = ACTIONS(4547), - [anon_sym_abstract] = ACTIONS(4547), - [anon_sym_class] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_struct] = ACTIONS(4547), - [anon_sym_enum] = ACTIONS(4547), - [anon_sym_STAR] = ACTIONS(4549), - [anon_sym_PIPE] = ACTIONS(4549), - [anon_sym_BANG] = ACTIONS(4549), - [anon_sym_TILDE] = ACTIONS(4549), - [anon_sym_def] = ACTIONS(4547), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_protected] = ACTIONS(4547), - [anon_sym_include] = ACTIONS(4547), - [anon_sym_extend] = ACTIONS(4547), - [anon_sym_return] = ACTIONS(4547), - [anon_sym_next] = ACTIONS(4547), - [anon_sym_break] = ACTIONS(4547), - [anon_sym_with] = ACTIONS(4547), - [anon_sym_yield] = ACTIONS(4547), - [anon_sym_typeof] = ACTIONS(4547), - [anon_sym_sizeof] = ACTIONS(4547), - [anon_sym_instance_sizeof] = ACTIONS(4547), - [anon_sym_offsetof] = ACTIONS(4547), - [sym__constant_segment] = ACTIONS(4549), - [anon_sym_COLON_COLON] = ACTIONS(4741), - [anon_sym___LINE__] = ACTIONS(4547), - [anon_sym___END_LINE__] = ACTIONS(4547), - [anon_sym___FILE__] = ACTIONS(4547), - [anon_sym___DIR__] = ACTIONS(4547), - [sym_special_variable] = ACTIONS(4549), - [sym_identifier_method_call] = ACTIONS(4549), - [sym_instance_var] = ACTIONS(4549), - [sym_class_var] = ACTIONS(4549), - [sym_self] = ACTIONS(4547), - [anon_sym_LPAREN2] = ACTIONS(4549), - [anon_sym_QMARK] = ACTIONS(4549), - [anon_sym_alias] = ACTIONS(4547), - [anon_sym_begin] = ACTIONS(4547), - [anon_sym_while] = ACTIONS(4547), - [anon_sym_until] = ACTIONS(4547), - [anon_sym_require] = ACTIONS(4547), - [anon_sym_case] = ACTIONS(4547), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4549), - [sym__start_of_named_tuple] = ACTIONS(4549), - [sym_unary_plus] = ACTIONS(4549), - [sym_unary_minus] = ACTIONS(4549), - [sym_unary_wrapping_plus] = ACTIONS(4549), - [sym_unary_wrapping_minus] = ACTIONS(4549), - [sym__beginless_range_operator] = ACTIONS(4549), - [sym__regex_start] = ACTIONS(4549), - [sym__regular_if_keyword] = ACTIONS(4549), - [sym__regular_unless_keyword] = ACTIONS(4549), - [sym__string_literal_start] = ACTIONS(4549), - [sym__string_percent_literal_start] = ACTIONS(4549), - [sym__command_percent_literal_start] = ACTIONS(4549), - [sym__string_array_percent_literal_start] = ACTIONS(4549), - [sym__symbol_array_percent_literal_start] = ACTIONS(4549), - [sym__regex_percent_literal_start] = ACTIONS(4549), - [sym_heredoc_start] = ACTIONS(4549), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2040] = { - [sym_heredoc_body] = STATE(2040), - [aux_sym_proc_type_repeat1] = STATE(10313), - [sym_identifier] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4745), - [anon_sym_LPAREN] = ACTIONS(4745), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4743), - [sym_true] = ACTIONS(4743), - [sym_false] = ACTIONS(4743), - [aux_sym_integer_token2] = ACTIONS(4743), - [aux_sym_float_token2] = ACTIONS(4745), - [anon_sym_SQUOTE] = ACTIONS(4745), - [sym_operator_symbol] = ACTIONS(4745), - [sym_unquoted_symbol] = ACTIONS(4745), - [anon_sym_COLON_DQUOTE] = ACTIONS(4745), - [anon_sym_BQUOTE] = ACTIONS(4745), - [anon_sym_LBRACK] = ACTIONS(4745), - [anon_sym_COMMA] = ACTIONS(4747), - [anon_sym_DASH_GT] = ACTIONS(4749), - [anon_sym_annotation] = ACTIONS(4743), - [anon_sym_end] = ACTIONS(4743), - [anon_sym_AT_LBRACK] = ACTIONS(4745), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_module] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_class] = ACTIONS(4743), - [anon_sym_struct] = ACTIONS(4743), - [anon_sym_enum] = ACTIONS(4743), - [anon_sym_STAR] = ACTIONS(4745), - [anon_sym_BANG] = ACTIONS(4745), - [anon_sym_TILDE] = ACTIONS(4745), - [anon_sym_def] = ACTIONS(4743), - [anon_sym_protected] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_extend] = ACTIONS(4743), - [anon_sym_forall] = ACTIONS(4743), - [anon_sym_return] = ACTIONS(4743), - [anon_sym_next] = ACTIONS(4743), - [anon_sym_break] = ACTIONS(4743), - [anon_sym_with] = ACTIONS(4743), - [anon_sym_yield] = ACTIONS(4743), - [anon_sym_typeof] = ACTIONS(4743), - [anon_sym_sizeof] = ACTIONS(4743), - [anon_sym_instance_sizeof] = ACTIONS(4743), - [anon_sym_offsetof] = ACTIONS(4743), - [sym__constant_segment] = ACTIONS(4745), - [anon_sym_COLON_COLON] = ACTIONS(4745), - [anon_sym___LINE__] = ACTIONS(4743), - [anon_sym___END_LINE__] = ACTIONS(4743), - [anon_sym___FILE__] = ACTIONS(4743), - [anon_sym___DIR__] = ACTIONS(4743), - [sym_special_variable] = ACTIONS(4745), - [sym_identifier_method_call] = ACTIONS(4745), - [sym_instance_var] = ACTIONS(4745), - [sym_class_var] = ACTIONS(4745), - [sym_self] = ACTIONS(4743), - [anon_sym_alias] = ACTIONS(4743), - [anon_sym_begin] = ACTIONS(4743), - [anon_sym_while] = ACTIONS(4743), - [anon_sym_until] = ACTIONS(4743), - [anon_sym_else] = ACTIONS(4743), - [anon_sym_require] = ACTIONS(4743), - [anon_sym_case] = ACTIONS(4743), - [sym__line_break] = ACTIONS(4745), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4745), - [sym__start_of_named_tuple] = ACTIONS(4745), - [sym_unary_plus] = ACTIONS(4745), - [sym_unary_minus] = ACTIONS(4745), - [sym_unary_wrapping_plus] = ACTIONS(4745), - [sym_unary_wrapping_minus] = ACTIONS(4745), - [sym__beginless_range_operator] = ACTIONS(4745), - [sym__regex_start] = ACTIONS(4745), - [sym__regular_if_keyword] = ACTIONS(4745), - [sym__regular_unless_keyword] = ACTIONS(4745), - [sym__regular_rescue_keyword] = ACTIONS(4745), - [sym__regular_ensure_keyword] = ACTIONS(4745), - [sym__string_literal_start] = ACTIONS(4745), - [sym__string_percent_literal_start] = ACTIONS(4745), - [sym__command_percent_literal_start] = ACTIONS(4745), - [sym__string_array_percent_literal_start] = ACTIONS(4745), - [sym__symbol_array_percent_literal_start] = ACTIONS(4745), - [sym__regex_percent_literal_start] = ACTIONS(4745), - [sym_heredoc_start] = ACTIONS(4745), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2041] = { - [sym_heredoc_body] = STATE(2041), - [aux_sym_constant_repeat1] = STATE(2045), - [sym_identifier] = ACTIONS(4553), - [anon_sym_SEMI] = ACTIONS(4555), - [anon_sym_LPAREN] = ACTIONS(4553), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4553), - [sym_true] = ACTIONS(4553), - [sym_false] = ACTIONS(4553), - [aux_sym_integer_token2] = ACTIONS(4553), - [aux_sym_float_token2] = ACTIONS(4555), - [anon_sym_SQUOTE] = ACTIONS(4555), - [sym_operator_symbol] = ACTIONS(4555), - [sym_unquoted_symbol] = ACTIONS(4555), - [anon_sym_COLON_DQUOTE] = ACTIONS(4555), - [anon_sym_BQUOTE] = ACTIONS(4555), - [anon_sym_LBRACK] = ACTIONS(4555), - [anon_sym_COMMA] = ACTIONS(4555), - [anon_sym_DASH_GT] = ACTIONS(4555), - [anon_sym_annotation] = ACTIONS(4553), - [anon_sym_end] = ACTIONS(4553), - [anon_sym_AT_LBRACK] = ACTIONS(4555), - [anon_sym_private] = ACTIONS(4553), - [anon_sym_module] = ACTIONS(4553), - [anon_sym_abstract] = ACTIONS(4553), - [anon_sym_class] = ACTIONS(4553), - [anon_sym_LT] = ACTIONS(4555), - [anon_sym_struct] = ACTIONS(4553), - [anon_sym_enum] = ACTIONS(4553), - [anon_sym_STAR] = ACTIONS(4555), - [anon_sym_PIPE] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(4555), - [anon_sym_TILDE] = ACTIONS(4555), - [anon_sym_def] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_protected] = ACTIONS(4553), - [anon_sym_include] = ACTIONS(4553), - [anon_sym_extend] = ACTIONS(4553), - [anon_sym_return] = ACTIONS(4553), - [anon_sym_next] = ACTIONS(4553), - [anon_sym_break] = ACTIONS(4553), - [anon_sym_with] = ACTIONS(4553), - [anon_sym_yield] = ACTIONS(4553), - [anon_sym_typeof] = ACTIONS(4553), - [anon_sym_sizeof] = ACTIONS(4553), - [anon_sym_instance_sizeof] = ACTIONS(4553), - [anon_sym_offsetof] = ACTIONS(4553), - [sym__constant_segment] = ACTIONS(4555), - [anon_sym_COLON_COLON] = ACTIONS(4741), - [anon_sym___LINE__] = ACTIONS(4553), - [anon_sym___END_LINE__] = ACTIONS(4553), - [anon_sym___FILE__] = ACTIONS(4553), - [anon_sym___DIR__] = ACTIONS(4553), - [sym_special_variable] = ACTIONS(4555), - [sym_identifier_method_call] = ACTIONS(4555), - [sym_instance_var] = ACTIONS(4555), - [sym_class_var] = ACTIONS(4555), - [sym_self] = ACTIONS(4553), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_QMARK] = ACTIONS(4555), - [anon_sym_alias] = ACTIONS(4553), - [anon_sym_begin] = ACTIONS(4553), - [anon_sym_while] = ACTIONS(4553), - [anon_sym_until] = ACTIONS(4553), - [anon_sym_require] = ACTIONS(4553), - [anon_sym_case] = ACTIONS(4553), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4555), - [sym__start_of_named_tuple] = ACTIONS(4555), - [sym_unary_plus] = ACTIONS(4555), - [sym_unary_minus] = ACTIONS(4555), - [sym_unary_wrapping_plus] = ACTIONS(4555), - [sym_unary_wrapping_minus] = ACTIONS(4555), - [sym__beginless_range_operator] = ACTIONS(4555), - [sym__regex_start] = ACTIONS(4555), - [sym__regular_if_keyword] = ACTIONS(4555), - [sym__regular_unless_keyword] = ACTIONS(4555), - [sym__string_literal_start] = ACTIONS(4555), - [sym__string_percent_literal_start] = ACTIONS(4555), - [sym__command_percent_literal_start] = ACTIONS(4555), - [sym__string_array_percent_literal_start] = ACTIONS(4555), - [sym__symbol_array_percent_literal_start] = ACTIONS(4555), - [sym__regex_percent_literal_start] = ACTIONS(4555), - [sym_heredoc_start] = ACTIONS(4555), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2042] = { - [sym_heredoc_body] = STATE(2042), - [aux_sym_constant_repeat1] = STATE(2044), - [sym_identifier] = ACTIONS(4553), - [anon_sym_SEMI] = ACTIONS(4555), - [anon_sym_LPAREN] = ACTIONS(4553), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4553), - [sym_true] = ACTIONS(4553), - [sym_false] = ACTIONS(4553), - [aux_sym_integer_token2] = ACTIONS(4553), - [aux_sym_float_token2] = ACTIONS(4555), - [anon_sym_SQUOTE] = ACTIONS(4555), - [sym_operator_symbol] = ACTIONS(4555), - [sym_unquoted_symbol] = ACTIONS(4555), - [anon_sym_COLON_DQUOTE] = ACTIONS(4555), - [anon_sym_BQUOTE] = ACTIONS(4555), - [anon_sym_LBRACK] = ACTIONS(4555), - [anon_sym_COMMA] = ACTIONS(4555), - [anon_sym_DASH_GT] = ACTIONS(4555), - [anon_sym_annotation] = ACTIONS(4553), - [anon_sym_end] = ACTIONS(4553), - [anon_sym_AT_LBRACK] = ACTIONS(4555), - [anon_sym_private] = ACTIONS(4553), - [anon_sym_module] = ACTIONS(4553), - [anon_sym_abstract] = ACTIONS(4553), - [anon_sym_class] = ACTIONS(4553), - [anon_sym_LT] = ACTIONS(4555), - [anon_sym_struct] = ACTIONS(4553), - [anon_sym_enum] = ACTIONS(4553), - [anon_sym_STAR] = ACTIONS(4555), - [anon_sym_PIPE] = ACTIONS(4555), - [anon_sym_BANG] = ACTIONS(4555), - [anon_sym_TILDE] = ACTIONS(4555), - [anon_sym_def] = ACTIONS(4553), - [anon_sym_DOT] = ACTIONS(4555), - [anon_sym_protected] = ACTIONS(4553), - [anon_sym_include] = ACTIONS(4553), - [anon_sym_extend] = ACTIONS(4553), - [anon_sym_return] = ACTIONS(4553), - [anon_sym_next] = ACTIONS(4553), - [anon_sym_break] = ACTIONS(4553), - [anon_sym_with] = ACTIONS(4553), - [anon_sym_yield] = ACTIONS(4553), - [anon_sym_typeof] = ACTIONS(4553), - [anon_sym_sizeof] = ACTIONS(4553), - [anon_sym_instance_sizeof] = ACTIONS(4553), - [anon_sym_offsetof] = ACTIONS(4553), - [sym__constant_segment] = ACTIONS(4555), - [anon_sym_COLON_COLON] = ACTIONS(4741), - [anon_sym___LINE__] = ACTIONS(4553), - [anon_sym___END_LINE__] = ACTIONS(4553), - [anon_sym___FILE__] = ACTIONS(4553), - [anon_sym___DIR__] = ACTIONS(4553), - [sym_special_variable] = ACTIONS(4555), - [sym_identifier_method_call] = ACTIONS(4555), - [sym_instance_var] = ACTIONS(4555), - [sym_class_var] = ACTIONS(4555), - [sym_self] = ACTIONS(4553), - [anon_sym_LPAREN2] = ACTIONS(4555), - [anon_sym_QMARK] = ACTIONS(4555), - [anon_sym_alias] = ACTIONS(4553), - [anon_sym_begin] = ACTIONS(4553), - [anon_sym_while] = ACTIONS(4553), - [anon_sym_until] = ACTIONS(4553), - [anon_sym_require] = ACTIONS(4553), - [anon_sym_case] = ACTIONS(4553), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4555), - [sym__start_of_named_tuple] = ACTIONS(4555), - [sym_unary_plus] = ACTIONS(4555), - [sym_unary_minus] = ACTIONS(4555), - [sym_unary_wrapping_plus] = ACTIONS(4555), - [sym_unary_wrapping_minus] = ACTIONS(4555), - [sym__beginless_range_operator] = ACTIONS(4555), - [sym__regex_start] = ACTIONS(4555), - [sym__regular_if_keyword] = ACTIONS(4555), - [sym__regular_unless_keyword] = ACTIONS(4555), - [sym__string_literal_start] = ACTIONS(4555), - [sym__string_percent_literal_start] = ACTIONS(4555), - [sym__command_percent_literal_start] = ACTIONS(4555), - [sym__string_array_percent_literal_start] = ACTIONS(4555), - [sym__symbol_array_percent_literal_start] = ACTIONS(4555), - [sym__regex_percent_literal_start] = ACTIONS(4555), - [sym_heredoc_start] = ACTIONS(4555), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2043] = { - [sym__terminator] = STATE(2114), - [sym_heredoc_body] = STATE(2043), - [sym_forall] = STATE(2069), - [sym_identifier] = ACTIONS(4752), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4754), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4752), - [sym_true] = ACTIONS(4752), - [sym_false] = ACTIONS(4752), - [aux_sym_integer_token2] = ACTIONS(4752), - [aux_sym_float_token2] = ACTIONS(4754), - [anon_sym_SQUOTE] = ACTIONS(4754), - [sym_operator_symbol] = ACTIONS(4754), - [sym_unquoted_symbol] = ACTIONS(4754), - [anon_sym_COLON_DQUOTE] = ACTIONS(4754), - [anon_sym_BQUOTE] = ACTIONS(4754), - [anon_sym_LBRACK] = ACTIONS(4754), - [anon_sym_DASH_GT] = ACTIONS(4754), - [anon_sym_annotation] = ACTIONS(4752), - [anon_sym_end] = ACTIONS(4752), - [anon_sym_AT_LBRACK] = ACTIONS(4754), - [anon_sym_private] = ACTIONS(4752), - [anon_sym_module] = ACTIONS(4752), - [anon_sym_abstract] = ACTIONS(4752), - [anon_sym_class] = ACTIONS(4752), - [anon_sym_struct] = ACTIONS(4752), - [anon_sym_enum] = ACTIONS(4752), - [anon_sym_STAR] = ACTIONS(4754), - [anon_sym_BANG] = ACTIONS(4754), - [anon_sym_TILDE] = ACTIONS(4754), - [anon_sym_def] = ACTIONS(4752), - [anon_sym_protected] = ACTIONS(4752), - [anon_sym_include] = ACTIONS(4752), - [anon_sym_extend] = ACTIONS(4752), - [anon_sym_forall] = ACTIONS(4693), - [anon_sym_return] = ACTIONS(4752), - [anon_sym_next] = ACTIONS(4752), - [anon_sym_break] = ACTIONS(4752), - [anon_sym_with] = ACTIONS(4752), - [anon_sym_yield] = ACTIONS(4752), - [anon_sym_typeof] = ACTIONS(4752), - [anon_sym_sizeof] = ACTIONS(4752), - [anon_sym_instance_sizeof] = ACTIONS(4752), - [anon_sym_offsetof] = ACTIONS(4752), - [sym__constant_segment] = ACTIONS(4754), - [anon_sym_COLON_COLON] = ACTIONS(4754), - [anon_sym___LINE__] = ACTIONS(4752), - [anon_sym___END_LINE__] = ACTIONS(4752), - [anon_sym___FILE__] = ACTIONS(4752), - [anon_sym___DIR__] = ACTIONS(4752), - [sym_special_variable] = ACTIONS(4754), - [sym_identifier_method_call] = ACTIONS(4754), - [sym_instance_var] = ACTIONS(4754), - [sym_class_var] = ACTIONS(4754), - [sym_self] = ACTIONS(4752), - [anon_sym_alias] = ACTIONS(4752), - [anon_sym_begin] = ACTIONS(4752), - [anon_sym_while] = ACTIONS(4752), - [anon_sym_until] = ACTIONS(4752), - [anon_sym_else] = ACTIONS(4752), - [anon_sym_require] = ACTIONS(4752), - [anon_sym_case] = ACTIONS(4752), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4754), - [sym__start_of_named_tuple] = ACTIONS(4754), - [sym_unary_plus] = ACTIONS(4754), - [sym_unary_minus] = ACTIONS(4754), - [sym_unary_wrapping_plus] = ACTIONS(4754), - [sym_unary_wrapping_minus] = ACTIONS(4754), - [sym__beginless_range_operator] = ACTIONS(4754), - [sym__regex_start] = ACTIONS(4754), - [sym__regular_if_keyword] = ACTIONS(4754), - [sym__regular_unless_keyword] = ACTIONS(4754), - [sym__regular_rescue_keyword] = ACTIONS(4754), - [sym__regular_ensure_keyword] = ACTIONS(4754), - [sym__string_literal_start] = ACTIONS(4754), - [sym__string_percent_literal_start] = ACTIONS(4754), - [sym__command_percent_literal_start] = ACTIONS(4754), - [sym__string_array_percent_literal_start] = ACTIONS(4754), - [sym__symbol_array_percent_literal_start] = ACTIONS(4754), - [sym__regex_percent_literal_start] = ACTIONS(4754), - [sym_heredoc_start] = ACTIONS(4754), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2044] = { - [sym_heredoc_body] = STATE(2044), - [aux_sym_constant_repeat1] = STATE(2045), - [sym_identifier] = ACTIONS(4557), - [anon_sym_SEMI] = ACTIONS(4559), - [anon_sym_LPAREN] = ACTIONS(4557), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4557), - [sym_true] = ACTIONS(4557), - [sym_false] = ACTIONS(4557), - [aux_sym_integer_token2] = ACTIONS(4557), - [aux_sym_float_token2] = ACTIONS(4559), - [anon_sym_SQUOTE] = ACTIONS(4559), - [sym_operator_symbol] = ACTIONS(4559), - [sym_unquoted_symbol] = ACTIONS(4559), - [anon_sym_COLON_DQUOTE] = ACTIONS(4559), - [anon_sym_BQUOTE] = ACTIONS(4559), - [anon_sym_LBRACK] = ACTIONS(4559), - [anon_sym_COMMA] = ACTIONS(4559), - [anon_sym_DASH_GT] = ACTIONS(4559), - [anon_sym_annotation] = ACTIONS(4557), - [anon_sym_end] = ACTIONS(4557), - [anon_sym_AT_LBRACK] = ACTIONS(4559), - [anon_sym_private] = ACTIONS(4557), - [anon_sym_module] = ACTIONS(4557), - [anon_sym_abstract] = ACTIONS(4557), - [anon_sym_class] = ACTIONS(4557), - [anon_sym_LT] = ACTIONS(4559), - [anon_sym_struct] = ACTIONS(4557), - [anon_sym_enum] = ACTIONS(4557), - [anon_sym_STAR] = ACTIONS(4559), - [anon_sym_PIPE] = ACTIONS(4559), - [anon_sym_BANG] = ACTIONS(4559), - [anon_sym_TILDE] = ACTIONS(4559), - [anon_sym_def] = ACTIONS(4557), - [anon_sym_DOT] = ACTIONS(4559), - [anon_sym_protected] = ACTIONS(4557), - [anon_sym_include] = ACTIONS(4557), - [anon_sym_extend] = ACTIONS(4557), - [anon_sym_return] = ACTIONS(4557), - [anon_sym_next] = ACTIONS(4557), - [anon_sym_break] = ACTIONS(4557), - [anon_sym_with] = ACTIONS(4557), - [anon_sym_yield] = ACTIONS(4557), - [anon_sym_typeof] = ACTIONS(4557), - [anon_sym_sizeof] = ACTIONS(4557), - [anon_sym_instance_sizeof] = ACTIONS(4557), - [anon_sym_offsetof] = ACTIONS(4557), - [sym__constant_segment] = ACTIONS(4559), - [anon_sym_COLON_COLON] = ACTIONS(4741), - [anon_sym___LINE__] = ACTIONS(4557), - [anon_sym___END_LINE__] = ACTIONS(4557), - [anon_sym___FILE__] = ACTIONS(4557), - [anon_sym___DIR__] = ACTIONS(4557), - [sym_special_variable] = ACTIONS(4559), - [sym_identifier_method_call] = ACTIONS(4559), - [sym_instance_var] = ACTIONS(4559), - [sym_class_var] = ACTIONS(4559), - [sym_self] = ACTIONS(4557), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_QMARK] = ACTIONS(4559), - [anon_sym_alias] = ACTIONS(4557), - [anon_sym_begin] = ACTIONS(4557), - [anon_sym_while] = ACTIONS(4557), - [anon_sym_until] = ACTIONS(4557), - [anon_sym_require] = ACTIONS(4557), - [anon_sym_case] = ACTIONS(4557), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4559), - [sym__start_of_named_tuple] = ACTIONS(4559), - [sym_unary_plus] = ACTIONS(4559), - [sym_unary_minus] = ACTIONS(4559), - [sym_unary_wrapping_plus] = ACTIONS(4559), - [sym_unary_wrapping_minus] = ACTIONS(4559), - [sym__beginless_range_operator] = ACTIONS(4559), - [sym__regex_start] = ACTIONS(4559), - [sym__regular_if_keyword] = ACTIONS(4559), - [sym__regular_unless_keyword] = ACTIONS(4559), - [sym__string_literal_start] = ACTIONS(4559), - [sym__string_percent_literal_start] = ACTIONS(4559), - [sym__command_percent_literal_start] = ACTIONS(4559), - [sym__string_array_percent_literal_start] = ACTIONS(4559), - [sym__symbol_array_percent_literal_start] = ACTIONS(4559), - [sym__regex_percent_literal_start] = ACTIONS(4559), - [sym_heredoc_start] = ACTIONS(4559), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2045] = { - [sym_heredoc_body] = STATE(2045), - [aux_sym_constant_repeat1] = STATE(2045), - [sym_identifier] = ACTIONS(4561), - [anon_sym_SEMI] = ACTIONS(4563), - [anon_sym_LPAREN] = ACTIONS(4561), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4561), - [sym_true] = ACTIONS(4561), - [sym_false] = ACTIONS(4561), - [aux_sym_integer_token2] = ACTIONS(4561), - [aux_sym_float_token2] = ACTIONS(4563), - [anon_sym_SQUOTE] = ACTIONS(4563), - [sym_operator_symbol] = ACTIONS(4563), - [sym_unquoted_symbol] = ACTIONS(4563), - [anon_sym_COLON_DQUOTE] = ACTIONS(4563), - [anon_sym_BQUOTE] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(4563), - [anon_sym_COMMA] = ACTIONS(4563), - [anon_sym_DASH_GT] = ACTIONS(4563), - [anon_sym_annotation] = ACTIONS(4561), - [anon_sym_end] = ACTIONS(4561), - [anon_sym_AT_LBRACK] = ACTIONS(4563), - [anon_sym_private] = ACTIONS(4561), - [anon_sym_module] = ACTIONS(4561), - [anon_sym_abstract] = ACTIONS(4561), - [anon_sym_class] = ACTIONS(4561), - [anon_sym_LT] = ACTIONS(4563), - [anon_sym_struct] = ACTIONS(4561), - [anon_sym_enum] = ACTIONS(4561), - [anon_sym_STAR] = ACTIONS(4563), - [anon_sym_PIPE] = ACTIONS(4563), - [anon_sym_BANG] = ACTIONS(4563), - [anon_sym_TILDE] = ACTIONS(4563), - [anon_sym_def] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4563), - [anon_sym_protected] = ACTIONS(4561), - [anon_sym_include] = ACTIONS(4561), - [anon_sym_extend] = ACTIONS(4561), - [anon_sym_return] = ACTIONS(4561), - [anon_sym_next] = ACTIONS(4561), - [anon_sym_break] = ACTIONS(4561), - [anon_sym_with] = ACTIONS(4561), - [anon_sym_yield] = ACTIONS(4561), - [anon_sym_typeof] = ACTIONS(4561), - [anon_sym_sizeof] = ACTIONS(4561), - [anon_sym_instance_sizeof] = ACTIONS(4561), - [anon_sym_offsetof] = ACTIONS(4561), - [sym__constant_segment] = ACTIONS(4563), - [anon_sym_COLON_COLON] = ACTIONS(4756), - [anon_sym___LINE__] = ACTIONS(4561), - [anon_sym___END_LINE__] = ACTIONS(4561), - [anon_sym___FILE__] = ACTIONS(4561), - [anon_sym___DIR__] = ACTIONS(4561), - [sym_special_variable] = ACTIONS(4563), - [sym_identifier_method_call] = ACTIONS(4563), - [sym_instance_var] = ACTIONS(4563), - [sym_class_var] = ACTIONS(4563), - [sym_self] = ACTIONS(4561), - [anon_sym_LPAREN2] = ACTIONS(4563), - [anon_sym_QMARK] = ACTIONS(4563), - [anon_sym_alias] = ACTIONS(4561), - [anon_sym_begin] = ACTIONS(4561), - [anon_sym_while] = ACTIONS(4561), - [anon_sym_until] = ACTIONS(4561), - [anon_sym_require] = ACTIONS(4561), - [anon_sym_case] = ACTIONS(4561), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4563), - [sym__start_of_named_tuple] = ACTIONS(4563), - [sym_unary_plus] = ACTIONS(4563), - [sym_unary_minus] = ACTIONS(4563), - [sym_unary_wrapping_plus] = ACTIONS(4563), - [sym_unary_wrapping_minus] = ACTIONS(4563), - [sym__beginless_range_operator] = ACTIONS(4563), - [sym__regex_start] = ACTIONS(4563), - [sym__regular_if_keyword] = ACTIONS(4563), - [sym__regular_unless_keyword] = ACTIONS(4563), - [sym__string_literal_start] = ACTIONS(4563), - [sym__string_percent_literal_start] = ACTIONS(4563), - [sym__command_percent_literal_start] = ACTIONS(4563), - [sym__string_array_percent_literal_start] = ACTIONS(4563), - [sym__symbol_array_percent_literal_start] = ACTIONS(4563), - [sym__regex_percent_literal_start] = ACTIONS(4563), - [sym_heredoc_start] = ACTIONS(4563), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2046] = { - [sym__terminator] = STATE(2120), - [sym_heredoc_body] = STATE(2046), - [sym_forall] = STATE(2076), - [sym_identifier] = ACTIONS(4759), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4761), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4759), - [sym_true] = ACTIONS(4759), - [sym_false] = ACTIONS(4759), - [aux_sym_integer_token2] = ACTIONS(4759), - [aux_sym_float_token2] = ACTIONS(4761), - [anon_sym_SQUOTE] = ACTIONS(4761), - [sym_operator_symbol] = ACTIONS(4761), - [sym_unquoted_symbol] = ACTIONS(4761), - [anon_sym_COLON_DQUOTE] = ACTIONS(4761), - [anon_sym_BQUOTE] = ACTIONS(4761), - [anon_sym_LBRACK] = ACTIONS(4761), - [anon_sym_DASH_GT] = ACTIONS(4761), - [anon_sym_annotation] = ACTIONS(4759), - [anon_sym_end] = ACTIONS(4759), - [anon_sym_AT_LBRACK] = ACTIONS(4761), - [anon_sym_private] = ACTIONS(4759), - [anon_sym_module] = ACTIONS(4759), - [anon_sym_abstract] = ACTIONS(4759), - [anon_sym_class] = ACTIONS(4759), - [anon_sym_struct] = ACTIONS(4759), - [anon_sym_enum] = ACTIONS(4759), - [anon_sym_STAR] = ACTIONS(4761), - [anon_sym_BANG] = ACTIONS(4761), - [anon_sym_TILDE] = ACTIONS(4761), - [anon_sym_def] = ACTIONS(4759), - [anon_sym_protected] = ACTIONS(4759), - [anon_sym_include] = ACTIONS(4759), - [anon_sym_extend] = ACTIONS(4759), - [anon_sym_forall] = ACTIONS(4693), - [anon_sym_return] = ACTIONS(4759), - [anon_sym_next] = ACTIONS(4759), - [anon_sym_break] = ACTIONS(4759), - [anon_sym_with] = ACTIONS(4759), - [anon_sym_yield] = ACTIONS(4759), - [anon_sym_typeof] = ACTIONS(4759), - [anon_sym_sizeof] = ACTIONS(4759), - [anon_sym_instance_sizeof] = ACTIONS(4759), - [anon_sym_offsetof] = ACTIONS(4759), - [sym__constant_segment] = ACTIONS(4761), - [anon_sym_COLON_COLON] = ACTIONS(4761), - [anon_sym___LINE__] = ACTIONS(4759), - [anon_sym___END_LINE__] = ACTIONS(4759), - [anon_sym___FILE__] = ACTIONS(4759), - [anon_sym___DIR__] = ACTIONS(4759), - [sym_special_variable] = ACTIONS(4761), - [sym_identifier_method_call] = ACTIONS(4761), - [sym_instance_var] = ACTIONS(4761), - [sym_class_var] = ACTIONS(4761), - [sym_self] = ACTIONS(4759), - [anon_sym_alias] = ACTIONS(4759), - [anon_sym_begin] = ACTIONS(4759), - [anon_sym_while] = ACTIONS(4759), - [anon_sym_until] = ACTIONS(4759), - [anon_sym_else] = ACTIONS(4759), - [anon_sym_require] = ACTIONS(4759), - [anon_sym_case] = ACTIONS(4759), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4761), - [sym__start_of_named_tuple] = ACTIONS(4761), - [sym_unary_plus] = ACTIONS(4761), - [sym_unary_minus] = ACTIONS(4761), - [sym_unary_wrapping_plus] = ACTIONS(4761), - [sym_unary_wrapping_minus] = ACTIONS(4761), - [sym__beginless_range_operator] = ACTIONS(4761), - [sym__regex_start] = ACTIONS(4761), - [sym__regular_if_keyword] = ACTIONS(4761), - [sym__regular_unless_keyword] = ACTIONS(4761), - [sym__regular_rescue_keyword] = ACTIONS(4761), - [sym__regular_ensure_keyword] = ACTIONS(4761), - [sym__string_literal_start] = ACTIONS(4761), - [sym__string_percent_literal_start] = ACTIONS(4761), - [sym__command_percent_literal_start] = ACTIONS(4761), - [sym__string_array_percent_literal_start] = ACTIONS(4761), - [sym__symbol_array_percent_literal_start] = ACTIONS(4761), - [sym__regex_percent_literal_start] = ACTIONS(4761), - [sym_heredoc_start] = ACTIONS(4761), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2047] = { - [sym_heredoc_body] = STATE(2047), - [ts_builtin_sym_end] = ACTIONS(4763), - [sym_identifier] = ACTIONS(4765), - [anon_sym_SEMI] = ACTIONS(4763), - [anon_sym_LPAREN] = ACTIONS(4763), - [anon_sym_RPAREN] = ACTIONS(4763), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4765), - [sym_true] = ACTIONS(4765), - [sym_false] = ACTIONS(4765), - [aux_sym_integer_token2] = ACTIONS(4765), - [aux_sym_float_token2] = ACTIONS(4763), - [anon_sym_SQUOTE] = ACTIONS(4763), - [anon_sym_RBRACE] = ACTIONS(4763), - [sym_operator_symbol] = ACTIONS(4763), - [sym_unquoted_symbol] = ACTIONS(4763), - [anon_sym_COLON_DQUOTE] = ACTIONS(4763), - [anon_sym_BQUOTE] = ACTIONS(4763), - [anon_sym_LBRACK] = ACTIONS(4763), - [anon_sym_DASH_GT] = ACTIONS(4763), - [anon_sym_annotation] = ACTIONS(4765), - [anon_sym_end] = ACTIONS(4765), - [anon_sym_AT_LBRACK] = ACTIONS(4763), - [anon_sym_private] = ACTIONS(4765), - [anon_sym_module] = ACTIONS(4765), - [anon_sym_abstract] = ACTIONS(4765), - [anon_sym_class] = ACTIONS(4765), - [anon_sym_struct] = ACTIONS(4765), - [anon_sym_enum] = ACTIONS(4765), - [anon_sym_STAR] = ACTIONS(4763), - [anon_sym_BANG] = ACTIONS(4763), - [anon_sym_TILDE] = ACTIONS(4763), - [anon_sym_def] = ACTIONS(4765), - [anon_sym_protected] = ACTIONS(4765), - [anon_sym_include] = ACTIONS(4765), - [anon_sym_extend] = ACTIONS(4765), - [anon_sym_return] = ACTIONS(4765), - [anon_sym_next] = ACTIONS(4765), - [anon_sym_break] = ACTIONS(4765), - [anon_sym_with] = ACTIONS(4765), - [anon_sym_yield] = ACTIONS(4765), - [anon_sym_typeof] = ACTIONS(4765), - [anon_sym_sizeof] = ACTIONS(4765), - [anon_sym_instance_sizeof] = ACTIONS(4765), - [anon_sym_offsetof] = ACTIONS(4765), - [sym__constant_segment] = ACTIONS(4763), - [anon_sym_COLON_COLON] = ACTIONS(4763), - [anon_sym___LINE__] = ACTIONS(4765), - [anon_sym___END_LINE__] = ACTIONS(4765), - [anon_sym___FILE__] = ACTIONS(4765), - [anon_sym___DIR__] = ACTIONS(4765), - [sym_special_variable] = ACTIONS(4763), - [sym_identifier_method_call] = ACTIONS(4763), - [sym_instance_var] = ACTIONS(4763), - [sym_class_var] = ACTIONS(4763), - [sym_self] = ACTIONS(4765), - [anon_sym_alias] = ACTIONS(4765), - [anon_sym_begin] = ACTIONS(4765), - [anon_sym_while] = ACTIONS(4765), - [anon_sym_until] = ACTIONS(4765), - [anon_sym_elsif] = ACTIONS(4765), - [anon_sym_else] = ACTIONS(4765), - [anon_sym_require] = ACTIONS(4765), - [anon_sym_when] = ACTIONS(4765), - [anon_sym_case] = ACTIONS(4765), - [anon_sym_in] = ACTIONS(4765), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4763), - [sym__start_of_named_tuple] = ACTIONS(4763), - [sym_unary_plus] = ACTIONS(4763), - [sym_unary_minus] = ACTIONS(4763), - [sym_unary_wrapping_plus] = ACTIONS(4763), - [sym_unary_wrapping_minus] = ACTIONS(4763), - [sym__beginless_range_operator] = ACTIONS(4763), - [sym__regex_start] = ACTIONS(4763), - [sym__regular_if_keyword] = ACTIONS(4763), - [sym__regular_unless_keyword] = ACTIONS(4763), - [sym__string_literal_start] = ACTIONS(4763), - [sym__string_percent_literal_start] = ACTIONS(4763), - [sym__command_percent_literal_start] = ACTIONS(4763), - [sym__string_array_percent_literal_start] = ACTIONS(4763), - [sym__symbol_array_percent_literal_start] = ACTIONS(4763), - [sym__regex_percent_literal_start] = ACTIONS(4763), - [sym_heredoc_start] = ACTIONS(4763), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2048] = { - [sym__terminator] = STATE(2099), - [sym_heredoc_body] = STATE(2048), - [sym_forall] = STATE(2066), - [sym_identifier] = ACTIONS(4767), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4769), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4767), - [sym_true] = ACTIONS(4767), - [sym_false] = ACTIONS(4767), - [aux_sym_integer_token2] = ACTIONS(4767), - [aux_sym_float_token2] = ACTIONS(4769), - [anon_sym_SQUOTE] = ACTIONS(4769), - [sym_operator_symbol] = ACTIONS(4769), - [sym_unquoted_symbol] = ACTIONS(4769), - [anon_sym_COLON_DQUOTE] = ACTIONS(4769), - [anon_sym_BQUOTE] = ACTIONS(4769), - [anon_sym_LBRACK] = ACTIONS(4769), - [anon_sym_DASH_GT] = ACTIONS(4769), - [anon_sym_annotation] = ACTIONS(4767), - [anon_sym_end] = ACTIONS(4767), - [anon_sym_AT_LBRACK] = ACTIONS(4769), - [anon_sym_private] = ACTIONS(4767), - [anon_sym_module] = ACTIONS(4767), - [anon_sym_abstract] = ACTIONS(4767), - [anon_sym_class] = ACTIONS(4767), - [anon_sym_struct] = ACTIONS(4767), - [anon_sym_enum] = ACTIONS(4767), - [anon_sym_STAR] = ACTIONS(4769), - [anon_sym_BANG] = ACTIONS(4769), - [anon_sym_TILDE] = ACTIONS(4769), - [anon_sym_def] = ACTIONS(4767), - [anon_sym_protected] = ACTIONS(4767), - [anon_sym_include] = ACTIONS(4767), - [anon_sym_extend] = ACTIONS(4767), - [anon_sym_forall] = ACTIONS(4693), - [anon_sym_return] = ACTIONS(4767), - [anon_sym_next] = ACTIONS(4767), - [anon_sym_break] = ACTIONS(4767), - [anon_sym_with] = ACTIONS(4767), - [anon_sym_yield] = ACTIONS(4767), - [anon_sym_typeof] = ACTIONS(4767), - [anon_sym_sizeof] = ACTIONS(4767), - [anon_sym_instance_sizeof] = ACTIONS(4767), - [anon_sym_offsetof] = ACTIONS(4767), - [sym__constant_segment] = ACTIONS(4769), - [anon_sym_COLON_COLON] = ACTIONS(4769), - [anon_sym___LINE__] = ACTIONS(4767), - [anon_sym___END_LINE__] = ACTIONS(4767), - [anon_sym___FILE__] = ACTIONS(4767), - [anon_sym___DIR__] = ACTIONS(4767), - [sym_special_variable] = ACTIONS(4769), - [sym_identifier_method_call] = ACTIONS(4769), - [sym_instance_var] = ACTIONS(4769), - [sym_class_var] = ACTIONS(4769), - [sym_self] = ACTIONS(4767), - [anon_sym_alias] = ACTIONS(4767), - [anon_sym_begin] = ACTIONS(4767), - [anon_sym_while] = ACTIONS(4767), - [anon_sym_until] = ACTIONS(4767), - [anon_sym_else] = ACTIONS(4767), - [anon_sym_require] = ACTIONS(4767), - [anon_sym_case] = ACTIONS(4767), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4769), - [sym__start_of_named_tuple] = ACTIONS(4769), - [sym_unary_plus] = ACTIONS(4769), - [sym_unary_minus] = ACTIONS(4769), - [sym_unary_wrapping_plus] = ACTIONS(4769), - [sym_unary_wrapping_minus] = ACTIONS(4769), - [sym__beginless_range_operator] = ACTIONS(4769), - [sym__regex_start] = ACTIONS(4769), - [sym__regular_if_keyword] = ACTIONS(4769), - [sym__regular_unless_keyword] = ACTIONS(4769), - [sym__regular_rescue_keyword] = ACTIONS(4769), - [sym__regular_ensure_keyword] = ACTIONS(4769), - [sym__string_literal_start] = ACTIONS(4769), - [sym__string_percent_literal_start] = ACTIONS(4769), - [sym__command_percent_literal_start] = ACTIONS(4769), - [sym__string_array_percent_literal_start] = ACTIONS(4769), - [sym__symbol_array_percent_literal_start] = ACTIONS(4769), - [sym__regex_percent_literal_start] = ACTIONS(4769), - [sym_heredoc_start] = ACTIONS(4769), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2049] = { - [sym_heredoc_body] = STATE(2049), - [ts_builtin_sym_end] = ACTIONS(4771), - [sym_identifier] = ACTIONS(4773), - [anon_sym_SEMI] = ACTIONS(4771), + [sym_heredoc_body] = STATE(2036), + [sym_forall] = STATE(2075), + [sym_identifier] = ACTIONS(4769), + [anon_sym_SEMI] = ACTIONS(1429), [anon_sym_LPAREN] = ACTIONS(4771), - [anon_sym_RPAREN] = ACTIONS(4771), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4773), - [sym_true] = ACTIONS(4773), - [sym_false] = ACTIONS(4773), - [aux_sym_integer_token2] = ACTIONS(4773), + [sym_nil] = ACTIONS(4769), + [sym_true] = ACTIONS(4769), + [sym_false] = ACTIONS(4769), + [aux_sym_integer_token2] = ACTIONS(4769), [aux_sym_float_token2] = ACTIONS(4771), [anon_sym_SQUOTE] = ACTIONS(4771), - [anon_sym_RBRACE] = ACTIONS(4771), [sym_operator_symbol] = ACTIONS(4771), [sym_unquoted_symbol] = ACTIONS(4771), [anon_sym_COLON_DQUOTE] = ACTIONS(4771), [anon_sym_BQUOTE] = ACTIONS(4771), [anon_sym_LBRACK] = ACTIONS(4771), [anon_sym_DASH_GT] = ACTIONS(4771), + [anon_sym_annotation] = ACTIONS(4769), + [anon_sym_end] = ACTIONS(4769), + [anon_sym_AT_LBRACK] = ACTIONS(4771), + [anon_sym_private] = ACTIONS(4769), + [anon_sym_module] = ACTIONS(4769), + [anon_sym_abstract] = ACTIONS(4769), + [anon_sym_class] = ACTIONS(4769), + [anon_sym_struct] = ACTIONS(4769), + [anon_sym_enum] = ACTIONS(4769), + [anon_sym_STAR] = ACTIONS(4771), + [anon_sym_BANG] = ACTIONS(4771), + [anon_sym_TILDE] = ACTIONS(4771), + [anon_sym_def] = ACTIONS(4769), + [anon_sym_protected] = ACTIONS(4769), + [anon_sym_include] = ACTIONS(4769), + [anon_sym_extend] = ACTIONS(4769), + [anon_sym_forall] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4769), + [anon_sym_next] = ACTIONS(4769), + [anon_sym_break] = ACTIONS(4769), + [anon_sym_with] = ACTIONS(4769), + [anon_sym_yield] = ACTIONS(4769), + [anon_sym_typeof] = ACTIONS(4769), + [anon_sym_sizeof] = ACTIONS(4769), + [anon_sym_instance_sizeof] = ACTIONS(4769), + [anon_sym_offsetof] = ACTIONS(4769), + [sym__constant_segment] = ACTIONS(4771), + [anon_sym_COLON_COLON] = ACTIONS(4771), + [anon_sym___LINE__] = ACTIONS(4769), + [anon_sym___END_LINE__] = ACTIONS(4769), + [anon_sym___FILE__] = ACTIONS(4769), + [anon_sym___DIR__] = ACTIONS(4769), + [sym_special_variable] = ACTIONS(4771), + [sym_identifier_method_call] = ACTIONS(4771), + [sym_instance_var] = ACTIONS(4771), + [sym_class_var] = ACTIONS(4771), + [sym_self] = ACTIONS(4769), + [anon_sym_alias] = ACTIONS(4769), + [anon_sym_begin] = ACTIONS(4769), + [anon_sym_while] = ACTIONS(4769), + [anon_sym_until] = ACTIONS(4769), + [anon_sym_else] = ACTIONS(4769), + [anon_sym_require] = ACTIONS(4769), + [anon_sym_case] = ACTIONS(4769), + [anon_sym_select] = ACTIONS(4769), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4771), + [sym__start_of_named_tuple] = ACTIONS(4771), + [sym_unary_plus] = ACTIONS(4771), + [sym_unary_minus] = ACTIONS(4771), + [sym_unary_wrapping_plus] = ACTIONS(4771), + [sym_unary_wrapping_minus] = ACTIONS(4771), + [sym__beginless_range_operator] = ACTIONS(4771), + [sym__regex_start] = ACTIONS(4771), + [sym__regular_if_keyword] = ACTIONS(4771), + [sym__regular_unless_keyword] = ACTIONS(4771), + [sym__regular_rescue_keyword] = ACTIONS(4771), + [sym__regular_ensure_keyword] = ACTIONS(4771), + [sym__string_literal_start] = ACTIONS(4771), + [sym__string_percent_literal_start] = ACTIONS(4771), + [sym__command_percent_literal_start] = ACTIONS(4771), + [sym__string_array_percent_literal_start] = ACTIONS(4771), + [sym__symbol_array_percent_literal_start] = ACTIONS(4771), + [sym__regex_percent_literal_start] = ACTIONS(4771), + [sym_heredoc_start] = ACTIONS(4771), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2037] = { + [sym__terminator] = STATE(2113), + [sym_heredoc_body] = STATE(2037), + [sym_forall] = STATE(2062), + [sym_identifier] = ACTIONS(4773), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4775), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4773), + [sym_true] = ACTIONS(4773), + [sym_false] = ACTIONS(4773), + [aux_sym_integer_token2] = ACTIONS(4773), + [aux_sym_float_token2] = ACTIONS(4775), + [anon_sym_SQUOTE] = ACTIONS(4775), + [sym_operator_symbol] = ACTIONS(4775), + [sym_unquoted_symbol] = ACTIONS(4775), + [anon_sym_COLON_DQUOTE] = ACTIONS(4775), + [anon_sym_BQUOTE] = ACTIONS(4775), + [anon_sym_LBRACK] = ACTIONS(4775), + [anon_sym_DASH_GT] = ACTIONS(4775), [anon_sym_annotation] = ACTIONS(4773), [anon_sym_end] = ACTIONS(4773), - [anon_sym_AT_LBRACK] = ACTIONS(4771), + [anon_sym_AT_LBRACK] = ACTIONS(4775), [anon_sym_private] = ACTIONS(4773), [anon_sym_module] = ACTIONS(4773), [anon_sym_abstract] = ACTIONS(4773), [anon_sym_class] = ACTIONS(4773), [anon_sym_struct] = ACTIONS(4773), [anon_sym_enum] = ACTIONS(4773), - [anon_sym_STAR] = ACTIONS(4771), - [anon_sym_BANG] = ACTIONS(4771), - [anon_sym_TILDE] = ACTIONS(4771), + [anon_sym_STAR] = ACTIONS(4775), + [anon_sym_BANG] = ACTIONS(4775), + [anon_sym_TILDE] = ACTIONS(4775), [anon_sym_def] = ACTIONS(4773), [anon_sym_protected] = ACTIONS(4773), [anon_sym_include] = ACTIONS(4773), [anon_sym_extend] = ACTIONS(4773), + [anon_sym_forall] = ACTIONS(4732), [anon_sym_return] = ACTIONS(4773), [anon_sym_next] = ACTIONS(4773), [anon_sym_break] = ACTIONS(4773), @@ -309875,568 +313024,494 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_sizeof] = ACTIONS(4773), [anon_sym_instance_sizeof] = ACTIONS(4773), [anon_sym_offsetof] = ACTIONS(4773), - [sym__constant_segment] = ACTIONS(4771), - [anon_sym_COLON_COLON] = ACTIONS(4771), + [sym__constant_segment] = ACTIONS(4775), + [anon_sym_COLON_COLON] = ACTIONS(4775), [anon_sym___LINE__] = ACTIONS(4773), [anon_sym___END_LINE__] = ACTIONS(4773), [anon_sym___FILE__] = ACTIONS(4773), [anon_sym___DIR__] = ACTIONS(4773), - [sym_special_variable] = ACTIONS(4771), - [sym_identifier_method_call] = ACTIONS(4771), - [sym_instance_var] = ACTIONS(4771), - [sym_class_var] = ACTIONS(4771), + [sym_special_variable] = ACTIONS(4775), + [sym_identifier_method_call] = ACTIONS(4775), + [sym_instance_var] = ACTIONS(4775), + [sym_class_var] = ACTIONS(4775), [sym_self] = ACTIONS(4773), [anon_sym_alias] = ACTIONS(4773), [anon_sym_begin] = ACTIONS(4773), [anon_sym_while] = ACTIONS(4773), [anon_sym_until] = ACTIONS(4773), - [anon_sym_elsif] = ACTIONS(4773), [anon_sym_else] = ACTIONS(4773), [anon_sym_require] = ACTIONS(4773), - [anon_sym_when] = ACTIONS(4773), [anon_sym_case] = ACTIONS(4773), - [anon_sym_in] = ACTIONS(4773), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4771), - [sym__start_of_named_tuple] = ACTIONS(4771), - [sym_unary_plus] = ACTIONS(4771), - [sym_unary_minus] = ACTIONS(4771), - [sym_unary_wrapping_plus] = ACTIONS(4771), - [sym_unary_wrapping_minus] = ACTIONS(4771), - [sym__beginless_range_operator] = ACTIONS(4771), - [sym__regex_start] = ACTIONS(4771), - [sym__regular_if_keyword] = ACTIONS(4771), - [sym__regular_unless_keyword] = ACTIONS(4771), - [sym__string_literal_start] = ACTIONS(4771), - [sym__string_percent_literal_start] = ACTIONS(4771), - [sym__command_percent_literal_start] = ACTIONS(4771), - [sym__string_array_percent_literal_start] = ACTIONS(4771), - [sym__symbol_array_percent_literal_start] = ACTIONS(4771), - [sym__regex_percent_literal_start] = ACTIONS(4771), - [sym_heredoc_start] = ACTIONS(4771), + [anon_sym_select] = ACTIONS(4773), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4775), + [sym__start_of_named_tuple] = ACTIONS(4775), + [sym_unary_plus] = ACTIONS(4775), + [sym_unary_minus] = ACTIONS(4775), + [sym_unary_wrapping_plus] = ACTIONS(4775), + [sym_unary_wrapping_minus] = ACTIONS(4775), + [sym__beginless_range_operator] = ACTIONS(4775), + [sym__regex_start] = ACTIONS(4775), + [sym__regular_if_keyword] = ACTIONS(4775), + [sym__regular_unless_keyword] = ACTIONS(4775), + [sym__regular_rescue_keyword] = ACTIONS(4775), + [sym__regular_ensure_keyword] = ACTIONS(4775), + [sym__string_literal_start] = ACTIONS(4775), + [sym__string_percent_literal_start] = ACTIONS(4775), + [sym__command_percent_literal_start] = ACTIONS(4775), + [sym__string_array_percent_literal_start] = ACTIONS(4775), + [sym__symbol_array_percent_literal_start] = ACTIONS(4775), + [sym__regex_percent_literal_start] = ACTIONS(4775), + [sym_heredoc_start] = ACTIONS(4775), [sym__heredoc_body_start] = ACTIONS(7), }, - [2050] = { - [sym_heredoc_body] = STATE(2050), - [aux_sym_forall_repeat1] = STATE(2054), - [sym_identifier] = ACTIONS(4775), - [anon_sym_SEMI] = ACTIONS(4777), - [anon_sym_LPAREN] = ACTIONS(4777), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4775), - [sym_true] = ACTIONS(4775), - [sym_false] = ACTIONS(4775), - [aux_sym_integer_token2] = ACTIONS(4775), - [aux_sym_float_token2] = ACTIONS(4777), - [anon_sym_SQUOTE] = ACTIONS(4777), - [sym_operator_symbol] = ACTIONS(4777), - [sym_unquoted_symbol] = ACTIONS(4777), - [anon_sym_COLON_DQUOTE] = ACTIONS(4777), - [anon_sym_BQUOTE] = ACTIONS(4777), - [anon_sym_LBRACK] = ACTIONS(4777), - [anon_sym_COMMA] = ACTIONS(4779), - [anon_sym_DASH_GT] = ACTIONS(4777), - [anon_sym_annotation] = ACTIONS(4775), - [anon_sym_end] = ACTIONS(4775), - [anon_sym_AT_LBRACK] = ACTIONS(4777), - [anon_sym_private] = ACTIONS(4775), - [anon_sym_module] = ACTIONS(4775), - [anon_sym_abstract] = ACTIONS(4775), - [anon_sym_class] = ACTIONS(4775), - [anon_sym_struct] = ACTIONS(4775), - [anon_sym_enum] = ACTIONS(4775), - [anon_sym_STAR] = ACTIONS(4777), - [anon_sym_BANG] = ACTIONS(4777), - [anon_sym_TILDE] = ACTIONS(4777), - [anon_sym_def] = ACTIONS(4775), - [anon_sym_protected] = ACTIONS(4775), - [anon_sym_include] = ACTIONS(4775), - [anon_sym_extend] = ACTIONS(4775), - [anon_sym_return] = ACTIONS(4775), - [anon_sym_next] = ACTIONS(4775), - [anon_sym_break] = ACTIONS(4775), - [anon_sym_with] = ACTIONS(4775), - [anon_sym_yield] = ACTIONS(4775), - [anon_sym_typeof] = ACTIONS(4775), - [anon_sym_sizeof] = ACTIONS(4775), - [anon_sym_instance_sizeof] = ACTIONS(4775), - [anon_sym_offsetof] = ACTIONS(4775), - [sym__constant_segment] = ACTIONS(4777), + [2038] = { + [sym_heredoc_body] = STATE(2038), + [aux_sym_constant_repeat1] = STATE(2040), + [sym_identifier] = ACTIONS(4594), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4594), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4594), + [sym_true] = ACTIONS(4594), + [sym_false] = ACTIONS(4594), + [aux_sym_integer_token2] = ACTIONS(4594), + [aux_sym_float_token2] = ACTIONS(4596), + [anon_sym_SQUOTE] = ACTIONS(4596), + [sym_operator_symbol] = ACTIONS(4596), + [sym_unquoted_symbol] = ACTIONS(4596), + [anon_sym_COLON_DQUOTE] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH_GT] = ACTIONS(4596), + [anon_sym_annotation] = ACTIONS(4594), + [anon_sym_end] = ACTIONS(4594), + [anon_sym_AT_LBRACK] = ACTIONS(4596), + [anon_sym_private] = ACTIONS(4594), + [anon_sym_module] = ACTIONS(4594), + [anon_sym_abstract] = ACTIONS(4594), + [anon_sym_class] = ACTIONS(4594), + [anon_sym_LT] = ACTIONS(4596), + [anon_sym_struct] = ACTIONS(4594), + [anon_sym_enum] = ACTIONS(4594), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_def] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_protected] = ACTIONS(4594), + [anon_sym_include] = ACTIONS(4594), + [anon_sym_extend] = ACTIONS(4594), + [anon_sym_return] = ACTIONS(4594), + [anon_sym_next] = ACTIONS(4594), + [anon_sym_break] = ACTIONS(4594), + [anon_sym_with] = ACTIONS(4594), + [anon_sym_yield] = ACTIONS(4594), + [anon_sym_typeof] = ACTIONS(4594), + [anon_sym_sizeof] = ACTIONS(4594), + [anon_sym_instance_sizeof] = ACTIONS(4594), + [anon_sym_offsetof] = ACTIONS(4594), + [sym__constant_segment] = ACTIONS(4596), [anon_sym_COLON_COLON] = ACTIONS(4777), - [anon_sym___LINE__] = ACTIONS(4775), - [anon_sym___END_LINE__] = ACTIONS(4775), - [anon_sym___FILE__] = ACTIONS(4775), - [anon_sym___DIR__] = ACTIONS(4775), - [sym_special_variable] = ACTIONS(4777), - [sym_identifier_method_call] = ACTIONS(4777), - [sym_instance_var] = ACTIONS(4777), - [sym_class_var] = ACTIONS(4777), - [sym_self] = ACTIONS(4775), - [anon_sym_alias] = ACTIONS(4775), - [anon_sym_begin] = ACTIONS(4775), - [anon_sym_while] = ACTIONS(4775), - [anon_sym_until] = ACTIONS(4775), - [anon_sym_else] = ACTIONS(4775), - [anon_sym_require] = ACTIONS(4775), - [anon_sym_case] = ACTIONS(4775), - [sym__line_break] = ACTIONS(4777), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4777), - [sym__start_of_named_tuple] = ACTIONS(4777), - [sym_unary_plus] = ACTIONS(4777), - [sym_unary_minus] = ACTIONS(4777), - [sym_unary_wrapping_plus] = ACTIONS(4777), - [sym_unary_wrapping_minus] = ACTIONS(4777), - [sym__beginless_range_operator] = ACTIONS(4777), - [sym__regex_start] = ACTIONS(4777), - [sym__regular_if_keyword] = ACTIONS(4777), - [sym__regular_unless_keyword] = ACTIONS(4777), - [sym__regular_rescue_keyword] = ACTIONS(4777), - [sym__regular_ensure_keyword] = ACTIONS(4777), - [sym__string_literal_start] = ACTIONS(4777), - [sym__string_percent_literal_start] = ACTIONS(4777), - [sym__command_percent_literal_start] = ACTIONS(4777), - [sym__string_array_percent_literal_start] = ACTIONS(4777), - [sym__symbol_array_percent_literal_start] = ACTIONS(4777), - [sym__regex_percent_literal_start] = ACTIONS(4777), - [sym_heredoc_start] = ACTIONS(4777), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2051] = { - [sym_heredoc_body] = STATE(2051), - [sym_identifier] = ACTIONS(4593), - [anon_sym_SEMI] = ACTIONS(4595), - [anon_sym_LPAREN] = ACTIONS(4595), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4593), - [sym_true] = ACTIONS(4593), - [sym_false] = ACTIONS(4593), - [aux_sym_integer_token2] = ACTIONS(4593), - [aux_sym_float_token2] = ACTIONS(4595), - [anon_sym_SQUOTE] = ACTIONS(4595), - [sym_operator_symbol] = ACTIONS(4595), - [sym_unquoted_symbol] = ACTIONS(4595), - [anon_sym_COLON_DQUOTE] = ACTIONS(4595), - [anon_sym_BQUOTE] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4595), - [anon_sym_COMMA] = ACTIONS(4595), - [anon_sym_DASH_GT] = ACTIONS(4595), - [anon_sym_annotation] = ACTIONS(4593), - [anon_sym_end] = ACTIONS(4593), - [anon_sym_AT_LBRACK] = ACTIONS(4595), - [anon_sym_private] = ACTIONS(4593), - [anon_sym_module] = ACTIONS(4593), - [anon_sym_abstract] = ACTIONS(4593), - [anon_sym_class] = ACTIONS(4593), - [anon_sym_struct] = ACTIONS(4593), - [anon_sym_enum] = ACTIONS(4593), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_BANG] = ACTIONS(4595), - [anon_sym_TILDE] = ACTIONS(4595), - [anon_sym_def] = ACTIONS(4593), - [anon_sym_protected] = ACTIONS(4593), - [anon_sym_include] = ACTIONS(4593), - [anon_sym_extend] = ACTIONS(4593), - [anon_sym_forall] = ACTIONS(4593), - [anon_sym_return] = ACTIONS(4593), - [anon_sym_next] = ACTIONS(4593), - [anon_sym_break] = ACTIONS(4593), - [anon_sym_with] = ACTIONS(4593), - [anon_sym_yield] = ACTIONS(4593), - [anon_sym_typeof] = ACTIONS(4593), - [anon_sym_sizeof] = ACTIONS(4593), - [anon_sym_instance_sizeof] = ACTIONS(4593), - [anon_sym_offsetof] = ACTIONS(4593), - [sym__constant_segment] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4595), - [anon_sym___LINE__] = ACTIONS(4593), - [anon_sym___END_LINE__] = ACTIONS(4593), - [anon_sym___FILE__] = ACTIONS(4593), - [anon_sym___DIR__] = ACTIONS(4593), - [sym_special_variable] = ACTIONS(4595), - [sym_identifier_method_call] = ACTIONS(4595), - [sym_instance_var] = ACTIONS(4595), - [sym_class_var] = ACTIONS(4595), - [sym_self] = ACTIONS(4593), - [anon_sym_alias] = ACTIONS(4593), - [anon_sym_begin] = ACTIONS(4593), - [anon_sym_while] = ACTIONS(4593), - [anon_sym_until] = ACTIONS(4593), - [anon_sym_else] = ACTIONS(4593), - [anon_sym_require] = ACTIONS(4593), - [anon_sym_case] = ACTIONS(4593), - [sym__line_break] = ACTIONS(4595), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4595), - [sym__start_of_named_tuple] = ACTIONS(4595), - [sym_unary_plus] = ACTIONS(4595), - [sym_unary_minus] = ACTIONS(4595), - [sym_unary_wrapping_plus] = ACTIONS(4595), - [sym_unary_wrapping_minus] = ACTIONS(4595), - [sym__beginless_range_operator] = ACTIONS(4595), - [sym__regex_start] = ACTIONS(4595), - [sym__regular_if_keyword] = ACTIONS(4595), - [sym__regular_unless_keyword] = ACTIONS(4595), - [sym__regular_rescue_keyword] = ACTIONS(4595), - [sym__regular_ensure_keyword] = ACTIONS(4595), - [sym__string_literal_start] = ACTIONS(4595), - [sym__string_percent_literal_start] = ACTIONS(4595), - [sym__command_percent_literal_start] = ACTIONS(4595), - [sym__string_array_percent_literal_start] = ACTIONS(4595), - [sym__symbol_array_percent_literal_start] = ACTIONS(4595), - [sym__regex_percent_literal_start] = ACTIONS(4595), - [sym_heredoc_start] = ACTIONS(4595), + [anon_sym___LINE__] = ACTIONS(4594), + [anon_sym___END_LINE__] = ACTIONS(4594), + [anon_sym___FILE__] = ACTIONS(4594), + [anon_sym___DIR__] = ACTIONS(4594), + [sym_special_variable] = ACTIONS(4596), + [sym_identifier_method_call] = ACTIONS(4596), + [sym_instance_var] = ACTIONS(4596), + [sym_class_var] = ACTIONS(4596), + [sym_self] = ACTIONS(4594), + [anon_sym_LPAREN2] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_alias] = ACTIONS(4594), + [anon_sym_begin] = ACTIONS(4594), + [anon_sym_while] = ACTIONS(4594), + [anon_sym_until] = ACTIONS(4594), + [anon_sym_require] = ACTIONS(4594), + [anon_sym_case] = ACTIONS(4594), + [anon_sym_select] = ACTIONS(4594), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4596), + [sym__start_of_named_tuple] = ACTIONS(4596), + [sym_unary_plus] = ACTIONS(4596), + [sym_unary_minus] = ACTIONS(4596), + [sym_unary_wrapping_plus] = ACTIONS(4596), + [sym_unary_wrapping_minus] = ACTIONS(4596), + [sym__beginless_range_operator] = ACTIONS(4596), + [sym__regex_start] = ACTIONS(4596), + [sym__regular_if_keyword] = ACTIONS(4596), + [sym__regular_unless_keyword] = ACTIONS(4596), + [sym__string_literal_start] = ACTIONS(4596), + [sym__string_percent_literal_start] = ACTIONS(4596), + [sym__command_percent_literal_start] = ACTIONS(4596), + [sym__string_array_percent_literal_start] = ACTIONS(4596), + [sym__symbol_array_percent_literal_start] = ACTIONS(4596), + [sym__regex_percent_literal_start] = ACTIONS(4596), + [sym_heredoc_start] = ACTIONS(4596), [sym__heredoc_body_start] = ACTIONS(7), }, - [2052] = { - [sym_heredoc_body] = STATE(2052), - [sym_identifier] = ACTIONS(4561), - [anon_sym_SEMI] = ACTIONS(4563), - [anon_sym_LPAREN] = ACTIONS(4561), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4561), - [sym_true] = ACTIONS(4561), - [sym_false] = ACTIONS(4561), - [aux_sym_integer_token2] = ACTIONS(4561), - [aux_sym_float_token2] = ACTIONS(4563), - [anon_sym_SQUOTE] = ACTIONS(4563), - [sym_operator_symbol] = ACTIONS(4563), - [sym_unquoted_symbol] = ACTIONS(4563), - [anon_sym_COLON_DQUOTE] = ACTIONS(4563), - [anon_sym_BQUOTE] = ACTIONS(4563), - [anon_sym_LBRACK] = ACTIONS(4563), - [anon_sym_COMMA] = ACTIONS(4563), - [anon_sym_DASH_GT] = ACTIONS(4563), - [anon_sym_annotation] = ACTIONS(4561), - [anon_sym_end] = ACTIONS(4561), - [anon_sym_AT_LBRACK] = ACTIONS(4563), - [anon_sym_private] = ACTIONS(4561), - [anon_sym_module] = ACTIONS(4561), - [anon_sym_abstract] = ACTIONS(4561), - [anon_sym_class] = ACTIONS(4561), - [anon_sym_LT] = ACTIONS(4563), - [anon_sym_struct] = ACTIONS(4561), - [anon_sym_enum] = ACTIONS(4561), - [anon_sym_STAR] = ACTIONS(4563), - [anon_sym_PIPE] = ACTIONS(4563), - [anon_sym_BANG] = ACTIONS(4563), - [anon_sym_TILDE] = ACTIONS(4563), - [anon_sym_def] = ACTIONS(4561), - [anon_sym_DOT] = ACTIONS(4563), - [anon_sym_protected] = ACTIONS(4561), - [anon_sym_include] = ACTIONS(4561), - [anon_sym_extend] = ACTIONS(4561), - [anon_sym_return] = ACTIONS(4561), - [anon_sym_next] = ACTIONS(4561), - [anon_sym_break] = ACTIONS(4561), - [anon_sym_with] = ACTIONS(4561), - [anon_sym_yield] = ACTIONS(4561), - [anon_sym_typeof] = ACTIONS(4561), - [anon_sym_sizeof] = ACTIONS(4561), - [anon_sym_instance_sizeof] = ACTIONS(4561), - [anon_sym_offsetof] = ACTIONS(4561), - [sym__constant_segment] = ACTIONS(4563), - [anon_sym_COLON_COLON] = ACTIONS(4563), - [anon_sym___LINE__] = ACTIONS(4561), - [anon_sym___END_LINE__] = ACTIONS(4561), - [anon_sym___FILE__] = ACTIONS(4561), - [anon_sym___DIR__] = ACTIONS(4561), - [sym_special_variable] = ACTIONS(4563), - [sym_identifier_method_call] = ACTIONS(4563), - [sym_instance_var] = ACTIONS(4563), - [sym_class_var] = ACTIONS(4563), - [sym_self] = ACTIONS(4561), - [anon_sym_LPAREN2] = ACTIONS(4563), - [anon_sym_QMARK] = ACTIONS(4563), - [anon_sym_alias] = ACTIONS(4561), - [anon_sym_begin] = ACTIONS(4561), - [anon_sym_while] = ACTIONS(4561), - [anon_sym_until] = ACTIONS(4561), - [anon_sym_require] = ACTIONS(4561), - [anon_sym_case] = ACTIONS(4561), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4563), - [sym__start_of_named_tuple] = ACTIONS(4563), - [sym_unary_plus] = ACTIONS(4563), - [sym_unary_minus] = ACTIONS(4563), - [sym_unary_wrapping_plus] = ACTIONS(4563), - [sym_unary_wrapping_minus] = ACTIONS(4563), - [sym__beginless_range_operator] = ACTIONS(4563), - [sym__regex_start] = ACTIONS(4563), - [sym__regular_if_keyword] = ACTIONS(4563), - [sym__regular_unless_keyword] = ACTIONS(4563), - [sym__string_literal_start] = ACTIONS(4563), - [sym__string_percent_literal_start] = ACTIONS(4563), - [sym__command_percent_literal_start] = ACTIONS(4563), - [sym__string_array_percent_literal_start] = ACTIONS(4563), - [sym__symbol_array_percent_literal_start] = ACTIONS(4563), - [sym__regex_percent_literal_start] = ACTIONS(4563), - [sym_heredoc_start] = ACTIONS(4563), + [2039] = { + [sym__terminator] = STATE(2120), + [sym_heredoc_body] = STATE(2039), + [sym_forall] = STATE(2065), + [sym_identifier] = ACTIONS(4779), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4781), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4779), + [sym_true] = ACTIONS(4779), + [sym_false] = ACTIONS(4779), + [aux_sym_integer_token2] = ACTIONS(4779), + [aux_sym_float_token2] = ACTIONS(4781), + [anon_sym_SQUOTE] = ACTIONS(4781), + [sym_operator_symbol] = ACTIONS(4781), + [sym_unquoted_symbol] = ACTIONS(4781), + [anon_sym_COLON_DQUOTE] = ACTIONS(4781), + [anon_sym_BQUOTE] = ACTIONS(4781), + [anon_sym_LBRACK] = ACTIONS(4781), + [anon_sym_DASH_GT] = ACTIONS(4781), + [anon_sym_annotation] = ACTIONS(4779), + [anon_sym_end] = ACTIONS(4779), + [anon_sym_AT_LBRACK] = ACTIONS(4781), + [anon_sym_private] = ACTIONS(4779), + [anon_sym_module] = ACTIONS(4779), + [anon_sym_abstract] = ACTIONS(4779), + [anon_sym_class] = ACTIONS(4779), + [anon_sym_struct] = ACTIONS(4779), + [anon_sym_enum] = ACTIONS(4779), + [anon_sym_STAR] = ACTIONS(4781), + [anon_sym_BANG] = ACTIONS(4781), + [anon_sym_TILDE] = ACTIONS(4781), + [anon_sym_def] = ACTIONS(4779), + [anon_sym_protected] = ACTIONS(4779), + [anon_sym_include] = ACTIONS(4779), + [anon_sym_extend] = ACTIONS(4779), + [anon_sym_forall] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4779), + [anon_sym_next] = ACTIONS(4779), + [anon_sym_break] = ACTIONS(4779), + [anon_sym_with] = ACTIONS(4779), + [anon_sym_yield] = ACTIONS(4779), + [anon_sym_typeof] = ACTIONS(4779), + [anon_sym_sizeof] = ACTIONS(4779), + [anon_sym_instance_sizeof] = ACTIONS(4779), + [anon_sym_offsetof] = ACTIONS(4779), + [sym__constant_segment] = ACTIONS(4781), + [anon_sym_COLON_COLON] = ACTIONS(4781), + [anon_sym___LINE__] = ACTIONS(4779), + [anon_sym___END_LINE__] = ACTIONS(4779), + [anon_sym___FILE__] = ACTIONS(4779), + [anon_sym___DIR__] = ACTIONS(4779), + [sym_special_variable] = ACTIONS(4781), + [sym_identifier_method_call] = ACTIONS(4781), + [sym_instance_var] = ACTIONS(4781), + [sym_class_var] = ACTIONS(4781), + [sym_self] = ACTIONS(4779), + [anon_sym_alias] = ACTIONS(4779), + [anon_sym_begin] = ACTIONS(4779), + [anon_sym_while] = ACTIONS(4779), + [anon_sym_until] = ACTIONS(4779), + [anon_sym_else] = ACTIONS(4779), + [anon_sym_require] = ACTIONS(4779), + [anon_sym_case] = ACTIONS(4779), + [anon_sym_select] = ACTIONS(4779), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4781), + [sym__start_of_named_tuple] = ACTIONS(4781), + [sym_unary_plus] = ACTIONS(4781), + [sym_unary_minus] = ACTIONS(4781), + [sym_unary_wrapping_plus] = ACTIONS(4781), + [sym_unary_wrapping_minus] = ACTIONS(4781), + [sym__beginless_range_operator] = ACTIONS(4781), + [sym__regex_start] = ACTIONS(4781), + [sym__regular_if_keyword] = ACTIONS(4781), + [sym__regular_unless_keyword] = ACTIONS(4781), + [sym__regular_rescue_keyword] = ACTIONS(4781), + [sym__regular_ensure_keyword] = ACTIONS(4781), + [sym__string_literal_start] = ACTIONS(4781), + [sym__string_percent_literal_start] = ACTIONS(4781), + [sym__command_percent_literal_start] = ACTIONS(4781), + [sym__string_array_percent_literal_start] = ACTIONS(4781), + [sym__symbol_array_percent_literal_start] = ACTIONS(4781), + [sym__regex_percent_literal_start] = ACTIONS(4781), + [sym_heredoc_start] = ACTIONS(4781), [sym__heredoc_body_start] = ACTIONS(7), }, - [2053] = { - [sym_heredoc_body] = STATE(2053), - [sym_identifier] = ACTIONS(4305), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_LPAREN] = ACTIONS(4303), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4305), - [sym_true] = ACTIONS(4305), - [sym_false] = ACTIONS(4305), - [aux_sym_integer_token2] = ACTIONS(4305), - [aux_sym_float_token2] = ACTIONS(4303), - [anon_sym_SQUOTE] = ACTIONS(4303), - [sym_operator_symbol] = ACTIONS(4303), - [sym_unquoted_symbol] = ACTIONS(4303), - [anon_sym_COLON_DQUOTE] = ACTIONS(4303), - [anon_sym_BQUOTE] = ACTIONS(4303), - [anon_sym_LBRACK] = ACTIONS(4303), - [anon_sym_DASH_GT] = ACTIONS(4303), - [anon_sym_annotation] = ACTIONS(4305), - [anon_sym_end] = ACTIONS(4305), - [anon_sym_AT_LBRACK] = ACTIONS(4303), - [anon_sym_private] = ACTIONS(4305), - [anon_sym_module] = ACTIONS(4305), - [anon_sym_abstract] = ACTIONS(4305), - [anon_sym_class] = ACTIONS(4305), - [anon_sym_struct] = ACTIONS(4305), - [anon_sym_enum] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4303), - [anon_sym_BANG] = ACTIONS(4303), - [anon_sym_TILDE] = ACTIONS(4303), - [anon_sym_def] = ACTIONS(4305), - [aux_sym__base_method_def_token1] = ACTIONS(4303), - [anon_sym_protected] = ACTIONS(4305), - [anon_sym_include] = ACTIONS(4305), - [anon_sym_extend] = ACTIONS(4305), - [anon_sym_forall] = ACTIONS(4305), - [anon_sym_return] = ACTIONS(4305), - [anon_sym_next] = ACTIONS(4305), - [anon_sym_break] = ACTIONS(4305), - [anon_sym_with] = ACTIONS(4305), - [anon_sym_yield] = ACTIONS(4305), - [anon_sym_typeof] = ACTIONS(4305), - [anon_sym_sizeof] = ACTIONS(4305), - [anon_sym_instance_sizeof] = ACTIONS(4305), - [anon_sym_offsetof] = ACTIONS(4305), - [sym__constant_segment] = ACTIONS(4303), - [anon_sym_COLON_COLON] = ACTIONS(4303), - [anon_sym___LINE__] = ACTIONS(4305), - [anon_sym___END_LINE__] = ACTIONS(4305), - [anon_sym___FILE__] = ACTIONS(4305), - [anon_sym___DIR__] = ACTIONS(4305), - [sym_special_variable] = ACTIONS(4303), - [sym_identifier_method_call] = ACTIONS(4303), - [sym_instance_var] = ACTIONS(4303), - [sym_class_var] = ACTIONS(4303), - [sym_self] = ACTIONS(4305), - [anon_sym_alias] = ACTIONS(4305), - [anon_sym_begin] = ACTIONS(4305), - [anon_sym_while] = ACTIONS(4305), - [anon_sym_until] = ACTIONS(4305), - [anon_sym_else] = ACTIONS(4305), - [anon_sym_require] = ACTIONS(4305), - [anon_sym_case] = ACTIONS(4305), - [sym__line_break] = ACTIONS(4303), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4303), - [sym__start_of_named_tuple] = ACTIONS(4303), - [sym_unary_plus] = ACTIONS(4303), - [sym_unary_minus] = ACTIONS(4303), - [sym_unary_wrapping_plus] = ACTIONS(4303), - [sym_unary_wrapping_minus] = ACTIONS(4303), - [sym__beginless_range_operator] = ACTIONS(4303), - [sym__regex_start] = ACTIONS(4303), - [sym__regular_if_keyword] = ACTIONS(4303), - [sym__regular_unless_keyword] = ACTIONS(4303), - [sym__regular_rescue_keyword] = ACTIONS(4303), - [sym__regular_ensure_keyword] = ACTIONS(4303), - [sym__string_literal_start] = ACTIONS(4303), - [sym__string_percent_literal_start] = ACTIONS(4303), - [sym__command_percent_literal_start] = ACTIONS(4303), - [sym__string_array_percent_literal_start] = ACTIONS(4303), - [sym__symbol_array_percent_literal_start] = ACTIONS(4303), - [sym__regex_percent_literal_start] = ACTIONS(4303), - [sym_heredoc_start] = ACTIONS(4303), + [2040] = { + [sym_heredoc_body] = STATE(2040), + [aux_sym_constant_repeat1] = STATE(2035), + [sym_identifier] = ACTIONS(4590), + [anon_sym_SEMI] = ACTIONS(4592), + [anon_sym_LPAREN] = ACTIONS(4590), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4590), + [sym_true] = ACTIONS(4590), + [sym_false] = ACTIONS(4590), + [aux_sym_integer_token2] = ACTIONS(4590), + [aux_sym_float_token2] = ACTIONS(4592), + [anon_sym_SQUOTE] = ACTIONS(4592), + [sym_operator_symbol] = ACTIONS(4592), + [sym_unquoted_symbol] = ACTIONS(4592), + [anon_sym_COLON_DQUOTE] = ACTIONS(4592), + [anon_sym_BQUOTE] = ACTIONS(4592), + [anon_sym_LBRACK] = ACTIONS(4592), + [anon_sym_COMMA] = ACTIONS(4592), + [anon_sym_DASH_GT] = ACTIONS(4592), + [anon_sym_annotation] = ACTIONS(4590), + [anon_sym_end] = ACTIONS(4590), + [anon_sym_AT_LBRACK] = ACTIONS(4592), + [anon_sym_private] = ACTIONS(4590), + [anon_sym_module] = ACTIONS(4590), + [anon_sym_abstract] = ACTIONS(4590), + [anon_sym_class] = ACTIONS(4590), + [anon_sym_LT] = ACTIONS(4592), + [anon_sym_struct] = ACTIONS(4590), + [anon_sym_enum] = ACTIONS(4590), + [anon_sym_STAR] = ACTIONS(4592), + [anon_sym_PIPE] = ACTIONS(4592), + [anon_sym_BANG] = ACTIONS(4592), + [anon_sym_TILDE] = ACTIONS(4592), + [anon_sym_def] = ACTIONS(4590), + [anon_sym_DOT] = ACTIONS(4592), + [anon_sym_protected] = ACTIONS(4590), + [anon_sym_include] = ACTIONS(4590), + [anon_sym_extend] = ACTIONS(4590), + [anon_sym_return] = ACTIONS(4590), + [anon_sym_next] = ACTIONS(4590), + [anon_sym_break] = ACTIONS(4590), + [anon_sym_with] = ACTIONS(4590), + [anon_sym_yield] = ACTIONS(4590), + [anon_sym_typeof] = ACTIONS(4590), + [anon_sym_sizeof] = ACTIONS(4590), + [anon_sym_instance_sizeof] = ACTIONS(4590), + [anon_sym_offsetof] = ACTIONS(4590), + [sym__constant_segment] = ACTIONS(4592), + [anon_sym_COLON_COLON] = ACTIONS(4777), + [anon_sym___LINE__] = ACTIONS(4590), + [anon_sym___END_LINE__] = ACTIONS(4590), + [anon_sym___FILE__] = ACTIONS(4590), + [anon_sym___DIR__] = ACTIONS(4590), + [sym_special_variable] = ACTIONS(4592), + [sym_identifier_method_call] = ACTIONS(4592), + [sym_instance_var] = ACTIONS(4592), + [sym_class_var] = ACTIONS(4592), + [sym_self] = ACTIONS(4590), + [anon_sym_LPAREN2] = ACTIONS(4592), + [anon_sym_QMARK] = ACTIONS(4592), + [anon_sym_alias] = ACTIONS(4590), + [anon_sym_begin] = ACTIONS(4590), + [anon_sym_while] = ACTIONS(4590), + [anon_sym_until] = ACTIONS(4590), + [anon_sym_require] = ACTIONS(4590), + [anon_sym_case] = ACTIONS(4590), + [anon_sym_select] = ACTIONS(4590), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4592), + [sym__start_of_named_tuple] = ACTIONS(4592), + [sym_unary_plus] = ACTIONS(4592), + [sym_unary_minus] = ACTIONS(4592), + [sym_unary_wrapping_plus] = ACTIONS(4592), + [sym_unary_wrapping_minus] = ACTIONS(4592), + [sym__beginless_range_operator] = ACTIONS(4592), + [sym__regex_start] = ACTIONS(4592), + [sym__regular_if_keyword] = ACTIONS(4592), + [sym__regular_unless_keyword] = ACTIONS(4592), + [sym__string_literal_start] = ACTIONS(4592), + [sym__string_percent_literal_start] = ACTIONS(4592), + [sym__command_percent_literal_start] = ACTIONS(4592), + [sym__string_array_percent_literal_start] = ACTIONS(4592), + [sym__symbol_array_percent_literal_start] = ACTIONS(4592), + [sym__regex_percent_literal_start] = ACTIONS(4592), + [sym_heredoc_start] = ACTIONS(4592), [sym__heredoc_body_start] = ACTIONS(7), }, - [2054] = { - [sym_heredoc_body] = STATE(2054), - [aux_sym_forall_repeat1] = STATE(2054), - [sym_identifier] = ACTIONS(4781), - [anon_sym_SEMI] = ACTIONS(4783), - [anon_sym_LPAREN] = ACTIONS(4783), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4781), - [sym_true] = ACTIONS(4781), - [sym_false] = ACTIONS(4781), - [aux_sym_integer_token2] = ACTIONS(4781), - [aux_sym_float_token2] = ACTIONS(4783), - [anon_sym_SQUOTE] = ACTIONS(4783), - [sym_operator_symbol] = ACTIONS(4783), - [sym_unquoted_symbol] = ACTIONS(4783), - [anon_sym_COLON_DQUOTE] = ACTIONS(4783), - [anon_sym_BQUOTE] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4783), - [anon_sym_COMMA] = ACTIONS(4785), - [anon_sym_DASH_GT] = ACTIONS(4783), - [anon_sym_annotation] = ACTIONS(4781), - [anon_sym_end] = ACTIONS(4781), - [anon_sym_AT_LBRACK] = ACTIONS(4783), - [anon_sym_private] = ACTIONS(4781), - [anon_sym_module] = ACTIONS(4781), - [anon_sym_abstract] = ACTIONS(4781), - [anon_sym_class] = ACTIONS(4781), - [anon_sym_struct] = ACTIONS(4781), - [anon_sym_enum] = ACTIONS(4781), - [anon_sym_STAR] = ACTIONS(4783), - [anon_sym_BANG] = ACTIONS(4783), - [anon_sym_TILDE] = ACTIONS(4783), - [anon_sym_def] = ACTIONS(4781), - [anon_sym_protected] = ACTIONS(4781), - [anon_sym_include] = ACTIONS(4781), - [anon_sym_extend] = ACTIONS(4781), - [anon_sym_return] = ACTIONS(4781), - [anon_sym_next] = ACTIONS(4781), - [anon_sym_break] = ACTIONS(4781), - [anon_sym_with] = ACTIONS(4781), - [anon_sym_yield] = ACTIONS(4781), - [anon_sym_typeof] = ACTIONS(4781), - [anon_sym_sizeof] = ACTIONS(4781), - [anon_sym_instance_sizeof] = ACTIONS(4781), - [anon_sym_offsetof] = ACTIONS(4781), - [sym__constant_segment] = ACTIONS(4783), - [anon_sym_COLON_COLON] = ACTIONS(4783), - [anon_sym___LINE__] = ACTIONS(4781), - [anon_sym___END_LINE__] = ACTIONS(4781), - [anon_sym___FILE__] = ACTIONS(4781), - [anon_sym___DIR__] = ACTIONS(4781), - [sym_special_variable] = ACTIONS(4783), - [sym_identifier_method_call] = ACTIONS(4783), - [sym_instance_var] = ACTIONS(4783), - [sym_class_var] = ACTIONS(4783), - [sym_self] = ACTIONS(4781), - [anon_sym_alias] = ACTIONS(4781), - [anon_sym_begin] = ACTIONS(4781), - [anon_sym_while] = ACTIONS(4781), - [anon_sym_until] = ACTIONS(4781), - [anon_sym_else] = ACTIONS(4781), - [anon_sym_require] = ACTIONS(4781), - [anon_sym_case] = ACTIONS(4781), - [sym__line_break] = ACTIONS(4783), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4783), - [sym__start_of_named_tuple] = ACTIONS(4783), - [sym_unary_plus] = ACTIONS(4783), - [sym_unary_minus] = ACTIONS(4783), - [sym_unary_wrapping_plus] = ACTIONS(4783), - [sym_unary_wrapping_minus] = ACTIONS(4783), - [sym__beginless_range_operator] = ACTIONS(4783), - [sym__regex_start] = ACTIONS(4783), - [sym__regular_if_keyword] = ACTIONS(4783), - [sym__regular_unless_keyword] = ACTIONS(4783), - [sym__regular_rescue_keyword] = ACTIONS(4783), - [sym__regular_ensure_keyword] = ACTIONS(4783), - [sym__string_literal_start] = ACTIONS(4783), - [sym__string_percent_literal_start] = ACTIONS(4783), - [sym__command_percent_literal_start] = ACTIONS(4783), - [sym__string_array_percent_literal_start] = ACTIONS(4783), - [sym__symbol_array_percent_literal_start] = ACTIONS(4783), - [sym__regex_percent_literal_start] = ACTIONS(4783), - [sym_heredoc_start] = ACTIONS(4783), + [2041] = { + [sym_heredoc_body] = STATE(2041), + [aux_sym_constant_repeat1] = STATE(2047), + [sym_identifier] = ACTIONS(4584), + [anon_sym_SEMI] = ACTIONS(4586), + [anon_sym_LPAREN] = ACTIONS(4584), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4584), + [sym_true] = ACTIONS(4584), + [sym_false] = ACTIONS(4584), + [aux_sym_integer_token2] = ACTIONS(4584), + [aux_sym_float_token2] = ACTIONS(4586), + [anon_sym_SQUOTE] = ACTIONS(4586), + [sym_operator_symbol] = ACTIONS(4586), + [sym_unquoted_symbol] = ACTIONS(4586), + [anon_sym_COLON_DQUOTE] = ACTIONS(4586), + [anon_sym_BQUOTE] = ACTIONS(4586), + [anon_sym_LBRACK] = ACTIONS(4586), + [anon_sym_COMMA] = ACTIONS(4586), + [anon_sym_DASH_GT] = ACTIONS(4586), + [anon_sym_annotation] = ACTIONS(4584), + [anon_sym_end] = ACTIONS(4584), + [anon_sym_AT_LBRACK] = ACTIONS(4586), + [anon_sym_private] = ACTIONS(4584), + [anon_sym_module] = ACTIONS(4584), + [anon_sym_abstract] = ACTIONS(4584), + [anon_sym_class] = ACTIONS(4584), + [anon_sym_LT] = ACTIONS(4586), + [anon_sym_struct] = ACTIONS(4584), + [anon_sym_enum] = ACTIONS(4584), + [anon_sym_STAR] = ACTIONS(4586), + [anon_sym_PIPE] = ACTIONS(4586), + [anon_sym_BANG] = ACTIONS(4586), + [anon_sym_TILDE] = ACTIONS(4586), + [anon_sym_def] = ACTIONS(4584), + [anon_sym_DOT] = ACTIONS(4586), + [anon_sym_protected] = ACTIONS(4584), + [anon_sym_include] = ACTIONS(4584), + [anon_sym_extend] = ACTIONS(4584), + [anon_sym_return] = ACTIONS(4584), + [anon_sym_next] = ACTIONS(4584), + [anon_sym_break] = ACTIONS(4584), + [anon_sym_with] = ACTIONS(4584), + [anon_sym_yield] = ACTIONS(4584), + [anon_sym_typeof] = ACTIONS(4584), + [anon_sym_sizeof] = ACTIONS(4584), + [anon_sym_instance_sizeof] = ACTIONS(4584), + [anon_sym_offsetof] = ACTIONS(4584), + [sym__constant_segment] = ACTIONS(4586), + [anon_sym_COLON_COLON] = ACTIONS(4777), + [anon_sym___LINE__] = ACTIONS(4584), + [anon_sym___END_LINE__] = ACTIONS(4584), + [anon_sym___FILE__] = ACTIONS(4584), + [anon_sym___DIR__] = ACTIONS(4584), + [sym_special_variable] = ACTIONS(4586), + [sym_identifier_method_call] = ACTIONS(4586), + [sym_instance_var] = ACTIONS(4586), + [sym_class_var] = ACTIONS(4586), + [sym_self] = ACTIONS(4584), + [anon_sym_LPAREN2] = ACTIONS(4586), + [anon_sym_QMARK] = ACTIONS(4586), + [anon_sym_alias] = ACTIONS(4584), + [anon_sym_begin] = ACTIONS(4584), + [anon_sym_while] = ACTIONS(4584), + [anon_sym_until] = ACTIONS(4584), + [anon_sym_require] = ACTIONS(4584), + [anon_sym_case] = ACTIONS(4584), + [anon_sym_select] = ACTIONS(4584), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4586), + [sym__start_of_named_tuple] = ACTIONS(4586), + [sym_unary_plus] = ACTIONS(4586), + [sym_unary_minus] = ACTIONS(4586), + [sym_unary_wrapping_plus] = ACTIONS(4586), + [sym_unary_wrapping_minus] = ACTIONS(4586), + [sym__beginless_range_operator] = ACTIONS(4586), + [sym__regex_start] = ACTIONS(4586), + [sym__regular_if_keyword] = ACTIONS(4586), + [sym__regular_unless_keyword] = ACTIONS(4586), + [sym__string_literal_start] = ACTIONS(4586), + [sym__string_percent_literal_start] = ACTIONS(4586), + [sym__command_percent_literal_start] = ACTIONS(4586), + [sym__string_array_percent_literal_start] = ACTIONS(4586), + [sym__symbol_array_percent_literal_start] = ACTIONS(4586), + [sym__regex_percent_literal_start] = ACTIONS(4586), + [sym_heredoc_start] = ACTIONS(4586), [sym__heredoc_body_start] = ACTIONS(7), }, - [2055] = { - [sym_heredoc_body] = STATE(2055), - [aux_sym_forall_repeat1] = STATE(2050), - [sym_identifier] = ACTIONS(4788), - [anon_sym_SEMI] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(4790), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4788), - [sym_true] = ACTIONS(4788), - [sym_false] = ACTIONS(4788), - [aux_sym_integer_token2] = ACTIONS(4788), - [aux_sym_float_token2] = ACTIONS(4790), - [anon_sym_SQUOTE] = ACTIONS(4790), - [sym_operator_symbol] = ACTIONS(4790), - [sym_unquoted_symbol] = ACTIONS(4790), - [anon_sym_COLON_DQUOTE] = ACTIONS(4790), - [anon_sym_BQUOTE] = ACTIONS(4790), - [anon_sym_LBRACK] = ACTIONS(4790), - [anon_sym_COMMA] = ACTIONS(4779), - [anon_sym_DASH_GT] = ACTIONS(4790), - [anon_sym_annotation] = ACTIONS(4788), - [anon_sym_end] = ACTIONS(4788), - [anon_sym_AT_LBRACK] = ACTIONS(4790), - [anon_sym_private] = ACTIONS(4788), - [anon_sym_module] = ACTIONS(4788), - [anon_sym_abstract] = ACTIONS(4788), - [anon_sym_class] = ACTIONS(4788), - [anon_sym_struct] = ACTIONS(4788), - [anon_sym_enum] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_BANG] = ACTIONS(4790), - [anon_sym_TILDE] = ACTIONS(4790), - [anon_sym_def] = ACTIONS(4788), - [anon_sym_protected] = ACTIONS(4788), - [anon_sym_include] = ACTIONS(4788), - [anon_sym_extend] = ACTIONS(4788), - [anon_sym_return] = ACTIONS(4788), - [anon_sym_next] = ACTIONS(4788), - [anon_sym_break] = ACTIONS(4788), - [anon_sym_with] = ACTIONS(4788), - [anon_sym_yield] = ACTIONS(4788), - [anon_sym_typeof] = ACTIONS(4788), - [anon_sym_sizeof] = ACTIONS(4788), - [anon_sym_instance_sizeof] = ACTIONS(4788), - [anon_sym_offsetof] = ACTIONS(4788), - [sym__constant_segment] = ACTIONS(4790), - [anon_sym_COLON_COLON] = ACTIONS(4790), - [anon_sym___LINE__] = ACTIONS(4788), - [anon_sym___END_LINE__] = ACTIONS(4788), - [anon_sym___FILE__] = ACTIONS(4788), - [anon_sym___DIR__] = ACTIONS(4788), - [sym_special_variable] = ACTIONS(4790), - [sym_identifier_method_call] = ACTIONS(4790), - [sym_instance_var] = ACTIONS(4790), - [sym_class_var] = ACTIONS(4790), - [sym_self] = ACTIONS(4788), - [anon_sym_alias] = ACTIONS(4788), - [anon_sym_begin] = ACTIONS(4788), - [anon_sym_while] = ACTIONS(4788), - [anon_sym_until] = ACTIONS(4788), - [anon_sym_else] = ACTIONS(4788), - [anon_sym_require] = ACTIONS(4788), - [anon_sym_case] = ACTIONS(4788), - [sym__line_break] = ACTIONS(4790), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4790), - [sym__start_of_named_tuple] = ACTIONS(4790), - [sym_unary_plus] = ACTIONS(4790), - [sym_unary_minus] = ACTIONS(4790), - [sym_unary_wrapping_plus] = ACTIONS(4790), - [sym_unary_wrapping_minus] = ACTIONS(4790), - [sym__beginless_range_operator] = ACTIONS(4790), - [sym__regex_start] = ACTIONS(4790), - [sym__regular_if_keyword] = ACTIONS(4790), - [sym__regular_unless_keyword] = ACTIONS(4790), - [sym__regular_rescue_keyword] = ACTIONS(4790), - [sym__regular_ensure_keyword] = ACTIONS(4790), - [sym__string_literal_start] = ACTIONS(4790), - [sym__string_percent_literal_start] = ACTIONS(4790), - [sym__command_percent_literal_start] = ACTIONS(4790), - [sym__string_array_percent_literal_start] = ACTIONS(4790), - [sym__symbol_array_percent_literal_start] = ACTIONS(4790), - [sym__regex_percent_literal_start] = ACTIONS(4790), - [sym_heredoc_start] = ACTIONS(4790), + [2042] = { + [sym_heredoc_body] = STATE(2042), + [aux_sym_proc_type_repeat1] = STATE(10296), + [sym_identifier] = ACTIONS(4783), + [anon_sym_SEMI] = ACTIONS(4785), + [anon_sym_LPAREN] = ACTIONS(4785), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4783), + [sym_true] = ACTIONS(4783), + [sym_false] = ACTIONS(4783), + [aux_sym_integer_token2] = ACTIONS(4783), + [aux_sym_float_token2] = ACTIONS(4785), + [anon_sym_SQUOTE] = ACTIONS(4785), + [sym_operator_symbol] = ACTIONS(4785), + [sym_unquoted_symbol] = ACTIONS(4785), + [anon_sym_COLON_DQUOTE] = ACTIONS(4785), + [anon_sym_BQUOTE] = ACTIONS(4785), + [anon_sym_LBRACK] = ACTIONS(4785), + [anon_sym_COMMA] = ACTIONS(4787), + [anon_sym_DASH_GT] = ACTIONS(4789), + [anon_sym_annotation] = ACTIONS(4783), + [anon_sym_end] = ACTIONS(4783), + [anon_sym_AT_LBRACK] = ACTIONS(4785), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_module] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_class] = ACTIONS(4783), + [anon_sym_struct] = ACTIONS(4783), + [anon_sym_enum] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_BANG] = ACTIONS(4785), + [anon_sym_TILDE] = ACTIONS(4785), + [anon_sym_def] = ACTIONS(4783), + [anon_sym_protected] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_extend] = ACTIONS(4783), + [anon_sym_forall] = ACTIONS(4783), + [anon_sym_return] = ACTIONS(4783), + [anon_sym_next] = ACTIONS(4783), + [anon_sym_break] = ACTIONS(4783), + [anon_sym_with] = ACTIONS(4783), + [anon_sym_yield] = ACTIONS(4783), + [anon_sym_typeof] = ACTIONS(4783), + [anon_sym_sizeof] = ACTIONS(4783), + [anon_sym_instance_sizeof] = ACTIONS(4783), + [anon_sym_offsetof] = ACTIONS(4783), + [sym__constant_segment] = ACTIONS(4785), + [anon_sym_COLON_COLON] = ACTIONS(4785), + [anon_sym___LINE__] = ACTIONS(4783), + [anon_sym___END_LINE__] = ACTIONS(4783), + [anon_sym___FILE__] = ACTIONS(4783), + [anon_sym___DIR__] = ACTIONS(4783), + [sym_special_variable] = ACTIONS(4785), + [sym_identifier_method_call] = ACTIONS(4785), + [sym_instance_var] = ACTIONS(4785), + [sym_class_var] = ACTIONS(4785), + [sym_self] = ACTIONS(4783), + [anon_sym_alias] = ACTIONS(4783), + [anon_sym_begin] = ACTIONS(4783), + [anon_sym_while] = ACTIONS(4783), + [anon_sym_until] = ACTIONS(4783), + [anon_sym_else] = ACTIONS(4783), + [anon_sym_require] = ACTIONS(4783), + [anon_sym_case] = ACTIONS(4783), + [anon_sym_select] = ACTIONS(4783), + [sym__line_break] = ACTIONS(4785), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4785), + [sym__start_of_named_tuple] = ACTIONS(4785), + [sym_unary_plus] = ACTIONS(4785), + [sym_unary_minus] = ACTIONS(4785), + [sym_unary_wrapping_plus] = ACTIONS(4785), + [sym_unary_wrapping_minus] = ACTIONS(4785), + [sym__beginless_range_operator] = ACTIONS(4785), + [sym__regex_start] = ACTIONS(4785), + [sym__regular_if_keyword] = ACTIONS(4785), + [sym__regular_unless_keyword] = ACTIONS(4785), + [sym__regular_rescue_keyword] = ACTIONS(4785), + [sym__regular_ensure_keyword] = ACTIONS(4785), + [sym__string_literal_start] = ACTIONS(4785), + [sym__string_percent_literal_start] = ACTIONS(4785), + [sym__command_percent_literal_start] = ACTIONS(4785), + [sym__string_array_percent_literal_start] = ACTIONS(4785), + [sym__symbol_array_percent_literal_start] = ACTIONS(4785), + [sym__regex_percent_literal_start] = ACTIONS(4785), + [sym_heredoc_start] = ACTIONS(4785), [sym__heredoc_body_start] = ACTIONS(7), }, - [2056] = { - [sym__terminator] = STATE(2113), - [sym_heredoc_body] = STATE(2056), + [2043] = { + [sym__terminator] = STATE(2110), + [sym_heredoc_body] = STATE(2043), + [sym_forall] = STATE(2063), [sym_identifier] = ACTIONS(4792), - [anon_sym_SEMI] = ACTIONS(1409), + [anon_sym_SEMI] = ACTIONS(1429), [anon_sym_LPAREN] = ACTIONS(4794), [sym_comment] = ACTIONS(5), [sym_nil] = ACTIONS(4792), @@ -310467,6 +313542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(4792), [anon_sym_include] = ACTIONS(4792), [anon_sym_extend] = ACTIONS(4792), + [anon_sym_forall] = ACTIONS(4732), [anon_sym_return] = ACTIONS(4792), [anon_sym_next] = ACTIONS(4792), [anon_sym_break] = ACTIONS(4792), @@ -310494,7 +313570,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_else] = ACTIONS(4792), [anon_sym_require] = ACTIONS(4792), [anon_sym_case] = ACTIONS(4792), - [sym__line_break] = ACTIONS(1409), + [anon_sym_select] = ACTIONS(4792), + [sym__line_break] = ACTIONS(1429), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(4794), [sym__start_of_named_tuple] = ACTIONS(4794), @@ -310517,2382 +313594,2779 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4794), [sym__heredoc_body_start] = ACTIONS(7), }, - [2057] = { - [sym__terminator] = STATE(2110), - [sym_heredoc_body] = STATE(2057), - [sym_identifier] = ACTIONS(4796), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4798), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4796), - [sym_true] = ACTIONS(4796), - [sym_false] = ACTIONS(4796), - [aux_sym_integer_token2] = ACTIONS(4796), - [aux_sym_float_token2] = ACTIONS(4798), - [anon_sym_SQUOTE] = ACTIONS(4798), - [sym_operator_symbol] = ACTIONS(4798), - [sym_unquoted_symbol] = ACTIONS(4798), - [anon_sym_COLON_DQUOTE] = ACTIONS(4798), - [anon_sym_BQUOTE] = ACTIONS(4798), - [anon_sym_LBRACK] = ACTIONS(4798), - [anon_sym_DASH_GT] = ACTIONS(4798), - [anon_sym_annotation] = ACTIONS(4796), - [anon_sym_end] = ACTIONS(4796), - [anon_sym_AT_LBRACK] = ACTIONS(4798), - [anon_sym_private] = ACTIONS(4796), - [anon_sym_module] = ACTIONS(4796), - [anon_sym_abstract] = ACTIONS(4796), - [anon_sym_class] = ACTIONS(4796), - [anon_sym_struct] = ACTIONS(4796), - [anon_sym_enum] = ACTIONS(4796), - [anon_sym_STAR] = ACTIONS(4798), - [anon_sym_BANG] = ACTIONS(4798), - [anon_sym_TILDE] = ACTIONS(4798), - [anon_sym_def] = ACTIONS(4796), - [anon_sym_protected] = ACTIONS(4796), - [anon_sym_include] = ACTIONS(4796), - [anon_sym_extend] = ACTIONS(4796), - [anon_sym_return] = ACTIONS(4796), - [anon_sym_next] = ACTIONS(4796), - [anon_sym_break] = ACTIONS(4796), - [anon_sym_with] = ACTIONS(4796), - [anon_sym_yield] = ACTIONS(4796), - [anon_sym_typeof] = ACTIONS(4796), - [anon_sym_sizeof] = ACTIONS(4796), - [anon_sym_instance_sizeof] = ACTIONS(4796), - [anon_sym_offsetof] = ACTIONS(4796), - [sym__constant_segment] = ACTIONS(4798), - [anon_sym_COLON_COLON] = ACTIONS(4798), - [anon_sym___LINE__] = ACTIONS(4796), - [anon_sym___END_LINE__] = ACTIONS(4796), - [anon_sym___FILE__] = ACTIONS(4796), - [anon_sym___DIR__] = ACTIONS(4796), - [sym_special_variable] = ACTIONS(4798), - [sym_identifier_method_call] = ACTIONS(4798), - [sym_instance_var] = ACTIONS(4798), - [sym_class_var] = ACTIONS(4798), - [sym_self] = ACTIONS(4796), - [anon_sym_alias] = ACTIONS(4796), - [anon_sym_begin] = ACTIONS(4796), - [anon_sym_while] = ACTIONS(4796), - [anon_sym_until] = ACTIONS(4796), - [anon_sym_else] = ACTIONS(4796), - [anon_sym_require] = ACTIONS(4796), - [anon_sym_case] = ACTIONS(4796), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4798), - [sym__start_of_named_tuple] = ACTIONS(4798), - [sym_unary_plus] = ACTIONS(4798), - [sym_unary_minus] = ACTIONS(4798), - [sym_unary_wrapping_plus] = ACTIONS(4798), - [sym_unary_wrapping_minus] = ACTIONS(4798), - [sym__beginless_range_operator] = ACTIONS(4798), - [sym__regex_start] = ACTIONS(4798), - [sym__regular_if_keyword] = ACTIONS(4798), - [sym__regular_unless_keyword] = ACTIONS(4798), - [sym__regular_rescue_keyword] = ACTIONS(4798), - [sym__regular_ensure_keyword] = ACTIONS(4798), - [sym__string_literal_start] = ACTIONS(4798), - [sym__string_percent_literal_start] = ACTIONS(4798), - [sym__command_percent_literal_start] = ACTIONS(4798), - [sym__string_array_percent_literal_start] = ACTIONS(4798), - [sym__symbol_array_percent_literal_start] = ACTIONS(4798), - [sym__regex_percent_literal_start] = ACTIONS(4798), - [sym_heredoc_start] = ACTIONS(4798), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2058] = { - [sym__terminator] = STATE(2102), - [sym_heredoc_body] = STATE(2058), - [sym_identifier] = ACTIONS(4800), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4802), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4800), - [sym_true] = ACTIONS(4800), - [sym_false] = ACTIONS(4800), - [aux_sym_integer_token2] = ACTIONS(4800), - [aux_sym_float_token2] = ACTIONS(4802), - [anon_sym_SQUOTE] = ACTIONS(4802), - [sym_operator_symbol] = ACTIONS(4802), - [sym_unquoted_symbol] = ACTIONS(4802), - [anon_sym_COLON_DQUOTE] = ACTIONS(4802), - [anon_sym_BQUOTE] = ACTIONS(4802), - [anon_sym_LBRACK] = ACTIONS(4802), - [anon_sym_DASH_GT] = ACTIONS(4802), - [anon_sym_annotation] = ACTIONS(4800), - [anon_sym_end] = ACTIONS(4800), - [anon_sym_AT_LBRACK] = ACTIONS(4802), - [anon_sym_private] = ACTIONS(4800), - [anon_sym_module] = ACTIONS(4800), - [anon_sym_abstract] = ACTIONS(4800), - [anon_sym_class] = ACTIONS(4800), - [anon_sym_struct] = ACTIONS(4800), - [anon_sym_enum] = ACTIONS(4800), - [anon_sym_STAR] = ACTIONS(4802), - [anon_sym_BANG] = ACTIONS(4802), - [anon_sym_TILDE] = ACTIONS(4802), - [anon_sym_def] = ACTIONS(4800), - [anon_sym_protected] = ACTIONS(4800), - [anon_sym_include] = ACTIONS(4800), - [anon_sym_extend] = ACTIONS(4800), - [anon_sym_return] = ACTIONS(4800), - [anon_sym_next] = ACTIONS(4800), - [anon_sym_break] = ACTIONS(4800), - [anon_sym_with] = ACTIONS(4800), - [anon_sym_yield] = ACTIONS(4800), - [anon_sym_typeof] = ACTIONS(4800), - [anon_sym_sizeof] = ACTIONS(4800), - [anon_sym_instance_sizeof] = ACTIONS(4800), - [anon_sym_offsetof] = ACTIONS(4800), - [sym__constant_segment] = ACTIONS(4802), - [anon_sym_COLON_COLON] = ACTIONS(4802), - [anon_sym___LINE__] = ACTIONS(4800), - [anon_sym___END_LINE__] = ACTIONS(4800), - [anon_sym___FILE__] = ACTIONS(4800), - [anon_sym___DIR__] = ACTIONS(4800), - [sym_special_variable] = ACTIONS(4802), - [sym_identifier_method_call] = ACTIONS(4802), - [sym_instance_var] = ACTIONS(4802), - [sym_class_var] = ACTIONS(4802), - [sym_self] = ACTIONS(4800), - [anon_sym_alias] = ACTIONS(4800), - [anon_sym_begin] = ACTIONS(4800), - [anon_sym_while] = ACTIONS(4800), - [anon_sym_until] = ACTIONS(4800), - [anon_sym_else] = ACTIONS(4800), - [anon_sym_require] = ACTIONS(4800), - [anon_sym_case] = ACTIONS(4800), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4802), - [sym__start_of_named_tuple] = ACTIONS(4802), - [sym_unary_plus] = ACTIONS(4802), - [sym_unary_minus] = ACTIONS(4802), - [sym_unary_wrapping_plus] = ACTIONS(4802), - [sym_unary_wrapping_minus] = ACTIONS(4802), - [sym__beginless_range_operator] = ACTIONS(4802), - [sym__regex_start] = ACTIONS(4802), - [sym__regular_if_keyword] = ACTIONS(4802), - [sym__regular_unless_keyword] = ACTIONS(4802), - [sym__regular_rescue_keyword] = ACTIONS(4802), - [sym__regular_ensure_keyword] = ACTIONS(4802), - [sym__string_literal_start] = ACTIONS(4802), - [sym__string_percent_literal_start] = ACTIONS(4802), - [sym__command_percent_literal_start] = ACTIONS(4802), - [sym__string_array_percent_literal_start] = ACTIONS(4802), - [sym__symbol_array_percent_literal_start] = ACTIONS(4802), - [sym__regex_percent_literal_start] = ACTIONS(4802), - [sym_heredoc_start] = ACTIONS(4802), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2059] = { - [sym_heredoc_body] = STATE(2059), - [aux_sym_union_type_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(4593), - [anon_sym_SEMI] = ACTIONS(4595), - [anon_sym_LPAREN] = ACTIONS(4595), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4593), - [sym_true] = ACTIONS(4593), - [sym_false] = ACTIONS(4593), - [aux_sym_integer_token2] = ACTIONS(4593), - [aux_sym_float_token2] = ACTIONS(4595), - [anon_sym_SQUOTE] = ACTIONS(4595), - [sym_operator_symbol] = ACTIONS(4595), - [sym_unquoted_symbol] = ACTIONS(4595), - [anon_sym_COLON_DQUOTE] = ACTIONS(4595), - [anon_sym_BQUOTE] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4804), - [anon_sym_COMMA] = ACTIONS(4595), - [anon_sym_DASH_GT] = ACTIONS(4595), - [anon_sym_annotation] = ACTIONS(4593), - [anon_sym_end] = ACTIONS(4593), - [anon_sym_AT_LBRACK] = ACTIONS(4595), - [anon_sym_private] = ACTIONS(4593), - [anon_sym_module] = ACTIONS(4593), - [anon_sym_abstract] = ACTIONS(4593), - [anon_sym_class] = ACTIONS(4593), - [anon_sym_struct] = ACTIONS(4593), - [anon_sym_enum] = ACTIONS(4593), - [anon_sym_STAR] = ACTIONS(4806), - [anon_sym_PIPE] = ACTIONS(4808), - [anon_sym_BANG] = ACTIONS(4595), - [anon_sym_TILDE] = ACTIONS(4595), - [anon_sym_def] = ACTIONS(4593), - [anon_sym_DOT] = ACTIONS(4810), - [anon_sym_protected] = ACTIONS(4593), - [anon_sym_include] = ACTIONS(4593), - [anon_sym_extend] = ACTIONS(4593), - [anon_sym_return] = ACTIONS(4593), - [anon_sym_next] = ACTIONS(4593), - [anon_sym_break] = ACTIONS(4593), - [anon_sym_with] = ACTIONS(4593), - [anon_sym_yield] = ACTIONS(4593), - [anon_sym_typeof] = ACTIONS(4593), - [anon_sym_sizeof] = ACTIONS(4593), - [anon_sym_instance_sizeof] = ACTIONS(4593), - [anon_sym_offsetof] = ACTIONS(4593), - [sym__constant_segment] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4595), - [anon_sym___LINE__] = ACTIONS(4593), - [anon_sym___END_LINE__] = ACTIONS(4593), - [anon_sym___FILE__] = ACTIONS(4593), - [anon_sym___DIR__] = ACTIONS(4593), - [sym_special_variable] = ACTIONS(4595), - [sym_identifier_method_call] = ACTIONS(4595), - [sym_instance_var] = ACTIONS(4595), - [sym_class_var] = ACTIONS(4595), - [sym_self] = ACTIONS(4593), - [anon_sym_QMARK] = ACTIONS(4812), - [anon_sym_alias] = ACTIONS(4593), - [anon_sym_begin] = ACTIONS(4593), - [anon_sym_while] = ACTIONS(4593), - [anon_sym_until] = ACTIONS(4593), - [anon_sym_require] = ACTIONS(4593), - [anon_sym_case] = ACTIONS(4593), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4595), - [sym__start_of_named_tuple] = ACTIONS(4595), - [sym_unary_plus] = ACTIONS(4595), - [sym_unary_minus] = ACTIONS(4595), - [sym_unary_wrapping_plus] = ACTIONS(4595), - [sym_unary_wrapping_minus] = ACTIONS(4595), - [sym__beginless_range_operator] = ACTIONS(4595), - [sym__regex_start] = ACTIONS(4595), - [sym__regular_if_keyword] = ACTIONS(4595), - [sym__regular_unless_keyword] = ACTIONS(4595), - [sym__string_literal_start] = ACTIONS(4595), - [sym__string_percent_literal_start] = ACTIONS(4595), - [sym__command_percent_literal_start] = ACTIONS(4595), - [sym__string_array_percent_literal_start] = ACTIONS(4595), - [sym__symbol_array_percent_literal_start] = ACTIONS(4595), - [sym__regex_percent_literal_start] = ACTIONS(4595), - [sym_heredoc_start] = ACTIONS(4595), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2060] = { - [sym_heredoc_body] = STATE(2060), - [aux_sym_union_type_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(4568), - [anon_sym_SEMI] = ACTIONS(4570), - [anon_sym_LPAREN] = ACTIONS(4570), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4568), - [sym_true] = ACTIONS(4568), - [sym_false] = ACTIONS(4568), - [aux_sym_integer_token2] = ACTIONS(4568), - [aux_sym_float_token2] = ACTIONS(4570), - [anon_sym_SQUOTE] = ACTIONS(4570), - [sym_operator_symbol] = ACTIONS(4570), - [sym_unquoted_symbol] = ACTIONS(4570), - [anon_sym_COLON_DQUOTE] = ACTIONS(4570), - [anon_sym_BQUOTE] = ACTIONS(4570), - [anon_sym_LBRACK] = ACTIONS(4804), - [anon_sym_COMMA] = ACTIONS(4570), - [anon_sym_DASH_GT] = ACTIONS(4570), - [anon_sym_annotation] = ACTIONS(4568), - [anon_sym_end] = ACTIONS(4568), - [anon_sym_AT_LBRACK] = ACTIONS(4570), - [anon_sym_private] = ACTIONS(4568), - [anon_sym_module] = ACTIONS(4568), - [anon_sym_abstract] = ACTIONS(4568), - [anon_sym_class] = ACTIONS(4568), - [anon_sym_struct] = ACTIONS(4568), - [anon_sym_enum] = ACTIONS(4568), - [anon_sym_STAR] = ACTIONS(4806), - [anon_sym_PIPE] = ACTIONS(4808), - [anon_sym_BANG] = ACTIONS(4570), - [anon_sym_TILDE] = ACTIONS(4570), - [anon_sym_def] = ACTIONS(4568), - [anon_sym_DOT] = ACTIONS(4810), - [anon_sym_protected] = ACTIONS(4568), - [anon_sym_include] = ACTIONS(4568), - [anon_sym_extend] = ACTIONS(4568), - [anon_sym_return] = ACTIONS(4568), - [anon_sym_next] = ACTIONS(4568), - [anon_sym_break] = ACTIONS(4568), - [anon_sym_with] = ACTIONS(4568), - [anon_sym_yield] = ACTIONS(4568), - [anon_sym_typeof] = ACTIONS(4568), - [anon_sym_sizeof] = ACTIONS(4568), - [anon_sym_instance_sizeof] = ACTIONS(4568), - [anon_sym_offsetof] = ACTIONS(4568), - [sym__constant_segment] = ACTIONS(4570), - [anon_sym_COLON_COLON] = ACTIONS(4570), - [anon_sym___LINE__] = ACTIONS(4568), - [anon_sym___END_LINE__] = ACTIONS(4568), - [anon_sym___FILE__] = ACTIONS(4568), - [anon_sym___DIR__] = ACTIONS(4568), - [sym_special_variable] = ACTIONS(4570), - [sym_identifier_method_call] = ACTIONS(4570), - [sym_instance_var] = ACTIONS(4570), - [sym_class_var] = ACTIONS(4570), - [sym_self] = ACTIONS(4568), - [anon_sym_QMARK] = ACTIONS(4812), - [anon_sym_alias] = ACTIONS(4568), - [anon_sym_begin] = ACTIONS(4568), - [anon_sym_while] = ACTIONS(4568), - [anon_sym_until] = ACTIONS(4568), - [anon_sym_require] = ACTIONS(4568), - [anon_sym_case] = ACTIONS(4568), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4570), - [sym__start_of_named_tuple] = ACTIONS(4570), - [sym_unary_plus] = ACTIONS(4570), - [sym_unary_minus] = ACTIONS(4570), - [sym_unary_wrapping_plus] = ACTIONS(4570), - [sym_unary_wrapping_minus] = ACTIONS(4570), - [sym__beginless_range_operator] = ACTIONS(4570), - [sym__regex_start] = ACTIONS(4570), - [sym__regular_if_keyword] = ACTIONS(4570), - [sym__regular_unless_keyword] = ACTIONS(4570), - [sym__string_literal_start] = ACTIONS(4570), - [sym__string_percent_literal_start] = ACTIONS(4570), - [sym__command_percent_literal_start] = ACTIONS(4570), - [sym__string_array_percent_literal_start] = ACTIONS(4570), - [sym__symbol_array_percent_literal_start] = ACTIONS(4570), - [sym__regex_percent_literal_start] = ACTIONS(4570), - [sym_heredoc_start] = ACTIONS(4570), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2061] = { - [sym_heredoc_body] = STATE(2061), - [aux_sym_union_type_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(4586), - [anon_sym_SEMI] = ACTIONS(4588), - [anon_sym_LPAREN] = ACTIONS(4588), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4586), - [sym_true] = ACTIONS(4586), - [sym_false] = ACTIONS(4586), - [aux_sym_integer_token2] = ACTIONS(4586), - [aux_sym_float_token2] = ACTIONS(4588), - [anon_sym_SQUOTE] = ACTIONS(4588), - [sym_operator_symbol] = ACTIONS(4588), - [sym_unquoted_symbol] = ACTIONS(4588), - [anon_sym_COLON_DQUOTE] = ACTIONS(4588), - [anon_sym_BQUOTE] = ACTIONS(4588), - [anon_sym_LBRACK] = ACTIONS(4588), - [anon_sym_COMMA] = ACTIONS(4588), - [anon_sym_DASH_GT] = ACTIONS(4588), - [anon_sym_annotation] = ACTIONS(4586), - [anon_sym_end] = ACTIONS(4586), - [anon_sym_AT_LBRACK] = ACTIONS(4588), - [anon_sym_private] = ACTIONS(4586), - [anon_sym_module] = ACTIONS(4586), - [anon_sym_abstract] = ACTIONS(4586), - [anon_sym_class] = ACTIONS(4586), - [anon_sym_struct] = ACTIONS(4586), - [anon_sym_enum] = ACTIONS(4586), - [anon_sym_STAR] = ACTIONS(4588), - [anon_sym_PIPE] = ACTIONS(4588), - [anon_sym_BANG] = ACTIONS(4588), - [anon_sym_TILDE] = ACTIONS(4588), - [anon_sym_def] = ACTIONS(4586), - [anon_sym_DOT] = ACTIONS(4588), - [anon_sym_protected] = ACTIONS(4586), - [anon_sym_include] = ACTIONS(4586), - [anon_sym_extend] = ACTIONS(4586), - [anon_sym_return] = ACTIONS(4586), - [anon_sym_next] = ACTIONS(4586), - [anon_sym_break] = ACTIONS(4586), - [anon_sym_with] = ACTIONS(4586), - [anon_sym_yield] = ACTIONS(4586), - [anon_sym_typeof] = ACTIONS(4586), - [anon_sym_sizeof] = ACTIONS(4586), - [anon_sym_instance_sizeof] = ACTIONS(4586), - [anon_sym_offsetof] = ACTIONS(4586), - [sym__constant_segment] = ACTIONS(4588), - [anon_sym_COLON_COLON] = ACTIONS(4588), - [anon_sym___LINE__] = ACTIONS(4586), - [anon_sym___END_LINE__] = ACTIONS(4586), - [anon_sym___FILE__] = ACTIONS(4586), - [anon_sym___DIR__] = ACTIONS(4586), - [sym_special_variable] = ACTIONS(4588), - [sym_identifier_method_call] = ACTIONS(4588), - [sym_instance_var] = ACTIONS(4588), - [sym_class_var] = ACTIONS(4588), - [sym_self] = ACTIONS(4586), - [anon_sym_QMARK] = ACTIONS(4588), - [anon_sym_alias] = ACTIONS(4586), - [anon_sym_begin] = ACTIONS(4586), - [anon_sym_while] = ACTIONS(4586), - [anon_sym_until] = ACTIONS(4586), - [anon_sym_require] = ACTIONS(4586), - [anon_sym_case] = ACTIONS(4586), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4588), - [sym__start_of_named_tuple] = ACTIONS(4588), - [sym_unary_plus] = ACTIONS(4588), - [sym_unary_minus] = ACTIONS(4588), - [sym_unary_wrapping_plus] = ACTIONS(4588), - [sym_unary_wrapping_minus] = ACTIONS(4588), - [sym__beginless_range_operator] = ACTIONS(4588), - [sym__regex_start] = ACTIONS(4588), - [sym__regular_if_keyword] = ACTIONS(4588), - [sym__regular_unless_keyword] = ACTIONS(4588), - [sym__string_literal_start] = ACTIONS(4588), - [sym__string_percent_literal_start] = ACTIONS(4588), - [sym__command_percent_literal_start] = ACTIONS(4588), - [sym__string_array_percent_literal_start] = ACTIONS(4588), - [sym__symbol_array_percent_literal_start] = ACTIONS(4588), - [sym__regex_percent_literal_start] = ACTIONS(4588), - [sym_heredoc_start] = ACTIONS(4588), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2062] = { - [sym__terminator] = STATE(2118), - [sym_heredoc_body] = STATE(2062), - [sym_identifier] = ACTIONS(4814), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4816), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4814), - [sym_true] = ACTIONS(4814), - [sym_false] = ACTIONS(4814), - [aux_sym_integer_token2] = ACTIONS(4814), - [aux_sym_float_token2] = ACTIONS(4816), - [anon_sym_SQUOTE] = ACTIONS(4816), - [sym_operator_symbol] = ACTIONS(4816), - [sym_unquoted_symbol] = ACTIONS(4816), - [anon_sym_COLON_DQUOTE] = ACTIONS(4816), - [anon_sym_BQUOTE] = ACTIONS(4816), - [anon_sym_LBRACK] = ACTIONS(4816), - [anon_sym_DASH_GT] = ACTIONS(4816), - [anon_sym_annotation] = ACTIONS(4814), - [anon_sym_end] = ACTIONS(4814), - [anon_sym_AT_LBRACK] = ACTIONS(4816), - [anon_sym_private] = ACTIONS(4814), - [anon_sym_module] = ACTIONS(4814), - [anon_sym_abstract] = ACTIONS(4814), - [anon_sym_class] = ACTIONS(4814), - [anon_sym_struct] = ACTIONS(4814), - [anon_sym_enum] = ACTIONS(4814), - [anon_sym_STAR] = ACTIONS(4816), - [anon_sym_BANG] = ACTIONS(4816), - [anon_sym_TILDE] = ACTIONS(4816), - [anon_sym_def] = ACTIONS(4814), - [anon_sym_protected] = ACTIONS(4814), - [anon_sym_include] = ACTIONS(4814), - [anon_sym_extend] = ACTIONS(4814), - [anon_sym_return] = ACTIONS(4814), - [anon_sym_next] = ACTIONS(4814), - [anon_sym_break] = ACTIONS(4814), - [anon_sym_with] = ACTIONS(4814), - [anon_sym_yield] = ACTIONS(4814), - [anon_sym_typeof] = ACTIONS(4814), - [anon_sym_sizeof] = ACTIONS(4814), - [anon_sym_instance_sizeof] = ACTIONS(4814), - [anon_sym_offsetof] = ACTIONS(4814), - [sym__constant_segment] = ACTIONS(4816), - [anon_sym_COLON_COLON] = ACTIONS(4816), - [anon_sym___LINE__] = ACTIONS(4814), - [anon_sym___END_LINE__] = ACTIONS(4814), - [anon_sym___FILE__] = ACTIONS(4814), - [anon_sym___DIR__] = ACTIONS(4814), - [sym_special_variable] = ACTIONS(4816), - [sym_identifier_method_call] = ACTIONS(4816), - [sym_instance_var] = ACTIONS(4816), - [sym_class_var] = ACTIONS(4816), - [sym_self] = ACTIONS(4814), - [anon_sym_alias] = ACTIONS(4814), - [anon_sym_begin] = ACTIONS(4814), - [anon_sym_while] = ACTIONS(4814), - [anon_sym_until] = ACTIONS(4814), - [anon_sym_else] = ACTIONS(4814), - [anon_sym_require] = ACTIONS(4814), - [anon_sym_case] = ACTIONS(4814), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4816), - [sym__start_of_named_tuple] = ACTIONS(4816), - [sym_unary_plus] = ACTIONS(4816), - [sym_unary_minus] = ACTIONS(4816), - [sym_unary_wrapping_plus] = ACTIONS(4816), - [sym_unary_wrapping_minus] = ACTIONS(4816), - [sym__beginless_range_operator] = ACTIONS(4816), - [sym__regex_start] = ACTIONS(4816), - [sym__regular_if_keyword] = ACTIONS(4816), - [sym__regular_unless_keyword] = ACTIONS(4816), - [sym__regular_rescue_keyword] = ACTIONS(4816), - [sym__regular_ensure_keyword] = ACTIONS(4816), - [sym__string_literal_start] = ACTIONS(4816), - [sym__string_percent_literal_start] = ACTIONS(4816), - [sym__command_percent_literal_start] = ACTIONS(4816), - [sym__string_array_percent_literal_start] = ACTIONS(4816), - [sym__symbol_array_percent_literal_start] = ACTIONS(4816), - [sym__regex_percent_literal_start] = ACTIONS(4816), - [sym_heredoc_start] = ACTIONS(4816), + [2044] = { + [sym_heredoc_body] = STATE(2044), + [ts_builtin_sym_end] = ACTIONS(4796), + [sym_identifier] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4796), + [anon_sym_RPAREN] = ACTIONS(4796), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4798), + [sym_true] = ACTIONS(4798), + [sym_false] = ACTIONS(4798), + [aux_sym_integer_token2] = ACTIONS(4798), + [aux_sym_float_token2] = ACTIONS(4796), + [anon_sym_SQUOTE] = ACTIONS(4796), + [anon_sym_RBRACE] = ACTIONS(4796), + [sym_operator_symbol] = ACTIONS(4796), + [sym_unquoted_symbol] = ACTIONS(4796), + [anon_sym_COLON_DQUOTE] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LBRACK] = ACTIONS(4796), + [anon_sym_DASH_GT] = ACTIONS(4796), + [anon_sym_annotation] = ACTIONS(4798), + [anon_sym_end] = ACTIONS(4798), + [anon_sym_AT_LBRACK] = ACTIONS(4796), + [anon_sym_private] = ACTIONS(4798), + [anon_sym_module] = ACTIONS(4798), + [anon_sym_abstract] = ACTIONS(4798), + [anon_sym_class] = ACTIONS(4798), + [anon_sym_struct] = ACTIONS(4798), + [anon_sym_enum] = ACTIONS(4798), + [anon_sym_STAR] = ACTIONS(4796), + [anon_sym_BANG] = ACTIONS(4796), + [anon_sym_TILDE] = ACTIONS(4796), + [anon_sym_def] = ACTIONS(4798), + [anon_sym_protected] = ACTIONS(4798), + [anon_sym_include] = ACTIONS(4798), + [anon_sym_extend] = ACTIONS(4798), + [anon_sym_return] = ACTIONS(4798), + [anon_sym_next] = ACTIONS(4798), + [anon_sym_break] = ACTIONS(4798), + [anon_sym_with] = ACTIONS(4798), + [anon_sym_yield] = ACTIONS(4798), + [anon_sym_typeof] = ACTIONS(4798), + [anon_sym_sizeof] = ACTIONS(4798), + [anon_sym_instance_sizeof] = ACTIONS(4798), + [anon_sym_offsetof] = ACTIONS(4798), + [sym__constant_segment] = ACTIONS(4796), + [anon_sym_COLON_COLON] = ACTIONS(4796), + [anon_sym___LINE__] = ACTIONS(4798), + [anon_sym___END_LINE__] = ACTIONS(4798), + [anon_sym___FILE__] = ACTIONS(4798), + [anon_sym___DIR__] = ACTIONS(4798), + [sym_special_variable] = ACTIONS(4796), + [sym_identifier_method_call] = ACTIONS(4796), + [sym_instance_var] = ACTIONS(4796), + [sym_class_var] = ACTIONS(4796), + [sym_self] = ACTIONS(4798), + [anon_sym_alias] = ACTIONS(4798), + [anon_sym_begin] = ACTIONS(4798), + [anon_sym_while] = ACTIONS(4798), + [anon_sym_until] = ACTIONS(4798), + [anon_sym_elsif] = ACTIONS(4798), + [anon_sym_else] = ACTIONS(4798), + [anon_sym_require] = ACTIONS(4798), + [anon_sym_when] = ACTIONS(4798), + [anon_sym_case] = ACTIONS(4798), + [anon_sym_select] = ACTIONS(4798), + [anon_sym_in] = ACTIONS(4798), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4796), + [sym__start_of_named_tuple] = ACTIONS(4796), + [sym_unary_plus] = ACTIONS(4796), + [sym_unary_minus] = ACTIONS(4796), + [sym_unary_wrapping_plus] = ACTIONS(4796), + [sym_unary_wrapping_minus] = ACTIONS(4796), + [sym__beginless_range_operator] = ACTIONS(4796), + [sym__regex_start] = ACTIONS(4796), + [sym__regular_if_keyword] = ACTIONS(4796), + [sym__regular_unless_keyword] = ACTIONS(4796), + [sym__string_literal_start] = ACTIONS(4796), + [sym__string_percent_literal_start] = ACTIONS(4796), + [sym__command_percent_literal_start] = ACTIONS(4796), + [sym__string_array_percent_literal_start] = ACTIONS(4796), + [sym__symbol_array_percent_literal_start] = ACTIONS(4796), + [sym__regex_percent_literal_start] = ACTIONS(4796), + [sym_heredoc_start] = ACTIONS(4796), [sym__heredoc_body_start] = ACTIONS(7), }, - [2063] = { - [sym_heredoc_body] = STATE(2063), - [sym_identifier] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4745), - [anon_sym_LPAREN] = ACTIONS(4745), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4743), - [sym_true] = ACTIONS(4743), - [sym_false] = ACTIONS(4743), - [aux_sym_integer_token2] = ACTIONS(4743), - [aux_sym_float_token2] = ACTIONS(4745), - [anon_sym_SQUOTE] = ACTIONS(4745), - [sym_operator_symbol] = ACTIONS(4745), - [sym_unquoted_symbol] = ACTIONS(4745), - [anon_sym_COLON_DQUOTE] = ACTIONS(4745), - [anon_sym_BQUOTE] = ACTIONS(4745), - [anon_sym_LBRACK] = ACTIONS(4745), - [anon_sym_DASH_GT] = ACTIONS(4745), - [anon_sym_annotation] = ACTIONS(4743), - [anon_sym_end] = ACTIONS(4743), - [anon_sym_AT_LBRACK] = ACTIONS(4745), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_module] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_class] = ACTIONS(4743), - [anon_sym_struct] = ACTIONS(4743), - [anon_sym_enum] = ACTIONS(4743), - [anon_sym_STAR] = ACTIONS(4745), - [anon_sym_BANG] = ACTIONS(4745), - [anon_sym_TILDE] = ACTIONS(4745), - [anon_sym_def] = ACTIONS(4743), - [anon_sym_protected] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_extend] = ACTIONS(4743), - [anon_sym_forall] = ACTIONS(4743), - [anon_sym_return] = ACTIONS(4743), - [anon_sym_next] = ACTIONS(4743), - [anon_sym_break] = ACTIONS(4743), - [anon_sym_with] = ACTIONS(4743), - [anon_sym_yield] = ACTIONS(4743), - [anon_sym_typeof] = ACTIONS(4743), - [anon_sym_sizeof] = ACTIONS(4743), - [anon_sym_instance_sizeof] = ACTIONS(4743), - [anon_sym_offsetof] = ACTIONS(4743), - [sym__constant_segment] = ACTIONS(4745), - [anon_sym_COLON_COLON] = ACTIONS(4745), - [anon_sym___LINE__] = ACTIONS(4743), - [anon_sym___END_LINE__] = ACTIONS(4743), - [anon_sym___FILE__] = ACTIONS(4743), - [anon_sym___DIR__] = ACTIONS(4743), - [sym_special_variable] = ACTIONS(4745), - [sym_identifier_method_call] = ACTIONS(4745), - [sym_instance_var] = ACTIONS(4745), - [sym_class_var] = ACTIONS(4745), - [sym_self] = ACTIONS(4743), - [anon_sym_alias] = ACTIONS(4743), - [anon_sym_begin] = ACTIONS(4743), - [anon_sym_while] = ACTIONS(4743), - [anon_sym_until] = ACTIONS(4743), - [anon_sym_else] = ACTIONS(4743), - [anon_sym_require] = ACTIONS(4743), - [anon_sym_case] = ACTIONS(4743), - [sym__line_break] = ACTIONS(4745), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4745), - [sym__start_of_named_tuple] = ACTIONS(4745), - [sym_unary_plus] = ACTIONS(4745), - [sym_unary_minus] = ACTIONS(4745), - [sym_unary_wrapping_plus] = ACTIONS(4745), - [sym_unary_wrapping_minus] = ACTIONS(4745), - [sym__beginless_range_operator] = ACTIONS(4745), - [sym__regex_start] = ACTIONS(4745), - [sym__regular_if_keyword] = ACTIONS(4745), - [sym__regular_unless_keyword] = ACTIONS(4745), - [sym__regular_rescue_keyword] = ACTIONS(4745), - [sym__regular_ensure_keyword] = ACTIONS(4745), - [sym__string_literal_start] = ACTIONS(4745), - [sym__string_percent_literal_start] = ACTIONS(4745), - [sym__command_percent_literal_start] = ACTIONS(4745), - [sym__string_array_percent_literal_start] = ACTIONS(4745), - [sym__symbol_array_percent_literal_start] = ACTIONS(4745), - [sym__regex_percent_literal_start] = ACTIONS(4745), - [sym_heredoc_start] = ACTIONS(4745), + [2045] = { + [sym_heredoc_body] = STATE(2045), + [ts_builtin_sym_end] = ACTIONS(1831), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(1831), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1872), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [aux_sym_integer_token2] = ACTIONS(1872), + [aux_sym_float_token2] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), + [sym_operator_symbol] = ACTIONS(1831), + [sym_unquoted_symbol] = ACTIONS(1831), + [anon_sym_COLON_DQUOTE] = ACTIONS(1831), + [anon_sym_BQUOTE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_DASH_GT] = ACTIONS(1831), + [anon_sym_annotation] = ACTIONS(1872), + [anon_sym_end] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_abstract] = ACTIONS(1872), + [anon_sym_class] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_protected] = ACTIONS(1872), + [anon_sym_include] = ACTIONS(1872), + [anon_sym_extend] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_next] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_with] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym_sizeof] = ACTIONS(1872), + [anon_sym_instance_sizeof] = ACTIONS(1872), + [anon_sym_offsetof] = ACTIONS(1872), + [sym__constant_segment] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym___LINE__] = ACTIONS(1872), + [anon_sym___END_LINE__] = ACTIONS(1872), + [anon_sym___FILE__] = ACTIONS(1872), + [anon_sym___DIR__] = ACTIONS(1872), + [sym_special_variable] = ACTIONS(1831), + [sym_identifier_method_call] = ACTIONS(1831), + [sym_instance_var] = ACTIONS(1831), + [sym_class_var] = ACTIONS(1831), + [sym_self] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_begin] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_until] = ACTIONS(1872), + [anon_sym_elsif] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_require] = ACTIONS(1872), + [anon_sym_when] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_select] = ACTIONS(1872), + [anon_sym_in] = ACTIONS(1872), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1831), + [sym__start_of_named_tuple] = ACTIONS(1831), + [sym_unary_plus] = ACTIONS(1831), + [sym_unary_minus] = ACTIONS(1831), + [sym_unary_wrapping_plus] = ACTIONS(1831), + [sym_unary_wrapping_minus] = ACTIONS(1831), + [sym__beginless_range_operator] = ACTIONS(1831), + [sym__regex_start] = ACTIONS(1831), + [sym__regular_if_keyword] = ACTIONS(1831), + [sym__regular_unless_keyword] = ACTIONS(1831), + [sym__string_literal_start] = ACTIONS(1831), + [sym__string_percent_literal_start] = ACTIONS(1831), + [sym__command_percent_literal_start] = ACTIONS(1831), + [sym__string_array_percent_literal_start] = ACTIONS(1831), + [sym__symbol_array_percent_literal_start] = ACTIONS(1831), + [sym__regex_percent_literal_start] = ACTIONS(1831), + [sym_heredoc_start] = ACTIONS(1831), [sym__heredoc_body_start] = ACTIONS(7), }, - [2064] = { - [sym__terminator] = STATE(2117), - [sym_heredoc_body] = STATE(2064), - [sym_identifier] = ACTIONS(4818), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4820), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4818), - [sym_true] = ACTIONS(4818), - [sym_false] = ACTIONS(4818), - [aux_sym_integer_token2] = ACTIONS(4818), - [aux_sym_float_token2] = ACTIONS(4820), - [anon_sym_SQUOTE] = ACTIONS(4820), - [sym_operator_symbol] = ACTIONS(4820), - [sym_unquoted_symbol] = ACTIONS(4820), - [anon_sym_COLON_DQUOTE] = ACTIONS(4820), - [anon_sym_BQUOTE] = ACTIONS(4820), - [anon_sym_LBRACK] = ACTIONS(4820), - [anon_sym_DASH_GT] = ACTIONS(4820), - [anon_sym_annotation] = ACTIONS(4818), - [anon_sym_end] = ACTIONS(4818), - [anon_sym_AT_LBRACK] = ACTIONS(4820), - [anon_sym_private] = ACTIONS(4818), - [anon_sym_module] = ACTIONS(4818), - [anon_sym_abstract] = ACTIONS(4818), - [anon_sym_class] = ACTIONS(4818), - [anon_sym_struct] = ACTIONS(4818), - [anon_sym_enum] = ACTIONS(4818), - [anon_sym_STAR] = ACTIONS(4820), - [anon_sym_BANG] = ACTIONS(4820), - [anon_sym_TILDE] = ACTIONS(4820), - [anon_sym_def] = ACTIONS(4818), - [anon_sym_protected] = ACTIONS(4818), - [anon_sym_include] = ACTIONS(4818), - [anon_sym_extend] = ACTIONS(4818), - [anon_sym_return] = ACTIONS(4818), - [anon_sym_next] = ACTIONS(4818), - [anon_sym_break] = ACTIONS(4818), - [anon_sym_with] = ACTIONS(4818), - [anon_sym_yield] = ACTIONS(4818), - [anon_sym_typeof] = ACTIONS(4818), - [anon_sym_sizeof] = ACTIONS(4818), - [anon_sym_instance_sizeof] = ACTIONS(4818), - [anon_sym_offsetof] = ACTIONS(4818), - [sym__constant_segment] = ACTIONS(4820), - [anon_sym_COLON_COLON] = ACTIONS(4820), - [anon_sym___LINE__] = ACTIONS(4818), - [anon_sym___END_LINE__] = ACTIONS(4818), - [anon_sym___FILE__] = ACTIONS(4818), - [anon_sym___DIR__] = ACTIONS(4818), - [sym_special_variable] = ACTIONS(4820), - [sym_identifier_method_call] = ACTIONS(4820), - [sym_instance_var] = ACTIONS(4820), - [sym_class_var] = ACTIONS(4820), - [sym_self] = ACTIONS(4818), - [anon_sym_alias] = ACTIONS(4818), - [anon_sym_begin] = ACTIONS(4818), - [anon_sym_while] = ACTIONS(4818), - [anon_sym_until] = ACTIONS(4818), - [anon_sym_else] = ACTIONS(4818), - [anon_sym_require] = ACTIONS(4818), - [anon_sym_case] = ACTIONS(4818), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4820), - [sym__start_of_named_tuple] = ACTIONS(4820), - [sym_unary_plus] = ACTIONS(4820), - [sym_unary_minus] = ACTIONS(4820), - [sym_unary_wrapping_plus] = ACTIONS(4820), - [sym_unary_wrapping_minus] = ACTIONS(4820), - [sym__beginless_range_operator] = ACTIONS(4820), - [sym__regex_start] = ACTIONS(4820), - [sym__regular_if_keyword] = ACTIONS(4820), - [sym__regular_unless_keyword] = ACTIONS(4820), - [sym__regular_rescue_keyword] = ACTIONS(4820), - [sym__regular_ensure_keyword] = ACTIONS(4820), - [sym__string_literal_start] = ACTIONS(4820), - [sym__string_percent_literal_start] = ACTIONS(4820), - [sym__command_percent_literal_start] = ACTIONS(4820), - [sym__string_array_percent_literal_start] = ACTIONS(4820), - [sym__symbol_array_percent_literal_start] = ACTIONS(4820), - [sym__regex_percent_literal_start] = ACTIONS(4820), - [sym_heredoc_start] = ACTIONS(4820), + [2046] = { + [sym_heredoc_body] = STATE(2046), + [ts_builtin_sym_end] = ACTIONS(4800), + [sym_identifier] = ACTIONS(4802), + [anon_sym_SEMI] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4800), + [anon_sym_RPAREN] = ACTIONS(4800), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4802), + [sym_true] = ACTIONS(4802), + [sym_false] = ACTIONS(4802), + [aux_sym_integer_token2] = ACTIONS(4802), + [aux_sym_float_token2] = ACTIONS(4800), + [anon_sym_SQUOTE] = ACTIONS(4800), + [anon_sym_RBRACE] = ACTIONS(4800), + [sym_operator_symbol] = ACTIONS(4800), + [sym_unquoted_symbol] = ACTIONS(4800), + [anon_sym_COLON_DQUOTE] = ACTIONS(4800), + [anon_sym_BQUOTE] = ACTIONS(4800), + [anon_sym_LBRACK] = ACTIONS(4800), + [anon_sym_DASH_GT] = ACTIONS(4800), + [anon_sym_annotation] = ACTIONS(4802), + [anon_sym_end] = ACTIONS(4802), + [anon_sym_AT_LBRACK] = ACTIONS(4800), + [anon_sym_private] = ACTIONS(4802), + [anon_sym_module] = ACTIONS(4802), + [anon_sym_abstract] = ACTIONS(4802), + [anon_sym_class] = ACTIONS(4802), + [anon_sym_struct] = ACTIONS(4802), + [anon_sym_enum] = ACTIONS(4802), + [anon_sym_STAR] = ACTIONS(4800), + [anon_sym_BANG] = ACTIONS(4800), + [anon_sym_TILDE] = ACTIONS(4800), + [anon_sym_def] = ACTIONS(4802), + [anon_sym_protected] = ACTIONS(4802), + [anon_sym_include] = ACTIONS(4802), + [anon_sym_extend] = ACTIONS(4802), + [anon_sym_return] = ACTIONS(4802), + [anon_sym_next] = ACTIONS(4802), + [anon_sym_break] = ACTIONS(4802), + [anon_sym_with] = ACTIONS(4802), + [anon_sym_yield] = ACTIONS(4802), + [anon_sym_typeof] = ACTIONS(4802), + [anon_sym_sizeof] = ACTIONS(4802), + [anon_sym_instance_sizeof] = ACTIONS(4802), + [anon_sym_offsetof] = ACTIONS(4802), + [sym__constant_segment] = ACTIONS(4800), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym___LINE__] = ACTIONS(4802), + [anon_sym___END_LINE__] = ACTIONS(4802), + [anon_sym___FILE__] = ACTIONS(4802), + [anon_sym___DIR__] = ACTIONS(4802), + [sym_special_variable] = ACTIONS(4800), + [sym_identifier_method_call] = ACTIONS(4800), + [sym_instance_var] = ACTIONS(4800), + [sym_class_var] = ACTIONS(4800), + [sym_self] = ACTIONS(4802), + [anon_sym_alias] = ACTIONS(4802), + [anon_sym_begin] = ACTIONS(4802), + [anon_sym_while] = ACTIONS(4802), + [anon_sym_until] = ACTIONS(4802), + [anon_sym_elsif] = ACTIONS(4802), + [anon_sym_else] = ACTIONS(4802), + [anon_sym_require] = ACTIONS(4802), + [anon_sym_when] = ACTIONS(4802), + [anon_sym_case] = ACTIONS(4802), + [anon_sym_select] = ACTIONS(4802), + [anon_sym_in] = ACTIONS(4802), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4800), + [sym__start_of_named_tuple] = ACTIONS(4800), + [sym_unary_plus] = ACTIONS(4800), + [sym_unary_minus] = ACTIONS(4800), + [sym_unary_wrapping_plus] = ACTIONS(4800), + [sym_unary_wrapping_minus] = ACTIONS(4800), + [sym__beginless_range_operator] = ACTIONS(4800), + [sym__regex_start] = ACTIONS(4800), + [sym__regular_if_keyword] = ACTIONS(4800), + [sym__regular_unless_keyword] = ACTIONS(4800), + [sym__string_literal_start] = ACTIONS(4800), + [sym__string_percent_literal_start] = ACTIONS(4800), + [sym__command_percent_literal_start] = ACTIONS(4800), + [sym__string_array_percent_literal_start] = ACTIONS(4800), + [sym__symbol_array_percent_literal_start] = ACTIONS(4800), + [sym__regex_percent_literal_start] = ACTIONS(4800), + [sym_heredoc_start] = ACTIONS(4800), [sym__heredoc_body_start] = ACTIONS(7), }, - [2065] = { - [sym__terminator] = STATE(2107), - [sym_heredoc_body] = STATE(2065), - [sym_identifier] = ACTIONS(4822), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4824), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4822), - [sym_true] = ACTIONS(4822), - [sym_false] = ACTIONS(4822), - [aux_sym_integer_token2] = ACTIONS(4822), - [aux_sym_float_token2] = ACTIONS(4824), - [anon_sym_SQUOTE] = ACTIONS(4824), - [sym_operator_symbol] = ACTIONS(4824), - [sym_unquoted_symbol] = ACTIONS(4824), - [anon_sym_COLON_DQUOTE] = ACTIONS(4824), - [anon_sym_BQUOTE] = ACTIONS(4824), - [anon_sym_LBRACK] = ACTIONS(4824), - [anon_sym_DASH_GT] = ACTIONS(4824), - [anon_sym_annotation] = ACTIONS(4822), - [anon_sym_end] = ACTIONS(4822), - [anon_sym_AT_LBRACK] = ACTIONS(4824), - [anon_sym_private] = ACTIONS(4822), - [anon_sym_module] = ACTIONS(4822), - [anon_sym_abstract] = ACTIONS(4822), - [anon_sym_class] = ACTIONS(4822), - [anon_sym_struct] = ACTIONS(4822), - [anon_sym_enum] = ACTIONS(4822), - [anon_sym_STAR] = ACTIONS(4824), - [anon_sym_BANG] = ACTIONS(4824), - [anon_sym_TILDE] = ACTIONS(4824), - [anon_sym_def] = ACTIONS(4822), - [anon_sym_protected] = ACTIONS(4822), - [anon_sym_include] = ACTIONS(4822), - [anon_sym_extend] = ACTIONS(4822), - [anon_sym_return] = ACTIONS(4822), - [anon_sym_next] = ACTIONS(4822), - [anon_sym_break] = ACTIONS(4822), - [anon_sym_with] = ACTIONS(4822), - [anon_sym_yield] = ACTIONS(4822), - [anon_sym_typeof] = ACTIONS(4822), - [anon_sym_sizeof] = ACTIONS(4822), - [anon_sym_instance_sizeof] = ACTIONS(4822), - [anon_sym_offsetof] = ACTIONS(4822), - [sym__constant_segment] = ACTIONS(4824), - [anon_sym_COLON_COLON] = ACTIONS(4824), - [anon_sym___LINE__] = ACTIONS(4822), - [anon_sym___END_LINE__] = ACTIONS(4822), - [anon_sym___FILE__] = ACTIONS(4822), - [anon_sym___DIR__] = ACTIONS(4822), - [sym_special_variable] = ACTIONS(4824), - [sym_identifier_method_call] = ACTIONS(4824), - [sym_instance_var] = ACTIONS(4824), - [sym_class_var] = ACTIONS(4824), - [sym_self] = ACTIONS(4822), - [anon_sym_alias] = ACTIONS(4822), - [anon_sym_begin] = ACTIONS(4822), - [anon_sym_while] = ACTIONS(4822), - [anon_sym_until] = ACTIONS(4822), - [anon_sym_else] = ACTIONS(4822), - [anon_sym_require] = ACTIONS(4822), - [anon_sym_case] = ACTIONS(4822), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4824), - [sym__start_of_named_tuple] = ACTIONS(4824), - [sym_unary_plus] = ACTIONS(4824), - [sym_unary_minus] = ACTIONS(4824), - [sym_unary_wrapping_plus] = ACTIONS(4824), - [sym_unary_wrapping_minus] = ACTIONS(4824), - [sym__beginless_range_operator] = ACTIONS(4824), - [sym__regex_start] = ACTIONS(4824), - [sym__regular_if_keyword] = ACTIONS(4824), - [sym__regular_unless_keyword] = ACTIONS(4824), - [sym__regular_rescue_keyword] = ACTIONS(4824), - [sym__regular_ensure_keyword] = ACTIONS(4824), - [sym__string_literal_start] = ACTIONS(4824), - [sym__string_percent_literal_start] = ACTIONS(4824), - [sym__command_percent_literal_start] = ACTIONS(4824), - [sym__string_array_percent_literal_start] = ACTIONS(4824), - [sym__symbol_array_percent_literal_start] = ACTIONS(4824), - [sym__regex_percent_literal_start] = ACTIONS(4824), - [sym_heredoc_start] = ACTIONS(4824), + [2047] = { + [sym_heredoc_body] = STATE(2047), + [aux_sym_constant_repeat1] = STATE(2035), + [sym_identifier] = ACTIONS(4594), + [anon_sym_SEMI] = ACTIONS(4596), + [anon_sym_LPAREN] = ACTIONS(4594), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4594), + [sym_true] = ACTIONS(4594), + [sym_false] = ACTIONS(4594), + [aux_sym_integer_token2] = ACTIONS(4594), + [aux_sym_float_token2] = ACTIONS(4596), + [anon_sym_SQUOTE] = ACTIONS(4596), + [sym_operator_symbol] = ACTIONS(4596), + [sym_unquoted_symbol] = ACTIONS(4596), + [anon_sym_COLON_DQUOTE] = ACTIONS(4596), + [anon_sym_BQUOTE] = ACTIONS(4596), + [anon_sym_LBRACK] = ACTIONS(4596), + [anon_sym_COMMA] = ACTIONS(4596), + [anon_sym_DASH_GT] = ACTIONS(4596), + [anon_sym_annotation] = ACTIONS(4594), + [anon_sym_end] = ACTIONS(4594), + [anon_sym_AT_LBRACK] = ACTIONS(4596), + [anon_sym_private] = ACTIONS(4594), + [anon_sym_module] = ACTIONS(4594), + [anon_sym_abstract] = ACTIONS(4594), + [anon_sym_class] = ACTIONS(4594), + [anon_sym_LT] = ACTIONS(4596), + [anon_sym_struct] = ACTIONS(4594), + [anon_sym_enum] = ACTIONS(4594), + [anon_sym_STAR] = ACTIONS(4596), + [anon_sym_PIPE] = ACTIONS(4596), + [anon_sym_BANG] = ACTIONS(4596), + [anon_sym_TILDE] = ACTIONS(4596), + [anon_sym_def] = ACTIONS(4594), + [anon_sym_DOT] = ACTIONS(4596), + [anon_sym_protected] = ACTIONS(4594), + [anon_sym_include] = ACTIONS(4594), + [anon_sym_extend] = ACTIONS(4594), + [anon_sym_return] = ACTIONS(4594), + [anon_sym_next] = ACTIONS(4594), + [anon_sym_break] = ACTIONS(4594), + [anon_sym_with] = ACTIONS(4594), + [anon_sym_yield] = ACTIONS(4594), + [anon_sym_typeof] = ACTIONS(4594), + [anon_sym_sizeof] = ACTIONS(4594), + [anon_sym_instance_sizeof] = ACTIONS(4594), + [anon_sym_offsetof] = ACTIONS(4594), + [sym__constant_segment] = ACTIONS(4596), + [anon_sym_COLON_COLON] = ACTIONS(4777), + [anon_sym___LINE__] = ACTIONS(4594), + [anon_sym___END_LINE__] = ACTIONS(4594), + [anon_sym___FILE__] = ACTIONS(4594), + [anon_sym___DIR__] = ACTIONS(4594), + [sym_special_variable] = ACTIONS(4596), + [sym_identifier_method_call] = ACTIONS(4596), + [sym_instance_var] = ACTIONS(4596), + [sym_class_var] = ACTIONS(4596), + [sym_self] = ACTIONS(4594), + [anon_sym_LPAREN2] = ACTIONS(4596), + [anon_sym_QMARK] = ACTIONS(4596), + [anon_sym_alias] = ACTIONS(4594), + [anon_sym_begin] = ACTIONS(4594), + [anon_sym_while] = ACTIONS(4594), + [anon_sym_until] = ACTIONS(4594), + [anon_sym_require] = ACTIONS(4594), + [anon_sym_case] = ACTIONS(4594), + [anon_sym_select] = ACTIONS(4594), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4596), + [sym__start_of_named_tuple] = ACTIONS(4596), + [sym_unary_plus] = ACTIONS(4596), + [sym_unary_minus] = ACTIONS(4596), + [sym_unary_wrapping_plus] = ACTIONS(4596), + [sym_unary_wrapping_minus] = ACTIONS(4596), + [sym__beginless_range_operator] = ACTIONS(4596), + [sym__regex_start] = ACTIONS(4596), + [sym__regular_if_keyword] = ACTIONS(4596), + [sym__regular_unless_keyword] = ACTIONS(4596), + [sym__string_literal_start] = ACTIONS(4596), + [sym__string_percent_literal_start] = ACTIONS(4596), + [sym__command_percent_literal_start] = ACTIONS(4596), + [sym__string_array_percent_literal_start] = ACTIONS(4596), + [sym__symbol_array_percent_literal_start] = ACTIONS(4596), + [sym__regex_percent_literal_start] = ACTIONS(4596), + [sym_heredoc_start] = ACTIONS(4596), [sym__heredoc_body_start] = ACTIONS(7), }, - [2066] = { - [sym__terminator] = STATE(2111), - [sym_heredoc_body] = STATE(2066), - [sym_identifier] = ACTIONS(4826), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4828), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4826), - [sym_true] = ACTIONS(4826), - [sym_false] = ACTIONS(4826), - [aux_sym_integer_token2] = ACTIONS(4826), - [aux_sym_float_token2] = ACTIONS(4828), - [anon_sym_SQUOTE] = ACTIONS(4828), - [sym_operator_symbol] = ACTIONS(4828), - [sym_unquoted_symbol] = ACTIONS(4828), - [anon_sym_COLON_DQUOTE] = ACTIONS(4828), - [anon_sym_BQUOTE] = ACTIONS(4828), - [anon_sym_LBRACK] = ACTIONS(4828), - [anon_sym_DASH_GT] = ACTIONS(4828), - [anon_sym_annotation] = ACTIONS(4826), - [anon_sym_end] = ACTIONS(4826), - [anon_sym_AT_LBRACK] = ACTIONS(4828), - [anon_sym_private] = ACTIONS(4826), - [anon_sym_module] = ACTIONS(4826), - [anon_sym_abstract] = ACTIONS(4826), - [anon_sym_class] = ACTIONS(4826), - [anon_sym_struct] = ACTIONS(4826), - [anon_sym_enum] = ACTIONS(4826), - [anon_sym_STAR] = ACTIONS(4828), - [anon_sym_BANG] = ACTIONS(4828), - [anon_sym_TILDE] = ACTIONS(4828), - [anon_sym_def] = ACTIONS(4826), - [anon_sym_protected] = ACTIONS(4826), - [anon_sym_include] = ACTIONS(4826), - [anon_sym_extend] = ACTIONS(4826), - [anon_sym_return] = ACTIONS(4826), - [anon_sym_next] = ACTIONS(4826), - [anon_sym_break] = ACTIONS(4826), - [anon_sym_with] = ACTIONS(4826), - [anon_sym_yield] = ACTIONS(4826), - [anon_sym_typeof] = ACTIONS(4826), - [anon_sym_sizeof] = ACTIONS(4826), - [anon_sym_instance_sizeof] = ACTIONS(4826), - [anon_sym_offsetof] = ACTIONS(4826), - [sym__constant_segment] = ACTIONS(4828), - [anon_sym_COLON_COLON] = ACTIONS(4828), - [anon_sym___LINE__] = ACTIONS(4826), - [anon_sym___END_LINE__] = ACTIONS(4826), - [anon_sym___FILE__] = ACTIONS(4826), - [anon_sym___DIR__] = ACTIONS(4826), - [sym_special_variable] = ACTIONS(4828), - [sym_identifier_method_call] = ACTIONS(4828), - [sym_instance_var] = ACTIONS(4828), - [sym_class_var] = ACTIONS(4828), - [sym_self] = ACTIONS(4826), - [anon_sym_alias] = ACTIONS(4826), - [anon_sym_begin] = ACTIONS(4826), - [anon_sym_while] = ACTIONS(4826), - [anon_sym_until] = ACTIONS(4826), - [anon_sym_else] = ACTIONS(4826), - [anon_sym_require] = ACTIONS(4826), - [anon_sym_case] = ACTIONS(4826), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4828), - [sym__start_of_named_tuple] = ACTIONS(4828), - [sym_unary_plus] = ACTIONS(4828), - [sym_unary_minus] = ACTIONS(4828), - [sym_unary_wrapping_plus] = ACTIONS(4828), - [sym_unary_wrapping_minus] = ACTIONS(4828), - [sym__beginless_range_operator] = ACTIONS(4828), - [sym__regex_start] = ACTIONS(4828), - [sym__regular_if_keyword] = ACTIONS(4828), - [sym__regular_unless_keyword] = ACTIONS(4828), - [sym__regular_rescue_keyword] = ACTIONS(4828), - [sym__regular_ensure_keyword] = ACTIONS(4828), - [sym__string_literal_start] = ACTIONS(4828), - [sym__string_percent_literal_start] = ACTIONS(4828), - [sym__command_percent_literal_start] = ACTIONS(4828), - [sym__string_array_percent_literal_start] = ACTIONS(4828), - [sym__symbol_array_percent_literal_start] = ACTIONS(4828), - [sym__regex_percent_literal_start] = ACTIONS(4828), - [sym_heredoc_start] = ACTIONS(4828), + [2048] = { + [sym__terminator] = STATE(2106), + [sym_heredoc_body] = STATE(2048), + [sym_forall] = STATE(2069), + [sym_identifier] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4806), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4804), + [sym_true] = ACTIONS(4804), + [sym_false] = ACTIONS(4804), + [aux_sym_integer_token2] = ACTIONS(4804), + [aux_sym_float_token2] = ACTIONS(4806), + [anon_sym_SQUOTE] = ACTIONS(4806), + [sym_operator_symbol] = ACTIONS(4806), + [sym_unquoted_symbol] = ACTIONS(4806), + [anon_sym_COLON_DQUOTE] = ACTIONS(4806), + [anon_sym_BQUOTE] = ACTIONS(4806), + [anon_sym_LBRACK] = ACTIONS(4806), + [anon_sym_DASH_GT] = ACTIONS(4806), + [anon_sym_annotation] = ACTIONS(4804), + [anon_sym_end] = ACTIONS(4804), + [anon_sym_AT_LBRACK] = ACTIONS(4806), + [anon_sym_private] = ACTIONS(4804), + [anon_sym_module] = ACTIONS(4804), + [anon_sym_abstract] = ACTIONS(4804), + [anon_sym_class] = ACTIONS(4804), + [anon_sym_struct] = ACTIONS(4804), + [anon_sym_enum] = ACTIONS(4804), + [anon_sym_STAR] = ACTIONS(4806), + [anon_sym_BANG] = ACTIONS(4806), + [anon_sym_TILDE] = ACTIONS(4806), + [anon_sym_def] = ACTIONS(4804), + [anon_sym_protected] = ACTIONS(4804), + [anon_sym_include] = ACTIONS(4804), + [anon_sym_extend] = ACTIONS(4804), + [anon_sym_forall] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4804), + [anon_sym_next] = ACTIONS(4804), + [anon_sym_break] = ACTIONS(4804), + [anon_sym_with] = ACTIONS(4804), + [anon_sym_yield] = ACTIONS(4804), + [anon_sym_typeof] = ACTIONS(4804), + [anon_sym_sizeof] = ACTIONS(4804), + [anon_sym_instance_sizeof] = ACTIONS(4804), + [anon_sym_offsetof] = ACTIONS(4804), + [sym__constant_segment] = ACTIONS(4806), + [anon_sym_COLON_COLON] = ACTIONS(4806), + [anon_sym___LINE__] = ACTIONS(4804), + [anon_sym___END_LINE__] = ACTIONS(4804), + [anon_sym___FILE__] = ACTIONS(4804), + [anon_sym___DIR__] = ACTIONS(4804), + [sym_special_variable] = ACTIONS(4806), + [sym_identifier_method_call] = ACTIONS(4806), + [sym_instance_var] = ACTIONS(4806), + [sym_class_var] = ACTIONS(4806), + [sym_self] = ACTIONS(4804), + [anon_sym_alias] = ACTIONS(4804), + [anon_sym_begin] = ACTIONS(4804), + [anon_sym_while] = ACTIONS(4804), + [anon_sym_until] = ACTIONS(4804), + [anon_sym_else] = ACTIONS(4804), + [anon_sym_require] = ACTIONS(4804), + [anon_sym_case] = ACTIONS(4804), + [anon_sym_select] = ACTIONS(4804), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4806), + [sym__start_of_named_tuple] = ACTIONS(4806), + [sym_unary_plus] = ACTIONS(4806), + [sym_unary_minus] = ACTIONS(4806), + [sym_unary_wrapping_plus] = ACTIONS(4806), + [sym_unary_wrapping_minus] = ACTIONS(4806), + [sym__beginless_range_operator] = ACTIONS(4806), + [sym__regex_start] = ACTIONS(4806), + [sym__regular_if_keyword] = ACTIONS(4806), + [sym__regular_unless_keyword] = ACTIONS(4806), + [sym__regular_rescue_keyword] = ACTIONS(4806), + [sym__regular_ensure_keyword] = ACTIONS(4806), + [sym__string_literal_start] = ACTIONS(4806), + [sym__string_percent_literal_start] = ACTIONS(4806), + [sym__command_percent_literal_start] = ACTIONS(4806), + [sym__string_array_percent_literal_start] = ACTIONS(4806), + [sym__symbol_array_percent_literal_start] = ACTIONS(4806), + [sym__regex_percent_literal_start] = ACTIONS(4806), + [sym_heredoc_start] = ACTIONS(4806), [sym__heredoc_body_start] = ACTIONS(7), }, - [2067] = { - [sym_heredoc_body] = STATE(2067), - [sym_identifier] = ACTIONS(4830), - [anon_sym_SEMI] = ACTIONS(4832), - [anon_sym_LPAREN] = ACTIONS(4832), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4830), - [sym_true] = ACTIONS(4830), - [sym_false] = ACTIONS(4830), - [aux_sym_integer_token2] = ACTIONS(4830), - [aux_sym_float_token2] = ACTIONS(4832), - [anon_sym_SQUOTE] = ACTIONS(4832), - [sym_operator_symbol] = ACTIONS(4832), - [sym_unquoted_symbol] = ACTIONS(4832), - [anon_sym_COLON_DQUOTE] = ACTIONS(4832), - [anon_sym_BQUOTE] = ACTIONS(4832), - [anon_sym_LBRACK] = ACTIONS(4832), - [anon_sym_COMMA] = ACTIONS(4832), - [anon_sym_DASH_GT] = ACTIONS(4832), - [anon_sym_annotation] = ACTIONS(4830), - [anon_sym_end] = ACTIONS(4830), - [anon_sym_AT_LBRACK] = ACTIONS(4832), - [anon_sym_private] = ACTIONS(4830), - [anon_sym_module] = ACTIONS(4830), - [anon_sym_abstract] = ACTIONS(4830), - [anon_sym_class] = ACTIONS(4830), - [anon_sym_struct] = ACTIONS(4830), - [anon_sym_enum] = ACTIONS(4830), - [anon_sym_STAR] = ACTIONS(4832), - [anon_sym_BANG] = ACTIONS(4832), - [anon_sym_TILDE] = ACTIONS(4832), - [anon_sym_def] = ACTIONS(4830), - [anon_sym_protected] = ACTIONS(4830), - [anon_sym_include] = ACTIONS(4830), - [anon_sym_extend] = ACTIONS(4830), - [anon_sym_return] = ACTIONS(4830), - [anon_sym_next] = ACTIONS(4830), - [anon_sym_break] = ACTIONS(4830), - [anon_sym_with] = ACTIONS(4830), - [anon_sym_yield] = ACTIONS(4830), - [anon_sym_typeof] = ACTIONS(4830), - [anon_sym_sizeof] = ACTIONS(4830), - [anon_sym_instance_sizeof] = ACTIONS(4830), - [anon_sym_offsetof] = ACTIONS(4830), - [sym__constant_segment] = ACTIONS(4832), - [anon_sym_COLON_COLON] = ACTIONS(4832), - [anon_sym___LINE__] = ACTIONS(4830), - [anon_sym___END_LINE__] = ACTIONS(4830), - [anon_sym___FILE__] = ACTIONS(4830), - [anon_sym___DIR__] = ACTIONS(4830), - [sym_special_variable] = ACTIONS(4832), - [sym_identifier_method_call] = ACTIONS(4832), - [sym_instance_var] = ACTIONS(4832), - [sym_class_var] = ACTIONS(4832), - [sym_self] = ACTIONS(4830), - [anon_sym_alias] = ACTIONS(4830), - [anon_sym_begin] = ACTIONS(4830), - [anon_sym_while] = ACTIONS(4830), - [anon_sym_until] = ACTIONS(4830), - [anon_sym_else] = ACTIONS(4830), - [anon_sym_require] = ACTIONS(4830), - [anon_sym_case] = ACTIONS(4830), - [sym__line_break] = ACTIONS(4832), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4832), - [sym__start_of_named_tuple] = ACTIONS(4832), - [sym_unary_plus] = ACTIONS(4832), - [sym_unary_minus] = ACTIONS(4832), - [sym_unary_wrapping_plus] = ACTIONS(4832), - [sym_unary_wrapping_minus] = ACTIONS(4832), - [sym__beginless_range_operator] = ACTIONS(4832), - [sym__regex_start] = ACTIONS(4832), - [sym__regular_if_keyword] = ACTIONS(4832), - [sym__regular_unless_keyword] = ACTIONS(4832), - [sym__regular_rescue_keyword] = ACTIONS(4832), - [sym__regular_ensure_keyword] = ACTIONS(4832), - [sym__string_literal_start] = ACTIONS(4832), - [sym__string_percent_literal_start] = ACTIONS(4832), - [sym__command_percent_literal_start] = ACTIONS(4832), - [sym__string_array_percent_literal_start] = ACTIONS(4832), - [sym__symbol_array_percent_literal_start] = ACTIONS(4832), - [sym__regex_percent_literal_start] = ACTIONS(4832), - [sym_heredoc_start] = ACTIONS(4832), + [2049] = { + [sym__terminator] = STATE(2099), + [sym_heredoc_body] = STATE(2049), + [sym_forall] = STATE(2056), + [sym_identifier] = ACTIONS(4808), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4810), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4808), + [sym_true] = ACTIONS(4808), + [sym_false] = ACTIONS(4808), + [aux_sym_integer_token2] = ACTIONS(4808), + [aux_sym_float_token2] = ACTIONS(4810), + [anon_sym_SQUOTE] = ACTIONS(4810), + [sym_operator_symbol] = ACTIONS(4810), + [sym_unquoted_symbol] = ACTIONS(4810), + [anon_sym_COLON_DQUOTE] = ACTIONS(4810), + [anon_sym_BQUOTE] = ACTIONS(4810), + [anon_sym_LBRACK] = ACTIONS(4810), + [anon_sym_DASH_GT] = ACTIONS(4810), + [anon_sym_annotation] = ACTIONS(4808), + [anon_sym_end] = ACTIONS(4808), + [anon_sym_AT_LBRACK] = ACTIONS(4810), + [anon_sym_private] = ACTIONS(4808), + [anon_sym_module] = ACTIONS(4808), + [anon_sym_abstract] = ACTIONS(4808), + [anon_sym_class] = ACTIONS(4808), + [anon_sym_struct] = ACTIONS(4808), + [anon_sym_enum] = ACTIONS(4808), + [anon_sym_STAR] = ACTIONS(4810), + [anon_sym_BANG] = ACTIONS(4810), + [anon_sym_TILDE] = ACTIONS(4810), + [anon_sym_def] = ACTIONS(4808), + [anon_sym_protected] = ACTIONS(4808), + [anon_sym_include] = ACTIONS(4808), + [anon_sym_extend] = ACTIONS(4808), + [anon_sym_forall] = ACTIONS(4732), + [anon_sym_return] = ACTIONS(4808), + [anon_sym_next] = ACTIONS(4808), + [anon_sym_break] = ACTIONS(4808), + [anon_sym_with] = ACTIONS(4808), + [anon_sym_yield] = ACTIONS(4808), + [anon_sym_typeof] = ACTIONS(4808), + [anon_sym_sizeof] = ACTIONS(4808), + [anon_sym_instance_sizeof] = ACTIONS(4808), + [anon_sym_offsetof] = ACTIONS(4808), + [sym__constant_segment] = ACTIONS(4810), + [anon_sym_COLON_COLON] = ACTIONS(4810), + [anon_sym___LINE__] = ACTIONS(4808), + [anon_sym___END_LINE__] = ACTIONS(4808), + [anon_sym___FILE__] = ACTIONS(4808), + [anon_sym___DIR__] = ACTIONS(4808), + [sym_special_variable] = ACTIONS(4810), + [sym_identifier_method_call] = ACTIONS(4810), + [sym_instance_var] = ACTIONS(4810), + [sym_class_var] = ACTIONS(4810), + [sym_self] = ACTIONS(4808), + [anon_sym_alias] = ACTIONS(4808), + [anon_sym_begin] = ACTIONS(4808), + [anon_sym_while] = ACTIONS(4808), + [anon_sym_until] = ACTIONS(4808), + [anon_sym_else] = ACTIONS(4808), + [anon_sym_require] = ACTIONS(4808), + [anon_sym_case] = ACTIONS(4808), + [anon_sym_select] = ACTIONS(4808), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4810), + [sym__start_of_named_tuple] = ACTIONS(4810), + [sym_unary_plus] = ACTIONS(4810), + [sym_unary_minus] = ACTIONS(4810), + [sym_unary_wrapping_plus] = ACTIONS(4810), + [sym_unary_wrapping_minus] = ACTIONS(4810), + [sym__beginless_range_operator] = ACTIONS(4810), + [sym__regex_start] = ACTIONS(4810), + [sym__regular_if_keyword] = ACTIONS(4810), + [sym__regular_unless_keyword] = ACTIONS(4810), + [sym__regular_rescue_keyword] = ACTIONS(4810), + [sym__regular_ensure_keyword] = ACTIONS(4810), + [sym__string_literal_start] = ACTIONS(4810), + [sym__string_percent_literal_start] = ACTIONS(4810), + [sym__command_percent_literal_start] = ACTIONS(4810), + [sym__string_array_percent_literal_start] = ACTIONS(4810), + [sym__symbol_array_percent_literal_start] = ACTIONS(4810), + [sym__regex_percent_literal_start] = ACTIONS(4810), + [sym_heredoc_start] = ACTIONS(4810), [sym__heredoc_body_start] = ACTIONS(7), }, - [2068] = { - [sym__terminator] = STATE(2123), - [sym_heredoc_body] = STATE(2068), - [sym_identifier] = ACTIONS(4834), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4836), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4834), - [sym_true] = ACTIONS(4834), - [sym_false] = ACTIONS(4834), - [aux_sym_integer_token2] = ACTIONS(4834), - [aux_sym_float_token2] = ACTIONS(4836), - [anon_sym_SQUOTE] = ACTIONS(4836), - [sym_operator_symbol] = ACTIONS(4836), - [sym_unquoted_symbol] = ACTIONS(4836), - [anon_sym_COLON_DQUOTE] = ACTIONS(4836), - [anon_sym_BQUOTE] = ACTIONS(4836), - [anon_sym_LBRACK] = ACTIONS(4836), - [anon_sym_DASH_GT] = ACTIONS(4836), - [anon_sym_annotation] = ACTIONS(4834), - [anon_sym_end] = ACTIONS(4834), - [anon_sym_AT_LBRACK] = ACTIONS(4836), - [anon_sym_private] = ACTIONS(4834), - [anon_sym_module] = ACTIONS(4834), - [anon_sym_abstract] = ACTIONS(4834), - [anon_sym_class] = ACTIONS(4834), - [anon_sym_struct] = ACTIONS(4834), - [anon_sym_enum] = ACTIONS(4834), - [anon_sym_STAR] = ACTIONS(4836), - [anon_sym_BANG] = ACTIONS(4836), - [anon_sym_TILDE] = ACTIONS(4836), - [anon_sym_def] = ACTIONS(4834), - [anon_sym_protected] = ACTIONS(4834), - [anon_sym_include] = ACTIONS(4834), - [anon_sym_extend] = ACTIONS(4834), - [anon_sym_return] = ACTIONS(4834), - [anon_sym_next] = ACTIONS(4834), - [anon_sym_break] = ACTIONS(4834), - [anon_sym_with] = ACTIONS(4834), - [anon_sym_yield] = ACTIONS(4834), - [anon_sym_typeof] = ACTIONS(4834), - [anon_sym_sizeof] = ACTIONS(4834), - [anon_sym_instance_sizeof] = ACTIONS(4834), - [anon_sym_offsetof] = ACTIONS(4834), - [sym__constant_segment] = ACTIONS(4836), - [anon_sym_COLON_COLON] = ACTIONS(4836), - [anon_sym___LINE__] = ACTIONS(4834), - [anon_sym___END_LINE__] = ACTIONS(4834), - [anon_sym___FILE__] = ACTIONS(4834), - [anon_sym___DIR__] = ACTIONS(4834), - [sym_special_variable] = ACTIONS(4836), - [sym_identifier_method_call] = ACTIONS(4836), - [sym_instance_var] = ACTIONS(4836), - [sym_class_var] = ACTIONS(4836), - [sym_self] = ACTIONS(4834), - [anon_sym_alias] = ACTIONS(4834), - [anon_sym_begin] = ACTIONS(4834), - [anon_sym_while] = ACTIONS(4834), - [anon_sym_until] = ACTIONS(4834), - [anon_sym_else] = ACTIONS(4834), - [anon_sym_require] = ACTIONS(4834), - [anon_sym_case] = ACTIONS(4834), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4836), - [sym__start_of_named_tuple] = ACTIONS(4836), - [sym_unary_plus] = ACTIONS(4836), - [sym_unary_minus] = ACTIONS(4836), - [sym_unary_wrapping_plus] = ACTIONS(4836), - [sym_unary_wrapping_minus] = ACTIONS(4836), - [sym__beginless_range_operator] = ACTIONS(4836), - [sym__regex_start] = ACTIONS(4836), - [sym__regular_if_keyword] = ACTIONS(4836), - [sym__regular_unless_keyword] = ACTIONS(4836), - [sym__regular_rescue_keyword] = ACTIONS(4836), - [sym__regular_ensure_keyword] = ACTIONS(4836), - [sym__string_literal_start] = ACTIONS(4836), - [sym__string_percent_literal_start] = ACTIONS(4836), - [sym__command_percent_literal_start] = ACTIONS(4836), - [sym__string_array_percent_literal_start] = ACTIONS(4836), - [sym__symbol_array_percent_literal_start] = ACTIONS(4836), - [sym__regex_percent_literal_start] = ACTIONS(4836), - [sym_heredoc_start] = ACTIONS(4836), + [2050] = { + [sym_heredoc_body] = STATE(2050), + [aux_sym_forall_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4814), + [anon_sym_LPAREN] = ACTIONS(4814), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4812), + [sym_true] = ACTIONS(4812), + [sym_false] = ACTIONS(4812), + [aux_sym_integer_token2] = ACTIONS(4812), + [aux_sym_float_token2] = ACTIONS(4814), + [anon_sym_SQUOTE] = ACTIONS(4814), + [sym_operator_symbol] = ACTIONS(4814), + [sym_unquoted_symbol] = ACTIONS(4814), + [anon_sym_COLON_DQUOTE] = ACTIONS(4814), + [anon_sym_BQUOTE] = ACTIONS(4814), + [anon_sym_LBRACK] = ACTIONS(4814), + [anon_sym_COMMA] = ACTIONS(4816), + [anon_sym_DASH_GT] = ACTIONS(4814), + [anon_sym_annotation] = ACTIONS(4812), + [anon_sym_end] = ACTIONS(4812), + [anon_sym_AT_LBRACK] = ACTIONS(4814), + [anon_sym_private] = ACTIONS(4812), + [anon_sym_module] = ACTIONS(4812), + [anon_sym_abstract] = ACTIONS(4812), + [anon_sym_class] = ACTIONS(4812), + [anon_sym_struct] = ACTIONS(4812), + [anon_sym_enum] = ACTIONS(4812), + [anon_sym_STAR] = ACTIONS(4814), + [anon_sym_BANG] = ACTIONS(4814), + [anon_sym_TILDE] = ACTIONS(4814), + [anon_sym_def] = ACTIONS(4812), + [anon_sym_protected] = ACTIONS(4812), + [anon_sym_include] = ACTIONS(4812), + [anon_sym_extend] = ACTIONS(4812), + [anon_sym_return] = ACTIONS(4812), + [anon_sym_next] = ACTIONS(4812), + [anon_sym_break] = ACTIONS(4812), + [anon_sym_with] = ACTIONS(4812), + [anon_sym_yield] = ACTIONS(4812), + [anon_sym_typeof] = ACTIONS(4812), + [anon_sym_sizeof] = ACTIONS(4812), + [anon_sym_instance_sizeof] = ACTIONS(4812), + [anon_sym_offsetof] = ACTIONS(4812), + [sym__constant_segment] = ACTIONS(4814), + [anon_sym_COLON_COLON] = ACTIONS(4814), + [anon_sym___LINE__] = ACTIONS(4812), + [anon_sym___END_LINE__] = ACTIONS(4812), + [anon_sym___FILE__] = ACTIONS(4812), + [anon_sym___DIR__] = ACTIONS(4812), + [sym_special_variable] = ACTIONS(4814), + [sym_identifier_method_call] = ACTIONS(4814), + [sym_instance_var] = ACTIONS(4814), + [sym_class_var] = ACTIONS(4814), + [sym_self] = ACTIONS(4812), + [anon_sym_alias] = ACTIONS(4812), + [anon_sym_begin] = ACTIONS(4812), + [anon_sym_while] = ACTIONS(4812), + [anon_sym_until] = ACTIONS(4812), + [anon_sym_else] = ACTIONS(4812), + [anon_sym_require] = ACTIONS(4812), + [anon_sym_case] = ACTIONS(4812), + [anon_sym_select] = ACTIONS(4812), + [sym__line_break] = ACTIONS(4814), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4814), + [sym__start_of_named_tuple] = ACTIONS(4814), + [sym_unary_plus] = ACTIONS(4814), + [sym_unary_minus] = ACTIONS(4814), + [sym_unary_wrapping_plus] = ACTIONS(4814), + [sym_unary_wrapping_minus] = ACTIONS(4814), + [sym__beginless_range_operator] = ACTIONS(4814), + [sym__regex_start] = ACTIONS(4814), + [sym__regular_if_keyword] = ACTIONS(4814), + [sym__regular_unless_keyword] = ACTIONS(4814), + [sym__regular_rescue_keyword] = ACTIONS(4814), + [sym__regular_ensure_keyword] = ACTIONS(4814), + [sym__string_literal_start] = ACTIONS(4814), + [sym__string_percent_literal_start] = ACTIONS(4814), + [sym__command_percent_literal_start] = ACTIONS(4814), + [sym__string_array_percent_literal_start] = ACTIONS(4814), + [sym__symbol_array_percent_literal_start] = ACTIONS(4814), + [sym__regex_percent_literal_start] = ACTIONS(4814), + [sym_heredoc_start] = ACTIONS(4814), [sym__heredoc_body_start] = ACTIONS(7), }, - [2069] = { - [sym__terminator] = STATE(2119), - [sym_heredoc_body] = STATE(2069), - [sym_identifier] = ACTIONS(4838), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4840), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4838), - [sym_true] = ACTIONS(4838), - [sym_false] = ACTIONS(4838), - [aux_sym_integer_token2] = ACTIONS(4838), - [aux_sym_float_token2] = ACTIONS(4840), - [anon_sym_SQUOTE] = ACTIONS(4840), - [sym_operator_symbol] = ACTIONS(4840), - [sym_unquoted_symbol] = ACTIONS(4840), - [anon_sym_COLON_DQUOTE] = ACTIONS(4840), - [anon_sym_BQUOTE] = ACTIONS(4840), - [anon_sym_LBRACK] = ACTIONS(4840), - [anon_sym_DASH_GT] = ACTIONS(4840), - [anon_sym_annotation] = ACTIONS(4838), - [anon_sym_end] = ACTIONS(4838), - [anon_sym_AT_LBRACK] = ACTIONS(4840), - [anon_sym_private] = ACTIONS(4838), - [anon_sym_module] = ACTIONS(4838), - [anon_sym_abstract] = ACTIONS(4838), - [anon_sym_class] = ACTIONS(4838), - [anon_sym_struct] = ACTIONS(4838), - [anon_sym_enum] = ACTIONS(4838), - [anon_sym_STAR] = ACTIONS(4840), - [anon_sym_BANG] = ACTIONS(4840), - [anon_sym_TILDE] = ACTIONS(4840), - [anon_sym_def] = ACTIONS(4838), - [anon_sym_protected] = ACTIONS(4838), - [anon_sym_include] = ACTIONS(4838), - [anon_sym_extend] = ACTIONS(4838), - [anon_sym_return] = ACTIONS(4838), - [anon_sym_next] = ACTIONS(4838), - [anon_sym_break] = ACTIONS(4838), - [anon_sym_with] = ACTIONS(4838), - [anon_sym_yield] = ACTIONS(4838), - [anon_sym_typeof] = ACTIONS(4838), - [anon_sym_sizeof] = ACTIONS(4838), - [anon_sym_instance_sizeof] = ACTIONS(4838), - [anon_sym_offsetof] = ACTIONS(4838), - [sym__constant_segment] = ACTIONS(4840), - [anon_sym_COLON_COLON] = ACTIONS(4840), - [anon_sym___LINE__] = ACTIONS(4838), - [anon_sym___END_LINE__] = ACTIONS(4838), - [anon_sym___FILE__] = ACTIONS(4838), - [anon_sym___DIR__] = ACTIONS(4838), - [sym_special_variable] = ACTIONS(4840), - [sym_identifier_method_call] = ACTIONS(4840), - [sym_instance_var] = ACTIONS(4840), - [sym_class_var] = ACTIONS(4840), - [sym_self] = ACTIONS(4838), - [anon_sym_alias] = ACTIONS(4838), - [anon_sym_begin] = ACTIONS(4838), - [anon_sym_while] = ACTIONS(4838), - [anon_sym_until] = ACTIONS(4838), - [anon_sym_else] = ACTIONS(4838), - [anon_sym_require] = ACTIONS(4838), - [anon_sym_case] = ACTIONS(4838), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4840), - [sym__start_of_named_tuple] = ACTIONS(4840), - [sym_unary_plus] = ACTIONS(4840), - [sym_unary_minus] = ACTIONS(4840), - [sym_unary_wrapping_plus] = ACTIONS(4840), - [sym_unary_wrapping_minus] = ACTIONS(4840), - [sym__beginless_range_operator] = ACTIONS(4840), - [sym__regex_start] = ACTIONS(4840), - [sym__regular_if_keyword] = ACTIONS(4840), - [sym__regular_unless_keyword] = ACTIONS(4840), - [sym__regular_rescue_keyword] = ACTIONS(4840), - [sym__regular_ensure_keyword] = ACTIONS(4840), - [sym__string_literal_start] = ACTIONS(4840), - [sym__string_percent_literal_start] = ACTIONS(4840), - [sym__command_percent_literal_start] = ACTIONS(4840), - [sym__string_array_percent_literal_start] = ACTIONS(4840), - [sym__symbol_array_percent_literal_start] = ACTIONS(4840), - [sym__regex_percent_literal_start] = ACTIONS(4840), - [sym_heredoc_start] = ACTIONS(4840), + [2051] = { + [sym_heredoc_body] = STATE(2051), + [aux_sym_forall_repeat1] = STATE(2050), + [sym_identifier] = ACTIONS(4819), + [anon_sym_SEMI] = ACTIONS(4821), + [anon_sym_LPAREN] = ACTIONS(4821), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4819), + [sym_true] = ACTIONS(4819), + [sym_false] = ACTIONS(4819), + [aux_sym_integer_token2] = ACTIONS(4819), + [aux_sym_float_token2] = ACTIONS(4821), + [anon_sym_SQUOTE] = ACTIONS(4821), + [sym_operator_symbol] = ACTIONS(4821), + [sym_unquoted_symbol] = ACTIONS(4821), + [anon_sym_COLON_DQUOTE] = ACTIONS(4821), + [anon_sym_BQUOTE] = ACTIONS(4821), + [anon_sym_LBRACK] = ACTIONS(4821), + [anon_sym_COMMA] = ACTIONS(4823), + [anon_sym_DASH_GT] = ACTIONS(4821), + [anon_sym_annotation] = ACTIONS(4819), + [anon_sym_end] = ACTIONS(4819), + [anon_sym_AT_LBRACK] = ACTIONS(4821), + [anon_sym_private] = ACTIONS(4819), + [anon_sym_module] = ACTIONS(4819), + [anon_sym_abstract] = ACTIONS(4819), + [anon_sym_class] = ACTIONS(4819), + [anon_sym_struct] = ACTIONS(4819), + [anon_sym_enum] = ACTIONS(4819), + [anon_sym_STAR] = ACTIONS(4821), + [anon_sym_BANG] = ACTIONS(4821), + [anon_sym_TILDE] = ACTIONS(4821), + [anon_sym_def] = ACTIONS(4819), + [anon_sym_protected] = ACTIONS(4819), + [anon_sym_include] = ACTIONS(4819), + [anon_sym_extend] = ACTIONS(4819), + [anon_sym_return] = ACTIONS(4819), + [anon_sym_next] = ACTIONS(4819), + [anon_sym_break] = ACTIONS(4819), + [anon_sym_with] = ACTIONS(4819), + [anon_sym_yield] = ACTIONS(4819), + [anon_sym_typeof] = ACTIONS(4819), + [anon_sym_sizeof] = ACTIONS(4819), + [anon_sym_instance_sizeof] = ACTIONS(4819), + [anon_sym_offsetof] = ACTIONS(4819), + [sym__constant_segment] = ACTIONS(4821), + [anon_sym_COLON_COLON] = ACTIONS(4821), + [anon_sym___LINE__] = ACTIONS(4819), + [anon_sym___END_LINE__] = ACTIONS(4819), + [anon_sym___FILE__] = ACTIONS(4819), + [anon_sym___DIR__] = ACTIONS(4819), + [sym_special_variable] = ACTIONS(4821), + [sym_identifier_method_call] = ACTIONS(4821), + [sym_instance_var] = ACTIONS(4821), + [sym_class_var] = ACTIONS(4821), + [sym_self] = ACTIONS(4819), + [anon_sym_alias] = ACTIONS(4819), + [anon_sym_begin] = ACTIONS(4819), + [anon_sym_while] = ACTIONS(4819), + [anon_sym_until] = ACTIONS(4819), + [anon_sym_else] = ACTIONS(4819), + [anon_sym_require] = ACTIONS(4819), + [anon_sym_case] = ACTIONS(4819), + [anon_sym_select] = ACTIONS(4819), + [sym__line_break] = ACTIONS(4821), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4821), + [sym__start_of_named_tuple] = ACTIONS(4821), + [sym_unary_plus] = ACTIONS(4821), + [sym_unary_minus] = ACTIONS(4821), + [sym_unary_wrapping_plus] = ACTIONS(4821), + [sym_unary_wrapping_minus] = ACTIONS(4821), + [sym__beginless_range_operator] = ACTIONS(4821), + [sym__regex_start] = ACTIONS(4821), + [sym__regular_if_keyword] = ACTIONS(4821), + [sym__regular_unless_keyword] = ACTIONS(4821), + [sym__regular_rescue_keyword] = ACTIONS(4821), + [sym__regular_ensure_keyword] = ACTIONS(4821), + [sym__string_literal_start] = ACTIONS(4821), + [sym__string_percent_literal_start] = ACTIONS(4821), + [sym__command_percent_literal_start] = ACTIONS(4821), + [sym__string_array_percent_literal_start] = ACTIONS(4821), + [sym__symbol_array_percent_literal_start] = ACTIONS(4821), + [sym__regex_percent_literal_start] = ACTIONS(4821), + [sym_heredoc_start] = ACTIONS(4821), [sym__heredoc_body_start] = ACTIONS(7), }, - [2070] = { - [sym_heredoc_body] = STATE(2070), - [aux_sym_union_type_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(4603), - [anon_sym_SEMI] = ACTIONS(4605), - [anon_sym_LPAREN] = ACTIONS(4605), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4603), - [sym_true] = ACTIONS(4603), - [sym_false] = ACTIONS(4603), - [aux_sym_integer_token2] = ACTIONS(4603), - [aux_sym_float_token2] = ACTIONS(4605), - [anon_sym_SQUOTE] = ACTIONS(4605), - [sym_operator_symbol] = ACTIONS(4605), - [sym_unquoted_symbol] = ACTIONS(4605), - [anon_sym_COLON_DQUOTE] = ACTIONS(4605), - [anon_sym_BQUOTE] = ACTIONS(4605), - [anon_sym_LBRACK] = ACTIONS(4804), - [anon_sym_COMMA] = ACTIONS(4605), - [anon_sym_DASH_GT] = ACTIONS(4605), - [anon_sym_annotation] = ACTIONS(4603), - [anon_sym_end] = ACTIONS(4603), - [anon_sym_AT_LBRACK] = ACTIONS(4605), - [anon_sym_private] = ACTIONS(4603), - [anon_sym_module] = ACTIONS(4603), - [anon_sym_abstract] = ACTIONS(4603), - [anon_sym_class] = ACTIONS(4603), - [anon_sym_struct] = ACTIONS(4603), - [anon_sym_enum] = ACTIONS(4603), - [anon_sym_STAR] = ACTIONS(4806), - [anon_sym_PIPE] = ACTIONS(4808), - [anon_sym_BANG] = ACTIONS(4605), - [anon_sym_TILDE] = ACTIONS(4605), - [anon_sym_def] = ACTIONS(4603), - [anon_sym_DOT] = ACTIONS(4810), - [anon_sym_protected] = ACTIONS(4603), - [anon_sym_include] = ACTIONS(4603), - [anon_sym_extend] = ACTIONS(4603), - [anon_sym_return] = ACTIONS(4603), - [anon_sym_next] = ACTIONS(4603), - [anon_sym_break] = ACTIONS(4603), - [anon_sym_with] = ACTIONS(4603), - [anon_sym_yield] = ACTIONS(4603), - [anon_sym_typeof] = ACTIONS(4603), - [anon_sym_sizeof] = ACTIONS(4603), - [anon_sym_instance_sizeof] = ACTIONS(4603), - [anon_sym_offsetof] = ACTIONS(4603), - [sym__constant_segment] = ACTIONS(4605), - [anon_sym_COLON_COLON] = ACTIONS(4605), - [anon_sym___LINE__] = ACTIONS(4603), - [anon_sym___END_LINE__] = ACTIONS(4603), - [anon_sym___FILE__] = ACTIONS(4603), - [anon_sym___DIR__] = ACTIONS(4603), - [sym_special_variable] = ACTIONS(4605), - [sym_identifier_method_call] = ACTIONS(4605), - [sym_instance_var] = ACTIONS(4605), - [sym_class_var] = ACTIONS(4605), - [sym_self] = ACTIONS(4603), - [anon_sym_QMARK] = ACTIONS(4812), - [anon_sym_alias] = ACTIONS(4603), - [anon_sym_begin] = ACTIONS(4603), - [anon_sym_while] = ACTIONS(4603), - [anon_sym_until] = ACTIONS(4603), - [anon_sym_require] = ACTIONS(4603), - [anon_sym_case] = ACTIONS(4603), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4605), - [sym__start_of_named_tuple] = ACTIONS(4605), - [sym_unary_plus] = ACTIONS(4605), - [sym_unary_minus] = ACTIONS(4605), - [sym_unary_wrapping_plus] = ACTIONS(4605), - [sym_unary_wrapping_minus] = ACTIONS(4605), - [sym__beginless_range_operator] = ACTIONS(4605), - [sym__regex_start] = ACTIONS(4605), - [sym__regular_if_keyword] = ACTIONS(4605), - [sym__regular_unless_keyword] = ACTIONS(4605), - [sym__string_literal_start] = ACTIONS(4605), - [sym__string_percent_literal_start] = ACTIONS(4605), - [sym__command_percent_literal_start] = ACTIONS(4605), - [sym__string_array_percent_literal_start] = ACTIONS(4605), - [sym__symbol_array_percent_literal_start] = ACTIONS(4605), - [sym__regex_percent_literal_start] = ACTIONS(4605), - [sym_heredoc_start] = ACTIONS(4605), + [2052] = { + [sym_heredoc_body] = STATE(2052), + [aux_sym_forall_repeat1] = STATE(2051), + [sym_identifier] = ACTIONS(4825), + [anon_sym_SEMI] = ACTIONS(4827), + [anon_sym_LPAREN] = ACTIONS(4827), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4825), + [sym_true] = ACTIONS(4825), + [sym_false] = ACTIONS(4825), + [aux_sym_integer_token2] = ACTIONS(4825), + [aux_sym_float_token2] = ACTIONS(4827), + [anon_sym_SQUOTE] = ACTIONS(4827), + [sym_operator_symbol] = ACTIONS(4827), + [sym_unquoted_symbol] = ACTIONS(4827), + [anon_sym_COLON_DQUOTE] = ACTIONS(4827), + [anon_sym_BQUOTE] = ACTIONS(4827), + [anon_sym_LBRACK] = ACTIONS(4827), + [anon_sym_COMMA] = ACTIONS(4823), + [anon_sym_DASH_GT] = ACTIONS(4827), + [anon_sym_annotation] = ACTIONS(4825), + [anon_sym_end] = ACTIONS(4825), + [anon_sym_AT_LBRACK] = ACTIONS(4827), + [anon_sym_private] = ACTIONS(4825), + [anon_sym_module] = ACTIONS(4825), + [anon_sym_abstract] = ACTIONS(4825), + [anon_sym_class] = ACTIONS(4825), + [anon_sym_struct] = ACTIONS(4825), + [anon_sym_enum] = ACTIONS(4825), + [anon_sym_STAR] = ACTIONS(4827), + [anon_sym_BANG] = ACTIONS(4827), + [anon_sym_TILDE] = ACTIONS(4827), + [anon_sym_def] = ACTIONS(4825), + [anon_sym_protected] = ACTIONS(4825), + [anon_sym_include] = ACTIONS(4825), + [anon_sym_extend] = ACTIONS(4825), + [anon_sym_return] = ACTIONS(4825), + [anon_sym_next] = ACTIONS(4825), + [anon_sym_break] = ACTIONS(4825), + [anon_sym_with] = ACTIONS(4825), + [anon_sym_yield] = ACTIONS(4825), + [anon_sym_typeof] = ACTIONS(4825), + [anon_sym_sizeof] = ACTIONS(4825), + [anon_sym_instance_sizeof] = ACTIONS(4825), + [anon_sym_offsetof] = ACTIONS(4825), + [sym__constant_segment] = ACTIONS(4827), + [anon_sym_COLON_COLON] = ACTIONS(4827), + [anon_sym___LINE__] = ACTIONS(4825), + [anon_sym___END_LINE__] = ACTIONS(4825), + [anon_sym___FILE__] = ACTIONS(4825), + [anon_sym___DIR__] = ACTIONS(4825), + [sym_special_variable] = ACTIONS(4827), + [sym_identifier_method_call] = ACTIONS(4827), + [sym_instance_var] = ACTIONS(4827), + [sym_class_var] = ACTIONS(4827), + [sym_self] = ACTIONS(4825), + [anon_sym_alias] = ACTIONS(4825), + [anon_sym_begin] = ACTIONS(4825), + [anon_sym_while] = ACTIONS(4825), + [anon_sym_until] = ACTIONS(4825), + [anon_sym_else] = ACTIONS(4825), + [anon_sym_require] = ACTIONS(4825), + [anon_sym_case] = ACTIONS(4825), + [anon_sym_select] = ACTIONS(4825), + [sym__line_break] = ACTIONS(4827), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4827), + [sym__start_of_named_tuple] = ACTIONS(4827), + [sym_unary_plus] = ACTIONS(4827), + [sym_unary_minus] = ACTIONS(4827), + [sym_unary_wrapping_plus] = ACTIONS(4827), + [sym_unary_wrapping_minus] = ACTIONS(4827), + [sym__beginless_range_operator] = ACTIONS(4827), + [sym__regex_start] = ACTIONS(4827), + [sym__regular_if_keyword] = ACTIONS(4827), + [sym__regular_unless_keyword] = ACTIONS(4827), + [sym__regular_rescue_keyword] = ACTIONS(4827), + [sym__regular_ensure_keyword] = ACTIONS(4827), + [sym__string_literal_start] = ACTIONS(4827), + [sym__string_percent_literal_start] = ACTIONS(4827), + [sym__command_percent_literal_start] = ACTIONS(4827), + [sym__string_array_percent_literal_start] = ACTIONS(4827), + [sym__symbol_array_percent_literal_start] = ACTIONS(4827), + [sym__regex_percent_literal_start] = ACTIONS(4827), + [sym_heredoc_start] = ACTIONS(4827), [sym__heredoc_body_start] = ACTIONS(7), }, - [2071] = { - [sym_heredoc_body] = STATE(2071), - [aux_sym_union_type_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(4607), - [anon_sym_SEMI] = ACTIONS(4609), - [anon_sym_LPAREN] = ACTIONS(4609), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4607), - [sym_true] = ACTIONS(4607), - [sym_false] = ACTIONS(4607), - [aux_sym_integer_token2] = ACTIONS(4607), - [aux_sym_float_token2] = ACTIONS(4609), - [anon_sym_SQUOTE] = ACTIONS(4609), - [sym_operator_symbol] = ACTIONS(4609), - [sym_unquoted_symbol] = ACTIONS(4609), - [anon_sym_COLON_DQUOTE] = ACTIONS(4609), - [anon_sym_BQUOTE] = ACTIONS(4609), - [anon_sym_LBRACK] = ACTIONS(4804), - [anon_sym_COMMA] = ACTIONS(4609), - [anon_sym_DASH_GT] = ACTIONS(4609), - [anon_sym_annotation] = ACTIONS(4607), - [anon_sym_end] = ACTIONS(4607), - [anon_sym_AT_LBRACK] = ACTIONS(4609), - [anon_sym_private] = ACTIONS(4607), - [anon_sym_module] = ACTIONS(4607), - [anon_sym_abstract] = ACTIONS(4607), - [anon_sym_class] = ACTIONS(4607), - [anon_sym_struct] = ACTIONS(4607), - [anon_sym_enum] = ACTIONS(4607), - [anon_sym_STAR] = ACTIONS(4806), - [anon_sym_PIPE] = ACTIONS(4808), - [anon_sym_BANG] = ACTIONS(4609), - [anon_sym_TILDE] = ACTIONS(4609), - [anon_sym_def] = ACTIONS(4607), - [anon_sym_DOT] = ACTIONS(4810), - [anon_sym_protected] = ACTIONS(4607), - [anon_sym_include] = ACTIONS(4607), - [anon_sym_extend] = ACTIONS(4607), - [anon_sym_return] = ACTIONS(4607), - [anon_sym_next] = ACTIONS(4607), - [anon_sym_break] = ACTIONS(4607), - [anon_sym_with] = ACTIONS(4607), - [anon_sym_yield] = ACTIONS(4607), - [anon_sym_typeof] = ACTIONS(4607), - [anon_sym_sizeof] = ACTIONS(4607), - [anon_sym_instance_sizeof] = ACTIONS(4607), - [anon_sym_offsetof] = ACTIONS(4607), - [sym__constant_segment] = ACTIONS(4609), - [anon_sym_COLON_COLON] = ACTIONS(4609), - [anon_sym___LINE__] = ACTIONS(4607), - [anon_sym___END_LINE__] = ACTIONS(4607), - [anon_sym___FILE__] = ACTIONS(4607), - [anon_sym___DIR__] = ACTIONS(4607), - [sym_special_variable] = ACTIONS(4609), - [sym_identifier_method_call] = ACTIONS(4609), - [sym_instance_var] = ACTIONS(4609), - [sym_class_var] = ACTIONS(4609), - [sym_self] = ACTIONS(4607), - [anon_sym_QMARK] = ACTIONS(4812), - [anon_sym_alias] = ACTIONS(4607), - [anon_sym_begin] = ACTIONS(4607), - [anon_sym_while] = ACTIONS(4607), - [anon_sym_until] = ACTIONS(4607), - [anon_sym_require] = ACTIONS(4607), - [anon_sym_case] = ACTIONS(4607), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4609), - [sym__start_of_named_tuple] = ACTIONS(4609), - [sym_unary_plus] = ACTIONS(4609), - [sym_unary_minus] = ACTIONS(4609), - [sym_unary_wrapping_plus] = ACTIONS(4609), - [sym_unary_wrapping_minus] = ACTIONS(4609), - [sym__beginless_range_operator] = ACTIONS(4609), - [sym__regex_start] = ACTIONS(4609), - [sym__regular_if_keyword] = ACTIONS(4609), - [sym__regular_unless_keyword] = ACTIONS(4609), - [sym__string_literal_start] = ACTIONS(4609), - [sym__string_percent_literal_start] = ACTIONS(4609), - [sym__command_percent_literal_start] = ACTIONS(4609), - [sym__string_array_percent_literal_start] = ACTIONS(4609), - [sym__symbol_array_percent_literal_start] = ACTIONS(4609), - [sym__regex_percent_literal_start] = ACTIONS(4609), - [sym_heredoc_start] = ACTIONS(4609), + [2053] = { + [sym_heredoc_body] = STATE(2053), + [sym_identifier] = ACTIONS(4598), + [anon_sym_SEMI] = ACTIONS(4600), + [anon_sym_LPAREN] = ACTIONS(4598), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4598), + [sym_true] = ACTIONS(4598), + [sym_false] = ACTIONS(4598), + [aux_sym_integer_token2] = ACTIONS(4598), + [aux_sym_float_token2] = ACTIONS(4600), + [anon_sym_SQUOTE] = ACTIONS(4600), + [sym_operator_symbol] = ACTIONS(4600), + [sym_unquoted_symbol] = ACTIONS(4600), + [anon_sym_COLON_DQUOTE] = ACTIONS(4600), + [anon_sym_BQUOTE] = ACTIONS(4600), + [anon_sym_LBRACK] = ACTIONS(4600), + [anon_sym_COMMA] = ACTIONS(4600), + [anon_sym_DASH_GT] = ACTIONS(4600), + [anon_sym_annotation] = ACTIONS(4598), + [anon_sym_end] = ACTIONS(4598), + [anon_sym_AT_LBRACK] = ACTIONS(4600), + [anon_sym_private] = ACTIONS(4598), + [anon_sym_module] = ACTIONS(4598), + [anon_sym_abstract] = ACTIONS(4598), + [anon_sym_class] = ACTIONS(4598), + [anon_sym_LT] = ACTIONS(4600), + [anon_sym_struct] = ACTIONS(4598), + [anon_sym_enum] = ACTIONS(4598), + [anon_sym_STAR] = ACTIONS(4600), + [anon_sym_PIPE] = ACTIONS(4600), + [anon_sym_BANG] = ACTIONS(4600), + [anon_sym_TILDE] = ACTIONS(4600), + [anon_sym_def] = ACTIONS(4598), + [anon_sym_DOT] = ACTIONS(4600), + [anon_sym_protected] = ACTIONS(4598), + [anon_sym_include] = ACTIONS(4598), + [anon_sym_extend] = ACTIONS(4598), + [anon_sym_return] = ACTIONS(4598), + [anon_sym_next] = ACTIONS(4598), + [anon_sym_break] = ACTIONS(4598), + [anon_sym_with] = ACTIONS(4598), + [anon_sym_yield] = ACTIONS(4598), + [anon_sym_typeof] = ACTIONS(4598), + [anon_sym_sizeof] = ACTIONS(4598), + [anon_sym_instance_sizeof] = ACTIONS(4598), + [anon_sym_offsetof] = ACTIONS(4598), + [sym__constant_segment] = ACTIONS(4600), + [anon_sym_COLON_COLON] = ACTIONS(4600), + [anon_sym___LINE__] = ACTIONS(4598), + [anon_sym___END_LINE__] = ACTIONS(4598), + [anon_sym___FILE__] = ACTIONS(4598), + [anon_sym___DIR__] = ACTIONS(4598), + [sym_special_variable] = ACTIONS(4600), + [sym_identifier_method_call] = ACTIONS(4600), + [sym_instance_var] = ACTIONS(4600), + [sym_class_var] = ACTIONS(4600), + [sym_self] = ACTIONS(4598), + [anon_sym_LPAREN2] = ACTIONS(4600), + [anon_sym_QMARK] = ACTIONS(4600), + [anon_sym_alias] = ACTIONS(4598), + [anon_sym_begin] = ACTIONS(4598), + [anon_sym_while] = ACTIONS(4598), + [anon_sym_until] = ACTIONS(4598), + [anon_sym_require] = ACTIONS(4598), + [anon_sym_case] = ACTIONS(4598), + [anon_sym_select] = ACTIONS(4598), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4600), + [sym__start_of_named_tuple] = ACTIONS(4600), + [sym_unary_plus] = ACTIONS(4600), + [sym_unary_minus] = ACTIONS(4600), + [sym_unary_wrapping_plus] = ACTIONS(4600), + [sym_unary_wrapping_minus] = ACTIONS(4600), + [sym__beginless_range_operator] = ACTIONS(4600), + [sym__regex_start] = ACTIONS(4600), + [sym__regular_if_keyword] = ACTIONS(4600), + [sym__regular_unless_keyword] = ACTIONS(4600), + [sym__string_literal_start] = ACTIONS(4600), + [sym__string_percent_literal_start] = ACTIONS(4600), + [sym__command_percent_literal_start] = ACTIONS(4600), + [sym__string_array_percent_literal_start] = ACTIONS(4600), + [sym__symbol_array_percent_literal_start] = ACTIONS(4600), + [sym__regex_percent_literal_start] = ACTIONS(4600), + [sym_heredoc_start] = ACTIONS(4600), [sym__heredoc_body_start] = ACTIONS(7), }, - [2072] = { - [sym_heredoc_body] = STATE(2072), - [aux_sym_union_type_repeat1] = STATE(2072), - [sym_identifier] = ACTIONS(4586), - [anon_sym_SEMI] = ACTIONS(4588), - [anon_sym_LPAREN] = ACTIONS(4588), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4586), - [sym_true] = ACTIONS(4586), - [sym_false] = ACTIONS(4586), - [aux_sym_integer_token2] = ACTIONS(4586), - [aux_sym_float_token2] = ACTIONS(4588), - [anon_sym_SQUOTE] = ACTIONS(4588), - [sym_operator_symbol] = ACTIONS(4588), - [sym_unquoted_symbol] = ACTIONS(4588), - [anon_sym_COLON_DQUOTE] = ACTIONS(4588), - [anon_sym_BQUOTE] = ACTIONS(4588), - [anon_sym_LBRACK] = ACTIONS(4588), - [anon_sym_COMMA] = ACTIONS(4588), - [anon_sym_DASH_GT] = ACTIONS(4588), - [anon_sym_annotation] = ACTIONS(4586), - [anon_sym_end] = ACTIONS(4586), - [anon_sym_AT_LBRACK] = ACTIONS(4588), - [anon_sym_private] = ACTIONS(4586), - [anon_sym_module] = ACTIONS(4586), - [anon_sym_abstract] = ACTIONS(4586), - [anon_sym_class] = ACTIONS(4586), - [anon_sym_struct] = ACTIONS(4586), - [anon_sym_enum] = ACTIONS(4586), - [anon_sym_STAR] = ACTIONS(4588), - [anon_sym_PIPE] = ACTIONS(4842), - [anon_sym_BANG] = ACTIONS(4588), - [anon_sym_TILDE] = ACTIONS(4588), - [anon_sym_def] = ACTIONS(4586), - [anon_sym_DOT] = ACTIONS(4588), - [anon_sym_protected] = ACTIONS(4586), - [anon_sym_include] = ACTIONS(4586), - [anon_sym_extend] = ACTIONS(4586), - [anon_sym_return] = ACTIONS(4586), - [anon_sym_next] = ACTIONS(4586), - [anon_sym_break] = ACTIONS(4586), - [anon_sym_with] = ACTIONS(4586), - [anon_sym_yield] = ACTIONS(4586), - [anon_sym_typeof] = ACTIONS(4586), - [anon_sym_sizeof] = ACTIONS(4586), - [anon_sym_instance_sizeof] = ACTIONS(4586), - [anon_sym_offsetof] = ACTIONS(4586), - [sym__constant_segment] = ACTIONS(4588), - [anon_sym_COLON_COLON] = ACTIONS(4588), - [anon_sym___LINE__] = ACTIONS(4586), - [anon_sym___END_LINE__] = ACTIONS(4586), - [anon_sym___FILE__] = ACTIONS(4586), - [anon_sym___DIR__] = ACTIONS(4586), - [sym_special_variable] = ACTIONS(4588), - [sym_identifier_method_call] = ACTIONS(4588), - [sym_instance_var] = ACTIONS(4588), - [sym_class_var] = ACTIONS(4588), - [sym_self] = ACTIONS(4586), - [anon_sym_QMARK] = ACTIONS(4588), - [anon_sym_alias] = ACTIONS(4586), - [anon_sym_begin] = ACTIONS(4586), - [anon_sym_while] = ACTIONS(4586), - [anon_sym_until] = ACTIONS(4586), - [anon_sym_require] = ACTIONS(4586), - [anon_sym_case] = ACTIONS(4586), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4588), - [sym__start_of_named_tuple] = ACTIONS(4588), - [sym_unary_plus] = ACTIONS(4588), - [sym_unary_minus] = ACTIONS(4588), - [sym_unary_wrapping_plus] = ACTIONS(4588), - [sym_unary_wrapping_minus] = ACTIONS(4588), - [sym__beginless_range_operator] = ACTIONS(4588), - [sym__regex_start] = ACTIONS(4588), - [sym__regular_if_keyword] = ACTIONS(4588), - [sym__regular_unless_keyword] = ACTIONS(4588), - [sym__string_literal_start] = ACTIONS(4588), - [sym__string_percent_literal_start] = ACTIONS(4588), - [sym__command_percent_literal_start] = ACTIONS(4588), - [sym__string_array_percent_literal_start] = ACTIONS(4588), - [sym__symbol_array_percent_literal_start] = ACTIONS(4588), - [sym__regex_percent_literal_start] = ACTIONS(4588), - [sym_heredoc_start] = ACTIONS(4588), + [2054] = { + [sym_heredoc_body] = STATE(2054), + [sym_identifier] = ACTIONS(4346), + [anon_sym_SEMI] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4346), + [sym_true] = ACTIONS(4346), + [sym_false] = ACTIONS(4346), + [aux_sym_integer_token2] = ACTIONS(4346), + [aux_sym_float_token2] = ACTIONS(4344), + [anon_sym_SQUOTE] = ACTIONS(4344), + [sym_operator_symbol] = ACTIONS(4344), + [sym_unquoted_symbol] = ACTIONS(4344), + [anon_sym_COLON_DQUOTE] = ACTIONS(4344), + [anon_sym_BQUOTE] = ACTIONS(4344), + [anon_sym_LBRACK] = ACTIONS(4344), + [anon_sym_DASH_GT] = ACTIONS(4344), + [anon_sym_annotation] = ACTIONS(4346), + [anon_sym_end] = ACTIONS(4346), + [anon_sym_AT_LBRACK] = ACTIONS(4344), + [anon_sym_private] = ACTIONS(4346), + [anon_sym_module] = ACTIONS(4346), + [anon_sym_abstract] = ACTIONS(4346), + [anon_sym_class] = ACTIONS(4346), + [anon_sym_struct] = ACTIONS(4346), + [anon_sym_enum] = ACTIONS(4346), + [anon_sym_STAR] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4344), + [anon_sym_TILDE] = ACTIONS(4344), + [anon_sym_def] = ACTIONS(4346), + [aux_sym__base_method_def_token1] = ACTIONS(4344), + [anon_sym_protected] = ACTIONS(4346), + [anon_sym_include] = ACTIONS(4346), + [anon_sym_extend] = ACTIONS(4346), + [anon_sym_forall] = ACTIONS(4346), + [anon_sym_return] = ACTIONS(4346), + [anon_sym_next] = ACTIONS(4346), + [anon_sym_break] = ACTIONS(4346), + [anon_sym_with] = ACTIONS(4346), + [anon_sym_yield] = ACTIONS(4346), + [anon_sym_typeof] = ACTIONS(4346), + [anon_sym_sizeof] = ACTIONS(4346), + [anon_sym_instance_sizeof] = ACTIONS(4346), + [anon_sym_offsetof] = ACTIONS(4346), + [sym__constant_segment] = ACTIONS(4344), + [anon_sym_COLON_COLON] = ACTIONS(4344), + [anon_sym___LINE__] = ACTIONS(4346), + [anon_sym___END_LINE__] = ACTIONS(4346), + [anon_sym___FILE__] = ACTIONS(4346), + [anon_sym___DIR__] = ACTIONS(4346), + [sym_special_variable] = ACTIONS(4344), + [sym_identifier_method_call] = ACTIONS(4344), + [sym_instance_var] = ACTIONS(4344), + [sym_class_var] = ACTIONS(4344), + [sym_self] = ACTIONS(4346), + [anon_sym_alias] = ACTIONS(4346), + [anon_sym_begin] = ACTIONS(4346), + [anon_sym_while] = ACTIONS(4346), + [anon_sym_until] = ACTIONS(4346), + [anon_sym_else] = ACTIONS(4346), + [anon_sym_require] = ACTIONS(4346), + [anon_sym_case] = ACTIONS(4346), + [anon_sym_select] = ACTIONS(4346), + [sym__line_break] = ACTIONS(4344), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4344), + [sym__start_of_named_tuple] = ACTIONS(4344), + [sym_unary_plus] = ACTIONS(4344), + [sym_unary_minus] = ACTIONS(4344), + [sym_unary_wrapping_plus] = ACTIONS(4344), + [sym_unary_wrapping_minus] = ACTIONS(4344), + [sym__beginless_range_operator] = ACTIONS(4344), + [sym__regex_start] = ACTIONS(4344), + [sym__regular_if_keyword] = ACTIONS(4344), + [sym__regular_unless_keyword] = ACTIONS(4344), + [sym__regular_rescue_keyword] = ACTIONS(4344), + [sym__regular_ensure_keyword] = ACTIONS(4344), + [sym__string_literal_start] = ACTIONS(4344), + [sym__string_percent_literal_start] = ACTIONS(4344), + [sym__command_percent_literal_start] = ACTIONS(4344), + [sym__string_array_percent_literal_start] = ACTIONS(4344), + [sym__symbol_array_percent_literal_start] = ACTIONS(4344), + [sym__regex_percent_literal_start] = ACTIONS(4344), + [sym_heredoc_start] = ACTIONS(4344), [sym__heredoc_body_start] = ACTIONS(7), }, - [2073] = { - [sym_heredoc_body] = STATE(2073), - [aux_sym_union_type_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(4611), - [anon_sym_SEMI] = ACTIONS(4613), - [anon_sym_LPAREN] = ACTIONS(4613), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4611), - [sym_true] = ACTIONS(4611), - [sym_false] = ACTIONS(4611), - [aux_sym_integer_token2] = ACTIONS(4611), - [aux_sym_float_token2] = ACTIONS(4613), - [anon_sym_SQUOTE] = ACTIONS(4613), - [sym_operator_symbol] = ACTIONS(4613), - [sym_unquoted_symbol] = ACTIONS(4613), - [anon_sym_COLON_DQUOTE] = ACTIONS(4613), - [anon_sym_BQUOTE] = ACTIONS(4613), - [anon_sym_LBRACK] = ACTIONS(4804), - [anon_sym_COMMA] = ACTIONS(4613), - [anon_sym_DASH_GT] = ACTIONS(4613), - [anon_sym_annotation] = ACTIONS(4611), - [anon_sym_end] = ACTIONS(4611), - [anon_sym_AT_LBRACK] = ACTIONS(4613), - [anon_sym_private] = ACTIONS(4611), - [anon_sym_module] = ACTIONS(4611), - [anon_sym_abstract] = ACTIONS(4611), - [anon_sym_class] = ACTIONS(4611), - [anon_sym_struct] = ACTIONS(4611), - [anon_sym_enum] = ACTIONS(4611), - [anon_sym_STAR] = ACTIONS(4806), - [anon_sym_PIPE] = ACTIONS(4808), - [anon_sym_BANG] = ACTIONS(4613), - [anon_sym_TILDE] = ACTIONS(4613), - [anon_sym_def] = ACTIONS(4611), - [anon_sym_DOT] = ACTIONS(4810), - [anon_sym_protected] = ACTIONS(4611), - [anon_sym_include] = ACTIONS(4611), - [anon_sym_extend] = ACTIONS(4611), - [anon_sym_return] = ACTIONS(4611), - [anon_sym_next] = ACTIONS(4611), - [anon_sym_break] = ACTIONS(4611), - [anon_sym_with] = ACTIONS(4611), - [anon_sym_yield] = ACTIONS(4611), - [anon_sym_typeof] = ACTIONS(4611), - [anon_sym_sizeof] = ACTIONS(4611), - [anon_sym_instance_sizeof] = ACTIONS(4611), - [anon_sym_offsetof] = ACTIONS(4611), - [sym__constant_segment] = ACTIONS(4613), - [anon_sym_COLON_COLON] = ACTIONS(4613), - [anon_sym___LINE__] = ACTIONS(4611), - [anon_sym___END_LINE__] = ACTIONS(4611), - [anon_sym___FILE__] = ACTIONS(4611), - [anon_sym___DIR__] = ACTIONS(4611), - [sym_special_variable] = ACTIONS(4613), - [sym_identifier_method_call] = ACTIONS(4613), - [sym_instance_var] = ACTIONS(4613), - [sym_class_var] = ACTIONS(4613), - [sym_self] = ACTIONS(4611), - [anon_sym_QMARK] = ACTIONS(4812), - [anon_sym_alias] = ACTIONS(4611), - [anon_sym_begin] = ACTIONS(4611), - [anon_sym_while] = ACTIONS(4611), - [anon_sym_until] = ACTIONS(4611), - [anon_sym_require] = ACTIONS(4611), - [anon_sym_case] = ACTIONS(4611), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4613), - [sym__start_of_named_tuple] = ACTIONS(4613), - [sym_unary_plus] = ACTIONS(4613), - [sym_unary_minus] = ACTIONS(4613), - [sym_unary_wrapping_plus] = ACTIONS(4613), - [sym_unary_wrapping_minus] = ACTIONS(4613), - [sym__beginless_range_operator] = ACTIONS(4613), - [sym__regex_start] = ACTIONS(4613), - [sym__regular_if_keyword] = ACTIONS(4613), - [sym__regular_unless_keyword] = ACTIONS(4613), - [sym__string_literal_start] = ACTIONS(4613), - [sym__string_percent_literal_start] = ACTIONS(4613), - [sym__command_percent_literal_start] = ACTIONS(4613), - [sym__string_array_percent_literal_start] = ACTIONS(4613), - [sym__symbol_array_percent_literal_start] = ACTIONS(4613), - [sym__regex_percent_literal_start] = ACTIONS(4613), - [sym_heredoc_start] = ACTIONS(4613), + [2055] = { + [sym_heredoc_body] = STATE(2055), + [sym_identifier] = ACTIONS(4638), + [anon_sym_SEMI] = ACTIONS(4640), + [anon_sym_LPAREN] = ACTIONS(4640), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4638), + [sym_true] = ACTIONS(4638), + [sym_false] = ACTIONS(4638), + [aux_sym_integer_token2] = ACTIONS(4638), + [aux_sym_float_token2] = ACTIONS(4640), + [anon_sym_SQUOTE] = ACTIONS(4640), + [sym_operator_symbol] = ACTIONS(4640), + [sym_unquoted_symbol] = ACTIONS(4640), + [anon_sym_COLON_DQUOTE] = ACTIONS(4640), + [anon_sym_BQUOTE] = ACTIONS(4640), + [anon_sym_LBRACK] = ACTIONS(4640), + [anon_sym_COMMA] = ACTIONS(4640), + [anon_sym_DASH_GT] = ACTIONS(4640), + [anon_sym_annotation] = ACTIONS(4638), + [anon_sym_end] = ACTIONS(4638), + [anon_sym_AT_LBRACK] = ACTIONS(4640), + [anon_sym_private] = ACTIONS(4638), + [anon_sym_module] = ACTIONS(4638), + [anon_sym_abstract] = ACTIONS(4638), + [anon_sym_class] = ACTIONS(4638), + [anon_sym_struct] = ACTIONS(4638), + [anon_sym_enum] = ACTIONS(4638), + [anon_sym_STAR] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(4640), + [anon_sym_TILDE] = ACTIONS(4640), + [anon_sym_def] = ACTIONS(4638), + [anon_sym_protected] = ACTIONS(4638), + [anon_sym_include] = ACTIONS(4638), + [anon_sym_extend] = ACTIONS(4638), + [anon_sym_forall] = ACTIONS(4638), + [anon_sym_return] = ACTIONS(4638), + [anon_sym_next] = ACTIONS(4638), + [anon_sym_break] = ACTIONS(4638), + [anon_sym_with] = ACTIONS(4638), + [anon_sym_yield] = ACTIONS(4638), + [anon_sym_typeof] = ACTIONS(4638), + [anon_sym_sizeof] = ACTIONS(4638), + [anon_sym_instance_sizeof] = ACTIONS(4638), + [anon_sym_offsetof] = ACTIONS(4638), + [sym__constant_segment] = ACTIONS(4640), + [anon_sym_COLON_COLON] = ACTIONS(4640), + [anon_sym___LINE__] = ACTIONS(4638), + [anon_sym___END_LINE__] = ACTIONS(4638), + [anon_sym___FILE__] = ACTIONS(4638), + [anon_sym___DIR__] = ACTIONS(4638), + [sym_special_variable] = ACTIONS(4640), + [sym_identifier_method_call] = ACTIONS(4640), + [sym_instance_var] = ACTIONS(4640), + [sym_class_var] = ACTIONS(4640), + [sym_self] = ACTIONS(4638), + [anon_sym_alias] = ACTIONS(4638), + [anon_sym_begin] = ACTIONS(4638), + [anon_sym_while] = ACTIONS(4638), + [anon_sym_until] = ACTIONS(4638), + [anon_sym_else] = ACTIONS(4638), + [anon_sym_require] = ACTIONS(4638), + [anon_sym_case] = ACTIONS(4638), + [anon_sym_select] = ACTIONS(4638), + [sym__line_break] = ACTIONS(4640), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4640), + [sym__start_of_named_tuple] = ACTIONS(4640), + [sym_unary_plus] = ACTIONS(4640), + [sym_unary_minus] = ACTIONS(4640), + [sym_unary_wrapping_plus] = ACTIONS(4640), + [sym_unary_wrapping_minus] = ACTIONS(4640), + [sym__beginless_range_operator] = ACTIONS(4640), + [sym__regex_start] = ACTIONS(4640), + [sym__regular_if_keyword] = ACTIONS(4640), + [sym__regular_unless_keyword] = ACTIONS(4640), + [sym__regular_rescue_keyword] = ACTIONS(4640), + [sym__regular_ensure_keyword] = ACTIONS(4640), + [sym__string_literal_start] = ACTIONS(4640), + [sym__string_percent_literal_start] = ACTIONS(4640), + [sym__command_percent_literal_start] = ACTIONS(4640), + [sym__string_array_percent_literal_start] = ACTIONS(4640), + [sym__symbol_array_percent_literal_start] = ACTIONS(4640), + [sym__regex_percent_literal_start] = ACTIONS(4640), + [sym_heredoc_start] = ACTIONS(4640), [sym__heredoc_body_start] = ACTIONS(7), }, - [2074] = { - [sym__terminator] = STATE(2112), - [sym_heredoc_body] = STATE(2074), - [sym_identifier] = ACTIONS(4845), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4847), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4845), - [sym_true] = ACTIONS(4845), - [sym_false] = ACTIONS(4845), - [aux_sym_integer_token2] = ACTIONS(4845), - [aux_sym_float_token2] = ACTIONS(4847), - [anon_sym_SQUOTE] = ACTIONS(4847), - [sym_operator_symbol] = ACTIONS(4847), - [sym_unquoted_symbol] = ACTIONS(4847), - [anon_sym_COLON_DQUOTE] = ACTIONS(4847), - [anon_sym_BQUOTE] = ACTIONS(4847), - [anon_sym_LBRACK] = ACTIONS(4847), - [anon_sym_DASH_GT] = ACTIONS(4847), - [anon_sym_annotation] = ACTIONS(4845), - [anon_sym_end] = ACTIONS(4845), - [anon_sym_AT_LBRACK] = ACTIONS(4847), - [anon_sym_private] = ACTIONS(4845), - [anon_sym_module] = ACTIONS(4845), - [anon_sym_abstract] = ACTIONS(4845), - [anon_sym_class] = ACTIONS(4845), - [anon_sym_struct] = ACTIONS(4845), - [anon_sym_enum] = ACTIONS(4845), - [anon_sym_STAR] = ACTIONS(4847), - [anon_sym_BANG] = ACTIONS(4847), - [anon_sym_TILDE] = ACTIONS(4847), - [anon_sym_def] = ACTIONS(4845), - [anon_sym_protected] = ACTIONS(4845), - [anon_sym_include] = ACTIONS(4845), - [anon_sym_extend] = ACTIONS(4845), - [anon_sym_return] = ACTIONS(4845), - [anon_sym_next] = ACTIONS(4845), - [anon_sym_break] = ACTIONS(4845), - [anon_sym_with] = ACTIONS(4845), - [anon_sym_yield] = ACTIONS(4845), - [anon_sym_typeof] = ACTIONS(4845), - [anon_sym_sizeof] = ACTIONS(4845), - [anon_sym_instance_sizeof] = ACTIONS(4845), - [anon_sym_offsetof] = ACTIONS(4845), - [sym__constant_segment] = ACTIONS(4847), - [anon_sym_COLON_COLON] = ACTIONS(4847), - [anon_sym___LINE__] = ACTIONS(4845), - [anon_sym___END_LINE__] = ACTIONS(4845), - [anon_sym___FILE__] = ACTIONS(4845), - [anon_sym___DIR__] = ACTIONS(4845), - [sym_special_variable] = ACTIONS(4847), - [sym_identifier_method_call] = ACTIONS(4847), - [sym_instance_var] = ACTIONS(4847), - [sym_class_var] = ACTIONS(4847), - [sym_self] = ACTIONS(4845), - [anon_sym_alias] = ACTIONS(4845), - [anon_sym_begin] = ACTIONS(4845), - [anon_sym_while] = ACTIONS(4845), - [anon_sym_until] = ACTIONS(4845), - [anon_sym_else] = ACTIONS(4845), - [anon_sym_require] = ACTIONS(4845), - [anon_sym_case] = ACTIONS(4845), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4847), - [sym__start_of_named_tuple] = ACTIONS(4847), - [sym_unary_plus] = ACTIONS(4847), - [sym_unary_minus] = ACTIONS(4847), - [sym_unary_wrapping_plus] = ACTIONS(4847), - [sym_unary_wrapping_minus] = ACTIONS(4847), - [sym__beginless_range_operator] = ACTIONS(4847), - [sym__regex_start] = ACTIONS(4847), - [sym__regular_if_keyword] = ACTIONS(4847), - [sym__regular_unless_keyword] = ACTIONS(4847), - [sym__regular_rescue_keyword] = ACTIONS(4847), - [sym__regular_ensure_keyword] = ACTIONS(4847), - [sym__string_literal_start] = ACTIONS(4847), - [sym__string_percent_literal_start] = ACTIONS(4847), - [sym__command_percent_literal_start] = ACTIONS(4847), - [sym__string_array_percent_literal_start] = ACTIONS(4847), - [sym__symbol_array_percent_literal_start] = ACTIONS(4847), - [sym__regex_percent_literal_start] = ACTIONS(4847), - [sym_heredoc_start] = ACTIONS(4847), + [2056] = { + [sym__terminator] = STATE(2104), + [sym_heredoc_body] = STATE(2056), + [sym_identifier] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4831), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4829), + [sym_true] = ACTIONS(4829), + [sym_false] = ACTIONS(4829), + [aux_sym_integer_token2] = ACTIONS(4829), + [aux_sym_float_token2] = ACTIONS(4831), + [anon_sym_SQUOTE] = ACTIONS(4831), + [sym_operator_symbol] = ACTIONS(4831), + [sym_unquoted_symbol] = ACTIONS(4831), + [anon_sym_COLON_DQUOTE] = ACTIONS(4831), + [anon_sym_BQUOTE] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(4831), + [anon_sym_DASH_GT] = ACTIONS(4831), + [anon_sym_annotation] = ACTIONS(4829), + [anon_sym_end] = ACTIONS(4829), + [anon_sym_AT_LBRACK] = ACTIONS(4831), + [anon_sym_private] = ACTIONS(4829), + [anon_sym_module] = ACTIONS(4829), + [anon_sym_abstract] = ACTIONS(4829), + [anon_sym_class] = ACTIONS(4829), + [anon_sym_struct] = ACTIONS(4829), + [anon_sym_enum] = ACTIONS(4829), + [anon_sym_STAR] = ACTIONS(4831), + [anon_sym_BANG] = ACTIONS(4831), + [anon_sym_TILDE] = ACTIONS(4831), + [anon_sym_def] = ACTIONS(4829), + [anon_sym_protected] = ACTIONS(4829), + [anon_sym_include] = ACTIONS(4829), + [anon_sym_extend] = ACTIONS(4829), + [anon_sym_return] = ACTIONS(4829), + [anon_sym_next] = ACTIONS(4829), + [anon_sym_break] = ACTIONS(4829), + [anon_sym_with] = ACTIONS(4829), + [anon_sym_yield] = ACTIONS(4829), + [anon_sym_typeof] = ACTIONS(4829), + [anon_sym_sizeof] = ACTIONS(4829), + [anon_sym_instance_sizeof] = ACTIONS(4829), + [anon_sym_offsetof] = ACTIONS(4829), + [sym__constant_segment] = ACTIONS(4831), + [anon_sym_COLON_COLON] = ACTIONS(4831), + [anon_sym___LINE__] = ACTIONS(4829), + [anon_sym___END_LINE__] = ACTIONS(4829), + [anon_sym___FILE__] = ACTIONS(4829), + [anon_sym___DIR__] = ACTIONS(4829), + [sym_special_variable] = ACTIONS(4831), + [sym_identifier_method_call] = ACTIONS(4831), + [sym_instance_var] = ACTIONS(4831), + [sym_class_var] = ACTIONS(4831), + [sym_self] = ACTIONS(4829), + [anon_sym_alias] = ACTIONS(4829), + [anon_sym_begin] = ACTIONS(4829), + [anon_sym_while] = ACTIONS(4829), + [anon_sym_until] = ACTIONS(4829), + [anon_sym_else] = ACTIONS(4829), + [anon_sym_require] = ACTIONS(4829), + [anon_sym_case] = ACTIONS(4829), + [anon_sym_select] = ACTIONS(4829), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4831), + [sym__start_of_named_tuple] = ACTIONS(4831), + [sym_unary_plus] = ACTIONS(4831), + [sym_unary_minus] = ACTIONS(4831), + [sym_unary_wrapping_plus] = ACTIONS(4831), + [sym_unary_wrapping_minus] = ACTIONS(4831), + [sym__beginless_range_operator] = ACTIONS(4831), + [sym__regex_start] = ACTIONS(4831), + [sym__regular_if_keyword] = ACTIONS(4831), + [sym__regular_unless_keyword] = ACTIONS(4831), + [sym__regular_rescue_keyword] = ACTIONS(4831), + [sym__regular_ensure_keyword] = ACTIONS(4831), + [sym__string_literal_start] = ACTIONS(4831), + [sym__string_percent_literal_start] = ACTIONS(4831), + [sym__command_percent_literal_start] = ACTIONS(4831), + [sym__string_array_percent_literal_start] = ACTIONS(4831), + [sym__symbol_array_percent_literal_start] = ACTIONS(4831), + [sym__regex_percent_literal_start] = ACTIONS(4831), + [sym_heredoc_start] = ACTIONS(4831), [sym__heredoc_body_start] = ACTIONS(7), }, - [2075] = { - [sym_heredoc_body] = STATE(2075), - [aux_sym_union_type_repeat1] = STATE(2072), - [sym_identifier] = ACTIONS(4582), - [anon_sym_SEMI] = ACTIONS(4584), - [anon_sym_LPAREN] = ACTIONS(4584), + [2057] = { + [sym_heredoc_body] = STATE(2057), + [aux_sym_union_type_repeat1] = STATE(2071), + [sym_identifier] = ACTIONS(4623), + [anon_sym_SEMI] = ACTIONS(4625), + [anon_sym_LPAREN] = ACTIONS(4625), [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4582), - [sym_true] = ACTIONS(4582), - [sym_false] = ACTIONS(4582), - [aux_sym_integer_token2] = ACTIONS(4582), - [aux_sym_float_token2] = ACTIONS(4584), - [anon_sym_SQUOTE] = ACTIONS(4584), - [sym_operator_symbol] = ACTIONS(4584), - [sym_unquoted_symbol] = ACTIONS(4584), - [anon_sym_COLON_DQUOTE] = ACTIONS(4584), - [anon_sym_BQUOTE] = ACTIONS(4584), - [anon_sym_LBRACK] = ACTIONS(4584), - [anon_sym_COMMA] = ACTIONS(4584), - [anon_sym_DASH_GT] = ACTIONS(4584), - [anon_sym_annotation] = ACTIONS(4582), - [anon_sym_end] = ACTIONS(4582), - [anon_sym_AT_LBRACK] = ACTIONS(4584), - [anon_sym_private] = ACTIONS(4582), - [anon_sym_module] = ACTIONS(4582), - [anon_sym_abstract] = ACTIONS(4582), - [anon_sym_class] = ACTIONS(4582), - [anon_sym_struct] = ACTIONS(4582), - [anon_sym_enum] = ACTIONS(4582), - [anon_sym_STAR] = ACTIONS(4584), - [anon_sym_PIPE] = ACTIONS(4808), - [anon_sym_BANG] = ACTIONS(4584), - [anon_sym_TILDE] = ACTIONS(4584), - [anon_sym_def] = ACTIONS(4582), - [anon_sym_DOT] = ACTIONS(4584), - [anon_sym_protected] = ACTIONS(4582), - [anon_sym_include] = ACTIONS(4582), - [anon_sym_extend] = ACTIONS(4582), - [anon_sym_return] = ACTIONS(4582), - [anon_sym_next] = ACTIONS(4582), - [anon_sym_break] = ACTIONS(4582), - [anon_sym_with] = ACTIONS(4582), - [anon_sym_yield] = ACTIONS(4582), - [anon_sym_typeof] = ACTIONS(4582), - [anon_sym_sizeof] = ACTIONS(4582), - [anon_sym_instance_sizeof] = ACTIONS(4582), - [anon_sym_offsetof] = ACTIONS(4582), - [sym__constant_segment] = ACTIONS(4584), - [anon_sym_COLON_COLON] = ACTIONS(4584), - [anon_sym___LINE__] = ACTIONS(4582), - [anon_sym___END_LINE__] = ACTIONS(4582), - [anon_sym___FILE__] = ACTIONS(4582), - [anon_sym___DIR__] = ACTIONS(4582), - [sym_special_variable] = ACTIONS(4584), - [sym_identifier_method_call] = ACTIONS(4584), - [sym_instance_var] = ACTIONS(4584), - [sym_class_var] = ACTIONS(4584), - [sym_self] = ACTIONS(4582), - [anon_sym_QMARK] = ACTIONS(4584), - [anon_sym_alias] = ACTIONS(4582), - [anon_sym_begin] = ACTIONS(4582), - [anon_sym_while] = ACTIONS(4582), - [anon_sym_until] = ACTIONS(4582), - [anon_sym_require] = ACTIONS(4582), - [anon_sym_case] = ACTIONS(4582), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4584), - [sym__start_of_named_tuple] = ACTIONS(4584), - [sym_unary_plus] = ACTIONS(4584), - [sym_unary_minus] = ACTIONS(4584), - [sym_unary_wrapping_plus] = ACTIONS(4584), - [sym_unary_wrapping_minus] = ACTIONS(4584), - [sym__beginless_range_operator] = ACTIONS(4584), - [sym__regex_start] = ACTIONS(4584), - [sym__regular_if_keyword] = ACTIONS(4584), - [sym__regular_unless_keyword] = ACTIONS(4584), - [sym__string_literal_start] = ACTIONS(4584), - [sym__string_percent_literal_start] = ACTIONS(4584), - [sym__command_percent_literal_start] = ACTIONS(4584), - [sym__string_array_percent_literal_start] = ACTIONS(4584), - [sym__symbol_array_percent_literal_start] = ACTIONS(4584), - [sym__regex_percent_literal_start] = ACTIONS(4584), - [sym_heredoc_start] = ACTIONS(4584), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2076] = { - [sym__terminator] = STATE(2098), - [sym_heredoc_body] = STATE(2076), - [sym_identifier] = ACTIONS(4849), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4851), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4849), - [sym_true] = ACTIONS(4849), - [sym_false] = ACTIONS(4849), - [aux_sym_integer_token2] = ACTIONS(4849), - [aux_sym_float_token2] = ACTIONS(4851), - [anon_sym_SQUOTE] = ACTIONS(4851), - [sym_operator_symbol] = ACTIONS(4851), - [sym_unquoted_symbol] = ACTIONS(4851), - [anon_sym_COLON_DQUOTE] = ACTIONS(4851), - [anon_sym_BQUOTE] = ACTIONS(4851), - [anon_sym_LBRACK] = ACTIONS(4851), - [anon_sym_DASH_GT] = ACTIONS(4851), - [anon_sym_annotation] = ACTIONS(4849), - [anon_sym_end] = ACTIONS(4849), - [anon_sym_AT_LBRACK] = ACTIONS(4851), - [anon_sym_private] = ACTIONS(4849), - [anon_sym_module] = ACTIONS(4849), - [anon_sym_abstract] = ACTIONS(4849), - [anon_sym_class] = ACTIONS(4849), - [anon_sym_struct] = ACTIONS(4849), - [anon_sym_enum] = ACTIONS(4849), - [anon_sym_STAR] = ACTIONS(4851), - [anon_sym_BANG] = ACTIONS(4851), - [anon_sym_TILDE] = ACTIONS(4851), - [anon_sym_def] = ACTIONS(4849), - [anon_sym_protected] = ACTIONS(4849), - [anon_sym_include] = ACTIONS(4849), - [anon_sym_extend] = ACTIONS(4849), - [anon_sym_return] = ACTIONS(4849), - [anon_sym_next] = ACTIONS(4849), - [anon_sym_break] = ACTIONS(4849), - [anon_sym_with] = ACTIONS(4849), - [anon_sym_yield] = ACTIONS(4849), - [anon_sym_typeof] = ACTIONS(4849), - [anon_sym_sizeof] = ACTIONS(4849), - [anon_sym_instance_sizeof] = ACTIONS(4849), - [anon_sym_offsetof] = ACTIONS(4849), - [sym__constant_segment] = ACTIONS(4851), - [anon_sym_COLON_COLON] = ACTIONS(4851), - [anon_sym___LINE__] = ACTIONS(4849), - [anon_sym___END_LINE__] = ACTIONS(4849), - [anon_sym___FILE__] = ACTIONS(4849), - [anon_sym___DIR__] = ACTIONS(4849), - [sym_special_variable] = ACTIONS(4851), - [sym_identifier_method_call] = ACTIONS(4851), - [sym_instance_var] = ACTIONS(4851), - [sym_class_var] = ACTIONS(4851), - [sym_self] = ACTIONS(4849), - [anon_sym_alias] = ACTIONS(4849), - [anon_sym_begin] = ACTIONS(4849), - [anon_sym_while] = ACTIONS(4849), - [anon_sym_until] = ACTIONS(4849), - [anon_sym_else] = ACTIONS(4849), - [anon_sym_require] = ACTIONS(4849), - [anon_sym_case] = ACTIONS(4849), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4851), - [sym__start_of_named_tuple] = ACTIONS(4851), - [sym_unary_plus] = ACTIONS(4851), - [sym_unary_minus] = ACTIONS(4851), - [sym_unary_wrapping_plus] = ACTIONS(4851), - [sym_unary_wrapping_minus] = ACTIONS(4851), - [sym__beginless_range_operator] = ACTIONS(4851), - [sym__regex_start] = ACTIONS(4851), - [sym__regular_if_keyword] = ACTIONS(4851), - [sym__regular_unless_keyword] = ACTIONS(4851), - [sym__regular_rescue_keyword] = ACTIONS(4851), - [sym__regular_ensure_keyword] = ACTIONS(4851), - [sym__string_literal_start] = ACTIONS(4851), - [sym__string_percent_literal_start] = ACTIONS(4851), - [sym__command_percent_literal_start] = ACTIONS(4851), - [sym__string_array_percent_literal_start] = ACTIONS(4851), - [sym__symbol_array_percent_literal_start] = ACTIONS(4851), - [sym__regex_percent_literal_start] = ACTIONS(4851), - [sym_heredoc_start] = ACTIONS(4851), + [sym_nil] = ACTIONS(4623), + [sym_true] = ACTIONS(4623), + [sym_false] = ACTIONS(4623), + [aux_sym_integer_token2] = ACTIONS(4623), + [aux_sym_float_token2] = ACTIONS(4625), + [anon_sym_SQUOTE] = ACTIONS(4625), + [sym_operator_symbol] = ACTIONS(4625), + [sym_unquoted_symbol] = ACTIONS(4625), + [anon_sym_COLON_DQUOTE] = ACTIONS(4625), + [anon_sym_BQUOTE] = ACTIONS(4625), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_COMMA] = ACTIONS(4625), + [anon_sym_DASH_GT] = ACTIONS(4625), + [anon_sym_annotation] = ACTIONS(4623), + [anon_sym_end] = ACTIONS(4623), + [anon_sym_AT_LBRACK] = ACTIONS(4625), + [anon_sym_private] = ACTIONS(4623), + [anon_sym_module] = ACTIONS(4623), + [anon_sym_abstract] = ACTIONS(4623), + [anon_sym_class] = ACTIONS(4623), + [anon_sym_struct] = ACTIONS(4623), + [anon_sym_enum] = ACTIONS(4623), + [anon_sym_STAR] = ACTIONS(4835), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_BANG] = ACTIONS(4625), + [anon_sym_TILDE] = ACTIONS(4625), + [anon_sym_def] = ACTIONS(4623), + [anon_sym_DOT] = ACTIONS(4839), + [anon_sym_protected] = ACTIONS(4623), + [anon_sym_include] = ACTIONS(4623), + [anon_sym_extend] = ACTIONS(4623), + [anon_sym_return] = ACTIONS(4623), + [anon_sym_next] = ACTIONS(4623), + [anon_sym_break] = ACTIONS(4623), + [anon_sym_with] = ACTIONS(4623), + [anon_sym_yield] = ACTIONS(4623), + [anon_sym_typeof] = ACTIONS(4623), + [anon_sym_sizeof] = ACTIONS(4623), + [anon_sym_instance_sizeof] = ACTIONS(4623), + [anon_sym_offsetof] = ACTIONS(4623), + [sym__constant_segment] = ACTIONS(4625), + [anon_sym_COLON_COLON] = ACTIONS(4625), + [anon_sym___LINE__] = ACTIONS(4623), + [anon_sym___END_LINE__] = ACTIONS(4623), + [anon_sym___FILE__] = ACTIONS(4623), + [anon_sym___DIR__] = ACTIONS(4623), + [sym_special_variable] = ACTIONS(4625), + [sym_identifier_method_call] = ACTIONS(4625), + [sym_instance_var] = ACTIONS(4625), + [sym_class_var] = ACTIONS(4625), + [sym_self] = ACTIONS(4623), + [anon_sym_QMARK] = ACTIONS(4841), + [anon_sym_alias] = ACTIONS(4623), + [anon_sym_begin] = ACTIONS(4623), + [anon_sym_while] = ACTIONS(4623), + [anon_sym_until] = ACTIONS(4623), + [anon_sym_require] = ACTIONS(4623), + [anon_sym_case] = ACTIONS(4623), + [anon_sym_select] = ACTIONS(4623), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4625), + [sym__start_of_named_tuple] = ACTIONS(4625), + [sym_unary_plus] = ACTIONS(4625), + [sym_unary_minus] = ACTIONS(4625), + [sym_unary_wrapping_plus] = ACTIONS(4625), + [sym_unary_wrapping_minus] = ACTIONS(4625), + [sym__beginless_range_operator] = ACTIONS(4625), + [sym__regex_start] = ACTIONS(4625), + [sym__regular_if_keyword] = ACTIONS(4625), + [sym__regular_unless_keyword] = ACTIONS(4625), + [sym__string_literal_start] = ACTIONS(4625), + [sym__string_percent_literal_start] = ACTIONS(4625), + [sym__command_percent_literal_start] = ACTIONS(4625), + [sym__string_array_percent_literal_start] = ACTIONS(4625), + [sym__symbol_array_percent_literal_start] = ACTIONS(4625), + [sym__regex_percent_literal_start] = ACTIONS(4625), + [sym_heredoc_start] = ACTIONS(4625), [sym__heredoc_body_start] = ACTIONS(7), }, - [2077] = { - [sym_heredoc_body] = STATE(2077), - [sym_identifier] = ACTIONS(4597), - [anon_sym_SEMI] = ACTIONS(4599), - [anon_sym_LPAREN] = ACTIONS(4597), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4597), - [sym_true] = ACTIONS(4597), - [sym_false] = ACTIONS(4597), - [aux_sym_integer_token2] = ACTIONS(4597), - [aux_sym_float_token2] = ACTIONS(4599), - [anon_sym_SQUOTE] = ACTIONS(4599), - [sym_operator_symbol] = ACTIONS(4599), - [sym_unquoted_symbol] = ACTIONS(4599), - [anon_sym_COLON_DQUOTE] = ACTIONS(4599), - [anon_sym_BQUOTE] = ACTIONS(4599), - [anon_sym_LBRACK] = ACTIONS(4599), - [anon_sym_COMMA] = ACTIONS(4599), - [anon_sym_DASH_GT] = ACTIONS(4599), - [anon_sym_annotation] = ACTIONS(4597), - [anon_sym_end] = ACTIONS(4597), - [anon_sym_AT_LBRACK] = ACTIONS(4599), - [anon_sym_private] = ACTIONS(4597), - [anon_sym_module] = ACTIONS(4597), - [anon_sym_abstract] = ACTIONS(4597), - [anon_sym_class] = ACTIONS(4597), - [anon_sym_struct] = ACTIONS(4597), - [anon_sym_enum] = ACTIONS(4597), - [anon_sym_STAR] = ACTIONS(4599), - [anon_sym_PIPE] = ACTIONS(4599), - [anon_sym_BANG] = ACTIONS(4599), - [anon_sym_TILDE] = ACTIONS(4599), - [anon_sym_def] = ACTIONS(4597), - [anon_sym_DOT] = ACTIONS(4599), - [anon_sym_protected] = ACTIONS(4597), - [anon_sym_include] = ACTIONS(4597), - [anon_sym_extend] = ACTIONS(4597), - [anon_sym_return] = ACTIONS(4597), - [anon_sym_next] = ACTIONS(4597), - [anon_sym_break] = ACTIONS(4597), - [anon_sym_with] = ACTIONS(4597), - [anon_sym_yield] = ACTIONS(4597), - [anon_sym_typeof] = ACTIONS(4597), - [anon_sym_sizeof] = ACTIONS(4597), - [anon_sym_instance_sizeof] = ACTIONS(4597), - [anon_sym_offsetof] = ACTIONS(4597), - [sym__constant_segment] = ACTIONS(4599), - [anon_sym_COLON_COLON] = ACTIONS(4599), - [anon_sym___LINE__] = ACTIONS(4597), - [anon_sym___END_LINE__] = ACTIONS(4597), - [anon_sym___FILE__] = ACTIONS(4597), - [anon_sym___DIR__] = ACTIONS(4597), - [sym_special_variable] = ACTIONS(4599), - [sym_identifier_method_call] = ACTIONS(4599), - [sym_instance_var] = ACTIONS(4599), - [sym_class_var] = ACTIONS(4599), - [sym_self] = ACTIONS(4597), - [anon_sym_LPAREN2] = ACTIONS(2413), - [anon_sym_QMARK] = ACTIONS(4599), - [anon_sym_alias] = ACTIONS(4597), - [anon_sym_begin] = ACTIONS(4597), - [anon_sym_while] = ACTIONS(4597), - [anon_sym_until] = ACTIONS(4597), - [anon_sym_require] = ACTIONS(4597), - [anon_sym_case] = ACTIONS(4597), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4599), - [sym__start_of_named_tuple] = ACTIONS(4599), - [sym_unary_plus] = ACTIONS(4599), - [sym_unary_minus] = ACTIONS(4599), - [sym_unary_wrapping_plus] = ACTIONS(4599), - [sym_unary_wrapping_minus] = ACTIONS(4599), - [sym__beginless_range_operator] = ACTIONS(4599), - [sym__regex_start] = ACTIONS(4599), - [sym__regular_if_keyword] = ACTIONS(4599), - [sym__regular_unless_keyword] = ACTIONS(4599), - [sym__string_literal_start] = ACTIONS(4599), - [sym__string_percent_literal_start] = ACTIONS(4599), - [sym__command_percent_literal_start] = ACTIONS(4599), - [sym__string_array_percent_literal_start] = ACTIONS(4599), - [sym__symbol_array_percent_literal_start] = ACTIONS(4599), - [sym__regex_percent_literal_start] = ACTIONS(4599), - [sym_heredoc_start] = ACTIONS(4599), + [2058] = { + [sym_heredoc_body] = STATE(2058), + [aux_sym_union_type_repeat1] = STATE(2071), + [sym_identifier] = ACTIONS(4627), + [anon_sym_SEMI] = ACTIONS(4629), + [anon_sym_LPAREN] = ACTIONS(4629), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4627), + [sym_true] = ACTIONS(4627), + [sym_false] = ACTIONS(4627), + [aux_sym_integer_token2] = ACTIONS(4627), + [aux_sym_float_token2] = ACTIONS(4629), + [anon_sym_SQUOTE] = ACTIONS(4629), + [sym_operator_symbol] = ACTIONS(4629), + [sym_unquoted_symbol] = ACTIONS(4629), + [anon_sym_COLON_DQUOTE] = ACTIONS(4629), + [anon_sym_BQUOTE] = ACTIONS(4629), + [anon_sym_LBRACK] = ACTIONS(4629), + [anon_sym_COMMA] = ACTIONS(4629), + [anon_sym_DASH_GT] = ACTIONS(4629), + [anon_sym_annotation] = ACTIONS(4627), + [anon_sym_end] = ACTIONS(4627), + [anon_sym_AT_LBRACK] = ACTIONS(4629), + [anon_sym_private] = ACTIONS(4627), + [anon_sym_module] = ACTIONS(4627), + [anon_sym_abstract] = ACTIONS(4627), + [anon_sym_class] = ACTIONS(4627), + [anon_sym_struct] = ACTIONS(4627), + [anon_sym_enum] = ACTIONS(4627), + [anon_sym_STAR] = ACTIONS(4629), + [anon_sym_PIPE] = ACTIONS(4629), + [anon_sym_BANG] = ACTIONS(4629), + [anon_sym_TILDE] = ACTIONS(4629), + [anon_sym_def] = ACTIONS(4627), + [anon_sym_DOT] = ACTIONS(4629), + [anon_sym_protected] = ACTIONS(4627), + [anon_sym_include] = ACTIONS(4627), + [anon_sym_extend] = ACTIONS(4627), + [anon_sym_return] = ACTIONS(4627), + [anon_sym_next] = ACTIONS(4627), + [anon_sym_break] = ACTIONS(4627), + [anon_sym_with] = ACTIONS(4627), + [anon_sym_yield] = ACTIONS(4627), + [anon_sym_typeof] = ACTIONS(4627), + [anon_sym_sizeof] = ACTIONS(4627), + [anon_sym_instance_sizeof] = ACTIONS(4627), + [anon_sym_offsetof] = ACTIONS(4627), + [sym__constant_segment] = ACTIONS(4629), + [anon_sym_COLON_COLON] = ACTIONS(4629), + [anon_sym___LINE__] = ACTIONS(4627), + [anon_sym___END_LINE__] = ACTIONS(4627), + [anon_sym___FILE__] = ACTIONS(4627), + [anon_sym___DIR__] = ACTIONS(4627), + [sym_special_variable] = ACTIONS(4629), + [sym_identifier_method_call] = ACTIONS(4629), + [sym_instance_var] = ACTIONS(4629), + [sym_class_var] = ACTIONS(4629), + [sym_self] = ACTIONS(4627), + [anon_sym_QMARK] = ACTIONS(4629), + [anon_sym_alias] = ACTIONS(4627), + [anon_sym_begin] = ACTIONS(4627), + [anon_sym_while] = ACTIONS(4627), + [anon_sym_until] = ACTIONS(4627), + [anon_sym_require] = ACTIONS(4627), + [anon_sym_case] = ACTIONS(4627), + [anon_sym_select] = ACTIONS(4627), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4629), + [sym__start_of_named_tuple] = ACTIONS(4629), + [sym_unary_plus] = ACTIONS(4629), + [sym_unary_minus] = ACTIONS(4629), + [sym_unary_wrapping_plus] = ACTIONS(4629), + [sym_unary_wrapping_minus] = ACTIONS(4629), + [sym__beginless_range_operator] = ACTIONS(4629), + [sym__regex_start] = ACTIONS(4629), + [sym__regular_if_keyword] = ACTIONS(4629), + [sym__regular_unless_keyword] = ACTIONS(4629), + [sym__string_literal_start] = ACTIONS(4629), + [sym__string_percent_literal_start] = ACTIONS(4629), + [sym__command_percent_literal_start] = ACTIONS(4629), + [sym__string_array_percent_literal_start] = ACTIONS(4629), + [sym__symbol_array_percent_literal_start] = ACTIONS(4629), + [sym__regex_percent_literal_start] = ACTIONS(4629), + [sym_heredoc_start] = ACTIONS(4629), [sym__heredoc_body_start] = ACTIONS(7), }, - [2078] = { - [sym__terminator] = STATE(2101), - [sym_heredoc_body] = STATE(2078), - [sym_identifier] = ACTIONS(4853), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(4855), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4853), - [sym_true] = ACTIONS(4853), - [sym_false] = ACTIONS(4853), - [aux_sym_integer_token2] = ACTIONS(4853), - [aux_sym_float_token2] = ACTIONS(4855), - [anon_sym_SQUOTE] = ACTIONS(4855), - [sym_operator_symbol] = ACTIONS(4855), - [sym_unquoted_symbol] = ACTIONS(4855), - [anon_sym_COLON_DQUOTE] = ACTIONS(4855), - [anon_sym_BQUOTE] = ACTIONS(4855), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_DASH_GT] = ACTIONS(4855), - [anon_sym_annotation] = ACTIONS(4853), - [anon_sym_end] = ACTIONS(4853), - [anon_sym_AT_LBRACK] = ACTIONS(4855), - [anon_sym_private] = ACTIONS(4853), - [anon_sym_module] = ACTIONS(4853), - [anon_sym_abstract] = ACTIONS(4853), - [anon_sym_class] = ACTIONS(4853), - [anon_sym_struct] = ACTIONS(4853), - [anon_sym_enum] = ACTIONS(4853), - [anon_sym_STAR] = ACTIONS(4855), - [anon_sym_BANG] = ACTIONS(4855), - [anon_sym_TILDE] = ACTIONS(4855), - [anon_sym_def] = ACTIONS(4853), - [anon_sym_protected] = ACTIONS(4853), - [anon_sym_include] = ACTIONS(4853), - [anon_sym_extend] = ACTIONS(4853), - [anon_sym_return] = ACTIONS(4853), - [anon_sym_next] = ACTIONS(4853), - [anon_sym_break] = ACTIONS(4853), - [anon_sym_with] = ACTIONS(4853), - [anon_sym_yield] = ACTIONS(4853), - [anon_sym_typeof] = ACTIONS(4853), - [anon_sym_sizeof] = ACTIONS(4853), - [anon_sym_instance_sizeof] = ACTIONS(4853), - [anon_sym_offsetof] = ACTIONS(4853), - [sym__constant_segment] = ACTIONS(4855), - [anon_sym_COLON_COLON] = ACTIONS(4855), - [anon_sym___LINE__] = ACTIONS(4853), - [anon_sym___END_LINE__] = ACTIONS(4853), - [anon_sym___FILE__] = ACTIONS(4853), - [anon_sym___DIR__] = ACTIONS(4853), - [sym_special_variable] = ACTIONS(4855), - [sym_identifier_method_call] = ACTIONS(4855), - [sym_instance_var] = ACTIONS(4855), - [sym_class_var] = ACTIONS(4855), - [sym_self] = ACTIONS(4853), - [anon_sym_alias] = ACTIONS(4853), - [anon_sym_begin] = ACTIONS(4853), - [anon_sym_while] = ACTIONS(4853), - [anon_sym_until] = ACTIONS(4853), - [anon_sym_else] = ACTIONS(4853), - [anon_sym_require] = ACTIONS(4853), - [anon_sym_case] = ACTIONS(4853), - [sym__line_break] = ACTIONS(1409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4855), - [sym__start_of_named_tuple] = ACTIONS(4855), - [sym_unary_plus] = ACTIONS(4855), - [sym_unary_minus] = ACTIONS(4855), - [sym_unary_wrapping_plus] = ACTIONS(4855), - [sym_unary_wrapping_minus] = ACTIONS(4855), - [sym__beginless_range_operator] = ACTIONS(4855), - [sym__regex_start] = ACTIONS(4855), - [sym__regular_if_keyword] = ACTIONS(4855), - [sym__regular_unless_keyword] = ACTIONS(4855), - [sym__regular_rescue_keyword] = ACTIONS(4855), - [sym__regular_ensure_keyword] = ACTIONS(4855), - [sym__string_literal_start] = ACTIONS(4855), - [sym__string_percent_literal_start] = ACTIONS(4855), - [sym__command_percent_literal_start] = ACTIONS(4855), - [sym__string_array_percent_literal_start] = ACTIONS(4855), - [sym__symbol_array_percent_literal_start] = ACTIONS(4855), - [sym__regex_percent_literal_start] = ACTIONS(4855), - [sym_heredoc_start] = ACTIONS(4855), + [2059] = { + [sym__terminator] = STATE(2125), + [sym_heredoc_body] = STATE(2059), + [sym_identifier] = ACTIONS(4843), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4845), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4843), + [sym_true] = ACTIONS(4843), + [sym_false] = ACTIONS(4843), + [aux_sym_integer_token2] = ACTIONS(4843), + [aux_sym_float_token2] = ACTIONS(4845), + [anon_sym_SQUOTE] = ACTIONS(4845), + [sym_operator_symbol] = ACTIONS(4845), + [sym_unquoted_symbol] = ACTIONS(4845), + [anon_sym_COLON_DQUOTE] = ACTIONS(4845), + [anon_sym_BQUOTE] = ACTIONS(4845), + [anon_sym_LBRACK] = ACTIONS(4845), + [anon_sym_DASH_GT] = ACTIONS(4845), + [anon_sym_annotation] = ACTIONS(4843), + [anon_sym_end] = ACTIONS(4843), + [anon_sym_AT_LBRACK] = ACTIONS(4845), + [anon_sym_private] = ACTIONS(4843), + [anon_sym_module] = ACTIONS(4843), + [anon_sym_abstract] = ACTIONS(4843), + [anon_sym_class] = ACTIONS(4843), + [anon_sym_struct] = ACTIONS(4843), + [anon_sym_enum] = ACTIONS(4843), + [anon_sym_STAR] = ACTIONS(4845), + [anon_sym_BANG] = ACTIONS(4845), + [anon_sym_TILDE] = ACTIONS(4845), + [anon_sym_def] = ACTIONS(4843), + [anon_sym_protected] = ACTIONS(4843), + [anon_sym_include] = ACTIONS(4843), + [anon_sym_extend] = ACTIONS(4843), + [anon_sym_return] = ACTIONS(4843), + [anon_sym_next] = ACTIONS(4843), + [anon_sym_break] = ACTIONS(4843), + [anon_sym_with] = ACTIONS(4843), + [anon_sym_yield] = ACTIONS(4843), + [anon_sym_typeof] = ACTIONS(4843), + [anon_sym_sizeof] = ACTIONS(4843), + [anon_sym_instance_sizeof] = ACTIONS(4843), + [anon_sym_offsetof] = ACTIONS(4843), + [sym__constant_segment] = ACTIONS(4845), + [anon_sym_COLON_COLON] = ACTIONS(4845), + [anon_sym___LINE__] = ACTIONS(4843), + [anon_sym___END_LINE__] = ACTIONS(4843), + [anon_sym___FILE__] = ACTIONS(4843), + [anon_sym___DIR__] = ACTIONS(4843), + [sym_special_variable] = ACTIONS(4845), + [sym_identifier_method_call] = ACTIONS(4845), + [sym_instance_var] = ACTIONS(4845), + [sym_class_var] = ACTIONS(4845), + [sym_self] = ACTIONS(4843), + [anon_sym_alias] = ACTIONS(4843), + [anon_sym_begin] = ACTIONS(4843), + [anon_sym_while] = ACTIONS(4843), + [anon_sym_until] = ACTIONS(4843), + [anon_sym_else] = ACTIONS(4843), + [anon_sym_require] = ACTIONS(4843), + [anon_sym_case] = ACTIONS(4843), + [anon_sym_select] = ACTIONS(4843), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4845), + [sym__start_of_named_tuple] = ACTIONS(4845), + [sym_unary_plus] = ACTIONS(4845), + [sym_unary_minus] = ACTIONS(4845), + [sym_unary_wrapping_plus] = ACTIONS(4845), + [sym_unary_wrapping_minus] = ACTIONS(4845), + [sym__beginless_range_operator] = ACTIONS(4845), + [sym__regex_start] = ACTIONS(4845), + [sym__regular_if_keyword] = ACTIONS(4845), + [sym__regular_unless_keyword] = ACTIONS(4845), + [sym__regular_rescue_keyword] = ACTIONS(4845), + [sym__regular_ensure_keyword] = ACTIONS(4845), + [sym__string_literal_start] = ACTIONS(4845), + [sym__string_percent_literal_start] = ACTIONS(4845), + [sym__command_percent_literal_start] = ACTIONS(4845), + [sym__string_array_percent_literal_start] = ACTIONS(4845), + [sym__symbol_array_percent_literal_start] = ACTIONS(4845), + [sym__regex_percent_literal_start] = ACTIONS(4845), + [sym_heredoc_start] = ACTIONS(4845), [sym__heredoc_body_start] = ACTIONS(7), }, - [2079] = { - [sym_heredoc_body] = STATE(2079), - [sym_identifier] = ACTIONS(4671), - [anon_sym_SEMI] = ACTIONS(4673), - [anon_sym_LPAREN] = ACTIONS(4673), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4671), - [sym_true] = ACTIONS(4671), - [sym_false] = ACTIONS(4671), - [aux_sym_integer_token2] = ACTIONS(4671), - [aux_sym_float_token2] = ACTIONS(4673), - [anon_sym_SQUOTE] = ACTIONS(4673), - [sym_operator_symbol] = ACTIONS(4673), - [sym_unquoted_symbol] = ACTIONS(4673), - [anon_sym_COLON_DQUOTE] = ACTIONS(4673), - [anon_sym_BQUOTE] = ACTIONS(4673), - [anon_sym_LBRACK] = ACTIONS(4673), - [anon_sym_COMMA] = ACTIONS(4673), - [anon_sym_DASH_GT] = ACTIONS(4673), - [anon_sym_annotation] = ACTIONS(4671), - [anon_sym_end] = ACTIONS(4671), - [anon_sym_AT_LBRACK] = ACTIONS(4673), - [anon_sym_private] = ACTIONS(4671), - [anon_sym_module] = ACTIONS(4671), - [anon_sym_abstract] = ACTIONS(4671), - [anon_sym_class] = ACTIONS(4671), - [anon_sym_struct] = ACTIONS(4671), - [anon_sym_enum] = ACTIONS(4671), - [anon_sym_STAR] = ACTIONS(4673), - [anon_sym_PIPE] = ACTIONS(4673), - [anon_sym_BANG] = ACTIONS(4673), - [anon_sym_TILDE] = ACTIONS(4673), - [anon_sym_def] = ACTIONS(4671), - [anon_sym_DOT] = ACTIONS(4673), - [anon_sym_protected] = ACTIONS(4671), - [anon_sym_include] = ACTIONS(4671), - [anon_sym_extend] = ACTIONS(4671), - [anon_sym_return] = ACTIONS(4671), - [anon_sym_next] = ACTIONS(4671), - [anon_sym_break] = ACTIONS(4671), - [anon_sym_with] = ACTIONS(4671), - [anon_sym_yield] = ACTIONS(4671), - [anon_sym_typeof] = ACTIONS(4671), - [anon_sym_sizeof] = ACTIONS(4671), - [anon_sym_instance_sizeof] = ACTIONS(4671), - [anon_sym_offsetof] = ACTIONS(4671), - [sym__constant_segment] = ACTIONS(4673), - [anon_sym_COLON_COLON] = ACTIONS(4673), - [anon_sym___LINE__] = ACTIONS(4671), - [anon_sym___END_LINE__] = ACTIONS(4671), - [anon_sym___FILE__] = ACTIONS(4671), - [anon_sym___DIR__] = ACTIONS(4671), - [sym_special_variable] = ACTIONS(4673), - [sym_identifier_method_call] = ACTIONS(4673), - [sym_instance_var] = ACTIONS(4673), - [sym_class_var] = ACTIONS(4673), - [sym_self] = ACTIONS(4671), - [anon_sym_QMARK] = ACTIONS(4673), - [anon_sym_alias] = ACTIONS(4671), - [anon_sym_begin] = ACTIONS(4671), - [anon_sym_while] = ACTIONS(4671), - [anon_sym_until] = ACTIONS(4671), - [anon_sym_require] = ACTIONS(4671), - [anon_sym_case] = ACTIONS(4671), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4673), - [sym__start_of_named_tuple] = ACTIONS(4673), - [sym_unary_plus] = ACTIONS(4673), - [sym_unary_minus] = ACTIONS(4673), - [sym_unary_wrapping_plus] = ACTIONS(4673), - [sym_unary_wrapping_minus] = ACTIONS(4673), - [sym__beginless_range_operator] = ACTIONS(4673), - [sym__regex_start] = ACTIONS(4673), - [sym__regular_if_keyword] = ACTIONS(4673), - [sym__regular_unless_keyword] = ACTIONS(4673), - [sym__string_literal_start] = ACTIONS(4673), - [sym__string_percent_literal_start] = ACTIONS(4673), - [sym__command_percent_literal_start] = ACTIONS(4673), - [sym__string_array_percent_literal_start] = ACTIONS(4673), - [sym__symbol_array_percent_literal_start] = ACTIONS(4673), - [sym__regex_percent_literal_start] = ACTIONS(4673), - [sym_heredoc_start] = ACTIONS(4673), + [2060] = { + [sym_heredoc_body] = STATE(2060), + [aux_sym_union_type_repeat1] = STATE(2071), + [sym_identifier] = ACTIONS(4605), + [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_LPAREN] = ACTIONS(4607), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4605), + [sym_true] = ACTIONS(4605), + [sym_false] = ACTIONS(4605), + [aux_sym_integer_token2] = ACTIONS(4605), + [aux_sym_float_token2] = ACTIONS(4607), + [anon_sym_SQUOTE] = ACTIONS(4607), + [sym_operator_symbol] = ACTIONS(4607), + [sym_unquoted_symbol] = ACTIONS(4607), + [anon_sym_COLON_DQUOTE] = ACTIONS(4607), + [anon_sym_BQUOTE] = ACTIONS(4607), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_COMMA] = ACTIONS(4607), + [anon_sym_DASH_GT] = ACTIONS(4607), + [anon_sym_annotation] = ACTIONS(4605), + [anon_sym_end] = ACTIONS(4605), + [anon_sym_AT_LBRACK] = ACTIONS(4607), + [anon_sym_private] = ACTIONS(4605), + [anon_sym_module] = ACTIONS(4605), + [anon_sym_abstract] = ACTIONS(4605), + [anon_sym_class] = ACTIONS(4605), + [anon_sym_struct] = ACTIONS(4605), + [anon_sym_enum] = ACTIONS(4605), + [anon_sym_STAR] = ACTIONS(4835), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_BANG] = ACTIONS(4607), + [anon_sym_TILDE] = ACTIONS(4607), + [anon_sym_def] = ACTIONS(4605), + [anon_sym_DOT] = ACTIONS(4839), + [anon_sym_protected] = ACTIONS(4605), + [anon_sym_include] = ACTIONS(4605), + [anon_sym_extend] = ACTIONS(4605), + [anon_sym_return] = ACTIONS(4605), + [anon_sym_next] = ACTIONS(4605), + [anon_sym_break] = ACTIONS(4605), + [anon_sym_with] = ACTIONS(4605), + [anon_sym_yield] = ACTIONS(4605), + [anon_sym_typeof] = ACTIONS(4605), + [anon_sym_sizeof] = ACTIONS(4605), + [anon_sym_instance_sizeof] = ACTIONS(4605), + [anon_sym_offsetof] = ACTIONS(4605), + [sym__constant_segment] = ACTIONS(4607), + [anon_sym_COLON_COLON] = ACTIONS(4607), + [anon_sym___LINE__] = ACTIONS(4605), + [anon_sym___END_LINE__] = ACTIONS(4605), + [anon_sym___FILE__] = ACTIONS(4605), + [anon_sym___DIR__] = ACTIONS(4605), + [sym_special_variable] = ACTIONS(4607), + [sym_identifier_method_call] = ACTIONS(4607), + [sym_instance_var] = ACTIONS(4607), + [sym_class_var] = ACTIONS(4607), + [sym_self] = ACTIONS(4605), + [anon_sym_QMARK] = ACTIONS(4841), + [anon_sym_alias] = ACTIONS(4605), + [anon_sym_begin] = ACTIONS(4605), + [anon_sym_while] = ACTIONS(4605), + [anon_sym_until] = ACTIONS(4605), + [anon_sym_require] = ACTIONS(4605), + [anon_sym_case] = ACTIONS(4605), + [anon_sym_select] = ACTIONS(4605), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4607), + [sym__start_of_named_tuple] = ACTIONS(4607), + [sym_unary_plus] = ACTIONS(4607), + [sym_unary_minus] = ACTIONS(4607), + [sym_unary_wrapping_plus] = ACTIONS(4607), + [sym_unary_wrapping_minus] = ACTIONS(4607), + [sym__beginless_range_operator] = ACTIONS(4607), + [sym__regex_start] = ACTIONS(4607), + [sym__regular_if_keyword] = ACTIONS(4607), + [sym__regular_unless_keyword] = ACTIONS(4607), + [sym__string_literal_start] = ACTIONS(4607), + [sym__string_percent_literal_start] = ACTIONS(4607), + [sym__command_percent_literal_start] = ACTIONS(4607), + [sym__string_array_percent_literal_start] = ACTIONS(4607), + [sym__symbol_array_percent_literal_start] = ACTIONS(4607), + [sym__regex_percent_literal_start] = ACTIONS(4607), + [sym_heredoc_start] = ACTIONS(4607), [sym__heredoc_body_start] = ACTIONS(7), }, - [2080] = { - [sym_heredoc_body] = STATE(2080), - [sym_identifier] = ACTIONS(4667), - [anon_sym_SEMI] = ACTIONS(4669), - [anon_sym_LPAREN] = ACTIONS(4669), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4667), - [sym_true] = ACTIONS(4667), - [sym_false] = ACTIONS(4667), - [aux_sym_integer_token2] = ACTIONS(4667), - [aux_sym_float_token2] = ACTIONS(4669), - [anon_sym_SQUOTE] = ACTIONS(4669), - [sym_operator_symbol] = ACTIONS(4669), - [sym_unquoted_symbol] = ACTIONS(4669), - [anon_sym_COLON_DQUOTE] = ACTIONS(4669), - [anon_sym_BQUOTE] = ACTIONS(4669), - [anon_sym_LBRACK] = ACTIONS(4669), - [anon_sym_COMMA] = ACTIONS(4669), - [anon_sym_DASH_GT] = ACTIONS(4669), - [anon_sym_annotation] = ACTIONS(4667), - [anon_sym_end] = ACTIONS(4667), - [anon_sym_AT_LBRACK] = ACTIONS(4669), - [anon_sym_private] = ACTIONS(4667), - [anon_sym_module] = ACTIONS(4667), - [anon_sym_abstract] = ACTIONS(4667), - [anon_sym_class] = ACTIONS(4667), - [anon_sym_struct] = ACTIONS(4667), - [anon_sym_enum] = ACTIONS(4667), - [anon_sym_STAR] = ACTIONS(4669), - [anon_sym_PIPE] = ACTIONS(4669), - [anon_sym_BANG] = ACTIONS(4669), - [anon_sym_TILDE] = ACTIONS(4669), - [anon_sym_def] = ACTIONS(4667), - [anon_sym_DOT] = ACTIONS(4669), - [anon_sym_protected] = ACTIONS(4667), - [anon_sym_include] = ACTIONS(4667), - [anon_sym_extend] = ACTIONS(4667), - [anon_sym_return] = ACTIONS(4667), - [anon_sym_next] = ACTIONS(4667), - [anon_sym_break] = ACTIONS(4667), - [anon_sym_with] = ACTIONS(4667), - [anon_sym_yield] = ACTIONS(4667), - [anon_sym_typeof] = ACTIONS(4667), - [anon_sym_sizeof] = ACTIONS(4667), - [anon_sym_instance_sizeof] = ACTIONS(4667), - [anon_sym_offsetof] = ACTIONS(4667), - [sym__constant_segment] = ACTIONS(4669), - [anon_sym_COLON_COLON] = ACTIONS(4669), - [anon_sym___LINE__] = ACTIONS(4667), - [anon_sym___END_LINE__] = ACTIONS(4667), - [anon_sym___FILE__] = ACTIONS(4667), - [anon_sym___DIR__] = ACTIONS(4667), - [sym_special_variable] = ACTIONS(4669), - [sym_identifier_method_call] = ACTIONS(4669), - [sym_instance_var] = ACTIONS(4669), - [sym_class_var] = ACTIONS(4669), - [sym_self] = ACTIONS(4667), - [anon_sym_QMARK] = ACTIONS(4669), - [anon_sym_alias] = ACTIONS(4667), - [anon_sym_begin] = ACTIONS(4667), - [anon_sym_while] = ACTIONS(4667), - [anon_sym_until] = ACTIONS(4667), - [anon_sym_require] = ACTIONS(4667), - [anon_sym_case] = ACTIONS(4667), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4669), - [sym__start_of_named_tuple] = ACTIONS(4669), - [sym_unary_plus] = ACTIONS(4669), - [sym_unary_minus] = ACTIONS(4669), - [sym_unary_wrapping_plus] = ACTIONS(4669), - [sym_unary_wrapping_minus] = ACTIONS(4669), - [sym__beginless_range_operator] = ACTIONS(4669), - [sym__regex_start] = ACTIONS(4669), - [sym__regular_if_keyword] = ACTIONS(4669), - [sym__regular_unless_keyword] = ACTIONS(4669), - [sym__string_literal_start] = ACTIONS(4669), - [sym__string_percent_literal_start] = ACTIONS(4669), - [sym__command_percent_literal_start] = ACTIONS(4669), - [sym__string_array_percent_literal_start] = ACTIONS(4669), - [sym__symbol_array_percent_literal_start] = ACTIONS(4669), - [sym__regex_percent_literal_start] = ACTIONS(4669), - [sym_heredoc_start] = ACTIONS(4669), + [2061] = { + [sym__terminator] = STATE(2116), + [sym_heredoc_body] = STATE(2061), + [sym_identifier] = ACTIONS(4847), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4849), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4847), + [sym_true] = ACTIONS(4847), + [sym_false] = ACTIONS(4847), + [aux_sym_integer_token2] = ACTIONS(4847), + [aux_sym_float_token2] = ACTIONS(4849), + [anon_sym_SQUOTE] = ACTIONS(4849), + [sym_operator_symbol] = ACTIONS(4849), + [sym_unquoted_symbol] = ACTIONS(4849), + [anon_sym_COLON_DQUOTE] = ACTIONS(4849), + [anon_sym_BQUOTE] = ACTIONS(4849), + [anon_sym_LBRACK] = ACTIONS(4849), + [anon_sym_DASH_GT] = ACTIONS(4849), + [anon_sym_annotation] = ACTIONS(4847), + [anon_sym_end] = ACTIONS(4847), + [anon_sym_AT_LBRACK] = ACTIONS(4849), + [anon_sym_private] = ACTIONS(4847), + [anon_sym_module] = ACTIONS(4847), + [anon_sym_abstract] = ACTIONS(4847), + [anon_sym_class] = ACTIONS(4847), + [anon_sym_struct] = ACTIONS(4847), + [anon_sym_enum] = ACTIONS(4847), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_BANG] = ACTIONS(4849), + [anon_sym_TILDE] = ACTIONS(4849), + [anon_sym_def] = ACTIONS(4847), + [anon_sym_protected] = ACTIONS(4847), + [anon_sym_include] = ACTIONS(4847), + [anon_sym_extend] = ACTIONS(4847), + [anon_sym_return] = ACTIONS(4847), + [anon_sym_next] = ACTIONS(4847), + [anon_sym_break] = ACTIONS(4847), + [anon_sym_with] = ACTIONS(4847), + [anon_sym_yield] = ACTIONS(4847), + [anon_sym_typeof] = ACTIONS(4847), + [anon_sym_sizeof] = ACTIONS(4847), + [anon_sym_instance_sizeof] = ACTIONS(4847), + [anon_sym_offsetof] = ACTIONS(4847), + [sym__constant_segment] = ACTIONS(4849), + [anon_sym_COLON_COLON] = ACTIONS(4849), + [anon_sym___LINE__] = ACTIONS(4847), + [anon_sym___END_LINE__] = ACTIONS(4847), + [anon_sym___FILE__] = ACTIONS(4847), + [anon_sym___DIR__] = ACTIONS(4847), + [sym_special_variable] = ACTIONS(4849), + [sym_identifier_method_call] = ACTIONS(4849), + [sym_instance_var] = ACTIONS(4849), + [sym_class_var] = ACTIONS(4849), + [sym_self] = ACTIONS(4847), + [anon_sym_alias] = ACTIONS(4847), + [anon_sym_begin] = ACTIONS(4847), + [anon_sym_while] = ACTIONS(4847), + [anon_sym_until] = ACTIONS(4847), + [anon_sym_else] = ACTIONS(4847), + [anon_sym_require] = ACTIONS(4847), + [anon_sym_case] = ACTIONS(4847), + [anon_sym_select] = ACTIONS(4847), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4849), + [sym__start_of_named_tuple] = ACTIONS(4849), + [sym_unary_plus] = ACTIONS(4849), + [sym_unary_minus] = ACTIONS(4849), + [sym_unary_wrapping_plus] = ACTIONS(4849), + [sym_unary_wrapping_minus] = ACTIONS(4849), + [sym__beginless_range_operator] = ACTIONS(4849), + [sym__regex_start] = ACTIONS(4849), + [sym__regular_if_keyword] = ACTIONS(4849), + [sym__regular_unless_keyword] = ACTIONS(4849), + [sym__regular_rescue_keyword] = ACTIONS(4849), + [sym__regular_ensure_keyword] = ACTIONS(4849), + [sym__string_literal_start] = ACTIONS(4849), + [sym__string_percent_literal_start] = ACTIONS(4849), + [sym__command_percent_literal_start] = ACTIONS(4849), + [sym__string_array_percent_literal_start] = ACTIONS(4849), + [sym__symbol_array_percent_literal_start] = ACTIONS(4849), + [sym__regex_percent_literal_start] = ACTIONS(4849), + [sym_heredoc_start] = ACTIONS(4849), [sym__heredoc_body_start] = ACTIONS(7), }, - [2081] = { - [sym_heredoc_body] = STATE(2081), - [sym_identifier] = ACTIONS(4615), - [anon_sym_SEMI] = ACTIONS(4617), - [anon_sym_LPAREN] = ACTIONS(4617), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4615), - [sym_true] = ACTIONS(4615), - [sym_false] = ACTIONS(4615), - [aux_sym_integer_token2] = ACTIONS(4615), - [aux_sym_float_token2] = ACTIONS(4617), - [anon_sym_SQUOTE] = ACTIONS(4617), - [sym_operator_symbol] = ACTIONS(4617), - [sym_unquoted_symbol] = ACTIONS(4617), - [anon_sym_COLON_DQUOTE] = ACTIONS(4617), - [anon_sym_BQUOTE] = ACTIONS(4617), - [anon_sym_LBRACK] = ACTIONS(4617), - [anon_sym_COMMA] = ACTIONS(4617), - [anon_sym_DASH_GT] = ACTIONS(4617), - [anon_sym_annotation] = ACTIONS(4615), - [anon_sym_end] = ACTIONS(4615), - [anon_sym_AT_LBRACK] = ACTIONS(4617), - [anon_sym_private] = ACTIONS(4615), - [anon_sym_module] = ACTIONS(4615), - [anon_sym_abstract] = ACTIONS(4615), - [anon_sym_class] = ACTIONS(4615), - [anon_sym_struct] = ACTIONS(4615), - [anon_sym_enum] = ACTIONS(4615), - [anon_sym_STAR] = ACTIONS(4617), - [anon_sym_PIPE] = ACTIONS(4617), - [anon_sym_BANG] = ACTIONS(4617), - [anon_sym_TILDE] = ACTIONS(4617), - [anon_sym_def] = ACTIONS(4615), - [anon_sym_DOT] = ACTIONS(4617), - [anon_sym_protected] = ACTIONS(4615), - [anon_sym_include] = ACTIONS(4615), - [anon_sym_extend] = ACTIONS(4615), - [anon_sym_return] = ACTIONS(4615), - [anon_sym_next] = ACTIONS(4615), - [anon_sym_break] = ACTIONS(4615), - [anon_sym_with] = ACTIONS(4615), - [anon_sym_yield] = ACTIONS(4615), - [anon_sym_typeof] = ACTIONS(4615), - [anon_sym_sizeof] = ACTIONS(4615), - [anon_sym_instance_sizeof] = ACTIONS(4615), - [anon_sym_offsetof] = ACTIONS(4615), - [sym__constant_segment] = ACTIONS(4617), - [anon_sym_COLON_COLON] = ACTIONS(4617), - [anon_sym___LINE__] = ACTIONS(4615), - [anon_sym___END_LINE__] = ACTIONS(4615), - [anon_sym___FILE__] = ACTIONS(4615), - [anon_sym___DIR__] = ACTIONS(4615), - [sym_special_variable] = ACTIONS(4617), - [sym_identifier_method_call] = ACTIONS(4617), - [sym_instance_var] = ACTIONS(4617), - [sym_class_var] = ACTIONS(4617), - [sym_self] = ACTIONS(4615), - [anon_sym_QMARK] = ACTIONS(4617), - [anon_sym_alias] = ACTIONS(4615), - [anon_sym_begin] = ACTIONS(4615), - [anon_sym_while] = ACTIONS(4615), - [anon_sym_until] = ACTIONS(4615), - [anon_sym_require] = ACTIONS(4615), - [anon_sym_case] = ACTIONS(4615), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4617), - [sym__start_of_named_tuple] = ACTIONS(4617), - [sym_unary_plus] = ACTIONS(4617), - [sym_unary_minus] = ACTIONS(4617), - [sym_unary_wrapping_plus] = ACTIONS(4617), - [sym_unary_wrapping_minus] = ACTIONS(4617), - [sym__beginless_range_operator] = ACTIONS(4617), - [sym__regex_start] = ACTIONS(4617), - [sym__regular_if_keyword] = ACTIONS(4617), - [sym__regular_unless_keyword] = ACTIONS(4617), - [sym__string_literal_start] = ACTIONS(4617), - [sym__string_percent_literal_start] = ACTIONS(4617), - [sym__command_percent_literal_start] = ACTIONS(4617), - [sym__string_array_percent_literal_start] = ACTIONS(4617), - [sym__symbol_array_percent_literal_start] = ACTIONS(4617), - [sym__regex_percent_literal_start] = ACTIONS(4617), - [sym_heredoc_start] = ACTIONS(4617), + [2062] = { + [sym__terminator] = STATE(2118), + [sym_heredoc_body] = STATE(2062), + [sym_identifier] = ACTIONS(4851), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4853), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4851), + [sym_true] = ACTIONS(4851), + [sym_false] = ACTIONS(4851), + [aux_sym_integer_token2] = ACTIONS(4851), + [aux_sym_float_token2] = ACTIONS(4853), + [anon_sym_SQUOTE] = ACTIONS(4853), + [sym_operator_symbol] = ACTIONS(4853), + [sym_unquoted_symbol] = ACTIONS(4853), + [anon_sym_COLON_DQUOTE] = ACTIONS(4853), + [anon_sym_BQUOTE] = ACTIONS(4853), + [anon_sym_LBRACK] = ACTIONS(4853), + [anon_sym_DASH_GT] = ACTIONS(4853), + [anon_sym_annotation] = ACTIONS(4851), + [anon_sym_end] = ACTIONS(4851), + [anon_sym_AT_LBRACK] = ACTIONS(4853), + [anon_sym_private] = ACTIONS(4851), + [anon_sym_module] = ACTIONS(4851), + [anon_sym_abstract] = ACTIONS(4851), + [anon_sym_class] = ACTIONS(4851), + [anon_sym_struct] = ACTIONS(4851), + [anon_sym_enum] = ACTIONS(4851), + [anon_sym_STAR] = ACTIONS(4853), + [anon_sym_BANG] = ACTIONS(4853), + [anon_sym_TILDE] = ACTIONS(4853), + [anon_sym_def] = ACTIONS(4851), + [anon_sym_protected] = ACTIONS(4851), + [anon_sym_include] = ACTIONS(4851), + [anon_sym_extend] = ACTIONS(4851), + [anon_sym_return] = ACTIONS(4851), + [anon_sym_next] = ACTIONS(4851), + [anon_sym_break] = ACTIONS(4851), + [anon_sym_with] = ACTIONS(4851), + [anon_sym_yield] = ACTIONS(4851), + [anon_sym_typeof] = ACTIONS(4851), + [anon_sym_sizeof] = ACTIONS(4851), + [anon_sym_instance_sizeof] = ACTIONS(4851), + [anon_sym_offsetof] = ACTIONS(4851), + [sym__constant_segment] = ACTIONS(4853), + [anon_sym_COLON_COLON] = ACTIONS(4853), + [anon_sym___LINE__] = ACTIONS(4851), + [anon_sym___END_LINE__] = ACTIONS(4851), + [anon_sym___FILE__] = ACTIONS(4851), + [anon_sym___DIR__] = ACTIONS(4851), + [sym_special_variable] = ACTIONS(4853), + [sym_identifier_method_call] = ACTIONS(4853), + [sym_instance_var] = ACTIONS(4853), + [sym_class_var] = ACTIONS(4853), + [sym_self] = ACTIONS(4851), + [anon_sym_alias] = ACTIONS(4851), + [anon_sym_begin] = ACTIONS(4851), + [anon_sym_while] = ACTIONS(4851), + [anon_sym_until] = ACTIONS(4851), + [anon_sym_else] = ACTIONS(4851), + [anon_sym_require] = ACTIONS(4851), + [anon_sym_case] = ACTIONS(4851), + [anon_sym_select] = ACTIONS(4851), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4853), + [sym__start_of_named_tuple] = ACTIONS(4853), + [sym_unary_plus] = ACTIONS(4853), + [sym_unary_minus] = ACTIONS(4853), + [sym_unary_wrapping_plus] = ACTIONS(4853), + [sym_unary_wrapping_minus] = ACTIONS(4853), + [sym__beginless_range_operator] = ACTIONS(4853), + [sym__regex_start] = ACTIONS(4853), + [sym__regular_if_keyword] = ACTIONS(4853), + [sym__regular_unless_keyword] = ACTIONS(4853), + [sym__regular_rescue_keyword] = ACTIONS(4853), + [sym__regular_ensure_keyword] = ACTIONS(4853), + [sym__string_literal_start] = ACTIONS(4853), + [sym__string_percent_literal_start] = ACTIONS(4853), + [sym__command_percent_literal_start] = ACTIONS(4853), + [sym__string_array_percent_literal_start] = ACTIONS(4853), + [sym__symbol_array_percent_literal_start] = ACTIONS(4853), + [sym__regex_percent_literal_start] = ACTIONS(4853), + [sym_heredoc_start] = ACTIONS(4853), [sym__heredoc_body_start] = ACTIONS(7), }, - [2082] = { - [sym_heredoc_body] = STATE(2082), - [sym_identifier] = ACTIONS(4631), - [anon_sym_SEMI] = ACTIONS(4633), - [anon_sym_LPAREN] = ACTIONS(4633), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4631), - [sym_true] = ACTIONS(4631), - [sym_false] = ACTIONS(4631), - [aux_sym_integer_token2] = ACTIONS(4631), - [aux_sym_float_token2] = ACTIONS(4633), - [anon_sym_SQUOTE] = ACTIONS(4633), - [sym_operator_symbol] = ACTIONS(4633), - [sym_unquoted_symbol] = ACTIONS(4633), - [anon_sym_COLON_DQUOTE] = ACTIONS(4633), - [anon_sym_BQUOTE] = ACTIONS(4633), - [anon_sym_LBRACK] = ACTIONS(4633), - [anon_sym_COMMA] = ACTIONS(4633), - [anon_sym_DASH_GT] = ACTIONS(4633), - [anon_sym_annotation] = ACTIONS(4631), - [anon_sym_end] = ACTIONS(4631), - [anon_sym_AT_LBRACK] = ACTIONS(4633), - [anon_sym_private] = ACTIONS(4631), - [anon_sym_module] = ACTIONS(4631), - [anon_sym_abstract] = ACTIONS(4631), - [anon_sym_class] = ACTIONS(4631), - [anon_sym_struct] = ACTIONS(4631), - [anon_sym_enum] = ACTIONS(4631), - [anon_sym_STAR] = ACTIONS(4633), - [anon_sym_PIPE] = ACTIONS(4633), - [anon_sym_BANG] = ACTIONS(4633), - [anon_sym_TILDE] = ACTIONS(4633), - [anon_sym_def] = ACTIONS(4631), - [anon_sym_DOT] = ACTIONS(4633), - [anon_sym_protected] = ACTIONS(4631), - [anon_sym_include] = ACTIONS(4631), - [anon_sym_extend] = ACTIONS(4631), - [anon_sym_return] = ACTIONS(4631), - [anon_sym_next] = ACTIONS(4631), - [anon_sym_break] = ACTIONS(4631), - [anon_sym_with] = ACTIONS(4631), - [anon_sym_yield] = ACTIONS(4631), - [anon_sym_typeof] = ACTIONS(4631), - [anon_sym_sizeof] = ACTIONS(4631), - [anon_sym_instance_sizeof] = ACTIONS(4631), - [anon_sym_offsetof] = ACTIONS(4631), - [sym__constant_segment] = ACTIONS(4633), - [anon_sym_COLON_COLON] = ACTIONS(4633), - [anon_sym___LINE__] = ACTIONS(4631), - [anon_sym___END_LINE__] = ACTIONS(4631), - [anon_sym___FILE__] = ACTIONS(4631), - [anon_sym___DIR__] = ACTIONS(4631), - [sym_special_variable] = ACTIONS(4633), - [sym_identifier_method_call] = ACTIONS(4633), - [sym_instance_var] = ACTIONS(4633), - [sym_class_var] = ACTIONS(4633), - [sym_self] = ACTIONS(4631), - [anon_sym_QMARK] = ACTIONS(4633), - [anon_sym_alias] = ACTIONS(4631), - [anon_sym_begin] = ACTIONS(4631), - [anon_sym_while] = ACTIONS(4631), - [anon_sym_until] = ACTIONS(4631), - [anon_sym_require] = ACTIONS(4631), - [anon_sym_case] = ACTIONS(4631), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4633), - [sym__start_of_named_tuple] = ACTIONS(4633), - [sym_unary_plus] = ACTIONS(4633), - [sym_unary_minus] = ACTIONS(4633), - [sym_unary_wrapping_plus] = ACTIONS(4633), - [sym_unary_wrapping_minus] = ACTIONS(4633), - [sym__beginless_range_operator] = ACTIONS(4633), - [sym__regex_start] = ACTIONS(4633), - [sym__regular_if_keyword] = ACTIONS(4633), - [sym__regular_unless_keyword] = ACTIONS(4633), - [sym__string_literal_start] = ACTIONS(4633), - [sym__string_percent_literal_start] = ACTIONS(4633), - [sym__command_percent_literal_start] = ACTIONS(4633), - [sym__string_array_percent_literal_start] = ACTIONS(4633), - [sym__symbol_array_percent_literal_start] = ACTIONS(4633), - [sym__regex_percent_literal_start] = ACTIONS(4633), - [sym_heredoc_start] = ACTIONS(4633), + [2063] = { + [sym__terminator] = STATE(2117), + [sym_heredoc_body] = STATE(2063), + [sym_identifier] = ACTIONS(4855), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4857), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4855), + [sym_true] = ACTIONS(4855), + [sym_false] = ACTIONS(4855), + [aux_sym_integer_token2] = ACTIONS(4855), + [aux_sym_float_token2] = ACTIONS(4857), + [anon_sym_SQUOTE] = ACTIONS(4857), + [sym_operator_symbol] = ACTIONS(4857), + [sym_unquoted_symbol] = ACTIONS(4857), + [anon_sym_COLON_DQUOTE] = ACTIONS(4857), + [anon_sym_BQUOTE] = ACTIONS(4857), + [anon_sym_LBRACK] = ACTIONS(4857), + [anon_sym_DASH_GT] = ACTIONS(4857), + [anon_sym_annotation] = ACTIONS(4855), + [anon_sym_end] = ACTIONS(4855), + [anon_sym_AT_LBRACK] = ACTIONS(4857), + [anon_sym_private] = ACTIONS(4855), + [anon_sym_module] = ACTIONS(4855), + [anon_sym_abstract] = ACTIONS(4855), + [anon_sym_class] = ACTIONS(4855), + [anon_sym_struct] = ACTIONS(4855), + [anon_sym_enum] = ACTIONS(4855), + [anon_sym_STAR] = ACTIONS(4857), + [anon_sym_BANG] = ACTIONS(4857), + [anon_sym_TILDE] = ACTIONS(4857), + [anon_sym_def] = ACTIONS(4855), + [anon_sym_protected] = ACTIONS(4855), + [anon_sym_include] = ACTIONS(4855), + [anon_sym_extend] = ACTIONS(4855), + [anon_sym_return] = ACTIONS(4855), + [anon_sym_next] = ACTIONS(4855), + [anon_sym_break] = ACTIONS(4855), + [anon_sym_with] = ACTIONS(4855), + [anon_sym_yield] = ACTIONS(4855), + [anon_sym_typeof] = ACTIONS(4855), + [anon_sym_sizeof] = ACTIONS(4855), + [anon_sym_instance_sizeof] = ACTIONS(4855), + [anon_sym_offsetof] = ACTIONS(4855), + [sym__constant_segment] = ACTIONS(4857), + [anon_sym_COLON_COLON] = ACTIONS(4857), + [anon_sym___LINE__] = ACTIONS(4855), + [anon_sym___END_LINE__] = ACTIONS(4855), + [anon_sym___FILE__] = ACTIONS(4855), + [anon_sym___DIR__] = ACTIONS(4855), + [sym_special_variable] = ACTIONS(4857), + [sym_identifier_method_call] = ACTIONS(4857), + [sym_instance_var] = ACTIONS(4857), + [sym_class_var] = ACTIONS(4857), + [sym_self] = ACTIONS(4855), + [anon_sym_alias] = ACTIONS(4855), + [anon_sym_begin] = ACTIONS(4855), + [anon_sym_while] = ACTIONS(4855), + [anon_sym_until] = ACTIONS(4855), + [anon_sym_else] = ACTIONS(4855), + [anon_sym_require] = ACTIONS(4855), + [anon_sym_case] = ACTIONS(4855), + [anon_sym_select] = ACTIONS(4855), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4857), + [sym__start_of_named_tuple] = ACTIONS(4857), + [sym_unary_plus] = ACTIONS(4857), + [sym_unary_minus] = ACTIONS(4857), + [sym_unary_wrapping_plus] = ACTIONS(4857), + [sym_unary_wrapping_minus] = ACTIONS(4857), + [sym__beginless_range_operator] = ACTIONS(4857), + [sym__regex_start] = ACTIONS(4857), + [sym__regular_if_keyword] = ACTIONS(4857), + [sym__regular_unless_keyword] = ACTIONS(4857), + [sym__regular_rescue_keyword] = ACTIONS(4857), + [sym__regular_ensure_keyword] = ACTIONS(4857), + [sym__string_literal_start] = ACTIONS(4857), + [sym__string_percent_literal_start] = ACTIONS(4857), + [sym__command_percent_literal_start] = ACTIONS(4857), + [sym__string_array_percent_literal_start] = ACTIONS(4857), + [sym__symbol_array_percent_literal_start] = ACTIONS(4857), + [sym__regex_percent_literal_start] = ACTIONS(4857), + [sym_heredoc_start] = ACTIONS(4857), [sym__heredoc_body_start] = ACTIONS(7), }, - [2083] = { - [sym_heredoc_body] = STATE(2083), - [sym_identifier] = ACTIONS(4663), - [anon_sym_SEMI] = ACTIONS(4665), - [anon_sym_LPAREN] = ACTIONS(4665), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4663), - [sym_true] = ACTIONS(4663), - [sym_false] = ACTIONS(4663), - [aux_sym_integer_token2] = ACTIONS(4663), - [aux_sym_float_token2] = ACTIONS(4665), - [anon_sym_SQUOTE] = ACTIONS(4665), - [sym_operator_symbol] = ACTIONS(4665), - [sym_unquoted_symbol] = ACTIONS(4665), - [anon_sym_COLON_DQUOTE] = ACTIONS(4665), - [anon_sym_BQUOTE] = ACTIONS(4665), - [anon_sym_LBRACK] = ACTIONS(4665), - [anon_sym_COMMA] = ACTIONS(4665), - [anon_sym_DASH_GT] = ACTIONS(4665), - [anon_sym_annotation] = ACTIONS(4663), - [anon_sym_end] = ACTIONS(4663), - [anon_sym_AT_LBRACK] = ACTIONS(4665), - [anon_sym_private] = ACTIONS(4663), - [anon_sym_module] = ACTIONS(4663), - [anon_sym_abstract] = ACTIONS(4663), - [anon_sym_class] = ACTIONS(4663), - [anon_sym_struct] = ACTIONS(4663), - [anon_sym_enum] = ACTIONS(4663), - [anon_sym_STAR] = ACTIONS(4665), - [anon_sym_PIPE] = ACTIONS(4665), - [anon_sym_BANG] = ACTIONS(4665), - [anon_sym_TILDE] = ACTIONS(4665), - [anon_sym_def] = ACTIONS(4663), - [anon_sym_DOT] = ACTIONS(4665), - [anon_sym_protected] = ACTIONS(4663), - [anon_sym_include] = ACTIONS(4663), - [anon_sym_extend] = ACTIONS(4663), - [anon_sym_return] = ACTIONS(4663), - [anon_sym_next] = ACTIONS(4663), - [anon_sym_break] = ACTIONS(4663), - [anon_sym_with] = ACTIONS(4663), - [anon_sym_yield] = ACTIONS(4663), - [anon_sym_typeof] = ACTIONS(4663), - [anon_sym_sizeof] = ACTIONS(4663), - [anon_sym_instance_sizeof] = ACTIONS(4663), - [anon_sym_offsetof] = ACTIONS(4663), - [sym__constant_segment] = ACTIONS(4665), - [anon_sym_COLON_COLON] = ACTIONS(4665), - [anon_sym___LINE__] = ACTIONS(4663), - [anon_sym___END_LINE__] = ACTIONS(4663), - [anon_sym___FILE__] = ACTIONS(4663), - [anon_sym___DIR__] = ACTIONS(4663), - [sym_special_variable] = ACTIONS(4665), - [sym_identifier_method_call] = ACTIONS(4665), - [sym_instance_var] = ACTIONS(4665), - [sym_class_var] = ACTIONS(4665), - [sym_self] = ACTIONS(4663), - [anon_sym_QMARK] = ACTIONS(4665), - [anon_sym_alias] = ACTIONS(4663), - [anon_sym_begin] = ACTIONS(4663), - [anon_sym_while] = ACTIONS(4663), - [anon_sym_until] = ACTIONS(4663), - [anon_sym_require] = ACTIONS(4663), - [anon_sym_case] = ACTIONS(4663), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4665), - [sym__start_of_named_tuple] = ACTIONS(4665), - [sym_unary_plus] = ACTIONS(4665), - [sym_unary_minus] = ACTIONS(4665), - [sym_unary_wrapping_plus] = ACTIONS(4665), - [sym_unary_wrapping_minus] = ACTIONS(4665), - [sym__beginless_range_operator] = ACTIONS(4665), - [sym__regex_start] = ACTIONS(4665), - [sym__regular_if_keyword] = ACTIONS(4665), - [sym__regular_unless_keyword] = ACTIONS(4665), - [sym__string_literal_start] = ACTIONS(4665), - [sym__string_percent_literal_start] = ACTIONS(4665), - [sym__command_percent_literal_start] = ACTIONS(4665), - [sym__string_array_percent_literal_start] = ACTIONS(4665), - [sym__symbol_array_percent_literal_start] = ACTIONS(4665), - [sym__regex_percent_literal_start] = ACTIONS(4665), - [sym_heredoc_start] = ACTIONS(4665), + [2064] = { + [sym_heredoc_body] = STATE(2064), + [sym_identifier] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4642), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4642), + [sym_true] = ACTIONS(4642), + [sym_false] = ACTIONS(4642), + [aux_sym_integer_token2] = ACTIONS(4642), + [aux_sym_float_token2] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4644), + [sym_operator_symbol] = ACTIONS(4644), + [sym_unquoted_symbol] = ACTIONS(4644), + [anon_sym_COLON_DQUOTE] = ACTIONS(4644), + [anon_sym_BQUOTE] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_COMMA] = ACTIONS(4644), + [anon_sym_DASH_GT] = ACTIONS(4644), + [anon_sym_annotation] = ACTIONS(4642), + [anon_sym_end] = ACTIONS(4642), + [anon_sym_AT_LBRACK] = ACTIONS(4644), + [anon_sym_private] = ACTIONS(4642), + [anon_sym_module] = ACTIONS(4642), + [anon_sym_abstract] = ACTIONS(4642), + [anon_sym_class] = ACTIONS(4642), + [anon_sym_struct] = ACTIONS(4642), + [anon_sym_enum] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4644), + [anon_sym_PIPE] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_TILDE] = ACTIONS(4644), + [anon_sym_def] = ACTIONS(4642), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_protected] = ACTIONS(4642), + [anon_sym_include] = ACTIONS(4642), + [anon_sym_extend] = ACTIONS(4642), + [anon_sym_return] = ACTIONS(4642), + [anon_sym_next] = ACTIONS(4642), + [anon_sym_break] = ACTIONS(4642), + [anon_sym_with] = ACTIONS(4642), + [anon_sym_yield] = ACTIONS(4642), + [anon_sym_typeof] = ACTIONS(4642), + [anon_sym_sizeof] = ACTIONS(4642), + [anon_sym_instance_sizeof] = ACTIONS(4642), + [anon_sym_offsetof] = ACTIONS(4642), + [sym__constant_segment] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4644), + [anon_sym___LINE__] = ACTIONS(4642), + [anon_sym___END_LINE__] = ACTIONS(4642), + [anon_sym___FILE__] = ACTIONS(4642), + [anon_sym___DIR__] = ACTIONS(4642), + [sym_special_variable] = ACTIONS(4644), + [sym_identifier_method_call] = ACTIONS(4644), + [sym_instance_var] = ACTIONS(4644), + [sym_class_var] = ACTIONS(4644), + [sym_self] = ACTIONS(4642), + [anon_sym_LPAREN2] = ACTIONS(2496), + [anon_sym_QMARK] = ACTIONS(4644), + [anon_sym_alias] = ACTIONS(4642), + [anon_sym_begin] = ACTIONS(4642), + [anon_sym_while] = ACTIONS(4642), + [anon_sym_until] = ACTIONS(4642), + [anon_sym_require] = ACTIONS(4642), + [anon_sym_case] = ACTIONS(4642), + [anon_sym_select] = ACTIONS(4642), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4644), + [sym__start_of_named_tuple] = ACTIONS(4644), + [sym_unary_plus] = ACTIONS(4644), + [sym_unary_minus] = ACTIONS(4644), + [sym_unary_wrapping_plus] = ACTIONS(4644), + [sym_unary_wrapping_minus] = ACTIONS(4644), + [sym__beginless_range_operator] = ACTIONS(4644), + [sym__regex_start] = ACTIONS(4644), + [sym__regular_if_keyword] = ACTIONS(4644), + [sym__regular_unless_keyword] = ACTIONS(4644), + [sym__string_literal_start] = ACTIONS(4644), + [sym__string_percent_literal_start] = ACTIONS(4644), + [sym__command_percent_literal_start] = ACTIONS(4644), + [sym__string_array_percent_literal_start] = ACTIONS(4644), + [sym__symbol_array_percent_literal_start] = ACTIONS(4644), + [sym__regex_percent_literal_start] = ACTIONS(4644), + [sym_heredoc_start] = ACTIONS(4644), [sym__heredoc_body_start] = ACTIONS(7), }, - [2084] = { - [sym_heredoc_body] = STATE(2084), - [sym_identifier] = ACTIONS(4651), - [anon_sym_SEMI] = ACTIONS(4653), - [anon_sym_LPAREN] = ACTIONS(4653), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4651), - [sym_true] = ACTIONS(4651), - [sym_false] = ACTIONS(4651), - [aux_sym_integer_token2] = ACTIONS(4651), - [aux_sym_float_token2] = ACTIONS(4653), - [anon_sym_SQUOTE] = ACTIONS(4653), - [sym_operator_symbol] = ACTIONS(4653), - [sym_unquoted_symbol] = ACTIONS(4653), - [anon_sym_COLON_DQUOTE] = ACTIONS(4653), - [anon_sym_BQUOTE] = ACTIONS(4653), - [anon_sym_LBRACK] = ACTIONS(4653), - [anon_sym_COMMA] = ACTIONS(4653), - [anon_sym_DASH_GT] = ACTIONS(4653), - [anon_sym_annotation] = ACTIONS(4651), - [anon_sym_end] = ACTIONS(4651), - [anon_sym_AT_LBRACK] = ACTIONS(4653), - [anon_sym_private] = ACTIONS(4651), - [anon_sym_module] = ACTIONS(4651), - [anon_sym_abstract] = ACTIONS(4651), - [anon_sym_class] = ACTIONS(4651), - [anon_sym_struct] = ACTIONS(4651), - [anon_sym_enum] = ACTIONS(4651), - [anon_sym_STAR] = ACTIONS(4653), - [anon_sym_PIPE] = ACTIONS(4653), - [anon_sym_BANG] = ACTIONS(4653), - [anon_sym_TILDE] = ACTIONS(4653), - [anon_sym_def] = ACTIONS(4651), - [anon_sym_DOT] = ACTIONS(4653), - [anon_sym_protected] = ACTIONS(4651), - [anon_sym_include] = ACTIONS(4651), - [anon_sym_extend] = ACTIONS(4651), - [anon_sym_return] = ACTIONS(4651), - [anon_sym_next] = ACTIONS(4651), - [anon_sym_break] = ACTIONS(4651), - [anon_sym_with] = ACTIONS(4651), - [anon_sym_yield] = ACTIONS(4651), - [anon_sym_typeof] = ACTIONS(4651), - [anon_sym_sizeof] = ACTIONS(4651), - [anon_sym_instance_sizeof] = ACTIONS(4651), - [anon_sym_offsetof] = ACTIONS(4651), - [sym__constant_segment] = ACTIONS(4653), - [anon_sym_COLON_COLON] = ACTIONS(4653), - [anon_sym___LINE__] = ACTIONS(4651), - [anon_sym___END_LINE__] = ACTIONS(4651), - [anon_sym___FILE__] = ACTIONS(4651), - [anon_sym___DIR__] = ACTIONS(4651), - [sym_special_variable] = ACTIONS(4653), - [sym_identifier_method_call] = ACTIONS(4653), - [sym_instance_var] = ACTIONS(4653), - [sym_class_var] = ACTIONS(4653), - [sym_self] = ACTIONS(4651), - [anon_sym_QMARK] = ACTIONS(4653), - [anon_sym_alias] = ACTIONS(4651), - [anon_sym_begin] = ACTIONS(4651), - [anon_sym_while] = ACTIONS(4651), - [anon_sym_until] = ACTIONS(4651), - [anon_sym_require] = ACTIONS(4651), - [anon_sym_case] = ACTIONS(4651), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4653), - [sym__start_of_named_tuple] = ACTIONS(4653), - [sym_unary_plus] = ACTIONS(4653), - [sym_unary_minus] = ACTIONS(4653), - [sym_unary_wrapping_plus] = ACTIONS(4653), - [sym_unary_wrapping_minus] = ACTIONS(4653), - [sym__beginless_range_operator] = ACTIONS(4653), - [sym__regex_start] = ACTIONS(4653), - [sym__regular_if_keyword] = ACTIONS(4653), - [sym__regular_unless_keyword] = ACTIONS(4653), - [sym__string_literal_start] = ACTIONS(4653), - [sym__string_percent_literal_start] = ACTIONS(4653), - [sym__command_percent_literal_start] = ACTIONS(4653), - [sym__string_array_percent_literal_start] = ACTIONS(4653), - [sym__symbol_array_percent_literal_start] = ACTIONS(4653), - [sym__regex_percent_literal_start] = ACTIONS(4653), - [sym_heredoc_start] = ACTIONS(4653), + [2065] = { + [sym__terminator] = STATE(2121), + [sym_heredoc_body] = STATE(2065), + [sym_identifier] = ACTIONS(4859), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4861), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4859), + [sym_true] = ACTIONS(4859), + [sym_false] = ACTIONS(4859), + [aux_sym_integer_token2] = ACTIONS(4859), + [aux_sym_float_token2] = ACTIONS(4861), + [anon_sym_SQUOTE] = ACTIONS(4861), + [sym_operator_symbol] = ACTIONS(4861), + [sym_unquoted_symbol] = ACTIONS(4861), + [anon_sym_COLON_DQUOTE] = ACTIONS(4861), + [anon_sym_BQUOTE] = ACTIONS(4861), + [anon_sym_LBRACK] = ACTIONS(4861), + [anon_sym_DASH_GT] = ACTIONS(4861), + [anon_sym_annotation] = ACTIONS(4859), + [anon_sym_end] = ACTIONS(4859), + [anon_sym_AT_LBRACK] = ACTIONS(4861), + [anon_sym_private] = ACTIONS(4859), + [anon_sym_module] = ACTIONS(4859), + [anon_sym_abstract] = ACTIONS(4859), + [anon_sym_class] = ACTIONS(4859), + [anon_sym_struct] = ACTIONS(4859), + [anon_sym_enum] = ACTIONS(4859), + [anon_sym_STAR] = ACTIONS(4861), + [anon_sym_BANG] = ACTIONS(4861), + [anon_sym_TILDE] = ACTIONS(4861), + [anon_sym_def] = ACTIONS(4859), + [anon_sym_protected] = ACTIONS(4859), + [anon_sym_include] = ACTIONS(4859), + [anon_sym_extend] = ACTIONS(4859), + [anon_sym_return] = ACTIONS(4859), + [anon_sym_next] = ACTIONS(4859), + [anon_sym_break] = ACTIONS(4859), + [anon_sym_with] = ACTIONS(4859), + [anon_sym_yield] = ACTIONS(4859), + [anon_sym_typeof] = ACTIONS(4859), + [anon_sym_sizeof] = ACTIONS(4859), + [anon_sym_instance_sizeof] = ACTIONS(4859), + [anon_sym_offsetof] = ACTIONS(4859), + [sym__constant_segment] = ACTIONS(4861), + [anon_sym_COLON_COLON] = ACTIONS(4861), + [anon_sym___LINE__] = ACTIONS(4859), + [anon_sym___END_LINE__] = ACTIONS(4859), + [anon_sym___FILE__] = ACTIONS(4859), + [anon_sym___DIR__] = ACTIONS(4859), + [sym_special_variable] = ACTIONS(4861), + [sym_identifier_method_call] = ACTIONS(4861), + [sym_instance_var] = ACTIONS(4861), + [sym_class_var] = ACTIONS(4861), + [sym_self] = ACTIONS(4859), + [anon_sym_alias] = ACTIONS(4859), + [anon_sym_begin] = ACTIONS(4859), + [anon_sym_while] = ACTIONS(4859), + [anon_sym_until] = ACTIONS(4859), + [anon_sym_else] = ACTIONS(4859), + [anon_sym_require] = ACTIONS(4859), + [anon_sym_case] = ACTIONS(4859), + [anon_sym_select] = ACTIONS(4859), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4861), + [sym__start_of_named_tuple] = ACTIONS(4861), + [sym_unary_plus] = ACTIONS(4861), + [sym_unary_minus] = ACTIONS(4861), + [sym_unary_wrapping_plus] = ACTIONS(4861), + [sym_unary_wrapping_minus] = ACTIONS(4861), + [sym__beginless_range_operator] = ACTIONS(4861), + [sym__regex_start] = ACTIONS(4861), + [sym__regular_if_keyword] = ACTIONS(4861), + [sym__regular_unless_keyword] = ACTIONS(4861), + [sym__regular_rescue_keyword] = ACTIONS(4861), + [sym__regular_ensure_keyword] = ACTIONS(4861), + [sym__string_literal_start] = ACTIONS(4861), + [sym__string_percent_literal_start] = ACTIONS(4861), + [sym__command_percent_literal_start] = ACTIONS(4861), + [sym__string_array_percent_literal_start] = ACTIONS(4861), + [sym__symbol_array_percent_literal_start] = ACTIONS(4861), + [sym__regex_percent_literal_start] = ACTIONS(4861), + [sym_heredoc_start] = ACTIONS(4861), [sym__heredoc_body_start] = ACTIONS(7), }, - [2085] = { - [sym_heredoc_body] = STATE(2085), + [2066] = { + [sym_heredoc_body] = STATE(2066), + [aux_sym_union_type_repeat1] = STATE(2071), + [sym_identifier] = ACTIONS(4638), + [anon_sym_SEMI] = ACTIONS(4640), + [anon_sym_LPAREN] = ACTIONS(4640), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4638), + [sym_true] = ACTIONS(4638), + [sym_false] = ACTIONS(4638), + [aux_sym_integer_token2] = ACTIONS(4638), + [aux_sym_float_token2] = ACTIONS(4640), + [anon_sym_SQUOTE] = ACTIONS(4640), + [sym_operator_symbol] = ACTIONS(4640), + [sym_unquoted_symbol] = ACTIONS(4640), + [anon_sym_COLON_DQUOTE] = ACTIONS(4640), + [anon_sym_BQUOTE] = ACTIONS(4640), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_COMMA] = ACTIONS(4640), + [anon_sym_DASH_GT] = ACTIONS(4640), + [anon_sym_annotation] = ACTIONS(4638), + [anon_sym_end] = ACTIONS(4638), + [anon_sym_AT_LBRACK] = ACTIONS(4640), + [anon_sym_private] = ACTIONS(4638), + [anon_sym_module] = ACTIONS(4638), + [anon_sym_abstract] = ACTIONS(4638), + [anon_sym_class] = ACTIONS(4638), + [anon_sym_struct] = ACTIONS(4638), + [anon_sym_enum] = ACTIONS(4638), + [anon_sym_STAR] = ACTIONS(4835), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_BANG] = ACTIONS(4640), + [anon_sym_TILDE] = ACTIONS(4640), + [anon_sym_def] = ACTIONS(4638), + [anon_sym_DOT] = ACTIONS(4839), + [anon_sym_protected] = ACTIONS(4638), + [anon_sym_include] = ACTIONS(4638), + [anon_sym_extend] = ACTIONS(4638), + [anon_sym_return] = ACTIONS(4638), + [anon_sym_next] = ACTIONS(4638), + [anon_sym_break] = ACTIONS(4638), + [anon_sym_with] = ACTIONS(4638), + [anon_sym_yield] = ACTIONS(4638), + [anon_sym_typeof] = ACTIONS(4638), + [anon_sym_sizeof] = ACTIONS(4638), + [anon_sym_instance_sizeof] = ACTIONS(4638), + [anon_sym_offsetof] = ACTIONS(4638), + [sym__constant_segment] = ACTIONS(4640), + [anon_sym_COLON_COLON] = ACTIONS(4640), + [anon_sym___LINE__] = ACTIONS(4638), + [anon_sym___END_LINE__] = ACTIONS(4638), + [anon_sym___FILE__] = ACTIONS(4638), + [anon_sym___DIR__] = ACTIONS(4638), + [sym_special_variable] = ACTIONS(4640), + [sym_identifier_method_call] = ACTIONS(4640), + [sym_instance_var] = ACTIONS(4640), + [sym_class_var] = ACTIONS(4640), + [sym_self] = ACTIONS(4638), + [anon_sym_QMARK] = ACTIONS(4841), + [anon_sym_alias] = ACTIONS(4638), + [anon_sym_begin] = ACTIONS(4638), + [anon_sym_while] = ACTIONS(4638), + [anon_sym_until] = ACTIONS(4638), + [anon_sym_require] = ACTIONS(4638), + [anon_sym_case] = ACTIONS(4638), + [anon_sym_select] = ACTIONS(4638), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4640), + [sym__start_of_named_tuple] = ACTIONS(4640), + [sym_unary_plus] = ACTIONS(4640), + [sym_unary_minus] = ACTIONS(4640), + [sym_unary_wrapping_plus] = ACTIONS(4640), + [sym_unary_wrapping_minus] = ACTIONS(4640), + [sym__beginless_range_operator] = ACTIONS(4640), + [sym__regex_start] = ACTIONS(4640), + [sym__regular_if_keyword] = ACTIONS(4640), + [sym__regular_unless_keyword] = ACTIONS(4640), + [sym__string_literal_start] = ACTIONS(4640), + [sym__string_percent_literal_start] = ACTIONS(4640), + [sym__command_percent_literal_start] = ACTIONS(4640), + [sym__string_array_percent_literal_start] = ACTIONS(4640), + [sym__symbol_array_percent_literal_start] = ACTIONS(4640), + [sym__regex_percent_literal_start] = ACTIONS(4640), + [sym_heredoc_start] = ACTIONS(4640), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2067] = { + [sym__terminator] = STATE(2100), + [sym_heredoc_body] = STATE(2067), + [sym_identifier] = ACTIONS(4863), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4865), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4863), + [sym_true] = ACTIONS(4863), + [sym_false] = ACTIONS(4863), + [aux_sym_integer_token2] = ACTIONS(4863), + [aux_sym_float_token2] = ACTIONS(4865), + [anon_sym_SQUOTE] = ACTIONS(4865), + [sym_operator_symbol] = ACTIONS(4865), + [sym_unquoted_symbol] = ACTIONS(4865), + [anon_sym_COLON_DQUOTE] = ACTIONS(4865), + [anon_sym_BQUOTE] = ACTIONS(4865), + [anon_sym_LBRACK] = ACTIONS(4865), + [anon_sym_DASH_GT] = ACTIONS(4865), + [anon_sym_annotation] = ACTIONS(4863), + [anon_sym_end] = ACTIONS(4863), + [anon_sym_AT_LBRACK] = ACTIONS(4865), + [anon_sym_private] = ACTIONS(4863), + [anon_sym_module] = ACTIONS(4863), + [anon_sym_abstract] = ACTIONS(4863), + [anon_sym_class] = ACTIONS(4863), + [anon_sym_struct] = ACTIONS(4863), + [anon_sym_enum] = ACTIONS(4863), + [anon_sym_STAR] = ACTIONS(4865), + [anon_sym_BANG] = ACTIONS(4865), + [anon_sym_TILDE] = ACTIONS(4865), + [anon_sym_def] = ACTIONS(4863), + [anon_sym_protected] = ACTIONS(4863), + [anon_sym_include] = ACTIONS(4863), + [anon_sym_extend] = ACTIONS(4863), + [anon_sym_return] = ACTIONS(4863), + [anon_sym_next] = ACTIONS(4863), + [anon_sym_break] = ACTIONS(4863), + [anon_sym_with] = ACTIONS(4863), + [anon_sym_yield] = ACTIONS(4863), + [anon_sym_typeof] = ACTIONS(4863), + [anon_sym_sizeof] = ACTIONS(4863), + [anon_sym_instance_sizeof] = ACTIONS(4863), + [anon_sym_offsetof] = ACTIONS(4863), + [sym__constant_segment] = ACTIONS(4865), + [anon_sym_COLON_COLON] = ACTIONS(4865), + [anon_sym___LINE__] = ACTIONS(4863), + [anon_sym___END_LINE__] = ACTIONS(4863), + [anon_sym___FILE__] = ACTIONS(4863), + [anon_sym___DIR__] = ACTIONS(4863), + [sym_special_variable] = ACTIONS(4865), + [sym_identifier_method_call] = ACTIONS(4865), + [sym_instance_var] = ACTIONS(4865), + [sym_class_var] = ACTIONS(4865), + [sym_self] = ACTIONS(4863), + [anon_sym_alias] = ACTIONS(4863), + [anon_sym_begin] = ACTIONS(4863), + [anon_sym_while] = ACTIONS(4863), + [anon_sym_until] = ACTIONS(4863), + [anon_sym_else] = ACTIONS(4863), + [anon_sym_require] = ACTIONS(4863), + [anon_sym_case] = ACTIONS(4863), + [anon_sym_select] = ACTIONS(4863), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4865), + [sym__start_of_named_tuple] = ACTIONS(4865), + [sym_unary_plus] = ACTIONS(4865), + [sym_unary_minus] = ACTIONS(4865), + [sym_unary_wrapping_plus] = ACTIONS(4865), + [sym_unary_wrapping_minus] = ACTIONS(4865), + [sym__beginless_range_operator] = ACTIONS(4865), + [sym__regex_start] = ACTIONS(4865), + [sym__regular_if_keyword] = ACTIONS(4865), + [sym__regular_unless_keyword] = ACTIONS(4865), + [sym__regular_rescue_keyword] = ACTIONS(4865), + [sym__regular_ensure_keyword] = ACTIONS(4865), + [sym__string_literal_start] = ACTIONS(4865), + [sym__string_percent_literal_start] = ACTIONS(4865), + [sym__command_percent_literal_start] = ACTIONS(4865), + [sym__string_array_percent_literal_start] = ACTIONS(4865), + [sym__symbol_array_percent_literal_start] = ACTIONS(4865), + [sym__regex_percent_literal_start] = ACTIONS(4865), + [sym_heredoc_start] = ACTIONS(4865), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2068] = { + [sym_heredoc_body] = STATE(2068), + [sym_identifier] = ACTIONS(4867), + [anon_sym_SEMI] = ACTIONS(4869), + [anon_sym_LPAREN] = ACTIONS(4869), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4867), + [sym_true] = ACTIONS(4867), + [sym_false] = ACTIONS(4867), + [aux_sym_integer_token2] = ACTIONS(4867), + [aux_sym_float_token2] = ACTIONS(4869), + [anon_sym_SQUOTE] = ACTIONS(4869), + [sym_operator_symbol] = ACTIONS(4869), + [sym_unquoted_symbol] = ACTIONS(4869), + [anon_sym_COLON_DQUOTE] = ACTIONS(4869), + [anon_sym_BQUOTE] = ACTIONS(4869), + [anon_sym_LBRACK] = ACTIONS(4869), + [anon_sym_COMMA] = ACTIONS(4869), + [anon_sym_DASH_GT] = ACTIONS(4869), + [anon_sym_annotation] = ACTIONS(4867), + [anon_sym_end] = ACTIONS(4867), + [anon_sym_AT_LBRACK] = ACTIONS(4869), + [anon_sym_private] = ACTIONS(4867), + [anon_sym_module] = ACTIONS(4867), + [anon_sym_abstract] = ACTIONS(4867), + [anon_sym_class] = ACTIONS(4867), + [anon_sym_struct] = ACTIONS(4867), + [anon_sym_enum] = ACTIONS(4867), + [anon_sym_STAR] = ACTIONS(4869), + [anon_sym_BANG] = ACTIONS(4869), + [anon_sym_TILDE] = ACTIONS(4869), + [anon_sym_def] = ACTIONS(4867), + [anon_sym_protected] = ACTIONS(4867), + [anon_sym_include] = ACTIONS(4867), + [anon_sym_extend] = ACTIONS(4867), + [anon_sym_return] = ACTIONS(4867), + [anon_sym_next] = ACTIONS(4867), + [anon_sym_break] = ACTIONS(4867), + [anon_sym_with] = ACTIONS(4867), + [anon_sym_yield] = ACTIONS(4867), + [anon_sym_typeof] = ACTIONS(4867), + [anon_sym_sizeof] = ACTIONS(4867), + [anon_sym_instance_sizeof] = ACTIONS(4867), + [anon_sym_offsetof] = ACTIONS(4867), + [sym__constant_segment] = ACTIONS(4869), + [anon_sym_COLON_COLON] = ACTIONS(4869), + [anon_sym___LINE__] = ACTIONS(4867), + [anon_sym___END_LINE__] = ACTIONS(4867), + [anon_sym___FILE__] = ACTIONS(4867), + [anon_sym___DIR__] = ACTIONS(4867), + [sym_special_variable] = ACTIONS(4869), + [sym_identifier_method_call] = ACTIONS(4869), + [sym_instance_var] = ACTIONS(4869), + [sym_class_var] = ACTIONS(4869), + [sym_self] = ACTIONS(4867), + [anon_sym_alias] = ACTIONS(4867), + [anon_sym_begin] = ACTIONS(4867), + [anon_sym_while] = ACTIONS(4867), + [anon_sym_until] = ACTIONS(4867), + [anon_sym_else] = ACTIONS(4867), + [anon_sym_require] = ACTIONS(4867), + [anon_sym_case] = ACTIONS(4867), + [anon_sym_select] = ACTIONS(4867), + [sym__line_break] = ACTIONS(4869), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4869), + [sym__start_of_named_tuple] = ACTIONS(4869), + [sym_unary_plus] = ACTIONS(4869), + [sym_unary_minus] = ACTIONS(4869), + [sym_unary_wrapping_plus] = ACTIONS(4869), + [sym_unary_wrapping_minus] = ACTIONS(4869), + [sym__beginless_range_operator] = ACTIONS(4869), + [sym__regex_start] = ACTIONS(4869), + [sym__regular_if_keyword] = ACTIONS(4869), + [sym__regular_unless_keyword] = ACTIONS(4869), + [sym__regular_rescue_keyword] = ACTIONS(4869), + [sym__regular_ensure_keyword] = ACTIONS(4869), + [sym__string_literal_start] = ACTIONS(4869), + [sym__string_percent_literal_start] = ACTIONS(4869), + [sym__command_percent_literal_start] = ACTIONS(4869), + [sym__string_array_percent_literal_start] = ACTIONS(4869), + [sym__symbol_array_percent_literal_start] = ACTIONS(4869), + [sym__regex_percent_literal_start] = ACTIONS(4869), + [sym_heredoc_start] = ACTIONS(4869), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2069] = { + [sym__terminator] = STATE(2112), + [sym_heredoc_body] = STATE(2069), + [sym_identifier] = ACTIONS(4871), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4873), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4871), + [sym_true] = ACTIONS(4871), + [sym_false] = ACTIONS(4871), + [aux_sym_integer_token2] = ACTIONS(4871), + [aux_sym_float_token2] = ACTIONS(4873), + [anon_sym_SQUOTE] = ACTIONS(4873), + [sym_operator_symbol] = ACTIONS(4873), + [sym_unquoted_symbol] = ACTIONS(4873), + [anon_sym_COLON_DQUOTE] = ACTIONS(4873), + [anon_sym_BQUOTE] = ACTIONS(4873), + [anon_sym_LBRACK] = ACTIONS(4873), + [anon_sym_DASH_GT] = ACTIONS(4873), + [anon_sym_annotation] = ACTIONS(4871), + [anon_sym_end] = ACTIONS(4871), + [anon_sym_AT_LBRACK] = ACTIONS(4873), + [anon_sym_private] = ACTIONS(4871), + [anon_sym_module] = ACTIONS(4871), + [anon_sym_abstract] = ACTIONS(4871), + [anon_sym_class] = ACTIONS(4871), + [anon_sym_struct] = ACTIONS(4871), + [anon_sym_enum] = ACTIONS(4871), + [anon_sym_STAR] = ACTIONS(4873), + [anon_sym_BANG] = ACTIONS(4873), + [anon_sym_TILDE] = ACTIONS(4873), + [anon_sym_def] = ACTIONS(4871), + [anon_sym_protected] = ACTIONS(4871), + [anon_sym_include] = ACTIONS(4871), + [anon_sym_extend] = ACTIONS(4871), + [anon_sym_return] = ACTIONS(4871), + [anon_sym_next] = ACTIONS(4871), + [anon_sym_break] = ACTIONS(4871), + [anon_sym_with] = ACTIONS(4871), + [anon_sym_yield] = ACTIONS(4871), + [anon_sym_typeof] = ACTIONS(4871), + [anon_sym_sizeof] = ACTIONS(4871), + [anon_sym_instance_sizeof] = ACTIONS(4871), + [anon_sym_offsetof] = ACTIONS(4871), + [sym__constant_segment] = ACTIONS(4873), + [anon_sym_COLON_COLON] = ACTIONS(4873), + [anon_sym___LINE__] = ACTIONS(4871), + [anon_sym___END_LINE__] = ACTIONS(4871), + [anon_sym___FILE__] = ACTIONS(4871), + [anon_sym___DIR__] = ACTIONS(4871), + [sym_special_variable] = ACTIONS(4873), + [sym_identifier_method_call] = ACTIONS(4873), + [sym_instance_var] = ACTIONS(4873), + [sym_class_var] = ACTIONS(4873), + [sym_self] = ACTIONS(4871), + [anon_sym_alias] = ACTIONS(4871), + [anon_sym_begin] = ACTIONS(4871), + [anon_sym_while] = ACTIONS(4871), + [anon_sym_until] = ACTIONS(4871), + [anon_sym_else] = ACTIONS(4871), + [anon_sym_require] = ACTIONS(4871), + [anon_sym_case] = ACTIONS(4871), + [anon_sym_select] = ACTIONS(4871), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4873), + [sym__start_of_named_tuple] = ACTIONS(4873), + [sym_unary_plus] = ACTIONS(4873), + [sym_unary_minus] = ACTIONS(4873), + [sym_unary_wrapping_plus] = ACTIONS(4873), + [sym_unary_wrapping_minus] = ACTIONS(4873), + [sym__beginless_range_operator] = ACTIONS(4873), + [sym__regex_start] = ACTIONS(4873), + [sym__regular_if_keyword] = ACTIONS(4873), + [sym__regular_unless_keyword] = ACTIONS(4873), + [sym__regular_rescue_keyword] = ACTIONS(4873), + [sym__regular_ensure_keyword] = ACTIONS(4873), + [sym__string_literal_start] = ACTIONS(4873), + [sym__string_percent_literal_start] = ACTIONS(4873), + [sym__command_percent_literal_start] = ACTIONS(4873), + [sym__string_array_percent_literal_start] = ACTIONS(4873), + [sym__symbol_array_percent_literal_start] = ACTIONS(4873), + [sym__regex_percent_literal_start] = ACTIONS(4873), + [sym_heredoc_start] = ACTIONS(4873), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2070] = { + [sym__terminator] = STATE(2123), + [sym_heredoc_body] = STATE(2070), + [sym_identifier] = ACTIONS(4875), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4877), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4875), + [sym_true] = ACTIONS(4875), + [sym_false] = ACTIONS(4875), + [aux_sym_integer_token2] = ACTIONS(4875), + [aux_sym_float_token2] = ACTIONS(4877), + [anon_sym_SQUOTE] = ACTIONS(4877), + [sym_operator_symbol] = ACTIONS(4877), + [sym_unquoted_symbol] = ACTIONS(4877), + [anon_sym_COLON_DQUOTE] = ACTIONS(4877), + [anon_sym_BQUOTE] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4877), + [anon_sym_DASH_GT] = ACTIONS(4877), + [anon_sym_annotation] = ACTIONS(4875), + [anon_sym_end] = ACTIONS(4875), + [anon_sym_AT_LBRACK] = ACTIONS(4877), + [anon_sym_private] = ACTIONS(4875), + [anon_sym_module] = ACTIONS(4875), + [anon_sym_abstract] = ACTIONS(4875), + [anon_sym_class] = ACTIONS(4875), + [anon_sym_struct] = ACTIONS(4875), + [anon_sym_enum] = ACTIONS(4875), + [anon_sym_STAR] = ACTIONS(4877), + [anon_sym_BANG] = ACTIONS(4877), + [anon_sym_TILDE] = ACTIONS(4877), + [anon_sym_def] = ACTIONS(4875), + [anon_sym_protected] = ACTIONS(4875), + [anon_sym_include] = ACTIONS(4875), + [anon_sym_extend] = ACTIONS(4875), + [anon_sym_return] = ACTIONS(4875), + [anon_sym_next] = ACTIONS(4875), + [anon_sym_break] = ACTIONS(4875), + [anon_sym_with] = ACTIONS(4875), + [anon_sym_yield] = ACTIONS(4875), + [anon_sym_typeof] = ACTIONS(4875), + [anon_sym_sizeof] = ACTIONS(4875), + [anon_sym_instance_sizeof] = ACTIONS(4875), + [anon_sym_offsetof] = ACTIONS(4875), + [sym__constant_segment] = ACTIONS(4877), + [anon_sym_COLON_COLON] = ACTIONS(4877), + [anon_sym___LINE__] = ACTIONS(4875), + [anon_sym___END_LINE__] = ACTIONS(4875), + [anon_sym___FILE__] = ACTIONS(4875), + [anon_sym___DIR__] = ACTIONS(4875), + [sym_special_variable] = ACTIONS(4877), + [sym_identifier_method_call] = ACTIONS(4877), + [sym_instance_var] = ACTIONS(4877), + [sym_class_var] = ACTIONS(4877), + [sym_self] = ACTIONS(4875), + [anon_sym_alias] = ACTIONS(4875), + [anon_sym_begin] = ACTIONS(4875), + [anon_sym_while] = ACTIONS(4875), + [anon_sym_until] = ACTIONS(4875), + [anon_sym_else] = ACTIONS(4875), + [anon_sym_require] = ACTIONS(4875), + [anon_sym_case] = ACTIONS(4875), + [anon_sym_select] = ACTIONS(4875), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4877), + [sym__start_of_named_tuple] = ACTIONS(4877), + [sym_unary_plus] = ACTIONS(4877), + [sym_unary_minus] = ACTIONS(4877), + [sym_unary_wrapping_plus] = ACTIONS(4877), + [sym_unary_wrapping_minus] = ACTIONS(4877), + [sym__beginless_range_operator] = ACTIONS(4877), + [sym__regex_start] = ACTIONS(4877), + [sym__regular_if_keyword] = ACTIONS(4877), + [sym__regular_unless_keyword] = ACTIONS(4877), + [sym__regular_rescue_keyword] = ACTIONS(4877), + [sym__regular_ensure_keyword] = ACTIONS(4877), + [sym__string_literal_start] = ACTIONS(4877), + [sym__string_percent_literal_start] = ACTIONS(4877), + [sym__command_percent_literal_start] = ACTIONS(4877), + [sym__string_array_percent_literal_start] = ACTIONS(4877), + [sym__symbol_array_percent_literal_start] = ACTIONS(4877), + [sym__regex_percent_literal_start] = ACTIONS(4877), + [sym_heredoc_start] = ACTIONS(4877), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2071] = { + [sym_heredoc_body] = STATE(2071), + [aux_sym_union_type_repeat1] = STATE(2077), + [sym_identifier] = ACTIONS(4634), + [anon_sym_SEMI] = ACTIONS(4636), + [anon_sym_LPAREN] = ACTIONS(4636), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4634), + [sym_true] = ACTIONS(4634), + [sym_false] = ACTIONS(4634), + [aux_sym_integer_token2] = ACTIONS(4634), + [aux_sym_float_token2] = ACTIONS(4636), + [anon_sym_SQUOTE] = ACTIONS(4636), + [sym_operator_symbol] = ACTIONS(4636), + [sym_unquoted_symbol] = ACTIONS(4636), + [anon_sym_COLON_DQUOTE] = ACTIONS(4636), + [anon_sym_BQUOTE] = ACTIONS(4636), + [anon_sym_LBRACK] = ACTIONS(4636), + [anon_sym_COMMA] = ACTIONS(4636), + [anon_sym_DASH_GT] = ACTIONS(4636), + [anon_sym_annotation] = ACTIONS(4634), + [anon_sym_end] = ACTIONS(4634), + [anon_sym_AT_LBRACK] = ACTIONS(4636), + [anon_sym_private] = ACTIONS(4634), + [anon_sym_module] = ACTIONS(4634), + [anon_sym_abstract] = ACTIONS(4634), + [anon_sym_class] = ACTIONS(4634), + [anon_sym_struct] = ACTIONS(4634), + [anon_sym_enum] = ACTIONS(4634), + [anon_sym_STAR] = ACTIONS(4636), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_BANG] = ACTIONS(4636), + [anon_sym_TILDE] = ACTIONS(4636), + [anon_sym_def] = ACTIONS(4634), + [anon_sym_DOT] = ACTIONS(4636), + [anon_sym_protected] = ACTIONS(4634), + [anon_sym_include] = ACTIONS(4634), + [anon_sym_extend] = ACTIONS(4634), + [anon_sym_return] = ACTIONS(4634), + [anon_sym_next] = ACTIONS(4634), + [anon_sym_break] = ACTIONS(4634), + [anon_sym_with] = ACTIONS(4634), + [anon_sym_yield] = ACTIONS(4634), + [anon_sym_typeof] = ACTIONS(4634), + [anon_sym_sizeof] = ACTIONS(4634), + [anon_sym_instance_sizeof] = ACTIONS(4634), + [anon_sym_offsetof] = ACTIONS(4634), + [sym__constant_segment] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(4636), + [anon_sym___LINE__] = ACTIONS(4634), + [anon_sym___END_LINE__] = ACTIONS(4634), + [anon_sym___FILE__] = ACTIONS(4634), + [anon_sym___DIR__] = ACTIONS(4634), + [sym_special_variable] = ACTIONS(4636), + [sym_identifier_method_call] = ACTIONS(4636), + [sym_instance_var] = ACTIONS(4636), + [sym_class_var] = ACTIONS(4636), + [sym_self] = ACTIONS(4634), + [anon_sym_QMARK] = ACTIONS(4636), + [anon_sym_alias] = ACTIONS(4634), + [anon_sym_begin] = ACTIONS(4634), + [anon_sym_while] = ACTIONS(4634), + [anon_sym_until] = ACTIONS(4634), + [anon_sym_require] = ACTIONS(4634), + [anon_sym_case] = ACTIONS(4634), + [anon_sym_select] = ACTIONS(4634), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4636), + [sym__start_of_named_tuple] = ACTIONS(4636), + [sym_unary_plus] = ACTIONS(4636), + [sym_unary_minus] = ACTIONS(4636), + [sym_unary_wrapping_plus] = ACTIONS(4636), + [sym_unary_wrapping_minus] = ACTIONS(4636), + [sym__beginless_range_operator] = ACTIONS(4636), + [sym__regex_start] = ACTIONS(4636), + [sym__regular_if_keyword] = ACTIONS(4636), + [sym__regular_unless_keyword] = ACTIONS(4636), + [sym__string_literal_start] = ACTIONS(4636), + [sym__string_percent_literal_start] = ACTIONS(4636), + [sym__command_percent_literal_start] = ACTIONS(4636), + [sym__string_array_percent_literal_start] = ACTIONS(4636), + [sym__symbol_array_percent_literal_start] = ACTIONS(4636), + [sym__regex_percent_literal_start] = ACTIONS(4636), + [sym_heredoc_start] = ACTIONS(4636), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2072] = { + [sym__terminator] = STATE(2108), + [sym_heredoc_body] = STATE(2072), + [sym_identifier] = ACTIONS(4879), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4881), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4879), + [sym_true] = ACTIONS(4879), + [sym_false] = ACTIONS(4879), + [aux_sym_integer_token2] = ACTIONS(4879), + [aux_sym_float_token2] = ACTIONS(4881), + [anon_sym_SQUOTE] = ACTIONS(4881), + [sym_operator_symbol] = ACTIONS(4881), + [sym_unquoted_symbol] = ACTIONS(4881), + [anon_sym_COLON_DQUOTE] = ACTIONS(4881), + [anon_sym_BQUOTE] = ACTIONS(4881), + [anon_sym_LBRACK] = ACTIONS(4881), + [anon_sym_DASH_GT] = ACTIONS(4881), + [anon_sym_annotation] = ACTIONS(4879), + [anon_sym_end] = ACTIONS(4879), + [anon_sym_AT_LBRACK] = ACTIONS(4881), + [anon_sym_private] = ACTIONS(4879), + [anon_sym_module] = ACTIONS(4879), + [anon_sym_abstract] = ACTIONS(4879), + [anon_sym_class] = ACTIONS(4879), + [anon_sym_struct] = ACTIONS(4879), + [anon_sym_enum] = ACTIONS(4879), + [anon_sym_STAR] = ACTIONS(4881), + [anon_sym_BANG] = ACTIONS(4881), + [anon_sym_TILDE] = ACTIONS(4881), + [anon_sym_def] = ACTIONS(4879), + [anon_sym_protected] = ACTIONS(4879), + [anon_sym_include] = ACTIONS(4879), + [anon_sym_extend] = ACTIONS(4879), + [anon_sym_return] = ACTIONS(4879), + [anon_sym_next] = ACTIONS(4879), + [anon_sym_break] = ACTIONS(4879), + [anon_sym_with] = ACTIONS(4879), + [anon_sym_yield] = ACTIONS(4879), + [anon_sym_typeof] = ACTIONS(4879), + [anon_sym_sizeof] = ACTIONS(4879), + [anon_sym_instance_sizeof] = ACTIONS(4879), + [anon_sym_offsetof] = ACTIONS(4879), + [sym__constant_segment] = ACTIONS(4881), + [anon_sym_COLON_COLON] = ACTIONS(4881), + [anon_sym___LINE__] = ACTIONS(4879), + [anon_sym___END_LINE__] = ACTIONS(4879), + [anon_sym___FILE__] = ACTIONS(4879), + [anon_sym___DIR__] = ACTIONS(4879), + [sym_special_variable] = ACTIONS(4881), + [sym_identifier_method_call] = ACTIONS(4881), + [sym_instance_var] = ACTIONS(4881), + [sym_class_var] = ACTIONS(4881), + [sym_self] = ACTIONS(4879), + [anon_sym_alias] = ACTIONS(4879), + [anon_sym_begin] = ACTIONS(4879), + [anon_sym_while] = ACTIONS(4879), + [anon_sym_until] = ACTIONS(4879), + [anon_sym_else] = ACTIONS(4879), + [anon_sym_require] = ACTIONS(4879), + [anon_sym_case] = ACTIONS(4879), + [anon_sym_select] = ACTIONS(4879), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4881), + [sym__start_of_named_tuple] = ACTIONS(4881), + [sym_unary_plus] = ACTIONS(4881), + [sym_unary_minus] = ACTIONS(4881), + [sym_unary_wrapping_plus] = ACTIONS(4881), + [sym_unary_wrapping_minus] = ACTIONS(4881), + [sym__beginless_range_operator] = ACTIONS(4881), + [sym__regex_start] = ACTIONS(4881), + [sym__regular_if_keyword] = ACTIONS(4881), + [sym__regular_unless_keyword] = ACTIONS(4881), + [sym__regular_rescue_keyword] = ACTIONS(4881), + [sym__regular_ensure_keyword] = ACTIONS(4881), + [sym__string_literal_start] = ACTIONS(4881), + [sym__string_percent_literal_start] = ACTIONS(4881), + [sym__command_percent_literal_start] = ACTIONS(4881), + [sym__string_array_percent_literal_start] = ACTIONS(4881), + [sym__symbol_array_percent_literal_start] = ACTIONS(4881), + [sym__regex_percent_literal_start] = ACTIONS(4881), + [sym_heredoc_start] = ACTIONS(4881), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2073] = { + [sym_heredoc_body] = STATE(2073), + [sym_identifier] = ACTIONS(4783), + [anon_sym_SEMI] = ACTIONS(4785), + [anon_sym_LPAREN] = ACTIONS(4785), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4783), + [sym_true] = ACTIONS(4783), + [sym_false] = ACTIONS(4783), + [aux_sym_integer_token2] = ACTIONS(4783), + [aux_sym_float_token2] = ACTIONS(4785), + [anon_sym_SQUOTE] = ACTIONS(4785), + [sym_operator_symbol] = ACTIONS(4785), + [sym_unquoted_symbol] = ACTIONS(4785), + [anon_sym_COLON_DQUOTE] = ACTIONS(4785), + [anon_sym_BQUOTE] = ACTIONS(4785), + [anon_sym_LBRACK] = ACTIONS(4785), + [anon_sym_DASH_GT] = ACTIONS(4785), + [anon_sym_annotation] = ACTIONS(4783), + [anon_sym_end] = ACTIONS(4783), + [anon_sym_AT_LBRACK] = ACTIONS(4785), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_module] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_class] = ACTIONS(4783), + [anon_sym_struct] = ACTIONS(4783), + [anon_sym_enum] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_BANG] = ACTIONS(4785), + [anon_sym_TILDE] = ACTIONS(4785), + [anon_sym_def] = ACTIONS(4783), + [anon_sym_protected] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_extend] = ACTIONS(4783), + [anon_sym_forall] = ACTIONS(4783), + [anon_sym_return] = ACTIONS(4783), + [anon_sym_next] = ACTIONS(4783), + [anon_sym_break] = ACTIONS(4783), + [anon_sym_with] = ACTIONS(4783), + [anon_sym_yield] = ACTIONS(4783), + [anon_sym_typeof] = ACTIONS(4783), + [anon_sym_sizeof] = ACTIONS(4783), + [anon_sym_instance_sizeof] = ACTIONS(4783), + [anon_sym_offsetof] = ACTIONS(4783), + [sym__constant_segment] = ACTIONS(4785), + [anon_sym_COLON_COLON] = ACTIONS(4785), + [anon_sym___LINE__] = ACTIONS(4783), + [anon_sym___END_LINE__] = ACTIONS(4783), + [anon_sym___FILE__] = ACTIONS(4783), + [anon_sym___DIR__] = ACTIONS(4783), + [sym_special_variable] = ACTIONS(4785), + [sym_identifier_method_call] = ACTIONS(4785), + [sym_instance_var] = ACTIONS(4785), + [sym_class_var] = ACTIONS(4785), + [sym_self] = ACTIONS(4783), + [anon_sym_alias] = ACTIONS(4783), + [anon_sym_begin] = ACTIONS(4783), + [anon_sym_while] = ACTIONS(4783), + [anon_sym_until] = ACTIONS(4783), + [anon_sym_else] = ACTIONS(4783), + [anon_sym_require] = ACTIONS(4783), + [anon_sym_case] = ACTIONS(4783), + [anon_sym_select] = ACTIONS(4783), + [sym__line_break] = ACTIONS(4785), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4785), + [sym__start_of_named_tuple] = ACTIONS(4785), + [sym_unary_plus] = ACTIONS(4785), + [sym_unary_minus] = ACTIONS(4785), + [sym_unary_wrapping_plus] = ACTIONS(4785), + [sym_unary_wrapping_minus] = ACTIONS(4785), + [sym__beginless_range_operator] = ACTIONS(4785), + [sym__regex_start] = ACTIONS(4785), + [sym__regular_if_keyword] = ACTIONS(4785), + [sym__regular_unless_keyword] = ACTIONS(4785), + [sym__regular_rescue_keyword] = ACTIONS(4785), + [sym__regular_ensure_keyword] = ACTIONS(4785), + [sym__string_literal_start] = ACTIONS(4785), + [sym__string_percent_literal_start] = ACTIONS(4785), + [sym__command_percent_literal_start] = ACTIONS(4785), + [sym__string_array_percent_literal_start] = ACTIONS(4785), + [sym__symbol_array_percent_literal_start] = ACTIONS(4785), + [sym__regex_percent_literal_start] = ACTIONS(4785), + [sym_heredoc_start] = ACTIONS(4785), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2074] = { + [sym_heredoc_body] = STATE(2074), + [aux_sym_union_type_repeat1] = STATE(2071), + [sym_identifier] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym_LPAREN] = ACTIONS(4650), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4648), + [sym_true] = ACTIONS(4648), + [sym_false] = ACTIONS(4648), + [aux_sym_integer_token2] = ACTIONS(4648), + [aux_sym_float_token2] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4650), + [sym_operator_symbol] = ACTIONS(4650), + [sym_unquoted_symbol] = ACTIONS(4650), + [anon_sym_COLON_DQUOTE] = ACTIONS(4650), + [anon_sym_BQUOTE] = ACTIONS(4650), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_COMMA] = ACTIONS(4650), + [anon_sym_DASH_GT] = ACTIONS(4650), + [anon_sym_annotation] = ACTIONS(4648), + [anon_sym_end] = ACTIONS(4648), + [anon_sym_AT_LBRACK] = ACTIONS(4650), + [anon_sym_private] = ACTIONS(4648), + [anon_sym_module] = ACTIONS(4648), + [anon_sym_abstract] = ACTIONS(4648), + [anon_sym_class] = ACTIONS(4648), + [anon_sym_struct] = ACTIONS(4648), + [anon_sym_enum] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4835), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_BANG] = ACTIONS(4650), + [anon_sym_TILDE] = ACTIONS(4650), + [anon_sym_def] = ACTIONS(4648), + [anon_sym_DOT] = ACTIONS(4839), + [anon_sym_protected] = ACTIONS(4648), + [anon_sym_include] = ACTIONS(4648), + [anon_sym_extend] = ACTIONS(4648), + [anon_sym_return] = ACTIONS(4648), + [anon_sym_next] = ACTIONS(4648), + [anon_sym_break] = ACTIONS(4648), + [anon_sym_with] = ACTIONS(4648), + [anon_sym_yield] = ACTIONS(4648), + [anon_sym_typeof] = ACTIONS(4648), + [anon_sym_sizeof] = ACTIONS(4648), + [anon_sym_instance_sizeof] = ACTIONS(4648), + [anon_sym_offsetof] = ACTIONS(4648), + [sym__constant_segment] = ACTIONS(4650), + [anon_sym_COLON_COLON] = ACTIONS(4650), + [anon_sym___LINE__] = ACTIONS(4648), + [anon_sym___END_LINE__] = ACTIONS(4648), + [anon_sym___FILE__] = ACTIONS(4648), + [anon_sym___DIR__] = ACTIONS(4648), + [sym_special_variable] = ACTIONS(4650), + [sym_identifier_method_call] = ACTIONS(4650), + [sym_instance_var] = ACTIONS(4650), + [sym_class_var] = ACTIONS(4650), + [sym_self] = ACTIONS(4648), + [anon_sym_QMARK] = ACTIONS(4841), + [anon_sym_alias] = ACTIONS(4648), + [anon_sym_begin] = ACTIONS(4648), + [anon_sym_while] = ACTIONS(4648), + [anon_sym_until] = ACTIONS(4648), + [anon_sym_require] = ACTIONS(4648), + [anon_sym_case] = ACTIONS(4648), + [anon_sym_select] = ACTIONS(4648), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4650), + [sym__start_of_named_tuple] = ACTIONS(4650), + [sym_unary_plus] = ACTIONS(4650), + [sym_unary_minus] = ACTIONS(4650), + [sym_unary_wrapping_plus] = ACTIONS(4650), + [sym_unary_wrapping_minus] = ACTIONS(4650), + [sym__beginless_range_operator] = ACTIONS(4650), + [sym__regex_start] = ACTIONS(4650), + [sym__regular_if_keyword] = ACTIONS(4650), + [sym__regular_unless_keyword] = ACTIONS(4650), + [sym__string_literal_start] = ACTIONS(4650), + [sym__string_percent_literal_start] = ACTIONS(4650), + [sym__command_percent_literal_start] = ACTIONS(4650), + [sym__string_array_percent_literal_start] = ACTIONS(4650), + [sym__symbol_array_percent_literal_start] = ACTIONS(4650), + [sym__regex_percent_literal_start] = ACTIONS(4650), + [sym_heredoc_start] = ACTIONS(4650), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2075] = { + [sym__terminator] = STATE(2111), + [sym_heredoc_body] = STATE(2075), + [sym_identifier] = ACTIONS(4883), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4885), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4883), + [sym_true] = ACTIONS(4883), + [sym_false] = ACTIONS(4883), + [aux_sym_integer_token2] = ACTIONS(4883), + [aux_sym_float_token2] = ACTIONS(4885), + [anon_sym_SQUOTE] = ACTIONS(4885), + [sym_operator_symbol] = ACTIONS(4885), + [sym_unquoted_symbol] = ACTIONS(4885), + [anon_sym_COLON_DQUOTE] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LBRACK] = ACTIONS(4885), + [anon_sym_DASH_GT] = ACTIONS(4885), + [anon_sym_annotation] = ACTIONS(4883), + [anon_sym_end] = ACTIONS(4883), + [anon_sym_AT_LBRACK] = ACTIONS(4885), + [anon_sym_private] = ACTIONS(4883), + [anon_sym_module] = ACTIONS(4883), + [anon_sym_abstract] = ACTIONS(4883), + [anon_sym_class] = ACTIONS(4883), + [anon_sym_struct] = ACTIONS(4883), + [anon_sym_enum] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4885), + [anon_sym_BANG] = ACTIONS(4885), + [anon_sym_TILDE] = ACTIONS(4885), + [anon_sym_def] = ACTIONS(4883), + [anon_sym_protected] = ACTIONS(4883), + [anon_sym_include] = ACTIONS(4883), + [anon_sym_extend] = ACTIONS(4883), + [anon_sym_return] = ACTIONS(4883), + [anon_sym_next] = ACTIONS(4883), + [anon_sym_break] = ACTIONS(4883), + [anon_sym_with] = ACTIONS(4883), + [anon_sym_yield] = ACTIONS(4883), + [anon_sym_typeof] = ACTIONS(4883), + [anon_sym_sizeof] = ACTIONS(4883), + [anon_sym_instance_sizeof] = ACTIONS(4883), + [anon_sym_offsetof] = ACTIONS(4883), + [sym__constant_segment] = ACTIONS(4885), + [anon_sym_COLON_COLON] = ACTIONS(4885), + [anon_sym___LINE__] = ACTIONS(4883), + [anon_sym___END_LINE__] = ACTIONS(4883), + [anon_sym___FILE__] = ACTIONS(4883), + [anon_sym___DIR__] = ACTIONS(4883), + [sym_special_variable] = ACTIONS(4885), + [sym_identifier_method_call] = ACTIONS(4885), + [sym_instance_var] = ACTIONS(4885), + [sym_class_var] = ACTIONS(4885), + [sym_self] = ACTIONS(4883), + [anon_sym_alias] = ACTIONS(4883), + [anon_sym_begin] = ACTIONS(4883), + [anon_sym_while] = ACTIONS(4883), + [anon_sym_until] = ACTIONS(4883), + [anon_sym_else] = ACTIONS(4883), + [anon_sym_require] = ACTIONS(4883), + [anon_sym_case] = ACTIONS(4883), + [anon_sym_select] = ACTIONS(4883), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4885), + [sym__start_of_named_tuple] = ACTIONS(4885), + [sym_unary_plus] = ACTIONS(4885), + [sym_unary_minus] = ACTIONS(4885), + [sym_unary_wrapping_plus] = ACTIONS(4885), + [sym_unary_wrapping_minus] = ACTIONS(4885), + [sym__beginless_range_operator] = ACTIONS(4885), + [sym__regex_start] = ACTIONS(4885), + [sym__regular_if_keyword] = ACTIONS(4885), + [sym__regular_unless_keyword] = ACTIONS(4885), + [sym__regular_rescue_keyword] = ACTIONS(4885), + [sym__regular_ensure_keyword] = ACTIONS(4885), + [sym__string_literal_start] = ACTIONS(4885), + [sym__string_percent_literal_start] = ACTIONS(4885), + [sym__command_percent_literal_start] = ACTIONS(4885), + [sym__string_array_percent_literal_start] = ACTIONS(4885), + [sym__symbol_array_percent_literal_start] = ACTIONS(4885), + [sym__regex_percent_literal_start] = ACTIONS(4885), + [sym_heredoc_start] = ACTIONS(4885), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2076] = { + [sym_heredoc_body] = STATE(2076), + [aux_sym_union_type_repeat1] = STATE(2071), [sym_identifier] = ACTIONS(4619), [anon_sym_SEMI] = ACTIONS(4621), [anon_sym_LPAREN] = ACTIONS(4621), @@ -312907,7 +316381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_unquoted_symbol] = ACTIONS(4621), [anon_sym_COLON_DQUOTE] = ACTIONS(4621), [anon_sym_BQUOTE] = ACTIONS(4621), - [anon_sym_LBRACK] = ACTIONS(4621), + [anon_sym_LBRACK] = ACTIONS(4833), [anon_sym_COMMA] = ACTIONS(4621), [anon_sym_DASH_GT] = ACTIONS(4621), [anon_sym_annotation] = ACTIONS(4619), @@ -312919,12 +316393,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(4619), [anon_sym_struct] = ACTIONS(4619), [anon_sym_enum] = ACTIONS(4619), - [anon_sym_STAR] = ACTIONS(4621), - [anon_sym_PIPE] = ACTIONS(4621), + [anon_sym_STAR] = ACTIONS(4835), + [anon_sym_PIPE] = ACTIONS(4837), [anon_sym_BANG] = ACTIONS(4621), [anon_sym_TILDE] = ACTIONS(4621), [anon_sym_def] = ACTIONS(4619), - [anon_sym_DOT] = ACTIONS(4621), + [anon_sym_DOT] = ACTIONS(4839), [anon_sym_protected] = ACTIONS(4619), [anon_sym_include] = ACTIONS(4619), [anon_sym_extend] = ACTIONS(4619), @@ -312948,13 +316422,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_instance_var] = ACTIONS(4621), [sym_class_var] = ACTIONS(4621), [sym_self] = ACTIONS(4619), - [anon_sym_QMARK] = ACTIONS(4621), + [anon_sym_QMARK] = ACTIONS(4841), [anon_sym_alias] = ACTIONS(4619), [anon_sym_begin] = ACTIONS(4619), [anon_sym_while] = ACTIONS(4619), [anon_sym_until] = ACTIONS(4619), [anon_sym_require] = ACTIONS(4619), [anon_sym_case] = ACTIONS(4619), + [anon_sym_select] = ACTIONS(4619), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(4621), [sym__start_of_named_tuple] = ACTIONS(4621), @@ -312975,512 +316450,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4621), [sym__heredoc_body_start] = ACTIONS(7), }, - [2086] = { - [sym_heredoc_body] = STATE(2086), - [sym_identifier] = ACTIONS(4655), - [anon_sym_SEMI] = ACTIONS(4657), - [anon_sym_LPAREN] = ACTIONS(4657), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4655), - [sym_true] = ACTIONS(4655), - [sym_false] = ACTIONS(4655), - [aux_sym_integer_token2] = ACTIONS(4655), - [aux_sym_float_token2] = ACTIONS(4657), - [anon_sym_SQUOTE] = ACTIONS(4657), - [sym_operator_symbol] = ACTIONS(4657), - [sym_unquoted_symbol] = ACTIONS(4657), - [anon_sym_COLON_DQUOTE] = ACTIONS(4657), - [anon_sym_BQUOTE] = ACTIONS(4657), - [anon_sym_LBRACK] = ACTIONS(4657), - [anon_sym_COMMA] = ACTIONS(4657), - [anon_sym_DASH_GT] = ACTIONS(4657), - [anon_sym_annotation] = ACTIONS(4655), - [anon_sym_end] = ACTIONS(4655), - [anon_sym_AT_LBRACK] = ACTIONS(4657), - [anon_sym_private] = ACTIONS(4655), - [anon_sym_module] = ACTIONS(4655), - [anon_sym_abstract] = ACTIONS(4655), - [anon_sym_class] = ACTIONS(4655), - [anon_sym_struct] = ACTIONS(4655), - [anon_sym_enum] = ACTIONS(4655), - [anon_sym_STAR] = ACTIONS(4657), - [anon_sym_PIPE] = ACTIONS(4657), - [anon_sym_BANG] = ACTIONS(4657), - [anon_sym_TILDE] = ACTIONS(4657), - [anon_sym_def] = ACTIONS(4655), - [anon_sym_DOT] = ACTIONS(4657), - [anon_sym_protected] = ACTIONS(4655), - [anon_sym_include] = ACTIONS(4655), - [anon_sym_extend] = ACTIONS(4655), - [anon_sym_return] = ACTIONS(4655), - [anon_sym_next] = ACTIONS(4655), - [anon_sym_break] = ACTIONS(4655), - [anon_sym_with] = ACTIONS(4655), - [anon_sym_yield] = ACTIONS(4655), - [anon_sym_typeof] = ACTIONS(4655), - [anon_sym_sizeof] = ACTIONS(4655), - [anon_sym_instance_sizeof] = ACTIONS(4655), - [anon_sym_offsetof] = ACTIONS(4655), - [sym__constant_segment] = ACTIONS(4657), - [anon_sym_COLON_COLON] = ACTIONS(4657), - [anon_sym___LINE__] = ACTIONS(4655), - [anon_sym___END_LINE__] = ACTIONS(4655), - [anon_sym___FILE__] = ACTIONS(4655), - [anon_sym___DIR__] = ACTIONS(4655), - [sym_special_variable] = ACTIONS(4657), - [sym_identifier_method_call] = ACTIONS(4657), - [sym_instance_var] = ACTIONS(4657), - [sym_class_var] = ACTIONS(4657), - [sym_self] = ACTIONS(4655), - [anon_sym_QMARK] = ACTIONS(4657), - [anon_sym_alias] = ACTIONS(4655), - [anon_sym_begin] = ACTIONS(4655), - [anon_sym_while] = ACTIONS(4655), - [anon_sym_until] = ACTIONS(4655), - [anon_sym_require] = ACTIONS(4655), - [anon_sym_case] = ACTIONS(4655), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4657), - [sym__start_of_named_tuple] = ACTIONS(4657), - [sym_unary_plus] = ACTIONS(4657), - [sym_unary_minus] = ACTIONS(4657), - [sym_unary_wrapping_plus] = ACTIONS(4657), - [sym_unary_wrapping_minus] = ACTIONS(4657), - [sym__beginless_range_operator] = ACTIONS(4657), - [sym__regex_start] = ACTIONS(4657), - [sym__regular_if_keyword] = ACTIONS(4657), - [sym__regular_unless_keyword] = ACTIONS(4657), - [sym__string_literal_start] = ACTIONS(4657), - [sym__string_percent_literal_start] = ACTIONS(4657), - [sym__command_percent_literal_start] = ACTIONS(4657), - [sym__string_array_percent_literal_start] = ACTIONS(4657), - [sym__symbol_array_percent_literal_start] = ACTIONS(4657), - [sym__regex_percent_literal_start] = ACTIONS(4657), - [sym_heredoc_start] = ACTIONS(4657), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2087] = { - [sym_heredoc_body] = STATE(2087), - [sym_identifier] = ACTIONS(4659), - [anon_sym_SEMI] = ACTIONS(4661), - [anon_sym_LPAREN] = ACTIONS(4661), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4659), - [sym_true] = ACTIONS(4659), - [sym_false] = ACTIONS(4659), - [aux_sym_integer_token2] = ACTIONS(4659), - [aux_sym_float_token2] = ACTIONS(4661), - [anon_sym_SQUOTE] = ACTIONS(4661), - [sym_operator_symbol] = ACTIONS(4661), - [sym_unquoted_symbol] = ACTIONS(4661), - [anon_sym_COLON_DQUOTE] = ACTIONS(4661), - [anon_sym_BQUOTE] = ACTIONS(4661), - [anon_sym_LBRACK] = ACTIONS(4661), - [anon_sym_COMMA] = ACTIONS(4661), - [anon_sym_DASH_GT] = ACTIONS(4661), - [anon_sym_annotation] = ACTIONS(4659), - [anon_sym_end] = ACTIONS(4659), - [anon_sym_AT_LBRACK] = ACTIONS(4661), - [anon_sym_private] = ACTIONS(4659), - [anon_sym_module] = ACTIONS(4659), - [anon_sym_abstract] = ACTIONS(4659), - [anon_sym_class] = ACTIONS(4659), - [anon_sym_struct] = ACTIONS(4659), - [anon_sym_enum] = ACTIONS(4659), - [anon_sym_STAR] = ACTIONS(4661), - [anon_sym_PIPE] = ACTIONS(4661), - [anon_sym_BANG] = ACTIONS(4661), - [anon_sym_TILDE] = ACTIONS(4661), - [anon_sym_def] = ACTIONS(4659), - [anon_sym_DOT] = ACTIONS(4661), - [anon_sym_protected] = ACTIONS(4659), - [anon_sym_include] = ACTIONS(4659), - [anon_sym_extend] = ACTIONS(4659), - [anon_sym_return] = ACTIONS(4659), - [anon_sym_next] = ACTIONS(4659), - [anon_sym_break] = ACTIONS(4659), - [anon_sym_with] = ACTIONS(4659), - [anon_sym_yield] = ACTIONS(4659), - [anon_sym_typeof] = ACTIONS(4659), - [anon_sym_sizeof] = ACTIONS(4659), - [anon_sym_instance_sizeof] = ACTIONS(4659), - [anon_sym_offsetof] = ACTIONS(4659), - [sym__constant_segment] = ACTIONS(4661), - [anon_sym_COLON_COLON] = ACTIONS(4661), - [anon_sym___LINE__] = ACTIONS(4659), - [anon_sym___END_LINE__] = ACTIONS(4659), - [anon_sym___FILE__] = ACTIONS(4659), - [anon_sym___DIR__] = ACTIONS(4659), - [sym_special_variable] = ACTIONS(4661), - [sym_identifier_method_call] = ACTIONS(4661), - [sym_instance_var] = ACTIONS(4661), - [sym_class_var] = ACTIONS(4661), - [sym_self] = ACTIONS(4659), - [anon_sym_QMARK] = ACTIONS(4661), - [anon_sym_alias] = ACTIONS(4659), - [anon_sym_begin] = ACTIONS(4659), - [anon_sym_while] = ACTIONS(4659), - [anon_sym_until] = ACTIONS(4659), - [anon_sym_require] = ACTIONS(4659), - [anon_sym_case] = ACTIONS(4659), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4661), - [sym__start_of_named_tuple] = ACTIONS(4661), - [sym_unary_plus] = ACTIONS(4661), - [sym_unary_minus] = ACTIONS(4661), - [sym_unary_wrapping_plus] = ACTIONS(4661), - [sym_unary_wrapping_minus] = ACTIONS(4661), - [sym__beginless_range_operator] = ACTIONS(4661), - [sym__regex_start] = ACTIONS(4661), - [sym__regular_if_keyword] = ACTIONS(4661), - [sym__regular_unless_keyword] = ACTIONS(4661), - [sym__string_literal_start] = ACTIONS(4661), - [sym__string_percent_literal_start] = ACTIONS(4661), - [sym__command_percent_literal_start] = ACTIONS(4661), - [sym__string_array_percent_literal_start] = ACTIONS(4661), - [sym__symbol_array_percent_literal_start] = ACTIONS(4661), - [sym__regex_percent_literal_start] = ACTIONS(4661), - [sym_heredoc_start] = ACTIONS(4661), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2088] = { - [sym_heredoc_body] = STATE(2088), - [sym_identifier] = ACTIONS(4675), - [anon_sym_SEMI] = ACTIONS(4677), - [anon_sym_LPAREN] = ACTIONS(4677), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4675), - [sym_true] = ACTIONS(4675), - [sym_false] = ACTIONS(4675), - [aux_sym_integer_token2] = ACTIONS(4675), - [aux_sym_float_token2] = ACTIONS(4677), - [anon_sym_SQUOTE] = ACTIONS(4677), - [sym_operator_symbol] = ACTIONS(4677), - [sym_unquoted_symbol] = ACTIONS(4677), - [anon_sym_COLON_DQUOTE] = ACTIONS(4677), - [anon_sym_BQUOTE] = ACTIONS(4677), - [anon_sym_LBRACK] = ACTIONS(4677), - [anon_sym_COMMA] = ACTIONS(4677), - [anon_sym_DASH_GT] = ACTIONS(4677), - [anon_sym_annotation] = ACTIONS(4675), - [anon_sym_end] = ACTIONS(4675), - [anon_sym_AT_LBRACK] = ACTIONS(4677), - [anon_sym_private] = ACTIONS(4675), - [anon_sym_module] = ACTIONS(4675), - [anon_sym_abstract] = ACTIONS(4675), - [anon_sym_class] = ACTIONS(4675), - [anon_sym_struct] = ACTIONS(4675), - [anon_sym_enum] = ACTIONS(4675), - [anon_sym_STAR] = ACTIONS(4677), - [anon_sym_PIPE] = ACTIONS(4677), - [anon_sym_BANG] = ACTIONS(4677), - [anon_sym_TILDE] = ACTIONS(4677), - [anon_sym_def] = ACTIONS(4675), - [anon_sym_DOT] = ACTIONS(4677), - [anon_sym_protected] = ACTIONS(4675), - [anon_sym_include] = ACTIONS(4675), - [anon_sym_extend] = ACTIONS(4675), - [anon_sym_return] = ACTIONS(4675), - [anon_sym_next] = ACTIONS(4675), - [anon_sym_break] = ACTIONS(4675), - [anon_sym_with] = ACTIONS(4675), - [anon_sym_yield] = ACTIONS(4675), - [anon_sym_typeof] = ACTIONS(4675), - [anon_sym_sizeof] = ACTIONS(4675), - [anon_sym_instance_sizeof] = ACTIONS(4675), - [anon_sym_offsetof] = ACTIONS(4675), - [sym__constant_segment] = ACTIONS(4677), - [anon_sym_COLON_COLON] = ACTIONS(4677), - [anon_sym___LINE__] = ACTIONS(4675), - [anon_sym___END_LINE__] = ACTIONS(4675), - [anon_sym___FILE__] = ACTIONS(4675), - [anon_sym___DIR__] = ACTIONS(4675), - [sym_special_variable] = ACTIONS(4677), - [sym_identifier_method_call] = ACTIONS(4677), - [sym_instance_var] = ACTIONS(4677), - [sym_class_var] = ACTIONS(4677), - [sym_self] = ACTIONS(4675), - [anon_sym_QMARK] = ACTIONS(4677), - [anon_sym_alias] = ACTIONS(4675), - [anon_sym_begin] = ACTIONS(4675), - [anon_sym_while] = ACTIONS(4675), - [anon_sym_until] = ACTIONS(4675), - [anon_sym_require] = ACTIONS(4675), - [anon_sym_case] = ACTIONS(4675), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4677), - [sym__start_of_named_tuple] = ACTIONS(4677), - [sym_unary_plus] = ACTIONS(4677), - [sym_unary_minus] = ACTIONS(4677), - [sym_unary_wrapping_plus] = ACTIONS(4677), - [sym_unary_wrapping_minus] = ACTIONS(4677), - [sym__beginless_range_operator] = ACTIONS(4677), - [sym__regex_start] = ACTIONS(4677), - [sym__regular_if_keyword] = ACTIONS(4677), - [sym__regular_unless_keyword] = ACTIONS(4677), - [sym__string_literal_start] = ACTIONS(4677), - [sym__string_percent_literal_start] = ACTIONS(4677), - [sym__command_percent_literal_start] = ACTIONS(4677), - [sym__string_array_percent_literal_start] = ACTIONS(4677), - [sym__symbol_array_percent_literal_start] = ACTIONS(4677), - [sym__regex_percent_literal_start] = ACTIONS(4677), - [sym_heredoc_start] = ACTIONS(4677), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2089] = { - [sym_heredoc_body] = STATE(2089), - [sym_identifier] = ACTIONS(4623), - [anon_sym_SEMI] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4625), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4623), - [sym_true] = ACTIONS(4623), - [sym_false] = ACTIONS(4623), - [aux_sym_integer_token2] = ACTIONS(4623), - [aux_sym_float_token2] = ACTIONS(4625), - [anon_sym_SQUOTE] = ACTIONS(4625), - [sym_operator_symbol] = ACTIONS(4625), - [sym_unquoted_symbol] = ACTIONS(4625), - [anon_sym_COLON_DQUOTE] = ACTIONS(4625), - [anon_sym_BQUOTE] = ACTIONS(4625), - [anon_sym_LBRACK] = ACTIONS(4625), - [anon_sym_COMMA] = ACTIONS(4625), - [anon_sym_DASH_GT] = ACTIONS(4625), - [anon_sym_annotation] = ACTIONS(4623), - [anon_sym_end] = ACTIONS(4623), - [anon_sym_AT_LBRACK] = ACTIONS(4625), - [anon_sym_private] = ACTIONS(4623), - [anon_sym_module] = ACTIONS(4623), - [anon_sym_abstract] = ACTIONS(4623), - [anon_sym_class] = ACTIONS(4623), - [anon_sym_struct] = ACTIONS(4623), - [anon_sym_enum] = ACTIONS(4623), - [anon_sym_STAR] = ACTIONS(4625), - [anon_sym_PIPE] = ACTIONS(4625), - [anon_sym_BANG] = ACTIONS(4625), - [anon_sym_TILDE] = ACTIONS(4625), - [anon_sym_def] = ACTIONS(4623), - [anon_sym_DOT] = ACTIONS(4625), - [anon_sym_protected] = ACTIONS(4623), - [anon_sym_include] = ACTIONS(4623), - [anon_sym_extend] = ACTIONS(4623), - [anon_sym_return] = ACTIONS(4623), - [anon_sym_next] = ACTIONS(4623), - [anon_sym_break] = ACTIONS(4623), - [anon_sym_with] = ACTIONS(4623), - [anon_sym_yield] = ACTIONS(4623), - [anon_sym_typeof] = ACTIONS(4623), - [anon_sym_sizeof] = ACTIONS(4623), - [anon_sym_instance_sizeof] = ACTIONS(4623), - [anon_sym_offsetof] = ACTIONS(4623), - [sym__constant_segment] = ACTIONS(4625), - [anon_sym_COLON_COLON] = ACTIONS(4625), - [anon_sym___LINE__] = ACTIONS(4623), - [anon_sym___END_LINE__] = ACTIONS(4623), - [anon_sym___FILE__] = ACTIONS(4623), - [anon_sym___DIR__] = ACTIONS(4623), - [sym_special_variable] = ACTIONS(4625), - [sym_identifier_method_call] = ACTIONS(4625), - [sym_instance_var] = ACTIONS(4625), - [sym_class_var] = ACTIONS(4625), - [sym_self] = ACTIONS(4623), - [anon_sym_QMARK] = ACTIONS(4625), - [anon_sym_alias] = ACTIONS(4623), - [anon_sym_begin] = ACTIONS(4623), - [anon_sym_while] = ACTIONS(4623), - [anon_sym_until] = ACTIONS(4623), - [anon_sym_require] = ACTIONS(4623), - [anon_sym_case] = ACTIONS(4623), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4625), - [sym__start_of_named_tuple] = ACTIONS(4625), - [sym_unary_plus] = ACTIONS(4625), - [sym_unary_minus] = ACTIONS(4625), - [sym_unary_wrapping_plus] = ACTIONS(4625), - [sym_unary_wrapping_minus] = ACTIONS(4625), - [sym__beginless_range_operator] = ACTIONS(4625), - [sym__regex_start] = ACTIONS(4625), - [sym__regular_if_keyword] = ACTIONS(4625), - [sym__regular_unless_keyword] = ACTIONS(4625), - [sym__string_literal_start] = ACTIONS(4625), - [sym__string_percent_literal_start] = ACTIONS(4625), - [sym__command_percent_literal_start] = ACTIONS(4625), - [sym__string_array_percent_literal_start] = ACTIONS(4625), - [sym__symbol_array_percent_literal_start] = ACTIONS(4625), - [sym__regex_percent_literal_start] = ACTIONS(4625), - [sym_heredoc_start] = ACTIONS(4625), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2090] = { - [sym_heredoc_body] = STATE(2090), - [sym_identifier] = ACTIONS(4635), - [anon_sym_SEMI] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(4637), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4635), - [sym_true] = ACTIONS(4635), - [sym_false] = ACTIONS(4635), - [aux_sym_integer_token2] = ACTIONS(4635), - [aux_sym_float_token2] = ACTIONS(4637), - [anon_sym_SQUOTE] = ACTIONS(4637), - [sym_operator_symbol] = ACTIONS(4637), - [sym_unquoted_symbol] = ACTIONS(4637), - [anon_sym_COLON_DQUOTE] = ACTIONS(4637), - [anon_sym_BQUOTE] = ACTIONS(4637), - [anon_sym_LBRACK] = ACTIONS(4637), - [anon_sym_COMMA] = ACTIONS(4637), - [anon_sym_DASH_GT] = ACTIONS(4637), - [anon_sym_annotation] = ACTIONS(4635), - [anon_sym_end] = ACTIONS(4635), - [anon_sym_AT_LBRACK] = ACTIONS(4637), - [anon_sym_private] = ACTIONS(4635), - [anon_sym_module] = ACTIONS(4635), - [anon_sym_abstract] = ACTIONS(4635), - [anon_sym_class] = ACTIONS(4635), - [anon_sym_struct] = ACTIONS(4635), - [anon_sym_enum] = ACTIONS(4635), - [anon_sym_STAR] = ACTIONS(4637), - [anon_sym_PIPE] = ACTIONS(4637), - [anon_sym_BANG] = ACTIONS(4637), - [anon_sym_TILDE] = ACTIONS(4637), - [anon_sym_def] = ACTIONS(4635), - [anon_sym_DOT] = ACTIONS(4637), - [anon_sym_protected] = ACTIONS(4635), - [anon_sym_include] = ACTIONS(4635), - [anon_sym_extend] = ACTIONS(4635), - [anon_sym_return] = ACTIONS(4635), - [anon_sym_next] = ACTIONS(4635), - [anon_sym_break] = ACTIONS(4635), - [anon_sym_with] = ACTIONS(4635), - [anon_sym_yield] = ACTIONS(4635), - [anon_sym_typeof] = ACTIONS(4635), - [anon_sym_sizeof] = ACTIONS(4635), - [anon_sym_instance_sizeof] = ACTIONS(4635), - [anon_sym_offsetof] = ACTIONS(4635), - [sym__constant_segment] = ACTIONS(4637), - [anon_sym_COLON_COLON] = ACTIONS(4637), - [anon_sym___LINE__] = ACTIONS(4635), - [anon_sym___END_LINE__] = ACTIONS(4635), - [anon_sym___FILE__] = ACTIONS(4635), - [anon_sym___DIR__] = ACTIONS(4635), - [sym_special_variable] = ACTIONS(4637), - [sym_identifier_method_call] = ACTIONS(4637), - [sym_instance_var] = ACTIONS(4637), - [sym_class_var] = ACTIONS(4637), - [sym_self] = ACTIONS(4635), - [anon_sym_QMARK] = ACTIONS(4637), - [anon_sym_alias] = ACTIONS(4635), - [anon_sym_begin] = ACTIONS(4635), - [anon_sym_while] = ACTIONS(4635), - [anon_sym_until] = ACTIONS(4635), - [anon_sym_require] = ACTIONS(4635), - [anon_sym_case] = ACTIONS(4635), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4637), - [sym__start_of_named_tuple] = ACTIONS(4637), - [sym_unary_plus] = ACTIONS(4637), - [sym_unary_minus] = ACTIONS(4637), - [sym_unary_wrapping_plus] = ACTIONS(4637), - [sym_unary_wrapping_minus] = ACTIONS(4637), - [sym__beginless_range_operator] = ACTIONS(4637), - [sym__regex_start] = ACTIONS(4637), - [sym__regular_if_keyword] = ACTIONS(4637), - [sym__regular_unless_keyword] = ACTIONS(4637), - [sym__string_literal_start] = ACTIONS(4637), - [sym__string_percent_literal_start] = ACTIONS(4637), - [sym__command_percent_literal_start] = ACTIONS(4637), - [sym__string_array_percent_literal_start] = ACTIONS(4637), - [sym__symbol_array_percent_literal_start] = ACTIONS(4637), - [sym__regex_percent_literal_start] = ACTIONS(4637), - [sym_heredoc_start] = ACTIONS(4637), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2091] = { - [sym_heredoc_body] = STATE(2091), - [sym_identifier] = ACTIONS(4647), - [anon_sym_SEMI] = ACTIONS(4649), - [anon_sym_LPAREN] = ACTIONS(4649), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4647), - [sym_true] = ACTIONS(4647), - [sym_false] = ACTIONS(4647), - [aux_sym_integer_token2] = ACTIONS(4647), - [aux_sym_float_token2] = ACTIONS(4649), - [anon_sym_SQUOTE] = ACTIONS(4649), - [sym_operator_symbol] = ACTIONS(4649), - [sym_unquoted_symbol] = ACTIONS(4649), - [anon_sym_COLON_DQUOTE] = ACTIONS(4649), - [anon_sym_BQUOTE] = ACTIONS(4649), - [anon_sym_LBRACK] = ACTIONS(4649), - [anon_sym_COMMA] = ACTIONS(4649), - [anon_sym_DASH_GT] = ACTIONS(4649), - [anon_sym_annotation] = ACTIONS(4647), - [anon_sym_end] = ACTIONS(4647), - [anon_sym_AT_LBRACK] = ACTIONS(4649), - [anon_sym_private] = ACTIONS(4647), - [anon_sym_module] = ACTIONS(4647), - [anon_sym_abstract] = ACTIONS(4647), - [anon_sym_class] = ACTIONS(4647), - [anon_sym_struct] = ACTIONS(4647), - [anon_sym_enum] = ACTIONS(4647), - [anon_sym_STAR] = ACTIONS(4649), - [anon_sym_PIPE] = ACTIONS(4649), - [anon_sym_BANG] = ACTIONS(4649), - [anon_sym_TILDE] = ACTIONS(4649), - [anon_sym_def] = ACTIONS(4647), - [anon_sym_DOT] = ACTIONS(4649), - [anon_sym_protected] = ACTIONS(4647), - [anon_sym_include] = ACTIONS(4647), - [anon_sym_extend] = ACTIONS(4647), - [anon_sym_return] = ACTIONS(4647), - [anon_sym_next] = ACTIONS(4647), - [anon_sym_break] = ACTIONS(4647), - [anon_sym_with] = ACTIONS(4647), - [anon_sym_yield] = ACTIONS(4647), - [anon_sym_typeof] = ACTIONS(4647), - [anon_sym_sizeof] = ACTIONS(4647), - [anon_sym_instance_sizeof] = ACTIONS(4647), - [anon_sym_offsetof] = ACTIONS(4647), - [sym__constant_segment] = ACTIONS(4649), - [anon_sym_COLON_COLON] = ACTIONS(4649), - [anon_sym___LINE__] = ACTIONS(4647), - [anon_sym___END_LINE__] = ACTIONS(4647), - [anon_sym___FILE__] = ACTIONS(4647), - [anon_sym___DIR__] = ACTIONS(4647), - [sym_special_variable] = ACTIONS(4649), - [sym_identifier_method_call] = ACTIONS(4649), - [sym_instance_var] = ACTIONS(4649), - [sym_class_var] = ACTIONS(4649), - [sym_self] = ACTIONS(4647), - [anon_sym_QMARK] = ACTIONS(4649), - [anon_sym_alias] = ACTIONS(4647), - [anon_sym_begin] = ACTIONS(4647), - [anon_sym_while] = ACTIONS(4647), - [anon_sym_until] = ACTIONS(4647), - [anon_sym_require] = ACTIONS(4647), - [anon_sym_case] = ACTIONS(4647), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4649), - [sym__start_of_named_tuple] = ACTIONS(4649), - [sym_unary_plus] = ACTIONS(4649), - [sym_unary_minus] = ACTIONS(4649), - [sym_unary_wrapping_plus] = ACTIONS(4649), - [sym_unary_wrapping_minus] = ACTIONS(4649), - [sym__beginless_range_operator] = ACTIONS(4649), - [sym__regex_start] = ACTIONS(4649), - [sym__regular_if_keyword] = ACTIONS(4649), - [sym__regular_unless_keyword] = ACTIONS(4649), - [sym__string_literal_start] = ACTIONS(4649), - [sym__string_percent_literal_start] = ACTIONS(4649), - [sym__command_percent_literal_start] = ACTIONS(4649), - [sym__string_array_percent_literal_start] = ACTIONS(4649), - [sym__symbol_array_percent_literal_start] = ACTIONS(4649), - [sym__regex_percent_literal_start] = ACTIONS(4649), - [sym_heredoc_start] = ACTIONS(4649), - [sym__heredoc_body_start] = ACTIONS(7), - }, - [2092] = { - [sym_heredoc_body] = STATE(2092), + [2077] = { + [sym_heredoc_body] = STATE(2077), + [aux_sym_union_type_repeat1] = STATE(2077), [sym_identifier] = ACTIONS(4627), [anon_sym_SEMI] = ACTIONS(4629), [anon_sym_LPAREN] = ACTIONS(4629), @@ -313508,7 +316480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(4627), [anon_sym_enum] = ACTIONS(4627), [anon_sym_STAR] = ACTIONS(4629), - [anon_sym_PIPE] = ACTIONS(4629), + [anon_sym_PIPE] = ACTIONS(4887), [anon_sym_BANG] = ACTIONS(4629), [anon_sym_TILDE] = ACTIONS(4629), [anon_sym_def] = ACTIONS(4627), @@ -313543,6 +316515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_until] = ACTIONS(4627), [anon_sym_require] = ACTIONS(4627), [anon_sym_case] = ACTIONS(4627), + [anon_sym_select] = ACTIONS(4627), [sym__line_continuation] = ACTIONS(5), [sym__start_of_hash_or_tuple] = ACTIONS(4629), [sym__start_of_named_tuple] = ACTIONS(4629), @@ -313563,15604 +316536,16935 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_start] = ACTIONS(4629), [sym__heredoc_body_start] = ACTIONS(7), }, + [2078] = { + [sym__terminator] = STATE(2102), + [sym_heredoc_body] = STATE(2078), + [sym_identifier] = ACTIONS(4890), + [anon_sym_SEMI] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(4892), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4890), + [sym_true] = ACTIONS(4890), + [sym_false] = ACTIONS(4890), + [aux_sym_integer_token2] = ACTIONS(4890), + [aux_sym_float_token2] = ACTIONS(4892), + [anon_sym_SQUOTE] = ACTIONS(4892), + [sym_operator_symbol] = ACTIONS(4892), + [sym_unquoted_symbol] = ACTIONS(4892), + [anon_sym_COLON_DQUOTE] = ACTIONS(4892), + [anon_sym_BQUOTE] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(4892), + [anon_sym_DASH_GT] = ACTIONS(4892), + [anon_sym_annotation] = ACTIONS(4890), + [anon_sym_end] = ACTIONS(4890), + [anon_sym_AT_LBRACK] = ACTIONS(4892), + [anon_sym_private] = ACTIONS(4890), + [anon_sym_module] = ACTIONS(4890), + [anon_sym_abstract] = ACTIONS(4890), + [anon_sym_class] = ACTIONS(4890), + [anon_sym_struct] = ACTIONS(4890), + [anon_sym_enum] = ACTIONS(4890), + [anon_sym_STAR] = ACTIONS(4892), + [anon_sym_BANG] = ACTIONS(4892), + [anon_sym_TILDE] = ACTIONS(4892), + [anon_sym_def] = ACTIONS(4890), + [anon_sym_protected] = ACTIONS(4890), + [anon_sym_include] = ACTIONS(4890), + [anon_sym_extend] = ACTIONS(4890), + [anon_sym_return] = ACTIONS(4890), + [anon_sym_next] = ACTIONS(4890), + [anon_sym_break] = ACTIONS(4890), + [anon_sym_with] = ACTIONS(4890), + [anon_sym_yield] = ACTIONS(4890), + [anon_sym_typeof] = ACTIONS(4890), + [anon_sym_sizeof] = ACTIONS(4890), + [anon_sym_instance_sizeof] = ACTIONS(4890), + [anon_sym_offsetof] = ACTIONS(4890), + [sym__constant_segment] = ACTIONS(4892), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym___LINE__] = ACTIONS(4890), + [anon_sym___END_LINE__] = ACTIONS(4890), + [anon_sym___FILE__] = ACTIONS(4890), + [anon_sym___DIR__] = ACTIONS(4890), + [sym_special_variable] = ACTIONS(4892), + [sym_identifier_method_call] = ACTIONS(4892), + [sym_instance_var] = ACTIONS(4892), + [sym_class_var] = ACTIONS(4892), + [sym_self] = ACTIONS(4890), + [anon_sym_alias] = ACTIONS(4890), + [anon_sym_begin] = ACTIONS(4890), + [anon_sym_while] = ACTIONS(4890), + [anon_sym_until] = ACTIONS(4890), + [anon_sym_else] = ACTIONS(4890), + [anon_sym_require] = ACTIONS(4890), + [anon_sym_case] = ACTIONS(4890), + [anon_sym_select] = ACTIONS(4890), + [sym__line_break] = ACTIONS(1429), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4892), + [sym__start_of_named_tuple] = ACTIONS(4892), + [sym_unary_plus] = ACTIONS(4892), + [sym_unary_minus] = ACTIONS(4892), + [sym_unary_wrapping_plus] = ACTIONS(4892), + [sym_unary_wrapping_minus] = ACTIONS(4892), + [sym__beginless_range_operator] = ACTIONS(4892), + [sym__regex_start] = ACTIONS(4892), + [sym__regular_if_keyword] = ACTIONS(4892), + [sym__regular_unless_keyword] = ACTIONS(4892), + [sym__regular_rescue_keyword] = ACTIONS(4892), + [sym__regular_ensure_keyword] = ACTIONS(4892), + [sym__string_literal_start] = ACTIONS(4892), + [sym__string_percent_literal_start] = ACTIONS(4892), + [sym__command_percent_literal_start] = ACTIONS(4892), + [sym__string_array_percent_literal_start] = ACTIONS(4892), + [sym__symbol_array_percent_literal_start] = ACTIONS(4892), + [sym__regex_percent_literal_start] = ACTIONS(4892), + [sym_heredoc_start] = ACTIONS(4892), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2079] = { + [sym_heredoc_body] = STATE(2079), + [sym_identifier] = ACTIONS(4720), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_LPAREN] = ACTIONS(4722), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4720), + [sym_true] = ACTIONS(4720), + [sym_false] = ACTIONS(4720), + [aux_sym_integer_token2] = ACTIONS(4720), + [aux_sym_float_token2] = ACTIONS(4722), + [anon_sym_SQUOTE] = ACTIONS(4722), + [sym_operator_symbol] = ACTIONS(4722), + [sym_unquoted_symbol] = ACTIONS(4722), + [anon_sym_COLON_DQUOTE] = ACTIONS(4722), + [anon_sym_BQUOTE] = ACTIONS(4722), + [anon_sym_LBRACK] = ACTIONS(4722), + [anon_sym_COMMA] = ACTIONS(4722), + [anon_sym_DASH_GT] = ACTIONS(4722), + [anon_sym_annotation] = ACTIONS(4720), + [anon_sym_end] = ACTIONS(4720), + [anon_sym_AT_LBRACK] = ACTIONS(4722), + [anon_sym_private] = ACTIONS(4720), + [anon_sym_module] = ACTIONS(4720), + [anon_sym_abstract] = ACTIONS(4720), + [anon_sym_class] = ACTIONS(4720), + [anon_sym_struct] = ACTIONS(4720), + [anon_sym_enum] = ACTIONS(4720), + [anon_sym_STAR] = ACTIONS(4722), + [anon_sym_PIPE] = ACTIONS(4722), + [anon_sym_BANG] = ACTIONS(4722), + [anon_sym_TILDE] = ACTIONS(4722), + [anon_sym_def] = ACTIONS(4720), + [anon_sym_DOT] = ACTIONS(4722), + [anon_sym_protected] = ACTIONS(4720), + [anon_sym_include] = ACTIONS(4720), + [anon_sym_extend] = ACTIONS(4720), + [anon_sym_return] = ACTIONS(4720), + [anon_sym_next] = ACTIONS(4720), + [anon_sym_break] = ACTIONS(4720), + [anon_sym_with] = ACTIONS(4720), + [anon_sym_yield] = ACTIONS(4720), + [anon_sym_typeof] = ACTIONS(4720), + [anon_sym_sizeof] = ACTIONS(4720), + [anon_sym_instance_sizeof] = ACTIONS(4720), + [anon_sym_offsetof] = ACTIONS(4720), + [sym__constant_segment] = ACTIONS(4722), + [anon_sym_COLON_COLON] = ACTIONS(4722), + [anon_sym___LINE__] = ACTIONS(4720), + [anon_sym___END_LINE__] = ACTIONS(4720), + [anon_sym___FILE__] = ACTIONS(4720), + [anon_sym___DIR__] = ACTIONS(4720), + [sym_special_variable] = ACTIONS(4722), + [sym_identifier_method_call] = ACTIONS(4722), + [sym_instance_var] = ACTIONS(4722), + [sym_class_var] = ACTIONS(4722), + [sym_self] = ACTIONS(4720), + [anon_sym_QMARK] = ACTIONS(4722), + [anon_sym_alias] = ACTIONS(4720), + [anon_sym_begin] = ACTIONS(4720), + [anon_sym_while] = ACTIONS(4720), + [anon_sym_until] = ACTIONS(4720), + [anon_sym_require] = ACTIONS(4720), + [anon_sym_case] = ACTIONS(4720), + [anon_sym_select] = ACTIONS(4720), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4722), + [sym__start_of_named_tuple] = ACTIONS(4722), + [sym_unary_plus] = ACTIONS(4722), + [sym_unary_minus] = ACTIONS(4722), + [sym_unary_wrapping_plus] = ACTIONS(4722), + [sym_unary_wrapping_minus] = ACTIONS(4722), + [sym__beginless_range_operator] = ACTIONS(4722), + [sym__regex_start] = ACTIONS(4722), + [sym__regular_if_keyword] = ACTIONS(4722), + [sym__regular_unless_keyword] = ACTIONS(4722), + [sym__string_literal_start] = ACTIONS(4722), + [sym__string_percent_literal_start] = ACTIONS(4722), + [sym__command_percent_literal_start] = ACTIONS(4722), + [sym__string_array_percent_literal_start] = ACTIONS(4722), + [sym__symbol_array_percent_literal_start] = ACTIONS(4722), + [sym__regex_percent_literal_start] = ACTIONS(4722), + [sym_heredoc_start] = ACTIONS(4722), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2080] = { + [sym_heredoc_body] = STATE(2080), + [sym_identifier] = ACTIONS(4708), + [anon_sym_SEMI] = ACTIONS(4710), + [anon_sym_LPAREN] = ACTIONS(4710), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4708), + [sym_true] = ACTIONS(4708), + [sym_false] = ACTIONS(4708), + [aux_sym_integer_token2] = ACTIONS(4708), + [aux_sym_float_token2] = ACTIONS(4710), + [anon_sym_SQUOTE] = ACTIONS(4710), + [sym_operator_symbol] = ACTIONS(4710), + [sym_unquoted_symbol] = ACTIONS(4710), + [anon_sym_COLON_DQUOTE] = ACTIONS(4710), + [anon_sym_BQUOTE] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4710), + [anon_sym_COMMA] = ACTIONS(4710), + [anon_sym_DASH_GT] = ACTIONS(4710), + [anon_sym_annotation] = ACTIONS(4708), + [anon_sym_end] = ACTIONS(4708), + [anon_sym_AT_LBRACK] = ACTIONS(4710), + [anon_sym_private] = ACTIONS(4708), + [anon_sym_module] = ACTIONS(4708), + [anon_sym_abstract] = ACTIONS(4708), + [anon_sym_class] = ACTIONS(4708), + [anon_sym_struct] = ACTIONS(4708), + [anon_sym_enum] = ACTIONS(4708), + [anon_sym_STAR] = ACTIONS(4710), + [anon_sym_PIPE] = ACTIONS(4710), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_TILDE] = ACTIONS(4710), + [anon_sym_def] = ACTIONS(4708), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_protected] = ACTIONS(4708), + [anon_sym_include] = ACTIONS(4708), + [anon_sym_extend] = ACTIONS(4708), + [anon_sym_return] = ACTIONS(4708), + [anon_sym_next] = ACTIONS(4708), + [anon_sym_break] = ACTIONS(4708), + [anon_sym_with] = ACTIONS(4708), + [anon_sym_yield] = ACTIONS(4708), + [anon_sym_typeof] = ACTIONS(4708), + [anon_sym_sizeof] = ACTIONS(4708), + [anon_sym_instance_sizeof] = ACTIONS(4708), + [anon_sym_offsetof] = ACTIONS(4708), + [sym__constant_segment] = ACTIONS(4710), + [anon_sym_COLON_COLON] = ACTIONS(4710), + [anon_sym___LINE__] = ACTIONS(4708), + [anon_sym___END_LINE__] = ACTIONS(4708), + [anon_sym___FILE__] = ACTIONS(4708), + [anon_sym___DIR__] = ACTIONS(4708), + [sym_special_variable] = ACTIONS(4710), + [sym_identifier_method_call] = ACTIONS(4710), + [sym_instance_var] = ACTIONS(4710), + [sym_class_var] = ACTIONS(4710), + [sym_self] = ACTIONS(4708), + [anon_sym_QMARK] = ACTIONS(4710), + [anon_sym_alias] = ACTIONS(4708), + [anon_sym_begin] = ACTIONS(4708), + [anon_sym_while] = ACTIONS(4708), + [anon_sym_until] = ACTIONS(4708), + [anon_sym_require] = ACTIONS(4708), + [anon_sym_case] = ACTIONS(4708), + [anon_sym_select] = ACTIONS(4708), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4710), + [sym__start_of_named_tuple] = ACTIONS(4710), + [sym_unary_plus] = ACTIONS(4710), + [sym_unary_minus] = ACTIONS(4710), + [sym_unary_wrapping_plus] = ACTIONS(4710), + [sym_unary_wrapping_minus] = ACTIONS(4710), + [sym__beginless_range_operator] = ACTIONS(4710), + [sym__regex_start] = ACTIONS(4710), + [sym__regular_if_keyword] = ACTIONS(4710), + [sym__regular_unless_keyword] = ACTIONS(4710), + [sym__string_literal_start] = ACTIONS(4710), + [sym__string_percent_literal_start] = ACTIONS(4710), + [sym__command_percent_literal_start] = ACTIONS(4710), + [sym__string_array_percent_literal_start] = ACTIONS(4710), + [sym__symbol_array_percent_literal_start] = ACTIONS(4710), + [sym__regex_percent_literal_start] = ACTIONS(4710), + [sym_heredoc_start] = ACTIONS(4710), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2081] = { + [sym_heredoc_body] = STATE(2081), + [sym_identifier] = ACTIONS(4642), + [anon_sym_SEMI] = ACTIONS(4644), + [anon_sym_LPAREN] = ACTIONS(4644), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4642), + [sym_true] = ACTIONS(4642), + [sym_false] = ACTIONS(4642), + [aux_sym_integer_token2] = ACTIONS(4642), + [aux_sym_float_token2] = ACTIONS(4644), + [anon_sym_SQUOTE] = ACTIONS(4644), + [sym_operator_symbol] = ACTIONS(4644), + [sym_unquoted_symbol] = ACTIONS(4644), + [anon_sym_COLON_DQUOTE] = ACTIONS(4644), + [anon_sym_BQUOTE] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_COMMA] = ACTIONS(4644), + [anon_sym_DASH_GT] = ACTIONS(4644), + [anon_sym_annotation] = ACTIONS(4642), + [anon_sym_end] = ACTIONS(4642), + [anon_sym_AT_LBRACK] = ACTIONS(4644), + [anon_sym_private] = ACTIONS(4642), + [anon_sym_module] = ACTIONS(4642), + [anon_sym_abstract] = ACTIONS(4642), + [anon_sym_class] = ACTIONS(4642), + [anon_sym_struct] = ACTIONS(4642), + [anon_sym_enum] = ACTIONS(4642), + [anon_sym_STAR] = ACTIONS(4644), + [anon_sym_PIPE] = ACTIONS(4644), + [anon_sym_BANG] = ACTIONS(4644), + [anon_sym_TILDE] = ACTIONS(4644), + [anon_sym_def] = ACTIONS(4642), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_protected] = ACTIONS(4642), + [anon_sym_include] = ACTIONS(4642), + [anon_sym_extend] = ACTIONS(4642), + [anon_sym_return] = ACTIONS(4642), + [anon_sym_next] = ACTIONS(4642), + [anon_sym_break] = ACTIONS(4642), + [anon_sym_with] = ACTIONS(4642), + [anon_sym_yield] = ACTIONS(4642), + [anon_sym_typeof] = ACTIONS(4642), + [anon_sym_sizeof] = ACTIONS(4642), + [anon_sym_instance_sizeof] = ACTIONS(4642), + [anon_sym_offsetof] = ACTIONS(4642), + [sym__constant_segment] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4644), + [anon_sym___LINE__] = ACTIONS(4642), + [anon_sym___END_LINE__] = ACTIONS(4642), + [anon_sym___FILE__] = ACTIONS(4642), + [anon_sym___DIR__] = ACTIONS(4642), + [sym_special_variable] = ACTIONS(4644), + [sym_identifier_method_call] = ACTIONS(4644), + [sym_instance_var] = ACTIONS(4644), + [sym_class_var] = ACTIONS(4644), + [sym_self] = ACTIONS(4642), + [anon_sym_QMARK] = ACTIONS(4644), + [anon_sym_alias] = ACTIONS(4642), + [anon_sym_begin] = ACTIONS(4642), + [anon_sym_while] = ACTIONS(4642), + [anon_sym_until] = ACTIONS(4642), + [anon_sym_require] = ACTIONS(4642), + [anon_sym_case] = ACTIONS(4642), + [anon_sym_select] = ACTIONS(4642), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4644), + [sym__start_of_named_tuple] = ACTIONS(4644), + [sym_unary_plus] = ACTIONS(4644), + [sym_unary_minus] = ACTIONS(4644), + [sym_unary_wrapping_plus] = ACTIONS(4644), + [sym_unary_wrapping_minus] = ACTIONS(4644), + [sym__beginless_range_operator] = ACTIONS(4644), + [sym__regex_start] = ACTIONS(4644), + [sym__regular_if_keyword] = ACTIONS(4644), + [sym__regular_unless_keyword] = ACTIONS(4644), + [sym__string_literal_start] = ACTIONS(4644), + [sym__string_percent_literal_start] = ACTIONS(4644), + [sym__command_percent_literal_start] = ACTIONS(4644), + [sym__string_array_percent_literal_start] = ACTIONS(4644), + [sym__symbol_array_percent_literal_start] = ACTIONS(4644), + [sym__regex_percent_literal_start] = ACTIONS(4644), + [sym_heredoc_start] = ACTIONS(4644), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2082] = { + [sym_heredoc_body] = STATE(2082), + [aux_sym_union_type_repeat1] = STATE(2071), + [sym_identifier] = ACTIONS(4684), + [anon_sym_SEMI] = ACTIONS(4686), + [anon_sym_LPAREN] = ACTIONS(4686), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4684), + [sym_true] = ACTIONS(4684), + [sym_false] = ACTIONS(4684), + [aux_sym_integer_token2] = ACTIONS(4684), + [aux_sym_float_token2] = ACTIONS(4686), + [anon_sym_SQUOTE] = ACTIONS(4686), + [sym_operator_symbol] = ACTIONS(4686), + [sym_unquoted_symbol] = ACTIONS(4686), + [anon_sym_COLON_DQUOTE] = ACTIONS(4686), + [anon_sym_BQUOTE] = ACTIONS(4686), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_DASH_GT] = ACTIONS(4686), + [anon_sym_annotation] = ACTIONS(4684), + [anon_sym_end] = ACTIONS(4684), + [anon_sym_AT_LBRACK] = ACTIONS(4686), + [anon_sym_private] = ACTIONS(4684), + [anon_sym_module] = ACTIONS(4684), + [anon_sym_abstract] = ACTIONS(4684), + [anon_sym_class] = ACTIONS(4684), + [anon_sym_struct] = ACTIONS(4684), + [anon_sym_enum] = ACTIONS(4684), + [anon_sym_STAR] = ACTIONS(4835), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_BANG] = ACTIONS(4686), + [anon_sym_TILDE] = ACTIONS(4686), + [anon_sym_def] = ACTIONS(4684), + [anon_sym_DOT] = ACTIONS(4839), + [anon_sym_protected] = ACTIONS(4684), + [anon_sym_include] = ACTIONS(4684), + [anon_sym_extend] = ACTIONS(4684), + [anon_sym_return] = ACTIONS(4684), + [anon_sym_next] = ACTIONS(4684), + [anon_sym_break] = ACTIONS(4684), + [anon_sym_with] = ACTIONS(4684), + [anon_sym_yield] = ACTIONS(4684), + [anon_sym_typeof] = ACTIONS(4684), + [anon_sym_sizeof] = ACTIONS(4684), + [anon_sym_instance_sizeof] = ACTIONS(4684), + [anon_sym_offsetof] = ACTIONS(4684), + [sym__constant_segment] = ACTIONS(4686), + [anon_sym_COLON_COLON] = ACTIONS(4686), + [anon_sym___LINE__] = ACTIONS(4684), + [anon_sym___END_LINE__] = ACTIONS(4684), + [anon_sym___FILE__] = ACTIONS(4684), + [anon_sym___DIR__] = ACTIONS(4684), + [sym_special_variable] = ACTIONS(4686), + [sym_identifier_method_call] = ACTIONS(4686), + [sym_instance_var] = ACTIONS(4686), + [sym_class_var] = ACTIONS(4686), + [sym_self] = ACTIONS(4684), + [anon_sym_QMARK] = ACTIONS(4841), + [anon_sym_alias] = ACTIONS(4684), + [anon_sym_begin] = ACTIONS(4684), + [anon_sym_while] = ACTIONS(4684), + [anon_sym_until] = ACTIONS(4684), + [anon_sym_require] = ACTIONS(4684), + [anon_sym_case] = ACTIONS(4684), + [anon_sym_select] = ACTIONS(4684), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4686), + [sym__start_of_named_tuple] = ACTIONS(4686), + [sym_unary_plus] = ACTIONS(4686), + [sym_unary_minus] = ACTIONS(4686), + [sym_unary_wrapping_plus] = ACTIONS(4686), + [sym_unary_wrapping_minus] = ACTIONS(4686), + [sym__beginless_range_operator] = ACTIONS(4686), + [sym__regex_start] = ACTIONS(4686), + [sym__regular_if_keyword] = ACTIONS(4686), + [sym__regular_unless_keyword] = ACTIONS(4686), + [sym__string_literal_start] = ACTIONS(4686), + [sym__string_percent_literal_start] = ACTIONS(4686), + [sym__command_percent_literal_start] = ACTIONS(4686), + [sym__string_array_percent_literal_start] = ACTIONS(4686), + [sym__symbol_array_percent_literal_start] = ACTIONS(4686), + [sym__regex_percent_literal_start] = ACTIONS(4686), + [sym_heredoc_start] = ACTIONS(4686), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2083] = { + [sym_heredoc_body] = STATE(2083), + [sym_identifier] = ACTIONS(4700), + [anon_sym_SEMI] = ACTIONS(4702), + [anon_sym_LPAREN] = ACTIONS(4702), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4700), + [sym_true] = ACTIONS(4700), + [sym_false] = ACTIONS(4700), + [aux_sym_integer_token2] = ACTIONS(4700), + [aux_sym_float_token2] = ACTIONS(4702), + [anon_sym_SQUOTE] = ACTIONS(4702), + [sym_operator_symbol] = ACTIONS(4702), + [sym_unquoted_symbol] = ACTIONS(4702), + [anon_sym_COLON_DQUOTE] = ACTIONS(4702), + [anon_sym_BQUOTE] = ACTIONS(4702), + [anon_sym_LBRACK] = ACTIONS(4702), + [anon_sym_COMMA] = ACTIONS(4702), + [anon_sym_DASH_GT] = ACTIONS(4702), + [anon_sym_annotation] = ACTIONS(4700), + [anon_sym_end] = ACTIONS(4700), + [anon_sym_AT_LBRACK] = ACTIONS(4702), + [anon_sym_private] = ACTIONS(4700), + [anon_sym_module] = ACTIONS(4700), + [anon_sym_abstract] = ACTIONS(4700), + [anon_sym_class] = ACTIONS(4700), + [anon_sym_struct] = ACTIONS(4700), + [anon_sym_enum] = ACTIONS(4700), + [anon_sym_STAR] = ACTIONS(4702), + [anon_sym_PIPE] = ACTIONS(4702), + [anon_sym_BANG] = ACTIONS(4702), + [anon_sym_TILDE] = ACTIONS(4702), + [anon_sym_def] = ACTIONS(4700), + [anon_sym_DOT] = ACTIONS(4702), + [anon_sym_protected] = ACTIONS(4700), + [anon_sym_include] = ACTIONS(4700), + [anon_sym_extend] = ACTIONS(4700), + [anon_sym_return] = ACTIONS(4700), + [anon_sym_next] = ACTIONS(4700), + [anon_sym_break] = ACTIONS(4700), + [anon_sym_with] = ACTIONS(4700), + [anon_sym_yield] = ACTIONS(4700), + [anon_sym_typeof] = ACTIONS(4700), + [anon_sym_sizeof] = ACTIONS(4700), + [anon_sym_instance_sizeof] = ACTIONS(4700), + [anon_sym_offsetof] = ACTIONS(4700), + [sym__constant_segment] = ACTIONS(4702), + [anon_sym_COLON_COLON] = ACTIONS(4702), + [anon_sym___LINE__] = ACTIONS(4700), + [anon_sym___END_LINE__] = ACTIONS(4700), + [anon_sym___FILE__] = ACTIONS(4700), + [anon_sym___DIR__] = ACTIONS(4700), + [sym_special_variable] = ACTIONS(4702), + [sym_identifier_method_call] = ACTIONS(4702), + [sym_instance_var] = ACTIONS(4702), + [sym_class_var] = ACTIONS(4702), + [sym_self] = ACTIONS(4700), + [anon_sym_QMARK] = ACTIONS(4702), + [anon_sym_alias] = ACTIONS(4700), + [anon_sym_begin] = ACTIONS(4700), + [anon_sym_while] = ACTIONS(4700), + [anon_sym_until] = ACTIONS(4700), + [anon_sym_require] = ACTIONS(4700), + [anon_sym_case] = ACTIONS(4700), + [anon_sym_select] = ACTIONS(4700), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4702), + [sym__start_of_named_tuple] = ACTIONS(4702), + [sym_unary_plus] = ACTIONS(4702), + [sym_unary_minus] = ACTIONS(4702), + [sym_unary_wrapping_plus] = ACTIONS(4702), + [sym_unary_wrapping_minus] = ACTIONS(4702), + [sym__beginless_range_operator] = ACTIONS(4702), + [sym__regex_start] = ACTIONS(4702), + [sym__regular_if_keyword] = ACTIONS(4702), + [sym__regular_unless_keyword] = ACTIONS(4702), + [sym__string_literal_start] = ACTIONS(4702), + [sym__string_percent_literal_start] = ACTIONS(4702), + [sym__command_percent_literal_start] = ACTIONS(4702), + [sym__string_array_percent_literal_start] = ACTIONS(4702), + [sym__symbol_array_percent_literal_start] = ACTIONS(4702), + [sym__regex_percent_literal_start] = ACTIONS(4702), + [sym_heredoc_start] = ACTIONS(4702), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2084] = { + [sym_heredoc_body] = STATE(2084), + [sym_identifier] = ACTIONS(4692), + [anon_sym_SEMI] = ACTIONS(4694), + [anon_sym_LPAREN] = ACTIONS(4694), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4692), + [sym_true] = ACTIONS(4692), + [sym_false] = ACTIONS(4692), + [aux_sym_integer_token2] = ACTIONS(4692), + [aux_sym_float_token2] = ACTIONS(4694), + [anon_sym_SQUOTE] = ACTIONS(4694), + [sym_operator_symbol] = ACTIONS(4694), + [sym_unquoted_symbol] = ACTIONS(4694), + [anon_sym_COLON_DQUOTE] = ACTIONS(4694), + [anon_sym_BQUOTE] = ACTIONS(4694), + [anon_sym_LBRACK] = ACTIONS(4694), + [anon_sym_COMMA] = ACTIONS(4694), + [anon_sym_DASH_GT] = ACTIONS(4694), + [anon_sym_annotation] = ACTIONS(4692), + [anon_sym_end] = ACTIONS(4692), + [anon_sym_AT_LBRACK] = ACTIONS(4694), + [anon_sym_private] = ACTIONS(4692), + [anon_sym_module] = ACTIONS(4692), + [anon_sym_abstract] = ACTIONS(4692), + [anon_sym_class] = ACTIONS(4692), + [anon_sym_struct] = ACTIONS(4692), + [anon_sym_enum] = ACTIONS(4692), + [anon_sym_STAR] = ACTIONS(4694), + [anon_sym_PIPE] = ACTIONS(4694), + [anon_sym_BANG] = ACTIONS(4694), + [anon_sym_TILDE] = ACTIONS(4694), + [anon_sym_def] = ACTIONS(4692), + [anon_sym_DOT] = ACTIONS(4694), + [anon_sym_protected] = ACTIONS(4692), + [anon_sym_include] = ACTIONS(4692), + [anon_sym_extend] = ACTIONS(4692), + [anon_sym_return] = ACTIONS(4692), + [anon_sym_next] = ACTIONS(4692), + [anon_sym_break] = ACTIONS(4692), + [anon_sym_with] = ACTIONS(4692), + [anon_sym_yield] = ACTIONS(4692), + [anon_sym_typeof] = ACTIONS(4692), + [anon_sym_sizeof] = ACTIONS(4692), + [anon_sym_instance_sizeof] = ACTIONS(4692), + [anon_sym_offsetof] = ACTIONS(4692), + [sym__constant_segment] = ACTIONS(4694), + [anon_sym_COLON_COLON] = ACTIONS(4694), + [anon_sym___LINE__] = ACTIONS(4692), + [anon_sym___END_LINE__] = ACTIONS(4692), + [anon_sym___FILE__] = ACTIONS(4692), + [anon_sym___DIR__] = ACTIONS(4692), + [sym_special_variable] = ACTIONS(4694), + [sym_identifier_method_call] = ACTIONS(4694), + [sym_instance_var] = ACTIONS(4694), + [sym_class_var] = ACTIONS(4694), + [sym_self] = ACTIONS(4692), + [anon_sym_QMARK] = ACTIONS(4694), + [anon_sym_alias] = ACTIONS(4692), + [anon_sym_begin] = ACTIONS(4692), + [anon_sym_while] = ACTIONS(4692), + [anon_sym_until] = ACTIONS(4692), + [anon_sym_require] = ACTIONS(4692), + [anon_sym_case] = ACTIONS(4692), + [anon_sym_select] = ACTIONS(4692), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4694), + [sym__start_of_named_tuple] = ACTIONS(4694), + [sym_unary_plus] = ACTIONS(4694), + [sym_unary_minus] = ACTIONS(4694), + [sym_unary_wrapping_plus] = ACTIONS(4694), + [sym_unary_wrapping_minus] = ACTIONS(4694), + [sym__beginless_range_operator] = ACTIONS(4694), + [sym__regex_start] = ACTIONS(4694), + [sym__regular_if_keyword] = ACTIONS(4694), + [sym__regular_unless_keyword] = ACTIONS(4694), + [sym__string_literal_start] = ACTIONS(4694), + [sym__string_percent_literal_start] = ACTIONS(4694), + [sym__command_percent_literal_start] = ACTIONS(4694), + [sym__string_array_percent_literal_start] = ACTIONS(4694), + [sym__symbol_array_percent_literal_start] = ACTIONS(4694), + [sym__regex_percent_literal_start] = ACTIONS(4694), + [sym_heredoc_start] = ACTIONS(4694), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2085] = { + [sym_heredoc_body] = STATE(2085), + [sym_identifier] = ACTIONS(4656), + [anon_sym_SEMI] = ACTIONS(4658), + [anon_sym_LPAREN] = ACTIONS(4658), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4656), + [sym_true] = ACTIONS(4656), + [sym_false] = ACTIONS(4656), + [aux_sym_integer_token2] = ACTIONS(4656), + [aux_sym_float_token2] = ACTIONS(4658), + [anon_sym_SQUOTE] = ACTIONS(4658), + [sym_operator_symbol] = ACTIONS(4658), + [sym_unquoted_symbol] = ACTIONS(4658), + [anon_sym_COLON_DQUOTE] = ACTIONS(4658), + [anon_sym_BQUOTE] = ACTIONS(4658), + [anon_sym_LBRACK] = ACTIONS(4658), + [anon_sym_COMMA] = ACTIONS(4658), + [anon_sym_DASH_GT] = ACTIONS(4658), + [anon_sym_annotation] = ACTIONS(4656), + [anon_sym_end] = ACTIONS(4656), + [anon_sym_AT_LBRACK] = ACTIONS(4658), + [anon_sym_private] = ACTIONS(4656), + [anon_sym_module] = ACTIONS(4656), + [anon_sym_abstract] = ACTIONS(4656), + [anon_sym_class] = ACTIONS(4656), + [anon_sym_struct] = ACTIONS(4656), + [anon_sym_enum] = ACTIONS(4656), + [anon_sym_STAR] = ACTIONS(4658), + [anon_sym_PIPE] = ACTIONS(4658), + [anon_sym_BANG] = ACTIONS(4658), + [anon_sym_TILDE] = ACTIONS(4658), + [anon_sym_def] = ACTIONS(4656), + [anon_sym_DOT] = ACTIONS(4658), + [anon_sym_protected] = ACTIONS(4656), + [anon_sym_include] = ACTIONS(4656), + [anon_sym_extend] = ACTIONS(4656), + [anon_sym_return] = ACTIONS(4656), + [anon_sym_next] = ACTIONS(4656), + [anon_sym_break] = ACTIONS(4656), + [anon_sym_with] = ACTIONS(4656), + [anon_sym_yield] = ACTIONS(4656), + [anon_sym_typeof] = ACTIONS(4656), + [anon_sym_sizeof] = ACTIONS(4656), + [anon_sym_instance_sizeof] = ACTIONS(4656), + [anon_sym_offsetof] = ACTIONS(4656), + [sym__constant_segment] = ACTIONS(4658), + [anon_sym_COLON_COLON] = ACTIONS(4658), + [anon_sym___LINE__] = ACTIONS(4656), + [anon_sym___END_LINE__] = ACTIONS(4656), + [anon_sym___FILE__] = ACTIONS(4656), + [anon_sym___DIR__] = ACTIONS(4656), + [sym_special_variable] = ACTIONS(4658), + [sym_identifier_method_call] = ACTIONS(4658), + [sym_instance_var] = ACTIONS(4658), + [sym_class_var] = ACTIONS(4658), + [sym_self] = ACTIONS(4656), + [anon_sym_QMARK] = ACTIONS(4658), + [anon_sym_alias] = ACTIONS(4656), + [anon_sym_begin] = ACTIONS(4656), + [anon_sym_while] = ACTIONS(4656), + [anon_sym_until] = ACTIONS(4656), + [anon_sym_require] = ACTIONS(4656), + [anon_sym_case] = ACTIONS(4656), + [anon_sym_select] = ACTIONS(4656), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4658), + [sym__start_of_named_tuple] = ACTIONS(4658), + [sym_unary_plus] = ACTIONS(4658), + [sym_unary_minus] = ACTIONS(4658), + [sym_unary_wrapping_plus] = ACTIONS(4658), + [sym_unary_wrapping_minus] = ACTIONS(4658), + [sym__beginless_range_operator] = ACTIONS(4658), + [sym__regex_start] = ACTIONS(4658), + [sym__regular_if_keyword] = ACTIONS(4658), + [sym__regular_unless_keyword] = ACTIONS(4658), + [sym__string_literal_start] = ACTIONS(4658), + [sym__string_percent_literal_start] = ACTIONS(4658), + [sym__command_percent_literal_start] = ACTIONS(4658), + [sym__string_array_percent_literal_start] = ACTIONS(4658), + [sym__symbol_array_percent_literal_start] = ACTIONS(4658), + [sym__regex_percent_literal_start] = ACTIONS(4658), + [sym_heredoc_start] = ACTIONS(4658), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2086] = { + [sym_heredoc_body] = STATE(2086), + [aux_sym_union_type_repeat1] = STATE(2071), + [sym_identifier] = ACTIONS(4668), + [anon_sym_SEMI] = ACTIONS(4670), + [anon_sym_LPAREN] = ACTIONS(4670), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4668), + [sym_true] = ACTIONS(4668), + [sym_false] = ACTIONS(4668), + [aux_sym_integer_token2] = ACTIONS(4668), + [aux_sym_float_token2] = ACTIONS(4670), + [anon_sym_SQUOTE] = ACTIONS(4670), + [sym_operator_symbol] = ACTIONS(4670), + [sym_unquoted_symbol] = ACTIONS(4670), + [anon_sym_COLON_DQUOTE] = ACTIONS(4670), + [anon_sym_BQUOTE] = ACTIONS(4670), + [anon_sym_LBRACK] = ACTIONS(4833), + [anon_sym_DASH_GT] = ACTIONS(4670), + [anon_sym_annotation] = ACTIONS(4668), + [anon_sym_end] = ACTIONS(4668), + [anon_sym_AT_LBRACK] = ACTIONS(4670), + [anon_sym_private] = ACTIONS(4668), + [anon_sym_module] = ACTIONS(4668), + [anon_sym_abstract] = ACTIONS(4668), + [anon_sym_class] = ACTIONS(4668), + [anon_sym_struct] = ACTIONS(4668), + [anon_sym_enum] = ACTIONS(4668), + [anon_sym_STAR] = ACTIONS(4835), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_BANG] = ACTIONS(4670), + [anon_sym_TILDE] = ACTIONS(4670), + [anon_sym_def] = ACTIONS(4668), + [anon_sym_DOT] = ACTIONS(4839), + [anon_sym_protected] = ACTIONS(4668), + [anon_sym_include] = ACTIONS(4668), + [anon_sym_extend] = ACTIONS(4668), + [anon_sym_return] = ACTIONS(4668), + [anon_sym_next] = ACTIONS(4668), + [anon_sym_break] = ACTIONS(4668), + [anon_sym_with] = ACTIONS(4668), + [anon_sym_yield] = ACTIONS(4668), + [anon_sym_typeof] = ACTIONS(4668), + [anon_sym_sizeof] = ACTIONS(4668), + [anon_sym_instance_sizeof] = ACTIONS(4668), + [anon_sym_offsetof] = ACTIONS(4668), + [sym__constant_segment] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4670), + [anon_sym___LINE__] = ACTIONS(4668), + [anon_sym___END_LINE__] = ACTIONS(4668), + [anon_sym___FILE__] = ACTIONS(4668), + [anon_sym___DIR__] = ACTIONS(4668), + [sym_special_variable] = ACTIONS(4670), + [sym_identifier_method_call] = ACTIONS(4670), + [sym_instance_var] = ACTIONS(4670), + [sym_class_var] = ACTIONS(4670), + [sym_self] = ACTIONS(4668), + [anon_sym_QMARK] = ACTIONS(4841), + [anon_sym_alias] = ACTIONS(4668), + [anon_sym_begin] = ACTIONS(4668), + [anon_sym_while] = ACTIONS(4668), + [anon_sym_until] = ACTIONS(4668), + [anon_sym_require] = ACTIONS(4668), + [anon_sym_case] = ACTIONS(4668), + [anon_sym_select] = ACTIONS(4668), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4670), + [sym__start_of_named_tuple] = ACTIONS(4670), + [sym_unary_plus] = ACTIONS(4670), + [sym_unary_minus] = ACTIONS(4670), + [sym_unary_wrapping_plus] = ACTIONS(4670), + [sym_unary_wrapping_minus] = ACTIONS(4670), + [sym__beginless_range_operator] = ACTIONS(4670), + [sym__regex_start] = ACTIONS(4670), + [sym__regular_if_keyword] = ACTIONS(4670), + [sym__regular_unless_keyword] = ACTIONS(4670), + [sym__string_literal_start] = ACTIONS(4670), + [sym__string_percent_literal_start] = ACTIONS(4670), + [sym__command_percent_literal_start] = ACTIONS(4670), + [sym__string_array_percent_literal_start] = ACTIONS(4670), + [sym__symbol_array_percent_literal_start] = ACTIONS(4670), + [sym__regex_percent_literal_start] = ACTIONS(4670), + [sym_heredoc_start] = ACTIONS(4670), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2087] = { + [sym_heredoc_body] = STATE(2087), + [sym_identifier] = ACTIONS(4704), + [anon_sym_SEMI] = ACTIONS(4706), + [anon_sym_LPAREN] = ACTIONS(4706), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4704), + [sym_true] = ACTIONS(4704), + [sym_false] = ACTIONS(4704), + [aux_sym_integer_token2] = ACTIONS(4704), + [aux_sym_float_token2] = ACTIONS(4706), + [anon_sym_SQUOTE] = ACTIONS(4706), + [sym_operator_symbol] = ACTIONS(4706), + [sym_unquoted_symbol] = ACTIONS(4706), + [anon_sym_COLON_DQUOTE] = ACTIONS(4706), + [anon_sym_BQUOTE] = ACTIONS(4706), + [anon_sym_LBRACK] = ACTIONS(4706), + [anon_sym_COMMA] = ACTIONS(4706), + [anon_sym_DASH_GT] = ACTIONS(4706), + [anon_sym_annotation] = ACTIONS(4704), + [anon_sym_end] = ACTIONS(4704), + [anon_sym_AT_LBRACK] = ACTIONS(4706), + [anon_sym_private] = ACTIONS(4704), + [anon_sym_module] = ACTIONS(4704), + [anon_sym_abstract] = ACTIONS(4704), + [anon_sym_class] = ACTIONS(4704), + [anon_sym_struct] = ACTIONS(4704), + [anon_sym_enum] = ACTIONS(4704), + [anon_sym_STAR] = ACTIONS(4706), + [anon_sym_PIPE] = ACTIONS(4706), + [anon_sym_BANG] = ACTIONS(4706), + [anon_sym_TILDE] = ACTIONS(4706), + [anon_sym_def] = ACTIONS(4704), + [anon_sym_DOT] = ACTIONS(4706), + [anon_sym_protected] = ACTIONS(4704), + [anon_sym_include] = ACTIONS(4704), + [anon_sym_extend] = ACTIONS(4704), + [anon_sym_return] = ACTIONS(4704), + [anon_sym_next] = ACTIONS(4704), + [anon_sym_break] = ACTIONS(4704), + [anon_sym_with] = ACTIONS(4704), + [anon_sym_yield] = ACTIONS(4704), + [anon_sym_typeof] = ACTIONS(4704), + [anon_sym_sizeof] = ACTIONS(4704), + [anon_sym_instance_sizeof] = ACTIONS(4704), + [anon_sym_offsetof] = ACTIONS(4704), + [sym__constant_segment] = ACTIONS(4706), + [anon_sym_COLON_COLON] = ACTIONS(4706), + [anon_sym___LINE__] = ACTIONS(4704), + [anon_sym___END_LINE__] = ACTIONS(4704), + [anon_sym___FILE__] = ACTIONS(4704), + [anon_sym___DIR__] = ACTIONS(4704), + [sym_special_variable] = ACTIONS(4706), + [sym_identifier_method_call] = ACTIONS(4706), + [sym_instance_var] = ACTIONS(4706), + [sym_class_var] = ACTIONS(4706), + [sym_self] = ACTIONS(4704), + [anon_sym_QMARK] = ACTIONS(4706), + [anon_sym_alias] = ACTIONS(4704), + [anon_sym_begin] = ACTIONS(4704), + [anon_sym_while] = ACTIONS(4704), + [anon_sym_until] = ACTIONS(4704), + [anon_sym_require] = ACTIONS(4704), + [anon_sym_case] = ACTIONS(4704), + [anon_sym_select] = ACTIONS(4704), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4706), + [sym__start_of_named_tuple] = ACTIONS(4706), + [sym_unary_plus] = ACTIONS(4706), + [sym_unary_minus] = ACTIONS(4706), + [sym_unary_wrapping_plus] = ACTIONS(4706), + [sym_unary_wrapping_minus] = ACTIONS(4706), + [sym__beginless_range_operator] = ACTIONS(4706), + [sym__regex_start] = ACTIONS(4706), + [sym__regular_if_keyword] = ACTIONS(4706), + [sym__regular_unless_keyword] = ACTIONS(4706), + [sym__string_literal_start] = ACTIONS(4706), + [sym__string_percent_literal_start] = ACTIONS(4706), + [sym__command_percent_literal_start] = ACTIONS(4706), + [sym__string_array_percent_literal_start] = ACTIONS(4706), + [sym__symbol_array_percent_literal_start] = ACTIONS(4706), + [sym__regex_percent_literal_start] = ACTIONS(4706), + [sym_heredoc_start] = ACTIONS(4706), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2088] = { + [sym_heredoc_body] = STATE(2088), + [sym_identifier] = ACTIONS(4716), + [anon_sym_SEMI] = ACTIONS(4718), + [anon_sym_LPAREN] = ACTIONS(4718), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4716), + [sym_true] = ACTIONS(4716), + [sym_false] = ACTIONS(4716), + [aux_sym_integer_token2] = ACTIONS(4716), + [aux_sym_float_token2] = ACTIONS(4718), + [anon_sym_SQUOTE] = ACTIONS(4718), + [sym_operator_symbol] = ACTIONS(4718), + [sym_unquoted_symbol] = ACTIONS(4718), + [anon_sym_COLON_DQUOTE] = ACTIONS(4718), + [anon_sym_BQUOTE] = ACTIONS(4718), + [anon_sym_LBRACK] = ACTIONS(4718), + [anon_sym_COMMA] = ACTIONS(4718), + [anon_sym_DASH_GT] = ACTIONS(4718), + [anon_sym_annotation] = ACTIONS(4716), + [anon_sym_end] = ACTIONS(4716), + [anon_sym_AT_LBRACK] = ACTIONS(4718), + [anon_sym_private] = ACTIONS(4716), + [anon_sym_module] = ACTIONS(4716), + [anon_sym_abstract] = ACTIONS(4716), + [anon_sym_class] = ACTIONS(4716), + [anon_sym_struct] = ACTIONS(4716), + [anon_sym_enum] = ACTIONS(4716), + [anon_sym_STAR] = ACTIONS(4718), + [anon_sym_PIPE] = ACTIONS(4718), + [anon_sym_BANG] = ACTIONS(4718), + [anon_sym_TILDE] = ACTIONS(4718), + [anon_sym_def] = ACTIONS(4716), + [anon_sym_DOT] = ACTIONS(4718), + [anon_sym_protected] = ACTIONS(4716), + [anon_sym_include] = ACTIONS(4716), + [anon_sym_extend] = ACTIONS(4716), + [anon_sym_return] = ACTIONS(4716), + [anon_sym_next] = ACTIONS(4716), + [anon_sym_break] = ACTIONS(4716), + [anon_sym_with] = ACTIONS(4716), + [anon_sym_yield] = ACTIONS(4716), + [anon_sym_typeof] = ACTIONS(4716), + [anon_sym_sizeof] = ACTIONS(4716), + [anon_sym_instance_sizeof] = ACTIONS(4716), + [anon_sym_offsetof] = ACTIONS(4716), + [sym__constant_segment] = ACTIONS(4718), + [anon_sym_COLON_COLON] = ACTIONS(4718), + [anon_sym___LINE__] = ACTIONS(4716), + [anon_sym___END_LINE__] = ACTIONS(4716), + [anon_sym___FILE__] = ACTIONS(4716), + [anon_sym___DIR__] = ACTIONS(4716), + [sym_special_variable] = ACTIONS(4718), + [sym_identifier_method_call] = ACTIONS(4718), + [sym_instance_var] = ACTIONS(4718), + [sym_class_var] = ACTIONS(4718), + [sym_self] = ACTIONS(4716), + [anon_sym_QMARK] = ACTIONS(4718), + [anon_sym_alias] = ACTIONS(4716), + [anon_sym_begin] = ACTIONS(4716), + [anon_sym_while] = ACTIONS(4716), + [anon_sym_until] = ACTIONS(4716), + [anon_sym_require] = ACTIONS(4716), + [anon_sym_case] = ACTIONS(4716), + [anon_sym_select] = ACTIONS(4716), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4718), + [sym__start_of_named_tuple] = ACTIONS(4718), + [sym_unary_plus] = ACTIONS(4718), + [sym_unary_minus] = ACTIONS(4718), + [sym_unary_wrapping_plus] = ACTIONS(4718), + [sym_unary_wrapping_minus] = ACTIONS(4718), + [sym__beginless_range_operator] = ACTIONS(4718), + [sym__regex_start] = ACTIONS(4718), + [sym__regular_if_keyword] = ACTIONS(4718), + [sym__regular_unless_keyword] = ACTIONS(4718), + [sym__string_literal_start] = ACTIONS(4718), + [sym__string_percent_literal_start] = ACTIONS(4718), + [sym__command_percent_literal_start] = ACTIONS(4718), + [sym__string_array_percent_literal_start] = ACTIONS(4718), + [sym__symbol_array_percent_literal_start] = ACTIONS(4718), + [sym__regex_percent_literal_start] = ACTIONS(4718), + [sym_heredoc_start] = ACTIONS(4718), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2089] = { + [sym_heredoc_body] = STATE(2089), + [sym_identifier] = ACTIONS(4696), + [anon_sym_SEMI] = ACTIONS(4698), + [anon_sym_LPAREN] = ACTIONS(4698), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4696), + [sym_true] = ACTIONS(4696), + [sym_false] = ACTIONS(4696), + [aux_sym_integer_token2] = ACTIONS(4696), + [aux_sym_float_token2] = ACTIONS(4698), + [anon_sym_SQUOTE] = ACTIONS(4698), + [sym_operator_symbol] = ACTIONS(4698), + [sym_unquoted_symbol] = ACTIONS(4698), + [anon_sym_COLON_DQUOTE] = ACTIONS(4698), + [anon_sym_BQUOTE] = ACTIONS(4698), + [anon_sym_LBRACK] = ACTIONS(4698), + [anon_sym_COMMA] = ACTIONS(4698), + [anon_sym_DASH_GT] = ACTIONS(4698), + [anon_sym_annotation] = ACTIONS(4696), + [anon_sym_end] = ACTIONS(4696), + [anon_sym_AT_LBRACK] = ACTIONS(4698), + [anon_sym_private] = ACTIONS(4696), + [anon_sym_module] = ACTIONS(4696), + [anon_sym_abstract] = ACTIONS(4696), + [anon_sym_class] = ACTIONS(4696), + [anon_sym_struct] = ACTIONS(4696), + [anon_sym_enum] = ACTIONS(4696), + [anon_sym_STAR] = ACTIONS(4698), + [anon_sym_PIPE] = ACTIONS(4698), + [anon_sym_BANG] = ACTIONS(4698), + [anon_sym_TILDE] = ACTIONS(4698), + [anon_sym_def] = ACTIONS(4696), + [anon_sym_DOT] = ACTIONS(4698), + [anon_sym_protected] = ACTIONS(4696), + [anon_sym_include] = ACTIONS(4696), + [anon_sym_extend] = ACTIONS(4696), + [anon_sym_return] = ACTIONS(4696), + [anon_sym_next] = ACTIONS(4696), + [anon_sym_break] = ACTIONS(4696), + [anon_sym_with] = ACTIONS(4696), + [anon_sym_yield] = ACTIONS(4696), + [anon_sym_typeof] = ACTIONS(4696), + [anon_sym_sizeof] = ACTIONS(4696), + [anon_sym_instance_sizeof] = ACTIONS(4696), + [anon_sym_offsetof] = ACTIONS(4696), + [sym__constant_segment] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(4698), + [anon_sym___LINE__] = ACTIONS(4696), + [anon_sym___END_LINE__] = ACTIONS(4696), + [anon_sym___FILE__] = ACTIONS(4696), + [anon_sym___DIR__] = ACTIONS(4696), + [sym_special_variable] = ACTIONS(4698), + [sym_identifier_method_call] = ACTIONS(4698), + [sym_instance_var] = ACTIONS(4698), + [sym_class_var] = ACTIONS(4698), + [sym_self] = ACTIONS(4696), + [anon_sym_QMARK] = ACTIONS(4698), + [anon_sym_alias] = ACTIONS(4696), + [anon_sym_begin] = ACTIONS(4696), + [anon_sym_while] = ACTIONS(4696), + [anon_sym_until] = ACTIONS(4696), + [anon_sym_require] = ACTIONS(4696), + [anon_sym_case] = ACTIONS(4696), + [anon_sym_select] = ACTIONS(4696), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4698), + [sym__start_of_named_tuple] = ACTIONS(4698), + [sym_unary_plus] = ACTIONS(4698), + [sym_unary_minus] = ACTIONS(4698), + [sym_unary_wrapping_plus] = ACTIONS(4698), + [sym_unary_wrapping_minus] = ACTIONS(4698), + [sym__beginless_range_operator] = ACTIONS(4698), + [sym__regex_start] = ACTIONS(4698), + [sym__regular_if_keyword] = ACTIONS(4698), + [sym__regular_unless_keyword] = ACTIONS(4698), + [sym__string_literal_start] = ACTIONS(4698), + [sym__string_percent_literal_start] = ACTIONS(4698), + [sym__command_percent_literal_start] = ACTIONS(4698), + [sym__string_array_percent_literal_start] = ACTIONS(4698), + [sym__symbol_array_percent_literal_start] = ACTIONS(4698), + [sym__regex_percent_literal_start] = ACTIONS(4698), + [sym_heredoc_start] = ACTIONS(4698), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2090] = { + [sym_heredoc_body] = STATE(2090), + [sym_identifier] = ACTIONS(4712), + [anon_sym_SEMI] = ACTIONS(4714), + [anon_sym_LPAREN] = ACTIONS(4714), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4712), + [sym_true] = ACTIONS(4712), + [sym_false] = ACTIONS(4712), + [aux_sym_integer_token2] = ACTIONS(4712), + [aux_sym_float_token2] = ACTIONS(4714), + [anon_sym_SQUOTE] = ACTIONS(4714), + [sym_operator_symbol] = ACTIONS(4714), + [sym_unquoted_symbol] = ACTIONS(4714), + [anon_sym_COLON_DQUOTE] = ACTIONS(4714), + [anon_sym_BQUOTE] = ACTIONS(4714), + [anon_sym_LBRACK] = ACTIONS(4714), + [anon_sym_COMMA] = ACTIONS(4714), + [anon_sym_DASH_GT] = ACTIONS(4714), + [anon_sym_annotation] = ACTIONS(4712), + [anon_sym_end] = ACTIONS(4712), + [anon_sym_AT_LBRACK] = ACTIONS(4714), + [anon_sym_private] = ACTIONS(4712), + [anon_sym_module] = ACTIONS(4712), + [anon_sym_abstract] = ACTIONS(4712), + [anon_sym_class] = ACTIONS(4712), + [anon_sym_struct] = ACTIONS(4712), + [anon_sym_enum] = ACTIONS(4712), + [anon_sym_STAR] = ACTIONS(4714), + [anon_sym_PIPE] = ACTIONS(4714), + [anon_sym_BANG] = ACTIONS(4714), + [anon_sym_TILDE] = ACTIONS(4714), + [anon_sym_def] = ACTIONS(4712), + [anon_sym_DOT] = ACTIONS(4714), + [anon_sym_protected] = ACTIONS(4712), + [anon_sym_include] = ACTIONS(4712), + [anon_sym_extend] = ACTIONS(4712), + [anon_sym_return] = ACTIONS(4712), + [anon_sym_next] = ACTIONS(4712), + [anon_sym_break] = ACTIONS(4712), + [anon_sym_with] = ACTIONS(4712), + [anon_sym_yield] = ACTIONS(4712), + [anon_sym_typeof] = ACTIONS(4712), + [anon_sym_sizeof] = ACTIONS(4712), + [anon_sym_instance_sizeof] = ACTIONS(4712), + [anon_sym_offsetof] = ACTIONS(4712), + [sym__constant_segment] = ACTIONS(4714), + [anon_sym_COLON_COLON] = ACTIONS(4714), + [anon_sym___LINE__] = ACTIONS(4712), + [anon_sym___END_LINE__] = ACTIONS(4712), + [anon_sym___FILE__] = ACTIONS(4712), + [anon_sym___DIR__] = ACTIONS(4712), + [sym_special_variable] = ACTIONS(4714), + [sym_identifier_method_call] = ACTIONS(4714), + [sym_instance_var] = ACTIONS(4714), + [sym_class_var] = ACTIONS(4714), + [sym_self] = ACTIONS(4712), + [anon_sym_QMARK] = ACTIONS(4714), + [anon_sym_alias] = ACTIONS(4712), + [anon_sym_begin] = ACTIONS(4712), + [anon_sym_while] = ACTIONS(4712), + [anon_sym_until] = ACTIONS(4712), + [anon_sym_require] = ACTIONS(4712), + [anon_sym_case] = ACTIONS(4712), + [anon_sym_select] = ACTIONS(4712), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4714), + [sym__start_of_named_tuple] = ACTIONS(4714), + [sym_unary_plus] = ACTIONS(4714), + [sym_unary_minus] = ACTIONS(4714), + [sym_unary_wrapping_plus] = ACTIONS(4714), + [sym_unary_wrapping_minus] = ACTIONS(4714), + [sym__beginless_range_operator] = ACTIONS(4714), + [sym__regex_start] = ACTIONS(4714), + [sym__regular_if_keyword] = ACTIONS(4714), + [sym__regular_unless_keyword] = ACTIONS(4714), + [sym__string_literal_start] = ACTIONS(4714), + [sym__string_percent_literal_start] = ACTIONS(4714), + [sym__command_percent_literal_start] = ACTIONS(4714), + [sym__string_array_percent_literal_start] = ACTIONS(4714), + [sym__symbol_array_percent_literal_start] = ACTIONS(4714), + [sym__regex_percent_literal_start] = ACTIONS(4714), + [sym_heredoc_start] = ACTIONS(4714), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2091] = { + [sym_heredoc_body] = STATE(2091), + [sym_identifier] = ACTIONS(4680), + [anon_sym_SEMI] = ACTIONS(4682), + [anon_sym_LPAREN] = ACTIONS(4682), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4680), + [sym_true] = ACTIONS(4680), + [sym_false] = ACTIONS(4680), + [aux_sym_integer_token2] = ACTIONS(4680), + [aux_sym_float_token2] = ACTIONS(4682), + [anon_sym_SQUOTE] = ACTIONS(4682), + [sym_operator_symbol] = ACTIONS(4682), + [sym_unquoted_symbol] = ACTIONS(4682), + [anon_sym_COLON_DQUOTE] = ACTIONS(4682), + [anon_sym_BQUOTE] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(4682), + [anon_sym_COMMA] = ACTIONS(4682), + [anon_sym_DASH_GT] = ACTIONS(4682), + [anon_sym_annotation] = ACTIONS(4680), + [anon_sym_end] = ACTIONS(4680), + [anon_sym_AT_LBRACK] = ACTIONS(4682), + [anon_sym_private] = ACTIONS(4680), + [anon_sym_module] = ACTIONS(4680), + [anon_sym_abstract] = ACTIONS(4680), + [anon_sym_class] = ACTIONS(4680), + [anon_sym_struct] = ACTIONS(4680), + [anon_sym_enum] = ACTIONS(4680), + [anon_sym_STAR] = ACTIONS(4682), + [anon_sym_PIPE] = ACTIONS(4682), + [anon_sym_BANG] = ACTIONS(4682), + [anon_sym_TILDE] = ACTIONS(4682), + [anon_sym_def] = ACTIONS(4680), + [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_protected] = ACTIONS(4680), + [anon_sym_include] = ACTIONS(4680), + [anon_sym_extend] = ACTIONS(4680), + [anon_sym_return] = ACTIONS(4680), + [anon_sym_next] = ACTIONS(4680), + [anon_sym_break] = ACTIONS(4680), + [anon_sym_with] = ACTIONS(4680), + [anon_sym_yield] = ACTIONS(4680), + [anon_sym_typeof] = ACTIONS(4680), + [anon_sym_sizeof] = ACTIONS(4680), + [anon_sym_instance_sizeof] = ACTIONS(4680), + [anon_sym_offsetof] = ACTIONS(4680), + [sym__constant_segment] = ACTIONS(4682), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym___LINE__] = ACTIONS(4680), + [anon_sym___END_LINE__] = ACTIONS(4680), + [anon_sym___FILE__] = ACTIONS(4680), + [anon_sym___DIR__] = ACTIONS(4680), + [sym_special_variable] = ACTIONS(4682), + [sym_identifier_method_call] = ACTIONS(4682), + [sym_instance_var] = ACTIONS(4682), + [sym_class_var] = ACTIONS(4682), + [sym_self] = ACTIONS(4680), + [anon_sym_QMARK] = ACTIONS(4682), + [anon_sym_alias] = ACTIONS(4680), + [anon_sym_begin] = ACTIONS(4680), + [anon_sym_while] = ACTIONS(4680), + [anon_sym_until] = ACTIONS(4680), + [anon_sym_require] = ACTIONS(4680), + [anon_sym_case] = ACTIONS(4680), + [anon_sym_select] = ACTIONS(4680), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4682), + [sym__start_of_named_tuple] = ACTIONS(4682), + [sym_unary_plus] = ACTIONS(4682), + [sym_unary_minus] = ACTIONS(4682), + [sym_unary_wrapping_plus] = ACTIONS(4682), + [sym_unary_wrapping_minus] = ACTIONS(4682), + [sym__beginless_range_operator] = ACTIONS(4682), + [sym__regex_start] = ACTIONS(4682), + [sym__regular_if_keyword] = ACTIONS(4682), + [sym__regular_unless_keyword] = ACTIONS(4682), + [sym__string_literal_start] = ACTIONS(4682), + [sym__string_percent_literal_start] = ACTIONS(4682), + [sym__command_percent_literal_start] = ACTIONS(4682), + [sym__string_array_percent_literal_start] = ACTIONS(4682), + [sym__symbol_array_percent_literal_start] = ACTIONS(4682), + [sym__regex_percent_literal_start] = ACTIONS(4682), + [sym_heredoc_start] = ACTIONS(4682), + [sym__heredoc_body_start] = ACTIONS(7), + }, + [2092] = { + [sym_heredoc_body] = STATE(2092), + [sym_identifier] = ACTIONS(4672), + [anon_sym_SEMI] = ACTIONS(4674), + [anon_sym_LPAREN] = ACTIONS(4674), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4672), + [sym_true] = ACTIONS(4672), + [sym_false] = ACTIONS(4672), + [aux_sym_integer_token2] = ACTIONS(4672), + [aux_sym_float_token2] = ACTIONS(4674), + [anon_sym_SQUOTE] = ACTIONS(4674), + [sym_operator_symbol] = ACTIONS(4674), + [sym_unquoted_symbol] = ACTIONS(4674), + [anon_sym_COLON_DQUOTE] = ACTIONS(4674), + [anon_sym_BQUOTE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(4674), + [anon_sym_COMMA] = ACTIONS(4674), + [anon_sym_DASH_GT] = ACTIONS(4674), + [anon_sym_annotation] = ACTIONS(4672), + [anon_sym_end] = ACTIONS(4672), + [anon_sym_AT_LBRACK] = ACTIONS(4674), + [anon_sym_private] = ACTIONS(4672), + [anon_sym_module] = ACTIONS(4672), + [anon_sym_abstract] = ACTIONS(4672), + [anon_sym_class] = ACTIONS(4672), + [anon_sym_struct] = ACTIONS(4672), + [anon_sym_enum] = ACTIONS(4672), + [anon_sym_STAR] = ACTIONS(4674), + [anon_sym_PIPE] = ACTIONS(4674), + [anon_sym_BANG] = ACTIONS(4674), + [anon_sym_TILDE] = ACTIONS(4674), + [anon_sym_def] = ACTIONS(4672), + [anon_sym_DOT] = ACTIONS(4674), + [anon_sym_protected] = ACTIONS(4672), + [anon_sym_include] = ACTIONS(4672), + [anon_sym_extend] = ACTIONS(4672), + [anon_sym_return] = ACTIONS(4672), + [anon_sym_next] = ACTIONS(4672), + [anon_sym_break] = ACTIONS(4672), + [anon_sym_with] = ACTIONS(4672), + [anon_sym_yield] = ACTIONS(4672), + [anon_sym_typeof] = ACTIONS(4672), + [anon_sym_sizeof] = ACTIONS(4672), + [anon_sym_instance_sizeof] = ACTIONS(4672), + [anon_sym_offsetof] = ACTIONS(4672), + [sym__constant_segment] = ACTIONS(4674), + [anon_sym_COLON_COLON] = ACTIONS(4674), + [anon_sym___LINE__] = ACTIONS(4672), + [anon_sym___END_LINE__] = ACTIONS(4672), + [anon_sym___FILE__] = ACTIONS(4672), + [anon_sym___DIR__] = ACTIONS(4672), + [sym_special_variable] = ACTIONS(4674), + [sym_identifier_method_call] = ACTIONS(4674), + [sym_instance_var] = ACTIONS(4674), + [sym_class_var] = ACTIONS(4674), + [sym_self] = ACTIONS(4672), + [anon_sym_QMARK] = ACTIONS(4674), + [anon_sym_alias] = ACTIONS(4672), + [anon_sym_begin] = ACTIONS(4672), + [anon_sym_while] = ACTIONS(4672), + [anon_sym_until] = ACTIONS(4672), + [anon_sym_require] = ACTIONS(4672), + [anon_sym_case] = ACTIONS(4672), + [anon_sym_select] = ACTIONS(4672), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4674), + [sym__start_of_named_tuple] = ACTIONS(4674), + [sym_unary_plus] = ACTIONS(4674), + [sym_unary_minus] = ACTIONS(4674), + [sym_unary_wrapping_plus] = ACTIONS(4674), + [sym_unary_wrapping_minus] = ACTIONS(4674), + [sym__beginless_range_operator] = ACTIONS(4674), + [sym__regex_start] = ACTIONS(4674), + [sym__regular_if_keyword] = ACTIONS(4674), + [sym__regular_unless_keyword] = ACTIONS(4674), + [sym__string_literal_start] = ACTIONS(4674), + [sym__string_percent_literal_start] = ACTIONS(4674), + [sym__command_percent_literal_start] = ACTIONS(4674), + [sym__string_array_percent_literal_start] = ACTIONS(4674), + [sym__symbol_array_percent_literal_start] = ACTIONS(4674), + [sym__regex_percent_literal_start] = ACTIONS(4674), + [sym_heredoc_start] = ACTIONS(4674), + [sym__heredoc_body_start] = ACTIONS(7), + }, [2093] = { [sym_heredoc_body] = STATE(2093), - [aux_sym_union_type_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(4639), - [anon_sym_SEMI] = ACTIONS(4641), - [anon_sym_LPAREN] = ACTIONS(4641), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4639), - [sym_true] = ACTIONS(4639), - [sym_false] = ACTIONS(4639), - [aux_sym_integer_token2] = ACTIONS(4639), - [aux_sym_float_token2] = ACTIONS(4641), - [anon_sym_SQUOTE] = ACTIONS(4641), - [sym_operator_symbol] = ACTIONS(4641), - [sym_unquoted_symbol] = ACTIONS(4641), - [anon_sym_COLON_DQUOTE] = ACTIONS(4641), - [anon_sym_BQUOTE] = ACTIONS(4641), - [anon_sym_LBRACK] = ACTIONS(4804), - [anon_sym_DASH_GT] = ACTIONS(4641), - [anon_sym_annotation] = ACTIONS(4639), - [anon_sym_end] = ACTIONS(4639), - [anon_sym_AT_LBRACK] = ACTIONS(4641), - [anon_sym_private] = ACTIONS(4639), - [anon_sym_module] = ACTIONS(4639), - [anon_sym_abstract] = ACTIONS(4639), - [anon_sym_class] = ACTIONS(4639), - [anon_sym_struct] = ACTIONS(4639), - [anon_sym_enum] = ACTIONS(4639), - [anon_sym_STAR] = ACTIONS(4806), - [anon_sym_PIPE] = ACTIONS(4808), - [anon_sym_BANG] = ACTIONS(4641), - [anon_sym_TILDE] = ACTIONS(4641), - [anon_sym_def] = ACTIONS(4639), - [anon_sym_DOT] = ACTIONS(4810), - [anon_sym_protected] = ACTIONS(4639), - [anon_sym_include] = ACTIONS(4639), - [anon_sym_extend] = ACTIONS(4639), - [anon_sym_return] = ACTIONS(4639), - [anon_sym_next] = ACTIONS(4639), - [anon_sym_break] = ACTIONS(4639), - [anon_sym_with] = ACTIONS(4639), - [anon_sym_yield] = ACTIONS(4639), - [anon_sym_typeof] = ACTIONS(4639), - [anon_sym_sizeof] = ACTIONS(4639), - [anon_sym_instance_sizeof] = ACTIONS(4639), - [anon_sym_offsetof] = ACTIONS(4639), - [sym__constant_segment] = ACTIONS(4641), - [anon_sym_COLON_COLON] = ACTIONS(4641), - [anon_sym___LINE__] = ACTIONS(4639), - [anon_sym___END_LINE__] = ACTIONS(4639), - [anon_sym___FILE__] = ACTIONS(4639), - [anon_sym___DIR__] = ACTIONS(4639), - [sym_special_variable] = ACTIONS(4641), - [sym_identifier_method_call] = ACTIONS(4641), - [sym_instance_var] = ACTIONS(4641), - [sym_class_var] = ACTIONS(4641), - [sym_self] = ACTIONS(4639), - [anon_sym_QMARK] = ACTIONS(4812), - [anon_sym_alias] = ACTIONS(4639), - [anon_sym_begin] = ACTIONS(4639), - [anon_sym_while] = ACTIONS(4639), - [anon_sym_until] = ACTIONS(4639), - [anon_sym_require] = ACTIONS(4639), - [anon_sym_case] = ACTIONS(4639), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4641), - [sym__start_of_named_tuple] = ACTIONS(4641), - [sym_unary_plus] = ACTIONS(4641), - [sym_unary_minus] = ACTIONS(4641), - [sym_unary_wrapping_plus] = ACTIONS(4641), - [sym_unary_wrapping_minus] = ACTIONS(4641), - [sym__beginless_range_operator] = ACTIONS(4641), - [sym__regex_start] = ACTIONS(4641), - [sym__regular_if_keyword] = ACTIONS(4641), - [sym__regular_unless_keyword] = ACTIONS(4641), - [sym__string_literal_start] = ACTIONS(4641), - [sym__string_percent_literal_start] = ACTIONS(4641), - [sym__command_percent_literal_start] = ACTIONS(4641), - [sym__string_array_percent_literal_start] = ACTIONS(4641), - [sym__symbol_array_percent_literal_start] = ACTIONS(4641), - [sym__regex_percent_literal_start] = ACTIONS(4641), - [sym_heredoc_start] = ACTIONS(4641), + [sym_identifier] = ACTIONS(4688), + [anon_sym_SEMI] = ACTIONS(4690), + [anon_sym_LPAREN] = ACTIONS(4690), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4688), + [sym_true] = ACTIONS(4688), + [sym_false] = ACTIONS(4688), + [aux_sym_integer_token2] = ACTIONS(4688), + [aux_sym_float_token2] = ACTIONS(4690), + [anon_sym_SQUOTE] = ACTIONS(4690), + [sym_operator_symbol] = ACTIONS(4690), + [sym_unquoted_symbol] = ACTIONS(4690), + [anon_sym_COLON_DQUOTE] = ACTIONS(4690), + [anon_sym_BQUOTE] = ACTIONS(4690), + [anon_sym_LBRACK] = ACTIONS(4690), + [anon_sym_COMMA] = ACTIONS(4690), + [anon_sym_DASH_GT] = ACTIONS(4690), + [anon_sym_annotation] = ACTIONS(4688), + [anon_sym_end] = ACTIONS(4688), + [anon_sym_AT_LBRACK] = ACTIONS(4690), + [anon_sym_private] = ACTIONS(4688), + [anon_sym_module] = ACTIONS(4688), + [anon_sym_abstract] = ACTIONS(4688), + [anon_sym_class] = ACTIONS(4688), + [anon_sym_struct] = ACTIONS(4688), + [anon_sym_enum] = ACTIONS(4688), + [anon_sym_STAR] = ACTIONS(4690), + [anon_sym_PIPE] = ACTIONS(4690), + [anon_sym_BANG] = ACTIONS(4690), + [anon_sym_TILDE] = ACTIONS(4690), + [anon_sym_def] = ACTIONS(4688), + [anon_sym_DOT] = ACTIONS(4690), + [anon_sym_protected] = ACTIONS(4688), + [anon_sym_include] = ACTIONS(4688), + [anon_sym_extend] = ACTIONS(4688), + [anon_sym_return] = ACTIONS(4688), + [anon_sym_next] = ACTIONS(4688), + [anon_sym_break] = ACTIONS(4688), + [anon_sym_with] = ACTIONS(4688), + [anon_sym_yield] = ACTIONS(4688), + [anon_sym_typeof] = ACTIONS(4688), + [anon_sym_sizeof] = ACTIONS(4688), + [anon_sym_instance_sizeof] = ACTIONS(4688), + [anon_sym_offsetof] = ACTIONS(4688), + [sym__constant_segment] = ACTIONS(4690), + [anon_sym_COLON_COLON] = ACTIONS(4690), + [anon_sym___LINE__] = ACTIONS(4688), + [anon_sym___END_LINE__] = ACTIONS(4688), + [anon_sym___FILE__] = ACTIONS(4688), + [anon_sym___DIR__] = ACTIONS(4688), + [sym_special_variable] = ACTIONS(4690), + [sym_identifier_method_call] = ACTIONS(4690), + [sym_instance_var] = ACTIONS(4690), + [sym_class_var] = ACTIONS(4690), + [sym_self] = ACTIONS(4688), + [anon_sym_QMARK] = ACTIONS(4690), + [anon_sym_alias] = ACTIONS(4688), + [anon_sym_begin] = ACTIONS(4688), + [anon_sym_while] = ACTIONS(4688), + [anon_sym_until] = ACTIONS(4688), + [anon_sym_require] = ACTIONS(4688), + [anon_sym_case] = ACTIONS(4688), + [anon_sym_select] = ACTIONS(4688), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4690), + [sym__start_of_named_tuple] = ACTIONS(4690), + [sym_unary_plus] = ACTIONS(4690), + [sym_unary_minus] = ACTIONS(4690), + [sym_unary_wrapping_plus] = ACTIONS(4690), + [sym_unary_wrapping_minus] = ACTIONS(4690), + [sym__beginless_range_operator] = ACTIONS(4690), + [sym__regex_start] = ACTIONS(4690), + [sym__regular_if_keyword] = ACTIONS(4690), + [sym__regular_unless_keyword] = ACTIONS(4690), + [sym__string_literal_start] = ACTIONS(4690), + [sym__string_percent_literal_start] = ACTIONS(4690), + [sym__command_percent_literal_start] = ACTIONS(4690), + [sym__string_array_percent_literal_start] = ACTIONS(4690), + [sym__symbol_array_percent_literal_start] = ACTIONS(4690), + [sym__regex_percent_literal_start] = ACTIONS(4690), + [sym_heredoc_start] = ACTIONS(4690), [sym__heredoc_body_start] = ACTIONS(7), }, [2094] = { [sym_heredoc_body] = STATE(2094), - [sym_identifier] = ACTIONS(4643), - [anon_sym_SEMI] = ACTIONS(4645), - [anon_sym_LPAREN] = ACTIONS(4645), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4643), - [sym_true] = ACTIONS(4643), - [sym_false] = ACTIONS(4643), - [aux_sym_integer_token2] = ACTIONS(4643), - [aux_sym_float_token2] = ACTIONS(4645), - [anon_sym_SQUOTE] = ACTIONS(4645), - [sym_operator_symbol] = ACTIONS(4645), - [sym_unquoted_symbol] = ACTIONS(4645), - [anon_sym_COLON_DQUOTE] = ACTIONS(4645), - [anon_sym_BQUOTE] = ACTIONS(4645), - [anon_sym_LBRACK] = ACTIONS(4645), - [anon_sym_COMMA] = ACTIONS(4645), - [anon_sym_DASH_GT] = ACTIONS(4645), - [anon_sym_annotation] = ACTIONS(4643), - [anon_sym_end] = ACTIONS(4643), - [anon_sym_AT_LBRACK] = ACTIONS(4645), - [anon_sym_private] = ACTIONS(4643), - [anon_sym_module] = ACTIONS(4643), - [anon_sym_abstract] = ACTIONS(4643), - [anon_sym_class] = ACTIONS(4643), - [anon_sym_struct] = ACTIONS(4643), - [anon_sym_enum] = ACTIONS(4643), - [anon_sym_STAR] = ACTIONS(4645), - [anon_sym_PIPE] = ACTIONS(4645), - [anon_sym_BANG] = ACTIONS(4645), - [anon_sym_TILDE] = ACTIONS(4645), - [anon_sym_def] = ACTIONS(4643), - [anon_sym_DOT] = ACTIONS(4645), - [anon_sym_protected] = ACTIONS(4643), - [anon_sym_include] = ACTIONS(4643), - [anon_sym_extend] = ACTIONS(4643), - [anon_sym_return] = ACTIONS(4643), - [anon_sym_next] = ACTIONS(4643), - [anon_sym_break] = ACTIONS(4643), - [anon_sym_with] = ACTIONS(4643), - [anon_sym_yield] = ACTIONS(4643), - [anon_sym_typeof] = ACTIONS(4643), - [anon_sym_sizeof] = ACTIONS(4643), - [anon_sym_instance_sizeof] = ACTIONS(4643), - [anon_sym_offsetof] = ACTIONS(4643), - [sym__constant_segment] = ACTIONS(4645), - [anon_sym_COLON_COLON] = ACTIONS(4645), - [anon_sym___LINE__] = ACTIONS(4643), - [anon_sym___END_LINE__] = ACTIONS(4643), - [anon_sym___FILE__] = ACTIONS(4643), - [anon_sym___DIR__] = ACTIONS(4643), - [sym_special_variable] = ACTIONS(4645), - [sym_identifier_method_call] = ACTIONS(4645), - [sym_instance_var] = ACTIONS(4645), - [sym_class_var] = ACTIONS(4645), - [sym_self] = ACTIONS(4643), - [anon_sym_QMARK] = ACTIONS(4645), - [anon_sym_alias] = ACTIONS(4643), - [anon_sym_begin] = ACTIONS(4643), - [anon_sym_while] = ACTIONS(4643), - [anon_sym_until] = ACTIONS(4643), - [anon_sym_require] = ACTIONS(4643), - [anon_sym_case] = ACTIONS(4643), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4645), - [sym__start_of_named_tuple] = ACTIONS(4645), - [sym_unary_plus] = ACTIONS(4645), - [sym_unary_minus] = ACTIONS(4645), - [sym_unary_wrapping_plus] = ACTIONS(4645), - [sym_unary_wrapping_minus] = ACTIONS(4645), - [sym__beginless_range_operator] = ACTIONS(4645), - [sym__regex_start] = ACTIONS(4645), - [sym__regular_if_keyword] = ACTIONS(4645), - [sym__regular_unless_keyword] = ACTIONS(4645), - [sym__string_literal_start] = ACTIONS(4645), - [sym__string_percent_literal_start] = ACTIONS(4645), - [sym__command_percent_literal_start] = ACTIONS(4645), - [sym__string_array_percent_literal_start] = ACTIONS(4645), - [sym__symbol_array_percent_literal_start] = ACTIONS(4645), - [sym__regex_percent_literal_start] = ACTIONS(4645), - [sym_heredoc_start] = ACTIONS(4645), + [sym_identifier] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym_LPAREN] = ACTIONS(4654), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4652), + [sym_true] = ACTIONS(4652), + [sym_false] = ACTIONS(4652), + [aux_sym_integer_token2] = ACTIONS(4652), + [aux_sym_float_token2] = ACTIONS(4654), + [anon_sym_SQUOTE] = ACTIONS(4654), + [sym_operator_symbol] = ACTIONS(4654), + [sym_unquoted_symbol] = ACTIONS(4654), + [anon_sym_COLON_DQUOTE] = ACTIONS(4654), + [anon_sym_BQUOTE] = ACTIONS(4654), + [anon_sym_LBRACK] = ACTIONS(4654), + [anon_sym_COMMA] = ACTIONS(4654), + [anon_sym_DASH_GT] = ACTIONS(4654), + [anon_sym_annotation] = ACTIONS(4652), + [anon_sym_end] = ACTIONS(4652), + [anon_sym_AT_LBRACK] = ACTIONS(4654), + [anon_sym_private] = ACTIONS(4652), + [anon_sym_module] = ACTIONS(4652), + [anon_sym_abstract] = ACTIONS(4652), + [anon_sym_class] = ACTIONS(4652), + [anon_sym_struct] = ACTIONS(4652), + [anon_sym_enum] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4654), + [anon_sym_PIPE] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4654), + [anon_sym_TILDE] = ACTIONS(4654), + [anon_sym_def] = ACTIONS(4652), + [anon_sym_DOT] = ACTIONS(4654), + [anon_sym_protected] = ACTIONS(4652), + [anon_sym_include] = ACTIONS(4652), + [anon_sym_extend] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_next] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_with] = ACTIONS(4652), + [anon_sym_yield] = ACTIONS(4652), + [anon_sym_typeof] = ACTIONS(4652), + [anon_sym_sizeof] = ACTIONS(4652), + [anon_sym_instance_sizeof] = ACTIONS(4652), + [anon_sym_offsetof] = ACTIONS(4652), + [sym__constant_segment] = ACTIONS(4654), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym___LINE__] = ACTIONS(4652), + [anon_sym___END_LINE__] = ACTIONS(4652), + [anon_sym___FILE__] = ACTIONS(4652), + [anon_sym___DIR__] = ACTIONS(4652), + [sym_special_variable] = ACTIONS(4654), + [sym_identifier_method_call] = ACTIONS(4654), + [sym_instance_var] = ACTIONS(4654), + [sym_class_var] = ACTIONS(4654), + [sym_self] = ACTIONS(4652), + [anon_sym_QMARK] = ACTIONS(4654), + [anon_sym_alias] = ACTIONS(4652), + [anon_sym_begin] = ACTIONS(4652), + [anon_sym_while] = ACTIONS(4652), + [anon_sym_until] = ACTIONS(4652), + [anon_sym_require] = ACTIONS(4652), + [anon_sym_case] = ACTIONS(4652), + [anon_sym_select] = ACTIONS(4652), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4654), + [sym__start_of_named_tuple] = ACTIONS(4654), + [sym_unary_plus] = ACTIONS(4654), + [sym_unary_minus] = ACTIONS(4654), + [sym_unary_wrapping_plus] = ACTIONS(4654), + [sym_unary_wrapping_minus] = ACTIONS(4654), + [sym__beginless_range_operator] = ACTIONS(4654), + [sym__regex_start] = ACTIONS(4654), + [sym__regular_if_keyword] = ACTIONS(4654), + [sym__regular_unless_keyword] = ACTIONS(4654), + [sym__string_literal_start] = ACTIONS(4654), + [sym__string_percent_literal_start] = ACTIONS(4654), + [sym__command_percent_literal_start] = ACTIONS(4654), + [sym__string_array_percent_literal_start] = ACTIONS(4654), + [sym__symbol_array_percent_literal_start] = ACTIONS(4654), + [sym__regex_percent_literal_start] = ACTIONS(4654), + [sym_heredoc_start] = ACTIONS(4654), [sym__heredoc_body_start] = ACTIONS(7), }, [2095] = { [sym_heredoc_body] = STATE(2095), - [sym_identifier] = ACTIONS(4597), - [anon_sym_SEMI] = ACTIONS(4599), - [anon_sym_LPAREN] = ACTIONS(4599), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4597), - [sym_true] = ACTIONS(4597), - [sym_false] = ACTIONS(4597), - [aux_sym_integer_token2] = ACTIONS(4597), - [aux_sym_float_token2] = ACTIONS(4599), - [anon_sym_SQUOTE] = ACTIONS(4599), - [sym_operator_symbol] = ACTIONS(4599), - [sym_unquoted_symbol] = ACTIONS(4599), - [anon_sym_COLON_DQUOTE] = ACTIONS(4599), - [anon_sym_BQUOTE] = ACTIONS(4599), - [anon_sym_LBRACK] = ACTIONS(4599), - [anon_sym_COMMA] = ACTIONS(4599), - [anon_sym_DASH_GT] = ACTIONS(4599), - [anon_sym_annotation] = ACTIONS(4597), - [anon_sym_end] = ACTIONS(4597), - [anon_sym_AT_LBRACK] = ACTIONS(4599), - [anon_sym_private] = ACTIONS(4597), - [anon_sym_module] = ACTIONS(4597), - [anon_sym_abstract] = ACTIONS(4597), - [anon_sym_class] = ACTIONS(4597), - [anon_sym_struct] = ACTIONS(4597), - [anon_sym_enum] = ACTIONS(4597), - [anon_sym_STAR] = ACTIONS(4599), - [anon_sym_PIPE] = ACTIONS(4599), - [anon_sym_BANG] = ACTIONS(4599), - [anon_sym_TILDE] = ACTIONS(4599), - [anon_sym_def] = ACTIONS(4597), - [anon_sym_DOT] = ACTIONS(4599), - [anon_sym_protected] = ACTIONS(4597), - [anon_sym_include] = ACTIONS(4597), - [anon_sym_extend] = ACTIONS(4597), - [anon_sym_return] = ACTIONS(4597), - [anon_sym_next] = ACTIONS(4597), - [anon_sym_break] = ACTIONS(4597), - [anon_sym_with] = ACTIONS(4597), - [anon_sym_yield] = ACTIONS(4597), - [anon_sym_typeof] = ACTIONS(4597), - [anon_sym_sizeof] = ACTIONS(4597), - [anon_sym_instance_sizeof] = ACTIONS(4597), - [anon_sym_offsetof] = ACTIONS(4597), - [sym__constant_segment] = ACTIONS(4599), - [anon_sym_COLON_COLON] = ACTIONS(4599), - [anon_sym___LINE__] = ACTIONS(4597), - [anon_sym___END_LINE__] = ACTIONS(4597), - [anon_sym___FILE__] = ACTIONS(4597), - [anon_sym___DIR__] = ACTIONS(4597), - [sym_special_variable] = ACTIONS(4599), - [sym_identifier_method_call] = ACTIONS(4599), - [sym_instance_var] = ACTIONS(4599), - [sym_class_var] = ACTIONS(4599), - [sym_self] = ACTIONS(4597), - [anon_sym_QMARK] = ACTIONS(4599), - [anon_sym_alias] = ACTIONS(4597), - [anon_sym_begin] = ACTIONS(4597), - [anon_sym_while] = ACTIONS(4597), - [anon_sym_until] = ACTIONS(4597), - [anon_sym_require] = ACTIONS(4597), - [anon_sym_case] = ACTIONS(4597), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4599), - [sym__start_of_named_tuple] = ACTIONS(4599), - [sym_unary_plus] = ACTIONS(4599), - [sym_unary_minus] = ACTIONS(4599), - [sym_unary_wrapping_plus] = ACTIONS(4599), - [sym_unary_wrapping_minus] = ACTIONS(4599), - [sym__beginless_range_operator] = ACTIONS(4599), - [sym__regex_start] = ACTIONS(4599), - [sym__regular_if_keyword] = ACTIONS(4599), - [sym__regular_unless_keyword] = ACTIONS(4599), - [sym__string_literal_start] = ACTIONS(4599), - [sym__string_percent_literal_start] = ACTIONS(4599), - [sym__command_percent_literal_start] = ACTIONS(4599), - [sym__string_array_percent_literal_start] = ACTIONS(4599), - [sym__symbol_array_percent_literal_start] = ACTIONS(4599), - [sym__regex_percent_literal_start] = ACTIONS(4599), - [sym_heredoc_start] = ACTIONS(4599), + [sym_identifier] = ACTIONS(4676), + [anon_sym_SEMI] = ACTIONS(4678), + [anon_sym_LPAREN] = ACTIONS(4678), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4676), + [sym_true] = ACTIONS(4676), + [sym_false] = ACTIONS(4676), + [aux_sym_integer_token2] = ACTIONS(4676), + [aux_sym_float_token2] = ACTIONS(4678), + [anon_sym_SQUOTE] = ACTIONS(4678), + [sym_operator_symbol] = ACTIONS(4678), + [sym_unquoted_symbol] = ACTIONS(4678), + [anon_sym_COLON_DQUOTE] = ACTIONS(4678), + [anon_sym_BQUOTE] = ACTIONS(4678), + [anon_sym_LBRACK] = ACTIONS(4678), + [anon_sym_COMMA] = ACTIONS(4678), + [anon_sym_DASH_GT] = ACTIONS(4678), + [anon_sym_annotation] = ACTIONS(4676), + [anon_sym_end] = ACTIONS(4676), + [anon_sym_AT_LBRACK] = ACTIONS(4678), + [anon_sym_private] = ACTIONS(4676), + [anon_sym_module] = ACTIONS(4676), + [anon_sym_abstract] = ACTIONS(4676), + [anon_sym_class] = ACTIONS(4676), + [anon_sym_struct] = ACTIONS(4676), + [anon_sym_enum] = ACTIONS(4676), + [anon_sym_STAR] = ACTIONS(4678), + [anon_sym_PIPE] = ACTIONS(4678), + [anon_sym_BANG] = ACTIONS(4678), + [anon_sym_TILDE] = ACTIONS(4678), + [anon_sym_def] = ACTIONS(4676), + [anon_sym_DOT] = ACTIONS(4678), + [anon_sym_protected] = ACTIONS(4676), + [anon_sym_include] = ACTIONS(4676), + [anon_sym_extend] = ACTIONS(4676), + [anon_sym_return] = ACTIONS(4676), + [anon_sym_next] = ACTIONS(4676), + [anon_sym_break] = ACTIONS(4676), + [anon_sym_with] = ACTIONS(4676), + [anon_sym_yield] = ACTIONS(4676), + [anon_sym_typeof] = ACTIONS(4676), + [anon_sym_sizeof] = ACTIONS(4676), + [anon_sym_instance_sizeof] = ACTIONS(4676), + [anon_sym_offsetof] = ACTIONS(4676), + [sym__constant_segment] = ACTIONS(4678), + [anon_sym_COLON_COLON] = ACTIONS(4678), + [anon_sym___LINE__] = ACTIONS(4676), + [anon_sym___END_LINE__] = ACTIONS(4676), + [anon_sym___FILE__] = ACTIONS(4676), + [anon_sym___DIR__] = ACTIONS(4676), + [sym_special_variable] = ACTIONS(4678), + [sym_identifier_method_call] = ACTIONS(4678), + [sym_instance_var] = ACTIONS(4678), + [sym_class_var] = ACTIONS(4678), + [sym_self] = ACTIONS(4676), + [anon_sym_QMARK] = ACTIONS(4678), + [anon_sym_alias] = ACTIONS(4676), + [anon_sym_begin] = ACTIONS(4676), + [anon_sym_while] = ACTIONS(4676), + [anon_sym_until] = ACTIONS(4676), + [anon_sym_require] = ACTIONS(4676), + [anon_sym_case] = ACTIONS(4676), + [anon_sym_select] = ACTIONS(4676), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4678), + [sym__start_of_named_tuple] = ACTIONS(4678), + [sym_unary_plus] = ACTIONS(4678), + [sym_unary_minus] = ACTIONS(4678), + [sym_unary_wrapping_plus] = ACTIONS(4678), + [sym_unary_wrapping_minus] = ACTIONS(4678), + [sym__beginless_range_operator] = ACTIONS(4678), + [sym__regex_start] = ACTIONS(4678), + [sym__regular_if_keyword] = ACTIONS(4678), + [sym__regular_unless_keyword] = ACTIONS(4678), + [sym__string_literal_start] = ACTIONS(4678), + [sym__string_percent_literal_start] = ACTIONS(4678), + [sym__command_percent_literal_start] = ACTIONS(4678), + [sym__string_array_percent_literal_start] = ACTIONS(4678), + [sym__symbol_array_percent_literal_start] = ACTIONS(4678), + [sym__regex_percent_literal_start] = ACTIONS(4678), + [sym_heredoc_start] = ACTIONS(4678), [sym__heredoc_body_start] = ACTIONS(7), }, [2096] = { [sym_heredoc_body] = STATE(2096), - [sym_identifier] = ACTIONS(4679), - [anon_sym_SEMI] = ACTIONS(4681), - [anon_sym_LPAREN] = ACTIONS(4681), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4679), - [sym_true] = ACTIONS(4679), - [sym_false] = ACTIONS(4679), - [aux_sym_integer_token2] = ACTIONS(4679), - [aux_sym_float_token2] = ACTIONS(4681), - [anon_sym_SQUOTE] = ACTIONS(4681), - [sym_operator_symbol] = ACTIONS(4681), - [sym_unquoted_symbol] = ACTIONS(4681), - [anon_sym_COLON_DQUOTE] = ACTIONS(4681), - [anon_sym_BQUOTE] = ACTIONS(4681), - [anon_sym_LBRACK] = ACTIONS(4681), - [anon_sym_COMMA] = ACTIONS(4681), - [anon_sym_DASH_GT] = ACTIONS(4681), - [anon_sym_annotation] = ACTIONS(4679), - [anon_sym_end] = ACTIONS(4679), - [anon_sym_AT_LBRACK] = ACTIONS(4681), - [anon_sym_private] = ACTIONS(4679), - [anon_sym_module] = ACTIONS(4679), - [anon_sym_abstract] = ACTIONS(4679), - [anon_sym_class] = ACTIONS(4679), - [anon_sym_struct] = ACTIONS(4679), - [anon_sym_enum] = ACTIONS(4679), - [anon_sym_STAR] = ACTIONS(4681), - [anon_sym_PIPE] = ACTIONS(4681), - [anon_sym_BANG] = ACTIONS(4681), - [anon_sym_TILDE] = ACTIONS(4681), - [anon_sym_def] = ACTIONS(4679), - [anon_sym_DOT] = ACTIONS(4681), - [anon_sym_protected] = ACTIONS(4679), - [anon_sym_include] = ACTIONS(4679), - [anon_sym_extend] = ACTIONS(4679), - [anon_sym_return] = ACTIONS(4679), - [anon_sym_next] = ACTIONS(4679), - [anon_sym_break] = ACTIONS(4679), - [anon_sym_with] = ACTIONS(4679), - [anon_sym_yield] = ACTIONS(4679), - [anon_sym_typeof] = ACTIONS(4679), - [anon_sym_sizeof] = ACTIONS(4679), - [anon_sym_instance_sizeof] = ACTIONS(4679), - [anon_sym_offsetof] = ACTIONS(4679), - [sym__constant_segment] = ACTIONS(4681), - [anon_sym_COLON_COLON] = ACTIONS(4681), - [anon_sym___LINE__] = ACTIONS(4679), - [anon_sym___END_LINE__] = ACTIONS(4679), - [anon_sym___FILE__] = ACTIONS(4679), - [anon_sym___DIR__] = ACTIONS(4679), - [sym_special_variable] = ACTIONS(4681), - [sym_identifier_method_call] = ACTIONS(4681), - [sym_instance_var] = ACTIONS(4681), - [sym_class_var] = ACTIONS(4681), - [sym_self] = ACTIONS(4679), - [anon_sym_QMARK] = ACTIONS(4681), - [anon_sym_alias] = ACTIONS(4679), - [anon_sym_begin] = ACTIONS(4679), - [anon_sym_while] = ACTIONS(4679), - [anon_sym_until] = ACTIONS(4679), - [anon_sym_require] = ACTIONS(4679), - [anon_sym_case] = ACTIONS(4679), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4681), - [sym__start_of_named_tuple] = ACTIONS(4681), - [sym_unary_plus] = ACTIONS(4681), - [sym_unary_minus] = ACTIONS(4681), - [sym_unary_wrapping_plus] = ACTIONS(4681), - [sym_unary_wrapping_minus] = ACTIONS(4681), - [sym__beginless_range_operator] = ACTIONS(4681), - [sym__regex_start] = ACTIONS(4681), - [sym__regular_if_keyword] = ACTIONS(4681), - [sym__regular_unless_keyword] = ACTIONS(4681), - [sym__string_literal_start] = ACTIONS(4681), - [sym__string_percent_literal_start] = ACTIONS(4681), - [sym__command_percent_literal_start] = ACTIONS(4681), - [sym__string_array_percent_literal_start] = ACTIONS(4681), - [sym__symbol_array_percent_literal_start] = ACTIONS(4681), - [sym__regex_percent_literal_start] = ACTIONS(4681), - [sym_heredoc_start] = ACTIONS(4681), + [sym_identifier] = ACTIONS(4660), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym_LPAREN] = ACTIONS(4662), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4660), + [sym_true] = ACTIONS(4660), + [sym_false] = ACTIONS(4660), + [aux_sym_integer_token2] = ACTIONS(4660), + [aux_sym_float_token2] = ACTIONS(4662), + [anon_sym_SQUOTE] = ACTIONS(4662), + [sym_operator_symbol] = ACTIONS(4662), + [sym_unquoted_symbol] = ACTIONS(4662), + [anon_sym_COLON_DQUOTE] = ACTIONS(4662), + [anon_sym_BQUOTE] = ACTIONS(4662), + [anon_sym_LBRACK] = ACTIONS(4662), + [anon_sym_COMMA] = ACTIONS(4662), + [anon_sym_DASH_GT] = ACTIONS(4662), + [anon_sym_annotation] = ACTIONS(4660), + [anon_sym_end] = ACTIONS(4660), + [anon_sym_AT_LBRACK] = ACTIONS(4662), + [anon_sym_private] = ACTIONS(4660), + [anon_sym_module] = ACTIONS(4660), + [anon_sym_abstract] = ACTIONS(4660), + [anon_sym_class] = ACTIONS(4660), + [anon_sym_struct] = ACTIONS(4660), + [anon_sym_enum] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4662), + [anon_sym_PIPE] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(4662), + [anon_sym_TILDE] = ACTIONS(4662), + [anon_sym_def] = ACTIONS(4660), + [anon_sym_DOT] = ACTIONS(4662), + [anon_sym_protected] = ACTIONS(4660), + [anon_sym_include] = ACTIONS(4660), + [anon_sym_extend] = ACTIONS(4660), + [anon_sym_return] = ACTIONS(4660), + [anon_sym_next] = ACTIONS(4660), + [anon_sym_break] = ACTIONS(4660), + [anon_sym_with] = ACTIONS(4660), + [anon_sym_yield] = ACTIONS(4660), + [anon_sym_typeof] = ACTIONS(4660), + [anon_sym_sizeof] = ACTIONS(4660), + [anon_sym_instance_sizeof] = ACTIONS(4660), + [anon_sym_offsetof] = ACTIONS(4660), + [sym__constant_segment] = ACTIONS(4662), + [anon_sym_COLON_COLON] = ACTIONS(4662), + [anon_sym___LINE__] = ACTIONS(4660), + [anon_sym___END_LINE__] = ACTIONS(4660), + [anon_sym___FILE__] = ACTIONS(4660), + [anon_sym___DIR__] = ACTIONS(4660), + [sym_special_variable] = ACTIONS(4662), + [sym_identifier_method_call] = ACTIONS(4662), + [sym_instance_var] = ACTIONS(4662), + [sym_class_var] = ACTIONS(4662), + [sym_self] = ACTIONS(4660), + [anon_sym_QMARK] = ACTIONS(4662), + [anon_sym_alias] = ACTIONS(4660), + [anon_sym_begin] = ACTIONS(4660), + [anon_sym_while] = ACTIONS(4660), + [anon_sym_until] = ACTIONS(4660), + [anon_sym_require] = ACTIONS(4660), + [anon_sym_case] = ACTIONS(4660), + [anon_sym_select] = ACTIONS(4660), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4662), + [sym__start_of_named_tuple] = ACTIONS(4662), + [sym_unary_plus] = ACTIONS(4662), + [sym_unary_minus] = ACTIONS(4662), + [sym_unary_wrapping_plus] = ACTIONS(4662), + [sym_unary_wrapping_minus] = ACTIONS(4662), + [sym__beginless_range_operator] = ACTIONS(4662), + [sym__regex_start] = ACTIONS(4662), + [sym__regular_if_keyword] = ACTIONS(4662), + [sym__regular_unless_keyword] = ACTIONS(4662), + [sym__string_literal_start] = ACTIONS(4662), + [sym__string_percent_literal_start] = ACTIONS(4662), + [sym__command_percent_literal_start] = ACTIONS(4662), + [sym__string_array_percent_literal_start] = ACTIONS(4662), + [sym__symbol_array_percent_literal_start] = ACTIONS(4662), + [sym__regex_percent_literal_start] = ACTIONS(4662), + [sym_heredoc_start] = ACTIONS(4662), [sym__heredoc_body_start] = ACTIONS(7), }, [2097] = { [sym_heredoc_body] = STATE(2097), - [aux_sym_union_type_repeat1] = STATE(2075), - [sym_identifier] = ACTIONS(4683), - [anon_sym_SEMI] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4685), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4683), - [sym_true] = ACTIONS(4683), - [sym_false] = ACTIONS(4683), - [aux_sym_integer_token2] = ACTIONS(4683), - [aux_sym_float_token2] = ACTIONS(4685), - [anon_sym_SQUOTE] = ACTIONS(4685), - [sym_operator_symbol] = ACTIONS(4685), - [sym_unquoted_symbol] = ACTIONS(4685), - [anon_sym_COLON_DQUOTE] = ACTIONS(4685), - [anon_sym_BQUOTE] = ACTIONS(4685), - [anon_sym_LBRACK] = ACTIONS(4804), - [anon_sym_DASH_GT] = ACTIONS(4685), - [anon_sym_annotation] = ACTIONS(4683), - [anon_sym_end] = ACTIONS(4683), - [anon_sym_AT_LBRACK] = ACTIONS(4685), - [anon_sym_private] = ACTIONS(4683), - [anon_sym_module] = ACTIONS(4683), - [anon_sym_abstract] = ACTIONS(4683), - [anon_sym_class] = ACTIONS(4683), - [anon_sym_struct] = ACTIONS(4683), - [anon_sym_enum] = ACTIONS(4683), - [anon_sym_STAR] = ACTIONS(4806), - [anon_sym_PIPE] = ACTIONS(4808), - [anon_sym_BANG] = ACTIONS(4685), - [anon_sym_TILDE] = ACTIONS(4685), - [anon_sym_def] = ACTIONS(4683), - [anon_sym_DOT] = ACTIONS(4810), - [anon_sym_protected] = ACTIONS(4683), - [anon_sym_include] = ACTIONS(4683), - [anon_sym_extend] = ACTIONS(4683), - [anon_sym_return] = ACTIONS(4683), - [anon_sym_next] = ACTIONS(4683), - [anon_sym_break] = ACTIONS(4683), - [anon_sym_with] = ACTIONS(4683), - [anon_sym_yield] = ACTIONS(4683), - [anon_sym_typeof] = ACTIONS(4683), - [anon_sym_sizeof] = ACTIONS(4683), - [anon_sym_instance_sizeof] = ACTIONS(4683), - [anon_sym_offsetof] = ACTIONS(4683), - [sym__constant_segment] = ACTIONS(4685), - [anon_sym_COLON_COLON] = ACTIONS(4685), - [anon_sym___LINE__] = ACTIONS(4683), - [anon_sym___END_LINE__] = ACTIONS(4683), - [anon_sym___FILE__] = ACTIONS(4683), - [anon_sym___DIR__] = ACTIONS(4683), - [sym_special_variable] = ACTIONS(4685), - [sym_identifier_method_call] = ACTIONS(4685), - [sym_instance_var] = ACTIONS(4685), - [sym_class_var] = ACTIONS(4685), - [sym_self] = ACTIONS(4683), - [anon_sym_QMARK] = ACTIONS(4812), - [anon_sym_alias] = ACTIONS(4683), - [anon_sym_begin] = ACTIONS(4683), - [anon_sym_while] = ACTIONS(4683), - [anon_sym_until] = ACTIONS(4683), - [anon_sym_require] = ACTIONS(4683), - [anon_sym_case] = ACTIONS(4683), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4685), - [sym__start_of_named_tuple] = ACTIONS(4685), - [sym_unary_plus] = ACTIONS(4685), - [sym_unary_minus] = ACTIONS(4685), - [sym_unary_wrapping_plus] = ACTIONS(4685), - [sym_unary_wrapping_minus] = ACTIONS(4685), - [sym__beginless_range_operator] = ACTIONS(4685), - [sym__regex_start] = ACTIONS(4685), - [sym__regular_if_keyword] = ACTIONS(4685), - [sym__regular_unless_keyword] = ACTIONS(4685), - [sym__string_literal_start] = ACTIONS(4685), - [sym__string_percent_literal_start] = ACTIONS(4685), - [sym__command_percent_literal_start] = ACTIONS(4685), - [sym__string_array_percent_literal_start] = ACTIONS(4685), - [sym__symbol_array_percent_literal_start] = ACTIONS(4685), - [sym__regex_percent_literal_start] = ACTIONS(4685), - [sym_heredoc_start] = ACTIONS(4685), + [sym_identifier] = ACTIONS(4664), + [anon_sym_SEMI] = ACTIONS(4666), + [anon_sym_LPAREN] = ACTIONS(4666), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4664), + [sym_true] = ACTIONS(4664), + [sym_false] = ACTIONS(4664), + [aux_sym_integer_token2] = ACTIONS(4664), + [aux_sym_float_token2] = ACTIONS(4666), + [anon_sym_SQUOTE] = ACTIONS(4666), + [sym_operator_symbol] = ACTIONS(4666), + [sym_unquoted_symbol] = ACTIONS(4666), + [anon_sym_COLON_DQUOTE] = ACTIONS(4666), + [anon_sym_BQUOTE] = ACTIONS(4666), + [anon_sym_LBRACK] = ACTIONS(4666), + [anon_sym_COMMA] = ACTIONS(4666), + [anon_sym_DASH_GT] = ACTIONS(4666), + [anon_sym_annotation] = ACTIONS(4664), + [anon_sym_end] = ACTIONS(4664), + [anon_sym_AT_LBRACK] = ACTIONS(4666), + [anon_sym_private] = ACTIONS(4664), + [anon_sym_module] = ACTIONS(4664), + [anon_sym_abstract] = ACTIONS(4664), + [anon_sym_class] = ACTIONS(4664), + [anon_sym_struct] = ACTIONS(4664), + [anon_sym_enum] = ACTIONS(4664), + [anon_sym_STAR] = ACTIONS(4666), + [anon_sym_PIPE] = ACTIONS(4666), + [anon_sym_BANG] = ACTIONS(4666), + [anon_sym_TILDE] = ACTIONS(4666), + [anon_sym_def] = ACTIONS(4664), + [anon_sym_DOT] = ACTIONS(4666), + [anon_sym_protected] = ACTIONS(4664), + [anon_sym_include] = ACTIONS(4664), + [anon_sym_extend] = ACTIONS(4664), + [anon_sym_return] = ACTIONS(4664), + [anon_sym_next] = ACTIONS(4664), + [anon_sym_break] = ACTIONS(4664), + [anon_sym_with] = ACTIONS(4664), + [anon_sym_yield] = ACTIONS(4664), + [anon_sym_typeof] = ACTIONS(4664), + [anon_sym_sizeof] = ACTIONS(4664), + [anon_sym_instance_sizeof] = ACTIONS(4664), + [anon_sym_offsetof] = ACTIONS(4664), + [sym__constant_segment] = ACTIONS(4666), + [anon_sym_COLON_COLON] = ACTIONS(4666), + [anon_sym___LINE__] = ACTIONS(4664), + [anon_sym___END_LINE__] = ACTIONS(4664), + [anon_sym___FILE__] = ACTIONS(4664), + [anon_sym___DIR__] = ACTIONS(4664), + [sym_special_variable] = ACTIONS(4666), + [sym_identifier_method_call] = ACTIONS(4666), + [sym_instance_var] = ACTIONS(4666), + [sym_class_var] = ACTIONS(4666), + [sym_self] = ACTIONS(4664), + [anon_sym_QMARK] = ACTIONS(4666), + [anon_sym_alias] = ACTIONS(4664), + [anon_sym_begin] = ACTIONS(4664), + [anon_sym_while] = ACTIONS(4664), + [anon_sym_until] = ACTIONS(4664), + [anon_sym_require] = ACTIONS(4664), + [anon_sym_case] = ACTIONS(4664), + [anon_sym_select] = ACTIONS(4664), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4666), + [sym__start_of_named_tuple] = ACTIONS(4666), + [sym_unary_plus] = ACTIONS(4666), + [sym_unary_minus] = ACTIONS(4666), + [sym_unary_wrapping_plus] = ACTIONS(4666), + [sym_unary_wrapping_minus] = ACTIONS(4666), + [sym__beginless_range_operator] = ACTIONS(4666), + [sym__regex_start] = ACTIONS(4666), + [sym__regular_if_keyword] = ACTIONS(4666), + [sym__regular_unless_keyword] = ACTIONS(4666), + [sym__string_literal_start] = ACTIONS(4666), + [sym__string_percent_literal_start] = ACTIONS(4666), + [sym__command_percent_literal_start] = ACTIONS(4666), + [sym__string_array_percent_literal_start] = ACTIONS(4666), + [sym__symbol_array_percent_literal_start] = ACTIONS(4666), + [sym__regex_percent_literal_start] = ACTIONS(4666), + [sym_heredoc_start] = ACTIONS(4666), [sym__heredoc_body_start] = ACTIONS(7), }, [2098] = { [sym_heredoc_body] = STATE(2098), - [sym_identifier] = ACTIONS(4857), - [anon_sym_SEMI] = ACTIONS(4859), - [anon_sym_LPAREN] = ACTIONS(4859), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4857), - [sym_true] = ACTIONS(4857), - [sym_false] = ACTIONS(4857), - [aux_sym_integer_token2] = ACTIONS(4857), - [aux_sym_float_token2] = ACTIONS(4859), - [anon_sym_SQUOTE] = ACTIONS(4859), - [sym_operator_symbol] = ACTIONS(4859), - [sym_unquoted_symbol] = ACTIONS(4859), - [anon_sym_COLON_DQUOTE] = ACTIONS(4859), - [anon_sym_BQUOTE] = ACTIONS(4859), - [anon_sym_LBRACK] = ACTIONS(4859), - [anon_sym_DASH_GT] = ACTIONS(4859), - [anon_sym_annotation] = ACTIONS(4857), - [anon_sym_end] = ACTIONS(4857), - [anon_sym_AT_LBRACK] = ACTIONS(4859), - [anon_sym_private] = ACTIONS(4857), - [anon_sym_module] = ACTIONS(4857), - [anon_sym_abstract] = ACTIONS(4857), - [anon_sym_class] = ACTIONS(4857), - [anon_sym_struct] = ACTIONS(4857), - [anon_sym_enum] = ACTIONS(4857), - [anon_sym_STAR] = ACTIONS(4859), - [anon_sym_BANG] = ACTIONS(4859), - [anon_sym_TILDE] = ACTIONS(4859), - [anon_sym_def] = ACTIONS(4857), - [anon_sym_protected] = ACTIONS(4857), - [anon_sym_include] = ACTIONS(4857), - [anon_sym_extend] = ACTIONS(4857), - [anon_sym_return] = ACTIONS(4857), - [anon_sym_next] = ACTIONS(4857), - [anon_sym_break] = ACTIONS(4857), - [anon_sym_with] = ACTIONS(4857), - [anon_sym_yield] = ACTIONS(4857), - [anon_sym_typeof] = ACTIONS(4857), - [anon_sym_sizeof] = ACTIONS(4857), - [anon_sym_instance_sizeof] = ACTIONS(4857), - [anon_sym_offsetof] = ACTIONS(4857), - [sym__constant_segment] = ACTIONS(4859), - [anon_sym_COLON_COLON] = ACTIONS(4859), - [anon_sym___LINE__] = ACTIONS(4857), - [anon_sym___END_LINE__] = ACTIONS(4857), - [anon_sym___FILE__] = ACTIONS(4857), - [anon_sym___DIR__] = ACTIONS(4857), - [sym_special_variable] = ACTIONS(4859), - [sym_identifier_method_call] = ACTIONS(4859), - [sym_instance_var] = ACTIONS(4859), - [sym_class_var] = ACTIONS(4859), - [sym_self] = ACTIONS(4857), - [anon_sym_alias] = ACTIONS(4857), - [anon_sym_begin] = ACTIONS(4857), - [anon_sym_while] = ACTIONS(4857), - [anon_sym_until] = ACTIONS(4857), - [anon_sym_else] = ACTIONS(4857), - [anon_sym_require] = ACTIONS(4857), - [anon_sym_case] = ACTIONS(4857), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4859), - [sym__start_of_named_tuple] = ACTIONS(4859), - [sym_unary_plus] = ACTIONS(4859), - [sym_unary_minus] = ACTIONS(4859), - [sym_unary_wrapping_plus] = ACTIONS(4859), - [sym_unary_wrapping_minus] = ACTIONS(4859), - [sym__beginless_range_operator] = ACTIONS(4859), - [sym__regex_start] = ACTIONS(4859), - [sym__regular_if_keyword] = ACTIONS(4859), - [sym__regular_unless_keyword] = ACTIONS(4859), - [sym__regular_rescue_keyword] = ACTIONS(4859), - [sym__regular_ensure_keyword] = ACTIONS(4859), - [sym__string_literal_start] = ACTIONS(4859), - [sym__string_percent_literal_start] = ACTIONS(4859), - [sym__command_percent_literal_start] = ACTIONS(4859), - [sym__string_array_percent_literal_start] = ACTIONS(4859), - [sym__symbol_array_percent_literal_start] = ACTIONS(4859), - [sym__regex_percent_literal_start] = ACTIONS(4859), - [sym_heredoc_start] = ACTIONS(4859), + [sym_identifier] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4796), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4798), + [sym_true] = ACTIONS(4798), + [sym_false] = ACTIONS(4798), + [aux_sym_integer_token2] = ACTIONS(4798), + [aux_sym_float_token2] = ACTIONS(4796), + [anon_sym_SQUOTE] = ACTIONS(4796), + [sym_operator_symbol] = ACTIONS(4796), + [sym_unquoted_symbol] = ACTIONS(4796), + [anon_sym_COLON_DQUOTE] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LBRACK] = ACTIONS(4796), + [anon_sym_DASH_GT] = ACTIONS(4796), + [anon_sym_annotation] = ACTIONS(4798), + [anon_sym_end] = ACTIONS(4798), + [anon_sym_AT_LBRACK] = ACTIONS(4796), + [anon_sym_private] = ACTIONS(4798), + [anon_sym_module] = ACTIONS(4798), + [anon_sym_abstract] = ACTIONS(4798), + [anon_sym_class] = ACTIONS(4798), + [anon_sym_struct] = ACTIONS(4798), + [anon_sym_enum] = ACTIONS(4798), + [anon_sym_STAR] = ACTIONS(4796), + [anon_sym_BANG] = ACTIONS(4796), + [anon_sym_TILDE] = ACTIONS(4796), + [anon_sym_def] = ACTIONS(4798), + [anon_sym_protected] = ACTIONS(4798), + [anon_sym_include] = ACTIONS(4798), + [anon_sym_extend] = ACTIONS(4798), + [anon_sym_return] = ACTIONS(4798), + [anon_sym_next] = ACTIONS(4798), + [anon_sym_break] = ACTIONS(4798), + [anon_sym_with] = ACTIONS(4798), + [anon_sym_yield] = ACTIONS(4798), + [anon_sym_typeof] = ACTIONS(4798), + [anon_sym_sizeof] = ACTIONS(4798), + [anon_sym_instance_sizeof] = ACTIONS(4798), + [anon_sym_offsetof] = ACTIONS(4798), + [sym__constant_segment] = ACTIONS(4796), + [anon_sym_COLON_COLON] = ACTIONS(4796), + [anon_sym___LINE__] = ACTIONS(4798), + [anon_sym___END_LINE__] = ACTIONS(4798), + [anon_sym___FILE__] = ACTIONS(4798), + [anon_sym___DIR__] = ACTIONS(4798), + [sym_special_variable] = ACTIONS(4796), + [sym_identifier_method_call] = ACTIONS(4796), + [sym_instance_var] = ACTIONS(4796), + [sym_class_var] = ACTIONS(4796), + [sym_self] = ACTIONS(4798), + [anon_sym_alias] = ACTIONS(4798), + [anon_sym_begin] = ACTIONS(4798), + [anon_sym_while] = ACTIONS(4798), + [anon_sym_until] = ACTIONS(4798), + [anon_sym_else] = ACTIONS(4798), + [anon_sym_require] = ACTIONS(4798), + [anon_sym_case] = ACTIONS(4798), + [anon_sym_select] = ACTIONS(4798), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4796), + [sym__start_of_named_tuple] = ACTIONS(4796), + [sym_unary_plus] = ACTIONS(4796), + [sym_unary_minus] = ACTIONS(4796), + [sym_unary_wrapping_plus] = ACTIONS(4796), + [sym_unary_wrapping_minus] = ACTIONS(4796), + [sym__beginless_range_operator] = ACTIONS(4796), + [sym__regex_start] = ACTIONS(4796), + [sym__regular_if_keyword] = ACTIONS(4796), + [sym__regular_unless_keyword] = ACTIONS(4796), + [sym__regular_rescue_keyword] = ACTIONS(4796), + [sym__regular_ensure_keyword] = ACTIONS(4796), + [sym__string_literal_start] = ACTIONS(4796), + [sym__string_percent_literal_start] = ACTIONS(4796), + [sym__command_percent_literal_start] = ACTIONS(4796), + [sym__string_array_percent_literal_start] = ACTIONS(4796), + [sym__symbol_array_percent_literal_start] = ACTIONS(4796), + [sym__regex_percent_literal_start] = ACTIONS(4796), + [sym_heredoc_start] = ACTIONS(4796), [sym__heredoc_body_start] = ACTIONS(7), }, [2099] = { [sym_heredoc_body] = STATE(2099), - [sym_identifier] = ACTIONS(4861), - [anon_sym_SEMI] = ACTIONS(4863), - [anon_sym_LPAREN] = ACTIONS(4863), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4861), - [sym_true] = ACTIONS(4861), - [sym_false] = ACTIONS(4861), - [aux_sym_integer_token2] = ACTIONS(4861), - [aux_sym_float_token2] = ACTIONS(4863), - [anon_sym_SQUOTE] = ACTIONS(4863), - [sym_operator_symbol] = ACTIONS(4863), - [sym_unquoted_symbol] = ACTIONS(4863), - [anon_sym_COLON_DQUOTE] = ACTIONS(4863), - [anon_sym_BQUOTE] = ACTIONS(4863), - [anon_sym_LBRACK] = ACTIONS(4863), - [anon_sym_DASH_GT] = ACTIONS(4863), - [anon_sym_annotation] = ACTIONS(4861), - [anon_sym_end] = ACTIONS(4861), - [anon_sym_AT_LBRACK] = ACTIONS(4863), - [anon_sym_private] = ACTIONS(4861), - [anon_sym_module] = ACTIONS(4861), - [anon_sym_abstract] = ACTIONS(4861), - [anon_sym_class] = ACTIONS(4861), - [anon_sym_struct] = ACTIONS(4861), - [anon_sym_enum] = ACTIONS(4861), - [anon_sym_STAR] = ACTIONS(4863), - [anon_sym_BANG] = ACTIONS(4863), - [anon_sym_TILDE] = ACTIONS(4863), - [anon_sym_def] = ACTIONS(4861), - [anon_sym_protected] = ACTIONS(4861), - [anon_sym_include] = ACTIONS(4861), - [anon_sym_extend] = ACTIONS(4861), - [anon_sym_return] = ACTIONS(4861), - [anon_sym_next] = ACTIONS(4861), - [anon_sym_break] = ACTIONS(4861), - [anon_sym_with] = ACTIONS(4861), - [anon_sym_yield] = ACTIONS(4861), - [anon_sym_typeof] = ACTIONS(4861), - [anon_sym_sizeof] = ACTIONS(4861), - [anon_sym_instance_sizeof] = ACTIONS(4861), - [anon_sym_offsetof] = ACTIONS(4861), - [sym__constant_segment] = ACTIONS(4863), - [anon_sym_COLON_COLON] = ACTIONS(4863), - [anon_sym___LINE__] = ACTIONS(4861), - [anon_sym___END_LINE__] = ACTIONS(4861), - [anon_sym___FILE__] = ACTIONS(4861), - [anon_sym___DIR__] = ACTIONS(4861), - [sym_special_variable] = ACTIONS(4863), - [sym_identifier_method_call] = ACTIONS(4863), - [sym_instance_var] = ACTIONS(4863), - [sym_class_var] = ACTIONS(4863), - [sym_self] = ACTIONS(4861), - [anon_sym_alias] = ACTIONS(4861), - [anon_sym_begin] = ACTIONS(4861), - [anon_sym_while] = ACTIONS(4861), - [anon_sym_until] = ACTIONS(4861), - [anon_sym_else] = ACTIONS(4861), - [anon_sym_require] = ACTIONS(4861), - [anon_sym_case] = ACTIONS(4861), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4863), - [sym__start_of_named_tuple] = ACTIONS(4863), - [sym_unary_plus] = ACTIONS(4863), - [sym_unary_minus] = ACTIONS(4863), - [sym_unary_wrapping_plus] = ACTIONS(4863), - [sym_unary_wrapping_minus] = ACTIONS(4863), - [sym__beginless_range_operator] = ACTIONS(4863), - [sym__regex_start] = ACTIONS(4863), - [sym__regular_if_keyword] = ACTIONS(4863), - [sym__regular_unless_keyword] = ACTIONS(4863), - [sym__regular_rescue_keyword] = ACTIONS(4863), - [sym__regular_ensure_keyword] = ACTIONS(4863), - [sym__string_literal_start] = ACTIONS(4863), - [sym__string_percent_literal_start] = ACTIONS(4863), - [sym__command_percent_literal_start] = ACTIONS(4863), - [sym__string_array_percent_literal_start] = ACTIONS(4863), - [sym__symbol_array_percent_literal_start] = ACTIONS(4863), - [sym__regex_percent_literal_start] = ACTIONS(4863), - [sym_heredoc_start] = ACTIONS(4863), + [sym_identifier] = ACTIONS(4894), + [anon_sym_SEMI] = ACTIONS(4896), + [anon_sym_LPAREN] = ACTIONS(4896), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4894), + [sym_true] = ACTIONS(4894), + [sym_false] = ACTIONS(4894), + [aux_sym_integer_token2] = ACTIONS(4894), + [aux_sym_float_token2] = ACTIONS(4896), + [anon_sym_SQUOTE] = ACTIONS(4896), + [sym_operator_symbol] = ACTIONS(4896), + [sym_unquoted_symbol] = ACTIONS(4896), + [anon_sym_COLON_DQUOTE] = ACTIONS(4896), + [anon_sym_BQUOTE] = ACTIONS(4896), + [anon_sym_LBRACK] = ACTIONS(4896), + [anon_sym_DASH_GT] = ACTIONS(4896), + [anon_sym_annotation] = ACTIONS(4894), + [anon_sym_end] = ACTIONS(4894), + [anon_sym_AT_LBRACK] = ACTIONS(4896), + [anon_sym_private] = ACTIONS(4894), + [anon_sym_module] = ACTIONS(4894), + [anon_sym_abstract] = ACTIONS(4894), + [anon_sym_class] = ACTIONS(4894), + [anon_sym_struct] = ACTIONS(4894), + [anon_sym_enum] = ACTIONS(4894), + [anon_sym_STAR] = ACTIONS(4896), + [anon_sym_BANG] = ACTIONS(4896), + [anon_sym_TILDE] = ACTIONS(4896), + [anon_sym_def] = ACTIONS(4894), + [anon_sym_protected] = ACTIONS(4894), + [anon_sym_include] = ACTIONS(4894), + [anon_sym_extend] = ACTIONS(4894), + [anon_sym_return] = ACTIONS(4894), + [anon_sym_next] = ACTIONS(4894), + [anon_sym_break] = ACTIONS(4894), + [anon_sym_with] = ACTIONS(4894), + [anon_sym_yield] = ACTIONS(4894), + [anon_sym_typeof] = ACTIONS(4894), + [anon_sym_sizeof] = ACTIONS(4894), + [anon_sym_instance_sizeof] = ACTIONS(4894), + [anon_sym_offsetof] = ACTIONS(4894), + [sym__constant_segment] = ACTIONS(4896), + [anon_sym_COLON_COLON] = ACTIONS(4896), + [anon_sym___LINE__] = ACTIONS(4894), + [anon_sym___END_LINE__] = ACTIONS(4894), + [anon_sym___FILE__] = ACTIONS(4894), + [anon_sym___DIR__] = ACTIONS(4894), + [sym_special_variable] = ACTIONS(4896), + [sym_identifier_method_call] = ACTIONS(4896), + [sym_instance_var] = ACTIONS(4896), + [sym_class_var] = ACTIONS(4896), + [sym_self] = ACTIONS(4894), + [anon_sym_alias] = ACTIONS(4894), + [anon_sym_begin] = ACTIONS(4894), + [anon_sym_while] = ACTIONS(4894), + [anon_sym_until] = ACTIONS(4894), + [anon_sym_else] = ACTIONS(4894), + [anon_sym_require] = ACTIONS(4894), + [anon_sym_case] = ACTIONS(4894), + [anon_sym_select] = ACTIONS(4894), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4896), + [sym__start_of_named_tuple] = ACTIONS(4896), + [sym_unary_plus] = ACTIONS(4896), + [sym_unary_minus] = ACTIONS(4896), + [sym_unary_wrapping_plus] = ACTIONS(4896), + [sym_unary_wrapping_minus] = ACTIONS(4896), + [sym__beginless_range_operator] = ACTIONS(4896), + [sym__regex_start] = ACTIONS(4896), + [sym__regular_if_keyword] = ACTIONS(4896), + [sym__regular_unless_keyword] = ACTIONS(4896), + [sym__regular_rescue_keyword] = ACTIONS(4896), + [sym__regular_ensure_keyword] = ACTIONS(4896), + [sym__string_literal_start] = ACTIONS(4896), + [sym__string_percent_literal_start] = ACTIONS(4896), + [sym__command_percent_literal_start] = ACTIONS(4896), + [sym__string_array_percent_literal_start] = ACTIONS(4896), + [sym__symbol_array_percent_literal_start] = ACTIONS(4896), + [sym__regex_percent_literal_start] = ACTIONS(4896), + [sym_heredoc_start] = ACTIONS(4896), [sym__heredoc_body_start] = ACTIONS(7), }, [2100] = { [sym_heredoc_body] = STATE(2100), - [sym_identifier] = ACTIONS(4865), - [anon_sym_SEMI] = ACTIONS(4867), - [anon_sym_LPAREN] = ACTIONS(4867), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4865), - [sym_true] = ACTIONS(4865), - [sym_false] = ACTIONS(4865), - [aux_sym_integer_token2] = ACTIONS(4865), - [aux_sym_float_token2] = ACTIONS(4867), - [anon_sym_SQUOTE] = ACTIONS(4867), - [sym_operator_symbol] = ACTIONS(4867), - [sym_unquoted_symbol] = ACTIONS(4867), - [anon_sym_COLON_DQUOTE] = ACTIONS(4867), - [anon_sym_BQUOTE] = ACTIONS(4867), - [anon_sym_LBRACK] = ACTIONS(4867), - [anon_sym_DASH_GT] = ACTIONS(4867), - [anon_sym_annotation] = ACTIONS(4865), - [anon_sym_end] = ACTIONS(4865), - [anon_sym_AT_LBRACK] = ACTIONS(4867), - [anon_sym_private] = ACTIONS(4865), - [anon_sym_module] = ACTIONS(4865), - [anon_sym_abstract] = ACTIONS(4865), - [anon_sym_class] = ACTIONS(4865), - [anon_sym_struct] = ACTIONS(4865), - [anon_sym_enum] = ACTIONS(4865), - [anon_sym_STAR] = ACTIONS(4867), - [anon_sym_BANG] = ACTIONS(4867), - [anon_sym_TILDE] = ACTIONS(4867), - [anon_sym_def] = ACTIONS(4865), - [anon_sym_protected] = ACTIONS(4865), - [anon_sym_include] = ACTIONS(4865), - [anon_sym_extend] = ACTIONS(4865), - [anon_sym_return] = ACTIONS(4865), - [anon_sym_next] = ACTIONS(4865), - [anon_sym_break] = ACTIONS(4865), - [anon_sym_with] = ACTIONS(4865), - [anon_sym_yield] = ACTIONS(4865), - [anon_sym_typeof] = ACTIONS(4865), - [anon_sym_sizeof] = ACTIONS(4865), - [anon_sym_instance_sizeof] = ACTIONS(4865), - [anon_sym_offsetof] = ACTIONS(4865), - [sym__constant_segment] = ACTIONS(4867), - [anon_sym_COLON_COLON] = ACTIONS(4867), - [anon_sym___LINE__] = ACTIONS(4865), - [anon_sym___END_LINE__] = ACTIONS(4865), - [anon_sym___FILE__] = ACTIONS(4865), - [anon_sym___DIR__] = ACTIONS(4865), - [sym_special_variable] = ACTIONS(4867), - [sym_identifier_method_call] = ACTIONS(4867), - [sym_instance_var] = ACTIONS(4867), - [sym_class_var] = ACTIONS(4867), - [sym_self] = ACTIONS(4865), - [anon_sym_alias] = ACTIONS(4865), - [anon_sym_begin] = ACTIONS(4865), - [anon_sym_while] = ACTIONS(4865), - [anon_sym_until] = ACTIONS(4865), - [anon_sym_else] = ACTIONS(4865), - [anon_sym_require] = ACTIONS(4865), - [anon_sym_case] = ACTIONS(4865), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4867), - [sym__start_of_named_tuple] = ACTIONS(4867), - [sym_unary_plus] = ACTIONS(4867), - [sym_unary_minus] = ACTIONS(4867), - [sym_unary_wrapping_plus] = ACTIONS(4867), - [sym_unary_wrapping_minus] = ACTIONS(4867), - [sym__beginless_range_operator] = ACTIONS(4867), - [sym__regex_start] = ACTIONS(4867), - [sym__regular_if_keyword] = ACTIONS(4867), - [sym__regular_unless_keyword] = ACTIONS(4867), - [sym__regular_rescue_keyword] = ACTIONS(4867), - [sym__regular_ensure_keyword] = ACTIONS(4867), - [sym__string_literal_start] = ACTIONS(4867), - [sym__string_percent_literal_start] = ACTIONS(4867), - [sym__command_percent_literal_start] = ACTIONS(4867), - [sym__string_array_percent_literal_start] = ACTIONS(4867), - [sym__symbol_array_percent_literal_start] = ACTIONS(4867), - [sym__regex_percent_literal_start] = ACTIONS(4867), - [sym_heredoc_start] = ACTIONS(4867), + [sym_identifier] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_LPAREN] = ACTIONS(4900), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4898), + [sym_true] = ACTIONS(4898), + [sym_false] = ACTIONS(4898), + [aux_sym_integer_token2] = ACTIONS(4898), + [aux_sym_float_token2] = ACTIONS(4900), + [anon_sym_SQUOTE] = ACTIONS(4900), + [sym_operator_symbol] = ACTIONS(4900), + [sym_unquoted_symbol] = ACTIONS(4900), + [anon_sym_COLON_DQUOTE] = ACTIONS(4900), + [anon_sym_BQUOTE] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_DASH_GT] = ACTIONS(4900), + [anon_sym_annotation] = ACTIONS(4898), + [anon_sym_end] = ACTIONS(4898), + [anon_sym_AT_LBRACK] = ACTIONS(4900), + [anon_sym_private] = ACTIONS(4898), + [anon_sym_module] = ACTIONS(4898), + [anon_sym_abstract] = ACTIONS(4898), + [anon_sym_class] = ACTIONS(4898), + [anon_sym_struct] = ACTIONS(4898), + [anon_sym_enum] = ACTIONS(4898), + [anon_sym_STAR] = ACTIONS(4900), + [anon_sym_BANG] = ACTIONS(4900), + [anon_sym_TILDE] = ACTIONS(4900), + [anon_sym_def] = ACTIONS(4898), + [anon_sym_protected] = ACTIONS(4898), + [anon_sym_include] = ACTIONS(4898), + [anon_sym_extend] = ACTIONS(4898), + [anon_sym_return] = ACTIONS(4898), + [anon_sym_next] = ACTIONS(4898), + [anon_sym_break] = ACTIONS(4898), + [anon_sym_with] = ACTIONS(4898), + [anon_sym_yield] = ACTIONS(4898), + [anon_sym_typeof] = ACTIONS(4898), + [anon_sym_sizeof] = ACTIONS(4898), + [anon_sym_instance_sizeof] = ACTIONS(4898), + [anon_sym_offsetof] = ACTIONS(4898), + [sym__constant_segment] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(4900), + [anon_sym___LINE__] = ACTIONS(4898), + [anon_sym___END_LINE__] = ACTIONS(4898), + [anon_sym___FILE__] = ACTIONS(4898), + [anon_sym___DIR__] = ACTIONS(4898), + [sym_special_variable] = ACTIONS(4900), + [sym_identifier_method_call] = ACTIONS(4900), + [sym_instance_var] = ACTIONS(4900), + [sym_class_var] = ACTIONS(4900), + [sym_self] = ACTIONS(4898), + [anon_sym_alias] = ACTIONS(4898), + [anon_sym_begin] = ACTIONS(4898), + [anon_sym_while] = ACTIONS(4898), + [anon_sym_until] = ACTIONS(4898), + [anon_sym_else] = ACTIONS(4898), + [anon_sym_require] = ACTIONS(4898), + [anon_sym_case] = ACTIONS(4898), + [anon_sym_select] = ACTIONS(4898), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4900), + [sym__start_of_named_tuple] = ACTIONS(4900), + [sym_unary_plus] = ACTIONS(4900), + [sym_unary_minus] = ACTIONS(4900), + [sym_unary_wrapping_plus] = ACTIONS(4900), + [sym_unary_wrapping_minus] = ACTIONS(4900), + [sym__beginless_range_operator] = ACTIONS(4900), + [sym__regex_start] = ACTIONS(4900), + [sym__regular_if_keyword] = ACTIONS(4900), + [sym__regular_unless_keyword] = ACTIONS(4900), + [sym__regular_rescue_keyword] = ACTIONS(4900), + [sym__regular_ensure_keyword] = ACTIONS(4900), + [sym__string_literal_start] = ACTIONS(4900), + [sym__string_percent_literal_start] = ACTIONS(4900), + [sym__command_percent_literal_start] = ACTIONS(4900), + [sym__string_array_percent_literal_start] = ACTIONS(4900), + [sym__symbol_array_percent_literal_start] = ACTIONS(4900), + [sym__regex_percent_literal_start] = ACTIONS(4900), + [sym_heredoc_start] = ACTIONS(4900), [sym__heredoc_body_start] = ACTIONS(7), }, [2101] = { [sym_heredoc_body] = STATE(2101), - [sym_identifier] = ACTIONS(4869), - [anon_sym_SEMI] = ACTIONS(4871), - [anon_sym_LPAREN] = ACTIONS(4871), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4869), - [sym_true] = ACTIONS(4869), - [sym_false] = ACTIONS(4869), - [aux_sym_integer_token2] = ACTIONS(4869), - [aux_sym_float_token2] = ACTIONS(4871), - [anon_sym_SQUOTE] = ACTIONS(4871), - [sym_operator_symbol] = ACTIONS(4871), - [sym_unquoted_symbol] = ACTIONS(4871), - [anon_sym_COLON_DQUOTE] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [anon_sym_LBRACK] = ACTIONS(4871), - [anon_sym_DASH_GT] = ACTIONS(4871), - [anon_sym_annotation] = ACTIONS(4869), - [anon_sym_end] = ACTIONS(4869), - [anon_sym_AT_LBRACK] = ACTIONS(4871), - [anon_sym_private] = ACTIONS(4869), - [anon_sym_module] = ACTIONS(4869), - [anon_sym_abstract] = ACTIONS(4869), - [anon_sym_class] = ACTIONS(4869), - [anon_sym_struct] = ACTIONS(4869), - [anon_sym_enum] = ACTIONS(4869), - [anon_sym_STAR] = ACTIONS(4871), - [anon_sym_BANG] = ACTIONS(4871), - [anon_sym_TILDE] = ACTIONS(4871), - [anon_sym_def] = ACTIONS(4869), - [anon_sym_protected] = ACTIONS(4869), - [anon_sym_include] = ACTIONS(4869), - [anon_sym_extend] = ACTIONS(4869), - [anon_sym_return] = ACTIONS(4869), - [anon_sym_next] = ACTIONS(4869), - [anon_sym_break] = ACTIONS(4869), - [anon_sym_with] = ACTIONS(4869), - [anon_sym_yield] = ACTIONS(4869), - [anon_sym_typeof] = ACTIONS(4869), - [anon_sym_sizeof] = ACTIONS(4869), - [anon_sym_instance_sizeof] = ACTIONS(4869), - [anon_sym_offsetof] = ACTIONS(4869), - [sym__constant_segment] = ACTIONS(4871), - [anon_sym_COLON_COLON] = ACTIONS(4871), - [anon_sym___LINE__] = ACTIONS(4869), - [anon_sym___END_LINE__] = ACTIONS(4869), - [anon_sym___FILE__] = ACTIONS(4869), - [anon_sym___DIR__] = ACTIONS(4869), - [sym_special_variable] = ACTIONS(4871), - [sym_identifier_method_call] = ACTIONS(4871), - [sym_instance_var] = ACTIONS(4871), - [sym_class_var] = ACTIONS(4871), - [sym_self] = ACTIONS(4869), - [anon_sym_alias] = ACTIONS(4869), - [anon_sym_begin] = ACTIONS(4869), - [anon_sym_while] = ACTIONS(4869), - [anon_sym_until] = ACTIONS(4869), - [anon_sym_else] = ACTIONS(4869), - [anon_sym_require] = ACTIONS(4869), - [anon_sym_case] = ACTIONS(4869), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4871), - [sym__start_of_named_tuple] = ACTIONS(4871), - [sym_unary_plus] = ACTIONS(4871), - [sym_unary_minus] = ACTIONS(4871), - [sym_unary_wrapping_plus] = ACTIONS(4871), - [sym_unary_wrapping_minus] = ACTIONS(4871), - [sym__beginless_range_operator] = ACTIONS(4871), - [sym__regex_start] = ACTIONS(4871), - [sym__regular_if_keyword] = ACTIONS(4871), - [sym__regular_unless_keyword] = ACTIONS(4871), - [sym__regular_rescue_keyword] = ACTIONS(4871), - [sym__regular_ensure_keyword] = ACTIONS(4871), - [sym__string_literal_start] = ACTIONS(4871), - [sym__string_percent_literal_start] = ACTIONS(4871), - [sym__command_percent_literal_start] = ACTIONS(4871), - [sym__string_array_percent_literal_start] = ACTIONS(4871), - [sym__symbol_array_percent_literal_start] = ACTIONS(4871), - [sym__regex_percent_literal_start] = ACTIONS(4871), - [sym_heredoc_start] = ACTIONS(4871), + [sym_identifier] = ACTIONS(4902), + [anon_sym_SEMI] = ACTIONS(4904), + [anon_sym_LPAREN] = ACTIONS(4904), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4902), + [sym_true] = ACTIONS(4902), + [sym_false] = ACTIONS(4902), + [aux_sym_integer_token2] = ACTIONS(4902), + [aux_sym_float_token2] = ACTIONS(4904), + [anon_sym_SQUOTE] = ACTIONS(4904), + [sym_operator_symbol] = ACTIONS(4904), + [sym_unquoted_symbol] = ACTIONS(4904), + [anon_sym_COLON_DQUOTE] = ACTIONS(4904), + [anon_sym_BQUOTE] = ACTIONS(4904), + [anon_sym_LBRACK] = ACTIONS(4904), + [anon_sym_DASH_GT] = ACTIONS(4904), + [anon_sym_annotation] = ACTIONS(4902), + [anon_sym_end] = ACTIONS(4902), + [anon_sym_AT_LBRACK] = ACTIONS(4904), + [anon_sym_private] = ACTIONS(4902), + [anon_sym_module] = ACTIONS(4902), + [anon_sym_abstract] = ACTIONS(4902), + [anon_sym_class] = ACTIONS(4902), + [anon_sym_struct] = ACTIONS(4902), + [anon_sym_enum] = ACTIONS(4902), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_BANG] = ACTIONS(4904), + [anon_sym_TILDE] = ACTIONS(4904), + [anon_sym_def] = ACTIONS(4902), + [anon_sym_protected] = ACTIONS(4902), + [anon_sym_include] = ACTIONS(4902), + [anon_sym_extend] = ACTIONS(4902), + [anon_sym_return] = ACTIONS(4902), + [anon_sym_next] = ACTIONS(4902), + [anon_sym_break] = ACTIONS(4902), + [anon_sym_with] = ACTIONS(4902), + [anon_sym_yield] = ACTIONS(4902), + [anon_sym_typeof] = ACTIONS(4902), + [anon_sym_sizeof] = ACTIONS(4902), + [anon_sym_instance_sizeof] = ACTIONS(4902), + [anon_sym_offsetof] = ACTIONS(4902), + [sym__constant_segment] = ACTIONS(4904), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [anon_sym___LINE__] = ACTIONS(4902), + [anon_sym___END_LINE__] = ACTIONS(4902), + [anon_sym___FILE__] = ACTIONS(4902), + [anon_sym___DIR__] = ACTIONS(4902), + [sym_special_variable] = ACTIONS(4904), + [sym_identifier_method_call] = ACTIONS(4904), + [sym_instance_var] = ACTIONS(4904), + [sym_class_var] = ACTIONS(4904), + [sym_self] = ACTIONS(4902), + [anon_sym_alias] = ACTIONS(4902), + [anon_sym_begin] = ACTIONS(4902), + [anon_sym_while] = ACTIONS(4902), + [anon_sym_until] = ACTIONS(4902), + [anon_sym_else] = ACTIONS(4902), + [anon_sym_require] = ACTIONS(4902), + [anon_sym_case] = ACTIONS(4902), + [anon_sym_select] = ACTIONS(4902), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4904), + [sym__start_of_named_tuple] = ACTIONS(4904), + [sym_unary_plus] = ACTIONS(4904), + [sym_unary_minus] = ACTIONS(4904), + [sym_unary_wrapping_plus] = ACTIONS(4904), + [sym_unary_wrapping_minus] = ACTIONS(4904), + [sym__beginless_range_operator] = ACTIONS(4904), + [sym__regex_start] = ACTIONS(4904), + [sym__regular_if_keyword] = ACTIONS(4904), + [sym__regular_unless_keyword] = ACTIONS(4904), + [sym__regular_rescue_keyword] = ACTIONS(4904), + [sym__regular_ensure_keyword] = ACTIONS(4904), + [sym__string_literal_start] = ACTIONS(4904), + [sym__string_percent_literal_start] = ACTIONS(4904), + [sym__command_percent_literal_start] = ACTIONS(4904), + [sym__string_array_percent_literal_start] = ACTIONS(4904), + [sym__symbol_array_percent_literal_start] = ACTIONS(4904), + [sym__regex_percent_literal_start] = ACTIONS(4904), + [sym_heredoc_start] = ACTIONS(4904), [sym__heredoc_body_start] = ACTIONS(7), }, [2102] = { [sym_heredoc_body] = STATE(2102), - [sym_identifier] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4875), - [anon_sym_LPAREN] = ACTIONS(4875), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4873), - [sym_true] = ACTIONS(4873), - [sym_false] = ACTIONS(4873), - [aux_sym_integer_token2] = ACTIONS(4873), - [aux_sym_float_token2] = ACTIONS(4875), - [anon_sym_SQUOTE] = ACTIONS(4875), - [sym_operator_symbol] = ACTIONS(4875), - [sym_unquoted_symbol] = ACTIONS(4875), - [anon_sym_COLON_DQUOTE] = ACTIONS(4875), - [anon_sym_BQUOTE] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4875), - [anon_sym_DASH_GT] = ACTIONS(4875), - [anon_sym_annotation] = ACTIONS(4873), - [anon_sym_end] = ACTIONS(4873), - [anon_sym_AT_LBRACK] = ACTIONS(4875), - [anon_sym_private] = ACTIONS(4873), - [anon_sym_module] = ACTIONS(4873), - [anon_sym_abstract] = ACTIONS(4873), - [anon_sym_class] = ACTIONS(4873), - [anon_sym_struct] = ACTIONS(4873), - [anon_sym_enum] = ACTIONS(4873), - [anon_sym_STAR] = ACTIONS(4875), - [anon_sym_BANG] = ACTIONS(4875), - [anon_sym_TILDE] = ACTIONS(4875), - [anon_sym_def] = ACTIONS(4873), - [anon_sym_protected] = ACTIONS(4873), - [anon_sym_include] = ACTIONS(4873), - [anon_sym_extend] = ACTIONS(4873), - [anon_sym_return] = ACTIONS(4873), - [anon_sym_next] = ACTIONS(4873), - [anon_sym_break] = ACTIONS(4873), - [anon_sym_with] = ACTIONS(4873), - [anon_sym_yield] = ACTIONS(4873), - [anon_sym_typeof] = ACTIONS(4873), - [anon_sym_sizeof] = ACTIONS(4873), - [anon_sym_instance_sizeof] = ACTIONS(4873), - [anon_sym_offsetof] = ACTIONS(4873), - [sym__constant_segment] = ACTIONS(4875), - [anon_sym_COLON_COLON] = ACTIONS(4875), - [anon_sym___LINE__] = ACTIONS(4873), - [anon_sym___END_LINE__] = ACTIONS(4873), - [anon_sym___FILE__] = ACTIONS(4873), - [anon_sym___DIR__] = ACTIONS(4873), - [sym_special_variable] = ACTIONS(4875), - [sym_identifier_method_call] = ACTIONS(4875), - [sym_instance_var] = ACTIONS(4875), - [sym_class_var] = ACTIONS(4875), - [sym_self] = ACTIONS(4873), - [anon_sym_alias] = ACTIONS(4873), - [anon_sym_begin] = ACTIONS(4873), - [anon_sym_while] = ACTIONS(4873), - [anon_sym_until] = ACTIONS(4873), - [anon_sym_else] = ACTIONS(4873), - [anon_sym_require] = ACTIONS(4873), - [anon_sym_case] = ACTIONS(4873), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4875), - [sym__start_of_named_tuple] = ACTIONS(4875), - [sym_unary_plus] = ACTIONS(4875), - [sym_unary_minus] = ACTIONS(4875), - [sym_unary_wrapping_plus] = ACTIONS(4875), - [sym_unary_wrapping_minus] = ACTIONS(4875), - [sym__beginless_range_operator] = ACTIONS(4875), - [sym__regex_start] = ACTIONS(4875), - [sym__regular_if_keyword] = ACTIONS(4875), - [sym__regular_unless_keyword] = ACTIONS(4875), - [sym__regular_rescue_keyword] = ACTIONS(4875), - [sym__regular_ensure_keyword] = ACTIONS(4875), - [sym__string_literal_start] = ACTIONS(4875), - [sym__string_percent_literal_start] = ACTIONS(4875), - [sym__command_percent_literal_start] = ACTIONS(4875), - [sym__string_array_percent_literal_start] = ACTIONS(4875), - [sym__symbol_array_percent_literal_start] = ACTIONS(4875), - [sym__regex_percent_literal_start] = ACTIONS(4875), - [sym_heredoc_start] = ACTIONS(4875), + [sym_identifier] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(4908), + [anon_sym_LPAREN] = ACTIONS(4908), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4906), + [sym_true] = ACTIONS(4906), + [sym_false] = ACTIONS(4906), + [aux_sym_integer_token2] = ACTIONS(4906), + [aux_sym_float_token2] = ACTIONS(4908), + [anon_sym_SQUOTE] = ACTIONS(4908), + [sym_operator_symbol] = ACTIONS(4908), + [sym_unquoted_symbol] = ACTIONS(4908), + [anon_sym_COLON_DQUOTE] = ACTIONS(4908), + [anon_sym_BQUOTE] = ACTIONS(4908), + [anon_sym_LBRACK] = ACTIONS(4908), + [anon_sym_DASH_GT] = ACTIONS(4908), + [anon_sym_annotation] = ACTIONS(4906), + [anon_sym_end] = ACTIONS(4906), + [anon_sym_AT_LBRACK] = ACTIONS(4908), + [anon_sym_private] = ACTIONS(4906), + [anon_sym_module] = ACTIONS(4906), + [anon_sym_abstract] = ACTIONS(4906), + [anon_sym_class] = ACTIONS(4906), + [anon_sym_struct] = ACTIONS(4906), + [anon_sym_enum] = ACTIONS(4906), + [anon_sym_STAR] = ACTIONS(4908), + [anon_sym_BANG] = ACTIONS(4908), + [anon_sym_TILDE] = ACTIONS(4908), + [anon_sym_def] = ACTIONS(4906), + [anon_sym_protected] = ACTIONS(4906), + [anon_sym_include] = ACTIONS(4906), + [anon_sym_extend] = ACTIONS(4906), + [anon_sym_return] = ACTIONS(4906), + [anon_sym_next] = ACTIONS(4906), + [anon_sym_break] = ACTIONS(4906), + [anon_sym_with] = ACTIONS(4906), + [anon_sym_yield] = ACTIONS(4906), + [anon_sym_typeof] = ACTIONS(4906), + [anon_sym_sizeof] = ACTIONS(4906), + [anon_sym_instance_sizeof] = ACTIONS(4906), + [anon_sym_offsetof] = ACTIONS(4906), + [sym__constant_segment] = ACTIONS(4908), + [anon_sym_COLON_COLON] = ACTIONS(4908), + [anon_sym___LINE__] = ACTIONS(4906), + [anon_sym___END_LINE__] = ACTIONS(4906), + [anon_sym___FILE__] = ACTIONS(4906), + [anon_sym___DIR__] = ACTIONS(4906), + [sym_special_variable] = ACTIONS(4908), + [sym_identifier_method_call] = ACTIONS(4908), + [sym_instance_var] = ACTIONS(4908), + [sym_class_var] = ACTIONS(4908), + [sym_self] = ACTIONS(4906), + [anon_sym_alias] = ACTIONS(4906), + [anon_sym_begin] = ACTIONS(4906), + [anon_sym_while] = ACTIONS(4906), + [anon_sym_until] = ACTIONS(4906), + [anon_sym_else] = ACTIONS(4906), + [anon_sym_require] = ACTIONS(4906), + [anon_sym_case] = ACTIONS(4906), + [anon_sym_select] = ACTIONS(4906), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4908), + [sym__start_of_named_tuple] = ACTIONS(4908), + [sym_unary_plus] = ACTIONS(4908), + [sym_unary_minus] = ACTIONS(4908), + [sym_unary_wrapping_plus] = ACTIONS(4908), + [sym_unary_wrapping_minus] = ACTIONS(4908), + [sym__beginless_range_operator] = ACTIONS(4908), + [sym__regex_start] = ACTIONS(4908), + [sym__regular_if_keyword] = ACTIONS(4908), + [sym__regular_unless_keyword] = ACTIONS(4908), + [sym__regular_rescue_keyword] = ACTIONS(4908), + [sym__regular_ensure_keyword] = ACTIONS(4908), + [sym__string_literal_start] = ACTIONS(4908), + [sym__string_percent_literal_start] = ACTIONS(4908), + [sym__command_percent_literal_start] = ACTIONS(4908), + [sym__string_array_percent_literal_start] = ACTIONS(4908), + [sym__symbol_array_percent_literal_start] = ACTIONS(4908), + [sym__regex_percent_literal_start] = ACTIONS(4908), + [sym_heredoc_start] = ACTIONS(4908), [sym__heredoc_body_start] = ACTIONS(7), }, [2103] = { [sym_heredoc_body] = STATE(2103), - [sym_identifier] = ACTIONS(4877), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LPAREN] = ACTIONS(4879), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4877), - [sym_true] = ACTIONS(4877), - [sym_false] = ACTIONS(4877), - [aux_sym_integer_token2] = ACTIONS(4877), - [aux_sym_float_token2] = ACTIONS(4879), - [anon_sym_SQUOTE] = ACTIONS(4879), - [sym_operator_symbol] = ACTIONS(4879), - [sym_unquoted_symbol] = ACTIONS(4879), - [anon_sym_COLON_DQUOTE] = ACTIONS(4879), - [anon_sym_BQUOTE] = ACTIONS(4879), - [anon_sym_LBRACK] = ACTIONS(4879), - [anon_sym_DASH_GT] = ACTIONS(4879), - [anon_sym_annotation] = ACTIONS(4877), - [anon_sym_end] = ACTIONS(4877), - [anon_sym_AT_LBRACK] = ACTIONS(4879), - [anon_sym_private] = ACTIONS(4877), - [anon_sym_module] = ACTIONS(4877), - [anon_sym_abstract] = ACTIONS(4877), - [anon_sym_class] = ACTIONS(4877), - [anon_sym_struct] = ACTIONS(4877), - [anon_sym_enum] = ACTIONS(4877), - [anon_sym_STAR] = ACTIONS(4879), - [anon_sym_BANG] = ACTIONS(4879), - [anon_sym_TILDE] = ACTIONS(4879), - [anon_sym_def] = ACTIONS(4877), - [anon_sym_protected] = ACTIONS(4877), - [anon_sym_include] = ACTIONS(4877), - [anon_sym_extend] = ACTIONS(4877), - [anon_sym_return] = ACTIONS(4877), - [anon_sym_next] = ACTIONS(4877), - [anon_sym_break] = ACTIONS(4877), - [anon_sym_with] = ACTIONS(4877), - [anon_sym_yield] = ACTIONS(4877), - [anon_sym_typeof] = ACTIONS(4877), - [anon_sym_sizeof] = ACTIONS(4877), - [anon_sym_instance_sizeof] = ACTIONS(4877), - [anon_sym_offsetof] = ACTIONS(4877), - [sym__constant_segment] = ACTIONS(4879), - [anon_sym_COLON_COLON] = ACTIONS(4879), - [anon_sym___LINE__] = ACTIONS(4877), - [anon_sym___END_LINE__] = ACTIONS(4877), - [anon_sym___FILE__] = ACTIONS(4877), - [anon_sym___DIR__] = ACTIONS(4877), - [sym_special_variable] = ACTIONS(4879), - [sym_identifier_method_call] = ACTIONS(4879), - [sym_instance_var] = ACTIONS(4879), - [sym_class_var] = ACTIONS(4879), - [sym_self] = ACTIONS(4877), - [anon_sym_alias] = ACTIONS(4877), - [anon_sym_begin] = ACTIONS(4877), - [anon_sym_while] = ACTIONS(4877), - [anon_sym_until] = ACTIONS(4877), - [anon_sym_else] = ACTIONS(4877), - [anon_sym_require] = ACTIONS(4877), - [anon_sym_case] = ACTIONS(4877), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4879), - [sym__start_of_named_tuple] = ACTIONS(4879), - [sym_unary_plus] = ACTIONS(4879), - [sym_unary_minus] = ACTIONS(4879), - [sym_unary_wrapping_plus] = ACTIONS(4879), - [sym_unary_wrapping_minus] = ACTIONS(4879), - [sym__beginless_range_operator] = ACTIONS(4879), - [sym__regex_start] = ACTIONS(4879), - [sym__regular_if_keyword] = ACTIONS(4879), - [sym__regular_unless_keyword] = ACTIONS(4879), - [sym__regular_rescue_keyword] = ACTIONS(4879), - [sym__regular_ensure_keyword] = ACTIONS(4879), - [sym__string_literal_start] = ACTIONS(4879), - [sym__string_percent_literal_start] = ACTIONS(4879), - [sym__command_percent_literal_start] = ACTIONS(4879), - [sym__string_array_percent_literal_start] = ACTIONS(4879), - [sym__symbol_array_percent_literal_start] = ACTIONS(4879), - [sym__regex_percent_literal_start] = ACTIONS(4879), - [sym_heredoc_start] = ACTIONS(4879), + [sym_identifier] = ACTIONS(4910), + [anon_sym_SEMI] = ACTIONS(4912), + [anon_sym_LPAREN] = ACTIONS(4912), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4910), + [sym_true] = ACTIONS(4910), + [sym_false] = ACTIONS(4910), + [aux_sym_integer_token2] = ACTIONS(4910), + [aux_sym_float_token2] = ACTIONS(4912), + [anon_sym_SQUOTE] = ACTIONS(4912), + [sym_operator_symbol] = ACTIONS(4912), + [sym_unquoted_symbol] = ACTIONS(4912), + [anon_sym_COLON_DQUOTE] = ACTIONS(4912), + [anon_sym_BQUOTE] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(4912), + [anon_sym_DASH_GT] = ACTIONS(4912), + [anon_sym_annotation] = ACTIONS(4910), + [anon_sym_end] = ACTIONS(4910), + [anon_sym_AT_LBRACK] = ACTIONS(4912), + [anon_sym_private] = ACTIONS(4910), + [anon_sym_module] = ACTIONS(4910), + [anon_sym_abstract] = ACTIONS(4910), + [anon_sym_class] = ACTIONS(4910), + [anon_sym_struct] = ACTIONS(4910), + [anon_sym_enum] = ACTIONS(4910), + [anon_sym_STAR] = ACTIONS(4912), + [anon_sym_BANG] = ACTIONS(4912), + [anon_sym_TILDE] = ACTIONS(4912), + [anon_sym_def] = ACTIONS(4910), + [anon_sym_protected] = ACTIONS(4910), + [anon_sym_include] = ACTIONS(4910), + [anon_sym_extend] = ACTIONS(4910), + [anon_sym_return] = ACTIONS(4910), + [anon_sym_next] = ACTIONS(4910), + [anon_sym_break] = ACTIONS(4910), + [anon_sym_with] = ACTIONS(4910), + [anon_sym_yield] = ACTIONS(4910), + [anon_sym_typeof] = ACTIONS(4910), + [anon_sym_sizeof] = ACTIONS(4910), + [anon_sym_instance_sizeof] = ACTIONS(4910), + [anon_sym_offsetof] = ACTIONS(4910), + [sym__constant_segment] = ACTIONS(4912), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym___LINE__] = ACTIONS(4910), + [anon_sym___END_LINE__] = ACTIONS(4910), + [anon_sym___FILE__] = ACTIONS(4910), + [anon_sym___DIR__] = ACTIONS(4910), + [sym_special_variable] = ACTIONS(4912), + [sym_identifier_method_call] = ACTIONS(4912), + [sym_instance_var] = ACTIONS(4912), + [sym_class_var] = ACTIONS(4912), + [sym_self] = ACTIONS(4910), + [anon_sym_alias] = ACTIONS(4910), + [anon_sym_begin] = ACTIONS(4910), + [anon_sym_while] = ACTIONS(4910), + [anon_sym_until] = ACTIONS(4910), + [anon_sym_else] = ACTIONS(4910), + [anon_sym_require] = ACTIONS(4910), + [anon_sym_case] = ACTIONS(4910), + [anon_sym_select] = ACTIONS(4910), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4912), + [sym__start_of_named_tuple] = ACTIONS(4912), + [sym_unary_plus] = ACTIONS(4912), + [sym_unary_minus] = ACTIONS(4912), + [sym_unary_wrapping_plus] = ACTIONS(4912), + [sym_unary_wrapping_minus] = ACTIONS(4912), + [sym__beginless_range_operator] = ACTIONS(4912), + [sym__regex_start] = ACTIONS(4912), + [sym__regular_if_keyword] = ACTIONS(4912), + [sym__regular_unless_keyword] = ACTIONS(4912), + [sym__regular_rescue_keyword] = ACTIONS(4912), + [sym__regular_ensure_keyword] = ACTIONS(4912), + [sym__string_literal_start] = ACTIONS(4912), + [sym__string_percent_literal_start] = ACTIONS(4912), + [sym__command_percent_literal_start] = ACTIONS(4912), + [sym__string_array_percent_literal_start] = ACTIONS(4912), + [sym__symbol_array_percent_literal_start] = ACTIONS(4912), + [sym__regex_percent_literal_start] = ACTIONS(4912), + [sym_heredoc_start] = ACTIONS(4912), [sym__heredoc_body_start] = ACTIONS(7), }, [2104] = { [sym_heredoc_body] = STATE(2104), - [sym_identifier] = ACTIONS(4881), - [anon_sym_SEMI] = ACTIONS(4883), - [anon_sym_LPAREN] = ACTIONS(4883), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4881), - [sym_true] = ACTIONS(4881), - [sym_false] = ACTIONS(4881), - [aux_sym_integer_token2] = ACTIONS(4881), - [aux_sym_float_token2] = ACTIONS(4883), - [anon_sym_SQUOTE] = ACTIONS(4883), - [sym_operator_symbol] = ACTIONS(4883), - [sym_unquoted_symbol] = ACTIONS(4883), - [anon_sym_COLON_DQUOTE] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [anon_sym_LBRACK] = ACTIONS(4883), - [anon_sym_DASH_GT] = ACTIONS(4883), - [anon_sym_annotation] = ACTIONS(4881), - [anon_sym_end] = ACTIONS(4881), - [anon_sym_AT_LBRACK] = ACTIONS(4883), - [anon_sym_private] = ACTIONS(4881), - [anon_sym_module] = ACTIONS(4881), - [anon_sym_abstract] = ACTIONS(4881), - [anon_sym_class] = ACTIONS(4881), - [anon_sym_struct] = ACTIONS(4881), - [anon_sym_enum] = ACTIONS(4881), - [anon_sym_STAR] = ACTIONS(4883), - [anon_sym_BANG] = ACTIONS(4883), - [anon_sym_TILDE] = ACTIONS(4883), - [anon_sym_def] = ACTIONS(4881), - [anon_sym_protected] = ACTIONS(4881), - [anon_sym_include] = ACTIONS(4881), - [anon_sym_extend] = ACTIONS(4881), - [anon_sym_return] = ACTIONS(4881), - [anon_sym_next] = ACTIONS(4881), - [anon_sym_break] = ACTIONS(4881), - [anon_sym_with] = ACTIONS(4881), - [anon_sym_yield] = ACTIONS(4881), - [anon_sym_typeof] = ACTIONS(4881), - [anon_sym_sizeof] = ACTIONS(4881), - [anon_sym_instance_sizeof] = ACTIONS(4881), - [anon_sym_offsetof] = ACTIONS(4881), - [sym__constant_segment] = ACTIONS(4883), - [anon_sym_COLON_COLON] = ACTIONS(4883), - [anon_sym___LINE__] = ACTIONS(4881), - [anon_sym___END_LINE__] = ACTIONS(4881), - [anon_sym___FILE__] = ACTIONS(4881), - [anon_sym___DIR__] = ACTIONS(4881), - [sym_special_variable] = ACTIONS(4883), - [sym_identifier_method_call] = ACTIONS(4883), - [sym_instance_var] = ACTIONS(4883), - [sym_class_var] = ACTIONS(4883), - [sym_self] = ACTIONS(4881), - [anon_sym_alias] = ACTIONS(4881), - [anon_sym_begin] = ACTIONS(4881), - [anon_sym_while] = ACTIONS(4881), - [anon_sym_until] = ACTIONS(4881), - [anon_sym_else] = ACTIONS(4881), - [anon_sym_require] = ACTIONS(4881), - [anon_sym_case] = ACTIONS(4881), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4883), - [sym__start_of_named_tuple] = ACTIONS(4883), - [sym_unary_plus] = ACTIONS(4883), - [sym_unary_minus] = ACTIONS(4883), - [sym_unary_wrapping_plus] = ACTIONS(4883), - [sym_unary_wrapping_minus] = ACTIONS(4883), - [sym__beginless_range_operator] = ACTIONS(4883), - [sym__regex_start] = ACTIONS(4883), - [sym__regular_if_keyword] = ACTIONS(4883), - [sym__regular_unless_keyword] = ACTIONS(4883), - [sym__regular_rescue_keyword] = ACTIONS(4883), - [sym__regular_ensure_keyword] = ACTIONS(4883), - [sym__string_literal_start] = ACTIONS(4883), - [sym__string_percent_literal_start] = ACTIONS(4883), - [sym__command_percent_literal_start] = ACTIONS(4883), - [sym__string_array_percent_literal_start] = ACTIONS(4883), - [sym__symbol_array_percent_literal_start] = ACTIONS(4883), - [sym__regex_percent_literal_start] = ACTIONS(4883), - [sym_heredoc_start] = ACTIONS(4883), + [sym_identifier] = ACTIONS(4914), + [anon_sym_SEMI] = ACTIONS(4916), + [anon_sym_LPAREN] = ACTIONS(4916), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4914), + [sym_true] = ACTIONS(4914), + [sym_false] = ACTIONS(4914), + [aux_sym_integer_token2] = ACTIONS(4914), + [aux_sym_float_token2] = ACTIONS(4916), + [anon_sym_SQUOTE] = ACTIONS(4916), + [sym_operator_symbol] = ACTIONS(4916), + [sym_unquoted_symbol] = ACTIONS(4916), + [anon_sym_COLON_DQUOTE] = ACTIONS(4916), + [anon_sym_BQUOTE] = ACTIONS(4916), + [anon_sym_LBRACK] = ACTIONS(4916), + [anon_sym_DASH_GT] = ACTIONS(4916), + [anon_sym_annotation] = ACTIONS(4914), + [anon_sym_end] = ACTIONS(4914), + [anon_sym_AT_LBRACK] = ACTIONS(4916), + [anon_sym_private] = ACTIONS(4914), + [anon_sym_module] = ACTIONS(4914), + [anon_sym_abstract] = ACTIONS(4914), + [anon_sym_class] = ACTIONS(4914), + [anon_sym_struct] = ACTIONS(4914), + [anon_sym_enum] = ACTIONS(4914), + [anon_sym_STAR] = ACTIONS(4916), + [anon_sym_BANG] = ACTIONS(4916), + [anon_sym_TILDE] = ACTIONS(4916), + [anon_sym_def] = ACTIONS(4914), + [anon_sym_protected] = ACTIONS(4914), + [anon_sym_include] = ACTIONS(4914), + [anon_sym_extend] = ACTIONS(4914), + [anon_sym_return] = ACTIONS(4914), + [anon_sym_next] = ACTIONS(4914), + [anon_sym_break] = ACTIONS(4914), + [anon_sym_with] = ACTIONS(4914), + [anon_sym_yield] = ACTIONS(4914), + [anon_sym_typeof] = ACTIONS(4914), + [anon_sym_sizeof] = ACTIONS(4914), + [anon_sym_instance_sizeof] = ACTIONS(4914), + [anon_sym_offsetof] = ACTIONS(4914), + [sym__constant_segment] = ACTIONS(4916), + [anon_sym_COLON_COLON] = ACTIONS(4916), + [anon_sym___LINE__] = ACTIONS(4914), + [anon_sym___END_LINE__] = ACTIONS(4914), + [anon_sym___FILE__] = ACTIONS(4914), + [anon_sym___DIR__] = ACTIONS(4914), + [sym_special_variable] = ACTIONS(4916), + [sym_identifier_method_call] = ACTIONS(4916), + [sym_instance_var] = ACTIONS(4916), + [sym_class_var] = ACTIONS(4916), + [sym_self] = ACTIONS(4914), + [anon_sym_alias] = ACTIONS(4914), + [anon_sym_begin] = ACTIONS(4914), + [anon_sym_while] = ACTIONS(4914), + [anon_sym_until] = ACTIONS(4914), + [anon_sym_else] = ACTIONS(4914), + [anon_sym_require] = ACTIONS(4914), + [anon_sym_case] = ACTIONS(4914), + [anon_sym_select] = ACTIONS(4914), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4916), + [sym__start_of_named_tuple] = ACTIONS(4916), + [sym_unary_plus] = ACTIONS(4916), + [sym_unary_minus] = ACTIONS(4916), + [sym_unary_wrapping_plus] = ACTIONS(4916), + [sym_unary_wrapping_minus] = ACTIONS(4916), + [sym__beginless_range_operator] = ACTIONS(4916), + [sym__regex_start] = ACTIONS(4916), + [sym__regular_if_keyword] = ACTIONS(4916), + [sym__regular_unless_keyword] = ACTIONS(4916), + [sym__regular_rescue_keyword] = ACTIONS(4916), + [sym__regular_ensure_keyword] = ACTIONS(4916), + [sym__string_literal_start] = ACTIONS(4916), + [sym__string_percent_literal_start] = ACTIONS(4916), + [sym__command_percent_literal_start] = ACTIONS(4916), + [sym__string_array_percent_literal_start] = ACTIONS(4916), + [sym__symbol_array_percent_literal_start] = ACTIONS(4916), + [sym__regex_percent_literal_start] = ACTIONS(4916), + [sym_heredoc_start] = ACTIONS(4916), [sym__heredoc_body_start] = ACTIONS(7), }, [2105] = { [sym_heredoc_body] = STATE(2105), - [sym_identifier] = ACTIONS(4773), - [anon_sym_SEMI] = ACTIONS(4771), - [anon_sym_LPAREN] = ACTIONS(4771), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4773), - [sym_true] = ACTIONS(4773), - [sym_false] = ACTIONS(4773), - [aux_sym_integer_token2] = ACTIONS(4773), - [aux_sym_float_token2] = ACTIONS(4771), - [anon_sym_SQUOTE] = ACTIONS(4771), - [sym_operator_symbol] = ACTIONS(4771), - [sym_unquoted_symbol] = ACTIONS(4771), - [anon_sym_COLON_DQUOTE] = ACTIONS(4771), - [anon_sym_BQUOTE] = ACTIONS(4771), - [anon_sym_LBRACK] = ACTIONS(4771), - [anon_sym_DASH_GT] = ACTIONS(4771), - [anon_sym_annotation] = ACTIONS(4773), - [anon_sym_end] = ACTIONS(4773), - [anon_sym_AT_LBRACK] = ACTIONS(4771), - [anon_sym_private] = ACTIONS(4773), - [anon_sym_module] = ACTIONS(4773), - [anon_sym_abstract] = ACTIONS(4773), - [anon_sym_class] = ACTIONS(4773), - [anon_sym_struct] = ACTIONS(4773), - [anon_sym_enum] = ACTIONS(4773), - [anon_sym_STAR] = ACTIONS(4771), - [anon_sym_BANG] = ACTIONS(4771), - [anon_sym_TILDE] = ACTIONS(4771), - [anon_sym_def] = ACTIONS(4773), - [anon_sym_protected] = ACTIONS(4773), - [anon_sym_include] = ACTIONS(4773), - [anon_sym_extend] = ACTIONS(4773), - [anon_sym_return] = ACTIONS(4773), - [anon_sym_next] = ACTIONS(4773), - [anon_sym_break] = ACTIONS(4773), - [anon_sym_with] = ACTIONS(4773), - [anon_sym_yield] = ACTIONS(4773), - [anon_sym_typeof] = ACTIONS(4773), - [anon_sym_sizeof] = ACTIONS(4773), - [anon_sym_instance_sizeof] = ACTIONS(4773), - [anon_sym_offsetof] = ACTIONS(4773), - [sym__constant_segment] = ACTIONS(4771), - [anon_sym_COLON_COLON] = ACTIONS(4771), - [anon_sym___LINE__] = ACTIONS(4773), - [anon_sym___END_LINE__] = ACTIONS(4773), - [anon_sym___FILE__] = ACTIONS(4773), - [anon_sym___DIR__] = ACTIONS(4773), - [sym_special_variable] = ACTIONS(4771), - [sym_identifier_method_call] = ACTIONS(4771), - [sym_instance_var] = ACTIONS(4771), - [sym_class_var] = ACTIONS(4771), - [sym_self] = ACTIONS(4773), - [anon_sym_alias] = ACTIONS(4773), - [anon_sym_begin] = ACTIONS(4773), - [anon_sym_while] = ACTIONS(4773), - [anon_sym_until] = ACTIONS(4773), - [anon_sym_else] = ACTIONS(4773), - [anon_sym_require] = ACTIONS(4773), - [anon_sym_case] = ACTIONS(4773), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4771), - [sym__start_of_named_tuple] = ACTIONS(4771), - [sym_unary_plus] = ACTIONS(4771), - [sym_unary_minus] = ACTIONS(4771), - [sym_unary_wrapping_plus] = ACTIONS(4771), - [sym_unary_wrapping_minus] = ACTIONS(4771), - [sym__beginless_range_operator] = ACTIONS(4771), - [sym__regex_start] = ACTIONS(4771), - [sym__regular_if_keyword] = ACTIONS(4771), - [sym__regular_unless_keyword] = ACTIONS(4771), - [sym__regular_rescue_keyword] = ACTIONS(4771), - [sym__regular_ensure_keyword] = ACTIONS(4771), - [sym__string_literal_start] = ACTIONS(4771), - [sym__string_percent_literal_start] = ACTIONS(4771), - [sym__command_percent_literal_start] = ACTIONS(4771), - [sym__string_array_percent_literal_start] = ACTIONS(4771), - [sym__symbol_array_percent_literal_start] = ACTIONS(4771), - [sym__regex_percent_literal_start] = ACTIONS(4771), - [sym_heredoc_start] = ACTIONS(4771), + [sym_identifier] = ACTIONS(4802), + [anon_sym_SEMI] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4800), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4802), + [sym_true] = ACTIONS(4802), + [sym_false] = ACTIONS(4802), + [aux_sym_integer_token2] = ACTIONS(4802), + [aux_sym_float_token2] = ACTIONS(4800), + [anon_sym_SQUOTE] = ACTIONS(4800), + [sym_operator_symbol] = ACTIONS(4800), + [sym_unquoted_symbol] = ACTIONS(4800), + [anon_sym_COLON_DQUOTE] = ACTIONS(4800), + [anon_sym_BQUOTE] = ACTIONS(4800), + [anon_sym_LBRACK] = ACTIONS(4800), + [anon_sym_DASH_GT] = ACTIONS(4800), + [anon_sym_annotation] = ACTIONS(4802), + [anon_sym_end] = ACTIONS(4802), + [anon_sym_AT_LBRACK] = ACTIONS(4800), + [anon_sym_private] = ACTIONS(4802), + [anon_sym_module] = ACTIONS(4802), + [anon_sym_abstract] = ACTIONS(4802), + [anon_sym_class] = ACTIONS(4802), + [anon_sym_struct] = ACTIONS(4802), + [anon_sym_enum] = ACTIONS(4802), + [anon_sym_STAR] = ACTIONS(4800), + [anon_sym_BANG] = ACTIONS(4800), + [anon_sym_TILDE] = ACTIONS(4800), + [anon_sym_def] = ACTIONS(4802), + [anon_sym_protected] = ACTIONS(4802), + [anon_sym_include] = ACTIONS(4802), + [anon_sym_extend] = ACTIONS(4802), + [anon_sym_return] = ACTIONS(4802), + [anon_sym_next] = ACTIONS(4802), + [anon_sym_break] = ACTIONS(4802), + [anon_sym_with] = ACTIONS(4802), + [anon_sym_yield] = ACTIONS(4802), + [anon_sym_typeof] = ACTIONS(4802), + [anon_sym_sizeof] = ACTIONS(4802), + [anon_sym_instance_sizeof] = ACTIONS(4802), + [anon_sym_offsetof] = ACTIONS(4802), + [sym__constant_segment] = ACTIONS(4800), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym___LINE__] = ACTIONS(4802), + [anon_sym___END_LINE__] = ACTIONS(4802), + [anon_sym___FILE__] = ACTIONS(4802), + [anon_sym___DIR__] = ACTIONS(4802), + [sym_special_variable] = ACTIONS(4800), + [sym_identifier_method_call] = ACTIONS(4800), + [sym_instance_var] = ACTIONS(4800), + [sym_class_var] = ACTIONS(4800), + [sym_self] = ACTIONS(4802), + [anon_sym_alias] = ACTIONS(4802), + [anon_sym_begin] = ACTIONS(4802), + [anon_sym_while] = ACTIONS(4802), + [anon_sym_until] = ACTIONS(4802), + [anon_sym_else] = ACTIONS(4802), + [anon_sym_require] = ACTIONS(4802), + [anon_sym_case] = ACTIONS(4802), + [anon_sym_select] = ACTIONS(4802), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4800), + [sym__start_of_named_tuple] = ACTIONS(4800), + [sym_unary_plus] = ACTIONS(4800), + [sym_unary_minus] = ACTIONS(4800), + [sym_unary_wrapping_plus] = ACTIONS(4800), + [sym_unary_wrapping_minus] = ACTIONS(4800), + [sym__beginless_range_operator] = ACTIONS(4800), + [sym__regex_start] = ACTIONS(4800), + [sym__regular_if_keyword] = ACTIONS(4800), + [sym__regular_unless_keyword] = ACTIONS(4800), + [sym__regular_rescue_keyword] = ACTIONS(4800), + [sym__regular_ensure_keyword] = ACTIONS(4800), + [sym__string_literal_start] = ACTIONS(4800), + [sym__string_percent_literal_start] = ACTIONS(4800), + [sym__command_percent_literal_start] = ACTIONS(4800), + [sym__string_array_percent_literal_start] = ACTIONS(4800), + [sym__symbol_array_percent_literal_start] = ACTIONS(4800), + [sym__regex_percent_literal_start] = ACTIONS(4800), + [sym_heredoc_start] = ACTIONS(4800), [sym__heredoc_body_start] = ACTIONS(7), }, [2106] = { [sym_heredoc_body] = STATE(2106), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1836), - [sym_true] = ACTIONS(1836), - [sym_false] = ACTIONS(1836), - [aux_sym_integer_token2] = ACTIONS(1836), - [aux_sym_float_token2] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [sym_operator_symbol] = ACTIONS(1795), - [sym_unquoted_symbol] = ACTIONS(1795), - [anon_sym_COLON_DQUOTE] = ACTIONS(1795), - [anon_sym_BQUOTE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_DASH_GT] = ACTIONS(1795), - [anon_sym_annotation] = ACTIONS(1836), - [anon_sym_end] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_abstract] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_protected] = ACTIONS(1836), - [anon_sym_include] = ACTIONS(1836), - [anon_sym_extend] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_next] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_with] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1836), - [anon_sym_instance_sizeof] = ACTIONS(1836), - [anon_sym_offsetof] = ACTIONS(1836), - [sym__constant_segment] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym___LINE__] = ACTIONS(1836), - [anon_sym___END_LINE__] = ACTIONS(1836), - [anon_sym___FILE__] = ACTIONS(1836), - [anon_sym___DIR__] = ACTIONS(1836), - [sym_special_variable] = ACTIONS(1795), - [sym_identifier_method_call] = ACTIONS(1795), - [sym_instance_var] = ACTIONS(1795), - [sym_class_var] = ACTIONS(1795), - [sym_self] = ACTIONS(1836), - [anon_sym_alias] = ACTIONS(1836), - [anon_sym_begin] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_until] = ACTIONS(1836), - [anon_sym_else] = ACTIONS(1836), - [anon_sym_require] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1836), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1795), - [sym__start_of_named_tuple] = ACTIONS(1795), - [sym_unary_plus] = ACTIONS(1795), - [sym_unary_minus] = ACTIONS(1795), - [sym_unary_wrapping_plus] = ACTIONS(1795), - [sym_unary_wrapping_minus] = ACTIONS(1795), - [sym__beginless_range_operator] = ACTIONS(1795), - [sym__regex_start] = ACTIONS(1795), - [sym__regular_if_keyword] = ACTIONS(1795), - [sym__regular_unless_keyword] = ACTIONS(1795), - [sym__regular_rescue_keyword] = ACTIONS(1795), - [sym__regular_ensure_keyword] = ACTIONS(1795), - [sym__string_literal_start] = ACTIONS(1795), - [sym__string_percent_literal_start] = ACTIONS(1795), - [sym__command_percent_literal_start] = ACTIONS(1795), - [sym__string_array_percent_literal_start] = ACTIONS(1795), - [sym__symbol_array_percent_literal_start] = ACTIONS(1795), - [sym__regex_percent_literal_start] = ACTIONS(1795), - [sym_heredoc_start] = ACTIONS(1795), + [sym_identifier] = ACTIONS(4918), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4918), + [sym_true] = ACTIONS(4918), + [sym_false] = ACTIONS(4918), + [aux_sym_integer_token2] = ACTIONS(4918), + [aux_sym_float_token2] = ACTIONS(4920), + [anon_sym_SQUOTE] = ACTIONS(4920), + [sym_operator_symbol] = ACTIONS(4920), + [sym_unquoted_symbol] = ACTIONS(4920), + [anon_sym_COLON_DQUOTE] = ACTIONS(4920), + [anon_sym_BQUOTE] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_DASH_GT] = ACTIONS(4920), + [anon_sym_annotation] = ACTIONS(4918), + [anon_sym_end] = ACTIONS(4918), + [anon_sym_AT_LBRACK] = ACTIONS(4920), + [anon_sym_private] = ACTIONS(4918), + [anon_sym_module] = ACTIONS(4918), + [anon_sym_abstract] = ACTIONS(4918), + [anon_sym_class] = ACTIONS(4918), + [anon_sym_struct] = ACTIONS(4918), + [anon_sym_enum] = ACTIONS(4918), + [anon_sym_STAR] = ACTIONS(4920), + [anon_sym_BANG] = ACTIONS(4920), + [anon_sym_TILDE] = ACTIONS(4920), + [anon_sym_def] = ACTIONS(4918), + [anon_sym_protected] = ACTIONS(4918), + [anon_sym_include] = ACTIONS(4918), + [anon_sym_extend] = ACTIONS(4918), + [anon_sym_return] = ACTIONS(4918), + [anon_sym_next] = ACTIONS(4918), + [anon_sym_break] = ACTIONS(4918), + [anon_sym_with] = ACTIONS(4918), + [anon_sym_yield] = ACTIONS(4918), + [anon_sym_typeof] = ACTIONS(4918), + [anon_sym_sizeof] = ACTIONS(4918), + [anon_sym_instance_sizeof] = ACTIONS(4918), + [anon_sym_offsetof] = ACTIONS(4918), + [sym__constant_segment] = ACTIONS(4920), + [anon_sym_COLON_COLON] = ACTIONS(4920), + [anon_sym___LINE__] = ACTIONS(4918), + [anon_sym___END_LINE__] = ACTIONS(4918), + [anon_sym___FILE__] = ACTIONS(4918), + [anon_sym___DIR__] = ACTIONS(4918), + [sym_special_variable] = ACTIONS(4920), + [sym_identifier_method_call] = ACTIONS(4920), + [sym_instance_var] = ACTIONS(4920), + [sym_class_var] = ACTIONS(4920), + [sym_self] = ACTIONS(4918), + [anon_sym_alias] = ACTIONS(4918), + [anon_sym_begin] = ACTIONS(4918), + [anon_sym_while] = ACTIONS(4918), + [anon_sym_until] = ACTIONS(4918), + [anon_sym_else] = ACTIONS(4918), + [anon_sym_require] = ACTIONS(4918), + [anon_sym_case] = ACTIONS(4918), + [anon_sym_select] = ACTIONS(4918), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4920), + [sym__start_of_named_tuple] = ACTIONS(4920), + [sym_unary_plus] = ACTIONS(4920), + [sym_unary_minus] = ACTIONS(4920), + [sym_unary_wrapping_plus] = ACTIONS(4920), + [sym_unary_wrapping_minus] = ACTIONS(4920), + [sym__beginless_range_operator] = ACTIONS(4920), + [sym__regex_start] = ACTIONS(4920), + [sym__regular_if_keyword] = ACTIONS(4920), + [sym__regular_unless_keyword] = ACTIONS(4920), + [sym__regular_rescue_keyword] = ACTIONS(4920), + [sym__regular_ensure_keyword] = ACTIONS(4920), + [sym__string_literal_start] = ACTIONS(4920), + [sym__string_percent_literal_start] = ACTIONS(4920), + [sym__command_percent_literal_start] = ACTIONS(4920), + [sym__string_array_percent_literal_start] = ACTIONS(4920), + [sym__symbol_array_percent_literal_start] = ACTIONS(4920), + [sym__regex_percent_literal_start] = ACTIONS(4920), + [sym_heredoc_start] = ACTIONS(4920), [sym__heredoc_body_start] = ACTIONS(7), }, [2107] = { [sym_heredoc_body] = STATE(2107), - [sym_identifier] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4887), - [anon_sym_LPAREN] = ACTIONS(4887), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4885), - [sym_true] = ACTIONS(4885), - [sym_false] = ACTIONS(4885), - [aux_sym_integer_token2] = ACTIONS(4885), - [aux_sym_float_token2] = ACTIONS(4887), - [anon_sym_SQUOTE] = ACTIONS(4887), - [sym_operator_symbol] = ACTIONS(4887), - [sym_unquoted_symbol] = ACTIONS(4887), - [anon_sym_COLON_DQUOTE] = ACTIONS(4887), - [anon_sym_BQUOTE] = ACTIONS(4887), - [anon_sym_LBRACK] = ACTIONS(4887), - [anon_sym_DASH_GT] = ACTIONS(4887), - [anon_sym_annotation] = ACTIONS(4885), - [anon_sym_end] = ACTIONS(4885), - [anon_sym_AT_LBRACK] = ACTIONS(4887), - [anon_sym_private] = ACTIONS(4885), - [anon_sym_module] = ACTIONS(4885), - [anon_sym_abstract] = ACTIONS(4885), - [anon_sym_class] = ACTIONS(4885), - [anon_sym_struct] = ACTIONS(4885), - [anon_sym_enum] = ACTIONS(4885), - [anon_sym_STAR] = ACTIONS(4887), - [anon_sym_BANG] = ACTIONS(4887), - [anon_sym_TILDE] = ACTIONS(4887), - [anon_sym_def] = ACTIONS(4885), - [anon_sym_protected] = ACTIONS(4885), - [anon_sym_include] = ACTIONS(4885), - [anon_sym_extend] = ACTIONS(4885), - [anon_sym_return] = ACTIONS(4885), - [anon_sym_next] = ACTIONS(4885), - [anon_sym_break] = ACTIONS(4885), - [anon_sym_with] = ACTIONS(4885), - [anon_sym_yield] = ACTIONS(4885), - [anon_sym_typeof] = ACTIONS(4885), - [anon_sym_sizeof] = ACTIONS(4885), - [anon_sym_instance_sizeof] = ACTIONS(4885), - [anon_sym_offsetof] = ACTIONS(4885), - [sym__constant_segment] = ACTIONS(4887), - [anon_sym_COLON_COLON] = ACTIONS(4887), - [anon_sym___LINE__] = ACTIONS(4885), - [anon_sym___END_LINE__] = ACTIONS(4885), - [anon_sym___FILE__] = ACTIONS(4885), - [anon_sym___DIR__] = ACTIONS(4885), - [sym_special_variable] = ACTIONS(4887), - [sym_identifier_method_call] = ACTIONS(4887), - [sym_instance_var] = ACTIONS(4887), - [sym_class_var] = ACTIONS(4887), - [sym_self] = ACTIONS(4885), - [anon_sym_alias] = ACTIONS(4885), - [anon_sym_begin] = ACTIONS(4885), - [anon_sym_while] = ACTIONS(4885), - [anon_sym_until] = ACTIONS(4885), - [anon_sym_else] = ACTIONS(4885), - [anon_sym_require] = ACTIONS(4885), - [anon_sym_case] = ACTIONS(4885), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4887), - [sym__start_of_named_tuple] = ACTIONS(4887), - [sym_unary_plus] = ACTIONS(4887), - [sym_unary_minus] = ACTIONS(4887), - [sym_unary_wrapping_plus] = ACTIONS(4887), - [sym_unary_wrapping_minus] = ACTIONS(4887), - [sym__beginless_range_operator] = ACTIONS(4887), - [sym__regex_start] = ACTIONS(4887), - [sym__regular_if_keyword] = ACTIONS(4887), - [sym__regular_unless_keyword] = ACTIONS(4887), - [sym__regular_rescue_keyword] = ACTIONS(4887), - [sym__regular_ensure_keyword] = ACTIONS(4887), - [sym__string_literal_start] = ACTIONS(4887), - [sym__string_percent_literal_start] = ACTIONS(4887), - [sym__command_percent_literal_start] = ACTIONS(4887), - [sym__string_array_percent_literal_start] = ACTIONS(4887), - [sym__symbol_array_percent_literal_start] = ACTIONS(4887), - [sym__regex_percent_literal_start] = ACTIONS(4887), - [sym_heredoc_start] = ACTIONS(4887), + [sym_identifier] = ACTIONS(4922), + [anon_sym_SEMI] = ACTIONS(4924), + [anon_sym_LPAREN] = ACTIONS(4924), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4922), + [sym_true] = ACTIONS(4922), + [sym_false] = ACTIONS(4922), + [aux_sym_integer_token2] = ACTIONS(4922), + [aux_sym_float_token2] = ACTIONS(4924), + [anon_sym_SQUOTE] = ACTIONS(4924), + [sym_operator_symbol] = ACTIONS(4924), + [sym_unquoted_symbol] = ACTIONS(4924), + [anon_sym_COLON_DQUOTE] = ACTIONS(4924), + [anon_sym_BQUOTE] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(4924), + [anon_sym_DASH_GT] = ACTIONS(4924), + [anon_sym_annotation] = ACTIONS(4922), + [anon_sym_end] = ACTIONS(4922), + [anon_sym_AT_LBRACK] = ACTIONS(4924), + [anon_sym_private] = ACTIONS(4922), + [anon_sym_module] = ACTIONS(4922), + [anon_sym_abstract] = ACTIONS(4922), + [anon_sym_class] = ACTIONS(4922), + [anon_sym_struct] = ACTIONS(4922), + [anon_sym_enum] = ACTIONS(4922), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_BANG] = ACTIONS(4924), + [anon_sym_TILDE] = ACTIONS(4924), + [anon_sym_def] = ACTIONS(4922), + [anon_sym_protected] = ACTIONS(4922), + [anon_sym_include] = ACTIONS(4922), + [anon_sym_extend] = ACTIONS(4922), + [anon_sym_return] = ACTIONS(4922), + [anon_sym_next] = ACTIONS(4922), + [anon_sym_break] = ACTIONS(4922), + [anon_sym_with] = ACTIONS(4922), + [anon_sym_yield] = ACTIONS(4922), + [anon_sym_typeof] = ACTIONS(4922), + [anon_sym_sizeof] = ACTIONS(4922), + [anon_sym_instance_sizeof] = ACTIONS(4922), + [anon_sym_offsetof] = ACTIONS(4922), + [sym__constant_segment] = ACTIONS(4924), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym___LINE__] = ACTIONS(4922), + [anon_sym___END_LINE__] = ACTIONS(4922), + [anon_sym___FILE__] = ACTIONS(4922), + [anon_sym___DIR__] = ACTIONS(4922), + [sym_special_variable] = ACTIONS(4924), + [sym_identifier_method_call] = ACTIONS(4924), + [sym_instance_var] = ACTIONS(4924), + [sym_class_var] = ACTIONS(4924), + [sym_self] = ACTIONS(4922), + [anon_sym_alias] = ACTIONS(4922), + [anon_sym_begin] = ACTIONS(4922), + [anon_sym_while] = ACTIONS(4922), + [anon_sym_until] = ACTIONS(4922), + [anon_sym_else] = ACTIONS(4922), + [anon_sym_require] = ACTIONS(4922), + [anon_sym_case] = ACTIONS(4922), + [anon_sym_select] = ACTIONS(4922), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4924), + [sym__start_of_named_tuple] = ACTIONS(4924), + [sym_unary_plus] = ACTIONS(4924), + [sym_unary_minus] = ACTIONS(4924), + [sym_unary_wrapping_plus] = ACTIONS(4924), + [sym_unary_wrapping_minus] = ACTIONS(4924), + [sym__beginless_range_operator] = ACTIONS(4924), + [sym__regex_start] = ACTIONS(4924), + [sym__regular_if_keyword] = ACTIONS(4924), + [sym__regular_unless_keyword] = ACTIONS(4924), + [sym__regular_rescue_keyword] = ACTIONS(4924), + [sym__regular_ensure_keyword] = ACTIONS(4924), + [sym__string_literal_start] = ACTIONS(4924), + [sym__string_percent_literal_start] = ACTIONS(4924), + [sym__command_percent_literal_start] = ACTIONS(4924), + [sym__string_array_percent_literal_start] = ACTIONS(4924), + [sym__symbol_array_percent_literal_start] = ACTIONS(4924), + [sym__regex_percent_literal_start] = ACTIONS(4924), + [sym_heredoc_start] = ACTIONS(4924), [sym__heredoc_body_start] = ACTIONS(7), }, [2108] = { [sym_heredoc_body] = STATE(2108), - [sym_identifier] = ACTIONS(4889), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LPAREN] = ACTIONS(4891), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4889), - [sym_true] = ACTIONS(4889), - [sym_false] = ACTIONS(4889), - [aux_sym_integer_token2] = ACTIONS(4889), - [aux_sym_float_token2] = ACTIONS(4891), - [anon_sym_SQUOTE] = ACTIONS(4891), - [sym_operator_symbol] = ACTIONS(4891), - [sym_unquoted_symbol] = ACTIONS(4891), - [anon_sym_COLON_DQUOTE] = ACTIONS(4891), - [anon_sym_BQUOTE] = ACTIONS(4891), - [anon_sym_LBRACK] = ACTIONS(4891), - [anon_sym_DASH_GT] = ACTIONS(4891), - [anon_sym_annotation] = ACTIONS(4889), - [anon_sym_end] = ACTIONS(4889), - [anon_sym_AT_LBRACK] = ACTIONS(4891), - [anon_sym_private] = ACTIONS(4889), - [anon_sym_module] = ACTIONS(4889), - [anon_sym_abstract] = ACTIONS(4889), - [anon_sym_class] = ACTIONS(4889), - [anon_sym_struct] = ACTIONS(4889), - [anon_sym_enum] = ACTIONS(4889), - [anon_sym_STAR] = ACTIONS(4891), - [anon_sym_BANG] = ACTIONS(4891), - [anon_sym_TILDE] = ACTIONS(4891), - [anon_sym_def] = ACTIONS(4889), - [anon_sym_protected] = ACTIONS(4889), - [anon_sym_include] = ACTIONS(4889), - [anon_sym_extend] = ACTIONS(4889), - [anon_sym_return] = ACTIONS(4889), - [anon_sym_next] = ACTIONS(4889), - [anon_sym_break] = ACTIONS(4889), - [anon_sym_with] = ACTIONS(4889), - [anon_sym_yield] = ACTIONS(4889), - [anon_sym_typeof] = ACTIONS(4889), - [anon_sym_sizeof] = ACTIONS(4889), - [anon_sym_instance_sizeof] = ACTIONS(4889), - [anon_sym_offsetof] = ACTIONS(4889), - [sym__constant_segment] = ACTIONS(4891), - [anon_sym_COLON_COLON] = ACTIONS(4891), - [anon_sym___LINE__] = ACTIONS(4889), - [anon_sym___END_LINE__] = ACTIONS(4889), - [anon_sym___FILE__] = ACTIONS(4889), - [anon_sym___DIR__] = ACTIONS(4889), - [sym_special_variable] = ACTIONS(4891), - [sym_identifier_method_call] = ACTIONS(4891), - [sym_instance_var] = ACTIONS(4891), - [sym_class_var] = ACTIONS(4891), - [sym_self] = ACTIONS(4889), - [anon_sym_alias] = ACTIONS(4889), - [anon_sym_begin] = ACTIONS(4889), - [anon_sym_while] = ACTIONS(4889), - [anon_sym_until] = ACTIONS(4889), - [anon_sym_else] = ACTIONS(4889), - [anon_sym_require] = ACTIONS(4889), - [anon_sym_case] = ACTIONS(4889), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4891), - [sym__start_of_named_tuple] = ACTIONS(4891), - [sym_unary_plus] = ACTIONS(4891), - [sym_unary_minus] = ACTIONS(4891), - [sym_unary_wrapping_plus] = ACTIONS(4891), - [sym_unary_wrapping_minus] = ACTIONS(4891), - [sym__beginless_range_operator] = ACTIONS(4891), - [sym__regex_start] = ACTIONS(4891), - [sym__regular_if_keyword] = ACTIONS(4891), - [sym__regular_unless_keyword] = ACTIONS(4891), - [sym__regular_rescue_keyword] = ACTIONS(4891), - [sym__regular_ensure_keyword] = ACTIONS(4891), - [sym__string_literal_start] = ACTIONS(4891), - [sym__string_percent_literal_start] = ACTIONS(4891), - [sym__command_percent_literal_start] = ACTIONS(4891), - [sym__string_array_percent_literal_start] = ACTIONS(4891), - [sym__symbol_array_percent_literal_start] = ACTIONS(4891), - [sym__regex_percent_literal_start] = ACTIONS(4891), - [sym_heredoc_start] = ACTIONS(4891), + [sym_identifier] = ACTIONS(4926), + [anon_sym_SEMI] = ACTIONS(4928), + [anon_sym_LPAREN] = ACTIONS(4928), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4926), + [sym_true] = ACTIONS(4926), + [sym_false] = ACTIONS(4926), + [aux_sym_integer_token2] = ACTIONS(4926), + [aux_sym_float_token2] = ACTIONS(4928), + [anon_sym_SQUOTE] = ACTIONS(4928), + [sym_operator_symbol] = ACTIONS(4928), + [sym_unquoted_symbol] = ACTIONS(4928), + [anon_sym_COLON_DQUOTE] = ACTIONS(4928), + [anon_sym_BQUOTE] = ACTIONS(4928), + [anon_sym_LBRACK] = ACTIONS(4928), + [anon_sym_DASH_GT] = ACTIONS(4928), + [anon_sym_annotation] = ACTIONS(4926), + [anon_sym_end] = ACTIONS(4926), + [anon_sym_AT_LBRACK] = ACTIONS(4928), + [anon_sym_private] = ACTIONS(4926), + [anon_sym_module] = ACTIONS(4926), + [anon_sym_abstract] = ACTIONS(4926), + [anon_sym_class] = ACTIONS(4926), + [anon_sym_struct] = ACTIONS(4926), + [anon_sym_enum] = ACTIONS(4926), + [anon_sym_STAR] = ACTIONS(4928), + [anon_sym_BANG] = ACTIONS(4928), + [anon_sym_TILDE] = ACTIONS(4928), + [anon_sym_def] = ACTIONS(4926), + [anon_sym_protected] = ACTIONS(4926), + [anon_sym_include] = ACTIONS(4926), + [anon_sym_extend] = ACTIONS(4926), + [anon_sym_return] = ACTIONS(4926), + [anon_sym_next] = ACTIONS(4926), + [anon_sym_break] = ACTIONS(4926), + [anon_sym_with] = ACTIONS(4926), + [anon_sym_yield] = ACTIONS(4926), + [anon_sym_typeof] = ACTIONS(4926), + [anon_sym_sizeof] = ACTIONS(4926), + [anon_sym_instance_sizeof] = ACTIONS(4926), + [anon_sym_offsetof] = ACTIONS(4926), + [sym__constant_segment] = ACTIONS(4928), + [anon_sym_COLON_COLON] = ACTIONS(4928), + [anon_sym___LINE__] = ACTIONS(4926), + [anon_sym___END_LINE__] = ACTIONS(4926), + [anon_sym___FILE__] = ACTIONS(4926), + [anon_sym___DIR__] = ACTIONS(4926), + [sym_special_variable] = ACTIONS(4928), + [sym_identifier_method_call] = ACTIONS(4928), + [sym_instance_var] = ACTIONS(4928), + [sym_class_var] = ACTIONS(4928), + [sym_self] = ACTIONS(4926), + [anon_sym_alias] = ACTIONS(4926), + [anon_sym_begin] = ACTIONS(4926), + [anon_sym_while] = ACTIONS(4926), + [anon_sym_until] = ACTIONS(4926), + [anon_sym_else] = ACTIONS(4926), + [anon_sym_require] = ACTIONS(4926), + [anon_sym_case] = ACTIONS(4926), + [anon_sym_select] = ACTIONS(4926), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4928), + [sym__start_of_named_tuple] = ACTIONS(4928), + [sym_unary_plus] = ACTIONS(4928), + [sym_unary_minus] = ACTIONS(4928), + [sym_unary_wrapping_plus] = ACTIONS(4928), + [sym_unary_wrapping_minus] = ACTIONS(4928), + [sym__beginless_range_operator] = ACTIONS(4928), + [sym__regex_start] = ACTIONS(4928), + [sym__regular_if_keyword] = ACTIONS(4928), + [sym__regular_unless_keyword] = ACTIONS(4928), + [sym__regular_rescue_keyword] = ACTIONS(4928), + [sym__regular_ensure_keyword] = ACTIONS(4928), + [sym__string_literal_start] = ACTIONS(4928), + [sym__string_percent_literal_start] = ACTIONS(4928), + [sym__command_percent_literal_start] = ACTIONS(4928), + [sym__string_array_percent_literal_start] = ACTIONS(4928), + [sym__symbol_array_percent_literal_start] = ACTIONS(4928), + [sym__regex_percent_literal_start] = ACTIONS(4928), + [sym_heredoc_start] = ACTIONS(4928), [sym__heredoc_body_start] = ACTIONS(7), }, [2109] = { [sym_heredoc_body] = STATE(2109), - [sym_identifier] = ACTIONS(4773), - [anon_sym_SEMI] = ACTIONS(4771), - [anon_sym_LPAREN] = ACTIONS(4771), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4773), - [sym_true] = ACTIONS(4773), - [sym_false] = ACTIONS(4773), - [aux_sym_integer_token2] = ACTIONS(4773), - [aux_sym_float_token2] = ACTIONS(4771), - [anon_sym_SQUOTE] = ACTIONS(4771), - [sym_operator_symbol] = ACTIONS(4771), - [sym_unquoted_symbol] = ACTIONS(4771), - [anon_sym_COLON_DQUOTE] = ACTIONS(4771), - [anon_sym_BQUOTE] = ACTIONS(4771), - [anon_sym_LBRACK] = ACTIONS(4771), - [anon_sym_DASH_GT] = ACTIONS(4771), - [anon_sym_annotation] = ACTIONS(4773), - [anon_sym_end] = ACTIONS(4773), - [anon_sym_AT_LBRACK] = ACTIONS(4771), - [anon_sym_private] = ACTIONS(4773), - [anon_sym_module] = ACTIONS(4773), - [anon_sym_abstract] = ACTIONS(4773), - [anon_sym_class] = ACTIONS(4773), - [anon_sym_struct] = ACTIONS(4773), - [anon_sym_enum] = ACTIONS(4773), - [anon_sym_STAR] = ACTIONS(4771), - [anon_sym_BANG] = ACTIONS(4771), - [anon_sym_TILDE] = ACTIONS(4771), - [anon_sym_def] = ACTIONS(4773), - [anon_sym_protected] = ACTIONS(4773), - [anon_sym_include] = ACTIONS(4773), - [anon_sym_extend] = ACTIONS(4773), - [anon_sym_return] = ACTIONS(4773), - [anon_sym_next] = ACTIONS(4773), - [anon_sym_break] = ACTIONS(4773), - [anon_sym_with] = ACTIONS(4773), - [anon_sym_yield] = ACTIONS(4773), - [anon_sym_typeof] = ACTIONS(4773), - [anon_sym_sizeof] = ACTIONS(4773), - [anon_sym_instance_sizeof] = ACTIONS(4773), - [anon_sym_offsetof] = ACTIONS(4773), - [sym__constant_segment] = ACTIONS(4771), - [anon_sym_COLON_COLON] = ACTIONS(4771), - [anon_sym___LINE__] = ACTIONS(4773), - [anon_sym___END_LINE__] = ACTIONS(4773), - [anon_sym___FILE__] = ACTIONS(4773), - [anon_sym___DIR__] = ACTIONS(4773), - [sym_special_variable] = ACTIONS(4771), - [sym_identifier_method_call] = ACTIONS(4771), - [sym_instance_var] = ACTIONS(4771), - [sym_class_var] = ACTIONS(4771), - [sym_self] = ACTIONS(4773), - [anon_sym_alias] = ACTIONS(4773), - [anon_sym_begin] = ACTIONS(4773), - [anon_sym_while] = ACTIONS(4773), - [anon_sym_until] = ACTIONS(4773), - [anon_sym_else] = ACTIONS(4773), - [anon_sym_require] = ACTIONS(4773), - [anon_sym_case] = ACTIONS(4773), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4771), - [sym__start_of_named_tuple] = ACTIONS(4771), - [sym_unary_plus] = ACTIONS(4771), - [sym_unary_minus] = ACTIONS(4771), - [sym_unary_wrapping_plus] = ACTIONS(4771), - [sym_unary_wrapping_minus] = ACTIONS(4771), - [sym__beginless_range_operator] = ACTIONS(4771), - [sym__regex_start] = ACTIONS(4771), - [sym__regular_if_keyword] = ACTIONS(4771), - [sym__regular_unless_keyword] = ACTIONS(4771), - [sym__regular_rescue_keyword] = ACTIONS(4771), - [sym__regular_ensure_keyword] = ACTIONS(4771), - [sym__string_literal_start] = ACTIONS(4771), - [sym__string_percent_literal_start] = ACTIONS(4771), - [sym__command_percent_literal_start] = ACTIONS(4771), - [sym__string_array_percent_literal_start] = ACTIONS(4771), - [sym__symbol_array_percent_literal_start] = ACTIONS(4771), - [sym__regex_percent_literal_start] = ACTIONS(4771), - [sym_heredoc_start] = ACTIONS(4771), + [sym_identifier] = ACTIONS(4930), + [anon_sym_SEMI] = ACTIONS(4932), + [anon_sym_LPAREN] = ACTIONS(4932), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4930), + [sym_true] = ACTIONS(4930), + [sym_false] = ACTIONS(4930), + [aux_sym_integer_token2] = ACTIONS(4930), + [aux_sym_float_token2] = ACTIONS(4932), + [anon_sym_SQUOTE] = ACTIONS(4932), + [sym_operator_symbol] = ACTIONS(4932), + [sym_unquoted_symbol] = ACTIONS(4932), + [anon_sym_COLON_DQUOTE] = ACTIONS(4932), + [anon_sym_BQUOTE] = ACTIONS(4932), + [anon_sym_LBRACK] = ACTIONS(4932), + [anon_sym_DASH_GT] = ACTIONS(4932), + [anon_sym_annotation] = ACTIONS(4930), + [anon_sym_end] = ACTIONS(4930), + [anon_sym_AT_LBRACK] = ACTIONS(4932), + [anon_sym_private] = ACTIONS(4930), + [anon_sym_module] = ACTIONS(4930), + [anon_sym_abstract] = ACTIONS(4930), + [anon_sym_class] = ACTIONS(4930), + [anon_sym_struct] = ACTIONS(4930), + [anon_sym_enum] = ACTIONS(4930), + [anon_sym_STAR] = ACTIONS(4932), + [anon_sym_BANG] = ACTIONS(4932), + [anon_sym_TILDE] = ACTIONS(4932), + [anon_sym_def] = ACTIONS(4930), + [anon_sym_protected] = ACTIONS(4930), + [anon_sym_include] = ACTIONS(4930), + [anon_sym_extend] = ACTIONS(4930), + [anon_sym_return] = ACTIONS(4930), + [anon_sym_next] = ACTIONS(4930), + [anon_sym_break] = ACTIONS(4930), + [anon_sym_with] = ACTIONS(4930), + [anon_sym_yield] = ACTIONS(4930), + [anon_sym_typeof] = ACTIONS(4930), + [anon_sym_sizeof] = ACTIONS(4930), + [anon_sym_instance_sizeof] = ACTIONS(4930), + [anon_sym_offsetof] = ACTIONS(4930), + [sym__constant_segment] = ACTIONS(4932), + [anon_sym_COLON_COLON] = ACTIONS(4932), + [anon_sym___LINE__] = ACTIONS(4930), + [anon_sym___END_LINE__] = ACTIONS(4930), + [anon_sym___FILE__] = ACTIONS(4930), + [anon_sym___DIR__] = ACTIONS(4930), + [sym_special_variable] = ACTIONS(4932), + [sym_identifier_method_call] = ACTIONS(4932), + [sym_instance_var] = ACTIONS(4932), + [sym_class_var] = ACTIONS(4932), + [sym_self] = ACTIONS(4930), + [anon_sym_alias] = ACTIONS(4930), + [anon_sym_begin] = ACTIONS(4930), + [anon_sym_while] = ACTIONS(4930), + [anon_sym_until] = ACTIONS(4930), + [anon_sym_else] = ACTIONS(4930), + [anon_sym_require] = ACTIONS(4930), + [anon_sym_case] = ACTIONS(4930), + [anon_sym_select] = ACTIONS(4930), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4932), + [sym__start_of_named_tuple] = ACTIONS(4932), + [sym_unary_plus] = ACTIONS(4932), + [sym_unary_minus] = ACTIONS(4932), + [sym_unary_wrapping_plus] = ACTIONS(4932), + [sym_unary_wrapping_minus] = ACTIONS(4932), + [sym__beginless_range_operator] = ACTIONS(4932), + [sym__regex_start] = ACTIONS(4932), + [sym__regular_if_keyword] = ACTIONS(4932), + [sym__regular_unless_keyword] = ACTIONS(4932), + [sym__regular_rescue_keyword] = ACTIONS(4932), + [sym__regular_ensure_keyword] = ACTIONS(4932), + [sym__string_literal_start] = ACTIONS(4932), + [sym__string_percent_literal_start] = ACTIONS(4932), + [sym__command_percent_literal_start] = ACTIONS(4932), + [sym__string_array_percent_literal_start] = ACTIONS(4932), + [sym__symbol_array_percent_literal_start] = ACTIONS(4932), + [sym__regex_percent_literal_start] = ACTIONS(4932), + [sym_heredoc_start] = ACTIONS(4932), [sym__heredoc_body_start] = ACTIONS(7), }, [2110] = { [sym_heredoc_body] = STATE(2110), - [sym_identifier] = ACTIONS(4893), - [anon_sym_SEMI] = ACTIONS(4895), - [anon_sym_LPAREN] = ACTIONS(4895), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4893), - [sym_true] = ACTIONS(4893), - [sym_false] = ACTIONS(4893), - [aux_sym_integer_token2] = ACTIONS(4893), - [aux_sym_float_token2] = ACTIONS(4895), - [anon_sym_SQUOTE] = ACTIONS(4895), - [sym_operator_symbol] = ACTIONS(4895), - [sym_unquoted_symbol] = ACTIONS(4895), - [anon_sym_COLON_DQUOTE] = ACTIONS(4895), - [anon_sym_BQUOTE] = ACTIONS(4895), - [anon_sym_LBRACK] = ACTIONS(4895), - [anon_sym_DASH_GT] = ACTIONS(4895), - [anon_sym_annotation] = ACTIONS(4893), - [anon_sym_end] = ACTIONS(4893), - [anon_sym_AT_LBRACK] = ACTIONS(4895), - [anon_sym_private] = ACTIONS(4893), - [anon_sym_module] = ACTIONS(4893), - [anon_sym_abstract] = ACTIONS(4893), - [anon_sym_class] = ACTIONS(4893), - [anon_sym_struct] = ACTIONS(4893), - [anon_sym_enum] = ACTIONS(4893), - [anon_sym_STAR] = ACTIONS(4895), - [anon_sym_BANG] = ACTIONS(4895), - [anon_sym_TILDE] = ACTIONS(4895), - [anon_sym_def] = ACTIONS(4893), - [anon_sym_protected] = ACTIONS(4893), - [anon_sym_include] = ACTIONS(4893), - [anon_sym_extend] = ACTIONS(4893), - [anon_sym_return] = ACTIONS(4893), - [anon_sym_next] = ACTIONS(4893), - [anon_sym_break] = ACTIONS(4893), - [anon_sym_with] = ACTIONS(4893), - [anon_sym_yield] = ACTIONS(4893), - [anon_sym_typeof] = ACTIONS(4893), - [anon_sym_sizeof] = ACTIONS(4893), - [anon_sym_instance_sizeof] = ACTIONS(4893), - [anon_sym_offsetof] = ACTIONS(4893), - [sym__constant_segment] = ACTIONS(4895), - [anon_sym_COLON_COLON] = ACTIONS(4895), - [anon_sym___LINE__] = ACTIONS(4893), - [anon_sym___END_LINE__] = ACTIONS(4893), - [anon_sym___FILE__] = ACTIONS(4893), - [anon_sym___DIR__] = ACTIONS(4893), - [sym_special_variable] = ACTIONS(4895), - [sym_identifier_method_call] = ACTIONS(4895), - [sym_instance_var] = ACTIONS(4895), - [sym_class_var] = ACTIONS(4895), - [sym_self] = ACTIONS(4893), - [anon_sym_alias] = ACTIONS(4893), - [anon_sym_begin] = ACTIONS(4893), - [anon_sym_while] = ACTIONS(4893), - [anon_sym_until] = ACTIONS(4893), - [anon_sym_else] = ACTIONS(4893), - [anon_sym_require] = ACTIONS(4893), - [anon_sym_case] = ACTIONS(4893), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4895), - [sym__start_of_named_tuple] = ACTIONS(4895), - [sym_unary_plus] = ACTIONS(4895), - [sym_unary_minus] = ACTIONS(4895), - [sym_unary_wrapping_plus] = ACTIONS(4895), - [sym_unary_wrapping_minus] = ACTIONS(4895), - [sym__beginless_range_operator] = ACTIONS(4895), - [sym__regex_start] = ACTIONS(4895), - [sym__regular_if_keyword] = ACTIONS(4895), - [sym__regular_unless_keyword] = ACTIONS(4895), - [sym__regular_rescue_keyword] = ACTIONS(4895), - [sym__regular_ensure_keyword] = ACTIONS(4895), - [sym__string_literal_start] = ACTIONS(4895), - [sym__string_percent_literal_start] = ACTIONS(4895), - [sym__command_percent_literal_start] = ACTIONS(4895), - [sym__string_array_percent_literal_start] = ACTIONS(4895), - [sym__symbol_array_percent_literal_start] = ACTIONS(4895), - [sym__regex_percent_literal_start] = ACTIONS(4895), - [sym_heredoc_start] = ACTIONS(4895), + [sym_identifier] = ACTIONS(4934), + [anon_sym_SEMI] = ACTIONS(4936), + [anon_sym_LPAREN] = ACTIONS(4936), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4934), + [sym_true] = ACTIONS(4934), + [sym_false] = ACTIONS(4934), + [aux_sym_integer_token2] = ACTIONS(4934), + [aux_sym_float_token2] = ACTIONS(4936), + [anon_sym_SQUOTE] = ACTIONS(4936), + [sym_operator_symbol] = ACTIONS(4936), + [sym_unquoted_symbol] = ACTIONS(4936), + [anon_sym_COLON_DQUOTE] = ACTIONS(4936), + [anon_sym_BQUOTE] = ACTIONS(4936), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_DASH_GT] = ACTIONS(4936), + [anon_sym_annotation] = ACTIONS(4934), + [anon_sym_end] = ACTIONS(4934), + [anon_sym_AT_LBRACK] = ACTIONS(4936), + [anon_sym_private] = ACTIONS(4934), + [anon_sym_module] = ACTIONS(4934), + [anon_sym_abstract] = ACTIONS(4934), + [anon_sym_class] = ACTIONS(4934), + [anon_sym_struct] = ACTIONS(4934), + [anon_sym_enum] = ACTIONS(4934), + [anon_sym_STAR] = ACTIONS(4936), + [anon_sym_BANG] = ACTIONS(4936), + [anon_sym_TILDE] = ACTIONS(4936), + [anon_sym_def] = ACTIONS(4934), + [anon_sym_protected] = ACTIONS(4934), + [anon_sym_include] = ACTIONS(4934), + [anon_sym_extend] = ACTIONS(4934), + [anon_sym_return] = ACTIONS(4934), + [anon_sym_next] = ACTIONS(4934), + [anon_sym_break] = ACTIONS(4934), + [anon_sym_with] = ACTIONS(4934), + [anon_sym_yield] = ACTIONS(4934), + [anon_sym_typeof] = ACTIONS(4934), + [anon_sym_sizeof] = ACTIONS(4934), + [anon_sym_instance_sizeof] = ACTIONS(4934), + [anon_sym_offsetof] = ACTIONS(4934), + [sym__constant_segment] = ACTIONS(4936), + [anon_sym_COLON_COLON] = ACTIONS(4936), + [anon_sym___LINE__] = ACTIONS(4934), + [anon_sym___END_LINE__] = ACTIONS(4934), + [anon_sym___FILE__] = ACTIONS(4934), + [anon_sym___DIR__] = ACTIONS(4934), + [sym_special_variable] = ACTIONS(4936), + [sym_identifier_method_call] = ACTIONS(4936), + [sym_instance_var] = ACTIONS(4936), + [sym_class_var] = ACTIONS(4936), + [sym_self] = ACTIONS(4934), + [anon_sym_alias] = ACTIONS(4934), + [anon_sym_begin] = ACTIONS(4934), + [anon_sym_while] = ACTIONS(4934), + [anon_sym_until] = ACTIONS(4934), + [anon_sym_else] = ACTIONS(4934), + [anon_sym_require] = ACTIONS(4934), + [anon_sym_case] = ACTIONS(4934), + [anon_sym_select] = ACTIONS(4934), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4936), + [sym__start_of_named_tuple] = ACTIONS(4936), + [sym_unary_plus] = ACTIONS(4936), + [sym_unary_minus] = ACTIONS(4936), + [sym_unary_wrapping_plus] = ACTIONS(4936), + [sym_unary_wrapping_minus] = ACTIONS(4936), + [sym__beginless_range_operator] = ACTIONS(4936), + [sym__regex_start] = ACTIONS(4936), + [sym__regular_if_keyword] = ACTIONS(4936), + [sym__regular_unless_keyword] = ACTIONS(4936), + [sym__regular_rescue_keyword] = ACTIONS(4936), + [sym__regular_ensure_keyword] = ACTIONS(4936), + [sym__string_literal_start] = ACTIONS(4936), + [sym__string_percent_literal_start] = ACTIONS(4936), + [sym__command_percent_literal_start] = ACTIONS(4936), + [sym__string_array_percent_literal_start] = ACTIONS(4936), + [sym__symbol_array_percent_literal_start] = ACTIONS(4936), + [sym__regex_percent_literal_start] = ACTIONS(4936), + [sym_heredoc_start] = ACTIONS(4936), [sym__heredoc_body_start] = ACTIONS(7), }, [2111] = { [sym_heredoc_body] = STATE(2111), - [sym_identifier] = ACTIONS(4897), - [anon_sym_SEMI] = ACTIONS(4899), - [anon_sym_LPAREN] = ACTIONS(4899), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4897), - [sym_true] = ACTIONS(4897), - [sym_false] = ACTIONS(4897), - [aux_sym_integer_token2] = ACTIONS(4897), - [aux_sym_float_token2] = ACTIONS(4899), - [anon_sym_SQUOTE] = ACTIONS(4899), - [sym_operator_symbol] = ACTIONS(4899), - [sym_unquoted_symbol] = ACTIONS(4899), - [anon_sym_COLON_DQUOTE] = ACTIONS(4899), - [anon_sym_BQUOTE] = ACTIONS(4899), - [anon_sym_LBRACK] = ACTIONS(4899), - [anon_sym_DASH_GT] = ACTIONS(4899), - [anon_sym_annotation] = ACTIONS(4897), - [anon_sym_end] = ACTIONS(4897), - [anon_sym_AT_LBRACK] = ACTIONS(4899), - [anon_sym_private] = ACTIONS(4897), - [anon_sym_module] = ACTIONS(4897), - [anon_sym_abstract] = ACTIONS(4897), - [anon_sym_class] = ACTIONS(4897), - [anon_sym_struct] = ACTIONS(4897), - [anon_sym_enum] = ACTIONS(4897), - [anon_sym_STAR] = ACTIONS(4899), - [anon_sym_BANG] = ACTIONS(4899), - [anon_sym_TILDE] = ACTIONS(4899), - [anon_sym_def] = ACTIONS(4897), - [anon_sym_protected] = ACTIONS(4897), - [anon_sym_include] = ACTIONS(4897), - [anon_sym_extend] = ACTIONS(4897), - [anon_sym_return] = ACTIONS(4897), - [anon_sym_next] = ACTIONS(4897), - [anon_sym_break] = ACTIONS(4897), - [anon_sym_with] = ACTIONS(4897), - [anon_sym_yield] = ACTIONS(4897), - [anon_sym_typeof] = ACTIONS(4897), - [anon_sym_sizeof] = ACTIONS(4897), - [anon_sym_instance_sizeof] = ACTIONS(4897), - [anon_sym_offsetof] = ACTIONS(4897), - [sym__constant_segment] = ACTIONS(4899), - [anon_sym_COLON_COLON] = ACTIONS(4899), - [anon_sym___LINE__] = ACTIONS(4897), - [anon_sym___END_LINE__] = ACTIONS(4897), - [anon_sym___FILE__] = ACTIONS(4897), - [anon_sym___DIR__] = ACTIONS(4897), - [sym_special_variable] = ACTIONS(4899), - [sym_identifier_method_call] = ACTIONS(4899), - [sym_instance_var] = ACTIONS(4899), - [sym_class_var] = ACTIONS(4899), - [sym_self] = ACTIONS(4897), - [anon_sym_alias] = ACTIONS(4897), - [anon_sym_begin] = ACTIONS(4897), - [anon_sym_while] = ACTIONS(4897), - [anon_sym_until] = ACTIONS(4897), - [anon_sym_else] = ACTIONS(4897), - [anon_sym_require] = ACTIONS(4897), - [anon_sym_case] = ACTIONS(4897), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4899), - [sym__start_of_named_tuple] = ACTIONS(4899), - [sym_unary_plus] = ACTIONS(4899), - [sym_unary_minus] = ACTIONS(4899), - [sym_unary_wrapping_plus] = ACTIONS(4899), - [sym_unary_wrapping_minus] = ACTIONS(4899), - [sym__beginless_range_operator] = ACTIONS(4899), - [sym__regex_start] = ACTIONS(4899), - [sym__regular_if_keyword] = ACTIONS(4899), - [sym__regular_unless_keyword] = ACTIONS(4899), - [sym__regular_rescue_keyword] = ACTIONS(4899), - [sym__regular_ensure_keyword] = ACTIONS(4899), - [sym__string_literal_start] = ACTIONS(4899), - [sym__string_percent_literal_start] = ACTIONS(4899), - [sym__command_percent_literal_start] = ACTIONS(4899), - [sym__string_array_percent_literal_start] = ACTIONS(4899), - [sym__symbol_array_percent_literal_start] = ACTIONS(4899), - [sym__regex_percent_literal_start] = ACTIONS(4899), - [sym_heredoc_start] = ACTIONS(4899), + [sym_identifier] = ACTIONS(4938), + [anon_sym_SEMI] = ACTIONS(4940), + [anon_sym_LPAREN] = ACTIONS(4940), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4938), + [sym_true] = ACTIONS(4938), + [sym_false] = ACTIONS(4938), + [aux_sym_integer_token2] = ACTIONS(4938), + [aux_sym_float_token2] = ACTIONS(4940), + [anon_sym_SQUOTE] = ACTIONS(4940), + [sym_operator_symbol] = ACTIONS(4940), + [sym_unquoted_symbol] = ACTIONS(4940), + [anon_sym_COLON_DQUOTE] = ACTIONS(4940), + [anon_sym_BQUOTE] = ACTIONS(4940), + [anon_sym_LBRACK] = ACTIONS(4940), + [anon_sym_DASH_GT] = ACTIONS(4940), + [anon_sym_annotation] = ACTIONS(4938), + [anon_sym_end] = ACTIONS(4938), + [anon_sym_AT_LBRACK] = ACTIONS(4940), + [anon_sym_private] = ACTIONS(4938), + [anon_sym_module] = ACTIONS(4938), + [anon_sym_abstract] = ACTIONS(4938), + [anon_sym_class] = ACTIONS(4938), + [anon_sym_struct] = ACTIONS(4938), + [anon_sym_enum] = ACTIONS(4938), + [anon_sym_STAR] = ACTIONS(4940), + [anon_sym_BANG] = ACTIONS(4940), + [anon_sym_TILDE] = ACTIONS(4940), + [anon_sym_def] = ACTIONS(4938), + [anon_sym_protected] = ACTIONS(4938), + [anon_sym_include] = ACTIONS(4938), + [anon_sym_extend] = ACTIONS(4938), + [anon_sym_return] = ACTIONS(4938), + [anon_sym_next] = ACTIONS(4938), + [anon_sym_break] = ACTIONS(4938), + [anon_sym_with] = ACTIONS(4938), + [anon_sym_yield] = ACTIONS(4938), + [anon_sym_typeof] = ACTIONS(4938), + [anon_sym_sizeof] = ACTIONS(4938), + [anon_sym_instance_sizeof] = ACTIONS(4938), + [anon_sym_offsetof] = ACTIONS(4938), + [sym__constant_segment] = ACTIONS(4940), + [anon_sym_COLON_COLON] = ACTIONS(4940), + [anon_sym___LINE__] = ACTIONS(4938), + [anon_sym___END_LINE__] = ACTIONS(4938), + [anon_sym___FILE__] = ACTIONS(4938), + [anon_sym___DIR__] = ACTIONS(4938), + [sym_special_variable] = ACTIONS(4940), + [sym_identifier_method_call] = ACTIONS(4940), + [sym_instance_var] = ACTIONS(4940), + [sym_class_var] = ACTIONS(4940), + [sym_self] = ACTIONS(4938), + [anon_sym_alias] = ACTIONS(4938), + [anon_sym_begin] = ACTIONS(4938), + [anon_sym_while] = ACTIONS(4938), + [anon_sym_until] = ACTIONS(4938), + [anon_sym_else] = ACTIONS(4938), + [anon_sym_require] = ACTIONS(4938), + [anon_sym_case] = ACTIONS(4938), + [anon_sym_select] = ACTIONS(4938), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4940), + [sym__start_of_named_tuple] = ACTIONS(4940), + [sym_unary_plus] = ACTIONS(4940), + [sym_unary_minus] = ACTIONS(4940), + [sym_unary_wrapping_plus] = ACTIONS(4940), + [sym_unary_wrapping_minus] = ACTIONS(4940), + [sym__beginless_range_operator] = ACTIONS(4940), + [sym__regex_start] = ACTIONS(4940), + [sym__regular_if_keyword] = ACTIONS(4940), + [sym__regular_unless_keyword] = ACTIONS(4940), + [sym__regular_rescue_keyword] = ACTIONS(4940), + [sym__regular_ensure_keyword] = ACTIONS(4940), + [sym__string_literal_start] = ACTIONS(4940), + [sym__string_percent_literal_start] = ACTIONS(4940), + [sym__command_percent_literal_start] = ACTIONS(4940), + [sym__string_array_percent_literal_start] = ACTIONS(4940), + [sym__symbol_array_percent_literal_start] = ACTIONS(4940), + [sym__regex_percent_literal_start] = ACTIONS(4940), + [sym_heredoc_start] = ACTIONS(4940), [sym__heredoc_body_start] = ACTIONS(7), }, [2112] = { [sym_heredoc_body] = STATE(2112), - [sym_identifier] = ACTIONS(4901), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LPAREN] = ACTIONS(4903), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4901), - [sym_true] = ACTIONS(4901), - [sym_false] = ACTIONS(4901), - [aux_sym_integer_token2] = ACTIONS(4901), - [aux_sym_float_token2] = ACTIONS(4903), - [anon_sym_SQUOTE] = ACTIONS(4903), - [sym_operator_symbol] = ACTIONS(4903), - [sym_unquoted_symbol] = ACTIONS(4903), - [anon_sym_COLON_DQUOTE] = ACTIONS(4903), - [anon_sym_BQUOTE] = ACTIONS(4903), - [anon_sym_LBRACK] = ACTIONS(4903), - [anon_sym_DASH_GT] = ACTIONS(4903), - [anon_sym_annotation] = ACTIONS(4901), - [anon_sym_end] = ACTIONS(4901), - [anon_sym_AT_LBRACK] = ACTIONS(4903), - [anon_sym_private] = ACTIONS(4901), - [anon_sym_module] = ACTIONS(4901), - [anon_sym_abstract] = ACTIONS(4901), - [anon_sym_class] = ACTIONS(4901), - [anon_sym_struct] = ACTIONS(4901), - [anon_sym_enum] = ACTIONS(4901), - [anon_sym_STAR] = ACTIONS(4903), - [anon_sym_BANG] = ACTIONS(4903), - [anon_sym_TILDE] = ACTIONS(4903), - [anon_sym_def] = ACTIONS(4901), - [anon_sym_protected] = ACTIONS(4901), - [anon_sym_include] = ACTIONS(4901), - [anon_sym_extend] = ACTIONS(4901), - [anon_sym_return] = ACTIONS(4901), - [anon_sym_next] = ACTIONS(4901), - [anon_sym_break] = ACTIONS(4901), - [anon_sym_with] = ACTIONS(4901), - [anon_sym_yield] = ACTIONS(4901), - [anon_sym_typeof] = ACTIONS(4901), - [anon_sym_sizeof] = ACTIONS(4901), - [anon_sym_instance_sizeof] = ACTIONS(4901), - [anon_sym_offsetof] = ACTIONS(4901), - [sym__constant_segment] = ACTIONS(4903), - [anon_sym_COLON_COLON] = ACTIONS(4903), - [anon_sym___LINE__] = ACTIONS(4901), - [anon_sym___END_LINE__] = ACTIONS(4901), - [anon_sym___FILE__] = ACTIONS(4901), - [anon_sym___DIR__] = ACTIONS(4901), - [sym_special_variable] = ACTIONS(4903), - [sym_identifier_method_call] = ACTIONS(4903), - [sym_instance_var] = ACTIONS(4903), - [sym_class_var] = ACTIONS(4903), - [sym_self] = ACTIONS(4901), - [anon_sym_alias] = ACTIONS(4901), - [anon_sym_begin] = ACTIONS(4901), - [anon_sym_while] = ACTIONS(4901), - [anon_sym_until] = ACTIONS(4901), - [anon_sym_else] = ACTIONS(4901), - [anon_sym_require] = ACTIONS(4901), - [anon_sym_case] = ACTIONS(4901), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4903), - [sym__start_of_named_tuple] = ACTIONS(4903), - [sym_unary_plus] = ACTIONS(4903), - [sym_unary_minus] = ACTIONS(4903), - [sym_unary_wrapping_plus] = ACTIONS(4903), - [sym_unary_wrapping_minus] = ACTIONS(4903), - [sym__beginless_range_operator] = ACTIONS(4903), - [sym__regex_start] = ACTIONS(4903), - [sym__regular_if_keyword] = ACTIONS(4903), - [sym__regular_unless_keyword] = ACTIONS(4903), - [sym__regular_rescue_keyword] = ACTIONS(4903), - [sym__regular_ensure_keyword] = ACTIONS(4903), - [sym__string_literal_start] = ACTIONS(4903), - [sym__string_percent_literal_start] = ACTIONS(4903), - [sym__command_percent_literal_start] = ACTIONS(4903), - [sym__string_array_percent_literal_start] = ACTIONS(4903), - [sym__symbol_array_percent_literal_start] = ACTIONS(4903), - [sym__regex_percent_literal_start] = ACTIONS(4903), - [sym_heredoc_start] = ACTIONS(4903), + [sym_identifier] = ACTIONS(4942), + [anon_sym_SEMI] = ACTIONS(4944), + [anon_sym_LPAREN] = ACTIONS(4944), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4942), + [sym_true] = ACTIONS(4942), + [sym_false] = ACTIONS(4942), + [aux_sym_integer_token2] = ACTIONS(4942), + [aux_sym_float_token2] = ACTIONS(4944), + [anon_sym_SQUOTE] = ACTIONS(4944), + [sym_operator_symbol] = ACTIONS(4944), + [sym_unquoted_symbol] = ACTIONS(4944), + [anon_sym_COLON_DQUOTE] = ACTIONS(4944), + [anon_sym_BQUOTE] = ACTIONS(4944), + [anon_sym_LBRACK] = ACTIONS(4944), + [anon_sym_DASH_GT] = ACTIONS(4944), + [anon_sym_annotation] = ACTIONS(4942), + [anon_sym_end] = ACTIONS(4942), + [anon_sym_AT_LBRACK] = ACTIONS(4944), + [anon_sym_private] = ACTIONS(4942), + [anon_sym_module] = ACTIONS(4942), + [anon_sym_abstract] = ACTIONS(4942), + [anon_sym_class] = ACTIONS(4942), + [anon_sym_struct] = ACTIONS(4942), + [anon_sym_enum] = ACTIONS(4942), + [anon_sym_STAR] = ACTIONS(4944), + [anon_sym_BANG] = ACTIONS(4944), + [anon_sym_TILDE] = ACTIONS(4944), + [anon_sym_def] = ACTIONS(4942), + [anon_sym_protected] = ACTIONS(4942), + [anon_sym_include] = ACTIONS(4942), + [anon_sym_extend] = ACTIONS(4942), + [anon_sym_return] = ACTIONS(4942), + [anon_sym_next] = ACTIONS(4942), + [anon_sym_break] = ACTIONS(4942), + [anon_sym_with] = ACTIONS(4942), + [anon_sym_yield] = ACTIONS(4942), + [anon_sym_typeof] = ACTIONS(4942), + [anon_sym_sizeof] = ACTIONS(4942), + [anon_sym_instance_sizeof] = ACTIONS(4942), + [anon_sym_offsetof] = ACTIONS(4942), + [sym__constant_segment] = ACTIONS(4944), + [anon_sym_COLON_COLON] = ACTIONS(4944), + [anon_sym___LINE__] = ACTIONS(4942), + [anon_sym___END_LINE__] = ACTIONS(4942), + [anon_sym___FILE__] = ACTIONS(4942), + [anon_sym___DIR__] = ACTIONS(4942), + [sym_special_variable] = ACTIONS(4944), + [sym_identifier_method_call] = ACTIONS(4944), + [sym_instance_var] = ACTIONS(4944), + [sym_class_var] = ACTIONS(4944), + [sym_self] = ACTIONS(4942), + [anon_sym_alias] = ACTIONS(4942), + [anon_sym_begin] = ACTIONS(4942), + [anon_sym_while] = ACTIONS(4942), + [anon_sym_until] = ACTIONS(4942), + [anon_sym_else] = ACTIONS(4942), + [anon_sym_require] = ACTIONS(4942), + [anon_sym_case] = ACTIONS(4942), + [anon_sym_select] = ACTIONS(4942), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4944), + [sym__start_of_named_tuple] = ACTIONS(4944), + [sym_unary_plus] = ACTIONS(4944), + [sym_unary_minus] = ACTIONS(4944), + [sym_unary_wrapping_plus] = ACTIONS(4944), + [sym_unary_wrapping_minus] = ACTIONS(4944), + [sym__beginless_range_operator] = ACTIONS(4944), + [sym__regex_start] = ACTIONS(4944), + [sym__regular_if_keyword] = ACTIONS(4944), + [sym__regular_unless_keyword] = ACTIONS(4944), + [sym__regular_rescue_keyword] = ACTIONS(4944), + [sym__regular_ensure_keyword] = ACTIONS(4944), + [sym__string_literal_start] = ACTIONS(4944), + [sym__string_percent_literal_start] = ACTIONS(4944), + [sym__command_percent_literal_start] = ACTIONS(4944), + [sym__string_array_percent_literal_start] = ACTIONS(4944), + [sym__symbol_array_percent_literal_start] = ACTIONS(4944), + [sym__regex_percent_literal_start] = ACTIONS(4944), + [sym_heredoc_start] = ACTIONS(4944), [sym__heredoc_body_start] = ACTIONS(7), }, [2113] = { [sym_heredoc_body] = STATE(2113), - [sym_identifier] = ACTIONS(4905), - [anon_sym_SEMI] = ACTIONS(4907), - [anon_sym_LPAREN] = ACTIONS(4907), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4905), - [sym_true] = ACTIONS(4905), - [sym_false] = ACTIONS(4905), - [aux_sym_integer_token2] = ACTIONS(4905), - [aux_sym_float_token2] = ACTIONS(4907), - [anon_sym_SQUOTE] = ACTIONS(4907), - [sym_operator_symbol] = ACTIONS(4907), - [sym_unquoted_symbol] = ACTIONS(4907), - [anon_sym_COLON_DQUOTE] = ACTIONS(4907), - [anon_sym_BQUOTE] = ACTIONS(4907), - [anon_sym_LBRACK] = ACTIONS(4907), - [anon_sym_DASH_GT] = ACTIONS(4907), - [anon_sym_annotation] = ACTIONS(4905), - [anon_sym_end] = ACTIONS(4905), - [anon_sym_AT_LBRACK] = ACTIONS(4907), - [anon_sym_private] = ACTIONS(4905), - [anon_sym_module] = ACTIONS(4905), - [anon_sym_abstract] = ACTIONS(4905), - [anon_sym_class] = ACTIONS(4905), - [anon_sym_struct] = ACTIONS(4905), - [anon_sym_enum] = ACTIONS(4905), - [anon_sym_STAR] = ACTIONS(4907), - [anon_sym_BANG] = ACTIONS(4907), - [anon_sym_TILDE] = ACTIONS(4907), - [anon_sym_def] = ACTIONS(4905), - [anon_sym_protected] = ACTIONS(4905), - [anon_sym_include] = ACTIONS(4905), - [anon_sym_extend] = ACTIONS(4905), - [anon_sym_return] = ACTIONS(4905), - [anon_sym_next] = ACTIONS(4905), - [anon_sym_break] = ACTIONS(4905), - [anon_sym_with] = ACTIONS(4905), - [anon_sym_yield] = ACTIONS(4905), - [anon_sym_typeof] = ACTIONS(4905), - [anon_sym_sizeof] = ACTIONS(4905), - [anon_sym_instance_sizeof] = ACTIONS(4905), - [anon_sym_offsetof] = ACTIONS(4905), - [sym__constant_segment] = ACTIONS(4907), - [anon_sym_COLON_COLON] = ACTIONS(4907), - [anon_sym___LINE__] = ACTIONS(4905), - [anon_sym___END_LINE__] = ACTIONS(4905), - [anon_sym___FILE__] = ACTIONS(4905), - [anon_sym___DIR__] = ACTIONS(4905), - [sym_special_variable] = ACTIONS(4907), - [sym_identifier_method_call] = ACTIONS(4907), - [sym_instance_var] = ACTIONS(4907), - [sym_class_var] = ACTIONS(4907), - [sym_self] = ACTIONS(4905), - [anon_sym_alias] = ACTIONS(4905), - [anon_sym_begin] = ACTIONS(4905), - [anon_sym_while] = ACTIONS(4905), - [anon_sym_until] = ACTIONS(4905), - [anon_sym_else] = ACTIONS(4905), - [anon_sym_require] = ACTIONS(4905), - [anon_sym_case] = ACTIONS(4905), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4907), - [sym__start_of_named_tuple] = ACTIONS(4907), - [sym_unary_plus] = ACTIONS(4907), - [sym_unary_minus] = ACTIONS(4907), - [sym_unary_wrapping_plus] = ACTIONS(4907), - [sym_unary_wrapping_minus] = ACTIONS(4907), - [sym__beginless_range_operator] = ACTIONS(4907), - [sym__regex_start] = ACTIONS(4907), - [sym__regular_if_keyword] = ACTIONS(4907), - [sym__regular_unless_keyword] = ACTIONS(4907), - [sym__regular_rescue_keyword] = ACTIONS(4907), - [sym__regular_ensure_keyword] = ACTIONS(4907), - [sym__string_literal_start] = ACTIONS(4907), - [sym__string_percent_literal_start] = ACTIONS(4907), - [sym__command_percent_literal_start] = ACTIONS(4907), - [sym__string_array_percent_literal_start] = ACTIONS(4907), - [sym__symbol_array_percent_literal_start] = ACTIONS(4907), - [sym__regex_percent_literal_start] = ACTIONS(4907), - [sym_heredoc_start] = ACTIONS(4907), + [sym_identifier] = ACTIONS(4946), + [anon_sym_SEMI] = ACTIONS(4948), + [anon_sym_LPAREN] = ACTIONS(4948), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4946), + [sym_true] = ACTIONS(4946), + [sym_false] = ACTIONS(4946), + [aux_sym_integer_token2] = ACTIONS(4946), + [aux_sym_float_token2] = ACTIONS(4948), + [anon_sym_SQUOTE] = ACTIONS(4948), + [sym_operator_symbol] = ACTIONS(4948), + [sym_unquoted_symbol] = ACTIONS(4948), + [anon_sym_COLON_DQUOTE] = ACTIONS(4948), + [anon_sym_BQUOTE] = ACTIONS(4948), + [anon_sym_LBRACK] = ACTIONS(4948), + [anon_sym_DASH_GT] = ACTIONS(4948), + [anon_sym_annotation] = ACTIONS(4946), + [anon_sym_end] = ACTIONS(4946), + [anon_sym_AT_LBRACK] = ACTIONS(4948), + [anon_sym_private] = ACTIONS(4946), + [anon_sym_module] = ACTIONS(4946), + [anon_sym_abstract] = ACTIONS(4946), + [anon_sym_class] = ACTIONS(4946), + [anon_sym_struct] = ACTIONS(4946), + [anon_sym_enum] = ACTIONS(4946), + [anon_sym_STAR] = ACTIONS(4948), + [anon_sym_BANG] = ACTIONS(4948), + [anon_sym_TILDE] = ACTIONS(4948), + [anon_sym_def] = ACTIONS(4946), + [anon_sym_protected] = ACTIONS(4946), + [anon_sym_include] = ACTIONS(4946), + [anon_sym_extend] = ACTIONS(4946), + [anon_sym_return] = ACTIONS(4946), + [anon_sym_next] = ACTIONS(4946), + [anon_sym_break] = ACTIONS(4946), + [anon_sym_with] = ACTIONS(4946), + [anon_sym_yield] = ACTIONS(4946), + [anon_sym_typeof] = ACTIONS(4946), + [anon_sym_sizeof] = ACTIONS(4946), + [anon_sym_instance_sizeof] = ACTIONS(4946), + [anon_sym_offsetof] = ACTIONS(4946), + [sym__constant_segment] = ACTIONS(4948), + [anon_sym_COLON_COLON] = ACTIONS(4948), + [anon_sym___LINE__] = ACTIONS(4946), + [anon_sym___END_LINE__] = ACTIONS(4946), + [anon_sym___FILE__] = ACTIONS(4946), + [anon_sym___DIR__] = ACTIONS(4946), + [sym_special_variable] = ACTIONS(4948), + [sym_identifier_method_call] = ACTIONS(4948), + [sym_instance_var] = ACTIONS(4948), + [sym_class_var] = ACTIONS(4948), + [sym_self] = ACTIONS(4946), + [anon_sym_alias] = ACTIONS(4946), + [anon_sym_begin] = ACTIONS(4946), + [anon_sym_while] = ACTIONS(4946), + [anon_sym_until] = ACTIONS(4946), + [anon_sym_else] = ACTIONS(4946), + [anon_sym_require] = ACTIONS(4946), + [anon_sym_case] = ACTIONS(4946), + [anon_sym_select] = ACTIONS(4946), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4948), + [sym__start_of_named_tuple] = ACTIONS(4948), + [sym_unary_plus] = ACTIONS(4948), + [sym_unary_minus] = ACTIONS(4948), + [sym_unary_wrapping_plus] = ACTIONS(4948), + [sym_unary_wrapping_minus] = ACTIONS(4948), + [sym__beginless_range_operator] = ACTIONS(4948), + [sym__regex_start] = ACTIONS(4948), + [sym__regular_if_keyword] = ACTIONS(4948), + [sym__regular_unless_keyword] = ACTIONS(4948), + [sym__regular_rescue_keyword] = ACTIONS(4948), + [sym__regular_ensure_keyword] = ACTIONS(4948), + [sym__string_literal_start] = ACTIONS(4948), + [sym__string_percent_literal_start] = ACTIONS(4948), + [sym__command_percent_literal_start] = ACTIONS(4948), + [sym__string_array_percent_literal_start] = ACTIONS(4948), + [sym__symbol_array_percent_literal_start] = ACTIONS(4948), + [sym__regex_percent_literal_start] = ACTIONS(4948), + [sym_heredoc_start] = ACTIONS(4948), [sym__heredoc_body_start] = ACTIONS(7), }, [2114] = { [sym_heredoc_body] = STATE(2114), - [sym_identifier] = ACTIONS(4909), - [anon_sym_SEMI] = ACTIONS(4911), - [anon_sym_LPAREN] = ACTIONS(4911), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4909), - [sym_true] = ACTIONS(4909), - [sym_false] = ACTIONS(4909), - [aux_sym_integer_token2] = ACTIONS(4909), - [aux_sym_float_token2] = ACTIONS(4911), - [anon_sym_SQUOTE] = ACTIONS(4911), - [sym_operator_symbol] = ACTIONS(4911), - [sym_unquoted_symbol] = ACTIONS(4911), - [anon_sym_COLON_DQUOTE] = ACTIONS(4911), - [anon_sym_BQUOTE] = ACTIONS(4911), - [anon_sym_LBRACK] = ACTIONS(4911), - [anon_sym_DASH_GT] = ACTIONS(4911), - [anon_sym_annotation] = ACTIONS(4909), - [anon_sym_end] = ACTIONS(4909), - [anon_sym_AT_LBRACK] = ACTIONS(4911), - [anon_sym_private] = ACTIONS(4909), - [anon_sym_module] = ACTIONS(4909), - [anon_sym_abstract] = ACTIONS(4909), - [anon_sym_class] = ACTIONS(4909), - [anon_sym_struct] = ACTIONS(4909), - [anon_sym_enum] = ACTIONS(4909), - [anon_sym_STAR] = ACTIONS(4911), - [anon_sym_BANG] = ACTIONS(4911), - [anon_sym_TILDE] = ACTIONS(4911), - [anon_sym_def] = ACTIONS(4909), - [anon_sym_protected] = ACTIONS(4909), - [anon_sym_include] = ACTIONS(4909), - [anon_sym_extend] = ACTIONS(4909), - [anon_sym_return] = ACTIONS(4909), - [anon_sym_next] = ACTIONS(4909), - [anon_sym_break] = ACTIONS(4909), - [anon_sym_with] = ACTIONS(4909), - [anon_sym_yield] = ACTIONS(4909), - [anon_sym_typeof] = ACTIONS(4909), - [anon_sym_sizeof] = ACTIONS(4909), - [anon_sym_instance_sizeof] = ACTIONS(4909), - [anon_sym_offsetof] = ACTIONS(4909), - [sym__constant_segment] = ACTIONS(4911), - [anon_sym_COLON_COLON] = ACTIONS(4911), - [anon_sym___LINE__] = ACTIONS(4909), - [anon_sym___END_LINE__] = ACTIONS(4909), - [anon_sym___FILE__] = ACTIONS(4909), - [anon_sym___DIR__] = ACTIONS(4909), - [sym_special_variable] = ACTIONS(4911), - [sym_identifier_method_call] = ACTIONS(4911), - [sym_instance_var] = ACTIONS(4911), - [sym_class_var] = ACTIONS(4911), - [sym_self] = ACTIONS(4909), - [anon_sym_alias] = ACTIONS(4909), - [anon_sym_begin] = ACTIONS(4909), - [anon_sym_while] = ACTIONS(4909), - [anon_sym_until] = ACTIONS(4909), - [anon_sym_else] = ACTIONS(4909), - [anon_sym_require] = ACTIONS(4909), - [anon_sym_case] = ACTIONS(4909), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4911), - [sym__start_of_named_tuple] = ACTIONS(4911), - [sym_unary_plus] = ACTIONS(4911), - [sym_unary_minus] = ACTIONS(4911), - [sym_unary_wrapping_plus] = ACTIONS(4911), - [sym_unary_wrapping_minus] = ACTIONS(4911), - [sym__beginless_range_operator] = ACTIONS(4911), - [sym__regex_start] = ACTIONS(4911), - [sym__regular_if_keyword] = ACTIONS(4911), - [sym__regular_unless_keyword] = ACTIONS(4911), - [sym__regular_rescue_keyword] = ACTIONS(4911), - [sym__regular_ensure_keyword] = ACTIONS(4911), - [sym__string_literal_start] = ACTIONS(4911), - [sym__string_percent_literal_start] = ACTIONS(4911), - [sym__command_percent_literal_start] = ACTIONS(4911), - [sym__string_array_percent_literal_start] = ACTIONS(4911), - [sym__symbol_array_percent_literal_start] = ACTIONS(4911), - [sym__regex_percent_literal_start] = ACTIONS(4911), - [sym_heredoc_start] = ACTIONS(4911), + [sym_identifier] = ACTIONS(4802), + [anon_sym_SEMI] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4800), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4802), + [sym_true] = ACTIONS(4802), + [sym_false] = ACTIONS(4802), + [aux_sym_integer_token2] = ACTIONS(4802), + [aux_sym_float_token2] = ACTIONS(4800), + [anon_sym_SQUOTE] = ACTIONS(4800), + [sym_operator_symbol] = ACTIONS(4800), + [sym_unquoted_symbol] = ACTIONS(4800), + [anon_sym_COLON_DQUOTE] = ACTIONS(4800), + [anon_sym_BQUOTE] = ACTIONS(4800), + [anon_sym_LBRACK] = ACTIONS(4800), + [anon_sym_DASH_GT] = ACTIONS(4800), + [anon_sym_annotation] = ACTIONS(4802), + [anon_sym_end] = ACTIONS(4802), + [anon_sym_AT_LBRACK] = ACTIONS(4800), + [anon_sym_private] = ACTIONS(4802), + [anon_sym_module] = ACTIONS(4802), + [anon_sym_abstract] = ACTIONS(4802), + [anon_sym_class] = ACTIONS(4802), + [anon_sym_struct] = ACTIONS(4802), + [anon_sym_enum] = ACTIONS(4802), + [anon_sym_STAR] = ACTIONS(4800), + [anon_sym_BANG] = ACTIONS(4800), + [anon_sym_TILDE] = ACTIONS(4800), + [anon_sym_def] = ACTIONS(4802), + [anon_sym_protected] = ACTIONS(4802), + [anon_sym_include] = ACTIONS(4802), + [anon_sym_extend] = ACTIONS(4802), + [anon_sym_return] = ACTIONS(4802), + [anon_sym_next] = ACTIONS(4802), + [anon_sym_break] = ACTIONS(4802), + [anon_sym_with] = ACTIONS(4802), + [anon_sym_yield] = ACTIONS(4802), + [anon_sym_typeof] = ACTIONS(4802), + [anon_sym_sizeof] = ACTIONS(4802), + [anon_sym_instance_sizeof] = ACTIONS(4802), + [anon_sym_offsetof] = ACTIONS(4802), + [sym__constant_segment] = ACTIONS(4800), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym___LINE__] = ACTIONS(4802), + [anon_sym___END_LINE__] = ACTIONS(4802), + [anon_sym___FILE__] = ACTIONS(4802), + [anon_sym___DIR__] = ACTIONS(4802), + [sym_special_variable] = ACTIONS(4800), + [sym_identifier_method_call] = ACTIONS(4800), + [sym_instance_var] = ACTIONS(4800), + [sym_class_var] = ACTIONS(4800), + [sym_self] = ACTIONS(4802), + [anon_sym_alias] = ACTIONS(4802), + [anon_sym_begin] = ACTIONS(4802), + [anon_sym_while] = ACTIONS(4802), + [anon_sym_until] = ACTIONS(4802), + [anon_sym_else] = ACTIONS(4802), + [anon_sym_require] = ACTIONS(4802), + [anon_sym_case] = ACTIONS(4802), + [anon_sym_select] = ACTIONS(4802), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4800), + [sym__start_of_named_tuple] = ACTIONS(4800), + [sym_unary_plus] = ACTIONS(4800), + [sym_unary_minus] = ACTIONS(4800), + [sym_unary_wrapping_plus] = ACTIONS(4800), + [sym_unary_wrapping_minus] = ACTIONS(4800), + [sym__beginless_range_operator] = ACTIONS(4800), + [sym__regex_start] = ACTIONS(4800), + [sym__regular_if_keyword] = ACTIONS(4800), + [sym__regular_unless_keyword] = ACTIONS(4800), + [sym__regular_rescue_keyword] = ACTIONS(4800), + [sym__regular_ensure_keyword] = ACTIONS(4800), + [sym__string_literal_start] = ACTIONS(4800), + [sym__string_percent_literal_start] = ACTIONS(4800), + [sym__command_percent_literal_start] = ACTIONS(4800), + [sym__string_array_percent_literal_start] = ACTIONS(4800), + [sym__symbol_array_percent_literal_start] = ACTIONS(4800), + [sym__regex_percent_literal_start] = ACTIONS(4800), + [sym_heredoc_start] = ACTIONS(4800), [sym__heredoc_body_start] = ACTIONS(7), }, [2115] = { [sym_heredoc_body] = STATE(2115), - [sym_identifier] = ACTIONS(4913), - [anon_sym_SEMI] = ACTIONS(4915), - [anon_sym_LPAREN] = ACTIONS(4915), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4913), - [sym_true] = ACTIONS(4913), - [sym_false] = ACTIONS(4913), - [aux_sym_integer_token2] = ACTIONS(4913), - [aux_sym_float_token2] = ACTIONS(4915), - [anon_sym_SQUOTE] = ACTIONS(4915), - [sym_operator_symbol] = ACTIONS(4915), - [sym_unquoted_symbol] = ACTIONS(4915), - [anon_sym_COLON_DQUOTE] = ACTIONS(4915), - [anon_sym_BQUOTE] = ACTIONS(4915), - [anon_sym_LBRACK] = ACTIONS(4915), - [anon_sym_DASH_GT] = ACTIONS(4915), - [anon_sym_annotation] = ACTIONS(4913), - [anon_sym_end] = ACTIONS(4913), - [anon_sym_AT_LBRACK] = ACTIONS(4915), - [anon_sym_private] = ACTIONS(4913), - [anon_sym_module] = ACTIONS(4913), - [anon_sym_abstract] = ACTIONS(4913), - [anon_sym_class] = ACTIONS(4913), - [anon_sym_struct] = ACTIONS(4913), - [anon_sym_enum] = ACTIONS(4913), - [anon_sym_STAR] = ACTIONS(4915), - [anon_sym_BANG] = ACTIONS(4915), - [anon_sym_TILDE] = ACTIONS(4915), - [anon_sym_def] = ACTIONS(4913), - [anon_sym_protected] = ACTIONS(4913), - [anon_sym_include] = ACTIONS(4913), - [anon_sym_extend] = ACTIONS(4913), - [anon_sym_return] = ACTIONS(4913), - [anon_sym_next] = ACTIONS(4913), - [anon_sym_break] = ACTIONS(4913), - [anon_sym_with] = ACTIONS(4913), - [anon_sym_yield] = ACTIONS(4913), - [anon_sym_typeof] = ACTIONS(4913), - [anon_sym_sizeof] = ACTIONS(4913), - [anon_sym_instance_sizeof] = ACTIONS(4913), - [anon_sym_offsetof] = ACTIONS(4913), - [sym__constant_segment] = ACTIONS(4915), - [anon_sym_COLON_COLON] = ACTIONS(4915), - [anon_sym___LINE__] = ACTIONS(4913), - [anon_sym___END_LINE__] = ACTIONS(4913), - [anon_sym___FILE__] = ACTIONS(4913), - [anon_sym___DIR__] = ACTIONS(4913), - [sym_special_variable] = ACTIONS(4915), - [sym_identifier_method_call] = ACTIONS(4915), - [sym_instance_var] = ACTIONS(4915), - [sym_class_var] = ACTIONS(4915), - [sym_self] = ACTIONS(4913), - [anon_sym_alias] = ACTIONS(4913), - [anon_sym_begin] = ACTIONS(4913), - [anon_sym_while] = ACTIONS(4913), - [anon_sym_until] = ACTIONS(4913), - [anon_sym_else] = ACTIONS(4913), - [anon_sym_require] = ACTIONS(4913), - [anon_sym_case] = ACTIONS(4913), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4915), - [sym__start_of_named_tuple] = ACTIONS(4915), - [sym_unary_plus] = ACTIONS(4915), - [sym_unary_minus] = ACTIONS(4915), - [sym_unary_wrapping_plus] = ACTIONS(4915), - [sym_unary_wrapping_minus] = ACTIONS(4915), - [sym__beginless_range_operator] = ACTIONS(4915), - [sym__regex_start] = ACTIONS(4915), - [sym__regular_if_keyword] = ACTIONS(4915), - [sym__regular_unless_keyword] = ACTIONS(4915), - [sym__regular_rescue_keyword] = ACTIONS(4915), - [sym__regular_ensure_keyword] = ACTIONS(4915), - [sym__string_literal_start] = ACTIONS(4915), - [sym__string_percent_literal_start] = ACTIONS(4915), - [sym__command_percent_literal_start] = ACTIONS(4915), - [sym__string_array_percent_literal_start] = ACTIONS(4915), - [sym__symbol_array_percent_literal_start] = ACTIONS(4915), - [sym__regex_percent_literal_start] = ACTIONS(4915), - [sym_heredoc_start] = ACTIONS(4915), + [sym_identifier] = ACTIONS(4950), + [anon_sym_SEMI] = ACTIONS(4952), + [anon_sym_LPAREN] = ACTIONS(4952), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4950), + [sym_true] = ACTIONS(4950), + [sym_false] = ACTIONS(4950), + [aux_sym_integer_token2] = ACTIONS(4950), + [aux_sym_float_token2] = ACTIONS(4952), + [anon_sym_SQUOTE] = ACTIONS(4952), + [sym_operator_symbol] = ACTIONS(4952), + [sym_unquoted_symbol] = ACTIONS(4952), + [anon_sym_COLON_DQUOTE] = ACTIONS(4952), + [anon_sym_BQUOTE] = ACTIONS(4952), + [anon_sym_LBRACK] = ACTIONS(4952), + [anon_sym_DASH_GT] = ACTIONS(4952), + [anon_sym_annotation] = ACTIONS(4950), + [anon_sym_end] = ACTIONS(4950), + [anon_sym_AT_LBRACK] = ACTIONS(4952), + [anon_sym_private] = ACTIONS(4950), + [anon_sym_module] = ACTIONS(4950), + [anon_sym_abstract] = ACTIONS(4950), + [anon_sym_class] = ACTIONS(4950), + [anon_sym_struct] = ACTIONS(4950), + [anon_sym_enum] = ACTIONS(4950), + [anon_sym_STAR] = ACTIONS(4952), + [anon_sym_BANG] = ACTIONS(4952), + [anon_sym_TILDE] = ACTIONS(4952), + [anon_sym_def] = ACTIONS(4950), + [anon_sym_protected] = ACTIONS(4950), + [anon_sym_include] = ACTIONS(4950), + [anon_sym_extend] = ACTIONS(4950), + [anon_sym_return] = ACTIONS(4950), + [anon_sym_next] = ACTIONS(4950), + [anon_sym_break] = ACTIONS(4950), + [anon_sym_with] = ACTIONS(4950), + [anon_sym_yield] = ACTIONS(4950), + [anon_sym_typeof] = ACTIONS(4950), + [anon_sym_sizeof] = ACTIONS(4950), + [anon_sym_instance_sizeof] = ACTIONS(4950), + [anon_sym_offsetof] = ACTIONS(4950), + [sym__constant_segment] = ACTIONS(4952), + [anon_sym_COLON_COLON] = ACTIONS(4952), + [anon_sym___LINE__] = ACTIONS(4950), + [anon_sym___END_LINE__] = ACTIONS(4950), + [anon_sym___FILE__] = ACTIONS(4950), + [anon_sym___DIR__] = ACTIONS(4950), + [sym_special_variable] = ACTIONS(4952), + [sym_identifier_method_call] = ACTIONS(4952), + [sym_instance_var] = ACTIONS(4952), + [sym_class_var] = ACTIONS(4952), + [sym_self] = ACTIONS(4950), + [anon_sym_alias] = ACTIONS(4950), + [anon_sym_begin] = ACTIONS(4950), + [anon_sym_while] = ACTIONS(4950), + [anon_sym_until] = ACTIONS(4950), + [anon_sym_else] = ACTIONS(4950), + [anon_sym_require] = ACTIONS(4950), + [anon_sym_case] = ACTIONS(4950), + [anon_sym_select] = ACTIONS(4950), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4952), + [sym__start_of_named_tuple] = ACTIONS(4952), + [sym_unary_plus] = ACTIONS(4952), + [sym_unary_minus] = ACTIONS(4952), + [sym_unary_wrapping_plus] = ACTIONS(4952), + [sym_unary_wrapping_minus] = ACTIONS(4952), + [sym__beginless_range_operator] = ACTIONS(4952), + [sym__regex_start] = ACTIONS(4952), + [sym__regular_if_keyword] = ACTIONS(4952), + [sym__regular_unless_keyword] = ACTIONS(4952), + [sym__regular_rescue_keyword] = ACTIONS(4952), + [sym__regular_ensure_keyword] = ACTIONS(4952), + [sym__string_literal_start] = ACTIONS(4952), + [sym__string_percent_literal_start] = ACTIONS(4952), + [sym__command_percent_literal_start] = ACTIONS(4952), + [sym__string_array_percent_literal_start] = ACTIONS(4952), + [sym__symbol_array_percent_literal_start] = ACTIONS(4952), + [sym__regex_percent_literal_start] = ACTIONS(4952), + [sym_heredoc_start] = ACTIONS(4952), [sym__heredoc_body_start] = ACTIONS(7), }, [2116] = { [sym_heredoc_body] = STATE(2116), - [sym_identifier] = ACTIONS(4917), - [anon_sym_SEMI] = ACTIONS(4919), - [anon_sym_LPAREN] = ACTIONS(4919), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4917), - [sym_true] = ACTIONS(4917), - [sym_false] = ACTIONS(4917), - [aux_sym_integer_token2] = ACTIONS(4917), - [aux_sym_float_token2] = ACTIONS(4919), - [anon_sym_SQUOTE] = ACTIONS(4919), - [sym_operator_symbol] = ACTIONS(4919), - [sym_unquoted_symbol] = ACTIONS(4919), - [anon_sym_COLON_DQUOTE] = ACTIONS(4919), - [anon_sym_BQUOTE] = ACTIONS(4919), - [anon_sym_LBRACK] = ACTIONS(4919), - [anon_sym_DASH_GT] = ACTIONS(4919), - [anon_sym_annotation] = ACTIONS(4917), - [anon_sym_end] = ACTIONS(4917), - [anon_sym_AT_LBRACK] = ACTIONS(4919), - [anon_sym_private] = ACTIONS(4917), - [anon_sym_module] = ACTIONS(4917), - [anon_sym_abstract] = ACTIONS(4917), - [anon_sym_class] = ACTIONS(4917), - [anon_sym_struct] = ACTIONS(4917), - [anon_sym_enum] = ACTIONS(4917), - [anon_sym_STAR] = ACTIONS(4919), - [anon_sym_BANG] = ACTIONS(4919), - [anon_sym_TILDE] = ACTIONS(4919), - [anon_sym_def] = ACTIONS(4917), - [anon_sym_protected] = ACTIONS(4917), - [anon_sym_include] = ACTIONS(4917), - [anon_sym_extend] = ACTIONS(4917), - [anon_sym_return] = ACTIONS(4917), - [anon_sym_next] = ACTIONS(4917), - [anon_sym_break] = ACTIONS(4917), - [anon_sym_with] = ACTIONS(4917), - [anon_sym_yield] = ACTIONS(4917), - [anon_sym_typeof] = ACTIONS(4917), - [anon_sym_sizeof] = ACTIONS(4917), - [anon_sym_instance_sizeof] = ACTIONS(4917), - [anon_sym_offsetof] = ACTIONS(4917), - [sym__constant_segment] = ACTIONS(4919), - [anon_sym_COLON_COLON] = ACTIONS(4919), - [anon_sym___LINE__] = ACTIONS(4917), - [anon_sym___END_LINE__] = ACTIONS(4917), - [anon_sym___FILE__] = ACTIONS(4917), - [anon_sym___DIR__] = ACTIONS(4917), - [sym_special_variable] = ACTIONS(4919), - [sym_identifier_method_call] = ACTIONS(4919), - [sym_instance_var] = ACTIONS(4919), - [sym_class_var] = ACTIONS(4919), - [sym_self] = ACTIONS(4917), - [anon_sym_alias] = ACTIONS(4917), - [anon_sym_begin] = ACTIONS(4917), - [anon_sym_while] = ACTIONS(4917), - [anon_sym_until] = ACTIONS(4917), - [anon_sym_else] = ACTIONS(4917), - [anon_sym_require] = ACTIONS(4917), - [anon_sym_case] = ACTIONS(4917), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4919), - [sym__start_of_named_tuple] = ACTIONS(4919), - [sym_unary_plus] = ACTIONS(4919), - [sym_unary_minus] = ACTIONS(4919), - [sym_unary_wrapping_plus] = ACTIONS(4919), - [sym_unary_wrapping_minus] = ACTIONS(4919), - [sym__beginless_range_operator] = ACTIONS(4919), - [sym__regex_start] = ACTIONS(4919), - [sym__regular_if_keyword] = ACTIONS(4919), - [sym__regular_unless_keyword] = ACTIONS(4919), - [sym__regular_rescue_keyword] = ACTIONS(4919), - [sym__regular_ensure_keyword] = ACTIONS(4919), - [sym__string_literal_start] = ACTIONS(4919), - [sym__string_percent_literal_start] = ACTIONS(4919), - [sym__command_percent_literal_start] = ACTIONS(4919), - [sym__string_array_percent_literal_start] = ACTIONS(4919), - [sym__symbol_array_percent_literal_start] = ACTIONS(4919), - [sym__regex_percent_literal_start] = ACTIONS(4919), - [sym_heredoc_start] = ACTIONS(4919), + [sym_identifier] = ACTIONS(4954), + [anon_sym_SEMI] = ACTIONS(4956), + [anon_sym_LPAREN] = ACTIONS(4956), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4954), + [sym_true] = ACTIONS(4954), + [sym_false] = ACTIONS(4954), + [aux_sym_integer_token2] = ACTIONS(4954), + [aux_sym_float_token2] = ACTIONS(4956), + [anon_sym_SQUOTE] = ACTIONS(4956), + [sym_operator_symbol] = ACTIONS(4956), + [sym_unquoted_symbol] = ACTIONS(4956), + [anon_sym_COLON_DQUOTE] = ACTIONS(4956), + [anon_sym_BQUOTE] = ACTIONS(4956), + [anon_sym_LBRACK] = ACTIONS(4956), + [anon_sym_DASH_GT] = ACTIONS(4956), + [anon_sym_annotation] = ACTIONS(4954), + [anon_sym_end] = ACTIONS(4954), + [anon_sym_AT_LBRACK] = ACTIONS(4956), + [anon_sym_private] = ACTIONS(4954), + [anon_sym_module] = ACTIONS(4954), + [anon_sym_abstract] = ACTIONS(4954), + [anon_sym_class] = ACTIONS(4954), + [anon_sym_struct] = ACTIONS(4954), + [anon_sym_enum] = ACTIONS(4954), + [anon_sym_STAR] = ACTIONS(4956), + [anon_sym_BANG] = ACTIONS(4956), + [anon_sym_TILDE] = ACTIONS(4956), + [anon_sym_def] = ACTIONS(4954), + [anon_sym_protected] = ACTIONS(4954), + [anon_sym_include] = ACTIONS(4954), + [anon_sym_extend] = ACTIONS(4954), + [anon_sym_return] = ACTIONS(4954), + [anon_sym_next] = ACTIONS(4954), + [anon_sym_break] = ACTIONS(4954), + [anon_sym_with] = ACTIONS(4954), + [anon_sym_yield] = ACTIONS(4954), + [anon_sym_typeof] = ACTIONS(4954), + [anon_sym_sizeof] = ACTIONS(4954), + [anon_sym_instance_sizeof] = ACTIONS(4954), + [anon_sym_offsetof] = ACTIONS(4954), + [sym__constant_segment] = ACTIONS(4956), + [anon_sym_COLON_COLON] = ACTIONS(4956), + [anon_sym___LINE__] = ACTIONS(4954), + [anon_sym___END_LINE__] = ACTIONS(4954), + [anon_sym___FILE__] = ACTIONS(4954), + [anon_sym___DIR__] = ACTIONS(4954), + [sym_special_variable] = ACTIONS(4956), + [sym_identifier_method_call] = ACTIONS(4956), + [sym_instance_var] = ACTIONS(4956), + [sym_class_var] = ACTIONS(4956), + [sym_self] = ACTIONS(4954), + [anon_sym_alias] = ACTIONS(4954), + [anon_sym_begin] = ACTIONS(4954), + [anon_sym_while] = ACTIONS(4954), + [anon_sym_until] = ACTIONS(4954), + [anon_sym_else] = ACTIONS(4954), + [anon_sym_require] = ACTIONS(4954), + [anon_sym_case] = ACTIONS(4954), + [anon_sym_select] = ACTIONS(4954), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4956), + [sym__start_of_named_tuple] = ACTIONS(4956), + [sym_unary_plus] = ACTIONS(4956), + [sym_unary_minus] = ACTIONS(4956), + [sym_unary_wrapping_plus] = ACTIONS(4956), + [sym_unary_wrapping_minus] = ACTIONS(4956), + [sym__beginless_range_operator] = ACTIONS(4956), + [sym__regex_start] = ACTIONS(4956), + [sym__regular_if_keyword] = ACTIONS(4956), + [sym__regular_unless_keyword] = ACTIONS(4956), + [sym__regular_rescue_keyword] = ACTIONS(4956), + [sym__regular_ensure_keyword] = ACTIONS(4956), + [sym__string_literal_start] = ACTIONS(4956), + [sym__string_percent_literal_start] = ACTIONS(4956), + [sym__command_percent_literal_start] = ACTIONS(4956), + [sym__string_array_percent_literal_start] = ACTIONS(4956), + [sym__symbol_array_percent_literal_start] = ACTIONS(4956), + [sym__regex_percent_literal_start] = ACTIONS(4956), + [sym_heredoc_start] = ACTIONS(4956), [sym__heredoc_body_start] = ACTIONS(7), }, [2117] = { [sym_heredoc_body] = STATE(2117), - [sym_identifier] = ACTIONS(4921), - [anon_sym_SEMI] = ACTIONS(4923), - [anon_sym_LPAREN] = ACTIONS(4923), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4921), - [sym_true] = ACTIONS(4921), - [sym_false] = ACTIONS(4921), - [aux_sym_integer_token2] = ACTIONS(4921), - [aux_sym_float_token2] = ACTIONS(4923), - [anon_sym_SQUOTE] = ACTIONS(4923), - [sym_operator_symbol] = ACTIONS(4923), - [sym_unquoted_symbol] = ACTIONS(4923), - [anon_sym_COLON_DQUOTE] = ACTIONS(4923), - [anon_sym_BQUOTE] = ACTIONS(4923), - [anon_sym_LBRACK] = ACTIONS(4923), - [anon_sym_DASH_GT] = ACTIONS(4923), - [anon_sym_annotation] = ACTIONS(4921), - [anon_sym_end] = ACTIONS(4921), - [anon_sym_AT_LBRACK] = ACTIONS(4923), - [anon_sym_private] = ACTIONS(4921), - [anon_sym_module] = ACTIONS(4921), - [anon_sym_abstract] = ACTIONS(4921), - [anon_sym_class] = ACTIONS(4921), - [anon_sym_struct] = ACTIONS(4921), - [anon_sym_enum] = ACTIONS(4921), - [anon_sym_STAR] = ACTIONS(4923), - [anon_sym_BANG] = ACTIONS(4923), - [anon_sym_TILDE] = ACTIONS(4923), - [anon_sym_def] = ACTIONS(4921), - [anon_sym_protected] = ACTIONS(4921), - [anon_sym_include] = ACTIONS(4921), - [anon_sym_extend] = ACTIONS(4921), - [anon_sym_return] = ACTIONS(4921), - [anon_sym_next] = ACTIONS(4921), - [anon_sym_break] = ACTIONS(4921), - [anon_sym_with] = ACTIONS(4921), - [anon_sym_yield] = ACTIONS(4921), - [anon_sym_typeof] = ACTIONS(4921), - [anon_sym_sizeof] = ACTIONS(4921), - [anon_sym_instance_sizeof] = ACTIONS(4921), - [anon_sym_offsetof] = ACTIONS(4921), - [sym__constant_segment] = ACTIONS(4923), - [anon_sym_COLON_COLON] = ACTIONS(4923), - [anon_sym___LINE__] = ACTIONS(4921), - [anon_sym___END_LINE__] = ACTIONS(4921), - [anon_sym___FILE__] = ACTIONS(4921), - [anon_sym___DIR__] = ACTIONS(4921), - [sym_special_variable] = ACTIONS(4923), - [sym_identifier_method_call] = ACTIONS(4923), - [sym_instance_var] = ACTIONS(4923), - [sym_class_var] = ACTIONS(4923), - [sym_self] = ACTIONS(4921), - [anon_sym_alias] = ACTIONS(4921), - [anon_sym_begin] = ACTIONS(4921), - [anon_sym_while] = ACTIONS(4921), - [anon_sym_until] = ACTIONS(4921), - [anon_sym_else] = ACTIONS(4921), - [anon_sym_require] = ACTIONS(4921), - [anon_sym_case] = ACTIONS(4921), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4923), - [sym__start_of_named_tuple] = ACTIONS(4923), - [sym_unary_plus] = ACTIONS(4923), - [sym_unary_minus] = ACTIONS(4923), - [sym_unary_wrapping_plus] = ACTIONS(4923), - [sym_unary_wrapping_minus] = ACTIONS(4923), - [sym__beginless_range_operator] = ACTIONS(4923), - [sym__regex_start] = ACTIONS(4923), - [sym__regular_if_keyword] = ACTIONS(4923), - [sym__regular_unless_keyword] = ACTIONS(4923), - [sym__regular_rescue_keyword] = ACTIONS(4923), - [sym__regular_ensure_keyword] = ACTIONS(4923), - [sym__string_literal_start] = ACTIONS(4923), - [sym__string_percent_literal_start] = ACTIONS(4923), - [sym__command_percent_literal_start] = ACTIONS(4923), - [sym__string_array_percent_literal_start] = ACTIONS(4923), - [sym__symbol_array_percent_literal_start] = ACTIONS(4923), - [sym__regex_percent_literal_start] = ACTIONS(4923), - [sym_heredoc_start] = ACTIONS(4923), + [sym_identifier] = ACTIONS(4958), + [anon_sym_SEMI] = ACTIONS(4960), + [anon_sym_LPAREN] = ACTIONS(4960), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4958), + [sym_true] = ACTIONS(4958), + [sym_false] = ACTIONS(4958), + [aux_sym_integer_token2] = ACTIONS(4958), + [aux_sym_float_token2] = ACTIONS(4960), + [anon_sym_SQUOTE] = ACTIONS(4960), + [sym_operator_symbol] = ACTIONS(4960), + [sym_unquoted_symbol] = ACTIONS(4960), + [anon_sym_COLON_DQUOTE] = ACTIONS(4960), + [anon_sym_BQUOTE] = ACTIONS(4960), + [anon_sym_LBRACK] = ACTIONS(4960), + [anon_sym_DASH_GT] = ACTIONS(4960), + [anon_sym_annotation] = ACTIONS(4958), + [anon_sym_end] = ACTIONS(4958), + [anon_sym_AT_LBRACK] = ACTIONS(4960), + [anon_sym_private] = ACTIONS(4958), + [anon_sym_module] = ACTIONS(4958), + [anon_sym_abstract] = ACTIONS(4958), + [anon_sym_class] = ACTIONS(4958), + [anon_sym_struct] = ACTIONS(4958), + [anon_sym_enum] = ACTIONS(4958), + [anon_sym_STAR] = ACTIONS(4960), + [anon_sym_BANG] = ACTIONS(4960), + [anon_sym_TILDE] = ACTIONS(4960), + [anon_sym_def] = ACTIONS(4958), + [anon_sym_protected] = ACTIONS(4958), + [anon_sym_include] = ACTIONS(4958), + [anon_sym_extend] = ACTIONS(4958), + [anon_sym_return] = ACTIONS(4958), + [anon_sym_next] = ACTIONS(4958), + [anon_sym_break] = ACTIONS(4958), + [anon_sym_with] = ACTIONS(4958), + [anon_sym_yield] = ACTIONS(4958), + [anon_sym_typeof] = ACTIONS(4958), + [anon_sym_sizeof] = ACTIONS(4958), + [anon_sym_instance_sizeof] = ACTIONS(4958), + [anon_sym_offsetof] = ACTIONS(4958), + [sym__constant_segment] = ACTIONS(4960), + [anon_sym_COLON_COLON] = ACTIONS(4960), + [anon_sym___LINE__] = ACTIONS(4958), + [anon_sym___END_LINE__] = ACTIONS(4958), + [anon_sym___FILE__] = ACTIONS(4958), + [anon_sym___DIR__] = ACTIONS(4958), + [sym_special_variable] = ACTIONS(4960), + [sym_identifier_method_call] = ACTIONS(4960), + [sym_instance_var] = ACTIONS(4960), + [sym_class_var] = ACTIONS(4960), + [sym_self] = ACTIONS(4958), + [anon_sym_alias] = ACTIONS(4958), + [anon_sym_begin] = ACTIONS(4958), + [anon_sym_while] = ACTIONS(4958), + [anon_sym_until] = ACTIONS(4958), + [anon_sym_else] = ACTIONS(4958), + [anon_sym_require] = ACTIONS(4958), + [anon_sym_case] = ACTIONS(4958), + [anon_sym_select] = ACTIONS(4958), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4960), + [sym__start_of_named_tuple] = ACTIONS(4960), + [sym_unary_plus] = ACTIONS(4960), + [sym_unary_minus] = ACTIONS(4960), + [sym_unary_wrapping_plus] = ACTIONS(4960), + [sym_unary_wrapping_minus] = ACTIONS(4960), + [sym__beginless_range_operator] = ACTIONS(4960), + [sym__regex_start] = ACTIONS(4960), + [sym__regular_if_keyword] = ACTIONS(4960), + [sym__regular_unless_keyword] = ACTIONS(4960), + [sym__regular_rescue_keyword] = ACTIONS(4960), + [sym__regular_ensure_keyword] = ACTIONS(4960), + [sym__string_literal_start] = ACTIONS(4960), + [sym__string_percent_literal_start] = ACTIONS(4960), + [sym__command_percent_literal_start] = ACTIONS(4960), + [sym__string_array_percent_literal_start] = ACTIONS(4960), + [sym__symbol_array_percent_literal_start] = ACTIONS(4960), + [sym__regex_percent_literal_start] = ACTIONS(4960), + [sym_heredoc_start] = ACTIONS(4960), [sym__heredoc_body_start] = ACTIONS(7), }, [2118] = { [sym_heredoc_body] = STATE(2118), - [sym_identifier] = ACTIONS(4925), - [anon_sym_SEMI] = ACTIONS(4927), - [anon_sym_LPAREN] = ACTIONS(4927), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4925), - [sym_true] = ACTIONS(4925), - [sym_false] = ACTIONS(4925), - [aux_sym_integer_token2] = ACTIONS(4925), - [aux_sym_float_token2] = ACTIONS(4927), - [anon_sym_SQUOTE] = ACTIONS(4927), - [sym_operator_symbol] = ACTIONS(4927), - [sym_unquoted_symbol] = ACTIONS(4927), - [anon_sym_COLON_DQUOTE] = ACTIONS(4927), - [anon_sym_BQUOTE] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(4927), - [anon_sym_DASH_GT] = ACTIONS(4927), - [anon_sym_annotation] = ACTIONS(4925), - [anon_sym_end] = ACTIONS(4925), - [anon_sym_AT_LBRACK] = ACTIONS(4927), - [anon_sym_private] = ACTIONS(4925), - [anon_sym_module] = ACTIONS(4925), - [anon_sym_abstract] = ACTIONS(4925), - [anon_sym_class] = ACTIONS(4925), - [anon_sym_struct] = ACTIONS(4925), - [anon_sym_enum] = ACTIONS(4925), - [anon_sym_STAR] = ACTIONS(4927), - [anon_sym_BANG] = ACTIONS(4927), - [anon_sym_TILDE] = ACTIONS(4927), - [anon_sym_def] = ACTIONS(4925), - [anon_sym_protected] = ACTIONS(4925), - [anon_sym_include] = ACTIONS(4925), - [anon_sym_extend] = ACTIONS(4925), - [anon_sym_return] = ACTIONS(4925), - [anon_sym_next] = ACTIONS(4925), - [anon_sym_break] = ACTIONS(4925), - [anon_sym_with] = ACTIONS(4925), - [anon_sym_yield] = ACTIONS(4925), - [anon_sym_typeof] = ACTIONS(4925), - [anon_sym_sizeof] = ACTIONS(4925), - [anon_sym_instance_sizeof] = ACTIONS(4925), - [anon_sym_offsetof] = ACTIONS(4925), - [sym__constant_segment] = ACTIONS(4927), - [anon_sym_COLON_COLON] = ACTIONS(4927), - [anon_sym___LINE__] = ACTIONS(4925), - [anon_sym___END_LINE__] = ACTIONS(4925), - [anon_sym___FILE__] = ACTIONS(4925), - [anon_sym___DIR__] = ACTIONS(4925), - [sym_special_variable] = ACTIONS(4927), - [sym_identifier_method_call] = ACTIONS(4927), - [sym_instance_var] = ACTIONS(4927), - [sym_class_var] = ACTIONS(4927), - [sym_self] = ACTIONS(4925), - [anon_sym_alias] = ACTIONS(4925), - [anon_sym_begin] = ACTIONS(4925), - [anon_sym_while] = ACTIONS(4925), - [anon_sym_until] = ACTIONS(4925), - [anon_sym_else] = ACTIONS(4925), - [anon_sym_require] = ACTIONS(4925), - [anon_sym_case] = ACTIONS(4925), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4927), - [sym__start_of_named_tuple] = ACTIONS(4927), - [sym_unary_plus] = ACTIONS(4927), - [sym_unary_minus] = ACTIONS(4927), - [sym_unary_wrapping_plus] = ACTIONS(4927), - [sym_unary_wrapping_minus] = ACTIONS(4927), - [sym__beginless_range_operator] = ACTIONS(4927), - [sym__regex_start] = ACTIONS(4927), - [sym__regular_if_keyword] = ACTIONS(4927), - [sym__regular_unless_keyword] = ACTIONS(4927), - [sym__regular_rescue_keyword] = ACTIONS(4927), - [sym__regular_ensure_keyword] = ACTIONS(4927), - [sym__string_literal_start] = ACTIONS(4927), - [sym__string_percent_literal_start] = ACTIONS(4927), - [sym__command_percent_literal_start] = ACTIONS(4927), - [sym__string_array_percent_literal_start] = ACTIONS(4927), - [sym__symbol_array_percent_literal_start] = ACTIONS(4927), - [sym__regex_percent_literal_start] = ACTIONS(4927), - [sym_heredoc_start] = ACTIONS(4927), + [sym_identifier] = ACTIONS(4962), + [anon_sym_SEMI] = ACTIONS(4964), + [anon_sym_LPAREN] = ACTIONS(4964), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4962), + [sym_true] = ACTIONS(4962), + [sym_false] = ACTIONS(4962), + [aux_sym_integer_token2] = ACTIONS(4962), + [aux_sym_float_token2] = ACTIONS(4964), + [anon_sym_SQUOTE] = ACTIONS(4964), + [sym_operator_symbol] = ACTIONS(4964), + [sym_unquoted_symbol] = ACTIONS(4964), + [anon_sym_COLON_DQUOTE] = ACTIONS(4964), + [anon_sym_BQUOTE] = ACTIONS(4964), + [anon_sym_LBRACK] = ACTIONS(4964), + [anon_sym_DASH_GT] = ACTIONS(4964), + [anon_sym_annotation] = ACTIONS(4962), + [anon_sym_end] = ACTIONS(4962), + [anon_sym_AT_LBRACK] = ACTIONS(4964), + [anon_sym_private] = ACTIONS(4962), + [anon_sym_module] = ACTIONS(4962), + [anon_sym_abstract] = ACTIONS(4962), + [anon_sym_class] = ACTIONS(4962), + [anon_sym_struct] = ACTIONS(4962), + [anon_sym_enum] = ACTIONS(4962), + [anon_sym_STAR] = ACTIONS(4964), + [anon_sym_BANG] = ACTIONS(4964), + [anon_sym_TILDE] = ACTIONS(4964), + [anon_sym_def] = ACTIONS(4962), + [anon_sym_protected] = ACTIONS(4962), + [anon_sym_include] = ACTIONS(4962), + [anon_sym_extend] = ACTIONS(4962), + [anon_sym_return] = ACTIONS(4962), + [anon_sym_next] = ACTIONS(4962), + [anon_sym_break] = ACTIONS(4962), + [anon_sym_with] = ACTIONS(4962), + [anon_sym_yield] = ACTIONS(4962), + [anon_sym_typeof] = ACTIONS(4962), + [anon_sym_sizeof] = ACTIONS(4962), + [anon_sym_instance_sizeof] = ACTIONS(4962), + [anon_sym_offsetof] = ACTIONS(4962), + [sym__constant_segment] = ACTIONS(4964), + [anon_sym_COLON_COLON] = ACTIONS(4964), + [anon_sym___LINE__] = ACTIONS(4962), + [anon_sym___END_LINE__] = ACTIONS(4962), + [anon_sym___FILE__] = ACTIONS(4962), + [anon_sym___DIR__] = ACTIONS(4962), + [sym_special_variable] = ACTIONS(4964), + [sym_identifier_method_call] = ACTIONS(4964), + [sym_instance_var] = ACTIONS(4964), + [sym_class_var] = ACTIONS(4964), + [sym_self] = ACTIONS(4962), + [anon_sym_alias] = ACTIONS(4962), + [anon_sym_begin] = ACTIONS(4962), + [anon_sym_while] = ACTIONS(4962), + [anon_sym_until] = ACTIONS(4962), + [anon_sym_else] = ACTIONS(4962), + [anon_sym_require] = ACTIONS(4962), + [anon_sym_case] = ACTIONS(4962), + [anon_sym_select] = ACTIONS(4962), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4964), + [sym__start_of_named_tuple] = ACTIONS(4964), + [sym_unary_plus] = ACTIONS(4964), + [sym_unary_minus] = ACTIONS(4964), + [sym_unary_wrapping_plus] = ACTIONS(4964), + [sym_unary_wrapping_minus] = ACTIONS(4964), + [sym__beginless_range_operator] = ACTIONS(4964), + [sym__regex_start] = ACTIONS(4964), + [sym__regular_if_keyword] = ACTIONS(4964), + [sym__regular_unless_keyword] = ACTIONS(4964), + [sym__regular_rescue_keyword] = ACTIONS(4964), + [sym__regular_ensure_keyword] = ACTIONS(4964), + [sym__string_literal_start] = ACTIONS(4964), + [sym__string_percent_literal_start] = ACTIONS(4964), + [sym__command_percent_literal_start] = ACTIONS(4964), + [sym__string_array_percent_literal_start] = ACTIONS(4964), + [sym__symbol_array_percent_literal_start] = ACTIONS(4964), + [sym__regex_percent_literal_start] = ACTIONS(4964), + [sym_heredoc_start] = ACTIONS(4964), [sym__heredoc_body_start] = ACTIONS(7), }, [2119] = { [sym_heredoc_body] = STATE(2119), - [sym_identifier] = ACTIONS(4929), - [anon_sym_SEMI] = ACTIONS(4931), - [anon_sym_LPAREN] = ACTIONS(4931), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4929), - [sym_true] = ACTIONS(4929), - [sym_false] = ACTIONS(4929), - [aux_sym_integer_token2] = ACTIONS(4929), - [aux_sym_float_token2] = ACTIONS(4931), - [anon_sym_SQUOTE] = ACTIONS(4931), - [sym_operator_symbol] = ACTIONS(4931), - [sym_unquoted_symbol] = ACTIONS(4931), - [anon_sym_COLON_DQUOTE] = ACTIONS(4931), - [anon_sym_BQUOTE] = ACTIONS(4931), - [anon_sym_LBRACK] = ACTIONS(4931), - [anon_sym_DASH_GT] = ACTIONS(4931), - [anon_sym_annotation] = ACTIONS(4929), - [anon_sym_end] = ACTIONS(4929), - [anon_sym_AT_LBRACK] = ACTIONS(4931), - [anon_sym_private] = ACTIONS(4929), - [anon_sym_module] = ACTIONS(4929), - [anon_sym_abstract] = ACTIONS(4929), - [anon_sym_class] = ACTIONS(4929), - [anon_sym_struct] = ACTIONS(4929), - [anon_sym_enum] = ACTIONS(4929), - [anon_sym_STAR] = ACTIONS(4931), - [anon_sym_BANG] = ACTIONS(4931), - [anon_sym_TILDE] = ACTIONS(4931), - [anon_sym_def] = ACTIONS(4929), - [anon_sym_protected] = ACTIONS(4929), - [anon_sym_include] = ACTIONS(4929), - [anon_sym_extend] = ACTIONS(4929), - [anon_sym_return] = ACTIONS(4929), - [anon_sym_next] = ACTIONS(4929), - [anon_sym_break] = ACTIONS(4929), - [anon_sym_with] = ACTIONS(4929), - [anon_sym_yield] = ACTIONS(4929), - [anon_sym_typeof] = ACTIONS(4929), - [anon_sym_sizeof] = ACTIONS(4929), - [anon_sym_instance_sizeof] = ACTIONS(4929), - [anon_sym_offsetof] = ACTIONS(4929), - [sym__constant_segment] = ACTIONS(4931), - [anon_sym_COLON_COLON] = ACTIONS(4931), - [anon_sym___LINE__] = ACTIONS(4929), - [anon_sym___END_LINE__] = ACTIONS(4929), - [anon_sym___FILE__] = ACTIONS(4929), - [anon_sym___DIR__] = ACTIONS(4929), - [sym_special_variable] = ACTIONS(4931), - [sym_identifier_method_call] = ACTIONS(4931), - [sym_instance_var] = ACTIONS(4931), - [sym_class_var] = ACTIONS(4931), - [sym_self] = ACTIONS(4929), - [anon_sym_alias] = ACTIONS(4929), - [anon_sym_begin] = ACTIONS(4929), - [anon_sym_while] = ACTIONS(4929), - [anon_sym_until] = ACTIONS(4929), - [anon_sym_else] = ACTIONS(4929), - [anon_sym_require] = ACTIONS(4929), - [anon_sym_case] = ACTIONS(4929), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4931), - [sym__start_of_named_tuple] = ACTIONS(4931), - [sym_unary_plus] = ACTIONS(4931), - [sym_unary_minus] = ACTIONS(4931), - [sym_unary_wrapping_plus] = ACTIONS(4931), - [sym_unary_wrapping_minus] = ACTIONS(4931), - [sym__beginless_range_operator] = ACTIONS(4931), - [sym__regex_start] = ACTIONS(4931), - [sym__regular_if_keyword] = ACTIONS(4931), - [sym__regular_unless_keyword] = ACTIONS(4931), - [sym__regular_rescue_keyword] = ACTIONS(4931), - [sym__regular_ensure_keyword] = ACTIONS(4931), - [sym__string_literal_start] = ACTIONS(4931), - [sym__string_percent_literal_start] = ACTIONS(4931), - [sym__command_percent_literal_start] = ACTIONS(4931), - [sym__string_array_percent_literal_start] = ACTIONS(4931), - [sym__symbol_array_percent_literal_start] = ACTIONS(4931), - [sym__regex_percent_literal_start] = ACTIONS(4931), - [sym_heredoc_start] = ACTIONS(4931), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1872), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [aux_sym_integer_token2] = ACTIONS(1872), + [aux_sym_float_token2] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [sym_operator_symbol] = ACTIONS(1831), + [sym_unquoted_symbol] = ACTIONS(1831), + [anon_sym_COLON_DQUOTE] = ACTIONS(1831), + [anon_sym_BQUOTE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_DASH_GT] = ACTIONS(1831), + [anon_sym_annotation] = ACTIONS(1872), + [anon_sym_end] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_abstract] = ACTIONS(1872), + [anon_sym_class] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_protected] = ACTIONS(1872), + [anon_sym_include] = ACTIONS(1872), + [anon_sym_extend] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_next] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_with] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym_sizeof] = ACTIONS(1872), + [anon_sym_instance_sizeof] = ACTIONS(1872), + [anon_sym_offsetof] = ACTIONS(1872), + [sym__constant_segment] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym___LINE__] = ACTIONS(1872), + [anon_sym___END_LINE__] = ACTIONS(1872), + [anon_sym___FILE__] = ACTIONS(1872), + [anon_sym___DIR__] = ACTIONS(1872), + [sym_special_variable] = ACTIONS(1831), + [sym_identifier_method_call] = ACTIONS(1831), + [sym_instance_var] = ACTIONS(1831), + [sym_class_var] = ACTIONS(1831), + [sym_self] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_begin] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_until] = ACTIONS(1872), + [anon_sym_else] = ACTIONS(1872), + [anon_sym_require] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_select] = ACTIONS(1872), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1831), + [sym__start_of_named_tuple] = ACTIONS(1831), + [sym_unary_plus] = ACTIONS(1831), + [sym_unary_minus] = ACTIONS(1831), + [sym_unary_wrapping_plus] = ACTIONS(1831), + [sym_unary_wrapping_minus] = ACTIONS(1831), + [sym__beginless_range_operator] = ACTIONS(1831), + [sym__regex_start] = ACTIONS(1831), + [sym__regular_if_keyword] = ACTIONS(1831), + [sym__regular_unless_keyword] = ACTIONS(1831), + [sym__regular_rescue_keyword] = ACTIONS(1831), + [sym__regular_ensure_keyword] = ACTIONS(1831), + [sym__string_literal_start] = ACTIONS(1831), + [sym__string_percent_literal_start] = ACTIONS(1831), + [sym__command_percent_literal_start] = ACTIONS(1831), + [sym__string_array_percent_literal_start] = ACTIONS(1831), + [sym__symbol_array_percent_literal_start] = ACTIONS(1831), + [sym__regex_percent_literal_start] = ACTIONS(1831), + [sym_heredoc_start] = ACTIONS(1831), [sym__heredoc_body_start] = ACTIONS(7), }, [2120] = { [sym_heredoc_body] = STATE(2120), - [sym_identifier] = ACTIONS(4933), - [anon_sym_SEMI] = ACTIONS(4935), - [anon_sym_LPAREN] = ACTIONS(4935), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4933), - [sym_true] = ACTIONS(4933), - [sym_false] = ACTIONS(4933), - [aux_sym_integer_token2] = ACTIONS(4933), - [aux_sym_float_token2] = ACTIONS(4935), - [anon_sym_SQUOTE] = ACTIONS(4935), - [sym_operator_symbol] = ACTIONS(4935), - [sym_unquoted_symbol] = ACTIONS(4935), - [anon_sym_COLON_DQUOTE] = ACTIONS(4935), - [anon_sym_BQUOTE] = ACTIONS(4935), - [anon_sym_LBRACK] = ACTIONS(4935), - [anon_sym_DASH_GT] = ACTIONS(4935), - [anon_sym_annotation] = ACTIONS(4933), - [anon_sym_end] = ACTIONS(4933), - [anon_sym_AT_LBRACK] = ACTIONS(4935), - [anon_sym_private] = ACTIONS(4933), - [anon_sym_module] = ACTIONS(4933), - [anon_sym_abstract] = ACTIONS(4933), - [anon_sym_class] = ACTIONS(4933), - [anon_sym_struct] = ACTIONS(4933), - [anon_sym_enum] = ACTIONS(4933), - [anon_sym_STAR] = ACTIONS(4935), - [anon_sym_BANG] = ACTIONS(4935), - [anon_sym_TILDE] = ACTIONS(4935), - [anon_sym_def] = ACTIONS(4933), - [anon_sym_protected] = ACTIONS(4933), - [anon_sym_include] = ACTIONS(4933), - [anon_sym_extend] = ACTIONS(4933), - [anon_sym_return] = ACTIONS(4933), - [anon_sym_next] = ACTIONS(4933), - [anon_sym_break] = ACTIONS(4933), - [anon_sym_with] = ACTIONS(4933), - [anon_sym_yield] = ACTIONS(4933), - [anon_sym_typeof] = ACTIONS(4933), - [anon_sym_sizeof] = ACTIONS(4933), - [anon_sym_instance_sizeof] = ACTIONS(4933), - [anon_sym_offsetof] = ACTIONS(4933), - [sym__constant_segment] = ACTIONS(4935), - [anon_sym_COLON_COLON] = ACTIONS(4935), - [anon_sym___LINE__] = ACTIONS(4933), - [anon_sym___END_LINE__] = ACTIONS(4933), - [anon_sym___FILE__] = ACTIONS(4933), - [anon_sym___DIR__] = ACTIONS(4933), - [sym_special_variable] = ACTIONS(4935), - [sym_identifier_method_call] = ACTIONS(4935), - [sym_instance_var] = ACTIONS(4935), - [sym_class_var] = ACTIONS(4935), - [sym_self] = ACTIONS(4933), - [anon_sym_alias] = ACTIONS(4933), - [anon_sym_begin] = ACTIONS(4933), - [anon_sym_while] = ACTIONS(4933), - [anon_sym_until] = ACTIONS(4933), - [anon_sym_else] = ACTIONS(4933), - [anon_sym_require] = ACTIONS(4933), - [anon_sym_case] = ACTIONS(4933), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4935), - [sym__start_of_named_tuple] = ACTIONS(4935), - [sym_unary_plus] = ACTIONS(4935), - [sym_unary_minus] = ACTIONS(4935), - [sym_unary_wrapping_plus] = ACTIONS(4935), - [sym_unary_wrapping_minus] = ACTIONS(4935), - [sym__beginless_range_operator] = ACTIONS(4935), - [sym__regex_start] = ACTIONS(4935), - [sym__regular_if_keyword] = ACTIONS(4935), - [sym__regular_unless_keyword] = ACTIONS(4935), - [sym__regular_rescue_keyword] = ACTIONS(4935), - [sym__regular_ensure_keyword] = ACTIONS(4935), - [sym__string_literal_start] = ACTIONS(4935), - [sym__string_percent_literal_start] = ACTIONS(4935), - [sym__command_percent_literal_start] = ACTIONS(4935), - [sym__string_array_percent_literal_start] = ACTIONS(4935), - [sym__symbol_array_percent_literal_start] = ACTIONS(4935), - [sym__regex_percent_literal_start] = ACTIONS(4935), - [sym_heredoc_start] = ACTIONS(4935), + [sym_identifier] = ACTIONS(4966), + [anon_sym_SEMI] = ACTIONS(4968), + [anon_sym_LPAREN] = ACTIONS(4968), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4966), + [sym_true] = ACTIONS(4966), + [sym_false] = ACTIONS(4966), + [aux_sym_integer_token2] = ACTIONS(4966), + [aux_sym_float_token2] = ACTIONS(4968), + [anon_sym_SQUOTE] = ACTIONS(4968), + [sym_operator_symbol] = ACTIONS(4968), + [sym_unquoted_symbol] = ACTIONS(4968), + [anon_sym_COLON_DQUOTE] = ACTIONS(4968), + [anon_sym_BQUOTE] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(4968), + [anon_sym_DASH_GT] = ACTIONS(4968), + [anon_sym_annotation] = ACTIONS(4966), + [anon_sym_end] = ACTIONS(4966), + [anon_sym_AT_LBRACK] = ACTIONS(4968), + [anon_sym_private] = ACTIONS(4966), + [anon_sym_module] = ACTIONS(4966), + [anon_sym_abstract] = ACTIONS(4966), + [anon_sym_class] = ACTIONS(4966), + [anon_sym_struct] = ACTIONS(4966), + [anon_sym_enum] = ACTIONS(4966), + [anon_sym_STAR] = ACTIONS(4968), + [anon_sym_BANG] = ACTIONS(4968), + [anon_sym_TILDE] = ACTIONS(4968), + [anon_sym_def] = ACTIONS(4966), + [anon_sym_protected] = ACTIONS(4966), + [anon_sym_include] = ACTIONS(4966), + [anon_sym_extend] = ACTIONS(4966), + [anon_sym_return] = ACTIONS(4966), + [anon_sym_next] = ACTIONS(4966), + [anon_sym_break] = ACTIONS(4966), + [anon_sym_with] = ACTIONS(4966), + [anon_sym_yield] = ACTIONS(4966), + [anon_sym_typeof] = ACTIONS(4966), + [anon_sym_sizeof] = ACTIONS(4966), + [anon_sym_instance_sizeof] = ACTIONS(4966), + [anon_sym_offsetof] = ACTIONS(4966), + [sym__constant_segment] = ACTIONS(4968), + [anon_sym_COLON_COLON] = ACTIONS(4968), + [anon_sym___LINE__] = ACTIONS(4966), + [anon_sym___END_LINE__] = ACTIONS(4966), + [anon_sym___FILE__] = ACTIONS(4966), + [anon_sym___DIR__] = ACTIONS(4966), + [sym_special_variable] = ACTIONS(4968), + [sym_identifier_method_call] = ACTIONS(4968), + [sym_instance_var] = ACTIONS(4968), + [sym_class_var] = ACTIONS(4968), + [sym_self] = ACTIONS(4966), + [anon_sym_alias] = ACTIONS(4966), + [anon_sym_begin] = ACTIONS(4966), + [anon_sym_while] = ACTIONS(4966), + [anon_sym_until] = ACTIONS(4966), + [anon_sym_else] = ACTIONS(4966), + [anon_sym_require] = ACTIONS(4966), + [anon_sym_case] = ACTIONS(4966), + [anon_sym_select] = ACTIONS(4966), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4968), + [sym__start_of_named_tuple] = ACTIONS(4968), + [sym_unary_plus] = ACTIONS(4968), + [sym_unary_minus] = ACTIONS(4968), + [sym_unary_wrapping_plus] = ACTIONS(4968), + [sym_unary_wrapping_minus] = ACTIONS(4968), + [sym__beginless_range_operator] = ACTIONS(4968), + [sym__regex_start] = ACTIONS(4968), + [sym__regular_if_keyword] = ACTIONS(4968), + [sym__regular_unless_keyword] = ACTIONS(4968), + [sym__regular_rescue_keyword] = ACTIONS(4968), + [sym__regular_ensure_keyword] = ACTIONS(4968), + [sym__string_literal_start] = ACTIONS(4968), + [sym__string_percent_literal_start] = ACTIONS(4968), + [sym__command_percent_literal_start] = ACTIONS(4968), + [sym__string_array_percent_literal_start] = ACTIONS(4968), + [sym__symbol_array_percent_literal_start] = ACTIONS(4968), + [sym__regex_percent_literal_start] = ACTIONS(4968), + [sym_heredoc_start] = ACTIONS(4968), [sym__heredoc_body_start] = ACTIONS(7), }, [2121] = { [sym_heredoc_body] = STATE(2121), - [sym_identifier] = ACTIONS(4937), - [anon_sym_SEMI] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4939), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4937), - [sym_true] = ACTIONS(4937), - [sym_false] = ACTIONS(4937), - [aux_sym_integer_token2] = ACTIONS(4937), - [aux_sym_float_token2] = ACTIONS(4939), - [anon_sym_SQUOTE] = ACTIONS(4939), - [sym_operator_symbol] = ACTIONS(4939), - [sym_unquoted_symbol] = ACTIONS(4939), - [anon_sym_COLON_DQUOTE] = ACTIONS(4939), - [anon_sym_BQUOTE] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4939), - [anon_sym_DASH_GT] = ACTIONS(4939), - [anon_sym_annotation] = ACTIONS(4937), - [anon_sym_end] = ACTIONS(4937), - [anon_sym_AT_LBRACK] = ACTIONS(4939), - [anon_sym_private] = ACTIONS(4937), - [anon_sym_module] = ACTIONS(4937), - [anon_sym_abstract] = ACTIONS(4937), - [anon_sym_class] = ACTIONS(4937), - [anon_sym_struct] = ACTIONS(4937), - [anon_sym_enum] = ACTIONS(4937), - [anon_sym_STAR] = ACTIONS(4939), - [anon_sym_BANG] = ACTIONS(4939), - [anon_sym_TILDE] = ACTIONS(4939), - [anon_sym_def] = ACTIONS(4937), - [anon_sym_protected] = ACTIONS(4937), - [anon_sym_include] = ACTIONS(4937), - [anon_sym_extend] = ACTIONS(4937), - [anon_sym_return] = ACTIONS(4937), - [anon_sym_next] = ACTIONS(4937), - [anon_sym_break] = ACTIONS(4937), - [anon_sym_with] = ACTIONS(4937), - [anon_sym_yield] = ACTIONS(4937), - [anon_sym_typeof] = ACTIONS(4937), - [anon_sym_sizeof] = ACTIONS(4937), - [anon_sym_instance_sizeof] = ACTIONS(4937), - [anon_sym_offsetof] = ACTIONS(4937), - [sym__constant_segment] = ACTIONS(4939), - [anon_sym_COLON_COLON] = ACTIONS(4939), - [anon_sym___LINE__] = ACTIONS(4937), - [anon_sym___END_LINE__] = ACTIONS(4937), - [anon_sym___FILE__] = ACTIONS(4937), - [anon_sym___DIR__] = ACTIONS(4937), - [sym_special_variable] = ACTIONS(4939), - [sym_identifier_method_call] = ACTIONS(4939), - [sym_instance_var] = ACTIONS(4939), - [sym_class_var] = ACTIONS(4939), - [sym_self] = ACTIONS(4937), - [anon_sym_alias] = ACTIONS(4937), - [anon_sym_begin] = ACTIONS(4937), - [anon_sym_while] = ACTIONS(4937), - [anon_sym_until] = ACTIONS(4937), - [anon_sym_else] = ACTIONS(4937), - [anon_sym_require] = ACTIONS(4937), - [anon_sym_case] = ACTIONS(4937), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4939), - [sym__start_of_named_tuple] = ACTIONS(4939), - [sym_unary_plus] = ACTIONS(4939), - [sym_unary_minus] = ACTIONS(4939), - [sym_unary_wrapping_plus] = ACTIONS(4939), - [sym_unary_wrapping_minus] = ACTIONS(4939), - [sym__beginless_range_operator] = ACTIONS(4939), - [sym__regex_start] = ACTIONS(4939), - [sym__regular_if_keyword] = ACTIONS(4939), - [sym__regular_unless_keyword] = ACTIONS(4939), - [sym__regular_rescue_keyword] = ACTIONS(4939), - [sym__regular_ensure_keyword] = ACTIONS(4939), - [sym__string_literal_start] = ACTIONS(4939), - [sym__string_percent_literal_start] = ACTIONS(4939), - [sym__command_percent_literal_start] = ACTIONS(4939), - [sym__string_array_percent_literal_start] = ACTIONS(4939), - [sym__symbol_array_percent_literal_start] = ACTIONS(4939), - [sym__regex_percent_literal_start] = ACTIONS(4939), - [sym_heredoc_start] = ACTIONS(4939), + [sym_identifier] = ACTIONS(4970), + [anon_sym_SEMI] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(4972), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4970), + [sym_true] = ACTIONS(4970), + [sym_false] = ACTIONS(4970), + [aux_sym_integer_token2] = ACTIONS(4970), + [aux_sym_float_token2] = ACTIONS(4972), + [anon_sym_SQUOTE] = ACTIONS(4972), + [sym_operator_symbol] = ACTIONS(4972), + [sym_unquoted_symbol] = ACTIONS(4972), + [anon_sym_COLON_DQUOTE] = ACTIONS(4972), + [anon_sym_BQUOTE] = ACTIONS(4972), + [anon_sym_LBRACK] = ACTIONS(4972), + [anon_sym_DASH_GT] = ACTIONS(4972), + [anon_sym_annotation] = ACTIONS(4970), + [anon_sym_end] = ACTIONS(4970), + [anon_sym_AT_LBRACK] = ACTIONS(4972), + [anon_sym_private] = ACTIONS(4970), + [anon_sym_module] = ACTIONS(4970), + [anon_sym_abstract] = ACTIONS(4970), + [anon_sym_class] = ACTIONS(4970), + [anon_sym_struct] = ACTIONS(4970), + [anon_sym_enum] = ACTIONS(4970), + [anon_sym_STAR] = ACTIONS(4972), + [anon_sym_BANG] = ACTIONS(4972), + [anon_sym_TILDE] = ACTIONS(4972), + [anon_sym_def] = ACTIONS(4970), + [anon_sym_protected] = ACTIONS(4970), + [anon_sym_include] = ACTIONS(4970), + [anon_sym_extend] = ACTIONS(4970), + [anon_sym_return] = ACTIONS(4970), + [anon_sym_next] = ACTIONS(4970), + [anon_sym_break] = ACTIONS(4970), + [anon_sym_with] = ACTIONS(4970), + [anon_sym_yield] = ACTIONS(4970), + [anon_sym_typeof] = ACTIONS(4970), + [anon_sym_sizeof] = ACTIONS(4970), + [anon_sym_instance_sizeof] = ACTIONS(4970), + [anon_sym_offsetof] = ACTIONS(4970), + [sym__constant_segment] = ACTIONS(4972), + [anon_sym_COLON_COLON] = ACTIONS(4972), + [anon_sym___LINE__] = ACTIONS(4970), + [anon_sym___END_LINE__] = ACTIONS(4970), + [anon_sym___FILE__] = ACTIONS(4970), + [anon_sym___DIR__] = ACTIONS(4970), + [sym_special_variable] = ACTIONS(4972), + [sym_identifier_method_call] = ACTIONS(4972), + [sym_instance_var] = ACTIONS(4972), + [sym_class_var] = ACTIONS(4972), + [sym_self] = ACTIONS(4970), + [anon_sym_alias] = ACTIONS(4970), + [anon_sym_begin] = ACTIONS(4970), + [anon_sym_while] = ACTIONS(4970), + [anon_sym_until] = ACTIONS(4970), + [anon_sym_else] = ACTIONS(4970), + [anon_sym_require] = ACTIONS(4970), + [anon_sym_case] = ACTIONS(4970), + [anon_sym_select] = ACTIONS(4970), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4972), + [sym__start_of_named_tuple] = ACTIONS(4972), + [sym_unary_plus] = ACTIONS(4972), + [sym_unary_minus] = ACTIONS(4972), + [sym_unary_wrapping_plus] = ACTIONS(4972), + [sym_unary_wrapping_minus] = ACTIONS(4972), + [sym__beginless_range_operator] = ACTIONS(4972), + [sym__regex_start] = ACTIONS(4972), + [sym__regular_if_keyword] = ACTIONS(4972), + [sym__regular_unless_keyword] = ACTIONS(4972), + [sym__regular_rescue_keyword] = ACTIONS(4972), + [sym__regular_ensure_keyword] = ACTIONS(4972), + [sym__string_literal_start] = ACTIONS(4972), + [sym__string_percent_literal_start] = ACTIONS(4972), + [sym__command_percent_literal_start] = ACTIONS(4972), + [sym__string_array_percent_literal_start] = ACTIONS(4972), + [sym__symbol_array_percent_literal_start] = ACTIONS(4972), + [sym__regex_percent_literal_start] = ACTIONS(4972), + [sym_heredoc_start] = ACTIONS(4972), [sym__heredoc_body_start] = ACTIONS(7), }, [2122] = { [sym_heredoc_body] = STATE(2122), - [sym_identifier] = ACTIONS(4765), - [anon_sym_SEMI] = ACTIONS(4763), - [anon_sym_LPAREN] = ACTIONS(4763), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4765), - [sym_true] = ACTIONS(4765), - [sym_false] = ACTIONS(4765), - [aux_sym_integer_token2] = ACTIONS(4765), - [aux_sym_float_token2] = ACTIONS(4763), - [anon_sym_SQUOTE] = ACTIONS(4763), - [sym_operator_symbol] = ACTIONS(4763), - [sym_unquoted_symbol] = ACTIONS(4763), - [anon_sym_COLON_DQUOTE] = ACTIONS(4763), - [anon_sym_BQUOTE] = ACTIONS(4763), - [anon_sym_LBRACK] = ACTIONS(4763), - [anon_sym_DASH_GT] = ACTIONS(4763), - [anon_sym_annotation] = ACTIONS(4765), - [anon_sym_end] = ACTIONS(4765), - [anon_sym_AT_LBRACK] = ACTIONS(4763), - [anon_sym_private] = ACTIONS(4765), - [anon_sym_module] = ACTIONS(4765), - [anon_sym_abstract] = ACTIONS(4765), - [anon_sym_class] = ACTIONS(4765), - [anon_sym_struct] = ACTIONS(4765), - [anon_sym_enum] = ACTIONS(4765), - [anon_sym_STAR] = ACTIONS(4763), - [anon_sym_BANG] = ACTIONS(4763), - [anon_sym_TILDE] = ACTIONS(4763), - [anon_sym_def] = ACTIONS(4765), - [anon_sym_protected] = ACTIONS(4765), - [anon_sym_include] = ACTIONS(4765), - [anon_sym_extend] = ACTIONS(4765), - [anon_sym_return] = ACTIONS(4765), - [anon_sym_next] = ACTIONS(4765), - [anon_sym_break] = ACTIONS(4765), - [anon_sym_with] = ACTIONS(4765), - [anon_sym_yield] = ACTIONS(4765), - [anon_sym_typeof] = ACTIONS(4765), - [anon_sym_sizeof] = ACTIONS(4765), - [anon_sym_instance_sizeof] = ACTIONS(4765), - [anon_sym_offsetof] = ACTIONS(4765), - [sym__constant_segment] = ACTIONS(4763), - [anon_sym_COLON_COLON] = ACTIONS(4763), - [anon_sym___LINE__] = ACTIONS(4765), - [anon_sym___END_LINE__] = ACTIONS(4765), - [anon_sym___FILE__] = ACTIONS(4765), - [anon_sym___DIR__] = ACTIONS(4765), - [sym_special_variable] = ACTIONS(4763), - [sym_identifier_method_call] = ACTIONS(4763), - [sym_instance_var] = ACTIONS(4763), - [sym_class_var] = ACTIONS(4763), - [sym_self] = ACTIONS(4765), - [anon_sym_alias] = ACTIONS(4765), - [anon_sym_begin] = ACTIONS(4765), - [anon_sym_while] = ACTIONS(4765), - [anon_sym_until] = ACTIONS(4765), - [anon_sym_else] = ACTIONS(4765), - [anon_sym_require] = ACTIONS(4765), - [anon_sym_case] = ACTIONS(4765), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4763), - [sym__start_of_named_tuple] = ACTIONS(4763), - [sym_unary_plus] = ACTIONS(4763), - [sym_unary_minus] = ACTIONS(4763), - [sym_unary_wrapping_plus] = ACTIONS(4763), - [sym_unary_wrapping_minus] = ACTIONS(4763), - [sym__beginless_range_operator] = ACTIONS(4763), - [sym__regex_start] = ACTIONS(4763), - [sym__regular_if_keyword] = ACTIONS(4763), - [sym__regular_unless_keyword] = ACTIONS(4763), - [sym__regular_rescue_keyword] = ACTIONS(4763), - [sym__regular_ensure_keyword] = ACTIONS(4763), - [sym__string_literal_start] = ACTIONS(4763), - [sym__string_percent_literal_start] = ACTIONS(4763), - [sym__command_percent_literal_start] = ACTIONS(4763), - [sym__string_array_percent_literal_start] = ACTIONS(4763), - [sym__symbol_array_percent_literal_start] = ACTIONS(4763), - [sym__regex_percent_literal_start] = ACTIONS(4763), - [sym_heredoc_start] = ACTIONS(4763), + [sym_identifier] = ACTIONS(4974), + [anon_sym_SEMI] = ACTIONS(4976), + [anon_sym_LPAREN] = ACTIONS(4976), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4974), + [sym_true] = ACTIONS(4974), + [sym_false] = ACTIONS(4974), + [aux_sym_integer_token2] = ACTIONS(4974), + [aux_sym_float_token2] = ACTIONS(4976), + [anon_sym_SQUOTE] = ACTIONS(4976), + [sym_operator_symbol] = ACTIONS(4976), + [sym_unquoted_symbol] = ACTIONS(4976), + [anon_sym_COLON_DQUOTE] = ACTIONS(4976), + [anon_sym_BQUOTE] = ACTIONS(4976), + [anon_sym_LBRACK] = ACTIONS(4976), + [anon_sym_DASH_GT] = ACTIONS(4976), + [anon_sym_annotation] = ACTIONS(4974), + [anon_sym_end] = ACTIONS(4974), + [anon_sym_AT_LBRACK] = ACTIONS(4976), + [anon_sym_private] = ACTIONS(4974), + [anon_sym_module] = ACTIONS(4974), + [anon_sym_abstract] = ACTIONS(4974), + [anon_sym_class] = ACTIONS(4974), + [anon_sym_struct] = ACTIONS(4974), + [anon_sym_enum] = ACTIONS(4974), + [anon_sym_STAR] = ACTIONS(4976), + [anon_sym_BANG] = ACTIONS(4976), + [anon_sym_TILDE] = ACTIONS(4976), + [anon_sym_def] = ACTIONS(4974), + [anon_sym_protected] = ACTIONS(4974), + [anon_sym_include] = ACTIONS(4974), + [anon_sym_extend] = ACTIONS(4974), + [anon_sym_return] = ACTIONS(4974), + [anon_sym_next] = ACTIONS(4974), + [anon_sym_break] = ACTIONS(4974), + [anon_sym_with] = ACTIONS(4974), + [anon_sym_yield] = ACTIONS(4974), + [anon_sym_typeof] = ACTIONS(4974), + [anon_sym_sizeof] = ACTIONS(4974), + [anon_sym_instance_sizeof] = ACTIONS(4974), + [anon_sym_offsetof] = ACTIONS(4974), + [sym__constant_segment] = ACTIONS(4976), + [anon_sym_COLON_COLON] = ACTIONS(4976), + [anon_sym___LINE__] = ACTIONS(4974), + [anon_sym___END_LINE__] = ACTIONS(4974), + [anon_sym___FILE__] = ACTIONS(4974), + [anon_sym___DIR__] = ACTIONS(4974), + [sym_special_variable] = ACTIONS(4976), + [sym_identifier_method_call] = ACTIONS(4976), + [sym_instance_var] = ACTIONS(4976), + [sym_class_var] = ACTIONS(4976), + [sym_self] = ACTIONS(4974), + [anon_sym_alias] = ACTIONS(4974), + [anon_sym_begin] = ACTIONS(4974), + [anon_sym_while] = ACTIONS(4974), + [anon_sym_until] = ACTIONS(4974), + [anon_sym_else] = ACTIONS(4974), + [anon_sym_require] = ACTIONS(4974), + [anon_sym_case] = ACTIONS(4974), + [anon_sym_select] = ACTIONS(4974), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4976), + [sym__start_of_named_tuple] = ACTIONS(4976), + [sym_unary_plus] = ACTIONS(4976), + [sym_unary_minus] = ACTIONS(4976), + [sym_unary_wrapping_plus] = ACTIONS(4976), + [sym_unary_wrapping_minus] = ACTIONS(4976), + [sym__beginless_range_operator] = ACTIONS(4976), + [sym__regex_start] = ACTIONS(4976), + [sym__regular_if_keyword] = ACTIONS(4976), + [sym__regular_unless_keyword] = ACTIONS(4976), + [sym__regular_rescue_keyword] = ACTIONS(4976), + [sym__regular_ensure_keyword] = ACTIONS(4976), + [sym__string_literal_start] = ACTIONS(4976), + [sym__string_percent_literal_start] = ACTIONS(4976), + [sym__command_percent_literal_start] = ACTIONS(4976), + [sym__string_array_percent_literal_start] = ACTIONS(4976), + [sym__symbol_array_percent_literal_start] = ACTIONS(4976), + [sym__regex_percent_literal_start] = ACTIONS(4976), + [sym_heredoc_start] = ACTIONS(4976), [sym__heredoc_body_start] = ACTIONS(7), }, [2123] = { [sym_heredoc_body] = STATE(2123), - [sym_identifier] = ACTIONS(4941), - [anon_sym_SEMI] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4943), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4941), - [sym_true] = ACTIONS(4941), - [sym_false] = ACTIONS(4941), - [aux_sym_integer_token2] = ACTIONS(4941), - [aux_sym_float_token2] = ACTIONS(4943), - [anon_sym_SQUOTE] = ACTIONS(4943), - [sym_operator_symbol] = ACTIONS(4943), - [sym_unquoted_symbol] = ACTIONS(4943), - [anon_sym_COLON_DQUOTE] = ACTIONS(4943), - [anon_sym_BQUOTE] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4943), - [anon_sym_DASH_GT] = ACTIONS(4943), - [anon_sym_annotation] = ACTIONS(4941), - [anon_sym_end] = ACTIONS(4941), - [anon_sym_AT_LBRACK] = ACTIONS(4943), - [anon_sym_private] = ACTIONS(4941), - [anon_sym_module] = ACTIONS(4941), - [anon_sym_abstract] = ACTIONS(4941), - [anon_sym_class] = ACTIONS(4941), - [anon_sym_struct] = ACTIONS(4941), - [anon_sym_enum] = ACTIONS(4941), - [anon_sym_STAR] = ACTIONS(4943), - [anon_sym_BANG] = ACTIONS(4943), - [anon_sym_TILDE] = ACTIONS(4943), - [anon_sym_def] = ACTIONS(4941), - [anon_sym_protected] = ACTIONS(4941), - [anon_sym_include] = ACTIONS(4941), - [anon_sym_extend] = ACTIONS(4941), - [anon_sym_return] = ACTIONS(4941), - [anon_sym_next] = ACTIONS(4941), - [anon_sym_break] = ACTIONS(4941), - [anon_sym_with] = ACTIONS(4941), - [anon_sym_yield] = ACTIONS(4941), - [anon_sym_typeof] = ACTIONS(4941), - [anon_sym_sizeof] = ACTIONS(4941), - [anon_sym_instance_sizeof] = ACTIONS(4941), - [anon_sym_offsetof] = ACTIONS(4941), - [sym__constant_segment] = ACTIONS(4943), - [anon_sym_COLON_COLON] = ACTIONS(4943), - [anon_sym___LINE__] = ACTIONS(4941), - [anon_sym___END_LINE__] = ACTIONS(4941), - [anon_sym___FILE__] = ACTIONS(4941), - [anon_sym___DIR__] = ACTIONS(4941), - [sym_special_variable] = ACTIONS(4943), - [sym_identifier_method_call] = ACTIONS(4943), - [sym_instance_var] = ACTIONS(4943), - [sym_class_var] = ACTIONS(4943), - [sym_self] = ACTIONS(4941), - [anon_sym_alias] = ACTIONS(4941), - [anon_sym_begin] = ACTIONS(4941), - [anon_sym_while] = ACTIONS(4941), - [anon_sym_until] = ACTIONS(4941), - [anon_sym_else] = ACTIONS(4941), - [anon_sym_require] = ACTIONS(4941), - [anon_sym_case] = ACTIONS(4941), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4943), - [sym__start_of_named_tuple] = ACTIONS(4943), - [sym_unary_plus] = ACTIONS(4943), - [sym_unary_minus] = ACTIONS(4943), - [sym_unary_wrapping_plus] = ACTIONS(4943), - [sym_unary_wrapping_minus] = ACTIONS(4943), - [sym__beginless_range_operator] = ACTIONS(4943), - [sym__regex_start] = ACTIONS(4943), - [sym__regular_if_keyword] = ACTIONS(4943), - [sym__regular_unless_keyword] = ACTIONS(4943), - [sym__regular_rescue_keyword] = ACTIONS(4943), - [sym__regular_ensure_keyword] = ACTIONS(4943), - [sym__string_literal_start] = ACTIONS(4943), - [sym__string_percent_literal_start] = ACTIONS(4943), - [sym__command_percent_literal_start] = ACTIONS(4943), - [sym__string_array_percent_literal_start] = ACTIONS(4943), - [sym__symbol_array_percent_literal_start] = ACTIONS(4943), - [sym__regex_percent_literal_start] = ACTIONS(4943), - [sym_heredoc_start] = ACTIONS(4943), + [sym_identifier] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(4980), + [anon_sym_LPAREN] = ACTIONS(4980), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4978), + [sym_true] = ACTIONS(4978), + [sym_false] = ACTIONS(4978), + [aux_sym_integer_token2] = ACTIONS(4978), + [aux_sym_float_token2] = ACTIONS(4980), + [anon_sym_SQUOTE] = ACTIONS(4980), + [sym_operator_symbol] = ACTIONS(4980), + [sym_unquoted_symbol] = ACTIONS(4980), + [anon_sym_COLON_DQUOTE] = ACTIONS(4980), + [anon_sym_BQUOTE] = ACTIONS(4980), + [anon_sym_LBRACK] = ACTIONS(4980), + [anon_sym_DASH_GT] = ACTIONS(4980), + [anon_sym_annotation] = ACTIONS(4978), + [anon_sym_end] = ACTIONS(4978), + [anon_sym_AT_LBRACK] = ACTIONS(4980), + [anon_sym_private] = ACTIONS(4978), + [anon_sym_module] = ACTIONS(4978), + [anon_sym_abstract] = ACTIONS(4978), + [anon_sym_class] = ACTIONS(4978), + [anon_sym_struct] = ACTIONS(4978), + [anon_sym_enum] = ACTIONS(4978), + [anon_sym_STAR] = ACTIONS(4980), + [anon_sym_BANG] = ACTIONS(4980), + [anon_sym_TILDE] = ACTIONS(4980), + [anon_sym_def] = ACTIONS(4978), + [anon_sym_protected] = ACTIONS(4978), + [anon_sym_include] = ACTIONS(4978), + [anon_sym_extend] = ACTIONS(4978), + [anon_sym_return] = ACTIONS(4978), + [anon_sym_next] = ACTIONS(4978), + [anon_sym_break] = ACTIONS(4978), + [anon_sym_with] = ACTIONS(4978), + [anon_sym_yield] = ACTIONS(4978), + [anon_sym_typeof] = ACTIONS(4978), + [anon_sym_sizeof] = ACTIONS(4978), + [anon_sym_instance_sizeof] = ACTIONS(4978), + [anon_sym_offsetof] = ACTIONS(4978), + [sym__constant_segment] = ACTIONS(4980), + [anon_sym_COLON_COLON] = ACTIONS(4980), + [anon_sym___LINE__] = ACTIONS(4978), + [anon_sym___END_LINE__] = ACTIONS(4978), + [anon_sym___FILE__] = ACTIONS(4978), + [anon_sym___DIR__] = ACTIONS(4978), + [sym_special_variable] = ACTIONS(4980), + [sym_identifier_method_call] = ACTIONS(4980), + [sym_instance_var] = ACTIONS(4980), + [sym_class_var] = ACTIONS(4980), + [sym_self] = ACTIONS(4978), + [anon_sym_alias] = ACTIONS(4978), + [anon_sym_begin] = ACTIONS(4978), + [anon_sym_while] = ACTIONS(4978), + [anon_sym_until] = ACTIONS(4978), + [anon_sym_else] = ACTIONS(4978), + [anon_sym_require] = ACTIONS(4978), + [anon_sym_case] = ACTIONS(4978), + [anon_sym_select] = ACTIONS(4978), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4980), + [sym__start_of_named_tuple] = ACTIONS(4980), + [sym_unary_plus] = ACTIONS(4980), + [sym_unary_minus] = ACTIONS(4980), + [sym_unary_wrapping_plus] = ACTIONS(4980), + [sym_unary_wrapping_minus] = ACTIONS(4980), + [sym__beginless_range_operator] = ACTIONS(4980), + [sym__regex_start] = ACTIONS(4980), + [sym__regular_if_keyword] = ACTIONS(4980), + [sym__regular_unless_keyword] = ACTIONS(4980), + [sym__regular_rescue_keyword] = ACTIONS(4980), + [sym__regular_ensure_keyword] = ACTIONS(4980), + [sym__string_literal_start] = ACTIONS(4980), + [sym__string_percent_literal_start] = ACTIONS(4980), + [sym__command_percent_literal_start] = ACTIONS(4980), + [sym__string_array_percent_literal_start] = ACTIONS(4980), + [sym__symbol_array_percent_literal_start] = ACTIONS(4980), + [sym__regex_percent_literal_start] = ACTIONS(4980), + [sym_heredoc_start] = ACTIONS(4980), [sym__heredoc_body_start] = ACTIONS(7), }, [2124] = { [sym_heredoc_body] = STATE(2124), - [sym_identifier] = ACTIONS(4945), - [anon_sym_SEMI] = ACTIONS(4947), - [anon_sym_LPAREN] = ACTIONS(4947), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4945), - [sym_true] = ACTIONS(4945), - [sym_false] = ACTIONS(4945), - [aux_sym_integer_token2] = ACTIONS(4945), - [aux_sym_float_token2] = ACTIONS(4947), - [anon_sym_SQUOTE] = ACTIONS(4947), - [sym_operator_symbol] = ACTIONS(4947), - [sym_unquoted_symbol] = ACTIONS(4947), - [anon_sym_COLON_DQUOTE] = ACTIONS(4947), - [anon_sym_BQUOTE] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4947), - [anon_sym_DASH_GT] = ACTIONS(4947), - [anon_sym_annotation] = ACTIONS(4945), - [anon_sym_end] = ACTIONS(4945), - [anon_sym_AT_LBRACK] = ACTIONS(4947), - [anon_sym_private] = ACTIONS(4945), - [anon_sym_module] = ACTIONS(4945), - [anon_sym_abstract] = ACTIONS(4945), - [anon_sym_class] = ACTIONS(4945), - [anon_sym_struct] = ACTIONS(4945), - [anon_sym_enum] = ACTIONS(4945), - [anon_sym_STAR] = ACTIONS(4947), - [anon_sym_BANG] = ACTIONS(4947), - [anon_sym_TILDE] = ACTIONS(4947), - [anon_sym_def] = ACTIONS(4945), - [anon_sym_protected] = ACTIONS(4945), - [anon_sym_include] = ACTIONS(4945), - [anon_sym_extend] = ACTIONS(4945), - [anon_sym_return] = ACTIONS(4945), - [anon_sym_next] = ACTIONS(4945), - [anon_sym_break] = ACTIONS(4945), - [anon_sym_with] = ACTIONS(4945), - [anon_sym_yield] = ACTIONS(4945), - [anon_sym_typeof] = ACTIONS(4945), - [anon_sym_sizeof] = ACTIONS(4945), - [anon_sym_instance_sizeof] = ACTIONS(4945), - [anon_sym_offsetof] = ACTIONS(4945), - [sym__constant_segment] = ACTIONS(4947), - [anon_sym_COLON_COLON] = ACTIONS(4947), - [anon_sym___LINE__] = ACTIONS(4945), - [anon_sym___END_LINE__] = ACTIONS(4945), - [anon_sym___FILE__] = ACTIONS(4945), - [anon_sym___DIR__] = ACTIONS(4945), - [sym_special_variable] = ACTIONS(4947), - [sym_identifier_method_call] = ACTIONS(4947), - [sym_instance_var] = ACTIONS(4947), - [sym_class_var] = ACTIONS(4947), - [sym_self] = ACTIONS(4945), - [anon_sym_alias] = ACTIONS(4945), - [anon_sym_begin] = ACTIONS(4945), - [anon_sym_while] = ACTIONS(4945), - [anon_sym_until] = ACTIONS(4945), - [anon_sym_else] = ACTIONS(4945), - [anon_sym_require] = ACTIONS(4945), - [anon_sym_case] = ACTIONS(4945), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4947), - [sym__start_of_named_tuple] = ACTIONS(4947), - [sym_unary_plus] = ACTIONS(4947), - [sym_unary_minus] = ACTIONS(4947), - [sym_unary_wrapping_plus] = ACTIONS(4947), - [sym_unary_wrapping_minus] = ACTIONS(4947), - [sym__beginless_range_operator] = ACTIONS(4947), - [sym__regex_start] = ACTIONS(4947), - [sym__regular_if_keyword] = ACTIONS(4947), - [sym__regular_unless_keyword] = ACTIONS(4947), - [sym__regular_rescue_keyword] = ACTIONS(4947), - [sym__regular_ensure_keyword] = ACTIONS(4947), - [sym__string_literal_start] = ACTIONS(4947), - [sym__string_percent_literal_start] = ACTIONS(4947), - [sym__command_percent_literal_start] = ACTIONS(4947), - [sym__string_array_percent_literal_start] = ACTIONS(4947), - [sym__symbol_array_percent_literal_start] = ACTIONS(4947), - [sym__regex_percent_literal_start] = ACTIONS(4947), - [sym_heredoc_start] = ACTIONS(4947), + [sym_identifier] = ACTIONS(4982), + [anon_sym_SEMI] = ACTIONS(4984), + [anon_sym_LPAREN] = ACTIONS(4984), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4982), + [sym_true] = ACTIONS(4982), + [sym_false] = ACTIONS(4982), + [aux_sym_integer_token2] = ACTIONS(4982), + [aux_sym_float_token2] = ACTIONS(4984), + [anon_sym_SQUOTE] = ACTIONS(4984), + [sym_operator_symbol] = ACTIONS(4984), + [sym_unquoted_symbol] = ACTIONS(4984), + [anon_sym_COLON_DQUOTE] = ACTIONS(4984), + [anon_sym_BQUOTE] = ACTIONS(4984), + [anon_sym_LBRACK] = ACTIONS(4984), + [anon_sym_DASH_GT] = ACTIONS(4984), + [anon_sym_annotation] = ACTIONS(4982), + [anon_sym_end] = ACTIONS(4982), + [anon_sym_AT_LBRACK] = ACTIONS(4984), + [anon_sym_private] = ACTIONS(4982), + [anon_sym_module] = ACTIONS(4982), + [anon_sym_abstract] = ACTIONS(4982), + [anon_sym_class] = ACTIONS(4982), + [anon_sym_struct] = ACTIONS(4982), + [anon_sym_enum] = ACTIONS(4982), + [anon_sym_STAR] = ACTIONS(4984), + [anon_sym_BANG] = ACTIONS(4984), + [anon_sym_TILDE] = ACTIONS(4984), + [anon_sym_def] = ACTIONS(4982), + [anon_sym_protected] = ACTIONS(4982), + [anon_sym_include] = ACTIONS(4982), + [anon_sym_extend] = ACTIONS(4982), + [anon_sym_return] = ACTIONS(4982), + [anon_sym_next] = ACTIONS(4982), + [anon_sym_break] = ACTIONS(4982), + [anon_sym_with] = ACTIONS(4982), + [anon_sym_yield] = ACTIONS(4982), + [anon_sym_typeof] = ACTIONS(4982), + [anon_sym_sizeof] = ACTIONS(4982), + [anon_sym_instance_sizeof] = ACTIONS(4982), + [anon_sym_offsetof] = ACTIONS(4982), + [sym__constant_segment] = ACTIONS(4984), + [anon_sym_COLON_COLON] = ACTIONS(4984), + [anon_sym___LINE__] = ACTIONS(4982), + [anon_sym___END_LINE__] = ACTIONS(4982), + [anon_sym___FILE__] = ACTIONS(4982), + [anon_sym___DIR__] = ACTIONS(4982), + [sym_special_variable] = ACTIONS(4984), + [sym_identifier_method_call] = ACTIONS(4984), + [sym_instance_var] = ACTIONS(4984), + [sym_class_var] = ACTIONS(4984), + [sym_self] = ACTIONS(4982), + [anon_sym_alias] = ACTIONS(4982), + [anon_sym_begin] = ACTIONS(4982), + [anon_sym_while] = ACTIONS(4982), + [anon_sym_until] = ACTIONS(4982), + [anon_sym_else] = ACTIONS(4982), + [anon_sym_require] = ACTIONS(4982), + [anon_sym_case] = ACTIONS(4982), + [anon_sym_select] = ACTIONS(4982), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4984), + [sym__start_of_named_tuple] = ACTIONS(4984), + [sym_unary_plus] = ACTIONS(4984), + [sym_unary_minus] = ACTIONS(4984), + [sym_unary_wrapping_plus] = ACTIONS(4984), + [sym_unary_wrapping_minus] = ACTIONS(4984), + [sym__beginless_range_operator] = ACTIONS(4984), + [sym__regex_start] = ACTIONS(4984), + [sym__regular_if_keyword] = ACTIONS(4984), + [sym__regular_unless_keyword] = ACTIONS(4984), + [sym__regular_rescue_keyword] = ACTIONS(4984), + [sym__regular_ensure_keyword] = ACTIONS(4984), + [sym__string_literal_start] = ACTIONS(4984), + [sym__string_percent_literal_start] = ACTIONS(4984), + [sym__command_percent_literal_start] = ACTIONS(4984), + [sym__string_array_percent_literal_start] = ACTIONS(4984), + [sym__symbol_array_percent_literal_start] = ACTIONS(4984), + [sym__regex_percent_literal_start] = ACTIONS(4984), + [sym_heredoc_start] = ACTIONS(4984), [sym__heredoc_body_start] = ACTIONS(7), }, [2125] = { [sym_heredoc_body] = STATE(2125), - [sym_identifier] = ACTIONS(4949), - [anon_sym_SEMI] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4951), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4949), - [sym_true] = ACTIONS(4949), - [sym_false] = ACTIONS(4949), - [aux_sym_integer_token2] = ACTIONS(4949), - [aux_sym_float_token2] = ACTIONS(4951), - [anon_sym_SQUOTE] = ACTIONS(4951), - [sym_operator_symbol] = ACTIONS(4951), - [sym_unquoted_symbol] = ACTIONS(4951), - [anon_sym_COLON_DQUOTE] = ACTIONS(4951), - [anon_sym_BQUOTE] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4951), - [anon_sym_DASH_GT] = ACTIONS(4951), - [anon_sym_annotation] = ACTIONS(4949), - [anon_sym_end] = ACTIONS(4949), - [anon_sym_AT_LBRACK] = ACTIONS(4951), - [anon_sym_private] = ACTIONS(4949), - [anon_sym_module] = ACTIONS(4949), - [anon_sym_abstract] = ACTIONS(4949), - [anon_sym_class] = ACTIONS(4949), - [anon_sym_struct] = ACTIONS(4949), - [anon_sym_enum] = ACTIONS(4949), - [anon_sym_STAR] = ACTIONS(4951), - [anon_sym_BANG] = ACTIONS(4951), - [anon_sym_TILDE] = ACTIONS(4951), - [anon_sym_def] = ACTIONS(4949), - [anon_sym_protected] = ACTIONS(4949), - [anon_sym_include] = ACTIONS(4949), - [anon_sym_extend] = ACTIONS(4949), - [anon_sym_return] = ACTIONS(4949), - [anon_sym_next] = ACTIONS(4949), - [anon_sym_break] = ACTIONS(4949), - [anon_sym_with] = ACTIONS(4949), - [anon_sym_yield] = ACTIONS(4949), - [anon_sym_typeof] = ACTIONS(4949), - [anon_sym_sizeof] = ACTIONS(4949), - [anon_sym_instance_sizeof] = ACTIONS(4949), - [anon_sym_offsetof] = ACTIONS(4949), - [sym__constant_segment] = ACTIONS(4951), - [anon_sym_COLON_COLON] = ACTIONS(4951), - [anon_sym___LINE__] = ACTIONS(4949), - [anon_sym___END_LINE__] = ACTIONS(4949), - [anon_sym___FILE__] = ACTIONS(4949), - [anon_sym___DIR__] = ACTIONS(4949), - [sym_special_variable] = ACTIONS(4951), - [sym_identifier_method_call] = ACTIONS(4951), - [sym_instance_var] = ACTIONS(4951), - [sym_class_var] = ACTIONS(4951), - [sym_self] = ACTIONS(4949), - [anon_sym_alias] = ACTIONS(4949), - [anon_sym_begin] = ACTIONS(4949), - [anon_sym_while] = ACTIONS(4949), - [anon_sym_until] = ACTIONS(4949), - [anon_sym_else] = ACTIONS(4949), - [anon_sym_require] = ACTIONS(4949), - [anon_sym_case] = ACTIONS(4949), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4951), - [sym__start_of_named_tuple] = ACTIONS(4951), - [sym_unary_plus] = ACTIONS(4951), - [sym_unary_minus] = ACTIONS(4951), - [sym_unary_wrapping_plus] = ACTIONS(4951), - [sym_unary_wrapping_minus] = ACTIONS(4951), - [sym__beginless_range_operator] = ACTIONS(4951), - [sym__regex_start] = ACTIONS(4951), - [sym__regular_if_keyword] = ACTIONS(4951), - [sym__regular_unless_keyword] = ACTIONS(4951), - [sym__regular_rescue_keyword] = ACTIONS(4951), - [sym__regular_ensure_keyword] = ACTIONS(4951), - [sym__string_literal_start] = ACTIONS(4951), - [sym__string_percent_literal_start] = ACTIONS(4951), - [sym__command_percent_literal_start] = ACTIONS(4951), - [sym__string_array_percent_literal_start] = ACTIONS(4951), - [sym__symbol_array_percent_literal_start] = ACTIONS(4951), - [sym__regex_percent_literal_start] = ACTIONS(4951), - [sym_heredoc_start] = ACTIONS(4951), + [sym_identifier] = ACTIONS(4986), + [anon_sym_SEMI] = ACTIONS(4988), + [anon_sym_LPAREN] = ACTIONS(4988), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4986), + [sym_true] = ACTIONS(4986), + [sym_false] = ACTIONS(4986), + [aux_sym_integer_token2] = ACTIONS(4986), + [aux_sym_float_token2] = ACTIONS(4988), + [anon_sym_SQUOTE] = ACTIONS(4988), + [sym_operator_symbol] = ACTIONS(4988), + [sym_unquoted_symbol] = ACTIONS(4988), + [anon_sym_COLON_DQUOTE] = ACTIONS(4988), + [anon_sym_BQUOTE] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4988), + [anon_sym_DASH_GT] = ACTIONS(4988), + [anon_sym_annotation] = ACTIONS(4986), + [anon_sym_end] = ACTIONS(4986), + [anon_sym_AT_LBRACK] = ACTIONS(4988), + [anon_sym_private] = ACTIONS(4986), + [anon_sym_module] = ACTIONS(4986), + [anon_sym_abstract] = ACTIONS(4986), + [anon_sym_class] = ACTIONS(4986), + [anon_sym_struct] = ACTIONS(4986), + [anon_sym_enum] = ACTIONS(4986), + [anon_sym_STAR] = ACTIONS(4988), + [anon_sym_BANG] = ACTIONS(4988), + [anon_sym_TILDE] = ACTIONS(4988), + [anon_sym_def] = ACTIONS(4986), + [anon_sym_protected] = ACTIONS(4986), + [anon_sym_include] = ACTIONS(4986), + [anon_sym_extend] = ACTIONS(4986), + [anon_sym_return] = ACTIONS(4986), + [anon_sym_next] = ACTIONS(4986), + [anon_sym_break] = ACTIONS(4986), + [anon_sym_with] = ACTIONS(4986), + [anon_sym_yield] = ACTIONS(4986), + [anon_sym_typeof] = ACTIONS(4986), + [anon_sym_sizeof] = ACTIONS(4986), + [anon_sym_instance_sizeof] = ACTIONS(4986), + [anon_sym_offsetof] = ACTIONS(4986), + [sym__constant_segment] = ACTIONS(4988), + [anon_sym_COLON_COLON] = ACTIONS(4988), + [anon_sym___LINE__] = ACTIONS(4986), + [anon_sym___END_LINE__] = ACTIONS(4986), + [anon_sym___FILE__] = ACTIONS(4986), + [anon_sym___DIR__] = ACTIONS(4986), + [sym_special_variable] = ACTIONS(4988), + [sym_identifier_method_call] = ACTIONS(4988), + [sym_instance_var] = ACTIONS(4988), + [sym_class_var] = ACTIONS(4988), + [sym_self] = ACTIONS(4986), + [anon_sym_alias] = ACTIONS(4986), + [anon_sym_begin] = ACTIONS(4986), + [anon_sym_while] = ACTIONS(4986), + [anon_sym_until] = ACTIONS(4986), + [anon_sym_else] = ACTIONS(4986), + [anon_sym_require] = ACTIONS(4986), + [anon_sym_case] = ACTIONS(4986), + [anon_sym_select] = ACTIONS(4986), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4988), + [sym__start_of_named_tuple] = ACTIONS(4988), + [sym_unary_plus] = ACTIONS(4988), + [sym_unary_minus] = ACTIONS(4988), + [sym_unary_wrapping_plus] = ACTIONS(4988), + [sym_unary_wrapping_minus] = ACTIONS(4988), + [sym__beginless_range_operator] = ACTIONS(4988), + [sym__regex_start] = ACTIONS(4988), + [sym__regular_if_keyword] = ACTIONS(4988), + [sym__regular_unless_keyword] = ACTIONS(4988), + [sym__regular_rescue_keyword] = ACTIONS(4988), + [sym__regular_ensure_keyword] = ACTIONS(4988), + [sym__string_literal_start] = ACTIONS(4988), + [sym__string_percent_literal_start] = ACTIONS(4988), + [sym__command_percent_literal_start] = ACTIONS(4988), + [sym__string_array_percent_literal_start] = ACTIONS(4988), + [sym__symbol_array_percent_literal_start] = ACTIONS(4988), + [sym__regex_percent_literal_start] = ACTIONS(4988), + [sym_heredoc_start] = ACTIONS(4988), [sym__heredoc_body_start] = ACTIONS(7), }, [2126] = { [sym_heredoc_body] = STATE(2126), - [sym_typeof] = STATE(2367), - [sym_constant] = STATE(2346), - [sym__type] = STATE(2349), - [sym_class_type] = STATE(2367), - [sym_union_type] = STATE(2367), - [sym__parenthesized_type] = STATE(2367), - [sym_no_args_proc_type] = STATE(2367), - [sym_parenthesized_proc_type] = STATE(2367), - [sym_tuple_type] = STATE(2367), - [sym_named_tuple_type] = STATE(2367), - [sym_generic_instance_type] = STATE(2367), - [sym_nilable_type] = STATE(2367), - [sym_pointer_type] = STATE(2367), - [sym_static_array_type] = STATE(2367), - [ts_builtin_sym_end] = ACTIONS(4325), - [anon_sym_SEMI] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4325), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(4955), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(4958), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [sym_self] = ACTIONS(4960), - [sym_underscore_type] = ACTIONS(4960), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_do] = ACTIONS(4325), - [anon_sym_elsif] = ACTIONS(4325), - [anon_sym_else] = ACTIONS(4325), - [anon_sym_when] = ACTIONS(4325), - [anon_sym_in] = ACTIONS(4325), - [sym__line_break] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4325), - [sym__start_of_tuple_type] = ACTIONS(4962), - [sym__start_of_named_tuple_type] = ACTIONS(4964), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modifier_if_keyword] = ACTIONS(4325), - [sym__modifier_unless_keyword] = ACTIONS(4325), - [sym__modifier_rescue_keyword] = ACTIONS(4325), - [sym__modifier_ensure_keyword] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [aux_sym_proc_type_repeat1] = STATE(10390), + [sym_identifier] = ACTIONS(4783), + [anon_sym_SEMI] = ACTIONS(4785), + [anon_sym_LPAREN] = ACTIONS(4785), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4783), + [sym_true] = ACTIONS(4783), + [sym_false] = ACTIONS(4783), + [aux_sym_integer_token2] = ACTIONS(4783), + [aux_sym_float_token2] = ACTIONS(4785), + [anon_sym_SQUOTE] = ACTIONS(4785), + [sym_operator_symbol] = ACTIONS(4785), + [sym_unquoted_symbol] = ACTIONS(4785), + [anon_sym_COLON_DQUOTE] = ACTIONS(4785), + [anon_sym_BQUOTE] = ACTIONS(4785), + [anon_sym_LBRACK] = ACTIONS(4785), + [anon_sym_COMMA] = ACTIONS(4787), + [anon_sym_DASH_GT] = ACTIONS(4990), + [anon_sym_annotation] = ACTIONS(4783), + [anon_sym_end] = ACTIONS(4783), + [anon_sym_AT_LBRACK] = ACTIONS(4785), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_module] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_class] = ACTIONS(4783), + [anon_sym_struct] = ACTIONS(4783), + [anon_sym_enum] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_BANG] = ACTIONS(4785), + [anon_sym_TILDE] = ACTIONS(4785), + [anon_sym_def] = ACTIONS(4783), + [anon_sym_protected] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_extend] = ACTIONS(4783), + [anon_sym_return] = ACTIONS(4783), + [anon_sym_next] = ACTIONS(4783), + [anon_sym_break] = ACTIONS(4783), + [anon_sym_with] = ACTIONS(4783), + [anon_sym_yield] = ACTIONS(4783), + [anon_sym_typeof] = ACTIONS(4783), + [anon_sym_sizeof] = ACTIONS(4783), + [anon_sym_instance_sizeof] = ACTIONS(4783), + [anon_sym_offsetof] = ACTIONS(4783), + [sym__constant_segment] = ACTIONS(4785), + [anon_sym_COLON_COLON] = ACTIONS(4785), + [anon_sym___LINE__] = ACTIONS(4783), + [anon_sym___END_LINE__] = ACTIONS(4783), + [anon_sym___FILE__] = ACTIONS(4783), + [anon_sym___DIR__] = ACTIONS(4783), + [sym_special_variable] = ACTIONS(4785), + [sym_identifier_method_call] = ACTIONS(4785), + [sym_instance_var] = ACTIONS(4785), + [sym_class_var] = ACTIONS(4785), + [sym_self] = ACTIONS(4783), + [anon_sym_alias] = ACTIONS(4783), + [anon_sym_begin] = ACTIONS(4783), + [anon_sym_while] = ACTIONS(4783), + [anon_sym_until] = ACTIONS(4783), + [anon_sym_require] = ACTIONS(4783), + [anon_sym_case] = ACTIONS(4783), + [anon_sym_select] = ACTIONS(4783), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4785), + [sym__start_of_named_tuple] = ACTIONS(4785), + [sym_unary_plus] = ACTIONS(4785), + [sym_unary_minus] = ACTIONS(4785), + [sym_unary_wrapping_plus] = ACTIONS(4785), + [sym_unary_wrapping_minus] = ACTIONS(4785), + [sym__beginless_range_operator] = ACTIONS(4785), + [sym__regex_start] = ACTIONS(4785), + [sym__regular_if_keyword] = ACTIONS(4785), + [sym__regular_unless_keyword] = ACTIONS(4785), + [sym__string_literal_start] = ACTIONS(4785), + [sym__string_percent_literal_start] = ACTIONS(4785), + [sym__command_percent_literal_start] = ACTIONS(4785), + [sym__string_array_percent_literal_start] = ACTIONS(4785), + [sym__symbol_array_percent_literal_start] = ACTIONS(4785), + [sym__regex_percent_literal_start] = ACTIONS(4785), + [sym_heredoc_start] = ACTIONS(4785), [sym__heredoc_body_start] = ACTIONS(7), }, [2127] = { [sym_heredoc_body] = STATE(2127), - [sym_typeof] = STATE(2367), - [sym_constant] = STATE(2346), - [sym__type] = STATE(2339), - [sym_class_type] = STATE(2367), - [sym_union_type] = STATE(2367), - [sym__parenthesized_type] = STATE(2367), - [sym_no_args_proc_type] = STATE(2367), - [sym_parenthesized_proc_type] = STATE(2367), - [sym_tuple_type] = STATE(2367), - [sym_named_tuple_type] = STATE(2367), - [sym_generic_instance_type] = STATE(2367), - [sym_nilable_type] = STATE(2367), - [sym_pointer_type] = STATE(2367), - [sym_static_array_type] = STATE(2367), - [ts_builtin_sym_end] = ACTIONS(4375), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4375), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(4966), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(4958), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [sym_self] = ACTIONS(4960), - [sym_underscore_type] = ACTIONS(4960), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_do] = ACTIONS(4375), - [anon_sym_elsif] = ACTIONS(4375), - [anon_sym_else] = ACTIONS(4375), - [anon_sym_when] = ACTIONS(4375), - [anon_sym_in] = ACTIONS(4375), - [sym__line_break] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4375), - [sym__start_of_tuple_type] = ACTIONS(4962), - [sym__start_of_named_tuple_type] = ACTIONS(4964), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modifier_if_keyword] = ACTIONS(4375), - [sym__modifier_unless_keyword] = ACTIONS(4375), - [sym__modifier_rescue_keyword] = ACTIONS(4375), - [sym__modifier_ensure_keyword] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(2379), + [sym_constant] = STATE(2351), + [sym__type] = STATE(2359), + [sym_class_type] = STATE(2379), + [sym_union_type] = STATE(2379), + [sym__parenthesized_type] = STATE(2379), + [sym_no_args_proc_type] = STATE(2379), + [sym_parenthesized_proc_type] = STATE(2379), + [sym_tuple_type] = STATE(2379), + [sym_named_tuple_type] = STATE(2379), + [sym_generic_instance_type] = STATE(2379), + [sym_nilable_type] = STATE(2379), + [sym_pointer_type] = STATE(2379), + [sym_static_array_type] = STATE(2379), + [ts_builtin_sym_end] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(4993), + [anon_sym_RPAREN] = ACTIONS(4362), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4362), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(4995), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(4997), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [sym_self] = ACTIONS(4999), + [sym_underscore_type] = ACTIONS(4999), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_do] = ACTIONS(4362), + [anon_sym_elsif] = ACTIONS(4362), + [anon_sym_else] = ACTIONS(4362), + [anon_sym_when] = ACTIONS(4362), + [anon_sym_in] = ACTIONS(4362), + [sym__line_break] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4362), + [sym__start_of_tuple_type] = ACTIONS(5001), + [sym__start_of_named_tuple_type] = ACTIONS(5003), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modifier_if_keyword] = ACTIONS(4362), + [sym__modifier_unless_keyword] = ACTIONS(4362), + [sym__modifier_rescue_keyword] = ACTIONS(4362), + [sym__modifier_ensure_keyword] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2128] = { [sym_heredoc_body] = STATE(2128), - [aux_sym_proc_type_repeat1] = STATE(9688), - [sym_identifier] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4745), - [anon_sym_LPAREN] = ACTIONS(4745), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4743), - [sym_true] = ACTIONS(4743), - [sym_false] = ACTIONS(4743), - [aux_sym_integer_token2] = ACTIONS(4743), - [aux_sym_float_token2] = ACTIONS(4745), - [anon_sym_SQUOTE] = ACTIONS(4745), - [sym_operator_symbol] = ACTIONS(4745), - [sym_unquoted_symbol] = ACTIONS(4745), - [anon_sym_COLON_DQUOTE] = ACTIONS(4745), - [anon_sym_BQUOTE] = ACTIONS(4745), - [anon_sym_LBRACK] = ACTIONS(4745), - [anon_sym_COMMA] = ACTIONS(4747), - [anon_sym_DASH_GT] = ACTIONS(4969), - [anon_sym_annotation] = ACTIONS(4743), - [anon_sym_end] = ACTIONS(4743), - [anon_sym_AT_LBRACK] = ACTIONS(4745), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_module] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_class] = ACTIONS(4743), - [anon_sym_struct] = ACTIONS(4743), - [anon_sym_enum] = ACTIONS(4743), - [anon_sym_STAR] = ACTIONS(4745), - [anon_sym_BANG] = ACTIONS(4745), - [anon_sym_TILDE] = ACTIONS(4745), - [anon_sym_def] = ACTIONS(4743), - [anon_sym_protected] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_extend] = ACTIONS(4743), - [anon_sym_return] = ACTIONS(4743), - [anon_sym_next] = ACTIONS(4743), - [anon_sym_break] = ACTIONS(4743), - [anon_sym_with] = ACTIONS(4743), - [anon_sym_yield] = ACTIONS(4743), - [anon_sym_typeof] = ACTIONS(4743), - [anon_sym_sizeof] = ACTIONS(4743), - [anon_sym_instance_sizeof] = ACTIONS(4743), - [anon_sym_offsetof] = ACTIONS(4743), - [sym__constant_segment] = ACTIONS(4745), - [anon_sym_COLON_COLON] = ACTIONS(4745), - [anon_sym___LINE__] = ACTIONS(4743), - [anon_sym___END_LINE__] = ACTIONS(4743), - [anon_sym___FILE__] = ACTIONS(4743), - [anon_sym___DIR__] = ACTIONS(4743), - [sym_special_variable] = ACTIONS(4745), - [sym_identifier_method_call] = ACTIONS(4745), - [sym_instance_var] = ACTIONS(4745), - [sym_class_var] = ACTIONS(4745), - [sym_self] = ACTIONS(4743), - [anon_sym_alias] = ACTIONS(4743), - [anon_sym_begin] = ACTIONS(4743), - [anon_sym_while] = ACTIONS(4743), - [anon_sym_until] = ACTIONS(4743), - [anon_sym_require] = ACTIONS(4743), - [anon_sym_case] = ACTIONS(4743), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4745), - [sym__start_of_named_tuple] = ACTIONS(4745), - [sym_unary_plus] = ACTIONS(4745), - [sym_unary_minus] = ACTIONS(4745), - [sym_unary_wrapping_plus] = ACTIONS(4745), - [sym_unary_wrapping_minus] = ACTIONS(4745), - [sym__beginless_range_operator] = ACTIONS(4745), - [sym__regex_start] = ACTIONS(4745), - [sym__regular_if_keyword] = ACTIONS(4745), - [sym__regular_unless_keyword] = ACTIONS(4745), - [sym__string_literal_start] = ACTIONS(4745), - [sym__string_percent_literal_start] = ACTIONS(4745), - [sym__command_percent_literal_start] = ACTIONS(4745), - [sym__string_array_percent_literal_start] = ACTIONS(4745), - [sym__symbol_array_percent_literal_start] = ACTIONS(4745), - [sym__regex_percent_literal_start] = ACTIONS(4745), - [sym_heredoc_start] = ACTIONS(4745), + [sym_identifier] = ACTIONS(5005), + [anon_sym_SEMI] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5007), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5005), + [sym_true] = ACTIONS(5005), + [sym_false] = ACTIONS(5005), + [aux_sym_integer_token2] = ACTIONS(5005), + [aux_sym_float_token2] = ACTIONS(5007), + [anon_sym_SQUOTE] = ACTIONS(5007), + [sym_operator_symbol] = ACTIONS(5007), + [sym_unquoted_symbol] = ACTIONS(5007), + [anon_sym_COLON_DQUOTE] = ACTIONS(5007), + [anon_sym_BQUOTE] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5007), + [anon_sym_DASH_GT] = ACTIONS(5007), + [anon_sym_annotation] = ACTIONS(5005), + [anon_sym_end] = ACTIONS(5005), + [anon_sym_AT_LBRACK] = ACTIONS(5007), + [anon_sym_private] = ACTIONS(5005), + [anon_sym_module] = ACTIONS(5005), + [anon_sym_abstract] = ACTIONS(5005), + [anon_sym_class] = ACTIONS(5005), + [anon_sym_LT] = ACTIONS(5007), + [anon_sym_struct] = ACTIONS(5005), + [anon_sym_enum] = ACTIONS(5005), + [anon_sym_STAR] = ACTIONS(5007), + [anon_sym_BANG] = ACTIONS(5007), + [anon_sym_TILDE] = ACTIONS(5007), + [anon_sym_def] = ACTIONS(5005), + [anon_sym_protected] = ACTIONS(5005), + [anon_sym_include] = ACTIONS(5005), + [anon_sym_extend] = ACTIONS(5005), + [anon_sym_return] = ACTIONS(5005), + [anon_sym_next] = ACTIONS(5005), + [anon_sym_break] = ACTIONS(5005), + [anon_sym_with] = ACTIONS(5005), + [anon_sym_yield] = ACTIONS(5005), + [anon_sym_typeof] = ACTIONS(5005), + [anon_sym_sizeof] = ACTIONS(5005), + [anon_sym_instance_sizeof] = ACTIONS(5005), + [anon_sym_offsetof] = ACTIONS(5005), + [sym__constant_segment] = ACTIONS(5007), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym___LINE__] = ACTIONS(5005), + [anon_sym___END_LINE__] = ACTIONS(5005), + [anon_sym___FILE__] = ACTIONS(5005), + [anon_sym___DIR__] = ACTIONS(5005), + [sym_special_variable] = ACTIONS(5007), + [sym_identifier_method_call] = ACTIONS(5007), + [sym_instance_var] = ACTIONS(5007), + [sym_class_var] = ACTIONS(5007), + [sym_self] = ACTIONS(5005), + [anon_sym_alias] = ACTIONS(5005), + [anon_sym_begin] = ACTIONS(5005), + [anon_sym_while] = ACTIONS(5005), + [anon_sym_until] = ACTIONS(5005), + [anon_sym_require] = ACTIONS(5005), + [anon_sym_case] = ACTIONS(5005), + [anon_sym_select] = ACTIONS(5005), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5007), + [sym__start_of_named_tuple] = ACTIONS(5007), + [sym_unary_plus] = ACTIONS(5007), + [sym_unary_minus] = ACTIONS(5007), + [sym_unary_wrapping_plus] = ACTIONS(5007), + [sym_unary_wrapping_minus] = ACTIONS(5007), + [sym__beginless_range_operator] = ACTIONS(5007), + [sym__regex_start] = ACTIONS(5007), + [sym__regular_if_keyword] = ACTIONS(5007), + [sym__regular_unless_keyword] = ACTIONS(5007), + [sym__string_literal_start] = ACTIONS(5007), + [sym__string_percent_literal_start] = ACTIONS(5007), + [sym__command_percent_literal_start] = ACTIONS(5007), + [sym__string_array_percent_literal_start] = ACTIONS(5007), + [sym__symbol_array_percent_literal_start] = ACTIONS(5007), + [sym__regex_percent_literal_start] = ACTIONS(5007), + [sym_heredoc_start] = ACTIONS(5007), [sym__heredoc_body_start] = ACTIONS(7), }, [2129] = { [sym_heredoc_body] = STATE(2129), - [sym_typeof] = STATE(2367), - [sym_constant] = STATE(2346), - [sym__type] = STATE(2358), - [sym_class_type] = STATE(2367), - [sym_union_type] = STATE(2367), - [sym__parenthesized_type] = STATE(2367), - [sym_no_args_proc_type] = STATE(2367), - [sym_parenthesized_proc_type] = STATE(2367), - [sym_tuple_type] = STATE(2367), - [sym_named_tuple_type] = STATE(2367), - [sym_generic_instance_type] = STATE(2367), - [sym_nilable_type] = STATE(2367), - [sym_pointer_type] = STATE(2367), - [sym_static_array_type] = STATE(2367), - [ts_builtin_sym_end] = ACTIONS(4325), - [anon_sym_SEMI] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(4972), - [anon_sym_RPAREN] = ACTIONS(4325), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(4974), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(4958), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [sym_self] = ACTIONS(4960), - [sym_underscore_type] = ACTIONS(4960), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_do] = ACTIONS(4325), - [anon_sym_elsif] = ACTIONS(4325), - [anon_sym_else] = ACTIONS(4325), - [anon_sym_when] = ACTIONS(4325), - [anon_sym_in] = ACTIONS(4325), - [sym__line_break] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4325), - [sym__start_of_tuple_type] = ACTIONS(4962), - [sym__start_of_named_tuple_type] = ACTIONS(4964), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modifier_if_keyword] = ACTIONS(4325), - [sym__modifier_unless_keyword] = ACTIONS(4325), - [sym__modifier_rescue_keyword] = ACTIONS(4325), - [sym__modifier_ensure_keyword] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_identifier] = ACTIONS(4802), + [anon_sym_SEMI] = ACTIONS(4800), + [anon_sym_LPAREN] = ACTIONS(4800), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4802), + [sym_true] = ACTIONS(4802), + [sym_false] = ACTIONS(4802), + [aux_sym_integer_token2] = ACTIONS(4802), + [aux_sym_float_token2] = ACTIONS(4800), + [anon_sym_SQUOTE] = ACTIONS(4800), + [sym_operator_symbol] = ACTIONS(4800), + [sym_unquoted_symbol] = ACTIONS(4800), + [anon_sym_COLON_DQUOTE] = ACTIONS(4800), + [anon_sym_BQUOTE] = ACTIONS(4800), + [anon_sym_LBRACK] = ACTIONS(4800), + [anon_sym_DASH_GT] = ACTIONS(4800), + [anon_sym_annotation] = ACTIONS(4802), + [anon_sym_end] = ACTIONS(4802), + [anon_sym_AT_LBRACK] = ACTIONS(4800), + [anon_sym_private] = ACTIONS(4802), + [anon_sym_module] = ACTIONS(4802), + [anon_sym_abstract] = ACTIONS(4802), + [anon_sym_class] = ACTIONS(4802), + [anon_sym_struct] = ACTIONS(4802), + [anon_sym_enum] = ACTIONS(4802), + [anon_sym_STAR] = ACTIONS(4800), + [anon_sym_BANG] = ACTIONS(4800), + [anon_sym_TILDE] = ACTIONS(4800), + [anon_sym_def] = ACTIONS(4802), + [anon_sym_protected] = ACTIONS(4802), + [anon_sym_include] = ACTIONS(4802), + [anon_sym_extend] = ACTIONS(4802), + [anon_sym_return] = ACTIONS(4802), + [anon_sym_next] = ACTIONS(4802), + [anon_sym_break] = ACTIONS(4802), + [anon_sym_with] = ACTIONS(4802), + [anon_sym_yield] = ACTIONS(4802), + [anon_sym_typeof] = ACTIONS(4802), + [anon_sym_sizeof] = ACTIONS(4802), + [anon_sym_instance_sizeof] = ACTIONS(4802), + [anon_sym_offsetof] = ACTIONS(4802), + [sym__constant_segment] = ACTIONS(4800), + [anon_sym_COLON_COLON] = ACTIONS(4800), + [anon_sym___LINE__] = ACTIONS(4802), + [anon_sym___END_LINE__] = ACTIONS(4802), + [anon_sym___FILE__] = ACTIONS(4802), + [anon_sym___DIR__] = ACTIONS(4802), + [sym_special_variable] = ACTIONS(4800), + [sym_identifier_method_call] = ACTIONS(4800), + [sym_instance_var] = ACTIONS(4800), + [sym_class_var] = ACTIONS(4800), + [sym_self] = ACTIONS(4802), + [anon_sym_alias] = ACTIONS(4802), + [anon_sym_begin] = ACTIONS(4802), + [anon_sym_while] = ACTIONS(4802), + [anon_sym_until] = ACTIONS(4802), + [anon_sym_require] = ACTIONS(4802), + [anon_sym_case] = ACTIONS(4802), + [anon_sym_select] = ACTIONS(4802), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4800), + [sym__start_of_named_tuple] = ACTIONS(4800), + [sym_unary_plus] = ACTIONS(4800), + [sym_unary_minus] = ACTIONS(4800), + [sym_unary_wrapping_plus] = ACTIONS(4800), + [sym_unary_wrapping_minus] = ACTIONS(4800), + [sym__beginless_range_operator] = ACTIONS(4800), + [sym__regex_start] = ACTIONS(4800), + [sym__regular_if_keyword] = ACTIONS(4800), + [sym__regular_unless_keyword] = ACTIONS(4800), + [sym__regular_ensure_keyword] = ACTIONS(4800), + [sym__string_literal_start] = ACTIONS(4800), + [sym__string_percent_literal_start] = ACTIONS(4800), + [sym__command_percent_literal_start] = ACTIONS(4800), + [sym__string_array_percent_literal_start] = ACTIONS(4800), + [sym__symbol_array_percent_literal_start] = ACTIONS(4800), + [sym__regex_percent_literal_start] = ACTIONS(4800), + [sym_heredoc_start] = ACTIONS(4800), [sym__heredoc_body_start] = ACTIONS(7), }, [2130] = { [sym_heredoc_body] = STATE(2130), - [sym_typeof] = STATE(2367), - [sym_constant] = STATE(2346), - [sym__type] = STATE(2387), - [sym_class_type] = STATE(2367), - [sym_union_type] = STATE(2367), - [sym__parenthesized_type] = STATE(2367), - [sym_no_args_proc_type] = STATE(2367), - [sym_parenthesized_proc_type] = STATE(2367), - [sym_tuple_type] = STATE(2367), - [sym_named_tuple_type] = STATE(2367), - [sym_generic_instance_type] = STATE(2367), - [sym_nilable_type] = STATE(2367), - [sym_pointer_type] = STATE(2367), - [sym_static_array_type] = STATE(2367), - [ts_builtin_sym_end] = ACTIONS(4353), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(4972), - [anon_sym_RPAREN] = ACTIONS(4353), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(4974), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(4958), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [sym_self] = ACTIONS(4960), - [sym_underscore_type] = ACTIONS(4960), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_do] = ACTIONS(4353), - [anon_sym_elsif] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4353), - [anon_sym_when] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4353), - [sym__line_break] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4353), - [sym__start_of_tuple_type] = ACTIONS(4962), - [sym__start_of_named_tuple_type] = ACTIONS(4964), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modifier_if_keyword] = ACTIONS(4353), - [sym__modifier_unless_keyword] = ACTIONS(4353), - [sym__modifier_rescue_keyword] = ACTIONS(4353), - [sym__modifier_ensure_keyword] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1872), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [aux_sym_integer_token2] = ACTIONS(1872), + [aux_sym_float_token2] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [sym_operator_symbol] = ACTIONS(1831), + [sym_unquoted_symbol] = ACTIONS(1831), + [anon_sym_COLON_DQUOTE] = ACTIONS(1831), + [anon_sym_BQUOTE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_DASH_GT] = ACTIONS(1831), + [anon_sym_annotation] = ACTIONS(1872), + [anon_sym_end] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_abstract] = ACTIONS(1872), + [anon_sym_class] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_protected] = ACTIONS(1872), + [anon_sym_include] = ACTIONS(1872), + [anon_sym_extend] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_next] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_with] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym_sizeof] = ACTIONS(1872), + [anon_sym_instance_sizeof] = ACTIONS(1872), + [anon_sym_offsetof] = ACTIONS(1872), + [sym__constant_segment] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym___LINE__] = ACTIONS(1872), + [anon_sym___END_LINE__] = ACTIONS(1872), + [anon_sym___FILE__] = ACTIONS(1872), + [anon_sym___DIR__] = ACTIONS(1872), + [sym_special_variable] = ACTIONS(1831), + [sym_identifier_method_call] = ACTIONS(1831), + [sym_instance_var] = ACTIONS(1831), + [sym_class_var] = ACTIONS(1831), + [sym_self] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_begin] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_until] = ACTIONS(1872), + [anon_sym_require] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_select] = ACTIONS(1872), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1831), + [sym__start_of_named_tuple] = ACTIONS(1831), + [sym_unary_plus] = ACTIONS(1831), + [sym_unary_minus] = ACTIONS(1831), + [sym_unary_wrapping_plus] = ACTIONS(1831), + [sym_unary_wrapping_minus] = ACTIONS(1831), + [sym__beginless_range_operator] = ACTIONS(1831), + [sym__regex_start] = ACTIONS(1831), + [sym__regular_if_keyword] = ACTIONS(1831), + [sym__regular_unless_keyword] = ACTIONS(1831), + [sym__regular_ensure_keyword] = ACTIONS(1831), + [sym__string_literal_start] = ACTIONS(1831), + [sym__string_percent_literal_start] = ACTIONS(1831), + [sym__command_percent_literal_start] = ACTIONS(1831), + [sym__string_array_percent_literal_start] = ACTIONS(1831), + [sym__symbol_array_percent_literal_start] = ACTIONS(1831), + [sym__regex_percent_literal_start] = ACTIONS(1831), + [sym_heredoc_start] = ACTIONS(1831), [sym__heredoc_body_start] = ACTIONS(7), }, [2131] = { [sym_heredoc_body] = STATE(2131), - [sym_typeof] = STATE(2367), - [sym_constant] = STATE(2346), - [sym__type] = STATE(2355), - [sym_class_type] = STATE(2367), - [sym_union_type] = STATE(2367), - [sym__parenthesized_type] = STATE(2367), - [sym_no_args_proc_type] = STATE(2367), - [sym_parenthesized_proc_type] = STATE(2367), - [sym_tuple_type] = STATE(2367), - [sym_named_tuple_type] = STATE(2367), - [sym_generic_instance_type] = STATE(2367), - [sym_nilable_type] = STATE(2367), - [sym_pointer_type] = STATE(2367), - [sym_static_array_type] = STATE(2367), - [ts_builtin_sym_end] = ACTIONS(4375), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4972), - [anon_sym_RPAREN] = ACTIONS(4375), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(4974), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(4958), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [sym_self] = ACTIONS(4960), - [sym_underscore_type] = ACTIONS(4960), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_do] = ACTIONS(4375), - [anon_sym_elsif] = ACTIONS(4375), - [anon_sym_else] = ACTIONS(4375), - [anon_sym_when] = ACTIONS(4375), - [anon_sym_in] = ACTIONS(4375), - [sym__line_break] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4375), - [sym__start_of_tuple_type] = ACTIONS(4962), - [sym__start_of_named_tuple_type] = ACTIONS(4964), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modifier_if_keyword] = ACTIONS(4375), - [sym__modifier_unless_keyword] = ACTIONS(4375), - [sym__modifier_rescue_keyword] = ACTIONS(4375), - [sym__modifier_ensure_keyword] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(2379), + [sym_constant] = STATE(2351), + [sym__type] = STATE(2357), + [sym_class_type] = STATE(2379), + [sym_union_type] = STATE(2379), + [sym__parenthesized_type] = STATE(2379), + [sym_no_args_proc_type] = STATE(2379), + [sym_parenthesized_proc_type] = STATE(2379), + [sym_tuple_type] = STATE(2379), + [sym_named_tuple_type] = STATE(2379), + [sym_generic_instance_type] = STATE(2379), + [sym_nilable_type] = STATE(2379), + [sym_pointer_type] = STATE(2379), + [sym_static_array_type] = STATE(2379), + [ts_builtin_sym_end] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(4993), + [anon_sym_RPAREN] = ACTIONS(4390), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(4995), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(4997), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [sym_self] = ACTIONS(4999), + [sym_underscore_type] = ACTIONS(4999), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_do] = ACTIONS(4390), + [anon_sym_elsif] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [sym__line_break] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4390), + [sym__start_of_tuple_type] = ACTIONS(5001), + [sym__start_of_named_tuple_type] = ACTIONS(5003), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modifier_if_keyword] = ACTIONS(4390), + [sym__modifier_unless_keyword] = ACTIONS(4390), + [sym__modifier_rescue_keyword] = ACTIONS(4390), + [sym__modifier_ensure_keyword] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2132] = { [sym_heredoc_body] = STATE(2132), - [sym_typeof] = STATE(2367), - [sym_constant] = STATE(2346), - [sym__type] = STATE(2335), - [sym_class_type] = STATE(2367), - [sym_union_type] = STATE(2367), - [sym__parenthesized_type] = STATE(2367), - [sym_no_args_proc_type] = STATE(2367), - [sym_parenthesized_proc_type] = STATE(2367), - [sym_tuple_type] = STATE(2367), - [sym_named_tuple_type] = STATE(2367), - [sym_generic_instance_type] = STATE(2367), - [sym_nilable_type] = STATE(2367), - [sym_pointer_type] = STATE(2367), - [sym_static_array_type] = STATE(2367), - [ts_builtin_sym_end] = ACTIONS(4353), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4353), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(4976), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(4958), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [sym_self] = ACTIONS(4960), - [sym_underscore_type] = ACTIONS(4960), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_do] = ACTIONS(4353), - [anon_sym_elsif] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4353), - [anon_sym_when] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4353), - [sym__line_break] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4353), - [sym__start_of_tuple_type] = ACTIONS(4962), - [sym__start_of_named_tuple_type] = ACTIONS(4964), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modifier_if_keyword] = ACTIONS(4353), - [sym__modifier_unless_keyword] = ACTIONS(4353), - [sym__modifier_rescue_keyword] = ACTIONS(4353), - [sym__modifier_ensure_keyword] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_identifier] = ACTIONS(4638), + [anon_sym_SEMI] = ACTIONS(4640), + [anon_sym_LPAREN] = ACTIONS(4640), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4638), + [sym_true] = ACTIONS(4638), + [sym_false] = ACTIONS(4638), + [aux_sym_integer_token2] = ACTIONS(4638), + [aux_sym_float_token2] = ACTIONS(4640), + [anon_sym_SQUOTE] = ACTIONS(4640), + [sym_operator_symbol] = ACTIONS(4640), + [sym_unquoted_symbol] = ACTIONS(4640), + [anon_sym_COLON_DQUOTE] = ACTIONS(4640), + [anon_sym_BQUOTE] = ACTIONS(4640), + [anon_sym_LBRACK] = ACTIONS(4640), + [anon_sym_COMMA] = ACTIONS(4640), + [anon_sym_DASH_GT] = ACTIONS(4640), + [anon_sym_annotation] = ACTIONS(4638), + [anon_sym_end] = ACTIONS(4638), + [anon_sym_AT_LBRACK] = ACTIONS(4640), + [anon_sym_private] = ACTIONS(4638), + [anon_sym_module] = ACTIONS(4638), + [anon_sym_abstract] = ACTIONS(4638), + [anon_sym_class] = ACTIONS(4638), + [anon_sym_struct] = ACTIONS(4638), + [anon_sym_enum] = ACTIONS(4638), + [anon_sym_STAR] = ACTIONS(4640), + [anon_sym_BANG] = ACTIONS(4640), + [anon_sym_TILDE] = ACTIONS(4640), + [anon_sym_def] = ACTIONS(4638), + [anon_sym_protected] = ACTIONS(4638), + [anon_sym_include] = ACTIONS(4638), + [anon_sym_extend] = ACTIONS(4638), + [anon_sym_return] = ACTIONS(4638), + [anon_sym_next] = ACTIONS(4638), + [anon_sym_break] = ACTIONS(4638), + [anon_sym_with] = ACTIONS(4638), + [anon_sym_yield] = ACTIONS(4638), + [anon_sym_typeof] = ACTIONS(4638), + [anon_sym_sizeof] = ACTIONS(4638), + [anon_sym_instance_sizeof] = ACTIONS(4638), + [anon_sym_offsetof] = ACTIONS(4638), + [sym__constant_segment] = ACTIONS(4640), + [anon_sym_COLON_COLON] = ACTIONS(4640), + [anon_sym___LINE__] = ACTIONS(4638), + [anon_sym___END_LINE__] = ACTIONS(4638), + [anon_sym___FILE__] = ACTIONS(4638), + [anon_sym___DIR__] = ACTIONS(4638), + [sym_special_variable] = ACTIONS(4640), + [sym_identifier_method_call] = ACTIONS(4640), + [sym_instance_var] = ACTIONS(4640), + [sym_class_var] = ACTIONS(4640), + [sym_self] = ACTIONS(4638), + [anon_sym_alias] = ACTIONS(4638), + [anon_sym_begin] = ACTIONS(4638), + [anon_sym_while] = ACTIONS(4638), + [anon_sym_until] = ACTIONS(4638), + [anon_sym_require] = ACTIONS(4638), + [anon_sym_case] = ACTIONS(4638), + [anon_sym_select] = ACTIONS(4638), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4640), + [sym__start_of_named_tuple] = ACTIONS(4640), + [sym_unary_plus] = ACTIONS(4640), + [sym_unary_minus] = ACTIONS(4640), + [sym_unary_wrapping_plus] = ACTIONS(4640), + [sym_unary_wrapping_minus] = ACTIONS(4640), + [sym__beginless_range_operator] = ACTIONS(4640), + [sym__regex_start] = ACTIONS(4640), + [sym__regular_if_keyword] = ACTIONS(4640), + [sym__regular_unless_keyword] = ACTIONS(4640), + [sym__string_literal_start] = ACTIONS(4640), + [sym__string_percent_literal_start] = ACTIONS(4640), + [sym__command_percent_literal_start] = ACTIONS(4640), + [sym__string_array_percent_literal_start] = ACTIONS(4640), + [sym__symbol_array_percent_literal_start] = ACTIONS(4640), + [sym__regex_percent_literal_start] = ACTIONS(4640), + [sym_heredoc_start] = ACTIONS(4640), [sym__heredoc_body_start] = ACTIONS(7), }, [2133] = { [sym_heredoc_body] = STATE(2133), - [sym_identifier] = ACTIONS(4979), - [anon_sym_SEMI] = ACTIONS(4981), - [anon_sym_LPAREN] = ACTIONS(4981), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4979), - [sym_true] = ACTIONS(4979), - [sym_false] = ACTIONS(4979), - [aux_sym_integer_token2] = ACTIONS(4979), - [aux_sym_float_token2] = ACTIONS(4981), - [anon_sym_SQUOTE] = ACTIONS(4981), - [sym_operator_symbol] = ACTIONS(4981), - [sym_unquoted_symbol] = ACTIONS(4981), - [anon_sym_COLON_DQUOTE] = ACTIONS(4981), - [anon_sym_BQUOTE] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(4981), - [anon_sym_annotation] = ACTIONS(4979), - [anon_sym_end] = ACTIONS(4979), - [anon_sym_AT_LBRACK] = ACTIONS(4981), - [anon_sym_private] = ACTIONS(4979), - [anon_sym_module] = ACTIONS(4979), - [anon_sym_abstract] = ACTIONS(4979), - [anon_sym_class] = ACTIONS(4979), - [anon_sym_LT] = ACTIONS(4981), - [anon_sym_struct] = ACTIONS(4979), - [anon_sym_enum] = ACTIONS(4979), - [anon_sym_STAR] = ACTIONS(4981), - [anon_sym_BANG] = ACTIONS(4981), - [anon_sym_TILDE] = ACTIONS(4981), - [anon_sym_def] = ACTIONS(4979), - [anon_sym_protected] = ACTIONS(4979), - [anon_sym_include] = ACTIONS(4979), - [anon_sym_extend] = ACTIONS(4979), - [anon_sym_return] = ACTIONS(4979), - [anon_sym_next] = ACTIONS(4979), - [anon_sym_break] = ACTIONS(4979), - [anon_sym_with] = ACTIONS(4979), - [anon_sym_yield] = ACTIONS(4979), - [anon_sym_typeof] = ACTIONS(4979), - [anon_sym_sizeof] = ACTIONS(4979), - [anon_sym_instance_sizeof] = ACTIONS(4979), - [anon_sym_offsetof] = ACTIONS(4979), - [sym__constant_segment] = ACTIONS(4981), - [anon_sym_COLON_COLON] = ACTIONS(4981), - [anon_sym___LINE__] = ACTIONS(4979), - [anon_sym___END_LINE__] = ACTIONS(4979), - [anon_sym___FILE__] = ACTIONS(4979), - [anon_sym___DIR__] = ACTIONS(4979), - [sym_special_variable] = ACTIONS(4981), - [sym_identifier_method_call] = ACTIONS(4981), - [sym_instance_var] = ACTIONS(4981), - [sym_class_var] = ACTIONS(4981), - [sym_self] = ACTIONS(4979), - [anon_sym_alias] = ACTIONS(4979), - [anon_sym_begin] = ACTIONS(4979), - [anon_sym_while] = ACTIONS(4979), - [anon_sym_until] = ACTIONS(4979), - [anon_sym_require] = ACTIONS(4979), - [anon_sym_case] = ACTIONS(4979), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4981), - [sym__start_of_named_tuple] = ACTIONS(4981), - [sym_unary_plus] = ACTIONS(4981), - [sym_unary_minus] = ACTIONS(4981), - [sym_unary_wrapping_plus] = ACTIONS(4981), - [sym_unary_wrapping_minus] = ACTIONS(4981), - [sym__beginless_range_operator] = ACTIONS(4981), - [sym__regex_start] = ACTIONS(4981), - [sym__regular_if_keyword] = ACTIONS(4981), - [sym__regular_unless_keyword] = ACTIONS(4981), - [sym__string_literal_start] = ACTIONS(4981), - [sym__string_percent_literal_start] = ACTIONS(4981), - [sym__command_percent_literal_start] = ACTIONS(4981), - [sym__string_array_percent_literal_start] = ACTIONS(4981), - [sym__symbol_array_percent_literal_start] = ACTIONS(4981), - [sym__regex_percent_literal_start] = ACTIONS(4981), - [sym_heredoc_start] = ACTIONS(4981), + [sym_identifier] = ACTIONS(5009), + [anon_sym_SEMI] = ACTIONS(5011), + [anon_sym_LPAREN] = ACTIONS(5011), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(5009), + [sym_true] = ACTIONS(5009), + [sym_false] = ACTIONS(5009), + [aux_sym_integer_token2] = ACTIONS(5009), + [aux_sym_float_token2] = ACTIONS(5011), + [anon_sym_SQUOTE] = ACTIONS(5011), + [sym_operator_symbol] = ACTIONS(5011), + [sym_unquoted_symbol] = ACTIONS(5011), + [anon_sym_COLON_DQUOTE] = ACTIONS(5011), + [anon_sym_BQUOTE] = ACTIONS(5011), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_DASH_GT] = ACTIONS(5011), + [anon_sym_annotation] = ACTIONS(5009), + [anon_sym_end] = ACTIONS(5009), + [anon_sym_AT_LBRACK] = ACTIONS(5011), + [anon_sym_private] = ACTIONS(5009), + [anon_sym_module] = ACTIONS(5009), + [anon_sym_abstract] = ACTIONS(5009), + [anon_sym_class] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(5011), + [anon_sym_struct] = ACTIONS(5009), + [anon_sym_enum] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5011), + [anon_sym_BANG] = ACTIONS(5011), + [anon_sym_TILDE] = ACTIONS(5011), + [anon_sym_def] = ACTIONS(5009), + [anon_sym_protected] = ACTIONS(5009), + [anon_sym_include] = ACTIONS(5009), + [anon_sym_extend] = ACTIONS(5009), + [anon_sym_return] = ACTIONS(5009), + [anon_sym_next] = ACTIONS(5009), + [anon_sym_break] = ACTIONS(5009), + [anon_sym_with] = ACTIONS(5009), + [anon_sym_yield] = ACTIONS(5009), + [anon_sym_typeof] = ACTIONS(5009), + [anon_sym_sizeof] = ACTIONS(5009), + [anon_sym_instance_sizeof] = ACTIONS(5009), + [anon_sym_offsetof] = ACTIONS(5009), + [sym__constant_segment] = ACTIONS(5011), + [anon_sym_COLON_COLON] = ACTIONS(5011), + [anon_sym___LINE__] = ACTIONS(5009), + [anon_sym___END_LINE__] = ACTIONS(5009), + [anon_sym___FILE__] = ACTIONS(5009), + [anon_sym___DIR__] = ACTIONS(5009), + [sym_special_variable] = ACTIONS(5011), + [sym_identifier_method_call] = ACTIONS(5011), + [sym_instance_var] = ACTIONS(5011), + [sym_class_var] = ACTIONS(5011), + [sym_self] = ACTIONS(5009), + [anon_sym_alias] = ACTIONS(5009), + [anon_sym_begin] = ACTIONS(5009), + [anon_sym_while] = ACTIONS(5009), + [anon_sym_until] = ACTIONS(5009), + [anon_sym_require] = ACTIONS(5009), + [anon_sym_case] = ACTIONS(5009), + [anon_sym_select] = ACTIONS(5009), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(5011), + [sym__start_of_named_tuple] = ACTIONS(5011), + [sym_unary_plus] = ACTIONS(5011), + [sym_unary_minus] = ACTIONS(5011), + [sym_unary_wrapping_plus] = ACTIONS(5011), + [sym_unary_wrapping_minus] = ACTIONS(5011), + [sym__beginless_range_operator] = ACTIONS(5011), + [sym__regex_start] = ACTIONS(5011), + [sym__regular_if_keyword] = ACTIONS(5011), + [sym__regular_unless_keyword] = ACTIONS(5011), + [sym__string_literal_start] = ACTIONS(5011), + [sym__string_percent_literal_start] = ACTIONS(5011), + [sym__command_percent_literal_start] = ACTIONS(5011), + [sym__string_array_percent_literal_start] = ACTIONS(5011), + [sym__symbol_array_percent_literal_start] = ACTIONS(5011), + [sym__regex_percent_literal_start] = ACTIONS(5011), + [sym_heredoc_start] = ACTIONS(5011), [sym__heredoc_body_start] = ACTIONS(7), }, [2134] = { [sym_heredoc_body] = STATE(2134), - [sym_identifier] = ACTIONS(4983), - [anon_sym_SEMI] = ACTIONS(4985), - [anon_sym_LPAREN] = ACTIONS(4985), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4983), - [sym_true] = ACTIONS(4983), - [sym_false] = ACTIONS(4983), - [aux_sym_integer_token2] = ACTIONS(4983), - [aux_sym_float_token2] = ACTIONS(4985), - [anon_sym_SQUOTE] = ACTIONS(4985), - [sym_operator_symbol] = ACTIONS(4985), - [sym_unquoted_symbol] = ACTIONS(4985), - [anon_sym_COLON_DQUOTE] = ACTIONS(4985), - [anon_sym_BQUOTE] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_DASH_GT] = ACTIONS(4985), - [anon_sym_annotation] = ACTIONS(4983), - [anon_sym_end] = ACTIONS(4983), - [anon_sym_AT_LBRACK] = ACTIONS(4985), - [anon_sym_private] = ACTIONS(4983), - [anon_sym_module] = ACTIONS(4983), - [anon_sym_abstract] = ACTIONS(4983), - [anon_sym_class] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4985), - [anon_sym_struct] = ACTIONS(4983), - [anon_sym_enum] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4985), - [anon_sym_BANG] = ACTIONS(4985), - [anon_sym_TILDE] = ACTIONS(4985), - [anon_sym_def] = ACTIONS(4983), - [anon_sym_protected] = ACTIONS(4983), - [anon_sym_include] = ACTIONS(4983), - [anon_sym_extend] = ACTIONS(4983), - [anon_sym_return] = ACTIONS(4983), - [anon_sym_next] = ACTIONS(4983), - [anon_sym_break] = ACTIONS(4983), - [anon_sym_with] = ACTIONS(4983), - [anon_sym_yield] = ACTIONS(4983), - [anon_sym_typeof] = ACTIONS(4983), - [anon_sym_sizeof] = ACTIONS(4983), - [anon_sym_instance_sizeof] = ACTIONS(4983), - [anon_sym_offsetof] = ACTIONS(4983), - [sym__constant_segment] = ACTIONS(4985), - [anon_sym_COLON_COLON] = ACTIONS(4985), - [anon_sym___LINE__] = ACTIONS(4983), - [anon_sym___END_LINE__] = ACTIONS(4983), - [anon_sym___FILE__] = ACTIONS(4983), - [anon_sym___DIR__] = ACTIONS(4983), - [sym_special_variable] = ACTIONS(4985), - [sym_identifier_method_call] = ACTIONS(4985), - [sym_instance_var] = ACTIONS(4985), - [sym_class_var] = ACTIONS(4985), - [sym_self] = ACTIONS(4983), - [anon_sym_alias] = ACTIONS(4983), - [anon_sym_begin] = ACTIONS(4983), - [anon_sym_while] = ACTIONS(4983), - [anon_sym_until] = ACTIONS(4983), - [anon_sym_require] = ACTIONS(4983), - [anon_sym_case] = ACTIONS(4983), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4985), - [sym__start_of_named_tuple] = ACTIONS(4985), - [sym_unary_plus] = ACTIONS(4985), - [sym_unary_minus] = ACTIONS(4985), - [sym_unary_wrapping_plus] = ACTIONS(4985), - [sym_unary_wrapping_minus] = ACTIONS(4985), - [sym__beginless_range_operator] = ACTIONS(4985), - [sym__regex_start] = ACTIONS(4985), - [sym__regular_if_keyword] = ACTIONS(4985), - [sym__regular_unless_keyword] = ACTIONS(4985), - [sym__string_literal_start] = ACTIONS(4985), - [sym__string_percent_literal_start] = ACTIONS(4985), - [sym__command_percent_literal_start] = ACTIONS(4985), - [sym__string_array_percent_literal_start] = ACTIONS(4985), - [sym__symbol_array_percent_literal_start] = ACTIONS(4985), - [sym__regex_percent_literal_start] = ACTIONS(4985), - [sym_heredoc_start] = ACTIONS(4985), + [sym_typeof] = STATE(2379), + [sym_constant] = STATE(2351), + [sym__type] = STATE(2360), + [sym_class_type] = STATE(2379), + [sym_union_type] = STATE(2379), + [sym__parenthesized_type] = STATE(2379), + [sym_no_args_proc_type] = STATE(2379), + [sym_parenthesized_proc_type] = STATE(2379), + [sym_tuple_type] = STATE(2379), + [sym_named_tuple_type] = STATE(2379), + [sym_generic_instance_type] = STATE(2379), + [sym_nilable_type] = STATE(2379), + [sym_pointer_type] = STATE(2379), + [sym_static_array_type] = STATE(2379), + [ts_builtin_sym_end] = ACTIONS(4412), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(4993), + [anon_sym_RPAREN] = ACTIONS(4412), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(4995), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(4997), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [sym_self] = ACTIONS(4999), + [sym_underscore_type] = ACTIONS(4999), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_do] = ACTIONS(4412), + [anon_sym_elsif] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_when] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4412), + [sym__line_break] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4412), + [sym__start_of_tuple_type] = ACTIONS(5001), + [sym__start_of_named_tuple_type] = ACTIONS(5003), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modifier_if_keyword] = ACTIONS(4412), + [sym__modifier_unless_keyword] = ACTIONS(4412), + [sym__modifier_rescue_keyword] = ACTIONS(4412), + [sym__modifier_ensure_keyword] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2135] = { [sym_heredoc_body] = STATE(2135), - [sym_identifier] = ACTIONS(4773), - [anon_sym_SEMI] = ACTIONS(4771), - [anon_sym_LPAREN] = ACTIONS(4771), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4773), - [sym_true] = ACTIONS(4773), - [sym_false] = ACTIONS(4773), - [aux_sym_integer_token2] = ACTIONS(4773), - [aux_sym_float_token2] = ACTIONS(4771), - [anon_sym_SQUOTE] = ACTIONS(4771), - [sym_operator_symbol] = ACTIONS(4771), - [sym_unquoted_symbol] = ACTIONS(4771), - [anon_sym_COLON_DQUOTE] = ACTIONS(4771), - [anon_sym_BQUOTE] = ACTIONS(4771), - [anon_sym_LBRACK] = ACTIONS(4771), - [anon_sym_DASH_GT] = ACTIONS(4771), - [anon_sym_annotation] = ACTIONS(4773), - [anon_sym_end] = ACTIONS(4773), - [anon_sym_AT_LBRACK] = ACTIONS(4771), - [anon_sym_private] = ACTIONS(4773), - [anon_sym_module] = ACTIONS(4773), - [anon_sym_abstract] = ACTIONS(4773), - [anon_sym_class] = ACTIONS(4773), - [anon_sym_struct] = ACTIONS(4773), - [anon_sym_enum] = ACTIONS(4773), - [anon_sym_STAR] = ACTIONS(4771), - [anon_sym_BANG] = ACTIONS(4771), - [anon_sym_TILDE] = ACTIONS(4771), - [anon_sym_def] = ACTIONS(4773), - [anon_sym_protected] = ACTIONS(4773), - [anon_sym_include] = ACTIONS(4773), - [anon_sym_extend] = ACTIONS(4773), - [anon_sym_return] = ACTIONS(4773), - [anon_sym_next] = ACTIONS(4773), - [anon_sym_break] = ACTIONS(4773), - [anon_sym_with] = ACTIONS(4773), - [anon_sym_yield] = ACTIONS(4773), - [anon_sym_typeof] = ACTIONS(4773), - [anon_sym_sizeof] = ACTIONS(4773), - [anon_sym_instance_sizeof] = ACTIONS(4773), - [anon_sym_offsetof] = ACTIONS(4773), - [sym__constant_segment] = ACTIONS(4771), - [anon_sym_COLON_COLON] = ACTIONS(4771), - [anon_sym___LINE__] = ACTIONS(4773), - [anon_sym___END_LINE__] = ACTIONS(4773), - [anon_sym___FILE__] = ACTIONS(4773), - [anon_sym___DIR__] = ACTIONS(4773), - [sym_special_variable] = ACTIONS(4771), - [sym_identifier_method_call] = ACTIONS(4771), - [sym_instance_var] = ACTIONS(4771), - [sym_class_var] = ACTIONS(4771), - [sym_self] = ACTIONS(4773), - [anon_sym_alias] = ACTIONS(4773), - [anon_sym_begin] = ACTIONS(4773), - [anon_sym_while] = ACTIONS(4773), - [anon_sym_until] = ACTIONS(4773), - [anon_sym_require] = ACTIONS(4773), - [anon_sym_case] = ACTIONS(4773), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4771), - [sym__start_of_named_tuple] = ACTIONS(4771), - [sym_unary_plus] = ACTIONS(4771), - [sym_unary_minus] = ACTIONS(4771), - [sym_unary_wrapping_plus] = ACTIONS(4771), - [sym_unary_wrapping_minus] = ACTIONS(4771), - [sym__beginless_range_operator] = ACTIONS(4771), - [sym__regex_start] = ACTIONS(4771), - [sym__regular_if_keyword] = ACTIONS(4771), - [sym__regular_unless_keyword] = ACTIONS(4771), - [sym__regular_ensure_keyword] = ACTIONS(4771), - [sym__string_literal_start] = ACTIONS(4771), - [sym__string_percent_literal_start] = ACTIONS(4771), - [sym__command_percent_literal_start] = ACTIONS(4771), - [sym__string_array_percent_literal_start] = ACTIONS(4771), - [sym__symbol_array_percent_literal_start] = ACTIONS(4771), - [sym__regex_percent_literal_start] = ACTIONS(4771), - [sym_heredoc_start] = ACTIONS(4771), + [sym_typeof] = STATE(2379), + [sym_constant] = STATE(2351), + [sym__type] = STATE(2338), + [sym_class_type] = STATE(2379), + [sym_union_type] = STATE(2379), + [sym__parenthesized_type] = STATE(2379), + [sym_no_args_proc_type] = STATE(2379), + [sym_parenthesized_proc_type] = STATE(2379), + [sym_tuple_type] = STATE(2379), + [sym_named_tuple_type] = STATE(2379), + [sym_generic_instance_type] = STATE(2379), + [sym_nilable_type] = STATE(2379), + [sym_pointer_type] = STATE(2379), + [sym_static_array_type] = STATE(2379), + [ts_builtin_sym_end] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(5013), + [anon_sym_RPAREN] = ACTIONS(4362), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4362), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5015), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(4997), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [sym_self] = ACTIONS(4999), + [sym_underscore_type] = ACTIONS(4999), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_do] = ACTIONS(4362), + [anon_sym_elsif] = ACTIONS(4362), + [anon_sym_else] = ACTIONS(4362), + [anon_sym_when] = ACTIONS(4362), + [anon_sym_in] = ACTIONS(4362), + [sym__line_break] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4362), + [sym__start_of_tuple_type] = ACTIONS(5001), + [sym__start_of_named_tuple_type] = ACTIONS(5003), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modifier_if_keyword] = ACTIONS(4362), + [sym__modifier_unless_keyword] = ACTIONS(4362), + [sym__modifier_rescue_keyword] = ACTIONS(4362), + [sym__modifier_ensure_keyword] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2136] = { [sym_heredoc_body] = STATE(2136), - [sym_identifier] = ACTIONS(4593), - [anon_sym_SEMI] = ACTIONS(4595), - [anon_sym_LPAREN] = ACTIONS(4595), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4593), - [sym_true] = ACTIONS(4593), - [sym_false] = ACTIONS(4593), - [aux_sym_integer_token2] = ACTIONS(4593), - [aux_sym_float_token2] = ACTIONS(4595), - [anon_sym_SQUOTE] = ACTIONS(4595), - [sym_operator_symbol] = ACTIONS(4595), - [sym_unquoted_symbol] = ACTIONS(4595), - [anon_sym_COLON_DQUOTE] = ACTIONS(4595), - [anon_sym_BQUOTE] = ACTIONS(4595), - [anon_sym_LBRACK] = ACTIONS(4595), - [anon_sym_COMMA] = ACTIONS(4595), - [anon_sym_DASH_GT] = ACTIONS(4595), - [anon_sym_annotation] = ACTIONS(4593), - [anon_sym_end] = ACTIONS(4593), - [anon_sym_AT_LBRACK] = ACTIONS(4595), - [anon_sym_private] = ACTIONS(4593), - [anon_sym_module] = ACTIONS(4593), - [anon_sym_abstract] = ACTIONS(4593), - [anon_sym_class] = ACTIONS(4593), - [anon_sym_struct] = ACTIONS(4593), - [anon_sym_enum] = ACTIONS(4593), - [anon_sym_STAR] = ACTIONS(4595), - [anon_sym_BANG] = ACTIONS(4595), - [anon_sym_TILDE] = ACTIONS(4595), - [anon_sym_def] = ACTIONS(4593), - [anon_sym_protected] = ACTIONS(4593), - [anon_sym_include] = ACTIONS(4593), - [anon_sym_extend] = ACTIONS(4593), - [anon_sym_return] = ACTIONS(4593), - [anon_sym_next] = ACTIONS(4593), - [anon_sym_break] = ACTIONS(4593), - [anon_sym_with] = ACTIONS(4593), - [anon_sym_yield] = ACTIONS(4593), - [anon_sym_typeof] = ACTIONS(4593), - [anon_sym_sizeof] = ACTIONS(4593), - [anon_sym_instance_sizeof] = ACTIONS(4593), - [anon_sym_offsetof] = ACTIONS(4593), - [sym__constant_segment] = ACTIONS(4595), - [anon_sym_COLON_COLON] = ACTIONS(4595), - [anon_sym___LINE__] = ACTIONS(4593), - [anon_sym___END_LINE__] = ACTIONS(4593), - [anon_sym___FILE__] = ACTIONS(4593), - [anon_sym___DIR__] = ACTIONS(4593), - [sym_special_variable] = ACTIONS(4595), - [sym_identifier_method_call] = ACTIONS(4595), - [sym_instance_var] = ACTIONS(4595), - [sym_class_var] = ACTIONS(4595), - [sym_self] = ACTIONS(4593), - [anon_sym_alias] = ACTIONS(4593), - [anon_sym_begin] = ACTIONS(4593), - [anon_sym_while] = ACTIONS(4593), - [anon_sym_until] = ACTIONS(4593), - [anon_sym_require] = ACTIONS(4593), - [anon_sym_case] = ACTIONS(4593), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4595), - [sym__start_of_named_tuple] = ACTIONS(4595), - [sym_unary_plus] = ACTIONS(4595), - [sym_unary_minus] = ACTIONS(4595), - [sym_unary_wrapping_plus] = ACTIONS(4595), - [sym_unary_wrapping_minus] = ACTIONS(4595), - [sym__beginless_range_operator] = ACTIONS(4595), - [sym__regex_start] = ACTIONS(4595), - [sym__regular_if_keyword] = ACTIONS(4595), - [sym__regular_unless_keyword] = ACTIONS(4595), - [sym__string_literal_start] = ACTIONS(4595), - [sym__string_percent_literal_start] = ACTIONS(4595), - [sym__command_percent_literal_start] = ACTIONS(4595), - [sym__string_array_percent_literal_start] = ACTIONS(4595), - [sym__symbol_array_percent_literal_start] = ACTIONS(4595), - [sym__regex_percent_literal_start] = ACTIONS(4595), - [sym_heredoc_start] = ACTIONS(4595), + [sym_identifier] = ACTIONS(4798), + [anon_sym_SEMI] = ACTIONS(4796), + [anon_sym_LPAREN] = ACTIONS(4796), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4798), + [sym_true] = ACTIONS(4798), + [sym_false] = ACTIONS(4798), + [aux_sym_integer_token2] = ACTIONS(4798), + [aux_sym_float_token2] = ACTIONS(4796), + [anon_sym_SQUOTE] = ACTIONS(4796), + [sym_operator_symbol] = ACTIONS(4796), + [sym_unquoted_symbol] = ACTIONS(4796), + [anon_sym_COLON_DQUOTE] = ACTIONS(4796), + [anon_sym_BQUOTE] = ACTIONS(4796), + [anon_sym_LBRACK] = ACTIONS(4796), + [anon_sym_DASH_GT] = ACTIONS(4796), + [anon_sym_annotation] = ACTIONS(4798), + [anon_sym_end] = ACTIONS(4798), + [anon_sym_AT_LBRACK] = ACTIONS(4796), + [anon_sym_private] = ACTIONS(4798), + [anon_sym_module] = ACTIONS(4798), + [anon_sym_abstract] = ACTIONS(4798), + [anon_sym_class] = ACTIONS(4798), + [anon_sym_struct] = ACTIONS(4798), + [anon_sym_enum] = ACTIONS(4798), + [anon_sym_STAR] = ACTIONS(4796), + [anon_sym_BANG] = ACTIONS(4796), + [anon_sym_TILDE] = ACTIONS(4796), + [anon_sym_def] = ACTIONS(4798), + [anon_sym_protected] = ACTIONS(4798), + [anon_sym_include] = ACTIONS(4798), + [anon_sym_extend] = ACTIONS(4798), + [anon_sym_return] = ACTIONS(4798), + [anon_sym_next] = ACTIONS(4798), + [anon_sym_break] = ACTIONS(4798), + [anon_sym_with] = ACTIONS(4798), + [anon_sym_yield] = ACTIONS(4798), + [anon_sym_typeof] = ACTIONS(4798), + [anon_sym_sizeof] = ACTIONS(4798), + [anon_sym_instance_sizeof] = ACTIONS(4798), + [anon_sym_offsetof] = ACTIONS(4798), + [sym__constant_segment] = ACTIONS(4796), + [anon_sym_COLON_COLON] = ACTIONS(4796), + [anon_sym___LINE__] = ACTIONS(4798), + [anon_sym___END_LINE__] = ACTIONS(4798), + [anon_sym___FILE__] = ACTIONS(4798), + [anon_sym___DIR__] = ACTIONS(4798), + [sym_special_variable] = ACTIONS(4796), + [sym_identifier_method_call] = ACTIONS(4796), + [sym_instance_var] = ACTIONS(4796), + [sym_class_var] = ACTIONS(4796), + [sym_self] = ACTIONS(4798), + [anon_sym_alias] = ACTIONS(4798), + [anon_sym_begin] = ACTIONS(4798), + [anon_sym_while] = ACTIONS(4798), + [anon_sym_until] = ACTIONS(4798), + [anon_sym_require] = ACTIONS(4798), + [anon_sym_case] = ACTIONS(4798), + [anon_sym_select] = ACTIONS(4798), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4796), + [sym__start_of_named_tuple] = ACTIONS(4796), + [sym_unary_plus] = ACTIONS(4796), + [sym_unary_minus] = ACTIONS(4796), + [sym_unary_wrapping_plus] = ACTIONS(4796), + [sym_unary_wrapping_minus] = ACTIONS(4796), + [sym__beginless_range_operator] = ACTIONS(4796), + [sym__regex_start] = ACTIONS(4796), + [sym__regular_if_keyword] = ACTIONS(4796), + [sym__regular_unless_keyword] = ACTIONS(4796), + [sym__regular_ensure_keyword] = ACTIONS(4796), + [sym__string_literal_start] = ACTIONS(4796), + [sym__string_percent_literal_start] = ACTIONS(4796), + [sym__command_percent_literal_start] = ACTIONS(4796), + [sym__string_array_percent_literal_start] = ACTIONS(4796), + [sym__symbol_array_percent_literal_start] = ACTIONS(4796), + [sym__regex_percent_literal_start] = ACTIONS(4796), + [sym_heredoc_start] = ACTIONS(4796), [sym__heredoc_body_start] = ACTIONS(7), }, [2137] = { [sym_heredoc_body] = STATE(2137), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1836), - [sym_true] = ACTIONS(1836), - [sym_false] = ACTIONS(1836), - [aux_sym_integer_token2] = ACTIONS(1836), - [aux_sym_float_token2] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [sym_operator_symbol] = ACTIONS(1795), - [sym_unquoted_symbol] = ACTIONS(1795), - [anon_sym_COLON_DQUOTE] = ACTIONS(1795), - [anon_sym_BQUOTE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_DASH_GT] = ACTIONS(1795), - [anon_sym_annotation] = ACTIONS(1836), - [anon_sym_end] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_abstract] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_protected] = ACTIONS(1836), - [anon_sym_include] = ACTIONS(1836), - [anon_sym_extend] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_next] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_with] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1836), - [anon_sym_instance_sizeof] = ACTIONS(1836), - [anon_sym_offsetof] = ACTIONS(1836), - [sym__constant_segment] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym___LINE__] = ACTIONS(1836), - [anon_sym___END_LINE__] = ACTIONS(1836), - [anon_sym___FILE__] = ACTIONS(1836), - [anon_sym___DIR__] = ACTIONS(1836), - [sym_special_variable] = ACTIONS(1795), - [sym_identifier_method_call] = ACTIONS(1795), - [sym_instance_var] = ACTIONS(1795), - [sym_class_var] = ACTIONS(1795), - [sym_self] = ACTIONS(1836), - [anon_sym_alias] = ACTIONS(1836), - [anon_sym_begin] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_until] = ACTIONS(1836), - [anon_sym_require] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1836), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1795), - [sym__start_of_named_tuple] = ACTIONS(1795), - [sym_unary_plus] = ACTIONS(1795), - [sym_unary_minus] = ACTIONS(1795), - [sym_unary_wrapping_plus] = ACTIONS(1795), - [sym_unary_wrapping_minus] = ACTIONS(1795), - [sym__beginless_range_operator] = ACTIONS(1795), - [sym__regex_start] = ACTIONS(1795), - [sym__regular_if_keyword] = ACTIONS(1795), - [sym__regular_unless_keyword] = ACTIONS(1795), - [sym__regular_ensure_keyword] = ACTIONS(1795), - [sym__string_literal_start] = ACTIONS(1795), - [sym__string_percent_literal_start] = ACTIONS(1795), - [sym__command_percent_literal_start] = ACTIONS(1795), - [sym__string_array_percent_literal_start] = ACTIONS(1795), - [sym__symbol_array_percent_literal_start] = ACTIONS(1795), - [sym__regex_percent_literal_start] = ACTIONS(1795), - [sym_heredoc_start] = ACTIONS(1795), + [sym_typeof] = STATE(2379), + [sym_constant] = STATE(2351), + [sym__type] = STATE(2349), + [sym_class_type] = STATE(2379), + [sym_union_type] = STATE(2379), + [sym__parenthesized_type] = STATE(2379), + [sym_no_args_proc_type] = STATE(2379), + [sym_parenthesized_proc_type] = STATE(2379), + [sym_tuple_type] = STATE(2379), + [sym_named_tuple_type] = STATE(2379), + [sym_generic_instance_type] = STATE(2379), + [sym_nilable_type] = STATE(2379), + [sym_pointer_type] = STATE(2379), + [sym_static_array_type] = STATE(2379), + [ts_builtin_sym_end] = ACTIONS(4412), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(5013), + [anon_sym_RPAREN] = ACTIONS(4412), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5018), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(4997), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [sym_self] = ACTIONS(4999), + [sym_underscore_type] = ACTIONS(4999), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_do] = ACTIONS(4412), + [anon_sym_elsif] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_when] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4412), + [sym__line_break] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4412), + [sym__start_of_tuple_type] = ACTIONS(5001), + [sym__start_of_named_tuple_type] = ACTIONS(5003), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modifier_if_keyword] = ACTIONS(4412), + [sym__modifier_unless_keyword] = ACTIONS(4412), + [sym__modifier_rescue_keyword] = ACTIONS(4412), + [sym__modifier_ensure_keyword] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2138] = { [sym_heredoc_body] = STATE(2138), - [sym_identifier] = ACTIONS(4765), - [anon_sym_SEMI] = ACTIONS(4763), - [anon_sym_LPAREN] = ACTIONS(4763), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4765), - [sym_true] = ACTIONS(4765), - [sym_false] = ACTIONS(4765), - [aux_sym_integer_token2] = ACTIONS(4765), - [aux_sym_float_token2] = ACTIONS(4763), - [anon_sym_SQUOTE] = ACTIONS(4763), - [sym_operator_symbol] = ACTIONS(4763), - [sym_unquoted_symbol] = ACTIONS(4763), - [anon_sym_COLON_DQUOTE] = ACTIONS(4763), - [anon_sym_BQUOTE] = ACTIONS(4763), - [anon_sym_LBRACK] = ACTIONS(4763), - [anon_sym_DASH_GT] = ACTIONS(4763), - [anon_sym_annotation] = ACTIONS(4765), - [anon_sym_end] = ACTIONS(4765), - [anon_sym_AT_LBRACK] = ACTIONS(4763), - [anon_sym_private] = ACTIONS(4765), - [anon_sym_module] = ACTIONS(4765), - [anon_sym_abstract] = ACTIONS(4765), - [anon_sym_class] = ACTIONS(4765), - [anon_sym_struct] = ACTIONS(4765), - [anon_sym_enum] = ACTIONS(4765), - [anon_sym_STAR] = ACTIONS(4763), - [anon_sym_BANG] = ACTIONS(4763), - [anon_sym_TILDE] = ACTIONS(4763), - [anon_sym_def] = ACTIONS(4765), - [anon_sym_protected] = ACTIONS(4765), - [anon_sym_include] = ACTIONS(4765), - [anon_sym_extend] = ACTIONS(4765), - [anon_sym_return] = ACTIONS(4765), - [anon_sym_next] = ACTIONS(4765), - [anon_sym_break] = ACTIONS(4765), - [anon_sym_with] = ACTIONS(4765), - [anon_sym_yield] = ACTIONS(4765), - [anon_sym_typeof] = ACTIONS(4765), - [anon_sym_sizeof] = ACTIONS(4765), - [anon_sym_instance_sizeof] = ACTIONS(4765), - [anon_sym_offsetof] = ACTIONS(4765), - [sym__constant_segment] = ACTIONS(4763), - [anon_sym_COLON_COLON] = ACTIONS(4763), - [anon_sym___LINE__] = ACTIONS(4765), - [anon_sym___END_LINE__] = ACTIONS(4765), - [anon_sym___FILE__] = ACTIONS(4765), - [anon_sym___DIR__] = ACTIONS(4765), - [sym_special_variable] = ACTIONS(4763), - [sym_identifier_method_call] = ACTIONS(4763), - [sym_instance_var] = ACTIONS(4763), - [sym_class_var] = ACTIONS(4763), - [sym_self] = ACTIONS(4765), - [anon_sym_alias] = ACTIONS(4765), - [anon_sym_begin] = ACTIONS(4765), - [anon_sym_while] = ACTIONS(4765), - [anon_sym_until] = ACTIONS(4765), - [anon_sym_require] = ACTIONS(4765), - [anon_sym_case] = ACTIONS(4765), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4763), - [sym__start_of_named_tuple] = ACTIONS(4763), - [sym_unary_plus] = ACTIONS(4763), - [sym_unary_minus] = ACTIONS(4763), - [sym_unary_wrapping_plus] = ACTIONS(4763), - [sym_unary_wrapping_minus] = ACTIONS(4763), - [sym__beginless_range_operator] = ACTIONS(4763), - [sym__regex_start] = ACTIONS(4763), - [sym__regular_if_keyword] = ACTIONS(4763), - [sym__regular_unless_keyword] = ACTIONS(4763), - [sym__regular_ensure_keyword] = ACTIONS(4763), - [sym__string_literal_start] = ACTIONS(4763), - [sym__string_percent_literal_start] = ACTIONS(4763), - [sym__command_percent_literal_start] = ACTIONS(4763), - [sym__string_array_percent_literal_start] = ACTIONS(4763), - [sym__symbol_array_percent_literal_start] = ACTIONS(4763), - [sym__regex_percent_literal_start] = ACTIONS(4763), - [sym_heredoc_start] = ACTIONS(4763), + [sym_typeof] = STATE(2379), + [sym_constant] = STATE(2351), + [sym__type] = STATE(2348), + [sym_class_type] = STATE(2379), + [sym_union_type] = STATE(2379), + [sym__parenthesized_type] = STATE(2379), + [sym_no_args_proc_type] = STATE(2379), + [sym_parenthesized_proc_type] = STATE(2379), + [sym_tuple_type] = STATE(2379), + [sym_named_tuple_type] = STATE(2379), + [sym_generic_instance_type] = STATE(2379), + [sym_nilable_type] = STATE(2379), + [sym_pointer_type] = STATE(2379), + [sym_static_array_type] = STATE(2379), + [ts_builtin_sym_end] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(5013), + [anon_sym_RPAREN] = ACTIONS(4390), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5021), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(4997), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [sym_self] = ACTIONS(4999), + [sym_underscore_type] = ACTIONS(4999), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_do] = ACTIONS(4390), + [anon_sym_elsif] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [sym__line_break] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4390), + [sym__start_of_tuple_type] = ACTIONS(5001), + [sym__start_of_named_tuple_type] = ACTIONS(5003), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modifier_if_keyword] = ACTIONS(4390), + [sym__modifier_unless_keyword] = ACTIONS(4390), + [sym__modifier_rescue_keyword] = ACTIONS(4390), + [sym__modifier_ensure_keyword] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2139] = { [sym_heredoc_body] = STATE(2139), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_RPAREN] = ACTIONS(4987), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1836), - [sym_true] = ACTIONS(1836), - [sym_false] = ACTIONS(1836), - [aux_sym_integer_token2] = ACTIONS(1836), - [aux_sym_float_token2] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [sym_operator_symbol] = ACTIONS(1795), - [sym_unquoted_symbol] = ACTIONS(1795), - [anon_sym_COLON_DQUOTE] = ACTIONS(1795), - [anon_sym_BQUOTE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_DASH_GT] = ACTIONS(1795), - [anon_sym_annotation] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_abstract] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_protected] = ACTIONS(1836), - [anon_sym_include] = ACTIONS(1836), - [anon_sym_extend] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_next] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_with] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1836), - [anon_sym_instance_sizeof] = ACTIONS(1836), - [anon_sym_offsetof] = ACTIONS(1836), - [sym__constant_segment] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym___LINE__] = ACTIONS(1836), - [anon_sym___END_LINE__] = ACTIONS(1836), - [anon_sym___FILE__] = ACTIONS(1836), - [anon_sym___DIR__] = ACTIONS(1836), - [sym_special_variable] = ACTIONS(1795), - [sym_identifier_method_call] = ACTIONS(1795), - [sym_instance_var] = ACTIONS(1795), - [sym_class_var] = ACTIONS(1795), - [sym_self] = ACTIONS(1836), - [anon_sym_alias] = ACTIONS(1836), - [anon_sym_begin] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_until] = ACTIONS(1836), - [anon_sym_require] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1836), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1795), - [sym__start_of_named_tuple] = ACTIONS(1795), - [sym_unary_plus] = ACTIONS(1795), - [sym_unary_minus] = ACTIONS(1795), - [sym_unary_wrapping_plus] = ACTIONS(1795), - [sym_unary_wrapping_minus] = ACTIONS(1795), - [sym__beginless_range_operator] = ACTIONS(1795), - [sym__regex_start] = ACTIONS(1795), - [sym__regular_if_keyword] = ACTIONS(1795), - [sym__regular_unless_keyword] = ACTIONS(1795), - [sym__string_literal_start] = ACTIONS(1795), - [sym__string_percent_literal_start] = ACTIONS(1795), - [sym__command_percent_literal_start] = ACTIONS(1795), - [sym__string_array_percent_literal_start] = ACTIONS(1795), - [sym__symbol_array_percent_literal_start] = ACTIONS(1795), - [sym__regex_percent_literal_start] = ACTIONS(1795), - [sym_heredoc_start] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(5024), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1872), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [aux_sym_integer_token2] = ACTIONS(1872), + [aux_sym_float_token2] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [sym_operator_symbol] = ACTIONS(1831), + [sym_unquoted_symbol] = ACTIONS(1831), + [anon_sym_COLON_DQUOTE] = ACTIONS(1831), + [anon_sym_BQUOTE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_DASH_GT] = ACTIONS(1831), + [anon_sym_annotation] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_abstract] = ACTIONS(1872), + [anon_sym_class] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_protected] = ACTIONS(1872), + [anon_sym_include] = ACTIONS(1872), + [anon_sym_extend] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_next] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_with] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym_sizeof] = ACTIONS(1872), + [anon_sym_instance_sizeof] = ACTIONS(1872), + [anon_sym_offsetof] = ACTIONS(1872), + [sym__constant_segment] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym___LINE__] = ACTIONS(1872), + [anon_sym___END_LINE__] = ACTIONS(1872), + [anon_sym___FILE__] = ACTIONS(1872), + [anon_sym___DIR__] = ACTIONS(1872), + [sym_special_variable] = ACTIONS(1831), + [sym_identifier_method_call] = ACTIONS(1831), + [sym_instance_var] = ACTIONS(1831), + [sym_class_var] = ACTIONS(1831), + [sym_self] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_begin] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_until] = ACTIONS(1872), + [anon_sym_require] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_select] = ACTIONS(1872), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1831), + [sym__start_of_named_tuple] = ACTIONS(1831), + [sym_unary_plus] = ACTIONS(1831), + [sym_unary_minus] = ACTIONS(1831), + [sym_unary_wrapping_plus] = ACTIONS(1831), + [sym_unary_wrapping_minus] = ACTIONS(1831), + [sym__beginless_range_operator] = ACTIONS(1831), + [sym__regex_start] = ACTIONS(1831), + [sym__regular_if_keyword] = ACTIONS(1831), + [sym__regular_unless_keyword] = ACTIONS(1831), + [sym__string_literal_start] = ACTIONS(1831), + [sym__string_percent_literal_start] = ACTIONS(1831), + [sym__command_percent_literal_start] = ACTIONS(1831), + [sym__string_array_percent_literal_start] = ACTIONS(1831), + [sym__symbol_array_percent_literal_start] = ACTIONS(1831), + [sym__regex_percent_literal_start] = ACTIONS(1831), + [sym_heredoc_start] = ACTIONS(1831), [sym__heredoc_body_start] = ACTIONS(7), }, [2140] = { [sym_heredoc_body] = STATE(2140), - [sym_typeof] = STATE(2434), - [sym_constant] = STATE(2391), - [sym__type] = STATE(2459), - [sym_class_type] = STATE(2434), - [sym_union_type] = STATE(2434), - [sym__parenthesized_type] = STATE(2434), - [sym_no_args_proc_type] = STATE(2434), - [sym_parenthesized_proc_type] = STATE(2434), - [sym_tuple_type] = STATE(2434), - [sym_named_tuple_type] = STATE(2434), - [sym_generic_instance_type] = STATE(2434), - [sym_nilable_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_static_array_type] = STATE(2434), - [ts_builtin_sym_end] = ACTIONS(4353), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4353), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(4993), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [sym_self] = ACTIONS(4995), - [sym_underscore_type] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_elsif] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4353), - [anon_sym_when] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4353), - [sym__line_break] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(4997), - [sym__start_of_named_tuple_type] = ACTIONS(4999), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modifier_if_keyword] = ACTIONS(4353), - [sym__modifier_unless_keyword] = ACTIONS(4353), - [sym__modifier_rescue_keyword] = ACTIONS(4353), - [sym__modifier_ensure_keyword] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(5026), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1872), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [aux_sym_integer_token2] = ACTIONS(1872), + [aux_sym_float_token2] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [sym_operator_symbol] = ACTIONS(1831), + [sym_unquoted_symbol] = ACTIONS(1831), + [anon_sym_COLON_DQUOTE] = ACTIONS(1831), + [anon_sym_BQUOTE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_DASH_GT] = ACTIONS(1831), + [anon_sym_annotation] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_abstract] = ACTIONS(1872), + [anon_sym_class] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_protected] = ACTIONS(1872), + [anon_sym_include] = ACTIONS(1872), + [anon_sym_extend] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_next] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_with] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym_sizeof] = ACTIONS(1872), + [anon_sym_instance_sizeof] = ACTIONS(1872), + [anon_sym_offsetof] = ACTIONS(1872), + [sym__constant_segment] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym___LINE__] = ACTIONS(1872), + [anon_sym___END_LINE__] = ACTIONS(1872), + [anon_sym___FILE__] = ACTIONS(1872), + [anon_sym___DIR__] = ACTIONS(1872), + [sym_special_variable] = ACTIONS(1831), + [sym_identifier_method_call] = ACTIONS(1831), + [sym_instance_var] = ACTIONS(1831), + [sym_class_var] = ACTIONS(1831), + [sym_self] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_begin] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_until] = ACTIONS(1872), + [anon_sym_require] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_select] = ACTIONS(1872), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1831), + [sym__start_of_named_tuple] = ACTIONS(1831), + [sym_unary_plus] = ACTIONS(1831), + [sym_unary_minus] = ACTIONS(1831), + [sym_unary_wrapping_plus] = ACTIONS(1831), + [sym_unary_wrapping_minus] = ACTIONS(1831), + [sym__beginless_range_operator] = ACTIONS(1831), + [sym__regex_start] = ACTIONS(1831), + [sym__regular_if_keyword] = ACTIONS(1831), + [sym__regular_unless_keyword] = ACTIONS(1831), + [sym__string_literal_start] = ACTIONS(1831), + [sym__string_percent_literal_start] = ACTIONS(1831), + [sym__command_percent_literal_start] = ACTIONS(1831), + [sym__string_array_percent_literal_start] = ACTIONS(1831), + [sym__symbol_array_percent_literal_start] = ACTIONS(1831), + [sym__regex_percent_literal_start] = ACTIONS(1831), + [sym_heredoc_start] = ACTIONS(1831), [sym__heredoc_body_start] = ACTIONS(7), }, [2141] = { [sym_heredoc_body] = STATE(2141), - [sym_typeof] = STATE(2367), - [sym_constant] = STATE(2346), - [sym__type] = STATE(2378), - [sym_class_type] = STATE(2367), - [sym_union_type] = STATE(2367), - [sym__parenthesized_type] = STATE(2367), - [sym_no_args_proc_type] = STATE(2367), - [sym_parenthesized_proc_type] = STATE(2367), - [sym_tuple_type] = STATE(2367), - [sym_named_tuple_type] = STATE(2367), - [sym_generic_instance_type] = STATE(2367), - [sym_nilable_type] = STATE(2367), - [sym_pointer_type] = STATE(2367), - [sym_static_array_type] = STATE(2367), - [ts_builtin_sym_end] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(4972), - [anon_sym_RPAREN] = ACTIONS(4431), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(4974), - [anon_sym_end] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_PIPE] = ACTIONS(4429), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ_GT] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_BANG_TILDE] = ACTIONS(4431), - [anon_sym_EQ_TILDE] = ACTIONS(4431), - [anon_sym_AMP_STAR] = ACTIONS(4429), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_typeof] = ACTIONS(4958), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [sym_self] = ACTIONS(4960), - [sym_underscore_type] = ACTIONS(4960), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_do] = ACTIONS(4431), - [anon_sym_elsif] = ACTIONS(4431), - [anon_sym_else] = ACTIONS(4431), - [anon_sym_when] = ACTIONS(4431), - [anon_sym_in] = ACTIONS(4431), - [sym__line_break] = ACTIONS(4431), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4431), - [sym__start_of_tuple_type] = ACTIONS(4962), - [sym__start_of_named_tuple_type] = ACTIONS(4964), - [sym__start_of_index_operator] = ACTIONS(4431), - [sym_binary_plus] = ACTIONS(4431), - [sym_binary_minus] = ACTIONS(4431), - [sym_binary_wrapping_plus] = ACTIONS(4431), - [sym_binary_wrapping_minus] = ACTIONS(4431), - [sym__binary_star] = ACTIONS(4431), - [sym__binary_double_star] = ACTIONS(4431), - [sym_binary_ampersand] = ACTIONS(4431), - [sym__binary_slash] = ACTIONS(4431), - [sym__binary_double_slash] = ACTIONS(4431), - [sym__modifier_if_keyword] = ACTIONS(4431), - [sym__modifier_unless_keyword] = ACTIONS(4431), - [sym__modifier_rescue_keyword] = ACTIONS(4431), - [sym__modifier_ensure_keyword] = ACTIONS(4431), - [sym__modulo_operator] = ACTIONS(4431), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(5028), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1872), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [aux_sym_integer_token2] = ACTIONS(1872), + [aux_sym_float_token2] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [sym_operator_symbol] = ACTIONS(1831), + [sym_unquoted_symbol] = ACTIONS(1831), + [anon_sym_COLON_DQUOTE] = ACTIONS(1831), + [anon_sym_BQUOTE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_DASH_GT] = ACTIONS(1831), + [anon_sym_annotation] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_abstract] = ACTIONS(1872), + [anon_sym_class] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_protected] = ACTIONS(1872), + [anon_sym_include] = ACTIONS(1872), + [anon_sym_extend] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_next] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_with] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym_sizeof] = ACTIONS(1872), + [anon_sym_instance_sizeof] = ACTIONS(1872), + [anon_sym_offsetof] = ACTIONS(1872), + [sym__constant_segment] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym___LINE__] = ACTIONS(1872), + [anon_sym___END_LINE__] = ACTIONS(1872), + [anon_sym___FILE__] = ACTIONS(1872), + [anon_sym___DIR__] = ACTIONS(1872), + [sym_special_variable] = ACTIONS(1831), + [sym_identifier_method_call] = ACTIONS(1831), + [sym_instance_var] = ACTIONS(1831), + [sym_class_var] = ACTIONS(1831), + [sym_self] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_begin] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_until] = ACTIONS(1872), + [anon_sym_require] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_select] = ACTIONS(1872), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1831), + [sym__start_of_named_tuple] = ACTIONS(1831), + [sym_unary_plus] = ACTIONS(1831), + [sym_unary_minus] = ACTIONS(1831), + [sym_unary_wrapping_plus] = ACTIONS(1831), + [sym_unary_wrapping_minus] = ACTIONS(1831), + [sym__beginless_range_operator] = ACTIONS(1831), + [sym__regex_start] = ACTIONS(1831), + [sym__regular_if_keyword] = ACTIONS(1831), + [sym__regular_unless_keyword] = ACTIONS(1831), + [sym__string_literal_start] = ACTIONS(1831), + [sym__string_percent_literal_start] = ACTIONS(1831), + [sym__command_percent_literal_start] = ACTIONS(1831), + [sym__string_array_percent_literal_start] = ACTIONS(1831), + [sym__symbol_array_percent_literal_start] = ACTIONS(1831), + [sym__regex_percent_literal_start] = ACTIONS(1831), + [sym_heredoc_start] = ACTIONS(1831), [sym__heredoc_body_start] = ACTIONS(7), }, [2142] = { [sym_heredoc_body] = STATE(2142), - [sym_typeof] = STATE(2434), - [sym_constant] = STATE(2391), - [sym__type] = STATE(2460), - [sym_class_type] = STATE(2434), - [sym_union_type] = STATE(2434), - [sym__parenthesized_type] = STATE(2434), - [sym_no_args_proc_type] = STATE(2434), - [sym_parenthesized_proc_type] = STATE(2434), - [sym_tuple_type] = STATE(2434), - [sym_named_tuple_type] = STATE(2434), - [sym_generic_instance_type] = STATE(2434), - [sym_nilable_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_static_array_type] = STATE(2434), - [ts_builtin_sym_end] = ACTIONS(4375), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4375), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(4993), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [sym_self] = ACTIONS(4995), - [sym_underscore_type] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_elsif] = ACTIONS(4375), - [anon_sym_else] = ACTIONS(4375), - [anon_sym_when] = ACTIONS(4375), - [anon_sym_in] = ACTIONS(4375), - [sym__line_break] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(4997), - [sym__start_of_named_tuple_type] = ACTIONS(4999), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modifier_if_keyword] = ACTIONS(4375), - [sym__modifier_unless_keyword] = ACTIONS(4375), - [sym__modifier_rescue_keyword] = ACTIONS(4375), - [sym__modifier_ensure_keyword] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_identifier] = ACTIONS(4783), + [anon_sym_SEMI] = ACTIONS(4785), + [anon_sym_LPAREN] = ACTIONS(4785), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(4783), + [sym_true] = ACTIONS(4783), + [sym_false] = ACTIONS(4783), + [aux_sym_integer_token2] = ACTIONS(4783), + [aux_sym_float_token2] = ACTIONS(4785), + [anon_sym_SQUOTE] = ACTIONS(4785), + [sym_operator_symbol] = ACTIONS(4785), + [sym_unquoted_symbol] = ACTIONS(4785), + [anon_sym_COLON_DQUOTE] = ACTIONS(4785), + [anon_sym_BQUOTE] = ACTIONS(4785), + [anon_sym_LBRACK] = ACTIONS(4785), + [anon_sym_DASH_GT] = ACTIONS(4785), + [anon_sym_annotation] = ACTIONS(4783), + [anon_sym_end] = ACTIONS(4783), + [anon_sym_AT_LBRACK] = ACTIONS(4785), + [anon_sym_private] = ACTIONS(4783), + [anon_sym_module] = ACTIONS(4783), + [anon_sym_abstract] = ACTIONS(4783), + [anon_sym_class] = ACTIONS(4783), + [anon_sym_struct] = ACTIONS(4783), + [anon_sym_enum] = ACTIONS(4783), + [anon_sym_STAR] = ACTIONS(4785), + [anon_sym_BANG] = ACTIONS(4785), + [anon_sym_TILDE] = ACTIONS(4785), + [anon_sym_def] = ACTIONS(4783), + [anon_sym_protected] = ACTIONS(4783), + [anon_sym_include] = ACTIONS(4783), + [anon_sym_extend] = ACTIONS(4783), + [anon_sym_return] = ACTIONS(4783), + [anon_sym_next] = ACTIONS(4783), + [anon_sym_break] = ACTIONS(4783), + [anon_sym_with] = ACTIONS(4783), + [anon_sym_yield] = ACTIONS(4783), + [anon_sym_typeof] = ACTIONS(4783), + [anon_sym_sizeof] = ACTIONS(4783), + [anon_sym_instance_sizeof] = ACTIONS(4783), + [anon_sym_offsetof] = ACTIONS(4783), + [sym__constant_segment] = ACTIONS(4785), + [anon_sym_COLON_COLON] = ACTIONS(4785), + [anon_sym___LINE__] = ACTIONS(4783), + [anon_sym___END_LINE__] = ACTIONS(4783), + [anon_sym___FILE__] = ACTIONS(4783), + [anon_sym___DIR__] = ACTIONS(4783), + [sym_special_variable] = ACTIONS(4785), + [sym_identifier_method_call] = ACTIONS(4785), + [sym_instance_var] = ACTIONS(4785), + [sym_class_var] = ACTIONS(4785), + [sym_self] = ACTIONS(4783), + [anon_sym_alias] = ACTIONS(4783), + [anon_sym_begin] = ACTIONS(4783), + [anon_sym_while] = ACTIONS(4783), + [anon_sym_until] = ACTIONS(4783), + [anon_sym_require] = ACTIONS(4783), + [anon_sym_case] = ACTIONS(4783), + [anon_sym_select] = ACTIONS(4783), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(4785), + [sym__start_of_named_tuple] = ACTIONS(4785), + [sym_unary_plus] = ACTIONS(4785), + [sym_unary_minus] = ACTIONS(4785), + [sym_unary_wrapping_plus] = ACTIONS(4785), + [sym_unary_wrapping_minus] = ACTIONS(4785), + [sym__beginless_range_operator] = ACTIONS(4785), + [sym__regex_start] = ACTIONS(4785), + [sym__regular_if_keyword] = ACTIONS(4785), + [sym__regular_unless_keyword] = ACTIONS(4785), + [sym__string_literal_start] = ACTIONS(4785), + [sym__string_percent_literal_start] = ACTIONS(4785), + [sym__command_percent_literal_start] = ACTIONS(4785), + [sym__string_array_percent_literal_start] = ACTIONS(4785), + [sym__symbol_array_percent_literal_start] = ACTIONS(4785), + [sym__regex_percent_literal_start] = ACTIONS(4785), + [sym_heredoc_start] = ACTIONS(4785), [sym__heredoc_body_start] = ACTIONS(7), }, [2143] = { [sym_heredoc_body] = STATE(2143), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_RPAREN] = ACTIONS(5001), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1836), - [sym_true] = ACTIONS(1836), - [sym_false] = ACTIONS(1836), - [aux_sym_integer_token2] = ACTIONS(1836), - [aux_sym_float_token2] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [sym_operator_symbol] = ACTIONS(1795), - [sym_unquoted_symbol] = ACTIONS(1795), - [anon_sym_COLON_DQUOTE] = ACTIONS(1795), - [anon_sym_BQUOTE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_DASH_GT] = ACTIONS(1795), - [anon_sym_annotation] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_abstract] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_protected] = ACTIONS(1836), - [anon_sym_include] = ACTIONS(1836), - [anon_sym_extend] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_next] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_with] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1836), - [anon_sym_instance_sizeof] = ACTIONS(1836), - [anon_sym_offsetof] = ACTIONS(1836), - [sym__constant_segment] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym___LINE__] = ACTIONS(1836), - [anon_sym___END_LINE__] = ACTIONS(1836), - [anon_sym___FILE__] = ACTIONS(1836), - [anon_sym___DIR__] = ACTIONS(1836), - [sym_special_variable] = ACTIONS(1795), - [sym_identifier_method_call] = ACTIONS(1795), - [sym_instance_var] = ACTIONS(1795), - [sym_class_var] = ACTIONS(1795), - [sym_self] = ACTIONS(1836), - [anon_sym_alias] = ACTIONS(1836), - [anon_sym_begin] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_until] = ACTIONS(1836), - [anon_sym_require] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1836), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1795), - [sym__start_of_named_tuple] = ACTIONS(1795), - [sym_unary_plus] = ACTIONS(1795), - [sym_unary_minus] = ACTIONS(1795), - [sym_unary_wrapping_plus] = ACTIONS(1795), - [sym_unary_wrapping_minus] = ACTIONS(1795), - [sym__beginless_range_operator] = ACTIONS(1795), - [sym__regex_start] = ACTIONS(1795), - [sym__regular_if_keyword] = ACTIONS(1795), - [sym__regular_unless_keyword] = ACTIONS(1795), - [sym__string_literal_start] = ACTIONS(1795), - [sym__string_percent_literal_start] = ACTIONS(1795), - [sym__command_percent_literal_start] = ACTIONS(1795), - [sym__string_array_percent_literal_start] = ACTIONS(1795), - [sym__symbol_array_percent_literal_start] = ACTIONS(1795), - [sym__regex_percent_literal_start] = ACTIONS(1795), - [sym_heredoc_start] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(5030), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1872), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [aux_sym_integer_token2] = ACTIONS(1872), + [aux_sym_float_token2] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [sym_operator_symbol] = ACTIONS(1831), + [sym_unquoted_symbol] = ACTIONS(1831), + [anon_sym_COLON_DQUOTE] = ACTIONS(1831), + [anon_sym_BQUOTE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_DASH_GT] = ACTIONS(1831), + [anon_sym_annotation] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_abstract] = ACTIONS(1872), + [anon_sym_class] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_protected] = ACTIONS(1872), + [anon_sym_include] = ACTIONS(1872), + [anon_sym_extend] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_next] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_with] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym_sizeof] = ACTIONS(1872), + [anon_sym_instance_sizeof] = ACTIONS(1872), + [anon_sym_offsetof] = ACTIONS(1872), + [sym__constant_segment] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym___LINE__] = ACTIONS(1872), + [anon_sym___END_LINE__] = ACTIONS(1872), + [anon_sym___FILE__] = ACTIONS(1872), + [anon_sym___DIR__] = ACTIONS(1872), + [sym_special_variable] = ACTIONS(1831), + [sym_identifier_method_call] = ACTIONS(1831), + [sym_instance_var] = ACTIONS(1831), + [sym_class_var] = ACTIONS(1831), + [sym_self] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_begin] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_until] = ACTIONS(1872), + [anon_sym_require] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_select] = ACTIONS(1872), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1831), + [sym__start_of_named_tuple] = ACTIONS(1831), + [sym_unary_plus] = ACTIONS(1831), + [sym_unary_minus] = ACTIONS(1831), + [sym_unary_wrapping_plus] = ACTIONS(1831), + [sym_unary_wrapping_minus] = ACTIONS(1831), + [sym__beginless_range_operator] = ACTIONS(1831), + [sym__regex_start] = ACTIONS(1831), + [sym__regular_if_keyword] = ACTIONS(1831), + [sym__regular_unless_keyword] = ACTIONS(1831), + [sym__string_literal_start] = ACTIONS(1831), + [sym__string_percent_literal_start] = ACTIONS(1831), + [sym__command_percent_literal_start] = ACTIONS(1831), + [sym__string_array_percent_literal_start] = ACTIONS(1831), + [sym__symbol_array_percent_literal_start] = ACTIONS(1831), + [sym__regex_percent_literal_start] = ACTIONS(1831), + [sym_heredoc_start] = ACTIONS(1831), [sym__heredoc_body_start] = ACTIONS(7), }, [2144] = { [sym_heredoc_body] = STATE(2144), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_RPAREN] = ACTIONS(5003), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1836), - [sym_true] = ACTIONS(1836), - [sym_false] = ACTIONS(1836), - [aux_sym_integer_token2] = ACTIONS(1836), - [aux_sym_float_token2] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [sym_operator_symbol] = ACTIONS(1795), - [sym_unquoted_symbol] = ACTIONS(1795), - [anon_sym_COLON_DQUOTE] = ACTIONS(1795), - [anon_sym_BQUOTE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_DASH_GT] = ACTIONS(1795), - [anon_sym_annotation] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_abstract] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_protected] = ACTIONS(1836), - [anon_sym_include] = ACTIONS(1836), - [anon_sym_extend] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_next] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_with] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1836), - [anon_sym_instance_sizeof] = ACTIONS(1836), - [anon_sym_offsetof] = ACTIONS(1836), - [sym__constant_segment] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym___LINE__] = ACTIONS(1836), - [anon_sym___END_LINE__] = ACTIONS(1836), - [anon_sym___FILE__] = ACTIONS(1836), - [anon_sym___DIR__] = ACTIONS(1836), - [sym_special_variable] = ACTIONS(1795), - [sym_identifier_method_call] = ACTIONS(1795), - [sym_instance_var] = ACTIONS(1795), - [sym_class_var] = ACTIONS(1795), - [sym_self] = ACTIONS(1836), - [anon_sym_alias] = ACTIONS(1836), - [anon_sym_begin] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_until] = ACTIONS(1836), - [anon_sym_require] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1836), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1795), - [sym__start_of_named_tuple] = ACTIONS(1795), - [sym_unary_plus] = ACTIONS(1795), - [sym_unary_minus] = ACTIONS(1795), - [sym_unary_wrapping_plus] = ACTIONS(1795), - [sym_unary_wrapping_minus] = ACTIONS(1795), - [sym__beginless_range_operator] = ACTIONS(1795), - [sym__regex_start] = ACTIONS(1795), - [sym__regular_if_keyword] = ACTIONS(1795), - [sym__regular_unless_keyword] = ACTIONS(1795), - [sym__string_literal_start] = ACTIONS(1795), - [sym__string_percent_literal_start] = ACTIONS(1795), - [sym__command_percent_literal_start] = ACTIONS(1795), - [sym__string_array_percent_literal_start] = ACTIONS(1795), - [sym__symbol_array_percent_literal_start] = ACTIONS(1795), - [sym__regex_percent_literal_start] = ACTIONS(1795), - [sym_heredoc_start] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(5032), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1872), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [aux_sym_integer_token2] = ACTIONS(1872), + [aux_sym_float_token2] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [sym_operator_symbol] = ACTIONS(1831), + [sym_unquoted_symbol] = ACTIONS(1831), + [anon_sym_COLON_DQUOTE] = ACTIONS(1831), + [anon_sym_BQUOTE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_DASH_GT] = ACTIONS(1831), + [anon_sym_annotation] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_abstract] = ACTIONS(1872), + [anon_sym_class] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_protected] = ACTIONS(1872), + [anon_sym_include] = ACTIONS(1872), + [anon_sym_extend] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_next] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_with] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym_sizeof] = ACTIONS(1872), + [anon_sym_instance_sizeof] = ACTIONS(1872), + [anon_sym_offsetof] = ACTIONS(1872), + [sym__constant_segment] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym___LINE__] = ACTIONS(1872), + [anon_sym___END_LINE__] = ACTIONS(1872), + [anon_sym___FILE__] = ACTIONS(1872), + [anon_sym___DIR__] = ACTIONS(1872), + [sym_special_variable] = ACTIONS(1831), + [sym_identifier_method_call] = ACTIONS(1831), + [sym_instance_var] = ACTIONS(1831), + [sym_class_var] = ACTIONS(1831), + [sym_self] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_begin] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_until] = ACTIONS(1872), + [anon_sym_require] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_select] = ACTIONS(1872), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1831), + [sym__start_of_named_tuple] = ACTIONS(1831), + [sym_unary_plus] = ACTIONS(1831), + [sym_unary_minus] = ACTIONS(1831), + [sym_unary_wrapping_plus] = ACTIONS(1831), + [sym_unary_wrapping_minus] = ACTIONS(1831), + [sym__beginless_range_operator] = ACTIONS(1831), + [sym__regex_start] = ACTIONS(1831), + [sym__regular_if_keyword] = ACTIONS(1831), + [sym__regular_unless_keyword] = ACTIONS(1831), + [sym__string_literal_start] = ACTIONS(1831), + [sym__string_percent_literal_start] = ACTIONS(1831), + [sym__command_percent_literal_start] = ACTIONS(1831), + [sym__string_array_percent_literal_start] = ACTIONS(1831), + [sym__symbol_array_percent_literal_start] = ACTIONS(1831), + [sym__regex_percent_literal_start] = ACTIONS(1831), + [sym_heredoc_start] = ACTIONS(1831), [sym__heredoc_body_start] = ACTIONS(7), }, [2145] = { [sym_heredoc_body] = STATE(2145), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_RPAREN] = ACTIONS(5005), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1836), - [sym_true] = ACTIONS(1836), - [sym_false] = ACTIONS(1836), - [aux_sym_integer_token2] = ACTIONS(1836), - [aux_sym_float_token2] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [sym_operator_symbol] = ACTIONS(1795), - [sym_unquoted_symbol] = ACTIONS(1795), - [anon_sym_COLON_DQUOTE] = ACTIONS(1795), - [anon_sym_BQUOTE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_DASH_GT] = ACTIONS(1795), - [anon_sym_annotation] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_abstract] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_protected] = ACTIONS(1836), - [anon_sym_include] = ACTIONS(1836), - [anon_sym_extend] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_next] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_with] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1836), - [anon_sym_instance_sizeof] = ACTIONS(1836), - [anon_sym_offsetof] = ACTIONS(1836), - [sym__constant_segment] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym___LINE__] = ACTIONS(1836), - [anon_sym___END_LINE__] = ACTIONS(1836), - [anon_sym___FILE__] = ACTIONS(1836), - [anon_sym___DIR__] = ACTIONS(1836), - [sym_special_variable] = ACTIONS(1795), - [sym_identifier_method_call] = ACTIONS(1795), - [sym_instance_var] = ACTIONS(1795), - [sym_class_var] = ACTIONS(1795), - [sym_self] = ACTIONS(1836), - [anon_sym_alias] = ACTIONS(1836), - [anon_sym_begin] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_until] = ACTIONS(1836), - [anon_sym_require] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1836), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1795), - [sym__start_of_named_tuple] = ACTIONS(1795), - [sym_unary_plus] = ACTIONS(1795), - [sym_unary_minus] = ACTIONS(1795), - [sym_unary_wrapping_plus] = ACTIONS(1795), - [sym_unary_wrapping_minus] = ACTIONS(1795), - [sym__beginless_range_operator] = ACTIONS(1795), - [sym__regex_start] = ACTIONS(1795), - [sym__regular_if_keyword] = ACTIONS(1795), - [sym__regular_unless_keyword] = ACTIONS(1795), - [sym__string_literal_start] = ACTIONS(1795), - [sym__string_percent_literal_start] = ACTIONS(1795), - [sym__command_percent_literal_start] = ACTIONS(1795), - [sym__string_array_percent_literal_start] = ACTIONS(1795), - [sym__symbol_array_percent_literal_start] = ACTIONS(1795), - [sym__regex_percent_literal_start] = ACTIONS(1795), - [sym_heredoc_start] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(5034), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1872), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [aux_sym_integer_token2] = ACTIONS(1872), + [aux_sym_float_token2] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [sym_operator_symbol] = ACTIONS(1831), + [sym_unquoted_symbol] = ACTIONS(1831), + [anon_sym_COLON_DQUOTE] = ACTIONS(1831), + [anon_sym_BQUOTE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_DASH_GT] = ACTIONS(1831), + [anon_sym_annotation] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_abstract] = ACTIONS(1872), + [anon_sym_class] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_protected] = ACTIONS(1872), + [anon_sym_include] = ACTIONS(1872), + [anon_sym_extend] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_next] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_with] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym_sizeof] = ACTIONS(1872), + [anon_sym_instance_sizeof] = ACTIONS(1872), + [anon_sym_offsetof] = ACTIONS(1872), + [sym__constant_segment] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym___LINE__] = ACTIONS(1872), + [anon_sym___END_LINE__] = ACTIONS(1872), + [anon_sym___FILE__] = ACTIONS(1872), + [anon_sym___DIR__] = ACTIONS(1872), + [sym_special_variable] = ACTIONS(1831), + [sym_identifier_method_call] = ACTIONS(1831), + [sym_instance_var] = ACTIONS(1831), + [sym_class_var] = ACTIONS(1831), + [sym_self] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_begin] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_until] = ACTIONS(1872), + [anon_sym_require] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_select] = ACTIONS(1872), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1831), + [sym__start_of_named_tuple] = ACTIONS(1831), + [sym_unary_plus] = ACTIONS(1831), + [sym_unary_minus] = ACTIONS(1831), + [sym_unary_wrapping_plus] = ACTIONS(1831), + [sym_unary_wrapping_minus] = ACTIONS(1831), + [sym__beginless_range_operator] = ACTIONS(1831), + [sym__regex_start] = ACTIONS(1831), + [sym__regular_if_keyword] = ACTIONS(1831), + [sym__regular_unless_keyword] = ACTIONS(1831), + [sym__string_literal_start] = ACTIONS(1831), + [sym__string_percent_literal_start] = ACTIONS(1831), + [sym__command_percent_literal_start] = ACTIONS(1831), + [sym__string_array_percent_literal_start] = ACTIONS(1831), + [sym__symbol_array_percent_literal_start] = ACTIONS(1831), + [sym__regex_percent_literal_start] = ACTIONS(1831), + [sym_heredoc_start] = ACTIONS(1831), [sym__heredoc_body_start] = ACTIONS(7), }, [2146] = { [sym_heredoc_body] = STATE(2146), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_RPAREN] = ACTIONS(5007), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1836), - [sym_true] = ACTIONS(1836), - [sym_false] = ACTIONS(1836), - [aux_sym_integer_token2] = ACTIONS(1836), - [aux_sym_float_token2] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [sym_operator_symbol] = ACTIONS(1795), - [sym_unquoted_symbol] = ACTIONS(1795), - [anon_sym_COLON_DQUOTE] = ACTIONS(1795), - [anon_sym_BQUOTE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_DASH_GT] = ACTIONS(1795), - [anon_sym_annotation] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_abstract] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_protected] = ACTIONS(1836), - [anon_sym_include] = ACTIONS(1836), - [anon_sym_extend] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_next] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_with] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1836), - [anon_sym_instance_sizeof] = ACTIONS(1836), - [anon_sym_offsetof] = ACTIONS(1836), - [sym__constant_segment] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym___LINE__] = ACTIONS(1836), - [anon_sym___END_LINE__] = ACTIONS(1836), - [anon_sym___FILE__] = ACTIONS(1836), - [anon_sym___DIR__] = ACTIONS(1836), - [sym_special_variable] = ACTIONS(1795), - [sym_identifier_method_call] = ACTIONS(1795), - [sym_instance_var] = ACTIONS(1795), - [sym_class_var] = ACTIONS(1795), - [sym_self] = ACTIONS(1836), - [anon_sym_alias] = ACTIONS(1836), - [anon_sym_begin] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_until] = ACTIONS(1836), - [anon_sym_require] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1836), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1795), - [sym__start_of_named_tuple] = ACTIONS(1795), - [sym_unary_plus] = ACTIONS(1795), - [sym_unary_minus] = ACTIONS(1795), - [sym_unary_wrapping_plus] = ACTIONS(1795), - [sym_unary_wrapping_minus] = ACTIONS(1795), - [sym__beginless_range_operator] = ACTIONS(1795), - [sym__regex_start] = ACTIONS(1795), - [sym__regular_if_keyword] = ACTIONS(1795), - [sym__regular_unless_keyword] = ACTIONS(1795), - [sym__string_literal_start] = ACTIONS(1795), - [sym__string_percent_literal_start] = ACTIONS(1795), - [sym__command_percent_literal_start] = ACTIONS(1795), - [sym__string_array_percent_literal_start] = ACTIONS(1795), - [sym__symbol_array_percent_literal_start] = ACTIONS(1795), - [sym__regex_percent_literal_start] = ACTIONS(1795), - [sym_heredoc_start] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(5036), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1872), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [aux_sym_integer_token2] = ACTIONS(1872), + [aux_sym_float_token2] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [sym_operator_symbol] = ACTIONS(1831), + [sym_unquoted_symbol] = ACTIONS(1831), + [anon_sym_COLON_DQUOTE] = ACTIONS(1831), + [anon_sym_BQUOTE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_DASH_GT] = ACTIONS(1831), + [anon_sym_annotation] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_abstract] = ACTIONS(1872), + [anon_sym_class] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_protected] = ACTIONS(1872), + [anon_sym_include] = ACTIONS(1872), + [anon_sym_extend] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_next] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_with] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym_sizeof] = ACTIONS(1872), + [anon_sym_instance_sizeof] = ACTIONS(1872), + [anon_sym_offsetof] = ACTIONS(1872), + [sym__constant_segment] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym___LINE__] = ACTIONS(1872), + [anon_sym___END_LINE__] = ACTIONS(1872), + [anon_sym___FILE__] = ACTIONS(1872), + [anon_sym___DIR__] = ACTIONS(1872), + [sym_special_variable] = ACTIONS(1831), + [sym_identifier_method_call] = ACTIONS(1831), + [sym_instance_var] = ACTIONS(1831), + [sym_class_var] = ACTIONS(1831), + [sym_self] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_begin] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_until] = ACTIONS(1872), + [anon_sym_require] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_select] = ACTIONS(1872), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1831), + [sym__start_of_named_tuple] = ACTIONS(1831), + [sym_unary_plus] = ACTIONS(1831), + [sym_unary_minus] = ACTIONS(1831), + [sym_unary_wrapping_plus] = ACTIONS(1831), + [sym_unary_wrapping_minus] = ACTIONS(1831), + [sym__beginless_range_operator] = ACTIONS(1831), + [sym__regex_start] = ACTIONS(1831), + [sym__regular_if_keyword] = ACTIONS(1831), + [sym__regular_unless_keyword] = ACTIONS(1831), + [sym__string_literal_start] = ACTIONS(1831), + [sym__string_percent_literal_start] = ACTIONS(1831), + [sym__command_percent_literal_start] = ACTIONS(1831), + [sym__string_array_percent_literal_start] = ACTIONS(1831), + [sym__symbol_array_percent_literal_start] = ACTIONS(1831), + [sym__regex_percent_literal_start] = ACTIONS(1831), + [sym_heredoc_start] = ACTIONS(1831), [sym__heredoc_body_start] = ACTIONS(7), }, [2147] = { [sym_heredoc_body] = STATE(2147), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_RPAREN] = ACTIONS(5009), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1836), - [sym_true] = ACTIONS(1836), - [sym_false] = ACTIONS(1836), - [aux_sym_integer_token2] = ACTIONS(1836), - [aux_sym_float_token2] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [sym_operator_symbol] = ACTIONS(1795), - [sym_unquoted_symbol] = ACTIONS(1795), - [anon_sym_COLON_DQUOTE] = ACTIONS(1795), - [anon_sym_BQUOTE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_DASH_GT] = ACTIONS(1795), - [anon_sym_annotation] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_abstract] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_protected] = ACTIONS(1836), - [anon_sym_include] = ACTIONS(1836), - [anon_sym_extend] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_next] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_with] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1836), - [anon_sym_instance_sizeof] = ACTIONS(1836), - [anon_sym_offsetof] = ACTIONS(1836), - [sym__constant_segment] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym___LINE__] = ACTIONS(1836), - [anon_sym___END_LINE__] = ACTIONS(1836), - [anon_sym___FILE__] = ACTIONS(1836), - [anon_sym___DIR__] = ACTIONS(1836), - [sym_special_variable] = ACTIONS(1795), - [sym_identifier_method_call] = ACTIONS(1795), - [sym_instance_var] = ACTIONS(1795), - [sym_class_var] = ACTIONS(1795), - [sym_self] = ACTIONS(1836), - [anon_sym_alias] = ACTIONS(1836), - [anon_sym_begin] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_until] = ACTIONS(1836), - [anon_sym_require] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1836), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1795), - [sym__start_of_named_tuple] = ACTIONS(1795), - [sym_unary_plus] = ACTIONS(1795), - [sym_unary_minus] = ACTIONS(1795), - [sym_unary_wrapping_plus] = ACTIONS(1795), - [sym_unary_wrapping_minus] = ACTIONS(1795), - [sym__beginless_range_operator] = ACTIONS(1795), - [sym__regex_start] = ACTIONS(1795), - [sym__regular_if_keyword] = ACTIONS(1795), - [sym__regular_unless_keyword] = ACTIONS(1795), - [sym__string_literal_start] = ACTIONS(1795), - [sym__string_percent_literal_start] = ACTIONS(1795), - [sym__command_percent_literal_start] = ACTIONS(1795), - [sym__string_array_percent_literal_start] = ACTIONS(1795), - [sym__symbol_array_percent_literal_start] = ACTIONS(1795), - [sym__regex_percent_literal_start] = ACTIONS(1795), - [sym_heredoc_start] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(5038), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1872), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [aux_sym_integer_token2] = ACTIONS(1872), + [aux_sym_float_token2] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [sym_operator_symbol] = ACTIONS(1831), + [sym_unquoted_symbol] = ACTIONS(1831), + [anon_sym_COLON_DQUOTE] = ACTIONS(1831), + [anon_sym_BQUOTE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_DASH_GT] = ACTIONS(1831), + [anon_sym_annotation] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_abstract] = ACTIONS(1872), + [anon_sym_class] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_protected] = ACTIONS(1872), + [anon_sym_include] = ACTIONS(1872), + [anon_sym_extend] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_next] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_with] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym_sizeof] = ACTIONS(1872), + [anon_sym_instance_sizeof] = ACTIONS(1872), + [anon_sym_offsetof] = ACTIONS(1872), + [sym__constant_segment] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym___LINE__] = ACTIONS(1872), + [anon_sym___END_LINE__] = ACTIONS(1872), + [anon_sym___FILE__] = ACTIONS(1872), + [anon_sym___DIR__] = ACTIONS(1872), + [sym_special_variable] = ACTIONS(1831), + [sym_identifier_method_call] = ACTIONS(1831), + [sym_instance_var] = ACTIONS(1831), + [sym_class_var] = ACTIONS(1831), + [sym_self] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_begin] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_until] = ACTIONS(1872), + [anon_sym_require] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_select] = ACTIONS(1872), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1831), + [sym__start_of_named_tuple] = ACTIONS(1831), + [sym_unary_plus] = ACTIONS(1831), + [sym_unary_minus] = ACTIONS(1831), + [sym_unary_wrapping_plus] = ACTIONS(1831), + [sym_unary_wrapping_minus] = ACTIONS(1831), + [sym__beginless_range_operator] = ACTIONS(1831), + [sym__regex_start] = ACTIONS(1831), + [sym__regular_if_keyword] = ACTIONS(1831), + [sym__regular_unless_keyword] = ACTIONS(1831), + [sym__string_literal_start] = ACTIONS(1831), + [sym__string_percent_literal_start] = ACTIONS(1831), + [sym__command_percent_literal_start] = ACTIONS(1831), + [sym__string_array_percent_literal_start] = ACTIONS(1831), + [sym__symbol_array_percent_literal_start] = ACTIONS(1831), + [sym__regex_percent_literal_start] = ACTIONS(1831), + [sym_heredoc_start] = ACTIONS(1831), [sym__heredoc_body_start] = ACTIONS(7), }, [2148] = { [sym_heredoc_body] = STATE(2148), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_RPAREN] = ACTIONS(5011), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1836), - [sym_true] = ACTIONS(1836), - [sym_false] = ACTIONS(1836), - [aux_sym_integer_token2] = ACTIONS(1836), - [aux_sym_float_token2] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [sym_operator_symbol] = ACTIONS(1795), - [sym_unquoted_symbol] = ACTIONS(1795), - [anon_sym_COLON_DQUOTE] = ACTIONS(1795), - [anon_sym_BQUOTE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_DASH_GT] = ACTIONS(1795), - [anon_sym_annotation] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_abstract] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_protected] = ACTIONS(1836), - [anon_sym_include] = ACTIONS(1836), - [anon_sym_extend] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_next] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_with] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1836), - [anon_sym_instance_sizeof] = ACTIONS(1836), - [anon_sym_offsetof] = ACTIONS(1836), - [sym__constant_segment] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym___LINE__] = ACTIONS(1836), - [anon_sym___END_LINE__] = ACTIONS(1836), - [anon_sym___FILE__] = ACTIONS(1836), - [anon_sym___DIR__] = ACTIONS(1836), - [sym_special_variable] = ACTIONS(1795), - [sym_identifier_method_call] = ACTIONS(1795), - [sym_instance_var] = ACTIONS(1795), - [sym_class_var] = ACTIONS(1795), - [sym_self] = ACTIONS(1836), - [anon_sym_alias] = ACTIONS(1836), - [anon_sym_begin] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_until] = ACTIONS(1836), - [anon_sym_require] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1836), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1795), - [sym__start_of_named_tuple] = ACTIONS(1795), - [sym_unary_plus] = ACTIONS(1795), - [sym_unary_minus] = ACTIONS(1795), - [sym_unary_wrapping_plus] = ACTIONS(1795), - [sym_unary_wrapping_minus] = ACTIONS(1795), - [sym__beginless_range_operator] = ACTIONS(1795), - [sym__regex_start] = ACTIONS(1795), - [sym__regular_if_keyword] = ACTIONS(1795), - [sym__regular_unless_keyword] = ACTIONS(1795), - [sym__string_literal_start] = ACTIONS(1795), - [sym__string_percent_literal_start] = ACTIONS(1795), - [sym__command_percent_literal_start] = ACTIONS(1795), - [sym__string_array_percent_literal_start] = ACTIONS(1795), - [sym__symbol_array_percent_literal_start] = ACTIONS(1795), - [sym__regex_percent_literal_start] = ACTIONS(1795), - [sym_heredoc_start] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(5040), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1872), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [aux_sym_integer_token2] = ACTIONS(1872), + [aux_sym_float_token2] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [sym_operator_symbol] = ACTIONS(1831), + [sym_unquoted_symbol] = ACTIONS(1831), + [anon_sym_COLON_DQUOTE] = ACTIONS(1831), + [anon_sym_BQUOTE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_DASH_GT] = ACTIONS(1831), + [anon_sym_annotation] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_abstract] = ACTIONS(1872), + [anon_sym_class] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_protected] = ACTIONS(1872), + [anon_sym_include] = ACTIONS(1872), + [anon_sym_extend] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_next] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_with] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym_sizeof] = ACTIONS(1872), + [anon_sym_instance_sizeof] = ACTIONS(1872), + [anon_sym_offsetof] = ACTIONS(1872), + [sym__constant_segment] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym___LINE__] = ACTIONS(1872), + [anon_sym___END_LINE__] = ACTIONS(1872), + [anon_sym___FILE__] = ACTIONS(1872), + [anon_sym___DIR__] = ACTIONS(1872), + [sym_special_variable] = ACTIONS(1831), + [sym_identifier_method_call] = ACTIONS(1831), + [sym_instance_var] = ACTIONS(1831), + [sym_class_var] = ACTIONS(1831), + [sym_self] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_begin] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_until] = ACTIONS(1872), + [anon_sym_require] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_select] = ACTIONS(1872), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1831), + [sym__start_of_named_tuple] = ACTIONS(1831), + [sym_unary_plus] = ACTIONS(1831), + [sym_unary_minus] = ACTIONS(1831), + [sym_unary_wrapping_plus] = ACTIONS(1831), + [sym_unary_wrapping_minus] = ACTIONS(1831), + [sym__beginless_range_operator] = ACTIONS(1831), + [sym__regex_start] = ACTIONS(1831), + [sym__regular_if_keyword] = ACTIONS(1831), + [sym__regular_unless_keyword] = ACTIONS(1831), + [sym__string_literal_start] = ACTIONS(1831), + [sym__string_percent_literal_start] = ACTIONS(1831), + [sym__command_percent_literal_start] = ACTIONS(1831), + [sym__string_array_percent_literal_start] = ACTIONS(1831), + [sym__symbol_array_percent_literal_start] = ACTIONS(1831), + [sym__regex_percent_literal_start] = ACTIONS(1831), + [sym_heredoc_start] = ACTIONS(1831), [sym__heredoc_body_start] = ACTIONS(7), }, [2149] = { [sym_heredoc_body] = STATE(2149), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_RPAREN] = ACTIONS(5013), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1836), - [sym_true] = ACTIONS(1836), - [sym_false] = ACTIONS(1836), - [aux_sym_integer_token2] = ACTIONS(1836), - [aux_sym_float_token2] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [sym_operator_symbol] = ACTIONS(1795), - [sym_unquoted_symbol] = ACTIONS(1795), - [anon_sym_COLON_DQUOTE] = ACTIONS(1795), - [anon_sym_BQUOTE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_DASH_GT] = ACTIONS(1795), - [anon_sym_annotation] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_abstract] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_protected] = ACTIONS(1836), - [anon_sym_include] = ACTIONS(1836), - [anon_sym_extend] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_next] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_with] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1836), - [anon_sym_instance_sizeof] = ACTIONS(1836), - [anon_sym_offsetof] = ACTIONS(1836), - [sym__constant_segment] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym___LINE__] = ACTIONS(1836), - [anon_sym___END_LINE__] = ACTIONS(1836), - [anon_sym___FILE__] = ACTIONS(1836), - [anon_sym___DIR__] = ACTIONS(1836), - [sym_special_variable] = ACTIONS(1795), - [sym_identifier_method_call] = ACTIONS(1795), - [sym_instance_var] = ACTIONS(1795), - [sym_class_var] = ACTIONS(1795), - [sym_self] = ACTIONS(1836), - [anon_sym_alias] = ACTIONS(1836), - [anon_sym_begin] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_until] = ACTIONS(1836), - [anon_sym_require] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1836), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1795), - [sym__start_of_named_tuple] = ACTIONS(1795), - [sym_unary_plus] = ACTIONS(1795), - [sym_unary_minus] = ACTIONS(1795), - [sym_unary_wrapping_plus] = ACTIONS(1795), - [sym_unary_wrapping_minus] = ACTIONS(1795), - [sym__beginless_range_operator] = ACTIONS(1795), - [sym__regex_start] = ACTIONS(1795), - [sym__regular_if_keyword] = ACTIONS(1795), - [sym__regular_unless_keyword] = ACTIONS(1795), - [sym__string_literal_start] = ACTIONS(1795), - [sym__string_percent_literal_start] = ACTIONS(1795), - [sym__command_percent_literal_start] = ACTIONS(1795), - [sym__string_array_percent_literal_start] = ACTIONS(1795), - [sym__symbol_array_percent_literal_start] = ACTIONS(1795), - [sym__regex_percent_literal_start] = ACTIONS(1795), - [sym_heredoc_start] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(5042), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1872), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [aux_sym_integer_token2] = ACTIONS(1872), + [aux_sym_float_token2] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [sym_operator_symbol] = ACTIONS(1831), + [sym_unquoted_symbol] = ACTIONS(1831), + [anon_sym_COLON_DQUOTE] = ACTIONS(1831), + [anon_sym_BQUOTE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_DASH_GT] = ACTIONS(1831), + [anon_sym_annotation] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_abstract] = ACTIONS(1872), + [anon_sym_class] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_protected] = ACTIONS(1872), + [anon_sym_include] = ACTIONS(1872), + [anon_sym_extend] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_next] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_with] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym_sizeof] = ACTIONS(1872), + [anon_sym_instance_sizeof] = ACTIONS(1872), + [anon_sym_offsetof] = ACTIONS(1872), + [sym__constant_segment] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym___LINE__] = ACTIONS(1872), + [anon_sym___END_LINE__] = ACTIONS(1872), + [anon_sym___FILE__] = ACTIONS(1872), + [anon_sym___DIR__] = ACTIONS(1872), + [sym_special_variable] = ACTIONS(1831), + [sym_identifier_method_call] = ACTIONS(1831), + [sym_instance_var] = ACTIONS(1831), + [sym_class_var] = ACTIONS(1831), + [sym_self] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_begin] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_until] = ACTIONS(1872), + [anon_sym_require] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_select] = ACTIONS(1872), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1831), + [sym__start_of_named_tuple] = ACTIONS(1831), + [sym_unary_plus] = ACTIONS(1831), + [sym_unary_minus] = ACTIONS(1831), + [sym_unary_wrapping_plus] = ACTIONS(1831), + [sym_unary_wrapping_minus] = ACTIONS(1831), + [sym__beginless_range_operator] = ACTIONS(1831), + [sym__regex_start] = ACTIONS(1831), + [sym__regular_if_keyword] = ACTIONS(1831), + [sym__regular_unless_keyword] = ACTIONS(1831), + [sym__string_literal_start] = ACTIONS(1831), + [sym__string_percent_literal_start] = ACTIONS(1831), + [sym__command_percent_literal_start] = ACTIONS(1831), + [sym__string_array_percent_literal_start] = ACTIONS(1831), + [sym__symbol_array_percent_literal_start] = ACTIONS(1831), + [sym__regex_percent_literal_start] = ACTIONS(1831), + [sym_heredoc_start] = ACTIONS(1831), [sym__heredoc_body_start] = ACTIONS(7), }, [2150] = { [sym_heredoc_body] = STATE(2150), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_RPAREN] = ACTIONS(5015), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1836), - [sym_true] = ACTIONS(1836), - [sym_false] = ACTIONS(1836), - [aux_sym_integer_token2] = ACTIONS(1836), - [aux_sym_float_token2] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [sym_operator_symbol] = ACTIONS(1795), - [sym_unquoted_symbol] = ACTIONS(1795), - [anon_sym_COLON_DQUOTE] = ACTIONS(1795), - [anon_sym_BQUOTE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_DASH_GT] = ACTIONS(1795), - [anon_sym_annotation] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_abstract] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_protected] = ACTIONS(1836), - [anon_sym_include] = ACTIONS(1836), - [anon_sym_extend] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_next] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_with] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1836), - [anon_sym_instance_sizeof] = ACTIONS(1836), - [anon_sym_offsetof] = ACTIONS(1836), - [sym__constant_segment] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym___LINE__] = ACTIONS(1836), - [anon_sym___END_LINE__] = ACTIONS(1836), - [anon_sym___FILE__] = ACTIONS(1836), - [anon_sym___DIR__] = ACTIONS(1836), - [sym_special_variable] = ACTIONS(1795), - [sym_identifier_method_call] = ACTIONS(1795), - [sym_instance_var] = ACTIONS(1795), - [sym_class_var] = ACTIONS(1795), - [sym_self] = ACTIONS(1836), - [anon_sym_alias] = ACTIONS(1836), - [anon_sym_begin] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_until] = ACTIONS(1836), - [anon_sym_require] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1836), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1795), - [sym__start_of_named_tuple] = ACTIONS(1795), - [sym_unary_plus] = ACTIONS(1795), - [sym_unary_minus] = ACTIONS(1795), - [sym_unary_wrapping_plus] = ACTIONS(1795), - [sym_unary_wrapping_minus] = ACTIONS(1795), - [sym__beginless_range_operator] = ACTIONS(1795), - [sym__regex_start] = ACTIONS(1795), - [sym__regular_if_keyword] = ACTIONS(1795), - [sym__regular_unless_keyword] = ACTIONS(1795), - [sym__string_literal_start] = ACTIONS(1795), - [sym__string_percent_literal_start] = ACTIONS(1795), - [sym__command_percent_literal_start] = ACTIONS(1795), - [sym__string_array_percent_literal_start] = ACTIONS(1795), - [sym__symbol_array_percent_literal_start] = ACTIONS(1795), - [sym__regex_percent_literal_start] = ACTIONS(1795), - [sym_heredoc_start] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(5044), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1872), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [aux_sym_integer_token2] = ACTIONS(1872), + [aux_sym_float_token2] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [sym_operator_symbol] = ACTIONS(1831), + [sym_unquoted_symbol] = ACTIONS(1831), + [anon_sym_COLON_DQUOTE] = ACTIONS(1831), + [anon_sym_BQUOTE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_DASH_GT] = ACTIONS(1831), + [anon_sym_annotation] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_abstract] = ACTIONS(1872), + [anon_sym_class] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_protected] = ACTIONS(1872), + [anon_sym_include] = ACTIONS(1872), + [anon_sym_extend] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_next] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_with] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym_sizeof] = ACTIONS(1872), + [anon_sym_instance_sizeof] = ACTIONS(1872), + [anon_sym_offsetof] = ACTIONS(1872), + [sym__constant_segment] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym___LINE__] = ACTIONS(1872), + [anon_sym___END_LINE__] = ACTIONS(1872), + [anon_sym___FILE__] = ACTIONS(1872), + [anon_sym___DIR__] = ACTIONS(1872), + [sym_special_variable] = ACTIONS(1831), + [sym_identifier_method_call] = ACTIONS(1831), + [sym_instance_var] = ACTIONS(1831), + [sym_class_var] = ACTIONS(1831), + [sym_self] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_begin] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_until] = ACTIONS(1872), + [anon_sym_require] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_select] = ACTIONS(1872), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1831), + [sym__start_of_named_tuple] = ACTIONS(1831), + [sym_unary_plus] = ACTIONS(1831), + [sym_unary_minus] = ACTIONS(1831), + [sym_unary_wrapping_plus] = ACTIONS(1831), + [sym_unary_wrapping_minus] = ACTIONS(1831), + [sym__beginless_range_operator] = ACTIONS(1831), + [sym__regex_start] = ACTIONS(1831), + [sym__regular_if_keyword] = ACTIONS(1831), + [sym__regular_unless_keyword] = ACTIONS(1831), + [sym__string_literal_start] = ACTIONS(1831), + [sym__string_percent_literal_start] = ACTIONS(1831), + [sym__command_percent_literal_start] = ACTIONS(1831), + [sym__string_array_percent_literal_start] = ACTIONS(1831), + [sym__symbol_array_percent_literal_start] = ACTIONS(1831), + [sym__regex_percent_literal_start] = ACTIONS(1831), + [sym_heredoc_start] = ACTIONS(1831), [sym__heredoc_body_start] = ACTIONS(7), }, [2151] = { [sym_heredoc_body] = STATE(2151), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_RPAREN] = ACTIONS(5017), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1836), - [sym_true] = ACTIONS(1836), - [sym_false] = ACTIONS(1836), - [aux_sym_integer_token2] = ACTIONS(1836), - [aux_sym_float_token2] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [sym_operator_symbol] = ACTIONS(1795), - [sym_unquoted_symbol] = ACTIONS(1795), - [anon_sym_COLON_DQUOTE] = ACTIONS(1795), - [anon_sym_BQUOTE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_DASH_GT] = ACTIONS(1795), - [anon_sym_annotation] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_abstract] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_protected] = ACTIONS(1836), - [anon_sym_include] = ACTIONS(1836), - [anon_sym_extend] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_next] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_with] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1836), - [anon_sym_instance_sizeof] = ACTIONS(1836), - [anon_sym_offsetof] = ACTIONS(1836), - [sym__constant_segment] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym___LINE__] = ACTIONS(1836), - [anon_sym___END_LINE__] = ACTIONS(1836), - [anon_sym___FILE__] = ACTIONS(1836), - [anon_sym___DIR__] = ACTIONS(1836), - [sym_special_variable] = ACTIONS(1795), - [sym_identifier_method_call] = ACTIONS(1795), - [sym_instance_var] = ACTIONS(1795), - [sym_class_var] = ACTIONS(1795), - [sym_self] = ACTIONS(1836), - [anon_sym_alias] = ACTIONS(1836), - [anon_sym_begin] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_until] = ACTIONS(1836), - [anon_sym_require] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1836), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1795), - [sym__start_of_named_tuple] = ACTIONS(1795), - [sym_unary_plus] = ACTIONS(1795), - [sym_unary_minus] = ACTIONS(1795), - [sym_unary_wrapping_plus] = ACTIONS(1795), - [sym_unary_wrapping_minus] = ACTIONS(1795), - [sym__beginless_range_operator] = ACTIONS(1795), - [sym__regex_start] = ACTIONS(1795), - [sym__regular_if_keyword] = ACTIONS(1795), - [sym__regular_unless_keyword] = ACTIONS(1795), - [sym__string_literal_start] = ACTIONS(1795), - [sym__string_percent_literal_start] = ACTIONS(1795), - [sym__command_percent_literal_start] = ACTIONS(1795), - [sym__string_array_percent_literal_start] = ACTIONS(1795), - [sym__symbol_array_percent_literal_start] = ACTIONS(1795), - [sym__regex_percent_literal_start] = ACTIONS(1795), - [sym_heredoc_start] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(5046), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1872), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [aux_sym_integer_token2] = ACTIONS(1872), + [aux_sym_float_token2] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [sym_operator_symbol] = ACTIONS(1831), + [sym_unquoted_symbol] = ACTIONS(1831), + [anon_sym_COLON_DQUOTE] = ACTIONS(1831), + [anon_sym_BQUOTE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_DASH_GT] = ACTIONS(1831), + [anon_sym_annotation] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_abstract] = ACTIONS(1872), + [anon_sym_class] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_protected] = ACTIONS(1872), + [anon_sym_include] = ACTIONS(1872), + [anon_sym_extend] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_next] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_with] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym_sizeof] = ACTIONS(1872), + [anon_sym_instance_sizeof] = ACTIONS(1872), + [anon_sym_offsetof] = ACTIONS(1872), + [sym__constant_segment] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym___LINE__] = ACTIONS(1872), + [anon_sym___END_LINE__] = ACTIONS(1872), + [anon_sym___FILE__] = ACTIONS(1872), + [anon_sym___DIR__] = ACTIONS(1872), + [sym_special_variable] = ACTIONS(1831), + [sym_identifier_method_call] = ACTIONS(1831), + [sym_instance_var] = ACTIONS(1831), + [sym_class_var] = ACTIONS(1831), + [sym_self] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_begin] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_until] = ACTIONS(1872), + [anon_sym_require] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_select] = ACTIONS(1872), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1831), + [sym__start_of_named_tuple] = ACTIONS(1831), + [sym_unary_plus] = ACTIONS(1831), + [sym_unary_minus] = ACTIONS(1831), + [sym_unary_wrapping_plus] = ACTIONS(1831), + [sym_unary_wrapping_minus] = ACTIONS(1831), + [sym__beginless_range_operator] = ACTIONS(1831), + [sym__regex_start] = ACTIONS(1831), + [sym__regular_if_keyword] = ACTIONS(1831), + [sym__regular_unless_keyword] = ACTIONS(1831), + [sym__string_literal_start] = ACTIONS(1831), + [sym__string_percent_literal_start] = ACTIONS(1831), + [sym__command_percent_literal_start] = ACTIONS(1831), + [sym__string_array_percent_literal_start] = ACTIONS(1831), + [sym__symbol_array_percent_literal_start] = ACTIONS(1831), + [sym__regex_percent_literal_start] = ACTIONS(1831), + [sym_heredoc_start] = ACTIONS(1831), [sym__heredoc_body_start] = ACTIONS(7), }, [2152] = { [sym_heredoc_body] = STATE(2152), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_RPAREN] = ACTIONS(5019), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1836), - [sym_true] = ACTIONS(1836), - [sym_false] = ACTIONS(1836), - [aux_sym_integer_token2] = ACTIONS(1836), - [aux_sym_float_token2] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [sym_operator_symbol] = ACTIONS(1795), - [sym_unquoted_symbol] = ACTIONS(1795), - [anon_sym_COLON_DQUOTE] = ACTIONS(1795), - [anon_sym_BQUOTE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_DASH_GT] = ACTIONS(1795), - [anon_sym_annotation] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_abstract] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_protected] = ACTIONS(1836), - [anon_sym_include] = ACTIONS(1836), - [anon_sym_extend] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_next] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_with] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1836), - [anon_sym_instance_sizeof] = ACTIONS(1836), - [anon_sym_offsetof] = ACTIONS(1836), - [sym__constant_segment] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym___LINE__] = ACTIONS(1836), - [anon_sym___END_LINE__] = ACTIONS(1836), - [anon_sym___FILE__] = ACTIONS(1836), - [anon_sym___DIR__] = ACTIONS(1836), - [sym_special_variable] = ACTIONS(1795), - [sym_identifier_method_call] = ACTIONS(1795), - [sym_instance_var] = ACTIONS(1795), - [sym_class_var] = ACTIONS(1795), - [sym_self] = ACTIONS(1836), - [anon_sym_alias] = ACTIONS(1836), - [anon_sym_begin] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_until] = ACTIONS(1836), - [anon_sym_require] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1836), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1795), - [sym__start_of_named_tuple] = ACTIONS(1795), - [sym_unary_plus] = ACTIONS(1795), - [sym_unary_minus] = ACTIONS(1795), - [sym_unary_wrapping_plus] = ACTIONS(1795), - [sym_unary_wrapping_minus] = ACTIONS(1795), - [sym__beginless_range_operator] = ACTIONS(1795), - [sym__regex_start] = ACTIONS(1795), - [sym__regular_if_keyword] = ACTIONS(1795), - [sym__regular_unless_keyword] = ACTIONS(1795), - [sym__string_literal_start] = ACTIONS(1795), - [sym__string_percent_literal_start] = ACTIONS(1795), - [sym__command_percent_literal_start] = ACTIONS(1795), - [sym__string_array_percent_literal_start] = ACTIONS(1795), - [sym__symbol_array_percent_literal_start] = ACTIONS(1795), - [sym__regex_percent_literal_start] = ACTIONS(1795), - [sym_heredoc_start] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(5048), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1872), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [aux_sym_integer_token2] = ACTIONS(1872), + [aux_sym_float_token2] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [sym_operator_symbol] = ACTIONS(1831), + [sym_unquoted_symbol] = ACTIONS(1831), + [anon_sym_COLON_DQUOTE] = ACTIONS(1831), + [anon_sym_BQUOTE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_DASH_GT] = ACTIONS(1831), + [anon_sym_annotation] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_abstract] = ACTIONS(1872), + [anon_sym_class] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_protected] = ACTIONS(1872), + [anon_sym_include] = ACTIONS(1872), + [anon_sym_extend] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_next] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_with] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym_sizeof] = ACTIONS(1872), + [anon_sym_instance_sizeof] = ACTIONS(1872), + [anon_sym_offsetof] = ACTIONS(1872), + [sym__constant_segment] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym___LINE__] = ACTIONS(1872), + [anon_sym___END_LINE__] = ACTIONS(1872), + [anon_sym___FILE__] = ACTIONS(1872), + [anon_sym___DIR__] = ACTIONS(1872), + [sym_special_variable] = ACTIONS(1831), + [sym_identifier_method_call] = ACTIONS(1831), + [sym_instance_var] = ACTIONS(1831), + [sym_class_var] = ACTIONS(1831), + [sym_self] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_begin] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_until] = ACTIONS(1872), + [anon_sym_require] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_select] = ACTIONS(1872), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1831), + [sym__start_of_named_tuple] = ACTIONS(1831), + [sym_unary_plus] = ACTIONS(1831), + [sym_unary_minus] = ACTIONS(1831), + [sym_unary_wrapping_plus] = ACTIONS(1831), + [sym_unary_wrapping_minus] = ACTIONS(1831), + [sym__beginless_range_operator] = ACTIONS(1831), + [sym__regex_start] = ACTIONS(1831), + [sym__regular_if_keyword] = ACTIONS(1831), + [sym__regular_unless_keyword] = ACTIONS(1831), + [sym__string_literal_start] = ACTIONS(1831), + [sym__string_percent_literal_start] = ACTIONS(1831), + [sym__command_percent_literal_start] = ACTIONS(1831), + [sym__string_array_percent_literal_start] = ACTIONS(1831), + [sym__symbol_array_percent_literal_start] = ACTIONS(1831), + [sym__regex_percent_literal_start] = ACTIONS(1831), + [sym_heredoc_start] = ACTIONS(1831), [sym__heredoc_body_start] = ACTIONS(7), }, [2153] = { [sym_heredoc_body] = STATE(2153), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_RPAREN] = ACTIONS(5021), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1836), - [sym_true] = ACTIONS(1836), - [sym_false] = ACTIONS(1836), - [aux_sym_integer_token2] = ACTIONS(1836), - [aux_sym_float_token2] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [sym_operator_symbol] = ACTIONS(1795), - [sym_unquoted_symbol] = ACTIONS(1795), - [anon_sym_COLON_DQUOTE] = ACTIONS(1795), - [anon_sym_BQUOTE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_DASH_GT] = ACTIONS(1795), - [anon_sym_annotation] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_abstract] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_protected] = ACTIONS(1836), - [anon_sym_include] = ACTIONS(1836), - [anon_sym_extend] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_next] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_with] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1836), - [anon_sym_instance_sizeof] = ACTIONS(1836), - [anon_sym_offsetof] = ACTIONS(1836), - [sym__constant_segment] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym___LINE__] = ACTIONS(1836), - [anon_sym___END_LINE__] = ACTIONS(1836), - [anon_sym___FILE__] = ACTIONS(1836), - [anon_sym___DIR__] = ACTIONS(1836), - [sym_special_variable] = ACTIONS(1795), - [sym_identifier_method_call] = ACTIONS(1795), - [sym_instance_var] = ACTIONS(1795), - [sym_class_var] = ACTIONS(1795), - [sym_self] = ACTIONS(1836), - [anon_sym_alias] = ACTIONS(1836), - [anon_sym_begin] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_until] = ACTIONS(1836), - [anon_sym_require] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1836), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1795), - [sym__start_of_named_tuple] = ACTIONS(1795), - [sym_unary_plus] = ACTIONS(1795), - [sym_unary_minus] = ACTIONS(1795), - [sym_unary_wrapping_plus] = ACTIONS(1795), - [sym_unary_wrapping_minus] = ACTIONS(1795), - [sym__beginless_range_operator] = ACTIONS(1795), - [sym__regex_start] = ACTIONS(1795), - [sym__regular_if_keyword] = ACTIONS(1795), - [sym__regular_unless_keyword] = ACTIONS(1795), - [sym__string_literal_start] = ACTIONS(1795), - [sym__string_percent_literal_start] = ACTIONS(1795), - [sym__command_percent_literal_start] = ACTIONS(1795), - [sym__string_array_percent_literal_start] = ACTIONS(1795), - [sym__symbol_array_percent_literal_start] = ACTIONS(1795), - [sym__regex_percent_literal_start] = ACTIONS(1795), - [sym_heredoc_start] = ACTIONS(1795), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(5050), + [sym_comment] = ACTIONS(5), + [sym_nil] = ACTIONS(1872), + [sym_true] = ACTIONS(1872), + [sym_false] = ACTIONS(1872), + [aux_sym_integer_token2] = ACTIONS(1872), + [aux_sym_float_token2] = ACTIONS(1831), + [anon_sym_SQUOTE] = ACTIONS(1831), + [sym_operator_symbol] = ACTIONS(1831), + [sym_unquoted_symbol] = ACTIONS(1831), + [anon_sym_COLON_DQUOTE] = ACTIONS(1831), + [anon_sym_BQUOTE] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_DASH_GT] = ACTIONS(1831), + [anon_sym_annotation] = ACTIONS(1872), + [anon_sym_AT_LBRACK] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1872), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_abstract] = ACTIONS(1872), + [anon_sym_class] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1831), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1872), + [anon_sym_protected] = ACTIONS(1872), + [anon_sym_include] = ACTIONS(1872), + [anon_sym_extend] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_next] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_with] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_typeof] = ACTIONS(1872), + [anon_sym_sizeof] = ACTIONS(1872), + [anon_sym_instance_sizeof] = ACTIONS(1872), + [anon_sym_offsetof] = ACTIONS(1872), + [sym__constant_segment] = ACTIONS(1831), + [anon_sym_COLON_COLON] = ACTIONS(1831), + [anon_sym___LINE__] = ACTIONS(1872), + [anon_sym___END_LINE__] = ACTIONS(1872), + [anon_sym___FILE__] = ACTIONS(1872), + [anon_sym___DIR__] = ACTIONS(1872), + [sym_special_variable] = ACTIONS(1831), + [sym_identifier_method_call] = ACTIONS(1831), + [sym_instance_var] = ACTIONS(1831), + [sym_class_var] = ACTIONS(1831), + [sym_self] = ACTIONS(1872), + [anon_sym_alias] = ACTIONS(1872), + [anon_sym_begin] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_until] = ACTIONS(1872), + [anon_sym_require] = ACTIONS(1872), + [anon_sym_case] = ACTIONS(1872), + [anon_sym_select] = ACTIONS(1872), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_hash_or_tuple] = ACTIONS(1831), + [sym__start_of_named_tuple] = ACTIONS(1831), + [sym_unary_plus] = ACTIONS(1831), + [sym_unary_minus] = ACTIONS(1831), + [sym_unary_wrapping_plus] = ACTIONS(1831), + [sym_unary_wrapping_minus] = ACTIONS(1831), + [sym__beginless_range_operator] = ACTIONS(1831), + [sym__regex_start] = ACTIONS(1831), + [sym__regular_if_keyword] = ACTIONS(1831), + [sym__regular_unless_keyword] = ACTIONS(1831), + [sym__string_literal_start] = ACTIONS(1831), + [sym__string_percent_literal_start] = ACTIONS(1831), + [sym__command_percent_literal_start] = ACTIONS(1831), + [sym__string_array_percent_literal_start] = ACTIONS(1831), + [sym__symbol_array_percent_literal_start] = ACTIONS(1831), + [sym__regex_percent_literal_start] = ACTIONS(1831), + [sym_heredoc_start] = ACTIONS(1831), [sym__heredoc_body_start] = ACTIONS(7), }, [2154] = { [sym_heredoc_body] = STATE(2154), - [sym_identifier] = ACTIONS(4743), - [anon_sym_SEMI] = ACTIONS(4745), - [anon_sym_LPAREN] = ACTIONS(4745), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(4743), - [sym_true] = ACTIONS(4743), - [sym_false] = ACTIONS(4743), - [aux_sym_integer_token2] = ACTIONS(4743), - [aux_sym_float_token2] = ACTIONS(4745), - [anon_sym_SQUOTE] = ACTIONS(4745), - [sym_operator_symbol] = ACTIONS(4745), - [sym_unquoted_symbol] = ACTIONS(4745), - [anon_sym_COLON_DQUOTE] = ACTIONS(4745), - [anon_sym_BQUOTE] = ACTIONS(4745), - [anon_sym_LBRACK] = ACTIONS(4745), - [anon_sym_DASH_GT] = ACTIONS(4745), - [anon_sym_annotation] = ACTIONS(4743), - [anon_sym_end] = ACTIONS(4743), - [anon_sym_AT_LBRACK] = ACTIONS(4745), - [anon_sym_private] = ACTIONS(4743), - [anon_sym_module] = ACTIONS(4743), - [anon_sym_abstract] = ACTIONS(4743), - [anon_sym_class] = ACTIONS(4743), - [anon_sym_struct] = ACTIONS(4743), - [anon_sym_enum] = ACTIONS(4743), - [anon_sym_STAR] = ACTIONS(4745), - [anon_sym_BANG] = ACTIONS(4745), - [anon_sym_TILDE] = ACTIONS(4745), - [anon_sym_def] = ACTIONS(4743), - [anon_sym_protected] = ACTIONS(4743), - [anon_sym_include] = ACTIONS(4743), - [anon_sym_extend] = ACTIONS(4743), - [anon_sym_return] = ACTIONS(4743), - [anon_sym_next] = ACTIONS(4743), - [anon_sym_break] = ACTIONS(4743), - [anon_sym_with] = ACTIONS(4743), - [anon_sym_yield] = ACTIONS(4743), - [anon_sym_typeof] = ACTIONS(4743), - [anon_sym_sizeof] = ACTIONS(4743), - [anon_sym_instance_sizeof] = ACTIONS(4743), - [anon_sym_offsetof] = ACTIONS(4743), - [sym__constant_segment] = ACTIONS(4745), - [anon_sym_COLON_COLON] = ACTIONS(4745), - [anon_sym___LINE__] = ACTIONS(4743), - [anon_sym___END_LINE__] = ACTIONS(4743), - [anon_sym___FILE__] = ACTIONS(4743), - [anon_sym___DIR__] = ACTIONS(4743), - [sym_special_variable] = ACTIONS(4745), - [sym_identifier_method_call] = ACTIONS(4745), - [sym_instance_var] = ACTIONS(4745), - [sym_class_var] = ACTIONS(4745), - [sym_self] = ACTIONS(4743), - [anon_sym_alias] = ACTIONS(4743), - [anon_sym_begin] = ACTIONS(4743), - [anon_sym_while] = ACTIONS(4743), - [anon_sym_until] = ACTIONS(4743), - [anon_sym_require] = ACTIONS(4743), - [anon_sym_case] = ACTIONS(4743), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(4745), - [sym__start_of_named_tuple] = ACTIONS(4745), - [sym_unary_plus] = ACTIONS(4745), - [sym_unary_minus] = ACTIONS(4745), - [sym_unary_wrapping_plus] = ACTIONS(4745), - [sym_unary_wrapping_minus] = ACTIONS(4745), - [sym__beginless_range_operator] = ACTIONS(4745), - [sym__regex_start] = ACTIONS(4745), - [sym__regular_if_keyword] = ACTIONS(4745), - [sym__regular_unless_keyword] = ACTIONS(4745), - [sym__string_literal_start] = ACTIONS(4745), - [sym__string_percent_literal_start] = ACTIONS(4745), - [sym__command_percent_literal_start] = ACTIONS(4745), - [sym__string_array_percent_literal_start] = ACTIONS(4745), - [sym__symbol_array_percent_literal_start] = ACTIONS(4745), - [sym__regex_percent_literal_start] = ACTIONS(4745), - [sym_heredoc_start] = ACTIONS(4745), + [sym_typeof] = STATE(2476), + [sym_constant] = STATE(2394), + [sym__type] = STATE(2459), + [sym_class_type] = STATE(2476), + [sym_union_type] = STATE(2476), + [sym__parenthesized_type] = STATE(2476), + [sym_no_args_proc_type] = STATE(2476), + [sym_parenthesized_proc_type] = STATE(2476), + [sym_tuple_type] = STATE(2476), + [sym_named_tuple_type] = STATE(2476), + [sym_generic_instance_type] = STATE(2476), + [sym_nilable_type] = STATE(2476), + [sym_pointer_type] = STATE(2476), + [sym_static_array_type] = STATE(2476), + [ts_builtin_sym_end] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(4390), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5054), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5056), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [sym_self] = ACTIONS(5058), + [sym_underscore_type] = ACTIONS(5058), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_elsif] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [sym__line_break] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5060), + [sym__start_of_named_tuple_type] = ACTIONS(5062), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modifier_if_keyword] = ACTIONS(4390), + [sym__modifier_unless_keyword] = ACTIONS(4390), + [sym__modifier_rescue_keyword] = ACTIONS(4390), + [sym__modifier_ensure_keyword] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2155] = { [sym_heredoc_body] = STATE(2155), - [sym_typeof] = STATE(2434), - [sym_constant] = STATE(2391), - [sym__type] = STATE(2407), - [sym_class_type] = STATE(2434), - [sym_union_type] = STATE(2434), - [sym__parenthesized_type] = STATE(2434), - [sym_no_args_proc_type] = STATE(2434), - [sym_parenthesized_proc_type] = STATE(2434), - [sym_tuple_type] = STATE(2434), - [sym_named_tuple_type] = STATE(2434), - [sym_generic_instance_type] = STATE(2434), - [sym_nilable_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_static_array_type] = STATE(2434), - [ts_builtin_sym_end] = ACTIONS(4325), - [anon_sym_SEMI] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(4325), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5025), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(4993), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [sym_self] = ACTIONS(4995), - [sym_underscore_type] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_elsif] = ACTIONS(4325), - [anon_sym_else] = ACTIONS(4325), - [anon_sym_when] = ACTIONS(4325), - [anon_sym_in] = ACTIONS(4325), - [sym__line_break] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(4997), - [sym__start_of_named_tuple_type] = ACTIONS(4999), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modifier_if_keyword] = ACTIONS(4325), - [sym__modifier_unless_keyword] = ACTIONS(4325), - [sym__modifier_rescue_keyword] = ACTIONS(4325), - [sym__modifier_ensure_keyword] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(2379), + [sym_constant] = STATE(2351), + [sym__type] = STATE(2358), + [sym_class_type] = STATE(2379), + [sym_union_type] = STATE(2379), + [sym__parenthesized_type] = STATE(2379), + [sym_no_args_proc_type] = STATE(2379), + [sym_parenthesized_proc_type] = STATE(2379), + [sym_tuple_type] = STATE(2379), + [sym_named_tuple_type] = STATE(2379), + [sym_generic_instance_type] = STATE(2379), + [sym_nilable_type] = STATE(2379), + [sym_pointer_type] = STATE(2379), + [sym_static_array_type] = STATE(2379), + [ts_builtin_sym_end] = ACTIONS(4446), + [anon_sym_SEMI] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4993), + [anon_sym_RPAREN] = ACTIONS(4446), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4446), + [anon_sym_COMMA] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4446), + [anon_sym_DASH_GT] = ACTIONS(4995), + [anon_sym_end] = ACTIONS(4446), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ_GT] = ACTIONS(4446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4446), + [anon_sym_BANG_TILDE] = ACTIONS(4446), + [anon_sym_EQ_TILDE] = ACTIONS(4446), + [anon_sym_AMP_STAR] = ACTIONS(4444), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4444), + [anon_sym_EQ] = ACTIONS(4444), + [anon_sym_typeof] = ACTIONS(4997), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [sym_self] = ACTIONS(4999), + [sym_underscore_type] = ACTIONS(4999), + [anon_sym_QMARK] = ACTIONS(4446), + [anon_sym_AMP_AMP] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4446), + [anon_sym_do] = ACTIONS(4446), + [anon_sym_elsif] = ACTIONS(4446), + [anon_sym_else] = ACTIONS(4446), + [anon_sym_when] = ACTIONS(4446), + [anon_sym_in] = ACTIONS(4446), + [sym__line_break] = ACTIONS(4446), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4446), + [sym__start_of_tuple_type] = ACTIONS(5001), + [sym__start_of_named_tuple_type] = ACTIONS(5003), + [sym__start_of_index_operator] = ACTIONS(4446), + [sym_binary_plus] = ACTIONS(4446), + [sym_binary_minus] = ACTIONS(4446), + [sym_binary_wrapping_plus] = ACTIONS(4446), + [sym_binary_wrapping_minus] = ACTIONS(4446), + [sym__binary_star] = ACTIONS(4446), + [sym__binary_double_star] = ACTIONS(4446), + [sym_binary_ampersand] = ACTIONS(4446), + [sym__binary_slash] = ACTIONS(4446), + [sym__binary_double_slash] = ACTIONS(4446), + [sym__modifier_if_keyword] = ACTIONS(4446), + [sym__modifier_unless_keyword] = ACTIONS(4446), + [sym__modifier_rescue_keyword] = ACTIONS(4446), + [sym__modifier_ensure_keyword] = ACTIONS(4446), + [sym__modulo_operator] = ACTIONS(4446), [sym__heredoc_body_start] = ACTIONS(7), }, [2156] = { [sym_heredoc_body] = STATE(2156), - [sym_typeof] = STATE(2367), - [sym_constant] = STATE(2346), - [sym__type] = STATE(2384), - [sym_class_type] = STATE(2367), - [sym_union_type] = STATE(2367), - [sym__parenthesized_type] = STATE(2367), - [sym_no_args_proc_type] = STATE(2367), - [sym_parenthesized_proc_type] = STATE(2367), - [sym_tuple_type] = STATE(2367), - [sym_named_tuple_type] = STATE(2367), - [sym_generic_instance_type] = STATE(2367), - [sym_nilable_type] = STATE(2367), - [sym_pointer_type] = STATE(2367), - [sym_static_array_type] = STATE(2367), - [ts_builtin_sym_end] = ACTIONS(4409), - [anon_sym_SEMI] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(4972), - [anon_sym_RPAREN] = ACTIONS(4409), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4409), - [anon_sym_COMMA] = ACTIONS(4409), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4409), - [anon_sym_DASH_GT] = ACTIONS(4974), - [anon_sym_end] = ACTIONS(4409), - [anon_sym_LT] = ACTIONS(4407), - [anon_sym_PIPE] = ACTIONS(4407), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym_GT_GT] = ACTIONS(4409), - [anon_sym_LT_LT] = ACTIONS(4409), - [anon_sym_EQ_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ_GT] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), - [anon_sym_BANG_TILDE] = ACTIONS(4409), - [anon_sym_EQ_TILDE] = ACTIONS(4409), - [anon_sym_AMP_STAR] = ACTIONS(4407), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4409), - [anon_sym_DOT] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4407), - [anon_sym_typeof] = ACTIONS(4958), - [sym__constant_segment] = ACTIONS(2042), - [anon_sym_COLON_COLON] = ACTIONS(179), - [sym_self] = ACTIONS(4960), - [sym_underscore_type] = ACTIONS(4960), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_AMP_AMP] = ACTIONS(4409), - [anon_sym_PIPE_PIPE] = ACTIONS(4409), - [anon_sym_do] = ACTIONS(4409), - [anon_sym_elsif] = ACTIONS(4409), - [anon_sym_else] = ACTIONS(4409), - [anon_sym_when] = ACTIONS(4409), - [anon_sym_in] = ACTIONS(4409), - [sym__line_break] = ACTIONS(4409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4409), - [sym__start_of_tuple_type] = ACTIONS(4962), - [sym__start_of_named_tuple_type] = ACTIONS(4964), - [sym__start_of_index_operator] = ACTIONS(4409), - [sym_binary_plus] = ACTIONS(4409), - [sym_binary_minus] = ACTIONS(4409), - [sym_binary_wrapping_plus] = ACTIONS(4409), - [sym_binary_wrapping_minus] = ACTIONS(4409), - [sym__binary_star] = ACTIONS(4409), - [sym__binary_double_star] = ACTIONS(4409), - [sym_binary_ampersand] = ACTIONS(4409), - [sym__binary_slash] = ACTIONS(4409), - [sym__binary_double_slash] = ACTIONS(4409), - [sym__modifier_if_keyword] = ACTIONS(4409), - [sym__modifier_unless_keyword] = ACTIONS(4409), - [sym__modifier_rescue_keyword] = ACTIONS(4409), - [sym__modifier_ensure_keyword] = ACTIONS(4409), - [sym__modulo_operator] = ACTIONS(4409), + [sym_typeof] = STATE(2476), + [sym_constant] = STATE(2394), + [sym__type] = STATE(2475), + [sym_class_type] = STATE(2476), + [sym_union_type] = STATE(2476), + [sym__parenthesized_type] = STATE(2476), + [sym_no_args_proc_type] = STATE(2476), + [sym_parenthesized_proc_type] = STATE(2476), + [sym_tuple_type] = STATE(2476), + [sym_named_tuple_type] = STATE(2476), + [sym_generic_instance_type] = STATE(2476), + [sym_nilable_type] = STATE(2476), + [sym_pointer_type] = STATE(2476), + [sym_static_array_type] = STATE(2476), + [ts_builtin_sym_end] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(4362), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4362), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5054), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5056), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [sym_self] = ACTIONS(5058), + [sym_underscore_type] = ACTIONS(5058), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_elsif] = ACTIONS(4362), + [anon_sym_else] = ACTIONS(4362), + [anon_sym_when] = ACTIONS(4362), + [anon_sym_in] = ACTIONS(4362), + [sym__line_break] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5060), + [sym__start_of_named_tuple_type] = ACTIONS(5062), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modifier_if_keyword] = ACTIONS(4362), + [sym__modifier_unless_keyword] = ACTIONS(4362), + [sym__modifier_rescue_keyword] = ACTIONS(4362), + [sym__modifier_ensure_keyword] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2157] = { [sym_heredoc_body] = STATE(2157), - [sym_typeof] = STATE(2434), - [sym_constant] = STATE(2391), - [sym__type] = STATE(2429), - [sym_class_type] = STATE(2434), - [sym_union_type] = STATE(2434), - [sym__parenthesized_type] = STATE(2434), - [sym_no_args_proc_type] = STATE(2434), - [sym_parenthesized_proc_type] = STATE(2434), - [sym_tuple_type] = STATE(2434), - [sym_named_tuple_type] = STATE(2434), - [sym_generic_instance_type] = STATE(2434), - [sym_nilable_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_static_array_type] = STATE(2434), - [ts_builtin_sym_end] = ACTIONS(4325), - [anon_sym_SEMI] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4325), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(4993), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [sym_self] = ACTIONS(4995), - [sym_underscore_type] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_elsif] = ACTIONS(4325), - [anon_sym_else] = ACTIONS(4325), - [anon_sym_when] = ACTIONS(4325), - [anon_sym_in] = ACTIONS(4325), - [sym__line_break] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(4997), - [sym__start_of_named_tuple_type] = ACTIONS(4999), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modifier_if_keyword] = ACTIONS(4325), - [sym__modifier_unless_keyword] = ACTIONS(4325), - [sym__modifier_rescue_keyword] = ACTIONS(4325), - [sym__modifier_ensure_keyword] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(2379), + [sym_constant] = STATE(2351), + [sym__type] = STATE(2362), + [sym_class_type] = STATE(2379), + [sym_union_type] = STATE(2379), + [sym__parenthesized_type] = STATE(2379), + [sym_no_args_proc_type] = STATE(2379), + [sym_parenthesized_proc_type] = STATE(2379), + [sym_tuple_type] = STATE(2379), + [sym_named_tuple_type] = STATE(2379), + [sym_generic_instance_type] = STATE(2379), + [sym_nilable_type] = STATE(2379), + [sym_pointer_type] = STATE(2379), + [sym_static_array_type] = STATE(2379), + [ts_builtin_sym_end] = ACTIONS(4468), + [anon_sym_SEMI] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(4993), + [anon_sym_RPAREN] = ACTIONS(4468), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4468), + [anon_sym_COMMA] = ACTIONS(4468), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4468), + [anon_sym_DASH_GT] = ACTIONS(4995), + [anon_sym_end] = ACTIONS(4468), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_CARET] = ACTIONS(4468), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(4468), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ_GT] = ACTIONS(4468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), + [anon_sym_BANG_TILDE] = ACTIONS(4468), + [anon_sym_EQ_TILDE] = ACTIONS(4468), + [anon_sym_AMP_STAR] = ACTIONS(4466), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(4466), + [anon_sym_typeof] = ACTIONS(4997), + [sym__constant_segment] = ACTIONS(2067), + [anon_sym_COLON_COLON] = ACTIONS(181), + [sym_self] = ACTIONS(4999), + [sym_underscore_type] = ACTIONS(4999), + [anon_sym_QMARK] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(4468), + [anon_sym_do] = ACTIONS(4468), + [anon_sym_elsif] = ACTIONS(4468), + [anon_sym_else] = ACTIONS(4468), + [anon_sym_when] = ACTIONS(4468), + [anon_sym_in] = ACTIONS(4468), + [sym__line_break] = ACTIONS(4468), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4468), + [sym__start_of_tuple_type] = ACTIONS(5001), + [sym__start_of_named_tuple_type] = ACTIONS(5003), + [sym__start_of_index_operator] = ACTIONS(4468), + [sym_binary_plus] = ACTIONS(4468), + [sym_binary_minus] = ACTIONS(4468), + [sym_binary_wrapping_plus] = ACTIONS(4468), + [sym_binary_wrapping_minus] = ACTIONS(4468), + [sym__binary_star] = ACTIONS(4468), + [sym__binary_double_star] = ACTIONS(4468), + [sym_binary_ampersand] = ACTIONS(4468), + [sym__binary_slash] = ACTIONS(4468), + [sym__binary_double_slash] = ACTIONS(4468), + [sym__modifier_if_keyword] = ACTIONS(4468), + [sym__modifier_unless_keyword] = ACTIONS(4468), + [sym__modifier_rescue_keyword] = ACTIONS(4468), + [sym__modifier_ensure_keyword] = ACTIONS(4468), + [sym__modulo_operator] = ACTIONS(4468), [sym__heredoc_body_start] = ACTIONS(7), }, [2158] = { [sym_heredoc_body] = STATE(2158), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_RPAREN] = ACTIONS(5028), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1836), - [sym_true] = ACTIONS(1836), - [sym_false] = ACTIONS(1836), - [aux_sym_integer_token2] = ACTIONS(1836), - [aux_sym_float_token2] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [sym_operator_symbol] = ACTIONS(1795), - [sym_unquoted_symbol] = ACTIONS(1795), - [anon_sym_COLON_DQUOTE] = ACTIONS(1795), - [anon_sym_BQUOTE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_DASH_GT] = ACTIONS(1795), - [anon_sym_annotation] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_abstract] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_protected] = ACTIONS(1836), - [anon_sym_include] = ACTIONS(1836), - [anon_sym_extend] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_next] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_with] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1836), - [anon_sym_instance_sizeof] = ACTIONS(1836), - [anon_sym_offsetof] = ACTIONS(1836), - [sym__constant_segment] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym___LINE__] = ACTIONS(1836), - [anon_sym___END_LINE__] = ACTIONS(1836), - [anon_sym___FILE__] = ACTIONS(1836), - [anon_sym___DIR__] = ACTIONS(1836), - [sym_special_variable] = ACTIONS(1795), - [sym_identifier_method_call] = ACTIONS(1795), - [sym_instance_var] = ACTIONS(1795), - [sym_class_var] = ACTIONS(1795), - [sym_self] = ACTIONS(1836), - [anon_sym_alias] = ACTIONS(1836), - [anon_sym_begin] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_until] = ACTIONS(1836), - [anon_sym_require] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1836), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1795), - [sym__start_of_named_tuple] = ACTIONS(1795), - [sym_unary_plus] = ACTIONS(1795), - [sym_unary_minus] = ACTIONS(1795), - [sym_unary_wrapping_plus] = ACTIONS(1795), - [sym_unary_wrapping_minus] = ACTIONS(1795), - [sym__beginless_range_operator] = ACTIONS(1795), - [sym__regex_start] = ACTIONS(1795), - [sym__regular_if_keyword] = ACTIONS(1795), - [sym__regular_unless_keyword] = ACTIONS(1795), - [sym__string_literal_start] = ACTIONS(1795), - [sym__string_percent_literal_start] = ACTIONS(1795), - [sym__command_percent_literal_start] = ACTIONS(1795), - [sym__string_array_percent_literal_start] = ACTIONS(1795), - [sym__symbol_array_percent_literal_start] = ACTIONS(1795), - [sym__regex_percent_literal_start] = ACTIONS(1795), - [sym_heredoc_start] = ACTIONS(1795), + [sym_typeof] = STATE(2476), + [sym_constant] = STATE(2394), + [sym__type] = STATE(2418), + [sym_class_type] = STATE(2476), + [sym_union_type] = STATE(2476), + [sym__parenthesized_type] = STATE(2476), + [sym_no_args_proc_type] = STATE(2476), + [sym_parenthesized_proc_type] = STATE(2476), + [sym_tuple_type] = STATE(2476), + [sym_named_tuple_type] = STATE(2476), + [sym_generic_instance_type] = STATE(2476), + [sym_nilable_type] = STATE(2476), + [sym_pointer_type] = STATE(2476), + [sym_static_array_type] = STATE(2476), + [ts_builtin_sym_end] = ACTIONS(4390), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(4390), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5066), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5056), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [sym_self] = ACTIONS(5058), + [sym_underscore_type] = ACTIONS(5058), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_elsif] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [sym__line_break] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5060), + [sym__start_of_named_tuple_type] = ACTIONS(5062), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modifier_if_keyword] = ACTIONS(4390), + [sym__modifier_unless_keyword] = ACTIONS(4390), + [sym__modifier_rescue_keyword] = ACTIONS(4390), + [sym__modifier_ensure_keyword] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2159] = { [sym_heredoc_body] = STATE(2159), - [sym_identifier] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_RPAREN] = ACTIONS(5030), - [sym_comment] = ACTIONS(5), - [sym_nil] = ACTIONS(1836), - [sym_true] = ACTIONS(1836), - [sym_false] = ACTIONS(1836), - [aux_sym_integer_token2] = ACTIONS(1836), - [aux_sym_float_token2] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1795), - [sym_operator_symbol] = ACTIONS(1795), - [sym_unquoted_symbol] = ACTIONS(1795), - [anon_sym_COLON_DQUOTE] = ACTIONS(1795), - [anon_sym_BQUOTE] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_DASH_GT] = ACTIONS(1795), - [anon_sym_annotation] = ACTIONS(1836), - [anon_sym_AT_LBRACK] = ACTIONS(1795), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_abstract] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_struct] = ACTIONS(1836), - [anon_sym_enum] = ACTIONS(1836), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_TILDE] = ACTIONS(1795), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_protected] = ACTIONS(1836), - [anon_sym_include] = ACTIONS(1836), - [anon_sym_extend] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_next] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_with] = ACTIONS(1836), - [anon_sym_yield] = ACTIONS(1836), - [anon_sym_typeof] = ACTIONS(1836), - [anon_sym_sizeof] = ACTIONS(1836), - [anon_sym_instance_sizeof] = ACTIONS(1836), - [anon_sym_offsetof] = ACTIONS(1836), - [sym__constant_segment] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym___LINE__] = ACTIONS(1836), - [anon_sym___END_LINE__] = ACTIONS(1836), - [anon_sym___FILE__] = ACTIONS(1836), - [anon_sym___DIR__] = ACTIONS(1836), - [sym_special_variable] = ACTIONS(1795), - [sym_identifier_method_call] = ACTIONS(1795), - [sym_instance_var] = ACTIONS(1795), - [sym_class_var] = ACTIONS(1795), - [sym_self] = ACTIONS(1836), - [anon_sym_alias] = ACTIONS(1836), - [anon_sym_begin] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_until] = ACTIONS(1836), - [anon_sym_require] = ACTIONS(1836), - [anon_sym_case] = ACTIONS(1836), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_hash_or_tuple] = ACTIONS(1795), - [sym__start_of_named_tuple] = ACTIONS(1795), - [sym_unary_plus] = ACTIONS(1795), - [sym_unary_minus] = ACTIONS(1795), - [sym_unary_wrapping_plus] = ACTIONS(1795), - [sym_unary_wrapping_minus] = ACTIONS(1795), - [sym__beginless_range_operator] = ACTIONS(1795), - [sym__regex_start] = ACTIONS(1795), - [sym__regular_if_keyword] = ACTIONS(1795), - [sym__regular_unless_keyword] = ACTIONS(1795), - [sym__string_literal_start] = ACTIONS(1795), - [sym__string_percent_literal_start] = ACTIONS(1795), - [sym__command_percent_literal_start] = ACTIONS(1795), - [sym__string_array_percent_literal_start] = ACTIONS(1795), - [sym__symbol_array_percent_literal_start] = ACTIONS(1795), - [sym__regex_percent_literal_start] = ACTIONS(1795), - [sym_heredoc_start] = ACTIONS(1795), + [sym_typeof] = STATE(2476), + [sym_constant] = STATE(2394), + [sym__type] = STATE(2419), + [sym_class_type] = STATE(2476), + [sym_union_type] = STATE(2476), + [sym__parenthesized_type] = STATE(2476), + [sym_no_args_proc_type] = STATE(2476), + [sym_parenthesized_proc_type] = STATE(2476), + [sym_tuple_type] = STATE(2476), + [sym_named_tuple_type] = STATE(2476), + [sym_generic_instance_type] = STATE(2476), + [sym_nilable_type] = STATE(2476), + [sym_pointer_type] = STATE(2476), + [sym_static_array_type] = STATE(2476), + [ts_builtin_sym_end] = ACTIONS(4362), + [anon_sym_SEMI] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(4362), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4362), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5069), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5056), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [sym_self] = ACTIONS(5058), + [sym_underscore_type] = ACTIONS(5058), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_elsif] = ACTIONS(4362), + [anon_sym_else] = ACTIONS(4362), + [anon_sym_when] = ACTIONS(4362), + [anon_sym_in] = ACTIONS(4362), + [sym__line_break] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5060), + [sym__start_of_named_tuple_type] = ACTIONS(5062), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modifier_if_keyword] = ACTIONS(4362), + [sym__modifier_unless_keyword] = ACTIONS(4362), + [sym__modifier_rescue_keyword] = ACTIONS(4362), + [sym__modifier_ensure_keyword] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2160] = { [sym_heredoc_body] = STATE(2160), - [sym_typeof] = STATE(2434), - [sym_constant] = STATE(2391), - [sym__type] = STATE(2393), - [sym_class_type] = STATE(2434), - [sym_union_type] = STATE(2434), - [sym__parenthesized_type] = STATE(2434), - [sym_no_args_proc_type] = STATE(2434), - [sym_parenthesized_proc_type] = STATE(2434), - [sym_tuple_type] = STATE(2434), - [sym_named_tuple_type] = STATE(2434), - [sym_generic_instance_type] = STATE(2434), - [sym_nilable_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_static_array_type] = STATE(2434), - [ts_builtin_sym_end] = ACTIONS(4353), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(4353), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5032), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(4993), + [sym_typeof] = STATE(2476), + [sym_constant] = STATE(2394), + [sym__type] = STATE(2408), + [sym_class_type] = STATE(2476), + [sym_union_type] = STATE(2476), + [sym__parenthesized_type] = STATE(2476), + [sym_no_args_proc_type] = STATE(2476), + [sym_parenthesized_proc_type] = STATE(2476), + [sym_tuple_type] = STATE(2476), + [sym_named_tuple_type] = STATE(2476), + [sym_generic_instance_type] = STATE(2476), + [sym_nilable_type] = STATE(2476), + [sym_pointer_type] = STATE(2476), + [sym_static_array_type] = STATE(2476), + [ts_builtin_sym_end] = ACTIONS(4412), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(5064), + [anon_sym_RPAREN] = ACTIONS(4412), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5072), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5056), [sym__constant_segment] = ACTIONS(83), [anon_sym_COLON_COLON] = ACTIONS(85), - [sym_self] = ACTIONS(4995), - [sym_underscore_type] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_elsif] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4353), - [anon_sym_when] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4353), - [sym__line_break] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(4997), - [sym__start_of_named_tuple_type] = ACTIONS(4999), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modifier_if_keyword] = ACTIONS(4353), - [sym__modifier_unless_keyword] = ACTIONS(4353), - [sym__modifier_rescue_keyword] = ACTIONS(4353), - [sym__modifier_ensure_keyword] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_self] = ACTIONS(5058), + [sym_underscore_type] = ACTIONS(5058), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_elsif] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_when] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4412), + [sym__line_break] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5060), + [sym__start_of_named_tuple_type] = ACTIONS(5062), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modifier_if_keyword] = ACTIONS(4412), + [sym__modifier_unless_keyword] = ACTIONS(4412), + [sym__modifier_rescue_keyword] = ACTIONS(4412), + [sym__modifier_ensure_keyword] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2161] = { [sym_heredoc_body] = STATE(2161), - [sym_typeof] = STATE(2434), - [sym_constant] = STATE(2391), - [sym__type] = STATE(2395), - [sym_class_type] = STATE(2434), - [sym_union_type] = STATE(2434), - [sym__parenthesized_type] = STATE(2434), - [sym_no_args_proc_type] = STATE(2434), - [sym_parenthesized_proc_type] = STATE(2434), - [sym_tuple_type] = STATE(2434), - [sym_named_tuple_type] = STATE(2434), - [sym_generic_instance_type] = STATE(2434), - [sym_nilable_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_static_array_type] = STATE(2434), - [ts_builtin_sym_end] = ACTIONS(4375), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(4375), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5035), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(4993), + [sym_typeof] = STATE(2476), + [sym_constant] = STATE(2394), + [sym__type] = STATE(2424), + [sym_class_type] = STATE(2476), + [sym_union_type] = STATE(2476), + [sym__parenthesized_type] = STATE(2476), + [sym_no_args_proc_type] = STATE(2476), + [sym_parenthesized_proc_type] = STATE(2476), + [sym_tuple_type] = STATE(2476), + [sym_named_tuple_type] = STATE(2476), + [sym_generic_instance_type] = STATE(2476), + [sym_nilable_type] = STATE(2476), + [sym_pointer_type] = STATE(2476), + [sym_static_array_type] = STATE(2476), + [ts_builtin_sym_end] = ACTIONS(4412), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(4412), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5054), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5056), [sym__constant_segment] = ACTIONS(83), [anon_sym_COLON_COLON] = ACTIONS(85), - [sym_self] = ACTIONS(4995), - [sym_underscore_type] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_elsif] = ACTIONS(4375), - [anon_sym_else] = ACTIONS(4375), - [anon_sym_when] = ACTIONS(4375), - [anon_sym_in] = ACTIONS(4375), - [sym__line_break] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(4997), - [sym__start_of_named_tuple_type] = ACTIONS(4999), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modifier_if_keyword] = ACTIONS(4375), - [sym__modifier_unless_keyword] = ACTIONS(4375), - [sym__modifier_rescue_keyword] = ACTIONS(4375), - [sym__modifier_ensure_keyword] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_self] = ACTIONS(5058), + [sym_underscore_type] = ACTIONS(5058), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_elsif] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_when] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4412), + [sym__line_break] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5060), + [sym__start_of_named_tuple_type] = ACTIONS(5062), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modifier_if_keyword] = ACTIONS(4412), + [sym__modifier_unless_keyword] = ACTIONS(4412), + [sym__modifier_rescue_keyword] = ACTIONS(4412), + [sym__modifier_ensure_keyword] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2162] = { [sym_heredoc_body] = STATE(2162), - [sym_typeof] = STATE(2592), - [sym_constant] = STATE(2488), - [sym__type] = STATE(2581), - [sym_class_type] = STATE(2592), - [sym_union_type] = STATE(2592), - [sym__parenthesized_type] = STATE(2592), - [sym_no_args_proc_type] = STATE(2592), - [sym_parenthesized_proc_type] = STATE(2592), - [sym_tuple_type] = STATE(2592), - [sym_named_tuple_type] = STATE(2592), - [sym_generic_instance_type] = STATE(2592), - [sym_nilable_type] = STATE(2592), - [sym_pointer_type] = STATE(2592), - [sym_static_array_type] = STATE(2592), - [anon_sym_SEMI] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(5038), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5040), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5042), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [sym_self] = ACTIONS(5044), - [sym_underscore_type] = ACTIONS(5044), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_do] = ACTIONS(4325), - [anon_sym_else] = ACTIONS(4325), - [sym__line_break] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4325), - [sym__start_of_tuple_type] = ACTIONS(5046), - [sym__start_of_named_tuple_type] = ACTIONS(5048), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modifier_if_keyword] = ACTIONS(4325), - [sym__modifier_unless_keyword] = ACTIONS(4325), - [sym__regular_rescue_keyword] = ACTIONS(4325), - [sym__modifier_rescue_keyword] = ACTIONS(4325), - [sym__regular_ensure_keyword] = ACTIONS(4325), - [sym__modifier_ensure_keyword] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(2692), + [sym_constant] = STATE(2522), + [sym__type] = STATE(2629), + [sym_class_type] = STATE(2692), + [sym_union_type] = STATE(2692), + [sym__parenthesized_type] = STATE(2692), + [sym_no_args_proc_type] = STATE(2692), + [sym_parenthesized_proc_type] = STATE(2692), + [sym_tuple_type] = STATE(2692), + [sym_named_tuple_type] = STATE(2692), + [sym_generic_instance_type] = STATE(2692), + [sym_nilable_type] = STATE(2692), + [sym_pointer_type] = STATE(2692), + [sym_static_array_type] = STATE(2692), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(5075), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5077), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5079), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [sym_self] = ACTIONS(5081), + [sym_underscore_type] = ACTIONS(5081), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_do] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4412), + [sym__line_break] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4412), + [sym__start_of_tuple_type] = ACTIONS(5083), + [sym__start_of_named_tuple_type] = ACTIONS(5085), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modifier_if_keyword] = ACTIONS(4412), + [sym__modifier_unless_keyword] = ACTIONS(4412), + [sym__regular_rescue_keyword] = ACTIONS(4412), + [sym__modifier_rescue_keyword] = ACTIONS(4412), + [sym__regular_ensure_keyword] = ACTIONS(4412), + [sym__modifier_ensure_keyword] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2163] = { [sym_heredoc_body] = STATE(2163), - [sym_typeof] = STATE(2592), - [sym_constant] = STATE(2488), - [sym__type] = STATE(2510), - [sym_class_type] = STATE(2592), - [sym_union_type] = STATE(2592), - [sym__parenthesized_type] = STATE(2592), - [sym_no_args_proc_type] = STATE(2592), - [sym_parenthesized_proc_type] = STATE(2592), - [sym_tuple_type] = STATE(2592), - [sym_named_tuple_type] = STATE(2592), - [sym_generic_instance_type] = STATE(2592), - [sym_nilable_type] = STATE(2592), - [sym_pointer_type] = STATE(2592), - [sym_static_array_type] = STATE(2592), - [anon_sym_SEMI] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(5050), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5052), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5042), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [sym_self] = ACTIONS(5044), - [sym_underscore_type] = ACTIONS(5044), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_do] = ACTIONS(4325), - [anon_sym_else] = ACTIONS(4325), - [sym__line_break] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4325), - [sym__start_of_tuple_type] = ACTIONS(5046), - [sym__start_of_named_tuple_type] = ACTIONS(5048), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modifier_if_keyword] = ACTIONS(4325), - [sym__modifier_unless_keyword] = ACTIONS(4325), - [sym__regular_rescue_keyword] = ACTIONS(4325), - [sym__modifier_rescue_keyword] = ACTIONS(4325), - [sym__regular_ensure_keyword] = ACTIONS(4325), - [sym__modifier_ensure_keyword] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(2476), + [sym_constant] = STATE(2394), + [sym__type] = STATE(2458), + [sym_class_type] = STATE(2476), + [sym_union_type] = STATE(2476), + [sym__parenthesized_type] = STATE(2476), + [sym_no_args_proc_type] = STATE(2476), + [sym_parenthesized_proc_type] = STATE(2476), + [sym_tuple_type] = STATE(2476), + [sym_named_tuple_type] = STATE(2476), + [sym_generic_instance_type] = STATE(2476), + [sym_nilable_type] = STATE(2476), + [sym_pointer_type] = STATE(2476), + [sym_static_array_type] = STATE(2476), + [ts_builtin_sym_end] = ACTIONS(4446), + [anon_sym_SEMI] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(4446), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4446), + [anon_sym_COMMA] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4446), + [anon_sym_DASH_GT] = ACTIONS(5054), + [anon_sym_end] = ACTIONS(4446), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ_GT] = ACTIONS(4446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4446), + [anon_sym_BANG_TILDE] = ACTIONS(4446), + [anon_sym_EQ_TILDE] = ACTIONS(4446), + [anon_sym_AMP_STAR] = ACTIONS(4444), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4444), + [anon_sym_EQ] = ACTIONS(4444), + [anon_sym_typeof] = ACTIONS(5056), + [sym__constant_segment] = ACTIONS(83), + [anon_sym_COLON_COLON] = ACTIONS(85), + [sym_self] = ACTIONS(5058), + [sym_underscore_type] = ACTIONS(5058), + [anon_sym_QMARK] = ACTIONS(4446), + [anon_sym_AMP_AMP] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4446), + [anon_sym_elsif] = ACTIONS(4446), + [anon_sym_else] = ACTIONS(4446), + [anon_sym_when] = ACTIONS(4446), + [anon_sym_in] = ACTIONS(4446), + [sym__line_break] = ACTIONS(4446), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5060), + [sym__start_of_named_tuple_type] = ACTIONS(5062), + [sym__start_of_index_operator] = ACTIONS(4446), + [sym_binary_plus] = ACTIONS(4446), + [sym_binary_minus] = ACTIONS(4446), + [sym_binary_wrapping_plus] = ACTIONS(4446), + [sym_binary_wrapping_minus] = ACTIONS(4446), + [sym__binary_star] = ACTIONS(4446), + [sym__binary_double_star] = ACTIONS(4446), + [sym_binary_ampersand] = ACTIONS(4446), + [sym__binary_slash] = ACTIONS(4446), + [sym__binary_double_slash] = ACTIONS(4446), + [sym__modifier_if_keyword] = ACTIONS(4446), + [sym__modifier_unless_keyword] = ACTIONS(4446), + [sym__modifier_rescue_keyword] = ACTIONS(4446), + [sym__modifier_ensure_keyword] = ACTIONS(4446), + [sym__modulo_operator] = ACTIONS(4446), [sym__heredoc_body_start] = ACTIONS(7), }, [2164] = { [sym_heredoc_body] = STATE(2164), - [sym_typeof] = STATE(2434), - [sym_constant] = STATE(2391), - [sym__type] = STATE(2424), - [sym_class_type] = STATE(2434), - [sym_union_type] = STATE(2434), - [sym__parenthesized_type] = STATE(2434), - [sym_no_args_proc_type] = STATE(2434), - [sym_parenthesized_proc_type] = STATE(2434), - [sym_tuple_type] = STATE(2434), - [sym_named_tuple_type] = STATE(2434), - [sym_generic_instance_type] = STATE(2434), - [sym_nilable_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_static_array_type] = STATE(2434), - [ts_builtin_sym_end] = ACTIONS(4409), - [anon_sym_SEMI] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4409), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4409), - [anon_sym_COMMA] = ACTIONS(4409), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4409), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_end] = ACTIONS(4409), - [anon_sym_LT] = ACTIONS(4407), - [anon_sym_PIPE] = ACTIONS(4407), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym_GT_GT] = ACTIONS(4409), - [anon_sym_LT_LT] = ACTIONS(4409), - [anon_sym_EQ_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ_GT] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), - [anon_sym_BANG_TILDE] = ACTIONS(4409), - [anon_sym_EQ_TILDE] = ACTIONS(4409), - [anon_sym_AMP_STAR] = ACTIONS(4407), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4409), - [anon_sym_DOT] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4407), - [anon_sym_typeof] = ACTIONS(4993), + [sym_typeof] = STATE(2476), + [sym_constant] = STATE(2394), + [sym__type] = STATE(2469), + [sym_class_type] = STATE(2476), + [sym_union_type] = STATE(2476), + [sym__parenthesized_type] = STATE(2476), + [sym_no_args_proc_type] = STATE(2476), + [sym_parenthesized_proc_type] = STATE(2476), + [sym_tuple_type] = STATE(2476), + [sym_named_tuple_type] = STATE(2476), + [sym_generic_instance_type] = STATE(2476), + [sym_nilable_type] = STATE(2476), + [sym_pointer_type] = STATE(2476), + [sym_static_array_type] = STATE(2476), + [ts_builtin_sym_end] = ACTIONS(4468), + [anon_sym_SEMI] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(5052), + [anon_sym_RPAREN] = ACTIONS(4468), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4468), + [anon_sym_COMMA] = ACTIONS(4468), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4468), + [anon_sym_DASH_GT] = ACTIONS(5054), + [anon_sym_end] = ACTIONS(4468), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_CARET] = ACTIONS(4468), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(4468), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ_GT] = ACTIONS(4468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), + [anon_sym_BANG_TILDE] = ACTIONS(4468), + [anon_sym_EQ_TILDE] = ACTIONS(4468), + [anon_sym_AMP_STAR] = ACTIONS(4466), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(4466), + [anon_sym_typeof] = ACTIONS(5056), [sym__constant_segment] = ACTIONS(83), [anon_sym_COLON_COLON] = ACTIONS(85), - [sym_self] = ACTIONS(4995), - [sym_underscore_type] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_AMP_AMP] = ACTIONS(4409), - [anon_sym_PIPE_PIPE] = ACTIONS(4409), - [anon_sym_elsif] = ACTIONS(4409), - [anon_sym_else] = ACTIONS(4409), - [anon_sym_when] = ACTIONS(4409), - [anon_sym_in] = ACTIONS(4409), - [sym__line_break] = ACTIONS(4409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(4997), - [sym__start_of_named_tuple_type] = ACTIONS(4999), - [sym__start_of_index_operator] = ACTIONS(4409), - [sym_binary_plus] = ACTIONS(4409), - [sym_binary_minus] = ACTIONS(4409), - [sym_binary_wrapping_plus] = ACTIONS(4409), - [sym_binary_wrapping_minus] = ACTIONS(4409), - [sym__binary_star] = ACTIONS(4409), - [sym__binary_double_star] = ACTIONS(4409), - [sym_binary_ampersand] = ACTIONS(4409), - [sym__binary_slash] = ACTIONS(4409), - [sym__binary_double_slash] = ACTIONS(4409), - [sym__modifier_if_keyword] = ACTIONS(4409), - [sym__modifier_unless_keyword] = ACTIONS(4409), - [sym__modifier_rescue_keyword] = ACTIONS(4409), - [sym__modifier_ensure_keyword] = ACTIONS(4409), - [sym__modulo_operator] = ACTIONS(4409), + [sym_self] = ACTIONS(5058), + [sym_underscore_type] = ACTIONS(5058), + [anon_sym_QMARK] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(4468), + [anon_sym_elsif] = ACTIONS(4468), + [anon_sym_else] = ACTIONS(4468), + [anon_sym_when] = ACTIONS(4468), + [anon_sym_in] = ACTIONS(4468), + [sym__line_break] = ACTIONS(4468), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5060), + [sym__start_of_named_tuple_type] = ACTIONS(5062), + [sym__start_of_index_operator] = ACTIONS(4468), + [sym_binary_plus] = ACTIONS(4468), + [sym_binary_minus] = ACTIONS(4468), + [sym_binary_wrapping_plus] = ACTIONS(4468), + [sym_binary_wrapping_minus] = ACTIONS(4468), + [sym__binary_star] = ACTIONS(4468), + [sym__binary_double_star] = ACTIONS(4468), + [sym_binary_ampersand] = ACTIONS(4468), + [sym__binary_slash] = ACTIONS(4468), + [sym__binary_double_slash] = ACTIONS(4468), + [sym__modifier_if_keyword] = ACTIONS(4468), + [sym__modifier_unless_keyword] = ACTIONS(4468), + [sym__modifier_rescue_keyword] = ACTIONS(4468), + [sym__modifier_ensure_keyword] = ACTIONS(4468), + [sym__modulo_operator] = ACTIONS(4468), [sym__heredoc_body_start] = ACTIONS(7), }, [2165] = { [sym_heredoc_body] = STATE(2165), - [sym_typeof] = STATE(2434), - [sym_constant] = STATE(2391), - [sym__type] = STATE(2433), - [sym_class_type] = STATE(2434), - [sym_union_type] = STATE(2434), - [sym__parenthesized_type] = STATE(2434), - [sym_no_args_proc_type] = STATE(2434), - [sym_parenthesized_proc_type] = STATE(2434), - [sym_tuple_type] = STATE(2434), - [sym_named_tuple_type] = STATE(2434), - [sym_generic_instance_type] = STATE(2434), - [sym_nilable_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_static_array_type] = STATE(2434), - [ts_builtin_sym_end] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4431), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(4991), - [anon_sym_end] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_PIPE] = ACTIONS(4429), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ_GT] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_BANG_TILDE] = ACTIONS(4431), - [anon_sym_EQ_TILDE] = ACTIONS(4431), - [anon_sym_AMP_STAR] = ACTIONS(4429), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_typeof] = ACTIONS(4993), - [sym__constant_segment] = ACTIONS(83), - [anon_sym_COLON_COLON] = ACTIONS(85), - [sym_self] = ACTIONS(4995), - [sym_underscore_type] = ACTIONS(4995), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_elsif] = ACTIONS(4431), - [anon_sym_else] = ACTIONS(4431), - [anon_sym_when] = ACTIONS(4431), - [anon_sym_in] = ACTIONS(4431), - [sym__line_break] = ACTIONS(4431), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(4997), - [sym__start_of_named_tuple_type] = ACTIONS(4999), - [sym__start_of_index_operator] = ACTIONS(4431), - [sym_binary_plus] = ACTIONS(4431), - [sym_binary_minus] = ACTIONS(4431), - [sym_binary_wrapping_plus] = ACTIONS(4431), - [sym_binary_wrapping_minus] = ACTIONS(4431), - [sym__binary_star] = ACTIONS(4431), - [sym__binary_double_star] = ACTIONS(4431), - [sym_binary_ampersand] = ACTIONS(4431), - [sym__binary_slash] = ACTIONS(4431), - [sym__binary_double_slash] = ACTIONS(4431), - [sym__modifier_if_keyword] = ACTIONS(4431), - [sym__modifier_unless_keyword] = ACTIONS(4431), - [sym__modifier_rescue_keyword] = ACTIONS(4431), - [sym__modifier_ensure_keyword] = ACTIONS(4431), - [sym__modulo_operator] = ACTIONS(4431), + [sym_typeof] = STATE(2692), + [sym_constant] = STATE(2522), + [sym__type] = STATE(2678), + [sym_class_type] = STATE(2692), + [sym_union_type] = STATE(2692), + [sym__parenthesized_type] = STATE(2692), + [sym_no_args_proc_type] = STATE(2692), + [sym_parenthesized_proc_type] = STATE(2692), + [sym_tuple_type] = STATE(2692), + [sym_named_tuple_type] = STATE(2692), + [sym_generic_instance_type] = STATE(2692), + [sym_nilable_type] = STATE(2692), + [sym_pointer_type] = STATE(2692), + [sym_static_array_type] = STATE(2692), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(5075), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5077), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5079), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [sym_self] = ACTIONS(5081), + [sym_underscore_type] = ACTIONS(5081), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_do] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [sym__line_break] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4390), + [sym__start_of_tuple_type] = ACTIONS(5083), + [sym__start_of_named_tuple_type] = ACTIONS(5085), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modifier_if_keyword] = ACTIONS(4390), + [sym__modifier_unless_keyword] = ACTIONS(4390), + [sym__regular_rescue_keyword] = ACTIONS(4390), + [sym__modifier_rescue_keyword] = ACTIONS(4390), + [sym__regular_ensure_keyword] = ACTIONS(4390), + [sym__modifier_ensure_keyword] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2166] = { [sym_heredoc_body] = STATE(2166), - [sym_typeof] = STATE(2592), - [sym_constant] = STATE(2488), - [sym__type] = STATE(2586), - [sym_class_type] = STATE(2592), - [sym_union_type] = STATE(2592), - [sym__parenthesized_type] = STATE(2592), - [sym_no_args_proc_type] = STATE(2592), - [sym_parenthesized_proc_type] = STATE(2592), - [sym_tuple_type] = STATE(2592), - [sym_named_tuple_type] = STATE(2592), - [sym_generic_instance_type] = STATE(2592), - [sym_nilable_type] = STATE(2592), - [sym_pointer_type] = STATE(2592), - [sym_static_array_type] = STATE(2592), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5038), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5040), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5042), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [sym_self] = ACTIONS(5044), - [sym_underscore_type] = ACTIONS(5044), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_do] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4353), - [sym__line_break] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4353), - [sym__start_of_tuple_type] = ACTIONS(5046), - [sym__start_of_named_tuple_type] = ACTIONS(5048), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modifier_if_keyword] = ACTIONS(4353), - [sym__modifier_unless_keyword] = ACTIONS(4353), - [sym__regular_rescue_keyword] = ACTIONS(4353), - [sym__modifier_rescue_keyword] = ACTIONS(4353), - [sym__regular_ensure_keyword] = ACTIONS(4353), - [sym__modifier_ensure_keyword] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(2692), + [sym_constant] = STATE(2522), + [sym__type] = STATE(2499), + [sym_class_type] = STATE(2692), + [sym_union_type] = STATE(2692), + [sym__parenthesized_type] = STATE(2692), + [sym_no_args_proc_type] = STATE(2692), + [sym_parenthesized_proc_type] = STATE(2692), + [sym_tuple_type] = STATE(2692), + [sym_named_tuple_type] = STATE(2692), + [sym_generic_instance_type] = STATE(2692), + [sym_nilable_type] = STATE(2692), + [sym_pointer_type] = STATE(2692), + [sym_static_array_type] = STATE(2692), + [anon_sym_SEMI] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(5087), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5089), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5079), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [sym_self] = ACTIONS(5081), + [sym_underscore_type] = ACTIONS(5081), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_do] = ACTIONS(4362), + [anon_sym_else] = ACTIONS(4362), + [sym__line_break] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4362), + [sym__start_of_tuple_type] = ACTIONS(5083), + [sym__start_of_named_tuple_type] = ACTIONS(5085), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modifier_if_keyword] = ACTIONS(4362), + [sym__modifier_unless_keyword] = ACTIONS(4362), + [sym__regular_rescue_keyword] = ACTIONS(4362), + [sym__modifier_rescue_keyword] = ACTIONS(4362), + [sym__regular_ensure_keyword] = ACTIONS(4362), + [sym__modifier_ensure_keyword] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2167] = { [sym_heredoc_body] = STATE(2167), - [sym_typeof] = STATE(2592), - [sym_constant] = STATE(2488), - [sym__type] = STATE(2587), - [sym_class_type] = STATE(2592), - [sym_union_type] = STATE(2592), - [sym__parenthesized_type] = STATE(2592), - [sym_no_args_proc_type] = STATE(2592), - [sym_parenthesized_proc_type] = STATE(2592), - [sym_tuple_type] = STATE(2592), - [sym_named_tuple_type] = STATE(2592), - [sym_generic_instance_type] = STATE(2592), - [sym_nilable_type] = STATE(2592), - [sym_pointer_type] = STATE(2592), - [sym_static_array_type] = STATE(2592), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(5038), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5040), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5042), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [sym_self] = ACTIONS(5044), - [sym_underscore_type] = ACTIONS(5044), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_do] = ACTIONS(4375), - [anon_sym_else] = ACTIONS(4375), - [sym__line_break] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4375), - [sym__start_of_tuple_type] = ACTIONS(5046), - [sym__start_of_named_tuple_type] = ACTIONS(5048), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modifier_if_keyword] = ACTIONS(4375), - [sym__modifier_unless_keyword] = ACTIONS(4375), - [sym__regular_rescue_keyword] = ACTIONS(4375), - [sym__modifier_rescue_keyword] = ACTIONS(4375), - [sym__regular_ensure_keyword] = ACTIONS(4375), - [sym__modifier_ensure_keyword] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(2692), + [sym_constant] = STATE(2522), + [sym__type] = STATE(2679), + [sym_class_type] = STATE(2692), + [sym_union_type] = STATE(2692), + [sym__parenthesized_type] = STATE(2692), + [sym_no_args_proc_type] = STATE(2692), + [sym_parenthesized_proc_type] = STATE(2692), + [sym_tuple_type] = STATE(2692), + [sym_named_tuple_type] = STATE(2692), + [sym_generic_instance_type] = STATE(2692), + [sym_nilable_type] = STATE(2692), + [sym_pointer_type] = STATE(2692), + [sym_static_array_type] = STATE(2692), + [anon_sym_SEMI] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(5075), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5077), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5079), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [sym_self] = ACTIONS(5081), + [sym_underscore_type] = ACTIONS(5081), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_do] = ACTIONS(4362), + [anon_sym_else] = ACTIONS(4362), + [sym__line_break] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4362), + [sym__start_of_tuple_type] = ACTIONS(5083), + [sym__start_of_named_tuple_type] = ACTIONS(5085), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modifier_if_keyword] = ACTIONS(4362), + [sym__modifier_unless_keyword] = ACTIONS(4362), + [sym__regular_rescue_keyword] = ACTIONS(4362), + [sym__modifier_rescue_keyword] = ACTIONS(4362), + [sym__regular_ensure_keyword] = ACTIONS(4362), + [sym__modifier_ensure_keyword] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2168] = { [sym_heredoc_body] = STATE(2168), - [sym_typeof] = STATE(2592), - [sym_constant] = STATE(2488), - [sym__type] = STATE(2524), - [sym_class_type] = STATE(2592), - [sym_union_type] = STATE(2592), - [sym__parenthesized_type] = STATE(2592), - [sym_no_args_proc_type] = STATE(2592), - [sym_parenthesized_proc_type] = STATE(2592), - [sym_tuple_type] = STATE(2592), - [sym_named_tuple_type] = STATE(2592), - [sym_generic_instance_type] = STATE(2592), - [sym_nilable_type] = STATE(2592), - [sym_pointer_type] = STATE(2592), - [sym_static_array_type] = STATE(2592), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5050), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5055), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5042), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [sym_self] = ACTIONS(5044), - [sym_underscore_type] = ACTIONS(5044), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_do] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4353), - [sym__line_break] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4353), - [sym__start_of_tuple_type] = ACTIONS(5046), - [sym__start_of_named_tuple_type] = ACTIONS(5048), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modifier_if_keyword] = ACTIONS(4353), - [sym__modifier_unless_keyword] = ACTIONS(4353), - [sym__regular_rescue_keyword] = ACTIONS(4353), - [sym__modifier_rescue_keyword] = ACTIONS(4353), - [sym__regular_ensure_keyword] = ACTIONS(4353), - [sym__modifier_ensure_keyword] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(2692), + [sym_constant] = STATE(2522), + [sym__type] = STATE(2497), + [sym_class_type] = STATE(2692), + [sym_union_type] = STATE(2692), + [sym__parenthesized_type] = STATE(2692), + [sym_no_args_proc_type] = STATE(2692), + [sym_parenthesized_proc_type] = STATE(2692), + [sym_tuple_type] = STATE(2692), + [sym_named_tuple_type] = STATE(2692), + [sym_generic_instance_type] = STATE(2692), + [sym_nilable_type] = STATE(2692), + [sym_pointer_type] = STATE(2692), + [sym_static_array_type] = STATE(2692), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(5087), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5092), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5079), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [sym_self] = ACTIONS(5081), + [sym_underscore_type] = ACTIONS(5081), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_do] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [sym__line_break] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4390), + [sym__start_of_tuple_type] = ACTIONS(5083), + [sym__start_of_named_tuple_type] = ACTIONS(5085), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modifier_if_keyword] = ACTIONS(4390), + [sym__modifier_unless_keyword] = ACTIONS(4390), + [sym__regular_rescue_keyword] = ACTIONS(4390), + [sym__modifier_rescue_keyword] = ACTIONS(4390), + [sym__regular_ensure_keyword] = ACTIONS(4390), + [sym__modifier_ensure_keyword] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2169] = { [sym_heredoc_body] = STATE(2169), - [sym_typeof] = STATE(2592), - [sym_constant] = STATE(2488), - [sym__type] = STATE(2477), - [sym_class_type] = STATE(2592), - [sym_union_type] = STATE(2592), - [sym__parenthesized_type] = STATE(2592), - [sym_no_args_proc_type] = STATE(2592), - [sym_parenthesized_proc_type] = STATE(2592), - [sym_tuple_type] = STATE(2592), - [sym_named_tuple_type] = STATE(2592), - [sym_generic_instance_type] = STATE(2592), - [sym_nilable_type] = STATE(2592), - [sym_pointer_type] = STATE(2592), - [sym_static_array_type] = STATE(2592), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(5050), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5058), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5042), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [sym_self] = ACTIONS(5044), - [sym_underscore_type] = ACTIONS(5044), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_do] = ACTIONS(4375), - [anon_sym_else] = ACTIONS(4375), - [sym__line_break] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4375), - [sym__start_of_tuple_type] = ACTIONS(5046), - [sym__start_of_named_tuple_type] = ACTIONS(5048), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modifier_if_keyword] = ACTIONS(4375), - [sym__modifier_unless_keyword] = ACTIONS(4375), - [sym__regular_rescue_keyword] = ACTIONS(4375), - [sym__modifier_rescue_keyword] = ACTIONS(4375), - [sym__regular_ensure_keyword] = ACTIONS(4375), - [sym__modifier_ensure_keyword] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(2692), + [sym_constant] = STATE(2522), + [sym__type] = STATE(2531), + [sym_class_type] = STATE(2692), + [sym_union_type] = STATE(2692), + [sym__parenthesized_type] = STATE(2692), + [sym_no_args_proc_type] = STATE(2692), + [sym_parenthesized_proc_type] = STATE(2692), + [sym_tuple_type] = STATE(2692), + [sym_named_tuple_type] = STATE(2692), + [sym_generic_instance_type] = STATE(2692), + [sym_nilable_type] = STATE(2692), + [sym_pointer_type] = STATE(2692), + [sym_static_array_type] = STATE(2692), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(5087), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5095), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5079), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [sym_self] = ACTIONS(5081), + [sym_underscore_type] = ACTIONS(5081), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_do] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4412), + [sym__line_break] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4412), + [sym__start_of_tuple_type] = ACTIONS(5083), + [sym__start_of_named_tuple_type] = ACTIONS(5085), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modifier_if_keyword] = ACTIONS(4412), + [sym__modifier_unless_keyword] = ACTIONS(4412), + [sym__regular_rescue_keyword] = ACTIONS(4412), + [sym__modifier_rescue_keyword] = ACTIONS(4412), + [sym__regular_ensure_keyword] = ACTIONS(4412), + [sym__modifier_ensure_keyword] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2170] = { [sym_heredoc_body] = STATE(2170), - [sym_typeof] = STATE(2791), - [sym_constant] = STATE(2676), - [sym__type] = STATE(2630), - [sym_class_type] = STATE(2791), - [sym_union_type] = STATE(2791), - [sym__parenthesized_type] = STATE(2791), - [sym_no_args_proc_type] = STATE(2791), - [sym_parenthesized_proc_type] = STATE(2791), - [sym_tuple_type] = STATE(2791), - [sym_named_tuple_type] = STATE(2791), - [sym_generic_instance_type] = STATE(2791), - [sym_nilable_type] = STATE(2791), - [sym_pointer_type] = STATE(2791), - [sym_static_array_type] = STATE(2791), - [anon_sym_LPAREN] = ACTIONS(5061), - [anon_sym_RPAREN] = ACTIONS(4375), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_RBRACK] = ACTIONS(4375), - [anon_sym_EQ_GT] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5063), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5066), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [sym_self] = ACTIONS(5068), - [sym_underscore_type] = ACTIONS(5068), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_COLON2] = ACTIONS(4373), - [anon_sym_do] = ACTIONS(4375), - [anon_sym_else] = ACTIONS(4375), - [anon_sym_when] = ACTIONS(4375), - [anon_sym_in] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4375), - [sym__start_of_tuple_type] = ACTIONS(5070), - [sym__start_of_named_tuple_type] = ACTIONS(5072), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(2790), + [sym_constant] = STATE(2604), + [sym__type] = STATE(2636), + [sym_class_type] = STATE(2790), + [sym_union_type] = STATE(2790), + [sym__parenthesized_type] = STATE(2790), + [sym_no_args_proc_type] = STATE(2790), + [sym_parenthesized_proc_type] = STATE(2790), + [sym_tuple_type] = STATE(2790), + [sym_named_tuple_type] = STATE(2790), + [sym_generic_instance_type] = STATE(2790), + [sym_nilable_type] = STATE(2790), + [sym_pointer_type] = STATE(2790), + [sym_static_array_type] = STATE(2790), + [anon_sym_LPAREN] = ACTIONS(5098), + [anon_sym_RPAREN] = ACTIONS(4362), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4362), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_RBRACK] = ACTIONS(4362), + [anon_sym_EQ_GT] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5100), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5103), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [sym_self] = ACTIONS(5105), + [sym_underscore_type] = ACTIONS(5105), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_COLON2] = ACTIONS(4360), + [anon_sym_do] = ACTIONS(4362), + [anon_sym_else] = ACTIONS(4362), + [anon_sym_when] = ACTIONS(4362), + [anon_sym_in] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4362), + [sym__start_of_tuple_type] = ACTIONS(5107), + [sym__start_of_named_tuple_type] = ACTIONS(5109), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2171] = { [sym_heredoc_body] = STATE(2171), - [sym_typeof] = STATE(2791), - [sym_constant] = STATE(2676), - [sym__type] = STATE(2827), - [sym_class_type] = STATE(2791), - [sym_union_type] = STATE(2791), - [sym__parenthesized_type] = STATE(2791), - [sym_no_args_proc_type] = STATE(2791), - [sym_parenthesized_proc_type] = STATE(2791), - [sym_tuple_type] = STATE(2791), - [sym_named_tuple_type] = STATE(2791), - [sym_generic_instance_type] = STATE(2791), - [sym_nilable_type] = STATE(2791), - [sym_pointer_type] = STATE(2791), - [sym_static_array_type] = STATE(2791), - [anon_sym_LPAREN] = ACTIONS(5074), - [anon_sym_RPAREN] = ACTIONS(4353), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RBRACK] = ACTIONS(4353), - [anon_sym_EQ_GT] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5076), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5066), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [sym_self] = ACTIONS(5068), - [sym_underscore_type] = ACTIONS(5068), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_COLON2] = ACTIONS(4351), - [anon_sym_do] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4353), - [anon_sym_when] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4353), - [sym__start_of_tuple_type] = ACTIONS(5070), - [sym__start_of_named_tuple_type] = ACTIONS(5072), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(2790), + [sym_constant] = STATE(2604), + [sym__type] = STATE(2550), + [sym_class_type] = STATE(2790), + [sym_union_type] = STATE(2790), + [sym__parenthesized_type] = STATE(2790), + [sym_no_args_proc_type] = STATE(2790), + [sym_parenthesized_proc_type] = STATE(2790), + [sym_tuple_type] = STATE(2790), + [sym_named_tuple_type] = STATE(2790), + [sym_generic_instance_type] = STATE(2790), + [sym_nilable_type] = STATE(2790), + [sym_pointer_type] = STATE(2790), + [sym_static_array_type] = STATE(2790), + [anon_sym_LPAREN] = ACTIONS(5098), + [anon_sym_RPAREN] = ACTIONS(4390), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_RBRACK] = ACTIONS(4390), + [anon_sym_EQ_GT] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5111), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5103), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [sym_self] = ACTIONS(5105), + [sym_underscore_type] = ACTIONS(5105), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_COLON2] = ACTIONS(4388), + [anon_sym_do] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4390), + [sym__start_of_tuple_type] = ACTIONS(5107), + [sym__start_of_named_tuple_type] = ACTIONS(5109), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2172] = { [sym_heredoc_body] = STATE(2172), - [sym_typeof] = STATE(2791), - [sym_constant] = STATE(2676), - [sym__type] = STATE(2855), - [sym_class_type] = STATE(2791), - [sym_union_type] = STATE(2791), - [sym__parenthesized_type] = STATE(2791), - [sym_no_args_proc_type] = STATE(2791), - [sym_parenthesized_proc_type] = STATE(2791), - [sym_tuple_type] = STATE(2791), - [sym_named_tuple_type] = STATE(2791), - [sym_generic_instance_type] = STATE(2791), - [sym_nilable_type] = STATE(2791), - [sym_pointer_type] = STATE(2791), - [sym_static_array_type] = STATE(2791), - [anon_sym_LPAREN] = ACTIONS(5074), - [anon_sym_RPAREN] = ACTIONS(4325), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_RBRACK] = ACTIONS(4325), - [anon_sym_EQ_GT] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5076), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5066), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [sym_self] = ACTIONS(5068), - [sym_underscore_type] = ACTIONS(5068), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_COLON2] = ACTIONS(4323), - [anon_sym_do] = ACTIONS(4325), - [anon_sym_else] = ACTIONS(4325), - [anon_sym_when] = ACTIONS(4325), - [anon_sym_in] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4325), - [sym__start_of_tuple_type] = ACTIONS(5070), - [sym__start_of_named_tuple_type] = ACTIONS(5072), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(2790), + [sym_constant] = STATE(2604), + [sym__type] = STATE(2657), + [sym_class_type] = STATE(2790), + [sym_union_type] = STATE(2790), + [sym__parenthesized_type] = STATE(2790), + [sym_no_args_proc_type] = STATE(2790), + [sym_parenthesized_proc_type] = STATE(2790), + [sym_tuple_type] = STATE(2790), + [sym_named_tuple_type] = STATE(2790), + [sym_generic_instance_type] = STATE(2790), + [sym_nilable_type] = STATE(2790), + [sym_pointer_type] = STATE(2790), + [sym_static_array_type] = STATE(2790), + [anon_sym_LPAREN] = ACTIONS(5098), + [anon_sym_RPAREN] = ACTIONS(4412), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_RBRACK] = ACTIONS(4412), + [anon_sym_EQ_GT] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5114), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5103), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [sym_self] = ACTIONS(5105), + [sym_underscore_type] = ACTIONS(5105), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_COLON2] = ACTIONS(4410), + [anon_sym_do] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_when] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4412), + [sym__start_of_tuple_type] = ACTIONS(5107), + [sym__start_of_named_tuple_type] = ACTIONS(5109), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2173] = { [sym_heredoc_body] = STATE(2173), - [sym_typeof] = STATE(2791), - [sym_constant] = STATE(2676), - [sym__type] = STATE(2691), - [sym_class_type] = STATE(2791), - [sym_union_type] = STATE(2791), - [sym__parenthesized_type] = STATE(2791), - [sym_no_args_proc_type] = STATE(2791), - [sym_parenthesized_proc_type] = STATE(2791), - [sym_tuple_type] = STATE(2791), - [sym_named_tuple_type] = STATE(2791), - [sym_generic_instance_type] = STATE(2791), - [sym_nilable_type] = STATE(2791), - [sym_pointer_type] = STATE(2791), - [sym_static_array_type] = STATE(2791), - [anon_sym_LPAREN] = ACTIONS(5061), - [anon_sym_RPAREN] = ACTIONS(4325), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_RBRACK] = ACTIONS(4325), - [anon_sym_EQ_GT] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5078), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5066), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [sym_self] = ACTIONS(5068), - [sym_underscore_type] = ACTIONS(5068), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_COLON2] = ACTIONS(4323), - [anon_sym_do] = ACTIONS(4325), - [anon_sym_else] = ACTIONS(4325), - [anon_sym_when] = ACTIONS(4325), - [anon_sym_in] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4325), - [sym__start_of_tuple_type] = ACTIONS(5070), - [sym__start_of_named_tuple_type] = ACTIONS(5072), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(2790), + [sym_constant] = STATE(2604), + [sym__type] = STATE(2854), + [sym_class_type] = STATE(2790), + [sym_union_type] = STATE(2790), + [sym__parenthesized_type] = STATE(2790), + [sym_no_args_proc_type] = STATE(2790), + [sym_parenthesized_proc_type] = STATE(2790), + [sym_tuple_type] = STATE(2790), + [sym_named_tuple_type] = STATE(2790), + [sym_generic_instance_type] = STATE(2790), + [sym_nilable_type] = STATE(2790), + [sym_pointer_type] = STATE(2790), + [sym_static_array_type] = STATE(2790), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_RPAREN] = ACTIONS(4412), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_RBRACK] = ACTIONS(4412), + [anon_sym_EQ_GT] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5119), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5103), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [sym_self] = ACTIONS(5105), + [sym_underscore_type] = ACTIONS(5105), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_COLON2] = ACTIONS(4410), + [anon_sym_do] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_when] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4412), + [sym__start_of_tuple_type] = ACTIONS(5107), + [sym__start_of_named_tuple_type] = ACTIONS(5109), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2174] = { [sym_heredoc_body] = STATE(2174), - [sym_typeof] = STATE(2791), - [sym_constant] = STATE(2676), - [sym__type] = STATE(2776), - [sym_class_type] = STATE(2791), - [sym_union_type] = STATE(2791), - [sym__parenthesized_type] = STATE(2791), - [sym_no_args_proc_type] = STATE(2791), - [sym_parenthesized_proc_type] = STATE(2791), - [sym_tuple_type] = STATE(2791), - [sym_named_tuple_type] = STATE(2791), - [sym_generic_instance_type] = STATE(2791), - [sym_nilable_type] = STATE(2791), - [sym_pointer_type] = STATE(2791), - [sym_static_array_type] = STATE(2791), - [anon_sym_LPAREN] = ACTIONS(5074), - [anon_sym_RPAREN] = ACTIONS(4375), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_RBRACK] = ACTIONS(4375), - [anon_sym_EQ_GT] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5076), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5066), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [sym_self] = ACTIONS(5068), - [sym_underscore_type] = ACTIONS(5068), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_COLON2] = ACTIONS(4373), - [anon_sym_do] = ACTIONS(4375), - [anon_sym_else] = ACTIONS(4375), - [anon_sym_when] = ACTIONS(4375), - [anon_sym_in] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4375), - [sym__start_of_tuple_type] = ACTIONS(5070), - [sym__start_of_named_tuple_type] = ACTIONS(5072), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(2790), + [sym_constant] = STATE(2604), + [sym__type] = STATE(2857), + [sym_class_type] = STATE(2790), + [sym_union_type] = STATE(2790), + [sym__parenthesized_type] = STATE(2790), + [sym_no_args_proc_type] = STATE(2790), + [sym_parenthesized_proc_type] = STATE(2790), + [sym_tuple_type] = STATE(2790), + [sym_named_tuple_type] = STATE(2790), + [sym_generic_instance_type] = STATE(2790), + [sym_nilable_type] = STATE(2790), + [sym_pointer_type] = STATE(2790), + [sym_static_array_type] = STATE(2790), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_RPAREN] = ACTIONS(4390), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_RBRACK] = ACTIONS(4390), + [anon_sym_EQ_GT] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5119), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5103), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [sym_self] = ACTIONS(5105), + [sym_underscore_type] = ACTIONS(5105), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_COLON2] = ACTIONS(4388), + [anon_sym_do] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4390), + [sym__start_of_tuple_type] = ACTIONS(5107), + [sym__start_of_named_tuple_type] = ACTIONS(5109), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2175] = { [sym_heredoc_body] = STATE(2175), - [sym_typeof] = STATE(2791), - [sym_constant] = STATE(2676), - [sym__type] = STATE(2625), - [sym_class_type] = STATE(2791), - [sym_union_type] = STATE(2791), - [sym__parenthesized_type] = STATE(2791), - [sym_no_args_proc_type] = STATE(2791), - [sym_parenthesized_proc_type] = STATE(2791), - [sym_tuple_type] = STATE(2791), - [sym_named_tuple_type] = STATE(2791), - [sym_generic_instance_type] = STATE(2791), - [sym_nilable_type] = STATE(2791), - [sym_pointer_type] = STATE(2791), - [sym_static_array_type] = STATE(2791), - [anon_sym_LPAREN] = ACTIONS(5061), - [anon_sym_RPAREN] = ACTIONS(4353), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RBRACK] = ACTIONS(4353), - [anon_sym_EQ_GT] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5081), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5066), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [sym_self] = ACTIONS(5068), - [sym_underscore_type] = ACTIONS(5068), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_COLON2] = ACTIONS(4351), - [anon_sym_do] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4353), - [anon_sym_when] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4353), - [sym__start_of_tuple_type] = ACTIONS(5070), - [sym__start_of_named_tuple_type] = ACTIONS(5072), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(2790), + [sym_constant] = STATE(2604), + [sym__type] = STATE(2858), + [sym_class_type] = STATE(2790), + [sym_union_type] = STATE(2790), + [sym__parenthesized_type] = STATE(2790), + [sym_no_args_proc_type] = STATE(2790), + [sym_parenthesized_proc_type] = STATE(2790), + [sym_tuple_type] = STATE(2790), + [sym_named_tuple_type] = STATE(2790), + [sym_generic_instance_type] = STATE(2790), + [sym_nilable_type] = STATE(2790), + [sym_pointer_type] = STATE(2790), + [sym_static_array_type] = STATE(2790), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_RPAREN] = ACTIONS(4362), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4362), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_RBRACK] = ACTIONS(4362), + [anon_sym_EQ_GT] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5119), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5103), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [sym_self] = ACTIONS(5105), + [sym_underscore_type] = ACTIONS(5105), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_COLON2] = ACTIONS(4360), + [anon_sym_do] = ACTIONS(4362), + [anon_sym_else] = ACTIONS(4362), + [anon_sym_when] = ACTIONS(4362), + [anon_sym_in] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4362), + [sym__start_of_tuple_type] = ACTIONS(5107), + [sym__start_of_named_tuple_type] = ACTIONS(5109), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2176] = { [sym_heredoc_body] = STATE(2176), - [sym_typeof] = STATE(3166), - [sym_constant] = STATE(2803), - [sym__type] = STATE(2832), - [sym_class_type] = STATE(3166), - [sym_union_type] = STATE(3166), - [sym__parenthesized_type] = STATE(3166), - [sym_no_args_proc_type] = STATE(3166), - [sym_parenthesized_proc_type] = STATE(3166), - [sym_tuple_type] = STATE(3166), - [sym_named_tuple_type] = STATE(3166), - [sym_generic_instance_type] = STATE(3166), - [sym_nilable_type] = STATE(3166), - [sym_pointer_type] = STATE(3166), - [sym_static_array_type] = STATE(3166), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(5084), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5086), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5089), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [sym_self] = ACTIONS(5091), - [sym_underscore_type] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_do] = ACTIONS(4375), - [sym__line_break] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4375), - [sym__start_of_tuple_type] = ACTIONS(5093), - [sym__start_of_named_tuple_type] = ACTIONS(5095), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modifier_if_keyword] = ACTIONS(4375), - [sym__modifier_unless_keyword] = ACTIONS(4375), - [sym__modifier_rescue_keyword] = ACTIONS(4375), - [sym__regular_ensure_keyword] = ACTIONS(4375), - [sym__modifier_ensure_keyword] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(2993), + [sym_constant] = STATE(2829), + [sym__type] = STATE(3174), + [sym_class_type] = STATE(2993), + [sym_union_type] = STATE(2993), + [sym__parenthesized_type] = STATE(2993), + [sym_no_args_proc_type] = STATE(2993), + [sym_parenthesized_proc_type] = STATE(2993), + [sym_tuple_type] = STATE(2993), + [sym_named_tuple_type] = STATE(2993), + [sym_generic_instance_type] = STATE(2993), + [sym_nilable_type] = STATE(2993), + [sym_pointer_type] = STATE(2993), + [sym_static_array_type] = STATE(2993), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(5121), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5123), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5125), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [sym_self] = ACTIONS(5127), + [sym_underscore_type] = ACTIONS(5127), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_do] = ACTIONS(4390), + [sym__line_break] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4390), + [sym__start_of_tuple_type] = ACTIONS(5129), + [sym__start_of_named_tuple_type] = ACTIONS(5131), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modifier_if_keyword] = ACTIONS(4390), + [sym__modifier_unless_keyword] = ACTIONS(4390), + [sym__modifier_rescue_keyword] = ACTIONS(4390), + [sym__regular_ensure_keyword] = ACTIONS(4390), + [sym__modifier_ensure_keyword] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2177] = { [sym_heredoc_body] = STATE(2177), - [sym_typeof] = STATE(2978), - [sym_constant] = STATE(2865), - [sym__type] = STATE(2806), - [sym_class_type] = STATE(2978), - [sym_union_type] = STATE(2978), - [sym__parenthesized_type] = STATE(2978), - [sym_no_args_proc_type] = STATE(2978), - [sym_parenthesized_proc_type] = STATE(2978), - [sym_tuple_type] = STATE(2978), - [sym_named_tuple_type] = STATE(2978), - [sym_generic_instance_type] = STATE(2978), - [sym_nilable_type] = STATE(2978), - [sym_pointer_type] = STATE(2978), - [sym_static_array_type] = STATE(2978), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(5097), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5099), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5102), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [sym_self] = ACTIONS(5104), - [sym_underscore_type] = ACTIONS(5104), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_else] = ACTIONS(4375), - [sym__line_break] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5106), - [sym__start_of_named_tuple_type] = ACTIONS(5108), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modifier_if_keyword] = ACTIONS(4375), - [sym__modifier_unless_keyword] = ACTIONS(4375), - [sym__regular_rescue_keyword] = ACTIONS(4375), - [sym__modifier_rescue_keyword] = ACTIONS(4375), - [sym__regular_ensure_keyword] = ACTIONS(4375), - [sym__modifier_ensure_keyword] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(2897), + [sym_constant] = STATE(2784), + [sym__type] = STATE(3076), + [sym_class_type] = STATE(2897), + [sym_union_type] = STATE(2897), + [sym__parenthesized_type] = STATE(2897), + [sym_no_args_proc_type] = STATE(2897), + [sym_parenthesized_proc_type] = STATE(2897), + [sym_tuple_type] = STATE(2897), + [sym_named_tuple_type] = STATE(2897), + [sym_generic_instance_type] = STATE(2897), + [sym_nilable_type] = STATE(2897), + [sym_pointer_type] = STATE(2897), + [sym_static_array_type] = STATE(2897), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(5133), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5135), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5137), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [sym_self] = ACTIONS(5139), + [sym_underscore_type] = ACTIONS(5139), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4412), + [sym__line_break] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5141), + [sym__start_of_named_tuple_type] = ACTIONS(5143), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modifier_if_keyword] = ACTIONS(4412), + [sym__modifier_unless_keyword] = ACTIONS(4412), + [sym__regular_rescue_keyword] = ACTIONS(4412), + [sym__modifier_rescue_keyword] = ACTIONS(4412), + [sym__regular_ensure_keyword] = ACTIONS(4412), + [sym__modifier_ensure_keyword] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2178] = { [sym_heredoc_body] = STATE(2178), - [sym_typeof] = STATE(2592), - [sym_constant] = STATE(2488), - [sym__type] = STATE(2640), - [sym_class_type] = STATE(2592), - [sym_union_type] = STATE(2592), - [sym__parenthesized_type] = STATE(2592), - [sym_no_args_proc_type] = STATE(2592), - [sym_parenthesized_proc_type] = STATE(2592), - [sym_tuple_type] = STATE(2592), - [sym_named_tuple_type] = STATE(2592), - [sym_generic_instance_type] = STATE(2592), - [sym_nilable_type] = STATE(2592), - [sym_pointer_type] = STATE(2592), - [sym_static_array_type] = STATE(2592), - [anon_sym_SEMI] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(5038), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4409), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4409), - [anon_sym_DASH_GT] = ACTIONS(5040), - [anon_sym_end] = ACTIONS(4409), - [anon_sym_LT] = ACTIONS(4407), - [anon_sym_PIPE] = ACTIONS(4407), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym_GT_GT] = ACTIONS(4409), - [anon_sym_LT_LT] = ACTIONS(4409), - [anon_sym_EQ_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ_GT] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), - [anon_sym_BANG_TILDE] = ACTIONS(4409), - [anon_sym_EQ_TILDE] = ACTIONS(4409), - [anon_sym_AMP_STAR] = ACTIONS(4407), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4409), - [anon_sym_DOT] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4407), - [anon_sym_typeof] = ACTIONS(5042), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [sym_self] = ACTIONS(5044), - [sym_underscore_type] = ACTIONS(5044), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_AMP_AMP] = ACTIONS(4409), - [anon_sym_PIPE_PIPE] = ACTIONS(4409), - [anon_sym_do] = ACTIONS(4409), - [anon_sym_else] = ACTIONS(4409), - [sym__line_break] = ACTIONS(4409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4409), - [sym__start_of_tuple_type] = ACTIONS(5046), - [sym__start_of_named_tuple_type] = ACTIONS(5048), - [sym__start_of_index_operator] = ACTIONS(4409), - [sym_binary_plus] = ACTIONS(4409), - [sym_binary_minus] = ACTIONS(4409), - [sym_binary_wrapping_plus] = ACTIONS(4409), - [sym_binary_wrapping_minus] = ACTIONS(4409), - [sym__binary_star] = ACTIONS(4409), - [sym__binary_double_star] = ACTIONS(4409), - [sym_binary_ampersand] = ACTIONS(4409), - [sym__binary_slash] = ACTIONS(4409), - [sym__binary_double_slash] = ACTIONS(4409), - [sym__modifier_if_keyword] = ACTIONS(4409), - [sym__modifier_unless_keyword] = ACTIONS(4409), - [sym__regular_rescue_keyword] = ACTIONS(4409), - [sym__modifier_rescue_keyword] = ACTIONS(4409), - [sym__regular_ensure_keyword] = ACTIONS(4409), - [sym__modifier_ensure_keyword] = ACTIONS(4409), - [sym__modulo_operator] = ACTIONS(4409), + [sym_typeof] = STATE(2943), + [sym_constant] = STATE(2804), + [sym__type] = STATE(2827), + [sym_class_type] = STATE(2943), + [sym_union_type] = STATE(2943), + [sym__parenthesized_type] = STATE(2943), + [sym_no_args_proc_type] = STATE(2943), + [sym_parenthesized_proc_type] = STATE(2943), + [sym_tuple_type] = STATE(2943), + [sym_named_tuple_type] = STATE(2943), + [sym_generic_instance_type] = STATE(2943), + [sym_nilable_type] = STATE(2943), + [sym_pointer_type] = STATE(2943), + [sym_static_array_type] = STATE(2943), + [anon_sym_LPAREN] = ACTIONS(5145), + [anon_sym_RPAREN] = ACTIONS(4390), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_RBRACK] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5147), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5150), + [sym__constant_segment] = ACTIONS(5152), + [anon_sym_COLON_COLON] = ACTIONS(5154), + [sym_self] = ACTIONS(5156), + [sym_underscore_type] = ACTIONS(5156), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_COLON2] = ACTIONS(4388), + [anon_sym_do] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4390), + [sym__start_of_tuple_type] = ACTIONS(5158), + [sym__start_of_named_tuple_type] = ACTIONS(5160), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2179] = { [sym_heredoc_body] = STATE(2179), - [sym_typeof] = STATE(2978), - [sym_constant] = STATE(2865), - [sym__type] = STATE(2789), - [sym_class_type] = STATE(2978), - [sym_union_type] = STATE(2978), - [sym__parenthesized_type] = STATE(2978), - [sym_no_args_proc_type] = STATE(2978), - [sym_parenthesized_proc_type] = STATE(2978), - [sym_tuple_type] = STATE(2978), - [sym_named_tuple_type] = STATE(2978), - [sym_generic_instance_type] = STATE(2978), - [sym_nilable_type] = STATE(2978), - [sym_pointer_type] = STATE(2978), - [sym_static_array_type] = STATE(2978), - [anon_sym_SEMI] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(5097), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5110), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5102), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [sym_self] = ACTIONS(5104), - [sym_underscore_type] = ACTIONS(5104), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_else] = ACTIONS(4325), - [sym__line_break] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5106), - [sym__start_of_named_tuple_type] = ACTIONS(5108), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modifier_if_keyword] = ACTIONS(4325), - [sym__modifier_unless_keyword] = ACTIONS(4325), - [sym__regular_rescue_keyword] = ACTIONS(4325), - [sym__modifier_rescue_keyword] = ACTIONS(4325), - [sym__regular_ensure_keyword] = ACTIONS(4325), - [sym__modifier_ensure_keyword] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(2993), + [sym_constant] = STATE(2829), + [sym__type] = STATE(3175), + [sym_class_type] = STATE(2993), + [sym_union_type] = STATE(2993), + [sym__parenthesized_type] = STATE(2993), + [sym_no_args_proc_type] = STATE(2993), + [sym_parenthesized_proc_type] = STATE(2993), + [sym_tuple_type] = STATE(2993), + [sym_named_tuple_type] = STATE(2993), + [sym_generic_instance_type] = STATE(2993), + [sym_nilable_type] = STATE(2993), + [sym_pointer_type] = STATE(2993), + [sym_static_array_type] = STATE(2993), + [anon_sym_SEMI] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(5121), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5123), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5125), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [sym_self] = ACTIONS(5127), + [sym_underscore_type] = ACTIONS(5127), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_do] = ACTIONS(4362), + [sym__line_break] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4362), + [sym__start_of_tuple_type] = ACTIONS(5129), + [sym__start_of_named_tuple_type] = ACTIONS(5131), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modifier_if_keyword] = ACTIONS(4362), + [sym__modifier_unless_keyword] = ACTIONS(4362), + [sym__modifier_rescue_keyword] = ACTIONS(4362), + [sym__regular_ensure_keyword] = ACTIONS(4362), + [sym__modifier_ensure_keyword] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2180] = { [sym_heredoc_body] = STATE(2180), - [sym_typeof] = STATE(2592), - [sym_constant] = STATE(2488), - [sym__type] = STATE(2643), - [sym_class_type] = STATE(2592), - [sym_union_type] = STATE(2592), - [sym__parenthesized_type] = STATE(2592), - [sym_no_args_proc_type] = STATE(2592), - [sym_parenthesized_proc_type] = STATE(2592), - [sym_tuple_type] = STATE(2592), - [sym_named_tuple_type] = STATE(2592), - [sym_generic_instance_type] = STATE(2592), - [sym_nilable_type] = STATE(2592), - [sym_pointer_type] = STATE(2592), - [sym_static_array_type] = STATE(2592), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(5038), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(5040), - [anon_sym_end] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_PIPE] = ACTIONS(4429), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ_GT] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_BANG_TILDE] = ACTIONS(4431), - [anon_sym_EQ_TILDE] = ACTIONS(4431), - [anon_sym_AMP_STAR] = ACTIONS(4429), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_typeof] = ACTIONS(5042), - [sym__constant_segment] = ACTIONS(2739), - [anon_sym_COLON_COLON] = ACTIONS(313), - [sym_self] = ACTIONS(5044), - [sym_underscore_type] = ACTIONS(5044), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_do] = ACTIONS(4431), - [anon_sym_else] = ACTIONS(4431), - [sym__line_break] = ACTIONS(4431), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4431), - [sym__start_of_tuple_type] = ACTIONS(5046), - [sym__start_of_named_tuple_type] = ACTIONS(5048), - [sym__start_of_index_operator] = ACTIONS(4431), - [sym_binary_plus] = ACTIONS(4431), - [sym_binary_minus] = ACTIONS(4431), - [sym_binary_wrapping_plus] = ACTIONS(4431), - [sym_binary_wrapping_minus] = ACTIONS(4431), - [sym__binary_star] = ACTIONS(4431), - [sym__binary_double_star] = ACTIONS(4431), - [sym_binary_ampersand] = ACTIONS(4431), - [sym__binary_slash] = ACTIONS(4431), - [sym__binary_double_slash] = ACTIONS(4431), - [sym__modifier_if_keyword] = ACTIONS(4431), - [sym__modifier_unless_keyword] = ACTIONS(4431), - [sym__regular_rescue_keyword] = ACTIONS(4431), - [sym__modifier_rescue_keyword] = ACTIONS(4431), - [sym__regular_ensure_keyword] = ACTIONS(4431), - [sym__modifier_ensure_keyword] = ACTIONS(4431), - [sym__modulo_operator] = ACTIONS(4431), + [sym_typeof] = STATE(2943), + [sym_constant] = STATE(2804), + [sym__type] = STATE(2828), + [sym_class_type] = STATE(2943), + [sym_union_type] = STATE(2943), + [sym__parenthesized_type] = STATE(2943), + [sym_no_args_proc_type] = STATE(2943), + [sym_parenthesized_proc_type] = STATE(2943), + [sym_tuple_type] = STATE(2943), + [sym_named_tuple_type] = STATE(2943), + [sym_generic_instance_type] = STATE(2943), + [sym_nilable_type] = STATE(2943), + [sym_pointer_type] = STATE(2943), + [sym_static_array_type] = STATE(2943), + [anon_sym_LPAREN] = ACTIONS(5145), + [anon_sym_RPAREN] = ACTIONS(4362), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4362), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_RBRACK] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5162), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5150), + [sym__constant_segment] = ACTIONS(5152), + [anon_sym_COLON_COLON] = ACTIONS(5154), + [sym_self] = ACTIONS(5156), + [sym_underscore_type] = ACTIONS(5156), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_COLON2] = ACTIONS(4360), + [anon_sym_do] = ACTIONS(4362), + [anon_sym_else] = ACTIONS(4362), + [anon_sym_when] = ACTIONS(4362), + [anon_sym_in] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4362), + [sym__start_of_tuple_type] = ACTIONS(5158), + [sym__start_of_named_tuple_type] = ACTIONS(5160), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2181] = { [sym_heredoc_body] = STATE(2181), - [sym_typeof] = STATE(3092), - [sym_constant] = STATE(2834), - [sym__type] = STATE(2805), - [sym_class_type] = STATE(3092), - [sym_union_type] = STATE(3092), - [sym__parenthesized_type] = STATE(3092), - [sym_no_args_proc_type] = STATE(3092), - [sym_parenthesized_proc_type] = STATE(3092), - [sym_tuple_type] = STATE(3092), - [sym_named_tuple_type] = STATE(3092), - [sym_generic_instance_type] = STATE(3092), - [sym_nilable_type] = STATE(3092), - [sym_pointer_type] = STATE(3092), - [sym_static_array_type] = STATE(3092), - [anon_sym_LPAREN] = ACTIONS(5113), - [anon_sym_RPAREN] = ACTIONS(4325), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_RBRACK] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5115), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5118), - [sym__constant_segment] = ACTIONS(5120), - [anon_sym_COLON_COLON] = ACTIONS(5122), - [sym_self] = ACTIONS(5124), - [sym_underscore_type] = ACTIONS(5124), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_COLON2] = ACTIONS(4323), - [anon_sym_do] = ACTIONS(4325), - [anon_sym_else] = ACTIONS(4325), - [anon_sym_when] = ACTIONS(4325), - [anon_sym_in] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4325), - [sym__start_of_tuple_type] = ACTIONS(5126), - [sym__start_of_named_tuple_type] = ACTIONS(5128), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(2993), + [sym_constant] = STATE(2829), + [sym__type] = STATE(3171), + [sym_class_type] = STATE(2993), + [sym_union_type] = STATE(2993), + [sym__parenthesized_type] = STATE(2993), + [sym_no_args_proc_type] = STATE(2993), + [sym_parenthesized_proc_type] = STATE(2993), + [sym_tuple_type] = STATE(2993), + [sym_named_tuple_type] = STATE(2993), + [sym_generic_instance_type] = STATE(2993), + [sym_nilable_type] = STATE(2993), + [sym_pointer_type] = STATE(2993), + [sym_static_array_type] = STATE(2993), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(5121), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5123), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5125), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [sym_self] = ACTIONS(5127), + [sym_underscore_type] = ACTIONS(5127), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_do] = ACTIONS(4412), + [sym__line_break] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4412), + [sym__start_of_tuple_type] = ACTIONS(5129), + [sym__start_of_named_tuple_type] = ACTIONS(5131), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modifier_if_keyword] = ACTIONS(4412), + [sym__modifier_unless_keyword] = ACTIONS(4412), + [sym__modifier_rescue_keyword] = ACTIONS(4412), + [sym__regular_ensure_keyword] = ACTIONS(4412), + [sym__modifier_ensure_keyword] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2182] = { [sym_heredoc_body] = STATE(2182), - [sym_typeof] = STATE(3092), - [sym_constant] = STATE(2834), - [sym__type] = STATE(2793), - [sym_class_type] = STATE(3092), - [sym_union_type] = STATE(3092), - [sym__parenthesized_type] = STATE(3092), - [sym_no_args_proc_type] = STATE(3092), - [sym_parenthesized_proc_type] = STATE(3092), - [sym_tuple_type] = STATE(3092), - [sym_named_tuple_type] = STATE(3092), - [sym_generic_instance_type] = STATE(3092), - [sym_nilable_type] = STATE(3092), - [sym_pointer_type] = STATE(3092), - [sym_static_array_type] = STATE(3092), - [anon_sym_LPAREN] = ACTIONS(5113), - [anon_sym_RPAREN] = ACTIONS(4353), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RBRACK] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5130), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5118), - [sym__constant_segment] = ACTIONS(5120), - [anon_sym_COLON_COLON] = ACTIONS(5122), - [sym_self] = ACTIONS(5124), - [sym_underscore_type] = ACTIONS(5124), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_COLON2] = ACTIONS(4351), - [anon_sym_do] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4353), - [anon_sym_when] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4353), - [sym__start_of_tuple_type] = ACTIONS(5126), - [sym__start_of_named_tuple_type] = ACTIONS(5128), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(2993), + [sym_constant] = STATE(2829), + [sym__type] = STATE(2838), + [sym_class_type] = STATE(2993), + [sym_union_type] = STATE(2993), + [sym__parenthesized_type] = STATE(2993), + [sym_no_args_proc_type] = STATE(2993), + [sym_parenthesized_proc_type] = STATE(2993), + [sym_tuple_type] = STATE(2993), + [sym_named_tuple_type] = STATE(2993), + [sym_generic_instance_type] = STATE(2993), + [sym_nilable_type] = STATE(2993), + [sym_pointer_type] = STATE(2993), + [sym_static_array_type] = STATE(2993), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(5165), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5167), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5125), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [sym_self] = ACTIONS(5127), + [sym_underscore_type] = ACTIONS(5127), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_do] = ACTIONS(4390), + [sym__line_break] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4390), + [sym__start_of_tuple_type] = ACTIONS(5129), + [sym__start_of_named_tuple_type] = ACTIONS(5131), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modifier_if_keyword] = ACTIONS(4390), + [sym__modifier_unless_keyword] = ACTIONS(4390), + [sym__modifier_rescue_keyword] = ACTIONS(4390), + [sym__regular_ensure_keyword] = ACTIONS(4390), + [sym__modifier_ensure_keyword] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2183] = { [sym_heredoc_body] = STATE(2183), - [sym_typeof] = STATE(3092), - [sym_constant] = STATE(2834), - [sym__type] = STATE(2797), - [sym_class_type] = STATE(3092), - [sym_union_type] = STATE(3092), - [sym__parenthesized_type] = STATE(3092), - [sym_no_args_proc_type] = STATE(3092), - [sym_parenthesized_proc_type] = STATE(3092), - [sym_tuple_type] = STATE(3092), - [sym_named_tuple_type] = STATE(3092), - [sym_generic_instance_type] = STATE(3092), - [sym_nilable_type] = STATE(3092), - [sym_pointer_type] = STATE(3092), - [sym_static_array_type] = STATE(3092), - [anon_sym_LPAREN] = ACTIONS(5113), - [anon_sym_RPAREN] = ACTIONS(4375), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_RBRACK] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5133), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5118), - [sym__constant_segment] = ACTIONS(5120), - [anon_sym_COLON_COLON] = ACTIONS(5122), - [sym_self] = ACTIONS(5124), - [sym_underscore_type] = ACTIONS(5124), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_COLON2] = ACTIONS(4373), - [anon_sym_do] = ACTIONS(4375), - [anon_sym_else] = ACTIONS(4375), - [anon_sym_when] = ACTIONS(4375), - [anon_sym_in] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4375), - [sym__start_of_tuple_type] = ACTIONS(5126), - [sym__start_of_named_tuple_type] = ACTIONS(5128), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(2943), + [sym_constant] = STATE(2804), + [sym__type] = STATE(3170), + [sym_class_type] = STATE(2943), + [sym_union_type] = STATE(2943), + [sym__parenthesized_type] = STATE(2943), + [sym_no_args_proc_type] = STATE(2943), + [sym_parenthesized_proc_type] = STATE(2943), + [sym_tuple_type] = STATE(2943), + [sym_named_tuple_type] = STATE(2943), + [sym_generic_instance_type] = STATE(2943), + [sym_nilable_type] = STATE(2943), + [sym_pointer_type] = STATE(2943), + [sym_static_array_type] = STATE(2943), + [anon_sym_LPAREN] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(4362), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4362), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_RBRACK] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5172), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5150), + [sym__constant_segment] = ACTIONS(5152), + [anon_sym_COLON_COLON] = ACTIONS(5154), + [sym_self] = ACTIONS(5156), + [sym_underscore_type] = ACTIONS(5156), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_COLON2] = ACTIONS(4360), + [anon_sym_do] = ACTIONS(4362), + [anon_sym_else] = ACTIONS(4362), + [anon_sym_when] = ACTIONS(4362), + [anon_sym_in] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4362), + [sym__start_of_tuple_type] = ACTIONS(5158), + [sym__start_of_named_tuple_type] = ACTIONS(5160), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2184] = { [sym_heredoc_body] = STATE(2184), - [sym_typeof] = STATE(3166), - [sym_constant] = STATE(2803), - [sym__type] = STATE(3086), - [sym_class_type] = STATE(3166), - [sym_union_type] = STATE(3166), - [sym__parenthesized_type] = STATE(3166), - [sym_no_args_proc_type] = STATE(3166), - [sym_parenthesized_proc_type] = STATE(3166), - [sym_tuple_type] = STATE(3166), - [sym_named_tuple_type] = STATE(3166), - [sym_generic_instance_type] = STATE(3166), - [sym_nilable_type] = STATE(3166), - [sym_pointer_type] = STATE(3166), - [sym_static_array_type] = STATE(3166), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5136), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5138), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5089), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [sym_self] = ACTIONS(5091), - [sym_underscore_type] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_do] = ACTIONS(4353), - [sym__line_break] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4353), - [sym__start_of_tuple_type] = ACTIONS(5093), - [sym__start_of_named_tuple_type] = ACTIONS(5095), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modifier_if_keyword] = ACTIONS(4353), - [sym__modifier_unless_keyword] = ACTIONS(4353), - [sym__modifier_rescue_keyword] = ACTIONS(4353), - [sym__regular_ensure_keyword] = ACTIONS(4353), - [sym__modifier_ensure_keyword] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(2943), + [sym_constant] = STATE(2804), + [sym__type] = STATE(2807), + [sym_class_type] = STATE(2943), + [sym_union_type] = STATE(2943), + [sym__parenthesized_type] = STATE(2943), + [sym_no_args_proc_type] = STATE(2943), + [sym_parenthesized_proc_type] = STATE(2943), + [sym_tuple_type] = STATE(2943), + [sym_named_tuple_type] = STATE(2943), + [sym_generic_instance_type] = STATE(2943), + [sym_nilable_type] = STATE(2943), + [sym_pointer_type] = STATE(2943), + [sym_static_array_type] = STATE(2943), + [anon_sym_LPAREN] = ACTIONS(5145), + [anon_sym_RPAREN] = ACTIONS(4412), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_RBRACK] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5174), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5150), + [sym__constant_segment] = ACTIONS(5152), + [anon_sym_COLON_COLON] = ACTIONS(5154), + [sym_self] = ACTIONS(5156), + [sym_underscore_type] = ACTIONS(5156), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_COLON2] = ACTIONS(4410), + [anon_sym_do] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_when] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4412), + [sym__start_of_tuple_type] = ACTIONS(5158), + [sym__start_of_named_tuple_type] = ACTIONS(5160), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2185] = { [sym_heredoc_body] = STATE(2185), - [sym_typeof] = STATE(2978), - [sym_constant] = STATE(2865), - [sym__type] = STATE(2923), - [sym_class_type] = STATE(2978), - [sym_union_type] = STATE(2978), - [sym__parenthesized_type] = STATE(2978), - [sym_no_args_proc_type] = STATE(2978), - [sym_parenthesized_proc_type] = STATE(2978), - [sym_tuple_type] = STATE(2978), - [sym_named_tuple_type] = STATE(2978), - [sym_generic_instance_type] = STATE(2978), - [sym_nilable_type] = STATE(2978), - [sym_pointer_type] = STATE(2978), - [sym_static_array_type] = STATE(2978), - [anon_sym_SEMI] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(5140), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5142), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5102), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [sym_self] = ACTIONS(5104), - [sym_underscore_type] = ACTIONS(5104), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_else] = ACTIONS(4325), - [sym__line_break] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5106), - [sym__start_of_named_tuple_type] = ACTIONS(5108), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modifier_if_keyword] = ACTIONS(4325), - [sym__modifier_unless_keyword] = ACTIONS(4325), - [sym__regular_rescue_keyword] = ACTIONS(4325), - [sym__modifier_rescue_keyword] = ACTIONS(4325), - [sym__regular_ensure_keyword] = ACTIONS(4325), - [sym__modifier_ensure_keyword] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(2993), + [sym_constant] = STATE(2829), + [sym__type] = STATE(2831), + [sym_class_type] = STATE(2993), + [sym_union_type] = STATE(2993), + [sym__parenthesized_type] = STATE(2993), + [sym_no_args_proc_type] = STATE(2993), + [sym_parenthesized_proc_type] = STATE(2993), + [sym_tuple_type] = STATE(2993), + [sym_named_tuple_type] = STATE(2993), + [sym_generic_instance_type] = STATE(2993), + [sym_nilable_type] = STATE(2993), + [sym_pointer_type] = STATE(2993), + [sym_static_array_type] = STATE(2993), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(5165), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5177), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5125), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [sym_self] = ACTIONS(5127), + [sym_underscore_type] = ACTIONS(5127), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_do] = ACTIONS(4412), + [sym__line_break] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4412), + [sym__start_of_tuple_type] = ACTIONS(5129), + [sym__start_of_named_tuple_type] = ACTIONS(5131), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modifier_if_keyword] = ACTIONS(4412), + [sym__modifier_unless_keyword] = ACTIONS(4412), + [sym__modifier_rescue_keyword] = ACTIONS(4412), + [sym__regular_ensure_keyword] = ACTIONS(4412), + [sym__modifier_ensure_keyword] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2186] = { [sym_heredoc_body] = STATE(2186), - [sym_typeof] = STATE(2978), - [sym_constant] = STATE(2865), - [sym__type] = STATE(3180), - [sym_class_type] = STATE(2978), - [sym_union_type] = STATE(2978), - [sym__parenthesized_type] = STATE(2978), - [sym_no_args_proc_type] = STATE(2978), - [sym_parenthesized_proc_type] = STATE(2978), - [sym_tuple_type] = STATE(2978), - [sym_named_tuple_type] = STATE(2978), - [sym_generic_instance_type] = STATE(2978), - [sym_nilable_type] = STATE(2978), - [sym_pointer_type] = STATE(2978), - [sym_static_array_type] = STATE(2978), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5140), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5142), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5102), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [sym_self] = ACTIONS(5104), - [sym_underscore_type] = ACTIONS(5104), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4353), - [sym__line_break] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5106), - [sym__start_of_named_tuple_type] = ACTIONS(5108), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modifier_if_keyword] = ACTIONS(4353), - [sym__modifier_unless_keyword] = ACTIONS(4353), - [sym__regular_rescue_keyword] = ACTIONS(4353), - [sym__modifier_rescue_keyword] = ACTIONS(4353), - [sym__regular_ensure_keyword] = ACTIONS(4353), - [sym__modifier_ensure_keyword] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(2897), + [sym_constant] = STATE(2784), + [sym__type] = STATE(2786), + [sym_class_type] = STATE(2897), + [sym_union_type] = STATE(2897), + [sym__parenthesized_type] = STATE(2897), + [sym_no_args_proc_type] = STATE(2897), + [sym_parenthesized_proc_type] = STATE(2897), + [sym_tuple_type] = STATE(2897), + [sym_named_tuple_type] = STATE(2897), + [sym_generic_instance_type] = STATE(2897), + [sym_nilable_type] = STATE(2897), + [sym_pointer_type] = STATE(2897), + [sym_static_array_type] = STATE(2897), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(5180), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5182), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5137), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [sym_self] = ACTIONS(5139), + [sym_underscore_type] = ACTIONS(5139), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4412), + [sym__line_break] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5141), + [sym__start_of_named_tuple_type] = ACTIONS(5143), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modifier_if_keyword] = ACTIONS(4412), + [sym__modifier_unless_keyword] = ACTIONS(4412), + [sym__regular_rescue_keyword] = ACTIONS(4412), + [sym__modifier_rescue_keyword] = ACTIONS(4412), + [sym__regular_ensure_keyword] = ACTIONS(4412), + [sym__modifier_ensure_keyword] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2187] = { [sym_heredoc_body] = STATE(2187), - [sym_typeof] = STATE(2978), - [sym_constant] = STATE(2865), - [sym__type] = STATE(2881), - [sym_class_type] = STATE(2978), - [sym_union_type] = STATE(2978), - [sym__parenthesized_type] = STATE(2978), - [sym_no_args_proc_type] = STATE(2978), - [sym_parenthesized_proc_type] = STATE(2978), - [sym_tuple_type] = STATE(2978), - [sym_named_tuple_type] = STATE(2978), - [sym_generic_instance_type] = STATE(2978), - [sym_nilable_type] = STATE(2978), - [sym_pointer_type] = STATE(2978), - [sym_static_array_type] = STATE(2978), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(5140), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5142), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5102), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [sym_self] = ACTIONS(5104), - [sym_underscore_type] = ACTIONS(5104), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_else] = ACTIONS(4375), - [sym__line_break] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5106), - [sym__start_of_named_tuple_type] = ACTIONS(5108), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modifier_if_keyword] = ACTIONS(4375), - [sym__modifier_unless_keyword] = ACTIONS(4375), - [sym__regular_rescue_keyword] = ACTIONS(4375), - [sym__modifier_rescue_keyword] = ACTIONS(4375), - [sym__regular_ensure_keyword] = ACTIONS(4375), - [sym__modifier_ensure_keyword] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(2897), + [sym_constant] = STATE(2784), + [sym__type] = STATE(2812), + [sym_class_type] = STATE(2897), + [sym_union_type] = STATE(2897), + [sym__parenthesized_type] = STATE(2897), + [sym_no_args_proc_type] = STATE(2897), + [sym_parenthesized_proc_type] = STATE(2897), + [sym_tuple_type] = STATE(2897), + [sym_named_tuple_type] = STATE(2897), + [sym_generic_instance_type] = STATE(2897), + [sym_nilable_type] = STATE(2897), + [sym_pointer_type] = STATE(2897), + [sym_static_array_type] = STATE(2897), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(5180), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5185), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5137), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [sym_self] = ACTIONS(5139), + [sym_underscore_type] = ACTIONS(5139), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [sym__line_break] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5141), + [sym__start_of_named_tuple_type] = ACTIONS(5143), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modifier_if_keyword] = ACTIONS(4390), + [sym__modifier_unless_keyword] = ACTIONS(4390), + [sym__regular_rescue_keyword] = ACTIONS(4390), + [sym__modifier_rescue_keyword] = ACTIONS(4390), + [sym__regular_ensure_keyword] = ACTIONS(4390), + [sym__modifier_ensure_keyword] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2188] = { [sym_heredoc_body] = STATE(2188), - [sym_typeof] = STATE(3166), - [sym_constant] = STATE(2803), - [sym__type] = STATE(2840), - [sym_class_type] = STATE(3166), - [sym_union_type] = STATE(3166), - [sym__parenthesized_type] = STATE(3166), - [sym_no_args_proc_type] = STATE(3166), - [sym_parenthesized_proc_type] = STATE(3166), - [sym_tuple_type] = STATE(3166), - [sym_named_tuple_type] = STATE(3166), - [sym_generic_instance_type] = STATE(3166), - [sym_nilable_type] = STATE(3166), - [sym_pointer_type] = STATE(3166), - [sym_static_array_type] = STATE(3166), - [anon_sym_SEMI] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(5084), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5144), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5089), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [sym_self] = ACTIONS(5091), - [sym_underscore_type] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_do] = ACTIONS(4325), - [sym__line_break] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4325), - [sym__start_of_tuple_type] = ACTIONS(5093), - [sym__start_of_named_tuple_type] = ACTIONS(5095), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modifier_if_keyword] = ACTIONS(4325), - [sym__modifier_unless_keyword] = ACTIONS(4325), - [sym__modifier_rescue_keyword] = ACTIONS(4325), - [sym__regular_ensure_keyword] = ACTIONS(4325), - [sym__modifier_ensure_keyword] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(2897), + [sym_constant] = STATE(2784), + [sym__type] = STATE(3018), + [sym_class_type] = STATE(2897), + [sym_union_type] = STATE(2897), + [sym__parenthesized_type] = STATE(2897), + [sym_no_args_proc_type] = STATE(2897), + [sym_parenthesized_proc_type] = STATE(2897), + [sym_tuple_type] = STATE(2897), + [sym_named_tuple_type] = STATE(2897), + [sym_generic_instance_type] = STATE(2897), + [sym_nilable_type] = STATE(2897), + [sym_pointer_type] = STATE(2897), + [sym_static_array_type] = STATE(2897), + [anon_sym_SEMI] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(5133), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5135), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5137), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [sym_self] = ACTIONS(5139), + [sym_underscore_type] = ACTIONS(5139), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_else] = ACTIONS(4362), + [sym__line_break] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5141), + [sym__start_of_named_tuple_type] = ACTIONS(5143), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modifier_if_keyword] = ACTIONS(4362), + [sym__modifier_unless_keyword] = ACTIONS(4362), + [sym__regular_rescue_keyword] = ACTIONS(4362), + [sym__modifier_rescue_keyword] = ACTIONS(4362), + [sym__regular_ensure_keyword] = ACTIONS(4362), + [sym__modifier_ensure_keyword] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2189] = { [sym_heredoc_body] = STATE(2189), - [sym_typeof] = STATE(3166), - [sym_constant] = STATE(2803), - [sym__type] = STATE(2830), - [sym_class_type] = STATE(3166), - [sym_union_type] = STATE(3166), - [sym__parenthesized_type] = STATE(3166), - [sym_no_args_proc_type] = STATE(3166), - [sym_parenthesized_proc_type] = STATE(3166), - [sym_tuple_type] = STATE(3166), - [sym_named_tuple_type] = STATE(3166), - [sym_generic_instance_type] = STATE(3166), - [sym_nilable_type] = STATE(3166), - [sym_pointer_type] = STATE(3166), - [sym_static_array_type] = STATE(3166), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5084), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5147), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5089), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [sym_self] = ACTIONS(5091), - [sym_underscore_type] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_do] = ACTIONS(4353), - [sym__line_break] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4353), - [sym__start_of_tuple_type] = ACTIONS(5093), - [sym__start_of_named_tuple_type] = ACTIONS(5095), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modifier_if_keyword] = ACTIONS(4353), - [sym__modifier_unless_keyword] = ACTIONS(4353), - [sym__modifier_rescue_keyword] = ACTIONS(4353), - [sym__regular_ensure_keyword] = ACTIONS(4353), - [sym__modifier_ensure_keyword] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(2692), + [sym_constant] = STATE(2522), + [sym__type] = STATE(2659), + [sym_class_type] = STATE(2692), + [sym_union_type] = STATE(2692), + [sym__parenthesized_type] = STATE(2692), + [sym_no_args_proc_type] = STATE(2692), + [sym_parenthesized_proc_type] = STATE(2692), + [sym_tuple_type] = STATE(2692), + [sym_named_tuple_type] = STATE(2692), + [sym_generic_instance_type] = STATE(2692), + [sym_nilable_type] = STATE(2692), + [sym_pointer_type] = STATE(2692), + [sym_static_array_type] = STATE(2692), + [anon_sym_SEMI] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(5075), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4468), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4468), + [anon_sym_DASH_GT] = ACTIONS(5077), + [anon_sym_end] = ACTIONS(4468), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_CARET] = ACTIONS(4468), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(4468), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ_GT] = ACTIONS(4468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), + [anon_sym_BANG_TILDE] = ACTIONS(4468), + [anon_sym_EQ_TILDE] = ACTIONS(4468), + [anon_sym_AMP_STAR] = ACTIONS(4466), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(4466), + [anon_sym_typeof] = ACTIONS(5079), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [sym_self] = ACTIONS(5081), + [sym_underscore_type] = ACTIONS(5081), + [anon_sym_QMARK] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(4468), + [anon_sym_do] = ACTIONS(4468), + [anon_sym_else] = ACTIONS(4468), + [sym__line_break] = ACTIONS(4468), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4468), + [sym__start_of_tuple_type] = ACTIONS(5083), + [sym__start_of_named_tuple_type] = ACTIONS(5085), + [sym__start_of_index_operator] = ACTIONS(4468), + [sym_binary_plus] = ACTIONS(4468), + [sym_binary_minus] = ACTIONS(4468), + [sym_binary_wrapping_plus] = ACTIONS(4468), + [sym_binary_wrapping_minus] = ACTIONS(4468), + [sym__binary_star] = ACTIONS(4468), + [sym__binary_double_star] = ACTIONS(4468), + [sym_binary_ampersand] = ACTIONS(4468), + [sym__binary_slash] = ACTIONS(4468), + [sym__binary_double_slash] = ACTIONS(4468), + [sym__modifier_if_keyword] = ACTIONS(4468), + [sym__modifier_unless_keyword] = ACTIONS(4468), + [sym__regular_rescue_keyword] = ACTIONS(4468), + [sym__modifier_rescue_keyword] = ACTIONS(4468), + [sym__regular_ensure_keyword] = ACTIONS(4468), + [sym__modifier_ensure_keyword] = ACTIONS(4468), + [sym__modulo_operator] = ACTIONS(4468), [sym__heredoc_body_start] = ACTIONS(7), }, [2190] = { [sym_heredoc_body] = STATE(2190), - [sym_typeof] = STATE(3166), - [sym_constant] = STATE(2803), - [sym__type] = STATE(3087), - [sym_class_type] = STATE(3166), - [sym_union_type] = STATE(3166), - [sym__parenthesized_type] = STATE(3166), - [sym_no_args_proc_type] = STATE(3166), - [sym_parenthesized_proc_type] = STATE(3166), - [sym_tuple_type] = STATE(3166), - [sym_named_tuple_type] = STATE(3166), - [sym_generic_instance_type] = STATE(3166), - [sym_nilable_type] = STATE(3166), - [sym_pointer_type] = STATE(3166), - [sym_static_array_type] = STATE(3166), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(5136), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5138), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5089), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [sym_self] = ACTIONS(5091), - [sym_underscore_type] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_do] = ACTIONS(4375), - [sym__line_break] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4375), - [sym__start_of_tuple_type] = ACTIONS(5093), - [sym__start_of_named_tuple_type] = ACTIONS(5095), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modifier_if_keyword] = ACTIONS(4375), - [sym__modifier_unless_keyword] = ACTIONS(4375), - [sym__modifier_rescue_keyword] = ACTIONS(4375), - [sym__regular_ensure_keyword] = ACTIONS(4375), - [sym__modifier_ensure_keyword] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(2993), + [sym_constant] = STATE(2829), + [sym__type] = STATE(2839), + [sym_class_type] = STATE(2993), + [sym_union_type] = STATE(2993), + [sym__parenthesized_type] = STATE(2993), + [sym_no_args_proc_type] = STATE(2993), + [sym_parenthesized_proc_type] = STATE(2993), + [sym_tuple_type] = STATE(2993), + [sym_named_tuple_type] = STATE(2993), + [sym_generic_instance_type] = STATE(2993), + [sym_nilable_type] = STATE(2993), + [sym_pointer_type] = STATE(2993), + [sym_static_array_type] = STATE(2993), + [anon_sym_SEMI] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(5165), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5188), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5125), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [sym_self] = ACTIONS(5127), + [sym_underscore_type] = ACTIONS(5127), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_do] = ACTIONS(4362), + [sym__line_break] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4362), + [sym__start_of_tuple_type] = ACTIONS(5129), + [sym__start_of_named_tuple_type] = ACTIONS(5131), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modifier_if_keyword] = ACTIONS(4362), + [sym__modifier_unless_keyword] = ACTIONS(4362), + [sym__modifier_rescue_keyword] = ACTIONS(4362), + [sym__regular_ensure_keyword] = ACTIONS(4362), + [sym__modifier_ensure_keyword] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2191] = { [sym_heredoc_body] = STATE(2191), - [sym_typeof] = STATE(3092), - [sym_constant] = STATE(2834), - [sym__type] = STATE(3070), - [sym_class_type] = STATE(3092), - [sym_union_type] = STATE(3092), - [sym__parenthesized_type] = STATE(3092), - [sym_no_args_proc_type] = STATE(3092), - [sym_parenthesized_proc_type] = STATE(3092), - [sym_tuple_type] = STATE(3092), - [sym_named_tuple_type] = STATE(3092), - [sym_generic_instance_type] = STATE(3092), - [sym_nilable_type] = STATE(3092), - [sym_pointer_type] = STATE(3092), - [sym_static_array_type] = STATE(3092), - [anon_sym_LPAREN] = ACTIONS(5150), - [anon_sym_RPAREN] = ACTIONS(4325), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_RBRACK] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5152), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5118), - [sym__constant_segment] = ACTIONS(5120), - [anon_sym_COLON_COLON] = ACTIONS(5122), - [sym_self] = ACTIONS(5124), - [sym_underscore_type] = ACTIONS(5124), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_COLON2] = ACTIONS(4323), - [anon_sym_do] = ACTIONS(4325), - [anon_sym_else] = ACTIONS(4325), - [anon_sym_when] = ACTIONS(4325), - [anon_sym_in] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4325), - [sym__start_of_tuple_type] = ACTIONS(5126), - [sym__start_of_named_tuple_type] = ACTIONS(5128), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(2692), + [sym_constant] = STATE(2522), + [sym__type] = STATE(2620), + [sym_class_type] = STATE(2692), + [sym_union_type] = STATE(2692), + [sym__parenthesized_type] = STATE(2692), + [sym_no_args_proc_type] = STATE(2692), + [sym_parenthesized_proc_type] = STATE(2692), + [sym_tuple_type] = STATE(2692), + [sym_named_tuple_type] = STATE(2692), + [sym_generic_instance_type] = STATE(2692), + [sym_nilable_type] = STATE(2692), + [sym_pointer_type] = STATE(2692), + [sym_static_array_type] = STATE(2692), + [anon_sym_SEMI] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(5075), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4446), + [anon_sym_DASH_GT] = ACTIONS(5077), + [anon_sym_end] = ACTIONS(4446), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ_GT] = ACTIONS(4446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4446), + [anon_sym_BANG_TILDE] = ACTIONS(4446), + [anon_sym_EQ_TILDE] = ACTIONS(4446), + [anon_sym_AMP_STAR] = ACTIONS(4444), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4444), + [anon_sym_EQ] = ACTIONS(4444), + [anon_sym_typeof] = ACTIONS(5079), + [sym__constant_segment] = ACTIONS(2776), + [anon_sym_COLON_COLON] = ACTIONS(317), + [sym_self] = ACTIONS(5081), + [sym_underscore_type] = ACTIONS(5081), + [anon_sym_QMARK] = ACTIONS(4446), + [anon_sym_AMP_AMP] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4446), + [anon_sym_do] = ACTIONS(4446), + [anon_sym_else] = ACTIONS(4446), + [sym__line_break] = ACTIONS(4446), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4446), + [sym__start_of_tuple_type] = ACTIONS(5083), + [sym__start_of_named_tuple_type] = ACTIONS(5085), + [sym__start_of_index_operator] = ACTIONS(4446), + [sym_binary_plus] = ACTIONS(4446), + [sym_binary_minus] = ACTIONS(4446), + [sym_binary_wrapping_plus] = ACTIONS(4446), + [sym_binary_wrapping_minus] = ACTIONS(4446), + [sym__binary_star] = ACTIONS(4446), + [sym__binary_double_star] = ACTIONS(4446), + [sym_binary_ampersand] = ACTIONS(4446), + [sym__binary_slash] = ACTIONS(4446), + [sym__binary_double_slash] = ACTIONS(4446), + [sym__modifier_if_keyword] = ACTIONS(4446), + [sym__modifier_unless_keyword] = ACTIONS(4446), + [sym__regular_rescue_keyword] = ACTIONS(4446), + [sym__modifier_rescue_keyword] = ACTIONS(4446), + [sym__regular_ensure_keyword] = ACTIONS(4446), + [sym__modifier_ensure_keyword] = ACTIONS(4446), + [sym__modulo_operator] = ACTIONS(4446), [sym__heredoc_body_start] = ACTIONS(7), }, [2192] = { [sym_heredoc_body] = STATE(2192), - [sym_typeof] = STATE(3092), - [sym_constant] = STATE(2834), - [sym__type] = STATE(3080), - [sym_class_type] = STATE(3092), - [sym_union_type] = STATE(3092), - [sym__parenthesized_type] = STATE(3092), - [sym_no_args_proc_type] = STATE(3092), - [sym_parenthesized_proc_type] = STATE(3092), - [sym_tuple_type] = STATE(3092), - [sym_named_tuple_type] = STATE(3092), - [sym_generic_instance_type] = STATE(3092), - [sym_nilable_type] = STATE(3092), - [sym_pointer_type] = STATE(3092), - [sym_static_array_type] = STATE(3092), - [anon_sym_LPAREN] = ACTIONS(5150), - [anon_sym_RPAREN] = ACTIONS(4353), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RBRACK] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5152), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5118), - [sym__constant_segment] = ACTIONS(5120), - [anon_sym_COLON_COLON] = ACTIONS(5122), - [sym_self] = ACTIONS(5124), - [sym_underscore_type] = ACTIONS(5124), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_COLON2] = ACTIONS(4351), - [anon_sym_do] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4353), - [anon_sym_when] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4353), - [sym__start_of_tuple_type] = ACTIONS(5126), - [sym__start_of_named_tuple_type] = ACTIONS(5128), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(2943), + [sym_constant] = STATE(2804), + [sym__type] = STATE(3165), + [sym_class_type] = STATE(2943), + [sym_union_type] = STATE(2943), + [sym__parenthesized_type] = STATE(2943), + [sym_no_args_proc_type] = STATE(2943), + [sym_parenthesized_proc_type] = STATE(2943), + [sym_tuple_type] = STATE(2943), + [sym_named_tuple_type] = STATE(2943), + [sym_generic_instance_type] = STATE(2943), + [sym_nilable_type] = STATE(2943), + [sym_pointer_type] = STATE(2943), + [sym_static_array_type] = STATE(2943), + [anon_sym_LPAREN] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(4412), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_RBRACK] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5172), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5150), + [sym__constant_segment] = ACTIONS(5152), + [anon_sym_COLON_COLON] = ACTIONS(5154), + [sym_self] = ACTIONS(5156), + [sym_underscore_type] = ACTIONS(5156), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_COLON2] = ACTIONS(4410), + [anon_sym_do] = ACTIONS(4412), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_when] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4412), + [sym__start_of_tuple_type] = ACTIONS(5158), + [sym__start_of_named_tuple_type] = ACTIONS(5160), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2193] = { [sym_heredoc_body] = STATE(2193), - [sym_typeof] = STATE(3092), - [sym_constant] = STATE(2834), - [sym__type] = STATE(3081), - [sym_class_type] = STATE(3092), - [sym_union_type] = STATE(3092), - [sym__parenthesized_type] = STATE(3092), - [sym_no_args_proc_type] = STATE(3092), - [sym_parenthesized_proc_type] = STATE(3092), - [sym_tuple_type] = STATE(3092), - [sym_named_tuple_type] = STATE(3092), - [sym_generic_instance_type] = STATE(3092), - [sym_nilable_type] = STATE(3092), - [sym_pointer_type] = STATE(3092), - [sym_static_array_type] = STATE(3092), - [anon_sym_LPAREN] = ACTIONS(5150), - [anon_sym_RPAREN] = ACTIONS(4375), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_RBRACK] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5152), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5118), - [sym__constant_segment] = ACTIONS(5120), - [anon_sym_COLON_COLON] = ACTIONS(5122), - [sym_self] = ACTIONS(5124), - [sym_underscore_type] = ACTIONS(5124), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_COLON2] = ACTIONS(4373), - [anon_sym_do] = ACTIONS(4375), - [anon_sym_else] = ACTIONS(4375), - [anon_sym_when] = ACTIONS(4375), - [anon_sym_in] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4375), - [sym__start_of_tuple_type] = ACTIONS(5126), - [sym__start_of_named_tuple_type] = ACTIONS(5128), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(2897), + [sym_constant] = STATE(2784), + [sym__type] = STATE(3017), + [sym_class_type] = STATE(2897), + [sym_union_type] = STATE(2897), + [sym__parenthesized_type] = STATE(2897), + [sym_no_args_proc_type] = STATE(2897), + [sym_parenthesized_proc_type] = STATE(2897), + [sym_tuple_type] = STATE(2897), + [sym_named_tuple_type] = STATE(2897), + [sym_generic_instance_type] = STATE(2897), + [sym_nilable_type] = STATE(2897), + [sym_pointer_type] = STATE(2897), + [sym_static_array_type] = STATE(2897), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(5133), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5135), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5137), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [sym_self] = ACTIONS(5139), + [sym_underscore_type] = ACTIONS(5139), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [sym__line_break] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5141), + [sym__start_of_named_tuple_type] = ACTIONS(5143), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modifier_if_keyword] = ACTIONS(4390), + [sym__modifier_unless_keyword] = ACTIONS(4390), + [sym__regular_rescue_keyword] = ACTIONS(4390), + [sym__modifier_rescue_keyword] = ACTIONS(4390), + [sym__regular_ensure_keyword] = ACTIONS(4390), + [sym__modifier_ensure_keyword] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2194] = { [sym_heredoc_body] = STATE(2194), - [sym_typeof] = STATE(3166), - [sym_constant] = STATE(2803), - [sym__type] = STATE(3082), - [sym_class_type] = STATE(3166), - [sym_union_type] = STATE(3166), - [sym__parenthesized_type] = STATE(3166), - [sym_no_args_proc_type] = STATE(3166), - [sym_parenthesized_proc_type] = STATE(3166), - [sym_tuple_type] = STATE(3166), - [sym_named_tuple_type] = STATE(3166), - [sym_generic_instance_type] = STATE(3166), - [sym_nilable_type] = STATE(3166), - [sym_pointer_type] = STATE(3166), - [sym_static_array_type] = STATE(3166), - [anon_sym_SEMI] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(5136), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5138), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5089), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [sym_self] = ACTIONS(5091), - [sym_underscore_type] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_do] = ACTIONS(4325), - [sym__line_break] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4325), - [sym__start_of_tuple_type] = ACTIONS(5093), - [sym__start_of_named_tuple_type] = ACTIONS(5095), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modifier_if_keyword] = ACTIONS(4325), - [sym__modifier_unless_keyword] = ACTIONS(4325), - [sym__modifier_rescue_keyword] = ACTIONS(4325), - [sym__regular_ensure_keyword] = ACTIONS(4325), - [sym__modifier_ensure_keyword] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(2943), + [sym_constant] = STATE(2804), + [sym__type] = STATE(3169), + [sym_class_type] = STATE(2943), + [sym_union_type] = STATE(2943), + [sym__parenthesized_type] = STATE(2943), + [sym_no_args_proc_type] = STATE(2943), + [sym_parenthesized_proc_type] = STATE(2943), + [sym_tuple_type] = STATE(2943), + [sym_named_tuple_type] = STATE(2943), + [sym_generic_instance_type] = STATE(2943), + [sym_nilable_type] = STATE(2943), + [sym_pointer_type] = STATE(2943), + [sym_static_array_type] = STATE(2943), + [anon_sym_LPAREN] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(4390), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_RBRACK] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5172), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5150), + [sym__constant_segment] = ACTIONS(5152), + [anon_sym_COLON_COLON] = ACTIONS(5154), + [sym_self] = ACTIONS(5156), + [sym_underscore_type] = ACTIONS(5156), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_COLON2] = ACTIONS(4388), + [anon_sym_do] = ACTIONS(4390), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4390), + [sym__start_of_tuple_type] = ACTIONS(5158), + [sym__start_of_named_tuple_type] = ACTIONS(5160), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2195] = { [sym_heredoc_body] = STATE(2195), - [sym_typeof] = STATE(2978), - [sym_constant] = STATE(2865), - [sym__type] = STATE(2783), - [sym_class_type] = STATE(2978), - [sym_union_type] = STATE(2978), - [sym__parenthesized_type] = STATE(2978), - [sym_no_args_proc_type] = STATE(2978), - [sym_parenthesized_proc_type] = STATE(2978), - [sym_tuple_type] = STATE(2978), - [sym_named_tuple_type] = STATE(2978), - [sym_generic_instance_type] = STATE(2978), - [sym_nilable_type] = STATE(2978), - [sym_pointer_type] = STATE(2978), - [sym_static_array_type] = STATE(2978), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5097), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5154), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5102), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [sym_self] = ACTIONS(5104), - [sym_underscore_type] = ACTIONS(5104), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_else] = ACTIONS(4353), - [sym__line_break] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5106), - [sym__start_of_named_tuple_type] = ACTIONS(5108), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modifier_if_keyword] = ACTIONS(4353), - [sym__modifier_unless_keyword] = ACTIONS(4353), - [sym__regular_rescue_keyword] = ACTIONS(4353), - [sym__modifier_rescue_keyword] = ACTIONS(4353), - [sym__regular_ensure_keyword] = ACTIONS(4353), - [sym__modifier_ensure_keyword] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(2897), + [sym_constant] = STATE(2784), + [sym__type] = STATE(2813), + [sym_class_type] = STATE(2897), + [sym_union_type] = STATE(2897), + [sym__parenthesized_type] = STATE(2897), + [sym_no_args_proc_type] = STATE(2897), + [sym_parenthesized_proc_type] = STATE(2897), + [sym_tuple_type] = STATE(2897), + [sym_named_tuple_type] = STATE(2897), + [sym_generic_instance_type] = STATE(2897), + [sym_nilable_type] = STATE(2897), + [sym_pointer_type] = STATE(2897), + [sym_static_array_type] = STATE(2897), + [anon_sym_SEMI] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(5180), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5191), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5137), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [sym_self] = ACTIONS(5139), + [sym_underscore_type] = ACTIONS(5139), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_else] = ACTIONS(4362), + [sym__line_break] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5141), + [sym__start_of_named_tuple_type] = ACTIONS(5143), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modifier_if_keyword] = ACTIONS(4362), + [sym__modifier_unless_keyword] = ACTIONS(4362), + [sym__regular_rescue_keyword] = ACTIONS(4362), + [sym__modifier_rescue_keyword] = ACTIONS(4362), + [sym__regular_ensure_keyword] = ACTIONS(4362), + [sym__modifier_ensure_keyword] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2196] = { [sym_heredoc_body] = STATE(2196), - [sym_typeof] = STATE(3200), - [sym_constant] = STATE(3026), - [sym__type] = STATE(3219), - [sym_class_type] = STATE(3200), - [sym_union_type] = STATE(3200), - [sym__parenthesized_type] = STATE(3200), - [sym_no_args_proc_type] = STATE(3200), - [sym_parenthesized_proc_type] = STATE(3200), - [sym_tuple_type] = STATE(3200), - [sym_named_tuple_type] = STATE(3200), - [sym_generic_instance_type] = STATE(3200), - [sym_nilable_type] = STATE(3200), - [sym_pointer_type] = STATE(3200), - [sym_static_array_type] = STATE(3200), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_RPAREN] = ACTIONS(4375), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_RBRACK] = ACTIONS(4375), - [anon_sym_EQ_GT] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5159), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5161), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [sym_self] = ACTIONS(5163), - [sym_underscore_type] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_COLON2] = ACTIONS(4373), - [anon_sym_else] = ACTIONS(4375), - [anon_sym_when] = ACTIONS(4375), - [anon_sym_in] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5165), - [sym__start_of_named_tuple_type] = ACTIONS(5167), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(3315), + [sym_constant] = STATE(3180), + [sym__type] = STATE(2933), + [sym_class_type] = STATE(3315), + [sym_union_type] = STATE(3315), + [sym__parenthesized_type] = STATE(3315), + [sym_no_args_proc_type] = STATE(3315), + [sym_parenthesized_proc_type] = STATE(3315), + [sym_tuple_type] = STATE(3315), + [sym_named_tuple_type] = STATE(3315), + [sym_generic_instance_type] = STATE(3315), + [sym_nilable_type] = STATE(3315), + [sym_pointer_type] = STATE(3315), + [sym_static_array_type] = STATE(3315), + [anon_sym_LPAREN] = ACTIONS(5194), + [anon_sym_RPAREN] = ACTIONS(4390), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_RBRACK] = ACTIONS(4390), + [anon_sym_EQ_GT] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5196), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5199), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [sym_self] = ACTIONS(5201), + [sym_underscore_type] = ACTIONS(5201), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_COLON2] = ACTIONS(4388), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5203), + [sym__start_of_named_tuple_type] = ACTIONS(5205), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2197] = { [sym_heredoc_body] = STATE(2197), - [sym_typeof] = STATE(3200), - [sym_constant] = STATE(3026), - [sym__type] = STATE(3217), - [sym_class_type] = STATE(3200), - [sym_union_type] = STATE(3200), - [sym__parenthesized_type] = STATE(3200), - [sym_no_args_proc_type] = STATE(3200), - [sym_parenthesized_proc_type] = STATE(3200), - [sym_tuple_type] = STATE(3200), - [sym_named_tuple_type] = STATE(3200), - [sym_generic_instance_type] = STATE(3200), - [sym_nilable_type] = STATE(3200), - [sym_pointer_type] = STATE(3200), - [sym_static_array_type] = STATE(3200), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_RPAREN] = ACTIONS(4353), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RBRACK] = ACTIONS(4353), - [anon_sym_EQ_GT] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5159), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5161), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [sym_self] = ACTIONS(5163), - [sym_underscore_type] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_COLON2] = ACTIONS(4351), - [anon_sym_else] = ACTIONS(4353), - [anon_sym_when] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5165), - [sym__start_of_named_tuple_type] = ACTIONS(5167), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(2790), + [sym_constant] = STATE(2604), + [sym__type] = STATE(2803), + [sym_class_type] = STATE(2790), + [sym_union_type] = STATE(2790), + [sym__parenthesized_type] = STATE(2790), + [sym_no_args_proc_type] = STATE(2790), + [sym_parenthesized_proc_type] = STATE(2790), + [sym_tuple_type] = STATE(2790), + [sym_named_tuple_type] = STATE(2790), + [sym_generic_instance_type] = STATE(2790), + [sym_nilable_type] = STATE(2790), + [sym_pointer_type] = STATE(2790), + [sym_static_array_type] = STATE(2790), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_RPAREN] = ACTIONS(4468), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4468), + [anon_sym_COMMA] = ACTIONS(4468), + [anon_sym_RBRACK] = ACTIONS(4468), + [anon_sym_EQ_GT] = ACTIONS(4468), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4468), + [anon_sym_DASH_GT] = ACTIONS(5119), + [anon_sym_end] = ACTIONS(4468), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_CARET] = ACTIONS(4468), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(4468), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ_GT] = ACTIONS(4468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), + [anon_sym_BANG_TILDE] = ACTIONS(4468), + [anon_sym_EQ_TILDE] = ACTIONS(4468), + [anon_sym_AMP_STAR] = ACTIONS(4466), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(4466), + [anon_sym_typeof] = ACTIONS(5103), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [sym_self] = ACTIONS(5105), + [sym_underscore_type] = ACTIONS(5105), + [anon_sym_QMARK] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(4468), + [anon_sym_COLON2] = ACTIONS(4466), + [anon_sym_do] = ACTIONS(4468), + [anon_sym_else] = ACTIONS(4468), + [anon_sym_when] = ACTIONS(4468), + [anon_sym_in] = ACTIONS(4468), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4468), + [sym__start_of_tuple_type] = ACTIONS(5107), + [sym__start_of_named_tuple_type] = ACTIONS(5109), + [sym__start_of_index_operator] = ACTIONS(4468), + [sym_binary_plus] = ACTIONS(4468), + [sym_binary_minus] = ACTIONS(4468), + [sym_binary_wrapping_plus] = ACTIONS(4468), + [sym_binary_wrapping_minus] = ACTIONS(4468), + [sym__binary_star] = ACTIONS(4468), + [sym__binary_double_star] = ACTIONS(4468), + [sym_binary_ampersand] = ACTIONS(4468), + [sym__binary_slash] = ACTIONS(4468), + [sym__binary_double_slash] = ACTIONS(4468), + [sym__modulo_operator] = ACTIONS(4468), [sym__heredoc_body_start] = ACTIONS(7), }, [2198] = { [sym_heredoc_body] = STATE(2198), - [sym_typeof] = STATE(3200), - [sym_constant] = STATE(3026), - [sym__type] = STATE(3307), - [sym_class_type] = STATE(3200), - [sym_union_type] = STATE(3200), - [sym__parenthesized_type] = STATE(3200), - [sym_no_args_proc_type] = STATE(3200), - [sym_parenthesized_proc_type] = STATE(3200), - [sym_tuple_type] = STATE(3200), - [sym_named_tuple_type] = STATE(3200), - [sym_generic_instance_type] = STATE(3200), - [sym_nilable_type] = STATE(3200), - [sym_pointer_type] = STATE(3200), - [sym_static_array_type] = STATE(3200), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_RPAREN] = ACTIONS(4325), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_RBRACK] = ACTIONS(4325), - [anon_sym_EQ_GT] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5159), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5161), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [sym_self] = ACTIONS(5163), - [sym_underscore_type] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_COLON2] = ACTIONS(4323), - [anon_sym_else] = ACTIONS(4325), - [anon_sym_when] = ACTIONS(4325), - [anon_sym_in] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5165), - [sym__start_of_named_tuple_type] = ACTIONS(5167), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(2790), + [sym_constant] = STATE(2604), + [sym__type] = STATE(2802), + [sym_class_type] = STATE(2790), + [sym_union_type] = STATE(2790), + [sym__parenthesized_type] = STATE(2790), + [sym_no_args_proc_type] = STATE(2790), + [sym_parenthesized_proc_type] = STATE(2790), + [sym_tuple_type] = STATE(2790), + [sym_named_tuple_type] = STATE(2790), + [sym_generic_instance_type] = STATE(2790), + [sym_nilable_type] = STATE(2790), + [sym_pointer_type] = STATE(2790), + [sym_static_array_type] = STATE(2790), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_RPAREN] = ACTIONS(4446), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4446), + [anon_sym_COMMA] = ACTIONS(4446), + [anon_sym_RBRACK] = ACTIONS(4446), + [anon_sym_EQ_GT] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4446), + [anon_sym_DASH_GT] = ACTIONS(5119), + [anon_sym_end] = ACTIONS(4446), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ_GT] = ACTIONS(4446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4446), + [anon_sym_BANG_TILDE] = ACTIONS(4446), + [anon_sym_EQ_TILDE] = ACTIONS(4446), + [anon_sym_AMP_STAR] = ACTIONS(4444), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4444), + [anon_sym_EQ] = ACTIONS(4444), + [anon_sym_typeof] = ACTIONS(5103), + [sym__constant_segment] = ACTIONS(2935), + [anon_sym_COLON_COLON] = ACTIONS(575), + [sym_self] = ACTIONS(5105), + [sym_underscore_type] = ACTIONS(5105), + [anon_sym_QMARK] = ACTIONS(4446), + [anon_sym_AMP_AMP] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4446), + [anon_sym_COLON2] = ACTIONS(4444), + [anon_sym_do] = ACTIONS(4446), + [anon_sym_else] = ACTIONS(4446), + [anon_sym_when] = ACTIONS(4446), + [anon_sym_in] = ACTIONS(4446), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4446), + [sym__start_of_tuple_type] = ACTIONS(5107), + [sym__start_of_named_tuple_type] = ACTIONS(5109), + [sym__start_of_index_operator] = ACTIONS(4446), + [sym_binary_plus] = ACTIONS(4446), + [sym_binary_minus] = ACTIONS(4446), + [sym_binary_wrapping_plus] = ACTIONS(4446), + [sym_binary_wrapping_minus] = ACTIONS(4446), + [sym__binary_star] = ACTIONS(4446), + [sym__binary_double_star] = ACTIONS(4446), + [sym_binary_ampersand] = ACTIONS(4446), + [sym__binary_slash] = ACTIONS(4446), + [sym__binary_double_slash] = ACTIONS(4446), + [sym__modulo_operator] = ACTIONS(4446), [sym__heredoc_body_start] = ACTIONS(7), }, [2199] = { [sym_heredoc_body] = STATE(2199), - [sym_typeof] = STATE(3200), - [sym_constant] = STATE(3026), - [sym__type] = STATE(3097), - [sym_class_type] = STATE(3200), - [sym_union_type] = STATE(3200), - [sym__parenthesized_type] = STATE(3200), - [sym_no_args_proc_type] = STATE(3200), - [sym_parenthesized_proc_type] = STATE(3200), - [sym_tuple_type] = STATE(3200), - [sym_named_tuple_type] = STATE(3200), - [sym_generic_instance_type] = STATE(3200), - [sym_nilable_type] = STATE(3200), - [sym_pointer_type] = STATE(3200), - [sym_static_array_type] = STATE(3200), - [anon_sym_LPAREN] = ACTIONS(5169), - [anon_sym_RPAREN] = ACTIONS(4353), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RBRACK] = ACTIONS(4353), - [anon_sym_EQ_GT] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5171), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5161), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [sym_self] = ACTIONS(5163), - [sym_underscore_type] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_COLON2] = ACTIONS(4351), - [anon_sym_else] = ACTIONS(4353), - [anon_sym_when] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5165), - [sym__start_of_named_tuple_type] = ACTIONS(5167), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(3315), + [sym_constant] = STATE(3180), + [sym__type] = STATE(3185), + [sym_class_type] = STATE(3315), + [sym_union_type] = STATE(3315), + [sym__parenthesized_type] = STATE(3315), + [sym_no_args_proc_type] = STATE(3315), + [sym_parenthesized_proc_type] = STATE(3315), + [sym_tuple_type] = STATE(3315), + [sym_named_tuple_type] = STATE(3315), + [sym_generic_instance_type] = STATE(3315), + [sym_nilable_type] = STATE(3315), + [sym_pointer_type] = STATE(3315), + [sym_static_array_type] = STATE(3315), + [anon_sym_LPAREN] = ACTIONS(5194), + [anon_sym_RPAREN] = ACTIONS(4412), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_RBRACK] = ACTIONS(4412), + [anon_sym_EQ_GT] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5207), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5199), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [sym_self] = ACTIONS(5201), + [sym_underscore_type] = ACTIONS(5201), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_COLON2] = ACTIONS(4410), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_when] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5203), + [sym__start_of_named_tuple_type] = ACTIONS(5205), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2200] = { [sym_heredoc_body] = STATE(2200), - [ts_builtin_sym_end] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(163), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(191), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(191), - [anon_sym_DASH_EQ] = ACTIONS(191), - [anon_sym_AMP_DASH_EQ] = ACTIONS(191), - [anon_sym_STAR_EQ] = ACTIONS(191), - [anon_sym_AMP_STAR_EQ] = ACTIONS(191), - [anon_sym_SLASH_EQ] = ACTIONS(191), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(191), - [anon_sym_PERCENT_EQ] = ACTIONS(191), - [anon_sym_PIPE_EQ] = ACTIONS(191), - [anon_sym_AMP_EQ] = ACTIONS(191), - [anon_sym_CARET_EQ] = ACTIONS(191), - [anon_sym_STAR_STAR_EQ] = ACTIONS(191), - [anon_sym_LT_LT_EQ] = ACTIONS(191), - [anon_sym_GT_GT_EQ] = ACTIONS(191), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(191), - [anon_sym_AMP_AMP_EQ] = ACTIONS(191), - [anon_sym_COLON2] = ACTIONS(5174), - [anon_sym_do] = ACTIONS(133), - [anon_sym_elsif] = ACTIONS(133), - [anon_sym_else] = ACTIONS(133), - [anon_sym_when] = ACTIONS(133), - [anon_sym_in] = ACTIONS(133), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(133), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [sym_typeof] = STATE(3315), + [sym_constant] = STATE(3180), + [sym__type] = STATE(3247), + [sym_class_type] = STATE(3315), + [sym_union_type] = STATE(3315), + [sym__parenthesized_type] = STATE(3315), + [sym_no_args_proc_type] = STATE(3315), + [sym_parenthesized_proc_type] = STATE(3315), + [sym_tuple_type] = STATE(3315), + [sym_named_tuple_type] = STATE(3315), + [sym_generic_instance_type] = STATE(3315), + [sym_nilable_type] = STATE(3315), + [sym_pointer_type] = STATE(3315), + [sym_static_array_type] = STATE(3315), + [anon_sym_LPAREN] = ACTIONS(5210), + [anon_sym_RPAREN] = ACTIONS(4412), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_RBRACK] = ACTIONS(4412), + [anon_sym_EQ_GT] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5212), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5199), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [sym_self] = ACTIONS(5201), + [sym_underscore_type] = ACTIONS(5201), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_COLON2] = ACTIONS(4410), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_when] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5203), + [sym__start_of_named_tuple_type] = ACTIONS(5205), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2201] = { [sym_heredoc_body] = STATE(2201), - [sym_typeof] = STATE(3200), - [sym_constant] = STATE(3026), - [sym__type] = STATE(3098), - [sym_class_type] = STATE(3200), - [sym_union_type] = STATE(3200), - [sym__parenthesized_type] = STATE(3200), - [sym_no_args_proc_type] = STATE(3200), - [sym_parenthesized_proc_type] = STATE(3200), - [sym_tuple_type] = STATE(3200), - [sym_named_tuple_type] = STATE(3200), - [sym_generic_instance_type] = STATE(3200), - [sym_nilable_type] = STATE(3200), - [sym_pointer_type] = STATE(3200), - [sym_static_array_type] = STATE(3200), - [anon_sym_LPAREN] = ACTIONS(5169), - [anon_sym_RPAREN] = ACTIONS(4375), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_RBRACK] = ACTIONS(4375), - [anon_sym_EQ_GT] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5176), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5161), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [sym_self] = ACTIONS(5163), - [sym_underscore_type] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_COLON2] = ACTIONS(4373), - [anon_sym_else] = ACTIONS(4375), - [anon_sym_when] = ACTIONS(4375), - [anon_sym_in] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5165), - [sym__start_of_named_tuple_type] = ACTIONS(5167), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [ts_builtin_sym_end] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_AMP_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_AMP_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(253), + [anon_sym_PERCENT_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_CARET_EQ] = ACTIONS(253), + [anon_sym_STAR_STAR_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(253), + [anon_sym_AMP_AMP_EQ] = ACTIONS(253), + [anon_sym_COLON2] = ACTIONS(5214), + [anon_sym_do] = ACTIONS(135), + [anon_sym_elsif] = ACTIONS(135), + [anon_sym_else] = ACTIONS(135), + [anon_sym_when] = ACTIONS(135), + [anon_sym_in] = ACTIONS(135), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(135), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2202] = { [sym_heredoc_body] = STATE(2202), - [sym_typeof] = STATE(2791), - [sym_constant] = STATE(2676), - [sym__type] = STATE(2838), - [sym_class_type] = STATE(2791), - [sym_union_type] = STATE(2791), - [sym__parenthesized_type] = STATE(2791), - [sym_no_args_proc_type] = STATE(2791), - [sym_parenthesized_proc_type] = STATE(2791), - [sym_tuple_type] = STATE(2791), - [sym_named_tuple_type] = STATE(2791), - [sym_generic_instance_type] = STATE(2791), - [sym_nilable_type] = STATE(2791), - [sym_pointer_type] = STATE(2791), - [sym_static_array_type] = STATE(2791), - [anon_sym_LPAREN] = ACTIONS(5074), - [anon_sym_RPAREN] = ACTIONS(4431), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_EQ_GT] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(5076), - [anon_sym_end] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_PIPE] = ACTIONS(4429), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ_GT] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_BANG_TILDE] = ACTIONS(4431), - [anon_sym_EQ_TILDE] = ACTIONS(4431), - [anon_sym_AMP_STAR] = ACTIONS(4429), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_typeof] = ACTIONS(5066), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [sym_self] = ACTIONS(5068), - [sym_underscore_type] = ACTIONS(5068), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_COLON2] = ACTIONS(4429), - [anon_sym_do] = ACTIONS(4431), - [anon_sym_else] = ACTIONS(4431), - [anon_sym_when] = ACTIONS(4431), - [anon_sym_in] = ACTIONS(4431), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4431), - [sym__start_of_tuple_type] = ACTIONS(5070), - [sym__start_of_named_tuple_type] = ACTIONS(5072), - [sym__start_of_index_operator] = ACTIONS(4431), - [sym_binary_plus] = ACTIONS(4431), - [sym_binary_minus] = ACTIONS(4431), - [sym_binary_wrapping_plus] = ACTIONS(4431), - [sym_binary_wrapping_minus] = ACTIONS(4431), - [sym__binary_star] = ACTIONS(4431), - [sym__binary_double_star] = ACTIONS(4431), - [sym_binary_ampersand] = ACTIONS(4431), - [sym__binary_slash] = ACTIONS(4431), - [sym__binary_double_slash] = ACTIONS(4431), - [sym__modulo_operator] = ACTIONS(4431), + [sym_typeof] = STATE(3315), + [sym_constant] = STATE(3180), + [sym__type] = STATE(2946), + [sym_class_type] = STATE(3315), + [sym_union_type] = STATE(3315), + [sym__parenthesized_type] = STATE(3315), + [sym_no_args_proc_type] = STATE(3315), + [sym_parenthesized_proc_type] = STATE(3315), + [sym_tuple_type] = STATE(3315), + [sym_named_tuple_type] = STATE(3315), + [sym_generic_instance_type] = STATE(3315), + [sym_nilable_type] = STATE(3315), + [sym_pointer_type] = STATE(3315), + [sym_static_array_type] = STATE(3315), + [anon_sym_LPAREN] = ACTIONS(5194), + [anon_sym_RPAREN] = ACTIONS(4362), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4362), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_RBRACK] = ACTIONS(4362), + [anon_sym_EQ_GT] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5216), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5199), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [sym_self] = ACTIONS(5201), + [sym_underscore_type] = ACTIONS(5201), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_COLON2] = ACTIONS(4360), + [anon_sym_else] = ACTIONS(4362), + [anon_sym_when] = ACTIONS(4362), + [anon_sym_in] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5203), + [sym__start_of_named_tuple_type] = ACTIONS(5205), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2203] = { [sym_heredoc_body] = STATE(2203), - [sym_typeof] = STATE(3200), - [sym_constant] = STATE(3026), - [sym__type] = STATE(3033), - [sym_class_type] = STATE(3200), - [sym_union_type] = STATE(3200), - [sym__parenthesized_type] = STATE(3200), - [sym_no_args_proc_type] = STATE(3200), - [sym_parenthesized_proc_type] = STATE(3200), - [sym_tuple_type] = STATE(3200), - [sym_named_tuple_type] = STATE(3200), - [sym_generic_instance_type] = STATE(3200), - [sym_nilable_type] = STATE(3200), - [sym_pointer_type] = STATE(3200), - [sym_static_array_type] = STATE(3200), - [anon_sym_LPAREN] = ACTIONS(5169), - [anon_sym_RPAREN] = ACTIONS(4325), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_RBRACK] = ACTIONS(4325), - [anon_sym_EQ_GT] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5179), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5161), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [sym_self] = ACTIONS(5163), - [sym_underscore_type] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_COLON2] = ACTIONS(4323), - [anon_sym_else] = ACTIONS(4325), - [anon_sym_when] = ACTIONS(4325), - [anon_sym_in] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5165), - [sym__start_of_named_tuple_type] = ACTIONS(5167), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(3315), + [sym_constant] = STATE(3180), + [sym__type] = STATE(3207), + [sym_class_type] = STATE(3315), + [sym_union_type] = STATE(3315), + [sym__parenthesized_type] = STATE(3315), + [sym_no_args_proc_type] = STATE(3315), + [sym_parenthesized_proc_type] = STATE(3315), + [sym_tuple_type] = STATE(3315), + [sym_named_tuple_type] = STATE(3315), + [sym_generic_instance_type] = STATE(3315), + [sym_nilable_type] = STATE(3315), + [sym_pointer_type] = STATE(3315), + [sym_static_array_type] = STATE(3315), + [anon_sym_LPAREN] = ACTIONS(5210), + [anon_sym_RPAREN] = ACTIONS(4390), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_RBRACK] = ACTIONS(4390), + [anon_sym_EQ_GT] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5212), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5199), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [sym_self] = ACTIONS(5201), + [sym_underscore_type] = ACTIONS(5201), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_COLON2] = ACTIONS(4388), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5203), + [sym__start_of_named_tuple_type] = ACTIONS(5205), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2204] = { [sym_heredoc_body] = STATE(2204), - [sym_typeof] = STATE(2791), - [sym_constant] = STATE(2676), - [sym__type] = STATE(2792), - [sym_class_type] = STATE(2791), - [sym_union_type] = STATE(2791), - [sym__parenthesized_type] = STATE(2791), - [sym_no_args_proc_type] = STATE(2791), - [sym_parenthesized_proc_type] = STATE(2791), - [sym_tuple_type] = STATE(2791), - [sym_named_tuple_type] = STATE(2791), - [sym_generic_instance_type] = STATE(2791), - [sym_nilable_type] = STATE(2791), - [sym_pointer_type] = STATE(2791), - [sym_static_array_type] = STATE(2791), - [anon_sym_LPAREN] = ACTIONS(5074), - [anon_sym_RPAREN] = ACTIONS(4409), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4409), - [anon_sym_COMMA] = ACTIONS(4409), - [anon_sym_RBRACK] = ACTIONS(4409), - [anon_sym_EQ_GT] = ACTIONS(4409), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4409), - [anon_sym_DASH_GT] = ACTIONS(5076), - [anon_sym_end] = ACTIONS(4409), - [anon_sym_LT] = ACTIONS(4407), - [anon_sym_PIPE] = ACTIONS(4407), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym_GT_GT] = ACTIONS(4409), - [anon_sym_LT_LT] = ACTIONS(4409), - [anon_sym_EQ_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ_GT] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), - [anon_sym_BANG_TILDE] = ACTIONS(4409), - [anon_sym_EQ_TILDE] = ACTIONS(4409), - [anon_sym_AMP_STAR] = ACTIONS(4407), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4409), - [anon_sym_DOT] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4407), - [anon_sym_typeof] = ACTIONS(5066), - [sym__constant_segment] = ACTIONS(2904), - [anon_sym_COLON_COLON] = ACTIONS(567), - [sym_self] = ACTIONS(5068), - [sym_underscore_type] = ACTIONS(5068), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_AMP_AMP] = ACTIONS(4409), - [anon_sym_PIPE_PIPE] = ACTIONS(4409), - [anon_sym_COLON2] = ACTIONS(4407), - [anon_sym_do] = ACTIONS(4409), - [anon_sym_else] = ACTIONS(4409), - [anon_sym_when] = ACTIONS(4409), - [anon_sym_in] = ACTIONS(4409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4409), - [sym__start_of_tuple_type] = ACTIONS(5070), - [sym__start_of_named_tuple_type] = ACTIONS(5072), - [sym__start_of_index_operator] = ACTIONS(4409), - [sym_binary_plus] = ACTIONS(4409), - [sym_binary_minus] = ACTIONS(4409), - [sym_binary_wrapping_plus] = ACTIONS(4409), - [sym_binary_wrapping_minus] = ACTIONS(4409), - [sym__binary_star] = ACTIONS(4409), - [sym__binary_double_star] = ACTIONS(4409), - [sym_binary_ampersand] = ACTIONS(4409), - [sym__binary_slash] = ACTIONS(4409), - [sym__binary_double_slash] = ACTIONS(4409), - [sym__modulo_operator] = ACTIONS(4409), + [sym_typeof] = STATE(3315), + [sym_constant] = STATE(3180), + [sym__type] = STATE(3208), + [sym_class_type] = STATE(3315), + [sym_union_type] = STATE(3315), + [sym__parenthesized_type] = STATE(3315), + [sym_no_args_proc_type] = STATE(3315), + [sym_parenthesized_proc_type] = STATE(3315), + [sym_tuple_type] = STATE(3315), + [sym_named_tuple_type] = STATE(3315), + [sym_generic_instance_type] = STATE(3315), + [sym_nilable_type] = STATE(3315), + [sym_pointer_type] = STATE(3315), + [sym_static_array_type] = STATE(3315), + [anon_sym_LPAREN] = ACTIONS(5210), + [anon_sym_RPAREN] = ACTIONS(4362), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4362), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_RBRACK] = ACTIONS(4362), + [anon_sym_EQ_GT] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5212), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5199), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [sym_self] = ACTIONS(5201), + [sym_underscore_type] = ACTIONS(5201), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_COLON2] = ACTIONS(4360), + [anon_sym_else] = ACTIONS(4362), + [anon_sym_when] = ACTIONS(4362), + [anon_sym_in] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5203), + [sym__start_of_named_tuple_type] = ACTIONS(5205), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2205] = { [sym_heredoc_body] = STATE(2205), - [ts_builtin_sym_end] = ACTIONS(5182), - [anon_sym_SEMI] = ACTIONS(5182), - [anon_sym_RPAREN] = ACTIONS(5182), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5182), - [anon_sym_COMMA] = ACTIONS(5182), - [anon_sym_DOT_DOT] = ACTIONS(5184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5182), - [anon_sym_end] = ACTIONS(5182), - [anon_sym_LT] = ACTIONS(5184), - [anon_sym_PIPE] = ACTIONS(5184), - [anon_sym_CARET] = ACTIONS(5184), - [anon_sym_GT_GT] = ACTIONS(5184), - [anon_sym_LT_LT] = ACTIONS(5184), - [anon_sym_EQ_EQ] = ACTIONS(5184), - [anon_sym_BANG_EQ] = ACTIONS(5182), - [anon_sym_LT_EQ] = ACTIONS(5184), - [anon_sym_GT] = ACTIONS(5184), - [anon_sym_GT_EQ] = ACTIONS(5182), - [anon_sym_LT_EQ_GT] = ACTIONS(5182), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5182), - [anon_sym_BANG_TILDE] = ACTIONS(5182), - [anon_sym_EQ_TILDE] = ACTIONS(5182), - [anon_sym_AMP_STAR] = ACTIONS(5184), - [anon_sym_AMP_STAR_STAR] = ACTIONS(5182), - [anon_sym_DOT] = ACTIONS(5184), - [anon_sym_EQ] = ACTIONS(5184), - [anon_sym_QMARK] = ACTIONS(5182), - [anon_sym_AMP_AMP] = ACTIONS(5184), - [anon_sym_PIPE_PIPE] = ACTIONS(5184), - [anon_sym_PLUS_EQ] = ACTIONS(5182), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(5182), - [anon_sym_DASH_EQ] = ACTIONS(5182), - [anon_sym_AMP_DASH_EQ] = ACTIONS(5182), - [anon_sym_STAR_EQ] = ACTIONS(5182), - [anon_sym_AMP_STAR_EQ] = ACTIONS(5182), - [anon_sym_SLASH_EQ] = ACTIONS(5182), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5182), - [anon_sym_PERCENT_EQ] = ACTIONS(5182), - [anon_sym_PIPE_EQ] = ACTIONS(5182), - [anon_sym_AMP_EQ] = ACTIONS(5182), - [anon_sym_CARET_EQ] = ACTIONS(5182), - [anon_sym_STAR_STAR_EQ] = ACTIONS(5182), - [anon_sym_LT_LT_EQ] = ACTIONS(5182), - [anon_sym_GT_GT_EQ] = ACTIONS(5182), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5182), - [anon_sym_AMP_AMP_EQ] = ACTIONS(5182), - [anon_sym_do] = ACTIONS(5182), - [anon_sym_elsif] = ACTIONS(5182), - [anon_sym_else] = ACTIONS(5182), - [anon_sym_when] = ACTIONS(5182), - [anon_sym_in] = ACTIONS(5182), - [sym__line_break] = ACTIONS(5182), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(5182), - [sym__start_of_index_operator] = ACTIONS(5182), - [sym_binary_plus] = ACTIONS(5182), - [sym_binary_minus] = ACTIONS(5182), - [sym_binary_wrapping_plus] = ACTIONS(5182), - [sym_binary_wrapping_minus] = ACTIONS(5182), - [sym__binary_star] = ACTIONS(5182), - [sym__binary_double_star] = ACTIONS(5182), - [sym_binary_ampersand] = ACTIONS(5182), - [sym__binary_slash] = ACTIONS(5182), - [sym__binary_double_slash] = ACTIONS(5182), - [sym__modifier_if_keyword] = ACTIONS(5182), - [sym__modifier_unless_keyword] = ACTIONS(5182), - [sym__modifier_rescue_keyword] = ACTIONS(5182), - [sym__modifier_ensure_keyword] = ACTIONS(5182), - [sym__modulo_operator] = ACTIONS(5182), + [sym_typeof] = STATE(3579), + [sym_constant] = STATE(3316), + [sym__type] = STATE(3517), + [sym_class_type] = STATE(3579), + [sym_union_type] = STATE(3579), + [sym__parenthesized_type] = STATE(3579), + [sym_no_args_proc_type] = STATE(3579), + [sym_parenthesized_proc_type] = STATE(3579), + [sym_tuple_type] = STATE(3579), + [sym_named_tuple_type] = STATE(3579), + [sym_generic_instance_type] = STATE(3579), + [sym_nilable_type] = STATE(3579), + [sym_pointer_type] = STATE(3579), + [sym_static_array_type] = STATE(3579), + [anon_sym_LPAREN] = ACTIONS(5219), + [anon_sym_RPAREN] = ACTIONS(4362), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4362), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_RBRACK] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5221), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5223), + [sym__constant_segment] = ACTIONS(5225), + [anon_sym_COLON_COLON] = ACTIONS(5227), + [sym_self] = ACTIONS(5229), + [sym_underscore_type] = ACTIONS(5229), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_COLON2] = ACTIONS(4360), + [anon_sym_else] = ACTIONS(4362), + [anon_sym_when] = ACTIONS(4362), + [anon_sym_in] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5231), + [sym__start_of_named_tuple_type] = ACTIONS(5233), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2206] = { [sym_heredoc_body] = STATE(2206), - [sym_typeof] = STATE(3166), - [sym_constant] = STATE(2803), - [sym__type] = STATE(2874), - [sym_class_type] = STATE(3166), - [sym_union_type] = STATE(3166), - [sym__parenthesized_type] = STATE(3166), - [sym_no_args_proc_type] = STATE(3166), - [sym_parenthesized_proc_type] = STATE(3166), - [sym_tuple_type] = STATE(3166), - [sym_named_tuple_type] = STATE(3166), - [sym_generic_instance_type] = STATE(3166), - [sym_nilable_type] = STATE(3166), - [sym_pointer_type] = STATE(3166), - [sym_static_array_type] = STATE(3166), - [anon_sym_SEMI] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(5136), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4409), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4409), - [anon_sym_DASH_GT] = ACTIONS(5138), - [anon_sym_end] = ACTIONS(4409), - [anon_sym_LT] = ACTIONS(4407), - [anon_sym_PIPE] = ACTIONS(4407), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym_GT_GT] = ACTIONS(4409), - [anon_sym_LT_LT] = ACTIONS(4409), - [anon_sym_EQ_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ_GT] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), - [anon_sym_BANG_TILDE] = ACTIONS(4409), - [anon_sym_EQ_TILDE] = ACTIONS(4409), - [anon_sym_AMP_STAR] = ACTIONS(4407), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4409), - [anon_sym_DOT] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4407), - [anon_sym_typeof] = ACTIONS(5089), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [sym_self] = ACTIONS(5091), - [sym_underscore_type] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_AMP_AMP] = ACTIONS(4409), - [anon_sym_PIPE_PIPE] = ACTIONS(4409), - [anon_sym_do] = ACTIONS(4409), - [sym__line_break] = ACTIONS(4409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4409), - [sym__start_of_tuple_type] = ACTIONS(5093), - [sym__start_of_named_tuple_type] = ACTIONS(5095), - [sym__start_of_index_operator] = ACTIONS(4409), - [sym_binary_plus] = ACTIONS(4409), - [sym_binary_minus] = ACTIONS(4409), - [sym_binary_wrapping_plus] = ACTIONS(4409), - [sym_binary_wrapping_minus] = ACTIONS(4409), - [sym__binary_star] = ACTIONS(4409), - [sym__binary_double_star] = ACTIONS(4409), - [sym_binary_ampersand] = ACTIONS(4409), - [sym__binary_slash] = ACTIONS(4409), - [sym__binary_double_slash] = ACTIONS(4409), - [sym__modifier_if_keyword] = ACTIONS(4409), - [sym__modifier_unless_keyword] = ACTIONS(4409), - [sym__modifier_rescue_keyword] = ACTIONS(4409), - [sym__regular_ensure_keyword] = ACTIONS(4409), - [sym__modifier_ensure_keyword] = ACTIONS(4409), - [sym__modulo_operator] = ACTIONS(4409), + [ts_builtin_sym_end] = ACTIONS(5235), + [anon_sym_SEMI] = ACTIONS(5235), + [anon_sym_RPAREN] = ACTIONS(5235), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5235), + [anon_sym_COMMA] = ACTIONS(5235), + [anon_sym_DOT_DOT] = ACTIONS(5237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5235), + [anon_sym_end] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5237), + [anon_sym_PIPE] = ACTIONS(5237), + [anon_sym_CARET] = ACTIONS(5237), + [anon_sym_GT_GT] = ACTIONS(5237), + [anon_sym_LT_LT] = ACTIONS(5237), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ] = ACTIONS(5237), + [anon_sym_GT] = ACTIONS(5237), + [anon_sym_GT_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ_GT] = ACTIONS(5235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5235), + [anon_sym_BANG_TILDE] = ACTIONS(5235), + [anon_sym_EQ_TILDE] = ACTIONS(5235), + [anon_sym_AMP_STAR] = ACTIONS(5237), + [anon_sym_AMP_STAR_STAR] = ACTIONS(5235), + [anon_sym_DOT] = ACTIONS(5237), + [anon_sym_EQ] = ACTIONS(5237), + [anon_sym_QMARK] = ACTIONS(5235), + [anon_sym_AMP_AMP] = ACTIONS(5237), + [anon_sym_PIPE_PIPE] = ACTIONS(5237), + [anon_sym_PLUS_EQ] = ACTIONS(5235), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(5235), + [anon_sym_DASH_EQ] = ACTIONS(5235), + [anon_sym_AMP_DASH_EQ] = ACTIONS(5235), + [anon_sym_STAR_EQ] = ACTIONS(5235), + [anon_sym_AMP_STAR_EQ] = ACTIONS(5235), + [anon_sym_SLASH_EQ] = ACTIONS(5235), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5235), + [anon_sym_PERCENT_EQ] = ACTIONS(5235), + [anon_sym_PIPE_EQ] = ACTIONS(5235), + [anon_sym_AMP_EQ] = ACTIONS(5235), + [anon_sym_CARET_EQ] = ACTIONS(5235), + [anon_sym_STAR_STAR_EQ] = ACTIONS(5235), + [anon_sym_LT_LT_EQ] = ACTIONS(5235), + [anon_sym_GT_GT_EQ] = ACTIONS(5235), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5235), + [anon_sym_AMP_AMP_EQ] = ACTIONS(5235), + [anon_sym_do] = ACTIONS(5235), + [anon_sym_elsif] = ACTIONS(5235), + [anon_sym_else] = ACTIONS(5235), + [anon_sym_when] = ACTIONS(5235), + [anon_sym_in] = ACTIONS(5235), + [sym__line_break] = ACTIONS(5235), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(5235), + [sym__start_of_index_operator] = ACTIONS(5235), + [sym_binary_plus] = ACTIONS(5235), + [sym_binary_minus] = ACTIONS(5235), + [sym_binary_wrapping_plus] = ACTIONS(5235), + [sym_binary_wrapping_minus] = ACTIONS(5235), + [sym__binary_star] = ACTIONS(5235), + [sym__binary_double_star] = ACTIONS(5235), + [sym_binary_ampersand] = ACTIONS(5235), + [sym__binary_slash] = ACTIONS(5235), + [sym__binary_double_slash] = ACTIONS(5235), + [sym__modifier_if_keyword] = ACTIONS(5235), + [sym__modifier_unless_keyword] = ACTIONS(5235), + [sym__modifier_rescue_keyword] = ACTIONS(5235), + [sym__modifier_ensure_keyword] = ACTIONS(5235), + [sym__modulo_operator] = ACTIONS(5235), [sym__heredoc_body_start] = ACTIONS(7), }, [2207] = { [sym_heredoc_body] = STATE(2207), - [sym_typeof] = STATE(3092), - [sym_constant] = STATE(2834), - [sym__type] = STATE(3136), - [sym_class_type] = STATE(3092), - [sym_union_type] = STATE(3092), - [sym__parenthesized_type] = STATE(3092), - [sym_no_args_proc_type] = STATE(3092), - [sym_parenthesized_proc_type] = STATE(3092), - [sym_tuple_type] = STATE(3092), - [sym_named_tuple_type] = STATE(3092), - [sym_generic_instance_type] = STATE(3092), - [sym_nilable_type] = STATE(3092), - [sym_pointer_type] = STATE(3092), - [sym_static_array_type] = STATE(3092), - [anon_sym_LPAREN] = ACTIONS(5150), - [anon_sym_RPAREN] = ACTIONS(4431), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(5152), - [anon_sym_end] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_PIPE] = ACTIONS(4429), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ_GT] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_BANG_TILDE] = ACTIONS(4431), - [anon_sym_EQ_TILDE] = ACTIONS(4431), - [anon_sym_AMP_STAR] = ACTIONS(4429), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_typeof] = ACTIONS(5118), - [sym__constant_segment] = ACTIONS(5120), - [anon_sym_COLON_COLON] = ACTIONS(5122), - [sym_self] = ACTIONS(5124), - [sym_underscore_type] = ACTIONS(5124), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_COLON2] = ACTIONS(4429), - [anon_sym_do] = ACTIONS(4431), - [anon_sym_else] = ACTIONS(4431), - [anon_sym_when] = ACTIONS(4431), - [anon_sym_in] = ACTIONS(4431), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4431), - [sym__start_of_tuple_type] = ACTIONS(5126), - [sym__start_of_named_tuple_type] = ACTIONS(5128), - [sym__start_of_index_operator] = ACTIONS(4431), - [sym_binary_plus] = ACTIONS(4431), - [sym_binary_minus] = ACTIONS(4431), - [sym_binary_wrapping_plus] = ACTIONS(4431), - [sym_binary_wrapping_minus] = ACTIONS(4431), - [sym__binary_star] = ACTIONS(4431), - [sym__binary_double_star] = ACTIONS(4431), - [sym_binary_ampersand] = ACTIONS(4431), - [sym__binary_slash] = ACTIONS(4431), - [sym__binary_double_slash] = ACTIONS(4431), - [sym__modulo_operator] = ACTIONS(4431), + [sym_typeof] = STATE(3579), + [sym_constant] = STATE(3316), + [sym__type] = STATE(3269), + [sym_class_type] = STATE(3579), + [sym_union_type] = STATE(3579), + [sym__parenthesized_type] = STATE(3579), + [sym_no_args_proc_type] = STATE(3579), + [sym_parenthesized_proc_type] = STATE(3579), + [sym_tuple_type] = STATE(3579), + [sym_named_tuple_type] = STATE(3579), + [sym_generic_instance_type] = STATE(3579), + [sym_nilable_type] = STATE(3579), + [sym_pointer_type] = STATE(3579), + [sym_static_array_type] = STATE(3579), + [anon_sym_LPAREN] = ACTIONS(5239), + [anon_sym_RPAREN] = ACTIONS(4412), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_RBRACK] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5241), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5223), + [sym__constant_segment] = ACTIONS(5225), + [anon_sym_COLON_COLON] = ACTIONS(5227), + [sym_self] = ACTIONS(5229), + [sym_underscore_type] = ACTIONS(5229), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_COLON2] = ACTIONS(4410), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_when] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5231), + [sym__start_of_named_tuple_type] = ACTIONS(5233), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2208] = { [sym_heredoc_body] = STATE(2208), - [sym_typeof] = STATE(3515), - [sym_constant] = STATE(3256), - [sym__type] = STATE(3302), - [sym_class_type] = STATE(3515), - [sym_union_type] = STATE(3515), - [sym__parenthesized_type] = STATE(3515), - [sym_no_args_proc_type] = STATE(3515), - [sym_parenthesized_proc_type] = STATE(3515), - [sym_tuple_type] = STATE(3515), - [sym_named_tuple_type] = STATE(3515), - [sym_generic_instance_type] = STATE(3515), - [sym_nilable_type] = STATE(3515), - [sym_pointer_type] = STATE(3515), - [sym_static_array_type] = STATE(3515), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5186), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5188), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5191), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [sym_self] = ACTIONS(5193), - [sym_underscore_type] = ACTIONS(5193), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [sym__line_break] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5195), - [sym__start_of_named_tuple_type] = ACTIONS(5197), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modifier_if_keyword] = ACTIONS(4353), - [sym__modifier_unless_keyword] = ACTIONS(4353), - [sym__modifier_rescue_keyword] = ACTIONS(4353), - [sym__regular_ensure_keyword] = ACTIONS(4353), - [sym__modifier_ensure_keyword] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(3579), + [sym_constant] = STATE(3316), + [sym__type] = STATE(3394), + [sym_class_type] = STATE(3579), + [sym_union_type] = STATE(3579), + [sym__parenthesized_type] = STATE(3579), + [sym_no_args_proc_type] = STATE(3579), + [sym_parenthesized_proc_type] = STATE(3579), + [sym_tuple_type] = STATE(3579), + [sym_named_tuple_type] = STATE(3579), + [sym_generic_instance_type] = STATE(3579), + [sym_nilable_type] = STATE(3579), + [sym_pointer_type] = STATE(3579), + [sym_static_array_type] = STATE(3579), + [anon_sym_LPAREN] = ACTIONS(5219), + [anon_sym_RPAREN] = ACTIONS(4412), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4412), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_RBRACK] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5221), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5223), + [sym__constant_segment] = ACTIONS(5225), + [anon_sym_COLON_COLON] = ACTIONS(5227), + [sym_self] = ACTIONS(5229), + [sym_underscore_type] = ACTIONS(5229), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_COLON2] = ACTIONS(4410), + [anon_sym_else] = ACTIONS(4412), + [anon_sym_when] = ACTIONS(4412), + [anon_sym_in] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5231), + [sym__start_of_named_tuple_type] = ACTIONS(5233), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2209] = { [sym_heredoc_body] = STATE(2209), - [sym_typeof] = STATE(3515), - [sym_constant] = STATE(3256), - [sym__type] = STATE(3304), - [sym_class_type] = STATE(3515), - [sym_union_type] = STATE(3515), - [sym__parenthesized_type] = STATE(3515), - [sym_no_args_proc_type] = STATE(3515), - [sym_parenthesized_proc_type] = STATE(3515), - [sym_tuple_type] = STATE(3515), - [sym_named_tuple_type] = STATE(3515), - [sym_generic_instance_type] = STATE(3515), - [sym_nilable_type] = STATE(3515), - [sym_pointer_type] = STATE(3515), - [sym_static_array_type] = STATE(3515), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(5186), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5199), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5191), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [sym_self] = ACTIONS(5193), - [sym_underscore_type] = ACTIONS(5193), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [sym__line_break] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5195), - [sym__start_of_named_tuple_type] = ACTIONS(5197), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modifier_if_keyword] = ACTIONS(4375), - [sym__modifier_unless_keyword] = ACTIONS(4375), - [sym__modifier_rescue_keyword] = ACTIONS(4375), - [sym__regular_ensure_keyword] = ACTIONS(4375), - [sym__modifier_ensure_keyword] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(3579), + [sym_constant] = STATE(3316), + [sym__type] = STATE(3224), + [sym_class_type] = STATE(3579), + [sym_union_type] = STATE(3579), + [sym__parenthesized_type] = STATE(3579), + [sym_no_args_proc_type] = STATE(3579), + [sym_parenthesized_proc_type] = STATE(3579), + [sym_tuple_type] = STATE(3579), + [sym_named_tuple_type] = STATE(3579), + [sym_generic_instance_type] = STATE(3579), + [sym_nilable_type] = STATE(3579), + [sym_pointer_type] = STATE(3579), + [sym_static_array_type] = STATE(3579), + [anon_sym_LPAREN] = ACTIONS(5239), + [anon_sym_RPAREN] = ACTIONS(4390), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_RBRACK] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5244), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5223), + [sym__constant_segment] = ACTIONS(5225), + [anon_sym_COLON_COLON] = ACTIONS(5227), + [sym_self] = ACTIONS(5229), + [sym_underscore_type] = ACTIONS(5229), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_COLON2] = ACTIONS(4388), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5231), + [sym__start_of_named_tuple_type] = ACTIONS(5233), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2210] = { [sym_heredoc_body] = STATE(2210), - [sym_typeof] = STATE(3515), - [sym_constant] = STATE(3256), - [sym__type] = STATE(3269), - [sym_class_type] = STATE(3515), - [sym_union_type] = STATE(3515), - [sym__parenthesized_type] = STATE(3515), - [sym_no_args_proc_type] = STATE(3515), - [sym_parenthesized_proc_type] = STATE(3515), - [sym_tuple_type] = STATE(3515), - [sym_named_tuple_type] = STATE(3515), - [sym_generic_instance_type] = STATE(3515), - [sym_nilable_type] = STATE(3515), - [sym_pointer_type] = STATE(3515), - [sym_static_array_type] = STATE(3515), - [anon_sym_SEMI] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(5186), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5202), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5191), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [sym_self] = ACTIONS(5193), - [sym_underscore_type] = ACTIONS(5193), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [sym__line_break] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5195), - [sym__start_of_named_tuple_type] = ACTIONS(5197), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modifier_if_keyword] = ACTIONS(4325), - [sym__modifier_unless_keyword] = ACTIONS(4325), - [sym__modifier_rescue_keyword] = ACTIONS(4325), - [sym__regular_ensure_keyword] = ACTIONS(4325), - [sym__modifier_ensure_keyword] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(2993), + [sym_constant] = STATE(2829), + [sym__type] = STATE(3008), + [sym_class_type] = STATE(2993), + [sym_union_type] = STATE(2993), + [sym__parenthesized_type] = STATE(2993), + [sym_no_args_proc_type] = STATE(2993), + [sym_parenthesized_proc_type] = STATE(2993), + [sym_tuple_type] = STATE(2993), + [sym_named_tuple_type] = STATE(2993), + [sym_generic_instance_type] = STATE(2993), + [sym_nilable_type] = STATE(2993), + [sym_pointer_type] = STATE(2993), + [sym_static_array_type] = STATE(2993), + [anon_sym_SEMI] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(5121), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4468), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4468), + [anon_sym_DASH_GT] = ACTIONS(5123), + [anon_sym_end] = ACTIONS(4468), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_CARET] = ACTIONS(4468), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(4468), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ_GT] = ACTIONS(4468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), + [anon_sym_BANG_TILDE] = ACTIONS(4468), + [anon_sym_EQ_TILDE] = ACTIONS(4468), + [anon_sym_AMP_STAR] = ACTIONS(4466), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(4466), + [anon_sym_typeof] = ACTIONS(5125), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [sym_self] = ACTIONS(5127), + [sym_underscore_type] = ACTIONS(5127), + [anon_sym_QMARK] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(4468), + [anon_sym_do] = ACTIONS(4468), + [sym__line_break] = ACTIONS(4468), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4468), + [sym__start_of_tuple_type] = ACTIONS(5129), + [sym__start_of_named_tuple_type] = ACTIONS(5131), + [sym__start_of_index_operator] = ACTIONS(4468), + [sym_binary_plus] = ACTIONS(4468), + [sym_binary_minus] = ACTIONS(4468), + [sym_binary_wrapping_plus] = ACTIONS(4468), + [sym_binary_wrapping_minus] = ACTIONS(4468), + [sym__binary_star] = ACTIONS(4468), + [sym__binary_double_star] = ACTIONS(4468), + [sym_binary_ampersand] = ACTIONS(4468), + [sym__binary_slash] = ACTIONS(4468), + [sym__binary_double_slash] = ACTIONS(4468), + [sym__modifier_if_keyword] = ACTIONS(4468), + [sym__modifier_unless_keyword] = ACTIONS(4468), + [sym__modifier_rescue_keyword] = ACTIONS(4468), + [sym__regular_ensure_keyword] = ACTIONS(4468), + [sym__modifier_ensure_keyword] = ACTIONS(4468), + [sym__modulo_operator] = ACTIONS(4468), [sym__heredoc_body_start] = ACTIONS(7), }, [2211] = { [sym_heredoc_body] = STATE(2211), - [sym_typeof] = STATE(3166), - [sym_constant] = STATE(2803), - [sym__type] = STATE(2875), - [sym_class_type] = STATE(3166), - [sym_union_type] = STATE(3166), - [sym__parenthesized_type] = STATE(3166), - [sym_no_args_proc_type] = STATE(3166), - [sym_parenthesized_proc_type] = STATE(3166), - [sym_tuple_type] = STATE(3166), - [sym_named_tuple_type] = STATE(3166), - [sym_generic_instance_type] = STATE(3166), - [sym_nilable_type] = STATE(3166), - [sym_pointer_type] = STATE(3166), - [sym_static_array_type] = STATE(3166), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(5136), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(5138), - [anon_sym_end] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_PIPE] = ACTIONS(4429), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ_GT] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_BANG_TILDE] = ACTIONS(4431), - [anon_sym_EQ_TILDE] = ACTIONS(4431), - [anon_sym_AMP_STAR] = ACTIONS(4429), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_typeof] = ACTIONS(5089), - [sym__constant_segment] = ACTIONS(2890), - [anon_sym_COLON_COLON] = ACTIONS(445), - [sym_self] = ACTIONS(5091), - [sym_underscore_type] = ACTIONS(5091), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_do] = ACTIONS(4431), - [sym__line_break] = ACTIONS(4431), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4431), - [sym__start_of_tuple_type] = ACTIONS(5093), - [sym__start_of_named_tuple_type] = ACTIONS(5095), - [sym__start_of_index_operator] = ACTIONS(4431), - [sym_binary_plus] = ACTIONS(4431), - [sym_binary_minus] = ACTIONS(4431), - [sym_binary_wrapping_plus] = ACTIONS(4431), - [sym_binary_wrapping_minus] = ACTIONS(4431), - [sym__binary_star] = ACTIONS(4431), - [sym__binary_double_star] = ACTIONS(4431), - [sym_binary_ampersand] = ACTIONS(4431), - [sym__binary_slash] = ACTIONS(4431), - [sym__binary_double_slash] = ACTIONS(4431), - [sym__modifier_if_keyword] = ACTIONS(4431), - [sym__modifier_unless_keyword] = ACTIONS(4431), - [sym__modifier_rescue_keyword] = ACTIONS(4431), - [sym__regular_ensure_keyword] = ACTIONS(4431), - [sym__modifier_ensure_keyword] = ACTIONS(4431), - [sym__modulo_operator] = ACTIONS(4431), + [sym_typeof] = STATE(2993), + [sym_constant] = STATE(2829), + [sym__type] = STATE(3007), + [sym_class_type] = STATE(2993), + [sym_union_type] = STATE(2993), + [sym__parenthesized_type] = STATE(2993), + [sym_no_args_proc_type] = STATE(2993), + [sym_parenthesized_proc_type] = STATE(2993), + [sym_tuple_type] = STATE(2993), + [sym_named_tuple_type] = STATE(2993), + [sym_generic_instance_type] = STATE(2993), + [sym_nilable_type] = STATE(2993), + [sym_pointer_type] = STATE(2993), + [sym_static_array_type] = STATE(2993), + [anon_sym_SEMI] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(5121), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4446), + [anon_sym_DASH_GT] = ACTIONS(5123), + [anon_sym_end] = ACTIONS(4446), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ_GT] = ACTIONS(4446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4446), + [anon_sym_BANG_TILDE] = ACTIONS(4446), + [anon_sym_EQ_TILDE] = ACTIONS(4446), + [anon_sym_AMP_STAR] = ACTIONS(4444), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4444), + [anon_sym_EQ] = ACTIONS(4444), + [anon_sym_typeof] = ACTIONS(5125), + [sym__constant_segment] = ACTIONS(2921), + [anon_sym_COLON_COLON] = ACTIONS(451), + [sym_self] = ACTIONS(5127), + [sym_underscore_type] = ACTIONS(5127), + [anon_sym_QMARK] = ACTIONS(4446), + [anon_sym_AMP_AMP] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4446), + [anon_sym_do] = ACTIONS(4446), + [sym__line_break] = ACTIONS(4446), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4446), + [sym__start_of_tuple_type] = ACTIONS(5129), + [sym__start_of_named_tuple_type] = ACTIONS(5131), + [sym__start_of_index_operator] = ACTIONS(4446), + [sym_binary_plus] = ACTIONS(4446), + [sym_binary_minus] = ACTIONS(4446), + [sym_binary_wrapping_plus] = ACTIONS(4446), + [sym_binary_wrapping_minus] = ACTIONS(4446), + [sym__binary_star] = ACTIONS(4446), + [sym__binary_double_star] = ACTIONS(4446), + [sym_binary_ampersand] = ACTIONS(4446), + [sym__binary_slash] = ACTIONS(4446), + [sym__binary_double_slash] = ACTIONS(4446), + [sym__modifier_if_keyword] = ACTIONS(4446), + [sym__modifier_unless_keyword] = ACTIONS(4446), + [sym__modifier_rescue_keyword] = ACTIONS(4446), + [sym__regular_ensure_keyword] = ACTIONS(4446), + [sym__modifier_ensure_keyword] = ACTIONS(4446), + [sym__modulo_operator] = ACTIONS(4446), [sym__heredoc_body_start] = ACTIONS(7), }, [2212] = { [sym_heredoc_body] = STATE(2212), - [sym_typeof] = STATE(3524), - [sym_constant] = STATE(3273), - [sym__type] = STATE(3300), - [sym_class_type] = STATE(3524), - [sym_union_type] = STATE(3524), - [sym__parenthesized_type] = STATE(3524), - [sym_no_args_proc_type] = STATE(3524), - [sym_parenthesized_proc_type] = STATE(3524), - [sym_tuple_type] = STATE(3524), - [sym_named_tuple_type] = STATE(3524), - [sym_generic_instance_type] = STATE(3524), - [sym_nilable_type] = STATE(3524), - [sym_pointer_type] = STATE(3524), - [sym_static_array_type] = STATE(3524), - [anon_sym_LPAREN] = ACTIONS(5205), - [anon_sym_RPAREN] = ACTIONS(4325), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_RBRACK] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5207), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5210), - [sym__constant_segment] = ACTIONS(5212), - [anon_sym_COLON_COLON] = ACTIONS(5214), - [sym_self] = ACTIONS(5216), - [sym_underscore_type] = ACTIONS(5216), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_COLON2] = ACTIONS(4323), - [anon_sym_else] = ACTIONS(4325), - [anon_sym_when] = ACTIONS(4325), - [anon_sym_in] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5218), - [sym__start_of_named_tuple_type] = ACTIONS(5220), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(3587), + [sym_constant] = STATE(3191), + [sym__type] = STATE(3193), + [sym_class_type] = STATE(3587), + [sym_union_type] = STATE(3587), + [sym__parenthesized_type] = STATE(3587), + [sym_no_args_proc_type] = STATE(3587), + [sym_parenthesized_proc_type] = STATE(3587), + [sym_tuple_type] = STATE(3587), + [sym_named_tuple_type] = STATE(3587), + [sym_generic_instance_type] = STATE(3587), + [sym_nilable_type] = STATE(3587), + [sym_pointer_type] = STATE(3587), + [sym_static_array_type] = STATE(3587), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(5247), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5249), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5252), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [sym_self] = ACTIONS(5254), + [sym_underscore_type] = ACTIONS(5254), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [sym__line_break] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5256), + [sym__start_of_named_tuple_type] = ACTIONS(5258), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modifier_if_keyword] = ACTIONS(4412), + [sym__modifier_unless_keyword] = ACTIONS(4412), + [sym__modifier_rescue_keyword] = ACTIONS(4412), + [sym__regular_ensure_keyword] = ACTIONS(4412), + [sym__modifier_ensure_keyword] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2213] = { [sym_heredoc_body] = STATE(2213), - [sym_typeof] = STATE(3524), - [sym_constant] = STATE(3273), - [sym__type] = STATE(3411), - [sym_class_type] = STATE(3524), - [sym_union_type] = STATE(3524), - [sym__parenthesized_type] = STATE(3524), - [sym_no_args_proc_type] = STATE(3524), - [sym_parenthesized_proc_type] = STATE(3524), - [sym_tuple_type] = STATE(3524), - [sym_named_tuple_type] = STATE(3524), - [sym_generic_instance_type] = STATE(3524), - [sym_nilable_type] = STATE(3524), - [sym_pointer_type] = STATE(3524), - [sym_static_array_type] = STATE(3524), - [anon_sym_LPAREN] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(4325), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_RBRACK] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5224), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5210), - [sym__constant_segment] = ACTIONS(5212), - [anon_sym_COLON_COLON] = ACTIONS(5214), - [sym_self] = ACTIONS(5216), - [sym_underscore_type] = ACTIONS(5216), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_COLON2] = ACTIONS(4323), - [anon_sym_else] = ACTIONS(4325), - [anon_sym_when] = ACTIONS(4325), - [anon_sym_in] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5218), - [sym__start_of_named_tuple_type] = ACTIONS(5220), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(3579), + [sym_constant] = STATE(3316), + [sym__type] = STATE(3225), + [sym_class_type] = STATE(3579), + [sym_union_type] = STATE(3579), + [sym__parenthesized_type] = STATE(3579), + [sym_no_args_proc_type] = STATE(3579), + [sym_parenthesized_proc_type] = STATE(3579), + [sym_tuple_type] = STATE(3579), + [sym_named_tuple_type] = STATE(3579), + [sym_generic_instance_type] = STATE(3579), + [sym_nilable_type] = STATE(3579), + [sym_pointer_type] = STATE(3579), + [sym_static_array_type] = STATE(3579), + [anon_sym_LPAREN] = ACTIONS(5239), + [anon_sym_RPAREN] = ACTIONS(4362), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4362), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_RBRACK] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5260), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5223), + [sym__constant_segment] = ACTIONS(5225), + [anon_sym_COLON_COLON] = ACTIONS(5227), + [sym_self] = ACTIONS(5229), + [sym_underscore_type] = ACTIONS(5229), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_COLON2] = ACTIONS(4360), + [anon_sym_else] = ACTIONS(4362), + [anon_sym_when] = ACTIONS(4362), + [anon_sym_in] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5231), + [sym__start_of_named_tuple_type] = ACTIONS(5233), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2214] = { [sym_heredoc_body] = STATE(2214), - [sym_typeof] = STATE(3524), - [sym_constant] = STATE(3273), - [sym__type] = STATE(3372), - [sym_class_type] = STATE(3524), - [sym_union_type] = STATE(3524), - [sym__parenthesized_type] = STATE(3524), - [sym_no_args_proc_type] = STATE(3524), - [sym_parenthesized_proc_type] = STATE(3524), - [sym_tuple_type] = STATE(3524), - [sym_named_tuple_type] = STATE(3524), - [sym_generic_instance_type] = STATE(3524), - [sym_nilable_type] = STATE(3524), - [sym_pointer_type] = STATE(3524), - [sym_static_array_type] = STATE(3524), - [anon_sym_LPAREN] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(4353), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RBRACK] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5224), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5210), - [sym__constant_segment] = ACTIONS(5212), - [anon_sym_COLON_COLON] = ACTIONS(5214), - [sym_self] = ACTIONS(5216), - [sym_underscore_type] = ACTIONS(5216), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_COLON2] = ACTIONS(4351), - [anon_sym_else] = ACTIONS(4353), - [anon_sym_when] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5218), - [sym__start_of_named_tuple_type] = ACTIONS(5220), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(3587), + [sym_constant] = STATE(3191), + [sym__type] = STATE(3537), + [sym_class_type] = STATE(3587), + [sym_union_type] = STATE(3587), + [sym__parenthesized_type] = STATE(3587), + [sym_no_args_proc_type] = STATE(3587), + [sym_parenthesized_proc_type] = STATE(3587), + [sym_tuple_type] = STATE(3587), + [sym_named_tuple_type] = STATE(3587), + [sym_generic_instance_type] = STATE(3587), + [sym_nilable_type] = STATE(3587), + [sym_pointer_type] = STATE(3587), + [sym_static_array_type] = STATE(3587), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(5263), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5265), + [anon_sym_end] = ACTIONS(4412), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5252), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [sym_self] = ACTIONS(5254), + [sym_underscore_type] = ACTIONS(5254), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [sym__line_break] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5256), + [sym__start_of_named_tuple_type] = ACTIONS(5258), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modifier_if_keyword] = ACTIONS(4412), + [sym__modifier_unless_keyword] = ACTIONS(4412), + [sym__modifier_rescue_keyword] = ACTIONS(4412), + [sym__regular_ensure_keyword] = ACTIONS(4412), + [sym__modifier_ensure_keyword] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2215] = { [sym_heredoc_body] = STATE(2215), - [sym_typeof] = STATE(3524), - [sym_constant] = STATE(3273), - [sym__type] = STATE(3374), - [sym_class_type] = STATE(3524), - [sym_union_type] = STATE(3524), - [sym__parenthesized_type] = STATE(3524), - [sym_no_args_proc_type] = STATE(3524), - [sym_parenthesized_proc_type] = STATE(3524), - [sym_tuple_type] = STATE(3524), - [sym_named_tuple_type] = STATE(3524), - [sym_generic_instance_type] = STATE(3524), - [sym_nilable_type] = STATE(3524), - [sym_pointer_type] = STATE(3524), - [sym_static_array_type] = STATE(3524), - [anon_sym_LPAREN] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(4375), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_RBRACK] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5224), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5210), - [sym__constant_segment] = ACTIONS(5212), - [anon_sym_COLON_COLON] = ACTIONS(5214), - [sym_self] = ACTIONS(5216), - [sym_underscore_type] = ACTIONS(5216), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_COLON2] = ACTIONS(4373), - [anon_sym_else] = ACTIONS(4375), - [anon_sym_when] = ACTIONS(4375), - [anon_sym_in] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5218), - [sym__start_of_named_tuple_type] = ACTIONS(5220), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(3587), + [sym_constant] = STATE(3191), + [sym__type] = STATE(3547), + [sym_class_type] = STATE(3587), + [sym_union_type] = STATE(3587), + [sym__parenthesized_type] = STATE(3587), + [sym_no_args_proc_type] = STATE(3587), + [sym_parenthesized_proc_type] = STATE(3587), + [sym_tuple_type] = STATE(3587), + [sym_named_tuple_type] = STATE(3587), + [sym_generic_instance_type] = STATE(3587), + [sym_nilable_type] = STATE(3587), + [sym_pointer_type] = STATE(3587), + [sym_static_array_type] = STATE(3587), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(5263), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5265), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5252), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [sym_self] = ACTIONS(5254), + [sym_underscore_type] = ACTIONS(5254), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [sym__line_break] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5256), + [sym__start_of_named_tuple_type] = ACTIONS(5258), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modifier_if_keyword] = ACTIONS(4390), + [sym__modifier_unless_keyword] = ACTIONS(4390), + [sym__modifier_rescue_keyword] = ACTIONS(4390), + [sym__regular_ensure_keyword] = ACTIONS(4390), + [sym__modifier_ensure_keyword] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2216] = { [sym_heredoc_body] = STATE(2216), - [sym_typeof] = STATE(3524), - [sym_constant] = STATE(3273), - [sym__type] = STATE(3244), - [sym_class_type] = STATE(3524), - [sym_union_type] = STATE(3524), - [sym__parenthesized_type] = STATE(3524), - [sym_no_args_proc_type] = STATE(3524), - [sym_parenthesized_proc_type] = STATE(3524), - [sym_tuple_type] = STATE(3524), - [sym_named_tuple_type] = STATE(3524), - [sym_generic_instance_type] = STATE(3524), - [sym_nilable_type] = STATE(3524), - [sym_pointer_type] = STATE(3524), - [sym_static_array_type] = STATE(3524), - [anon_sym_LPAREN] = ACTIONS(5205), - [anon_sym_RPAREN] = ACTIONS(4353), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RBRACK] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5226), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5210), - [sym__constant_segment] = ACTIONS(5212), - [anon_sym_COLON_COLON] = ACTIONS(5214), - [sym_self] = ACTIONS(5216), - [sym_underscore_type] = ACTIONS(5216), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_COLON2] = ACTIONS(4351), - [anon_sym_else] = ACTIONS(4353), - [anon_sym_when] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5218), - [sym__start_of_named_tuple_type] = ACTIONS(5220), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(3587), + [sym_constant] = STATE(3191), + [sym__type] = STATE(3204), + [sym_class_type] = STATE(3587), + [sym_union_type] = STATE(3587), + [sym__parenthesized_type] = STATE(3587), + [sym_no_args_proc_type] = STATE(3587), + [sym_parenthesized_proc_type] = STATE(3587), + [sym_tuple_type] = STATE(3587), + [sym_named_tuple_type] = STATE(3587), + [sym_generic_instance_type] = STATE(3587), + [sym_nilable_type] = STATE(3587), + [sym_pointer_type] = STATE(3587), + [sym_static_array_type] = STATE(3587), + [anon_sym_SEMI] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(5247), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5267), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5252), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [sym_self] = ACTIONS(5254), + [sym_underscore_type] = ACTIONS(5254), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [sym__line_break] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5256), + [sym__start_of_named_tuple_type] = ACTIONS(5258), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modifier_if_keyword] = ACTIONS(4362), + [sym__modifier_unless_keyword] = ACTIONS(4362), + [sym__modifier_rescue_keyword] = ACTIONS(4362), + [sym__regular_ensure_keyword] = ACTIONS(4362), + [sym__modifier_ensure_keyword] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2217] = { [sym_heredoc_body] = STATE(2217), - [sym_typeof] = STATE(3524), - [sym_constant] = STATE(3273), - [sym__type] = STATE(3245), - [sym_class_type] = STATE(3524), - [sym_union_type] = STATE(3524), - [sym__parenthesized_type] = STATE(3524), - [sym_no_args_proc_type] = STATE(3524), - [sym_parenthesized_proc_type] = STATE(3524), - [sym_tuple_type] = STATE(3524), - [sym_named_tuple_type] = STATE(3524), - [sym_generic_instance_type] = STATE(3524), - [sym_nilable_type] = STATE(3524), - [sym_pointer_type] = STATE(3524), - [sym_static_array_type] = STATE(3524), - [anon_sym_LPAREN] = ACTIONS(5205), - [anon_sym_RPAREN] = ACTIONS(4375), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4375), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_RBRACK] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5229), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5210), - [sym__constant_segment] = ACTIONS(5212), - [anon_sym_COLON_COLON] = ACTIONS(5214), - [sym_self] = ACTIONS(5216), - [sym_underscore_type] = ACTIONS(5216), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_COLON2] = ACTIONS(4373), - [anon_sym_else] = ACTIONS(4375), - [anon_sym_when] = ACTIONS(4375), - [anon_sym_in] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5218), - [sym__start_of_named_tuple_type] = ACTIONS(5220), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(3587), + [sym_constant] = STATE(3191), + [sym__type] = STATE(3548), + [sym_class_type] = STATE(3587), + [sym_union_type] = STATE(3587), + [sym__parenthesized_type] = STATE(3587), + [sym_no_args_proc_type] = STATE(3587), + [sym_parenthesized_proc_type] = STATE(3587), + [sym_tuple_type] = STATE(3587), + [sym_named_tuple_type] = STATE(3587), + [sym_generic_instance_type] = STATE(3587), + [sym_nilable_type] = STATE(3587), + [sym_pointer_type] = STATE(3587), + [sym_static_array_type] = STATE(3587), + [anon_sym_SEMI] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(5263), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5265), + [anon_sym_end] = ACTIONS(4362), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5252), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [sym_self] = ACTIONS(5254), + [sym_underscore_type] = ACTIONS(5254), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [sym__line_break] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5256), + [sym__start_of_named_tuple_type] = ACTIONS(5258), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modifier_if_keyword] = ACTIONS(4362), + [sym__modifier_unless_keyword] = ACTIONS(4362), + [sym__modifier_rescue_keyword] = ACTIONS(4362), + [sym__regular_ensure_keyword] = ACTIONS(4362), + [sym__modifier_ensure_keyword] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2218] = { [sym_heredoc_body] = STATE(2218), - [ts_builtin_sym_end] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(163), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(191), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(191), - [anon_sym_DASH_EQ] = ACTIONS(191), - [anon_sym_AMP_DASH_EQ] = ACTIONS(191), - [anon_sym_STAR_EQ] = ACTIONS(191), - [anon_sym_AMP_STAR_EQ] = ACTIONS(191), - [anon_sym_SLASH_EQ] = ACTIONS(191), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(191), - [anon_sym_PERCENT_EQ] = ACTIONS(191), - [anon_sym_PIPE_EQ] = ACTIONS(191), - [anon_sym_AMP_EQ] = ACTIONS(191), - [anon_sym_CARET_EQ] = ACTIONS(191), - [anon_sym_STAR_STAR_EQ] = ACTIONS(191), - [anon_sym_LT_LT_EQ] = ACTIONS(191), - [anon_sym_GT_GT_EQ] = ACTIONS(191), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(191), - [anon_sym_AMP_AMP_EQ] = ACTIONS(191), - [anon_sym_do] = ACTIONS(133), - [anon_sym_elsif] = ACTIONS(133), - [anon_sym_else] = ACTIONS(133), - [anon_sym_when] = ACTIONS(133), - [anon_sym_in] = ACTIONS(133), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(133), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [sym_typeof] = STATE(2897), + [sym_constant] = STATE(2784), + [sym__type] = STATE(2913), + [sym_class_type] = STATE(2897), + [sym_union_type] = STATE(2897), + [sym__parenthesized_type] = STATE(2897), + [sym_no_args_proc_type] = STATE(2897), + [sym_parenthesized_proc_type] = STATE(2897), + [sym_tuple_type] = STATE(2897), + [sym_named_tuple_type] = STATE(2897), + [sym_generic_instance_type] = STATE(2897), + [sym_nilable_type] = STATE(2897), + [sym_pointer_type] = STATE(2897), + [sym_static_array_type] = STATE(2897), + [anon_sym_SEMI] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(5133), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4468), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4468), + [anon_sym_DASH_GT] = ACTIONS(5135), + [anon_sym_end] = ACTIONS(4468), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_CARET] = ACTIONS(4468), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(4468), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ_GT] = ACTIONS(4468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), + [anon_sym_BANG_TILDE] = ACTIONS(4468), + [anon_sym_EQ_TILDE] = ACTIONS(4468), + [anon_sym_AMP_STAR] = ACTIONS(4466), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(4466), + [anon_sym_typeof] = ACTIONS(5137), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [sym_self] = ACTIONS(5139), + [sym_underscore_type] = ACTIONS(5139), + [anon_sym_QMARK] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(4468), + [anon_sym_else] = ACTIONS(4468), + [sym__line_break] = ACTIONS(4468), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5141), + [sym__start_of_named_tuple_type] = ACTIONS(5143), + [sym__start_of_index_operator] = ACTIONS(4468), + [sym_binary_plus] = ACTIONS(4468), + [sym_binary_minus] = ACTIONS(4468), + [sym_binary_wrapping_plus] = ACTIONS(4468), + [sym_binary_wrapping_minus] = ACTIONS(4468), + [sym__binary_star] = ACTIONS(4468), + [sym__binary_double_star] = ACTIONS(4468), + [sym_binary_ampersand] = ACTIONS(4468), + [sym__binary_slash] = ACTIONS(4468), + [sym__binary_double_slash] = ACTIONS(4468), + [sym__modifier_if_keyword] = ACTIONS(4468), + [sym__modifier_unless_keyword] = ACTIONS(4468), + [sym__regular_rescue_keyword] = ACTIONS(4468), + [sym__modifier_rescue_keyword] = ACTIONS(4468), + [sym__regular_ensure_keyword] = ACTIONS(4468), + [sym__modifier_ensure_keyword] = ACTIONS(4468), + [sym__modulo_operator] = ACTIONS(4468), [sym__heredoc_body_start] = ACTIONS(7), }, [2219] = { [sym_heredoc_body] = STATE(2219), - [sym_typeof] = STATE(2978), - [sym_constant] = STATE(2865), - [sym__type] = STATE(3024), - [sym_class_type] = STATE(2978), - [sym_union_type] = STATE(2978), - [sym__parenthesized_type] = STATE(2978), - [sym_no_args_proc_type] = STATE(2978), - [sym_parenthesized_proc_type] = STATE(2978), - [sym_tuple_type] = STATE(2978), - [sym_named_tuple_type] = STATE(2978), - [sym_generic_instance_type] = STATE(2978), - [sym_nilable_type] = STATE(2978), - [sym_pointer_type] = STATE(2978), - [sym_static_array_type] = STATE(2978), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(5140), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(5142), - [anon_sym_end] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_PIPE] = ACTIONS(4429), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ_GT] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_BANG_TILDE] = ACTIONS(4431), - [anon_sym_EQ_TILDE] = ACTIONS(4431), - [anon_sym_AMP_STAR] = ACTIONS(4429), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_typeof] = ACTIONS(5102), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [sym_self] = ACTIONS(5104), - [sym_underscore_type] = ACTIONS(5104), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_else] = ACTIONS(4431), - [sym__line_break] = ACTIONS(4431), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5106), - [sym__start_of_named_tuple_type] = ACTIONS(5108), - [sym__start_of_index_operator] = ACTIONS(4431), - [sym_binary_plus] = ACTIONS(4431), - [sym_binary_minus] = ACTIONS(4431), - [sym_binary_wrapping_plus] = ACTIONS(4431), - [sym_binary_wrapping_minus] = ACTIONS(4431), - [sym__binary_star] = ACTIONS(4431), - [sym__binary_double_star] = ACTIONS(4431), - [sym_binary_ampersand] = ACTIONS(4431), - [sym__binary_slash] = ACTIONS(4431), - [sym__binary_double_slash] = ACTIONS(4431), - [sym__modifier_if_keyword] = ACTIONS(4431), - [sym__modifier_unless_keyword] = ACTIONS(4431), - [sym__regular_rescue_keyword] = ACTIONS(4431), - [sym__modifier_rescue_keyword] = ACTIONS(4431), - [sym__regular_ensure_keyword] = ACTIONS(4431), - [sym__modifier_ensure_keyword] = ACTIONS(4431), - [sym__modulo_operator] = ACTIONS(4431), + [sym_typeof] = STATE(2897), + [sym_constant] = STATE(2784), + [sym__type] = STATE(2912), + [sym_class_type] = STATE(2897), + [sym_union_type] = STATE(2897), + [sym__parenthesized_type] = STATE(2897), + [sym_no_args_proc_type] = STATE(2897), + [sym_parenthesized_proc_type] = STATE(2897), + [sym_tuple_type] = STATE(2897), + [sym_named_tuple_type] = STATE(2897), + [sym_generic_instance_type] = STATE(2897), + [sym_nilable_type] = STATE(2897), + [sym_pointer_type] = STATE(2897), + [sym_static_array_type] = STATE(2897), + [anon_sym_SEMI] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(5133), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4446), + [anon_sym_DASH_GT] = ACTIONS(5135), + [anon_sym_end] = ACTIONS(4446), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ_GT] = ACTIONS(4446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4446), + [anon_sym_BANG_TILDE] = ACTIONS(4446), + [anon_sym_EQ_TILDE] = ACTIONS(4446), + [anon_sym_AMP_STAR] = ACTIONS(4444), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4444), + [anon_sym_EQ] = ACTIONS(4444), + [anon_sym_typeof] = ACTIONS(5137), + [sym__constant_segment] = ACTIONS(1417), + [anon_sym_COLON_COLON] = ACTIONS(1315), + [sym_self] = ACTIONS(5139), + [sym_underscore_type] = ACTIONS(5139), + [anon_sym_QMARK] = ACTIONS(4446), + [anon_sym_AMP_AMP] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4446), + [anon_sym_else] = ACTIONS(4446), + [sym__line_break] = ACTIONS(4446), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5141), + [sym__start_of_named_tuple_type] = ACTIONS(5143), + [sym__start_of_index_operator] = ACTIONS(4446), + [sym_binary_plus] = ACTIONS(4446), + [sym_binary_minus] = ACTIONS(4446), + [sym_binary_wrapping_plus] = ACTIONS(4446), + [sym_binary_wrapping_minus] = ACTIONS(4446), + [sym__binary_star] = ACTIONS(4446), + [sym__binary_double_star] = ACTIONS(4446), + [sym_binary_ampersand] = ACTIONS(4446), + [sym__binary_slash] = ACTIONS(4446), + [sym__binary_double_slash] = ACTIONS(4446), + [sym__modifier_if_keyword] = ACTIONS(4446), + [sym__modifier_unless_keyword] = ACTIONS(4446), + [sym__regular_rescue_keyword] = ACTIONS(4446), + [sym__modifier_rescue_keyword] = ACTIONS(4446), + [sym__regular_ensure_keyword] = ACTIONS(4446), + [sym__modifier_ensure_keyword] = ACTIONS(4446), + [sym__modulo_operator] = ACTIONS(4446), [sym__heredoc_body_start] = ACTIONS(7), }, [2220] = { [sym_heredoc_body] = STATE(2220), - [sym_typeof] = STATE(2978), - [sym_constant] = STATE(2865), - [sym__type] = STATE(3022), - [sym_class_type] = STATE(2978), - [sym_union_type] = STATE(2978), - [sym__parenthesized_type] = STATE(2978), - [sym_no_args_proc_type] = STATE(2978), - [sym_parenthesized_proc_type] = STATE(2978), - [sym_tuple_type] = STATE(2978), - [sym_named_tuple_type] = STATE(2978), - [sym_generic_instance_type] = STATE(2978), - [sym_nilable_type] = STATE(2978), - [sym_pointer_type] = STATE(2978), - [sym_static_array_type] = STATE(2978), - [anon_sym_SEMI] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(5140), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4409), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4409), - [anon_sym_DASH_GT] = ACTIONS(5142), - [anon_sym_end] = ACTIONS(4409), - [anon_sym_LT] = ACTIONS(4407), - [anon_sym_PIPE] = ACTIONS(4407), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym_GT_GT] = ACTIONS(4409), - [anon_sym_LT_LT] = ACTIONS(4409), - [anon_sym_EQ_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ_GT] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), - [anon_sym_BANG_TILDE] = ACTIONS(4409), - [anon_sym_EQ_TILDE] = ACTIONS(4409), - [anon_sym_AMP_STAR] = ACTIONS(4407), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4409), - [anon_sym_DOT] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4407), - [anon_sym_typeof] = ACTIONS(5102), - [sym__constant_segment] = ACTIONS(1397), - [anon_sym_COLON_COLON] = ACTIONS(1299), - [sym_self] = ACTIONS(5104), - [sym_underscore_type] = ACTIONS(5104), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_AMP_AMP] = ACTIONS(4409), - [anon_sym_PIPE_PIPE] = ACTIONS(4409), - [anon_sym_else] = ACTIONS(4409), - [sym__line_break] = ACTIONS(4409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5106), - [sym__start_of_named_tuple_type] = ACTIONS(5108), - [sym__start_of_index_operator] = ACTIONS(4409), - [sym_binary_plus] = ACTIONS(4409), - [sym_binary_minus] = ACTIONS(4409), - [sym_binary_wrapping_plus] = ACTIONS(4409), - [sym_binary_wrapping_minus] = ACTIONS(4409), - [sym__binary_star] = ACTIONS(4409), - [sym__binary_double_star] = ACTIONS(4409), - [sym_binary_ampersand] = ACTIONS(4409), - [sym__binary_slash] = ACTIONS(4409), - [sym__binary_double_slash] = ACTIONS(4409), - [sym__modifier_if_keyword] = ACTIONS(4409), - [sym__modifier_unless_keyword] = ACTIONS(4409), - [sym__regular_rescue_keyword] = ACTIONS(4409), - [sym__modifier_rescue_keyword] = ACTIONS(4409), - [sym__regular_ensure_keyword] = ACTIONS(4409), - [sym__modifier_ensure_keyword] = ACTIONS(4409), - [sym__modulo_operator] = ACTIONS(4409), + [sym_typeof] = STATE(2943), + [sym_constant] = STATE(2804), + [sym__type] = STATE(2972), + [sym_class_type] = STATE(2943), + [sym_union_type] = STATE(2943), + [sym__parenthesized_type] = STATE(2943), + [sym_no_args_proc_type] = STATE(2943), + [sym_parenthesized_proc_type] = STATE(2943), + [sym_tuple_type] = STATE(2943), + [sym_named_tuple_type] = STATE(2943), + [sym_generic_instance_type] = STATE(2943), + [sym_nilable_type] = STATE(2943), + [sym_pointer_type] = STATE(2943), + [sym_static_array_type] = STATE(2943), + [anon_sym_LPAREN] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(4446), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4446), + [anon_sym_COMMA] = ACTIONS(4446), + [anon_sym_RBRACK] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4446), + [anon_sym_DASH_GT] = ACTIONS(5172), + [anon_sym_end] = ACTIONS(4446), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ_GT] = ACTIONS(4446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4446), + [anon_sym_BANG_TILDE] = ACTIONS(4446), + [anon_sym_EQ_TILDE] = ACTIONS(4446), + [anon_sym_AMP_STAR] = ACTIONS(4444), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4444), + [anon_sym_EQ] = ACTIONS(4444), + [anon_sym_typeof] = ACTIONS(5150), + [sym__constant_segment] = ACTIONS(5152), + [anon_sym_COLON_COLON] = ACTIONS(5154), + [sym_self] = ACTIONS(5156), + [sym_underscore_type] = ACTIONS(5156), + [anon_sym_QMARK] = ACTIONS(4446), + [anon_sym_AMP_AMP] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4446), + [anon_sym_COLON2] = ACTIONS(4444), + [anon_sym_do] = ACTIONS(4446), + [anon_sym_else] = ACTIONS(4446), + [anon_sym_when] = ACTIONS(4446), + [anon_sym_in] = ACTIONS(4446), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4446), + [sym__start_of_tuple_type] = ACTIONS(5158), + [sym__start_of_named_tuple_type] = ACTIONS(5160), + [sym__start_of_index_operator] = ACTIONS(4446), + [sym_binary_plus] = ACTIONS(4446), + [sym_binary_minus] = ACTIONS(4446), + [sym_binary_wrapping_plus] = ACTIONS(4446), + [sym_binary_wrapping_minus] = ACTIONS(4446), + [sym__binary_star] = ACTIONS(4446), + [sym__binary_double_star] = ACTIONS(4446), + [sym_binary_ampersand] = ACTIONS(4446), + [sym__binary_slash] = ACTIONS(4446), + [sym__binary_double_slash] = ACTIONS(4446), + [sym__modulo_operator] = ACTIONS(4446), [sym__heredoc_body_start] = ACTIONS(7), }, [2221] = { [sym_heredoc_body] = STATE(2221), - [sym_typeof] = STATE(3515), - [sym_constant] = STATE(3256), - [sym__type] = STATE(3436), - [sym_class_type] = STATE(3515), - [sym_union_type] = STATE(3515), - [sym__parenthesized_type] = STATE(3515), - [sym_no_args_proc_type] = STATE(3515), - [sym_parenthesized_proc_type] = STATE(3515), - [sym_tuple_type] = STATE(3515), - [sym_named_tuple_type] = STATE(3515), - [sym_generic_instance_type] = STATE(3515), - [sym_nilable_type] = STATE(3515), - [sym_pointer_type] = STATE(3515), - [sym_static_array_type] = STATE(3515), - [anon_sym_SEMI] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(5232), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5234), - [anon_sym_end] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5191), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [sym_self] = ACTIONS(5193), - [sym_underscore_type] = ACTIONS(5193), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [sym__line_break] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5195), - [sym__start_of_named_tuple_type] = ACTIONS(5197), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modifier_if_keyword] = ACTIONS(4325), - [sym__modifier_unless_keyword] = ACTIONS(4325), - [sym__modifier_rescue_keyword] = ACTIONS(4325), - [sym__regular_ensure_keyword] = ACTIONS(4325), - [sym__modifier_ensure_keyword] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(3587), + [sym_constant] = STATE(3191), + [sym__type] = STATE(3187), + [sym_class_type] = STATE(3587), + [sym_union_type] = STATE(3587), + [sym__parenthesized_type] = STATE(3587), + [sym_no_args_proc_type] = STATE(3587), + [sym_parenthesized_proc_type] = STATE(3587), + [sym_tuple_type] = STATE(3587), + [sym_named_tuple_type] = STATE(3587), + [sym_generic_instance_type] = STATE(3587), + [sym_nilable_type] = STATE(3587), + [sym_pointer_type] = STATE(3587), + [sym_static_array_type] = STATE(3587), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(5247), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5270), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5252), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [sym_self] = ACTIONS(5254), + [sym_underscore_type] = ACTIONS(5254), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [sym__line_break] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5256), + [sym__start_of_named_tuple_type] = ACTIONS(5258), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modifier_if_keyword] = ACTIONS(4390), + [sym__modifier_unless_keyword] = ACTIONS(4390), + [sym__modifier_rescue_keyword] = ACTIONS(4390), + [sym__regular_ensure_keyword] = ACTIONS(4390), + [sym__modifier_ensure_keyword] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2222] = { [sym_heredoc_body] = STATE(2222), - [sym_typeof] = STATE(3515), - [sym_constant] = STATE(3256), - [sym__type] = STATE(3442), - [sym_class_type] = STATE(3515), - [sym_union_type] = STATE(3515), - [sym__parenthesized_type] = STATE(3515), - [sym_no_args_proc_type] = STATE(3515), - [sym_parenthesized_proc_type] = STATE(3515), - [sym_tuple_type] = STATE(3515), - [sym_named_tuple_type] = STATE(3515), - [sym_generic_instance_type] = STATE(3515), - [sym_nilable_type] = STATE(3515), - [sym_pointer_type] = STATE(3515), - [sym_static_array_type] = STATE(3515), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5232), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5234), - [anon_sym_end] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5191), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [sym_self] = ACTIONS(5193), - [sym_underscore_type] = ACTIONS(5193), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [sym__line_break] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5195), - [sym__start_of_named_tuple_type] = ACTIONS(5197), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modifier_if_keyword] = ACTIONS(4353), - [sym__modifier_unless_keyword] = ACTIONS(4353), - [sym__modifier_rescue_keyword] = ACTIONS(4353), - [sym__regular_ensure_keyword] = ACTIONS(4353), - [sym__modifier_ensure_keyword] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(3579), + [sym_constant] = STATE(3316), + [sym__type] = STATE(3515), + [sym_class_type] = STATE(3579), + [sym_union_type] = STATE(3579), + [sym__parenthesized_type] = STATE(3579), + [sym_no_args_proc_type] = STATE(3579), + [sym_parenthesized_proc_type] = STATE(3579), + [sym_tuple_type] = STATE(3579), + [sym_named_tuple_type] = STATE(3579), + [sym_generic_instance_type] = STATE(3579), + [sym_nilable_type] = STATE(3579), + [sym_pointer_type] = STATE(3579), + [sym_static_array_type] = STATE(3579), + [anon_sym_LPAREN] = ACTIONS(5219), + [anon_sym_RPAREN] = ACTIONS(4390), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_RBRACK] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5221), + [anon_sym_end] = ACTIONS(4390), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5223), + [sym__constant_segment] = ACTIONS(5225), + [anon_sym_COLON_COLON] = ACTIONS(5227), + [sym_self] = ACTIONS(5229), + [sym_underscore_type] = ACTIONS(5229), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_COLON2] = ACTIONS(4388), + [anon_sym_else] = ACTIONS(4390), + [anon_sym_when] = ACTIONS(4390), + [anon_sym_in] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5231), + [sym__start_of_named_tuple_type] = ACTIONS(5233), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2223] = { [sym_heredoc_body] = STATE(2223), - [sym_typeof] = STATE(3515), - [sym_constant] = STATE(3256), - [sym__type] = STATE(3443), - [sym_class_type] = STATE(3515), - [sym_union_type] = STATE(3515), - [sym__parenthesized_type] = STATE(3515), - [sym_no_args_proc_type] = STATE(3515), - [sym_parenthesized_proc_type] = STATE(3515), - [sym_tuple_type] = STATE(3515), - [sym_named_tuple_type] = STATE(3515), - [sym_generic_instance_type] = STATE(3515), - [sym_nilable_type] = STATE(3515), - [sym_pointer_type] = STATE(3515), - [sym_static_array_type] = STATE(3515), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(5232), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5234), - [anon_sym_end] = ACTIONS(4375), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5191), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [sym_self] = ACTIONS(5193), - [sym_underscore_type] = ACTIONS(5193), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [sym__line_break] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5195), - [sym__start_of_named_tuple_type] = ACTIONS(5197), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modifier_if_keyword] = ACTIONS(4375), - [sym__modifier_unless_keyword] = ACTIONS(4375), - [sym__modifier_rescue_keyword] = ACTIONS(4375), - [sym__regular_ensure_keyword] = ACTIONS(4375), - [sym__modifier_ensure_keyword] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(2943), + [sym_constant] = STATE(2804), + [sym__type] = STATE(2974), + [sym_class_type] = STATE(2943), + [sym_union_type] = STATE(2943), + [sym__parenthesized_type] = STATE(2943), + [sym_no_args_proc_type] = STATE(2943), + [sym_parenthesized_proc_type] = STATE(2943), + [sym_tuple_type] = STATE(2943), + [sym_named_tuple_type] = STATE(2943), + [sym_generic_instance_type] = STATE(2943), + [sym_nilable_type] = STATE(2943), + [sym_pointer_type] = STATE(2943), + [sym_static_array_type] = STATE(2943), + [anon_sym_LPAREN] = ACTIONS(5170), + [anon_sym_RPAREN] = ACTIONS(4468), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4468), + [anon_sym_COMMA] = ACTIONS(4468), + [anon_sym_RBRACK] = ACTIONS(4468), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4468), + [anon_sym_DASH_GT] = ACTIONS(5172), + [anon_sym_end] = ACTIONS(4468), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_CARET] = ACTIONS(4468), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(4468), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ_GT] = ACTIONS(4468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), + [anon_sym_BANG_TILDE] = ACTIONS(4468), + [anon_sym_EQ_TILDE] = ACTIONS(4468), + [anon_sym_AMP_STAR] = ACTIONS(4466), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(4466), + [anon_sym_typeof] = ACTIONS(5150), + [sym__constant_segment] = ACTIONS(5152), + [anon_sym_COLON_COLON] = ACTIONS(5154), + [sym_self] = ACTIONS(5156), + [sym_underscore_type] = ACTIONS(5156), + [anon_sym_QMARK] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(4468), + [anon_sym_COLON2] = ACTIONS(4466), + [anon_sym_do] = ACTIONS(4468), + [anon_sym_else] = ACTIONS(4468), + [anon_sym_when] = ACTIONS(4468), + [anon_sym_in] = ACTIONS(4468), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4468), + [sym__start_of_tuple_type] = ACTIONS(5158), + [sym__start_of_named_tuple_type] = ACTIONS(5160), + [sym__start_of_index_operator] = ACTIONS(4468), + [sym_binary_plus] = ACTIONS(4468), + [sym_binary_minus] = ACTIONS(4468), + [sym_binary_wrapping_plus] = ACTIONS(4468), + [sym_binary_wrapping_minus] = ACTIONS(4468), + [sym__binary_star] = ACTIONS(4468), + [sym__binary_double_star] = ACTIONS(4468), + [sym_binary_ampersand] = ACTIONS(4468), + [sym__binary_slash] = ACTIONS(4468), + [sym__binary_double_slash] = ACTIONS(4468), + [sym__modulo_operator] = ACTIONS(4468), [sym__heredoc_body_start] = ACTIONS(7), }, [2224] = { [sym_heredoc_body] = STATE(2224), - [sym_typeof] = STATE(3092), - [sym_constant] = STATE(2834), - [sym__type] = STATE(3132), - [sym_class_type] = STATE(3092), - [sym_union_type] = STATE(3092), - [sym__parenthesized_type] = STATE(3092), - [sym_no_args_proc_type] = STATE(3092), - [sym_parenthesized_proc_type] = STATE(3092), - [sym_tuple_type] = STATE(3092), - [sym_named_tuple_type] = STATE(3092), - [sym_generic_instance_type] = STATE(3092), - [sym_nilable_type] = STATE(3092), - [sym_pointer_type] = STATE(3092), - [sym_static_array_type] = STATE(3092), - [anon_sym_LPAREN] = ACTIONS(5150), - [anon_sym_RPAREN] = ACTIONS(4409), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4409), - [anon_sym_COMMA] = ACTIONS(4409), - [anon_sym_RBRACK] = ACTIONS(4409), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4409), - [anon_sym_DASH_GT] = ACTIONS(5152), - [anon_sym_end] = ACTIONS(4409), - [anon_sym_LT] = ACTIONS(4407), - [anon_sym_PIPE] = ACTIONS(4407), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym_GT_GT] = ACTIONS(4409), - [anon_sym_LT_LT] = ACTIONS(4409), - [anon_sym_EQ_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ_GT] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), - [anon_sym_BANG_TILDE] = ACTIONS(4409), - [anon_sym_EQ_TILDE] = ACTIONS(4409), - [anon_sym_AMP_STAR] = ACTIONS(4407), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4409), - [anon_sym_DOT] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4407), - [anon_sym_typeof] = ACTIONS(5118), - [sym__constant_segment] = ACTIONS(5120), - [anon_sym_COLON_COLON] = ACTIONS(5122), - [sym_self] = ACTIONS(5124), - [sym_underscore_type] = ACTIONS(5124), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_AMP_AMP] = ACTIONS(4409), - [anon_sym_PIPE_PIPE] = ACTIONS(4409), - [anon_sym_COLON2] = ACTIONS(4407), - [anon_sym_do] = ACTIONS(4409), - [anon_sym_else] = ACTIONS(4409), - [anon_sym_when] = ACTIONS(4409), - [anon_sym_in] = ACTIONS(4409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4409), - [sym__start_of_tuple_type] = ACTIONS(5126), - [sym__start_of_named_tuple_type] = ACTIONS(5128), - [sym__start_of_index_operator] = ACTIONS(4409), - [sym_binary_plus] = ACTIONS(4409), - [sym_binary_minus] = ACTIONS(4409), - [sym_binary_wrapping_plus] = ACTIONS(4409), - [sym_binary_wrapping_minus] = ACTIONS(4409), - [sym__binary_star] = ACTIONS(4409), - [sym__binary_double_star] = ACTIONS(4409), - [sym_binary_ampersand] = ACTIONS(4409), - [sym__binary_slash] = ACTIONS(4409), - [sym__binary_double_slash] = ACTIONS(4409), - [sym__modulo_operator] = ACTIONS(4409), + [ts_builtin_sym_end] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(247), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(253), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(253), + [anon_sym_DASH_EQ] = ACTIONS(253), + [anon_sym_AMP_DASH_EQ] = ACTIONS(253), + [anon_sym_STAR_EQ] = ACTIONS(253), + [anon_sym_AMP_STAR_EQ] = ACTIONS(253), + [anon_sym_SLASH_EQ] = ACTIONS(253), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(253), + [anon_sym_PERCENT_EQ] = ACTIONS(253), + [anon_sym_PIPE_EQ] = ACTIONS(253), + [anon_sym_AMP_EQ] = ACTIONS(253), + [anon_sym_CARET_EQ] = ACTIONS(253), + [anon_sym_STAR_STAR_EQ] = ACTIONS(253), + [anon_sym_LT_LT_EQ] = ACTIONS(253), + [anon_sym_GT_GT_EQ] = ACTIONS(253), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(253), + [anon_sym_AMP_AMP_EQ] = ACTIONS(253), + [anon_sym_do] = ACTIONS(135), + [anon_sym_elsif] = ACTIONS(135), + [anon_sym_else] = ACTIONS(135), + [anon_sym_when] = ACTIONS(135), + [anon_sym_in] = ACTIONS(135), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(135), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2225] = { [sym_heredoc_body] = STATE(2225), - [sym_typeof] = STATE(3200), - [sym_constant] = STATE(3026), - [sym__type] = STATE(3225), - [sym_class_type] = STATE(3200), - [sym_union_type] = STATE(3200), - [sym__parenthesized_type] = STATE(3200), - [sym_no_args_proc_type] = STATE(3200), - [sym_parenthesized_proc_type] = STATE(3200), - [sym_tuple_type] = STATE(3200), - [sym_named_tuple_type] = STATE(3200), - [sym_generic_instance_type] = STATE(3200), - [sym_nilable_type] = STATE(3200), - [sym_pointer_type] = STATE(3200), - [sym_static_array_type] = STATE(3200), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_RPAREN] = ACTIONS(4409), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4409), - [anon_sym_COMMA] = ACTIONS(4409), - [anon_sym_RBRACK] = ACTIONS(4409), - [anon_sym_EQ_GT] = ACTIONS(4409), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4409), - [anon_sym_DASH_GT] = ACTIONS(5159), - [anon_sym_end] = ACTIONS(4409), - [anon_sym_LT] = ACTIONS(4407), - [anon_sym_PIPE] = ACTIONS(4407), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym_GT_GT] = ACTIONS(4409), - [anon_sym_LT_LT] = ACTIONS(4409), - [anon_sym_EQ_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ_GT] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), - [anon_sym_BANG_TILDE] = ACTIONS(4409), - [anon_sym_EQ_TILDE] = ACTIONS(4409), - [anon_sym_AMP_STAR] = ACTIONS(4407), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4409), - [anon_sym_DOT] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4407), - [anon_sym_typeof] = ACTIONS(5161), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [sym_self] = ACTIONS(5163), - [sym_underscore_type] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_AMP_AMP] = ACTIONS(4409), - [anon_sym_PIPE_PIPE] = ACTIONS(4409), - [anon_sym_COLON2] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(4409), - [anon_sym_when] = ACTIONS(4409), - [anon_sym_in] = ACTIONS(4409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5165), - [sym__start_of_named_tuple_type] = ACTIONS(5167), - [sym__start_of_index_operator] = ACTIONS(4409), - [sym_binary_plus] = ACTIONS(4409), - [sym_binary_minus] = ACTIONS(4409), - [sym_binary_wrapping_plus] = ACTIONS(4409), - [sym_binary_wrapping_minus] = ACTIONS(4409), - [sym__binary_star] = ACTIONS(4409), - [sym__binary_double_star] = ACTIONS(4409), - [sym_binary_ampersand] = ACTIONS(4409), - [sym__binary_slash] = ACTIONS(4409), - [sym__binary_double_slash] = ACTIONS(4409), - [sym__modulo_operator] = ACTIONS(4409), + [ts_builtin_sym_end] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(193), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(193), + [anon_sym_DASH_EQ] = ACTIONS(193), + [anon_sym_AMP_DASH_EQ] = ACTIONS(193), + [anon_sym_STAR_EQ] = ACTIONS(193), + [anon_sym_AMP_STAR_EQ] = ACTIONS(193), + [anon_sym_SLASH_EQ] = ACTIONS(193), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(193), + [anon_sym_PERCENT_EQ] = ACTIONS(193), + [anon_sym_PIPE_EQ] = ACTIONS(193), + [anon_sym_AMP_EQ] = ACTIONS(193), + [anon_sym_CARET_EQ] = ACTIONS(193), + [anon_sym_STAR_STAR_EQ] = ACTIONS(193), + [anon_sym_LT_LT_EQ] = ACTIONS(193), + [anon_sym_GT_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(193), + [anon_sym_AMP_AMP_EQ] = ACTIONS(193), + [anon_sym_COLON2] = ACTIONS(5273), + [anon_sym_elsif] = ACTIONS(135), + [anon_sym_else] = ACTIONS(135), + [anon_sym_when] = ACTIONS(135), + [anon_sym_in] = ACTIONS(135), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2226] = { [sym_heredoc_body] = STATE(2226), - [ts_builtin_sym_end] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(259), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(261), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(263), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(263), - [anon_sym_DASH_EQ] = ACTIONS(263), - [anon_sym_AMP_DASH_EQ] = ACTIONS(263), - [anon_sym_STAR_EQ] = ACTIONS(263), - [anon_sym_AMP_STAR_EQ] = ACTIONS(263), - [anon_sym_SLASH_EQ] = ACTIONS(263), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(263), - [anon_sym_PERCENT_EQ] = ACTIONS(263), - [anon_sym_PIPE_EQ] = ACTIONS(263), - [anon_sym_AMP_EQ] = ACTIONS(263), - [anon_sym_CARET_EQ] = ACTIONS(263), - [anon_sym_STAR_STAR_EQ] = ACTIONS(263), - [anon_sym_LT_LT_EQ] = ACTIONS(263), - [anon_sym_GT_GT_EQ] = ACTIONS(263), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(263), - [anon_sym_AMP_AMP_EQ] = ACTIONS(263), - [anon_sym_COLON2] = ACTIONS(5236), - [anon_sym_elsif] = ACTIONS(133), - [anon_sym_else] = ACTIONS(133), - [anon_sym_when] = ACTIONS(133), - [anon_sym_in] = ACTIONS(133), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [sym_typeof] = STATE(3315), + [sym_constant] = STATE(3180), + [sym__type] = STATE(3274), + [sym_class_type] = STATE(3315), + [sym_union_type] = STATE(3315), + [sym__parenthesized_type] = STATE(3315), + [sym_no_args_proc_type] = STATE(3315), + [sym_parenthesized_proc_type] = STATE(3315), + [sym_tuple_type] = STATE(3315), + [sym_named_tuple_type] = STATE(3315), + [sym_generic_instance_type] = STATE(3315), + [sym_nilable_type] = STATE(3315), + [sym_pointer_type] = STATE(3315), + [sym_static_array_type] = STATE(3315), + [anon_sym_LPAREN] = ACTIONS(5210), + [anon_sym_RPAREN] = ACTIONS(4446), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4446), + [anon_sym_COMMA] = ACTIONS(4446), + [anon_sym_RBRACK] = ACTIONS(4446), + [anon_sym_EQ_GT] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4446), + [anon_sym_DASH_GT] = ACTIONS(5212), + [anon_sym_end] = ACTIONS(4446), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ_GT] = ACTIONS(4446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4446), + [anon_sym_BANG_TILDE] = ACTIONS(4446), + [anon_sym_EQ_TILDE] = ACTIONS(4446), + [anon_sym_AMP_STAR] = ACTIONS(4444), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4444), + [anon_sym_EQ] = ACTIONS(4444), + [anon_sym_typeof] = ACTIONS(5199), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [sym_self] = ACTIONS(5201), + [sym_underscore_type] = ACTIONS(5201), + [anon_sym_QMARK] = ACTIONS(4446), + [anon_sym_AMP_AMP] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4446), + [anon_sym_COLON2] = ACTIONS(4444), + [anon_sym_else] = ACTIONS(4446), + [anon_sym_when] = ACTIONS(4446), + [anon_sym_in] = ACTIONS(4446), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5203), + [sym__start_of_named_tuple_type] = ACTIONS(5205), + [sym__start_of_index_operator] = ACTIONS(4446), + [sym_binary_plus] = ACTIONS(4446), + [sym_binary_minus] = ACTIONS(4446), + [sym_binary_wrapping_plus] = ACTIONS(4446), + [sym_binary_wrapping_minus] = ACTIONS(4446), + [sym__binary_star] = ACTIONS(4446), + [sym__binary_double_star] = ACTIONS(4446), + [sym_binary_ampersand] = ACTIONS(4446), + [sym__binary_slash] = ACTIONS(4446), + [sym__binary_double_slash] = ACTIONS(4446), + [sym__modulo_operator] = ACTIONS(4446), [sym__heredoc_body_start] = ACTIONS(7), }, [2227] = { [sym_heredoc_body] = STATE(2227), - [ts_builtin_sym_end] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(241), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(247), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(247), - [anon_sym_DASH_EQ] = ACTIONS(247), - [anon_sym_AMP_DASH_EQ] = ACTIONS(247), - [anon_sym_STAR_EQ] = ACTIONS(247), - [anon_sym_AMP_STAR_EQ] = ACTIONS(247), - [anon_sym_SLASH_EQ] = ACTIONS(247), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(247), - [anon_sym_PERCENT_EQ] = ACTIONS(247), - [anon_sym_PIPE_EQ] = ACTIONS(247), - [anon_sym_AMP_EQ] = ACTIONS(247), - [anon_sym_CARET_EQ] = ACTIONS(247), - [anon_sym_STAR_STAR_EQ] = ACTIONS(247), - [anon_sym_LT_LT_EQ] = ACTIONS(247), - [anon_sym_GT_GT_EQ] = ACTIONS(247), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(247), - [anon_sym_AMP_AMP_EQ] = ACTIONS(247), - [anon_sym_COLON2] = ACTIONS(5238), - [anon_sym_elsif] = ACTIONS(133), - [anon_sym_else] = ACTIONS(133), - [anon_sym_when] = ACTIONS(133), - [anon_sym_in] = ACTIONS(133), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [sym_typeof] = STATE(3315), + [sym_constant] = STATE(3180), + [sym__type] = STATE(3264), + [sym_class_type] = STATE(3315), + [sym_union_type] = STATE(3315), + [sym__parenthesized_type] = STATE(3315), + [sym_no_args_proc_type] = STATE(3315), + [sym_parenthesized_proc_type] = STATE(3315), + [sym_tuple_type] = STATE(3315), + [sym_named_tuple_type] = STATE(3315), + [sym_generic_instance_type] = STATE(3315), + [sym_nilable_type] = STATE(3315), + [sym_pointer_type] = STATE(3315), + [sym_static_array_type] = STATE(3315), + [anon_sym_LPAREN] = ACTIONS(5210), + [anon_sym_RPAREN] = ACTIONS(4468), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4468), + [anon_sym_COMMA] = ACTIONS(4468), + [anon_sym_RBRACK] = ACTIONS(4468), + [anon_sym_EQ_GT] = ACTIONS(4468), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4468), + [anon_sym_DASH_GT] = ACTIONS(5212), + [anon_sym_end] = ACTIONS(4468), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_CARET] = ACTIONS(4468), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(4468), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ_GT] = ACTIONS(4468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), + [anon_sym_BANG_TILDE] = ACTIONS(4468), + [anon_sym_EQ_TILDE] = ACTIONS(4468), + [anon_sym_AMP_STAR] = ACTIONS(4466), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(4466), + [anon_sym_typeof] = ACTIONS(5199), + [sym__constant_segment] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(1675), + [sym_self] = ACTIONS(5201), + [sym_underscore_type] = ACTIONS(5201), + [anon_sym_QMARK] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(4468), + [anon_sym_COLON2] = ACTIONS(4466), + [anon_sym_else] = ACTIONS(4468), + [anon_sym_when] = ACTIONS(4468), + [anon_sym_in] = ACTIONS(4468), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5203), + [sym__start_of_named_tuple_type] = ACTIONS(5205), + [sym__start_of_index_operator] = ACTIONS(4468), + [sym_binary_plus] = ACTIONS(4468), + [sym_binary_minus] = ACTIONS(4468), + [sym_binary_wrapping_plus] = ACTIONS(4468), + [sym_binary_wrapping_minus] = ACTIONS(4468), + [sym__binary_star] = ACTIONS(4468), + [sym__binary_double_star] = ACTIONS(4468), + [sym_binary_ampersand] = ACTIONS(4468), + [sym__binary_slash] = ACTIONS(4468), + [sym__binary_double_slash] = ACTIONS(4468), + [sym__modulo_operator] = ACTIONS(4468), [sym__heredoc_body_start] = ACTIONS(7), }, [2228] = { [sym_heredoc_body] = STATE(2228), - [sym_typeof] = STATE(3200), - [sym_constant] = STATE(3026), - [sym__type] = STATE(3236), - [sym_class_type] = STATE(3200), - [sym_union_type] = STATE(3200), - [sym__parenthesized_type] = STATE(3200), - [sym_no_args_proc_type] = STATE(3200), - [sym_parenthesized_proc_type] = STATE(3200), - [sym_tuple_type] = STATE(3200), - [sym_named_tuple_type] = STATE(3200), - [sym_generic_instance_type] = STATE(3200), - [sym_nilable_type] = STATE(3200), - [sym_pointer_type] = STATE(3200), - [sym_static_array_type] = STATE(3200), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_RPAREN] = ACTIONS(4431), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_EQ_GT] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(5159), - [anon_sym_end] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_PIPE] = ACTIONS(4429), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ_GT] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_BANG_TILDE] = ACTIONS(4431), - [anon_sym_EQ_TILDE] = ACTIONS(4431), - [anon_sym_AMP_STAR] = ACTIONS(4429), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_typeof] = ACTIONS(5161), - [sym__constant_segment] = ACTIONS(2942), - [anon_sym_COLON_COLON] = ACTIONS(1663), - [sym_self] = ACTIONS(5163), - [sym_underscore_type] = ACTIONS(5163), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_COLON2] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4431), - [anon_sym_when] = ACTIONS(4431), - [anon_sym_in] = ACTIONS(4431), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5165), - [sym__start_of_named_tuple_type] = ACTIONS(5167), - [sym__start_of_index_operator] = ACTIONS(4431), - [sym_binary_plus] = ACTIONS(4431), - [sym_binary_minus] = ACTIONS(4431), - [sym_binary_wrapping_plus] = ACTIONS(4431), - [sym_binary_wrapping_minus] = ACTIONS(4431), - [sym__binary_star] = ACTIONS(4431), - [sym__binary_double_star] = ACTIONS(4431), - [sym_binary_ampersand] = ACTIONS(4431), - [sym__binary_slash] = ACTIONS(4431), - [sym__binary_double_slash] = ACTIONS(4431), - [sym__modulo_operator] = ACTIONS(4431), + [ts_builtin_sym_end] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(265), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(267), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(267), + [anon_sym_DASH_EQ] = ACTIONS(267), + [anon_sym_AMP_DASH_EQ] = ACTIONS(267), + [anon_sym_STAR_EQ] = ACTIONS(267), + [anon_sym_AMP_STAR_EQ] = ACTIONS(267), + [anon_sym_SLASH_EQ] = ACTIONS(267), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(267), + [anon_sym_PERCENT_EQ] = ACTIONS(267), + [anon_sym_PIPE_EQ] = ACTIONS(267), + [anon_sym_AMP_EQ] = ACTIONS(267), + [anon_sym_CARET_EQ] = ACTIONS(267), + [anon_sym_STAR_STAR_EQ] = ACTIONS(267), + [anon_sym_LT_LT_EQ] = ACTIONS(267), + [anon_sym_GT_GT_EQ] = ACTIONS(267), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(267), + [anon_sym_AMP_AMP_EQ] = ACTIONS(267), + [anon_sym_COLON2] = ACTIONS(5275), + [anon_sym_elsif] = ACTIONS(135), + [anon_sym_else] = ACTIONS(135), + [anon_sym_when] = ACTIONS(135), + [anon_sym_in] = ACTIONS(135), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2229] = { [sym_heredoc_body] = STATE(2229), - [sym_typeof] = STATE(3524), - [sym_constant] = STATE(3273), - [sym__type] = STATE(3369), - [sym_class_type] = STATE(3524), - [sym_union_type] = STATE(3524), - [sym__parenthesized_type] = STATE(3524), - [sym_no_args_proc_type] = STATE(3524), - [sym_parenthesized_proc_type] = STATE(3524), - [sym_tuple_type] = STATE(3524), - [sym_named_tuple_type] = STATE(3524), - [sym_generic_instance_type] = STATE(3524), - [sym_nilable_type] = STATE(3524), - [sym_pointer_type] = STATE(3524), - [sym_static_array_type] = STATE(3524), - [anon_sym_LPAREN] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(4409), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4409), - [anon_sym_COMMA] = ACTIONS(4409), - [anon_sym_RBRACK] = ACTIONS(4409), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4409), - [anon_sym_DASH_GT] = ACTIONS(5224), - [anon_sym_end] = ACTIONS(4409), - [anon_sym_LT] = ACTIONS(4407), - [anon_sym_PIPE] = ACTIONS(4407), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym_GT_GT] = ACTIONS(4409), - [anon_sym_LT_LT] = ACTIONS(4409), - [anon_sym_EQ_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ_GT] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), - [anon_sym_BANG_TILDE] = ACTIONS(4409), - [anon_sym_EQ_TILDE] = ACTIONS(4409), - [anon_sym_AMP_STAR] = ACTIONS(4407), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4409), - [anon_sym_DOT] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4407), - [anon_sym_typeof] = ACTIONS(5210), - [sym__constant_segment] = ACTIONS(5212), - [anon_sym_COLON_COLON] = ACTIONS(5214), - [sym_self] = ACTIONS(5216), - [sym_underscore_type] = ACTIONS(5216), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_AMP_AMP] = ACTIONS(4409), - [anon_sym_PIPE_PIPE] = ACTIONS(4409), - [anon_sym_COLON2] = ACTIONS(4407), - [anon_sym_else] = ACTIONS(4409), - [anon_sym_when] = ACTIONS(4409), - [anon_sym_in] = ACTIONS(4409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5218), - [sym__start_of_named_tuple_type] = ACTIONS(5220), - [sym__start_of_index_operator] = ACTIONS(4409), - [sym_binary_plus] = ACTIONS(4409), - [sym_binary_minus] = ACTIONS(4409), - [sym_binary_wrapping_plus] = ACTIONS(4409), - [sym_binary_wrapping_minus] = ACTIONS(4409), - [sym__binary_star] = ACTIONS(4409), - [sym__binary_double_star] = ACTIONS(4409), - [sym_binary_ampersand] = ACTIONS(4409), - [sym__binary_slash] = ACTIONS(4409), - [sym__binary_double_slash] = ACTIONS(4409), - [sym__modulo_operator] = ACTIONS(4409), + [ts_builtin_sym_end] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(265), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(267), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(267), + [anon_sym_DASH_EQ] = ACTIONS(267), + [anon_sym_AMP_DASH_EQ] = ACTIONS(267), + [anon_sym_STAR_EQ] = ACTIONS(267), + [anon_sym_AMP_STAR_EQ] = ACTIONS(267), + [anon_sym_SLASH_EQ] = ACTIONS(267), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(267), + [anon_sym_PERCENT_EQ] = ACTIONS(267), + [anon_sym_PIPE_EQ] = ACTIONS(267), + [anon_sym_AMP_EQ] = ACTIONS(267), + [anon_sym_CARET_EQ] = ACTIONS(267), + [anon_sym_STAR_STAR_EQ] = ACTIONS(267), + [anon_sym_LT_LT_EQ] = ACTIONS(267), + [anon_sym_GT_GT_EQ] = ACTIONS(267), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(267), + [anon_sym_AMP_AMP_EQ] = ACTIONS(267), + [anon_sym_elsif] = ACTIONS(135), + [anon_sym_else] = ACTIONS(135), + [anon_sym_when] = ACTIONS(135), + [anon_sym_in] = ACTIONS(135), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2230] = { [sym_heredoc_body] = STATE(2230), - [sym_typeof] = STATE(3515), - [sym_constant] = STATE(3256), - [sym__type] = STATE(3546), - [sym_class_type] = STATE(3515), - [sym_union_type] = STATE(3515), - [sym__parenthesized_type] = STATE(3515), - [sym_no_args_proc_type] = STATE(3515), - [sym_parenthesized_proc_type] = STATE(3515), - [sym_tuple_type] = STATE(3515), - [sym_named_tuple_type] = STATE(3515), - [sym_generic_instance_type] = STATE(3515), - [sym_nilable_type] = STATE(3515), - [sym_pointer_type] = STATE(3515), - [sym_static_array_type] = STATE(3515), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(5232), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(5234), - [anon_sym_end] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_PIPE] = ACTIONS(4429), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ_GT] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_BANG_TILDE] = ACTIONS(4431), - [anon_sym_EQ_TILDE] = ACTIONS(4431), - [anon_sym_AMP_STAR] = ACTIONS(4429), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_typeof] = ACTIONS(5191), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [sym_self] = ACTIONS(5193), - [sym_underscore_type] = ACTIONS(5193), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [sym__line_break] = ACTIONS(4431), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5195), - [sym__start_of_named_tuple_type] = ACTIONS(5197), - [sym__start_of_index_operator] = ACTIONS(4431), - [sym_binary_plus] = ACTIONS(4431), - [sym_binary_minus] = ACTIONS(4431), - [sym_binary_wrapping_plus] = ACTIONS(4431), - [sym_binary_wrapping_minus] = ACTIONS(4431), - [sym__binary_star] = ACTIONS(4431), - [sym__binary_double_star] = ACTIONS(4431), - [sym_binary_ampersand] = ACTIONS(4431), - [sym__binary_slash] = ACTIONS(4431), - [sym__binary_double_slash] = ACTIONS(4431), - [sym__modifier_if_keyword] = ACTIONS(4431), - [sym__modifier_unless_keyword] = ACTIONS(4431), - [sym__modifier_rescue_keyword] = ACTIONS(4431), - [sym__regular_ensure_keyword] = ACTIONS(4431), - [sym__modifier_ensure_keyword] = ACTIONS(4431), - [sym__modulo_operator] = ACTIONS(4431), + [sym_typeof] = STATE(3579), + [sym_constant] = STATE(3316), + [sym__type] = STATE(3531), + [sym_class_type] = STATE(3579), + [sym_union_type] = STATE(3579), + [sym__parenthesized_type] = STATE(3579), + [sym_no_args_proc_type] = STATE(3579), + [sym_parenthesized_proc_type] = STATE(3579), + [sym_tuple_type] = STATE(3579), + [sym_named_tuple_type] = STATE(3579), + [sym_generic_instance_type] = STATE(3579), + [sym_nilable_type] = STATE(3579), + [sym_pointer_type] = STATE(3579), + [sym_static_array_type] = STATE(3579), + [anon_sym_LPAREN] = ACTIONS(5219), + [anon_sym_RPAREN] = ACTIONS(4446), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4446), + [anon_sym_COMMA] = ACTIONS(4446), + [anon_sym_RBRACK] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4446), + [anon_sym_DASH_GT] = ACTIONS(5221), + [anon_sym_end] = ACTIONS(4446), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ_GT] = ACTIONS(4446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4446), + [anon_sym_BANG_TILDE] = ACTIONS(4446), + [anon_sym_EQ_TILDE] = ACTIONS(4446), + [anon_sym_AMP_STAR] = ACTIONS(4444), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4444), + [anon_sym_EQ] = ACTIONS(4444), + [anon_sym_typeof] = ACTIONS(5223), + [sym__constant_segment] = ACTIONS(5225), + [anon_sym_COLON_COLON] = ACTIONS(5227), + [sym_self] = ACTIONS(5229), + [sym_underscore_type] = ACTIONS(5229), + [anon_sym_QMARK] = ACTIONS(4446), + [anon_sym_AMP_AMP] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4446), + [anon_sym_COLON2] = ACTIONS(4444), + [anon_sym_else] = ACTIONS(4446), + [anon_sym_when] = ACTIONS(4446), + [anon_sym_in] = ACTIONS(4446), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5231), + [sym__start_of_named_tuple_type] = ACTIONS(5233), + [sym__start_of_index_operator] = ACTIONS(4446), + [sym_binary_plus] = ACTIONS(4446), + [sym_binary_minus] = ACTIONS(4446), + [sym_binary_wrapping_plus] = ACTIONS(4446), + [sym_binary_wrapping_minus] = ACTIONS(4446), + [sym__binary_star] = ACTIONS(4446), + [sym__binary_double_star] = ACTIONS(4446), + [sym_binary_ampersand] = ACTIONS(4446), + [sym__binary_slash] = ACTIONS(4446), + [sym__binary_double_slash] = ACTIONS(4446), + [sym__modulo_operator] = ACTIONS(4446), [sym__heredoc_body_start] = ACTIONS(7), }, [2231] = { [sym_heredoc_body] = STATE(2231), - [sym_typeof] = STATE(3515), - [sym_constant] = STATE(3256), - [sym__type] = STATE(3543), - [sym_class_type] = STATE(3515), - [sym_union_type] = STATE(3515), - [sym__parenthesized_type] = STATE(3515), - [sym_no_args_proc_type] = STATE(3515), - [sym_parenthesized_proc_type] = STATE(3515), - [sym_tuple_type] = STATE(3515), - [sym_named_tuple_type] = STATE(3515), - [sym_generic_instance_type] = STATE(3515), - [sym_nilable_type] = STATE(3515), - [sym_pointer_type] = STATE(3515), - [sym_static_array_type] = STATE(3515), - [anon_sym_SEMI] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(5232), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4409), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4409), - [anon_sym_DASH_GT] = ACTIONS(5234), - [anon_sym_end] = ACTIONS(4409), - [anon_sym_LT] = ACTIONS(4407), - [anon_sym_PIPE] = ACTIONS(4407), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym_GT_GT] = ACTIONS(4409), - [anon_sym_LT_LT] = ACTIONS(4409), - [anon_sym_EQ_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ_GT] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), - [anon_sym_BANG_TILDE] = ACTIONS(4409), - [anon_sym_EQ_TILDE] = ACTIONS(4409), - [anon_sym_AMP_STAR] = ACTIONS(4407), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4409), - [anon_sym_DOT] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4407), - [anon_sym_typeof] = ACTIONS(5191), - [sym__constant_segment] = ACTIONS(2537), - [anon_sym_COLON_COLON] = ACTIONS(1491), - [sym_self] = ACTIONS(5193), - [sym_underscore_type] = ACTIONS(5193), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_AMP_AMP] = ACTIONS(4409), - [anon_sym_PIPE_PIPE] = ACTIONS(4409), - [sym__line_break] = ACTIONS(4409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5195), - [sym__start_of_named_tuple_type] = ACTIONS(5197), - [sym__start_of_index_operator] = ACTIONS(4409), - [sym_binary_plus] = ACTIONS(4409), - [sym_binary_minus] = ACTIONS(4409), - [sym_binary_wrapping_plus] = ACTIONS(4409), - [sym_binary_wrapping_minus] = ACTIONS(4409), - [sym__binary_star] = ACTIONS(4409), - [sym__binary_double_star] = ACTIONS(4409), - [sym_binary_ampersand] = ACTIONS(4409), - [sym__binary_slash] = ACTIONS(4409), - [sym__binary_double_slash] = ACTIONS(4409), - [sym__modifier_if_keyword] = ACTIONS(4409), - [sym__modifier_unless_keyword] = ACTIONS(4409), - [sym__modifier_rescue_keyword] = ACTIONS(4409), - [sym__regular_ensure_keyword] = ACTIONS(4409), - [sym__modifier_ensure_keyword] = ACTIONS(4409), - [sym__modulo_operator] = ACTIONS(4409), + [sym_typeof] = STATE(3587), + [sym_constant] = STATE(3191), + [sym__type] = STATE(3381), + [sym_class_type] = STATE(3587), + [sym_union_type] = STATE(3587), + [sym__parenthesized_type] = STATE(3587), + [sym_no_args_proc_type] = STATE(3587), + [sym_parenthesized_proc_type] = STATE(3587), + [sym_tuple_type] = STATE(3587), + [sym_named_tuple_type] = STATE(3587), + [sym_generic_instance_type] = STATE(3587), + [sym_nilable_type] = STATE(3587), + [sym_pointer_type] = STATE(3587), + [sym_static_array_type] = STATE(3587), + [anon_sym_SEMI] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(5263), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4468), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4468), + [anon_sym_DASH_GT] = ACTIONS(5265), + [anon_sym_end] = ACTIONS(4468), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_CARET] = ACTIONS(4468), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(4468), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ_GT] = ACTIONS(4468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), + [anon_sym_BANG_TILDE] = ACTIONS(4468), + [anon_sym_EQ_TILDE] = ACTIONS(4468), + [anon_sym_AMP_STAR] = ACTIONS(4466), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(4466), + [anon_sym_typeof] = ACTIONS(5252), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [sym_self] = ACTIONS(5254), + [sym_underscore_type] = ACTIONS(5254), + [anon_sym_QMARK] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(4468), + [sym__line_break] = ACTIONS(4468), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5256), + [sym__start_of_named_tuple_type] = ACTIONS(5258), + [sym__start_of_index_operator] = ACTIONS(4468), + [sym_binary_plus] = ACTIONS(4468), + [sym_binary_minus] = ACTIONS(4468), + [sym_binary_wrapping_plus] = ACTIONS(4468), + [sym_binary_wrapping_minus] = ACTIONS(4468), + [sym__binary_star] = ACTIONS(4468), + [sym__binary_double_star] = ACTIONS(4468), + [sym_binary_ampersand] = ACTIONS(4468), + [sym__binary_slash] = ACTIONS(4468), + [sym__binary_double_slash] = ACTIONS(4468), + [sym__modifier_if_keyword] = ACTIONS(4468), + [sym__modifier_unless_keyword] = ACTIONS(4468), + [sym__modifier_rescue_keyword] = ACTIONS(4468), + [sym__regular_ensure_keyword] = ACTIONS(4468), + [sym__modifier_ensure_keyword] = ACTIONS(4468), + [sym__modulo_operator] = ACTIONS(4468), [sym__heredoc_body_start] = ACTIONS(7), }, [2232] = { [sym_heredoc_body] = STATE(2232), - [ts_builtin_sym_end] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(261), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(263), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(263), - [anon_sym_DASH_EQ] = ACTIONS(263), - [anon_sym_AMP_DASH_EQ] = ACTIONS(263), - [anon_sym_STAR_EQ] = ACTIONS(263), - [anon_sym_AMP_STAR_EQ] = ACTIONS(263), - [anon_sym_SLASH_EQ] = ACTIONS(263), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(263), - [anon_sym_PERCENT_EQ] = ACTIONS(263), - [anon_sym_PIPE_EQ] = ACTIONS(263), - [anon_sym_AMP_EQ] = ACTIONS(263), - [anon_sym_CARET_EQ] = ACTIONS(263), - [anon_sym_STAR_STAR_EQ] = ACTIONS(263), - [anon_sym_LT_LT_EQ] = ACTIONS(263), - [anon_sym_GT_GT_EQ] = ACTIONS(263), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(263), - [anon_sym_AMP_AMP_EQ] = ACTIONS(263), - [anon_sym_COLON2] = ACTIONS(5236), - [anon_sym_elsif] = ACTIONS(133), - [anon_sym_else] = ACTIONS(133), - [anon_sym_when] = ACTIONS(133), - [anon_sym_in] = ACTIONS(133), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [ts_builtin_sym_end] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(165), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(193), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(193), + [anon_sym_DASH_EQ] = ACTIONS(193), + [anon_sym_AMP_DASH_EQ] = ACTIONS(193), + [anon_sym_STAR_EQ] = ACTIONS(193), + [anon_sym_AMP_STAR_EQ] = ACTIONS(193), + [anon_sym_SLASH_EQ] = ACTIONS(193), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(193), + [anon_sym_PERCENT_EQ] = ACTIONS(193), + [anon_sym_PIPE_EQ] = ACTIONS(193), + [anon_sym_AMP_EQ] = ACTIONS(193), + [anon_sym_CARET_EQ] = ACTIONS(193), + [anon_sym_STAR_STAR_EQ] = ACTIONS(193), + [anon_sym_LT_LT_EQ] = ACTIONS(193), + [anon_sym_GT_GT_EQ] = ACTIONS(193), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(193), + [anon_sym_AMP_AMP_EQ] = ACTIONS(193), + [anon_sym_elsif] = ACTIONS(135), + [anon_sym_else] = ACTIONS(135), + [anon_sym_when] = ACTIONS(135), + [anon_sym_in] = ACTIONS(135), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2233] = { [sym_heredoc_body] = STATE(2233), - [ts_builtin_sym_end] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(259), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(261), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(263), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(263), - [anon_sym_DASH_EQ] = ACTIONS(263), - [anon_sym_AMP_DASH_EQ] = ACTIONS(263), - [anon_sym_STAR_EQ] = ACTIONS(263), - [anon_sym_AMP_STAR_EQ] = ACTIONS(263), - [anon_sym_SLASH_EQ] = ACTIONS(263), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(263), - [anon_sym_PERCENT_EQ] = ACTIONS(263), - [anon_sym_PIPE_EQ] = ACTIONS(263), - [anon_sym_AMP_EQ] = ACTIONS(263), - [anon_sym_CARET_EQ] = ACTIONS(263), - [anon_sym_STAR_STAR_EQ] = ACTIONS(263), - [anon_sym_LT_LT_EQ] = ACTIONS(263), - [anon_sym_GT_GT_EQ] = ACTIONS(263), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(263), - [anon_sym_AMP_AMP_EQ] = ACTIONS(263), - [anon_sym_elsif] = ACTIONS(133), - [anon_sym_else] = ACTIONS(133), - [anon_sym_when] = ACTIONS(133), - [anon_sym_in] = ACTIONS(133), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [sym_typeof] = STATE(3579), + [sym_constant] = STATE(3316), + [sym__type] = STATE(3568), + [sym_class_type] = STATE(3579), + [sym_union_type] = STATE(3579), + [sym__parenthesized_type] = STATE(3579), + [sym_no_args_proc_type] = STATE(3579), + [sym_parenthesized_proc_type] = STATE(3579), + [sym_tuple_type] = STATE(3579), + [sym_named_tuple_type] = STATE(3579), + [sym_generic_instance_type] = STATE(3579), + [sym_nilable_type] = STATE(3579), + [sym_pointer_type] = STATE(3579), + [sym_static_array_type] = STATE(3579), + [anon_sym_LPAREN] = ACTIONS(5219), + [anon_sym_RPAREN] = ACTIONS(4468), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(4468), + [anon_sym_COMMA] = ACTIONS(4468), + [anon_sym_RBRACK] = ACTIONS(4468), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4468), + [anon_sym_DASH_GT] = ACTIONS(5221), + [anon_sym_end] = ACTIONS(4468), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_CARET] = ACTIONS(4468), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(4468), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ_GT] = ACTIONS(4468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), + [anon_sym_BANG_TILDE] = ACTIONS(4468), + [anon_sym_EQ_TILDE] = ACTIONS(4468), + [anon_sym_AMP_STAR] = ACTIONS(4466), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(4466), + [anon_sym_typeof] = ACTIONS(5223), + [sym__constant_segment] = ACTIONS(5225), + [anon_sym_COLON_COLON] = ACTIONS(5227), + [sym_self] = ACTIONS(5229), + [sym_underscore_type] = ACTIONS(5229), + [anon_sym_QMARK] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(4468), + [anon_sym_COLON2] = ACTIONS(4466), + [anon_sym_else] = ACTIONS(4468), + [anon_sym_when] = ACTIONS(4468), + [anon_sym_in] = ACTIONS(4468), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5231), + [sym__start_of_named_tuple_type] = ACTIONS(5233), + [sym__start_of_index_operator] = ACTIONS(4468), + [sym_binary_plus] = ACTIONS(4468), + [sym_binary_minus] = ACTIONS(4468), + [sym_binary_wrapping_plus] = ACTIONS(4468), + [sym_binary_wrapping_minus] = ACTIONS(4468), + [sym__binary_star] = ACTIONS(4468), + [sym__binary_double_star] = ACTIONS(4468), + [sym_binary_ampersand] = ACTIONS(4468), + [sym__binary_slash] = ACTIONS(4468), + [sym__binary_double_slash] = ACTIONS(4468), + [sym__modulo_operator] = ACTIONS(4468), [sym__heredoc_body_start] = ACTIONS(7), }, [2234] = { [sym_heredoc_body] = STATE(2234), - [ts_builtin_sym_end] = ACTIONS(5182), - [anon_sym_SEMI] = ACTIONS(5182), - [anon_sym_RPAREN] = ACTIONS(5182), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5182), - [anon_sym_COMMA] = ACTIONS(5182), - [anon_sym_DOT_DOT] = ACTIONS(5184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5182), - [anon_sym_end] = ACTIONS(5182), - [anon_sym_LT] = ACTIONS(5184), - [anon_sym_PIPE] = ACTIONS(5184), - [anon_sym_CARET] = ACTIONS(5184), - [anon_sym_GT_GT] = ACTIONS(5184), - [anon_sym_LT_LT] = ACTIONS(5184), - [anon_sym_EQ_EQ] = ACTIONS(5184), - [anon_sym_BANG_EQ] = ACTIONS(5182), - [anon_sym_LT_EQ] = ACTIONS(5184), - [anon_sym_GT] = ACTIONS(5184), - [anon_sym_GT_EQ] = ACTIONS(5182), - [anon_sym_LT_EQ_GT] = ACTIONS(5182), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5182), - [anon_sym_BANG_TILDE] = ACTIONS(5182), - [anon_sym_EQ_TILDE] = ACTIONS(5182), - [anon_sym_AMP_STAR] = ACTIONS(5184), - [anon_sym_AMP_STAR_STAR] = ACTIONS(5182), - [anon_sym_DOT] = ACTIONS(5184), - [anon_sym_EQ] = ACTIONS(5184), - [anon_sym_QMARK] = ACTIONS(5182), - [anon_sym_AMP_AMP] = ACTIONS(5184), - [anon_sym_PIPE_PIPE] = ACTIONS(5184), - [anon_sym_PLUS_EQ] = ACTIONS(5182), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(5182), - [anon_sym_DASH_EQ] = ACTIONS(5182), - [anon_sym_AMP_DASH_EQ] = ACTIONS(5182), - [anon_sym_STAR_EQ] = ACTIONS(5182), - [anon_sym_AMP_STAR_EQ] = ACTIONS(5182), - [anon_sym_SLASH_EQ] = ACTIONS(5182), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5182), - [anon_sym_PERCENT_EQ] = ACTIONS(5182), - [anon_sym_PIPE_EQ] = ACTIONS(5182), - [anon_sym_AMP_EQ] = ACTIONS(5182), - [anon_sym_CARET_EQ] = ACTIONS(5182), - [anon_sym_STAR_STAR_EQ] = ACTIONS(5182), - [anon_sym_LT_LT_EQ] = ACTIONS(5182), - [anon_sym_GT_GT_EQ] = ACTIONS(5182), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5182), - [anon_sym_AMP_AMP_EQ] = ACTIONS(5182), - [anon_sym_elsif] = ACTIONS(5182), - [anon_sym_else] = ACTIONS(5182), - [anon_sym_when] = ACTIONS(5182), - [anon_sym_in] = ACTIONS(5182), - [sym__line_break] = ACTIONS(5182), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(5182), - [sym_binary_plus] = ACTIONS(5182), - [sym_binary_minus] = ACTIONS(5182), - [sym_binary_wrapping_plus] = ACTIONS(5182), - [sym_binary_wrapping_minus] = ACTIONS(5182), - [sym__binary_star] = ACTIONS(5182), - [sym__binary_double_star] = ACTIONS(5182), - [sym_binary_ampersand] = ACTIONS(5182), - [sym__binary_slash] = ACTIONS(5182), - [sym__binary_double_slash] = ACTIONS(5182), - [sym__modifier_if_keyword] = ACTIONS(5182), - [sym__modifier_unless_keyword] = ACTIONS(5182), - [sym__modifier_rescue_keyword] = ACTIONS(5182), - [sym__modifier_ensure_keyword] = ACTIONS(5182), - [sym__modulo_operator] = ACTIONS(5182), + [sym_typeof] = STATE(3587), + [sym_constant] = STATE(3191), + [sym__type] = STATE(3373), + [sym_class_type] = STATE(3587), + [sym_union_type] = STATE(3587), + [sym__parenthesized_type] = STATE(3587), + [sym_no_args_proc_type] = STATE(3587), + [sym_parenthesized_proc_type] = STATE(3587), + [sym_tuple_type] = STATE(3587), + [sym_named_tuple_type] = STATE(3587), + [sym_generic_instance_type] = STATE(3587), + [sym_nilable_type] = STATE(3587), + [sym_pointer_type] = STATE(3587), + [sym_static_array_type] = STATE(3587), + [anon_sym_SEMI] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(5263), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4446), + [anon_sym_DASH_GT] = ACTIONS(5265), + [anon_sym_end] = ACTIONS(4446), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ_GT] = ACTIONS(4446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4446), + [anon_sym_BANG_TILDE] = ACTIONS(4446), + [anon_sym_EQ_TILDE] = ACTIONS(4446), + [anon_sym_AMP_STAR] = ACTIONS(4444), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4444), + [anon_sym_EQ] = ACTIONS(4444), + [anon_sym_typeof] = ACTIONS(5252), + [sym__constant_segment] = ACTIONS(2608), + [anon_sym_COLON_COLON] = ACTIONS(1579), + [sym_self] = ACTIONS(5254), + [sym_underscore_type] = ACTIONS(5254), + [anon_sym_QMARK] = ACTIONS(4446), + [anon_sym_AMP_AMP] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4446), + [sym__line_break] = ACTIONS(4446), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5256), + [sym__start_of_named_tuple_type] = ACTIONS(5258), + [sym__start_of_index_operator] = ACTIONS(4446), + [sym_binary_plus] = ACTIONS(4446), + [sym_binary_minus] = ACTIONS(4446), + [sym_binary_wrapping_plus] = ACTIONS(4446), + [sym_binary_wrapping_minus] = ACTIONS(4446), + [sym__binary_star] = ACTIONS(4446), + [sym__binary_double_star] = ACTIONS(4446), + [sym_binary_ampersand] = ACTIONS(4446), + [sym__binary_slash] = ACTIONS(4446), + [sym__binary_double_slash] = ACTIONS(4446), + [sym__modifier_if_keyword] = ACTIONS(4446), + [sym__modifier_unless_keyword] = ACTIONS(4446), + [sym__modifier_rescue_keyword] = ACTIONS(4446), + [sym__regular_ensure_keyword] = ACTIONS(4446), + [sym__modifier_ensure_keyword] = ACTIONS(4446), + [sym__modulo_operator] = ACTIONS(4446), [sym__heredoc_body_start] = ACTIONS(7), }, [2235] = { [sym_heredoc_body] = STATE(2235), - [ts_builtin_sym_end] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(241), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(247), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(247), - [anon_sym_DASH_EQ] = ACTIONS(247), - [anon_sym_AMP_DASH_EQ] = ACTIONS(247), - [anon_sym_STAR_EQ] = ACTIONS(247), - [anon_sym_AMP_STAR_EQ] = ACTIONS(247), - [anon_sym_SLASH_EQ] = ACTIONS(247), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(247), - [anon_sym_PERCENT_EQ] = ACTIONS(247), - [anon_sym_PIPE_EQ] = ACTIONS(247), - [anon_sym_AMP_EQ] = ACTIONS(247), - [anon_sym_CARET_EQ] = ACTIONS(247), - [anon_sym_STAR_STAR_EQ] = ACTIONS(247), - [anon_sym_LT_LT_EQ] = ACTIONS(247), - [anon_sym_GT_GT_EQ] = ACTIONS(247), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(247), - [anon_sym_AMP_AMP_EQ] = ACTIONS(247), - [anon_sym_elsif] = ACTIONS(133), - [anon_sym_else] = ACTIONS(133), - [anon_sym_when] = ACTIONS(133), - [anon_sym_in] = ACTIONS(133), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [ts_builtin_sym_end] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(265), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(267), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(267), + [anon_sym_DASH_EQ] = ACTIONS(267), + [anon_sym_AMP_DASH_EQ] = ACTIONS(267), + [anon_sym_STAR_EQ] = ACTIONS(267), + [anon_sym_AMP_STAR_EQ] = ACTIONS(267), + [anon_sym_SLASH_EQ] = ACTIONS(267), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(267), + [anon_sym_PERCENT_EQ] = ACTIONS(267), + [anon_sym_PIPE_EQ] = ACTIONS(267), + [anon_sym_AMP_EQ] = ACTIONS(267), + [anon_sym_CARET_EQ] = ACTIONS(267), + [anon_sym_STAR_STAR_EQ] = ACTIONS(267), + [anon_sym_LT_LT_EQ] = ACTIONS(267), + [anon_sym_GT_GT_EQ] = ACTIONS(267), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(267), + [anon_sym_AMP_AMP_EQ] = ACTIONS(267), + [anon_sym_COLON2] = ACTIONS(5275), + [anon_sym_elsif] = ACTIONS(135), + [anon_sym_else] = ACTIONS(135), + [anon_sym_when] = ACTIONS(135), + [anon_sym_in] = ACTIONS(135), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2236] = { [sym_heredoc_body] = STATE(2236), - [sym_typeof] = STATE(3524), - [sym_constant] = STATE(3273), - [sym__type] = STATE(3439), - [sym_class_type] = STATE(3524), - [sym_union_type] = STATE(3524), - [sym__parenthesized_type] = STATE(3524), - [sym_no_args_proc_type] = STATE(3524), - [sym_parenthesized_proc_type] = STATE(3524), - [sym_tuple_type] = STATE(3524), - [sym_named_tuple_type] = STATE(3524), - [sym_generic_instance_type] = STATE(3524), - [sym_nilable_type] = STATE(3524), - [sym_pointer_type] = STATE(3524), - [sym_static_array_type] = STATE(3524), - [anon_sym_LPAREN] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(4431), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(5224), - [anon_sym_end] = ACTIONS(4431), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_PIPE] = ACTIONS(4429), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ_GT] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_BANG_TILDE] = ACTIONS(4431), - [anon_sym_EQ_TILDE] = ACTIONS(4431), - [anon_sym_AMP_STAR] = ACTIONS(4429), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_typeof] = ACTIONS(5210), - [sym__constant_segment] = ACTIONS(5212), - [anon_sym_COLON_COLON] = ACTIONS(5214), - [sym_self] = ACTIONS(5216), - [sym_underscore_type] = ACTIONS(5216), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_COLON2] = ACTIONS(4429), - [anon_sym_else] = ACTIONS(4431), - [anon_sym_when] = ACTIONS(4431), - [anon_sym_in] = ACTIONS(4431), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5218), - [sym__start_of_named_tuple_type] = ACTIONS(5220), - [sym__start_of_index_operator] = ACTIONS(4431), - [sym_binary_plus] = ACTIONS(4431), - [sym_binary_minus] = ACTIONS(4431), - [sym_binary_wrapping_plus] = ACTIONS(4431), - [sym_binary_wrapping_minus] = ACTIONS(4431), - [sym__binary_star] = ACTIONS(4431), - [sym__binary_double_star] = ACTIONS(4431), - [sym_binary_ampersand] = ACTIONS(4431), - [sym__binary_slash] = ACTIONS(4431), - [sym__binary_double_slash] = ACTIONS(4431), - [sym__modulo_operator] = ACTIONS(4431), + [ts_builtin_sym_end] = ACTIONS(5235), + [anon_sym_SEMI] = ACTIONS(5235), + [anon_sym_RPAREN] = ACTIONS(5235), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5235), + [anon_sym_COMMA] = ACTIONS(5235), + [anon_sym_DOT_DOT] = ACTIONS(5237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5235), + [anon_sym_end] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5237), + [anon_sym_PIPE] = ACTIONS(5237), + [anon_sym_CARET] = ACTIONS(5237), + [anon_sym_GT_GT] = ACTIONS(5237), + [anon_sym_LT_LT] = ACTIONS(5237), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ] = ACTIONS(5237), + [anon_sym_GT] = ACTIONS(5237), + [anon_sym_GT_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ_GT] = ACTIONS(5235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5235), + [anon_sym_BANG_TILDE] = ACTIONS(5235), + [anon_sym_EQ_TILDE] = ACTIONS(5235), + [anon_sym_AMP_STAR] = ACTIONS(5237), + [anon_sym_AMP_STAR_STAR] = ACTIONS(5235), + [anon_sym_DOT] = ACTIONS(5237), + [anon_sym_EQ] = ACTIONS(5237), + [anon_sym_QMARK] = ACTIONS(5235), + [anon_sym_AMP_AMP] = ACTIONS(5237), + [anon_sym_PIPE_PIPE] = ACTIONS(5237), + [anon_sym_PLUS_EQ] = ACTIONS(5235), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(5235), + [anon_sym_DASH_EQ] = ACTIONS(5235), + [anon_sym_AMP_DASH_EQ] = ACTIONS(5235), + [anon_sym_STAR_EQ] = ACTIONS(5235), + [anon_sym_AMP_STAR_EQ] = ACTIONS(5235), + [anon_sym_SLASH_EQ] = ACTIONS(5235), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5235), + [anon_sym_PERCENT_EQ] = ACTIONS(5235), + [anon_sym_PIPE_EQ] = ACTIONS(5235), + [anon_sym_AMP_EQ] = ACTIONS(5235), + [anon_sym_CARET_EQ] = ACTIONS(5235), + [anon_sym_STAR_STAR_EQ] = ACTIONS(5235), + [anon_sym_LT_LT_EQ] = ACTIONS(5235), + [anon_sym_GT_GT_EQ] = ACTIONS(5235), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5235), + [anon_sym_AMP_AMP_EQ] = ACTIONS(5235), + [anon_sym_elsif] = ACTIONS(5235), + [anon_sym_else] = ACTIONS(5235), + [anon_sym_when] = ACTIONS(5235), + [anon_sym_in] = ACTIONS(5235), + [sym__line_break] = ACTIONS(5235), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(5235), + [sym_binary_plus] = ACTIONS(5235), + [sym_binary_minus] = ACTIONS(5235), + [sym_binary_wrapping_plus] = ACTIONS(5235), + [sym_binary_wrapping_minus] = ACTIONS(5235), + [sym__binary_star] = ACTIONS(5235), + [sym__binary_double_star] = ACTIONS(5235), + [sym_binary_ampersand] = ACTIONS(5235), + [sym__binary_slash] = ACTIONS(5235), + [sym__binary_double_slash] = ACTIONS(5235), + [sym__modifier_if_keyword] = ACTIONS(5235), + [sym__modifier_unless_keyword] = ACTIONS(5235), + [sym__modifier_rescue_keyword] = ACTIONS(5235), + [sym__modifier_ensure_keyword] = ACTIONS(5235), + [sym__modulo_operator] = ACTIONS(5235), [sym__heredoc_body_start] = ACTIONS(7), }, [2237] = { [sym_heredoc_body] = STATE(2237), - [sym_typeof] = STATE(4328), - [sym_constant] = STATE(4227), - [sym__type] = STATE(3840), - [sym_class_type] = STATE(4328), - [sym_union_type] = STATE(4328), - [sym__parenthesized_type] = STATE(4328), - [sym_no_args_proc_type] = STATE(4328), - [sym_parenthesized_proc_type] = STATE(4328), - [sym_tuple_type] = STATE(4328), - [sym_named_tuple_type] = STATE(4328), - [sym_generic_instance_type] = STATE(4328), - [sym_nilable_type] = STATE(4328), - [sym_pointer_type] = STATE(4328), - [sym_static_array_type] = STATE(4328), - [anon_sym_SEMI] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(5240), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5242), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5245), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [sym_self] = ACTIONS(5247), - [sym_underscore_type] = ACTIONS(5247), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_do] = ACTIONS(4325), - [anon_sym_then] = ACTIONS(4325), - [sym__line_break] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4325), - [sym__start_of_tuple_type] = ACTIONS(5249), - [sym__start_of_named_tuple_type] = ACTIONS(5251), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(4483), + [sym_constant] = STATE(4258), + [sym__type] = STATE(4453), + [sym_class_type] = STATE(4483), + [sym_union_type] = STATE(4483), + [sym__parenthesized_type] = STATE(4483), + [sym_no_args_proc_type] = STATE(4483), + [sym_parenthesized_proc_type] = STATE(4483), + [sym_tuple_type] = STATE(4483), + [sym_named_tuple_type] = STATE(4483), + [sym_generic_instance_type] = STATE(4483), + [sym_nilable_type] = STATE(4483), + [sym_pointer_type] = STATE(4483), + [sym_static_array_type] = STATE(4483), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(5277), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5279), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5281), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [sym_self] = ACTIONS(5283), + [sym_underscore_type] = ACTIONS(5283), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_do] = ACTIONS(4390), + [anon_sym_then] = ACTIONS(4390), + [sym__line_break] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4390), + [sym__start_of_tuple_type] = ACTIONS(5285), + [sym__start_of_named_tuple_type] = ACTIONS(5287), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2238] = { [sym_heredoc_body] = STATE(2238), - [sym_typeof] = STATE(4328), - [sym_constant] = STATE(4227), - [sym__type] = STATE(4206), - [sym_class_type] = STATE(4328), - [sym_union_type] = STATE(4328), - [sym__parenthesized_type] = STATE(4328), - [sym_no_args_proc_type] = STATE(4328), - [sym_parenthesized_proc_type] = STATE(4328), - [sym_tuple_type] = STATE(4328), - [sym_named_tuple_type] = STATE(4328), - [sym_generic_instance_type] = STATE(4328), - [sym_nilable_type] = STATE(4328), - [sym_pointer_type] = STATE(4328), - [sym_static_array_type] = STATE(4328), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(5240), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5253), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5245), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [sym_self] = ACTIONS(5247), - [sym_underscore_type] = ACTIONS(5247), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_do] = ACTIONS(4375), - [anon_sym_then] = ACTIONS(4375), - [sym__line_break] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4375), - [sym__start_of_tuple_type] = ACTIONS(5249), - [sym__start_of_named_tuple_type] = ACTIONS(5251), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [ts_builtin_sym_end] = ACTIONS(135), + [anon_sym_SEMI] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(265), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(267), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(267), + [anon_sym_DASH_EQ] = ACTIONS(267), + [anon_sym_AMP_DASH_EQ] = ACTIONS(267), + [anon_sym_STAR_EQ] = ACTIONS(267), + [anon_sym_AMP_STAR_EQ] = ACTIONS(267), + [anon_sym_SLASH_EQ] = ACTIONS(267), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(267), + [anon_sym_PERCENT_EQ] = ACTIONS(267), + [anon_sym_PIPE_EQ] = ACTIONS(267), + [anon_sym_AMP_EQ] = ACTIONS(267), + [anon_sym_CARET_EQ] = ACTIONS(267), + [anon_sym_STAR_STAR_EQ] = ACTIONS(267), + [anon_sym_LT_LT_EQ] = ACTIONS(267), + [anon_sym_GT_GT_EQ] = ACTIONS(267), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(267), + [anon_sym_AMP_AMP_EQ] = ACTIONS(267), + [anon_sym_elsif] = ACTIONS(135), + [anon_sym_else] = ACTIONS(135), + [anon_sym_when] = ACTIONS(135), + [anon_sym_in] = ACTIONS(135), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2239] = { [sym_heredoc_body] = STATE(2239), - [ts_builtin_sym_end] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(133), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(261), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(263), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(263), - [anon_sym_DASH_EQ] = ACTIONS(263), - [anon_sym_AMP_DASH_EQ] = ACTIONS(263), - [anon_sym_STAR_EQ] = ACTIONS(263), - [anon_sym_AMP_STAR_EQ] = ACTIONS(263), - [anon_sym_SLASH_EQ] = ACTIONS(263), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(263), - [anon_sym_PERCENT_EQ] = ACTIONS(263), - [anon_sym_PIPE_EQ] = ACTIONS(263), - [anon_sym_AMP_EQ] = ACTIONS(263), - [anon_sym_CARET_EQ] = ACTIONS(263), - [anon_sym_STAR_STAR_EQ] = ACTIONS(263), - [anon_sym_LT_LT_EQ] = ACTIONS(263), - [anon_sym_GT_GT_EQ] = ACTIONS(263), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(263), - [anon_sym_AMP_AMP_EQ] = ACTIONS(263), - [anon_sym_elsif] = ACTIONS(133), - [anon_sym_else] = ACTIONS(133), - [anon_sym_when] = ACTIONS(133), - [anon_sym_in] = ACTIONS(133), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [sym_typeof] = STATE(4483), + [sym_constant] = STATE(4258), + [sym__type] = STATE(4440), + [sym_class_type] = STATE(4483), + [sym_union_type] = STATE(4483), + [sym__parenthesized_type] = STATE(4483), + [sym_no_args_proc_type] = STATE(4483), + [sym_parenthesized_proc_type] = STATE(4483), + [sym_tuple_type] = STATE(4483), + [sym_named_tuple_type] = STATE(4483), + [sym_generic_instance_type] = STATE(4483), + [sym_nilable_type] = STATE(4483), + [sym_pointer_type] = STATE(4483), + [sym_static_array_type] = STATE(4483), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(5277), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5279), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5281), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [sym_self] = ACTIONS(5283), + [sym_underscore_type] = ACTIONS(5283), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_do] = ACTIONS(4412), + [anon_sym_then] = ACTIONS(4412), + [sym__line_break] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4412), + [sym__start_of_tuple_type] = ACTIONS(5285), + [sym__start_of_named_tuple_type] = ACTIONS(5287), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2240] = { [sym_heredoc_body] = STATE(2240), - [sym_typeof] = STATE(4328), - [sym_constant] = STATE(4227), - [sym__type] = STATE(4204), - [sym_class_type] = STATE(4328), - [sym_union_type] = STATE(4328), - [sym__parenthesized_type] = STATE(4328), - [sym_no_args_proc_type] = STATE(4328), - [sym_parenthesized_proc_type] = STATE(4328), - [sym_tuple_type] = STATE(4328), - [sym_named_tuple_type] = STATE(4328), - [sym_generic_instance_type] = STATE(4328), - [sym_nilable_type] = STATE(4328), - [sym_pointer_type] = STATE(4328), - [sym_static_array_type] = STATE(4328), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5240), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5256), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5245), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [sym_self] = ACTIONS(5247), - [sym_underscore_type] = ACTIONS(5247), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_do] = ACTIONS(4353), - [anon_sym_then] = ACTIONS(4353), - [sym__line_break] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4353), - [sym__start_of_tuple_type] = ACTIONS(5249), - [sym__start_of_named_tuple_type] = ACTIONS(5251), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(4483), + [sym_constant] = STATE(4258), + [sym__type] = STATE(3855), + [sym_class_type] = STATE(4483), + [sym_union_type] = STATE(4483), + [sym__parenthesized_type] = STATE(4483), + [sym_no_args_proc_type] = STATE(4483), + [sym_parenthesized_proc_type] = STATE(4483), + [sym_tuple_type] = STATE(4483), + [sym_named_tuple_type] = STATE(4483), + [sym_generic_instance_type] = STATE(4483), + [sym_nilable_type] = STATE(4483), + [sym_pointer_type] = STATE(4483), + [sym_static_array_type] = STATE(4483), + [anon_sym_SEMI] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(5289), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5291), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5281), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [sym_self] = ACTIONS(5283), + [sym_underscore_type] = ACTIONS(5283), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_do] = ACTIONS(4362), + [anon_sym_then] = ACTIONS(4362), + [sym__line_break] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4362), + [sym__start_of_tuple_type] = ACTIONS(5285), + [sym__start_of_named_tuple_type] = ACTIONS(5287), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2241] = { [sym_heredoc_body] = STATE(2241), - [sym_typeof] = STATE(4328), - [sym_constant] = STATE(4227), - [sym__type] = STATE(4518), - [sym_class_type] = STATE(4328), - [sym_union_type] = STATE(4328), - [sym__parenthesized_type] = STATE(4328), - [sym_no_args_proc_type] = STATE(4328), - [sym_parenthesized_proc_type] = STATE(4328), - [sym_tuple_type] = STATE(4328), - [sym_named_tuple_type] = STATE(4328), - [sym_generic_instance_type] = STATE(4328), - [sym_nilable_type] = STATE(4328), - [sym_pointer_type] = STATE(4328), - [sym_static_array_type] = STATE(4328), - [anon_sym_SEMI] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(5259), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5261), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5245), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [sym_self] = ACTIONS(5247), - [sym_underscore_type] = ACTIONS(5247), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_do] = ACTIONS(4325), - [anon_sym_then] = ACTIONS(4325), - [sym__line_break] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4325), - [sym__start_of_tuple_type] = ACTIONS(5249), - [sym__start_of_named_tuple_type] = ACTIONS(5251), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(301), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(329), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(329), + [anon_sym_DASH_EQ] = ACTIONS(329), + [anon_sym_AMP_DASH_EQ] = ACTIONS(329), + [anon_sym_STAR_EQ] = ACTIONS(329), + [anon_sym_AMP_STAR_EQ] = ACTIONS(329), + [anon_sym_SLASH_EQ] = ACTIONS(329), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(329), + [anon_sym_PERCENT_EQ] = ACTIONS(329), + [anon_sym_PIPE_EQ] = ACTIONS(329), + [anon_sym_AMP_EQ] = ACTIONS(329), + [anon_sym_CARET_EQ] = ACTIONS(329), + [anon_sym_STAR_STAR_EQ] = ACTIONS(329), + [anon_sym_LT_LT_EQ] = ACTIONS(329), + [anon_sym_GT_GT_EQ] = ACTIONS(329), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(329), + [anon_sym_AMP_AMP_EQ] = ACTIONS(329), + [anon_sym_COLON2] = ACTIONS(5294), + [anon_sym_do] = ACTIONS(135), + [anon_sym_else] = ACTIONS(135), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(135), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__regular_rescue_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2242] = { [sym_heredoc_body] = STATE(2242), - [sym_typeof] = STATE(4328), - [sym_constant] = STATE(4227), - [sym__type] = STATE(4526), - [sym_class_type] = STATE(4328), - [sym_union_type] = STATE(4328), - [sym__parenthesized_type] = STATE(4328), - [sym_no_args_proc_type] = STATE(4328), - [sym_parenthesized_proc_type] = STATE(4328), - [sym_tuple_type] = STATE(4328), - [sym_named_tuple_type] = STATE(4328), - [sym_generic_instance_type] = STATE(4328), - [sym_nilable_type] = STATE(4328), - [sym_pointer_type] = STATE(4328), - [sym_static_array_type] = STATE(4328), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(5259), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5261), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5245), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [sym_self] = ACTIONS(5247), - [sym_underscore_type] = ACTIONS(5247), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_do] = ACTIONS(4375), - [anon_sym_then] = ACTIONS(4375), - [sym__line_break] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4375), - [sym__start_of_tuple_type] = ACTIONS(5249), - [sym__start_of_named_tuple_type] = ACTIONS(5251), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(4483), + [sym_constant] = STATE(4258), + [sym__type] = STATE(4278), + [sym_class_type] = STATE(4483), + [sym_union_type] = STATE(4483), + [sym__parenthesized_type] = STATE(4483), + [sym_no_args_proc_type] = STATE(4483), + [sym_parenthesized_proc_type] = STATE(4483), + [sym_tuple_type] = STATE(4483), + [sym_named_tuple_type] = STATE(4483), + [sym_generic_instance_type] = STATE(4483), + [sym_nilable_type] = STATE(4483), + [sym_pointer_type] = STATE(4483), + [sym_static_array_type] = STATE(4483), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(5289), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5296), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5281), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [sym_self] = ACTIONS(5283), + [sym_underscore_type] = ACTIONS(5283), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_do] = ACTIONS(4412), + [anon_sym_then] = ACTIONS(4412), + [sym__line_break] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4412), + [sym__start_of_tuple_type] = ACTIONS(5285), + [sym__start_of_named_tuple_type] = ACTIONS(5287), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2243] = { [sym_heredoc_body] = STATE(2243), - [sym_typeof] = STATE(4328), - [sym_constant] = STATE(4227), - [sym__type] = STATE(4525), - [sym_class_type] = STATE(4328), - [sym_union_type] = STATE(4328), - [sym__parenthesized_type] = STATE(4328), - [sym_no_args_proc_type] = STATE(4328), - [sym_parenthesized_proc_type] = STATE(4328), - [sym_tuple_type] = STATE(4328), - [sym_named_tuple_type] = STATE(4328), - [sym_generic_instance_type] = STATE(4328), - [sym_nilable_type] = STATE(4328), - [sym_pointer_type] = STATE(4328), - [sym_static_array_type] = STATE(4328), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5259), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5261), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5245), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [sym_self] = ACTIONS(5247), - [sym_underscore_type] = ACTIONS(5247), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_do] = ACTIONS(4353), - [anon_sym_then] = ACTIONS(4353), - [sym__line_break] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4353), - [sym__start_of_tuple_type] = ACTIONS(5249), - [sym__start_of_named_tuple_type] = ACTIONS(5251), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(4483), + [sym_constant] = STATE(4258), + [sym__type] = STATE(3854), + [sym_class_type] = STATE(4483), + [sym_union_type] = STATE(4483), + [sym__parenthesized_type] = STATE(4483), + [sym_no_args_proc_type] = STATE(4483), + [sym_parenthesized_proc_type] = STATE(4483), + [sym_tuple_type] = STATE(4483), + [sym_named_tuple_type] = STATE(4483), + [sym_generic_instance_type] = STATE(4483), + [sym_nilable_type] = STATE(4483), + [sym_pointer_type] = STATE(4483), + [sym_static_array_type] = STATE(4483), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(5289), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5299), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5281), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [sym_self] = ACTIONS(5283), + [sym_underscore_type] = ACTIONS(5283), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_do] = ACTIONS(4390), + [anon_sym_then] = ACTIONS(4390), + [sym__line_break] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4390), + [sym__start_of_tuple_type] = ACTIONS(5285), + [sym__start_of_named_tuple_type] = ACTIONS(5287), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2244] = { [sym_heredoc_body] = STATE(2244), - [anon_sym_SEMI] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(383), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(383), - [anon_sym_DASH_EQ] = ACTIONS(383), - [anon_sym_AMP_DASH_EQ] = ACTIONS(383), - [anon_sym_STAR_EQ] = ACTIONS(383), - [anon_sym_AMP_STAR_EQ] = ACTIONS(383), - [anon_sym_SLASH_EQ] = ACTIONS(383), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(383), - [anon_sym_PERCENT_EQ] = ACTIONS(383), - [anon_sym_PIPE_EQ] = ACTIONS(383), - [anon_sym_AMP_EQ] = ACTIONS(383), - [anon_sym_CARET_EQ] = ACTIONS(383), - [anon_sym_STAR_STAR_EQ] = ACTIONS(383), - [anon_sym_LT_LT_EQ] = ACTIONS(383), - [anon_sym_GT_GT_EQ] = ACTIONS(383), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(383), - [anon_sym_AMP_AMP_EQ] = ACTIONS(383), - [anon_sym_COLON2] = ACTIONS(5263), - [anon_sym_do] = ACTIONS(133), - [anon_sym_else] = ACTIONS(133), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(133), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__regular_rescue_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [sym_typeof] = STATE(4483), + [sym_constant] = STATE(4258), + [sym__type] = STATE(4454), + [sym_class_type] = STATE(4483), + [sym_union_type] = STATE(4483), + [sym__parenthesized_type] = STATE(4483), + [sym_no_args_proc_type] = STATE(4483), + [sym_parenthesized_proc_type] = STATE(4483), + [sym_tuple_type] = STATE(4483), + [sym_named_tuple_type] = STATE(4483), + [sym_generic_instance_type] = STATE(4483), + [sym_nilable_type] = STATE(4483), + [sym_pointer_type] = STATE(4483), + [sym_static_array_type] = STATE(4483), + [anon_sym_SEMI] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(5277), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5279), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5281), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [sym_self] = ACTIONS(5283), + [sym_underscore_type] = ACTIONS(5283), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_do] = ACTIONS(4362), + [anon_sym_then] = ACTIONS(4362), + [sym__line_break] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4362), + [sym__start_of_tuple_type] = ACTIONS(5285), + [sym__start_of_named_tuple_type] = ACTIONS(5287), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2245] = { [sym_heredoc_body] = STATE(2245), - [sym_typeof] = STATE(4663), - [sym_constant] = STATE(4347), - [sym__type] = STATE(4826), - [sym_class_type] = STATE(4663), - [sym_union_type] = STATE(4663), - [sym__parenthesized_type] = STATE(4663), - [sym_no_args_proc_type] = STATE(4663), - [sym_parenthesized_proc_type] = STATE(4663), - [sym_tuple_type] = STATE(4663), - [sym_named_tuple_type] = STATE(4663), - [sym_generic_instance_type] = STATE(4663), - [sym_nilable_type] = STATE(4663), - [sym_pointer_type] = STATE(4663), - [sym_static_array_type] = STATE(4663), - [anon_sym_LPAREN] = ACTIONS(5265), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RBRACK] = ACTIONS(4351), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5267), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5269), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [sym_self] = ACTIONS(5271), - [sym_underscore_type] = ACTIONS(5271), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_RBRACK_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_do] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4353), - [sym__start_of_tuple_type] = ACTIONS(5273), - [sym__start_of_named_tuple_type] = ACTIONS(5275), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(4646), + [sym_constant] = STATE(4464), + [sym__type] = STATE(4778), + [sym_class_type] = STATE(4646), + [sym_union_type] = STATE(4646), + [sym__parenthesized_type] = STATE(4646), + [sym_no_args_proc_type] = STATE(4646), + [sym_parenthesized_proc_type] = STATE(4646), + [sym_tuple_type] = STATE(4646), + [sym_named_tuple_type] = STATE(4646), + [sym_generic_instance_type] = STATE(4646), + [sym_nilable_type] = STATE(4646), + [sym_pointer_type] = STATE(4646), + [sym_static_array_type] = STATE(4646), + [anon_sym_LPAREN] = ACTIONS(5302), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_RBRACK] = ACTIONS(4388), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5304), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5306), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [sym_self] = ACTIONS(5308), + [sym_underscore_type] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_RBRACK_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_do] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4390), + [sym__start_of_tuple_type] = ACTIONS(5310), + [sym__start_of_named_tuple_type] = ACTIONS(5312), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2246] = { [sym_heredoc_body] = STATE(2246), - [sym_typeof] = STATE(4663), - [sym_constant] = STATE(4347), - [sym__type] = STATE(4359), - [sym_class_type] = STATE(4663), - [sym_union_type] = STATE(4663), - [sym__parenthesized_type] = STATE(4663), - [sym_no_args_proc_type] = STATE(4663), - [sym_parenthesized_proc_type] = STATE(4663), - [sym_tuple_type] = STATE(4663), - [sym_named_tuple_type] = STATE(4663), - [sym_generic_instance_type] = STATE(4663), - [sym_nilable_type] = STATE(4663), - [sym_pointer_type] = STATE(4663), - [sym_static_array_type] = STATE(4663), - [anon_sym_LPAREN] = ACTIONS(5277), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_RBRACK] = ACTIONS(4373), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5279), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5269), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [sym_self] = ACTIONS(5271), - [sym_underscore_type] = ACTIONS(5271), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_RBRACK_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_do] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4375), - [sym__start_of_tuple_type] = ACTIONS(5273), - [sym__start_of_named_tuple_type] = ACTIONS(5275), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(4646), + [sym_constant] = STATE(4464), + [sym__type] = STATE(4765), + [sym_class_type] = STATE(4646), + [sym_union_type] = STATE(4646), + [sym__parenthesized_type] = STATE(4646), + [sym_no_args_proc_type] = STATE(4646), + [sym_parenthesized_proc_type] = STATE(4646), + [sym_tuple_type] = STATE(4646), + [sym_named_tuple_type] = STATE(4646), + [sym_generic_instance_type] = STATE(4646), + [sym_nilable_type] = STATE(4646), + [sym_pointer_type] = STATE(4646), + [sym_static_array_type] = STATE(4646), + [anon_sym_LPAREN] = ACTIONS(5302), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_RBRACK] = ACTIONS(4410), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5304), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5306), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [sym_self] = ACTIONS(5308), + [sym_underscore_type] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_RBRACK_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_do] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4412), + [sym__start_of_tuple_type] = ACTIONS(5310), + [sym__start_of_named_tuple_type] = ACTIONS(5312), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2247] = { [sym_heredoc_body] = STATE(2247), - [sym_typeof] = STATE(4663), - [sym_constant] = STATE(4347), - [sym__type] = STATE(4827), - [sym_class_type] = STATE(4663), - [sym_union_type] = STATE(4663), - [sym__parenthesized_type] = STATE(4663), - [sym_no_args_proc_type] = STATE(4663), - [sym_parenthesized_proc_type] = STATE(4663), - [sym_tuple_type] = STATE(4663), - [sym_named_tuple_type] = STATE(4663), - [sym_generic_instance_type] = STATE(4663), - [sym_nilable_type] = STATE(4663), - [sym_pointer_type] = STATE(4663), - [sym_static_array_type] = STATE(4663), - [anon_sym_LPAREN] = ACTIONS(5265), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_RBRACK] = ACTIONS(4373), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5267), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5269), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [sym_self] = ACTIONS(5271), - [sym_underscore_type] = ACTIONS(5271), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_RBRACK_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_do] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4375), - [sym__start_of_tuple_type] = ACTIONS(5273), - [sym__start_of_named_tuple_type] = ACTIONS(5275), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(4646), + [sym_constant] = STATE(4464), + [sym__type] = STATE(4779), + [sym_class_type] = STATE(4646), + [sym_union_type] = STATE(4646), + [sym__parenthesized_type] = STATE(4646), + [sym_no_args_proc_type] = STATE(4646), + [sym_parenthesized_proc_type] = STATE(4646), + [sym_tuple_type] = STATE(4646), + [sym_named_tuple_type] = STATE(4646), + [sym_generic_instance_type] = STATE(4646), + [sym_nilable_type] = STATE(4646), + [sym_pointer_type] = STATE(4646), + [sym_static_array_type] = STATE(4646), + [anon_sym_LPAREN] = ACTIONS(5302), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_RBRACK] = ACTIONS(4360), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5304), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5306), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [sym_self] = ACTIONS(5308), + [sym_underscore_type] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_RBRACK_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_do] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4362), + [sym__start_of_tuple_type] = ACTIONS(5310), + [sym__start_of_named_tuple_type] = ACTIONS(5312), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2248] = { [sym_heredoc_body] = STATE(2248), - [anon_sym_SEMI] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(383), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(383), - [anon_sym_DASH_EQ] = ACTIONS(383), - [anon_sym_AMP_DASH_EQ] = ACTIONS(383), - [anon_sym_STAR_EQ] = ACTIONS(383), - [anon_sym_AMP_STAR_EQ] = ACTIONS(383), - [anon_sym_SLASH_EQ] = ACTIONS(383), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(383), - [anon_sym_PERCENT_EQ] = ACTIONS(383), - [anon_sym_PIPE_EQ] = ACTIONS(383), - [anon_sym_AMP_EQ] = ACTIONS(383), - [anon_sym_CARET_EQ] = ACTIONS(383), - [anon_sym_STAR_STAR_EQ] = ACTIONS(383), - [anon_sym_LT_LT_EQ] = ACTIONS(383), - [anon_sym_GT_GT_EQ] = ACTIONS(383), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(383), - [anon_sym_AMP_AMP_EQ] = ACTIONS(383), - [anon_sym_do] = ACTIONS(133), - [anon_sym_else] = ACTIONS(133), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(133), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__regular_rescue_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(301), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(329), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(329), + [anon_sym_DASH_EQ] = ACTIONS(329), + [anon_sym_AMP_DASH_EQ] = ACTIONS(329), + [anon_sym_STAR_EQ] = ACTIONS(329), + [anon_sym_AMP_STAR_EQ] = ACTIONS(329), + [anon_sym_SLASH_EQ] = ACTIONS(329), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(329), + [anon_sym_PERCENT_EQ] = ACTIONS(329), + [anon_sym_PIPE_EQ] = ACTIONS(329), + [anon_sym_AMP_EQ] = ACTIONS(329), + [anon_sym_CARET_EQ] = ACTIONS(329), + [anon_sym_STAR_STAR_EQ] = ACTIONS(329), + [anon_sym_LT_LT_EQ] = ACTIONS(329), + [anon_sym_GT_GT_EQ] = ACTIONS(329), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(329), + [anon_sym_AMP_AMP_EQ] = ACTIONS(329), + [anon_sym_do] = ACTIONS(135), + [anon_sym_else] = ACTIONS(135), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(135), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__regular_rescue_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2249] = { [sym_heredoc_body] = STATE(2249), - [anon_sym_SEMI] = ACTIONS(5182), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5182), - [anon_sym_DOT_DOT] = ACTIONS(5184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5182), - [anon_sym_end] = ACTIONS(5182), - [anon_sym_LT] = ACTIONS(5184), - [anon_sym_PIPE] = ACTIONS(5184), - [anon_sym_CARET] = ACTIONS(5184), - [anon_sym_GT_GT] = ACTIONS(5184), - [anon_sym_LT_LT] = ACTIONS(5184), - [anon_sym_EQ_EQ] = ACTIONS(5184), - [anon_sym_BANG_EQ] = ACTIONS(5182), - [anon_sym_LT_EQ] = ACTIONS(5184), - [anon_sym_GT] = ACTIONS(5184), - [anon_sym_GT_EQ] = ACTIONS(5182), - [anon_sym_LT_EQ_GT] = ACTIONS(5182), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5182), - [anon_sym_BANG_TILDE] = ACTIONS(5182), - [anon_sym_EQ_TILDE] = ACTIONS(5182), - [anon_sym_AMP_STAR] = ACTIONS(5184), - [anon_sym_AMP_STAR_STAR] = ACTIONS(5182), - [anon_sym_DOT] = ACTIONS(5184), - [anon_sym_EQ] = ACTIONS(5184), - [anon_sym_QMARK] = ACTIONS(5182), - [anon_sym_AMP_AMP] = ACTIONS(5184), - [anon_sym_PIPE_PIPE] = ACTIONS(5184), - [anon_sym_PLUS_EQ] = ACTIONS(5182), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(5182), - [anon_sym_DASH_EQ] = ACTIONS(5182), - [anon_sym_AMP_DASH_EQ] = ACTIONS(5182), - [anon_sym_STAR_EQ] = ACTIONS(5182), - [anon_sym_AMP_STAR_EQ] = ACTIONS(5182), - [anon_sym_SLASH_EQ] = ACTIONS(5182), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5182), - [anon_sym_PERCENT_EQ] = ACTIONS(5182), - [anon_sym_PIPE_EQ] = ACTIONS(5182), - [anon_sym_AMP_EQ] = ACTIONS(5182), - [anon_sym_CARET_EQ] = ACTIONS(5182), - [anon_sym_STAR_STAR_EQ] = ACTIONS(5182), - [anon_sym_LT_LT_EQ] = ACTIONS(5182), - [anon_sym_GT_GT_EQ] = ACTIONS(5182), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5182), - [anon_sym_AMP_AMP_EQ] = ACTIONS(5182), - [anon_sym_do] = ACTIONS(5182), - [anon_sym_else] = ACTIONS(5182), - [sym__line_break] = ACTIONS(5182), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(5182), - [sym__start_of_index_operator] = ACTIONS(5182), - [sym_binary_plus] = ACTIONS(5182), - [sym_binary_minus] = ACTIONS(5182), - [sym_binary_wrapping_plus] = ACTIONS(5182), - [sym_binary_wrapping_minus] = ACTIONS(5182), - [sym__binary_star] = ACTIONS(5182), - [sym__binary_double_star] = ACTIONS(5182), - [sym_binary_ampersand] = ACTIONS(5182), - [sym__binary_slash] = ACTIONS(5182), - [sym__binary_double_slash] = ACTIONS(5182), - [sym__modifier_if_keyword] = ACTIONS(5182), - [sym__modifier_unless_keyword] = ACTIONS(5182), - [sym__regular_rescue_keyword] = ACTIONS(5182), - [sym__modifier_rescue_keyword] = ACTIONS(5182), - [sym__regular_ensure_keyword] = ACTIONS(5182), - [sym__modifier_ensure_keyword] = ACTIONS(5182), - [sym__modulo_operator] = ACTIONS(5182), + [sym_typeof] = STATE(4646), + [sym_constant] = STATE(4464), + [sym__type] = STATE(4321), + [sym_class_type] = STATE(4646), + [sym_union_type] = STATE(4646), + [sym__parenthesized_type] = STATE(4646), + [sym_no_args_proc_type] = STATE(4646), + [sym_parenthesized_proc_type] = STATE(4646), + [sym_tuple_type] = STATE(4646), + [sym_named_tuple_type] = STATE(4646), + [sym_generic_instance_type] = STATE(4646), + [sym_nilable_type] = STATE(4646), + [sym_pointer_type] = STATE(4646), + [sym_static_array_type] = STATE(4646), + [anon_sym_LPAREN] = ACTIONS(5314), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_RBRACK] = ACTIONS(4360), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5316), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5306), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [sym_self] = ACTIONS(5308), + [sym_underscore_type] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_RBRACK_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_do] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4362), + [sym__start_of_tuple_type] = ACTIONS(5310), + [sym__start_of_named_tuple_type] = ACTIONS(5312), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2250] = { [sym_heredoc_body] = STATE(2250), - [sym_typeof] = STATE(4663), - [sym_constant] = STATE(4347), - [sym__type] = STATE(4822), - [sym_class_type] = STATE(4663), - [sym_union_type] = STATE(4663), - [sym__parenthesized_type] = STATE(4663), - [sym_no_args_proc_type] = STATE(4663), - [sym_parenthesized_proc_type] = STATE(4663), - [sym_tuple_type] = STATE(4663), - [sym_named_tuple_type] = STATE(4663), - [sym_generic_instance_type] = STATE(4663), - [sym_nilable_type] = STATE(4663), - [sym_pointer_type] = STATE(4663), - [sym_static_array_type] = STATE(4663), - [anon_sym_LPAREN] = ACTIONS(5265), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_RBRACK] = ACTIONS(4323), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5267), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5269), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [sym_self] = ACTIONS(5271), - [sym_underscore_type] = ACTIONS(5271), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_RBRACK_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_do] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4325), - [sym__start_of_tuple_type] = ACTIONS(5273), - [sym__start_of_named_tuple_type] = ACTIONS(5275), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(4646), + [sym_constant] = STATE(4464), + [sym__type] = STATE(4484), + [sym_class_type] = STATE(4646), + [sym_union_type] = STATE(4646), + [sym__parenthesized_type] = STATE(4646), + [sym_no_args_proc_type] = STATE(4646), + [sym_parenthesized_proc_type] = STATE(4646), + [sym_tuple_type] = STATE(4646), + [sym_named_tuple_type] = STATE(4646), + [sym_generic_instance_type] = STATE(4646), + [sym_nilable_type] = STATE(4646), + [sym_pointer_type] = STATE(4646), + [sym_static_array_type] = STATE(4646), + [anon_sym_LPAREN] = ACTIONS(5314), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_RBRACK] = ACTIONS(4410), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5319), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5306), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [sym_self] = ACTIONS(5308), + [sym_underscore_type] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_RBRACK_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_do] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4412), + [sym__start_of_tuple_type] = ACTIONS(5310), + [sym__start_of_named_tuple_type] = ACTIONS(5312), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2251] = { [sym_heredoc_body] = STATE(2251), - [sym_typeof] = STATE(4663), - [sym_constant] = STATE(4347), - [sym__type] = STATE(4351), - [sym_class_type] = STATE(4663), - [sym_union_type] = STATE(4663), - [sym__parenthesized_type] = STATE(4663), - [sym_no_args_proc_type] = STATE(4663), - [sym_parenthesized_proc_type] = STATE(4663), - [sym_tuple_type] = STATE(4663), - [sym_named_tuple_type] = STATE(4663), - [sym_generic_instance_type] = STATE(4663), - [sym_nilable_type] = STATE(4663), - [sym_pointer_type] = STATE(4663), - [sym_static_array_type] = STATE(4663), - [anon_sym_LPAREN] = ACTIONS(5277), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_RBRACK] = ACTIONS(4323), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5282), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5269), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [sym_self] = ACTIONS(5271), - [sym_underscore_type] = ACTIONS(5271), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_RBRACK_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_do] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4325), - [sym__start_of_tuple_type] = ACTIONS(5273), - [sym__start_of_named_tuple_type] = ACTIONS(5275), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(4646), + [sym_constant] = STATE(4464), + [sym__type] = STATE(4318), + [sym_class_type] = STATE(4646), + [sym_union_type] = STATE(4646), + [sym__parenthesized_type] = STATE(4646), + [sym_no_args_proc_type] = STATE(4646), + [sym_parenthesized_proc_type] = STATE(4646), + [sym_tuple_type] = STATE(4646), + [sym_named_tuple_type] = STATE(4646), + [sym_generic_instance_type] = STATE(4646), + [sym_nilable_type] = STATE(4646), + [sym_pointer_type] = STATE(4646), + [sym_static_array_type] = STATE(4646), + [anon_sym_LPAREN] = ACTIONS(5314), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_RBRACK] = ACTIONS(4388), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5322), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5306), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [sym_self] = ACTIONS(5308), + [sym_underscore_type] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_RBRACK_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_do] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4390), + [sym__start_of_tuple_type] = ACTIONS(5310), + [sym__start_of_named_tuple_type] = ACTIONS(5312), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2252] = { [sym_heredoc_body] = STATE(2252), - [sym_typeof] = STATE(4663), - [sym_constant] = STATE(4347), - [sym__type] = STATE(4358), - [sym_class_type] = STATE(4663), - [sym_union_type] = STATE(4663), - [sym__parenthesized_type] = STATE(4663), - [sym_no_args_proc_type] = STATE(4663), - [sym_parenthesized_proc_type] = STATE(4663), - [sym_tuple_type] = STATE(4663), - [sym_named_tuple_type] = STATE(4663), - [sym_generic_instance_type] = STATE(4663), - [sym_nilable_type] = STATE(4663), - [sym_pointer_type] = STATE(4663), - [sym_static_array_type] = STATE(4663), - [anon_sym_LPAREN] = ACTIONS(5277), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RBRACK] = ACTIONS(4351), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5285), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5269), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [sym_self] = ACTIONS(5271), - [sym_underscore_type] = ACTIONS(5271), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_RBRACK_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_do] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4353), - [sym__start_of_tuple_type] = ACTIONS(5273), - [sym__start_of_named_tuple_type] = ACTIONS(5275), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(5235), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5235), + [anon_sym_DOT_DOT] = ACTIONS(5237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5235), + [anon_sym_end] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5237), + [anon_sym_PIPE] = ACTIONS(5237), + [anon_sym_CARET] = ACTIONS(5237), + [anon_sym_GT_GT] = ACTIONS(5237), + [anon_sym_LT_LT] = ACTIONS(5237), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ] = ACTIONS(5237), + [anon_sym_GT] = ACTIONS(5237), + [anon_sym_GT_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ_GT] = ACTIONS(5235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5235), + [anon_sym_BANG_TILDE] = ACTIONS(5235), + [anon_sym_EQ_TILDE] = ACTIONS(5235), + [anon_sym_AMP_STAR] = ACTIONS(5237), + [anon_sym_AMP_STAR_STAR] = ACTIONS(5235), + [anon_sym_DOT] = ACTIONS(5237), + [anon_sym_EQ] = ACTIONS(5237), + [anon_sym_QMARK] = ACTIONS(5235), + [anon_sym_AMP_AMP] = ACTIONS(5237), + [anon_sym_PIPE_PIPE] = ACTIONS(5237), + [anon_sym_PLUS_EQ] = ACTIONS(5235), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(5235), + [anon_sym_DASH_EQ] = ACTIONS(5235), + [anon_sym_AMP_DASH_EQ] = ACTIONS(5235), + [anon_sym_STAR_EQ] = ACTIONS(5235), + [anon_sym_AMP_STAR_EQ] = ACTIONS(5235), + [anon_sym_SLASH_EQ] = ACTIONS(5235), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5235), + [anon_sym_PERCENT_EQ] = ACTIONS(5235), + [anon_sym_PIPE_EQ] = ACTIONS(5235), + [anon_sym_AMP_EQ] = ACTIONS(5235), + [anon_sym_CARET_EQ] = ACTIONS(5235), + [anon_sym_STAR_STAR_EQ] = ACTIONS(5235), + [anon_sym_LT_LT_EQ] = ACTIONS(5235), + [anon_sym_GT_GT_EQ] = ACTIONS(5235), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5235), + [anon_sym_AMP_AMP_EQ] = ACTIONS(5235), + [anon_sym_do] = ACTIONS(5235), + [anon_sym_else] = ACTIONS(5235), + [sym__line_break] = ACTIONS(5235), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(5235), + [sym__start_of_index_operator] = ACTIONS(5235), + [sym_binary_plus] = ACTIONS(5235), + [sym_binary_minus] = ACTIONS(5235), + [sym_binary_wrapping_plus] = ACTIONS(5235), + [sym_binary_wrapping_minus] = ACTIONS(5235), + [sym__binary_star] = ACTIONS(5235), + [sym__binary_double_star] = ACTIONS(5235), + [sym_binary_ampersand] = ACTIONS(5235), + [sym__binary_slash] = ACTIONS(5235), + [sym__binary_double_slash] = ACTIONS(5235), + [sym__modifier_if_keyword] = ACTIONS(5235), + [sym__modifier_unless_keyword] = ACTIONS(5235), + [sym__regular_rescue_keyword] = ACTIONS(5235), + [sym__modifier_rescue_keyword] = ACTIONS(5235), + [sym__regular_ensure_keyword] = ACTIONS(5235), + [sym__modifier_ensure_keyword] = ACTIONS(5235), + [sym__modulo_operator] = ACTIONS(5235), [sym__heredoc_body_start] = ACTIONS(7), }, [2253] = { [sym_heredoc_body] = STATE(2253), - [sym_typeof] = STATE(4968), - [sym_constant] = STATE(4834), - [sym__type] = STATE(4962), - [sym_class_type] = STATE(4968), - [sym_union_type] = STATE(4968), - [sym__parenthesized_type] = STATE(4968), - [sym_no_args_proc_type] = STATE(4968), - [sym_parenthesized_proc_type] = STATE(4968), - [sym_tuple_type] = STATE(4968), - [sym_named_tuple_type] = STATE(4968), - [sym_generic_instance_type] = STATE(4968), - [sym_nilable_type] = STATE(4968), - [sym_pointer_type] = STATE(4968), - [sym_static_array_type] = STATE(4968), - [anon_sym_SEMI] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(5288), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5290), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5292), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [sym_self] = ACTIONS(5294), - [sym_underscore_type] = ACTIONS(5294), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_then] = ACTIONS(4325), - [sym__line_break] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5296), - [sym__start_of_named_tuple_type] = ACTIONS(5298), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(5015), + [sym_constant] = STATE(4893), + [sym__type] = STATE(4641), + [sym_class_type] = STATE(5015), + [sym_union_type] = STATE(5015), + [sym__parenthesized_type] = STATE(5015), + [sym_no_args_proc_type] = STATE(5015), + [sym_parenthesized_proc_type] = STATE(5015), + [sym_tuple_type] = STATE(5015), + [sym_named_tuple_type] = STATE(5015), + [sym_generic_instance_type] = STATE(5015), + [sym_nilable_type] = STATE(5015), + [sym_pointer_type] = STATE(5015), + [sym_static_array_type] = STATE(5015), + [anon_sym_LPAREN] = ACTIONS(5325), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5327), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5330), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [sym_self] = ACTIONS(5332), + [sym_underscore_type] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_do] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4390), + [sym__start_of_tuple_type] = ACTIONS(5334), + [sym__start_of_named_tuple_type] = ACTIONS(5336), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym__end_of_with_expression] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2254] = { [sym_heredoc_body] = STATE(2254), - [sym_typeof] = STATE(4968), - [sym_constant] = STATE(4834), - [sym__type] = STATE(4841), - [sym_class_type] = STATE(4968), - [sym_union_type] = STATE(4968), - [sym__parenthesized_type] = STATE(4968), - [sym_no_args_proc_type] = STATE(4968), - [sym_parenthesized_proc_type] = STATE(4968), - [sym_tuple_type] = STATE(4968), - [sym_named_tuple_type] = STATE(4968), - [sym_generic_instance_type] = STATE(4968), - [sym_nilable_type] = STATE(4968), - [sym_pointer_type] = STATE(4968), - [sym_static_array_type] = STATE(4968), - [anon_sym_SEMI] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(5300), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5302), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5292), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [sym_self] = ACTIONS(5294), - [sym_underscore_type] = ACTIONS(5294), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_then] = ACTIONS(4325), - [sym__line_break] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5296), - [sym__start_of_named_tuple_type] = ACTIONS(5298), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(5015), + [sym_constant] = STATE(4893), + [sym__type] = STATE(4955), + [sym_class_type] = STATE(5015), + [sym_union_type] = STATE(5015), + [sym__parenthesized_type] = STATE(5015), + [sym_no_args_proc_type] = STATE(5015), + [sym_parenthesized_proc_type] = STATE(5015), + [sym_tuple_type] = STATE(5015), + [sym_named_tuple_type] = STATE(5015), + [sym_generic_instance_type] = STATE(5015), + [sym_nilable_type] = STATE(5015), + [sym_pointer_type] = STATE(5015), + [sym_static_array_type] = STATE(5015), + [anon_sym_LPAREN] = ACTIONS(5338), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5330), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [sym_self] = ACTIONS(5332), + [sym_underscore_type] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_do] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4412), + [sym__start_of_tuple_type] = ACTIONS(5334), + [sym__start_of_named_tuple_type] = ACTIONS(5336), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym__end_of_with_expression] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2255] = { [sym_heredoc_body] = STATE(2255), - [sym_typeof] = STATE(4328), - [sym_constant] = STATE(4227), - [sym__type] = STATE(4341), - [sym_class_type] = STATE(4328), - [sym_union_type] = STATE(4328), - [sym__parenthesized_type] = STATE(4328), - [sym_no_args_proc_type] = STATE(4328), - [sym_parenthesized_proc_type] = STATE(4328), - [sym_tuple_type] = STATE(4328), - [sym_named_tuple_type] = STATE(4328), - [sym_generic_instance_type] = STATE(4328), - [sym_nilable_type] = STATE(4328), - [sym_pointer_type] = STATE(4328), - [sym_static_array_type] = STATE(4328), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(5259), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(5261), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_PIPE] = ACTIONS(4429), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ_GT] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_BANG_TILDE] = ACTIONS(4431), - [anon_sym_EQ_TILDE] = ACTIONS(4431), - [anon_sym_AMP_STAR] = ACTIONS(4429), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_typeof] = ACTIONS(5245), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [sym_self] = ACTIONS(5247), - [sym_underscore_type] = ACTIONS(5247), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_do] = ACTIONS(4431), - [anon_sym_then] = ACTIONS(4431), - [sym__line_break] = ACTIONS(4431), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4431), - [sym__start_of_tuple_type] = ACTIONS(5249), - [sym__start_of_named_tuple_type] = ACTIONS(5251), - [sym__start_of_index_operator] = ACTIONS(4431), - [sym_binary_plus] = ACTIONS(4431), - [sym_binary_minus] = ACTIONS(4431), - [sym_binary_wrapping_plus] = ACTIONS(4431), - [sym_binary_wrapping_minus] = ACTIONS(4431), - [sym__binary_star] = ACTIONS(4431), - [sym__binary_double_star] = ACTIONS(4431), - [sym_binary_ampersand] = ACTIONS(4431), - [sym__binary_slash] = ACTIONS(4431), - [sym__binary_double_slash] = ACTIONS(4431), - [sym__modulo_operator] = ACTIONS(4431), + [sym_typeof] = STATE(5015), + [sym_constant] = STATE(4893), + [sym__type] = STATE(4984), + [sym_class_type] = STATE(5015), + [sym_union_type] = STATE(5015), + [sym__parenthesized_type] = STATE(5015), + [sym_no_args_proc_type] = STATE(5015), + [sym_parenthesized_proc_type] = STATE(5015), + [sym_tuple_type] = STATE(5015), + [sym_named_tuple_type] = STATE(5015), + [sym_generic_instance_type] = STATE(5015), + [sym_nilable_type] = STATE(5015), + [sym_pointer_type] = STATE(5015), + [sym_static_array_type] = STATE(5015), + [anon_sym_LPAREN] = ACTIONS(5338), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5330), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [sym_self] = ACTIONS(5332), + [sym_underscore_type] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_do] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4390), + [sym__start_of_tuple_type] = ACTIONS(5334), + [sym__start_of_named_tuple_type] = ACTIONS(5336), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym__end_of_with_expression] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2256] = { [sym_heredoc_body] = STATE(2256), - [sym_typeof] = STATE(5003), - [sym_constant] = STATE(4652), - [sym__type] = STATE(4654), - [sym_class_type] = STATE(5003), - [sym_union_type] = STATE(5003), - [sym__parenthesized_type] = STATE(5003), - [sym_no_args_proc_type] = STATE(5003), - [sym_parenthesized_proc_type] = STATE(5003), - [sym_tuple_type] = STATE(5003), - [sym_named_tuple_type] = STATE(5003), - [sym_generic_instance_type] = STATE(5003), - [sym_nilable_type] = STATE(5003), - [sym_pointer_type] = STATE(5003), - [sym_static_array_type] = STATE(5003), - [anon_sym_LPAREN] = ACTIONS(5305), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5307), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5310), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [sym_self] = ACTIONS(5312), - [sym_underscore_type] = ACTIONS(5312), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_do] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4325), - [sym__start_of_tuple_type] = ACTIONS(5314), - [sym__start_of_named_tuple_type] = ACTIONS(5316), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym__end_of_with_expression] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_AMP_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_AMP_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_STAR_STAR_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(387), + [anon_sym_AMP_AMP_EQ] = ACTIONS(387), + [anon_sym_COLON2] = ACTIONS(5342), + [anon_sym_else] = ACTIONS(135), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__regular_rescue_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2257] = { [sym_heredoc_body] = STATE(2257), - [sym_typeof] = STATE(4968), - [sym_constant] = STATE(4834), - [sym__type] = STATE(4693), - [sym_class_type] = STATE(4968), - [sym_union_type] = STATE(4968), - [sym__parenthesized_type] = STATE(4968), - [sym_no_args_proc_type] = STATE(4968), - [sym_parenthesized_proc_type] = STATE(4968), - [sym_tuple_type] = STATE(4968), - [sym_named_tuple_type] = STATE(4968), - [sym_generic_instance_type] = STATE(4968), - [sym_nilable_type] = STATE(4968), - [sym_pointer_type] = STATE(4968), - [sym_static_array_type] = STATE(4968), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(5300), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5318), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5292), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [sym_self] = ACTIONS(5294), - [sym_underscore_type] = ACTIONS(5294), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_then] = ACTIONS(4375), - [sym__line_break] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5296), - [sym__start_of_named_tuple_type] = ACTIONS(5298), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(4483), + [sym_constant] = STATE(4258), + [sym__type] = STATE(4571), + [sym_class_type] = STATE(4483), + [sym_union_type] = STATE(4483), + [sym__parenthesized_type] = STATE(4483), + [sym_no_args_proc_type] = STATE(4483), + [sym_parenthesized_proc_type] = STATE(4483), + [sym_tuple_type] = STATE(4483), + [sym_named_tuple_type] = STATE(4483), + [sym_generic_instance_type] = STATE(4483), + [sym_nilable_type] = STATE(4483), + [sym_pointer_type] = STATE(4483), + [sym_static_array_type] = STATE(4483), + [anon_sym_SEMI] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(5277), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4446), + [anon_sym_DASH_GT] = ACTIONS(5279), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ_GT] = ACTIONS(4446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4446), + [anon_sym_BANG_TILDE] = ACTIONS(4446), + [anon_sym_EQ_TILDE] = ACTIONS(4446), + [anon_sym_AMP_STAR] = ACTIONS(4444), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4444), + [anon_sym_EQ] = ACTIONS(4444), + [anon_sym_typeof] = ACTIONS(5281), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [sym_self] = ACTIONS(5283), + [sym_underscore_type] = ACTIONS(5283), + [anon_sym_QMARK] = ACTIONS(4446), + [anon_sym_AMP_AMP] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4446), + [anon_sym_do] = ACTIONS(4446), + [anon_sym_then] = ACTIONS(4446), + [sym__line_break] = ACTIONS(4446), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4446), + [sym__start_of_tuple_type] = ACTIONS(5285), + [sym__start_of_named_tuple_type] = ACTIONS(5287), + [sym__start_of_index_operator] = ACTIONS(4446), + [sym_binary_plus] = ACTIONS(4446), + [sym_binary_minus] = ACTIONS(4446), + [sym_binary_wrapping_plus] = ACTIONS(4446), + [sym_binary_wrapping_minus] = ACTIONS(4446), + [sym__binary_star] = ACTIONS(4446), + [sym__binary_double_star] = ACTIONS(4446), + [sym_binary_ampersand] = ACTIONS(4446), + [sym__binary_slash] = ACTIONS(4446), + [sym__binary_double_slash] = ACTIONS(4446), + [sym__modulo_operator] = ACTIONS(4446), [sym__heredoc_body_start] = ACTIONS(7), }, [2258] = { [sym_heredoc_body] = STATE(2258), - [anon_sym_SEMI] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(259), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_AMP_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_AMP_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_STAR_STAR_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(395), - [anon_sym_AMP_AMP_EQ] = ACTIONS(395), - [anon_sym_COLON2] = ACTIONS(5321), - [anon_sym_else] = ACTIONS(133), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__regular_rescue_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [sym_typeof] = STATE(5020), + [sym_constant] = STATE(4791), + [sym__type] = STATE(4750), + [sym_class_type] = STATE(5020), + [sym_union_type] = STATE(5020), + [sym__parenthesized_type] = STATE(5020), + [sym_no_args_proc_type] = STATE(5020), + [sym_parenthesized_proc_type] = STATE(5020), + [sym_tuple_type] = STATE(5020), + [sym_named_tuple_type] = STATE(5020), + [sym_generic_instance_type] = STATE(5020), + [sym_nilable_type] = STATE(5020), + [sym_pointer_type] = STATE(5020), + [sym_static_array_type] = STATE(5020), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(5344), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5346), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5349), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [sym_self] = ACTIONS(5351), + [sym_underscore_type] = ACTIONS(5351), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_then] = ACTIONS(4390), + [sym__line_break] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5353), + [sym__start_of_named_tuple_type] = ACTIONS(5355), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2259] = { [sym_heredoc_body] = STATE(2259), - [anon_sym_SEMI] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(325), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(325), - [anon_sym_DASH_EQ] = ACTIONS(325), - [anon_sym_AMP_DASH_EQ] = ACTIONS(325), - [anon_sym_STAR_EQ] = ACTIONS(325), - [anon_sym_AMP_STAR_EQ] = ACTIONS(325), - [anon_sym_SLASH_EQ] = ACTIONS(325), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(325), - [anon_sym_PERCENT_EQ] = ACTIONS(325), - [anon_sym_PIPE_EQ] = ACTIONS(325), - [anon_sym_AMP_EQ] = ACTIONS(325), - [anon_sym_CARET_EQ] = ACTIONS(325), - [anon_sym_STAR_STAR_EQ] = ACTIONS(325), - [anon_sym_LT_LT_EQ] = ACTIONS(325), - [anon_sym_GT_GT_EQ] = ACTIONS(325), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(325), - [anon_sym_AMP_AMP_EQ] = ACTIONS(325), - [anon_sym_COLON2] = ACTIONS(5323), - [anon_sym_else] = ACTIONS(133), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__regular_rescue_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [sym_typeof] = STATE(4483), + [sym_constant] = STATE(4258), + [sym__type] = STATE(4573), + [sym_class_type] = STATE(4483), + [sym_union_type] = STATE(4483), + [sym__parenthesized_type] = STATE(4483), + [sym_no_args_proc_type] = STATE(4483), + [sym_parenthesized_proc_type] = STATE(4483), + [sym_tuple_type] = STATE(4483), + [sym_named_tuple_type] = STATE(4483), + [sym_generic_instance_type] = STATE(4483), + [sym_nilable_type] = STATE(4483), + [sym_pointer_type] = STATE(4483), + [sym_static_array_type] = STATE(4483), + [anon_sym_SEMI] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(5277), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4468), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4468), + [anon_sym_DASH_GT] = ACTIONS(5279), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_CARET] = ACTIONS(4468), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(4468), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ_GT] = ACTIONS(4468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), + [anon_sym_BANG_TILDE] = ACTIONS(4468), + [anon_sym_EQ_TILDE] = ACTIONS(4468), + [anon_sym_AMP_STAR] = ACTIONS(4466), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(4466), + [anon_sym_typeof] = ACTIONS(5281), + [sym__constant_segment] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(719), + [sym_self] = ACTIONS(5283), + [sym_underscore_type] = ACTIONS(5283), + [anon_sym_QMARK] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(4468), + [anon_sym_do] = ACTIONS(4468), + [anon_sym_then] = ACTIONS(4468), + [sym__line_break] = ACTIONS(4468), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4468), + [sym__start_of_tuple_type] = ACTIONS(5285), + [sym__start_of_named_tuple_type] = ACTIONS(5287), + [sym__start_of_index_operator] = ACTIONS(4468), + [sym_binary_plus] = ACTIONS(4468), + [sym_binary_minus] = ACTIONS(4468), + [sym_binary_wrapping_plus] = ACTIONS(4468), + [sym_binary_wrapping_minus] = ACTIONS(4468), + [sym__binary_star] = ACTIONS(4468), + [sym__binary_double_star] = ACTIONS(4468), + [sym_binary_ampersand] = ACTIONS(4468), + [sym__binary_slash] = ACTIONS(4468), + [sym__binary_double_slash] = ACTIONS(4468), + [sym__modulo_operator] = ACTIONS(4468), [sym__heredoc_body_start] = ACTIONS(7), }, [2260] = { [sym_heredoc_body] = STATE(2260), - [sym_typeof] = STATE(4968), - [sym_constant] = STATE(4834), - [sym__type] = STATE(4931), - [sym_class_type] = STATE(4968), - [sym_union_type] = STATE(4968), - [sym__parenthesized_type] = STATE(4968), - [sym_no_args_proc_type] = STATE(4968), - [sym_parenthesized_proc_type] = STATE(4968), - [sym_tuple_type] = STATE(4968), - [sym_named_tuple_type] = STATE(4968), - [sym_generic_instance_type] = STATE(4968), - [sym_nilable_type] = STATE(4968), - [sym_pointer_type] = STATE(4968), - [sym_static_array_type] = STATE(4968), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5288), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5290), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5292), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [sym_self] = ACTIONS(5294), - [sym_underscore_type] = ACTIONS(5294), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_then] = ACTIONS(4353), - [sym__line_break] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5296), - [sym__start_of_named_tuple_type] = ACTIONS(5298), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_AMP_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_AMP_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_STAR_STAR_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(401), + [anon_sym_AMP_AMP_EQ] = ACTIONS(401), + [anon_sym_COLON2] = ACTIONS(5357), + [anon_sym_else] = ACTIONS(135), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__regular_rescue_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2261] = { [sym_heredoc_body] = STATE(2261), - [sym_typeof] = STATE(4968), - [sym_constant] = STATE(4834), - [sym__type] = STATE(4932), - [sym_class_type] = STATE(4968), - [sym_union_type] = STATE(4968), - [sym__parenthesized_type] = STATE(4968), - [sym_no_args_proc_type] = STATE(4968), - [sym_parenthesized_proc_type] = STATE(4968), - [sym_tuple_type] = STATE(4968), - [sym_named_tuple_type] = STATE(4968), - [sym_generic_instance_type] = STATE(4968), - [sym_nilable_type] = STATE(4968), - [sym_pointer_type] = STATE(4968), - [sym_static_array_type] = STATE(4968), - [anon_sym_SEMI] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(5288), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5290), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5292), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [sym_self] = ACTIONS(5294), - [sym_underscore_type] = ACTIONS(5294), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_then] = ACTIONS(4375), - [sym__line_break] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5296), - [sym__start_of_named_tuple_type] = ACTIONS(5298), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(5020), + [sym_constant] = STATE(4791), + [sym__type] = STATE(4970), + [sym_class_type] = STATE(5020), + [sym_union_type] = STATE(5020), + [sym__parenthesized_type] = STATE(5020), + [sym_no_args_proc_type] = STATE(5020), + [sym_parenthesized_proc_type] = STATE(5020), + [sym_tuple_type] = STATE(5020), + [sym_named_tuple_type] = STATE(5020), + [sym_generic_instance_type] = STATE(5020), + [sym_nilable_type] = STATE(5020), + [sym_pointer_type] = STATE(5020), + [sym_static_array_type] = STATE(5020), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(5359), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5361), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5349), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [sym_self] = ACTIONS(5351), + [sym_underscore_type] = ACTIONS(5351), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_then] = ACTIONS(4412), + [sym__line_break] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5353), + [sym__start_of_named_tuple_type] = ACTIONS(5355), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2262] = { [sym_heredoc_body] = STATE(2262), - [sym_typeof] = STATE(5003), - [sym_constant] = STATE(4652), - [sym__type] = STATE(4953), - [sym_class_type] = STATE(5003), - [sym_union_type] = STATE(5003), - [sym__parenthesized_type] = STATE(5003), - [sym_no_args_proc_type] = STATE(5003), - [sym_parenthesized_proc_type] = STATE(5003), - [sym_tuple_type] = STATE(5003), - [sym_named_tuple_type] = STATE(5003), - [sym_generic_instance_type] = STATE(5003), - [sym_nilable_type] = STATE(5003), - [sym_pointer_type] = STATE(5003), - [sym_static_array_type] = STATE(5003), - [anon_sym_LPAREN] = ACTIONS(5325), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5327), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5310), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [sym_self] = ACTIONS(5312), - [sym_underscore_type] = ACTIONS(5312), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_do] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4375), - [sym__start_of_tuple_type] = ACTIONS(5314), - [sym__start_of_named_tuple_type] = ACTIONS(5316), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym__end_of_with_expression] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(5020), + [sym_constant] = STATE(4791), + [sym__type] = STATE(5010), + [sym_class_type] = STATE(5020), + [sym_union_type] = STATE(5020), + [sym__parenthesized_type] = STATE(5020), + [sym_no_args_proc_type] = STATE(5020), + [sym_parenthesized_proc_type] = STATE(5020), + [sym_tuple_type] = STATE(5020), + [sym_named_tuple_type] = STATE(5020), + [sym_generic_instance_type] = STATE(5020), + [sym_nilable_type] = STATE(5020), + [sym_pointer_type] = STATE(5020), + [sym_static_array_type] = STATE(5020), + [anon_sym_SEMI] = ACTIONS(4390), + [anon_sym_LPAREN] = ACTIONS(5359), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5361), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5349), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [sym_self] = ACTIONS(5351), + [sym_underscore_type] = ACTIONS(5351), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [anon_sym_then] = ACTIONS(4390), + [sym__line_break] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5353), + [sym__start_of_named_tuple_type] = ACTIONS(5355), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2263] = { [sym_heredoc_body] = STATE(2263), - [sym_typeof] = STATE(5003), - [sym_constant] = STATE(4652), - [sym__type] = STATE(4952), - [sym_class_type] = STATE(5003), - [sym_union_type] = STATE(5003), - [sym__parenthesized_type] = STATE(5003), - [sym_no_args_proc_type] = STATE(5003), - [sym_parenthesized_proc_type] = STATE(5003), - [sym_tuple_type] = STATE(5003), - [sym_named_tuple_type] = STATE(5003), - [sym_generic_instance_type] = STATE(5003), - [sym_nilable_type] = STATE(5003), - [sym_pointer_type] = STATE(5003), - [sym_static_array_type] = STATE(5003), - [anon_sym_LPAREN] = ACTIONS(5325), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5327), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5310), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [sym_self] = ACTIONS(5312), - [sym_underscore_type] = ACTIONS(5312), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_do] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4353), - [sym__start_of_tuple_type] = ACTIONS(5314), - [sym__start_of_named_tuple_type] = ACTIONS(5316), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym__end_of_with_expression] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(5015), + [sym_constant] = STATE(4893), + [sym__type] = STATE(4985), + [sym_class_type] = STATE(5015), + [sym_union_type] = STATE(5015), + [sym__parenthesized_type] = STATE(5015), + [sym_no_args_proc_type] = STATE(5015), + [sym_parenthesized_proc_type] = STATE(5015), + [sym_tuple_type] = STATE(5015), + [sym_named_tuple_type] = STATE(5015), + [sym_generic_instance_type] = STATE(5015), + [sym_nilable_type] = STATE(5015), + [sym_pointer_type] = STATE(5015), + [sym_static_array_type] = STATE(5015), + [anon_sym_LPAREN] = ACTIONS(5338), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5330), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [sym_self] = ACTIONS(5332), + [sym_underscore_type] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_do] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4362), + [sym__start_of_tuple_type] = ACTIONS(5334), + [sym__start_of_named_tuple_type] = ACTIONS(5336), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym__end_of_with_expression] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2264] = { [sym_heredoc_body] = STATE(2264), - [sym_typeof] = STATE(5003), - [sym_constant] = STATE(4652), - [sym__type] = STATE(4661), - [sym_class_type] = STATE(5003), - [sym_union_type] = STATE(5003), - [sym__parenthesized_type] = STATE(5003), - [sym_no_args_proc_type] = STATE(5003), - [sym_parenthesized_proc_type] = STATE(5003), - [sym_tuple_type] = STATE(5003), - [sym_named_tuple_type] = STATE(5003), - [sym_generic_instance_type] = STATE(5003), - [sym_nilable_type] = STATE(5003), - [sym_pointer_type] = STATE(5003), - [sym_static_array_type] = STATE(5003), - [anon_sym_LPAREN] = ACTIONS(5305), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5329), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5310), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [sym_self] = ACTIONS(5312), - [sym_underscore_type] = ACTIONS(5312), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_do] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4353), - [sym__start_of_tuple_type] = ACTIONS(5314), - [sym__start_of_named_tuple_type] = ACTIONS(5316), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym__end_of_with_expression] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(517), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(523), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(523), + [anon_sym_DASH_EQ] = ACTIONS(523), + [anon_sym_AMP_DASH_EQ] = ACTIONS(523), + [anon_sym_STAR_EQ] = ACTIONS(523), + [anon_sym_AMP_STAR_EQ] = ACTIONS(523), + [anon_sym_SLASH_EQ] = ACTIONS(523), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(523), + [anon_sym_PERCENT_EQ] = ACTIONS(523), + [anon_sym_PIPE_EQ] = ACTIONS(523), + [anon_sym_AMP_EQ] = ACTIONS(523), + [anon_sym_CARET_EQ] = ACTIONS(523), + [anon_sym_STAR_STAR_EQ] = ACTIONS(523), + [anon_sym_LT_LT_EQ] = ACTIONS(523), + [anon_sym_GT_GT_EQ] = ACTIONS(523), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(523), + [anon_sym_AMP_AMP_EQ] = ACTIONS(523), + [anon_sym_COLON2] = ACTIONS(5363), + [anon_sym_do] = ACTIONS(135), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(135), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2265] = { [sym_heredoc_body] = STATE(2265), - [anon_sym_SEMI] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(509), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(515), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(515), - [anon_sym_DASH_EQ] = ACTIONS(515), - [anon_sym_AMP_DASH_EQ] = ACTIONS(515), - [anon_sym_STAR_EQ] = ACTIONS(515), - [anon_sym_AMP_STAR_EQ] = ACTIONS(515), - [anon_sym_SLASH_EQ] = ACTIONS(515), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(515), - [anon_sym_PERCENT_EQ] = ACTIONS(515), - [anon_sym_PIPE_EQ] = ACTIONS(515), - [anon_sym_AMP_EQ] = ACTIONS(515), - [anon_sym_CARET_EQ] = ACTIONS(515), - [anon_sym_STAR_STAR_EQ] = ACTIONS(515), - [anon_sym_LT_LT_EQ] = ACTIONS(515), - [anon_sym_GT_GT_EQ] = ACTIONS(515), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(515), - [anon_sym_AMP_AMP_EQ] = ACTIONS(515), - [anon_sym_COLON2] = ACTIONS(5332), - [anon_sym_do] = ACTIONS(133), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(133), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [sym_typeof] = STATE(5020), + [sym_constant] = STATE(4791), + [sym__type] = STATE(4789), + [sym_class_type] = STATE(5020), + [sym_union_type] = STATE(5020), + [sym__parenthesized_type] = STATE(5020), + [sym_no_args_proc_type] = STATE(5020), + [sym_parenthesized_proc_type] = STATE(5020), + [sym_tuple_type] = STATE(5020), + [sym_named_tuple_type] = STATE(5020), + [sym_generic_instance_type] = STATE(5020), + [sym_nilable_type] = STATE(5020), + [sym_pointer_type] = STATE(5020), + [sym_static_array_type] = STATE(5020), + [anon_sym_SEMI] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(5344), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5365), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5349), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [sym_self] = ACTIONS(5351), + [sym_underscore_type] = ACTIONS(5351), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_then] = ACTIONS(4362), + [sym__line_break] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5353), + [sym__start_of_named_tuple_type] = ACTIONS(5355), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2266] = { [sym_heredoc_body] = STATE(2266), - [sym_typeof] = STATE(5003), - [sym_constant] = STATE(4652), - [sym__type] = STATE(4662), - [sym_class_type] = STATE(5003), - [sym_union_type] = STATE(5003), - [sym__parenthesized_type] = STATE(5003), - [sym_no_args_proc_type] = STATE(5003), - [sym_parenthesized_proc_type] = STATE(5003), - [sym_tuple_type] = STATE(5003), - [sym_named_tuple_type] = STATE(5003), - [sym_generic_instance_type] = STATE(5003), - [sym_nilable_type] = STATE(5003), - [sym_pointer_type] = STATE(5003), - [sym_static_array_type] = STATE(5003), - [anon_sym_LPAREN] = ACTIONS(5305), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5334), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5310), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [sym_self] = ACTIONS(5312), - [sym_underscore_type] = ACTIONS(5312), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [anon_sym_do] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4375), - [sym__start_of_tuple_type] = ACTIONS(5314), - [sym__start_of_named_tuple_type] = ACTIONS(5316), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym__end_of_with_expression] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(5020), + [sym_constant] = STATE(4791), + [sym__type] = STATE(4838), + [sym_class_type] = STATE(5020), + [sym_union_type] = STATE(5020), + [sym__parenthesized_type] = STATE(5020), + [sym_no_args_proc_type] = STATE(5020), + [sym_parenthesized_proc_type] = STATE(5020), + [sym_tuple_type] = STATE(5020), + [sym_named_tuple_type] = STATE(5020), + [sym_generic_instance_type] = STATE(5020), + [sym_nilable_type] = STATE(5020), + [sym_pointer_type] = STATE(5020), + [sym_static_array_type] = STATE(5020), + [anon_sym_SEMI] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(5344), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5368), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5349), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [sym_self] = ACTIONS(5351), + [sym_underscore_type] = ACTIONS(5351), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_then] = ACTIONS(4412), + [sym__line_break] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5353), + [sym__start_of_named_tuple_type] = ACTIONS(5355), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2267] = { [sym_heredoc_body] = STATE(2267), - [sym_typeof] = STATE(5003), - [sym_constant] = STATE(4652), - [sym__type] = STATE(4945), - [sym_class_type] = STATE(5003), - [sym_union_type] = STATE(5003), - [sym__parenthesized_type] = STATE(5003), - [sym_no_args_proc_type] = STATE(5003), - [sym_parenthesized_proc_type] = STATE(5003), - [sym_tuple_type] = STATE(5003), - [sym_named_tuple_type] = STATE(5003), - [sym_generic_instance_type] = STATE(5003), - [sym_nilable_type] = STATE(5003), - [sym_pointer_type] = STATE(5003), - [sym_static_array_type] = STATE(5003), + [sym_typeof] = STATE(5015), + [sym_constant] = STATE(4893), + [sym__type] = STATE(4832), + [sym_class_type] = STATE(5015), + [sym_union_type] = STATE(5015), + [sym__parenthesized_type] = STATE(5015), + [sym_no_args_proc_type] = STATE(5015), + [sym_parenthesized_proc_type] = STATE(5015), + [sym_tuple_type] = STATE(5015), + [sym_named_tuple_type] = STATE(5015), + [sym_generic_instance_type] = STATE(5015), + [sym_nilable_type] = STATE(5015), + [sym_pointer_type] = STATE(5015), + [sym_static_array_type] = STATE(5015), [anon_sym_LPAREN] = ACTIONS(5325), [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5327), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5310), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [sym_self] = ACTIONS(5312), - [sym_underscore_type] = ACTIONS(5312), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [anon_sym_do] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4325), - [sym__start_of_tuple_type] = ACTIONS(5314), - [sym__start_of_named_tuple_type] = ACTIONS(5316), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym__end_of_with_expression] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5371), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5330), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [sym_self] = ACTIONS(5332), + [sym_underscore_type] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [anon_sym_do] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4412), + [sym__start_of_tuple_type] = ACTIONS(5334), + [sym__start_of_named_tuple_type] = ACTIONS(5336), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym__end_of_with_expression] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2268] = { [sym_heredoc_body] = STATE(2268), - [sym_typeof] = STATE(4968), - [sym_constant] = STATE(4834), - [sym__type] = STATE(4690), - [sym_class_type] = STATE(4968), - [sym_union_type] = STATE(4968), - [sym__parenthesized_type] = STATE(4968), - [sym_no_args_proc_type] = STATE(4968), - [sym_parenthesized_proc_type] = STATE(4968), - [sym_tuple_type] = STATE(4968), - [sym_named_tuple_type] = STATE(4968), - [sym_generic_instance_type] = STATE(4968), - [sym_nilable_type] = STATE(4968), - [sym_pointer_type] = STATE(4968), - [sym_static_array_type] = STATE(4968), - [anon_sym_SEMI] = ACTIONS(4353), - [anon_sym_LPAREN] = ACTIONS(5300), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5337), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5292), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [sym_self] = ACTIONS(5294), - [sym_underscore_type] = ACTIONS(5294), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [anon_sym_then] = ACTIONS(4353), - [sym__line_break] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5296), - [sym__start_of_named_tuple_type] = ACTIONS(5298), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(5015), + [sym_constant] = STATE(4893), + [sym__type] = STATE(4643), + [sym_class_type] = STATE(5015), + [sym_union_type] = STATE(5015), + [sym__parenthesized_type] = STATE(5015), + [sym_no_args_proc_type] = STATE(5015), + [sym_parenthesized_proc_type] = STATE(5015), + [sym_tuple_type] = STATE(5015), + [sym_named_tuple_type] = STATE(5015), + [sym_generic_instance_type] = STATE(5015), + [sym_nilable_type] = STATE(5015), + [sym_pointer_type] = STATE(5015), + [sym_static_array_type] = STATE(5015), + [anon_sym_LPAREN] = ACTIONS(5325), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5374), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5330), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [sym_self] = ACTIONS(5332), + [sym_underscore_type] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_do] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4362), + [sym__start_of_tuple_type] = ACTIONS(5334), + [sym__start_of_named_tuple_type] = ACTIONS(5336), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym__end_of_with_expression] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2269] = { [sym_heredoc_body] = STATE(2269), - [sym_typeof] = STATE(4328), - [sym_constant] = STATE(4227), - [sym__type] = STATE(4340), - [sym_class_type] = STATE(4328), - [sym_union_type] = STATE(4328), - [sym__parenthesized_type] = STATE(4328), - [sym_no_args_proc_type] = STATE(4328), - [sym_parenthesized_proc_type] = STATE(4328), - [sym_tuple_type] = STATE(4328), - [sym_named_tuple_type] = STATE(4328), - [sym_generic_instance_type] = STATE(4328), - [sym_nilable_type] = STATE(4328), - [sym_pointer_type] = STATE(4328), - [sym_static_array_type] = STATE(4328), - [anon_sym_SEMI] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(5259), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4409), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4409), - [anon_sym_DASH_GT] = ACTIONS(5261), - [anon_sym_LT] = ACTIONS(4407), - [anon_sym_PIPE] = ACTIONS(4407), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym_GT_GT] = ACTIONS(4409), - [anon_sym_LT_LT] = ACTIONS(4409), - [anon_sym_EQ_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ_GT] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), - [anon_sym_BANG_TILDE] = ACTIONS(4409), - [anon_sym_EQ_TILDE] = ACTIONS(4409), - [anon_sym_AMP_STAR] = ACTIONS(4407), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4409), - [anon_sym_DOT] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4407), - [anon_sym_typeof] = ACTIONS(5245), - [sym__constant_segment] = ACTIONS(2982), - [anon_sym_COLON_COLON] = ACTIONS(709), - [sym_self] = ACTIONS(5247), - [sym_underscore_type] = ACTIONS(5247), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_AMP_AMP] = ACTIONS(4409), - [anon_sym_PIPE_PIPE] = ACTIONS(4409), - [anon_sym_do] = ACTIONS(4409), - [anon_sym_then] = ACTIONS(4409), - [sym__line_break] = ACTIONS(4409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4409), - [sym__start_of_tuple_type] = ACTIONS(5249), - [sym__start_of_named_tuple_type] = ACTIONS(5251), - [sym__start_of_index_operator] = ACTIONS(4409), - [sym_binary_plus] = ACTIONS(4409), - [sym_binary_minus] = ACTIONS(4409), - [sym_binary_wrapping_plus] = ACTIONS(4409), - [sym_binary_wrapping_minus] = ACTIONS(4409), - [sym__binary_star] = ACTIONS(4409), - [sym__binary_double_star] = ACTIONS(4409), - [sym_binary_ampersand] = ACTIONS(4409), - [sym__binary_slash] = ACTIONS(4409), - [sym__binary_double_slash] = ACTIONS(4409), - [sym__modulo_operator] = ACTIONS(4409), + [sym_typeof] = STATE(5020), + [sym_constant] = STATE(4791), + [sym__type] = STATE(5022), + [sym_class_type] = STATE(5020), + [sym_union_type] = STATE(5020), + [sym__parenthesized_type] = STATE(5020), + [sym_no_args_proc_type] = STATE(5020), + [sym_parenthesized_proc_type] = STATE(5020), + [sym_tuple_type] = STATE(5020), + [sym_named_tuple_type] = STATE(5020), + [sym_generic_instance_type] = STATE(5020), + [sym_nilable_type] = STATE(5020), + [sym_pointer_type] = STATE(5020), + [sym_static_array_type] = STATE(5020), + [anon_sym_SEMI] = ACTIONS(4362), + [anon_sym_LPAREN] = ACTIONS(5359), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5361), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5349), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [sym_self] = ACTIONS(5351), + [sym_underscore_type] = ACTIONS(5351), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [anon_sym_then] = ACTIONS(4362), + [sym__line_break] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5353), + [sym__start_of_named_tuple_type] = ACTIONS(5355), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2270] = { [sym_heredoc_body] = STATE(2270), - [anon_sym_SEMI] = ACTIONS(5182), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5182), - [anon_sym_DOT_DOT] = ACTIONS(5184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5182), - [anon_sym_end] = ACTIONS(5182), - [anon_sym_LT] = ACTIONS(5184), - [anon_sym_PIPE] = ACTIONS(5184), - [anon_sym_CARET] = ACTIONS(5184), - [anon_sym_GT_GT] = ACTIONS(5184), - [anon_sym_LT_LT] = ACTIONS(5184), - [anon_sym_EQ_EQ] = ACTIONS(5184), - [anon_sym_BANG_EQ] = ACTIONS(5182), - [anon_sym_LT_EQ] = ACTIONS(5184), - [anon_sym_GT] = ACTIONS(5184), - [anon_sym_GT_EQ] = ACTIONS(5182), - [anon_sym_LT_EQ_GT] = ACTIONS(5182), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5182), - [anon_sym_BANG_TILDE] = ACTIONS(5182), - [anon_sym_EQ_TILDE] = ACTIONS(5182), - [anon_sym_AMP_STAR] = ACTIONS(5184), - [anon_sym_AMP_STAR_STAR] = ACTIONS(5182), - [anon_sym_DOT] = ACTIONS(5184), - [anon_sym_EQ] = ACTIONS(5184), - [anon_sym_QMARK] = ACTIONS(5182), - [anon_sym_AMP_AMP] = ACTIONS(5184), - [anon_sym_PIPE_PIPE] = ACTIONS(5184), - [anon_sym_PLUS_EQ] = ACTIONS(5182), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(5182), - [anon_sym_DASH_EQ] = ACTIONS(5182), - [anon_sym_AMP_DASH_EQ] = ACTIONS(5182), - [anon_sym_STAR_EQ] = ACTIONS(5182), - [anon_sym_AMP_STAR_EQ] = ACTIONS(5182), - [anon_sym_SLASH_EQ] = ACTIONS(5182), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5182), - [anon_sym_PERCENT_EQ] = ACTIONS(5182), - [anon_sym_PIPE_EQ] = ACTIONS(5182), - [anon_sym_AMP_EQ] = ACTIONS(5182), - [anon_sym_CARET_EQ] = ACTIONS(5182), - [anon_sym_STAR_STAR_EQ] = ACTIONS(5182), - [anon_sym_LT_LT_EQ] = ACTIONS(5182), - [anon_sym_GT_GT_EQ] = ACTIONS(5182), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5182), - [anon_sym_AMP_AMP_EQ] = ACTIONS(5182), - [anon_sym_do] = ACTIONS(5182), - [sym__line_break] = ACTIONS(5182), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(5182), - [sym__start_of_index_operator] = ACTIONS(5182), - [sym_binary_plus] = ACTIONS(5182), - [sym_binary_minus] = ACTIONS(5182), - [sym_binary_wrapping_plus] = ACTIONS(5182), - [sym_binary_wrapping_minus] = ACTIONS(5182), - [sym__binary_star] = ACTIONS(5182), - [sym__binary_double_star] = ACTIONS(5182), - [sym_binary_ampersand] = ACTIONS(5182), - [sym__binary_slash] = ACTIONS(5182), - [sym__binary_double_slash] = ACTIONS(5182), - [sym__modifier_if_keyword] = ACTIONS(5182), - [sym__modifier_unless_keyword] = ACTIONS(5182), - [sym__modifier_rescue_keyword] = ACTIONS(5182), - [sym__regular_ensure_keyword] = ACTIONS(5182), - [sym__modifier_ensure_keyword] = ACTIONS(5182), - [sym__modulo_operator] = ACTIONS(5182), + [sym_typeof] = STATE(5099), + [sym_constant] = STATE(5014), + [sym__type] = STATE(5124), + [sym_class_type] = STATE(5099), + [sym_union_type] = STATE(5099), + [sym__parenthesized_type] = STATE(5099), + [sym_no_args_proc_type] = STATE(5099), + [sym_parenthesized_proc_type] = STATE(5099), + [sym_tuple_type] = STATE(5099), + [sym_named_tuple_type] = STATE(5099), + [sym_generic_instance_type] = STATE(5099), + [sym_nilable_type] = STATE(5099), + [sym_pointer_type] = STATE(5099), + [sym_static_array_type] = STATE(5099), + [anon_sym_LPAREN] = ACTIONS(5377), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_RBRACK] = ACTIONS(4410), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5379), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5381), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [sym_self] = ACTIONS(5383), + [sym_underscore_type] = ACTIONS(5383), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_RBRACK_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5385), + [sym__start_of_named_tuple_type] = ACTIONS(5387), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2271] = { [sym_heredoc_body] = STATE(2271), - [sym_typeof] = STATE(4663), - [sym_constant] = STATE(4347), - [sym__type] = STATE(4681), - [sym_class_type] = STATE(4663), - [sym_union_type] = STATE(4663), - [sym__parenthesized_type] = STATE(4663), - [sym_no_args_proc_type] = STATE(4663), - [sym_parenthesized_proc_type] = STATE(4663), - [sym_tuple_type] = STATE(4663), - [sym_named_tuple_type] = STATE(4663), - [sym_generic_instance_type] = STATE(4663), - [sym_nilable_type] = STATE(4663), - [sym_pointer_type] = STATE(4663), - [sym_static_array_type] = STATE(4663), - [anon_sym_LPAREN] = ACTIONS(5265), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4409), - [anon_sym_RBRACK] = ACTIONS(4407), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4409), - [anon_sym_DASH_GT] = ACTIONS(5267), - [anon_sym_LT] = ACTIONS(4407), - [anon_sym_PIPE] = ACTIONS(4407), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym_GT_GT] = ACTIONS(4409), - [anon_sym_LT_LT] = ACTIONS(4409), - [anon_sym_EQ_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ_GT] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), - [anon_sym_BANG_TILDE] = ACTIONS(4409), - [anon_sym_EQ_TILDE] = ACTIONS(4409), - [anon_sym_AMP_STAR] = ACTIONS(4407), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4409), - [anon_sym_DOT] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4407), - [anon_sym_typeof] = ACTIONS(5269), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [sym_self] = ACTIONS(5271), - [sym_underscore_type] = ACTIONS(5271), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_RBRACK_QMARK] = ACTIONS(4409), - [anon_sym_AMP_AMP] = ACTIONS(4409), - [anon_sym_PIPE_PIPE] = ACTIONS(4409), - [anon_sym_do] = ACTIONS(4409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4409), - [sym__start_of_tuple_type] = ACTIONS(5273), - [sym__start_of_named_tuple_type] = ACTIONS(5275), - [sym__start_of_index_operator] = ACTIONS(4409), - [sym_binary_plus] = ACTIONS(4409), - [sym_binary_minus] = ACTIONS(4409), - [sym_binary_wrapping_plus] = ACTIONS(4409), - [sym_binary_wrapping_minus] = ACTIONS(4409), - [sym__binary_star] = ACTIONS(4409), - [sym__binary_double_star] = ACTIONS(4409), - [sym_binary_ampersand] = ACTIONS(4409), - [sym__binary_slash] = ACTIONS(4409), - [sym__binary_double_slash] = ACTIONS(4409), - [sym__modulo_operator] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(381), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_AMP_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_AMP_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_STAR_STAR_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(387), + [anon_sym_AMP_AMP_EQ] = ACTIONS(387), + [anon_sym_else] = ACTIONS(135), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__regular_rescue_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2272] = { [sym_heredoc_body] = STATE(2272), - [sym_typeof] = STATE(4663), - [sym_constant] = STATE(4347), - [sym__type] = STATE(4682), - [sym_class_type] = STATE(4663), - [sym_union_type] = STATE(4663), - [sym__parenthesized_type] = STATE(4663), - [sym_no_args_proc_type] = STATE(4663), - [sym_parenthesized_proc_type] = STATE(4663), - [sym_tuple_type] = STATE(4663), - [sym_named_tuple_type] = STATE(4663), - [sym_generic_instance_type] = STATE(4663), - [sym_nilable_type] = STATE(4663), - [sym_pointer_type] = STATE(4663), - [sym_static_array_type] = STATE(4663), - [anon_sym_LPAREN] = ACTIONS(5265), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4429), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(5267), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_PIPE] = ACTIONS(4429), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ_GT] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_BANG_TILDE] = ACTIONS(4431), - [anon_sym_EQ_TILDE] = ACTIONS(4431), - [anon_sym_AMP_STAR] = ACTIONS(4429), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_typeof] = ACTIONS(5269), - [sym__constant_segment] = ACTIONS(2996), - [anon_sym_COLON_COLON] = ACTIONS(831), - [sym_self] = ACTIONS(5271), - [sym_underscore_type] = ACTIONS(5271), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_RBRACK_QMARK] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_do] = ACTIONS(4431), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4431), - [sym__start_of_tuple_type] = ACTIONS(5273), - [sym__start_of_named_tuple_type] = ACTIONS(5275), - [sym__start_of_index_operator] = ACTIONS(4431), - [sym_binary_plus] = ACTIONS(4431), - [sym_binary_minus] = ACTIONS(4431), - [sym_binary_wrapping_plus] = ACTIONS(4431), - [sym_binary_wrapping_minus] = ACTIONS(4431), - [sym__binary_star] = ACTIONS(4431), - [sym__binary_double_star] = ACTIONS(4431), - [sym_binary_ampersand] = ACTIONS(4431), - [sym__binary_slash] = ACTIONS(4431), - [sym__binary_double_slash] = ACTIONS(4431), - [sym__modulo_operator] = ACTIONS(4431), + [sym_typeof] = STATE(4646), + [sym_constant] = STATE(4464), + [sym__type] = STATE(4675), + [sym_class_type] = STATE(4646), + [sym_union_type] = STATE(4646), + [sym__parenthesized_type] = STATE(4646), + [sym_no_args_proc_type] = STATE(4646), + [sym_parenthesized_proc_type] = STATE(4646), + [sym_tuple_type] = STATE(4646), + [sym_named_tuple_type] = STATE(4646), + [sym_generic_instance_type] = STATE(4646), + [sym_nilable_type] = STATE(4646), + [sym_pointer_type] = STATE(4646), + [sym_static_array_type] = STATE(4646), + [anon_sym_LPAREN] = ACTIONS(5302), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4446), + [anon_sym_RBRACK] = ACTIONS(4444), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4446), + [anon_sym_DASH_GT] = ACTIONS(5304), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ_GT] = ACTIONS(4446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4446), + [anon_sym_BANG_TILDE] = ACTIONS(4446), + [anon_sym_EQ_TILDE] = ACTIONS(4446), + [anon_sym_AMP_STAR] = ACTIONS(4444), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4444), + [anon_sym_EQ] = ACTIONS(4444), + [anon_sym_typeof] = ACTIONS(5306), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [sym_self] = ACTIONS(5308), + [sym_underscore_type] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(4446), + [anon_sym_RBRACK_QMARK] = ACTIONS(4446), + [anon_sym_AMP_AMP] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4446), + [anon_sym_do] = ACTIONS(4446), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4446), + [sym__start_of_tuple_type] = ACTIONS(5310), + [sym__start_of_named_tuple_type] = ACTIONS(5312), + [sym__start_of_index_operator] = ACTIONS(4446), + [sym_binary_plus] = ACTIONS(4446), + [sym_binary_minus] = ACTIONS(4446), + [sym_binary_wrapping_plus] = ACTIONS(4446), + [sym_binary_wrapping_minus] = ACTIONS(4446), + [sym__binary_star] = ACTIONS(4446), + [sym__binary_double_star] = ACTIONS(4446), + [sym_binary_ampersand] = ACTIONS(4446), + [sym__binary_slash] = ACTIONS(4446), + [sym__binary_double_slash] = ACTIONS(4446), + [sym__modulo_operator] = ACTIONS(4446), [sym__heredoc_body_start] = ACTIONS(7), }, [2273] = { [sym_heredoc_body] = STATE(2273), - [sym_typeof] = STATE(5055), - [sym_constant] = STATE(4886), - [sym__type] = STATE(4890), - [sym_class_type] = STATE(5055), - [sym_union_type] = STATE(5055), - [sym__parenthesized_type] = STATE(5055), - [sym_no_args_proc_type] = STATE(5055), - [sym_parenthesized_proc_type] = STATE(5055), - [sym_tuple_type] = STATE(5055), - [sym_named_tuple_type] = STATE(5055), - [sym_generic_instance_type] = STATE(5055), - [sym_nilable_type] = STATE(5055), - [sym_pointer_type] = STATE(5055), - [sym_static_array_type] = STATE(5055), - [anon_sym_LPAREN] = ACTIONS(5340), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_RBRACK] = ACTIONS(4323), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5342), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5345), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [sym_self] = ACTIONS(5347), - [sym_underscore_type] = ACTIONS(5347), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_RBRACK_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5349), - [sym__start_of_named_tuple_type] = ACTIONS(5351), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [anon_sym_RPAREN] = ACTIONS(5235), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(5235), + [anon_sym_COMMA] = ACTIONS(5235), + [anon_sym_RBRACK] = ACTIONS(5235), + [anon_sym_DOT_DOT] = ACTIONS(5237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5235), + [anon_sym_end] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5237), + [anon_sym_PIPE] = ACTIONS(5237), + [anon_sym_CARET] = ACTIONS(5237), + [anon_sym_GT_GT] = ACTIONS(5237), + [anon_sym_LT_LT] = ACTIONS(5237), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ] = ACTIONS(5237), + [anon_sym_GT] = ACTIONS(5237), + [anon_sym_GT_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ_GT] = ACTIONS(5235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5235), + [anon_sym_BANG_TILDE] = ACTIONS(5235), + [anon_sym_EQ_TILDE] = ACTIONS(5235), + [anon_sym_AMP_STAR] = ACTIONS(5237), + [anon_sym_AMP_STAR_STAR] = ACTIONS(5235), + [anon_sym_DOT] = ACTIONS(5237), + [anon_sym_EQ] = ACTIONS(5237), + [anon_sym_QMARK] = ACTIONS(5235), + [anon_sym_AMP_AMP] = ACTIONS(5237), + [anon_sym_PIPE_PIPE] = ACTIONS(5237), + [anon_sym_PLUS_EQ] = ACTIONS(5235), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(5235), + [anon_sym_DASH_EQ] = ACTIONS(5235), + [anon_sym_AMP_DASH_EQ] = ACTIONS(5235), + [anon_sym_STAR_EQ] = ACTIONS(5235), + [anon_sym_AMP_STAR_EQ] = ACTIONS(5235), + [anon_sym_SLASH_EQ] = ACTIONS(5235), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5235), + [anon_sym_PERCENT_EQ] = ACTIONS(5235), + [anon_sym_PIPE_EQ] = ACTIONS(5235), + [anon_sym_AMP_EQ] = ACTIONS(5235), + [anon_sym_CARET_EQ] = ACTIONS(5235), + [anon_sym_STAR_STAR_EQ] = ACTIONS(5235), + [anon_sym_LT_LT_EQ] = ACTIONS(5235), + [anon_sym_GT_GT_EQ] = ACTIONS(5235), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5235), + [anon_sym_AMP_AMP_EQ] = ACTIONS(5235), + [anon_sym_COLON2] = ACTIONS(5235), + [anon_sym_do] = ACTIONS(5235), + [anon_sym_else] = ACTIONS(5235), + [anon_sym_when] = ACTIONS(5235), + [anon_sym_in] = ACTIONS(5235), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(5235), + [sym__start_of_index_operator] = ACTIONS(5235), + [sym_binary_plus] = ACTIONS(5235), + [sym_binary_minus] = ACTIONS(5235), + [sym_binary_wrapping_plus] = ACTIONS(5235), + [sym_binary_wrapping_minus] = ACTIONS(5235), + [sym__binary_star] = ACTIONS(5235), + [sym__binary_double_star] = ACTIONS(5235), + [sym_binary_ampersand] = ACTIONS(5235), + [sym__binary_slash] = ACTIONS(5235), + [sym__binary_double_slash] = ACTIONS(5235), + [sym__modulo_operator] = ACTIONS(5235), [sym__heredoc_body_start] = ACTIONS(7), }, [2274] = { [sym_heredoc_body] = STATE(2274), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_RBRACK] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(551), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(579), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(579), - [anon_sym_DASH_EQ] = ACTIONS(579), - [anon_sym_AMP_DASH_EQ] = ACTIONS(579), - [anon_sym_STAR_EQ] = ACTIONS(579), - [anon_sym_AMP_STAR_EQ] = ACTIONS(579), - [anon_sym_SLASH_EQ] = ACTIONS(579), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(579), - [anon_sym_PERCENT_EQ] = ACTIONS(579), - [anon_sym_PIPE_EQ] = ACTIONS(579), - [anon_sym_AMP_EQ] = ACTIONS(579), - [anon_sym_CARET_EQ] = ACTIONS(579), - [anon_sym_STAR_STAR_EQ] = ACTIONS(579), - [anon_sym_LT_LT_EQ] = ACTIONS(579), - [anon_sym_GT_GT_EQ] = ACTIONS(579), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(579), - [anon_sym_AMP_AMP_EQ] = ACTIONS(579), - [anon_sym_COLON2] = ACTIONS(5353), - [anon_sym_do] = ACTIONS(133), - [anon_sym_else] = ACTIONS(133), - [anon_sym_when] = ACTIONS(133), - [anon_sym_in] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(133), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [sym_typeof] = STATE(5099), + [sym_constant] = STATE(5014), + [sym__type] = STATE(5037), + [sym_class_type] = STATE(5099), + [sym_union_type] = STATE(5099), + [sym__parenthesized_type] = STATE(5099), + [sym_no_args_proc_type] = STATE(5099), + [sym_parenthesized_proc_type] = STATE(5099), + [sym_tuple_type] = STATE(5099), + [sym_named_tuple_type] = STATE(5099), + [sym_generic_instance_type] = STATE(5099), + [sym_nilable_type] = STATE(5099), + [sym_pointer_type] = STATE(5099), + [sym_static_array_type] = STATE(5099), + [anon_sym_LPAREN] = ACTIONS(5389), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_RBRACK] = ACTIONS(4410), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5391), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5381), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [sym_self] = ACTIONS(5383), + [sym_underscore_type] = ACTIONS(5383), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_RBRACK_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5385), + [sym__start_of_named_tuple_type] = ACTIONS(5387), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2275] = { [sym_heredoc_body] = STATE(2275), - [anon_sym_SEMI] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(259), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_AMP_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_AMP_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_STAR_STAR_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(395), - [anon_sym_AMP_AMP_EQ] = ACTIONS(395), - [anon_sym_else] = ACTIONS(133), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__regular_rescue_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [sym_typeof] = STATE(5099), + [sym_constant] = STATE(5014), + [sym__type] = STATE(5085), + [sym_class_type] = STATE(5099), + [sym_union_type] = STATE(5099), + [sym__parenthesized_type] = STATE(5099), + [sym_no_args_proc_type] = STATE(5099), + [sym_parenthesized_proc_type] = STATE(5099), + [sym_tuple_type] = STATE(5099), + [sym_named_tuple_type] = STATE(5099), + [sym_generic_instance_type] = STATE(5099), + [sym_nilable_type] = STATE(5099), + [sym_pointer_type] = STATE(5099), + [sym_static_array_type] = STATE(5099), + [anon_sym_LPAREN] = ACTIONS(5377), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_RBRACK] = ACTIONS(4388), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5379), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5381), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [sym_self] = ACTIONS(5383), + [sym_underscore_type] = ACTIONS(5383), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_RBRACK_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5385), + [sym__start_of_named_tuple_type] = ACTIONS(5387), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2276] = { [sym_heredoc_body] = STATE(2276), - [sym_typeof] = STATE(5055), - [sym_constant] = STATE(4886), - [sym__type] = STATE(4927), - [sym_class_type] = STATE(5055), - [sym_union_type] = STATE(5055), - [sym__parenthesized_type] = STATE(5055), - [sym_no_args_proc_type] = STATE(5055), - [sym_parenthesized_proc_type] = STATE(5055), - [sym_tuple_type] = STATE(5055), - [sym_named_tuple_type] = STATE(5055), - [sym_generic_instance_type] = STATE(5055), - [sym_nilable_type] = STATE(5055), - [sym_pointer_type] = STATE(5055), - [sym_static_array_type] = STATE(5055), - [anon_sym_LPAREN] = ACTIONS(5340), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RBRACK] = ACTIONS(4351), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5355), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5345), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [sym_self] = ACTIONS(5347), - [sym_underscore_type] = ACTIONS(5347), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_RBRACK_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5349), - [sym__start_of_named_tuple_type] = ACTIONS(5351), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(5099), + [sym_constant] = STATE(5014), + [sym__type] = STATE(4979), + [sym_class_type] = STATE(5099), + [sym_union_type] = STATE(5099), + [sym__parenthesized_type] = STATE(5099), + [sym_no_args_proc_type] = STATE(5099), + [sym_parenthesized_proc_type] = STATE(5099), + [sym_tuple_type] = STATE(5099), + [sym_named_tuple_type] = STATE(5099), + [sym_generic_instance_type] = STATE(5099), + [sym_nilable_type] = STATE(5099), + [sym_pointer_type] = STATE(5099), + [sym_static_array_type] = STATE(5099), + [anon_sym_LPAREN] = ACTIONS(5389), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_RBRACK] = ACTIONS(4388), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5394), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5381), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [sym_self] = ACTIONS(5383), + [sym_underscore_type] = ACTIONS(5383), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_RBRACK_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5385), + [sym__start_of_named_tuple_type] = ACTIONS(5387), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2277] = { [sym_heredoc_body] = STATE(2277), - [sym_typeof] = STATE(5055), - [sym_constant] = STATE(4886), - [sym__type] = STATE(4928), - [sym_class_type] = STATE(5055), - [sym_union_type] = STATE(5055), - [sym__parenthesized_type] = STATE(5055), - [sym_no_args_proc_type] = STATE(5055), - [sym_parenthesized_proc_type] = STATE(5055), - [sym_tuple_type] = STATE(5055), - [sym_named_tuple_type] = STATE(5055), - [sym_generic_instance_type] = STATE(5055), - [sym_nilable_type] = STATE(5055), - [sym_pointer_type] = STATE(5055), - [sym_static_array_type] = STATE(5055), - [anon_sym_LPAREN] = ACTIONS(5340), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_RBRACK] = ACTIONS(4373), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5358), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5345), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [sym_self] = ACTIONS(5347), - [sym_underscore_type] = ACTIONS(5347), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_RBRACK_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5349), - [sym__start_of_named_tuple_type] = ACTIONS(5351), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(5099), + [sym_constant] = STATE(5014), + [sym__type] = STATE(4980), + [sym_class_type] = STATE(5099), + [sym_union_type] = STATE(5099), + [sym__parenthesized_type] = STATE(5099), + [sym_no_args_proc_type] = STATE(5099), + [sym_parenthesized_proc_type] = STATE(5099), + [sym_tuple_type] = STATE(5099), + [sym_named_tuple_type] = STATE(5099), + [sym_generic_instance_type] = STATE(5099), + [sym_nilable_type] = STATE(5099), + [sym_pointer_type] = STATE(5099), + [sym_static_array_type] = STATE(5099), + [anon_sym_LPAREN] = ACTIONS(5389), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_RBRACK] = ACTIONS(4360), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5397), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5381), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [sym_self] = ACTIONS(5383), + [sym_underscore_type] = ACTIONS(5383), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_RBRACK_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5385), + [sym__start_of_named_tuple_type] = ACTIONS(5387), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2278] = { [sym_heredoc_body] = STATE(2278), - [anon_sym_SEMI] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(509), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(515), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(515), - [anon_sym_DASH_EQ] = ACTIONS(515), - [anon_sym_AMP_DASH_EQ] = ACTIONS(515), - [anon_sym_STAR_EQ] = ACTIONS(515), - [anon_sym_AMP_STAR_EQ] = ACTIONS(515), - [anon_sym_SLASH_EQ] = ACTIONS(515), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(515), - [anon_sym_PERCENT_EQ] = ACTIONS(515), - [anon_sym_PIPE_EQ] = ACTIONS(515), - [anon_sym_AMP_EQ] = ACTIONS(515), - [anon_sym_CARET_EQ] = ACTIONS(515), - [anon_sym_STAR_STAR_EQ] = ACTIONS(515), - [anon_sym_LT_LT_EQ] = ACTIONS(515), - [anon_sym_GT_GT_EQ] = ACTIONS(515), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(515), - [anon_sym_AMP_AMP_EQ] = ACTIONS(515), - [anon_sym_do] = ACTIONS(133), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(133), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [sym_typeof] = STATE(5099), + [sym_constant] = STATE(5014), + [sym__type] = STATE(5086), + [sym_class_type] = STATE(5099), + [sym_union_type] = STATE(5099), + [sym__parenthesized_type] = STATE(5099), + [sym_no_args_proc_type] = STATE(5099), + [sym_parenthesized_proc_type] = STATE(5099), + [sym_tuple_type] = STATE(5099), + [sym_named_tuple_type] = STATE(5099), + [sym_generic_instance_type] = STATE(5099), + [sym_nilable_type] = STATE(5099), + [sym_pointer_type] = STATE(5099), + [sym_static_array_type] = STATE(5099), + [anon_sym_LPAREN] = ACTIONS(5377), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_RBRACK] = ACTIONS(4360), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5379), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5381), + [sym__constant_segment] = ACTIONS(3083), + [anon_sym_COLON_COLON] = ACTIONS(2312), + [sym_self] = ACTIONS(5383), + [sym_underscore_type] = ACTIONS(5383), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_RBRACK_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5385), + [sym__start_of_named_tuple_type] = ACTIONS(5387), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2279] = { [sym_heredoc_body] = STATE(2279), - [anon_sym_SEMI] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_AMP_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_AMP_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_STAR_STAR_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(395), - [anon_sym_AMP_AMP_EQ] = ACTIONS(395), - [anon_sym_COLON2] = ACTIONS(5321), - [anon_sym_else] = ACTIONS(133), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__regular_rescue_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_AMP_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_AMP_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_STAR_STAR_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(401), + [anon_sym_AMP_AMP_EQ] = ACTIONS(401), + [anon_sym_else] = ACTIONS(135), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__regular_rescue_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2280] = { [sym_heredoc_body] = STATE(2280), - [anon_sym_SEMI] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(297), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(325), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(325), - [anon_sym_DASH_EQ] = ACTIONS(325), - [anon_sym_AMP_DASH_EQ] = ACTIONS(325), - [anon_sym_STAR_EQ] = ACTIONS(325), - [anon_sym_AMP_STAR_EQ] = ACTIONS(325), - [anon_sym_SLASH_EQ] = ACTIONS(325), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(325), - [anon_sym_PERCENT_EQ] = ACTIONS(325), - [anon_sym_PIPE_EQ] = ACTIONS(325), - [anon_sym_AMP_EQ] = ACTIONS(325), - [anon_sym_CARET_EQ] = ACTIONS(325), - [anon_sym_STAR_STAR_EQ] = ACTIONS(325), - [anon_sym_LT_LT_EQ] = ACTIONS(325), - [anon_sym_GT_GT_EQ] = ACTIONS(325), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(325), - [anon_sym_AMP_AMP_EQ] = ACTIONS(325), - [anon_sym_else] = ACTIONS(133), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__regular_rescue_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_AMP_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_AMP_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_STAR_STAR_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(401), + [anon_sym_AMP_AMP_EQ] = ACTIONS(401), + [anon_sym_COLON2] = ACTIONS(5357), + [anon_sym_else] = ACTIONS(135), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__regular_rescue_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2281] = { [sym_heredoc_body] = STATE(2281), - [anon_sym_SEMI] = ACTIONS(5182), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(5182), - [anon_sym_DOT_DOT] = ACTIONS(5184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5182), - [anon_sym_end] = ACTIONS(5182), - [anon_sym_LT] = ACTIONS(5184), - [anon_sym_PIPE] = ACTIONS(5184), - [anon_sym_CARET] = ACTIONS(5184), - [anon_sym_GT_GT] = ACTIONS(5184), - [anon_sym_LT_LT] = ACTIONS(5184), - [anon_sym_EQ_EQ] = ACTIONS(5184), - [anon_sym_BANG_EQ] = ACTIONS(5182), - [anon_sym_LT_EQ] = ACTIONS(5184), - [anon_sym_GT] = ACTIONS(5184), - [anon_sym_GT_EQ] = ACTIONS(5182), - [anon_sym_LT_EQ_GT] = ACTIONS(5182), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5182), - [anon_sym_BANG_TILDE] = ACTIONS(5182), - [anon_sym_EQ_TILDE] = ACTIONS(5182), - [anon_sym_AMP_STAR] = ACTIONS(5184), - [anon_sym_AMP_STAR_STAR] = ACTIONS(5182), - [anon_sym_DOT] = ACTIONS(5184), - [anon_sym_EQ] = ACTIONS(5184), - [anon_sym_QMARK] = ACTIONS(5182), - [anon_sym_AMP_AMP] = ACTIONS(5184), - [anon_sym_PIPE_PIPE] = ACTIONS(5184), - [anon_sym_PLUS_EQ] = ACTIONS(5182), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(5182), - [anon_sym_DASH_EQ] = ACTIONS(5182), - [anon_sym_AMP_DASH_EQ] = ACTIONS(5182), - [anon_sym_STAR_EQ] = ACTIONS(5182), - [anon_sym_AMP_STAR_EQ] = ACTIONS(5182), - [anon_sym_SLASH_EQ] = ACTIONS(5182), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5182), - [anon_sym_PERCENT_EQ] = ACTIONS(5182), - [anon_sym_PIPE_EQ] = ACTIONS(5182), - [anon_sym_AMP_EQ] = ACTIONS(5182), - [anon_sym_CARET_EQ] = ACTIONS(5182), - [anon_sym_STAR_STAR_EQ] = ACTIONS(5182), - [anon_sym_LT_LT_EQ] = ACTIONS(5182), - [anon_sym_GT_GT_EQ] = ACTIONS(5182), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5182), - [anon_sym_AMP_AMP_EQ] = ACTIONS(5182), - [anon_sym_else] = ACTIONS(5182), - [sym__line_break] = ACTIONS(5182), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(5182), - [sym_binary_plus] = ACTIONS(5182), - [sym_binary_minus] = ACTIONS(5182), - [sym_binary_wrapping_plus] = ACTIONS(5182), - [sym_binary_wrapping_minus] = ACTIONS(5182), - [sym__binary_star] = ACTIONS(5182), - [sym__binary_double_star] = ACTIONS(5182), - [sym_binary_ampersand] = ACTIONS(5182), - [sym__binary_slash] = ACTIONS(5182), - [sym__binary_double_slash] = ACTIONS(5182), - [sym__modifier_if_keyword] = ACTIONS(5182), - [sym__modifier_unless_keyword] = ACTIONS(5182), - [sym__regular_rescue_keyword] = ACTIONS(5182), - [sym__modifier_rescue_keyword] = ACTIONS(5182), - [sym__regular_ensure_keyword] = ACTIONS(5182), - [sym__modifier_ensure_keyword] = ACTIONS(5182), - [sym__modulo_operator] = ACTIONS(5182), + [anon_sym_SEMI] = ACTIONS(5235), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5235), + [anon_sym_DOT_DOT] = ACTIONS(5237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5235), + [anon_sym_end] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5237), + [anon_sym_PIPE] = ACTIONS(5237), + [anon_sym_CARET] = ACTIONS(5237), + [anon_sym_GT_GT] = ACTIONS(5237), + [anon_sym_LT_LT] = ACTIONS(5237), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ] = ACTIONS(5237), + [anon_sym_GT] = ACTIONS(5237), + [anon_sym_GT_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ_GT] = ACTIONS(5235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5235), + [anon_sym_BANG_TILDE] = ACTIONS(5235), + [anon_sym_EQ_TILDE] = ACTIONS(5235), + [anon_sym_AMP_STAR] = ACTIONS(5237), + [anon_sym_AMP_STAR_STAR] = ACTIONS(5235), + [anon_sym_DOT] = ACTIONS(5237), + [anon_sym_EQ] = ACTIONS(5237), + [anon_sym_QMARK] = ACTIONS(5235), + [anon_sym_AMP_AMP] = ACTIONS(5237), + [anon_sym_PIPE_PIPE] = ACTIONS(5237), + [anon_sym_PLUS_EQ] = ACTIONS(5235), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(5235), + [anon_sym_DASH_EQ] = ACTIONS(5235), + [anon_sym_AMP_DASH_EQ] = ACTIONS(5235), + [anon_sym_STAR_EQ] = ACTIONS(5235), + [anon_sym_AMP_STAR_EQ] = ACTIONS(5235), + [anon_sym_SLASH_EQ] = ACTIONS(5235), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5235), + [anon_sym_PERCENT_EQ] = ACTIONS(5235), + [anon_sym_PIPE_EQ] = ACTIONS(5235), + [anon_sym_AMP_EQ] = ACTIONS(5235), + [anon_sym_CARET_EQ] = ACTIONS(5235), + [anon_sym_STAR_STAR_EQ] = ACTIONS(5235), + [anon_sym_LT_LT_EQ] = ACTIONS(5235), + [anon_sym_GT_GT_EQ] = ACTIONS(5235), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5235), + [anon_sym_AMP_AMP_EQ] = ACTIONS(5235), + [anon_sym_do] = ACTIONS(5235), + [sym__line_break] = ACTIONS(5235), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(5235), + [sym__start_of_index_operator] = ACTIONS(5235), + [sym_binary_plus] = ACTIONS(5235), + [sym_binary_minus] = ACTIONS(5235), + [sym_binary_wrapping_plus] = ACTIONS(5235), + [sym_binary_wrapping_minus] = ACTIONS(5235), + [sym__binary_star] = ACTIONS(5235), + [sym__binary_double_star] = ACTIONS(5235), + [sym_binary_ampersand] = ACTIONS(5235), + [sym__binary_slash] = ACTIONS(5235), + [sym__binary_double_slash] = ACTIONS(5235), + [sym__modifier_if_keyword] = ACTIONS(5235), + [sym__modifier_unless_keyword] = ACTIONS(5235), + [sym__modifier_rescue_keyword] = ACTIONS(5235), + [sym__regular_ensure_keyword] = ACTIONS(5235), + [sym__modifier_ensure_keyword] = ACTIONS(5235), + [sym__modulo_operator] = ACTIONS(5235), [sym__heredoc_body_start] = ACTIONS(7), }, [2282] = { [sym_heredoc_body] = STATE(2282), - [anon_sym_RPAREN] = ACTIONS(5182), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(5182), - [anon_sym_COMMA] = ACTIONS(5182), - [anon_sym_RBRACK] = ACTIONS(5182), - [anon_sym_DOT_DOT] = ACTIONS(5184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5182), - [anon_sym_end] = ACTIONS(5182), - [anon_sym_LT] = ACTIONS(5184), - [anon_sym_PIPE] = ACTIONS(5184), - [anon_sym_CARET] = ACTIONS(5184), - [anon_sym_GT_GT] = ACTIONS(5184), - [anon_sym_LT_LT] = ACTIONS(5184), - [anon_sym_EQ_EQ] = ACTIONS(5184), - [anon_sym_BANG_EQ] = ACTIONS(5182), - [anon_sym_LT_EQ] = ACTIONS(5184), - [anon_sym_GT] = ACTIONS(5184), - [anon_sym_GT_EQ] = ACTIONS(5182), - [anon_sym_LT_EQ_GT] = ACTIONS(5182), - [anon_sym_EQ_EQ_EQ] = ACTIONS(5182), - [anon_sym_BANG_TILDE] = ACTIONS(5182), - [anon_sym_EQ_TILDE] = ACTIONS(5182), - [anon_sym_AMP_STAR] = ACTIONS(5184), - [anon_sym_AMP_STAR_STAR] = ACTIONS(5182), - [anon_sym_DOT] = ACTIONS(5184), - [anon_sym_EQ] = ACTIONS(5184), - [anon_sym_QMARK] = ACTIONS(5182), - [anon_sym_AMP_AMP] = ACTIONS(5184), - [anon_sym_PIPE_PIPE] = ACTIONS(5184), - [anon_sym_PLUS_EQ] = ACTIONS(5182), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(5182), - [anon_sym_DASH_EQ] = ACTIONS(5182), - [anon_sym_AMP_DASH_EQ] = ACTIONS(5182), - [anon_sym_STAR_EQ] = ACTIONS(5182), - [anon_sym_AMP_STAR_EQ] = ACTIONS(5182), - [anon_sym_SLASH_EQ] = ACTIONS(5182), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5182), - [anon_sym_PERCENT_EQ] = ACTIONS(5182), - [anon_sym_PIPE_EQ] = ACTIONS(5182), - [anon_sym_AMP_EQ] = ACTIONS(5182), - [anon_sym_CARET_EQ] = ACTIONS(5182), - [anon_sym_STAR_STAR_EQ] = ACTIONS(5182), - [anon_sym_LT_LT_EQ] = ACTIONS(5182), - [anon_sym_GT_GT_EQ] = ACTIONS(5182), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5182), - [anon_sym_AMP_AMP_EQ] = ACTIONS(5182), - [anon_sym_COLON2] = ACTIONS(5182), - [anon_sym_do] = ACTIONS(5182), - [anon_sym_else] = ACTIONS(5182), - [anon_sym_when] = ACTIONS(5182), - [anon_sym_in] = ACTIONS(5182), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(5182), - [sym__start_of_index_operator] = ACTIONS(5182), - [sym_binary_plus] = ACTIONS(5182), - [sym_binary_minus] = ACTIONS(5182), - [sym_binary_wrapping_plus] = ACTIONS(5182), - [sym_binary_wrapping_minus] = ACTIONS(5182), - [sym__binary_star] = ACTIONS(5182), - [sym__binary_double_star] = ACTIONS(5182), - [sym_binary_ampersand] = ACTIONS(5182), - [sym__binary_slash] = ACTIONS(5182), - [sym__binary_double_slash] = ACTIONS(5182), - [sym__modulo_operator] = ACTIONS(5182), + [anon_sym_SEMI] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(517), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(523), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(523), + [anon_sym_DASH_EQ] = ACTIONS(523), + [anon_sym_AMP_DASH_EQ] = ACTIONS(523), + [anon_sym_STAR_EQ] = ACTIONS(523), + [anon_sym_AMP_STAR_EQ] = ACTIONS(523), + [anon_sym_SLASH_EQ] = ACTIONS(523), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(523), + [anon_sym_PERCENT_EQ] = ACTIONS(523), + [anon_sym_PIPE_EQ] = ACTIONS(523), + [anon_sym_AMP_EQ] = ACTIONS(523), + [anon_sym_CARET_EQ] = ACTIONS(523), + [anon_sym_STAR_STAR_EQ] = ACTIONS(523), + [anon_sym_LT_LT_EQ] = ACTIONS(523), + [anon_sym_GT_GT_EQ] = ACTIONS(523), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(523), + [anon_sym_AMP_AMP_EQ] = ACTIONS(523), + [anon_sym_do] = ACTIONS(135), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(135), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2283] = { [sym_heredoc_body] = STATE(2283), - [sym_typeof] = STATE(5055), - [sym_constant] = STATE(4886), - [sym__type] = STATE(5101), - [sym_class_type] = STATE(5055), - [sym_union_type] = STATE(5055), - [sym__parenthesized_type] = STATE(5055), - [sym_no_args_proc_type] = STATE(5055), - [sym_parenthesized_proc_type] = STATE(5055), - [sym_tuple_type] = STATE(5055), - [sym_named_tuple_type] = STATE(5055), - [sym_generic_instance_type] = STATE(5055), - [sym_nilable_type] = STATE(5055), - [sym_pointer_type] = STATE(5055), - [sym_static_array_type] = STATE(5055), - [anon_sym_LPAREN] = ACTIONS(5361), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_RBRACK] = ACTIONS(4323), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5363), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5345), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [sym_self] = ACTIONS(5347), - [sym_underscore_type] = ACTIONS(5347), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_RBRACK_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5349), - [sym__start_of_named_tuple_type] = ACTIONS(5351), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(5235), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(5235), + [anon_sym_DOT_DOT] = ACTIONS(5237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5235), + [anon_sym_end] = ACTIONS(5235), + [anon_sym_LT] = ACTIONS(5237), + [anon_sym_PIPE] = ACTIONS(5237), + [anon_sym_CARET] = ACTIONS(5237), + [anon_sym_GT_GT] = ACTIONS(5237), + [anon_sym_LT_LT] = ACTIONS(5237), + [anon_sym_EQ_EQ] = ACTIONS(5237), + [anon_sym_BANG_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ] = ACTIONS(5237), + [anon_sym_GT] = ACTIONS(5237), + [anon_sym_GT_EQ] = ACTIONS(5235), + [anon_sym_LT_EQ_GT] = ACTIONS(5235), + [anon_sym_EQ_EQ_EQ] = ACTIONS(5235), + [anon_sym_BANG_TILDE] = ACTIONS(5235), + [anon_sym_EQ_TILDE] = ACTIONS(5235), + [anon_sym_AMP_STAR] = ACTIONS(5237), + [anon_sym_AMP_STAR_STAR] = ACTIONS(5235), + [anon_sym_DOT] = ACTIONS(5237), + [anon_sym_EQ] = ACTIONS(5237), + [anon_sym_QMARK] = ACTIONS(5235), + [anon_sym_AMP_AMP] = ACTIONS(5237), + [anon_sym_PIPE_PIPE] = ACTIONS(5237), + [anon_sym_PLUS_EQ] = ACTIONS(5235), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(5235), + [anon_sym_DASH_EQ] = ACTIONS(5235), + [anon_sym_AMP_DASH_EQ] = ACTIONS(5235), + [anon_sym_STAR_EQ] = ACTIONS(5235), + [anon_sym_AMP_STAR_EQ] = ACTIONS(5235), + [anon_sym_SLASH_EQ] = ACTIONS(5235), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(5235), + [anon_sym_PERCENT_EQ] = ACTIONS(5235), + [anon_sym_PIPE_EQ] = ACTIONS(5235), + [anon_sym_AMP_EQ] = ACTIONS(5235), + [anon_sym_CARET_EQ] = ACTIONS(5235), + [anon_sym_STAR_STAR_EQ] = ACTIONS(5235), + [anon_sym_LT_LT_EQ] = ACTIONS(5235), + [anon_sym_GT_GT_EQ] = ACTIONS(5235), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(5235), + [anon_sym_AMP_AMP_EQ] = ACTIONS(5235), + [anon_sym_else] = ACTIONS(5235), + [sym__line_break] = ACTIONS(5235), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(5235), + [sym_binary_plus] = ACTIONS(5235), + [sym_binary_minus] = ACTIONS(5235), + [sym_binary_wrapping_plus] = ACTIONS(5235), + [sym_binary_wrapping_minus] = ACTIONS(5235), + [sym__binary_star] = ACTIONS(5235), + [sym__binary_double_star] = ACTIONS(5235), + [sym_binary_ampersand] = ACTIONS(5235), + [sym__binary_slash] = ACTIONS(5235), + [sym__binary_double_slash] = ACTIONS(5235), + [sym__modifier_if_keyword] = ACTIONS(5235), + [sym__modifier_unless_keyword] = ACTIONS(5235), + [sym__regular_rescue_keyword] = ACTIONS(5235), + [sym__modifier_rescue_keyword] = ACTIONS(5235), + [sym__regular_ensure_keyword] = ACTIONS(5235), + [sym__modifier_ensure_keyword] = ACTIONS(5235), + [sym__modulo_operator] = ACTIONS(5235), [sym__heredoc_body_start] = ACTIONS(7), }, [2284] = { [sym_heredoc_body] = STATE(2284), - [sym_typeof] = STATE(5055), - [sym_constant] = STATE(4886), - [sym__type] = STATE(5114), - [sym_class_type] = STATE(5055), - [sym_union_type] = STATE(5055), - [sym__parenthesized_type] = STATE(5055), - [sym_no_args_proc_type] = STATE(5055), - [sym_parenthesized_proc_type] = STATE(5055), - [sym_tuple_type] = STATE(5055), - [sym_named_tuple_type] = STATE(5055), - [sym_generic_instance_type] = STATE(5055), - [sym_nilable_type] = STATE(5055), - [sym_pointer_type] = STATE(5055), - [sym_static_array_type] = STATE(5055), - [anon_sym_LPAREN] = ACTIONS(5361), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_RBRACK] = ACTIONS(4351), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5363), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5345), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [sym_self] = ACTIONS(5347), - [sym_underscore_type] = ACTIONS(5347), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_RBRACK_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5349), - [sym__start_of_named_tuple_type] = ACTIONS(5351), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_RBRACK] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(657), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(657), + [anon_sym_DASH_EQ] = ACTIONS(657), + [anon_sym_AMP_DASH_EQ] = ACTIONS(657), + [anon_sym_STAR_EQ] = ACTIONS(657), + [anon_sym_AMP_STAR_EQ] = ACTIONS(657), + [anon_sym_SLASH_EQ] = ACTIONS(657), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(657), + [anon_sym_PERCENT_EQ] = ACTIONS(657), + [anon_sym_PIPE_EQ] = ACTIONS(657), + [anon_sym_AMP_EQ] = ACTIONS(657), + [anon_sym_CARET_EQ] = ACTIONS(657), + [anon_sym_STAR_STAR_EQ] = ACTIONS(657), + [anon_sym_LT_LT_EQ] = ACTIONS(657), + [anon_sym_GT_GT_EQ] = ACTIONS(657), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(657), + [anon_sym_AMP_AMP_EQ] = ACTIONS(657), + [anon_sym_COLON2] = ACTIONS(5400), + [anon_sym_do] = ACTIONS(135), + [anon_sym_else] = ACTIONS(135), + [anon_sym_when] = ACTIONS(135), + [anon_sym_in] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(135), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2285] = { [sym_heredoc_body] = STATE(2285), - [sym_typeof] = STATE(5055), - [sym_constant] = STATE(4886), - [sym__type] = STATE(5115), - [sym_class_type] = STATE(5055), - [sym_union_type] = STATE(5055), - [sym__parenthesized_type] = STATE(5055), - [sym_no_args_proc_type] = STATE(5055), - [sym_parenthesized_proc_type] = STATE(5055), - [sym_tuple_type] = STATE(5055), - [sym_named_tuple_type] = STATE(5055), - [sym_generic_instance_type] = STATE(5055), - [sym_nilable_type] = STATE(5055), - [sym_pointer_type] = STATE(5055), - [sym_static_array_type] = STATE(5055), - [anon_sym_LPAREN] = ACTIONS(5361), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_RBRACK] = ACTIONS(4373), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5363), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5345), - [sym__constant_segment] = ACTIONS(3052), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [sym_self] = ACTIONS(5347), - [sym_underscore_type] = ACTIONS(5347), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_RBRACK_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5349), - [sym__start_of_named_tuple_type] = ACTIONS(5351), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [sym_typeof] = STATE(4646), + [sym_constant] = STATE(4464), + [sym__type] = STATE(4676), + [sym_class_type] = STATE(4646), + [sym_union_type] = STATE(4646), + [sym__parenthesized_type] = STATE(4646), + [sym_no_args_proc_type] = STATE(4646), + [sym_parenthesized_proc_type] = STATE(4646), + [sym_tuple_type] = STATE(4646), + [sym_named_tuple_type] = STATE(4646), + [sym_generic_instance_type] = STATE(4646), + [sym_nilable_type] = STATE(4646), + [sym_pointer_type] = STATE(4646), + [sym_static_array_type] = STATE(4646), + [anon_sym_LPAREN] = ACTIONS(5302), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4468), + [anon_sym_RBRACK] = ACTIONS(4466), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4468), + [anon_sym_DASH_GT] = ACTIONS(5304), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_CARET] = ACTIONS(4468), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(4468), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ_GT] = ACTIONS(4468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), + [anon_sym_BANG_TILDE] = ACTIONS(4468), + [anon_sym_EQ_TILDE] = ACTIONS(4468), + [anon_sym_AMP_STAR] = ACTIONS(4466), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(4466), + [anon_sym_typeof] = ACTIONS(5306), + [sym__constant_segment] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(893), + [sym_self] = ACTIONS(5308), + [sym_underscore_type] = ACTIONS(5308), + [anon_sym_QMARK] = ACTIONS(4468), + [anon_sym_RBRACK_QMARK] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(4468), + [anon_sym_do] = ACTIONS(4468), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4468), + [sym__start_of_tuple_type] = ACTIONS(5310), + [sym__start_of_named_tuple_type] = ACTIONS(5312), + [sym__start_of_index_operator] = ACTIONS(4468), + [sym_binary_plus] = ACTIONS(4468), + [sym_binary_minus] = ACTIONS(4468), + [sym_binary_wrapping_plus] = ACTIONS(4468), + [sym_binary_wrapping_minus] = ACTIONS(4468), + [sym__binary_star] = ACTIONS(4468), + [sym__binary_double_star] = ACTIONS(4468), + [sym_binary_ampersand] = ACTIONS(4468), + [sym__binary_slash] = ACTIONS(4468), + [sym__binary_double_slash] = ACTIONS(4468), + [sym__modulo_operator] = ACTIONS(4468), [sym__heredoc_body_start] = ACTIONS(7), }, [2286] = { [sym_heredoc_body] = STATE(2286), - [sym_typeof] = STATE(5199), - [sym_constant] = STATE(5097), - [sym__type] = STATE(5053), - [sym_class_type] = STATE(5199), - [sym_union_type] = STATE(5199), - [sym__parenthesized_type] = STATE(5199), - [sym_no_args_proc_type] = STATE(5199), - [sym_parenthesized_proc_type] = STATE(5199), - [sym_tuple_type] = STATE(5199), - [sym_named_tuple_type] = STATE(5199), - [sym_generic_instance_type] = STATE(5199), - [sym_nilable_type] = STATE(5199), - [sym_pointer_type] = STATE(5199), - [sym_static_array_type] = STATE(5199), - [anon_sym_LPAREN] = ACTIONS(5365), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5367), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5370), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [sym_self] = ACTIONS(5372), - [sym_underscore_type] = ACTIONS(5372), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5374), - [sym__start_of_named_tuple_type] = ACTIONS(5376), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym__end_of_with_expression] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [sym_typeof] = STATE(5020), + [sym_constant] = STATE(4791), + [sym__type] = STATE(4999), + [sym_class_type] = STATE(5020), + [sym_union_type] = STATE(5020), + [sym__parenthesized_type] = STATE(5020), + [sym_no_args_proc_type] = STATE(5020), + [sym_parenthesized_proc_type] = STATE(5020), + [sym_tuple_type] = STATE(5020), + [sym_named_tuple_type] = STATE(5020), + [sym_generic_instance_type] = STATE(5020), + [sym_nilable_type] = STATE(5020), + [sym_pointer_type] = STATE(5020), + [sym_static_array_type] = STATE(5020), + [anon_sym_SEMI] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(5359), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4468), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4468), + [anon_sym_DASH_GT] = ACTIONS(5361), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_CARET] = ACTIONS(4468), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(4468), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ_GT] = ACTIONS(4468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), + [anon_sym_BANG_TILDE] = ACTIONS(4468), + [anon_sym_EQ_TILDE] = ACTIONS(4468), + [anon_sym_AMP_STAR] = ACTIONS(4466), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(4466), + [anon_sym_typeof] = ACTIONS(5349), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [sym_self] = ACTIONS(5351), + [sym_underscore_type] = ACTIONS(5351), + [anon_sym_QMARK] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(4468), + [anon_sym_then] = ACTIONS(4468), + [sym__line_break] = ACTIONS(4468), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5353), + [sym__start_of_named_tuple_type] = ACTIONS(5355), + [sym__start_of_index_operator] = ACTIONS(4468), + [sym_binary_plus] = ACTIONS(4468), + [sym_binary_minus] = ACTIONS(4468), + [sym_binary_wrapping_plus] = ACTIONS(4468), + [sym_binary_wrapping_minus] = ACTIONS(4468), + [sym__binary_star] = ACTIONS(4468), + [sym__binary_double_star] = ACTIONS(4468), + [sym_binary_ampersand] = ACTIONS(4468), + [sym__binary_slash] = ACTIONS(4468), + [sym__binary_double_slash] = ACTIONS(4468), + [sym__modulo_operator] = ACTIONS(4468), [sym__heredoc_body_start] = ACTIONS(7), }, [2287] = { [sym_heredoc_body] = STATE(2287), - [anon_sym_RPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_RBRACE] = ACTIONS(133), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_RBRACK] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(551), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(579), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(579), - [anon_sym_DASH_EQ] = ACTIONS(579), - [anon_sym_AMP_DASH_EQ] = ACTIONS(579), - [anon_sym_STAR_EQ] = ACTIONS(579), - [anon_sym_AMP_STAR_EQ] = ACTIONS(579), - [anon_sym_SLASH_EQ] = ACTIONS(579), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(579), - [anon_sym_PERCENT_EQ] = ACTIONS(579), - [anon_sym_PIPE_EQ] = ACTIONS(579), - [anon_sym_AMP_EQ] = ACTIONS(579), - [anon_sym_CARET_EQ] = ACTIONS(579), - [anon_sym_STAR_STAR_EQ] = ACTIONS(579), - [anon_sym_LT_LT_EQ] = ACTIONS(579), - [anon_sym_GT_GT_EQ] = ACTIONS(579), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(579), - [anon_sym_AMP_AMP_EQ] = ACTIONS(579), - [anon_sym_do] = ACTIONS(133), - [anon_sym_else] = ACTIONS(133), - [anon_sym_when] = ACTIONS(133), - [anon_sym_in] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(133), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [sym_typeof] = STATE(5166), + [sym_constant] = STATE(5101), + [sym__type] = STATE(5080), + [sym_class_type] = STATE(5166), + [sym_union_type] = STATE(5166), + [sym__parenthesized_type] = STATE(5166), + [sym_no_args_proc_type] = STATE(5166), + [sym_parenthesized_proc_type] = STATE(5166), + [sym_tuple_type] = STATE(5166), + [sym_named_tuple_type] = STATE(5166), + [sym_generic_instance_type] = STATE(5166), + [sym_nilable_type] = STATE(5166), + [sym_pointer_type] = STATE(5166), + [sym_static_array_type] = STATE(5166), + [anon_sym_LPAREN] = ACTIONS(5402), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5404), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5407), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [sym_self] = ACTIONS(5409), + [sym_underscore_type] = ACTIONS(5409), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5411), + [sym__start_of_named_tuple_type] = ACTIONS(5413), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym__end_of_with_expression] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, [2288] = { [sym_heredoc_body] = STATE(2288), - [sym_typeof] = STATE(5199), - [sym_constant] = STATE(5097), - [sym__type] = STATE(5139), - [sym_class_type] = STATE(5199), - [sym_union_type] = STATE(5199), - [sym__parenthesized_type] = STATE(5199), - [sym_no_args_proc_type] = STATE(5199), - [sym_parenthesized_proc_type] = STATE(5199), - [sym_tuple_type] = STATE(5199), - [sym_named_tuple_type] = STATE(5199), - [sym_generic_instance_type] = STATE(5199), - [sym_nilable_type] = STATE(5199), - [sym_pointer_type] = STATE(5199), - [sym_static_array_type] = STATE(5199), - [anon_sym_LPAREN] = ACTIONS(5378), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4353), - [anon_sym_COMMA] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4353), - [anon_sym_DASH_GT] = ACTIONS(5380), - [anon_sym_LT] = ACTIONS(4351), - [anon_sym_STAR] = ACTIONS(4353), - [anon_sym_PIPE] = ACTIONS(4351), - [anon_sym_CARET] = ACTIONS(4353), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4353), - [anon_sym_EQ_EQ] = ACTIONS(4351), - [anon_sym_BANG_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ] = ACTIONS(4351), - [anon_sym_GT] = ACTIONS(4351), - [anon_sym_GT_EQ] = ACTIONS(4353), - [anon_sym_LT_EQ_GT] = ACTIONS(4353), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4353), - [anon_sym_BANG_TILDE] = ACTIONS(4353), - [anon_sym_EQ_TILDE] = ACTIONS(4353), - [anon_sym_AMP_STAR] = ACTIONS(4351), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_EQ] = ACTIONS(4351), - [anon_sym_typeof] = ACTIONS(5370), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [sym_self] = ACTIONS(5372), - [sym_underscore_type] = ACTIONS(5372), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4353), - [anon_sym_PIPE_PIPE] = ACTIONS(4353), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5374), - [sym__start_of_named_tuple_type] = ACTIONS(5376), - [sym__start_of_index_operator] = ACTIONS(4353), - [sym__end_of_with_expression] = ACTIONS(4353), - [sym_binary_plus] = ACTIONS(4353), - [sym_binary_minus] = ACTIONS(4353), - [sym_binary_wrapping_plus] = ACTIONS(4353), - [sym_binary_wrapping_minus] = ACTIONS(4353), - [sym__binary_star] = ACTIONS(4353), - [sym__binary_double_star] = ACTIONS(4353), - [sym_binary_ampersand] = ACTIONS(4353), - [sym__binary_slash] = ACTIONS(4353), - [sym__binary_double_slash] = ACTIONS(4353), - [sym__modulo_operator] = ACTIONS(4353), + [anon_sym_SEMI] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(263), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(641), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(643), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(643), + [anon_sym_DASH_EQ] = ACTIONS(643), + [anon_sym_AMP_DASH_EQ] = ACTIONS(643), + [anon_sym_STAR_EQ] = ACTIONS(643), + [anon_sym_AMP_STAR_EQ] = ACTIONS(643), + [anon_sym_SLASH_EQ] = ACTIONS(643), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(643), + [anon_sym_PERCENT_EQ] = ACTIONS(643), + [anon_sym_PIPE_EQ] = ACTIONS(643), + [anon_sym_AMP_EQ] = ACTIONS(643), + [anon_sym_CARET_EQ] = ACTIONS(643), + [anon_sym_STAR_STAR_EQ] = ACTIONS(643), + [anon_sym_LT_LT_EQ] = ACTIONS(643), + [anon_sym_GT_GT_EQ] = ACTIONS(643), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(643), + [anon_sym_AMP_AMP_EQ] = ACTIONS(643), + [anon_sym_COLON2] = ACTIONS(5415), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2289] = { [sym_heredoc_body] = STATE(2289), - [sym_typeof] = STATE(5199), - [sym_constant] = STATE(5097), - [sym__type] = STATE(5140), - [sym_class_type] = STATE(5199), - [sym_union_type] = STATE(5199), - [sym__parenthesized_type] = STATE(5199), - [sym_no_args_proc_type] = STATE(5199), - [sym_parenthesized_proc_type] = STATE(5199), - [sym_tuple_type] = STATE(5199), - [sym_named_tuple_type] = STATE(5199), - [sym_generic_instance_type] = STATE(5199), - [sym_nilable_type] = STATE(5199), - [sym_pointer_type] = STATE(5199), - [sym_static_array_type] = STATE(5199), - [anon_sym_LPAREN] = ACTIONS(5378), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5380), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5370), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [sym_self] = ACTIONS(5372), - [sym_underscore_type] = ACTIONS(5372), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5374), - [sym__start_of_named_tuple_type] = ACTIONS(5376), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym__end_of_with_expression] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [anon_sym_RPAREN] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_RBRACE] = ACTIONS(135), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_RBRACK] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(651), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(657), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(657), + [anon_sym_DASH_EQ] = ACTIONS(657), + [anon_sym_AMP_DASH_EQ] = ACTIONS(657), + [anon_sym_STAR_EQ] = ACTIONS(657), + [anon_sym_AMP_STAR_EQ] = ACTIONS(657), + [anon_sym_SLASH_EQ] = ACTIONS(657), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(657), + [anon_sym_PERCENT_EQ] = ACTIONS(657), + [anon_sym_PIPE_EQ] = ACTIONS(657), + [anon_sym_AMP_EQ] = ACTIONS(657), + [anon_sym_CARET_EQ] = ACTIONS(657), + [anon_sym_STAR_STAR_EQ] = ACTIONS(657), + [anon_sym_LT_LT_EQ] = ACTIONS(657), + [anon_sym_GT_GT_EQ] = ACTIONS(657), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(657), + [anon_sym_AMP_AMP_EQ] = ACTIONS(657), + [anon_sym_do] = ACTIONS(135), + [anon_sym_else] = ACTIONS(135), + [anon_sym_when] = ACTIONS(135), + [anon_sym_in] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(135), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2290] = { [sym_heredoc_body] = STATE(2290), - [anon_sym_SEMI] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_AMP_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_AMP_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_STAR_STAR_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(395), - [anon_sym_AMP_AMP_EQ] = ACTIONS(395), - [anon_sym_else] = ACTIONS(133), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__regular_rescue_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [sym_typeof] = STATE(5166), + [sym_constant] = STATE(5101), + [sym__type] = STATE(5172), + [sym_class_type] = STATE(5166), + [sym_union_type] = STATE(5166), + [sym__parenthesized_type] = STATE(5166), + [sym_no_args_proc_type] = STATE(5166), + [sym_parenthesized_proc_type] = STATE(5166), + [sym_tuple_type] = STATE(5166), + [sym_named_tuple_type] = STATE(5166), + [sym_generic_instance_type] = STATE(5166), + [sym_nilable_type] = STATE(5166), + [sym_pointer_type] = STATE(5166), + [sym_static_array_type] = STATE(5166), + [anon_sym_LPAREN] = ACTIONS(5417), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5419), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5407), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [sym_self] = ACTIONS(5409), + [sym_underscore_type] = ACTIONS(5409), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5411), + [sym__start_of_named_tuple_type] = ACTIONS(5413), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym__end_of_with_expression] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2291] = { [sym_heredoc_body] = STATE(2291), - [sym_typeof] = STATE(5003), - [sym_constant] = STATE(4652), - [sym__type] = STATE(4885), - [sym_class_type] = STATE(5003), - [sym_union_type] = STATE(5003), - [sym__parenthesized_type] = STATE(5003), - [sym_no_args_proc_type] = STATE(5003), - [sym_parenthesized_proc_type] = STATE(5003), - [sym_tuple_type] = STATE(5003), - [sym_named_tuple_type] = STATE(5003), - [sym_generic_instance_type] = STATE(5003), - [sym_nilable_type] = STATE(5003), - [sym_pointer_type] = STATE(5003), - [sym_static_array_type] = STATE(5003), - [anon_sym_LPAREN] = ACTIONS(5325), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(5327), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_PIPE] = ACTIONS(4429), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ_GT] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_BANG_TILDE] = ACTIONS(4431), - [anon_sym_EQ_TILDE] = ACTIONS(4431), - [anon_sym_AMP_STAR] = ACTIONS(4429), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_typeof] = ACTIONS(5310), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [sym_self] = ACTIONS(5312), - [sym_underscore_type] = ACTIONS(5312), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_do] = ACTIONS(4431), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4431), - [sym__start_of_tuple_type] = ACTIONS(5314), - [sym__start_of_named_tuple_type] = ACTIONS(5316), - [sym__start_of_index_operator] = ACTIONS(4431), - [sym__end_of_with_expression] = ACTIONS(4431), - [sym_binary_plus] = ACTIONS(4431), - [sym_binary_minus] = ACTIONS(4431), - [sym_binary_wrapping_plus] = ACTIONS(4431), - [sym_binary_wrapping_minus] = ACTIONS(4431), - [sym__binary_star] = ACTIONS(4431), - [sym__binary_double_star] = ACTIONS(4431), - [sym_binary_ampersand] = ACTIONS(4431), - [sym__binary_slash] = ACTIONS(4431), - [sym__binary_double_slash] = ACTIONS(4431), - [sym__modulo_operator] = ACTIONS(4431), + [sym_typeof] = STATE(5166), + [sym_constant] = STATE(5101), + [sym__type] = STATE(5113), + [sym_class_type] = STATE(5166), + [sym_union_type] = STATE(5166), + [sym__parenthesized_type] = STATE(5166), + [sym_no_args_proc_type] = STATE(5166), + [sym_parenthesized_proc_type] = STATE(5166), + [sym_tuple_type] = STATE(5166), + [sym_named_tuple_type] = STATE(5166), + [sym_generic_instance_type] = STATE(5166), + [sym_nilable_type] = STATE(5166), + [sym_pointer_type] = STATE(5166), + [sym_static_array_type] = STATE(5166), + [anon_sym_LPAREN] = ACTIONS(5402), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4362), + [anon_sym_COMMA] = ACTIONS(4362), + [anon_sym_DOT_DOT] = ACTIONS(4360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4362), + [anon_sym_DASH_GT] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4362), + [anon_sym_PIPE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4362), + [anon_sym_GT_GT] = ACTIONS(4362), + [anon_sym_LT_LT] = ACTIONS(4362), + [anon_sym_EQ_EQ] = ACTIONS(4360), + [anon_sym_BANG_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ] = ACTIONS(4360), + [anon_sym_GT] = ACTIONS(4360), + [anon_sym_GT_EQ] = ACTIONS(4362), + [anon_sym_LT_EQ_GT] = ACTIONS(4362), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4362), + [anon_sym_BANG_TILDE] = ACTIONS(4362), + [anon_sym_EQ_TILDE] = ACTIONS(4362), + [anon_sym_AMP_STAR] = ACTIONS(4360), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4362), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_EQ] = ACTIONS(4360), + [anon_sym_typeof] = ACTIONS(5407), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [sym_self] = ACTIONS(5409), + [sym_underscore_type] = ACTIONS(5409), + [anon_sym_QMARK] = ACTIONS(4362), + [anon_sym_AMP_AMP] = ACTIONS(4362), + [anon_sym_PIPE_PIPE] = ACTIONS(4362), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5411), + [sym__start_of_named_tuple_type] = ACTIONS(5413), + [sym__start_of_index_operator] = ACTIONS(4362), + [sym__end_of_with_expression] = ACTIONS(4362), + [sym_binary_plus] = ACTIONS(4362), + [sym_binary_minus] = ACTIONS(4362), + [sym_binary_wrapping_plus] = ACTIONS(4362), + [sym_binary_wrapping_minus] = ACTIONS(4362), + [sym__binary_star] = ACTIONS(4362), + [sym__binary_double_star] = ACTIONS(4362), + [sym_binary_ampersand] = ACTIONS(4362), + [sym__binary_slash] = ACTIONS(4362), + [sym__binary_double_slash] = ACTIONS(4362), + [sym__modulo_operator] = ACTIONS(4362), [sym__heredoc_body_start] = ACTIONS(7), }, [2292] = { [sym_heredoc_body] = STATE(2292), - [sym_typeof] = STATE(5199), - [sym_constant] = STATE(5097), - [sym__type] = STATE(5025), - [sym_class_type] = STATE(5199), - [sym_union_type] = STATE(5199), - [sym__parenthesized_type] = STATE(5199), - [sym_no_args_proc_type] = STATE(5199), - [sym_parenthesized_proc_type] = STATE(5199), - [sym_tuple_type] = STATE(5199), - [sym_named_tuple_type] = STATE(5199), - [sym_generic_instance_type] = STATE(5199), - [sym_nilable_type] = STATE(5199), - [sym_pointer_type] = STATE(5199), - [sym_static_array_type] = STATE(5199), - [anon_sym_LPAREN] = ACTIONS(5365), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5382), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5370), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [sym_self] = ACTIONS(5372), - [sym_underscore_type] = ACTIONS(5372), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5374), - [sym__start_of_named_tuple_type] = ACTIONS(5376), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym__end_of_with_expression] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(5015), + [sym_constant] = STATE(4893), + [sym__type] = STATE(4903), + [sym_class_type] = STATE(5015), + [sym_union_type] = STATE(5015), + [sym__parenthesized_type] = STATE(5015), + [sym_no_args_proc_type] = STATE(5015), + [sym_parenthesized_proc_type] = STATE(5015), + [sym_tuple_type] = STATE(5015), + [sym_named_tuple_type] = STATE(5015), + [sym_generic_instance_type] = STATE(5015), + [sym_nilable_type] = STATE(5015), + [sym_pointer_type] = STATE(5015), + [sym_static_array_type] = STATE(5015), + [anon_sym_LPAREN] = ACTIONS(5338), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4446), + [anon_sym_DASH_GT] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ_GT] = ACTIONS(4446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4446), + [anon_sym_BANG_TILDE] = ACTIONS(4446), + [anon_sym_EQ_TILDE] = ACTIONS(4446), + [anon_sym_AMP_STAR] = ACTIONS(4444), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4444), + [anon_sym_EQ] = ACTIONS(4444), + [anon_sym_typeof] = ACTIONS(5330), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [sym_self] = ACTIONS(5332), + [sym_underscore_type] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(4446), + [anon_sym_AMP_AMP] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4446), + [anon_sym_do] = ACTIONS(4446), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4446), + [sym__start_of_tuple_type] = ACTIONS(5334), + [sym__start_of_named_tuple_type] = ACTIONS(5336), + [sym__start_of_index_operator] = ACTIONS(4446), + [sym__end_of_with_expression] = ACTIONS(4446), + [sym_binary_plus] = ACTIONS(4446), + [sym_binary_minus] = ACTIONS(4446), + [sym_binary_wrapping_plus] = ACTIONS(4446), + [sym_binary_wrapping_minus] = ACTIONS(4446), + [sym__binary_star] = ACTIONS(4446), + [sym__binary_double_star] = ACTIONS(4446), + [sym_binary_ampersand] = ACTIONS(4446), + [sym__binary_slash] = ACTIONS(4446), + [sym__binary_double_slash] = ACTIONS(4446), + [sym__modulo_operator] = ACTIONS(4446), [sym__heredoc_body_start] = ACTIONS(7), }, [2293] = { [sym_heredoc_body] = STATE(2293), - [sym_typeof] = STATE(5199), - [sym_constant] = STATE(5097), - [sym__type] = STATE(5056), - [sym_class_type] = STATE(5199), - [sym_union_type] = STATE(5199), - [sym__parenthesized_type] = STATE(5199), - [sym_no_args_proc_type] = STATE(5199), - [sym_parenthesized_proc_type] = STATE(5199), - [sym_tuple_type] = STATE(5199), - [sym_named_tuple_type] = STATE(5199), - [sym_generic_instance_type] = STATE(5199), - [sym_nilable_type] = STATE(5199), - [sym_pointer_type] = STATE(5199), - [sym_static_array_type] = STATE(5199), - [anon_sym_LPAREN] = ACTIONS(5365), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_COMMA] = ACTIONS(4375), - [anon_sym_DOT_DOT] = ACTIONS(4373), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4375), - [anon_sym_DASH_GT] = ACTIONS(5385), - [anon_sym_LT] = ACTIONS(4373), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_PIPE] = ACTIONS(4373), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_GT_GT] = ACTIONS(4375), - [anon_sym_LT_LT] = ACTIONS(4375), - [anon_sym_EQ_EQ] = ACTIONS(4373), - [anon_sym_BANG_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ] = ACTIONS(4373), - [anon_sym_GT] = ACTIONS(4373), - [anon_sym_GT_EQ] = ACTIONS(4375), - [anon_sym_LT_EQ_GT] = ACTIONS(4375), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4375), - [anon_sym_BANG_TILDE] = ACTIONS(4375), - [anon_sym_EQ_TILDE] = ACTIONS(4375), - [anon_sym_AMP_STAR] = ACTIONS(4373), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4375), - [anon_sym_DOT] = ACTIONS(4373), - [anon_sym_EQ] = ACTIONS(4373), - [anon_sym_typeof] = ACTIONS(5370), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [sym_self] = ACTIONS(5372), - [sym_underscore_type] = ACTIONS(5372), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_AMP_AMP] = ACTIONS(4375), - [anon_sym_PIPE_PIPE] = ACTIONS(4375), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5374), - [sym__start_of_named_tuple_type] = ACTIONS(5376), - [sym__start_of_index_operator] = ACTIONS(4375), - [sym__end_of_with_expression] = ACTIONS(4375), - [sym_binary_plus] = ACTIONS(4375), - [sym_binary_minus] = ACTIONS(4375), - [sym_binary_wrapping_plus] = ACTIONS(4375), - [sym_binary_wrapping_minus] = ACTIONS(4375), - [sym__binary_star] = ACTIONS(4375), - [sym__binary_double_star] = ACTIONS(4375), - [sym_binary_ampersand] = ACTIONS(4375), - [sym__binary_slash] = ACTIONS(4375), - [sym__binary_double_slash] = ACTIONS(4375), - [sym__modulo_operator] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_AMP_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_AMP_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_STAR_STAR_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(401), + [anon_sym_AMP_AMP_EQ] = ACTIONS(401), + [anon_sym_else] = ACTIONS(135), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__regular_rescue_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2294] = { [sym_heredoc_body] = STATE(2294), - [anon_sym_SEMI] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(259), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(647), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(649), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(649), - [anon_sym_DASH_EQ] = ACTIONS(649), - [anon_sym_AMP_DASH_EQ] = ACTIONS(649), - [anon_sym_STAR_EQ] = ACTIONS(649), - [anon_sym_AMP_STAR_EQ] = ACTIONS(649), - [anon_sym_SLASH_EQ] = ACTIONS(649), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(649), - [anon_sym_PERCENT_EQ] = ACTIONS(649), - [anon_sym_PIPE_EQ] = ACTIONS(649), - [anon_sym_AMP_EQ] = ACTIONS(649), - [anon_sym_CARET_EQ] = ACTIONS(649), - [anon_sym_STAR_STAR_EQ] = ACTIONS(649), - [anon_sym_LT_LT_EQ] = ACTIONS(649), - [anon_sym_GT_GT_EQ] = ACTIONS(649), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(649), - [anon_sym_AMP_AMP_EQ] = ACTIONS(649), - [anon_sym_COLON2] = ACTIONS(5388), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(135), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(135), + [anon_sym_DOT_DOT] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(135), + [anon_sym_end] = ACTIONS(135), + [anon_sym_LT] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(157), + [anon_sym_CARET] = ACTIONS(157), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LT_LT] = ACTIONS(157), + [anon_sym_EQ_EQ] = ACTIONS(157), + [anon_sym_BANG_EQ] = ACTIONS(135), + [anon_sym_LT_EQ] = ACTIONS(157), + [anon_sym_GT] = ACTIONS(157), + [anon_sym_GT_EQ] = ACTIONS(135), + [anon_sym_LT_EQ_GT] = ACTIONS(135), + [anon_sym_EQ_EQ_EQ] = ACTIONS(135), + [anon_sym_BANG_TILDE] = ACTIONS(135), + [anon_sym_EQ_TILDE] = ACTIONS(135), + [anon_sym_AMP_STAR] = ACTIONS(157), + [anon_sym_AMP_STAR_STAR] = ACTIONS(135), + [anon_sym_DOT] = ACTIONS(157), + [anon_sym_EQ] = ACTIONS(435), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_AMP_AMP] = ACTIONS(157), + [anon_sym_PIPE_PIPE] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(463), + [anon_sym_AMP_PLUS_EQ] = ACTIONS(463), + [anon_sym_DASH_EQ] = ACTIONS(463), + [anon_sym_AMP_DASH_EQ] = ACTIONS(463), + [anon_sym_STAR_EQ] = ACTIONS(463), + [anon_sym_AMP_STAR_EQ] = ACTIONS(463), + [anon_sym_SLASH_EQ] = ACTIONS(463), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(463), + [anon_sym_PERCENT_EQ] = ACTIONS(463), + [anon_sym_PIPE_EQ] = ACTIONS(463), + [anon_sym_AMP_EQ] = ACTIONS(463), + [anon_sym_CARET_EQ] = ACTIONS(463), + [anon_sym_STAR_STAR_EQ] = ACTIONS(463), + [anon_sym_LT_LT_EQ] = ACTIONS(463), + [anon_sym_GT_GT_EQ] = ACTIONS(463), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(463), + [anon_sym_AMP_AMP_EQ] = ACTIONS(463), + [anon_sym_COLON2] = ACTIONS(5424), + [sym__line_break] = ACTIONS(135), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_index_operator] = ACTIONS(135), + [sym_binary_plus] = ACTIONS(135), + [sym_binary_minus] = ACTIONS(135), + [sym_binary_wrapping_plus] = ACTIONS(135), + [sym_binary_wrapping_minus] = ACTIONS(135), + [sym__binary_star] = ACTIONS(135), + [sym__binary_double_star] = ACTIONS(135), + [sym_binary_ampersand] = ACTIONS(135), + [sym__binary_slash] = ACTIONS(135), + [sym__binary_double_slash] = ACTIONS(135), + [sym__modifier_if_keyword] = ACTIONS(135), + [sym__modifier_unless_keyword] = ACTIONS(135), + [sym__modifier_rescue_keyword] = ACTIONS(135), + [sym__regular_ensure_keyword] = ACTIONS(135), + [sym__modifier_ensure_keyword] = ACTIONS(135), + [sym__modulo_operator] = ACTIONS(135), [sym__heredoc_body_start] = ACTIONS(7), }, [2295] = { [sym_heredoc_body] = STATE(2295), - [anon_sym_SEMI] = ACTIONS(133), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(133), - [anon_sym_DOT_DOT] = ACTIONS(155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(133), - [anon_sym_end] = ACTIONS(133), - [anon_sym_LT] = ACTIONS(155), - [anon_sym_PIPE] = ACTIONS(155), - [anon_sym_CARET] = ACTIONS(155), - [anon_sym_GT_GT] = ACTIONS(155), - [anon_sym_LT_LT] = ACTIONS(155), - [anon_sym_EQ_EQ] = ACTIONS(155), - [anon_sym_BANG_EQ] = ACTIONS(133), - [anon_sym_LT_EQ] = ACTIONS(155), - [anon_sym_GT] = ACTIONS(155), - [anon_sym_GT_EQ] = ACTIONS(133), - [anon_sym_LT_EQ_GT] = ACTIONS(133), - [anon_sym_EQ_EQ_EQ] = ACTIONS(133), - [anon_sym_BANG_TILDE] = ACTIONS(133), - [anon_sym_EQ_TILDE] = ACTIONS(133), - [anon_sym_AMP_STAR] = ACTIONS(155), - [anon_sym_AMP_STAR_STAR] = ACTIONS(133), - [anon_sym_DOT] = ACTIONS(155), - [anon_sym_EQ] = ACTIONS(429), - [anon_sym_QMARK] = ACTIONS(133), - [anon_sym_AMP_AMP] = ACTIONS(155), - [anon_sym_PIPE_PIPE] = ACTIONS(155), - [anon_sym_PLUS_EQ] = ACTIONS(457), - [anon_sym_AMP_PLUS_EQ] = ACTIONS(457), - [anon_sym_DASH_EQ] = ACTIONS(457), - [anon_sym_AMP_DASH_EQ] = ACTIONS(457), - [anon_sym_STAR_EQ] = ACTIONS(457), - [anon_sym_AMP_STAR_EQ] = ACTIONS(457), - [anon_sym_SLASH_EQ] = ACTIONS(457), - [anon_sym_SLASH_SLASH_EQ] = ACTIONS(457), - [anon_sym_PERCENT_EQ] = ACTIONS(457), - [anon_sym_PIPE_EQ] = ACTIONS(457), - [anon_sym_AMP_EQ] = ACTIONS(457), - [anon_sym_CARET_EQ] = ACTIONS(457), - [anon_sym_STAR_STAR_EQ] = ACTIONS(457), - [anon_sym_LT_LT_EQ] = ACTIONS(457), - [anon_sym_GT_GT_EQ] = ACTIONS(457), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(457), - [anon_sym_AMP_AMP_EQ] = ACTIONS(457), - [anon_sym_COLON2] = ACTIONS(5390), - [sym__line_break] = ACTIONS(133), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_index_operator] = ACTIONS(133), - [sym_binary_plus] = ACTIONS(133), - [sym_binary_minus] = ACTIONS(133), - [sym_binary_wrapping_plus] = ACTIONS(133), - [sym_binary_wrapping_minus] = ACTIONS(133), - [sym__binary_star] = ACTIONS(133), - [sym__binary_double_star] = ACTIONS(133), - [sym_binary_ampersand] = ACTIONS(133), - [sym__binary_slash] = ACTIONS(133), - [sym__binary_double_slash] = ACTIONS(133), - [sym__modifier_if_keyword] = ACTIONS(133), - [sym__modifier_unless_keyword] = ACTIONS(133), - [sym__modifier_rescue_keyword] = ACTIONS(133), - [sym__regular_ensure_keyword] = ACTIONS(133), - [sym__modifier_ensure_keyword] = ACTIONS(133), - [sym__modulo_operator] = ACTIONS(133), + [sym_typeof] = STATE(5015), + [sym_constant] = STATE(4893), + [sym__type] = STATE(4933), + [sym_class_type] = STATE(5015), + [sym_union_type] = STATE(5015), + [sym__parenthesized_type] = STATE(5015), + [sym_no_args_proc_type] = STATE(5015), + [sym_parenthesized_proc_type] = STATE(5015), + [sym_tuple_type] = STATE(5015), + [sym_named_tuple_type] = STATE(5015), + [sym_generic_instance_type] = STATE(5015), + [sym_nilable_type] = STATE(5015), + [sym_pointer_type] = STATE(5015), + [sym_static_array_type] = STATE(5015), + [anon_sym_LPAREN] = ACTIONS(5338), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4468), + [anon_sym_DOT_DOT] = ACTIONS(4466), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4468), + [anon_sym_DASH_GT] = ACTIONS(5340), + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_PIPE] = ACTIONS(4466), + [anon_sym_CARET] = ACTIONS(4468), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_LT_LT] = ACTIONS(4468), + [anon_sym_EQ_EQ] = ACTIONS(4466), + [anon_sym_BANG_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_EQ] = ACTIONS(4468), + [anon_sym_LT_EQ_GT] = ACTIONS(4468), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4468), + [anon_sym_BANG_TILDE] = ACTIONS(4468), + [anon_sym_EQ_TILDE] = ACTIONS(4468), + [anon_sym_AMP_STAR] = ACTIONS(4466), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4468), + [anon_sym_DOT] = ACTIONS(4466), + [anon_sym_EQ] = ACTIONS(4466), + [anon_sym_typeof] = ACTIONS(5330), + [sym__constant_segment] = ACTIONS(3051), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [sym_self] = ACTIONS(5332), + [sym_underscore_type] = ACTIONS(5332), + [anon_sym_QMARK] = ACTIONS(4468), + [anon_sym_AMP_AMP] = ACTIONS(4468), + [anon_sym_PIPE_PIPE] = ACTIONS(4468), + [anon_sym_do] = ACTIONS(4468), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_brace_block] = ACTIONS(4468), + [sym__start_of_tuple_type] = ACTIONS(5334), + [sym__start_of_named_tuple_type] = ACTIONS(5336), + [sym__start_of_index_operator] = ACTIONS(4468), + [sym__end_of_with_expression] = ACTIONS(4468), + [sym_binary_plus] = ACTIONS(4468), + [sym_binary_minus] = ACTIONS(4468), + [sym_binary_wrapping_plus] = ACTIONS(4468), + [sym_binary_wrapping_minus] = ACTIONS(4468), + [sym__binary_star] = ACTIONS(4468), + [sym__binary_double_star] = ACTIONS(4468), + [sym_binary_ampersand] = ACTIONS(4468), + [sym__binary_slash] = ACTIONS(4468), + [sym__binary_double_slash] = ACTIONS(4468), + [sym__modulo_operator] = ACTIONS(4468), [sym__heredoc_body_start] = ACTIONS(7), }, [2296] = { [sym_heredoc_body] = STATE(2296), - [sym_typeof] = STATE(4968), - [sym_constant] = STATE(4834), - [sym__type] = STATE(4992), - [sym_class_type] = STATE(4968), - [sym_union_type] = STATE(4968), - [sym__parenthesized_type] = STATE(4968), - [sym_no_args_proc_type] = STATE(4968), - [sym_parenthesized_proc_type] = STATE(4968), - [sym_tuple_type] = STATE(4968), - [sym_named_tuple_type] = STATE(4968), - [sym_generic_instance_type] = STATE(4968), - [sym_nilable_type] = STATE(4968), - [sym_pointer_type] = STATE(4968), - [sym_static_array_type] = STATE(4968), - [anon_sym_SEMI] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(5288), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_DOT_DOT] = ACTIONS(4429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4431), - [anon_sym_DASH_GT] = ACTIONS(5290), - [anon_sym_LT] = ACTIONS(4429), - [anon_sym_PIPE] = ACTIONS(4429), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_GT_GT] = ACTIONS(4431), - [anon_sym_LT_LT] = ACTIONS(4431), - [anon_sym_EQ_EQ] = ACTIONS(4429), - [anon_sym_BANG_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ] = ACTIONS(4429), - [anon_sym_GT] = ACTIONS(4429), - [anon_sym_GT_EQ] = ACTIONS(4431), - [anon_sym_LT_EQ_GT] = ACTIONS(4431), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4431), - [anon_sym_BANG_TILDE] = ACTIONS(4431), - [anon_sym_EQ_TILDE] = ACTIONS(4431), - [anon_sym_AMP_STAR] = ACTIONS(4429), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4431), - [anon_sym_DOT] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4429), - [anon_sym_typeof] = ACTIONS(5292), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [sym_self] = ACTIONS(5294), - [sym_underscore_type] = ACTIONS(5294), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_AMP_AMP] = ACTIONS(4431), - [anon_sym_PIPE_PIPE] = ACTIONS(4431), - [anon_sym_then] = ACTIONS(4431), - [sym__line_break] = ACTIONS(4431), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5296), - [sym__start_of_named_tuple_type] = ACTIONS(5298), - [sym__start_of_index_operator] = ACTIONS(4431), - [sym_binary_plus] = ACTIONS(4431), - [sym_binary_minus] = ACTIONS(4431), - [sym_binary_wrapping_plus] = ACTIONS(4431), - [sym_binary_wrapping_minus] = ACTIONS(4431), - [sym__binary_star] = ACTIONS(4431), - [sym__binary_double_star] = ACTIONS(4431), - [sym_binary_ampersand] = ACTIONS(4431), - [sym__binary_slash] = ACTIONS(4431), - [sym__binary_double_slash] = ACTIONS(4431), - [sym__modulo_operator] = ACTIONS(4431), + [sym_typeof] = STATE(5020), + [sym_constant] = STATE(4791), + [sym__type] = STATE(5018), + [sym_class_type] = STATE(5020), + [sym_union_type] = STATE(5020), + [sym__parenthesized_type] = STATE(5020), + [sym_no_args_proc_type] = STATE(5020), + [sym_parenthesized_proc_type] = STATE(5020), + [sym_tuple_type] = STATE(5020), + [sym_named_tuple_type] = STATE(5020), + [sym_generic_instance_type] = STATE(5020), + [sym_nilable_type] = STATE(5020), + [sym_pointer_type] = STATE(5020), + [sym_static_array_type] = STATE(5020), + [anon_sym_SEMI] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(5359), + [sym_comment] = ACTIONS(5), + [anon_sym_COMMA] = ACTIONS(4446), + [anon_sym_DOT_DOT] = ACTIONS(4444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4446), + [anon_sym_DASH_GT] = ACTIONS(5361), + [anon_sym_LT] = ACTIONS(4444), + [anon_sym_PIPE] = ACTIONS(4444), + [anon_sym_CARET] = ACTIONS(4446), + [anon_sym_GT_GT] = ACTIONS(4446), + [anon_sym_LT_LT] = ACTIONS(4446), + [anon_sym_EQ_EQ] = ACTIONS(4444), + [anon_sym_BANG_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ] = ACTIONS(4444), + [anon_sym_GT] = ACTIONS(4444), + [anon_sym_GT_EQ] = ACTIONS(4446), + [anon_sym_LT_EQ_GT] = ACTIONS(4446), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4446), + [anon_sym_BANG_TILDE] = ACTIONS(4446), + [anon_sym_EQ_TILDE] = ACTIONS(4446), + [anon_sym_AMP_STAR] = ACTIONS(4444), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4446), + [anon_sym_DOT] = ACTIONS(4444), + [anon_sym_EQ] = ACTIONS(4444), + [anon_sym_typeof] = ACTIONS(5349), + [sym__constant_segment] = ACTIONS(3067), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [sym_self] = ACTIONS(5351), + [sym_underscore_type] = ACTIONS(5351), + [anon_sym_QMARK] = ACTIONS(4446), + [anon_sym_AMP_AMP] = ACTIONS(4446), + [anon_sym_PIPE_PIPE] = ACTIONS(4446), + [anon_sym_then] = ACTIONS(4446), + [sym__line_break] = ACTIONS(4446), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5353), + [sym__start_of_named_tuple_type] = ACTIONS(5355), + [sym__start_of_index_operator] = ACTIONS(4446), + [sym_binary_plus] = ACTIONS(4446), + [sym_binary_minus] = ACTIONS(4446), + [sym_binary_wrapping_plus] = ACTIONS(4446), + [sym_binary_wrapping_minus] = ACTIONS(4446), + [sym__binary_star] = ACTIONS(4446), + [sym__binary_double_star] = ACTIONS(4446), + [sym_binary_ampersand] = ACTIONS(4446), + [sym__binary_slash] = ACTIONS(4446), + [sym__binary_double_slash] = ACTIONS(4446), + [sym__modulo_operator] = ACTIONS(4446), [sym__heredoc_body_start] = ACTIONS(7), }, [2297] = { [sym_heredoc_body] = STATE(2297), - [sym_typeof] = STATE(4968), - [sym_constant] = STATE(4834), - [sym__type] = STATE(4983), - [sym_class_type] = STATE(4968), - [sym_union_type] = STATE(4968), - [sym__parenthesized_type] = STATE(4968), - [sym_no_args_proc_type] = STATE(4968), - [sym_parenthesized_proc_type] = STATE(4968), - [sym_tuple_type] = STATE(4968), - [sym_named_tuple_type] = STATE(4968), - [sym_generic_instance_type] = STATE(4968), - [sym_nilable_type] = STATE(4968), - [sym_pointer_type] = STATE(4968), - [sym_static_array_type] = STATE(4968), - [anon_sym_SEMI] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(5288), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4409), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4409), - [anon_sym_DASH_GT] = ACTIONS(5290), - [anon_sym_LT] = ACTIONS(4407), - [anon_sym_PIPE] = ACTIONS(4407), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym_GT_GT] = ACTIONS(4409), - [anon_sym_LT_LT] = ACTIONS(4409), - [anon_sym_EQ_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ_GT] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), - [anon_sym_BANG_TILDE] = ACTIONS(4409), - [anon_sym_EQ_TILDE] = ACTIONS(4409), - [anon_sym_AMP_STAR] = ACTIONS(4407), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4409), - [anon_sym_DOT] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4407), - [anon_sym_typeof] = ACTIONS(5292), - [sym__constant_segment] = ACTIONS(3038), - [anon_sym_COLON_COLON] = ACTIONS(2116), - [sym_self] = ACTIONS(5294), - [sym_underscore_type] = ACTIONS(5294), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_AMP_AMP] = ACTIONS(4409), - [anon_sym_PIPE_PIPE] = ACTIONS(4409), - [anon_sym_then] = ACTIONS(4409), - [sym__line_break] = ACTIONS(4409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5296), - [sym__start_of_named_tuple_type] = ACTIONS(5298), - [sym__start_of_index_operator] = ACTIONS(4409), - [sym_binary_plus] = ACTIONS(4409), - [sym_binary_minus] = ACTIONS(4409), - [sym_binary_wrapping_plus] = ACTIONS(4409), - [sym_binary_wrapping_minus] = ACTIONS(4409), - [sym__binary_star] = ACTIONS(4409), - [sym__binary_double_star] = ACTIONS(4409), - [sym_binary_ampersand] = ACTIONS(4409), - [sym__binary_slash] = ACTIONS(4409), - [sym__binary_double_slash] = ACTIONS(4409), - [sym__modulo_operator] = ACTIONS(4409), + [sym_typeof] = STATE(5166), + [sym_constant] = STATE(5101), + [sym__type] = STATE(5136), + [sym_class_type] = STATE(5166), + [sym_union_type] = STATE(5166), + [sym__parenthesized_type] = STATE(5166), + [sym_no_args_proc_type] = STATE(5166), + [sym_parenthesized_proc_type] = STATE(5166), + [sym_tuple_type] = STATE(5166), + [sym_named_tuple_type] = STATE(5166), + [sym_generic_instance_type] = STATE(5166), + [sym_nilable_type] = STATE(5166), + [sym_pointer_type] = STATE(5166), + [sym_static_array_type] = STATE(5166), + [anon_sym_LPAREN] = ACTIONS(5402), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5426), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5407), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [sym_self] = ACTIONS(5409), + [sym_underscore_type] = ACTIONS(5409), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5411), + [sym__start_of_named_tuple_type] = ACTIONS(5413), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym__end_of_with_expression] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2298] = { [sym_heredoc_body] = STATE(2298), - [sym_typeof] = STATE(5199), - [sym_constant] = STATE(5097), - [sym__type] = STATE(5173), - [sym_class_type] = STATE(5199), - [sym_union_type] = STATE(5199), - [sym__parenthesized_type] = STATE(5199), - [sym_no_args_proc_type] = STATE(5199), - [sym_parenthesized_proc_type] = STATE(5199), - [sym_tuple_type] = STATE(5199), - [sym_named_tuple_type] = STATE(5199), - [sym_generic_instance_type] = STATE(5199), - [sym_nilable_type] = STATE(5199), - [sym_pointer_type] = STATE(5199), - [sym_static_array_type] = STATE(5199), - [anon_sym_LPAREN] = ACTIONS(5378), - [sym_comment] = ACTIONS(5), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_COMMA] = ACTIONS(4325), - [anon_sym_DOT_DOT] = ACTIONS(4323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_DASH_GT] = ACTIONS(5380), - [anon_sym_LT] = ACTIONS(4323), - [anon_sym_STAR] = ACTIONS(4325), - [anon_sym_PIPE] = ACTIONS(4323), - [anon_sym_CARET] = ACTIONS(4325), - [anon_sym_GT_GT] = ACTIONS(4325), - [anon_sym_LT_LT] = ACTIONS(4325), - [anon_sym_EQ_EQ] = ACTIONS(4323), - [anon_sym_BANG_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ] = ACTIONS(4323), - [anon_sym_GT] = ACTIONS(4323), - [anon_sym_GT_EQ] = ACTIONS(4325), - [anon_sym_LT_EQ_GT] = ACTIONS(4325), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4325), - [anon_sym_BANG_TILDE] = ACTIONS(4325), - [anon_sym_EQ_TILDE] = ACTIONS(4325), - [anon_sym_AMP_STAR] = ACTIONS(4323), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4323), - [anon_sym_EQ] = ACTIONS(4323), - [anon_sym_typeof] = ACTIONS(5370), - [sym__constant_segment] = ACTIONS(3108), - [anon_sym_COLON_COLON] = ACTIONS(2663), - [sym_self] = ACTIONS(5372), - [sym_underscore_type] = ACTIONS(5372), - [anon_sym_QMARK] = ACTIONS(4325), - [anon_sym_AMP_AMP] = ACTIONS(4325), - [anon_sym_PIPE_PIPE] = ACTIONS(4325), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_tuple_type] = ACTIONS(5374), - [sym__start_of_named_tuple_type] = ACTIONS(5376), - [sym__start_of_index_operator] = ACTIONS(4325), - [sym__end_of_with_expression] = ACTIONS(4325), - [sym_binary_plus] = ACTIONS(4325), - [sym_binary_minus] = ACTIONS(4325), - [sym_binary_wrapping_plus] = ACTIONS(4325), - [sym_binary_wrapping_minus] = ACTIONS(4325), - [sym__binary_star] = ACTIONS(4325), - [sym__binary_double_star] = ACTIONS(4325), - [sym_binary_ampersand] = ACTIONS(4325), - [sym__binary_slash] = ACTIONS(4325), - [sym__binary_double_slash] = ACTIONS(4325), - [sym__modulo_operator] = ACTIONS(4325), + [sym_typeof] = STATE(5166), + [sym_constant] = STATE(5101), + [sym__type] = STATE(5190), + [sym_class_type] = STATE(5166), + [sym_union_type] = STATE(5166), + [sym__parenthesized_type] = STATE(5166), + [sym_no_args_proc_type] = STATE(5166), + [sym_parenthesized_proc_type] = STATE(5166), + [sym_tuple_type] = STATE(5166), + [sym_named_tuple_type] = STATE(5166), + [sym_generic_instance_type] = STATE(5166), + [sym_nilable_type] = STATE(5166), + [sym_pointer_type] = STATE(5166), + [sym_static_array_type] = STATE(5166), + [anon_sym_LPAREN] = ACTIONS(5417), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4412), + [anon_sym_COMMA] = ACTIONS(4412), + [anon_sym_DOT_DOT] = ACTIONS(4410), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4412), + [anon_sym_DASH_GT] = ACTIONS(5419), + [anon_sym_LT] = ACTIONS(4410), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4410), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_GT_GT] = ACTIONS(4412), + [anon_sym_LT_LT] = ACTIONS(4412), + [anon_sym_EQ_EQ] = ACTIONS(4410), + [anon_sym_BANG_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ] = ACTIONS(4410), + [anon_sym_GT] = ACTIONS(4410), + [anon_sym_GT_EQ] = ACTIONS(4412), + [anon_sym_LT_EQ_GT] = ACTIONS(4412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4412), + [anon_sym_BANG_TILDE] = ACTIONS(4412), + [anon_sym_EQ_TILDE] = ACTIONS(4412), + [anon_sym_AMP_STAR] = ACTIONS(4410), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4412), + [anon_sym_DOT] = ACTIONS(4410), + [anon_sym_EQ] = ACTIONS(4410), + [anon_sym_typeof] = ACTIONS(5407), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [sym_self] = ACTIONS(5409), + [sym_underscore_type] = ACTIONS(5409), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_AMP_AMP] = ACTIONS(4412), + [anon_sym_PIPE_PIPE] = ACTIONS(4412), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5411), + [sym__start_of_named_tuple_type] = ACTIONS(5413), + [sym__start_of_index_operator] = ACTIONS(4412), + [sym__end_of_with_expression] = ACTIONS(4412), + [sym_binary_plus] = ACTIONS(4412), + [sym_binary_minus] = ACTIONS(4412), + [sym_binary_wrapping_plus] = ACTIONS(4412), + [sym_binary_wrapping_minus] = ACTIONS(4412), + [sym__binary_star] = ACTIONS(4412), + [sym__binary_double_star] = ACTIONS(4412), + [sym_binary_ampersand] = ACTIONS(4412), + [sym__binary_slash] = ACTIONS(4412), + [sym__binary_double_slash] = ACTIONS(4412), + [sym__modulo_operator] = ACTIONS(4412), [sym__heredoc_body_start] = ACTIONS(7), }, [2299] = { [sym_heredoc_body] = STATE(2299), - [sym_typeof] = STATE(5003), - [sym_constant] = STATE(4652), - [sym__type] = STATE(4884), - [sym_class_type] = STATE(5003), - [sym_union_type] = STATE(5003), - [sym__parenthesized_type] = STATE(5003), - [sym_no_args_proc_type] = STATE(5003), - [sym_parenthesized_proc_type] = STATE(5003), - [sym_tuple_type] = STATE(5003), - [sym_named_tuple_type] = STATE(5003), - [sym_generic_instance_type] = STATE(5003), - [sym_nilable_type] = STATE(5003), - [sym_pointer_type] = STATE(5003), - [sym_static_array_type] = STATE(5003), - [anon_sym_LPAREN] = ACTIONS(5325), - [sym_comment] = ACTIONS(5), - [anon_sym_COMMA] = ACTIONS(4409), - [anon_sym_DOT_DOT] = ACTIONS(4407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4409), - [anon_sym_DASH_GT] = ACTIONS(5327), - [anon_sym_LT] = ACTIONS(4407), - [anon_sym_PIPE] = ACTIONS(4407), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym_GT_GT] = ACTIONS(4409), - [anon_sym_LT_LT] = ACTIONS(4409), - [anon_sym_EQ_EQ] = ACTIONS(4407), - [anon_sym_BANG_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ] = ACTIONS(4407), - [anon_sym_GT] = ACTIONS(4407), - [anon_sym_GT_EQ] = ACTIONS(4409), - [anon_sym_LT_EQ_GT] = ACTIONS(4409), - [anon_sym_EQ_EQ_EQ] = ACTIONS(4409), - [anon_sym_BANG_TILDE] = ACTIONS(4409), - [anon_sym_EQ_TILDE] = ACTIONS(4409), - [anon_sym_AMP_STAR] = ACTIONS(4407), - [anon_sym_AMP_STAR_STAR] = ACTIONS(4409), - [anon_sym_DOT] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4407), - [anon_sym_typeof] = ACTIONS(5310), - [sym__constant_segment] = ACTIONS(3020), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [sym_self] = ACTIONS(5312), - [sym_underscore_type] = ACTIONS(5312), - [anon_sym_QMARK] = ACTIONS(4409), - [anon_sym_AMP_AMP] = ACTIONS(4409), - [anon_sym_PIPE_PIPE] = ACTIONS(4409), - [anon_sym_do] = ACTIONS(4409), - [sym__line_continuation] = ACTIONS(5), - [sym__start_of_brace_block] = ACTIONS(4409), - [sym__start_of_tuple_type] = ACTIONS(5314), - [sym__start_of_named_tuple_type] = ACTIONS(5316), - [sym__start_of_index_operator] = ACTIONS(4409), - [sym__end_of_with_expression] = ACTIONS(4409), - [sym_binary_plus] = ACTIONS(4409), - [sym_binary_minus] = ACTIONS(4409), - [sym_binary_wrapping_plus] = ACTIONS(4409), - [sym_binary_wrapping_minus] = ACTIONS(4409), - [sym__binary_star] = ACTIONS(4409), - [sym__binary_double_star] = ACTIONS(4409), - [sym_binary_ampersand] = ACTIONS(4409), - [sym__binary_slash] = ACTIONS(4409), - [sym__binary_double_slash] = ACTIONS(4409), - [sym__modulo_operator] = ACTIONS(4409), + [sym_typeof] = STATE(5166), + [sym_constant] = STATE(5101), + [sym__type] = STATE(5171), + [sym_class_type] = STATE(5166), + [sym_union_type] = STATE(5166), + [sym__parenthesized_type] = STATE(5166), + [sym_no_args_proc_type] = STATE(5166), + [sym_parenthesized_proc_type] = STATE(5166), + [sym_tuple_type] = STATE(5166), + [sym_named_tuple_type] = STATE(5166), + [sym_generic_instance_type] = STATE(5166), + [sym_nilable_type] = STATE(5166), + [sym_pointer_type] = STATE(5166), + [sym_static_array_type] = STATE(5166), + [anon_sym_LPAREN] = ACTIONS(5417), + [sym_comment] = ACTIONS(5), + [anon_sym_LBRACK] = ACTIONS(4390), + [anon_sym_COMMA] = ACTIONS(4390), + [anon_sym_DOT_DOT] = ACTIONS(4388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4390), + [anon_sym_DASH_GT] = ACTIONS(5419), + [anon_sym_LT] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4390), + [anon_sym_PIPE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4390), + [anon_sym_GT_GT] = ACTIONS(4390), + [anon_sym_LT_LT] = ACTIONS(4390), + [anon_sym_EQ_EQ] = ACTIONS(4388), + [anon_sym_BANG_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ] = ACTIONS(4388), + [anon_sym_GT] = ACTIONS(4388), + [anon_sym_GT_EQ] = ACTIONS(4390), + [anon_sym_LT_EQ_GT] = ACTIONS(4390), + [anon_sym_EQ_EQ_EQ] = ACTIONS(4390), + [anon_sym_BANG_TILDE] = ACTIONS(4390), + [anon_sym_EQ_TILDE] = ACTIONS(4390), + [anon_sym_AMP_STAR] = ACTIONS(4388), + [anon_sym_AMP_STAR_STAR] = ACTIONS(4390), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(4388), + [anon_sym_typeof] = ACTIONS(5407), + [sym__constant_segment] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(2710), + [sym_self] = ACTIONS(5409), + [sym_underscore_type] = ACTIONS(5409), + [anon_sym_QMARK] = ACTIONS(4390), + [anon_sym_AMP_AMP] = ACTIONS(4390), + [anon_sym_PIPE_PIPE] = ACTIONS(4390), + [sym__line_continuation] = ACTIONS(5), + [sym__start_of_tuple_type] = ACTIONS(5411), + [sym__start_of_named_tuple_type] = ACTIONS(5413), + [sym__start_of_index_operator] = ACTIONS(4390), + [sym__end_of_with_expression] = ACTIONS(4390), + [sym_binary_plus] = ACTIONS(4390), + [sym_binary_minus] = ACTIONS(4390), + [sym_binary_wrapping_plus] = ACTIONS(4390), + [sym_binary_wrapping_minus] = ACTIONS(4390), + [sym__binary_star] = ACTIONS(4390), + [sym__binary_double_star] = ACTIONS(4390), + [sym_binary_ampersand] = ACTIONS(4390), + [sym__binary_slash] = ACTIONS(4390), + [sym__binary_double_slash] = ACTIONS(4390), + [sym__modulo_operator] = ACTIONS(4390), [sym__heredoc_body_start] = ACTIONS(7), }, }; @@ -329169,16 +333473,16 @@ static const uint16_t ts_small_parse_table[] = { [0] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, + ACTIONS(263), 1, anon_sym_COMMA, - ACTIONS(647), 1, + ACTIONS(641), 1, anon_sym_EQ, STATE(2300), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -329192,7 +333496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(649), 17, + ACTIONS(643), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -329210,7 +333514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 28, + ACTIONS(135), 28, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -329239,60 +333543,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [81] = 16, + [81] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2272), 1, - anon_sym_COLON_COLON, - ACTIONS(3052), 1, - sym__constant_segment, - ACTIONS(5345), 1, - anon_sym_typeof, - ACTIONS(5349), 1, - sym__start_of_tuple_type, - ACTIONS(5351), 1, - sym__start_of_named_tuple_type, - ACTIONS(5361), 1, - anon_sym_LPAREN, - ACTIONS(5363), 1, - anon_sym_DASH_GT, + ACTIONS(435), 1, + anon_sym_EQ, STATE(2301), 1, sym_heredoc_body, - STATE(4886), 1, - sym_constant, - STATE(5045), 1, - sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5347), 2, - sym_self, - sym_underscore_type, - ACTIONS(4429), 10, - anon_sym_RBRACK, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - STATE(5055), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4431), 27, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(463), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -329303,12 +333597,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, + anon_sym_end, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -329317,10 +333615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [178] = 5, + [160] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(2302), 1, @@ -329328,7 +333623,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5184), 14, + ACTIONS(5237), 14, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -329343,7 +333638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(5182), 46, + ACTIONS(5235), 46, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -329354,11 +333650,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_BANG_EQ, @@ -329386,91 +333685,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [253] = 7, + [235] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(429), 1, - anon_sym_EQ, STATE(2303), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(457), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 29, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - [332] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2304), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5184), 14, + ACTIONS(5237), 14, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -329485,8 +333708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(5182), 46, - sym__line_break, + ACTIONS(5235), 46, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -329497,14 +333719,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_BANG_EQ, @@ -329532,52 +333751,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [407] = 8, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [310] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(647), 1, - anon_sym_EQ, - ACTIONS(5388), 1, - anon_sym_COLON2, - STATE(2305), 1, + ACTIONS(2312), 1, + anon_sym_COLON_COLON, + ACTIONS(3083), 1, + sym__constant_segment, + ACTIONS(5377), 1, + anon_sym_LPAREN, + ACTIONS(5379), 1, + anon_sym_DASH_GT, + ACTIONS(5381), 1, + anon_sym_typeof, + ACTIONS(5385), 1, + sym__start_of_tuple_type, + ACTIONS(5387), 1, + sym__start_of_named_tuple_type, + STATE(2304), 1, sym_heredoc_body, + STATE(5014), 1, + sym_constant, + STATE(5068), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(5383), 2, + sym_self, + sym_underscore_type, + ACTIONS(4466), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(649), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 28, - sym__line_break, + anon_sym_EQ, + STATE(5099), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4468), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -329588,15 +333819,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -329605,19 +333833,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [488] = 8, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [407] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(629), 1, + ACTIONS(559), 1, anon_sym_EQ, - ACTIONS(5392), 1, + ACTIONS(5429), 1, anon_sym_COLON2, - STATE(2306), 1, + STATE(2305), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -329631,7 +333862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(635), 17, + ACTIONS(587), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -329649,7 +333880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 28, + ACTIONS(135), 28, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -329678,36 +333909,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [569] = 16, + [488] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2272), 1, + ACTIONS(2312), 1, anon_sym_COLON_COLON, - ACTIONS(3052), 1, + ACTIONS(3083), 1, sym__constant_segment, - ACTIONS(5345), 1, + ACTIONS(5377), 1, + anon_sym_LPAREN, + ACTIONS(5379), 1, + anon_sym_DASH_GT, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5349), 1, + ACTIONS(5385), 1, sym__start_of_tuple_type, - ACTIONS(5351), 1, + ACTIONS(5387), 1, sym__start_of_named_tuple_type, - ACTIONS(5361), 1, - anon_sym_LPAREN, - ACTIONS(5363), 1, - anon_sym_DASH_GT, - STATE(2307), 1, + STATE(2306), 1, sym_heredoc_body, - STATE(4886), 1, + STATE(5014), 1, sym_constant, - STATE(5038), 1, + STATE(5076), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5347), 2, + ACTIONS(5383), 2, sym_self, sym_underscore_type, - ACTIONS(4407), 10, + ACTIONS(4444), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -329718,7 +333949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - STATE(5055), 12, + STATE(5099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -329731,7 +333962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - ACTIONS(4409), 27, + ACTIONS(4446), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -329759,61 +333990,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [666] = 16, + [585] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, - anon_sym_COLON_COLON, - ACTIONS(3108), 1, - sym__constant_segment, - ACTIONS(5370), 1, - anon_sym_typeof, - ACTIONS(5374), 1, - sym__start_of_tuple_type, - ACTIONS(5376), 1, - sym__start_of_named_tuple_type, - ACTIONS(5378), 1, - anon_sym_LPAREN, - ACTIONS(5380), 1, - anon_sym_DASH_GT, - STATE(2308), 1, + ACTIONS(641), 1, + anon_sym_EQ, + ACTIONS(5415), 1, + anon_sym_COLON2, + STATE(2307), 1, sym_heredoc_body, - STATE(5097), 1, - sym_constant, - STATE(5424), 1, - sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, - sym_self, - sym_underscore_type, - ACTIONS(4407), 9, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - STATE(5199), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4409), 27, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(643), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 28, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -329823,12 +334046,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, + anon_sym_end, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -329837,38 +334063,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [762] = 16, + [666] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(3108), 1, + ACTIONS(3141), 1, sym__constant_segment, - ACTIONS(5370), 1, + ACTIONS(5407), 1, anon_sym_typeof, - ACTIONS(5374), 1, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(5376), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(5378), 1, + ACTIONS(5417), 1, anon_sym_LPAREN, - ACTIONS(5380), 1, + ACTIONS(5419), 1, anon_sym_DASH_GT, - STATE(2309), 1, + STATE(2308), 1, sym_heredoc_body, - STATE(5097), 1, + STATE(5101), 1, sym_constant, - STATE(5286), 1, + STATE(5155), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - ACTIONS(4429), 9, + ACTIONS(4466), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -329878,7 +334102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - STATE(5199), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -329891,7 +334115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - ACTIONS(4431), 27, + ACTIONS(4468), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -329919,17 +334143,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [858] = 7, + [762] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(629), 1, + ACTIONS(641), 1, anon_sym_EQ, - STATE(2310), 1, + STATE(2309), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -329943,7 +334167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(635), 17, + ACTIONS(643), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -329961,7 +334185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 28, + ACTIONS(135), 28, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -329972,11 +334197,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_BANG_EQ, @@ -329987,54 +334214,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [936] = 7, + [840] = 16, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(647), 1, - anon_sym_EQ, - STATE(2311), 1, + ACTIONS(2710), 1, + anon_sym_COLON_COLON, + ACTIONS(3141), 1, + sym__constant_segment, + ACTIONS(5407), 1, + anon_sym_typeof, + ACTIONS(5411), 1, + sym__start_of_tuple_type, + ACTIONS(5413), 1, + sym__start_of_named_tuple_type, + ACTIONS(5417), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_DASH_GT, + STATE(2310), 1, sym_heredoc_body, + STATE(5101), 1, + sym_constant, + STATE(5149), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(5409), 2, + sym_self, + sym_underscore_type, + ACTIONS(4444), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(649), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 28, - sym__line_break, + anon_sym_EQ, + STATE(5166), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4446), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -330044,15 +334278,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -330061,19 +334292,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [1014] = 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [936] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(693), 1, + ACTIONS(559), 1, anon_sym_EQ, - ACTIONS(5394), 1, - anon_sym_COLON2, - STATE(2312), 1, + STATE(2311), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -330087,7 +334318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(721), 17, + ACTIONS(587), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -330105,9 +334336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 26, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(135), 28, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -330119,9 +334348,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -330130,21 +334362,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_do, - anon_sym_then, - [1093] = 8, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [1014] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(657), 1, + ACTIONS(667), 1, anon_sym_EQ, - ACTIONS(5396), 1, + ACTIONS(5431), 1, anon_sym_COLON2, - STATE(2313), 1, + STATE(2312), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -330158,7 +334391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(659), 17, + ACTIONS(669), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -330176,7 +334409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 26, + ACTIONS(135), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -330203,88 +334436,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [1172] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5398), 1, - anon_sym_COLON_COLON, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(2314), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4561), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4563), 46, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [1246] = 8, + [1093] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(945), 1, + ACTIONS(785), 1, anon_sym_EQ, - ACTIONS(5401), 1, + ACTIONS(5433), 1, anon_sym_COLON2, - STATE(2315), 1, + STATE(2313), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 14, - anon_sym_RBRACK, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -330298,7 +334462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(951), 17, + ACTIONS(791), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -330316,54 +334480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 24, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_do, - [1324] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5403), 1, - anon_sym_COLON_COLON, - STATE(2316), 1, - sym_heredoc_body, - STATE(2317), 1, - aux_sym_constant_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4553), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 46, + ACTIONS(135), 26, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -330376,24 +334493,10 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -330401,28 +334504,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [1400] = 7, + anon_sym_then, + [1172] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5403), 1, + ACTIONS(5435), 1, anon_sym_COLON_COLON, - STATE(2314), 1, - aux_sym_constant_repeat1, - STATE(2317), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4557), 9, + STATE(2314), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -330432,7 +334528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4559), 46, + ACTIONS(4600), 46, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -330479,17 +334575,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [1476] = 7, + [1246] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(693), 1, + ACTIONS(667), 1, anon_sym_EQ, - STATE(2318), 1, + STATE(2315), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -330503,7 +334599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(721), 17, + ACTIONS(669), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -330521,9 +334617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 26, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(135), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -330535,9 +334629,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -330546,17 +334641,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_do, - anon_sym_then, - [1552] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [1322] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2319), 1, + STATE(2316), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5184), 14, + ACTIONS(5237), 14, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -330571,7 +334667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(5182), 43, + ACTIONS(5235), 43, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -330615,17 +334711,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_do, anon_sym_then, - [1624] = 7, + [1394] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(657), 1, + ACTIONS(959), 1, anon_sym_EQ, - STATE(2320), 1, + ACTIONS(5438), 1, + anon_sym_COLON2, + STATE(2317), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 14, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -330639,7 +334738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(659), 17, + ACTIONS(965), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -330657,7 +334756,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 26, + ACTIONS(135), 24, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -330669,10 +334769,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -330681,22 +334779,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [1700] = 7, + anon_sym_RBRACK_QMARK, + anon_sym_do, + [1472] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5403), 1, + ACTIONS(5440), 1, anon_sym_COLON_COLON, STATE(2314), 1, aux_sym_constant_repeat1, - STATE(2321), 1, + STATE(2318), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 9, + ACTIONS(4590), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -330706,7 +334803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4555), 46, + ACTIONS(4592), 46, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -330753,19 +334850,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [1776] = 8, + [1548] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(901), 1, + ACTIONS(5440), 1, + anon_sym_COLON_COLON, + STATE(2319), 1, + sym_heredoc_body, + STATE(2321), 1, + aux_sym_constant_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4584), 9, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4586), 46, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [1624] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(807), 1, anon_sym_EQ, - ACTIONS(5405), 1, + ACTIONS(5442), 1, anon_sym_COLON2, - STATE(2322), 1, + STATE(2320), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -330779,7 +334945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(915), 17, + ACTIONS(821), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -330797,7 +334963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 25, + ACTIONS(135), 25, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -330823,19 +334989,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_do, - [1854] = 7, + [1702] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5403), 1, + ACTIONS(5440), 1, anon_sym_COLON_COLON, - STATE(2321), 1, + STATE(2314), 1, aux_sym_constant_repeat1, - STATE(2323), 1, + STATE(2321), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 9, + ACTIONS(4594), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -330845,7 +335011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4549), 46, + ACTIONS(4596), 46, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -330892,19 +335058,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [1930] = 8, + [1778] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1067), 1, + ACTIONS(785), 1, anon_sym_EQ, - ACTIONS(5407), 1, - anon_sym_COLON2, - STATE(2324), 1, + STATE(2322), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -330918,7 +335082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1073), 17, + ACTIONS(791), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -330936,10 +335100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 24, + ACTIONS(135), 26, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -330950,6 +335114,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_BANG_EQ, @@ -330961,31 +335126,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_do, - [2007] = 5, + anon_sym_then, + [1854] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2325), 1, + ACTIONS(5440), 1, + anon_sym_COLON_COLON, + STATE(2318), 1, + aux_sym_constant_repeat1, + STATE(2323), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5184), 15, - anon_sym_RBRACK, + ACTIONS(4594), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(5182), 41, + ACTIONS(4596), 46, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -330997,9 +335162,24 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -331007,38 +335187,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - [2078] = 7, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [1930] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(945), 1, - anon_sym_EQ, - STATE(2326), 1, + STATE(2324), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 14, - anon_sym_RBRACK, + ACTIONS(5237), 14, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -331050,27 +335216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, + anon_sym_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(951), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 24, + ACTIONS(5235), 42, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -331083,7 +335232,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -331093,17 +335244,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, anon_sym_do, - [2153] = 5, + [2001] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2327), 1, + STATE(2325), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4561), 9, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -331113,7 +335280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4563), 47, + ACTIONS(4600), 47, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -331161,19 +335328,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [2224] = 8, + [2072] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(771), 1, + ACTIONS(703), 1, anon_sym_EQ, - ACTIONS(5409), 1, + ACTIONS(5444), 1, anon_sym_COLON2, - STATE(2328), 1, + STATE(2326), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -331187,7 +335354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(777), 17, + ACTIONS(731), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -331205,7 +335372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 24, + ACTIONS(135), 24, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -331230,17 +335397,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_then, - [2301] = 7, + [2149] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(901), 1, + STATE(2327), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5446), 21, + sym_nil, + sym_true, + sym_false, + aux_sym_integer_token2, + anon_sym_with, + anon_sym_yield, + anon_sym_typeof, + anon_sym_sizeof, + anon_sym_instance_sizeof, + anon_sym_offsetof, + anon_sym___LINE__, + anon_sym___END_LINE__, + anon_sym___FILE__, + anon_sym___DIR__, + sym_identifier, + sym_self, + anon_sym_begin, + anon_sym_while, + anon_sym_until, + anon_sym_case, + anon_sym_select, + ACTIONS(5448), 35, + sym__start_of_hash_or_tuple, + sym__start_of_named_tuple, + sym_unary_plus, + sym_unary_minus, + sym_unary_wrapping_plus, + sym_unary_wrapping_minus, + sym__beginless_range_operator, + sym__regex_start, + sym__regular_if_keyword, + sym__regular_unless_keyword, + sym__string_literal_start, + sym__string_percent_literal_start, + sym__command_percent_literal_start, + sym__string_array_percent_literal_start, + sym__symbol_array_percent_literal_start, + sym__regex_percent_literal_start, + sym_heredoc_start, + anon_sym_LPAREN, + aux_sym_float_token2, + anon_sym_SQUOTE, + sym_operator_symbol, + sym_unquoted_symbol, + anon_sym_COLON_DQUOTE, + anon_sym_BQUOTE, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_TILDE, + sym__constant_segment, + anon_sym_COLON_COLON, + sym_special_variable, + sym_identifier_method_call, + sym_instance_var, + sym_class_var, + [2220] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1083), 1, anon_sym_EQ, - STATE(2329), 1, + ACTIONS(5450), 1, + anon_sym_COLON2, + STATE(2328), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -331254,7 +335489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(915), 17, + ACTIONS(1089), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -331272,9 +335507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 25, + ACTIONS(135), 24, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -331285,9 +335521,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -331298,15 +335532,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_do, - [2376] = 5, + [2297] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2330), 1, + ACTIONS(807), 1, + anon_sym_EQ, + STATE(2329), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5184), 14, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -331318,10 +335554,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(5182), 42, + ACTIONS(821), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 25, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -331346,115 +335599,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, anon_sym_do, - [2447] = 7, + [2372] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5411), 1, - anon_sym_COLON_COLON, - STATE(2331), 1, + STATE(2330), 1, sym_heredoc_body, - STATE(2344), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4557), 9, + ACTIONS(5237), 15, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4559), 44, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [2521] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5411), 1, - anon_sym_COLON_COLON, - STATE(2332), 1, - sym_heredoc_body, - STATE(2348), 1, - aux_sym_constant_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4547), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4549), 44, - sym__line_break, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(5235), 41, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -331465,24 +335636,9 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -331490,25 +335646,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [2595] = 7, + anon_sym_RBRACK_QMARK, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_do, + [2443] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1119), 1, + ACTIONS(959), 1, anon_sym_EQ, - STATE(2333), 1, + STATE(2331), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 14, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -331522,7 +335691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1123), 17, + ACTIONS(965), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -331540,7 +335709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 24, + ACTIONS(135), 24, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -331563,54 +335732,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_COLON2, + anon_sym_RBRACK_QMARK, anon_sym_do, - [2669] = 7, + [2518] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1067), 1, - anon_sym_EQ, - STATE(2334), 1, + ACTIONS(5452), 1, + anon_sym_COLON_COLON, + STATE(2332), 1, sym_heredoc_body, + STATE(2341), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(4594), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1073), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 24, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4596), 44, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -331620,9 +335768,24 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -331630,29 +335793,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_do, - [2743] = 11, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [2592] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5413), 1, + ACTIONS(5454), 1, anon_sym_LBRACK, - ACTIONS(5415), 1, + ACTIONS(5456), 1, anon_sym_STAR, - ACTIONS(5417), 1, + ACTIONS(5458), 1, anon_sym_PIPE, - ACTIONS(5419), 1, + ACTIONS(5460), 1, anon_sym_DOT, - ACTIONS(5421), 1, + ACTIONS(5462), 1, anon_sym_QMARK, - STATE(2335), 1, + STATE(2333), 1, sym_heredoc_body, - STATE(2352), 1, + STATE(2346), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(4638), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -331660,7 +335829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4609), 42, + ACTIONS(4640), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -331703,17 +335872,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [2825] = 6, + [2674] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2336), 1, + ACTIONS(5452), 1, + anon_sym_COLON_COLON, + STATE(2334), 1, sym_heredoc_body, - STATE(2352), 1, - aux_sym_union_type_repeat1, + STATE(2343), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(4594), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -331723,9 +335894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 45, + ACTIONS(4596), 44, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -331761,25 +335931,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [2897] = 7, + [2748] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(771), 1, + ACTIONS(877), 1, anon_sym_EQ, - STATE(2337), 1, + ACTIONS(5464), 1, + anon_sym_COLON2, + STATE(2335), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 14, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -331793,7 +335966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(777), 17, + ACTIONS(905), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -331811,8 +335984,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 24, + ACTIONS(135), 22, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + [2824] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2336), 1, + sym_heredoc_body, + STATE(2346), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4627), 9, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4629), 45, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -331823,10 +336040,24 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -331835,21 +336066,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_then, - [2971] = 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [2896] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(815), 1, - anon_sym_EQ, - ACTIONS(5423), 1, - anon_sym_COLON2, - STATE(2338), 1, + STATE(2337), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 14, - anon_sym_RBRACK, + ACTIONS(5237), 14, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -331861,27 +336093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, + anon_sym_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(843), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 22, + ACTIONS(5235), 41, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -331893,6 +336109,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_BANG_EQ, @@ -331903,28 +336120,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - [3047] = 11, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_then, + [2966] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5413), 1, + ACTIONS(5454), 1, anon_sym_LBRACK, - ACTIONS(5415), 1, + ACTIONS(5456), 1, anon_sym_STAR, - ACTIONS(5417), 1, + ACTIONS(5458), 1, anon_sym_PIPE, - ACTIONS(5419), 1, + ACTIONS(5460), 1, anon_sym_DOT, - ACTIONS(5421), 1, + ACTIONS(5462), 1, anon_sym_QMARK, - STATE(2339), 1, + STATE(2338), 1, sym_heredoc_body, - STATE(2352), 1, + STATE(2346), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -331932,7 +336166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4570), 42, + ACTIONS(4607), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -331975,17 +336209,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [3129] = 7, + [3048] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1119), 1, + ACTIONS(1083), 1, anon_sym_EQ, - STATE(2340), 1, + STATE(2339), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -331999,7 +336233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1123), 17, + ACTIONS(1089), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -332017,9 +336251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 24, + ACTIONS(135), 24, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -332040,39 +336275,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_COLON2, anon_sym_do, - [3203] = 11, + [3122] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5413), 1, - anon_sym_LBRACK, - ACTIONS(5415), 1, - anon_sym_STAR, - ACTIONS(5417), 1, + ACTIONS(703), 1, + anon_sym_EQ, + STATE(2340), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(157), 13, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(5419), 1, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5421), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(731), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 24, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - STATE(2341), 1, - sym_heredoc_body, - STATE(2352), 1, - aux_sym_union_type_repeat1, + anon_sym_then, + [3196] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5466), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 7, + STATE(2341), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4595), 42, + ACTIONS(4600), 44, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -332092,10 +336385,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -332106,14 +336401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [3285] = 5, + [3268] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(2342), 1, @@ -332121,7 +336417,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5184), 14, + ACTIONS(5237), 14, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -332136,9 +336432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(5182), 41, - sym__line_break, + ACTIONS(5235), 41, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -332149,7 +336446,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_BANG_EQ, @@ -332177,30 +336473,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - anon_sym_then, - [3355] = 6, + anon_sym_do, + [3338] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5425), 1, - anon_sym_PIPE, + ACTIONS(5452), 1, + anon_sym_COLON_COLON, + STATE(2341), 1, + aux_sym_constant_repeat1, + STATE(2343), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2343), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(4590), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 45, + ACTIONS(4592), 44, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -332236,26 +336533,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [3427] = 6, + [3412] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5428), 1, + ACTIONS(5452), 1, anon_sym_COLON_COLON, + STATE(2332), 1, + aux_sym_constant_repeat1, + STATE(2344), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2344), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4561), 9, + ACTIONS(4584), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -332265,7 +336563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4563), 44, + ACTIONS(4586), 44, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -332310,30 +336608,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [3499] = 7, + [3486] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5411), 1, - anon_sym_COLON_COLON, - STATE(2331), 1, - aux_sym_constant_repeat1, + ACTIONS(1135), 1, + anon_sym_EQ, STATE(2345), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 9, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 44, - sym__line_break, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1139), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 24, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -332344,24 +336662,9 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -332369,35 +336672,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [3573] = 6, + anon_sym_COLON2, + anon_sym_do, + [3560] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5431), 1, - anon_sym_LPAREN2, + ACTIONS(5458), 1, + anon_sym_PIPE, STATE(2346), 1, sym_heredoc_body, + STATE(2347), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4599), 45, + ACTIONS(4636), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -332443,98 +336742,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [3645] = 8, + [3634] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(933), 1, - anon_sym_EQ, - ACTIONS(5433), 1, - anon_sym_COLON2, - STATE(2347), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(155), 13, - anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(5469), 1, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(937), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 23, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - [3721] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5411), 1, - anon_sym_COLON_COLON, - STATE(2344), 1, - aux_sym_constant_repeat1, - STATE(2348), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 9, + STATE(2347), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4555), 44, + ACTIONS(4629), 45, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -332570,35 +336800,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [3795] = 11, + [3706] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5413), 1, + ACTIONS(5454), 1, anon_sym_LBRACK, - ACTIONS(5415), 1, + ACTIONS(5456), 1, anon_sym_STAR, - ACTIONS(5417), 1, + ACTIONS(5458), 1, anon_sym_PIPE, - ACTIONS(5419), 1, + ACTIONS(5460), 1, anon_sym_DOT, - ACTIONS(5421), 1, + ACTIONS(5462), 1, anon_sym_QMARK, - STATE(2349), 1, - sym_heredoc_body, - STATE(2352), 1, + STATE(2346), 1, aux_sym_union_type_repeat1, + STATE(2348), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -332606,7 +336836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4605), 42, + ACTIONS(4625), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -332649,27 +336879,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [3877] = 11, + [3788] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5413), 1, + ACTIONS(5454), 1, anon_sym_LBRACK, - ACTIONS(5415), 1, + ACTIONS(5456), 1, anon_sym_STAR, - ACTIONS(5417), 1, + ACTIONS(5458), 1, anon_sym_PIPE, - ACTIONS(5419), 1, + ACTIONS(5460), 1, anon_sym_DOT, - ACTIONS(5421), 1, + ACTIONS(5462), 1, anon_sym_QMARK, - STATE(2350), 1, - sym_heredoc_body, - STATE(2352), 1, + STATE(2346), 1, aux_sym_union_type_repeat1, + STATE(2349), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4611), 7, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -332677,7 +336907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4613), 42, + ACTIONS(4650), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -332720,15 +336950,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [3959] = 5, + [3870] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2351), 1, + STATE(2350), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5435), 20, + ACTIONS(5472), 21, sym_nil, sym_true, sym_false, @@ -332749,7 +336979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_until, anon_sym_case, - ACTIONS(5437), 35, + anon_sym_select, + ACTIONS(5474), 34, sym__start_of_hash_or_tuple, sym__start_of_named_tuple, sym_unary_plus, @@ -332776,7 +337007,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LBRACK, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_BANG, anon_sym_TILDE, sym__constant_segment, @@ -332785,28 +337015,27 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier_method_call, sym_instance_var, sym_class_var, - [4029] = 7, + [3940] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5417), 1, - anon_sym_PIPE, - STATE(2343), 1, - aux_sym_union_type_repeat1, - STATE(2352), 1, + ACTIONS(5476), 1, + anon_sym_LPAREN2, + STATE(2351), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4584), 45, + ACTIONS(4644), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -332852,15 +337081,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [4103] = 5, + [4012] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2353), 1, + ACTIONS(1135), 1, + anon_sym_EQ, + STATE(2352), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5184), 14, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -332872,13 +337103,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(5182), 41, + ACTIONS(1139), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 24, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -332899,6 +337146,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_COLON2, + anon_sym_do, + [4086] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(839), 1, + anon_sym_EQ, + ACTIONS(5478), 1, + anon_sym_COLON2, + STATE(2353), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(157), 13, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(843), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -332916,28 +337192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - anon_sym_do, - [4173] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2354), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4659), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4661), 45, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(135), 23, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -332948,24 +337203,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -332974,34 +337216,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [4242] = 11, + [4162] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5413), 1, + ACTIONS(5454), 1, anon_sym_LBRACK, - ACTIONS(5415), 1, + ACTIONS(5456), 1, anon_sym_STAR, - ACTIONS(5419), 1, + ACTIONS(5458), 1, + anon_sym_PIPE, + ACTIONS(5460), 1, anon_sym_DOT, - ACTIONS(5421), 1, + ACTIONS(5462), 1, anon_sym_QMARK, - ACTIONS(5439), 1, - anon_sym_PIPE, - STATE(2355), 1, - sym_heredoc_body, - STATE(2385), 1, + STATE(2346), 1, aux_sym_union_type_repeat1, + STATE(2354), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(4619), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -333009,7 +337244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4570), 41, + ACTIONS(4621), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -333033,6 +337268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -333051,25 +337287,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [4323] = 5, + [4244] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(877), 1, + anon_sym_EQ, + STATE(2355), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(157), 14, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(905), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 22, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + [4317] = 8, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1001), 1, + anon_sym_EQ, + ACTIONS(5480), 1, + anon_sym_COLON2, STATE(2356), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4631), 9, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1029), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 22, + sym__start_of_index_operator, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + [4392] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5454), 1, + anon_sym_LBRACK, + ACTIONS(5456), 1, + anon_sym_STAR, + ACTIONS(5460), 1, + anon_sym_DOT, + ACTIONS(5462), 1, + anon_sym_QMARK, + ACTIONS(5482), 1, + anon_sym_PIPE, + STATE(2357), 1, + sym_heredoc_body, + STATE(2372), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4623), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4633), 45, + ACTIONS(4625), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -333091,12 +337470,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -333107,7 +337483,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, @@ -333115,30 +337490,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [4392] = 8, + [4473] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1183), 1, - anon_sym_COLON, - ACTIONS(5403), 1, - anon_sym_COLON_COLON, - STATE(2321), 1, - aux_sym_constant_repeat1, - STATE(2357), 1, + ACTIONS(5454), 1, + anon_sym_LBRACK, + ACTIONS(5456), 1, + anon_sym_STAR, + ACTIONS(5460), 1, + anon_sym_DOT, + ACTIONS(5462), 1, + anon_sym_QMARK, + ACTIONS(5482), 1, + anon_sym_PIPE, + STATE(2358), 1, sym_heredoc_body, + STATE(2372), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 8, + ACTIONS(4668), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(4549), 43, + anon_sym_EQ, + ACTIONS(4670), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -333173,8 +337553,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, @@ -333182,27 +337560,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [4467] = 11, + [4554] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5413), 1, + ACTIONS(5454), 1, anon_sym_LBRACK, - ACTIONS(5415), 1, + ACTIONS(5456), 1, anon_sym_STAR, - ACTIONS(5419), 1, + ACTIONS(5460), 1, anon_sym_DOT, - ACTIONS(5421), 1, + ACTIONS(5462), 1, anon_sym_QMARK, - ACTIONS(5439), 1, + ACTIONS(5482), 1, anon_sym_PIPE, - STATE(2358), 1, + STATE(2359), 1, sym_heredoc_body, - STATE(2385), 1, + STATE(2372), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -333210,7 +337588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4605), 41, + ACTIONS(4607), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -333252,25 +337630,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [4548] = 5, + [4635] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2359), 1, + ACTIONS(5454), 1, + anon_sym_LBRACK, + ACTIONS(5456), 1, + anon_sym_STAR, + ACTIONS(5460), 1, + anon_sym_DOT, + ACTIONS(5462), 1, + anon_sym_QMARK, + ACTIONS(5482), 1, + anon_sym_PIPE, + STATE(2360), 1, sym_heredoc_body, + STATE(2372), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4671), 9, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4673), 45, + ACTIONS(4650), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -333292,12 +337680,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -333308,7 +337693,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, @@ -333316,17 +337700,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [4617] = 6, + [4716] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2360), 1, + STATE(2361), 1, sym_heredoc_body, - STATE(2385), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(4716), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -333336,7 +337718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 44, + ACTIONS(4718), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -333361,6 +337743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, anon_sym_CARET, @@ -333381,25 +337764,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [4688] = 5, + [4785] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2361), 1, + ACTIONS(5454), 1, + anon_sym_LBRACK, + ACTIONS(5456), 1, + anon_sym_STAR, + ACTIONS(5460), 1, + anon_sym_DOT, + ACTIONS(5462), 1, + anon_sym_QMARK, + ACTIONS(5482), 1, + anon_sym_PIPE, + STATE(2362), 1, sym_heredoc_body, + STATE(2372), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4655), 9, + ACTIONS(4684), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4657), 45, + ACTIONS(4686), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -333421,12 +337814,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -333437,7 +337827,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, @@ -333445,15 +337834,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [4757] = 5, + [4866] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2362), 1, + ACTIONS(233), 1, + sym__string_literal_start, + ACTIONS(5484), 1, + anon_sym_COLON, + STATE(2363), 1, sym_heredoc_body, + STATE(2422), 1, + aux_sym_chained_string_repeat1, + STATE(2516), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4635), 9, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -333462,8 +337859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4637), 45, + ACTIONS(135), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -333485,12 +337881,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -333509,31 +337902,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [4826] = 5, + [4943] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2363), 1, + STATE(2364), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5184), 15, - anon_sym_RBRACK, + ACTIONS(4692), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(5182), 39, + ACTIONS(4694), 45, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -333544,9 +337933,24 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -333555,33 +337959,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - [4895] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [5012] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2364), 1, + STATE(2365), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4643), 9, + ACTIONS(4652), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -333591,7 +337984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4645), 45, + ACTIONS(4654), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -333637,30 +338030,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [4964] = 5, + [5081] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2365), 1, + STATE(2366), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5184), 14, + ACTIONS(4712), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(5182), 40, + ACTIONS(4714), 45, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -333671,11 +338061,24 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -333684,32 +338087,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - [5033] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [5150] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2366), 1, + STATE(2367), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4627), 9, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -333719,9 +338112,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4629), 45, + ACTIONS(4600), 45, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -333757,23 +338149,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [5102] = 5, + [5219] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2367), 1, + STATE(2368), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(4660), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -333783,7 +338176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4599), 45, + ACTIONS(4662), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -333829,15 +338222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [5171] = 5, + [5288] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2368), 1, + STATE(2369), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4623), 9, + ACTIONS(4696), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -333847,7 +338240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4625), 45, + ACTIONS(4698), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -333893,53 +338286,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [5240] = 8, + [5357] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(987), 1, - anon_sym_EQ, - ACTIONS(5441), 1, - anon_sym_COLON2, - STATE(2369), 1, + STATE(2370), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(4720), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1015), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 22, + anon_sym_EQ, + ACTIONS(4722), 45, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -333949,9 +338317,24 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -333960,50 +338343,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [5315] = 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [5426] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(815), 1, - anon_sym_EQ, - STATE(2370), 1, + STATE(2371), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 14, - anon_sym_RBRACK, + ACTIONS(4664), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(843), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 22, + anon_sym_EQ, + ACTIONS(4666), 45, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -334014,9 +338381,24 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -334025,50 +338407,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - [5388] = 7, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [5495] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(933), 1, - anon_sym_EQ, - STATE(2371), 1, + ACTIONS(5482), 1, + anon_sym_PIPE, + STATE(2372), 1, sym_heredoc_body, + STATE(2373), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(937), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 23, + anon_sym_EQ, + ACTIONS(4636), 44, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -334079,11 +338448,23 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -334092,26 +338473,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [5461] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [5568] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2372), 1, - sym_heredoc_body, + ACTIONS(5486), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4561), 9, + STATE(2373), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4563), 45, + ACTIONS(4629), 44, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -334134,7 +338525,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, anon_sym_CARET, @@ -334147,32 +338537,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [5530] = 9, + [5639] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(227), 1, - sym__string_literal_start, - ACTIONS(5443), 1, - anon_sym_COLON, - STATE(2373), 1, + STATE(2374), 1, sym_heredoc_body, - STATE(2412), 1, - aux_sym_chained_string_repeat1, - STATE(2509), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(4656), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -334181,7 +338562,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 42, + anon_sym_EQ, + ACTIONS(4658), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -334203,9 +338585,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -334224,15 +338609,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [5607] = 5, + [5708] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2374), 1, + STATE(2375), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4651), 9, + ACTIONS(4704), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -334242,7 +338627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4653), 45, + ACTIONS(4706), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -334288,15 +338673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [5676] = 5, + [5777] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2375), 1, + STATE(2376), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4615), 9, + ACTIONS(4688), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -334306,7 +338691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4617), 45, + ACTIONS(4690), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -334352,19 +338737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [5745] = 8, + [5846] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1129), 1, + ACTIONS(1145), 1, anon_sym_EQ, - ACTIONS(5445), 1, + ACTIONS(5489), 1, anon_sym_COLON2, - STATE(2376), 1, + STATE(2377), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -334378,7 +338763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1131), 17, + ACTIONS(1147), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -334396,7 +338781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 22, + ACTIONS(135), 22, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -334419,15 +338804,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [5820] = 5, + [5921] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2377), 1, + STATE(2378), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4663), 9, + ACTIONS(4672), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -334437,7 +338822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4665), 45, + ACTIONS(4674), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -334483,35 +338868,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [5889] = 11, + [5990] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5413), 1, - anon_sym_LBRACK, - ACTIONS(5415), 1, - anon_sym_STAR, - ACTIONS(5419), 1, - anon_sym_DOT, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5439), 1, - anon_sym_PIPE, - STATE(2378), 1, + STATE(2379), 1, sym_heredoc_body, - STATE(2385), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4639), 7, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4641), 41, + ACTIONS(4644), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -334533,9 +338908,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -334546,6 +338924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, @@ -334553,71 +338932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [5970] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2379), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5447), 20, - sym_nil, - sym_true, - sym_false, - aux_sym_integer_token2, - anon_sym_with, - anon_sym_yield, - anon_sym_typeof, - anon_sym_sizeof, - anon_sym_instance_sizeof, - anon_sym_offsetof, - anon_sym___LINE__, - anon_sym___END_LINE__, - anon_sym___FILE__, - anon_sym___DIR__, - sym_identifier, - sym_self, - anon_sym_begin, - anon_sym_while, - anon_sym_until, - anon_sym_case, - ACTIONS(5449), 34, - sym__start_of_hash_or_tuple, - sym__start_of_named_tuple, - sym_unary_plus, - sym_unary_minus, - sym_unary_wrapping_plus, - sym_unary_wrapping_minus, - sym__beginless_range_operator, - sym__regex_start, - sym__regular_if_keyword, - sym__regular_unless_keyword, - sym__string_literal_start, - sym__string_percent_literal_start, - sym__command_percent_literal_start, - sym__string_array_percent_literal_start, - sym__symbol_array_percent_literal_start, - sym__regex_percent_literal_start, - sym_heredoc_start, - anon_sym_LPAREN, - aux_sym_float_token2, - anon_sym_SQUOTE, - sym_operator_symbol, - sym_unquoted_symbol, - anon_sym_COLON_DQUOTE, - anon_sym_BQUOTE, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_BANG, - anon_sym_TILDE, - sym__constant_segment, - anon_sym_COLON_COLON, - sym_special_variable, - sym_identifier_method_call, - sym_instance_var, - sym_class_var, - [6039] = 5, + [6059] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(2380), 1, @@ -334625,19 +338940,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4675), 9, + ACTIONS(5237), 15, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4677), 45, - sym__line_break, - sym__start_of_brace_block, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(5235), 39, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -334648,24 +338967,9 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -334674,14 +338978,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [6108] = 5, + anon_sym_RBRACK_QMARK, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + [6128] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(2381), 1, @@ -334689,7 +339004,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4679), 9, + ACTIONS(4708), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -334699,7 +339014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4681), 45, + ACTIONS(4710), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -334745,15 +339060,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [6177] = 5, + [6197] = 8, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1197), 1, + anon_sym_COLON, + ACTIONS(5440), 1, + anon_sym_COLON_COLON, + STATE(2321), 1, + aux_sym_constant_repeat1, STATE(2382), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4667), 9, + ACTIONS(4584), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -334762,8 +339083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4669), 45, + ACTIONS(4586), 43, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -334785,12 +339105,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -334801,6 +339118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -334809,7 +339127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [6246] = 5, + [6272] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(2383), 1, @@ -334817,7 +339135,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4619), 9, + ACTIONS(4700), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -334827,7 +339145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4621), 45, + ACTIONS(4702), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -334873,35 +339191,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [6315] = 11, + [6341] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5413), 1, - anon_sym_LBRACK, - ACTIONS(5415), 1, - anon_sym_STAR, - ACTIONS(5419), 1, - anon_sym_DOT, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5439), 1, - anon_sym_PIPE, + STATE(2372), 1, + aux_sym_union_type_repeat1, STATE(2384), 1, sym_heredoc_body, - STATE(2385), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4683), 7, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4685), 41, + ACTIONS(4629), 44, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -334923,9 +339233,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -334936,6 +339248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, @@ -334943,30 +339256,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [6396] = 7, + [6412] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5439), 1, - anon_sym_PIPE, STATE(2385), 1, sym_heredoc_body, - STATE(2386), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(5237), 14, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4584), 44, - sym__line_break, - sym__start_of_brace_block, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(5235), 40, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -334977,23 +339290,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -335002,34 +339303,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [6469] = 6, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + [6481] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5451), 1, - anon_sym_PIPE, + STATE(2386), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2386), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(4680), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 44, + ACTIONS(4682), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -335054,6 +339363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, anon_sym_CARET, @@ -335074,35 +339384,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [6540] = 11, + [6550] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5413), 1, - anon_sym_LBRACK, - ACTIONS(5415), 1, - anon_sym_STAR, - ACTIONS(5419), 1, + ACTIONS(839), 1, + anon_sym_EQ, + STATE(2387), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(157), 13, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5421), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(843), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 23, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(5439), 1, - anon_sym_PIPE, - STATE(2385), 1, - aux_sym_union_type_repeat1, - STATE(2387), 1, + [6623] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2388), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(4676), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4609), 41, + ACTIONS(4678), 45, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -335124,9 +339490,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -335137,6 +339506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, @@ -335144,27 +339514,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [6621] = 5, + [6692] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2388), 1, - sym_heredoc_body, + ACTIONS(5491), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4647), 9, + STATE(2389), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4649), 45, + ACTIONS(4629), 43, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -335203,26 +339574,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [6690] = 9, + [6762] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, - anon_sym_COMMA, - ACTIONS(5396), 1, - anon_sym_COLON2, - ACTIONS(5454), 1, + ACTIONS(1175), 1, anon_sym_EQ, - STATE(2389), 1, + ACTIONS(5494), 1, + anon_sym_COLON2, + STATE(2390), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -335236,7 +339604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(659), 17, + ACTIONS(1177), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -335254,7 +339622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 20, + ACTIONS(135), 21, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -335266,6 +339634,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -335275,28 +339644,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [6766] = 6, + [6836] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5456), 1, - anon_sym_PIPE, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(5499), 1, + anon_sym_DASH_GT, + STATE(2391), 1, + sym_heredoc_body, + STATE(10011), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2390), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 43, + ACTIONS(4785), 41, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -335316,12 +339690,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -335335,21 +339705,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [6836] = 6, + [6910] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5459), 1, - anon_sym_LPAREN2, - STATE(2391), 1, - sym_heredoc_body, + ACTIONS(5501), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + STATE(2392), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -335359,8 +339731,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4599), 43, + ACTIONS(4600), 42, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -335373,13 +339746,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -335396,28 +339768,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [6906] = 8, + [6980] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(227), 1, - sym__string_literal_start, - STATE(2392), 1, + ACTIONS(1155), 1, + anon_sym_EQ, + ACTIONS(5504), 1, + anon_sym_COLON2, + STATE(2393), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(157), 13, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1157), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 21, + sym__start_of_index_operator, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_DOT_DOT_DOT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + [7054] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5506), 1, + anon_sym_LPAREN2, + STATE(2394), 1, sym_heredoc_body, - STATE(2412), 1, - aux_sym_chained_string_repeat1, - STATE(2509), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -335426,9 +339859,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 42, + anon_sym_EQ, + ACTIONS(4644), 43, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -335448,9 +339881,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -335464,32 +339900,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [6980] = 11, + [7124] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5461), 1, + ACTIONS(5508), 1, anon_sym_LBRACK, - ACTIONS(5463), 1, + ACTIONS(5510), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(5512), 1, anon_sym_PIPE, - ACTIONS(5467), 1, + ACTIONS(5514), 1, anon_sym_DOT, - ACTIONS(5469), 1, + ACTIONS(5516), 1, anon_sym_QMARK, - STATE(2393), 1, + STATE(2395), 1, sym_heredoc_body, - STATE(2415), 1, + STATE(2411), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(4638), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -335497,7 +339932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4609), 40, + ACTIONS(4640), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -335538,36 +339973,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [7060] = 11, + [7204] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5461), 1, - anon_sym_LBRACK, - ACTIONS(5463), 1, - anon_sym_STAR, - ACTIONS(5465), 1, - anon_sym_PIPE, - ACTIONS(5467), 1, - anon_sym_DOT, - ACTIONS(5469), 1, - anon_sym_QMARK, - STATE(2394), 1, + ACTIONS(5518), 1, + anon_sym_COLON_COLON, + STATE(2392), 1, + aux_sym_constant_repeat1, + STATE(2396), 1, sym_heredoc_body, - STATE(2415), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 7, + ACTIONS(4590), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4595), 40, + ACTIONS(4592), 42, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -335580,17 +340010,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -335601,42 +340032,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [7140] = 11, + [7276] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5461), 1, - anon_sym_LBRACK, - ACTIONS(5463), 1, - anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(667), 1, + anon_sym_EQ, + ACTIONS(1167), 1, + anon_sym_COMMA, + ACTIONS(5431), 1, + anon_sym_COLON2, + STATE(2397), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(157), 13, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(5467), 1, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5469), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(669), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 20, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_DOT_DOT_DOT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - STATE(2395), 1, + [7352] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(233), 1, + sym__string_literal_start, + STATE(2398), 1, sym_heredoc_body, - STATE(2415), 1, - aux_sym_union_type_repeat1, + STATE(2422), 1, + aux_sym_chained_string_repeat1, + STATE(2516), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 40, + anon_sym_DOT, + ACTIONS(135), 42, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -335658,7 +340152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -335670,27 +340163,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [7220] = 9, + [7426] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, + ACTIONS(263), 1, anon_sym_COMMA, - ACTIONS(5396), 1, - anon_sym_COLON2, - ACTIONS(5471), 1, + ACTIONS(667), 1, anon_sym_EQ, - STATE(2396), 1, + ACTIONS(5431), 1, + anon_sym_COLON2, + STATE(2399), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -335704,7 +340199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(659), 17, + ACTIONS(669), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -335722,7 +340217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 20, + ACTIONS(135), 20, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -335743,17 +340238,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [7296] = 7, + [7502] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1089), 1, + ACTIONS(263), 1, + anon_sym_COMMA, + ACTIONS(5431), 1, + anon_sym_COLON2, + ACTIONS(5520), 1, anon_sym_EQ, - STATE(2397), 1, + STATE(2400), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -335767,7 +340266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1103), 17, + ACTIONS(669), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -335785,7 +340284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 22, + ACTIONS(135), 20, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -335797,7 +340296,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -335807,97 +340305,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_COLON2, - [7368] = 7, + [7578] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5473), 1, - anon_sym_COLON_COLON, - STATE(2398), 1, + ACTIONS(263), 1, + anon_sym_COMMA, + ACTIONS(5431), 1, + anon_sym_COLON2, + ACTIONS(5522), 1, + anon_sym_EQ, + STATE(2401), 1, sym_heredoc_body, - STATE(2417), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 9, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [7440] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5473), 1, - anon_sym_COLON_COLON, - STATE(2399), 1, - sym_heredoc_body, - STATE(2418), 1, - aux_sym_constant_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4553), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 42, - sym__line_break, - sym__start_of_brace_block, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(669), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 20, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -335908,23 +340362,8 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -335932,25 +340371,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [7512] = 8, + [7654] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1159), 1, - anon_sym_EQ, - ACTIONS(5475), 1, + ACTIONS(263), 1, + anon_sym_COMMA, + ACTIONS(5431), 1, anon_sym_COLON2, - STATE(2400), 1, + ACTIONS(5524), 1, + anon_sym_EQ, + STATE(2402), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -335964,7 +340400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1161), 17, + ACTIONS(669), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -335982,9 +340418,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 21, + ACTIONS(135), 20, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -336004,31 +340439,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [7586] = 7, + [7730] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5473), 1, - anon_sym_COLON_COLON, - STATE(2398), 1, - aux_sym_constant_repeat1, - STATE(2401), 1, + ACTIONS(263), 1, + anon_sym_COMMA, + ACTIONS(5431), 1, + anon_sym_COLON2, + ACTIONS(5526), 1, + anon_sym_EQ, + STATE(2403), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 9, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4549), 42, - sym__line_break, - sym__start_of_brace_block, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(669), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 20, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -336039,23 +340496,8 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -336063,23 +340505,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [7658] = 7, + [7806] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1129), 1, + ACTIONS(1145), 1, anon_sym_EQ, - STATE(2402), 1, + STATE(2404), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -336093,7 +340530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1131), 17, + ACTIONS(1147), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -336111,7 +340548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 22, + ACTIONS(135), 22, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -336134,21 +340571,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [7730] = 9, + [7878] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1139), 1, + ACTIONS(1167), 1, anon_sym_COMMA, - ACTIONS(1141), 1, + ACTIONS(1169), 1, anon_sym_EQ, - ACTIONS(5396), 1, + ACTIONS(5431), 1, anon_sym_COLON2, - STATE(2403), 1, + STATE(2405), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -336162,7 +340599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(659), 17, + ACTIONS(669), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -336180,7 +340617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 20, + ACTIONS(135), 20, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -336201,32 +340638,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [7806] = 5, + [7954] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2404), 1, + ACTIONS(5518), 1, + anon_sym_COLON_COLON, + STATE(2392), 1, + aux_sym_constant_repeat1, + STATE(2406), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5184), 14, + ACTIONS(4594), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(5182), 39, + ACTIONS(4596), 42, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -336236,9 +340673,23 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -336246,71 +340697,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - [7874] = 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + [8026] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, - anon_sym_COMMA, - ACTIONS(5396), 1, - anon_sym_COLON2, - ACTIONS(5477), 1, - anon_sym_EQ, - STATE(2405), 1, + ACTIONS(5518), 1, + anon_sym_COLON_COLON, + STATE(2396), 1, + aux_sym_constant_repeat1, + STATE(2407), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(4594), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(659), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 20, + anon_sym_EQ, + ACTIONS(4596), 42, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -336321,8 +340738,23 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -336330,54 +340762,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, - [7950] = 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + [8098] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, - anon_sym_COMMA, - ACTIONS(657), 1, - anon_sym_EQ, - ACTIONS(5396), 1, - anon_sym_COLON2, - STATE(2406), 1, + ACTIONS(5508), 1, + anon_sym_LBRACK, + ACTIONS(5510), 1, + anon_sym_STAR, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(5514), 1, + anon_sym_DOT, + ACTIONS(5516), 1, + anon_sym_QMARK, + STATE(2408), 1, sym_heredoc_body, + STATE(2411), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(659), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 20, + anon_sym_EQ, + ACTIONS(4650), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -336388,8 +340808,22 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -336397,28 +340831,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - [8026] = 11, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [8178] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5461), 1, + ACTIONS(5508), 1, anon_sym_LBRACK, - ACTIONS(5463), 1, + ACTIONS(5510), 1, anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(5512), 1, anon_sym_PIPE, - ACTIONS(5467), 1, + ACTIONS(5514), 1, anon_sym_DOT, - ACTIONS(5469), 1, + ACTIONS(5516), 1, anon_sym_QMARK, - STATE(2407), 1, + STATE(2409), 1, sym_heredoc_body, - STATE(2415), 1, + STATE(2411), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(4619), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -336426,7 +340865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4605), 40, + ACTIONS(4621), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -336467,21 +340906,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [8106] = 9, + [8258] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, - anon_sym_COMMA, - ACTIONS(5396), 1, - anon_sym_COLON2, - ACTIONS(5479), 1, + ACTIONS(1001), 1, anon_sym_EQ, - STATE(2408), 1, + STATE(2410), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -336495,7 +340930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(659), 17, + ACTIONS(1029), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -336513,8 +340948,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 20, + ACTIONS(135), 22, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -336525,6 +340961,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -336534,35 +340971,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [8182] = 11, + [8330] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5461), 1, - anon_sym_LBRACK, - ACTIONS(5463), 1, - anon_sym_STAR, - ACTIONS(5465), 1, + ACTIONS(5512), 1, anon_sym_PIPE, - ACTIONS(5467), 1, - anon_sym_DOT, - ACTIONS(5469), 1, - anon_sym_QMARK, - STATE(2409), 1, - sym_heredoc_body, - STATE(2415), 1, + STATE(2389), 1, aux_sym_union_type_repeat1, + STATE(2411), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4611), 7, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4613), 40, + ACTIONS(4636), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -336583,10 +341013,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -336597,27 +341029,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [8262] = 8, + [8402] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(5484), 1, - anon_sym_DASH_GT, - STATE(2410), 1, + ACTIONS(5518), 1, + anon_sym_COLON_COLON, + STATE(2406), 1, + aux_sym_constant_repeat1, + STATE(2412), 1, sym_heredoc_body, - STATE(10318), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(4584), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -336627,7 +341058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4745), 41, + ACTIONS(4586), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -336642,15 +341073,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -336661,61 +341095,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [8336] = 9, + [8474] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, - anon_sym_COMMA, - ACTIONS(5396), 1, - anon_sym_COLON2, - ACTIONS(5486), 1, - anon_sym_EQ, STATE(2411), 1, + aux_sym_union_type_repeat1, + STATE(2413), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(659), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 20, + anon_sym_EQ, + ACTIONS(4629), 43, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -336726,8 +341133,24 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -336736,32 +341159,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [8412] = 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [8544] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(227), 1, - sym__string_literal_start, - STATE(2412), 1, + ACTIONS(263), 1, + anon_sym_COMMA, + ACTIONS(5431), 1, + anon_sym_COLON2, + ACTIONS(5528), 1, + anon_sym_EQ, + STATE(2414), 1, sym_heredoc_body, - STATE(2421), 1, - aux_sym_chained_string_repeat1, - STATE(2509), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5490), 8, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5488), 42, - sym__line_break, - sym__start_of_brace_block, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(669), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 20, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -336772,21 +341222,8 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -336795,24 +341232,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [8486] = 7, + [8620] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(987), 1, + ACTIONS(263), 1, + anon_sym_COMMA, + ACTIONS(5431), 1, + anon_sym_COLON2, + ACTIONS(5530), 1, anon_sym_EQ, - STATE(2413), 1, + STATE(2415), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -336826,7 +341260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1015), 17, + ACTIONS(669), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -336844,9 +341278,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 22, + ACTIONS(135), 20, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -336857,7 +341290,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -336867,17 +341299,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [8558] = 7, + [8696] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1089), 1, + ACTIONS(1105), 1, anon_sym_EQ, - STATE(2414), 1, + STATE(2416), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -336891,7 +341323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1103), 17, + ACTIONS(1119), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -336909,7 +341341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 22, + ACTIONS(135), 22, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -336932,29 +341364,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_COLON2, - [8630] = 7, + [8768] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5465), 1, - anon_sym_PIPE, - STATE(2390), 1, - aux_sym_union_type_repeat1, - STATE(2415), 1, - sym_heredoc_body, + ACTIONS(5536), 1, + sym__string_literal_start, + STATE(2516), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + STATE(2417), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5534), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 43, + ACTIONS(5532), 42, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -336974,12 +341408,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -336993,55 +341424,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [8702] = 8, + [8840] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1149), 1, - anon_sym_EQ, - ACTIONS(5492), 1, - anon_sym_COLON2, - STATE(2416), 1, + ACTIONS(5508), 1, + anon_sym_LBRACK, + ACTIONS(5510), 1, + anon_sym_STAR, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(5514), 1, + anon_sym_DOT, + ACTIONS(5516), 1, + anon_sym_QMARK, + STATE(2411), 1, + aux_sym_union_type_repeat1, + STATE(2418), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1151), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 21, + anon_sym_EQ, + ACTIONS(4625), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -337052,9 +341469,22 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_EQ_GT, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -337062,31 +341492,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - [8776] = 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [8920] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5494), 1, - anon_sym_COLON_COLON, + ACTIONS(5508), 1, + anon_sym_LBRACK, + ACTIONS(5510), 1, + anon_sym_STAR, + ACTIONS(5512), 1, + anon_sym_PIPE, + ACTIONS(5514), 1, + anon_sym_DOT, + ACTIONS(5516), 1, + anon_sym_QMARK, + STATE(2411), 1, + aux_sym_union_type_repeat1, + STATE(2419), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2417), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4561), 9, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4563), 42, + ACTIONS(4607), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -337099,18 +341540,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -337121,38 +341561,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_elsif, anon_sym_else, - [8846] = 7, + anon_sym_when, + anon_sym_in, + [9000] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5473), 1, - anon_sym_COLON_COLON, - STATE(2417), 1, - aux_sym_constant_repeat1, - STATE(2418), 1, + STATE(2420), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4557), 9, + ACTIONS(5237), 14, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4559), 42, - sym__line_break, - sym__start_of_brace_block, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(5235), 39, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -337162,23 +341602,9 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -337186,27 +341612,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [8918] = 9, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + [9068] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(657), 1, + ACTIONS(1105), 1, anon_sym_EQ, - ACTIONS(1139), 1, - anon_sym_COMMA, - ACTIONS(5396), 1, - anon_sym_COLON2, - STATE(2419), 1, + STATE(2421), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -337220,7 +341654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(659), 17, + ACTIONS(1119), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -337238,49 +341672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 20, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_DOT_DOT_DOT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - [8994] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2415), 1, - aux_sym_union_type_repeat1, - STATE(2420), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4586), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 43, - sym__line_break, + ACTIONS(135), 22, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -337291,24 +341683,9 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -337317,26 +341694,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [9064] = 7, + anon_sym_COLON2, + [9140] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5501), 1, + ACTIONS(233), 1, sym__string_literal_start, - STATE(2509), 1, + STATE(2417), 1, + aux_sym_chained_string_repeat1, + STATE(2422), 1, + sym_heredoc_body, + STATE(2516), 1, sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2421), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5499), 8, + ACTIONS(5541), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -337345,7 +341718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5497), 42, + ACTIONS(5539), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -337388,21 +341761,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [9136] = 9, + [9214] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, + ACTIONS(263), 1, anon_sym_COMMA, - ACTIONS(5396), 1, - anon_sym_COLON2, - ACTIONS(5504), 1, + ACTIONS(667), 1, anon_sym_EQ, - STATE(2422), 1, + STATE(2423), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -337416,7 +341787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(659), 17, + ACTIONS(669), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -337434,7 +341805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 20, + ACTIONS(135), 20, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -337455,25 +341826,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [9212] = 5, + [9287] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2423), 1, + ACTIONS(5508), 1, + anon_sym_LBRACK, + ACTIONS(5510), 1, + anon_sym_STAR, + ACTIONS(5514), 1, + anon_sym_DOT, + ACTIONS(5516), 1, + anon_sym_QMARK, + ACTIONS(5543), 1, + anon_sym_PIPE, + STATE(2424), 1, sym_heredoc_body, + STATE(2466), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4647), 9, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4649), 43, + ACTIONS(4650), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -337494,12 +341875,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -337510,42 +341888,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [9279] = 11, + [9366] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5461), 1, - anon_sym_LBRACK, - ACTIONS(5463), 1, - anon_sym_STAR, - ACTIONS(5467), 1, - anon_sym_DOT, - ACTIONS(5469), 1, - anon_sym_QMARK, - ACTIONS(5506), 1, - anon_sym_PIPE, - STATE(2424), 1, + STATE(2425), 1, sym_heredoc_body, - STATE(2456), 1, + STATE(2466), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4683), 7, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4685), 39, + ACTIONS(4629), 42, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -337566,9 +341935,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -337579,25 +341950,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [9358] = 8, + [9435] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, - anon_sym_COMMA, - ACTIONS(5508), 1, + ACTIONS(1185), 1, anon_sym_EQ, - STATE(2425), 1, + STATE(2426), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -337611,7 +341981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(659), 17, + ACTIONS(1187), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -337629,7 +341999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 20, + ACTIONS(135), 21, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -337650,15 +342020,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [9431] = 5, + anon_sym_COLON2, + [9506] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2426), 1, + ACTIONS(209), 1, + sym__start_of_brace_block, + ACTIONS(5549), 1, + anon_sym_do, + STATE(2427), 1, sym_heredoc_body, + STATE(3082), 1, + sym_do_end_block, + STATE(3083), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4619), 9, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -337667,8 +342046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4621), 43, + ACTIONS(5545), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -337689,12 +342067,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -337712,49 +342087,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [9498] = 7, + [9581] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1169), 1, - anon_sym_EQ, - STATE(2427), 1, + ACTIONS(257), 1, + sym__start_of_brace_block, + ACTIONS(5555), 1, + anon_sym_do, + STATE(2428), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + STATE(2547), 2, + sym_do_end_block, + sym_brace_block, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1171), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 21, + ACTIONS(5551), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -337765,8 +342123,21 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -337775,16 +342146,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_COLON2, - [9569] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [9654] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2428), 1, + ACTIONS(209), 1, + sym__start_of_brace_block, + ACTIONS(5549), 1, + anon_sym_do, + STATE(2429), 1, sym_heredoc_body, + STATE(3084), 1, + sym_do_end_block, + STATE(3085), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4631), 9, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -337793,8 +342177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4633), 43, + ACTIONS(5545), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -337815,12 +342198,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -337838,36 +342218,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [9636] = 11, + [9729] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5461), 1, - anon_sym_LBRACK, - ACTIONS(5463), 1, - anon_sym_STAR, - ACTIONS(5467), 1, - anon_sym_DOT, - ACTIONS(5469), 1, - anon_sym_QMARK, - ACTIONS(5506), 1, - anon_sym_PIPE, - STATE(2429), 1, + ACTIONS(1185), 1, + anon_sym_EQ, + STATE(2430), 1, sym_heredoc_body, - STATE(2456), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4605), 39, - sym__line_break, + anon_sym_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1187), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 21, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -337878,21 +342271,8 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -337900,39 +342280,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [9715] = 8, + anon_sym_QMARK, + anon_sym_COLON2, + [9800] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(203), 1, - sym__start_of_brace_block, - ACTIONS(5514), 1, - anon_sym_do, - STATE(2430), 1, + ACTIONS(1155), 1, + anon_sym_EQ, + STATE(2431), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2582), 2, - sym_do_end_block, - sym_brace_block, - ACTIONS(5512), 8, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 40, - sym__line_break, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1157), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 21, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -337942,21 +342336,8 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -337965,21 +342346,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [9788] = 5, + [9871] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2431), 1, + STATE(2432), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4655), 9, + ACTIONS(5559), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -337988,9 +342363,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4657), 43, + ACTIONS(5557), 44, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -338006,16 +342381,14 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + sym__string_literal_start, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -338026,22 +342399,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [9855] = 5, + [9938] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2432), 1, + STATE(2433), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4635), 9, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -338051,8 +342426,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4637), 43, + ACTIONS(4600), 43, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -338065,13 +342441,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -338088,42 +342463,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [9922] = 11, + [10005] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5461), 1, - anon_sym_LBRACK, - ACTIONS(5463), 1, - anon_sym_STAR, - ACTIONS(5467), 1, - anon_sym_DOT, - ACTIONS(5469), 1, - anon_sym_QMARK, - ACTIONS(5506), 1, - anon_sym_PIPE, - STATE(2433), 1, + ACTIONS(209), 1, + sym__start_of_brace_block, + ACTIONS(5549), 1, + anon_sym_do, + STATE(2434), 1, sym_heredoc_body, - STATE(2456), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4639), 7, + STATE(2914), 2, + sym_do_end_block, + sym_brace_block, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4641), 39, + anon_sym_DOT, + ACTIONS(5551), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -338157,32 +342528,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [10001] = 5, + [10078] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2434), 1, + ACTIONS(1167), 1, + anon_sym_COMMA, + ACTIONS(1169), 1, + anon_sym_EQ, + STATE(2435), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4599), 43, - sym__line_break, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(669), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 20, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -338193,24 +342590,8 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -338219,31 +342600,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [10068] = 5, + [10151] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2435), 1, - sym_heredoc_body, + ACTIONS(5561), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4643), 9, + STATE(2436), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4645), 43, + ACTIONS(4629), 42, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -338267,7 +342644,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, anon_sym_CARET, @@ -338287,26 +342663,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [10135] = 5, + [10220] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2436), 1, + ACTIONS(263), 1, + anon_sym_COMMA, + ACTIONS(5564), 1, + anon_sym_EQ, + STATE(2437), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4627), 9, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4629), 43, - sym__line_break, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(669), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 20, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -338317,24 +342718,8 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -338343,38 +342728,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [10202] = 8, + [10293] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, - sym__start_of_brace_block, - ACTIONS(5516), 1, - anon_sym_do, - STATE(2437), 1, + ACTIONS(263), 1, + anon_sym_COMMA, + ACTIONS(5566), 1, + anon_sym_EQ, + STATE(2438), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2945), 2, - sym_do_end_block, - sym_brace_block, - ACTIONS(5512), 8, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 40, - sym__line_break, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(669), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 20, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -338385,21 +342783,8 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -338408,21 +342793,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [10275] = 5, + [10366] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2438), 1, + ACTIONS(257), 1, + sym__start_of_brace_block, + STATE(2439), 1, sym_heredoc_body, + STATE(2648), 1, + sym_do_end_block, + STATE(2650), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5520), 8, + ACTIONS(5570), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -338431,9 +342816,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5518), 44, + ACTIONS(5568), 41, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -338449,7 +342833,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -338467,7 +342850,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -338476,19 +342858,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [10342] = 7, + [10439] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5522), 1, - anon_sym_COLON_COLON, - STATE(2439), 1, + STATE(2440), 1, sym_heredoc_body, - STATE(2446), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 10, + ACTIONS(4638), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -338498,8 +342876,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4549), 40, + ACTIONS(4640), 43, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -338511,17 +342889,19 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -338532,23 +342912,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [10413] = 5, + [10506] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2440), 1, + STATE(2441), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4659), 9, + ACTIONS(4688), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -338558,7 +342938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4661), 43, + ACTIONS(4690), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -338602,51 +342982,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [10480] = 8, + [10573] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(657), 1, - anon_sym_EQ, - ACTIONS(1139), 1, - anon_sym_COMMA, - STATE(2441), 1, + ACTIONS(257), 1, + sym__start_of_brace_block, + STATE(2442), 1, sym_heredoc_body, + STATE(2683), 1, + sym_do_end_block, + STATE(2685), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(659), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 20, + ACTIONS(5545), 41, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -338657,8 +343017,21 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -338667,23 +343040,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [10553] = 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [10646] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, + ACTIONS(257), 1, sym__start_of_brace_block, - ACTIONS(5516), 1, - anon_sym_do, - STATE(2442), 1, + STATE(2443), 1, sym_heredoc_body, - STATE(2960), 1, + STATE(2686), 1, sym_do_end_block, - STATE(2961), 1, + STATE(2687), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -338692,7 +343070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 40, + ACTIONS(5545), 41, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -338729,32 +343107,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [10628] = 6, + [10719] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2443), 1, + ACTIONS(1175), 1, + anon_sym_EQ, + STATE(2444), 1, sym_heredoc_body, - STATE(2456), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 42, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1177), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 21, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + [10790] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2445), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5574), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5572), 44, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -338770,15 +343211,14 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + sym__string_literal_start, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -338789,26 +343229,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [10697] = 8, + [10857] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, - anon_sym_COMMA, - ACTIONS(657), 1, + ACTIONS(667), 1, anon_sym_EQ, - STATE(2444), 1, + ACTIONS(1167), 1, + anon_sym_COMMA, + STATE(2446), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(157), 13, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -338822,7 +343264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(659), 17, + ACTIONS(669), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -338840,7 +343282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - ACTIONS(133), 20, + ACTIONS(135), 20, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -338861,23 +343303,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [10770] = 9, + [10930] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, + ACTIONS(209), 1, sym__start_of_brace_block, - ACTIONS(5516), 1, + ACTIONS(5549), 1, anon_sym_do, - STATE(2445), 1, + STATE(2447), 1, sym_heredoc_body, - STATE(2947), 1, + STATE(3020), 1, sym_do_end_block, - STATE(2948), 1, + STATE(3021), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(5570), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -338886,7 +343328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 40, + ACTIONS(5568), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -338927,19 +343369,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [10845] = 7, + [11005] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5522), 1, - anon_sym_COLON_COLON, - STATE(2446), 1, + STATE(2448), 1, sym_heredoc_body, - STATE(2452), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 10, + ACTIONS(4704), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -338949,9 +343387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4555), 40, - sym__start_of_brace_block, + ACTIONS(4706), 43, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -338962,13 +343399,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -338983,23 +343424,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [10916] = 5, + [11072] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2447), 1, + STATE(2449), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4679), 9, + ACTIONS(4676), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -339009,7 +343449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4681), 43, + ACTIONS(4678), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -339053,21 +343493,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [10983] = 8, + [11139] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1181), 1, - anon_sym_COLON, - ACTIONS(5411), 1, - anon_sym_COLON_COLON, - STATE(2348), 1, - aux_sym_constant_repeat1, - STATE(2448), 1, + STATE(2450), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 8, + ACTIONS(4660), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -339076,7 +343510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(4549), 41, + anon_sym_EQ, + ACTIONS(4662), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -339097,9 +343532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -339110,7 +343548,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -339118,51 +343555,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [11056] = 7, + [11206] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1159), 1, - anon_sym_EQ, - STATE(2449), 1, - sym_heredoc_body, + ACTIONS(5576), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + STATE(2451), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4598), 10, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1161), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 21, + anon_sym_EQ, + anon_sym_COLON2, + ACTIONS(4600), 40, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -339173,72 +343590,19 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_DOT_DOT_DOT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - [11127] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(259), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - ACTIONS(5532), 1, - anon_sym_EQ, - STATE(2450), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(155), 13, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(659), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 20, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_DOT_DOT_DOT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -339246,16 +343610,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, - [11200] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [11275] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2451), 1, + STATE(2452), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5536), 8, + ACTIONS(4664), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -339264,9 +343635,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5534), 44, + anon_sym_EQ, + ACTIONS(4666), 43, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -339282,14 +343653,16 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -339300,27 +343673,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [11267] = 6, + [11342] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5538), 1, + ACTIONS(5579), 1, anon_sym_COLON_COLON, + STATE(2453), 1, + sym_heredoc_body, + STATE(2473), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2452), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4561), 10, + ACTIONS(4584), 10, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -339331,7 +343703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ, anon_sym_COLON2, - ACTIONS(4563), 40, + ACTIONS(4586), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -339372,19 +343744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [11336] = 7, + [11413] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5522), 1, - anon_sym_COLON_COLON, - STATE(2452), 1, - aux_sym_constant_repeat1, - STATE(2453), 1, + STATE(2454), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4557), 10, + ACTIONS(4652), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -339394,9 +343762,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4559), 40, - sym__start_of_brace_block, + ACTIONS(4654), 43, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -339407,13 +343774,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -339428,59 +343799,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [11407] = 8, + [11480] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1139), 1, - anon_sym_COMMA, - ACTIONS(1141), 1, - anon_sym_EQ, - STATE(2454), 1, + STATE(2455), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(4696), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(659), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 20, + anon_sym_EQ, + ACTIONS(4698), 43, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -339491,8 +343836,24 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -339501,15 +343862,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [11480] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [11547] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2455), 1, + ACTIONS(5579), 1, + anon_sym_COLON_COLON, + STATE(2451), 1, + aux_sym_constant_repeat1, + STATE(2456), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 9, + ACTIONS(4590), 10, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -339519,8 +343890,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4595), 43, - sym__line_break, + anon_sym_COLON2, + ACTIONS(4592), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -339532,19 +343903,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -339555,36 +343924,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [11547] = 7, + [11618] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5506), 1, - anon_sym_PIPE, - STATE(2456), 1, + STATE(2457), 1, sym_heredoc_body, - STATE(2458), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(4656), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4584), 42, + ACTIONS(4658), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -339608,6 +343974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, anon_sym_CARET, @@ -339627,30 +343994,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [11618] = 8, + [11685] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(203), 1, - sym__start_of_brace_block, - STATE(2457), 1, + ACTIONS(5508), 1, + anon_sym_LBRACK, + ACTIONS(5510), 1, + anon_sym_STAR, + ACTIONS(5514), 1, + anon_sym_DOT, + ACTIONS(5516), 1, + anon_sym_QMARK, + ACTIONS(5543), 1, + anon_sym_PIPE, + STATE(2458), 1, sym_heredoc_body, - STATE(2741), 1, - sym_do_end_block, - STATE(2743), 1, - sym_brace_block, + STATE(2466), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(4668), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5528), 41, + anon_sym_EQ, + ACTIONS(4670), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -339684,35 +344056,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [11691] = 6, + [11764] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5541), 1, + ACTIONS(5508), 1, + anon_sym_LBRACK, + ACTIONS(5510), 1, + anon_sym_STAR, + ACTIONS(5514), 1, + anon_sym_DOT, + ACTIONS(5516), 1, + anon_sym_QMARK, + ACTIONS(5543), 1, anon_sym_PIPE, + STATE(2459), 1, + sym_heredoc_body, + STATE(2466), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2458), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 42, + ACTIONS(4625), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -339733,11 +344111,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -339748,42 +344124,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [11760] = 11, + [11843] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5461), 1, - anon_sym_LBRACK, - ACTIONS(5463), 1, - anon_sym_STAR, - ACTIONS(5467), 1, - anon_sym_DOT, - ACTIONS(5469), 1, - anon_sym_QMARK, - ACTIONS(5506), 1, - anon_sym_PIPE, - STATE(2456), 1, - aux_sym_union_type_repeat1, - STATE(2459), 1, + STATE(2460), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(4692), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4609), 39, + ACTIONS(4694), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -339804,9 +344169,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -339817,41 +344185,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [11839] = 11, + [11910] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5461), 1, - anon_sym_LBRACK, - ACTIONS(5463), 1, - anon_sym_STAR, - ACTIONS(5467), 1, - anon_sym_DOT, - ACTIONS(5469), 1, - anon_sym_QMARK, - ACTIONS(5506), 1, - anon_sym_PIPE, - STATE(2456), 1, - aux_sym_union_type_repeat1, - STATE(2460), 1, + ACTIONS(123), 1, + sym__string_literal_start, + ACTIONS(5581), 1, + anon_sym_COLON, + STATE(2461), 1, sym_heredoc_body, + STATE(2534), 1, + aux_sym_chained_string_repeat1, + STATE(2842), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 39, + anon_sym_DOT, + ACTIONS(135), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -339885,21 +344251,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [11918] = 5, + [11985] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2461), 1, + ACTIONS(263), 1, + anon_sym_COMMA, + ACTIONS(5583), 1, + anon_sym_EQ, + STATE(2462), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4651), 9, + ACTIONS(157), 13, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(669), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + ACTIONS(135), 20, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_DOT_DOT_DOT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + [12058] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2463), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4716), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -339909,7 +344341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4653), 43, + ACTIONS(4718), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -339953,15 +344385,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [11985] = 5, + [12125] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2462), 1, + ACTIONS(5579), 1, + anon_sym_COLON_COLON, + STATE(2456), 1, + aux_sym_constant_repeat1, + STATE(2464), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4615), 9, + ACTIONS(4594), 10, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -339971,8 +344407,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4617), 43, - sym__line_break, + anon_sym_COLON2, + ACTIONS(4596), 40, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -339983,17 +344420,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -340008,56 +344441,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [12052] = 7, + [12196] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1149), 1, - anon_sym_EQ, - STATE(2463), 1, + ACTIONS(1199), 1, + anon_sym_COLON, + ACTIONS(5452), 1, + anon_sym_COLON_COLON, + STATE(2332), 1, + aux_sym_constant_repeat1, + STATE(2465), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(4584), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1151), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 21, + ACTIONS(4586), 41, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -340068,9 +344484,21 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_EQ_GT, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -340078,33 +344506,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, - [12123] = 9, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [12269] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, - sym__start_of_brace_block, - ACTIONS(5516), 1, - anon_sym_do, - STATE(2464), 1, + ACTIONS(5543), 1, + anon_sym_PIPE, + STATE(2436), 1, + aux_sym_union_type_repeat1, + STATE(2466), 1, sym_heredoc_body, - STATE(2965), 1, - sym_do_end_block, - STATE(2966), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 40, + anon_sym_EQ, + ACTIONS(4636), 42, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -340125,9 +344556,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -340145,21 +344578,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [12198] = 8, + [12340] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(203), 1, - sym__start_of_brace_block, - STATE(2465), 1, + STATE(2467), 1, sym_heredoc_body, - STATE(2752), 1, - sym_do_end_block, - STATE(2753), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(4680), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -340168,7 +344595,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 41, + anon_sym_EQ, + ACTIONS(4682), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -340189,9 +344617,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -340205,26 +344636,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [12271] = 8, + [12407] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(203), 1, - sym__start_of_brace_block, - STATE(2466), 1, + STATE(2468), 1, sym_heredoc_body, - STATE(2754), 1, - sym_do_end_block, - STATE(2755), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(4672), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -340233,7 +344657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 41, + anon_sym_EQ, + ACTIONS(4674), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -340254,9 +344679,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -340270,30 +344698,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [12344] = 5, + [12474] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2467), 1, + ACTIONS(5508), 1, + anon_sym_LBRACK, + ACTIONS(5510), 1, + anon_sym_STAR, + ACTIONS(5514), 1, + anon_sym_DOT, + ACTIONS(5516), 1, + anon_sym_QMARK, + ACTIONS(5543), 1, + anon_sym_PIPE, + STATE(2466), 1, + aux_sym_union_type_repeat1, + STATE(2469), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4623), 9, + ACTIONS(4684), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4625), 43, + ACTIONS(4686), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -340314,12 +344751,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -340330,87 +344764,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [12411] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(259), 1, - anon_sym_COMMA, - ACTIONS(5544), 1, - anon_sym_EQ, - STATE(2468), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(155), 13, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(659), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 20, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_DOT_DOT_DOT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - [12484] = 5, + [12553] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2469), 1, + STATE(2470), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4667), 9, + ACTIONS(4708), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -340420,7 +344788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4669), 43, + ACTIONS(4710), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -340464,15 +344832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [12551] = 5, + [12620] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2470), 1, + STATE(2471), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4675), 9, + ACTIONS(4712), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -340482,7 +344850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4677), 43, + ACTIONS(4714), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -340526,23 +344894,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [12618] = 9, + [12687] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(121), 1, - sym__string_literal_start, - ACTIONS(5546), 1, - anon_sym_COLON, - STATE(2471), 1, + STATE(2472), 1, sym_heredoc_body, - STATE(2487), 1, - aux_sym_chained_string_repeat1, - STATE(2859), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(4720), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -340551,7 +344911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 40, + anon_sym_EQ, + ACTIONS(4722), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -340572,9 +344933,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -340592,15 +344956,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [12693] = 5, + [12754] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2472), 1, + ACTIONS(5579), 1, + anon_sym_COLON_COLON, + STATE(2451), 1, + aux_sym_constant_repeat1, + STATE(2473), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4561), 9, + ACTIONS(4594), 10, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -340610,8 +344978,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4563), 43, - sym__line_break, + anon_sym_COLON2, + ACTIONS(4596), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -340623,16 +344991,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -340647,56 +345012,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON_COLON, anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [12760] = 7, + anon_sym_when, + anon_sym_in, + [12825] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1169), 1, - anon_sym_EQ, - STATE(2473), 1, + STATE(2474), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 13, + ACTIONS(4700), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1171), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - ACTIONS(133), 21, + anon_sym_EQ, + ACTIONS(4702), 43, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -340707,8 +345050,24 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -340717,26 +345076,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_COLON2, - [12831] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [12892] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2474), 1, + ACTIONS(5508), 1, + anon_sym_LBRACK, + ACTIONS(5510), 1, + anon_sym_STAR, + ACTIONS(5514), 1, + anon_sym_DOT, + ACTIONS(5516), 1, + anon_sym_QMARK, + ACTIONS(5543), 1, + anon_sym_PIPE, + STATE(2466), 1, + aux_sym_union_type_repeat1, + STATE(2475), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4671), 9, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4673), 43, + ACTIONS(4607), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -340757,12 +345131,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -340773,22 +345144,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [12898] = 5, + [12971] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2475), 1, + STATE(2476), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4663), 9, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -340798,7 +345168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4665), 43, + ACTIONS(4644), 43, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -340842,19 +345212,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [12965] = 7, + [13038] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5522), 1, + ACTIONS(5585), 1, anon_sym_COLON_COLON, - STATE(2453), 1, - aux_sym_constant_repeat1, - STATE(2476), 1, + STATE(2477), 1, sym_heredoc_body, + STATE(2494), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 10, + ACTIONS(4590), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -340864,8 +345234,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4555), 40, + ACTIONS(4592), 40, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -340877,13 +345247,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -340903,91 +345275,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [13036] = 11, + [13108] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5548), 1, - anon_sym_LBRACK, - ACTIONS(5550), 1, - anon_sym_STAR, - ACTIONS(5552), 1, + ACTIONS(5589), 1, + anon_sym_COMMA, + ACTIONS(5591), 1, + anon_sym_DOT_DOT, + ACTIONS(5593), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5597), 1, anon_sym_PIPE, - ACTIONS(5554), 1, + ACTIONS(5599), 1, + anon_sym_CARET, + ACTIONS(5603), 1, + anon_sym_EQ_EQ, + ACTIONS(5609), 1, + anon_sym_AMP_STAR, + ACTIONS(5613), 1, anon_sym_DOT, - ACTIONS(5556), 1, + ACTIONS(5615), 1, anon_sym_QMARK, - STATE(2477), 1, + ACTIONS(5617), 1, + anon_sym_AMP_AMP, + ACTIONS(5619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5621), 1, + sym__start_of_index_operator, + ACTIONS(5627), 1, + sym_binary_ampersand, + STATE(2478), 1, sym_heredoc_body, - STATE(2520), 1, - aux_sym_union_type_repeat1, + STATE(2482), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, - anon_sym_DOT_DOT, + ACTIONS(5601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5595), 3, anon_sym_LT, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5605), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5625), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5587), 16, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [13114] = 8, + anon_sym_when, + anon_sym_in, + [13214] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5481), 1, + ACTIONS(5589), 1, anon_sym_COMMA, - ACTIONS(5558), 1, - anon_sym_DASH_GT, - STATE(2478), 1, + STATE(2479), 1, sym_heredoc_body, - STATE(10205), 1, - aux_sym_proc_type_repeat1, + STATE(2482), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -340996,9 +345377,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 39, + ACTIONS(5587), 41, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -341033,149 +345414,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [13186] = 7, + [13284] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5560), 1, - anon_sym_COLON_COLON, - STATE(2479), 1, - sym_heredoc_body, - STATE(2537), 1, - aux_sym_constant_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4557), 9, + ACTIONS(5591), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(5593), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5597), 1, anon_sym_PIPE, + ACTIONS(5599), 1, + anon_sym_CARET, + ACTIONS(5603), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(5609), 1, anon_sym_AMP_STAR, + ACTIONS(5613), 1, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4559), 40, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, + ACTIONS(5615), 1, anon_sym_QMARK, + ACTIONS(5617), 1, anon_sym_AMP_AMP, + ACTIONS(5619), 1, anon_sym_PIPE_PIPE, - anon_sym_else, - [13256] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5564), 1, + ACTIONS(5621), 1, + sym__start_of_index_operator, + ACTIONS(5627), 1, + sym_binary_ampersand, + ACTIONS(5633), 1, anon_sym_COMMA, STATE(2480), 1, sym_heredoc_body, - STATE(2534), 1, + STATE(2483), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, - anon_sym_DOT_DOT, + ACTIONS(5601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5595), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5562), 41, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5605), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5625), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5631), 16, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [13326] = 7, + [13390] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5568), 1, - anon_sym_COLON_COLON, + ACTIONS(5633), 1, + anon_sym_COMMA, STATE(2481), 1, sym_heredoc_body, - STATE(2484), 1, - aux_sym_constant_repeat1, + STATE(2483), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 9, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -341184,8 +345521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 40, + ACTIONS(5631), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -341201,16 +345537,14 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -341221,24 +345555,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [13396] = 7, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [13460] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5568), 1, - anon_sym_COLON_COLON, + ACTIONS(5633), 1, + anon_sym_COMMA, STATE(2482), 1, sym_heredoc_body, - STATE(2485), 1, - aux_sym_constant_repeat1, + STATE(2511), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 9, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -341247,8 +345584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 40, + ACTIONS(5631), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -341264,16 +345600,14 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -341284,24 +345618,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [13466] = 7, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [13530] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5572), 1, + ACTIONS(5639), 1, anon_sym_COMMA, STATE(2483), 1, sym_heredoc_body, - STATE(2538), 1, + STATE(2511), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -341310,7 +345647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 41, + ACTIONS(5637), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -341352,81 +345689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [13536] = 6, + [13600] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5576), 1, - anon_sym_COLON_COLON, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(2484), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4561), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4563), 40, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [13604] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5568), 1, - anon_sym_COLON_COLON, STATE(2484), 1, - aux_sym_constant_repeat1, - STATE(2485), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4557), 9, + ACTIONS(5645), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -341435,8 +345706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4559), 40, + ACTIONS(5643), 43, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -341452,16 +345722,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -341472,20 +345741,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [13674] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [13666] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2486), 1, + ACTIONS(5649), 1, + anon_sym_of, + STATE(2485), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5581), 8, + ACTIONS(5651), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -341494,7 +345769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5579), 43, + ACTIONS(5647), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -341529,7 +345804,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -341538,21 +345812,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [13740] = 8, + [13734] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(121), 1, - sym__string_literal_start, - STATE(2487), 1, + ACTIONS(5653), 1, + anon_sym_COLON_COLON, + STATE(2486), 1, sym_heredoc_body, - STATE(2521), 1, - aux_sym_chained_string_repeat1, - STATE(2859), 1, - sym_string, + STATE(2488), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5490), 8, + ACTIONS(4584), 10, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -341561,8 +345833,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5488), 40, - sym__line_break, + anon_sym_EQ, + anon_sym_COLON2, + ACTIONS(4586), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -341573,18 +345847,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -341595,34 +345867,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [13812] = 6, + [13804] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5583), 1, - anon_sym_LPAREN2, - STATE(2488), 1, - sym_heredoc_body, + ACTIONS(5655), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + STATE(2487), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4599), 41, + ACTIONS(4629), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -341664,36 +345937,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [13880] = 11, + [13872] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5548), 1, - anon_sym_LBRACK, - ACTIONS(5550), 1, - anon_sym_STAR, - ACTIONS(5552), 1, - anon_sym_PIPE, - ACTIONS(5554), 1, - anon_sym_DOT, - ACTIONS(5556), 1, - anon_sym_QMARK, - STATE(2489), 1, + ACTIONS(5653), 1, + anon_sym_COLON_COLON, + STATE(2488), 1, sym_heredoc_body, - STATE(2520), 1, - aux_sym_union_type_repeat1, + STATE(2503), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 7, + ACTIONS(4594), 10, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4595), 38, - sym__line_break, + anon_sym_COLON2, + ACTIONS(4596), 39, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -341705,18 +345972,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -341727,75 +345992,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [13958] = 25, + anon_sym_when, + anon_sym_in, + [13942] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5587), 1, - anon_sym_COMMA, - ACTIONS(5589), 1, - anon_sym_DOT_DOT, ACTIONS(5591), 1, + anon_sym_DOT_DOT, + ACTIONS(5593), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5595), 1, - anon_sym_PIPE, ACTIONS(5597), 1, + anon_sym_PIPE, + ACTIONS(5599), 1, anon_sym_CARET, - ACTIONS(5601), 1, + ACTIONS(5603), 1, anon_sym_EQ_EQ, - ACTIONS(5607), 1, + ACTIONS(5609), 1, anon_sym_AMP_STAR, - ACTIONS(5611), 1, - anon_sym_DOT, ACTIONS(5613), 1, - anon_sym_QMARK, + anon_sym_DOT, ACTIONS(5615), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK, ACTIONS(5617), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5621), 1, sym__start_of_index_operator, - ACTIONS(5625), 1, + ACTIONS(5627), 1, sym_binary_ampersand, - STATE(2490), 1, + ACTIONS(5658), 1, + anon_sym_COMMA, + STATE(2489), 1, sym_heredoc_body, - STATE(2530), 1, + STATE(2515), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5599), 2, + ACTIONS(5601), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5605), 2, + ACTIONS(5607), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, + ACTIONS(5611), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, + ACTIONS(5595), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5603), 4, + ACTIONS(5605), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(5621), 4, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5623), 4, + ACTIONS(5625), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5585), 16, + ACTIONS(5631), 16, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -341812,17 +346081,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [14064] = 6, + [14048] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5443), 1, - anon_sym_COLON, - STATE(2491), 1, + ACTIONS(5658), 1, + anon_sym_COMMA, + STATE(2490), 1, sym_heredoc_body, + STATE(2515), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -341831,7 +346102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 42, + ACTIONS(5631), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -341853,7 +346124,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -341874,19 +346144,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [14132] = 7, + [14118] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5568), 1, - anon_sym_COLON_COLON, - STATE(2481), 1, - aux_sym_constant_repeat1, - STATE(2492), 1, + ACTIONS(5658), 1, + anon_sym_COMMA, + STATE(2491), 1, sym_heredoc_body, + STATE(2511), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 9, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -341895,8 +346165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4549), 40, + ACTIONS(5631), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -341912,16 +346181,14 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -341932,20 +346199,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [14202] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [14188] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2493), 1, + ACTIONS(5476), 1, + anon_sym_LPAREN2, + STATE(2492), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -341954,8 +346226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 42, + ACTIONS(135), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -341998,19 +346269,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [14268] = 7, + [14256] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5587), 1, - anon_sym_COMMA, - STATE(2494), 1, + ACTIONS(5664), 1, + sym_regex_modifier, + STATE(2493), 1, sym_heredoc_body, - STATE(2530), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -342019,7 +346288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 41, + ACTIONS(5660), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -342041,6 +346310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -342061,19 +346331,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [14338] = 7, + [14324] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5587), 1, - anon_sym_COMMA, - STATE(2495), 1, - sym_heredoc_body, - STATE(2534), 1, - aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5666), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + STATE(2494), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -342082,7 +346351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 41, + anon_sym_EQ, + ACTIONS(4600), 40, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -342098,14 +346368,16 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -342116,27 +346388,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [14408] = 7, + [14392] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5629), 1, - anon_sym_COLON_COLON, - STATE(2496), 1, + STATE(2495), 1, sym_heredoc_body, - STATE(2497), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 10, + ACTIONS(4598), 10, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -342147,7 +346412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ, anon_sym_COLON2, - ACTIONS(4549), 39, + ACTIONS(4600), 41, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -342165,6 +346430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -342179,6 +346445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON_COLON, anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -342187,19 +346454,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [14478] = 7, + [14458] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5629), 1, - anon_sym_COLON_COLON, - STATE(2497), 1, + ACTIONS(5669), 1, + anon_sym_COMMA, + STATE(2496), 1, sym_heredoc_body, - STATE(2507), 1, - aux_sym_constant_repeat1, + STATE(2511), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 10, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -342208,9 +346475,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4555), 39, + ACTIONS(5637), 41, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -342222,16 +346488,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -342242,27 +346509,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [14548] = 7, + [14528] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5629), 1, + ACTIONS(5671), 1, + anon_sym_LBRACK, + ACTIONS(5673), 1, + anon_sym_STAR, + ACTIONS(5675), 1, + anon_sym_PIPE, + ACTIONS(5677), 1, + anon_sym_DOT, + ACTIONS(5679), 1, + anon_sym_QMARK, + STATE(2497), 1, + sym_heredoc_body, + STATE(2512), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4623), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4625), 38, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + [14606] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5585), 1, anon_sym_COLON_COLON, + STATE(2494), 1, + aux_sym_constant_repeat1, STATE(2498), 1, sym_heredoc_body, - STATE(2508), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 10, + ACTIONS(4594), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -342272,8 +346606,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4555), 39, + ACTIONS(4596), 40, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -342285,12 +346619,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -342310,18 +346647,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [14618] = 5, + [14676] = 11, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5671), 1, + anon_sym_LBRACK, + ACTIONS(5673), 1, + anon_sym_STAR, + ACTIONS(5675), 1, + anon_sym_PIPE, + ACTIONS(5677), 1, + anon_sym_DOT, + ACTIONS(5679), 1, + anon_sym_QMARK, STATE(2499), 1, sym_heredoc_body, + STATE(2512), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4561), 10, + ACTIONS(4605), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4607), 38, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + [14754] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5681), 1, + anon_sym_COLON_COLON, + STATE(2500), 1, + sym_heredoc_body, + STATE(2509), 1, + aux_sym_constant_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4584), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -342331,9 +346736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4563), 41, - sym__start_of_brace_block, + ACTIONS(4586), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -342344,13 +346748,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -342365,26 +346772,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON_COLON, anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [14684] = 6, + [14824] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5635), 1, - sym_regex_modifier, - STATE(2500), 1, + STATE(2501), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5633), 8, + ACTIONS(5685), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -342393,7 +346794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5631), 42, + ACTIONS(5683), 43, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -342428,6 +346829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -342436,71 +346838,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [14752] = 25, + [14890] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5589), 1, - anon_sym_DOT_DOT, ACTIONS(5591), 1, + anon_sym_DOT_DOT, + ACTIONS(5593), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5595), 1, - anon_sym_PIPE, ACTIONS(5597), 1, + anon_sym_PIPE, + ACTIONS(5599), 1, anon_sym_CARET, - ACTIONS(5601), 1, + ACTIONS(5603), 1, anon_sym_EQ_EQ, - ACTIONS(5607), 1, + ACTIONS(5609), 1, anon_sym_AMP_STAR, - ACTIONS(5611), 1, - anon_sym_DOT, ACTIONS(5613), 1, - anon_sym_QMARK, + anon_sym_DOT, ACTIONS(5615), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK, ACTIONS(5617), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5621), 1, sym__start_of_index_operator, - ACTIONS(5625), 1, + ACTIONS(5627), 1, sym_binary_ampersand, - ACTIONS(5637), 1, + ACTIONS(5687), 1, anon_sym_COMMA, - STATE(2501), 1, - sym_heredoc_body, - STATE(2505), 1, + STATE(2496), 1, aux_sym_argument_list_no_parens_repeat1, + STATE(2502), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5599), 2, + ACTIONS(5601), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5605), 2, + ACTIONS(5607), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, + ACTIONS(5611), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, + ACTIONS(5595), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5603), 4, + ACTIONS(5605), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(5621), 4, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5623), 4, + ACTIONS(5625), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5570), 16, + ACTIONS(5631), 16, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -342517,19 +346919,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [14858] = 7, + [14996] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5637), 1, - anon_sym_COMMA, - STATE(2502), 1, - sym_heredoc_body, - STATE(2505), 1, - aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5689), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + STATE(2503), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4598), 10, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -342538,8 +346939,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 41, - sym__line_break, + anon_sym_EQ, + anon_sym_COLON2, + ACTIONS(4600), 39, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -342551,17 +346953,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -342572,108 +346973,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [14928] = 25, + [15064] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5589), 1, - anon_sym_DOT_DOT, - ACTIONS(5591), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5595), 1, - anon_sym_PIPE, - ACTIONS(5597), 1, - anon_sym_CARET, - ACTIONS(5601), 1, - anon_sym_EQ_EQ, - ACTIONS(5607), 1, - anon_sym_AMP_STAR, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5613), 1, - anon_sym_QMARK, - ACTIONS(5615), 1, - anon_sym_AMP_AMP, - ACTIONS(5617), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5619), 1, - sym__start_of_index_operator, - ACTIONS(5625), 1, - sym_binary_ampersand, - ACTIONS(5639), 1, - anon_sym_COMMA, + ACTIONS(5653), 1, + anon_sym_COLON_COLON, STATE(2503), 1, + aux_sym_constant_repeat1, + STATE(2504), 1, sym_heredoc_body, - STATE(2506), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5599), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5605), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, + ACTIONS(4590), 10, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5603), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5621), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_COLON2, + ACTIONS(4592), 39, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5623), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5585), 16, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [15034] = 7, + [15134] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5639), 1, - anon_sym_COMMA, - STATE(2504), 1, + ACTIONS(5585), 1, + anon_sym_COLON_COLON, + STATE(2477), 1, + aux_sym_constant_repeat1, + STATE(2505), 1, sym_heredoc_body, - STATE(2506), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(4594), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -342682,7 +347065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 41, + anon_sym_EQ, + ACTIONS(4596), 40, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -342698,14 +347082,16 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -342716,27 +347102,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [15104] = 7, + [15204] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5639), 1, - anon_sym_COMMA, - STATE(2505), 1, + ACTIONS(5484), 1, + anon_sym_COLON, + STATE(2506), 1, sym_heredoc_body, - STATE(2534), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -342745,7 +347126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 41, + ACTIONS(135), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -342767,6 +347148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -342787,19 +347169,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [15174] = 7, + [15272] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5641), 1, + ACTIONS(5591), 1, + anon_sym_DOT_DOT, + ACTIONS(5593), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5597), 1, + anon_sym_PIPE, + ACTIONS(5599), 1, + anon_sym_CARET, + ACTIONS(5603), 1, + anon_sym_EQ_EQ, + ACTIONS(5609), 1, + anon_sym_AMP_STAR, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5615), 1, + anon_sym_QMARK, + ACTIONS(5617), 1, + anon_sym_AMP_AMP, + ACTIONS(5619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5621), 1, + sym__start_of_index_operator, + ACTIONS(5627), 1, + sym_binary_ampersand, + ACTIONS(5692), 1, anon_sym_COMMA, - STATE(2506), 1, + STATE(2491), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(2507), 1, sym_heredoc_body, - STATE(2534), 1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5595), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5605), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5623), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(5625), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5587), 16, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [15378] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5687), 1, + anon_sym_COMMA, + STATE(2508), 1, + sym_heredoc_body, + STATE(2511), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -342808,7 +347271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 41, + ACTIONS(5631), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -342850,18 +347313,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [15244] = 6, + [15448] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5643), 1, + ACTIONS(5681), 1, anon_sym_COLON_COLON, + STATE(2509), 1, + sym_heredoc_body, + STATE(2519), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2507), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4561), 10, + ACTIONS(4594), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -342871,9 +347335,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4563), 39, - sym__start_of_brace_block, + ACTIONS(4596), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -342884,12 +347347,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -342908,23 +347375,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [15312] = 7, + [15518] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5629), 1, + ACTIONS(5681), 1, anon_sym_COLON_COLON, - STATE(2507), 1, - aux_sym_constant_repeat1, - STATE(2508), 1, + STATE(2510), 1, sym_heredoc_body, + STATE(2520), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4557), 10, + ACTIONS(4594), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -342934,9 +347398,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4559), 39, - sym__start_of_brace_block, + ACTIONS(4596), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -342947,12 +347410,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -342971,19 +347438,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [15382] = 5, + [15588] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2509), 1, - sym_heredoc_body, + ACTIONS(5696), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5648), 8, + STATE(2511), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -342992,7 +347459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5646), 43, + ACTIONS(5694), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -343010,12 +347477,10 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -343036,35 +347501,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [15448] = 11, + [15656] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5548), 1, - anon_sym_LBRACK, - ACTIONS(5550), 1, - anon_sym_STAR, - ACTIONS(5552), 1, + ACTIONS(5675), 1, anon_sym_PIPE, - ACTIONS(5554), 1, - anon_sym_DOT, - ACTIONS(5556), 1, - anon_sym_QMARK, - STATE(2510), 1, - sym_heredoc_body, - STATE(2520), 1, + STATE(2487), 1, aux_sym_union_type_repeat1, + STATE(2512), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4605), 38, + ACTIONS(4636), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -343085,10 +347543,12 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -343099,39 +347559,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [15526] = 11, + [15726] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5548), 1, - anon_sym_LBRACK, - ACTIONS(5550), 1, - anon_sym_STAR, - ACTIONS(5552), 1, - anon_sym_PIPE, - ACTIONS(5554), 1, - anon_sym_DOT, - ACTIONS(5556), 1, - anon_sym_QMARK, - STATE(2511), 1, + ACTIONS(5585), 1, + anon_sym_COLON_COLON, + STATE(2498), 1, + aux_sym_constant_repeat1, + STATE(2513), 1, sym_heredoc_body, - STATE(2520), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4611), 7, + ACTIONS(4584), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4613), 38, + ACTIONS(4586), 40, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -343146,16 +347601,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -343166,23 +347622,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - [15604] = 7, + [15796] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5560), 1, - anon_sym_COLON_COLON, - STATE(2479), 1, - aux_sym_constant_repeat1, - STATE(2512), 1, - sym_heredoc_body, + ACTIONS(5701), 1, + sym__string_literal_start, + STATE(2842), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 9, + STATE(2514), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5534), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -343191,8 +347649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 40, + ACTIONS(5532), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -343206,18 +347663,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -343228,24 +347683,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [15674] = 7, + anon_sym_when, + anon_sym_in, + [15866] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5560), 1, - anon_sym_COLON_COLON, - STATE(2513), 1, + ACTIONS(5704), 1, + anon_sym_COMMA, + STATE(2511), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(2515), 1, sym_heredoc_body, - STATE(2537), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 9, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -343254,9 +347711,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 40, + ACTIONS(5637), 41, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -343269,18 +347726,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -343291,101 +347745,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_else, - [15744] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5589), 1, - anon_sym_DOT_DOT, - ACTIONS(5591), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5595), 1, - anon_sym_PIPE, - ACTIONS(5597), 1, - anon_sym_CARET, - ACTIONS(5601), 1, - anon_sym_EQ_EQ, - ACTIONS(5607), 1, - anon_sym_AMP_STAR, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5613), 1, anon_sym_QMARK, - ACTIONS(5615), 1, anon_sym_AMP_AMP, - ACTIONS(5617), 1, anon_sym_PIPE_PIPE, - ACTIONS(5619), 1, - sym__start_of_index_operator, - ACTIONS(5625), 1, - sym_binary_ampersand, - ACTIONS(5650), 1, - anon_sym_COMMA, - STATE(2480), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(2514), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5599), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5605), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5603), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5621), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5623), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5585), 16, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [15850] = 5, + [15936] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2515), 1, + STATE(2516), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5654), 8, + ACTIONS(5708), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -343394,7 +347770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5652), 43, + ACTIONS(5706), 43, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -343412,6 +347788,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + sym__string_literal_start, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -343429,7 +347806,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -343438,17 +347814,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [15916] = 6, + [16002] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2516), 1, + ACTIONS(5712), 1, + anon_sym_of, + STATE(2517), 1, sym_heredoc_body, - STATE(2520), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(5714), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -343457,8 +347833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 41, + ACTIONS(5710), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -343473,18 +347848,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -343499,18 +347872,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [15984] = 6, + anon_sym_when, + anon_sym_in, + [16070] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5658), 1, - anon_sym_of, - STATE(2517), 1, + ACTIONS(5692), 1, + anon_sym_COMMA, + STATE(2491), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(2518), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5660), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -343519,7 +347897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5656), 42, + ACTIONS(5587), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -343541,7 +347919,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -343562,17 +347939,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [16052] = 6, + [16140] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5666), 1, - sym_regex_modifier, - STATE(2518), 1, - sym_heredoc_body, + ACTIONS(5716), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + STATE(2519), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -343581,9 +347959,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 42, + anon_sym_EQ, + ACTIONS(4600), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -343596,16 +347974,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -343616,25 +347996,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [16120] = 6, + [16208] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5672), 1, - anon_sym_EQ, + ACTIONS(5681), 1, + anon_sym_COLON_COLON, STATE(2519), 1, + aux_sym_constant_repeat1, + STATE(2520), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, + ACTIONS(4590), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -343643,9 +348022,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 42, + anon_sym_EQ, + ACTIONS(4592), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -343658,16 +348037,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -343678,37 +348059,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [16188] = 7, + [16278] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5552), 1, - anon_sym_PIPE, - STATE(2520), 1, + ACTIONS(5653), 1, + anon_sym_COLON_COLON, + STATE(2504), 1, + aux_sym_constant_repeat1, + STATE(2521), 1, sym_heredoc_body, - STATE(2523), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(4594), 10, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4584), 41, - sym__line_break, + anon_sym_COLON2, + ACTIONS(4596), 39, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -343720,16 +348099,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -343744,25 +348119,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [16258] = 7, + anon_sym_when, + anon_sym_in, + [16348] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5674), 1, - sym__string_literal_start, - STATE(2859), 1, - sym_string, + ACTIONS(5719), 1, + anon_sym_LPAREN2, + STATE(2522), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2521), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5499), 8, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -343771,8 +348146,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5497), 40, + anon_sym_EQ, + ACTIONS(4644), 41, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -343785,16 +348162,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -343808,21 +348187,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [16328] = 6, + [16416] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5681), 1, - sym_regex_modifier, - STATE(2522), 1, + ACTIONS(5723), 1, + anon_sym_of, + STATE(2523), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5679), 8, + ACTIONS(5725), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -343831,7 +348208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5677), 42, + ACTIONS(5721), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -343874,27 +348251,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [16396] = 6, + [16484] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5683), 1, + ACTIONS(5671), 1, + anon_sym_LBRACK, + ACTIONS(5673), 1, + anon_sym_STAR, + ACTIONS(5675), 1, anon_sym_PIPE, + ACTIONS(5677), 1, + anon_sym_DOT, + ACTIONS(5679), 1, + anon_sym_QMARK, + STATE(2512), 1, + aux_sym_union_type_repeat1, + STATE(2524), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2523), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(4638), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 41, + ACTIONS(4640), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -343915,12 +348300,10 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -343931,40 +348314,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [16464] = 11, + [16562] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5548), 1, - anon_sym_LBRACK, - ACTIONS(5550), 1, - anon_sym_STAR, - ACTIONS(5552), 1, - anon_sym_PIPE, - ACTIONS(5554), 1, - anon_sym_DOT, - ACTIONS(5556), 1, - anon_sym_QMARK, - STATE(2520), 1, - aux_sym_union_type_repeat1, - STATE(2524), 1, + ACTIONS(5727), 1, + anon_sym_COMMA, + STATE(2508), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(2525), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4609), 38, + anon_sym_DOT, + ACTIONS(5587), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -343979,15 +348354,14 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -343999,21 +348373,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [16542] = 6, + anon_sym_when, + anon_sym_in, + [16632] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5688), 1, + ACTIONS(5731), 1, anon_sym_of, - STATE(2525), 1, + STATE(2526), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5690), 8, + ACTIONS(5733), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -344022,7 +348400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5686), 42, + ACTIONS(5729), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -344065,19 +348443,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [16610] = 7, + [16700] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5560), 1, - anon_sym_COLON_COLON, - STATE(2513), 1, - aux_sym_constant_repeat1, - STATE(2526), 1, + ACTIONS(5687), 1, + anon_sym_COMMA, + STATE(2496), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(2527), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 9, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -344086,9 +348464,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4549), 40, + ACTIONS(5631), 41, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -344101,18 +348479,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -344123,22 +348498,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, anon_sym_else, - [16680] = 6, + anon_sym_when, + anon_sym_in, + [16770] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5696), 1, - sym_regex_modifier, - STATE(2527), 1, + ACTIONS(5737), 1, + anon_sym_of, + STATE(2528), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(5739), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -344147,7 +348525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 42, + ACTIONS(5735), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -344190,17 +348568,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [16748] = 6, + [16838] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5700), 1, - anon_sym_of, - STATE(2528), 1, + ACTIONS(5745), 1, + sym_regex_modifier, + STATE(2529), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5702), 8, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -344209,7 +348587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5698), 42, + ACTIONS(5741), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -344252,19 +348630,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [16816] = 7, + [16906] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5650), 1, - anon_sym_COMMA, - STATE(2480), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(2529), 1, + ACTIONS(5751), 1, + sym_regex_modifier, + STATE(2530), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -344273,7 +348649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 41, + ACTIONS(5747), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -344295,6 +348671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -344315,28 +348692,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [16886] = 7, + [16974] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5704), 1, - anon_sym_COMMA, - STATE(2530), 1, + ACTIONS(5671), 1, + anon_sym_LBRACK, + ACTIONS(5673), 1, + anon_sym_STAR, + ACTIONS(5675), 1, + anon_sym_PIPE, + ACTIONS(5677), 1, + anon_sym_DOT, + ACTIONS(5679), 1, + anon_sym_QMARK, + STATE(2512), 1, + aux_sym_union_type_repeat1, + STATE(2531), 1, sym_heredoc_body, - STATE(2534), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5562), 41, + anon_sym_EQ, + ACTIONS(4650), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -344351,14 +348735,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -344370,29 +348755,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [16956] = 8, + [17052] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(5558), 1, - anon_sym_DASH_GT, - STATE(2531), 1, + ACTIONS(5755), 1, + anon_sym_of, + STATE(2532), 1, sym_heredoc_body, - STATE(10205), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(5757), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -344401,9 +348778,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 39, + ACTIONS(5753), 42, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -344423,6 +348800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -344438,184 +348816,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [17028] = 25, + [17120] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5572), 1, - anon_sym_COMMA, - ACTIONS(5589), 1, - anon_sym_DOT_DOT, - ACTIONS(5591), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5595), 1, + ACTIONS(5671), 1, + anon_sym_LBRACK, + ACTIONS(5673), 1, + anon_sym_STAR, + ACTIONS(5675), 1, anon_sym_PIPE, - ACTIONS(5597), 1, - anon_sym_CARET, - ACTIONS(5601), 1, - anon_sym_EQ_EQ, - ACTIONS(5607), 1, - anon_sym_AMP_STAR, - ACTIONS(5611), 1, + ACTIONS(5677), 1, anon_sym_DOT, - ACTIONS(5613), 1, + ACTIONS(5679), 1, anon_sym_QMARK, - ACTIONS(5615), 1, - anon_sym_AMP_AMP, - ACTIONS(5617), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5619), 1, - sym__start_of_index_operator, - ACTIONS(5625), 1, - sym_binary_ampersand, - STATE(2532), 1, + STATE(2512), 1, + aux_sym_union_type_repeat1, + STATE(2533), 1, sym_heredoc_body, - STATE(2538), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5599), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5605), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, + ACTIONS(4619), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5603), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5621), 4, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4621), 38, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5623), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5570), 16, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [17134] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5589), 1, - anon_sym_DOT_DOT, - ACTIONS(5591), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(5595), 1, - anon_sym_PIPE, - ACTIONS(5597), 1, + anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, - ACTIONS(5601), 1, - anon_sym_EQ_EQ, - ACTIONS(5607), 1, - anon_sym_AMP_STAR, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5613), 1, - anon_sym_QMARK, - ACTIONS(5615), 1, - anon_sym_AMP_AMP, - ACTIONS(5617), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5619), 1, - sym__start_of_index_operator, - ACTIONS(5625), 1, - sym_binary_ampersand, - ACTIONS(5706), 1, - anon_sym_COMMA, - STATE(2495), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(2533), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5599), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5605), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5603), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(5621), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5623), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5570), 16, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [17240] = 6, + [17198] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5710), 1, - anon_sym_COMMA, + ACTIONS(123), 1, + sym__string_literal_start, + STATE(2514), 1, + aux_sym_chained_string_repeat1, + STATE(2534), 1, + sym_heredoc_body, + STATE(2842), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2534), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5713), 8, + ACTIONS(5541), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -344624,9 +348911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 41, + ACTIONS(5539), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -344646,6 +348932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -344661,24 +348948,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [17308] = 7, + [17270] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5706), 1, - anon_sym_COMMA, - STATE(2495), 1, - aux_sym_argument_list_no_parens_repeat1, + ACTIONS(123), 1, + sym__string_literal_start, + STATE(2534), 1, + aux_sym_chained_string_repeat1, STATE(2535), 1, sym_heredoc_body, + STATE(2842), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -344687,9 +348975,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 41, + ACTIONS(135), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -344709,6 +348996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -344724,22 +349012,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [17378] = 6, + [17342] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5717), 1, - anon_sym_of, STATE(2536), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5719), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -344748,7 +349033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5715), 42, + anon_sym_EQ, + ACTIONS(4785), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -344791,18 +349077,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [17446] = 6, + [17408] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5721), 1, - anon_sym_COLON_COLON, + STATE(2512), 1, + aux_sym_union_type_repeat1, + STATE(2537), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2537), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4561), 9, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -344812,8 +349097,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4563), 40, + ACTIONS(4629), 41, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -344848,24 +349134,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_else, - [17514] = 7, + [17476] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5650), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - STATE(2534), 1, - aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5759), 1, + anon_sym_DASH_GT, STATE(2538), 1, sym_heredoc_body, + STATE(10282), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -344874,9 +349162,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 41, + anon_sym_EQ, + ACTIONS(4785), 39, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -344911,22 +349199,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [17584] = 6, + [17548] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5431), 1, - anon_sym_LPAREN2, + ACTIONS(5765), 1, + anon_sym_EQ, STATE(2539), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -344935,7 +349222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 42, + ACTIONS(5761), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -344978,17 +349265,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [17652] = 6, + [17616] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5726), 1, - anon_sym_of, + ACTIONS(5771), 1, + sym_regex_modifier, STATE(2540), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5728), 8, + ACTIONS(5769), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -344997,7 +349284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5724), 42, + ACTIONS(5767), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -345040,17 +349327,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [17720] = 6, + [17684] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5732), 1, - anon_sym_of, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(5759), 1, + anon_sym_DASH_GT, STATE(2541), 1, sym_heredoc_body, + STATE(10282), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5734), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -345059,9 +349350,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5730), 42, + anon_sym_EQ, + ACTIONS(4785), 39, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -345081,7 +349372,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -345097,26 +349387,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [17788] = 8, + [17756] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(121), 1, - sym__string_literal_start, - STATE(2487), 1, - aux_sym_chained_string_repeat1, + ACTIONS(5591), 1, + anon_sym_DOT_DOT, + ACTIONS(5593), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5597), 1, + anon_sym_PIPE, + ACTIONS(5599), 1, + anon_sym_CARET, + ACTIONS(5603), 1, + anon_sym_EQ_EQ, + ACTIONS(5609), 1, + anon_sym_AMP_STAR, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5615), 1, + anon_sym_QMARK, + ACTIONS(5617), 1, + anon_sym_AMP_AMP, + ACTIONS(5619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5621), 1, + sym__start_of_index_operator, + ACTIONS(5627), 1, + sym_binary_ampersand, + ACTIONS(5727), 1, + anon_sym_COMMA, + STATE(2508), 1, + aux_sym_argument_list_no_parens_repeat1, STATE(2542), 1, sym_heredoc_body, - STATE(2859), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5595), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5605), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5623), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(5625), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5587), 16, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [17862] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5591), 1, + anon_sym_DOT_DOT, + ACTIONS(5593), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5597), 1, + anon_sym_PIPE, + ACTIONS(5599), 1, + anon_sym_CARET, + ACTIONS(5603), 1, + anon_sym_EQ_EQ, + ACTIONS(5609), 1, + anon_sym_AMP_STAR, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5615), 1, + anon_sym_QMARK, + ACTIONS(5617), 1, + anon_sym_AMP_AMP, + ACTIONS(5619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5621), 1, + sym__start_of_index_operator, + ACTIONS(5627), 1, + sym_binary_ampersand, + STATE(2543), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5595), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5605), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5623), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(5625), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5773), 17, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_end, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [17963] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2544), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5777), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -345125,8 +349567,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 40, + ACTIONS(5775), 42, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -345162,19 +349605,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [17860] = 5, + [18028] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2543), 1, + ACTIONS(5591), 1, + anon_sym_DOT_DOT, + ACTIONS(5593), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5597), 1, + anon_sym_PIPE, + ACTIONS(5599), 1, + anon_sym_CARET, + ACTIONS(5603), 1, + anon_sym_EQ_EQ, + ACTIONS(5609), 1, + anon_sym_AMP_STAR, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5615), 1, + anon_sym_QMARK, + ACTIONS(5617), 1, + anon_sym_AMP_AMP, + ACTIONS(5619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5621), 1, + sym__start_of_index_operator, + ACTIONS(5627), 1, + sym_binary_ampersand, + STATE(2545), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4627), 9, + ACTIONS(5601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5595), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5605), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5623), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(5625), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5779), 17, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_end, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [18129] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2546), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5570), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -345183,8 +349705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4629), 41, + ACTIONS(5568), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -345199,18 +349720,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -345225,16 +349744,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [17925] = 5, + anon_sym_when, + anon_sym_in, + [18194] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2544), 1, + STATE(2547), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5738), 8, + ACTIONS(5783), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -345243,7 +349765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5736), 42, + ACTIONS(5781), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -345286,15 +349808,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [17990] = 5, + [18259] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2545), 1, + STATE(2548), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5742), 8, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -345303,7 +349825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5740), 42, + ACTIONS(5785), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -345346,85 +349868,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [18055] = 5, + [18324] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2546), 1, + ACTIONS(5591), 1, + anon_sym_DOT_DOT, + ACTIONS(5593), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5597), 1, + anon_sym_PIPE, + ACTIONS(5599), 1, + anon_sym_CARET, + ACTIONS(5603), 1, + anon_sym_EQ_EQ, + ACTIONS(5609), 1, + anon_sym_AMP_STAR, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5615), 1, + anon_sym_QMARK, + ACTIONS(5617), 1, + anon_sym_AMP_AMP, + ACTIONS(5619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5621), 1, + sym__start_of_index_operator, + ACTIONS(5627), 1, + sym_binary_ampersand, + STATE(2549), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5746), 8, - anon_sym_DOT_DOT, + ACTIONS(5601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5595), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5744), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5605), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5625), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5694), 17, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [18120] = 5, + [18425] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2547), 1, + ACTIONS(5789), 1, + anon_sym_LBRACK, + ACTIONS(5791), 1, + anon_sym_STAR, + ACTIONS(5793), 1, + anon_sym_PIPE, + ACTIONS(5795), 1, + anon_sym_DOT, + ACTIONS(5797), 1, + anon_sym_QMARK, + STATE(2550), 1, sym_heredoc_body, + STATE(2732), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5750), 8, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5748), 42, - sym__line_break, + anon_sym_EQ, + ACTIONS(4625), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -345436,17 +349986,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -345458,23 +350005,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [18185] = 5, + [18502] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2548), 1, + STATE(2551), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5754), 8, + ACTIONS(5801), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -345483,7 +350029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5752), 42, + ACTIONS(5799), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -345526,15 +350072,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [18250] = 5, + [18567] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2549), 1, + STATE(2552), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5758), 8, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -345543,7 +350089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5756), 42, + ACTIONS(5785), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -345586,15 +350132,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [18315] = 5, + [18632] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2550), 1, + STATE(2553), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5762), 8, + ACTIONS(5805), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -345603,7 +350149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5760), 42, + ACTIONS(5803), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -345646,15 +350192,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [18380] = 5, + [18697] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2551), 1, + STATE(2554), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5766), 8, + ACTIONS(5809), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -345663,7 +350209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5764), 42, + ACTIONS(5807), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -345706,15 +350252,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [18445] = 5, + [18762] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2552), 1, + STATE(2555), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5770), 8, + ACTIONS(5813), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -345723,7 +350269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5768), 42, + ACTIONS(5811), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -345766,15 +350312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [18510] = 5, + [18827] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2553), 1, + STATE(2556), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5774), 8, + ACTIONS(4700), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -345783,7 +350329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5772), 42, + anon_sym_EQ, + ACTIONS(4702), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -345798,16 +350345,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -345822,45 +350371,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [18575] = 5, + [18892] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2554), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5778), 8, - anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(5597), 1, anon_sym_PIPE, + ACTIONS(5599), 1, + anon_sym_CARET, + ACTIONS(5603), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(5609), 1, anon_sym_AMP_STAR, + ACTIONS(5613), 1, anon_sym_DOT, - ACTIONS(5776), 42, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5621), 1, sym__start_of_index_operator, + ACTIONS(5627), 1, + sym_binary_ampersand, + STATE(2557), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5605), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5625), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5817), 4, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5815), 23, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -345868,16 +350434,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -345886,15 +350444,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [18640] = 5, + [18981] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2555), 1, + STATE(2558), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5782), 8, + ACTIONS(5559), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -345903,9 +350461,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5780), 42, + ACTIONS(5557), 42, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -345921,6 +350478,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + sym__string_literal_start, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -345938,23 +350496,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [18705] = 5, + [19046] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2556), 1, + STATE(2559), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5786), 8, + ACTIONS(5821), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -345963,7 +350521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5784), 42, + ACTIONS(5819), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -346006,15 +350564,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [18770] = 5, + [19111] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2557), 1, + ACTIONS(5823), 1, + anon_sym_COLON_COLON, + STATE(2560), 1, sym_heredoc_body, + STATE(2643), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5790), 8, + ACTIONS(4594), 10, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -346023,9 +350585,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5788), 42, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + anon_sym_COLON2, + ACTIONS(4596), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -346036,18 +350598,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -346058,83 +350619,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [18835] = 5, + [19180] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2558), 1, + ACTIONS(5591), 1, + anon_sym_DOT_DOT, + ACTIONS(5593), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5597), 1, + anon_sym_PIPE, + ACTIONS(5599), 1, + anon_sym_CARET, + ACTIONS(5603), 1, + anon_sym_EQ_EQ, + ACTIONS(5609), 1, + anon_sym_AMP_STAR, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5615), 1, + anon_sym_QMARK, + ACTIONS(5617), 1, + anon_sym_AMP_AMP, + ACTIONS(5619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5621), 1, + sym__start_of_index_operator, + ACTIONS(5627), 1, + sym_binary_ampersand, + STATE(2561), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5794), 8, - anon_sym_DOT_DOT, + ACTIONS(5601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5595), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5792), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5605), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5625), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5825), 17, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [18900] = 5, + [19281] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2559), 1, + STATE(2562), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5798), 8, + ACTIONS(5829), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -346143,7 +350721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5796), 42, + ACTIONS(5827), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -346186,15 +350764,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [18965] = 5, + [19346] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2560), 1, + STATE(2563), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5802), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -346203,7 +350781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5800), 42, + ACTIONS(135), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -346246,15 +350824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19030] = 5, + [19411] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2561), 1, + STATE(2564), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5806), 8, + ACTIONS(5833), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -346263,7 +350841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5804), 42, + ACTIONS(5831), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -346306,15 +350884,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19095] = 5, + [19476] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2562), 1, + STATE(2565), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5810), 8, + ACTIONS(5837), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -346323,7 +350901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5808), 42, + ACTIONS(5835), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -346366,15 +350944,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19160] = 5, + [19541] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2563), 1, + STATE(2566), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5814), 8, + ACTIONS(5841), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -346383,7 +350961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5812), 42, + ACTIONS(5839), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -346426,15 +351004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19225] = 5, + [19606] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2564), 1, + STATE(2567), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5818), 8, + ACTIONS(5845), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -346443,7 +351021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5816), 42, + ACTIONS(5843), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -346486,15 +351064,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19290] = 5, + [19671] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2565), 1, + STATE(2568), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5822), 8, + ACTIONS(5849), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -346503,7 +351081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5820), 42, + ACTIONS(5847), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -346546,15 +351124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19355] = 5, + [19736] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2566), 1, + STATE(2569), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5826), 8, + ACTIONS(4720), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -346563,7 +351141,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5824), 42, + anon_sym_EQ, + ACTIONS(4722), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -346578,16 +351157,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -346602,19 +351183,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [19420] = 5, + [19801] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2567), 1, + STATE(2570), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5830), 8, + ACTIONS(5853), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -346623,7 +351201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5828), 42, + ACTIONS(5851), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -346666,15 +351244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19485] = 5, + [19866] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2568), 1, + STATE(2571), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5834), 8, + ACTIONS(5857), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -346683,7 +351261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5832), 42, + ACTIONS(5855), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -346726,15 +351304,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19550] = 5, + [19931] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2569), 1, + STATE(2572), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5838), 8, + ACTIONS(5861), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -346743,7 +351321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5836), 42, + ACTIONS(5859), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -346786,15 +351364,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19615] = 5, + [19996] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2570), 1, + STATE(2573), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5842), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -346803,7 +351381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5840), 42, + ACTIONS(5545), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -346846,93 +351424,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19680] = 23, + [20061] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5589), 1, + STATE(2574), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5865), 8, anon_sym_DOT_DOT, - ACTIONS(5591), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5595), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(5597), 1, - anon_sym_CARET, - ACTIONS(5601), 1, anon_sym_EQ_EQ, - ACTIONS(5607), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5611), 1, anon_sym_DOT, - ACTIONS(5613), 1, + ACTIONS(5863), 42, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(5615), 1, anon_sym_AMP_AMP, - ACTIONS(5617), 1, anon_sym_PIPE_PIPE, - ACTIONS(5619), 1, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [20126] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5609), 1, + anon_sym_AMP_STAR, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5621), 1, sym__start_of_index_operator, - ACTIONS(5625), 1, - sym_binary_ampersand, - STATE(2571), 1, + STATE(2575), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5599), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5605), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, + ACTIONS(5611), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, + ACTIONS(5623), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(5625), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5869), 6, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5603), 4, + ACTIONS(5867), 31, + sym__line_break, + sym__start_of_brace_block, + sym_binary_ampersand, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(5621), 4, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [20203] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2576), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5547), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5545), 42, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5623), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - ACTIONS(5708), 17, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [20268] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2577), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5873), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5871), 42, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [19781] = 5, + [20333] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2572), 1, + STATE(2578), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5846), 8, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -346941,7 +351687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5844), 42, + ACTIONS(5871), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -346984,15 +351730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19846] = 5, + [20398] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2573), 1, + STATE(2579), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -347001,7 +351747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 42, + ACTIONS(5875), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -347044,15 +351790,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19911] = 5, + [20463] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2574), 1, + STATE(2580), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5850), 8, + ACTIONS(5881), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -347061,7 +351807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5848), 42, + ACTIONS(5879), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -347104,15 +351850,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [19976] = 5, + [20528] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2575), 1, + STATE(2581), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5854), 8, + ACTIONS(5885), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -347121,7 +351867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5852), 42, + ACTIONS(5883), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -347164,15 +351910,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [20041] = 5, + [20593] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2576), 1, + STATE(2582), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(5889), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -347181,7 +351927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5856), 42, + ACTIONS(5887), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -347224,15 +351970,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [20106] = 5, + [20658] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2577), 1, + STATE(2583), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5862), 8, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -347241,7 +351987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5860), 42, + ACTIONS(5741), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -347284,15 +352030,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [20171] = 5, + [20723] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2578), 1, + STATE(2584), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5866), 8, + ACTIONS(5893), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -347301,7 +352047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5864), 42, + ACTIONS(5891), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -347344,15 +352090,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [20236] = 5, + [20788] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2579), 1, + STATE(2585), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(5897), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -347361,7 +352107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5868), 42, + ACTIONS(5895), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -347404,15 +352150,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [20301] = 5, + [20853] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2580), 1, + STATE(2586), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(5901), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -347421,7 +352167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5872), 42, + ACTIONS(5899), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -347464,35 +352210,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [20366] = 11, + [20918] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5548), 1, - anon_sym_LBRACK, - ACTIONS(5550), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_DOT, - ACTIONS(5556), 1, - anon_sym_QMARK, - ACTIONS(5876), 1, - anon_sym_PIPE, - STATE(2581), 1, + STATE(2587), 1, sym_heredoc_body, - STATE(2584), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4605), 37, + anon_sym_DOT, + ACTIONS(5903), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -347507,12 +352242,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -347526,19 +352262,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [20443] = 5, + anon_sym_when, + anon_sym_in, + [20983] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2582), 1, + STATE(2588), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -347547,7 +352287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5878), 42, + ACTIONS(5747), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -347590,15 +352330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [20508] = 5, + [21048] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2583), 1, + STATE(2589), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5713), 8, + ACTIONS(5909), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -347607,7 +352347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 42, + ACTIONS(5907), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -347650,28 +352390,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [20573] = 7, + [21113] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5876), 1, - anon_sym_PIPE, - STATE(2584), 1, + STATE(2590), 1, sym_heredoc_body, - STATE(2585), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(5913), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 40, + ACTIONS(5911), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -347686,17 +352422,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -347711,28 +352446,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [20642] = 6, + anon_sym_when, + anon_sym_in, + [21178] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5882), 1, - anon_sym_PIPE, + STATE(2591), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2585), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(5917), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 40, + ACTIONS(5915), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -347747,17 +352482,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -347772,36 +352506,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [20709] = 11, + anon_sym_when, + anon_sym_in, + [21243] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5548), 1, - anon_sym_LBRACK, - ACTIONS(5550), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_DOT, - ACTIONS(5556), 1, - anon_sym_QMARK, - ACTIONS(5876), 1, - anon_sym_PIPE, - STATE(2584), 1, - aux_sym_union_type_repeat1, - STATE(2586), 1, + STATE(2592), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(5921), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4609), 37, + anon_sym_DOT, + ACTIONS(5919), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -347816,12 +352542,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -347835,85 +352562,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [20786] = 11, + anon_sym_when, + anon_sym_in, + [21308] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5548), 1, - anon_sym_LBRACK, - ACTIONS(5550), 1, - anon_sym_STAR, - ACTIONS(5554), 1, + ACTIONS(5591), 1, + anon_sym_DOT_DOT, + ACTIONS(5593), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5597), 1, + anon_sym_PIPE, + ACTIONS(5599), 1, + anon_sym_CARET, + ACTIONS(5603), 1, + anon_sym_EQ_EQ, + ACTIONS(5609), 1, + anon_sym_AMP_STAR, + ACTIONS(5613), 1, anon_sym_DOT, - ACTIONS(5556), 1, + ACTIONS(5615), 1, anon_sym_QMARK, - ACTIONS(5876), 1, - anon_sym_PIPE, - STATE(2584), 1, - aux_sym_union_type_repeat1, - STATE(2587), 1, + ACTIONS(5617), 1, + anon_sym_AMP_AMP, + ACTIONS(5619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5621), 1, + sym__start_of_index_operator, + ACTIONS(5627), 1, + sym_binary_ampersand, + STATE(2593), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, - anon_sym_DOT_DOT, + ACTIONS(5601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5595), 3, anon_sym_LT, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 37, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5605), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5625), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5923), 17, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [20863] = 5, + anon_sym_when, + anon_sym_in, + [21409] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2588), 1, + STATE(2594), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5887), 8, + ACTIONS(5927), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -347922,7 +352665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5885), 42, + ACTIONS(5925), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -347965,15 +352708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [20928] = 5, + [21474] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2589), 1, + STATE(2595), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5891), 8, + ACTIONS(5931), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -347982,7 +352725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5889), 42, + ACTIONS(5929), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -348025,19 +352768,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [20993] = 7, + [21539] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5619), 1, - sym__start_of_index_operator, - STATE(2590), 1, + STATE(2596), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5895), 7, + ACTIONS(5935), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -348045,9 +352784,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5893), 41, + anon_sym_DOT, + ACTIONS(5933), 42, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -348087,15 +352828,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [21062] = 5, + [21604] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2591), 1, + STATE(2597), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5899), 8, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -348104,7 +352845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5897), 42, + ACTIONS(5694), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -348147,15 +352888,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [21127] = 5, + [21669] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2592), 1, + STATE(2598), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -348164,8 +352905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4599), 41, + ACTIONS(5937), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -348180,18 +352920,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -348206,16 +352944,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [21192] = 5, + anon_sym_when, + anon_sym_in, + [21734] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2593), 1, + STATE(2599), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5903), 8, + ACTIONS(5943), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -348224,7 +352965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5901), 42, + ACTIONS(5941), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -348267,15 +353008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [21257] = 5, + [21799] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2594), 1, + STATE(2600), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5907), 8, + ACTIONS(5947), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -348284,7 +353025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5905), 42, + ACTIONS(5945), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -348327,15 +353068,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [21322] = 5, + [21864] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2595), 1, + STATE(2601), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5911), 8, + ACTIONS(5951), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -348344,7 +353085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5909), 42, + ACTIONS(5949), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -348387,15 +353128,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [21387] = 5, + [21929] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2596), 1, + STATE(2602), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5915), 8, + ACTIONS(5955), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -348404,7 +353145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5913), 42, + ACTIONS(5953), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -348447,15 +353188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [21452] = 5, + [21994] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2597), 1, + STATE(2603), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5919), 8, + ACTIONS(5959), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -348464,7 +353205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5917), 42, + ACTIONS(5957), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -348507,91 +353248,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [21517] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5595), 1, - anon_sym_PIPE, - ACTIONS(5597), 1, - anon_sym_CARET, - ACTIONS(5601), 1, - anon_sym_EQ_EQ, - ACTIONS(5607), 1, - anon_sym_AMP_STAR, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5615), 1, - anon_sym_AMP_AMP, - ACTIONS(5617), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5619), 1, - sym__start_of_index_operator, - ACTIONS(5625), 1, - sym_binary_ampersand, - ACTIONS(5923), 1, - anon_sym_DOT_DOT, - STATE(2598), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5599), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5605), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5603), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5621), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5623), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5921), 19, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - anon_sym_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [21614] = 5, + [22059] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2599), 1, + ACTIONS(5961), 1, + anon_sym_LPAREN2, + STATE(2604), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5927), 8, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -348600,8 +353267,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5925), 42, - sym__line_break, + anon_sym_EQ, + ACTIONS(4644), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -348613,18 +353280,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -348638,20 +353304,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [21679] = 5, + [22126] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2600), 1, + STATE(2605), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5931), 8, + ACTIONS(5965), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -348660,7 +353326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5929), 42, + ACTIONS(5963), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -348703,15 +353369,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [21744] = 5, + [22191] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2601), 1, + STATE(2606), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5935), 8, + ACTIONS(5969), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -348720,7 +353386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5933), 42, + ACTIONS(5967), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -348763,15 +353429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [21809] = 5, + [22256] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2602), 1, + STATE(2607), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4651), 9, + ACTIONS(5973), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -348780,8 +353446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4653), 41, + ACTIONS(5971), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -348796,18 +353461,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -348822,16 +353485,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [21874] = 5, + anon_sym_when, + anon_sym_in, + [22321] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2603), 1, + STATE(2608), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4615), 9, + ACTIONS(4638), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -348841,9 +353507,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4617), 41, + ACTIONS(4640), 41, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -348856,18 +353521,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -348881,30 +353545,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_elsif, anon_sym_else, - [21939] = 7, + anon_sym_when, + anon_sym_in, + [22386] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5937), 1, - anon_sym_PIPE, - STATE(2604), 1, + STATE(2609), 1, sym_heredoc_body, - STATE(2615), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(4692), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4584), 40, + ACTIONS(4694), 41, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -348916,13 +353580,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -348940,68 +353607,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [22008] = 21, + [22451] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5595), 1, - anon_sym_PIPE, ACTIONS(5597), 1, + anon_sym_PIPE, + ACTIONS(5599), 1, anon_sym_CARET, - ACTIONS(5601), 1, + ACTIONS(5603), 1, anon_sym_EQ_EQ, - ACTIONS(5607), 1, + ACTIONS(5609), 1, anon_sym_AMP_STAR, - ACTIONS(5611), 1, + ACTIONS(5613), 1, anon_sym_DOT, - ACTIONS(5615), 1, - anon_sym_AMP_AMP, ACTIONS(5617), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5621), 1, sym__start_of_index_operator, - ACTIONS(5625), 1, + ACTIONS(5627), 1, sym_binary_ampersand, - ACTIONS(5941), 1, + ACTIONS(5977), 1, anon_sym_DOT_DOT, - STATE(2605), 1, + STATE(2610), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5599), 2, + ACTIONS(5601), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5605), 2, + ACTIONS(5607), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, + ACTIONS(5611), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, + ACTIONS(5595), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5603), 4, + ACTIONS(5605), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(5621), 4, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5623), 4, + ACTIONS(5625), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5939), 19, + ACTIONS(5975), 19, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -349021,101 +353685,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [22105] = 5, + [22548] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2606), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5945), 8, - anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(5597), 1, anon_sym_PIPE, + ACTIONS(5599), 1, + anon_sym_CARET, + ACTIONS(5603), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(5609), 1, anon_sym_AMP_STAR, + ACTIONS(5613), 1, anon_sym_DOT, - ACTIONS(5943), 42, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5617), 1, + anon_sym_AMP_AMP, + ACTIONS(5619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5621), 1, sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, + ACTIONS(5627), 1, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, + ACTIONS(5981), 1, + anon_sym_DOT_DOT, + STATE(2611), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5601), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(5607), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(5611), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [22170] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2607), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5949), 8, - anon_sym_DOT_DOT, + ACTIONS(5595), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5947), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5605), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5625), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5979), 19, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -349123,33 +353755,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [22235] = 5, + [22645] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2608), 1, + STATE(2612), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5953), 8, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -349158,7 +353778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5951), 42, + ACTIONS(5983), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -349201,75 +353821,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [22300] = 5, + [22710] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2609), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4663), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4665), 41, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [22365] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2610), 1, + STATE(2613), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4675), 9, + ACTIONS(5989), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -349278,8 +353838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4677), 41, + ACTIONS(5987), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -349294,18 +353853,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -349320,16 +353877,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [22430] = 5, + anon_sym_when, + anon_sym_in, + [22775] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2611), 1, + STATE(2614), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4679), 9, + ACTIONS(5993), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -349338,8 +353898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4681), 41, + ACTIONS(5991), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -349354,18 +353913,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -349380,16 +353937,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [22495] = 5, + anon_sym_when, + anon_sym_in, + [22840] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2612), 1, + STATE(2615), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -349398,7 +353958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5955), 42, + ACTIONS(5995), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -349441,15 +354001,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [22560] = 5, + [22905] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2613), 1, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5621), 1, + sym__start_of_index_operator, + STATE(2616), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5961), 8, + ACTIONS(6001), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -349457,11 +354021,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5959), 42, + ACTIONS(5999), 41, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -349501,15 +354063,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [22625] = 5, + [22974] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2614), 1, + STATE(2617), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4631), 9, + ACTIONS(6005), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -349518,8 +354080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4633), 41, + ACTIONS(6003), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -349534,76 +354095,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [22690] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5963), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(2615), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 40, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -349617,20 +354118,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [22757] = 5, + [23039] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2616), 1, + STATE(2618), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5968), 8, + ACTIONS(6009), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -349639,7 +354140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5966), 42, + ACTIONS(6007), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -349682,15 +354183,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [22822] = 5, + [23104] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2617), 1, + STATE(2619), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4655), 9, + ACTIONS(6013), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -349699,8 +354200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4657), 41, + ACTIONS(6011), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -349715,18 +354215,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -349741,26 +354239,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [22887] = 5, + anon_sym_when, + anon_sym_in, + [23169] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2618), 1, + ACTIONS(5671), 1, + anon_sym_LBRACK, + ACTIONS(5673), 1, + anon_sym_STAR, + ACTIONS(5677), 1, + anon_sym_DOT, + ACTIONS(5679), 1, + anon_sym_QMARK, + ACTIONS(6015), 1, + anon_sym_PIPE, + STATE(2620), 1, sym_heredoc_body, + STATE(2673), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4635), 9, + ACTIONS(4668), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4637), 41, + ACTIONS(4670), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -349781,12 +354292,9 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -349797,20 +354305,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [22952] = 5, + [23246] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2619), 1, + STATE(2621), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4643), 9, + ACTIONS(6019), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -349819,8 +354326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4645), 41, + ACTIONS(6017), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -349835,18 +354341,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -349861,16 +354365,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [23017] = 5, + anon_sym_when, + anon_sym_in, + [23311] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2620), 1, + STATE(2622), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5972), 8, + ACTIONS(6023), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -349879,7 +354386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5970), 42, + ACTIONS(6021), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -349922,75 +354429,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [23082] = 5, + [23376] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2621), 1, + ACTIONS(5591), 1, + anon_sym_DOT_DOT, + ACTIONS(5593), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5597), 1, + anon_sym_PIPE, + ACTIONS(5599), 1, + anon_sym_CARET, + ACTIONS(5603), 1, + anon_sym_EQ_EQ, + ACTIONS(5609), 1, + anon_sym_AMP_STAR, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5615), 1, + anon_sym_QMARK, + ACTIONS(5617), 1, + anon_sym_AMP_AMP, + ACTIONS(5619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5621), 1, + sym__start_of_index_operator, + ACTIONS(5627), 1, + sym_binary_ampersand, + STATE(2623), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5976), 8, - anon_sym_DOT_DOT, + ACTIONS(5601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5595), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5974), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5605), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5625), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6025), 17, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [23147] = 5, + [23477] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2622), 1, + STATE(2624), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5980), 8, + ACTIONS(6029), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -349999,7 +354524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5978), 42, + ACTIONS(6027), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -350042,15 +354567,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [23212] = 5, + [23542] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2623), 1, + STATE(2625), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4659), 9, + ACTIONS(6033), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -350059,8 +354584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4661), 41, + ACTIONS(6031), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -350075,18 +354599,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -350101,26 +354623,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [23277] = 5, + anon_sym_when, + anon_sym_in, + [23607] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2624), 1, + ACTIONS(5789), 1, + anon_sym_LBRACK, + ACTIONS(5791), 1, + anon_sym_STAR, + ACTIONS(5793), 1, + anon_sym_PIPE, + ACTIONS(5795), 1, + anon_sym_DOT, + ACTIONS(5797), 1, + anon_sym_QMARK, + STATE(2626), 1, sym_heredoc_body, + STATE(2732), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5984), 8, + ACTIONS(4638), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5982), 42, - sym__line_break, + anon_sym_EQ, + ACTIONS(4640), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -350132,17 +354667,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -350154,43 +354686,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [23342] = 11, + [23684] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5937), 1, - anon_sym_PIPE, - ACTIONS(5986), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - ACTIONS(5990), 1, - anon_sym_DOT, - ACTIONS(5992), 1, - anon_sym_QMARK, - STATE(2604), 1, - aux_sym_union_type_repeat1, - STATE(2625), 1, + STATE(2627), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4609), 37, + ACTIONS(4600), 41, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -350202,15 +354724,19 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -350221,22 +354747,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_LPAREN2, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [23419] = 5, + [23749] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2626), 1, + ACTIONS(1221), 1, + anon_sym_COLON, + ACTIONS(5518), 1, + anon_sym_COLON_COLON, + STATE(2406), 1, + aux_sym_constant_repeat1, + STATE(2628), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5996), 8, + ACTIONS(4584), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -350245,7 +354776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5994), 42, + ACTIONS(4586), 39, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -350260,13 +354791,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -350280,33 +354810,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [23484] = 5, + [23820] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2627), 1, + ACTIONS(5671), 1, + anon_sym_LBRACK, + ACTIONS(5673), 1, + anon_sym_STAR, + ACTIONS(5677), 1, + anon_sym_DOT, + ACTIONS(5679), 1, + anon_sym_QMARK, + ACTIONS(6015), 1, + anon_sym_PIPE, + STATE(2629), 1, sym_heredoc_body, + STATE(2673), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4623), 9, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4625), 41, + ACTIONS(4650), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -350327,12 +354865,9 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -350343,24 +354878,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [23549] = 7, + [23897] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5619), 1, - sym__start_of_index_operator, - STATE(2628), 1, + STATE(2630), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6000), 7, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -350368,9 +354898,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5998), 41, + anon_sym_DOT, + ACTIONS(6035), 42, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -350410,143 +354942,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [23618] = 7, + [23962] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, + ACTIONS(5591), 1, + anon_sym_DOT_DOT, + ACTIONS(5593), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5597), 1, + anon_sym_PIPE, + ACTIONS(5599), 1, + anon_sym_CARET, + ACTIONS(5603), 1, + anon_sym_EQ_EQ, + ACTIONS(5609), 1, + anon_sym_AMP_STAR, + ACTIONS(5613), 1, anon_sym_DOT, + ACTIONS(5615), 1, + anon_sym_QMARK, + ACTIONS(5617), 1, + anon_sym_AMP_AMP, ACTIONS(5619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5621), 1, sym__start_of_index_operator, - STATE(2629), 1, + ACTIONS(5627), 1, + sym_binary_ampersand, + STATE(2631), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6004), 7, - anon_sym_DOT_DOT, + ACTIONS(5601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5595), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6002), 41, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5605), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5625), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6039), 17, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [23687] = 11, + [24063] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5937), 1, - anon_sym_PIPE, - ACTIONS(5986), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - ACTIONS(5990), 1, - anon_sym_DOT, - ACTIONS(5992), 1, - anon_sym_QMARK, - STATE(2604), 1, - aux_sym_union_type_repeat1, - STATE(2630), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4568), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 37, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [23764] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2631), 1, + STATE(2632), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6008), 8, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -350555,7 +355037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6006), 42, + ACTIONS(6041), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -350598,67 +355080,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [23829] = 23, + [24128] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5589), 1, - anon_sym_DOT_DOT, - ACTIONS(5591), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5595), 1, - anon_sym_PIPE, ACTIONS(5597), 1, + anon_sym_PIPE, + ACTIONS(5599), 1, anon_sym_CARET, - ACTIONS(5601), 1, + ACTIONS(5603), 1, anon_sym_EQ_EQ, - ACTIONS(5607), 1, + ACTIONS(5609), 1, anon_sym_AMP_STAR, - ACTIONS(5611), 1, - anon_sym_DOT, ACTIONS(5613), 1, - anon_sym_QMARK, - ACTIONS(5615), 1, - anon_sym_AMP_AMP, - ACTIONS(5617), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5619), 1, + anon_sym_DOT, + ACTIONS(5621), 1, sym__start_of_index_operator, - ACTIONS(5625), 1, + ACTIONS(5627), 1, sym_binary_ampersand, - STATE(2632), 1, + ACTIONS(6047), 1, + anon_sym_DOT_DOT, + STATE(2633), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5599), 2, + ACTIONS(5601), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5605), 2, + ACTIONS(5607), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, + ACTIONS(5611), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, + ACTIONS(5595), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5603), 4, + ACTIONS(5605), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(5621), 4, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5623), 4, + ACTIONS(5625), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6010), 17, + ACTIONS(6045), 21, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -350670,21 +355144,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [23930] = 5, + [24221] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2633), 1, + STATE(2634), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6012), 8, + ACTIONS(6051), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -350693,7 +355171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6010), 42, + ACTIONS(6049), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -350736,15 +355214,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [23995] = 5, + [24286] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2634), 1, + STATE(2635), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4561), 9, + ACTIONS(6055), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -350753,9 +355231,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4563), 41, + ACTIONS(6053), 42, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -350768,18 +355246,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -350790,31 +355266,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, anon_sym_else, - [24060] = 5, + anon_sym_when, + anon_sym_in, + [24351] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2635), 1, + ACTIONS(5789), 1, + anon_sym_LBRACK, + ACTIONS(5791), 1, + anon_sym_STAR, + ACTIONS(5793), 1, + anon_sym_PIPE, + ACTIONS(5795), 1, + anon_sym_DOT, + ACTIONS(5797), 1, + anon_sym_QMARK, + STATE(2636), 1, sym_heredoc_body, + STATE(2732), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6016), 8, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6014), 42, - sym__line_break, + anon_sym_EQ, + ACTIONS(4607), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -350826,17 +355314,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -350848,23 +355333,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [24125] = 5, + [24428] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2636), 1, + STATE(2637), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 9, + ACTIONS(6059), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -350873,9 +355357,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4595), 41, + ACTIONS(6057), 42, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -350897,7 +355381,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -350912,19 +355395,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [24190] = 5, + [24493] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2637), 1, + ACTIONS(5597), 1, + anon_sym_PIPE, + ACTIONS(5599), 1, + anon_sym_CARET, + ACTIONS(5603), 1, + anon_sym_EQ_EQ, + ACTIONS(5609), 1, + anon_sym_AMP_STAR, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5617), 1, + anon_sym_AMP_AMP, + ACTIONS(5619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5621), 1, + sym__start_of_index_operator, + ACTIONS(5627), 1, + sym_binary_ampersand, + ACTIONS(6063), 1, + anon_sym_DOT_DOT, + STATE(2638), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5595), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5605), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5623), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(5625), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6061), 19, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [24590] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2639), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6020), 8, + ACTIONS(6067), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -350933,7 +355493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6018), 42, + ACTIONS(6065), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -350976,15 +355536,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [24255] = 5, + [24655] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2638), 1, + STATE(2640), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6024), 8, + ACTIONS(6071), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -350993,7 +355553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6022), 42, + ACTIONS(6069), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -351036,15 +355596,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [24320] = 5, + [24720] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2639), 1, + STATE(2641), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6028), 8, + ACTIONS(6075), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -351053,7 +355613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6026), 42, + ACTIONS(6073), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -351096,35 +355656,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [24385] = 11, + [24785] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5548), 1, - anon_sym_LBRACK, - ACTIONS(5550), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_DOT, - ACTIONS(5556), 1, - anon_sym_QMARK, - ACTIONS(5876), 1, - anon_sym_PIPE, - STATE(2584), 1, - aux_sym_union_type_repeat1, - STATE(2640), 1, + STATE(2642), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4683), 7, + ACTIONS(6079), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4685), 37, + anon_sym_DOT, + ACTIONS(6077), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -351139,12 +355688,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -351158,149 +355708,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [24462] = 23, + anon_sym_when, + anon_sym_in, + [24850] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5589), 1, + ACTIONS(6081), 1, + anon_sym_COLON_COLON, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(2643), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4598), 10, anon_sym_DOT_DOT, - ACTIONS(5591), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5595), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(5597), 1, - anon_sym_CARET, - ACTIONS(5601), 1, anon_sym_EQ_EQ, - ACTIONS(5607), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5611), 1, anon_sym_DOT, - ACTIONS(5613), 1, + anon_sym_EQ, + anon_sym_COLON2, + ACTIONS(4600), 38, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, - ACTIONS(5615), 1, anon_sym_AMP_AMP, - ACTIONS(5617), 1, anon_sym_PIPE_PIPE, - ACTIONS(5619), 1, - sym__start_of_index_operator, - ACTIONS(5625), 1, - sym_binary_ampersand, - STATE(2641), 1, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [24917] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2644), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5599), 2, + ACTIONS(6086), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6084), 42, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5605), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [24982] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2645), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6090), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5603), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5621), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6088), 42, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5623), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6030), 17, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [24563] = 23, + [25047] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5589), 1, - anon_sym_DOT_DOT, ACTIONS(5591), 1, + anon_sym_DOT_DOT, + ACTIONS(5593), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5595), 1, - anon_sym_PIPE, ACTIONS(5597), 1, + anon_sym_PIPE, + ACTIONS(5599), 1, anon_sym_CARET, - ACTIONS(5601), 1, + ACTIONS(5603), 1, anon_sym_EQ_EQ, - ACTIONS(5607), 1, + ACTIONS(5609), 1, anon_sym_AMP_STAR, - ACTIONS(5611), 1, - anon_sym_DOT, ACTIONS(5613), 1, - anon_sym_QMARK, + anon_sym_DOT, ACTIONS(5615), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK, ACTIONS(5617), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5621), 1, sym__start_of_index_operator, - ACTIONS(5625), 1, + ACTIONS(5627), 1, sym_binary_ampersand, - STATE(2642), 1, + STATE(2646), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5599), 2, + ACTIONS(5601), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5605), 2, + ACTIONS(5607), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, + ACTIONS(5611), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, + ACTIONS(5595), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5603), 4, + ACTIONS(5605), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(5621), 4, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5623), 4, + ACTIONS(5625), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6032), 17, + ACTIONS(6092), 17, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -351318,35 +355975,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [24664] = 11, + [25148] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5548), 1, - anon_sym_LBRACK, - ACTIONS(5550), 1, - anon_sym_STAR, - ACTIONS(5554), 1, - anon_sym_DOT, - ACTIONS(5556), 1, - anon_sym_QMARK, - ACTIONS(5876), 1, - anon_sym_PIPE, - STATE(2584), 1, - aux_sym_union_type_repeat1, - STATE(2643), 1, + STATE(2647), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4639), 7, + ACTIONS(6096), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4641), 37, + anon_sym_DOT, + ACTIONS(6094), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -351361,12 +356007,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -351380,19 +356027,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [24741] = 5, + anon_sym_when, + anon_sym_in, + [25213] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2644), 1, + STATE(2648), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6036), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -351401,7 +356052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6034), 42, + ACTIONS(6098), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -351444,15 +356095,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [24806] = 5, + [25278] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2645), 1, + STATE(2649), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6040), 8, + ACTIONS(6102), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -351461,7 +356112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6038), 42, + ACTIONS(6092), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -351504,15 +356155,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [24871] = 5, + [25343] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2646), 1, + STATE(2650), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6044), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -351521,7 +356172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6042), 42, + ACTIONS(6098), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -351564,47 +356215,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [24936] = 10, + [25408] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5607), 1, - anon_sym_AMP_STAR, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5619), 1, - sym__start_of_index_operator, - STATE(2647), 1, + STATE(2651), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5609), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5623), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(6106), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 35, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6104), 42, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -351621,6 +356266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -351629,22 +356275,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [25011] = 8, + [25473] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5619), 1, - sym__start_of_index_operator, - STATE(2648), 1, + STATE(2652), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5609), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(6110), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -351652,14 +356291,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 39, + anon_sym_DOT, + ACTIONS(6108), 42, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -351684,6 +356326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -351692,22 +356335,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [25082] = 8, + [25538] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5619), 1, - sym__start_of_index_operator, - STATE(2649), 1, + STATE(2653), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5609), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(6114), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -351715,14 +356351,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 39, + anon_sym_DOT, + ACTIONS(6112), 42, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -351747,6 +356386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -351755,15 +356395,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [25153] = 5, + [25603] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2650), 1, + STATE(2654), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6060), 8, + ACTIONS(6118), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -351772,7 +356412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6058), 42, + ACTIONS(6116), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -351815,15 +356455,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [25218] = 5, + [25668] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2651), 1, + STATE(2655), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4561), 9, + ACTIONS(6122), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -351832,8 +356472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4563), 41, + ACTIONS(6120), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -351849,16 +356488,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -351869,57 +356507,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [25283] = 12, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [25733] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5607), 1, - anon_sym_AMP_STAR, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5619), 1, - sym__start_of_index_operator, - STATE(2652), 1, + STATE(2656), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5599), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5609), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5621), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5623), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6064), 6, + ACTIONS(6126), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6062), 29, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6124), 42, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -351928,12 +356558,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -351942,137 +356575,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [25362] = 21, + [25798] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5595), 1, + ACTIONS(5789), 1, + anon_sym_LBRACK, + ACTIONS(5791), 1, + anon_sym_STAR, + ACTIONS(5793), 1, anon_sym_PIPE, - ACTIONS(5597), 1, - anon_sym_CARET, - ACTIONS(5601), 1, - anon_sym_EQ_EQ, - ACTIONS(5607), 1, - anon_sym_AMP_STAR, - ACTIONS(5611), 1, + ACTIONS(5795), 1, anon_sym_DOT, - ACTIONS(5615), 1, - anon_sym_AMP_AMP, - ACTIONS(5617), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5619), 1, - sym__start_of_index_operator, - ACTIONS(5625), 1, - sym_binary_ampersand, - ACTIONS(6068), 1, - anon_sym_DOT_DOT, - STATE(2653), 1, + ACTIONS(5797), 1, + anon_sym_QMARK, + STATE(2657), 1, sym_heredoc_body, + STATE(2732), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5599), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5605), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, + ACTIONS(4648), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5603), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5621), 4, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4650), 37, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5623), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6066), 19, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, - anon_sym_QMARK, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [25459] = 17, + [25875] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5595), 1, + STATE(2658), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6130), 8, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(5597), 1, - anon_sym_CARET, - ACTIONS(5601), 1, anon_sym_EQ_EQ, - ACTIONS(5607), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5611), 1, anon_sym_DOT, - ACTIONS(5619), 1, + ACTIONS(6128), 42, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(5625), 1, - sym_binary_ampersand, - STATE(2654), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5599), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5609), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5603), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5621), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5623), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6072), 4, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6070), 23, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -352080,8 +356683,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -352090,24 +356701,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [25548] = 5, + [25940] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2655), 1, + ACTIONS(5671), 1, + anon_sym_LBRACK, + ACTIONS(5673), 1, + anon_sym_STAR, + ACTIONS(5677), 1, + anon_sym_DOT, + ACTIONS(5679), 1, + anon_sym_QMARK, + ACTIONS(6015), 1, + anon_sym_PIPE, + STATE(2659), 1, sym_heredoc_body, + STATE(2673), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6076), 8, + ACTIONS(4684), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6074), 42, + anon_sym_EQ, + ACTIONS(4686), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -352122,13 +356744,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -352142,38 +356763,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [25613] = 7, + [26017] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6078), 1, - anon_sym_COLON_COLON, - STATE(2656), 1, + ACTIONS(5789), 1, + anon_sym_LBRACK, + ACTIONS(5791), 1, + anon_sym_STAR, + ACTIONS(5793), 1, + anon_sym_PIPE, + ACTIONS(5795), 1, + anon_sym_DOT, + ACTIONS(5797), 1, + anon_sym_QMARK, + STATE(2660), 1, sym_heredoc_body, - STATE(2771), 1, - aux_sym_constant_repeat1, + STATE(2732), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 10, + ACTIONS(4619), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4555), 38, + ACTIONS(4621), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -352187,14 +356810,12 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -352205,53 +356826,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [25682] = 13, + [26094] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5607), 1, + ACTIONS(5597), 1, + anon_sym_PIPE, + ACTIONS(5599), 1, + anon_sym_CARET, + ACTIONS(5609), 1, anon_sym_AMP_STAR, - ACTIONS(5611), 1, + ACTIONS(5613), 1, anon_sym_DOT, - ACTIONS(5619), 1, + ACTIONS(5621), 1, sym__start_of_index_operator, - ACTIONS(5625), 1, + ACTIONS(5627), 1, sym_binary_ampersand, - STATE(2657), 1, + STATE(2661), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5599), 2, + ACTIONS(5601), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5609), 2, + ACTIONS(5611), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5621), 4, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5623), 4, + ACTIONS(5625), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6082), 6, + ACTIONS(6134), 5, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6080), 28, + ACTIONS(6132), 27, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -352265,7 +356889,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -352280,15 +356903,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [25763] = 5, + [26179] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2658), 1, + STATE(2662), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6086), 8, + ACTIONS(6138), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -352297,7 +356920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6084), 42, + ACTIONS(6136), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -352340,52 +356963,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [25828] = 11, + [26244] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5607), 1, - anon_sym_AMP_STAR, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5619), 1, - sym__start_of_index_operator, - STATE(2659), 1, + ACTIONS(367), 1, + sym__string_literal_start, + ACTIONS(6140), 1, + anon_sym_COLON, + STATE(2663), 1, sym_heredoc_body, + STATE(2780), 1, + aux_sym_chained_string_repeat1, + STATE(3273), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5609), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5621), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5623), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6090), 6, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6088), 31, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(135), 38, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -352398,93 +357021,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [25905] = 15, + [26317] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5595), 1, - anon_sym_PIPE, - ACTIONS(5597), 1, - anon_sym_CARET, - ACTIONS(5607), 1, - anon_sym_AMP_STAR, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5619), 1, - sym__start_of_index_operator, - ACTIONS(5625), 1, - sym_binary_ampersand, - STATE(2660), 1, + STATE(2664), 1, sym_heredoc_body, + STATE(2673), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5599), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5609), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5621), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5623), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6094), 5, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6092), 27, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4629), 40, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [25990] = 5, + [26384] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2661), 1, + ACTIONS(5823), 1, + anon_sym_COLON_COLON, + STATE(2560), 1, + aux_sym_constant_repeat1, + STATE(2665), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6098), 8, + ACTIONS(4584), 10, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -352493,9 +357109,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6096), 42, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + anon_sym_COLON2, + ACTIONS(4586), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -352506,18 +357122,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -352528,23 +357143,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [26055] = 5, + [26453] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2662), 1, + STATE(2666), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6102), 8, + ACTIONS(6144), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -352553,7 +357167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6100), 42, + ACTIONS(6142), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -352596,15 +357210,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [26120] = 5, + [26518] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2663), 1, + STATE(2667), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(6148), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -352613,7 +357227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 42, + ACTIONS(6146), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -352656,15 +357270,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [26185] = 5, + [26583] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2664), 1, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5621), 1, + sym__start_of_index_operator, + STATE(2668), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(6152), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -352672,11 +357290,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6104), 42, + ACTIONS(6150), 41, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -352716,15 +357332,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [26250] = 5, + [26652] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2665), 1, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5621), 1, + sym__start_of_index_operator, + STATE(2669), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(6156), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -352732,11 +357352,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6104), 42, + ACTIONS(6154), 41, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -352776,15 +357394,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [26315] = 5, + [26721] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2666), 1, + STATE(2670), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6110), 8, + ACTIONS(6160), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -352793,7 +357411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6108), 42, + ACTIONS(6158), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -352836,65 +357454,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [26380] = 19, + [26786] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5595), 1, + STATE(2671), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4688), 9, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(5597), 1, - anon_sym_CARET, - ACTIONS(5601), 1, anon_sym_EQ_EQ, - ACTIONS(5607), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5611), 1, anon_sym_DOT, - ACTIONS(5619), 1, + anon_sym_EQ, + ACTIONS(4690), 41, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(5625), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - ACTIONS(6114), 1, - anon_sym_DOT_DOT, - STATE(2667), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5599), 2, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5605), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + [26851] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2672), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6164), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5603), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5621), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6162), 42, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5623), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6112), 21, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -352902,6 +357556,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -352910,90 +357574,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [26473] = 20, + [26916] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5595), 1, + ACTIONS(6015), 1, anon_sym_PIPE, - ACTIONS(5597), 1, - anon_sym_CARET, - ACTIONS(5601), 1, + STATE(2673), 1, + sym_heredoc_body, + STATE(2674), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4634), 8, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_EQ_EQ, - ACTIONS(5607), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5611), 1, anon_sym_DOT, - ACTIONS(5615), 1, - anon_sym_AMP_AMP, - ACTIONS(5619), 1, + anon_sym_EQ, + ACTIONS(4636), 40, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(5625), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - ACTIONS(6118), 1, - anon_sym_DOT_DOT, - STATE(2668), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5599), 2, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5605), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + [26985] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6166), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(2674), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5603), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5621), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4629), 40, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5623), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6116), 20, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [26568] = 5, + [27052] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2669), 1, + STATE(2675), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6122), 8, + ACTIONS(6171), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -353002,7 +357714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6120), 42, + ACTIONS(6169), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -353045,15 +357757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [26633] = 5, + [27117] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2670), 1, + STATE(2676), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6126), 8, + ACTIONS(6175), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -353062,7 +357774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6124), 42, + ACTIONS(6173), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -353105,15 +357817,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [26698] = 5, + [27182] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2671), 1, + STATE(2677), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6130), 8, + ACTIONS(6179), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -353122,7 +357834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6128), 42, + ACTIONS(6177), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -353165,24 +357877,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [26763] = 5, + [27247] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2672), 1, + ACTIONS(5671), 1, + anon_sym_LBRACK, + ACTIONS(5673), 1, + anon_sym_STAR, + ACTIONS(5677), 1, + anon_sym_DOT, + ACTIONS(5679), 1, + anon_sym_QMARK, + ACTIONS(6015), 1, + anon_sym_PIPE, + STATE(2673), 1, + aux_sym_union_type_repeat1, + STATE(2678), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6134), 8, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6132), 42, + anon_sym_EQ, + ACTIONS(4625), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -353197,13 +357920,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -353217,32 +357939,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [26828] = 5, + [27324] = 11, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5671), 1, + anon_sym_LBRACK, + ACTIONS(5673), 1, + anon_sym_STAR, + ACTIONS(5677), 1, + anon_sym_DOT, + ACTIONS(5679), 1, + anon_sym_QMARK, + ACTIONS(6015), 1, + anon_sym_PIPE, STATE(2673), 1, + aux_sym_union_type_repeat1, + STATE(2679), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6138), 8, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6136), 42, + anon_sym_EQ, + ACTIONS(4607), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -353257,13 +357986,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -353277,23 +358005,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [26893] = 5, + [27401] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2674), 1, + STATE(2680), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6142), 8, + ACTIONS(6183), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -353302,7 +358026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6140), 42, + ACTIONS(6181), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -353345,95 +358069,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [26958] = 23, + [27466] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5589), 1, - anon_sym_DOT_DOT, - ACTIONS(5591), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5595), 1, - anon_sym_PIPE, - ACTIONS(5597), 1, - anon_sym_CARET, - ACTIONS(5601), 1, - anon_sym_EQ_EQ, - ACTIONS(5607), 1, - anon_sym_AMP_STAR, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5613), 1, - anon_sym_QMARK, - ACTIONS(5615), 1, - anon_sym_AMP_AMP, - ACTIONS(5617), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5619), 1, - sym__start_of_index_operator, - ACTIONS(5625), 1, - sym_binary_ampersand, - STATE(2675), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5599), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5605), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5603), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5621), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5623), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6144), 17, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_end, - anon_sym_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [27059] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6146), 1, - anon_sym_LPAREN2, - STATE(2676), 1, + STATE(2681), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(4704), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -353443,7 +358087,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4599), 40, + ACTIONS(4706), 41, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -353455,13 +358100,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -353479,40 +358127,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [27126] = 11, + [27531] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5937), 1, - anon_sym_PIPE, - ACTIONS(5986), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - ACTIONS(5990), 1, - anon_sym_DOT, - ACTIONS(5992), 1, - anon_sym_QMARK, - STATE(2604), 1, - aux_sym_union_type_repeat1, - STATE(2677), 1, + STATE(2682), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 7, + ACTIONS(6187), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4595), 37, + anon_sym_DOT, + ACTIONS(6185), 42, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -353524,14 +358159,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -353543,22 +358181,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [27203] = 5, + [27596] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2678), 1, + STATE(2683), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6150), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -353567,7 +358206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6148), 42, + ACTIONS(6189), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -353610,67 +358249,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [27268] = 23, + [27661] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5589), 1, - anon_sym_DOT_DOT, ACTIONS(5591), 1, + anon_sym_DOT_DOT, + ACTIONS(5593), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5595), 1, - anon_sym_PIPE, ACTIONS(5597), 1, + anon_sym_PIPE, + ACTIONS(5599), 1, anon_sym_CARET, - ACTIONS(5601), 1, + ACTIONS(5603), 1, anon_sym_EQ_EQ, - ACTIONS(5607), 1, + ACTIONS(5609), 1, anon_sym_AMP_STAR, - ACTIONS(5611), 1, - anon_sym_DOT, ACTIONS(5613), 1, - anon_sym_QMARK, + anon_sym_DOT, ACTIONS(5615), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK, ACTIONS(5617), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5621), 1, sym__start_of_index_operator, - ACTIONS(5625), 1, + ACTIONS(5627), 1, sym_binary_ampersand, - STATE(2679), 1, + STATE(2684), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5599), 2, + ACTIONS(5601), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(5605), 2, + ACTIONS(5607), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, + ACTIONS(5611), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, + ACTIONS(5595), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5603), 4, + ACTIONS(5605), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(5621), 4, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5623), 4, + ACTIONS(5625), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6152), 17, + ACTIONS(6193), 17, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -353688,77 +358327,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [27369] = 7, + [27762] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6078), 1, - anon_sym_COLON_COLON, - STATE(2680), 1, - sym_heredoc_body, - STATE(2771), 1, - aux_sym_constant_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4557), 10, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4559), 38, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [27438] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2681), 1, + STATE(2685), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6156), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -353767,7 +358344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6154), 42, + ACTIONS(6189), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -353810,15 +358387,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [27503] = 5, + [27827] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2682), 1, + STATE(2686), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6160), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -353827,7 +358404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6158), 42, + ACTIONS(6189), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -353870,75 +358447,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [27568] = 5, + [27892] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2683), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4561), 10, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4563), 40, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [27633] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2684), 1, + STATE(2687), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6164), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -353947,7 +358464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6162), 42, + ACTIONS(6189), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -353990,15 +358507,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [27698] = 5, + [27957] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2685), 1, + STATE(2688), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6168), 8, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -354007,7 +358524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6166), 42, + ACTIONS(6195), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -354050,15 +358567,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [27763] = 5, + [28022] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2686), 1, + STATE(2689), 1, sym_heredoc_body, + STATE(2732), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5520), 8, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -354067,8 +358586,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5518), 42, - sym__line_break, + anon_sym_EQ, + ACTIONS(4629), 40, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -354079,19 +358599,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -354102,23 +358620,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [27828] = 5, + [28089] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2687), 1, + STATE(2690), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6172), 8, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -354127,7 +358645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6170), 42, + ACTIONS(6199), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -354170,135 +358688,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [27893] = 5, + [28154] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2688), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6176), 8, + ACTIONS(5591), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(5593), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5597), 1, anon_sym_PIPE, + ACTIONS(5599), 1, + anon_sym_CARET, + ACTIONS(5603), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(5609), 1, anon_sym_AMP_STAR, + ACTIONS(5613), 1, anon_sym_DOT, - ACTIONS(6174), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(5615), 1, anon_sym_QMARK, + ACTIONS(5617), 1, anon_sym_AMP_AMP, + ACTIONS(5619), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [27958] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2689), 1, + ACTIONS(5621), 1, + sym__start_of_index_operator, + ACTIONS(5627), 1, + sym_binary_ampersand, + STATE(2691), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6180), 8, - anon_sym_DOT_DOT, + ACTIONS(5601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5595), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6178), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5605), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5625), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6203), 17, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [28023] = 5, + [28255] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2690), 1, + STATE(2692), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4667), 9, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -354308,7 +358784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4669), 41, + ACTIONS(4644), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -354350,102 +358826,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [28088] = 11, + [28320] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5937), 1, - anon_sym_PIPE, - ACTIONS(5986), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - ACTIONS(5990), 1, - anon_sym_DOT, - ACTIONS(5992), 1, - anon_sym_QMARK, - STATE(2604), 1, - aux_sym_union_type_repeat1, - STATE(2691), 1, + STATE(2693), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4605), 37, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [28165] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5937), 1, anon_sym_PIPE, - ACTIONS(5986), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - ACTIONS(5990), 1, - anon_sym_DOT, - ACTIONS(5992), 1, - anon_sym_QMARK, - STATE(2604), 1, - aux_sym_union_type_repeat1, - STATE(2692), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4611), 7, - anon_sym_DOT_DOT, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4613), 37, - sym__start_of_brace_block, + ACTIONS(4600), 41, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -354456,15 +358856,20 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -354475,26 +358880,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_LPAREN2, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [28242] = 7, + [28385] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6078), 1, - anon_sym_COLON_COLON, - STATE(2680), 1, - aux_sym_constant_repeat1, - STATE(2693), 1, + STATE(2694), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 10, + ACTIONS(6207), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -354503,9 +358903,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4555), 38, + ACTIONS(6205), 42, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -354516,17 +358916,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -354537,22 +358938,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [28311] = 5, + [28450] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2694), 1, + STATE(2695), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6184), 8, + ACTIONS(6211), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -354561,7 +358963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6182), 42, + ACTIONS(6209), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -354604,41 +359006,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [28376] = 5, + [28515] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2695), 1, + ACTIONS(5597), 1, + anon_sym_PIPE, + ACTIONS(5599), 1, + anon_sym_CARET, + ACTIONS(5603), 1, + anon_sym_EQ_EQ, + ACTIONS(5609), 1, + anon_sym_AMP_STAR, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5617), 1, + anon_sym_AMP_AMP, + ACTIONS(5621), 1, + sym__start_of_index_operator, + ACTIONS(5627), 1, + sym_binary_ampersand, + ACTIONS(6215), 1, + anon_sym_DOT_DOT, + STATE(2696), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, - anon_sym_DOT_DOT, + ACTIONS(5601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5595), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5524), 42, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(5605), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5625), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6213), 20, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -354646,33 +359074,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [28441] = 5, + [28610] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2696), 1, + STATE(2697), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6188), 8, + ACTIONS(6219), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -354681,7 +359098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6186), 42, + ACTIONS(6217), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -354724,15 +359141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [28506] = 5, + [28675] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2697), 1, + STATE(2698), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5512), 8, + ACTIONS(6223), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -354741,7 +359158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 42, + ACTIONS(6221), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -354784,15 +359201,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [28571] = 5, + [28740] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2698), 1, + STATE(2699), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6192), 8, + ACTIONS(6227), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -354801,7 +359218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6190), 42, + ACTIONS(6225), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -354844,15 +359261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [28636] = 5, + [28805] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2699), 1, + STATE(2700), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6196), 8, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -354861,7 +359278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6194), 42, + ACTIONS(6229), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -354904,15 +359321,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [28701] = 5, + [28870] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2700), 1, + STATE(2701), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6200), 8, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -354921,7 +359338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6198), 42, + ACTIONS(6233), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -354964,15 +359381,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [28766] = 5, + [28935] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2701), 1, + STATE(2702), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -354981,7 +359398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 42, + ACTIONS(6237), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -355024,15 +359441,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [28831] = 5, + [29000] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2702), 1, + STATE(2703), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(6243), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -355041,7 +359458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 42, + ACTIONS(6241), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -355084,15 +359501,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [28896] = 5, + [29065] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2703), 1, + STATE(2704), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(6247), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -355101,7 +359518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 42, + ACTIONS(6245), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -355144,15 +359561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [28961] = 5, + [29130] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2704), 1, + STATE(2705), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6208), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -355161,7 +359578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6206), 42, + ACTIONS(6249), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -355204,15 +359621,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [29026] = 5, + [29195] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2705), 1, + STATE(2706), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6212), 8, + ACTIONS(6255), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -355221,7 +359638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6210), 42, + ACTIONS(6253), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -355264,41 +359681,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [29091] = 5, + [29260] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2706), 1, + ACTIONS(5609), 1, + anon_sym_AMP_STAR, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5621), 1, + sym__start_of_index_operator, + STATE(2707), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5536), 8, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5625), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6259), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, + ACTIONS(6257), 35, + sym__line_break, + sym__start_of_brace_block, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym_binary_ampersand, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [29335] = 13, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5609), 1, anon_sym_AMP_STAR, + ACTIONS(5613), 1, anon_sym_DOT, - ACTIONS(5534), 42, - sym__line_break, + ACTIONS(5621), 1, sym__start_of_index_operator, + ACTIONS(5627), 1, + sym_binary_ampersand, + STATE(2708), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5625), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6263), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6261), 28, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, - sym__string_literal_start, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -355307,32 +359800,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [29156] = 5, + [29416] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2707), 1, + STATE(2709), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6216), 8, + ACTIONS(6267), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -355341,7 +359831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6214), 42, + ACTIONS(6265), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -355384,15 +359874,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [29221] = 5, + [29481] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2708), 1, + STATE(2710), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(6271), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -355401,7 +359891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 42, + ACTIONS(6269), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -355444,15 +359934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [29286] = 5, + [29546] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2709), 1, + STATE(2711), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6220), 8, + ACTIONS(6275), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -355461,7 +359951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6218), 42, + ACTIONS(6273), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -355504,17 +359994,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [29351] = 6, + [29611] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2584), 1, - aux_sym_union_type_repeat1, - STATE(2710), 1, + STATE(2712), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(6279), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -355523,8 +360011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 40, + ACTIONS(6277), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -355539,17 +360026,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -355564,16 +360050,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [29418] = 5, + anon_sym_when, + anon_sym_in, + [29676] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2711), 1, + STATE(2713), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6224), 8, + ACTIONS(6283), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -355582,7 +360071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6222), 42, + ACTIONS(6281), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -355625,15 +360114,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [29483] = 5, + [29741] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2712), 1, + STATE(2714), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6228), 8, + ACTIONS(6287), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -355642,7 +360131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6226), 42, + ACTIONS(6285), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -355685,93 +360174,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [29548] = 23, + [29806] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5589), 1, - anon_sym_DOT_DOT, - ACTIONS(5591), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5595), 1, - anon_sym_PIPE, - ACTIONS(5597), 1, - anon_sym_CARET, - ACTIONS(5601), 1, - anon_sym_EQ_EQ, - ACTIONS(5607), 1, - anon_sym_AMP_STAR, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5613), 1, - anon_sym_QMARK, - ACTIONS(5615), 1, - anon_sym_AMP_AMP, - ACTIONS(5617), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5619), 1, - sym__start_of_index_operator, - ACTIONS(5625), 1, - sym_binary_ampersand, - STATE(2713), 1, + STATE(2715), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5599), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5605), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, + ACTIONS(6291), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5603), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5621), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6289), 42, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5623), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6230), 17, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [29649] = 5, + [29871] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2714), 1, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5621), 1, + sym__start_of_index_operator, + STATE(2716), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6234), 8, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6295), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -355779,17 +360257,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6232), 42, + ACTIONS(6293), 39, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -355814,7 +360289,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -355823,15 +360297,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [29714] = 5, + [29942] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2715), 1, + STATE(2717), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6238), 8, + ACTIONS(6299), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -355840,7 +360314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6236), 42, + ACTIONS(6297), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -355883,69 +360357,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [29779] = 21, + [30007] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5595), 1, - anon_sym_PIPE, - ACTIONS(5597), 1, - anon_sym_CARET, - ACTIONS(5601), 1, - anon_sym_EQ_EQ, - ACTIONS(5607), 1, - anon_sym_AMP_STAR, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5615), 1, - anon_sym_AMP_AMP, - ACTIONS(5617), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5619), 1, - sym__start_of_index_operator, - ACTIONS(5625), 1, - sym_binary_ampersand, - ACTIONS(6242), 1, - anon_sym_DOT_DOT, - STATE(2716), 1, + STATE(2718), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5599), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5605), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, + ACTIONS(6303), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5603), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5621), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6301), 42, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5623), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6240), 19, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -355953,21 +360399,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [29876] = 5, + [30072] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2717), 1, + STATE(2719), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6246), 8, + ACTIONS(6307), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -355976,7 +360434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6244), 42, + ACTIONS(6305), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -356019,15 +360477,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [29941] = 5, + [30137] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2718), 1, + STATE(2720), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6250), 8, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -356036,7 +360494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6248), 42, + ACTIONS(6309), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -356079,15 +360537,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [30006] = 5, + [30202] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2719), 1, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5621), 1, + sym__start_of_index_operator, + STATE(2721), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6254), 8, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -356095,17 +360560,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6252), 42, + ACTIONS(6313), 39, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -356130,7 +360592,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -356139,93 +360600,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [30071] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5589), 1, - anon_sym_DOT_DOT, - ACTIONS(5591), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5595), 1, - anon_sym_PIPE, - ACTIONS(5597), 1, - anon_sym_CARET, - ACTIONS(5601), 1, - anon_sym_EQ_EQ, - ACTIONS(5607), 1, - anon_sym_AMP_STAR, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5613), 1, - anon_sym_QMARK, - ACTIONS(5615), 1, - anon_sym_AMP_AMP, - ACTIONS(5617), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5619), 1, - sym__start_of_index_operator, - ACTIONS(5625), 1, - sym_binary_ampersand, - STATE(2720), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5599), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5605), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5603), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5621), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5623), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6256), 17, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_end, - anon_sym_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [30172] = 5, + [30273] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2721), 1, + STATE(2722), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6260), 8, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -356234,7 +360617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6258), 42, + ACTIONS(6317), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -356277,15 +360660,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [30237] = 5, + [30338] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2722), 1, + STATE(2723), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6264), 8, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -356294,7 +360677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6262), 42, + ACTIONS(6321), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -356337,15 +360720,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [30302] = 5, + [30403] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2723), 1, + ACTIONS(5823), 1, + anon_sym_COLON_COLON, + STATE(2643), 1, + aux_sym_constant_repeat1, + STATE(2724), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(4590), 10, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -356354,9 +360741,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 42, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + anon_sym_COLON2, + ACTIONS(4592), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -356367,18 +360754,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -356389,23 +360775,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [30367] = 5, + [30472] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2724), 1, + STATE(2725), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6268), 8, + ACTIONS(4676), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -356414,7 +360799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6266), 42, + anon_sym_EQ, + ACTIONS(4678), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -356429,16 +360815,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -356453,81 +360841,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [30432] = 7, + [30537] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6078), 1, - anon_sym_COLON_COLON, - STATE(2656), 1, - aux_sym_constant_repeat1, - STATE(2725), 1, + ACTIONS(5609), 1, + anon_sym_AMP_STAR, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5621), 1, + sym__start_of_index_operator, + STATE(2726), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 10, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4549), 38, - sym__start_of_index_operator, + ACTIONS(5601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5623), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(5625), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6327), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6325), 29, + sym__line_break, + sym__start_of_brace_block, + sym_binary_ampersand, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [30501] = 5, + [30616] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2726), 1, + STATE(2727), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6272), 8, + ACTIONS(4660), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -356536,7 +360926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6270), 42, + anon_sym_EQ, + ACTIONS(4662), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -356551,16 +360942,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -356575,19 +360968,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [30566] = 5, + [30681] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2727), 1, + STATE(2728), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6276), 8, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -356596,7 +360986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6274), 42, + ACTIONS(6329), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -356639,15 +361029,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [30631] = 5, + [30746] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2728), 1, + STATE(2729), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6280), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -356656,7 +361046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6278), 42, + ACTIONS(6333), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -356699,15 +361089,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [30696] = 5, + [30811] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2729), 1, + STATE(2730), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6284), 8, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -356716,7 +361106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6282), 42, + ACTIONS(6337), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -356759,15 +361149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [30761] = 5, + [30876] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2730), 1, + STATE(2731), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6288), 8, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -356776,7 +361166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6286), 42, + ACTIONS(6341), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -356819,25 +361209,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [30826] = 5, + [30941] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2731), 1, + ACTIONS(5793), 1, + anon_sym_PIPE, + STATE(2732), 1, sym_heredoc_body, + STATE(2753), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6292), 8, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6290), 42, - sym__line_break, + anon_sym_EQ, + ACTIONS(4636), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -356849,18 +361242,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -356874,20 +361266,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [30891] = 5, + [31010] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2732), 1, + STATE(2733), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6296), 8, + ACTIONS(4696), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -356896,7 +361288,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6294), 42, + anon_sym_EQ, + ACTIONS(4698), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -356911,16 +361304,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -356935,19 +361330,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [30956] = 5, + [31075] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2733), 1, + STATE(2734), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6300), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -356956,7 +361348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6298), 42, + ACTIONS(6345), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -356999,15 +361391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [31021] = 5, + [31140] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2734), 1, + STATE(2735), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4619), 9, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -357016,8 +361408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4621), 41, + ACTIONS(6349), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357032,18 +361423,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -357058,16 +361447,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [31086] = 5, + anon_sym_when, + anon_sym_in, + [31205] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2735), 1, + STATE(2736), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4647), 9, + ACTIONS(4664), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -357077,7 +361469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4649), 41, + ACTIONS(4666), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357119,15 +361511,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [31151] = 5, + [31270] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2736), 1, + STATE(2737), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6304), 8, + ACTIONS(4652), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -357136,7 +361528,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6302), 42, + anon_sym_EQ, + ACTIONS(4654), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357151,16 +361544,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -357175,19 +361570,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [31216] = 5, + [31335] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2737), 1, + STATE(2738), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6308), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -357196,7 +361588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6306), 42, + ACTIONS(6353), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357239,15 +361631,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [31281] = 5, + [31400] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2738), 1, + STATE(2739), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6312), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -357256,7 +361648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6310), 42, + ACTIONS(6357), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357299,21 +361691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [31346] = 8, + [31465] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1203), 1, - anon_sym_COLON, - ACTIONS(5473), 1, - anon_sym_COLON_COLON, - STATE(2398), 1, - aux_sym_constant_repeat1, - STATE(2739), 1, + STATE(2740), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 8, + ACTIONS(6363), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -357322,7 +361708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(4549), 39, + ACTIONS(6361), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357337,12 +361723,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -357356,21 +361743,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [31417] = 5, + anon_sym_when, + anon_sym_in, + [31530] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2740), 1, + STATE(2741), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6316), 8, + ACTIONS(4656), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -357379,7 +361768,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6314), 42, + anon_sym_EQ, + ACTIONS(4658), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357394,16 +361784,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -357418,19 +361810,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [31482] = 5, + [31595] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2741), 1, + STATE(2742), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(6367), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -357439,7 +361828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 42, + ACTIONS(6365), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357482,15 +361871,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [31547] = 5, + [31660] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2742), 1, + STATE(2743), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6324), 8, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -357499,7 +361888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6322), 42, + ACTIONS(6369), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357542,15 +361931,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [31612] = 5, + [31725] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2743), 1, + STATE(2744), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(6375), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -357559,7 +361948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 42, + ACTIONS(6373), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357602,17 +361991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [31677] = 6, + [31790] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2604), 1, - aux_sym_union_type_repeat1, - STATE(2744), 1, + STATE(2745), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(6379), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -357621,8 +362008,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 40, + ACTIONS(6377), 42, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -357634,17 +362021,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -357658,20 +362046,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [31744] = 5, + [31855] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2745), 1, + STATE(2746), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6328), 8, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -357680,7 +362068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6326), 42, + ACTIONS(6381), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357723,15 +362111,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [31809] = 5, + [31920] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2746), 1, + STATE(2747), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6332), 8, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -357740,7 +362128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6330), 42, + ACTIONS(6385), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357783,15 +362171,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [31874] = 5, + [31985] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2747), 1, + STATE(2748), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6336), 8, + ACTIONS(4716), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -357800,7 +362188,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6334), 42, + anon_sym_EQ, + ACTIONS(4718), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357815,16 +362204,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -357839,19 +362230,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [31939] = 5, + [32050] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2748), 1, + STATE(2749), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6340), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -357860,7 +362248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6338), 42, + ACTIONS(6389), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357903,15 +362291,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [32004] = 5, + [32115] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2749), 1, + STATE(2750), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6344), 8, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -357920,7 +362308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6342), 42, + ACTIONS(6393), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -357963,15 +362351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [32069] = 5, + [32180] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2750), 1, + STATE(2751), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6348), 8, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -357980,7 +362368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6346), 42, + ACTIONS(6397), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -358023,15 +362411,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [32134] = 5, + [32245] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2751), 1, + ACTIONS(5823), 1, + anon_sym_COLON_COLON, + STATE(2724), 1, + aux_sym_constant_repeat1, + STATE(2752), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6352), 8, + ACTIONS(4594), 10, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -358040,9 +362432,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6350), 42, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + anon_sym_COLON2, + ACTIONS(4596), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -358053,18 +362445,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -358075,33 +362466,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [32199] = 5, + [32314] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2752), 1, - sym_heredoc_body, + ACTIONS(6401), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + STATE(2753), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 42, - sym__line_break, + anon_sym_EQ, + ACTIONS(4629), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -358113,18 +362505,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -358138,20 +362529,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [32264] = 5, + [32381] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2753), 1, + STATE(2754), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6406), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -358160,7 +362551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 42, + ACTIONS(6404), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -358203,15 +362594,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [32329] = 5, + [32446] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2754), 1, + STATE(2755), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6410), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -358220,7 +362611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 42, + ACTIONS(6408), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -358263,15 +362654,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [32394] = 5, + [32511] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2755), 1, + STATE(2756), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(4680), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -358280,7 +362671,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 42, + anon_sym_EQ, + ACTIONS(4682), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -358295,16 +362687,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -358319,89 +362713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [32459] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5589), 1, - anon_sym_DOT_DOT, - ACTIONS(5591), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5595), 1, - anon_sym_PIPE, - ACTIONS(5597), 1, - anon_sym_CARET, - ACTIONS(5601), 1, - anon_sym_EQ_EQ, - ACTIONS(5607), 1, - anon_sym_AMP_STAR, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5613), 1, - anon_sym_QMARK, - ACTIONS(5615), 1, - anon_sym_AMP_AMP, - ACTIONS(5617), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5619), 1, - sym__start_of_index_operator, - ACTIONS(5625), 1, - sym_binary_ampersand, - STATE(2756), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5599), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5605), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5603), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5621), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(5623), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6358), 17, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_end, - anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [32560] = 5, + [32576] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(2757), 1, @@ -358409,7 +362722,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(6414), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -358418,7 +362731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6360), 42, + ACTIONS(6412), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -358461,85 +362774,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [32625] = 23, + [32641] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5589), 1, - anon_sym_DOT_DOT, - ACTIONS(5591), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5595), 1, - anon_sym_PIPE, - ACTIONS(5597), 1, - anon_sym_CARET, - ACTIONS(5601), 1, - anon_sym_EQ_EQ, - ACTIONS(5607), 1, - anon_sym_AMP_STAR, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5613), 1, - anon_sym_QMARK, - ACTIONS(5615), 1, - anon_sym_AMP_AMP, - ACTIONS(5617), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5619), 1, - sym__start_of_index_operator, - ACTIONS(5625), 1, - sym_binary_ampersand, STATE(2758), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5599), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(5605), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(5609), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5593), 3, + ACTIONS(6418), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5603), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(5621), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6416), 42, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(5623), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6364), 17, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [32726] = 5, + [32706] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(2759), 1, @@ -358547,7 +362842,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6368), 8, + ACTIONS(6422), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -358556,7 +362851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6366), 42, + ACTIONS(6420), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -358599,7 +362894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [32791] = 5, + [32771] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(2760), 1, @@ -358607,7 +362902,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6372), 8, + ACTIONS(6426), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -358616,7 +362911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6370), 42, + ACTIONS(6424), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -358659,7 +362954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [32856] = 5, + [32836] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(2761), 1, @@ -358667,7 +362962,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6376), 8, + ACTIONS(6430), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -358676,7 +362971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6374), 42, + ACTIONS(6428), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -358719,7 +363014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [32921] = 5, + [32901] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(2762), 1, @@ -358727,7 +363022,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6380), 8, + ACTIONS(6434), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -358736,7 +363031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6378), 42, + ACTIONS(6432), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -358779,7 +363074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [32986] = 5, + [32966] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(2763), 1, @@ -358787,7 +363082,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6384), 8, + ACTIONS(5574), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -358796,9 +363091,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6382), 42, + ACTIONS(5572), 42, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -358814,6 +363108,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + sym__string_literal_start, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -358831,15 +363126,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [33051] = 5, + [33031] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(2764), 1, @@ -358847,7 +363142,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6388), 8, + ACTIONS(4598), 10, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -358856,8 +363151,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6386), 42, - sym__line_break, + anon_sym_EQ, + anon_sym_COLON2, + ACTIONS(4600), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -358869,18 +363165,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -358891,15 +363185,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [33116] = 5, + [33096] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(2765), 1, @@ -358907,7 +363202,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6392), 8, + ACTIONS(4672), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -358916,7 +363211,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6390), 42, + anon_sym_EQ, + ACTIONS(4674), 41, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -358931,16 +363227,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -358955,11 +363253,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [33181] = 5, + [33161] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(2766), 1, @@ -358967,7 +363262,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6396), 8, + ACTIONS(4708), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -358976,7 +363271,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6394), 42, + anon_sym_EQ, + ACTIONS(4710), 41, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + [33226] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2767), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4712), 9, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4714), 41, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + [33291] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2768), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6438), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6436), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -359019,15 +363434,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [33246] = 5, + [33356] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2767), 1, + ACTIONS(5597), 1, + anon_sym_PIPE, + ACTIONS(5599), 1, + anon_sym_CARET, + ACTIONS(5603), 1, + anon_sym_EQ_EQ, + ACTIONS(5609), 1, + anon_sym_AMP_STAR, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5617), 1, + anon_sym_AMP_AMP, + ACTIONS(5619), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5621), 1, + sym__start_of_index_operator, + ACTIONS(5627), 1, + sym_binary_ampersand, + ACTIONS(6442), 1, + anon_sym_DOT_DOT, + STATE(2769), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5601), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(5607), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(5611), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5595), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5605), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5623), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(5625), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6440), 19, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, + anon_sym_do, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [33453] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2770), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6400), 8, + ACTIONS(6446), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -359036,7 +363527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6398), 42, + ACTIONS(6444), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -359079,15 +363570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [33311] = 5, + [33518] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2768), 1, + STATE(2771), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6404), 8, + ACTIONS(6450), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -359096,7 +363587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6402), 42, + ACTIONS(6448), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -359139,23 +363630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [33376] = 9, + [33583] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(363), 1, - sym__string_literal_start, - ACTIONS(6406), 1, - anon_sym_COLON, - STATE(2769), 1, + STATE(2772), 1, sym_heredoc_body, - STATE(2831), 1, - aux_sym_chained_string_repeat1, - STATE(3249), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6454), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -359164,7 +363647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 38, + ACTIONS(6452), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -359179,12 +363662,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -359202,16 +363686,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [33449] = 5, + anon_sym_when, + anon_sym_in, + [33648] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2770), 1, + STATE(2773), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6410), 8, + ACTIONS(6458), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -359220,7 +363707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6408), 42, + ACTIONS(6456), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -359263,18 +363750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [33514] = 6, + [33713] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6412), 1, - anon_sym_COLON_COLON, + STATE(2774), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2771), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4561), 10, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -359283,9 +363767,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4563), 38, + ACTIONS(5551), 42, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -359296,17 +363780,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -359317,22 +363802,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [33581] = 5, + [33778] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2772), 1, + STATE(2775), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4671), 9, + ACTIONS(6462), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -359341,8 +363827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4673), 41, + ACTIONS(6460), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -359357,18 +363842,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -359383,16 +363866,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + anon_sym_elsif, anon_sym_else, - [33646] = 5, + anon_sym_when, + anon_sym_in, + [33843] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2773), 1, + STATE(2776), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(6466), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -359401,7 +363887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6415), 42, + ACTIONS(6464), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -359444,15 +363930,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [33711] = 5, + [33908] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2774), 1, + STATE(2777), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(6470), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -359461,7 +363947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6419), 42, + ACTIONS(6468), 42, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -359504,115 +363990,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [33776] = 25, + [33973] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6423), 1, - anon_sym_COMMA, - ACTIONS(6425), 1, - anon_sym_DOT_DOT, - ACTIONS(6427), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6447), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - STATE(2775), 1, + ACTIONS(6472), 1, + sym_regex_modifier, + STATE(2778), 1, sym_heredoc_body, - STATE(2782), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6441), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(5662), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5660), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5570), 14, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [33880] = 11, + [34039] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5986), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - ACTIONS(5990), 1, - anon_sym_DOT, - ACTIONS(5992), 1, - anon_sym_QMARK, - ACTIONS(6461), 1, - anon_sym_PIPE, - STATE(2776), 1, + ACTIONS(6474), 1, + sym_regex_modifier, + STATE(2779), 1, sym_heredoc_body, - STATE(2860), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 36, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(5747), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -359623,12 +364081,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -359641,24 +364103,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [33956] = 6, + [34105] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2777), 1, + ACTIONS(367), 1, + sym__string_literal_start, + STATE(2780), 1, sym_heredoc_body, - STATE(2860), 1, - aux_sym_union_type_repeat1, + STATE(2781), 1, + aux_sym_chained_string_repeat1, + STATE(3273), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(5541), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -359667,8 +364133,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 39, + ACTIONS(5539), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -359680,16 +364146,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -359703,22 +364170,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [34022] = 6, + [34175] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2778), 1, - sym_heredoc_body, - STATE(2787), 1, - aux_sym_union_type_repeat1, + ACTIONS(6476), 1, + sym__string_literal_start, + STATE(3273), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + STATE(2781), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5534), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -359727,8 +364194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 39, + ACTIONS(5532), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -359740,16 +364207,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -359763,20 +364231,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [34088] = 5, + [34243] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2779), 1, + ACTIONS(367), 1, + sym__string_literal_start, + STATE(2780), 1, + aux_sym_chained_string_repeat1, + STATE(2782), 1, sym_heredoc_body, + STATE(3273), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4623), 9, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -359785,8 +364256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4625), 40, + ACTIONS(135), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -359798,17 +364269,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -359822,24 +364293,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [34152] = 7, + [34313] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6463), 1, - anon_sym_COLON_COLON, - STATE(2780), 1, + ACTIONS(5506), 1, + anon_sym_LPAREN2, + ACTIONS(6479), 1, + anon_sym_EQ, + STATE(2783), 1, sym_heredoc_body, - STATE(2784), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 10, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -359848,9 +364316,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4555), 37, + ACTIONS(135), 39, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -359861,16 +364328,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -359881,26 +364349,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [34220] = 7, + [34381] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6463), 1, - anon_sym_COLON_COLON, - STATE(2781), 1, + ACTIONS(6481), 1, + anon_sym_LPAREN2, + STATE(2784), 1, sym_heredoc_body, - STATE(2785), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 10, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -359910,8 +364376,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4555), 37, + ACTIONS(4644), 39, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -359922,12 +364388,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -359942,35 +364412,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - anon_sym_when, - anon_sym_in, - [34288] = 7, + [34447] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6465), 1, - anon_sym_COMMA, - STATE(2782), 1, + ACTIONS(6483), 1, + anon_sym_LBRACK, + ACTIONS(6485), 1, + anon_sym_STAR, + ACTIONS(6487), 1, + anon_sym_PIPE, + ACTIONS(6489), 1, + anon_sym_DOT, + ACTIONS(6491), 1, + anon_sym_QMARK, + STATE(2785), 1, sym_heredoc_body, - STATE(2852), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(2809), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(4638), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5585), 39, + anon_sym_EQ, + ACTIONS(4640), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -359984,14 +364458,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -360003,34 +364478,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [34356] = 11, + [34523] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6467), 1, + ACTIONS(6483), 1, anon_sym_LBRACK, - ACTIONS(6469), 1, + ACTIONS(6485), 1, anon_sym_STAR, - ACTIONS(6471), 1, + ACTIONS(6487), 1, anon_sym_PIPE, - ACTIONS(6473), 1, + ACTIONS(6489), 1, anon_sym_DOT, - ACTIONS(6475), 1, + ACTIONS(6491), 1, anon_sym_QMARK, - STATE(2783), 1, + STATE(2786), 1, sym_heredoc_body, - STATE(2815), 1, + STATE(2809), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -360038,7 +364509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4609), 36, + ACTIONS(4650), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -360075,29 +364546,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [34432] = 6, + [34599] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6477), 1, - anon_sym_COLON_COLON, + ACTIONS(6483), 1, + anon_sym_LBRACK, + ACTIONS(6485), 1, + anon_sym_STAR, + ACTIONS(6487), 1, + anon_sym_PIPE, + ACTIONS(6489), 1, + anon_sym_DOT, + ACTIONS(6491), 1, + anon_sym_QMARK, + STATE(2787), 1, + sym_heredoc_body, + STATE(2809), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2784), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4561), 10, + ACTIONS(4619), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4563), 37, + ACTIONS(4621), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -360108,16 +364586,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -360128,26 +364608,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - anon_sym_when, - anon_sym_in, - [34498] = 7, + [34675] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6463), 1, - anon_sym_COLON_COLON, - STATE(2784), 1, - aux_sym_constant_repeat1, - STATE(2785), 1, + STATE(2788), 1, sym_heredoc_body, + STATE(2809), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4557), 10, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -360157,8 +364631,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4559), 37, + ACTIONS(4629), 39, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -360169,12 +364643,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -360189,42 +364667,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - anon_sym_when, - anon_sym_in, - [34566] = 11, + [34741] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6467), 1, - anon_sym_LBRACK, - ACTIONS(6469), 1, - anon_sym_STAR, - ACTIONS(6471), 1, - anon_sym_PIPE, - ACTIONS(6473), 1, - anon_sym_DOT, - ACTIONS(6475), 1, - anon_sym_QMARK, - STATE(2786), 1, + ACTIONS(6493), 1, + anon_sym_COLON_COLON, + STATE(2789), 1, sym_heredoc_body, - STATE(2815), 1, - aux_sym_union_type_repeat1, + STATE(2814), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 7, + ACTIONS(4584), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4595), 36, + ACTIONS(4586), 38, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -360238,16 +364707,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -360258,31 +364728,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [34642] = 7, + [34809] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6480), 1, - anon_sym_PIPE, - STATE(2787), 1, - sym_heredoc_body, STATE(2790), 1, - aux_sym_union_type_repeat1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4584), 39, + ACTIONS(4644), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -360300,6 +364768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -360322,17 +364791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [34710] = 6, + [34873] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6482), 1, - sym_regex_modifier, - STATE(2788), 1, + STATE(2791), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5633), 8, + ACTIONS(4676), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -360341,8 +364808,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5631), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4678), 40, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -360353,18 +364821,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -360378,40 +364845,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [34776] = 11, + [34937] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6467), 1, - anon_sym_LBRACK, - ACTIONS(6469), 1, - anon_sym_STAR, - ACTIONS(6471), 1, - anon_sym_PIPE, - ACTIONS(6473), 1, - anon_sym_DOT, - ACTIONS(6475), 1, - anon_sym_QMARK, - STATE(2789), 1, + STATE(2792), 1, sym_heredoc_body, - STATE(2815), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(4660), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4605), 36, - sym__line_break, + ACTIONS(4662), 40, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -360422,18 +364880,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -360444,30 +364901,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [34852] = 6, + anon_sym_when, + anon_sym_in, + [35001] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6484), 1, - anon_sym_PIPE, + STATE(2793), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2790), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(4664), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 39, + ACTIONS(4666), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -360485,6 +364945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -360507,15 +364968,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [34918] = 5, + [35065] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2791), 1, + STATE(2794), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(4652), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -360525,7 +364986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4599), 40, + ACTIONS(4654), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -360566,35 +365027,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [34982] = 11, + [35129] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5986), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - ACTIONS(5990), 1, - anon_sym_DOT, - ACTIONS(5992), 1, - anon_sym_QMARK, - ACTIONS(6461), 1, - anon_sym_PIPE, - STATE(2792), 1, + STATE(2795), 1, sym_heredoc_body, - STATE(2860), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4683), 7, + ACTIONS(4656), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4685), 36, + ACTIONS(4658), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -360609,11 +365060,14 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -360624,6 +365078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, @@ -360631,35 +365086,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [35058] = 11, + [35193] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6480), 1, + STATE(2796), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4716), 9, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(6487), 1, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4718), 40, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(6489), 1, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, anon_sym_STAR, - ACTIONS(6491), 1, - anon_sym_DOT, - ACTIONS(6493), 1, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - STATE(2787), 1, - aux_sym_union_type_repeat1, - STATE(2793), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [35257] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2797), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(4680), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4609), 36, + ACTIONS(4682), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -360674,11 +365178,14 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -360689,6 +365196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, @@ -360696,36 +365204,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [35134] = 11, + [35321] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6467), 1, - anon_sym_LBRACK, - ACTIONS(6469), 1, - anon_sym_STAR, - ACTIONS(6471), 1, + STATE(2798), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4672), 9, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(6473), 1, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6475), 1, + anon_sym_EQ, + ACTIONS(4674), 40, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - STATE(2794), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [35385] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2799), 1, sym_heredoc_body, - STATE(2815), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4611), 7, + ACTIONS(4708), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4613), 36, - sym__line_break, + ACTIONS(4710), 40, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -360736,18 +365293,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -360758,20 +365314,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [35210] = 6, + anon_sym_when, + anon_sym_in, + [35449] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5546), 1, - anon_sym_COLON, - STATE(2795), 1, + STATE(2800), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(4712), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -360780,8 +365339,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4714), 40, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -360792,18 +365352,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -360817,21 +365376,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [35276] = 6, + [35513] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6495), 1, - anon_sym_of, - STATE(2796), 1, + STATE(2801), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5719), 8, + ACTIONS(4720), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -360840,8 +365398,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5715), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4722), 40, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -360852,18 +365411,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -360877,31 +365435,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [35342] = 11, + [35577] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6480), 1, - anon_sym_PIPE, - ACTIONS(6487), 1, + ACTIONS(5789), 1, anon_sym_LBRACK, - ACTIONS(6489), 1, + ACTIONS(5791), 1, anon_sym_STAR, - ACTIONS(6491), 1, + ACTIONS(5795), 1, anon_sym_DOT, - ACTIONS(6493), 1, + ACTIONS(5797), 1, anon_sym_QMARK, - STATE(2787), 1, - aux_sym_union_type_repeat1, - STATE(2797), 1, + ACTIONS(6495), 1, + anon_sym_PIPE, + STATE(2802), 1, sym_heredoc_body, + STATE(2855), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(4668), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -360909,7 +365468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4570), 36, + ACTIONS(4670), 36, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -360926,8 +365485,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -360946,90 +365505,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [35418] = 7, + [35653] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6497), 1, - sym__string_literal_start, - STATE(3249), 1, - sym_string, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(2798), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5499), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, + ACTIONS(5789), 1, + anon_sym_LBRACK, + ACTIONS(5791), 1, + anon_sym_STAR, + ACTIONS(5795), 1, anon_sym_DOT, - ACTIONS(5497), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(5797), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [35486] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6500), 1, - anon_sym_COMMA, - STATE(2799), 1, + ACTIONS(6495), 1, + anon_sym_PIPE, + STATE(2803), 1, sym_heredoc_body, - STATE(2852), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(2855), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(4684), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5562), 39, - sym__line_break, + anon_sym_EQ, + ACTIONS(4686), 36, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -361040,15 +365545,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -361061,28 +365563,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [35554] = 8, + [35729] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(6502), 1, - anon_sym_DASH_GT, - STATE(2800), 1, + ACTIONS(6497), 1, + anon_sym_LPAREN2, + STATE(2804), 1, sym_heredoc_body, - STATE(10154), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -361092,8 +365590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4745), 37, - sym__line_break, + ACTIONS(4644), 39, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -361105,16 +365602,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -361128,32 +365625,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, anon_sym_else, - [35624] = 7, + anon_sym_when, + anon_sym_in, + [35795] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6463), 1, - anon_sym_COLON_COLON, - STATE(2780), 1, - aux_sym_constant_repeat1, - STATE(2801), 1, + ACTIONS(6499), 1, + anon_sym_LBRACK, + ACTIONS(6501), 1, + anon_sym_STAR, + ACTIONS(6503), 1, + anon_sym_PIPE, + ACTIONS(6505), 1, + anon_sym_DOT, + ACTIONS(6507), 1, + anon_sym_QMARK, + STATE(2805), 1, sym_heredoc_body, + STATE(2825), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 10, + ACTIONS(4638), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4549), 37, + ACTIONS(4640), 36, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -361167,13 +365673,11 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -361184,78 +365688,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [35692] = 25, + [35871] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, + ACTIONS(5613), 1, anon_sym_DOT, - ACTIONS(6425), 1, + ACTIONS(6509), 1, + anon_sym_COMMA, + ACTIONS(6511), 1, anon_sym_DOT_DOT, - ACTIONS(6427), 1, + ACTIONS(6513), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, + ACTIONS(6517), 1, anon_sym_PIPE, - ACTIONS(6433), 1, + ACTIONS(6519), 1, anon_sym_CARET, - ACTIONS(6437), 1, + ACTIONS(6523), 1, anon_sym_EQ_EQ, - ACTIONS(6443), 1, + ACTIONS(6529), 1, anon_sym_AMP_STAR, - ACTIONS(6447), 1, + ACTIONS(6533), 1, anon_sym_QMARK, - ACTIONS(6449), 1, + ACTIONS(6535), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 1, + ACTIONS(6537), 1, anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + ACTIONS(6539), 1, sym__start_of_index_operator, - ACTIONS(6459), 1, + ACTIONS(6545), 1, sym_binary_ampersand, - ACTIONS(6465), 1, - anon_sym_COMMA, - STATE(2799), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(2802), 1, + STATE(2806), 1, sym_heredoc_body, + STATE(2847), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, + ACTIONS(6521), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + ACTIONS(6527), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, + ACTIONS(6531), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(6515), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, + ACTIONS(6525), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, + ACTIONS(6543), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5585), 14, + ACTIONS(5631), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -361270,28 +365774,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [35796] = 6, + [35975] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6504), 1, - anon_sym_LPAREN2, - STATE(2803), 1, + ACTIONS(6499), 1, + anon_sym_LBRACK, + ACTIONS(6501), 1, + anon_sym_STAR, + ACTIONS(6503), 1, + anon_sym_PIPE, + ACTIONS(6505), 1, + anon_sym_DOT, + ACTIONS(6507), 1, + anon_sym_QMARK, + STATE(2807), 1, sym_heredoc_body, + STATE(2825), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4599), 39, - sym__line_break, + ACTIONS(4650), 36, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -361303,19 +365814,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -361326,31 +365832,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [35862] = 11, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [36051] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6506), 1, + ACTIONS(6499), 1, anon_sym_LBRACK, - ACTIONS(6508), 1, + ACTIONS(6501), 1, anon_sym_STAR, - ACTIONS(6510), 1, + ACTIONS(6503), 1, anon_sym_PIPE, - ACTIONS(6512), 1, + ACTIONS(6505), 1, anon_sym_DOT, - ACTIONS(6514), 1, + ACTIONS(6507), 1, anon_sym_QMARK, - STATE(2804), 1, + STATE(2808), 1, sym_heredoc_body, - STATE(2872), 1, + STATE(2825), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 7, + ACTIONS(4619), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -361358,8 +365867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4595), 36, - sym__line_break, + ACTIONS(4621), 36, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -361371,17 +365879,78 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [36127] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6487), 1, + anon_sym_PIPE, + STATE(2809), 1, + sym_heredoc_body, + STATE(2811), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4634), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4636), 39, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -361392,38 +365961,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [35938] = 11, + anon_sym_else, + [36195] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6480), 1, - anon_sym_PIPE, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6489), 1, - anon_sym_STAR, - ACTIONS(6491), 1, - anon_sym_DOT, - ACTIONS(6493), 1, - anon_sym_QMARK, - STATE(2787), 1, - aux_sym_union_type_repeat1, - STATE(2805), 1, + STATE(2810), 1, sym_heredoc_body, + STATE(2825), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4605), 36, + ACTIONS(4629), 39, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -361438,11 +366000,13 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -361453,6 +366017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, @@ -361460,35 +366025,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [36014] = 11, + [36261] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6467), 1, - anon_sym_LBRACK, - ACTIONS(6469), 1, - anon_sym_STAR, - ACTIONS(6471), 1, + ACTIONS(6547), 1, anon_sym_PIPE, - ACTIONS(6473), 1, - anon_sym_DOT, - ACTIONS(6475), 1, - anon_sym_QMARK, - STATE(2806), 1, - sym_heredoc_body, - STATE(2815), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + STATE(2811), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4570), 36, + ACTIONS(4629), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -361508,10 +366065,12 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -361522,30 +366081,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [36090] = 11, + [36327] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6480), 1, - anon_sym_PIPE, - ACTIONS(6487), 1, + ACTIONS(6483), 1, anon_sym_LBRACK, - ACTIONS(6489), 1, + ACTIONS(6485), 1, anon_sym_STAR, - ACTIONS(6491), 1, + ACTIONS(6487), 1, + anon_sym_PIPE, + ACTIONS(6489), 1, anon_sym_DOT, - ACTIONS(6493), 1, + ACTIONS(6491), 1, anon_sym_QMARK, - STATE(2787), 1, + STATE(2809), 1, aux_sym_union_type_repeat1, - STATE(2807), 1, + STATE(2812), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4611), 7, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -361553,8 +366113,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4613), 36, - sym__start_of_brace_block, + ACTIONS(4625), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -361565,11 +366125,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -361585,31 +366149,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [36166] = 6, + [36403] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6516), 1, - anon_sym_of, - STATE(2808), 1, + ACTIONS(6483), 1, + anon_sym_LBRACK, + ACTIONS(6485), 1, + anon_sym_STAR, + ACTIONS(6487), 1, + anon_sym_PIPE, + ACTIONS(6489), 1, + anon_sym_DOT, + ACTIONS(6491), 1, + anon_sym_QMARK, + STATE(2809), 1, + aux_sym_union_type_repeat1, + STATE(2813), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5734), 8, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5730), 40, + anon_sym_EQ, + ACTIONS(4607), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -361623,15 +366192,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -361643,25 +366212,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [36232] = 6, + [36479] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6518), 1, + ACTIONS(6493), 1, anon_sym_COLON_COLON, + STATE(2814), 1, + sym_heredoc_body, + STATE(2816), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2809), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4561), 9, + ACTIONS(4594), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -361671,7 +366237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4563), 38, + ACTIONS(4596), 38, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -361710,94 +366276,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [36298] = 25, + [36547] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6425), 1, - anon_sym_DOT_DOT, - ACTIONS(6427), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6447), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - ACTIONS(6521), 1, - anon_sym_COMMA, - STATE(2810), 1, + ACTIONS(6493), 1, + anon_sym_COLON_COLON, + STATE(2815), 1, sym_heredoc_body, - STATE(2818), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(2817), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6441), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(4594), 9, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4596), 38, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5570), 14, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [36402] = 5, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [36615] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2811), 1, - sym_heredoc_body, + ACTIONS(6550), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4663), 9, + STATE(2816), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -361807,8 +366358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4665), 40, - sym__start_of_brace_block, + ACTIONS(4600), 38, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -361819,13 +366370,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -361840,27 +366393,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [36466] = 7, + [36681] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6521), 1, - anon_sym_COMMA, - STATE(2812), 1, + ACTIONS(6493), 1, + anon_sym_COLON_COLON, + STATE(2816), 1, + aux_sym_constant_repeat1, + STATE(2817), 1, sym_heredoc_body, - STATE(2818), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(4590), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -361869,7 +366418,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 39, + anon_sym_EQ, + ACTIONS(4592), 38, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -361884,14 +366434,16 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -361902,22 +366454,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [36534] = 5, + [36749] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2813), 1, + STATE(2818), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4675), 9, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -361927,8 +366476,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4677), 40, - sym__start_of_brace_block, + ACTIONS(4785), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -361939,17 +366488,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -361963,113 +366513,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [36598] = 25, + [36813] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6425), 1, - anon_sym_DOT_DOT, - ACTIONS(6427), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6447), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - ACTIONS(6523), 1, + ACTIONS(6509), 1, anon_sym_COMMA, - STATE(2814), 1, - sym_heredoc_body, STATE(2819), 1, + sym_heredoc_body, + STATE(2847), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6441), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(5635), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5631), 39, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5585), 14, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [36702] = 7, + [36881] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6471), 1, - anon_sym_PIPE, - STATE(2815), 1, + ACTIONS(6553), 1, + anon_sym_COLON_COLON, + STATE(2820), 1, sym_heredoc_body, - STATE(2823), 1, - aux_sym_union_type_repeat1, + STATE(2821), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(4584), 10, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4584), 39, - sym__line_break, + anon_sym_COLON2, + ACTIONS(4586), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -362080,16 +366612,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -362104,23 +366632,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [36770] = 7, + anon_sym_when, + anon_sym_in, + [36949] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6523), 1, - anon_sym_COMMA, - STATE(2816), 1, + ACTIONS(6553), 1, + anon_sym_COLON_COLON, + STATE(2821), 1, sym_heredoc_body, - STATE(2819), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(2823), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(4594), 10, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -362129,8 +366660,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 39, - sym__line_break, + anon_sym_EQ, + anon_sym_COLON2, + ACTIONS(4596), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -362141,17 +366673,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -362162,22 +366693,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [36838] = 5, + [37017] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2817), 1, + ACTIONS(6553), 1, + anon_sym_COLON_COLON, + STATE(2822), 1, sym_heredoc_body, + STATE(2824), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5654), 8, + ACTIONS(4594), 10, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -362186,8 +366721,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5652), 41, - sym__line_break, + anon_sym_EQ, + anon_sym_COLON2, + ACTIONS(4596), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -362198,18 +366734,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -362220,27 +366754,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [36902] = 7, + [37085] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6523), 1, - anon_sym_COMMA, - STATE(2818), 1, - sym_heredoc_body, - STATE(2852), 1, - aux_sym_argument_list_no_parens_repeat1, + ACTIONS(6555), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + STATE(2823), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4598), 10, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -362249,8 +366781,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 39, - sym__line_break, + anon_sym_EQ, + anon_sym_COLON2, + ACTIONS(4600), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -362261,17 +366794,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -362282,26 +366814,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [36970] = 7, + [37151] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6525), 1, - anon_sym_COMMA, - STATE(2819), 1, + ACTIONS(6553), 1, + anon_sym_COLON_COLON, + STATE(2823), 1, + aux_sym_constant_repeat1, + STATE(2824), 1, sym_heredoc_body, - STATE(2852), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(4590), 10, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -362310,8 +366842,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 39, - sym__line_break, + anon_sym_EQ, + anon_sym_COLON2, + ACTIONS(4592), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -362322,17 +366855,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -362343,34 +366875,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [37038] = 6, + [37219] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6527), 1, - anon_sym_EQ, - STATE(2820), 1, + ACTIONS(6503), 1, + anon_sym_PIPE, + STATE(2825), 1, sym_heredoc_body, + STATE(2826), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4636), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -362381,18 +366915,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -362406,31 +366938,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [37104] = 6, + [37287] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6529), 1, - anon_sym_of, - STATE(2821), 1, - sym_heredoc_body, + ACTIONS(6558), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5702), 8, + STATE(2826), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5698), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4629), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -362441,18 +366975,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -362466,34 +366998,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [37170] = 7, + [37353] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6531), 1, - anon_sym_COLON_COLON, - STATE(2809), 1, - aux_sym_constant_repeat1, - STATE(2822), 1, + ACTIONS(6499), 1, + anon_sym_LBRACK, + ACTIONS(6501), 1, + anon_sym_STAR, + ACTIONS(6503), 1, + anon_sym_PIPE, + ACTIONS(6505), 1, + anon_sym_DOT, + ACTIONS(6507), 1, + anon_sym_QMARK, + STATE(2825), 1, + aux_sym_union_type_repeat1, + STATE(2827), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4557), 9, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4559), 38, - sym__line_break, + ACTIONS(4625), 36, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -362504,19 +367043,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -362527,32 +367061,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [37238] = 6, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [37429] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6533), 1, + ACTIONS(6499), 1, + anon_sym_LBRACK, + ACTIONS(6501), 1, + anon_sym_STAR, + ACTIONS(6503), 1, anon_sym_PIPE, + ACTIONS(6505), 1, + anon_sym_DOT, + ACTIONS(6507), 1, + anon_sym_QMARK, + STATE(2825), 1, + aux_sym_union_type_repeat1, + STATE(2828), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2823), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 39, - sym__line_break, + ACTIONS(4607), 36, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -362563,20 +367108,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -362587,19 +367126,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [37304] = 5, + anon_sym_when, + anon_sym_in, + [37505] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2824), 1, + ACTIONS(6561), 1, + anon_sym_LPAREN2, + STATE(2829), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5581), 8, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -362608,8 +367152,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5579), 41, + anon_sym_EQ, + ACTIONS(4644), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -362623,15 +367169,16 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -362642,23 +367189,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [37368] = 5, + anon_sym_do, + [37571] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2825), 1, + STATE(2830), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4679), 9, + ACTIONS(4704), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -362668,7 +367211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4681), 40, + ACTIONS(4706), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -362709,26 +367252,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [37432] = 5, + [37635] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2826), 1, + ACTIONS(6563), 1, + anon_sym_LBRACK, + ACTIONS(6565), 1, + anon_sym_STAR, + ACTIONS(6567), 1, + anon_sym_PIPE, + ACTIONS(6569), 1, + anon_sym_DOT, + ACTIONS(6571), 1, + anon_sym_QMARK, + STATE(2831), 1, sym_heredoc_body, + STATE(2836), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4745), 40, + ACTIONS(4650), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -362742,14 +367296,13 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -362761,34 +367314,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [37496] = 11, + anon_sym_do, + [37711] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5986), 1, + ACTIONS(6563), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(6565), 1, anon_sym_STAR, - ACTIONS(5990), 1, + ACTIONS(6567), 1, + anon_sym_PIPE, + ACTIONS(6569), 1, anon_sym_DOT, - ACTIONS(5992), 1, + ACTIONS(6571), 1, anon_sym_QMARK, - ACTIONS(6461), 1, - anon_sym_PIPE, - STATE(2827), 1, + STATE(2832), 1, sym_heredoc_body, - STATE(2860), 1, + STATE(2836), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(4619), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -362796,7 +367345,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4609), 36, + ACTIONS(4621), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -362808,13 +367358,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -362828,32 +367381,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [37572] = 6, + [37787] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6536), 1, - anon_sym_PIPE, + STATE(2833), 1, + sym_heredoc_body, + STATE(2836), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2828), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 39, + ACTIONS(4629), 39, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -362893,19 +367442,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [37638] = 7, + [37853] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6423), 1, + ACTIONS(6509), 1, anon_sym_COMMA, - STATE(2782), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(2829), 1, + STATE(2834), 1, sym_heredoc_body, + STATE(2848), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -362914,7 +367463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 39, + ACTIONS(5631), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -362954,35 +367503,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [37706] = 11, + [37921] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6506), 1, - anon_sym_LBRACK, - ACTIONS(6508), 1, - anon_sym_STAR, - ACTIONS(6510), 1, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(6573), 1, + anon_sym_DASH_GT, + STATE(2835), 1, + sym_heredoc_body, + STATE(10246), 1, + aux_sym_proc_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4783), 9, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(6512), 1, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6514), 1, + anon_sym_EQ, + ACTIONS(4785), 37, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - STATE(2830), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + [37991] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6567), 1, + anon_sym_PIPE, + STATE(2836), 1, sym_heredoc_body, - STATE(2872), 1, + STATE(2837), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4609), 36, + ACTIONS(4636), 39, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -363002,10 +367606,12 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -363016,33 +367622,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [37782] = 8, + [38059] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(363), 1, - sym__string_literal_start, - STATE(2798), 1, - aux_sym_chained_string_repeat1, - STATE(2831), 1, - sym_heredoc_body, - STATE(3249), 1, - sym_string, + ACTIONS(6575), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5490), 8, + STATE(2837), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5488), 38, + anon_sym_EQ, + ACTIONS(4629), 39, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -363057,15 +367661,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -363080,28 +367686,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - [37852] = 11, + [38125] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6506), 1, + ACTIONS(6563), 1, anon_sym_LBRACK, - ACTIONS(6508), 1, + ACTIONS(6565), 1, anon_sym_STAR, - ACTIONS(6510), 1, + ACTIONS(6567), 1, anon_sym_PIPE, - ACTIONS(6512), 1, + ACTIONS(6569), 1, anon_sym_DOT, - ACTIONS(6514), 1, + ACTIONS(6571), 1, anon_sym_QMARK, - STATE(2832), 1, + STATE(2836), 1, + aux_sym_union_type_repeat1, + STATE(2838), 1, sym_heredoc_body, - STATE(2872), 1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4623), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4625), 36, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [38201] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6563), 1, + anon_sym_LBRACK, + ACTIONS(6565), 1, + anon_sym_STAR, + ACTIONS(6567), 1, + anon_sym_PIPE, + ACTIONS(6569), 1, + anon_sym_DOT, + ACTIONS(6571), 1, + anon_sym_QMARK, + STATE(2836), 1, aux_sym_union_type_repeat1, + STATE(2839), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -363109,7 +367779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4570), 36, + ACTIONS(4607), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -363146,17 +367816,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [37928] = 6, + [38277] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6539), 1, + ACTIONS(6578), 1, sym_regex_modifier, - STATE(2833), 1, + STATE(2840), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(5769), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -363165,7 +367835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 40, + ACTIONS(5767), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -363206,17 +367876,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [37994] = 6, + [38343] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6541), 1, - anon_sym_LPAREN2, - STATE(2834), 1, + STATE(2841), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(5685), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -363225,9 +367893,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4599), 39, - sym__start_of_brace_block, + ACTIONS(5683), 41, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -363238,16 +367905,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -363258,27 +367927,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [38060] = 7, + [38407] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6531), 1, - anon_sym_COLON_COLON, - STATE(2835), 1, + STATE(2842), 1, sym_heredoc_body, - STATE(2858), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 9, + ACTIONS(5708), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -363287,8 +367952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4549), 38, + ACTIONS(5706), 41, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -363303,16 +367967,16 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + sym__string_literal_start, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -363323,23 +367987,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [38128] = 7, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [38471] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5459), 1, + ACTIONS(5506), 1, anon_sym_LPAREN2, - ACTIONS(6543), 1, - anon_sym_EQ, - STATE(2836), 1, + STATE(2843), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -363348,7 +368013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 39, + ACTIONS(135), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -363369,6 +368034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -363388,96 +368054,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [38196] = 6, + [38537] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2815), 1, - aux_sym_union_type_repeat1, - STATE(2837), 1, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6511), 1, + anon_sym_DOT_DOT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6533), 1, + anon_sym_QMARK, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, + ACTIONS(6580), 1, + anon_sym_COMMA, + STATE(2834), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(2844), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, - anon_sym_DOT_DOT, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 39, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5587), 14, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [38262] = 11, + anon_sym_when, + anon_sym_in, + [38641] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5986), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - ACTIONS(5990), 1, - anon_sym_DOT, - ACTIONS(5992), 1, - anon_sym_QMARK, - ACTIONS(6461), 1, - anon_sym_PIPE, - STATE(2838), 1, + ACTIONS(5581), 1, + anon_sym_COLON, + STATE(2845), 1, sym_heredoc_body, - STATE(2860), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4639), 7, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4641), 36, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(135), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -363488,12 +368164,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -363506,22 +368186,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [38338] = 5, + [38707] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2839), 1, + ACTIONS(6580), 1, + anon_sym_COMMA, + STATE(2834), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(2846), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4561), 10, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -363530,9 +368214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4563), 39, + ACTIONS(5587), 39, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -363543,17 +368226,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -363564,45 +368247,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [38402] = 11, + [38775] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6506), 1, - anon_sym_LBRACK, - ACTIONS(6508), 1, - anon_sym_STAR, - ACTIONS(6510), 1, - anon_sym_PIPE, - ACTIONS(6512), 1, - anon_sym_DOT, - ACTIONS(6514), 1, - anon_sym_QMARK, - STATE(2840), 1, + ACTIONS(6582), 1, + anon_sym_COMMA, + STATE(2847), 1, sym_heredoc_body, - STATE(2872), 1, - aux_sym_union_type_repeat1, + STATE(2848), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4605), 36, + anon_sym_DOT, + ACTIONS(5637), 39, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -363616,13 +368290,13 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -363634,40 +368308,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [38478] = 11, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [38843] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6506), 1, - anon_sym_LBRACK, - ACTIONS(6508), 1, - anon_sym_STAR, - ACTIONS(6510), 1, - anon_sym_PIPE, - ACTIONS(6512), 1, - anon_sym_DOT, - ACTIONS(6514), 1, - anon_sym_QMARK, - STATE(2841), 1, - sym_heredoc_body, - STATE(2872), 1, - aux_sym_union_type_repeat1, + ACTIONS(6584), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4611), 7, + STATE(2848), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4613), 36, + anon_sym_DOT, + ACTIONS(5694), 39, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -363681,13 +368350,13 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -363699,22 +368368,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [38554] = 7, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [38909] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6465), 1, - anon_sym_COMMA, - STATE(2799), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(2842), 1, + STATE(2849), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(4598), 10, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -363723,8 +368392,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 39, - sym__line_break, + anon_sym_EQ, + anon_sym_COLON2, + ACTIONS(4600), 39, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -363735,17 +368405,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -363756,22 +368426,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [38622] = 5, + [38973] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2843), 1, + ACTIONS(6587), 1, + anon_sym_of, + STATE(2850), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4651), 9, + ACTIONS(5757), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -363780,9 +368453,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4653), 40, - sym__start_of_brace_block, + ACTIONS(5753), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -363793,17 +368465,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -363817,20 +368490,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [38686] = 5, + [39039] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2844), 1, + ACTIONS(6589), 1, + anon_sym_of, + STATE(2851), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4615), 9, + ACTIONS(5733), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -363839,9 +368513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4617), 40, - sym__start_of_brace_block, + ACTIONS(5729), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -363852,17 +368525,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -363876,20 +368550,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [38750] = 5, + [39105] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2845), 1, + ACTIONS(6591), 1, + anon_sym_of, + STATE(2852), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4631), 9, + ACTIONS(5651), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -363898,9 +368573,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4633), 40, - sym__start_of_brace_block, + ACTIONS(5647), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -363911,17 +368585,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -363935,22 +368610,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [38814] = 6, + [39171] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6545), 1, + ACTIONS(6593), 1, sym_regex_modifier, - STATE(2846), 1, + STATE(2853), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -363959,7 +368633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 40, + ACTIONS(5741), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -364000,27 +368674,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [38880] = 11, + [39237] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6480), 1, - anon_sym_PIPE, - ACTIONS(6487), 1, + ACTIONS(5789), 1, anon_sym_LBRACK, - ACTIONS(6489), 1, + ACTIONS(5791), 1, anon_sym_STAR, - ACTIONS(6491), 1, + ACTIONS(5795), 1, anon_sym_DOT, - ACTIONS(6493), 1, + ACTIONS(5797), 1, anon_sym_QMARK, - STATE(2787), 1, - aux_sym_union_type_repeat1, - STATE(2847), 1, + ACTIONS(6495), 1, + anon_sym_PIPE, + STATE(2854), 1, sym_heredoc_body, + STATE(2855), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 7, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -364028,7 +368702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4595), 36, + ACTIONS(4650), 36, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -364045,8 +368719,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -364065,31 +368739,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [38956] = 8, + [39313] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(363), 1, - sym__string_literal_start, - STATE(2831), 1, - aux_sym_chained_string_repeat1, - STATE(2848), 1, + ACTIONS(6495), 1, + anon_sym_PIPE, + STATE(2855), 1, sym_heredoc_body, - STATE(3249), 1, - sym_string, + STATE(2856), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 38, - sym__line_break, + anon_sym_EQ, + ACTIONS(4636), 39, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -364101,17 +368772,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -364125,29 +368795,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, anon_sym_else, - [39026] = 6, + anon_sym_when, + anon_sym_in, + [39381] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6547), 1, - sym_regex_modifier, - STATE(2849), 1, - sym_heredoc_body, + ACTIONS(6595), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5679), 8, + STATE(2856), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5677), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4629), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -364158,18 +368832,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -364183,29 +368855,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [39092] = 5, + [39447] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2850), 1, + ACTIONS(5789), 1, + anon_sym_LBRACK, + ACTIONS(5791), 1, + anon_sym_STAR, + ACTIONS(5795), 1, + anon_sym_DOT, + ACTIONS(5797), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, + anon_sym_PIPE, + STATE(2855), 1, + aux_sym_union_type_repeat1, + STATE(2857), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4619), 9, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4621), 40, + ACTIONS(4625), 36, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -364220,14 +368903,11 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -364238,7 +368918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, @@ -364246,25 +368925,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [39156] = 5, + [39523] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2851), 1, + ACTIONS(5789), 1, + anon_sym_LBRACK, + ACTIONS(5791), 1, + anon_sym_STAR, + ACTIONS(5795), 1, + anon_sym_DOT, + ACTIONS(5797), 1, + anon_sym_QMARK, + ACTIONS(6495), 1, + anon_sym_PIPE, + STATE(2855), 1, + aux_sym_union_type_repeat1, + STATE(2858), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4627), 9, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4629), 40, + ACTIONS(4607), 36, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -364279,14 +368968,11 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -364297,7 +368983,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, @@ -364305,18 +368990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [39220] = 6, + [39599] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6549), 1, - anon_sym_COMMA, + STATE(2859), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2852), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5713), 8, + ACTIONS(5645), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -364325,7 +369007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 39, + ACTIONS(5643), 41, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -364346,6 +369028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -364358,6 +369041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -364365,15 +369049,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [39286] = 5, + [39663] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2853), 1, + STATE(2860), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4655), 9, + ACTIONS(4688), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -364383,7 +369067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4657), 40, + ACTIONS(4690), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -364424,15 +369108,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [39350] = 5, + [39727] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2854), 1, + STATE(2861), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4671), 9, + ACTIONS(4696), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -364442,7 +369126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4673), 40, + ACTIONS(4698), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -364483,35 +369167,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [39414] = 11, + [39791] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5986), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - ACTIONS(5990), 1, - anon_sym_DOT, - ACTIONS(5992), 1, - anon_sym_QMARK, - ACTIONS(6461), 1, - anon_sym_PIPE, - STATE(2855), 1, + STATE(2862), 1, sym_heredoc_body, - STATE(2860), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(4700), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4605), 36, + ACTIONS(4702), 40, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -364526,11 +369200,14 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -364541,6 +369218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, @@ -364548,195 +369226,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [39490] = 6, + [39855] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2856), 1, - sym_heredoc_body, - STATE(2872), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4586), 9, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6511), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(6529), 1, anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 39, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(6533), 1, anon_sym_QMARK, + ACTIONS(6535), 1, anon_sym_AMP_AMP, + ACTIONS(6537), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - [39556] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2857), 1, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, + ACTIONS(6598), 1, + anon_sym_COMMA, + STATE(2863), 1, sym_heredoc_body, + STATE(2867), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4659), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4661), 40, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, + ACTIONS(6521), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6527), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(6531), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [39620] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6531), 1, - anon_sym_COLON_COLON, - STATE(2809), 1, - aux_sym_constant_repeat1, - STATE(2858), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4553), 9, - anon_sym_DOT_DOT, + ACTIONS(6515), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 38, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5587), 14, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [39688] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [39959] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2859), 1, + ACTIONS(6598), 1, + anon_sym_COMMA, + STATE(2864), 1, sym_heredoc_body, + STATE(2867), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5648), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -364745,7 +369326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5646), 41, + ACTIONS(5587), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -364762,12 +369343,10 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -364787,29 +369366,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [39752] = 7, + [40027] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6461), 1, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6511), 1, + anon_sym_DOT_DOT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, anon_sym_PIPE, - STATE(2860), 1, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6533), 1, + anon_sym_QMARK, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, + ACTIONS(6600), 1, + anon_sym_COMMA, + STATE(2865), 1, sym_heredoc_body, - STATE(2867), 1, - aux_sym_union_type_repeat1, + STATE(2868), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6543), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5631), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [40131] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6600), 1, + anon_sym_COMMA, + STATE(2866), 1, + sym_heredoc_body, + STATE(2868), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 39, - sym__start_of_brace_block, + ACTIONS(5631), 39, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -364820,16 +369478,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -364843,22 +369502,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [39820] = 6, + [40199] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6552), 1, - anon_sym_of, - STATE(2861), 1, + ACTIONS(6600), 1, + anon_sym_COMMA, + STATE(2848), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(2867), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5660), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -364867,7 +369527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5656), 40, + ACTIONS(5631), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -364888,7 +369548,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -364908,17 +369567,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [39886] = 6, + [40267] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6554), 1, - anon_sym_of, - STATE(2862), 1, + ACTIONS(6602), 1, + anon_sym_COMMA, + STATE(2848), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(2868), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5728), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -364927,7 +369588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5724), 40, + ACTIONS(5637), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -364948,7 +369609,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -364968,17 +369628,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [39952] = 6, + [40335] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6556), 1, - anon_sym_of, - STATE(2863), 1, + ACTIONS(6604), 1, + anon_sym_EQ, + STATE(2869), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5690), 8, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -364987,7 +369647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5686), 40, + ACTIONS(5761), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -365028,15 +369688,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [40018] = 5, + [40401] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2864), 1, + STATE(2855), 1, + aux_sym_union_type_repeat1, + STATE(2870), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4635), 9, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -365046,7 +369708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4637), 40, + ACTIONS(4629), 39, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -365066,7 +369728,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, anon_sym_CARET, @@ -365087,17 +369748,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [40082] = 6, + [40467] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6558), 1, - anon_sym_LPAREN2, - STATE(2865), 1, + STATE(2871), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(4692), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -365107,8 +369766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4599), 39, - sym__line_break, + ACTIONS(4694), 40, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -365119,16 +369778,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -365146,18 +369802,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [40148] = 6, + anon_sym_when, + anon_sym_in, + [40531] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5459), 1, - anon_sym_LPAREN2, - STATE(2866), 1, + ACTIONS(6606), 1, + anon_sym_of, + STATE(2872), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5739), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -365166,7 +369826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 40, + ACTIONS(5735), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -365207,28 +369867,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [40214] = 6, + [40597] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6560), 1, - anon_sym_PIPE, + ACTIONS(6608), 1, + anon_sym_of, + STATE(2873), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2867), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(5725), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 39, - sym__start_of_brace_block, + ACTIONS(5721), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -365239,16 +369898,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -365262,24 +369923,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [40280] = 7, + [40663] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6531), 1, - anon_sym_COLON_COLON, - STATE(2822), 1, - aux_sym_constant_repeat1, - STATE(2868), 1, + ACTIONS(6610), 1, + anon_sym_of, + STATE(2874), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 9, + ACTIONS(5714), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -365288,8 +369946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 38, + ACTIONS(5710), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -365304,16 +369961,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -365324,29 +369980,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [40348] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [40729] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2869), 1, + ACTIONS(6563), 1, + anon_sym_LBRACK, + ACTIONS(6565), 1, + anon_sym_STAR, + ACTIONS(6567), 1, + anon_sym_PIPE, + ACTIONS(6569), 1, + anon_sym_DOT, + ACTIONS(6571), 1, + anon_sym_QMARK, + STATE(2836), 1, + aux_sym_union_type_repeat1, + STATE(2875), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4643), 9, + ACTIONS(4638), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4645), 40, + ACTIONS(4640), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -365358,17 +370028,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -365379,23 +370049,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, + [40805] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6511), 1, + anon_sym_DOT_DOT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6533), 1, + anon_sym_QMARK, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, + ACTIONS(6614), 1, + anon_sym_COMMA, + STATE(2876), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6543), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6612), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [40412] = 5, + [40906] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2870), 1, + STATE(2877), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4647), 9, + ACTIONS(5931), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -365404,9 +370146,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4649), 40, - sym__start_of_brace_block, + ACTIONS(5929), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -365417,17 +370158,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -365441,20 +370183,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [40476] = 5, + [40969] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2871), 1, + STATE(2878), 1, sym_heredoc_body, + STATE(2921), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4667), 9, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -365464,8 +370207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4669), 40, - sym__start_of_brace_block, + ACTIONS(4629), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -365501,34 +370243,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [40540] = 7, + [41034] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6510), 1, - anon_sym_PIPE, - STATE(2828), 1, - aux_sym_union_type_repeat1, - STATE(2872), 1, + STATE(2879), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(6164), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 39, + ACTIONS(6162), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -365542,16 +370278,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -365565,16 +370300,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [40608] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [41097] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2873), 1, + STATE(2880), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6276), 8, + ACTIONS(5935), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -365583,7 +370321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6274), 40, + ACTIONS(5933), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -365624,37 +370362,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [40671] = 11, + [41160] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6506), 1, - anon_sym_LBRACK, - ACTIONS(6508), 1, - anon_sym_STAR, - ACTIONS(6512), 1, - anon_sym_DOT, - ACTIONS(6514), 1, - anon_sym_QMARK, - ACTIONS(6563), 1, - anon_sym_PIPE, - STATE(2874), 1, + STATE(2881), 1, sym_heredoc_body, - STATE(3084), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4683), 7, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4685), 35, + anon_sym_DOT, + ACTIONS(5937), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -365668,10 +370394,12 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -365685,40 +370413,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [40746] = 11, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [41223] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6506), 1, - anon_sym_LBRACK, - ACTIONS(6508), 1, - anon_sym_STAR, - ACTIONS(6512), 1, - anon_sym_DOT, - ACTIONS(6514), 1, - anon_sym_QMARK, - ACTIONS(6563), 1, - anon_sym_PIPE, - STATE(2875), 1, + STATE(2882), 1, sym_heredoc_body, - STATE(3084), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4639), 7, + ACTIONS(5837), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4641), 35, + anon_sym_DOT, + ACTIONS(5835), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -365732,10 +370452,12 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -365749,18 +370471,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [40821] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [41286] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2876), 1, + STATE(2883), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6212), 8, + ACTIONS(6059), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -365769,7 +370495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6210), 40, + ACTIONS(6057), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -365810,17 +370536,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [40884] = 6, + [41349] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6565), 1, - anon_sym_of, - STATE(2877), 1, + STATE(2884), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5660), 8, + ACTIONS(6470), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -365829,7 +370553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5656), 39, + ACTIONS(6468), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -365850,6 +370574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -365869,28 +370594,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [40949] = 7, + [41412] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6567), 1, - anon_sym_PIPE, - STATE(2878), 1, + STATE(2885), 1, sym_heredoc_body, - STATE(2879), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 38, + ACTIONS(6381), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -365904,17 +370625,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -365928,28 +370648,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [41016] = 6, + anon_sym_when, + anon_sym_in, + [41475] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6569), 1, - anon_sym_PIPE, + STATE(2886), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2879), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(6450), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 38, + ACTIONS(6448), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -365963,17 +370683,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -365987,18 +370706,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [41081] = 6, + anon_sym_when, + anon_sym_in, + [41538] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6572), 1, - anon_sym_of, - STATE(2880), 1, + STATE(2887), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5719), 8, + ACTIONS(5805), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -366007,7 +370727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5715), 39, + ACTIONS(5803), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -366028,6 +370748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -366047,35 +370768,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [41146] = 11, + [41601] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6467), 1, - anon_sym_LBRACK, - ACTIONS(6469), 1, - anon_sym_STAR, - ACTIONS(6473), 1, - anon_sym_DOT, - ACTIONS(6475), 1, - anon_sym_QMARK, - ACTIONS(6567), 1, - anon_sym_PIPE, - STATE(2878), 1, - aux_sym_union_type_repeat1, - STATE(2881), 1, + STATE(2888), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(5865), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 35, + anon_sym_DOT, + ACTIONS(5863), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -366089,12 +370799,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -366108,18 +370819,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [41221] = 5, + anon_sym_when, + anon_sym_in, + [41664] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2882), 1, + ACTIONS(6616), 1, + anon_sym_of, + STATE(2889), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5927), 8, + ACTIONS(5757), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -366128,7 +370845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5925), 40, + ACTIONS(5753), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -366149,7 +370866,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -366169,15 +370885,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [41284] = 5, + [41729] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2883), 1, + STATE(2890), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6216), 8, + ACTIONS(5947), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -366186,7 +370902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6214), 40, + ACTIONS(5945), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -366227,15 +370943,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [41347] = 5, + [41792] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2884), 1, + STATE(2891), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(5559), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -366244,8 +370960,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 40, + ACTIONS(5557), 40, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -366258,13 +370975,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, + sym__string_literal_start, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -366278,75 +370995,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [41410] = 21, + [41855] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5941), 1, + STATE(2892), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5574), 8, anon_sym_DOT_DOT, - ACTIONS(6431), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, anon_sym_EQ_EQ, - ACTIONS(6443), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + anon_sym_DOT, + ACTIONS(5572), 40, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(6459), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - STATE(2885), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6435), 2, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + sym__string_literal_start, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + [41918] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2893), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6051), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6049), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5939), 17, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -366354,20 +371100,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [41505] = 5, + [41981] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2886), 1, + STATE(2894), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5931), 8, + ACTIONS(5570), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -366376,7 +371134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5929), 40, + ACTIONS(5568), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -366417,243 +371175,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [41568] = 23, + [42044] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6425), 1, - anon_sym_DOT_DOT, - ACTIONS(6427), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6447), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - STATE(2887), 1, + STATE(2895), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6441), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(5787), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5785), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6010), 15, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [41667] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6425), 1, - anon_sym_DOT_DOT, - ACTIONS(6427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6447), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - STATE(2888), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6435), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6455), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6457), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6030), 15, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [41766] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6425), 1, - anon_sym_DOT_DOT, - ACTIONS(6427), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6447), 1, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(6449), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 1, anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - STATE(2889), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6441), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6455), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6457), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6032), 15, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_end, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [41865] = 5, + [42107] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2890), 1, + STATE(2896), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6238), 8, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -366662,7 +371250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6236), 40, + ACTIONS(5785), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -366703,53 +371291,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [41928] = 10, + [42170] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6453), 1, - sym__start_of_index_operator, - STATE(2891), 1, + STATE(2897), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6457), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 33, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4644), 39, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -366759,29 +371344,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [42001] = 8, + [42233] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6453), 1, - sym__start_of_index_operator, - STATE(2892), 1, + STATE(2898), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(4676), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -366789,28 +371365,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 37, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4678), 39, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -366820,29 +371402,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [42070] = 8, + [42296] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6453), 1, - sym__start_of_index_operator, - STATE(2893), 1, + STATE(2899), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(4660), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -366850,28 +371423,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 37, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4662), 39, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -366881,336 +371460,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [42139] = 12, + [42359] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6453), 1, - sym__start_of_index_operator, - STATE(2894), 1, + STATE(2900), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6455), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6457), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6064), 6, + ACTIONS(4664), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6062), 27, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4666), 39, sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [42216] = 21, + [42422] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6068), 1, - anon_sym_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - STATE(2895), 1, + STATE(2901), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6441), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(4652), 9, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4654), 39, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6066), 17, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, - anon_sym_QMARK, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [42311] = 17, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, + anon_sym_STAR, anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - STATE(2896), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6435), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6439), 4, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6455), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6457), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6070), 21, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [42398] = 13, + [42485] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - STATE(2897), 1, + STATE(2902), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6455), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6457), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6082), 6, + ACTIONS(4656), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6080), 26, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4658), 39, sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [42477] = 11, + [42548] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6453), 1, - sym__start_of_index_operator, - STATE(2898), 1, + STATE(2903), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6455), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6457), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6090), 6, + ACTIONS(4716), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6088), 29, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4718), 39, sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -367220,235 +371692,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [42552] = 15, + [42611] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - STATE(2899), 1, + STATE(2904), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6455), 4, + ACTIONS(4680), 9, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4682), 39, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6094), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6092), 25, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [42635] = 19, + [42674] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6114), 1, - anon_sym_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - STATE(2900), 1, + STATE(2905), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6441), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(4672), 9, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4674), 39, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6112), 19, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [42726] = 20, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6118), 1, - anon_sym_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, + anon_sym_STAR, anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - STATE(2901), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6435), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6455), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6457), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6116), 18, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [42819] = 5, + [42737] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2902), 1, + STATE(2906), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5512), 8, + ACTIONS(4708), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -367457,7 +371830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 40, + anon_sym_EQ, + ACTIONS(4710), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -367471,16 +371845,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -367494,19 +371870,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [42882] = 5, + [42800] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2903), 1, + STATE(2907), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6036), 8, + ACTIONS(4712), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -367515,7 +371888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6034), 40, + anon_sym_EQ, + ACTIONS(4714), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -367529,16 +371903,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -367552,19 +371928,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [42945] = 5, + [42863] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2904), 1, + STATE(2908), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6040), 8, + ACTIONS(4720), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -367573,7 +371946,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6038), 40, + anon_sym_EQ, + ACTIONS(4722), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -367587,16 +371961,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -367610,19 +371986,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [43008] = 5, + [42926] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2905), 1, + ACTIONS(1261), 1, + anon_sym_COLON, + ACTIONS(5585), 1, + anon_sym_COLON_COLON, + STATE(2498), 1, + aux_sym_constant_repeat1, + STATE(2909), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6044), 8, + ACTIONS(4584), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -367631,8 +372010,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6042), 40, + ACTIONS(4586), 37, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -367646,12 +372026,10 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -367665,22 +372043,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [43071] = 5, + anon_sym_do, + [42995] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2906), 1, + ACTIONS(503), 1, + sym__string_literal_start, + ACTIONS(6618), 1, + anon_sym_COLON, + STATE(2910), 1, sym_heredoc_body, + STATE(3228), 1, + aux_sym_chained_string_repeat1, + STATE(3636), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6060), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -367689,8 +372073,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6058), 40, + ACTIONS(135), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -367704,12 +372089,10 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -367726,19 +372109,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [43134] = 5, + anon_sym_do, + [43066] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2907), 1, + STATE(2911), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6254), 8, + ACTIONS(5821), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -367747,7 +372127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6252), 40, + ACTIONS(5819), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -367788,25 +372168,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [43197] = 5, + [43129] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2908), 1, + ACTIONS(6483), 1, + anon_sym_LBRACK, + ACTIONS(6485), 1, + anon_sym_STAR, + ACTIONS(6489), 1, + anon_sym_DOT, + ACTIONS(6491), 1, + anon_sym_QMARK, + ACTIONS(6620), 1, + anon_sym_PIPE, + STATE(2912), 1, sym_heredoc_body, + STATE(3015), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4667), 9, + ACTIONS(4668), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4669), 39, + ACTIONS(4670), 35, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -367826,12 +372216,9 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -367842,28 +372229,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [43260] = 5, + [43204] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2909), 1, + ACTIONS(6483), 1, + anon_sym_LBRACK, + ACTIONS(6485), 1, + anon_sym_STAR, + ACTIONS(6489), 1, + anon_sym_DOT, + ACTIONS(6491), 1, + anon_sym_QMARK, + ACTIONS(6620), 1, + anon_sym_PIPE, + STATE(2913), 1, sym_heredoc_body, + STATE(3015), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6110), 8, + ACTIONS(4684), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6108), 40, + anon_sym_EQ, + ACTIONS(4686), 35, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -367877,13 +372274,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -367897,22 +372293,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [43323] = 5, + [43279] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2910), 1, + STATE(2914), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6138), 8, + ACTIONS(5783), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -367921,7 +372313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6136), 40, + ACTIONS(5781), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -367962,63 +372354,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [43386] = 21, + [43342] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, + ACTIONS(5613), 1, anon_sym_DOT, - ACTIONS(6242), 1, + ACTIONS(6511), 1, anon_sym_DOT_DOT, - ACTIONS(6431), 1, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, anon_sym_PIPE, - ACTIONS(6433), 1, + ACTIONS(6519), 1, anon_sym_CARET, - ACTIONS(6437), 1, + ACTIONS(6523), 1, anon_sym_EQ_EQ, - ACTIONS(6443), 1, + ACTIONS(6529), 1, anon_sym_AMP_STAR, - ACTIONS(6449), 1, + ACTIONS(6533), 1, + anon_sym_QMARK, + ACTIONS(6535), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 1, + ACTIONS(6537), 1, anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + ACTIONS(6539), 1, sym__start_of_index_operator, - ACTIONS(6459), 1, + ACTIONS(6545), 1, sym_binary_ampersand, - STATE(2911), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + STATE(2915), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, + ACTIONS(6521), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + ACTIONS(6527), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, + ACTIONS(6531), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(6515), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, + ACTIONS(6525), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, + ACTIONS(6543), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6240), 17, + ACTIONS(6622), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -368028,23 +372426,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [43481] = 5, + [43443] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2912), 1, + STATE(2916), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6260), 8, + ACTIONS(5845), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -368053,7 +372448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6258), 40, + ACTIONS(5843), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -368094,15 +372489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [43544] = 5, + [43506] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2913), 1, + STATE(2917), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -368111,7 +372506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 40, + ACTIONS(5903), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -368152,67 +372547,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [43607] = 23, + [43569] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, + ACTIONS(5613), 1, anon_sym_DOT, - ACTIONS(6425), 1, + ACTIONS(6511), 1, anon_sym_DOT_DOT, - ACTIONS(6427), 1, + ACTIONS(6513), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, + ACTIONS(6517), 1, anon_sym_PIPE, - ACTIONS(6433), 1, + ACTIONS(6519), 1, anon_sym_CARET, - ACTIONS(6437), 1, + ACTIONS(6523), 1, anon_sym_EQ_EQ, - ACTIONS(6443), 1, + ACTIONS(6529), 1, anon_sym_AMP_STAR, - ACTIONS(6447), 1, + ACTIONS(6533), 1, anon_sym_QMARK, - ACTIONS(6449), 1, + ACTIONS(6535), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 1, + ACTIONS(6537), 1, anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + ACTIONS(6539), 1, sym__start_of_index_operator, - ACTIONS(6459), 1, + ACTIONS(6545), 1, sym_binary_ampersand, - STATE(2914), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + STATE(2918), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, + ACTIONS(6521), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + ACTIONS(6527), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, + ACTIONS(6531), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(6515), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, + ACTIONS(6525), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, + ACTIONS(6543), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6256), 15, + ACTIONS(6622), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -368222,73 +372619,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [43670] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2919), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5749), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5747), 40, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [43706] = 23, + [43733] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, + ACTIONS(5613), 1, anon_sym_DOT, - ACTIONS(6425), 1, + ACTIONS(6511), 1, anon_sym_DOT_DOT, - ACTIONS(6427), 1, + ACTIONS(6513), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, + ACTIONS(6517), 1, anon_sym_PIPE, - ACTIONS(6433), 1, + ACTIONS(6519), 1, anon_sym_CARET, - ACTIONS(6437), 1, + ACTIONS(6523), 1, anon_sym_EQ_EQ, - ACTIONS(6443), 1, + ACTIONS(6529), 1, anon_sym_AMP_STAR, - ACTIONS(6447), 1, + ACTIONS(6533), 1, anon_sym_QMARK, - ACTIONS(6449), 1, + ACTIONS(6535), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 1, + ACTIONS(6537), 1, anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + ACTIONS(6539), 1, sym__start_of_index_operator, - ACTIONS(6459), 1, + ACTIONS(6545), 1, sym_binary_ampersand, - STATE(2915), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + STATE(2920), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, + ACTIONS(6521), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + ACTIONS(6527), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, + ACTIONS(6531), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(6515), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, + ACTIONS(6525), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, + ACTIONS(6543), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6230), 15, + ACTIONS(6622), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -368298,31 +372754,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_end, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [43805] = 5, + [43834] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2916), 1, + ACTIONS(6624), 1, + anon_sym_PIPE, + STATE(2921), 1, sym_heredoc_body, + STATE(2924), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6272), 8, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6270), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4636), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -368333,18 +372791,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -368358,19 +372815,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [43868] = 5, + [43901] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2917), 1, + STATE(2922), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6134), 8, + ACTIONS(6438), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -368379,7 +372836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6132), 40, + ACTIONS(6436), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -368420,15 +372877,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [43931] = 5, + [43964] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2918), 1, + STATE(2923), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6280), 8, + ACTIONS(5921), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -368437,7 +372894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6278), 40, + ACTIONS(5919), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -368478,25 +372935,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [43994] = 5, + [44027] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2919), 1, - sym_heredoc_body, + ACTIONS(6626), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6284), 8, + STATE(2924), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6282), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4629), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -368507,18 +372966,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -368532,19 +372990,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [44057] = 5, + [44092] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2920), 1, + STATE(2925), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6288), 8, + ACTIONS(6179), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -368553,7 +373011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6286), 40, + ACTIONS(6177), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -368594,15 +373052,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [44120] = 5, + [44155] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2921), 1, + STATE(2926), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6192), 8, + ACTIONS(5809), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -368611,7 +373069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6190), 40, + ACTIONS(5807), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -368652,22 +373110,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [44183] = 8, + [44218] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(387), 1, - sym__start_of_brace_block, - ACTIONS(6574), 1, - anon_sym_do, - STATE(2922), 1, + STATE(2927), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3348), 2, - sym_do_end_block, - sym_brace_block, - ACTIONS(5512), 8, + ACTIONS(6363), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -368676,7 +373127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 36, + ACTIONS(6361), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -368690,12 +373141,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -368712,36 +373164,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [44252] = 11, + anon_sym_when, + anon_sym_in, + [44281] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6467), 1, - anon_sym_LBRACK, - ACTIONS(6469), 1, - anon_sym_STAR, - ACTIONS(6473), 1, - anon_sym_DOT, - ACTIONS(6475), 1, - anon_sym_QMARK, - ACTIONS(6567), 1, - anon_sym_PIPE, - STATE(2878), 1, - aux_sym_union_type_repeat1, - STATE(2923), 1, + STATE(2928), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(6454), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4605), 35, + anon_sym_DOT, + ACTIONS(6452), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -368755,12 +373199,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -368774,20 +373219,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [44327] = 6, + anon_sym_when, + anon_sym_in, + [44344] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2878), 1, - aux_sym_union_type_repeat1, - STATE(2924), 1, + STATE(2929), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(6466), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -368796,8 +373243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 38, + ACTIONS(6464), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -368811,17 +373257,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -368835,18 +373280,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [44392] = 6, + anon_sym_when, + anon_sym_in, + [44407] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6576), 1, - anon_sym_of, - STATE(2925), 1, + STATE(2930), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5702), 8, + ACTIONS(6406), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -368855,7 +373301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5698), 39, + ACTIONS(6404), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -368876,6 +373322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -368895,15 +373342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [44457] = 5, + [44470] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2926), 1, + STATE(2931), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6292), 8, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -368912,7 +373359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6290), 40, + ACTIONS(6199), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -368953,15 +373400,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [44520] = 5, + [44533] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2927), 1, + ACTIONS(6629), 1, + anon_sym_of, + STATE(2932), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6308), 8, + ACTIONS(5714), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -368970,7 +373419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6306), 40, + ACTIONS(5710), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -368991,7 +373440,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -369011,25 +373459,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [44583] = 5, + [44598] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2928), 1, + ACTIONS(6624), 1, + anon_sym_PIPE, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6633), 1, + anon_sym_STAR, + ACTIONS(6635), 1, + anon_sym_DOT, + ACTIONS(6637), 1, + anon_sym_QMARK, + STATE(2921), 1, + aux_sym_union_type_repeat1, + STATE(2933), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5935), 8, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5933), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4625), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -369040,17 +373498,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -369062,22 +373517,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [44646] = 5, + [44673] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2929), 1, + STATE(2934), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5945), 8, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -369086,7 +373540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5943), 40, + ACTIONS(6321), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -369127,15 +373581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [44709] = 5, + [44736] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2930), 1, + STATE(2935), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(5881), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -369144,7 +373598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5955), 40, + ACTIONS(5879), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -369185,167 +373639,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [44772] = 23, + [44799] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6425), 1, - anon_sym_DOT_DOT, - ACTIONS(6427), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6447), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - STATE(2931), 1, + STATE(2936), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6441), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(6023), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6021), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6358), 15, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [44871] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6425), 1, - anon_sym_DOT_DOT, - ACTIONS(6427), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6447), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - STATE(2932), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6435), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6455), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6457), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6364), 15, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_end, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [44970] = 5, + [44862] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2933), 1, + STATE(2937), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5976), 8, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -369354,7 +373714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5974), 40, + ACTIONS(6035), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -369395,15 +373755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [45033] = 5, + [44925] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2934), 1, + STATE(2938), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5980), 8, + ACTIONS(6303), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -369412,7 +373772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5978), 40, + ACTIONS(6301), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -369453,15 +373813,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [45096] = 5, + [44988] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2935), 1, + STATE(2939), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5984), 8, + ACTIONS(6055), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -369470,7 +373830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5982), 40, + ACTIONS(6053), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -369511,67 +373871,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [45159] = 23, + [45051] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, + ACTIONS(5613), 1, anon_sym_DOT, - ACTIONS(6425), 1, + ACTIONS(6511), 1, anon_sym_DOT_DOT, - ACTIONS(6427), 1, + ACTIONS(6513), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, + ACTIONS(6517), 1, anon_sym_PIPE, - ACTIONS(6433), 1, + ACTIONS(6519), 1, anon_sym_CARET, - ACTIONS(6437), 1, + ACTIONS(6523), 1, anon_sym_EQ_EQ, - ACTIONS(6443), 1, + ACTIONS(6529), 1, anon_sym_AMP_STAR, - ACTIONS(6447), 1, + ACTIONS(6533), 1, anon_sym_QMARK, - ACTIONS(6449), 1, + ACTIONS(6535), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 1, + ACTIONS(6537), 1, anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + ACTIONS(6539), 1, sym__start_of_index_operator, - ACTIONS(6459), 1, + ACTIONS(6545), 1, sym_binary_ampersand, - STATE(2936), 1, + STATE(2940), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, + ACTIONS(6521), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + ACTIONS(6527), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, + ACTIONS(6531), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(6515), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, + ACTIONS(6525), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, + ACTIONS(6543), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6144), 15, + ACTIONS(6025), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -369587,67 +373947,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [45258] = 23, + [45150] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, + ACTIONS(5613), 1, anon_sym_DOT, - ACTIONS(6425), 1, + ACTIONS(6511), 1, anon_sym_DOT_DOT, - ACTIONS(6427), 1, + ACTIONS(6513), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, + ACTIONS(6517), 1, anon_sym_PIPE, - ACTIONS(6433), 1, + ACTIONS(6519), 1, anon_sym_CARET, - ACTIONS(6437), 1, + ACTIONS(6523), 1, anon_sym_EQ_EQ, - ACTIONS(6443), 1, + ACTIONS(6529), 1, anon_sym_AMP_STAR, - ACTIONS(6447), 1, + ACTIONS(6533), 1, anon_sym_QMARK, - ACTIONS(6449), 1, + ACTIONS(6535), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 1, + ACTIONS(6537), 1, anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + ACTIONS(6539), 1, sym__start_of_index_operator, - ACTIONS(6459), 1, + ACTIONS(6545), 1, sym_binary_ampersand, - STATE(2937), 1, + STATE(2941), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, + ACTIONS(6521), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + ACTIONS(6527), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, + ACTIONS(6531), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(6515), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, + ACTIONS(6525), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, + ACTIONS(6543), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6152), 15, + ACTIONS(6039), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -369663,15 +374023,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [45357] = 5, + [45249] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2938), 1, + STATE(2942), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6008), 8, + ACTIONS(5943), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -369680,7 +374040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6006), 40, + ACTIONS(5941), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -369721,15 +374081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [45420] = 5, + [45312] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2939), 1, + STATE(2943), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6012), 8, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -369738,8 +374098,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6010), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4644), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -369750,18 +374111,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -369775,19 +374134,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [45483] = 5, + [45375] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2940), 1, + STATE(2944), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6164), 8, + ACTIONS(5927), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -369796,7 +374156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6162), 40, + ACTIONS(5925), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -369837,15 +374197,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [45546] = 5, + [45438] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2941), 1, + STATE(2945), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6316), 8, + ACTIONS(6375), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -369854,7 +374214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6314), 40, + ACTIONS(6373), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -369895,25 +374255,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [45609] = 5, + [45501] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2942), 1, + ACTIONS(6624), 1, + anon_sym_PIPE, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6633), 1, + anon_sym_STAR, + ACTIONS(6635), 1, + anon_sym_DOT, + ACTIONS(6637), 1, + anon_sym_QMARK, + STATE(2921), 1, + aux_sym_union_type_repeat1, + STATE(2946), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6304), 8, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6302), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4607), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -369924,17 +374294,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -369946,22 +374313,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [45672] = 5, + [45576] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2943), 1, + STATE(2947), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5996), 8, + ACTIONS(6102), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -369970,7 +374336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5994), 40, + ACTIONS(6092), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -370011,15 +374377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [45735] = 5, + [45639] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2944), 1, + STATE(2948), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5520), 8, + ACTIONS(5965), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -370028,9 +374394,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5518), 40, + ACTIONS(5963), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -370043,13 +374408,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -370063,195 +374428,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_elsif, anon_sym_else, - [45798] = 5, + anon_sym_when, + anon_sym_in, + [45702] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2945), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5880), 8, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6511), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(6529), 1, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5878), 40, - sym__line_break, + ACTIONS(6533), 1, + anon_sym_QMARK, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, + ACTIONS(6545), 1, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6614), 1, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, + STATE(2949), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6521), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6527), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(6531), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [45861] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(2946), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6168), 8, - anon_sym_DOT_DOT, + ACTIONS(6515), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6166), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6612), 14, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [45924] = 5, + [45803] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2947), 1, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6511), 1, + anon_sym_DOT_DOT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6533), 1, + anon_sym_QMARK, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, + ACTIONS(6614), 1, + anon_sym_COMMA, + STATE(2950), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, - anon_sym_DOT_DOT, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6318), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6612), 14, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [45987] = 5, + [45904] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2948), 1, + STATE(2951), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(4676), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -370260,8 +374606,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4678), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -370272,18 +374619,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -370297,19 +374642,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [46050] = 5, + [45967] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2949), 1, + STATE(2952), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6156), 8, + ACTIONS(4660), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -370318,8 +374664,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6154), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4662), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -370330,18 +374677,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -370355,19 +374700,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [46113] = 5, + [46030] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2950), 1, + STATE(2953), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6328), 8, + ACTIONS(4664), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -370376,8 +374722,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6326), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4666), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -370388,18 +374735,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -370413,19 +374758,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [46176] = 5, + [46093] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2951), 1, + STATE(2954), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4619), 9, + ACTIONS(4652), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -370435,8 +374781,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4621), 39, - sym__line_break, + ACTIONS(4654), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -370447,16 +374793,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -370474,16 +374816,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [46239] = 5, + anon_sym_when, + anon_sym_in, + [46156] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2952), 1, + STATE(2955), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6332), 8, + ACTIONS(4656), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -370492,8 +374838,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6330), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4658), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -370504,18 +374851,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -370529,19 +374874,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [46302] = 5, + [46219] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2953), 1, + STATE(2956), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6336), 8, + ACTIONS(6005), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -370550,7 +374896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6334), 40, + ACTIONS(6003), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -370591,15 +374937,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [46365] = 5, + [46282] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2954), 1, + STATE(2957), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6340), 8, + ACTIONS(4716), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -370608,8 +374954,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6338), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4718), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -370620,18 +374967,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -370645,19 +374990,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [46428] = 5, + [46345] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2955), 1, + STATE(2958), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(5801), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -370666,7 +375012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5872), 40, + ACTIONS(5799), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -370707,15 +375053,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [46491] = 5, + [46408] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2956), 1, + STATE(2959), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5850), 8, + ACTIONS(4680), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -370724,8 +375070,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5848), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4682), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -370736,18 +375083,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -370761,19 +375106,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [46554] = 5, + [46471] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2957), 1, + STATE(2960), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6344), 8, + ACTIONS(4672), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -370782,8 +375128,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6342), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4674), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -370794,18 +375141,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -370819,19 +375164,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [46617] = 5, + [46534] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2958), 1, + STATE(2961), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5854), 8, + ACTIONS(4708), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -370840,8 +375186,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5852), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4710), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -370852,18 +375199,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -370877,19 +375222,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [46680] = 5, + [46597] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2959), 1, + STATE(2962), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5536), 8, + ACTIONS(4712), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -370898,8 +375244,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5534), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4714), 39, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -370911,18 +375257,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -370933,21 +375277,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, anon_sym_else, - [46743] = 5, + anon_sym_when, + anon_sym_in, + [46660] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2960), 1, + STATE(2963), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(4720), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -370956,8 +375302,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4722), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -370968,18 +375315,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -370993,19 +375338,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [46806] = 5, + [46723] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2961), 1, + STATE(2964), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(5917), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -371014,7 +375360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 40, + ACTIONS(5915), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -371055,73 +375401,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [46869] = 5, + [46786] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2962), 1, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6511), 1, + anon_sym_DOT_DOT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6533), 1, + anon_sym_QMARK, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, + ACTIONS(6614), 1, + anon_sym_COMMA, + STATE(2965), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5834), 8, - anon_sym_DOT_DOT, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5832), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6612), 14, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [46887] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6511), 1, + anon_sym_DOT_DOT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6533), 1, + anon_sym_QMARK, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, + ACTIONS(6614), 1, + anon_sym_COMMA, + STATE(2966), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6521), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6527), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6541), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6543), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6612), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [46932] = 5, + [46988] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2963), 1, + STATE(2967), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5770), 8, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -371130,7 +375572,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5768), 40, + anon_sym_EQ, + ACTIONS(4600), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -371145,15 +375588,16 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -371164,22 +375608,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [47051] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6511), 1, + anon_sym_DOT_DOT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6533), 1, anon_sym_QMARK, + ACTIONS(6535), 1, anon_sym_AMP_AMP, + ACTIONS(6537), 1, anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, + ACTIONS(6614), 1, + anon_sym_COMMA, + STATE(2968), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6543), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6612), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [46995] = 5, + [47152] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2964), 1, + STATE(2969), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5782), 8, + ACTIONS(5955), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -371188,7 +375707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5780), 40, + ACTIONS(5953), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -371229,15 +375748,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [47058] = 5, + [47215] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2965), 1, + STATE(2970), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6071), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -371246,7 +375765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 40, + ACTIONS(6069), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -371287,15 +375806,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [47121] = 5, + [47278] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2966), 1, + STATE(2971), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(4688), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -371304,8 +375823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 40, + anon_sym_EQ, + ACTIONS(4690), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -371319,15 +375840,16 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -371341,96 +375863,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [47184] = 24, + anon_sym_do, + [47341] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, + ACTIONS(6499), 1, + anon_sym_LBRACK, + ACTIONS(6501), 1, + anon_sym_STAR, + ACTIONS(6505), 1, anon_sym_DOT, - ACTIONS(6425), 1, - anon_sym_DOT_DOT, - ACTIONS(6427), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, + ACTIONS(6507), 1, + anon_sym_QMARK, + ACTIONS(6639), 1, anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, + STATE(2972), 1, + sym_heredoc_body, + STATE(3167), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4668), 7, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_EQ_EQ, - ACTIONS(6443), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6447), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + anon_sym_EQ, + ACTIONS(4670), 35, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(6459), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - ACTIONS(6580), 1, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2967), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6435), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [47416] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(2973), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4696), 9, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4698), 39, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6578), 14, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [47479] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6499), 1, + anon_sym_LBRACK, + ACTIONS(6501), 1, + anon_sym_STAR, + ACTIONS(6505), 1, + anon_sym_DOT, + ACTIONS(6507), 1, + anon_sym_QMARK, + ACTIONS(6639), 1, + anon_sym_PIPE, + STATE(2974), 1, + sym_heredoc_body, + STATE(3167), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4684), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4686), 35, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_elsif, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [47285] = 5, + [47554] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2968), 1, + STATE(2975), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5786), 8, + ACTIONS(4700), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -371439,8 +376067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5784), 40, + anon_sym_EQ, + ACTIONS(4702), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -371454,15 +376084,16 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -371476,19 +376107,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [47348] = 5, + anon_sym_do, + [47617] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2969), 1, + STATE(2976), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5790), 8, + ACTIONS(4638), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -371497,8 +376125,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5788), 40, + anon_sym_EQ, + ACTIONS(4640), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -371511,15 +376141,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -371534,19 +376164,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [47411] = 5, + [47680] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2970), 1, + STATE(2977), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(6160), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -371555,7 +376183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6360), 40, + ACTIONS(6158), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -371596,15 +376224,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [47474] = 5, + [47743] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2971), 1, + STATE(2978), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5794), 8, + ACTIONS(6171), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -371613,7 +376241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5792), 40, + ACTIONS(6169), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -371654,15 +376282,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [47537] = 5, + [47806] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2972), 1, + STATE(2979), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5798), 8, + ACTIONS(6187), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -371671,7 +376299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5796), 40, + ACTIONS(6185), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -371712,15 +376340,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [47600] = 5, + [47869] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2973), 1, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(6641), 1, + anon_sym_DASH_GT, + STATE(2980), 1, sym_heredoc_body, + STATE(10054), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5806), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -371729,8 +376363,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5804), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4785), 36, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -371741,16 +376376,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -371766,19 +376396,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [47663] = 5, + [47938] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2974), 1, + STATE(2981), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5814), 8, + ACTIONS(4692), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -371787,8 +376418,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5812), 40, + anon_sym_EQ, + ACTIONS(4694), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -371802,15 +376435,16 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -371824,19 +376458,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [47726] = 5, + anon_sym_do, + [48001] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2975), 1, + STATE(2982), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5822), 8, + ACTIONS(4704), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -371845,8 +376476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5820), 40, + anon_sym_EQ, + ACTIONS(4706), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -371860,15 +376493,16 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -371882,19 +376516,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [47789] = 5, + anon_sym_do, + [48064] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2976), 1, + STATE(2983), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6211), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -371903,7 +376534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 40, + ACTIONS(6209), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -371944,15 +376575,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [47852] = 5, + [48127] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2977), 1, + STATE(2984), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5830), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -371961,7 +376592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5828), 40, + ACTIONS(6357), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -372002,15 +376633,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [47915] = 5, + [48190] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2978), 1, + STATE(2985), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(6075), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -372019,8 +376650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4599), 39, + ACTIONS(6073), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -372034,18 +376664,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -372059,18 +376687,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [47978] = 6, + anon_sym_when, + anon_sym_in, + [48253] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6582), 1, - anon_sym_of, - STATE(2979), 1, + STATE(2986), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5728), 8, + ACTIONS(4688), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -372079,8 +376708,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5724), 39, - sym__line_break, + anon_sym_EQ, + ACTIONS(4690), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -372091,17 +376721,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -372115,173 +376744,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [48043] = 24, + [48316] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6425), 1, - anon_sym_DOT_DOT, - ACTIONS(6427), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6447), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - ACTIONS(6580), 1, - anon_sym_COMMA, - STATE(2980), 1, + STATE(2987), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6441), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(4696), 9, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4698), 39, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6584), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [48144] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6425), 1, - anon_sym_DOT_DOT, - ACTIONS(6427), 1, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6447), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - ACTIONS(6580), 1, - anon_sym_COMMA, - STATE(2981), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6435), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6455), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6457), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6584), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [48245] = 5, + [48379] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2982), 1, + STATE(2988), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4651), 9, + ACTIONS(4700), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -372291,8 +376825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4653), 39, - sym__line_break, + ACTIONS(4702), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -372303,16 +376837,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -372330,16 +376860,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [48308] = 5, + anon_sym_when, + anon_sym_in, + [48442] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2983), 1, + STATE(2989), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4615), 9, + ACTIONS(6291), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -372348,8 +376882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4617), 39, + ACTIONS(6289), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -372363,18 +376896,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -372388,170 +376919,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [48371] = 24, + anon_sym_when, + anon_sym_in, + [48505] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6425), 1, - anon_sym_DOT_DOT, - ACTIONS(6427), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6447), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - ACTIONS(6580), 1, - anon_sym_COMMA, - STATE(2984), 1, + STATE(2990), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6441), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(4598), 10, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_COLON2, + ACTIONS(4600), 38, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6584), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [48472] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6425), 1, - anon_sym_DOT_DOT, - ACTIONS(6427), 1, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6447), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - ACTIONS(6580), 1, - anon_sym_COMMA, - STATE(2985), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6435), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6455), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6457), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6584), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, + anon_sym_AMP_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_else, anon_sym_when, anon_sym_in, - [48573] = 5, + [48568] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2986), 1, + STATE(2991), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4663), 9, + ACTIONS(4692), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -372561,8 +376999,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4665), 39, - sym__line_break, + ACTIONS(4694), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -372573,16 +377011,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -372600,16 +377034,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [48636] = 5, + anon_sym_when, + anon_sym_in, + [48631] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2987), 1, + STATE(2992), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4675), 9, + ACTIONS(4704), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -372619,8 +377057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4677), 39, - sym__line_break, + ACTIONS(4706), 39, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -372631,16 +377069,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -372658,16 +377092,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [48699] = 5, + anon_sym_when, + anon_sym_in, + [48694] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2988), 1, + STATE(2993), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4679), 9, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -372677,8 +377115,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4681), 39, + ACTIONS(4644), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -372691,7 +377130,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -372716,16 +377154,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [48762] = 5, + anon_sym_do, + [48757] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2989), 1, + ACTIONS(1219), 1, + anon_sym_COLON, + ACTIONS(5681), 1, + anon_sym_COLON_COLON, + STATE(2509), 1, + aux_sym_constant_repeat1, + STATE(2994), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4631), 9, + ACTIONS(4584), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -372734,8 +377178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4633), 39, + ACTIONS(4586), 37, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -372755,12 +377198,9 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -372771,173 +377211,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [48825] = 24, + [48826] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6425), 1, - anon_sym_DOT_DOT, - ACTIONS(6427), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6447), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - ACTIONS(6580), 1, - anon_sym_COMMA, - STATE(2990), 1, + ACTIONS(1355), 1, + sym__string_literal_start, + ACTIONS(6643), 1, + anon_sym_COLON, + STATE(2995), 1, sym_heredoc_body, + STATE(3283), 1, + aux_sym_chained_string_repeat1, + STATE(3655), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6441), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(157), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(135), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6584), 14, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [48926] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6425), 1, - anon_sym_DOT_DOT, - ACTIONS(6427), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6447), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - ACTIONS(6580), 1, - anon_sym_COMMA, - STATE(2991), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6435), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6455), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6457), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6584), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_else, - anon_sym_when, - anon_sym_in, - [49027] = 5, + [48897] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2992), 1, + STATE(2996), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4655), 9, + ACTIONS(4676), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -372947,8 +377296,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4657), 39, + ACTIONS(4678), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -372961,7 +377311,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -372986,16 +377335,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [49090] = 5, + anon_sym_do, + [48960] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2993), 1, + STATE(2997), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4635), 9, + ACTIONS(4660), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -373005,8 +377354,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4637), 39, + ACTIONS(4662), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -373019,7 +377369,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -373044,16 +377393,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [49153] = 5, + anon_sym_do, + [49023] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2994), 1, + STATE(2998), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6372), 8, + ACTIONS(4664), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -373062,8 +377411,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6370), 40, + anon_sym_EQ, + ACTIONS(4666), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -373077,15 +377428,16 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -373099,19 +377451,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [49216] = 5, + anon_sym_do, + [49086] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2995), 1, + STATE(2999), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6376), 8, + ACTIONS(4652), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -373120,8 +377469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6374), 40, + anon_sym_EQ, + ACTIONS(4654), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -373135,15 +377486,16 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -373157,19 +377509,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [49279] = 5, + anon_sym_do, + [49149] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2996), 1, + STATE(3000), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4643), 9, + ACTIONS(4656), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -373179,8 +377528,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4645), 39, + ACTIONS(4658), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -373193,7 +377543,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -373218,16 +377567,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [49342] = 5, + anon_sym_do, + [49212] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2997), 1, + STATE(3001), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4627), 9, + ACTIONS(4716), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -373237,8 +377586,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4629), 39, + ACTIONS(4718), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -373251,7 +377601,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -373276,16 +377625,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [49405] = 5, + anon_sym_do, + [49275] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2998), 1, + STATE(3002), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4659), 9, + ACTIONS(4680), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -373295,8 +377644,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4661), 39, + ACTIONS(4682), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -373309,7 +377659,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -373334,16 +377683,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [49468] = 5, + anon_sym_do, + [49338] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(2999), 1, + STATE(3003), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5842), 8, + ACTIONS(4672), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -373352,8 +377701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5840), 40, + anon_sym_EQ, + ACTIONS(4674), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -373367,15 +377718,16 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -373389,19 +377741,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [49531] = 5, + anon_sym_do, + [49401] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3000), 1, + STATE(3004), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(4708), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -373410,8 +377759,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5868), 40, + anon_sym_EQ, + ACTIONS(4710), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -373425,15 +377776,16 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -373447,19 +377799,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [49594] = 5, + anon_sym_do, + [49464] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3001), 1, + STATE(3005), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5903), 8, + ACTIONS(4712), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -373468,8 +377817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5901), 40, + anon_sym_EQ, + ACTIONS(4714), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -373483,15 +377834,16 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -373505,19 +377857,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [49657] = 5, + anon_sym_do, + [49527] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3002), 1, + STATE(3006), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5907), 8, + ACTIONS(4720), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -373526,8 +377875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5905), 40, + anon_sym_EQ, + ACTIONS(4722), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -373541,15 +377892,16 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -373563,87 +377915,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [49720] = 5, + anon_sym_do, + [49590] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3003), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5911), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, + ACTIONS(6563), 1, + anon_sym_LBRACK, + ACTIONS(6565), 1, + anon_sym_STAR, + ACTIONS(6569), 1, anon_sym_DOT, - ACTIONS(5909), 40, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(6571), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [49783] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3004), 1, + ACTIONS(6645), 1, + anon_sym_PIPE, + STATE(3007), 1, sym_heredoc_body, + STATE(3172), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5915), 8, + ACTIONS(4668), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5913), 40, + anon_sym_EQ, + ACTIONS(4670), 35, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -373657,12 +377960,10 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -373676,37 +377977,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [49846] = 8, + anon_sym_do, + [49665] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1249), 1, - anon_sym_COLON, - ACTIONS(5568), 1, - anon_sym_COLON_COLON, - STATE(2481), 1, - aux_sym_constant_repeat1, - STATE(3005), 1, + ACTIONS(6563), 1, + anon_sym_LBRACK, + ACTIONS(6565), 1, + anon_sym_STAR, + ACTIONS(6569), 1, + anon_sym_DOT, + ACTIONS(6571), 1, + anon_sym_QMARK, + ACTIONS(6645), 1, + anon_sym_PIPE, + STATE(3008), 1, sym_heredoc_body, + STATE(3172), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 8, + ACTIONS(4684), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(4549), 37, + anon_sym_EQ, + ACTIONS(4686), 35, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -373739,20 +378041,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [49915] = 5, + [49740] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3006), 1, + STATE(3009), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5968), 8, + ACTIONS(5833), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -373761,7 +378061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5966), 40, + ACTIONS(5831), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -373802,19 +378102,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [49978] = 7, + [49803] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6453), 1, - sym__start_of_index_operator, - STATE(3007), 1, + STATE(3010), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5895), 7, + ACTIONS(5841), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -373822,8 +378118,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5893), 39, + anon_sym_DOT, + ACTIONS(5839), 40, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -373862,23 +378160,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [50045] = 9, + [49866] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(495), 1, - sym__string_literal_start, - ACTIONS(6586), 1, - anon_sym_COLON, - STATE(3008), 1, + STATE(3011), 1, sym_heredoc_body, - STATE(3314), 1, - aux_sym_chained_string_repeat1, - STATE(3781), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5889), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -373887,9 +378177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 36, + ACTIONS(5887), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -373903,135 +378192,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [50116] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(5923), 1, - anon_sym_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - STATE(3009), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6441), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6455), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6457), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5921), 17, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [50211] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6453), 1, - sym__start_of_index_operator, - STATE(3010), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6000), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5998), 39, - sym__line_break, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, ts_builtin_sym_end, @@ -374058,19 +378218,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [50278] = 7, + [49929] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6453), 1, - sym__start_of_index_operator, - STATE(3011), 1, + STATE(3012), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6004), 7, + ACTIONS(5913), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -374078,8 +378234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6002), 39, + anon_sym_DOT, + ACTIONS(5911), 40, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -374118,15 +378276,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [50345] = 5, + [49992] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3012), 1, + STATE(3013), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6380), 8, + ACTIONS(5951), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -374135,7 +378293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6378), 40, + ACTIONS(5949), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -374176,15 +378334,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [50408] = 5, + [50055] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3013), 1, + STATE(3014), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5972), 8, + ACTIONS(5813), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -374193,7 +378351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5970), 40, + ACTIONS(5811), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -374234,24 +378392,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [50471] = 5, + [50118] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3014), 1, + ACTIONS(6620), 1, + anon_sym_PIPE, + STATE(3015), 1, sym_heredoc_body, + STATE(3016), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6028), 8, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6026), 40, + anon_sym_EQ, + ACTIONS(4636), 38, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -374265,16 +378427,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -374288,28 +378451,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [50534] = 5, + [50185] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3015), 1, - sym_heredoc_body, + ACTIONS(6647), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5953), 8, + STATE(3016), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5951), 40, + anon_sym_EQ, + ACTIONS(4629), 38, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -374323,16 +378486,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -374346,95 +378510,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [50597] = 23, + [50250] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, + ACTIONS(6483), 1, + anon_sym_LBRACK, + ACTIONS(6485), 1, + anon_sym_STAR, + ACTIONS(6489), 1, anon_sym_DOT, - ACTIONS(6425), 1, - anon_sym_DOT_DOT, - ACTIONS(6427), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6447), 1, + ACTIONS(6491), 1, anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - STATE(3016), 1, + ACTIONS(6620), 1, + anon_sym_PIPE, + STATE(3015), 1, + aux_sym_union_type_repeat1, + STATE(3017), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, + ACTIONS(4623), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4625), 35, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + [50325] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6483), 1, + anon_sym_LBRACK, + ACTIONS(6485), 1, + anon_sym_STAR, + ACTIONS(6489), 1, + anon_sym_DOT, + ACTIONS(6491), 1, + anon_sym_QMARK, + ACTIONS(6620), 1, + anon_sym_PIPE, + STATE(3015), 1, + aux_sym_union_type_repeat1, + STATE(3018), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4605), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4607), 35, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + [50400] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(343), 1, + sym__start_of_brace_block, + STATE(3019), 1, + sym_heredoc_body, + STATE(3540), 1, + sym_do_end_block, + STATE(3572), 1, + sym_brace_block, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5570), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5568), 37, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5708), 15, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_elsif, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [50696] = 5, + [50469] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3017), 1, + STATE(3020), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5713), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -374443,7 +378717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 40, + ACTIONS(6098), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -374484,15 +378758,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [50759] = 5, + [50532] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3018), 1, + STATE(3021), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5961), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -374501,7 +378775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5959), 40, + ACTIONS(6098), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -374542,15 +378816,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [50822] = 5, + [50595] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3019), 1, + STATE(3022), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6076), 8, + ACTIONS(5993), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -374559,7 +378833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6074), 40, + ACTIONS(5991), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -374600,15 +378874,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [50885] = 5, + [50658] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3020), 1, + STATE(3023), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6086), 8, + ACTIONS(6106), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -374617,7 +378891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6084), 40, + ACTIONS(6104), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -374658,15 +378932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [50948] = 5, + [50721] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3021), 1, + STATE(3024), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6016), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -374675,7 +378949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6014), 40, + ACTIONS(6345), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -374716,35 +378990,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [51011] = 11, + [50784] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6467), 1, - anon_sym_LBRACK, - ACTIONS(6469), 1, - anon_sym_STAR, - ACTIONS(6473), 1, - anon_sym_DOT, - ACTIONS(6475), 1, - anon_sym_QMARK, - ACTIONS(6567), 1, - anon_sym_PIPE, - STATE(2878), 1, - aux_sym_union_type_repeat1, - STATE(3022), 1, + STATE(3025), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4683), 7, + ACTIONS(5959), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4685), 35, + anon_sym_DOT, + ACTIONS(5957), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -374758,12 +379021,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -374777,18 +379041,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [51086] = 5, + anon_sym_when, + anon_sym_in, + [50847] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3023), 1, + STATE(3026), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6126), 8, + ACTIONS(6009), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -374797,7 +379065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6124), 40, + ACTIONS(6007), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -374838,35 +379106,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [51149] = 11, + [50910] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6467), 1, - anon_sym_LBRACK, - ACTIONS(6469), 1, - anon_sym_STAR, - ACTIONS(6473), 1, - anon_sym_DOT, - ACTIONS(6475), 1, - anon_sym_QMARK, - ACTIONS(6567), 1, - anon_sym_PIPE, - STATE(2878), 1, - aux_sym_union_type_repeat1, - STATE(3024), 1, + STATE(3027), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4639), 7, + ACTIONS(5829), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4641), 35, + anon_sym_DOT, + ACTIONS(5827), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -374880,12 +379137,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -374899,20 +379157,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [51224] = 6, + anon_sym_when, + anon_sym_in, + [50973] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6588), 1, - anon_sym_EQ, - STATE(3025), 1, + STATE(3028), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, + ACTIONS(6114), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -374921,7 +379181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 39, + ACTIONS(6112), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -374942,6 +379202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -374961,17 +379222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [51289] = 6, + [51036] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6590), 1, - anon_sym_LPAREN2, - STATE(3026), 1, + STATE(3029), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(6118), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -374980,8 +379239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4599), 38, + ACTIONS(6116), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -374992,17 +379251,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -375016,83 +379276,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [51354] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6592), 1, - anon_sym_LBRACK, - ACTIONS(6594), 1, - anon_sym_STAR, - ACTIONS(6596), 1, - anon_sym_PIPE, - ACTIONS(6598), 1, - anon_sym_DOT, - ACTIONS(6600), 1, - anon_sym_QMARK, - STATE(3027), 1, - sym_heredoc_body, - STATE(3076), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4593), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4595), 35, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [51429] = 5, + [51099] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3028), 1, + STATE(3030), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6020), 8, + ACTIONS(6019), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -375101,7 +379297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6018), 40, + ACTIONS(6017), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -375142,40 +379338,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [51492] = 5, + [51162] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3029), 1, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5977), 1, + anon_sym_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, + STATE(3031), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6024), 8, - anon_sym_DOT_DOT, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6022), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5975), 17, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -375183,32 +379407,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [51555] = 5, + [51257] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3030), 1, + STATE(3032), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6160), 8, + ACTIONS(6122), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -375217,7 +379429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6158), 40, + ACTIONS(6120), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -375258,15 +379470,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [51618] = 5, + [51320] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3031), 1, + STATE(3033), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6172), 8, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -375275,7 +379487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6170), 40, + ACTIONS(6041), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -375316,15 +379528,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [51681] = 5, + [51383] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3032), 1, + STATE(3034), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5838), 8, + ACTIONS(6067), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -375333,7 +379545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5836), 40, + ACTIONS(6065), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -375374,135 +379586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [51744] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6592), 1, - anon_sym_LBRACK, - ACTIONS(6594), 1, - anon_sym_STAR, - ACTIONS(6596), 1, - anon_sym_PIPE, - ACTIONS(6598), 1, - anon_sym_DOT, - ACTIONS(6600), 1, - anon_sym_QMARK, - STATE(3033), 1, - sym_heredoc_body, - STATE(3076), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4603), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4605), 35, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [51819] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6592), 1, - anon_sym_LBRACK, - ACTIONS(6594), 1, - anon_sym_STAR, - ACTIONS(6596), 1, - anon_sym_PIPE, - ACTIONS(6598), 1, - anon_sym_DOT, - ACTIONS(6600), 1, - anon_sym_QMARK, - STATE(3034), 1, - sym_heredoc_body, - STATE(3076), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4611), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4613), 35, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [51894] = 5, + [51446] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3035), 1, @@ -375510,7 +379594,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6176), 8, + ACTIONS(6079), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -375519,7 +379603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6174), 40, + ACTIONS(6077), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -375560,7 +379644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [51957] = 5, + [51509] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3036), 1, @@ -375568,7 +379652,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6180), 8, + ACTIONS(6090), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -375577,7 +379661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6178), 40, + ACTIONS(6088), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -375618,7 +379702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [52020] = 5, + [51572] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3037), 1, @@ -375626,7 +379710,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6098), 8, + ACTIONS(6126), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -375635,7 +379719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6096), 40, + ACTIONS(6124), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -375676,215 +379760,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [52083] = 5, + [51635] = 23, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6511), 1, + anon_sym_DOT_DOT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6533), 1, + anon_sym_QMARK, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, STATE(3038), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6102), 8, - anon_sym_DOT_DOT, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6100), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6092), 15, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [52146] = 5, + [51734] = 23, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6511), 1, + anon_sym_DOT_DOT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6533), 1, + anon_sym_QMARK, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, STATE(3039), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6268), 8, - anon_sym_DOT_DOT, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6266), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6193), 15, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [52209] = 6, + [51833] = 23, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6511), 1, + anon_sym_DOT_DOT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6533), 1, + anon_sym_QMARK, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, STATE(3040), 1, sym_heredoc_body, - STATE(3076), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, - anon_sym_DOT_DOT, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 38, - sym__start_of_index_operator, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6203), 15, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [52274] = 5, + [51932] = 10, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6539), 1, + sym__start_of_index_operator, STATE(3041), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6208), 8, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6543), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6259), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6206), 40, + ACTIONS(6257), 33, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -375901,7 +380044,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -375909,15 +380051,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [52337] = 5, + [52005] = 8, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6539), 1, + sym__start_of_index_operator, STATE(3042), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6220), 8, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6295), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -375925,16 +380074,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6218), 40, + ACTIONS(6293), 37, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -375959,7 +380105,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -375967,15 +380112,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [52400] = 5, + [52074] = 8, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6539), 1, + sym__start_of_index_operator, STATE(3043), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6122), 8, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -375983,16 +380135,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6120), 40, + ACTIONS(6313), 37, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -376017,7 +380166,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -376025,25 +380173,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [52463] = 5, + [52143] = 11, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(6624), 1, + anon_sym_PIPE, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6633), 1, + anon_sym_STAR, + ACTIONS(6635), 1, + anon_sym_DOT, + ACTIONS(6637), 1, + anon_sym_QMARK, + STATE(2921), 1, + aux_sym_union_type_repeat1, STATE(3044), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6228), 8, + ACTIONS(4619), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6226), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4621), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -376054,17 +380212,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -376076,47 +380231,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [52526] = 5, + [52218] = 21, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6442), 1, + anon_sym_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, STATE(3045), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6264), 8, - anon_sym_DOT_DOT, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6262), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6440), 17, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -376124,57 +380306,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [52589] = 5, + [52313] = 17, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, STATE(3046), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6300), 8, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5817), 4, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6298), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5815), 21, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -376182,16 +380372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -376199,40 +380381,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [52652] = 5, + [52400] = 13, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, STATE(3047), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6312), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6310), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6263), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6261), 26, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -376241,15 +380434,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -376257,40 +380447,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [52715] = 5, + [52479] = 11, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6539), 1, + sym__start_of_index_operator, STATE(3048), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5802), 8, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6541), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6543), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5869), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5800), 40, + ACTIONS(5867), 29, sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -376307,7 +380504,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -376315,40 +380511,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [52778] = 5, + [52554] = 15, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, STATE(3049), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6130), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6128), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6134), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6132), 25, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -376356,16 +380566,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -376373,40 +380579,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [52841] = 5, + [52637] = 19, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6047), 1, + anon_sym_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, STATE(3050), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6142), 8, - anon_sym_DOT_DOT, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6140), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6045), 19, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -376414,16 +380644,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -376431,40 +380651,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [52904] = 5, + [52728] = 20, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6215), 1, + anon_sym_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, STATE(3051), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6150), 8, - anon_sym_DOT_DOT, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6148), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6213), 18, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -376472,24 +380718,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [52967] = 5, + [52821] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3052), 1, @@ -376497,7 +380732,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(6130), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -376506,7 +380741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6419), 40, + ACTIONS(6128), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -376547,7 +380782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53030] = 5, + [52884] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3053), 1, @@ -376555,7 +380790,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(6138), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -376564,7 +380799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 40, + ACTIONS(6136), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -376605,7 +380840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53093] = 5, + [52947] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3054), 1, @@ -376613,7 +380848,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6384), 8, + ACTIONS(6148), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -376622,7 +380857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6382), 40, + ACTIONS(6146), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -376663,7 +380898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53156] = 5, + [53010] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3055), 1, @@ -376671,7 +380906,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(6175), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -376680,7 +380915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 40, + ACTIONS(6173), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -376721,7 +380956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53219] = 5, + [53073] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3056), 1, @@ -376729,7 +380964,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(6299), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -376738,7 +380973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 40, + ACTIONS(6297), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -376779,7 +381014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53282] = 5, + [53136] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3057), 1, @@ -376787,7 +381022,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6388), 8, + ACTIONS(6458), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -376796,7 +381031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6386), 40, + ACTIONS(6456), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -376837,40 +381072,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53345] = 5, + [53199] = 21, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(5981), 1, + anon_sym_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, STATE(3058), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6392), 8, - anon_sym_DOT_DOT, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6390), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5979), 17, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -376878,24 +381141,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [53408] = 5, + [53294] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3059), 1, @@ -376903,7 +381154,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6396), 8, + ACTIONS(5973), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -376912,7 +381163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6394), 40, + ACTIONS(5971), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -376953,17 +381204,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53471] = 6, + [53357] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6602), 1, - anon_sym_of, STATE(3060), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5734), 8, + ACTIONS(6279), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -376972,7 +381221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5730), 39, + ACTIONS(6277), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -376993,6 +381242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -377012,7 +381262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53536] = 5, + [53420] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3061), 1, @@ -377020,7 +381270,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(5861), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -377029,7 +381279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 40, + ACTIONS(5859), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -377070,65 +381320,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53599] = 5, + [53483] = 23, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6511), 1, + anon_sym_DOT_DOT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6533), 1, + anon_sym_QMARK, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, STATE(3062), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6184), 8, - anon_sym_DOT_DOT, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6182), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5779), 15, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [53662] = 5, + [53582] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3063), 1, @@ -377136,7 +381404,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6188), 8, + ACTIONS(5893), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -377145,7 +381413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6186), 40, + ACTIONS(5891), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -377186,69 +381454,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53725] = 24, + [53645] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, + ACTIONS(5613), 1, anon_sym_DOT, - ACTIONS(6425), 1, + ACTIONS(6511), 1, anon_sym_DOT_DOT, - ACTIONS(6427), 1, + ACTIONS(6513), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, + ACTIONS(6517), 1, anon_sym_PIPE, - ACTIONS(6433), 1, + ACTIONS(6519), 1, anon_sym_CARET, - ACTIONS(6437), 1, + ACTIONS(6523), 1, anon_sym_EQ_EQ, - ACTIONS(6443), 1, + ACTIONS(6529), 1, anon_sym_AMP_STAR, - ACTIONS(6447), 1, + ACTIONS(6533), 1, anon_sym_QMARK, - ACTIONS(6449), 1, + ACTIONS(6535), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 1, + ACTIONS(6537), 1, anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + ACTIONS(6539), 1, sym__start_of_index_operator, - ACTIONS(6459), 1, + ACTIONS(6545), 1, sym_binary_ampersand, - ACTIONS(6580), 1, - anon_sym_COMMA, STATE(3064), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, + ACTIONS(6521), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + ACTIONS(6527), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, + ACTIONS(6531), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(6515), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, + ACTIONS(6525), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, + ACTIONS(6543), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6604), 14, + ACTIONS(5825), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -377258,12 +381524,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_end, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [53826] = 5, + [53744] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3065), 1, @@ -377271,7 +381538,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6404), 8, + ACTIONS(5989), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -377280,7 +381547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6402), 40, + ACTIONS(5987), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -377321,7 +381588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53889] = 5, + [53807] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3066), 1, @@ -377329,7 +381596,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6196), 8, + ACTIONS(6183), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -377338,7 +381605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6194), 40, + ACTIONS(6181), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -377379,7 +381646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [53952] = 5, + [53870] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3067), 1, @@ -377387,7 +381654,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6410), 8, + ACTIONS(6207), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -377396,7 +381663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6408), 40, + ACTIONS(6205), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -377437,92 +381704,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [54015] = 24, + [53933] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6425), 1, + STATE(3068), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6227), 8, anon_sym_DOT_DOT, - ACTIONS(6427), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, anon_sym_EQ_EQ, - ACTIONS(6443), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6447), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + anon_sym_DOT, + ACTIONS(6225), 40, + sym__line_break, sym__start_of_index_operator, - ACTIONS(6459), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - ACTIONS(6580), 1, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3068), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [53996] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3069), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6271), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6269), 40, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [54059] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3070), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6275), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6273), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6606), 14, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [54116] = 5, + [54122] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3069), 1, + STATE(3071), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(6307), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -377531,7 +381895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6415), 40, + ACTIONS(6305), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -377572,36 +381936,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [54179] = 11, + [54185] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6489), 1, - anon_sym_STAR, - ACTIONS(6491), 1, - anon_sym_DOT, - ACTIONS(6493), 1, - anon_sym_QMARK, - ACTIONS(6608), 1, - anon_sym_PIPE, - STATE(3070), 1, + STATE(3072), 1, sym_heredoc_body, - STATE(3078), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4605), 35, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(6317), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -377612,11 +381965,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -377629,22 +381987,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [54254] = 5, + [54248] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3071), 1, + STATE(3073), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6200), 8, + ACTIONS(5777), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -377653,7 +382011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6198), 40, + ACTIONS(5775), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -377694,15 +382052,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [54317] = 5, + [54311] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3072), 1, + ACTIONS(343), 1, + sym__start_of_brace_block, + ACTIONS(6650), 1, + anon_sym_do, + STATE(3074), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6224), 8, + STATE(3405), 2, + sym_do_end_block, + sym_brace_block, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -377711,7 +382076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6222), 40, + ACTIONS(5551), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -377725,13 +382090,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -377748,19 +382112,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, [54380] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3073), 1, + STATE(3075), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6234), 8, + ACTIONS(5853), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -377769,7 +382130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6232), 40, + ACTIONS(5851), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -377810,15 +382171,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [54443] = 5, + [54443] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3074), 1, + ACTIONS(6483), 1, + anon_sym_LBRACK, + ACTIONS(6485), 1, + anon_sym_STAR, + ACTIONS(6489), 1, + anon_sym_DOT, + ACTIONS(6491), 1, + anon_sym_QMARK, + ACTIONS(6620), 1, + anon_sym_PIPE, + STATE(3015), 1, + aux_sym_union_type_repeat1, + STATE(3076), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4648), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4650), 35, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + [54518] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3015), 1, + aux_sym_union_type_repeat1, + STATE(3077), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6246), 8, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -377827,7 +382254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6244), 40, + anon_sym_EQ, + ACTIONS(4629), 38, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -377841,16 +382269,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -377864,19 +382293,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [54506] = 5, + [54583] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3075), 1, + STATE(3078), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6250), 8, + ACTIONS(5857), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -377885,7 +382311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6248), 40, + ACTIONS(5855), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -377926,28 +382352,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [54569] = 7, + [54646] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6596), 1, - anon_sym_PIPE, - STATE(3076), 1, + STATE(3079), 1, sym_heredoc_body, - STATE(3091), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(5909), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 38, + ACTIONS(5907), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -377958,17 +382381,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -377982,27 +382406,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [54636] = 9, + [54709] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(339), 1, - sym__start_of_brace_block, - ACTIONS(6610), 1, - anon_sym_do, - STATE(3077), 1, + STATE(3080), 1, sym_heredoc_body, - STATE(4008), 1, - sym_do_end_block, - STATE(4009), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(5969), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -378011,7 +382427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 36, + ACTIONS(5967), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -378025,12 +382441,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -378047,30 +382464,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [54707] = 7, + anon_sym_when, + anon_sym_in, + [54772] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6608), 1, - anon_sym_PIPE, - STATE(3078), 1, + STATE(3081), 1, sym_heredoc_body, - STATE(3079), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 38, - sym__start_of_brace_block, + ACTIONS(5995), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -378081,15 +382497,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -378103,33 +382522,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [54774] = 6, + [54835] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6612), 1, - anon_sym_PIPE, + STATE(3082), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3079), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 38, - sym__start_of_brace_block, + ACTIONS(6189), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -378140,15 +382555,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -378162,41 +382580,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [54839] = 11, + [54898] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6489), 1, - anon_sym_STAR, - ACTIONS(6491), 1, - anon_sym_DOT, - ACTIONS(6493), 1, - anon_sym_QMARK, - ACTIONS(6608), 1, - anon_sym_PIPE, - STATE(3078), 1, - aux_sym_union_type_repeat1, - STATE(3080), 1, + STATE(3083), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4609), 35, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(6189), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -378207,11 +382613,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -378224,43 +382635,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [54914] = 11, + [54961] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6489), 1, - anon_sym_STAR, - ACTIONS(6491), 1, - anon_sym_DOT, - ACTIONS(6493), 1, - anon_sym_QMARK, - ACTIONS(6608), 1, - anon_sym_PIPE, - STATE(3078), 1, - aux_sym_union_type_repeat1, - STATE(3081), 1, + STATE(3084), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 35, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(6189), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -378271,11 +382671,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -378288,44 +382693,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [54989] = 11, + [55024] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6506), 1, - anon_sym_LBRACK, - ACTIONS(6508), 1, - anon_sym_STAR, - ACTIONS(6512), 1, - anon_sym_DOT, - ACTIONS(6514), 1, - anon_sym_QMARK, - ACTIONS(6563), 1, - anon_sym_PIPE, - STATE(3082), 1, + STATE(3085), 1, sym_heredoc_body, - STATE(3084), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4605), 35, + anon_sym_DOT, + ACTIONS(6189), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -378339,10 +382732,12 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -378356,72 +382751,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [55064] = 24, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [55087] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, + ACTIONS(5613), 1, anon_sym_DOT, - ACTIONS(6425), 1, + ACTIONS(6511), 1, anon_sym_DOT_DOT, - ACTIONS(6427), 1, + ACTIONS(6513), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, + ACTIONS(6517), 1, anon_sym_PIPE, - ACTIONS(6433), 1, + ACTIONS(6519), 1, anon_sym_CARET, - ACTIONS(6437), 1, + ACTIONS(6523), 1, anon_sym_EQ_EQ, - ACTIONS(6443), 1, + ACTIONS(6529), 1, anon_sym_AMP_STAR, - ACTIONS(6447), 1, + ACTIONS(6533), 1, anon_sym_QMARK, - ACTIONS(6449), 1, + ACTIONS(6535), 1, anon_sym_AMP_AMP, - ACTIONS(6451), 1, + ACTIONS(6537), 1, anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + ACTIONS(6539), 1, sym__start_of_index_operator, - ACTIONS(6459), 1, + ACTIONS(6545), 1, sym_binary_ampersand, - ACTIONS(6580), 1, + ACTIONS(6614), 1, anon_sym_COMMA, - STATE(3083), 1, + STATE(3086), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, + ACTIONS(6521), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + ACTIONS(6527), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, + ACTIONS(6531), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(6515), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, + ACTIONS(6525), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, + ACTIONS(6543), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6606), 14, + ACTIONS(6652), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -378436,30 +382835,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [55165] = 7, + [55188] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6563), 1, - anon_sym_PIPE, - STATE(3084), 1, + STATE(3087), 1, sym_heredoc_body, - STATE(3085), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(6013), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 38, + ACTIONS(6011), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -378473,15 +382867,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -378495,30 +382889,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [55232] = 6, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [55251] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6615), 1, - anon_sym_PIPE, + STATE(3088), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3085), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(6219), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 38, + ACTIONS(6217), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -378532,15 +382925,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -378554,38 +382947,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [55297] = 11, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [55314] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6506), 1, - anon_sym_LBRACK, - ACTIONS(6508), 1, - anon_sym_STAR, - ACTIONS(6512), 1, - anon_sym_DOT, - ACTIONS(6514), 1, - anon_sym_QMARK, - ACTIONS(6563), 1, - anon_sym_PIPE, - STATE(3084), 1, - aux_sym_union_type_repeat1, - STATE(3086), 1, + STATE(3089), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4609), 35, + anon_sym_DOT, + ACTIONS(135), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -378599,10 +382983,12 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -378616,40 +383002,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [55372] = 11, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [55377] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6506), 1, - anon_sym_LBRACK, - ACTIONS(6508), 1, - anon_sym_STAR, - ACTIONS(6512), 1, - anon_sym_DOT, - ACTIONS(6514), 1, - anon_sym_QMARK, - ACTIONS(6563), 1, - anon_sym_PIPE, - STATE(3084), 1, - aux_sym_union_type_repeat1, - STATE(3087), 1, + ACTIONS(6654), 1, + anon_sym_of, + STATE(3090), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(5725), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 35, + anon_sym_DOT, + ACTIONS(5721), 39, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -378663,11 +383043,12 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -378680,18 +383061,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [55447] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [55442] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3088), 1, + STATE(3091), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6296), 8, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -378700,7 +383085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6294), 40, + ACTIONS(6229), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -378741,15 +383126,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [55510] = 5, + [55505] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3089), 1, + STATE(3092), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5810), 8, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -378758,7 +383143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5808), 40, + ACTIONS(6233), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -378799,15 +383184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [55573] = 5, + [55568] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3090), 1, + STATE(3093), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4623), 9, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -378816,8 +383201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4625), 39, + ACTIONS(6237), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -378831,18 +383215,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -378856,28 +383238,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [55636] = 6, + anon_sym_when, + anon_sym_in, + [55631] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6618), 1, - anon_sym_PIPE, + STATE(3094), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3091), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 38, + ACTIONS(6195), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -378888,17 +383271,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -378912,19 +383296,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [55701] = 5, + [55694] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3092), 1, + STATE(3095), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(6243), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -378933,9 +383317,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4599), 39, - sym__start_of_brace_block, + ACTIONS(6241), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -378946,16 +383329,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -378969,105 +383354,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [55764] = 24, + [55757] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6425), 1, + ACTIONS(6656), 1, + anon_sym_of, + STATE(3096), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5651), 8, anon_sym_DOT_DOT, - ACTIONS(6427), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, anon_sym_EQ_EQ, - ACTIONS(6443), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6447), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + anon_sym_DOT, + ACTIONS(5647), 39, + sym__line_break, sym__start_of_index_operator, - ACTIONS(6459), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - ACTIONS(6580), 1, - anon_sym_COMMA, - STATE(3093), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6435), 2, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [55822] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3097), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6247), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6245), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6606), 14, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [55865] = 9, + [55885] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(339), 1, - sym__start_of_brace_block, - ACTIONS(6610), 1, - anon_sym_do, - STATE(3094), 1, + STATE(3098), 1, sym_heredoc_body, - STATE(4052), 1, - sym_do_end_block, - STATE(4066), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(6255), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -379076,7 +383492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 36, + ACTIONS(6253), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -379090,12 +383506,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -379112,24 +383529,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [55936] = 9, + anon_sym_when, + anon_sym_in, + [55948] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(339), 1, - sym__start_of_brace_block, - ACTIONS(6610), 1, - anon_sym_do, - STATE(3095), 1, + STATE(3099), 1, sym_heredoc_body, - STATE(4068), 1, - sym_do_end_block, - STATE(4071), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(6267), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -379138,7 +383550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 36, + ACTIONS(6265), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -379152,12 +383564,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -379174,16 +383587,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [56007] = 5, + anon_sym_when, + anon_sym_in, + [56011] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3096), 1, + ACTIONS(6658), 1, + anon_sym_of, + STATE(3100), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4671), 9, + ACTIONS(5733), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -379192,8 +383610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4673), 39, + ACTIONS(5729), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -379207,18 +383624,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -379232,36 +383646,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [56070] = 11, + anon_sym_when, + anon_sym_in, + [56076] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6592), 1, - anon_sym_LBRACK, - ACTIONS(6594), 1, - anon_sym_STAR, - ACTIONS(6596), 1, - anon_sym_PIPE, - ACTIONS(6598), 1, - anon_sym_DOT, - ACTIONS(6600), 1, - anon_sym_QMARK, - STATE(3076), 1, - aux_sym_union_type_repeat1, - STATE(3097), 1, + STATE(3101), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4609), 35, + anon_sym_DOT, + ACTIONS(5983), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -379272,14 +383679,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -379291,41 +383701,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [56145] = 11, + [56139] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6592), 1, - anon_sym_LBRACK, - ACTIONS(6594), 1, - anon_sym_STAR, - ACTIONS(6596), 1, - anon_sym_PIPE, - ACTIONS(6598), 1, - anon_sym_DOT, - ACTIONS(6600), 1, - anon_sym_QMARK, - STATE(3076), 1, - aux_sym_union_type_repeat1, - STATE(3098), 1, + STATE(3102), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(6283), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 35, + anon_sym_DOT, + ACTIONS(6281), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -379336,14 +383737,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -379355,21 +383759,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [56220] = 5, + [56202] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3099), 1, + STATE(3103), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4651), 9, + ACTIONS(6287), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -379378,9 +383783,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4653), 39, - sym__start_of_brace_block, + ACTIONS(6285), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -379391,16 +383795,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -379414,20 +383820,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [56283] = 5, + [56265] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3100), 1, + STATE(3104), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4615), 9, + ACTIONS(6029), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -379436,9 +383841,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4617), 39, - sym__start_of_brace_block, + ACTIONS(6027), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -379449,16 +383853,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -379472,97 +383878,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [56346] = 24, + [56328] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6425), 1, - anon_sym_DOT_DOT, - ACTIONS(6427), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6447), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - ACTIONS(6580), 1, - anon_sym_COMMA, - STATE(3101), 1, + STATE(3105), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6441), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(6311), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6309), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6606), 14, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [56447] = 5, + [56391] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3102), 1, + STATE(3106), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4663), 9, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -379571,9 +383957,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4665), 39, - sym__start_of_brace_block, + ACTIONS(6329), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -379584,16 +383969,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -379607,20 +383994,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [56510] = 5, + [56454] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3103), 1, + STATE(3107), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4675), 9, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -379629,9 +384015,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4677), 39, - sym__start_of_brace_block, + ACTIONS(6333), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -379642,16 +384027,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -379665,20 +384052,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [56573] = 5, + [56517] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3104), 1, + STATE(3108), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4679), 9, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -379687,9 +384073,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4681), 39, - sym__start_of_brace_block, + ACTIONS(6337), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -379700,16 +384085,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -379723,97 +384110,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [56636] = 24, + [56580] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6425), 1, - anon_sym_DOT_DOT, - ACTIONS(6427), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, - anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, - anon_sym_EQ_EQ, - ACTIONS(6443), 1, - anon_sym_AMP_STAR, - ACTIONS(6447), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6459), 1, - sym_binary_ampersand, - ACTIONS(6580), 1, - anon_sym_COMMA, - STATE(3105), 1, + STATE(3109), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6435), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6441), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + ACTIONS(6343), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6341), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6606), 14, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [56737] = 5, + [56643] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3106), 1, + STATE(3110), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4631), 9, + ACTIONS(6033), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -379822,9 +384189,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4633), 39, - sym__start_of_brace_block, + ACTIONS(6031), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -379835,16 +384201,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -379858,20 +384226,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [56800] = 5, + [56706] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3107), 1, + STATE(3111), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -379880,7 +384247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 40, + ACTIONS(5545), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -379921,15 +384288,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [56863] = 5, + [56769] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3108), 1, + STATE(3112), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4655), 9, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -379938,9 +384305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4657), 39, - sym__start_of_brace_block, + ACTIONS(5545), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -379951,16 +384317,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -379974,20 +384342,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [56926] = 5, + [56832] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3109), 1, + STATE(3113), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4635), 9, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -379996,9 +384363,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4637), 39, - sym__start_of_brace_block, + ACTIONS(5871), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -380009,16 +384375,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -380032,20 +384400,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [56989] = 5, + [56895] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3110), 1, + STATE(3114), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4643), 9, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -380054,9 +384421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4645), 39, - sym__start_of_brace_block, + ACTIONS(5871), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -380067,16 +384433,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -380090,20 +384458,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [57052] = 5, + [56958] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3111), 1, + STATE(3115), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4627), 9, + ACTIONS(6086), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -380112,9 +384479,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4629), 39, - sym__start_of_brace_block, + ACTIONS(6084), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -380125,16 +384491,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -380148,20 +384516,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [57115] = 5, + [57021] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3112), 1, + STATE(3116), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4659), 9, + ACTIONS(6096), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -380170,9 +384537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4661), 39, - sym__start_of_brace_block, + ACTIONS(6094), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -380183,16 +384549,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -380206,20 +384574,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [57178] = 5, + [57084] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3113), 1, + STATE(3117), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5818), 8, + ACTIONS(6144), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -380228,7 +384595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5816), 40, + ACTIONS(6142), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -380269,92 +384636,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [57241] = 24, + [57147] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(6425), 1, + STATE(3118), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6110), 8, anon_sym_DOT_DOT, - ACTIONS(6427), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6431), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(6433), 1, - anon_sym_CARET, - ACTIONS(6437), 1, anon_sym_EQ_EQ, - ACTIONS(6443), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6447), 1, - anon_sym_QMARK, - ACTIONS(6449), 1, - anon_sym_AMP_AMP, - ACTIONS(6451), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6453), 1, + anon_sym_DOT, + ACTIONS(6108), 40, + sym__line_break, sym__start_of_index_operator, - ACTIONS(6459), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - ACTIONS(6580), 1, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3114), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6435), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6441), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6445), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(6429), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [57210] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3119), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6223), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6439), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6455), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6221), 40, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6457), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6606), 14, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [57342] = 5, + [57273] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3115), 1, + STATE(3120), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5846), 8, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -380363,7 +384769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5844), 40, + ACTIONS(5551), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -380404,15 +384810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [57405] = 5, + [57336] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3116), 1, + STATE(3121), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6324), 8, + ACTIONS(6462), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -380421,7 +384827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6322), 40, + ACTIONS(6460), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -380462,15 +384868,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [57468] = 5, + [57399] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3117), 1, + STATE(3122), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6348), 8, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -380479,7 +384885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6346), 40, + ACTIONS(5875), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -380520,15 +384926,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, + [57462] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(343), 1, + sym__start_of_brace_block, + STATE(3123), 1, + sym_heredoc_body, + STATE(3326), 1, + sym_brace_block, + STATE(3595), 1, + sym_do_end_block, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5547), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5545), 37, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, [57531] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3118), 1, + STATE(3124), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5887), 8, + ACTIONS(6446), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -380537,7 +385004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5885), 40, + ACTIONS(6444), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -380581,12 +385048,12 @@ static const uint16_t ts_small_parse_table[] = { [57594] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3119), 1, + STATE(3125), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6352), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -380595,7 +385062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6350), 40, + ACTIONS(6249), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -380639,12 +385106,12 @@ static const uint16_t ts_small_parse_table[] = { [57657] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3120), 1, + STATE(3126), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -380653,7 +385120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 40, + ACTIONS(6349), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -380694,15 +385161,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [57720] = 5, + [57720] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3121), 1, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6511), 1, + anon_sym_DOT_DOT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6533), 1, + anon_sym_QMARK, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, + STATE(3127), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5826), 8, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6543), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5694), 15, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [57819] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3128), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -380711,7 +385254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5824), 40, + ACTIONS(5694), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -380752,21 +385295,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [57783] = 8, + [57882] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1205), 1, - anon_sym_COLON, - ACTIONS(5560), 1, - anon_sym_COLON_COLON, - STATE(2513), 1, - aux_sym_constant_repeat1, - STATE(3122), 1, + STATE(3129), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -380775,7 +385312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(4549), 37, + ACTIONS(6353), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -380789,12 +385326,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -380808,22 +385346,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [57852] = 6, + anon_sym_when, + anon_sym_in, + [57945] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6621), 1, + ACTIONS(6660), 1, anon_sym_of, - STATE(3123), 1, + STATE(3130), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5690), 8, + ACTIONS(5739), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -380832,7 +385372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5686), 39, + ACTIONS(5735), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -380872,15 +385412,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [57917] = 5, + [58010] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3124), 1, + ACTIONS(343), 1, + sym__start_of_brace_block, + STATE(3131), 1, sym_heredoc_body, + STATE(3327), 1, + sym_do_end_block, + STATE(3342), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -380889,7 +385435,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5947), 40, + ACTIONS(5545), 37, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + [58079] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3132), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6367), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6365), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -380930,23 +385531,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [57980] = 9, + [58142] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1337), 1, - sym__string_literal_start, - ACTIONS(6623), 1, - anon_sym_COLON, - STATE(3125), 1, + STATE(3133), 1, sym_heredoc_body, - STATE(3191), 1, - aux_sym_chained_string_repeat1, - STATE(3622), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -380955,7 +385548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 36, + ACTIONS(6369), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -380969,12 +385562,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -380991,16 +385585,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [58051] = 5, + anon_sym_when, + anon_sym_in, + [58205] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3126), 1, + ACTIONS(6662), 1, + anon_sym_EQ, + STATE(3134), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6368), 8, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -381009,7 +385608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6366), 40, + ACTIONS(5761), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -381030,7 +385629,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -381050,15 +385648,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [58114] = 5, + [58270] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3127), 1, + ACTIONS(393), 1, + sym__start_of_brace_block, + ACTIONS(6664), 1, + anon_sym_do, + STATE(3135), 1, sym_heredoc_body, + STATE(4007), 1, + sym_do_end_block, + STATE(4008), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4561), 9, + ACTIONS(5570), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -381067,8 +385673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4563), 39, + ACTIONS(5568), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -381082,17 +385687,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -381103,20 +385706,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [58177] = 5, + anon_sym_else, + [58341] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3128), 1, + ACTIONS(393), 1, + sym__start_of_brace_block, + ACTIONS(6664), 1, + anon_sym_do, + STATE(3136), 1, sym_heredoc_body, + STATE(4017), 1, + sym_do_end_block, + STATE(4018), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6400), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -381125,7 +385735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6398), 40, + ACTIONS(5545), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -381139,13 +385749,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -381162,19 +385771,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [58240] = 5, + [58412] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3129), 1, + ACTIONS(393), 1, + sym__start_of_brace_block, + ACTIONS(6664), 1, + anon_sym_do, + STATE(3137), 1, + sym_heredoc_body, + STATE(4019), 1, + sym_do_end_block, + STATE(4020), 1, + sym_brace_block, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5547), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5545), 36, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + [58483] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3138), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5738), 8, + ACTIONS(6379), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -381183,7 +385851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5736), 40, + ACTIONS(6377), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -381224,15 +385892,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [58303] = 5, + [58546] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3130), 1, + STATE(3139), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5742), 8, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -381241,7 +385909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5740), 40, + ACTIONS(6385), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -381282,15 +385950,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [58366] = 5, + [58609] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3131), 1, + STATE(3140), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4647), 9, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -381299,10 +385967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4649), 39, + ACTIONS(6389), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -381316,16 +385982,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -381339,37 +386004,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [58429] = 11, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [58672] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6489), 1, - anon_sym_STAR, - ACTIONS(6491), 1, - anon_sym_DOT, - ACTIONS(6493), 1, - anon_sym_QMARK, - ACTIONS(6608), 1, - anon_sym_PIPE, - STATE(3078), 1, - aux_sym_union_type_repeat1, - STATE(3132), 1, + STATE(3141), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4683), 7, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4685), 35, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(6393), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -381380,11 +386037,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -381397,22 +386059,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [58504] = 5, + [58735] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3133), 1, + STATE(3142), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5746), 8, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -381421,7 +386083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5744), 40, + ACTIONS(6397), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -381462,15 +386124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [58567] = 5, + [58798] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3134), 1, + STATE(3143), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5750), 8, + ACTIONS(6410), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -381479,7 +386141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5748), 40, + ACTIONS(6408), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -381520,15 +386182,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [58630] = 5, + [58861] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3135), 1, + STATE(3144), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4671), 9, + ACTIONS(6414), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -381537,10 +386199,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4673), 39, + ACTIONS(6412), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -381554,16 +386214,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -381577,37 +386236,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [58693] = 11, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [58924] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6487), 1, - anon_sym_LBRACK, - ACTIONS(6489), 1, - anon_sym_STAR, - ACTIONS(6491), 1, + ACTIONS(5613), 1, anon_sym_DOT, - ACTIONS(6493), 1, + ACTIONS(6511), 1, + anon_sym_DOT_DOT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6533), 1, anon_sym_QMARK, - ACTIONS(6608), 1, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, + STATE(3145), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6543), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5923), 15, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [59023] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6511), 1, + anon_sym_DOT_DOT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, anon_sym_PIPE, - STATE(3078), 1, - aux_sym_union_type_repeat1, - STATE(3136), 1, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6533), 1, + anon_sym_QMARK, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, + STATE(3146), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4639), 7, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6543), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5773), 15, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [59122] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3147), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6418), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4641), 35, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(6416), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -381618,11 +386421,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -381635,22 +386443,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [58768] = 5, + [59185] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3137), 1, + STATE(3148), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4623), 9, + ACTIONS(6422), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -381659,10 +386467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4625), 39, + ACTIONS(6420), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -381676,16 +386482,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -381699,22 +386504,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [58831] = 8, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [59248] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(387), 1, - sym__start_of_brace_block, - STATE(3138), 1, + STATE(3149), 1, sym_heredoc_body, - STATE(3547), 1, - sym_do_end_block, - STATE(3548), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(6426), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -381723,7 +386525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 37, + ACTIONS(6424), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -381737,12 +386539,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -381759,17 +386562,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_elsif, anon_sym_else, - [58900] = 5, + anon_sym_when, + anon_sym_in, + [59311] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3139), 1, + STATE(3150), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 9, + ACTIONS(6430), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -381778,10 +386583,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4595), 39, + ACTIONS(6428), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -381794,15 +386597,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -381817,17 +386620,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_elsif, anon_sym_else, - [58963] = 5, + anon_sym_when, + anon_sym_in, + [59374] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3140), 1, + STATE(3151), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(4688), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -381836,7 +386641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 40, + anon_sym_EQ, + ACTIONS(4690), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -381850,16 +386656,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -381873,25 +386681,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [59026] = 8, + [59437] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(387), 1, - sym__start_of_brace_block, - STATE(3141), 1, + STATE(3152), 1, sym_heredoc_body, - STATE(3556), 1, - sym_do_end_block, - STATE(3557), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(5885), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -381900,7 +386699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 37, + ACTIONS(5883), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -381914,12 +386713,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -381936,23 +386736,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_elsif, anon_sym_else, - [59095] = 8, + anon_sym_when, + anon_sym_in, + [59500] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(387), 1, - sym__start_of_brace_block, - STATE(3142), 1, + STATE(3153), 1, sym_heredoc_body, - STATE(3559), 1, - sym_do_end_block, - STATE(3560), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(4696), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -381961,7 +386757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 37, + anon_sym_EQ, + ACTIONS(4698), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -381981,9 +386778,12 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -381997,23 +386797,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_else, - [59164] = 8, + [59563] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(6625), 1, - anon_sym_DASH_GT, - STATE(3143), 1, + STATE(3154), 1, sym_heredoc_body, - STATE(9928), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(6434), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -382022,9 +386815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 36, - sym__start_of_brace_block, + ACTIONS(6432), 40, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -382035,11 +386827,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -382055,27 +386852,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [59233] = 8, + [59626] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(339), 1, - sym__start_of_brace_block, - ACTIONS(6610), 1, - anon_sym_do, - STATE(3144), 1, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6539), 1, + sym__start_of_index_operator, + STATE(3155), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3991), 2, - sym_do_end_block, - sym_brace_block, - ACTIONS(5512), 8, + ACTIONS(6001), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -382083,10 +386876,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5510), 36, + ACTIONS(5999), 39, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -382098,12 +386889,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -382120,41 +386912,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [59302] = 5, + anon_sym_when, + anon_sym_in, + [59693] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3145), 1, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6063), 1, + anon_sym_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, + STATE(3156), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5891), 8, - anon_sym_DOT_DOT, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5889), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6061), 17, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -382162,32 +386985,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [59365] = 5, + [59788] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3146), 1, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6539), 1, + sym__start_of_index_operator, + STATE(3157), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4667), 9, + ACTIONS(6152), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -382195,12 +387010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4669), 39, + ACTIONS(6150), 39, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -382213,16 +387024,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -382236,16 +387046,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [59428] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [59855] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3147), 1, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6539), 1, + sym__start_of_index_operator, + STATE(3158), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4619), 9, + ACTIONS(6156), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -382253,12 +387070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4621), 39, + ACTIONS(6154), 39, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -382271,16 +387084,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -382294,16 +387106,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [59491] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [59922] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3148), 1, + STATE(3159), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4647), 9, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -382312,8 +387127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4649), 39, + ACTIONS(5741), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -382327,18 +387141,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -382352,18 +387164,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [59554] = 6, + anon_sym_when, + anon_sym_in, + [59985] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3078), 1, - aux_sym_union_type_repeat1, - STATE(3149), 1, + STATE(3160), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(4700), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -382373,8 +387186,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 38, - sym__start_of_brace_block, + ACTIONS(4702), 39, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -382385,13 +387198,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, anon_sym_CARET, @@ -382407,79 +387225,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [59619] = 6, + [60048] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3084), 1, - aux_sym_union_type_repeat1, - STATE(3150), 1, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6511), 1, + anon_sym_DOT_DOT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6533), 1, + anon_sym_QMARK, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, + ACTIONS(6614), 1, + anon_sym_COMMA, + STATE(3161), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, - anon_sym_DOT_DOT, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6666), 14, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [59684] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [60149] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3151), 1, + STATE(3162), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5754), 8, + ACTIONS(5849), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -382488,7 +387320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5752), 40, + ACTIONS(5847), 40, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -382529,131 +387361,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [59747] = 5, + [60212] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3152), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5758), 8, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6511), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(6529), 1, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5756), 40, - sym__line_break, + ACTIONS(6533), 1, + anon_sym_QMARK, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, + ACTIONS(6545), 1, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6614), 1, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, + STATE(3163), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6521), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6527), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(6531), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [59810] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3153), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5858), 8, - anon_sym_DOT_DOT, + ACTIONS(6515), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5856), 40, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6543), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6622), 14, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [59873] = 5, + [60313] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3154), 1, + STATE(3164), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5762), 8, + ACTIONS(4692), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -382662,7 +387455,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5760), 40, + anon_sym_EQ, + ACTIONS(4694), 39, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -382676,16 +387470,18 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -382699,29 +387495,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [59936] = 5, + [60376] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3155), 1, + ACTIONS(6499), 1, + anon_sym_LBRACK, + ACTIONS(6501), 1, + anon_sym_STAR, + ACTIONS(6505), 1, + anon_sym_DOT, + ACTIONS(6507), 1, + anon_sym_QMARK, + ACTIONS(6639), 1, + anon_sym_PIPE, + STATE(3165), 1, sym_heredoc_body, + STATE(3167), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5862), 8, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5860), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4650), 35, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -382732,16 +387536,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -382754,22 +387553,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [59999] = 5, + [60451] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3156), 1, + ACTIONS(393), 1, + sym__start_of_brace_block, + ACTIONS(6664), 1, + anon_sym_do, + STATE(3166), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5766), 8, + STATE(4283), 2, + sym_do_end_block, + sym_brace_block, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -382778,7 +387584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5764), 40, + ACTIONS(5551), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -382792,13 +387598,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -382815,29 +387620,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [60062] = 5, + [60520] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3157), 1, + ACTIONS(6639), 1, + anon_sym_PIPE, + STATE(3167), 1, sym_heredoc_body, + STATE(3168), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4647), 9, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4649), 39, + ACTIONS(4636), 38, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -382856,7 +387661,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, anon_sym_CARET, @@ -382877,25 +387681,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [60125] = 5, + [60587] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3158), 1, - sym_heredoc_body, + ACTIONS(6668), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5774), 8, + STATE(3168), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5772), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4629), 38, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -382906,18 +387713,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -382931,29 +387735,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [60188] = 5, + [60652] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3159), 1, + ACTIONS(6499), 1, + anon_sym_LBRACK, + ACTIONS(6501), 1, + anon_sym_STAR, + ACTIONS(6505), 1, + anon_sym_DOT, + ACTIONS(6507), 1, + anon_sym_QMARK, + ACTIONS(6639), 1, + anon_sym_PIPE, + STATE(3167), 1, + aux_sym_union_type_repeat1, + STATE(3169), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4671), 9, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4673), 39, + ACTIONS(4625), 35, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -382968,13 +387783,10 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -382985,7 +387797,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, @@ -382993,25 +387804,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [60251] = 5, + [60727] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3160), 1, + ACTIONS(6499), 1, + anon_sym_LBRACK, + ACTIONS(6501), 1, + anon_sym_STAR, + ACTIONS(6505), 1, + anon_sym_DOT, + ACTIONS(6507), 1, + anon_sym_QMARK, + ACTIONS(6639), 1, + anon_sym_PIPE, + STATE(3167), 1, + aux_sym_union_type_repeat1, + STATE(3170), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4623), 9, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4625), 39, + ACTIONS(4607), 35, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -383026,13 +387847,10 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -383043,7 +387861,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, @@ -383051,25 +387868,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [60314] = 5, + [60802] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3161), 1, + ACTIONS(6563), 1, + anon_sym_LBRACK, + ACTIONS(6565), 1, + anon_sym_STAR, + ACTIONS(6569), 1, + anon_sym_DOT, + ACTIONS(6571), 1, + anon_sym_QMARK, + ACTIONS(6645), 1, + anon_sym_PIPE, + STATE(3171), 1, sym_heredoc_body, + STATE(3172), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5866), 8, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5864), 40, + anon_sym_EQ, + ACTIONS(4650), 35, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -383083,12 +387912,10 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -383102,32 +387929,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [60377] = 5, + anon_sym_do, + [60877] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3162), 1, + ACTIONS(6645), 1, + anon_sym_PIPE, + STATE(3172), 1, sym_heredoc_body, + STATE(3173), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5899), 8, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5897), 40, + anon_sym_EQ, + ACTIONS(4636), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -383141,15 +387969,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -383163,30 +387991,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [60440] = 5, + anon_sym_do, + [60944] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3163), 1, - sym_heredoc_body, + ACTIONS(6671), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4561), 10, + STATE(3173), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - anon_sym_COLON2, - ACTIONS(4563), 38, + ACTIONS(4629), 38, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -383197,14 +388025,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, anon_sym_CARET, @@ -383217,33 +388047,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [60503] = 5, + anon_sym_do, + [61009] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3164), 1, + ACTIONS(6563), 1, + anon_sym_LBRACK, + ACTIONS(6565), 1, + anon_sym_STAR, + ACTIONS(6569), 1, + anon_sym_DOT, + ACTIONS(6571), 1, + anon_sym_QMARK, + ACTIONS(6645), 1, + anon_sym_PIPE, + STATE(3172), 1, + aux_sym_union_type_repeat1, + STATE(3174), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4667), 9, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4669), 39, + ACTIONS(4625), 35, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -383255,16 +388092,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -383275,33 +388112,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [60566] = 5, + [61084] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3165), 1, + ACTIONS(6563), 1, + anon_sym_LBRACK, + ACTIONS(6565), 1, + anon_sym_STAR, + ACTIONS(6569), 1, + anon_sym_DOT, + ACTIONS(6571), 1, + anon_sym_QMARK, + ACTIONS(6645), 1, + anon_sym_PIPE, + STATE(3172), 1, + aux_sym_union_type_repeat1, + STATE(3175), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4619), 9, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4621), 39, + ACTIONS(4607), 35, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -383313,16 +388156,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -383333,23 +388176,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [60629] = 5, + [61159] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3166), 1, + STATE(3176), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(4704), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -383359,9 +388197,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4599), 39, + ACTIONS(4706), 39, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -383374,6 +388211,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -383398,16 +388236,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [60692] = 5, + anon_sym_else, + [61222] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3167), 1, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6511), 1, + anon_sym_DOT_DOT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6533), 1, + anon_sym_QMARK, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, + ACTIONS(6614), 1, + anon_sym_COMMA, + STATE(3177), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6543), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6622), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [61323] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3178), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4651), 9, + ACTIONS(5897), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -383416,10 +388331,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4653), 39, + ACTIONS(5895), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -383433,16 +388346,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -383456,16 +388368,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [60755] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [61386] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3168), 1, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6511), 1, + anon_sym_DOT_DOT, + ACTIONS(6513), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6519), 1, + anon_sym_CARET, + ACTIONS(6523), 1, + anon_sym_EQ_EQ, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6533), 1, + anon_sym_QMARK, + ACTIONS(6535), 1, + anon_sym_AMP_AMP, + ACTIONS(6537), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6545), 1, + sym_binary_ampersand, + ACTIONS(6614), 1, + anon_sym_COMMA, + STATE(3179), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6527), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6515), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6525), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6541), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6543), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6622), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [61487] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6674), 1, + anon_sym_LPAREN2, + STATE(3180), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4615), 9, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -383475,9 +388469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4617), 39, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4644), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -383488,15 +388480,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -383514,16 +388504,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [60818] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [61552] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3169), 1, + STATE(3167), 1, + aux_sym_union_type_repeat1, + STATE(3181), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5778), 8, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -383532,8 +388527,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5776), 40, - sym__line_break, + anon_sym_EQ, + ACTIONS(4629), 38, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -383544,18 +388540,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -383569,31 +388562,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [60881] = 5, + [61617] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3170), 1, + ACTIONS(6624), 1, + anon_sym_PIPE, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6633), 1, + anon_sym_STAR, + ACTIONS(6635), 1, + anon_sym_DOT, + ACTIONS(6637), 1, + anon_sym_QMARK, + STATE(2921), 1, + aux_sym_union_type_repeat1, + STATE(3182), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4663), 9, + ACTIONS(4638), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4665), 39, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4640), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -383604,19 +388606,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -383627,19 +388625,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [60944] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [61692] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3171), 1, + STATE(3172), 1, + aux_sym_union_type_repeat1, + STATE(3183), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4675), 9, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -383649,7 +388651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4677), 39, + ACTIONS(4629), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -383672,7 +388674,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, anon_sym_CARET, @@ -383689,15 +388690,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [61007] = 5, + [61757] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3172), 1, + STATE(3184), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4679), 9, + ACTIONS(5901), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -383706,10 +388707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4681), 39, + ACTIONS(5899), 40, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -383723,16 +388722,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -383746,28 +388744,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [61070] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [61820] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3173), 1, + ACTIONS(6624), 1, + anon_sym_PIPE, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6633), 1, + anon_sym_STAR, + ACTIONS(6635), 1, + anon_sym_DOT, + ACTIONS(6637), 1, + anon_sym_QMARK, + STATE(2921), 1, + aux_sym_union_type_repeat1, + STATE(3185), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4631), 9, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4633), 39, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4650), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -383778,19 +388787,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -383801,89 +388806,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [61133] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [61895] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3174), 1, + ACTIONS(5613), 1, + anon_sym_DOT, + ACTIONS(6529), 1, + anon_sym_AMP_STAR, + ACTIONS(6539), 1, + sym__start_of_index_operator, + STATE(3186), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4655), 9, + ACTIONS(6521), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6531), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6541), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6543), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6327), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4657), 39, + ACTIONS(6325), 27, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [61196] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [61972] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3175), 1, + ACTIONS(6676), 1, + anon_sym_LBRACK, + ACTIONS(6678), 1, + anon_sym_STAR, + ACTIONS(6680), 1, + anon_sym_PIPE, + ACTIONS(6682), 1, + anon_sym_DOT, + ACTIONS(6684), 1, + anon_sym_QMARK, + STATE(3187), 1, sym_heredoc_body, + STATE(3201), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4635), 9, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4637), 39, + ACTIONS(4625), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -383901,12 +388924,10 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -383917,19 +388938,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [61259] = 5, + [62046] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3176), 1, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(6686), 1, + anon_sym_DASH_GT, + STATE(3188), 1, sym_heredoc_body, + STATE(9871), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4643), 9, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -383939,9 +388964,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4645), 39, + ACTIONS(4785), 35, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -383954,17 +388978,14 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -383978,16 +388999,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [61322] = 5, + anon_sym_else, + [62114] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3177), 1, + STATE(3189), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4627), 9, + ACTIONS(4664), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -383997,9 +389018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4629), 39, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4666), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -384010,15 +389029,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -384036,16 +389053,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [61385] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [62176] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3178), 1, + STATE(3190), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4659), 9, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -384055,7 +389075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4661), 39, + ACTIONS(4785), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -384070,17 +389090,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -384095,15 +389113,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [61448] = 5, + anon_sym_else, + [62238] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3179), 1, + ACTIONS(6688), 1, + anon_sym_LPAREN2, + STATE(3191), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5919), 8, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -384112,7 +389133,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5917), 40, + anon_sym_EQ, + ACTIONS(4644), 37, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -384127,15 +389149,16 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -384149,31 +389172,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [61511] = 11, + [62302] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6467), 1, + ACTIONS(6676), 1, anon_sym_LBRACK, - ACTIONS(6469), 1, + ACTIONS(6678), 1, anon_sym_STAR, - ACTIONS(6473), 1, + ACTIONS(6680), 1, + anon_sym_PIPE, + ACTIONS(6682), 1, anon_sym_DOT, - ACTIONS(6475), 1, + ACTIONS(6684), 1, anon_sym_QMARK, - ACTIONS(6567), 1, - anon_sym_PIPE, - STATE(2878), 1, - aux_sym_union_type_repeat1, - STATE(3180), 1, + STATE(3192), 1, sym_heredoc_body, + STATE(3201), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(4638), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -384181,7 +389200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4609), 35, + ACTIONS(4640), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -384195,7 +389214,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -384203,6 +389221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -384216,29 +389235,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [61586] = 6, + [62376] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6627), 1, - anon_sym_of, - STATE(3181), 1, + ACTIONS(6676), 1, + anon_sym_LBRACK, + ACTIONS(6678), 1, + anon_sym_STAR, + ACTIONS(6680), 1, + anon_sym_PIPE, + ACTIONS(6682), 1, + anon_sym_DOT, + ACTIONS(6684), 1, + anon_sym_QMARK, + STATE(3193), 1, sym_heredoc_body, + STATE(3201), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5660), 8, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5656), 38, + anon_sym_EQ, + ACTIONS(4650), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -384251,7 +389277,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -384259,6 +389284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -384270,207 +389296,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [61650] = 23, + [62450] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6631), 1, - anon_sym_DOT_DOT, - ACTIONS(6633), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6637), 1, + ACTIONS(6676), 1, + anon_sym_LBRACK, + ACTIONS(6678), 1, + anon_sym_STAR, + ACTIONS(6680), 1, anon_sym_PIPE, - ACTIONS(6639), 1, - anon_sym_CARET, - ACTIONS(6643), 1, - anon_sym_EQ_EQ, - ACTIONS(6649), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, + ACTIONS(6682), 1, anon_sym_DOT, - ACTIONS(6655), 1, + ACTIONS(6684), 1, anon_sym_QMARK, - ACTIONS(6657), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6665), 1, - sym_binary_ampersand, - STATE(3182), 1, + STATE(3194), 1, sym_heredoc_body, + STATE(3201), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6641), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6647), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6651), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6635), 3, + ACTIONS(4619), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6645), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6661), 4, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4621), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6663), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6629), 14, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [61748] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6631), 1, - anon_sym_DOT_DOT, - ACTIONS(6633), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(6637), 1, - anon_sym_PIPE, - ACTIONS(6639), 1, + anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, - ACTIONS(6643), 1, - anon_sym_EQ_EQ, - ACTIONS(6649), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, - anon_sym_DOT, - ACTIONS(6655), 1, - anon_sym_QMARK, - ACTIONS(6657), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6665), 1, - sym_binary_ampersand, - STATE(3183), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6641), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6647), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6651), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6635), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6645), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6661), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6663), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6667), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [61846] = 10, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [62524] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6649), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, - anon_sym_DOT, - STATE(3184), 1, + STATE(3195), 1, sym_heredoc_body, + STATE(3201), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6651), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6663), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 32, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4629), 37, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -384480,106 +389415,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [61918] = 25, + [62588] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6669), 1, - anon_sym_COMMA, - ACTIONS(6671), 1, - anon_sym_DOT_DOT, - ACTIONS(6673), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6677), 1, - anon_sym_PIPE, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6683), 1, - anon_sym_EQ_EQ, - ACTIONS(6689), 1, - anon_sym_AMP_STAR, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6695), 1, - anon_sym_QMARK, - ACTIONS(6697), 1, - anon_sym_AMP_AMP, - ACTIONS(6699), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, - sym__start_of_index_operator, - ACTIONS(6707), 1, - sym_binary_ampersand, - STATE(3185), 1, + ACTIONS(6690), 1, + sym_regex_modifier, + STATE(3196), 1, sym_heredoc_body, - STATE(3312), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6681), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6687), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, + ACTIONS(5769), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6685), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6703), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5767), 38, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6705), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5570), 12, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [62020] = 8, + [62652] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6653), 1, - anon_sym_DOT, - STATE(3186), 1, + ACTIONS(6692), 1, + sym_regex_modifier, + STATE(3197), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6651), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -384587,25 +389495,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 36, + anon_sym_DOT, + ACTIONS(5660), 38, sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -384617,28 +389529,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [62088] = 8, + [62716] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(615), 1, - sym__string_literal_start, - STATE(3187), 1, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(6694), 1, + anon_sym_DASH_GT, + STATE(3198), 1, sym_heredoc_body, - STATE(3196), 1, - aux_sym_chained_string_repeat1, - STATE(3448), 1, - sym_string, + STATE(10199), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -384647,7 +389558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 36, + anon_sym_EQ, + ACTIONS(4785), 35, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -384662,9 +389574,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -384680,26 +389590,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [62156] = 8, + [62784] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6653), 1, - anon_sym_DOT, - STATE(3188), 1, + ACTIONS(6696), 1, + anon_sym_COMMA, + STATE(3199), 1, sym_heredoc_body, + STATE(3214), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6651), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -384707,25 +389615,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 36, + anon_sym_DOT, + ACTIONS(5587), 37, sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -384737,174 +389648,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [62224] = 12, + [62850] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6649), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, - anon_sym_DOT, - STATE(3189), 1, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(6686), 1, + anon_sym_DASH_GT, + STATE(3200), 1, sym_heredoc_body, + STATE(9871), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6641), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6651), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6661), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6663), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6064), 6, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6062), 26, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4785), 35, sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [62300] = 21, + [62918] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6068), 1, - anon_sym_DOT_DOT, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6637), 1, + ACTIONS(6680), 1, anon_sym_PIPE, - ACTIONS(6639), 1, - anon_sym_CARET, - ACTIONS(6643), 1, - anon_sym_EQ_EQ, - ACTIONS(6649), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, - anon_sym_DOT, - ACTIONS(6657), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6665), 1, - sym_binary_ampersand, - STATE(3190), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6641), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6647), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6651), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6635), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6645), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6661), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6663), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6066), 16, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [62394] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1337), 1, - sym__string_literal_start, - STATE(3191), 1, + STATE(3201), 1, sym_heredoc_body, - STATE(3240), 1, - aux_sym_chained_string_repeat1, - STATE(3622), 1, - sym_string, + STATE(3202), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5490), 8, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5488), 36, + anon_sym_EQ, + ACTIONS(4636), 37, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -384918,15 +389749,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -384940,187 +389773,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [62462] = 17, + [62984] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6637), 1, + ACTIONS(6698), 1, anon_sym_PIPE, - ACTIONS(6639), 1, - anon_sym_CARET, - ACTIONS(6643), 1, - anon_sym_EQ_EQ, - ACTIONS(6649), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, - anon_sym_DOT, - ACTIONS(6665), 1, - sym_binary_ampersand, - STATE(3192), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6641), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6651), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, + STATE(3202), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6645), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6661), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4629), 37, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6663), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6070), 20, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [62548] = 13, + [63048] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6649), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, - anon_sym_DOT, - ACTIONS(6665), 1, - sym_binary_ampersand, - STATE(3193), 1, + STATE(3203), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6641), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6651), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6661), 4, + ACTIONS(4652), 9, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4654), 38, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6663), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6082), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6080), 25, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [62626] = 11, + [63110] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6649), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, + ACTIONS(6676), 1, + anon_sym_LBRACK, + ACTIONS(6678), 1, + anon_sym_STAR, + ACTIONS(6680), 1, + anon_sym_PIPE, + ACTIONS(6682), 1, anon_sym_DOT, - STATE(3194), 1, + ACTIONS(6684), 1, + anon_sym_QMARK, + STATE(3201), 1, + aux_sym_union_type_repeat1, + STATE(3204), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6651), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6661), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6663), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6090), 6, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6088), 28, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4607), 34, sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -385131,105 +389948,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_AMP_STAR_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [62700] = 15, + [63184] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6637), 1, + ACTIONS(6701), 1, anon_sym_PIPE, - ACTIONS(6639), 1, - anon_sym_CARET, - ACTIONS(6649), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, - anon_sym_DOT, - ACTIONS(6665), 1, - sym_binary_ampersand, - STATE(3195), 1, + STATE(3205), 1, sym_heredoc_body, + STATE(3206), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6641), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6651), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6661), 4, + ACTIONS(4634), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4636), 37, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6663), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6094), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6092), 24, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [62782] = 8, + [63250] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(615), 1, - sym__string_literal_start, - STATE(3196), 1, - sym_heredoc_body, - STATE(3206), 1, - aux_sym_chained_string_repeat1, - STATE(3448), 1, - sym_string, + ACTIONS(6703), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5490), 8, + STATE(3206), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5488), 36, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4629), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -385243,11 +390044,13 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -385261,105 +390064,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [62850] = 19, + [63314] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, - anon_sym_DOT_DOT, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6637), 1, - anon_sym_PIPE, - ACTIONS(6639), 1, - anon_sym_CARET, - ACTIONS(6643), 1, - anon_sym_EQ_EQ, - ACTIONS(6649), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6633), 1, + anon_sym_STAR, + ACTIONS(6635), 1, anon_sym_DOT, - ACTIONS(6665), 1, - sym_binary_ampersand, - STATE(3197), 1, + ACTIONS(6637), 1, + anon_sym_QMARK, + ACTIONS(6701), 1, + anon_sym_PIPE, + STATE(3205), 1, + aux_sym_union_type_repeat1, + STATE(3207), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6641), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6647), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6651), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6635), 3, + ACTIONS(4623), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6645), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6661), 4, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4625), 34, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6663), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 18, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [62940] = 8, + [63388] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(591), 1, - sym__start_of_brace_block, - STATE(3198), 1, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6633), 1, + anon_sym_STAR, + ACTIONS(6635), 1, + anon_sym_DOT, + ACTIONS(6637), 1, + anon_sym_QMARK, + ACTIONS(6701), 1, + anon_sym_PIPE, + STATE(3205), 1, + aux_sym_union_type_repeat1, + STATE(3208), 1, sym_heredoc_body, - STATE(3629), 1, - sym_do_end_block, - STATE(3638), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5524), 36, + anon_sym_EQ, + ACTIONS(4607), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -385388,69 +390188,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [63008] = 20, + [63462] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6118), 1, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(6706), 1, + anon_sym_DASH_GT, + STATE(3209), 1, + sym_heredoc_body, + STATE(10403), 1, + aux_sym_proc_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4783), 9, anon_sym_DOT_DOT, - ACTIONS(6453), 1, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4785), 35, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(6637), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [63530] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6708), 1, + anon_sym_DOT_DOT, + ACTIONS(6710), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6714), 1, anon_sym_PIPE, - ACTIONS(6639), 1, + ACTIONS(6716), 1, anon_sym_CARET, - ACTIONS(6643), 1, + ACTIONS(6720), 1, anon_sym_EQ_EQ, - ACTIONS(6649), 1, + ACTIONS(6726), 1, anon_sym_AMP_STAR, - ACTIONS(6653), 1, + ACTIONS(6730), 1, anon_sym_DOT, - ACTIONS(6657), 1, + ACTIONS(6732), 1, + anon_sym_QMARK, + ACTIONS(6734), 1, anon_sym_AMP_AMP, - ACTIONS(6665), 1, + ACTIONS(6736), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6742), 1, sym_binary_ampersand, - STATE(3199), 1, + STATE(3210), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6641), 2, + ACTIONS(6718), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6647), 2, + ACTIONS(6724), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6651), 2, + ACTIONS(6728), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6635), 3, + ACTIONS(6712), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6645), 4, + ACTIONS(6722), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6661), 4, + ACTIONS(6738), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6663), 4, + ACTIONS(6740), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6116), 17, + ACTIONS(6193), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -385460,86 +390324,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [63100] = 5, + [63628] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3200), 1, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6708), 1, + anon_sym_DOT_DOT, + ACTIONS(6710), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6714), 1, + anon_sym_PIPE, + ACTIONS(6716), 1, + anon_sym_CARET, + ACTIONS(6720), 1, + anon_sym_EQ_EQ, + ACTIONS(6726), 1, + anon_sym_AMP_STAR, + ACTIONS(6730), 1, + anon_sym_DOT, + ACTIONS(6732), 1, + anon_sym_QMARK, + ACTIONS(6734), 1, + anon_sym_AMP_AMP, + ACTIONS(6736), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6742), 1, + sym_binary_ampersand, + STATE(3211), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, - anon_sym_DOT_DOT, + ACTIONS(6718), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6724), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6728), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6712), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4599), 38, - sym__start_of_index_operator, + ACTIONS(6722), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6738), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6740), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6203), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [63162] = 8, + [63726] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(591), 1, - sym__start_of_brace_block, - STATE(3201), 1, + STATE(3212), 1, sym_heredoc_body, - STATE(3658), 1, - sym_do_end_block, - STATE(3660), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(4716), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -385548,7 +390421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 36, + anon_sym_EQ, + ACTIONS(4718), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -385562,11 +390436,14 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -385581,24 +390458,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [63230] = 7, + [63788] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6709), 1, - sym__string_literal_start, - STATE(3781), 1, - sym_string, + STATE(3213), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3202), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5499), 8, + ACTIONS(5685), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -385607,7 +390478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5497), 36, + ACTIONS(5683), 39, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -385622,6 +390493,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -385640,98 +390512,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [63296] = 25, + anon_sym_else, + [63850] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6671), 1, - anon_sym_DOT_DOT, - ACTIONS(6673), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6677), 1, - anon_sym_PIPE, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6683), 1, - anon_sym_EQ_EQ, - ACTIONS(6689), 1, - anon_sym_AMP_STAR, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6695), 1, - anon_sym_QMARK, - ACTIONS(6697), 1, - anon_sym_AMP_AMP, - ACTIONS(6699), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, - sym__start_of_index_operator, - ACTIONS(6707), 1, - sym_binary_ampersand, - ACTIONS(6712), 1, + ACTIONS(6744), 1, anon_sym_COMMA, - STATE(3203), 1, + STATE(3214), 1, sym_heredoc_body, - STATE(3313), 1, + STATE(3280), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6681), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6687), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6685), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6703), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6705), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5585), 12, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_do, - anon_sym_else, - [63398] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6714), 1, - anon_sym_of, - STATE(3204), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5690), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -385740,7 +390539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5686), 38, + ACTIONS(5631), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -385761,7 +390560,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -385779,15 +390577,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [63462] = 5, + [63916] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3205), 1, + ACTIONS(1355), 1, + sym__string_literal_start, + STATE(3215), 1, sym_heredoc_body, + STATE(3283), 1, + aux_sym_chained_string_repeat1, + STATE(3655), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5581), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -385796,9 +390600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5579), 39, + ACTIONS(135), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -385830,88 +390633,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_else, - [63524] = 7, + [63984] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6716), 1, - sym__string_literal_start, - STATE(3448), 1, - sym_string, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(3206), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5499), 8, + ACTIONS(6696), 1, + anon_sym_COMMA, + ACTIONS(6746), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(6748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6752), 1, anon_sym_PIPE, + ACTIONS(6754), 1, + anon_sym_CARET, + ACTIONS(6758), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(6764), 1, anon_sym_AMP_STAR, + ACTIONS(6768), 1, anon_sym_DOT, - ACTIONS(5497), 36, - sym__start_of_brace_block, + ACTIONS(6770), 1, + anon_sym_QMARK, + ACTIONS(6772), 1, + anon_sym_AMP_AMP, + ACTIONS(6774), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6776), 1, sym__start_of_index_operator, + ACTIONS(6782), 1, + sym_binary_ampersand, + STATE(3214), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3216), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6756), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6762), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6750), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6760), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6780), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, + ACTIONS(5587), 12, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, + anon_sym_do, + anon_sym_else, + [64086] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6708), 1, + anon_sym_DOT_DOT, + ACTIONS(6710), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6714), 1, + anon_sym_PIPE, + ACTIONS(6716), 1, anon_sym_CARET, + ACTIONS(6720), 1, + anon_sym_EQ_EQ, + ACTIONS(6726), 1, + anon_sym_AMP_STAR, + ACTIONS(6730), 1, + anon_sym_DOT, + ACTIONS(6732), 1, + anon_sym_QMARK, + ACTIONS(6734), 1, + anon_sym_AMP_AMP, + ACTIONS(6736), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6742), 1, + sym_binary_ampersand, + STATE(3217), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6718), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6724), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(6728), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6712), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6722), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, + ACTIONS(6738), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6740), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5825), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [63590] = 9, + [64184] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(641), 1, - sym__start_of_brace_block, - ACTIONS(6719), 1, - anon_sym_do, - STATE(3207), 1, + ACTIONS(6140), 1, + anon_sym_COLON, + STATE(3218), 1, sym_heredoc_body, - STATE(4288), 1, - sym_do_end_block, - STATE(4416), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -385920,7 +390808,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 35, + ACTIONS(135), 38, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -385931,12 +390821,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -385952,21 +390845,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [63660] = 6, + [64248] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6721), 1, - anon_sym_EQ, - STATE(3208), 1, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6730), 1, + anon_sym_DOT, + STATE(3219), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, + ACTIONS(6001), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -385974,11 +390867,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5668), 38, + ACTIONS(5999), 38, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -385990,13 +390880,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -386012,19 +390902,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_elsif, anon_sym_else, - [63724] = 6, + anon_sym_when, + anon_sym_in, + [64314] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5583), 1, - anon_sym_LPAREN2, - STATE(3209), 1, + STATE(3220), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5645), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -386033,7 +390923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 38, + ACTIONS(5643), 39, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -386067,82 +390957,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [63788] = 6, + [64376] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6723), 1, - anon_sym_of, - STATE(3210), 1, + ACTIONS(6744), 1, + anon_sym_COMMA, + ACTIONS(6746), 1, + anon_sym_DOT_DOT, + ACTIONS(6748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6752), 1, + anon_sym_PIPE, + ACTIONS(6754), 1, + anon_sym_CARET, + ACTIONS(6758), 1, + anon_sym_EQ_EQ, + ACTIONS(6764), 1, + anon_sym_AMP_STAR, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6770), 1, + anon_sym_QMARK, + ACTIONS(6772), 1, + anon_sym_AMP_AMP, + ACTIONS(6774), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6776), 1, + sym__start_of_index_operator, + ACTIONS(6782), 1, + sym_binary_ampersand, + STATE(3221), 1, sym_heredoc_body, + STATE(3277), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5719), 8, - anon_sym_DOT_DOT, + ACTIONS(6756), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6762), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6750), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5715), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6760), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6780), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5631), 12, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [63852] = 7, + [64478] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6725), 1, + ACTIONS(6784), 1, anon_sym_PIPE, - STATE(3211), 1, + STATE(3222), 1, sym_heredoc_body, - STATE(3214), 1, + STATE(3223), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -386151,7 +391061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4584), 37, + ACTIONS(4636), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -386168,8 +391078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, anon_sym_CARET, @@ -386189,25 +391099,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [63918] = 5, + [64544] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3212), 1, - sym_heredoc_body, + ACTIONS(6786), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4651), 9, + STATE(3223), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4653), 38, + ACTIONS(4629), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -386224,7 +391136,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -386246,25 +391157,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [63980] = 5, + [64608] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3213), 1, + ACTIONS(6784), 1, + anon_sym_PIPE, + ACTIONS(6789), 1, + anon_sym_LBRACK, + ACTIONS(6791), 1, + anon_sym_STAR, + ACTIONS(6793), 1, + anon_sym_DOT, + ACTIONS(6795), 1, + anon_sym_QMARK, + STATE(3222), 1, + aux_sym_union_type_repeat1, + STATE(3224), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4615), 9, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4617), 38, + ACTIONS(4625), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -386278,14 +391199,11 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -386296,34 +391214,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [64042] = 6, + [64682] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6727), 1, + ACTIONS(6784), 1, anon_sym_PIPE, + ACTIONS(6789), 1, + anon_sym_LBRACK, + ACTIONS(6791), 1, + anon_sym_STAR, + ACTIONS(6793), 1, + anon_sym_DOT, + ACTIONS(6795), 1, + anon_sym_QMARK, + STATE(3222), 1, + aux_sym_union_type_repeat1, + STATE(3225), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3214), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 37, + ACTIONS(4607), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -386337,13 +391262,11 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -386354,28 +391277,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [64106] = 8, + [64756] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1337), 1, + ACTIONS(503), 1, sym__string_literal_start, - STATE(3191), 1, - aux_sym_chained_string_repeat1, - STATE(3215), 1, + STATE(3226), 1, sym_heredoc_body, - STATE(3622), 1, + STATE(3228), 1, + aux_sym_chained_string_repeat1, + STATE(3636), 1, sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -386384,8 +391306,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 36, + ACTIONS(135), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -386398,7 +391321,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -386420,138 +391342,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [64174] = 5, + anon_sym_do, + [64824] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3216), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4593), 9, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6708), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(6710), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6714), 1, anon_sym_PIPE, + ACTIONS(6716), 1, + anon_sym_CARET, + ACTIONS(6720), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(6726), 1, anon_sym_AMP_STAR, + ACTIONS(6730), 1, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4595), 38, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(6732), 1, anon_sym_QMARK, + ACTIONS(6734), 1, anon_sym_AMP_AMP, + ACTIONS(6736), 1, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [64236] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6592), 1, - anon_sym_LBRACK, - ACTIONS(6594), 1, - anon_sym_STAR, - ACTIONS(6598), 1, - anon_sym_DOT, - ACTIONS(6600), 1, - anon_sym_QMARK, - ACTIONS(6725), 1, - anon_sym_PIPE, - STATE(3211), 1, - aux_sym_union_type_repeat1, - STATE(3217), 1, + ACTIONS(6742), 1, + sym_binary_ampersand, + STATE(3227), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, - anon_sym_DOT_DOT, + ACTIONS(6718), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6724), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6728), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6712), 3, anon_sym_LT, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4609), 34, - sym__start_of_index_operator, + ACTIONS(6722), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6738), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6740), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6797), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [64310] = 6, + [64922] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6730), 1, - sym_regex_modifier, - STATE(3218), 1, + ACTIONS(503), 1, + sym__string_literal_start, + STATE(3228), 1, sym_heredoc_body, + STATE(3255), 1, + aux_sym_chained_string_repeat1, + STATE(3636), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5633), 8, + ACTIONS(5541), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -386560,7 +391441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5631), 38, + ACTIONS(5539), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -386575,7 +391456,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -386598,169 +391478,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - [64374] = 11, + [64990] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6592), 1, - anon_sym_LBRACK, - ACTIONS(6594), 1, - anon_sym_STAR, - ACTIONS(6598), 1, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6708), 1, + anon_sym_DOT_DOT, + ACTIONS(6710), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6714), 1, + anon_sym_PIPE, + ACTIONS(6716), 1, + anon_sym_CARET, + ACTIONS(6720), 1, + anon_sym_EQ_EQ, + ACTIONS(6726), 1, + anon_sym_AMP_STAR, + ACTIONS(6730), 1, anon_sym_DOT, - ACTIONS(6600), 1, + ACTIONS(6732), 1, anon_sym_QMARK, - ACTIONS(6725), 1, - anon_sym_PIPE, - STATE(3211), 1, - aux_sym_union_type_repeat1, - STATE(3219), 1, + ACTIONS(6734), 1, + anon_sym_AMP_AMP, + ACTIONS(6736), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6742), 1, + sym_binary_ampersand, + STATE(3229), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, - anon_sym_DOT_DOT, + ACTIONS(6718), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6724), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6728), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6712), 3, anon_sym_LT, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 34, - sym__start_of_index_operator, + ACTIONS(6722), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6738), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6740), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6799), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [64448] = 7, + [65088] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6453), 1, + ACTIONS(6539), 1, sym__start_of_index_operator, - ACTIONS(6653), 1, + ACTIONS(6708), 1, + anon_sym_DOT_DOT, + ACTIONS(6710), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6714), 1, + anon_sym_PIPE, + ACTIONS(6716), 1, + anon_sym_CARET, + ACTIONS(6720), 1, + anon_sym_EQ_EQ, + ACTIONS(6726), 1, + anon_sym_AMP_STAR, + ACTIONS(6730), 1, anon_sym_DOT, - STATE(3220), 1, + ACTIONS(6732), 1, + anon_sym_QMARK, + ACTIONS(6734), 1, + anon_sym_AMP_AMP, + ACTIONS(6736), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6742), 1, + sym_binary_ampersand, + STATE(3230), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6000), 7, - anon_sym_DOT_DOT, + ACTIONS(6718), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6724), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6728), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6712), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5998), 38, - sym__line_break, + ACTIONS(6722), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6738), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6740), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6801), 14, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [65186] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6708), 1, + anon_sym_DOT_DOT, + ACTIONS(6710), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6714), 1, + anon_sym_PIPE, + ACTIONS(6716), 1, anon_sym_CARET, + ACTIONS(6720), 1, + anon_sym_EQ_EQ, + ACTIONS(6726), 1, + anon_sym_AMP_STAR, + ACTIONS(6730), 1, + anon_sym_DOT, + ACTIONS(6732), 1, + anon_sym_QMARK, + ACTIONS(6734), 1, + anon_sym_AMP_AMP, + ACTIONS(6736), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6742), 1, + sym_binary_ampersand, + STATE(3231), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6718), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6724), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(6728), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6712), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6722), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6738), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6740), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6803), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [64514] = 5, + [65284] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3221), 1, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6726), 1, + anon_sym_AMP_STAR, + ACTIONS(6730), 1, + anon_sym_DOT, + STATE(3232), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4663), 9, + ACTIONS(6728), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6740), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6259), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4665), 38, - sym__start_of_index_operator, + ACTIONS(6257), 32, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -386770,25 +391758,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [64576] = 6, + [65356] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6732), 1, - sym_regex_modifier, - STATE(3222), 1, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6730), 1, + anon_sym_DOT, + STATE(3233), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5679), 8, + ACTIONS(6728), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6295), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -386796,29 +391788,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5677), 38, + ACTIONS(6293), 36, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -386830,21 +391818,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_elsif, anon_sym_else, - [64640] = 5, + anon_sym_when, + anon_sym_in, + [65424] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3223), 1, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6730), 1, + anon_sym_DOT, + STATE(3234), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4675), 9, + ACTIONS(6728), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -386852,30 +391848,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4677), 38, - sym__start_of_index_operator, + ACTIONS(6313), 36, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -386885,291 +391878,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [64702] = 5, + [65492] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3224), 1, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6726), 1, + anon_sym_AMP_STAR, + ACTIONS(6730), 1, + anon_sym_DOT, + STATE(3235), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4679), 9, + ACTIONS(6718), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6728), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6738), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6740), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6327), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4681), 38, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, + ACTIONS(6325), 26, + sym__line_break, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [64764] = 11, + [65568] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6592), 1, - anon_sym_LBRACK, - ACTIONS(6594), 1, - anon_sym_STAR, - ACTIONS(6598), 1, - anon_sym_DOT, - ACTIONS(6600), 1, - anon_sym_QMARK, - ACTIONS(6725), 1, + ACTIONS(6442), 1, + anon_sym_DOT_DOT, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6714), 1, anon_sym_PIPE, - STATE(3211), 1, - aux_sym_union_type_repeat1, - STATE(3225), 1, + ACTIONS(6716), 1, + anon_sym_CARET, + ACTIONS(6720), 1, + anon_sym_EQ_EQ, + ACTIONS(6726), 1, + anon_sym_AMP_STAR, + ACTIONS(6730), 1, + anon_sym_DOT, + ACTIONS(6734), 1, + anon_sym_AMP_AMP, + ACTIONS(6736), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6742), 1, + sym_binary_ampersand, + STATE(3236), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4683), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4685), 34, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, + ACTIONS(6718), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6724), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(6728), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [64838] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1255), 1, - anon_sym_COLON, - ACTIONS(5522), 1, - anon_sym_COLON_COLON, - STATE(2446), 1, - aux_sym_constant_repeat1, - STATE(3226), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4547), 8, - anon_sym_DOT_DOT, + ACTIONS(6712), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(4549), 36, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6722), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6738), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6740), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6440), 16, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [64906] = 9, + [65662] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(615), 1, - sym__string_literal_start, - ACTIONS(6734), 1, - anon_sym_COLON, - STATE(3196), 1, - aux_sym_chained_string_repeat1, - STATE(3227), 1, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6714), 1, + anon_sym_PIPE, + ACTIONS(6716), 1, + anon_sym_CARET, + ACTIONS(6720), 1, + anon_sym_EQ_EQ, + ACTIONS(6726), 1, + anon_sym_AMP_STAR, + ACTIONS(6730), 1, + anon_sym_DOT, + ACTIONS(6742), 1, + sym_binary_ampersand, + STATE(3237), 1, sym_heredoc_body, - STATE(3448), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6718), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6728), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5817), 4, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(133), 35, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6722), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6738), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6740), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5815), 20, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [64976] = 7, + [65748] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6453), 1, + ACTIONS(6539), 1, sym__start_of_index_operator, - ACTIONS(6653), 1, + ACTIONS(6726), 1, + anon_sym_AMP_STAR, + ACTIONS(6730), 1, anon_sym_DOT, - STATE(3228), 1, + ACTIONS(6742), 1, + sym_binary_ampersand, + STATE(3238), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6004), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6002), 38, - sym__line_break, + ACTIONS(6718), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6728), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6738), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6740), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6263), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6261), 25, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -387177,15 +392143,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -387193,50 +392156,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [65042] = 8, + [65826] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(6736), 1, - anon_sym_DASH_GT, - STATE(3229), 1, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6726), 1, + anon_sym_AMP_STAR, + ACTIONS(6730), 1, + anon_sym_DOT, + STATE(3239), 1, sym_heredoc_body, - STATE(9712), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(6728), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6738), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6740), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5869), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 35, + ACTIONS(5867), 28, sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -387248,218 +392212,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_elsif, anon_sym_else, - [65110] = 5, + anon_sym_when, + anon_sym_in, + [65900] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3230), 1, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6714), 1, + anon_sym_PIPE, + ACTIONS(6716), 1, + anon_sym_CARET, + ACTIONS(6726), 1, + anon_sym_AMP_STAR, + ACTIONS(6730), 1, + anon_sym_DOT, + ACTIONS(6742), 1, + sym_binary_ampersand, + STATE(3240), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4631), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4633), 38, - sym__start_of_index_operator, + ACTIONS(6718), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6728), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6738), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6740), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6134), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6132), 24, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [65172] = 25, + [65982] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6671), 1, + ACTIONS(6063), 1, anon_sym_DOT_DOT, - ACTIONS(6673), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6677), 1, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6714), 1, anon_sym_PIPE, - ACTIONS(6679), 1, + ACTIONS(6716), 1, anon_sym_CARET, - ACTIONS(6683), 1, + ACTIONS(6720), 1, anon_sym_EQ_EQ, - ACTIONS(6689), 1, + ACTIONS(6726), 1, anon_sym_AMP_STAR, - ACTIONS(6693), 1, + ACTIONS(6730), 1, anon_sym_DOT, - ACTIONS(6695), 1, - anon_sym_QMARK, - ACTIONS(6697), 1, + ACTIONS(6734), 1, anon_sym_AMP_AMP, - ACTIONS(6699), 1, + ACTIONS(6736), 1, anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, - sym__start_of_index_operator, - ACTIONS(6707), 1, + ACTIONS(6742), 1, sym_binary_ampersand, - ACTIONS(6738), 1, - anon_sym_COMMA, - STATE(3231), 1, + STATE(3241), 1, sym_heredoc_body, - STATE(3285), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6681), 2, + ACTIONS(6718), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6687), 2, + ACTIONS(6724), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, + ACTIONS(6728), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, + ACTIONS(6712), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6685), 4, + ACTIONS(6722), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6703), 4, + ACTIONS(6738), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6705), 4, + ACTIONS(6740), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5570), 12, + ACTIONS(6061), 16, sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_end, - anon_sym_do, - anon_sym_else, - [65274] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(641), 1, - sym__start_of_brace_block, - ACTIONS(6719), 1, - anon_sym_do, - STATE(3232), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(4495), 2, - sym_do_end_block, - sym_brace_block, - ACTIONS(5512), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5510), 35, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [65342] = 7, + [66076] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6738), 1, - anon_sym_COMMA, - STATE(3233), 1, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6730), 1, + anon_sym_DOT, + STATE(3242), 1, sym_heredoc_body, - STATE(3285), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(6152), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -387467,11 +392379,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5570), 37, + ACTIONS(6150), 38, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -387483,12 +392392,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -387504,17 +392414,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_elsif, anon_sym_else, - [65408] = 5, + anon_sym_when, + anon_sym_in, + [66142] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3234), 1, + ACTIONS(661), 1, + sym__start_of_brace_block, + ACTIONS(6805), 1, + anon_sym_do, + STATE(3243), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4655), 9, + STATE(3651), 2, + sym_do_end_block, + sym_brace_block, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -387523,8 +392442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4657), 38, + ACTIONS(5551), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -387538,14 +392456,11 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -387563,15 +392478,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [65470] = 5, + [66210] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3235), 1, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6730), 1, + anon_sym_DOT, + STATE(3244), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4635), 9, + ACTIONS(6156), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -387579,10 +392498,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4637), 38, - sym__start_of_index_operator, + ACTIONS(6154), 38, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -387592,17 +392509,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -387616,149 +392533,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [65532] = 11, + [66276] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6592), 1, - anon_sym_LBRACK, - ACTIONS(6594), 1, - anon_sym_STAR, - ACTIONS(6598), 1, - anon_sym_DOT, - ACTIONS(6600), 1, - anon_sym_QMARK, - ACTIONS(6725), 1, + ACTIONS(6047), 1, + anon_sym_DOT_DOT, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6714), 1, anon_sym_PIPE, - STATE(3211), 1, - aux_sym_union_type_repeat1, - STATE(3236), 1, + ACTIONS(6716), 1, + anon_sym_CARET, + ACTIONS(6720), 1, + anon_sym_EQ_EQ, + ACTIONS(6726), 1, + anon_sym_AMP_STAR, + ACTIONS(6730), 1, + anon_sym_DOT, + ACTIONS(6742), 1, + sym_binary_ampersand, + STATE(3245), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4639), 7, - anon_sym_DOT_DOT, + ACTIONS(6718), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6724), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6728), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6712), 3, anon_sym_LT, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4641), 34, - sym__start_of_index_operator, + ACTIONS(6722), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6738), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6740), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6045), 18, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [65606] = 5, + [66366] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3237), 1, + ACTIONS(6215), 1, + anon_sym_DOT_DOT, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6714), 1, + anon_sym_PIPE, + ACTIONS(6716), 1, + anon_sym_CARET, + ACTIONS(6720), 1, + anon_sym_EQ_EQ, + ACTIONS(6726), 1, + anon_sym_AMP_STAR, + ACTIONS(6730), 1, + anon_sym_DOT, + ACTIONS(6734), 1, + anon_sym_AMP_AMP, + ACTIONS(6742), 1, + sym_binary_ampersand, + STATE(3246), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4643), 9, - anon_sym_DOT_DOT, + ACTIONS(6718), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6724), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6728), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6712), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4645), 38, - sym__start_of_index_operator, + ACTIONS(6722), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6738), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6740), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6213), 17, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [65668] = 5, + [66458] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3238), 1, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6633), 1, + anon_sym_STAR, + ACTIONS(6635), 1, + anon_sym_DOT, + ACTIONS(6637), 1, + anon_sym_QMARK, + ACTIONS(6701), 1, + anon_sym_PIPE, + STATE(3205), 1, + aux_sym_union_type_repeat1, + STATE(3247), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4627), 9, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4629), 38, + ACTIONS(4650), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -387772,14 +392722,11 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -387790,24 +392737,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [65730] = 6, + [66532] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3239), 1, - sym_heredoc_body, - STATE(3309), 1, + STATE(3205), 1, aux_sym_union_type_repeat1, + STATE(3248), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -387817,7 +392763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 37, + ACTIONS(4629), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -387834,8 +392780,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, anon_sym_CARET, @@ -387855,20 +392801,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [65794] = 7, + [66596] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6740), 1, - sym__string_literal_start, - STATE(3622), 1, - sym_string, + ACTIONS(6807), 1, + anon_sym_COMMA, + STATE(3249), 1, + sym_heredoc_body, + STATE(3251), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3240), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5499), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -387877,8 +392822,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5497), 36, + ACTIONS(5587), 37, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -387897,7 +392843,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -387913,91 +392858,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_else, - [65860] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6631), 1, - anon_sym_DOT_DOT, - ACTIONS(6633), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6637), 1, - anon_sym_PIPE, - ACTIONS(6639), 1, - anon_sym_CARET, - ACTIONS(6643), 1, - anon_sym_EQ_EQ, - ACTIONS(6649), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, - anon_sym_DOT, - ACTIONS(6655), 1, - anon_sym_QMARK, - ACTIONS(6657), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6665), 1, - sym_binary_ampersand, - STATE(3241), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6641), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6647), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6651), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6635), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6645), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6661), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6663), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6230), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [65958] = 5, + [66662] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3242), 1, + ACTIONS(6809), 1, + anon_sym_COMMA, + STATE(3250), 1, sym_heredoc_body, + STATE(3252), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4659), 9, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -388006,8 +392881,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4661), 38, + ACTIONS(5631), 37, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -388018,17 +392894,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -388042,31 +392917,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [66020] = 6, + [66728] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6743), 1, - anon_sym_PIPE, + ACTIONS(6809), 1, + anon_sym_COMMA, + STATE(3251), 1, + sym_heredoc_body, + STATE(3280), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3243), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 37, + ACTIONS(5631), 37, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -388077,16 +392953,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -388100,39 +392976,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [66084] = 11, + [66794] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6746), 1, - anon_sym_LBRACK, - ACTIONS(6748), 1, - anon_sym_STAR, - ACTIONS(6750), 1, - anon_sym_PIPE, - ACTIONS(6752), 1, - anon_sym_DOT, - ACTIONS(6754), 1, - anon_sym_QMARK, - STATE(3244), 1, + ACTIONS(6811), 1, + anon_sym_COMMA, + STATE(3252), 1, sym_heredoc_body, - STATE(3309), 1, - aux_sym_union_type_repeat1, + STATE(3280), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4609), 34, + anon_sym_DOT, + ACTIONS(5637), 37, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -388143,13 +393012,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -388161,141 +393032,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [66158] = 11, + [66860] = 25, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(6746), 1, - anon_sym_LBRACK, + anon_sym_DOT_DOT, ACTIONS(6748), 1, - anon_sym_STAR, - ACTIONS(6750), 1, - anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, ACTIONS(6752), 1, - anon_sym_DOT, + anon_sym_PIPE, ACTIONS(6754), 1, + anon_sym_CARET, + ACTIONS(6758), 1, + anon_sym_EQ_EQ, + ACTIONS(6764), 1, + anon_sym_AMP_STAR, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6770), 1, anon_sym_QMARK, - STATE(3245), 1, + ACTIONS(6772), 1, + anon_sym_AMP_AMP, + ACTIONS(6774), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6776), 1, + sym__start_of_index_operator, + ACTIONS(6782), 1, + sym_binary_ampersand, + ACTIONS(6807), 1, + anon_sym_COMMA, + STATE(3251), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3253), 1, sym_heredoc_body, - STATE(3309), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, - anon_sym_DOT_DOT, + ACTIONS(6756), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6762), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6750), 3, anon_sym_LT, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 34, - sym__start_of_index_operator, + ACTIONS(6760), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6780), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + ACTIONS(5587), 12, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [66232] = 5, + [66962] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3246), 1, + ACTIONS(6746), 1, + anon_sym_DOT_DOT, + ACTIONS(6748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6752), 1, + anon_sym_PIPE, + ACTIONS(6754), 1, + anon_sym_CARET, + ACTIONS(6758), 1, + anon_sym_EQ_EQ, + ACTIONS(6764), 1, + anon_sym_AMP_STAR, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6770), 1, + anon_sym_QMARK, + ACTIONS(6772), 1, + anon_sym_AMP_AMP, + ACTIONS(6774), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6776), 1, + sym__start_of_index_operator, + ACTIONS(6782), 1, + sym_binary_ampersand, + ACTIONS(6809), 1, + anon_sym_COMMA, + STATE(3252), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3254), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, - anon_sym_DOT_DOT, + ACTIONS(6756), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6762), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6750), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6760), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6780), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5631), 12, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [66294] = 5, + [67064] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3247), 1, - sym_heredoc_body, + ACTIONS(6813), 1, + sym__string_literal_start, + STATE(3636), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4647), 9, + STATE(3255), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5534), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -388304,8 +393213,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4649), 38, + ACTIONS(5532), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -388316,17 +393226,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -388340,21 +393249,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [66356] = 6, + anon_sym_do, + [67130] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6406), 1, - anon_sym_COLON, - STATE(3248), 1, + ACTIONS(6816), 1, + anon_sym_of, + STATE(3256), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5725), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -388363,7 +393269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 38, + ACTIONS(5721), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -388402,15 +393308,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [66420] = 5, + [67194] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3249), 1, + ACTIONS(6818), 1, + anon_sym_EQ, + STATE(3257), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5648), 8, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -388419,7 +393327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5646), 39, + ACTIONS(5761), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -388439,7 +393347,6 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -388459,15 +393366,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [66482] = 5, + [67258] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3250), 1, + STATE(3258), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4619), 9, + ACTIONS(4680), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -388477,7 +393384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4621), 38, + ACTIONS(4682), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -388516,21 +393423,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [66544] = 8, + [67320] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(6756), 1, - anon_sym_DASH_GT, - STATE(3251), 1, + ACTIONS(5719), 1, + anon_sym_LPAREN2, + STATE(3259), 1, sym_heredoc_body, - STATE(10323), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -388539,8 +393442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 35, + ACTIONS(135), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -388555,11 +393457,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -388576,67 +393480,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [66612] = 23, + anon_sym_else, + [67384] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6453), 1, + ACTIONS(6539), 1, sym__start_of_index_operator, - ACTIONS(6631), 1, + ACTIONS(6708), 1, anon_sym_DOT_DOT, - ACTIONS(6633), 1, + ACTIONS(6710), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6637), 1, + ACTIONS(6714), 1, anon_sym_PIPE, - ACTIONS(6639), 1, + ACTIONS(6716), 1, anon_sym_CARET, - ACTIONS(6643), 1, + ACTIONS(6720), 1, anon_sym_EQ_EQ, - ACTIONS(6649), 1, + ACTIONS(6726), 1, anon_sym_AMP_STAR, - ACTIONS(6653), 1, + ACTIONS(6730), 1, anon_sym_DOT, - ACTIONS(6655), 1, + ACTIONS(6732), 1, anon_sym_QMARK, - ACTIONS(6657), 1, + ACTIONS(6734), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6736), 1, anon_sym_PIPE_PIPE, - ACTIONS(6665), 1, + ACTIONS(6742), 1, sym_binary_ampersand, - STATE(3252), 1, + STATE(3260), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6641), 2, + ACTIONS(6718), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6647), 2, + ACTIONS(6724), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6651), 2, + ACTIONS(6728), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6635), 3, + ACTIONS(6712), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6645), 4, + ACTIONS(6722), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6661), 4, + ACTIONS(6738), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6663), 4, + ACTIONS(6740), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6758), 14, + ACTIONS(6820), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -388651,67 +393556,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [66710] = 23, + [67482] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6453), 1, + ACTIONS(6539), 1, sym__start_of_index_operator, - ACTIONS(6631), 1, + ACTIONS(6708), 1, anon_sym_DOT_DOT, - ACTIONS(6633), 1, + ACTIONS(6710), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6637), 1, + ACTIONS(6714), 1, anon_sym_PIPE, - ACTIONS(6639), 1, + ACTIONS(6716), 1, anon_sym_CARET, - ACTIONS(6643), 1, + ACTIONS(6720), 1, anon_sym_EQ_EQ, - ACTIONS(6649), 1, + ACTIONS(6726), 1, anon_sym_AMP_STAR, - ACTIONS(6653), 1, + ACTIONS(6730), 1, anon_sym_DOT, - ACTIONS(6655), 1, + ACTIONS(6732), 1, anon_sym_QMARK, - ACTIONS(6657), 1, + ACTIONS(6734), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6736), 1, anon_sym_PIPE_PIPE, - ACTIONS(6665), 1, + ACTIONS(6742), 1, sym_binary_ampersand, - STATE(3253), 1, + STATE(3261), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6641), 2, + ACTIONS(6718), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6647), 2, + ACTIONS(6724), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6651), 2, + ACTIONS(6728), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6635), 3, + ACTIONS(6712), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6645), 4, + ACTIONS(6722), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6661), 4, + ACTIONS(6738), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6663), 4, + ACTIONS(6740), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6760), 14, + ACTIONS(6822), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -388726,17 +393631,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [66808] = 6, + [67580] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6762), 1, - sym_regex_modifier, - STATE(3254), 1, + ACTIONS(603), 1, + sym__start_of_brace_block, + ACTIONS(6824), 1, + anon_sym_do, + STATE(3262), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + STATE(4385), 2, + sym_do_end_block, + sym_brace_block, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -388745,9 +393655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 38, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5551), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -388758,15 +393666,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -388782,19 +393687,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [66872] = 6, + anon_sym_when, + anon_sym_in, + [67648] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6764), 1, - anon_sym_of, - STATE(3255), 1, + STATE(3263), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5702), 8, + ACTIONS(4672), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -388803,9 +393708,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5698), 38, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4674), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -388816,17 +393720,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -388840,30 +393744,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [66936] = 6, + anon_sym_when, + anon_sym_in, + [67710] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6766), 1, - anon_sym_LPAREN2, - STATE(3256), 1, + ACTIONS(6631), 1, + anon_sym_LBRACK, + ACTIONS(6633), 1, + anon_sym_STAR, + ACTIONS(6635), 1, + anon_sym_DOT, + ACTIONS(6637), 1, + anon_sym_QMARK, + ACTIONS(6701), 1, + anon_sym_PIPE, + STATE(3205), 1, + aux_sym_union_type_repeat1, + STATE(3264), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(4684), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4599), 37, - sym__line_break, + ACTIONS(4686), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -388874,19 +393787,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -388897,114 +393805,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [67000] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6631), 1, - anon_sym_DOT_DOT, - ACTIONS(6633), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6637), 1, - anon_sym_PIPE, - ACTIONS(6639), 1, - anon_sym_CARET, - ACTIONS(6643), 1, - anon_sym_EQ_EQ, - ACTIONS(6649), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, - anon_sym_DOT, - ACTIONS(6655), 1, - anon_sym_QMARK, - ACTIONS(6657), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, anon_sym_PIPE_PIPE, - ACTIONS(6665), 1, - sym_binary_ampersand, - STATE(3257), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6641), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6647), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6651), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6635), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6645), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6661), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6663), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6256), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [67098] = 11, + [67784] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6768), 1, - anon_sym_LBRACK, - ACTIONS(6770), 1, - anon_sym_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE, - ACTIONS(6774), 1, - anon_sym_DOT, - ACTIONS(6776), 1, - anon_sym_QMARK, - STATE(3258), 1, + STATE(3265), 1, sym_heredoc_body, - STATE(3288), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 7, + ACTIONS(4708), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4595), 34, - sym__line_break, + ACTIONS(4710), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -389015,17 +393840,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -389036,21 +393861,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [67172] = 7, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [67846] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6778), 1, - anon_sym_COMMA, - STATE(3259), 1, + STATE(3266), 1, sym_heredoc_body, - STATE(3261), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(4712), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -389059,9 +393885,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 37, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4714), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -389072,16 +393897,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -389095,21 +393921,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [67238] = 7, + anon_sym_when, + anon_sym_in, + [67908] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6780), 1, - anon_sym_COMMA, - STATE(3260), 1, + STATE(3267), 1, sym_heredoc_body, - STATE(3262), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(4720), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -389118,9 +393942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 37, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4722), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -389131,16 +393954,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -389154,21 +393978,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [67304] = 7, + anon_sym_when, + anon_sym_in, + [67970] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6780), 1, - anon_sym_COMMA, - STATE(3261), 1, + ACTIONS(6826), 1, + anon_sym_of, + STATE(3268), 1, sym_heredoc_body, - STATE(3295), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5733), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -389177,7 +394001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 37, + ACTIONS(5729), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -389198,6 +394022,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -389215,30 +394040,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [67370] = 7, + [68034] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6782), 1, - anon_sym_COMMA, - STATE(3262), 1, + ACTIONS(6784), 1, + anon_sym_PIPE, + ACTIONS(6789), 1, + anon_sym_LBRACK, + ACTIONS(6791), 1, + anon_sym_STAR, + ACTIONS(6793), 1, + anon_sym_DOT, + ACTIONS(6795), 1, + anon_sym_QMARK, + STATE(3222), 1, + aux_sym_union_type_repeat1, + STATE(3269), 1, sym_heredoc_body, - STATE(3295), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5562), 37, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4650), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -389249,15 +394079,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -389269,257 +394097,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [67436] = 25, + anon_sym_when, + anon_sym_in, + [68108] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6671), 1, - anon_sym_DOT_DOT, - ACTIONS(6673), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6677), 1, + ACTIONS(6784), 1, anon_sym_PIPE, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6683), 1, - anon_sym_EQ_EQ, - ACTIONS(6689), 1, - anon_sym_AMP_STAR, - ACTIONS(6693), 1, + ACTIONS(6789), 1, + anon_sym_LBRACK, + ACTIONS(6791), 1, + anon_sym_STAR, + ACTIONS(6793), 1, anon_sym_DOT, - ACTIONS(6695), 1, + ACTIONS(6795), 1, anon_sym_QMARK, - ACTIONS(6697), 1, - anon_sym_AMP_AMP, - ACTIONS(6699), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, - sym__start_of_index_operator, - ACTIONS(6707), 1, - sym_binary_ampersand, - ACTIONS(6778), 1, - anon_sym_COMMA, - STATE(3261), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3263), 1, + STATE(3222), 1, + aux_sym_union_type_repeat1, + STATE(3270), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6681), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6687), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, + ACTIONS(4619), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6685), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6703), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6705), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5570), 12, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_do, - anon_sym_else, - [67538] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6671), 1, - anon_sym_DOT_DOT, - ACTIONS(6673), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6677), 1, - anon_sym_PIPE, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6683), 1, - anon_sym_EQ_EQ, - ACTIONS(6689), 1, anon_sym_AMP_STAR, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6695), 1, - anon_sym_QMARK, - ACTIONS(6697), 1, - anon_sym_AMP_AMP, - ACTIONS(6699), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, + anon_sym_EQ, + ACTIONS(4621), 34, sym__start_of_index_operator, - ACTIONS(6707), 1, - sym_binary_ampersand, - ACTIONS(6780), 1, - anon_sym_COMMA, - STATE(3262), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3264), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6681), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6687), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6685), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6703), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6705), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5585), 12, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_do, - anon_sym_else, - [67640] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6631), 1, - anon_sym_DOT_DOT, - ACTIONS(6633), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - ACTIONS(6637), 1, - anon_sym_PIPE, - ACTIONS(6639), 1, + anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, - ACTIONS(6643), 1, - anon_sym_EQ_EQ, - ACTIONS(6649), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, - anon_sym_DOT, - ACTIONS(6655), 1, - anon_sym_QMARK, - ACTIONS(6657), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6665), 1, - sym_binary_ampersand, - STATE(3265), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6641), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6647), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6651), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6635), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6645), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6661), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6663), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6784), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [67738] = 9, + [68182] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(641), 1, + ACTIONS(603), 1, sym__start_of_brace_block, - ACTIONS(6719), 1, + ACTIONS(6824), 1, anon_sym_do, - STATE(3266), 1, + STATE(3271), 1, sym_heredoc_body, - STATE(4434), 1, + STATE(4365), 1, sym_do_end_block, - STATE(4440), 1, + STATE(4366), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(5570), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -389528,7 +394191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 35, + ACTIONS(5568), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -389564,15 +394227,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [67808] = 5, + [68252] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3267), 1, + STATE(3272), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5520), 9, + ACTIONS(5559), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -389582,7 +394245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_COLON2, - ACTIONS(5518), 38, + ACTIONS(5557), 38, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -389621,109 +394284,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [67870] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6242), 1, - anon_sym_DOT_DOT, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6637), 1, - anon_sym_PIPE, - ACTIONS(6639), 1, - anon_sym_CARET, - ACTIONS(6643), 1, - anon_sym_EQ_EQ, - ACTIONS(6649), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, - anon_sym_DOT, - ACTIONS(6657), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6665), 1, - sym_binary_ampersand, - STATE(3268), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6641), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6647), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6651), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6635), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6645), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6661), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6663), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6240), 16, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [67964] = 11, + [68314] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6768), 1, - anon_sym_LBRACK, - ACTIONS(6770), 1, - anon_sym_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE, - ACTIONS(6774), 1, - anon_sym_DOT, - ACTIONS(6776), 1, - anon_sym_QMARK, - STATE(3269), 1, + STATE(3273), 1, sym_heredoc_body, - STATE(3288), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(5708), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4605), 34, + anon_sym_DOT, + ACTIONS(5706), 39, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -389736,14 +394316,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -389755,29 +394336,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [68038] = 11, + anon_sym_do, + anon_sym_else, + [68376] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6768), 1, + ACTIONS(6631), 1, anon_sym_LBRACK, - ACTIONS(6770), 1, + ACTIONS(6633), 1, anon_sym_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE, - ACTIONS(6774), 1, + ACTIONS(6635), 1, anon_sym_DOT, - ACTIONS(6776), 1, + ACTIONS(6637), 1, anon_sym_QMARK, - STATE(3270), 1, - sym_heredoc_body, - STATE(3288), 1, + ACTIONS(6701), 1, + anon_sym_PIPE, + STATE(3205), 1, aux_sym_union_type_repeat1, + STATE(3274), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4611), 7, + ACTIONS(4668), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -389785,8 +394369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4613), 34, - sym__line_break, + ACTIONS(4670), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -389797,16 +394380,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -389820,98 +394400,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [68112] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6631), 1, - anon_sym_DOT_DOT, - ACTIONS(6633), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6637), 1, - anon_sym_PIPE, - ACTIONS(6639), 1, - anon_sym_CARET, - ACTIONS(6643), 1, - anon_sym_EQ_EQ, - ACTIONS(6649), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, - anon_sym_DOT, - ACTIONS(6655), 1, - anon_sym_QMARK, - ACTIONS(6657), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6665), 1, - sym_binary_ampersand, - STATE(3271), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6641), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6647), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6651), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6635), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6645), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6661), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6663), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6786), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [68210] = 9, + [68450] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(641), 1, + ACTIONS(603), 1, sym__start_of_brace_block, - ACTIONS(6719), 1, + ACTIONS(6824), 1, anon_sym_do, - STATE(3272), 1, + STATE(3275), 1, sym_heredoc_body, - STATE(4441), 1, + STATE(4459), 1, sym_do_end_block, - STATE(4442), 1, + STATE(4463), 1, sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -389920,7 +394429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 35, + ACTIONS(5545), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -389956,17 +394465,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [68280] = 6, + [68520] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6788), 1, - anon_sym_LPAREN2, - STATE(3273), 1, + ACTIONS(603), 1, + sym__start_of_brace_block, + ACTIONS(6824), 1, + anon_sym_do, + STATE(3276), 1, sym_heredoc_body, + STATE(4482), 1, + sym_do_end_block, + STATE(4489), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -389975,8 +394490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4599), 37, + ACTIONS(5545), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -389990,13 +394504,11 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -390014,35 +394526,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [68344] = 11, + [68590] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6746), 1, - anon_sym_LBRACK, - ACTIONS(6748), 1, - anon_sym_STAR, - ACTIONS(6750), 1, - anon_sym_PIPE, - ACTIONS(6752), 1, - anon_sym_DOT, - ACTIONS(6754), 1, - anon_sym_QMARK, - STATE(3274), 1, + ACTIONS(6828), 1, + anon_sym_COMMA, + STATE(3277), 1, sym_heredoc_body, - STATE(3309), 1, - aux_sym_union_type_repeat1, + STATE(3280), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 7, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4595), 34, + anon_sym_DOT, + ACTIONS(5637), 37, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -390053,13 +394560,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -390071,23 +394580,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [68418] = 6, + [68656] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3275), 1, + STATE(3278), 1, sym_heredoc_body, - STATE(3288), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(4638), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -390097,8 +394603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 37, - sym__line_break, + ACTIONS(4640), 38, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -390109,19 +394615,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -390135,21 +394637,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [68482] = 8, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [68718] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(591), 1, - sym__start_of_brace_block, - STATE(3276), 1, + STATE(3279), 1, sym_heredoc_body, - STATE(3739), 1, - sym_brace_block, - STATE(3788), 1, - sym_do_end_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(5574), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -390158,7 +394659,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 36, + anon_sym_COLON2, + ACTIONS(5572), 38, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -390170,6 +394673,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + sym__string_literal_start, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -390187,102 +394691,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [68550] = 23, + [68780] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6631), 1, - anon_sym_DOT_DOT, - ACTIONS(6633), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6637), 1, - anon_sym_PIPE, - ACTIONS(6639), 1, - anon_sym_CARET, - ACTIONS(6643), 1, - anon_sym_EQ_EQ, - ACTIONS(6649), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, - anon_sym_DOT, - ACTIONS(6655), 1, - anon_sym_QMARK, - ACTIONS(6657), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6665), 1, - sym_binary_ampersand, - STATE(3277), 1, - sym_heredoc_body, + ACTIONS(6830), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6641), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6647), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6651), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6635), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6645), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6661), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6663), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6790), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [68648] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6653), 1, - anon_sym_DOT, - STATE(3278), 1, + STATE(3280), 2, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5895), 7, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -390290,8 +394718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5893), 38, + anon_sym_DOT, + ACTIONS(5694), 37, sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -390303,13 +394734,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -390325,19 +394755,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_elsif, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [68714] = 5, + [68844] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3279), 1, + STATE(3281), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4671), 9, + ACTIONS(4656), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -390347,7 +394775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4673), 38, + ACTIONS(4658), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -390386,21 +394814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [68776] = 8, + [68906] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(495), 1, - sym__string_literal_start, - STATE(3280), 1, + STATE(3282), 1, sym_heredoc_body, - STATE(3314), 1, - aux_sym_chained_string_repeat1, - STATE(3781), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(4692), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -390409,9 +394831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 36, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4694), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -390422,16 +394843,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -390445,95 +394867,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [68844] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6631), 1, - anon_sym_DOT_DOT, - ACTIONS(6633), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6637), 1, - anon_sym_PIPE, - ACTIONS(6639), 1, - anon_sym_CARET, - ACTIONS(6643), 1, - anon_sym_EQ_EQ, - ACTIONS(6649), 1, - anon_sym_AMP_STAR, - ACTIONS(6653), 1, - anon_sym_DOT, - ACTIONS(6655), 1, - anon_sym_QMARK, - ACTIONS(6657), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6665), 1, - sym_binary_ampersand, - STATE(3281), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6641), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6647), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6651), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6635), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6645), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6661), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6663), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6010), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [68942] = 7, + [68968] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6792), 1, - anon_sym_COMMA, - STATE(3282), 1, + ACTIONS(1355), 1, + sym__string_literal_start, + STATE(3283), 1, sym_heredoc_body, - STATE(3289), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(3284), 1, + aux_sym_chained_string_repeat1, + STATE(3655), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5541), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -390542,9 +394894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 37, + ACTIONS(5539), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -390563,6 +394914,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -390578,17 +394930,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_else, - [69008] = 5, + [69036] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3283), 1, - sym_heredoc_body, + ACTIONS(6833), 1, + sym__string_literal_start, + STATE(3655), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4623), 9, + STATE(3284), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5534), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -390597,8 +394953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4625), 38, + ACTIONS(5532), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -390609,17 +394965,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -390633,25 +394989,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_else, - anon_sym_when, - anon_sym_in, - [69070] = 8, + [69102] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(6736), 1, - anon_sym_DASH_GT, - STATE(3284), 1, + ACTIONS(6836), 1, + anon_sym_of, + STATE(3285), 1, sym_heredoc_body, - STATE(9712), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(5714), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -390660,9 +395009,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 35, + ACTIONS(5710), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -390681,6 +395030,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -390696,20 +395046,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_else, - [69138] = 7, + [69166] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6792), 1, - anon_sym_COMMA, - STATE(3285), 1, + STATE(3286), 1, sym_heredoc_body, - STATE(3295), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(4688), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -390718,9 +395065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 37, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4690), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -390731,16 +395077,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -390754,69 +395101,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [69204] = 23, + anon_sym_when, + anon_sym_in, + [69228] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6631), 1, + ACTIONS(5977), 1, anon_sym_DOT_DOT, - ACTIONS(6633), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6637), 1, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6714), 1, anon_sym_PIPE, - ACTIONS(6639), 1, + ACTIONS(6716), 1, anon_sym_CARET, - ACTIONS(6643), 1, + ACTIONS(6720), 1, anon_sym_EQ_EQ, - ACTIONS(6649), 1, + ACTIONS(6726), 1, anon_sym_AMP_STAR, - ACTIONS(6653), 1, + ACTIONS(6730), 1, anon_sym_DOT, - ACTIONS(6655), 1, - anon_sym_QMARK, - ACTIONS(6657), 1, + ACTIONS(6734), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6736), 1, anon_sym_PIPE_PIPE, - ACTIONS(6665), 1, + ACTIONS(6742), 1, sym_binary_ampersand, - STATE(3286), 1, + STATE(3287), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6641), 2, + ACTIONS(6718), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6647), 2, + ACTIONS(6724), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6651), 2, + ACTIONS(6728), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6635), 3, + ACTIONS(6712), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6645), 4, + ACTIONS(6722), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6661), 4, + ACTIONS(6738), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6663), 4, + ACTIONS(6740), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6794), 14, + ACTIONS(5975), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -390826,20 +395171,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_QMARK, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [69302] = 5, + [69322] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3287), 1, + ACTIONS(6838), 1, + anon_sym_of, + STATE(3288), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5536), 9, + ACTIONS(5651), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -390848,8 +395197,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_COLON2, - ACTIONS(5534), 38, + ACTIONS(5647), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -390861,13 +395210,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -390880,37 +395231,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [69364] = 7, + [69386] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6772), 1, - anon_sym_PIPE, - STATE(3288), 1, + STATE(3289), 1, sym_heredoc_body, - STATE(3292), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(4704), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4584), 37, - sym__line_break, + ACTIONS(4706), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -390921,15 +395265,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -390947,48 +395289,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [69430] = 7, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [69448] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6796), 1, - anon_sym_COMMA, - STATE(3289), 1, + ACTIONS(5981), 1, + anon_sym_DOT_DOT, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6714), 1, + anon_sym_PIPE, + ACTIONS(6716), 1, + anon_sym_CARET, + ACTIONS(6720), 1, + anon_sym_EQ_EQ, + ACTIONS(6726), 1, + anon_sym_AMP_STAR, + ACTIONS(6730), 1, + anon_sym_DOT, + ACTIONS(6734), 1, + anon_sym_AMP_AMP, + ACTIONS(6736), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6742), 1, + sym_binary_ampersand, + STATE(3290), 1, sym_heredoc_body, - STATE(3295), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, - anon_sym_DOT_DOT, + ACTIONS(6718), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6724), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6728), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6712), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5562), 37, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6722), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6738), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6740), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5979), 16, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [69542] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6708), 1, + anon_sym_DOT_DOT, + ACTIONS(6710), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6714), 1, + anon_sym_PIPE, + ACTIONS(6716), 1, + anon_sym_CARET, + ACTIONS(6720), 1, + anon_sym_EQ_EQ, + ACTIONS(6726), 1, + anon_sym_AMP_STAR, + ACTIONS(6730), 1, + anon_sym_DOT, + ACTIONS(6732), 1, + anon_sym_QMARK, + ACTIONS(6734), 1, + anon_sym_AMP_AMP, + ACTIONS(6736), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6742), 1, + sym_binary_ampersand, + STATE(3291), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6718), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6724), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6728), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6712), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6722), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6738), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6740), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6840), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [69640] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1269), 1, + anon_sym_COLON, + ACTIONS(5579), 1, + anon_sym_COLON_COLON, + STATE(2473), 1, + aux_sym_constant_repeat1, + STATE(3292), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4584), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(4586), 36, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -391001,20 +395493,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [69496] = 5, + anon_sym_when, + anon_sym_in, + [69708] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3290), 1, + ACTIONS(627), 1, + sym__string_literal_start, + ACTIONS(6842), 1, + anon_sym_COLON, + STATE(3293), 1, sym_heredoc_body, + STATE(3295), 1, + aux_sym_chained_string_repeat1, + STATE(3514), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5654), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -391023,8 +395526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5652), 39, - sym__line_break, + ACTIONS(135), 35, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -391036,15 +395538,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -391057,28 +395555,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [69558] = 8, + anon_sym_when, + anon_sym_in, + [69778] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(591), 1, + ACTIONS(661), 1, sym__start_of_brace_block, - ACTIONS(6798), 1, + STATE(3294), 1, + sym_heredoc_body, + STATE(3711), 1, + sym_do_end_block, + STATE(3712), 1, + sym_brace_block, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5570), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5568), 36, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - STATE(3291), 1, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [69846] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(627), 1, + sym__string_literal_start, + STATE(3295), 1, sym_heredoc_body, + STATE(3299), 1, + aux_sym_chained_string_repeat1, + STATE(3514), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3620), 2, + ACTIONS(5541), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5539), 36, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [69914] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(661), 1, + sym__start_of_brace_block, + STATE(3296), 1, + sym_heredoc_body, + STATE(3719), 1, sym_do_end_block, + STATE(3720), 1, sym_brace_block, - ACTIONS(5512), 8, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -391087,7 +395705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 35, + ACTIONS(5545), 36, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -391120,31 +395738,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [69626] = 6, + [69982] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6800), 1, - anon_sym_PIPE, + ACTIONS(661), 1, + sym__start_of_brace_block, + STATE(3297), 1, + sym_heredoc_body, + STATE(3721), 1, + sym_do_end_block, + STATE(3722), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3292), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 37, - sym__line_break, + ACTIONS(5545), 36, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -391155,19 +395776,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -391181,67 +395797,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [69690] = 23, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [70050] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6453), 1, + ACTIONS(6539), 1, sym__start_of_index_operator, - ACTIONS(6631), 1, + ACTIONS(6708), 1, anon_sym_DOT_DOT, - ACTIONS(6633), 1, + ACTIONS(6710), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6637), 1, + ACTIONS(6714), 1, anon_sym_PIPE, - ACTIONS(6639), 1, + ACTIONS(6716), 1, anon_sym_CARET, - ACTIONS(6643), 1, + ACTIONS(6720), 1, anon_sym_EQ_EQ, - ACTIONS(6649), 1, + ACTIONS(6726), 1, anon_sym_AMP_STAR, - ACTIONS(6653), 1, + ACTIONS(6730), 1, anon_sym_DOT, - ACTIONS(6655), 1, + ACTIONS(6732), 1, anon_sym_QMARK, - ACTIONS(6657), 1, + ACTIONS(6734), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6736), 1, anon_sym_PIPE_PIPE, - ACTIONS(6665), 1, + ACTIONS(6742), 1, sym_binary_ampersand, - STATE(3293), 1, + STATE(3298), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6641), 2, + ACTIONS(6718), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6647), 2, + ACTIONS(6724), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6651), 2, + ACTIONS(6728), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6635), 3, + ACTIONS(6712), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6645), 4, + ACTIONS(6722), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6661), 4, + ACTIONS(6738), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6663), 4, + ACTIONS(6740), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6030), 14, + ACTIONS(6092), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -391256,95 +395877,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [69788] = 25, + [70148] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6671), 1, + ACTIONS(6844), 1, + sym__string_literal_start, + STATE(3514), 1, + sym_string, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(3299), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5534), 8, anon_sym_DOT_DOT, - ACTIONS(6673), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6677), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6683), 1, anon_sym_EQ_EQ, - ACTIONS(6689), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6693), 1, anon_sym_DOT, - ACTIONS(6695), 1, - anon_sym_QMARK, - ACTIONS(6697), 1, - anon_sym_AMP_AMP, - ACTIONS(6699), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, + ACTIONS(5532), 36, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(6707), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - ACTIONS(6792), 1, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3289), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3294), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6681), 2, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6687), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [70214] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6847), 1, + anon_sym_of, + STATE(3300), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5739), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6685), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6703), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5735), 38, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6705), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5585), 12, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [69890] = 6, + [70278] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6803), 1, - anon_sym_COMMA, + STATE(3301), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3295), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5713), 8, + ACTIONS(4696), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -391353,9 +396011,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 37, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4698), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -391366,16 +396023,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -391389,19 +396047,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [69954] = 6, + anon_sym_when, + anon_sym_in, + [70340] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6806), 1, - anon_sym_of, - STATE(3296), 1, + ACTIONS(6849), 1, + sym_regex_modifier, + STATE(3302), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5728), 8, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -391410,7 +396070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5724), 38, + ACTIONS(5741), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -391449,67 +396109,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [70018] = 23, + [70404] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6453), 1, + ACTIONS(6539), 1, sym__start_of_index_operator, - ACTIONS(6631), 1, + ACTIONS(6708), 1, anon_sym_DOT_DOT, - ACTIONS(6633), 1, + ACTIONS(6710), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6637), 1, + ACTIONS(6714), 1, anon_sym_PIPE, - ACTIONS(6639), 1, + ACTIONS(6716), 1, anon_sym_CARET, - ACTIONS(6643), 1, + ACTIONS(6720), 1, anon_sym_EQ_EQ, - ACTIONS(6649), 1, + ACTIONS(6726), 1, anon_sym_AMP_STAR, - ACTIONS(6653), 1, + ACTIONS(6730), 1, anon_sym_DOT, - ACTIONS(6655), 1, + ACTIONS(6732), 1, anon_sym_QMARK, - ACTIONS(6657), 1, + ACTIONS(6734), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6736), 1, anon_sym_PIPE_PIPE, - ACTIONS(6665), 1, + ACTIONS(6742), 1, sym_binary_ampersand, - STATE(3297), 1, + STATE(3303), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6641), 2, + ACTIONS(6718), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6647), 2, + ACTIONS(6724), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6651), 2, + ACTIONS(6728), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6635), 3, + ACTIONS(6712), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6645), 4, + ACTIONS(6722), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6661), 4, + ACTIONS(6738), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6663), 4, + ACTIONS(6740), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6032), 14, + ACTIONS(5779), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -391524,21 +396184,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [70116] = 8, + [70502] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(6808), 1, - anon_sym_DASH_GT, - STATE(3298), 1, + STATE(3222), 1, + aux_sym_union_type_repeat1, + STATE(3304), 1, sym_heredoc_body, - STATE(10087), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -391548,8 +396204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4745), 35, - sym__start_of_brace_block, + ACTIONS(4629), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -391563,9 +396218,13 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -391580,21 +396239,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [70184] = 6, + [70566] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6810), 1, - anon_sym_of, - STATE(3299), 1, + ACTIONS(6851), 1, + sym_regex_modifier, + STATE(3305), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5734), 8, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -391603,7 +396261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5730), 38, + ACTIONS(5747), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -391642,35 +396300,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [70248] = 11, + [70630] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6746), 1, - anon_sym_LBRACK, - ACTIONS(6748), 1, - anon_sym_STAR, - ACTIONS(6750), 1, - anon_sym_PIPE, - ACTIONS(6752), 1, - anon_sym_DOT, - ACTIONS(6754), 1, - anon_sym_QMARK, - STATE(3300), 1, + ACTIONS(627), 1, + sym__string_literal_start, + STATE(3295), 1, + aux_sym_chained_string_repeat1, + STATE(3306), 1, sym_heredoc_body, - STATE(3309), 1, - aux_sym_union_type_repeat1, + STATE(3514), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4605), 34, + anon_sym_DOT, + ACTIONS(135), 36, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -391686,8 +396340,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -391699,41 +396353,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [70322] = 11, + [70698] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6746), 1, - anon_sym_LBRACK, - ACTIONS(6748), 1, - anon_sym_STAR, - ACTIONS(6750), 1, + ACTIONS(6853), 1, + anon_sym_of, + STATE(3307), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5757), 8, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(6752), 1, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6754), 1, + ACTIONS(5753), 38, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - STATE(3301), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + [70762] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3308), 1, sym_heredoc_body, - STATE(3309), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4611), 7, + ACTIONS(4700), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4613), 34, + ACTIONS(4702), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -391747,11 +396450,14 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -391762,42 +396468,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [70396] = 11, + [70824] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6768), 1, - anon_sym_LBRACK, - ACTIONS(6770), 1, - anon_sym_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE, - ACTIONS(6774), 1, - anon_sym_DOT, - ACTIONS(6776), 1, - anon_sym_QMARK, - STATE(3288), 1, - aux_sym_union_type_repeat1, - STATE(3302), 1, + ACTIONS(6855), 1, + anon_sym_COMMA, + STATE(3309), 1, sym_heredoc_body, + STATE(3311), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4609), 34, + anon_sym_DOT, + ACTIONS(5587), 37, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -391810,14 +396511,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -391829,111 +396529,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [70470] = 21, + anon_sym_do, + anon_sym_else, + [70890] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5941), 1, + ACTIONS(6857), 1, + anon_sym_COMMA, + STATE(3310), 1, + sym_heredoc_body, + STATE(3312), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5635), 8, anon_sym_DOT_DOT, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6637), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(6639), 1, - anon_sym_CARET, - ACTIONS(6643), 1, anon_sym_EQ_EQ, - ACTIONS(6649), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6653), 1, anon_sym_DOT, - ACTIONS(6657), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6665), 1, + ACTIONS(5631), 37, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - STATE(3303), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6641), 2, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6647), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6651), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(6635), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + [70956] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6857), 1, + anon_sym_COMMA, + STATE(3280), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3311), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5635), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6645), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6661), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5631), 37, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6663), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5939), 16, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_elsif, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [70564] = 11, + [71022] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6768), 1, - anon_sym_LBRACK, - ACTIONS(6770), 1, - anon_sym_STAR, - ACTIONS(6772), 1, - anon_sym_PIPE, - ACTIONS(6774), 1, - anon_sym_DOT, - ACTIONS(6776), 1, - anon_sym_QMARK, - STATE(3288), 1, - aux_sym_union_type_repeat1, - STATE(3304), 1, + ACTIONS(6859), 1, + anon_sym_COMMA, + STATE(3280), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3312), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 34, + anon_sym_DOT, + ACTIONS(5637), 37, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -391946,14 +396688,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -391965,90 +396706,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [70638] = 21, + anon_sym_do, + anon_sym_else, + [71088] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5923), 1, + ACTIONS(6746), 1, anon_sym_DOT_DOT, - ACTIONS(6453), 1, - sym__start_of_index_operator, - ACTIONS(6637), 1, + ACTIONS(6748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6752), 1, anon_sym_PIPE, - ACTIONS(6639), 1, + ACTIONS(6754), 1, anon_sym_CARET, - ACTIONS(6643), 1, + ACTIONS(6758), 1, anon_sym_EQ_EQ, - ACTIONS(6649), 1, + ACTIONS(6764), 1, anon_sym_AMP_STAR, - ACTIONS(6653), 1, + ACTIONS(6768), 1, anon_sym_DOT, - ACTIONS(6657), 1, + ACTIONS(6770), 1, + anon_sym_QMARK, + ACTIONS(6772), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6774), 1, anon_sym_PIPE_PIPE, - ACTIONS(6665), 1, + ACTIONS(6776), 1, + sym__start_of_index_operator, + ACTIONS(6782), 1, sym_binary_ampersand, - STATE(3305), 1, + ACTIONS(6855), 1, + anon_sym_COMMA, + STATE(3311), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3313), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6641), 2, + ACTIONS(6756), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6647), 2, + ACTIONS(6762), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6651), 2, + ACTIONS(6766), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6635), 3, + ACTIONS(6750), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6645), 4, + ACTIONS(6760), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6661), 4, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6663), 4, + ACTIONS(6780), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5921), 16, + ACTIONS(5587), 12, sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_do, + anon_sym_else, + [71190] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6746), 1, + anon_sym_DOT_DOT, + ACTIONS(6748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6752), 1, + anon_sym_PIPE, + ACTIONS(6754), 1, + anon_sym_CARET, + ACTIONS(6758), 1, + anon_sym_EQ_EQ, + ACTIONS(6764), 1, + anon_sym_AMP_STAR, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6770), 1, anon_sym_QMARK, - anon_sym_elsif, + ACTIONS(6772), 1, + anon_sym_AMP_AMP, + ACTIONS(6774), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6776), 1, + sym__start_of_index_operator, + ACTIONS(6782), 1, + sym_binary_ampersand, + ACTIONS(6857), 1, + anon_sym_COMMA, + STATE(3312), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3314), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6756), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6762), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6750), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6760), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6778), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6780), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5631), 12, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [70732] = 5, + [71292] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3306), 1, + STATE(3315), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4667), 9, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -392058,7 +396883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4669), 38, + ACTIONS(4644), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -392097,35 +396922,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [70794] = 11, + [71354] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6592), 1, - anon_sym_LBRACK, - ACTIONS(6594), 1, - anon_sym_STAR, - ACTIONS(6598), 1, - anon_sym_DOT, - ACTIONS(6600), 1, - anon_sym_QMARK, - ACTIONS(6725), 1, - anon_sym_PIPE, - STATE(3211), 1, - aux_sym_union_type_repeat1, - STATE(3307), 1, + ACTIONS(6861), 1, + anon_sym_LPAREN2, + STATE(3316), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4605), 34, + ACTIONS(4644), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -392139,11 +396956,13 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -392154,23 +396973,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [70868] = 6, + [71418] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3211), 1, - aux_sym_union_type_repeat1, - STATE(3308), 1, + STATE(3317), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(4676), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -392180,7 +396998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 37, + ACTIONS(4678), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -392199,6 +397017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, anon_sym_CARET, @@ -392218,28 +397037,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [70932] = 7, + [71480] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6750), 1, - anon_sym_PIPE, - STATE(3243), 1, - aux_sym_union_type_repeat1, - STATE(3309), 1, + STATE(3318), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(4660), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4584), 37, + ACTIONS(4662), 38, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -392256,6 +397072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, anon_sym_end, @@ -392277,30 +397094,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [70998] = 7, + [71542] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6669), 1, - anon_sym_COMMA, - STATE(3310), 1, + ACTIONS(6784), 1, + anon_sym_PIPE, + ACTIONS(6789), 1, + anon_sym_LBRACK, + ACTIONS(6791), 1, + anon_sym_STAR, + ACTIONS(6793), 1, + anon_sym_DOT, + ACTIONS(6795), 1, + anon_sym_QMARK, + STATE(3222), 1, + aux_sym_union_type_repeat1, + STATE(3319), 1, sym_heredoc_body, - STATE(3312), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(4638), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5570), 37, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4640), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -392311,15 +397133,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -392331,24 +397151,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [71064] = 7, + anon_sym_when, + anon_sym_in, + [71616] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6712), 1, + ACTIONS(6744), 1, anon_sym_COMMA, - STATE(3311), 1, - sym_heredoc_body, - STATE(3313), 1, + STATE(3277), 1, aux_sym_argument_list_no_parens_repeat1, + STATE(3320), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -392357,7 +397178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 37, + ACTIONS(5631), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -392395,78 +397216,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [71130] = 7, + [71682] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6712), 1, - anon_sym_COMMA, - STATE(3295), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3312), 1, + ACTIONS(6539), 1, + sym__start_of_index_operator, + ACTIONS(6708), 1, + anon_sym_DOT_DOT, + ACTIONS(6710), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6714), 1, + anon_sym_PIPE, + ACTIONS(6716), 1, + anon_sym_CARET, + ACTIONS(6720), 1, + anon_sym_EQ_EQ, + ACTIONS(6726), 1, + anon_sym_AMP_STAR, + ACTIONS(6730), 1, + anon_sym_DOT, + ACTIONS(6732), 1, + anon_sym_QMARK, + ACTIONS(6734), 1, + anon_sym_AMP_AMP, + ACTIONS(6736), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6742), 1, + sym_binary_ampersand, + STATE(3321), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, - anon_sym_DOT_DOT, + ACTIONS(6718), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6724), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6728), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6712), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5585), 37, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6722), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6738), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6740), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6863), 14, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_elsif, anon_sym_else, - [71196] = 7, + anon_sym_when, + anon_sym_in, + [71780] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6812), 1, - anon_sym_COMMA, - STATE(3295), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3313), 1, + STATE(3322), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(6283), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -392475,7 +397308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 37, + ACTIONS(6281), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -392496,6 +397329,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -392513,21 +397347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [71262] = 8, + [71841] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(495), 1, - sym__string_literal_start, - STATE(3202), 1, - aux_sym_chained_string_repeat1, - STATE(3314), 1, + STATE(3323), 1, sym_heredoc_body, - STATE(3781), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5490), 8, + ACTIONS(5833), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -392536,7 +397364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5488), 36, + ACTIONS(5831), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -392551,6 +397379,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -392573,17 +397402,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [71330] = 6, + anon_sym_else, + [71902] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6814), 1, - sym_regex_modifier, - STATE(3315), 1, + STATE(3324), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(5881), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -392592,7 +397420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 38, + ACTIONS(5879), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -392631,15 +397459,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [71394] = 5, + [71963] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3316), 1, + ACTIONS(479), 1, + sym__start_of_brace_block, + ACTIONS(6865), 1, + anon_sym_do, + STATE(3325), 1, sym_heredoc_body, + STATE(4853), 1, + sym_do_end_block, + STATE(4854), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5830), 8, + ACTIONS(5570), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -392648,9 +397484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5828), 38, + ACTIONS(5568), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -392663,7 +397498,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -392685,17 +397519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [71455] = 5, + [72032] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3317), 1, + STATE(3326), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5750), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -392704,7 +397536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5748), 38, + ACTIONS(6189), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -392743,15 +397575,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [71516] = 5, + [72093] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3318), 1, + STATE(3327), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5754), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -392760,7 +397592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5752), 38, + ACTIONS(6189), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -392799,15 +397631,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [71577] = 5, + [72154] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3319), 1, + ACTIONS(479), 1, + sym__start_of_brace_block, + ACTIONS(6865), 1, + anon_sym_do, + STATE(3328), 1, sym_heredoc_body, + STATE(4877), 1, + sym_do_end_block, + STATE(4878), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5758), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -392816,9 +397656,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5756), 38, + ACTIONS(5545), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -392831,7 +397670,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -392853,17 +397691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [71638] = 5, + [72223] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3320), 1, + STATE(3329), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6300), 8, + ACTIONS(5993), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -392872,7 +397708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6298), 38, + ACTIONS(5991), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -392911,15 +397747,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [71699] = 5, + [72284] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3321), 1, + ACTIONS(479), 1, + sym__start_of_brace_block, + ACTIONS(6865), 1, + anon_sym_do, + STATE(3330), 1, sym_heredoc_body, + STATE(4879), 1, + sym_do_end_block, + STATE(4880), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6008), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -392928,9 +397772,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6006), 38, + ACTIONS(5545), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -392943,7 +397786,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -392965,152 +397807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [71760] = 23, + [72353] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6671), 1, - anon_sym_DOT_DOT, - ACTIONS(6673), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6677), 1, - anon_sym_PIPE, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6683), 1, - anon_sym_EQ_EQ, - ACTIONS(6689), 1, - anon_sym_AMP_STAR, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6695), 1, - anon_sym_QMARK, - ACTIONS(6697), 1, - anon_sym_AMP_AMP, - ACTIONS(6699), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, - sym__start_of_index_operator, - ACTIONS(6707), 1, - sym_binary_ampersand, - STATE(3322), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6681), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6687), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6685), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6703), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6705), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6010), 13, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - anon_sym_do, - anon_sym_else, - [71857] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6816), 1, - anon_sym_COLON_COLON, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(3323), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4561), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4563), 35, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [71920] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6819), 1, - anon_sym_COLON_COLON, - STATE(3323), 1, - aux_sym_constant_repeat1, - STATE(3324), 1, + STATE(3331), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4557), 9, + ACTIONS(4676), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -393120,9 +397825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4559), 35, + ACTIONS(4678), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -393133,12 +397837,18 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, + anon_sym_end, anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, @@ -393150,73 +397860,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [71985] = 23, + [72414] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6671), 1, + ACTIONS(6746), 1, anon_sym_DOT_DOT, - ACTIONS(6673), 1, + ACTIONS(6748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6677), 1, + ACTIONS(6752), 1, anon_sym_PIPE, - ACTIONS(6679), 1, + ACTIONS(6754), 1, anon_sym_CARET, - ACTIONS(6683), 1, + ACTIONS(6758), 1, anon_sym_EQ_EQ, - ACTIONS(6689), 1, + ACTIONS(6764), 1, anon_sym_AMP_STAR, - ACTIONS(6693), 1, + ACTIONS(6768), 1, anon_sym_DOT, - ACTIONS(6695), 1, + ACTIONS(6770), 1, anon_sym_QMARK, - ACTIONS(6697), 1, + ACTIONS(6772), 1, anon_sym_AMP_AMP, - ACTIONS(6699), 1, + ACTIONS(6774), 1, anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, + ACTIONS(6776), 1, sym__start_of_index_operator, - ACTIONS(6707), 1, + ACTIONS(6782), 1, sym_binary_ampersand, - STATE(3325), 1, + STATE(3332), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6681), 2, + ACTIONS(6756), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6687), 2, + ACTIONS(6762), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, + ACTIONS(6766), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, + ACTIONS(6750), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6685), 4, + ACTIONS(6760), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6703), 4, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6705), 4, + ACTIONS(6780), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6030), 13, + ACTIONS(6025), 13, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -393230,67 +397937,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, anon_sym_do, anon_sym_else, - [72082] = 23, + [72511] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6671), 1, + ACTIONS(6746), 1, anon_sym_DOT_DOT, - ACTIONS(6673), 1, + ACTIONS(6748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6677), 1, + ACTIONS(6752), 1, anon_sym_PIPE, - ACTIONS(6679), 1, + ACTIONS(6754), 1, anon_sym_CARET, - ACTIONS(6683), 1, + ACTIONS(6758), 1, anon_sym_EQ_EQ, - ACTIONS(6689), 1, + ACTIONS(6764), 1, anon_sym_AMP_STAR, - ACTIONS(6693), 1, + ACTIONS(6768), 1, anon_sym_DOT, - ACTIONS(6695), 1, + ACTIONS(6770), 1, anon_sym_QMARK, - ACTIONS(6697), 1, + ACTIONS(6772), 1, anon_sym_AMP_AMP, - ACTIONS(6699), 1, + ACTIONS(6774), 1, anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, + ACTIONS(6776), 1, sym__start_of_index_operator, - ACTIONS(6707), 1, + ACTIONS(6782), 1, sym_binary_ampersand, - STATE(3326), 1, + STATE(3333), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6681), 2, + ACTIONS(6756), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6687), 2, + ACTIONS(6762), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, + ACTIONS(6766), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, + ACTIONS(6750), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6685), 4, + ACTIONS(6760), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6703), 4, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6705), 4, + ACTIONS(6780), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6032), 13, + ACTIONS(6039), 13, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -393304,49 +398011,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, anon_sym_do, anon_sym_else, - [72179] = 10, + [72608] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6689), 1, - anon_sym_AMP_STAR, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6701), 1, - sym__start_of_index_operator, - STATE(3327), 1, + STATE(3334), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6705), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(6102), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 31, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6092), 38, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -393360,27 +398061,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [72250] = 8, + [72669] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6701), 1, - sym__start_of_index_operator, - STATE(3328), 1, + STATE(3335), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(4660), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -393388,28 +398083,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 35, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4662), 37, sym__line_break, - sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -393419,27 +398119,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [72317] = 8, + [72730] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6701), 1, - sym__start_of_index_operator, - STATE(3329), 1, + STATE(3336), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(5841), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -393447,14 +398139,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 35, + anon_sym_DOT, + ACTIONS(5839), 38, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -393478,52 +398173,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [72384] = 12, + [72791] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6689), 1, + ACTIONS(6746), 1, + anon_sym_DOT_DOT, + ACTIONS(6748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6752), 1, + anon_sym_PIPE, + ACTIONS(6754), 1, + anon_sym_CARET, + ACTIONS(6758), 1, + anon_sym_EQ_EQ, + ACTIONS(6764), 1, anon_sym_AMP_STAR, - ACTIONS(6693), 1, + ACTIONS(6768), 1, anon_sym_DOT, - ACTIONS(6701), 1, + ACTIONS(6770), 1, + anon_sym_QMARK, + ACTIONS(6772), 1, + anon_sym_AMP_AMP, + ACTIONS(6774), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6776), 1, sym__start_of_index_operator, - STATE(3330), 1, + ACTIONS(6782), 1, + sym_binary_ampersand, + STATE(3337), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6681), 2, + ACTIONS(6756), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6691), 2, + ACTIONS(6762), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6766), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6703), 4, + ACTIONS(6750), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6760), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6705), 4, + ACTIONS(6780), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6064), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6062), 25, + ACTIONS(5694), 13, sym__line_break, sym__start_of_brace_block, - sym_binary_ampersand, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, @@ -393532,169 +398250,130 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [72459] = 21, + [72888] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6068), 1, - anon_sym_DOT_DOT, - ACTIONS(6677), 1, - anon_sym_PIPE, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6683), 1, - anon_sym_EQ_EQ, - ACTIONS(6689), 1, - anon_sym_AMP_STAR, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6697), 1, - anon_sym_AMP_AMP, - ACTIONS(6699), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, - sym__start_of_index_operator, - ACTIONS(6707), 1, - sym_binary_ampersand, - STATE(3331), 1, + STATE(3338), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6681), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6687), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, + ACTIONS(4664), 9, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6685), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6703), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4666), 37, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6705), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6066), 15, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_do, - anon_sym_else, - [72552] = 17, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [72949] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6677), 1, - anon_sym_PIPE, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6683), 1, - anon_sym_EQ_EQ, - ACTIONS(6689), 1, - anon_sym_AMP_STAR, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6701), 1, - sym__start_of_index_operator, - ACTIONS(6707), 1, - sym_binary_ampersand, - STATE(3332), 1, + STATE(3339), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6681), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, + ACTIONS(4652), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6685), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6703), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4654), 37, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6705), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6070), 19, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [72637] = 5, + [73010] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3333), 1, + STATE(3340), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5762), 8, + ACTIONS(4656), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -393703,9 +398382,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5760), 38, + anon_sym_EQ, + ACTIONS(4658), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -393718,15 +398397,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -393740,81 +398421,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [72698] = 13, + [73071] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6689), 1, - anon_sym_AMP_STAR, - ACTIONS(6693), 1, + ACTIONS(6768), 1, anon_sym_DOT, - ACTIONS(6701), 1, + ACTIONS(6776), 1, sym__start_of_index_operator, - ACTIONS(6707), 1, - sym_binary_ampersand, - STATE(3334), 1, + STATE(3341), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6681), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6703), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6705), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6082), 6, + ACTIONS(6001), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6080), 24, + anon_sym_AMP_STAR, + ACTIONS(5999), 37, sym__line_break, sym__start_of_brace_block, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [72775] = 5, + [73136] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3335), 1, + STATE(3342), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5766), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -393823,7 +398496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5764), 38, + ACTIONS(6189), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -393862,54 +398535,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [72836] = 11, + [73197] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6689), 1, - anon_sym_AMP_STAR, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6701), 1, - sym__start_of_index_operator, - STATE(3336), 1, + ACTIONS(6867), 1, + anon_sym_COLON_COLON, + STATE(3343), 1, sym_heredoc_body, + STATE(3356), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6703), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6705), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6090), 6, + ACTIONS(4594), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6088), 27, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4596), 35, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -393919,227 +398586,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - [72909] = 15, + anon_sym_then, + [73262] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6677), 1, - anon_sym_PIPE, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6689), 1, - anon_sym_AMP_STAR, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6701), 1, - sym__start_of_index_operator, - ACTIONS(6707), 1, - sym_binary_ampersand, - STATE(3337), 1, + ACTIONS(6867), 1, + anon_sym_COLON_COLON, + STATE(3344), 1, sym_heredoc_body, + STATE(3357), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6681), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6703), 4, + ACTIONS(4594), 9, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4596), 35, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6705), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6094), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6092), 23, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - [72990] = 19, + anon_sym_then, + [73327] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, - anon_sym_DOT_DOT, - ACTIONS(6677), 1, - anon_sym_PIPE, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6683), 1, - anon_sym_EQ_EQ, - ACTIONS(6689), 1, - anon_sym_AMP_STAR, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6701), 1, - sym__start_of_index_operator, - ACTIONS(6707), 1, - sym_binary_ampersand, - STATE(3338), 1, + ACTIONS(527), 1, + sym__start_of_brace_block, + STATE(3345), 1, sym_heredoc_body, + STATE(3927), 1, + sym_do_end_block, + STATE(3928), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6681), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6687), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, + ACTIONS(5570), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6685), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6703), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5568), 35, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6705), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6112), 17, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - [73079] = 20, + [73394] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6118), 1, - anon_sym_DOT_DOT, - ACTIONS(6677), 1, - anon_sym_PIPE, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6683), 1, - anon_sym_EQ_EQ, - ACTIONS(6689), 1, - anon_sym_AMP_STAR, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6697), 1, - anon_sym_AMP_AMP, - ACTIONS(6701), 1, - sym__start_of_index_operator, - ACTIONS(6707), 1, - sym_binary_ampersand, - STATE(3339), 1, + STATE(3346), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6681), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6687), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, + ACTIONS(4716), 9, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6685), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6703), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4718), 37, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6705), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6116), 16, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [73170] = 5, + [73455] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3340), 1, + STATE(3347), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5774), 8, + ACTIONS(4680), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -394148,9 +398783,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5772), 38, + anon_sym_EQ, + ACTIONS(4682), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -394163,15 +398798,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -394185,17 +398822,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [73231] = 5, + [73516] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3341), 1, + ACTIONS(527), 1, + sym__start_of_brace_block, + STATE(3348), 1, sym_heredoc_body, + STATE(3945), 1, + sym_do_end_block, + STATE(3950), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5778), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -394204,9 +398845,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5776), 38, + ACTIONS(5545), 35, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -394219,7 +398859,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -394242,16 +398881,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - [73292] = 5, + [73583] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3342), 1, + ACTIONS(527), 1, + sym__start_of_brace_block, + STATE(3349), 1, sym_heredoc_body, + STATE(3962), 1, + sym_do_end_block, + STATE(3963), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5512), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -394260,9 +398904,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 38, + ACTIONS(5545), 35, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -394275,7 +398918,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -394298,16 +398940,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - [73353] = 5, + [73650] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3343), 1, + STATE(3350), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6192), 8, + ACTIONS(4672), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -394316,9 +398957,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6190), 38, + anon_sym_EQ, + ACTIONS(4674), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -394331,15 +398972,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -394353,17 +398996,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + [73711] = 21, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5977), 1, + anon_sym_DOT_DOT, + ACTIONS(6752), 1, + anon_sym_PIPE, + ACTIONS(6754), 1, + anon_sym_CARET, + ACTIONS(6758), 1, + anon_sym_EQ_EQ, + ACTIONS(6764), 1, + anon_sym_AMP_STAR, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6772), 1, + anon_sym_AMP_AMP, + ACTIONS(6774), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6776), 1, + sym__start_of_index_operator, + ACTIONS(6782), 1, + sym_binary_ampersand, + STATE(3351), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6756), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6762), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6750), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6760), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6778), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6780), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5975), 15, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, anon_sym_do, anon_sym_else, - [73414] = 5, + [73804] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3344), 1, + STATE(3352), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5834), 8, + ACTIONS(4708), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -394372,9 +399085,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5832), 38, + anon_sym_EQ, + ACTIONS(4710), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -394387,15 +399100,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -394409,17 +399124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [73475] = 5, + [73865] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3345), 1, + STATE(3353), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6312), 8, + ACTIONS(6219), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -394428,7 +399141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6310), 38, + ACTIONS(6217), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -394467,15 +399180,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [73536] = 5, + [73926] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3346), 1, + STATE(3354), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5802), 8, + ACTIONS(6375), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -394484,7 +399197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5800), 38, + ACTIONS(6373), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -394523,63 +399236,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [73597] = 21, + [73987] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6242), 1, + ACTIONS(6746), 1, anon_sym_DOT_DOT, - ACTIONS(6677), 1, + ACTIONS(6748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6752), 1, anon_sym_PIPE, - ACTIONS(6679), 1, + ACTIONS(6754), 1, anon_sym_CARET, - ACTIONS(6683), 1, + ACTIONS(6758), 1, anon_sym_EQ_EQ, - ACTIONS(6689), 1, + ACTIONS(6764), 1, anon_sym_AMP_STAR, - ACTIONS(6693), 1, + ACTIONS(6768), 1, anon_sym_DOT, - ACTIONS(6697), 1, + ACTIONS(6770), 1, + anon_sym_QMARK, + ACTIONS(6772), 1, anon_sym_AMP_AMP, - ACTIONS(6699), 1, + ACTIONS(6774), 1, anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, + ACTIONS(6776), 1, sym__start_of_index_operator, - ACTIONS(6707), 1, + ACTIONS(6782), 1, sym_binary_ampersand, - STATE(3347), 1, + STATE(3355), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6681), 2, + ACTIONS(6756), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6687), 2, + ACTIONS(6762), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, + ACTIONS(6766), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, + ACTIONS(6750), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6685), 4, + ACTIONS(6760), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6703), 4, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6705), 4, + ACTIONS(6780), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6240), 15, + ACTIONS(6092), 13, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -394590,20 +399307,21 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, anon_sym_do, anon_sym_else, - [73690] = 5, + [74084] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3348), 1, - sym_heredoc_body, + ACTIONS(6869), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + STATE(3356), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -394612,7 +399330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5878), 38, + anon_sym_EQ, + ACTIONS(4600), 35, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -394625,17 +399344,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -394646,20 +399361,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - [73751] = 5, + anon_sym_then, + [74147] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3349), 1, + ACTIONS(6867), 1, + anon_sym_COLON_COLON, + STATE(3356), 1, + aux_sym_constant_repeat1, + STATE(3357), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5961), 8, + ACTIONS(4590), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -394668,7 +399388,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5959), 38, + anon_sym_EQ, + ACTIONS(4592), 35, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -394681,17 +399402,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -394702,72 +399419,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - [73812] = 23, + anon_sym_then, + [74212] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6671), 1, + ACTIONS(6746), 1, anon_sym_DOT_DOT, - ACTIONS(6673), 1, + ACTIONS(6748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6677), 1, + ACTIONS(6752), 1, anon_sym_PIPE, - ACTIONS(6679), 1, + ACTIONS(6754), 1, anon_sym_CARET, - ACTIONS(6683), 1, + ACTIONS(6758), 1, anon_sym_EQ_EQ, - ACTIONS(6689), 1, + ACTIONS(6764), 1, anon_sym_AMP_STAR, - ACTIONS(6693), 1, + ACTIONS(6768), 1, anon_sym_DOT, - ACTIONS(6695), 1, + ACTIONS(6770), 1, anon_sym_QMARK, - ACTIONS(6697), 1, + ACTIONS(6772), 1, anon_sym_AMP_AMP, - ACTIONS(6699), 1, + ACTIONS(6774), 1, anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, + ACTIONS(6776), 1, sym__start_of_index_operator, - ACTIONS(6707), 1, + ACTIONS(6782), 1, sym_binary_ampersand, - STATE(3350), 1, + STATE(3358), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6681), 2, + ACTIONS(6756), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6687), 2, + ACTIONS(6762), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, + ACTIONS(6766), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, + ACTIONS(6750), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6685), 4, + ACTIONS(6760), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6703), 4, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6705), 4, + ACTIONS(6780), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6256), 13, + ACTIONS(6193), 13, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -394781,123 +399499,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, anon_sym_do, anon_sym_else, - [73909] = 5, + [74309] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3351), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5838), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5836), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [73970] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6671), 1, + ACTIONS(6746), 1, anon_sym_DOT_DOT, - ACTIONS(6673), 1, + ACTIONS(6748), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6677), 1, + ACTIONS(6752), 1, anon_sym_PIPE, - ACTIONS(6679), 1, + ACTIONS(6754), 1, anon_sym_CARET, - ACTIONS(6683), 1, + ACTIONS(6758), 1, anon_sym_EQ_EQ, - ACTIONS(6689), 1, + ACTIONS(6764), 1, anon_sym_AMP_STAR, - ACTIONS(6693), 1, + ACTIONS(6768), 1, anon_sym_DOT, - ACTIONS(6695), 1, + ACTIONS(6770), 1, anon_sym_QMARK, - ACTIONS(6697), 1, + ACTIONS(6772), 1, anon_sym_AMP_AMP, - ACTIONS(6699), 1, + ACTIONS(6774), 1, anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, + ACTIONS(6776), 1, sym__start_of_index_operator, - ACTIONS(6707), 1, + ACTIONS(6782), 1, sym_binary_ampersand, - STATE(3352), 1, + STATE(3359), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6681), 2, + ACTIONS(6756), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6687), 2, + ACTIONS(6762), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, + ACTIONS(6766), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, + ACTIONS(6750), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6685), 4, + ACTIONS(6760), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6703), 4, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6705), 4, + ACTIONS(6780), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6230), 13, + ACTIONS(6203), 13, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -394911,15 +399573,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, anon_sym_do, anon_sym_else, - [74067] = 5, + [74406] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3353), 1, + STATE(3360), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5826), 8, + ACTIONS(4712), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -394928,9 +399590,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5824), 38, + anon_sym_EQ, + ACTIONS(4714), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -394943,15 +399605,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -394965,17 +399629,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [74128] = 5, + [74467] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3354), 1, + STATE(3361), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(4720), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -394984,9 +399646,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5856), 38, + anon_sym_EQ, + ACTIONS(4722), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -394999,15 +399661,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -395021,17 +399685,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [74189] = 5, + [74528] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3355), 1, + STATE(3362), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5862), 8, + ACTIONS(6023), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -395040,7 +399702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5860), 38, + ACTIONS(6021), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -395079,162 +399741,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [74250] = 8, + [74589] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1245), 1, - anon_sym_COLON, - ACTIONS(6531), 1, - anon_sym_COLON_COLON, - STATE(2858), 1, - aux_sym_constant_repeat1, - STATE(3356), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4547), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(6764), 1, anon_sym_AMP_STAR, + ACTIONS(6768), 1, anon_sym_DOT, - ACTIONS(4549), 35, - sym__line_break, + ACTIONS(6776), 1, sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [74317] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1529), 1, - sym__string_literal_start, - ACTIONS(6821), 1, - anon_sym_COLON, - STATE(3357), 1, + STATE(3363), 1, sym_heredoc_body, - STATE(3697), 1, - aux_sym_chained_string_repeat1, - STATE(4311), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(133), 34, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, + ACTIONS(6766), 2, sym__binary_double_star, - sym_binary_ampersand, + anon_sym_AMP_STAR_STAR, + ACTIONS(6780), 4, + sym__binary_star, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [74386] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3358), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5866), 8, + ACTIONS(6259), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5864), 38, + ACTIONS(6257), 31, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -395248,21 +399797,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [74447] = 5, + [74660] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3359), 1, + STATE(3364), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5899), 8, + ACTIONS(5889), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -395271,7 +399819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5897), 38, + ACTIONS(5887), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -395310,15 +399858,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [74508] = 5, + [74721] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3360), 1, + STATE(3365), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 9, + ACTIONS(5913), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -395327,9 +399875,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4595), 37, + ACTIONS(5911), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -395350,7 +399898,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -395365,16 +399912,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_else, - [74569] = 5, + [74782] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3361), 1, + STATE(3366), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5919), 8, + ACTIONS(5951), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -395383,7 +399931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5917), 38, + ACTIONS(5949), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -395422,15 +399970,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [74630] = 5, + [74843] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3362), 1, + STATE(3367), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5927), 8, + ACTIONS(4692), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -395439,9 +399987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5925), 38, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4694), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -395452,17 +399999,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -395476,17 +400022,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [74691] = 5, + anon_sym_when, + anon_sym_in, + [74904] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3363), 1, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6776), 1, + sym__start_of_index_operator, + STATE(3368), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6016), 8, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6295), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -395494,17 +400049,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6014), 38, + ACTIONS(6293), 35, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -395528,21 +400080,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [74752] = 5, + [74971] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3364), 1, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6776), 1, + sym__start_of_index_operator, + STATE(3369), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5931), 8, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -395550,17 +400108,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5929), 38, + ACTIONS(6313), 35, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -395584,21 +400139,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [74813] = 5, + [75038] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3365), 1, + STATE(3370), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6126), 8, + ACTIONS(5959), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -395607,7 +400161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6124), 38, + ACTIONS(5957), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -395646,15 +400200,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [74874] = 5, + [75099] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3366), 1, + STATE(3371), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4663), 9, + ACTIONS(4704), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -395664,7 +400218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4665), 37, + ACTIONS(4706), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -395702,81 +400256,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [74935] = 5, + [75160] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3367), 1, + ACTIONS(6764), 1, + anon_sym_AMP_STAR, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6776), 1, + sym__start_of_index_operator, + STATE(3372), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4675), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4677), 37, - sym__start_of_index_operator, + ACTIONS(6756), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6780), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(6327), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6325), 25, + sym__line_break, + sym__start_of_brace_block, + sym_binary_ampersand, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [74996] = 5, + [75235] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3368), 1, + ACTIONS(6676), 1, + anon_sym_LBRACK, + ACTIONS(6678), 1, + anon_sym_STAR, + ACTIONS(6682), 1, + anon_sym_DOT, + ACTIONS(6684), 1, + anon_sym_QMARK, + ACTIONS(6872), 1, + anon_sym_PIPE, + STATE(3373), 1, sym_heredoc_body, + STATE(3545), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4679), 9, + ACTIONS(4668), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4681), 37, + ACTIONS(4670), 33, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -395787,16 +400359,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -395807,116 +400379,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [75057] = 11, + [75308] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6746), 1, - anon_sym_LBRACK, - ACTIONS(6748), 1, - anon_sym_STAR, + ACTIONS(6442), 1, + anon_sym_DOT_DOT, ACTIONS(6752), 1, - anon_sym_DOT, - ACTIONS(6754), 1, - anon_sym_QMARK, - ACTIONS(6823), 1, anon_sym_PIPE, - STATE(3369), 1, + ACTIONS(6754), 1, + anon_sym_CARET, + ACTIONS(6758), 1, + anon_sym_EQ_EQ, + ACTIONS(6764), 1, + anon_sym_AMP_STAR, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6772), 1, + anon_sym_AMP_AMP, + ACTIONS(6774), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6776), 1, + sym__start_of_index_operator, + ACTIONS(6782), 1, + sym_binary_ampersand, + STATE(3374), 1, sym_heredoc_body, - STATE(3370), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4683), 7, - anon_sym_DOT_DOT, + ACTIONS(6756), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6762), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6750), 3, anon_sym_LT, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4685), 33, - sym__start_of_index_operator, + ACTIONS(6760), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6780), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6440), 15, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_QMARK, + anon_sym_do, + anon_sym_else, + [75401] = 17, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6752), 1, + anon_sym_PIPE, + ACTIONS(6754), 1, anon_sym_CARET, + ACTIONS(6758), 1, + anon_sym_EQ_EQ, + ACTIONS(6764), 1, + anon_sym_AMP_STAR, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6776), 1, + sym__start_of_index_operator, + ACTIONS(6782), 1, + sym_binary_ampersand, + STATE(3375), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6756), 2, anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5817), 4, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6760), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(6778), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6780), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5815), 19, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [75130] = 7, + [75486] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6823), 1, - anon_sym_PIPE, - STATE(3370), 1, + ACTIONS(6764), 1, + anon_sym_AMP_STAR, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6776), 1, + sym__start_of_index_operator, + ACTIONS(6782), 1, + sym_binary_ampersand, + STATE(3376), 1, sym_heredoc_body, - STATE(3371), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(6756), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6778), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6780), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6263), 6, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, + ACTIONS(6261), 24, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + [75563] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6764), 1, anon_sym_AMP_STAR, + ACTIONS(6768), 1, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 36, + ACTIONS(6776), 1, sym__start_of_index_operator, + STATE(3377), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6780), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(5869), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5867), 27, + sym__line_break, + sym__start_of_brace_block, + sym_binary_ampersand, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -395926,142 +400642,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [75195] = 6, + [75636] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6825), 1, + ACTIONS(6752), 1, anon_sym_PIPE, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(3371), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(6754), 1, + anon_sym_CARET, + ACTIONS(6764), 1, anon_sym_AMP_STAR, + ACTIONS(6768), 1, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 36, + ACTIONS(6776), 1, sym__start_of_index_operator, + ACTIONS(6782), 1, + sym_binary_ampersand, + STATE(3378), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6756), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6780), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(6134), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6132), 23, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [75258] = 11, + [75717] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6746), 1, - anon_sym_LBRACK, - ACTIONS(6748), 1, - anon_sym_STAR, + ACTIONS(6047), 1, + anon_sym_DOT_DOT, ACTIONS(6752), 1, - anon_sym_DOT, - ACTIONS(6754), 1, - anon_sym_QMARK, - ACTIONS(6823), 1, anon_sym_PIPE, - STATE(3370), 1, - aux_sym_union_type_repeat1, - STATE(3372), 1, + ACTIONS(6754), 1, + anon_sym_CARET, + ACTIONS(6758), 1, + anon_sym_EQ_EQ, + ACTIONS(6764), 1, + anon_sym_AMP_STAR, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6776), 1, + sym__start_of_index_operator, + ACTIONS(6782), 1, + sym_binary_ampersand, + STATE(3379), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, - anon_sym_DOT_DOT, + ACTIONS(6756), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6762), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6750), 3, anon_sym_LT, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4609), 33, - sym__start_of_index_operator, + ACTIONS(6760), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6780), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6045), 17, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [75331] = 5, + [75806] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3373), 1, + STATE(3380), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6160), 8, + ACTIONS(6009), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -396070,7 +400800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6158), 38, + ACTIONS(6007), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -396109,27 +400839,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [75392] = 11, + [75867] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6746), 1, + ACTIONS(6676), 1, anon_sym_LBRACK, - ACTIONS(6748), 1, + ACTIONS(6678), 1, anon_sym_STAR, - ACTIONS(6752), 1, + ACTIONS(6682), 1, anon_sym_DOT, - ACTIONS(6754), 1, + ACTIONS(6684), 1, anon_sym_QMARK, - ACTIONS(6823), 1, + ACTIONS(6872), 1, anon_sym_PIPE, - STATE(3370), 1, - aux_sym_union_type_repeat1, - STATE(3374), 1, + STATE(3381), 1, sym_heredoc_body, + STATE(3545), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(4684), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -396137,7 +400867,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4570), 33, + ACTIONS(4686), 33, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -396148,11 +400879,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -396167,27 +400901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [75465] = 9, + [75940] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(471), 1, - sym__start_of_brace_block, - ACTIONS(6828), 1, - anon_sym_do, - STATE(3375), 1, + STATE(3382), 1, sym_heredoc_body, - STATE(4749), 1, - sym_do_end_block, - STATE(4750), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(5829), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -396196,8 +400918,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 34, + ACTIONS(5827), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -396210,6 +400933,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -396231,17 +400955,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [75534] = 6, + anon_sym_do, + anon_sym_else, + [76001] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6830), 1, - anon_sym_of, - STATE(3376), 1, + STATE(3383), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5728), 8, + ACTIONS(6019), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -396250,7 +400974,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5724), 37, + ACTIONS(6017), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -396262,12 +400987,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -396283,22 +401011,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [75597] = 6, + [76062] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6832), 1, - anon_sym_of, - STATE(3377), 1, + STATE(3384), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5734), 8, + ACTIONS(5809), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -396307,7 +401030,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5730), 37, + ACTIONS(5807), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -396319,12 +401043,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -396340,20 +401067,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [75660] = 5, + [76123] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3378), 1, + STATE(3385), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5581), 9, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -396362,8 +401086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_COLON2, - ACTIONS(5579), 37, + ACTIONS(5983), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -396375,12 +401099,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -396393,23 +401120,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [75721] = 5, + [76184] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3379), 1, + STATE(3386), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4647), 9, + ACTIONS(6029), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -396418,9 +401142,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4649), 37, + ACTIONS(6027), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -396433,17 +401157,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -396457,71 +401179,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [75782] = 5, + anon_sym_do, + anon_sym_else, + [76245] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3380), 1, + ACTIONS(6215), 1, + anon_sym_DOT_DOT, + ACTIONS(6752), 1, + anon_sym_PIPE, + ACTIONS(6754), 1, + anon_sym_CARET, + ACTIONS(6758), 1, + anon_sym_EQ_EQ, + ACTIONS(6764), 1, + anon_sym_AMP_STAR, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6772), 1, + anon_sym_AMP_AMP, + ACTIONS(6776), 1, + sym__start_of_index_operator, + ACTIONS(6782), 1, + sym_binary_ampersand, + STATE(3387), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4631), 9, - anon_sym_DOT_DOT, + ACTIONS(6756), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6762), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6750), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4633), 37, - sym__start_of_index_operator, + ACTIONS(6760), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6780), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(6213), 16, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [75843] = 5, + [76336] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3381), 1, + STATE(3388), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4671), 9, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -396530,9 +401269,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4673), 37, + ACTIONS(6041), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -396545,17 +401284,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -396569,15 +401306,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [75904] = 5, + anon_sym_do, + anon_sym_else, + [76397] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3382), 1, + ACTIONS(527), 1, + sym__start_of_brace_block, + ACTIONS(6874), 1, + anon_sym_do, + STATE(3389), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4623), 9, + STATE(4165), 2, + sym_do_end_block, + sym_brace_block, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -396586,8 +401332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4625), 37, + ACTIONS(5551), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -396606,12 +401351,9 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -396625,23 +401367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [75965] = 9, + [76464] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(471), 1, - sym__start_of_brace_block, - ACTIONS(6828), 1, - anon_sym_do, - STATE(3383), 1, + STATE(3390), 1, sym_heredoc_body, - STATE(4757), 1, - sym_do_end_block, - STATE(4758), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(6033), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -396650,8 +401384,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 34, + ACTIONS(6031), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -396664,6 +401399,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -396685,15 +401421,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [76034] = 5, + anon_sym_do, + anon_sym_else, + [76525] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3384), 1, + STATE(3391), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5654), 9, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -396702,8 +401440,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_COLON2, - ACTIONS(5652), 37, + ACTIONS(6035), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -396715,12 +401453,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -396733,31 +401474,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [76095] = 9, + [76586] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(471), 1, - sym__start_of_brace_block, - ACTIONS(6828), 1, - anon_sym_do, - STATE(3385), 1, + STATE(3392), 1, sym_heredoc_body, - STATE(4759), 1, - sym_do_end_block, - STATE(4760), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(6067), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -396766,8 +401496,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 34, + ACTIONS(6065), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -396780,6 +401511,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -396801,15 +401533,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [76164] = 5, + anon_sym_do, + anon_sym_else, + [76647] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3386), 1, + STATE(3393), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5520), 8, + ACTIONS(6086), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -396818,7 +401552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5518), 38, + ACTIONS(6084), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -396833,11 +401567,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -396852,31 +401586,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [76225] = 5, + anon_sym_else, + [76708] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3387), 1, + ACTIONS(6789), 1, + anon_sym_LBRACK, + ACTIONS(6791), 1, + anon_sym_STAR, + ACTIONS(6793), 1, + anon_sym_DOT, + ACTIONS(6795), 1, + anon_sym_QMARK, + ACTIONS(6876), 1, + anon_sym_PIPE, + STATE(3394), 1, sym_heredoc_body, + STATE(3512), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6172), 8, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6170), 38, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4650), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -396887,15 +401630,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -396908,20 +401647,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [76286] = 5, + anon_sym_when, + anon_sym_in, + [76781] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3388), 1, + STATE(3395), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6036), 8, + ACTIONS(6079), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -396930,7 +401670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6034), 38, + ACTIONS(6077), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -396969,163 +401709,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [76347] = 23, + [76842] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6671), 1, - anon_sym_DOT_DOT, - ACTIONS(6673), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6677), 1, - anon_sym_PIPE, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6683), 1, - anon_sym_EQ_EQ, - ACTIONS(6689), 1, - anon_sym_AMP_STAR, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6695), 1, - anon_sym_QMARK, - ACTIONS(6697), 1, - anon_sym_AMP_AMP, - ACTIONS(6699), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, - sym__start_of_index_operator, - ACTIONS(6707), 1, - sym_binary_ampersand, - STATE(3389), 1, + STATE(3396), 1, sym_heredoc_body, + STATE(3512), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6681), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6687), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, + ACTIONS(4627), 9, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6685), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6703), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4629), 36, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6705), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6144), 13, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_end, - anon_sym_do, - anon_sym_else, - [76444] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6671), 1, - anon_sym_DOT_DOT, - ACTIONS(6673), 1, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - ACTIONS(6677), 1, - anon_sym_PIPE, - ACTIONS(6679), 1, + anon_sym_end, + anon_sym_STAR, anon_sym_CARET, - ACTIONS(6683), 1, - anon_sym_EQ_EQ, - ACTIONS(6689), 1, - anon_sym_AMP_STAR, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6695), 1, - anon_sym_QMARK, - ACTIONS(6697), 1, - anon_sym_AMP_AMP, - ACTIONS(6699), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, - sym__start_of_index_operator, - ACTIONS(6707), 1, - sym_binary_ampersand, - STATE(3390), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6681), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6687), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6685), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6703), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6705), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6152), 13, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - anon_sym_do, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_else, - [76541] = 5, + anon_sym_when, + anon_sym_in, + [76905] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3391), 1, + STATE(3397), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6040), 8, + ACTIONS(6096), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -397134,7 +401783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6038), 38, + ACTIONS(6094), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -397173,15 +401822,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [76602] = 5, + [76966] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3392), 1, + STATE(3398), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6012), 8, + ACTIONS(6110), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -397190,7 +401839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6010), 38, + ACTIONS(6108), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -397229,15 +401878,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [76663] = 5, + [77027] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3393), 1, + STATE(3399), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6044), 8, + ACTIONS(6144), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -397246,7 +401895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6042), 38, + ACTIONS(6142), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -397285,15 +401934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [76724] = 5, + [77088] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3394), 1, + STATE(3400), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6060), 8, + ACTIONS(6090), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -397302,7 +401951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6058), 38, + ACTIONS(6088), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -397341,15 +401990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [76785] = 5, + [77149] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3395), 1, + STATE(3401), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6110), 8, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -397358,7 +402007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6108), 38, + ACTIONS(5551), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -397397,15 +402046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [76846] = 5, + [77210] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3396), 1, + STATE(3402), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5536), 8, + ACTIONS(6462), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -397414,7 +402063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5534), 38, + ACTIONS(6460), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -397429,11 +402078,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -397448,27 +402097,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [76907] = 8, + anon_sym_else, + [77271] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(471), 1, - sym__start_of_brace_block, - ACTIONS(6828), 1, - anon_sym_do, - STATE(3397), 1, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6776), 1, + sym__start_of_index_operator, + STATE(3403), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4647), 2, - sym_do_end_block, - sym_brace_block, - ACTIONS(5512), 8, + ACTIONS(6152), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -397476,10 +402122,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5510), 34, + ACTIONS(6150), 37, sym__line_break, - sym__start_of_index_operator, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -397491,6 +402136,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -397512,71 +402158,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [76974] = 5, + anon_sym_do, + anon_sym_else, + [77336] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3398), 1, + ACTIONS(5981), 1, + anon_sym_DOT_DOT, + ACTIONS(6752), 1, + anon_sym_PIPE, + ACTIONS(6754), 1, + anon_sym_CARET, + ACTIONS(6758), 1, + anon_sym_EQ_EQ, + ACTIONS(6764), 1, + anon_sym_AMP_STAR, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6772), 1, + anon_sym_AMP_AMP, + ACTIONS(6774), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6776), 1, + sym__start_of_index_operator, + ACTIONS(6782), 1, + sym_binary_ampersand, + STATE(3404), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, - anon_sym_DOT_DOT, + ACTIONS(6756), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6762), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6750), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 37, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6760), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6780), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5979), 15, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [77035] = 5, + [77429] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3399), 1, + STATE(3405), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6138), 8, + ACTIONS(5783), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -397585,7 +402249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6136), 38, + ACTIONS(5781), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -397624,15 +402288,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [77096] = 5, + [77490] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3400), 1, + STATE(3406), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6164), 8, + ACTIONS(6055), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -397641,7 +402305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6162), 38, + ACTIONS(6053), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -397680,71 +402344,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [77157] = 5, + [77551] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3401), 1, + ACTIONS(6746), 1, + anon_sym_DOT_DOT, + ACTIONS(6748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6752), 1, + anon_sym_PIPE, + ACTIONS(6754), 1, + anon_sym_CARET, + ACTIONS(6758), 1, + anon_sym_EQ_EQ, + ACTIONS(6764), 1, + anon_sym_AMP_STAR, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6770), 1, + anon_sym_QMARK, + ACTIONS(6772), 1, + anon_sym_AMP_AMP, + ACTIONS(6774), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6776), 1, + sym__start_of_index_operator, + ACTIONS(6782), 1, + sym_binary_ampersand, + STATE(3407), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6168), 8, - anon_sym_DOT_DOT, + ACTIONS(6756), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6762), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6750), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6166), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6760), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6780), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5779), 13, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_do, + anon_sym_else, + [77648] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6746), 1, + anon_sym_DOT_DOT, + ACTIONS(6748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6752), 1, + anon_sym_PIPE, + ACTIONS(6754), 1, anon_sym_CARET, + ACTIONS(6758), 1, + anon_sym_EQ_EQ, + ACTIONS(6764), 1, + anon_sym_AMP_STAR, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6770), 1, + anon_sym_QMARK, + ACTIONS(6772), 1, + anon_sym_AMP_AMP, + ACTIONS(6774), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6776), 1, + sym__start_of_index_operator, + ACTIONS(6782), 1, + sym_binary_ampersand, + STATE(3408), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6756), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6762), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6750), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6760), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6778), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6780), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5923), 13, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, anon_sym_do, anon_sym_else, - [77218] = 5, + [77745] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3402), 1, + STATE(3409), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6176), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -397753,7 +402509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6174), 38, + ACTIONS(6345), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -397792,78 +402548,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [77279] = 5, + [77806] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3403), 1, + ACTIONS(6746), 1, + anon_sym_DOT_DOT, + ACTIONS(6748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6752), 1, + anon_sym_PIPE, + ACTIONS(6754), 1, + anon_sym_CARET, + ACTIONS(6758), 1, + anon_sym_EQ_EQ, + ACTIONS(6764), 1, + anon_sym_AMP_STAR, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6770), 1, + anon_sym_QMARK, + ACTIONS(6772), 1, + anon_sym_AMP_AMP, + ACTIONS(6774), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6776), 1, + sym__start_of_index_operator, + ACTIONS(6782), 1, + sym_binary_ampersand, + STATE(3410), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6180), 8, - anon_sym_DOT_DOT, + ACTIONS(6756), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6762), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6750), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6178), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6760), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6780), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5825), 13, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [77340] = 8, + [77903] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(519), 1, - sym__start_of_brace_block, - ACTIONS(6834), 1, - anon_sym_do, - STATE(3404), 1, + ACTIONS(1265), 1, + anon_sym_COLON, + ACTIONS(6493), 1, + anon_sym_COLON_COLON, + STATE(2814), 1, + aux_sym_constant_repeat1, + STATE(3411), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4020), 2, - sym_do_end_block, - sym_brace_block, - ACTIONS(5512), 8, + ACTIONS(4584), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -397872,7 +402645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 34, + ACTIONS(4586), 35, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -397904,18 +402677,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [77407] = 5, + [77970] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3405), 1, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6776), 1, + sym__start_of_index_operator, + STATE(3412), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6208), 8, + ACTIONS(6156), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -397923,11 +402701,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6206), 38, + ACTIONS(6154), 37, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -397963,15 +402739,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [77468] = 5, + [78035] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3406), 1, + STATE(3413), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6220), 8, + ACTIONS(4638), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -397980,7 +402756,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6218), 38, + anon_sym_EQ, + ACTIONS(4640), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -397995,7 +402772,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -398003,6 +402779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -398018,16 +402795,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - [77529] = 5, + [78096] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3407), 1, + STATE(3414), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6156), 8, + ACTIONS(6138), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -398036,7 +402812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6154), 38, + ACTIONS(6136), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -398075,17 +402851,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [77590] = 6, + [78157] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6836), 1, - sym_regex_modifier, - STATE(3408), 1, + ACTIONS(1619), 1, + sym__string_literal_start, + ACTIONS(6878), 1, + anon_sym_COLON, + STATE(3415), 1, sym_heredoc_body, + STATE(3609), 1, + aux_sym_chained_string_repeat1, + STATE(4595), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5633), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -398094,8 +402876,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5631), 37, - sym__start_of_brace_block, + ACTIONS(135), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -398106,12 +402888,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -398127,20 +402911,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + [78226] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6746), 1, + anon_sym_DOT_DOT, + ACTIONS(6748), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6752), 1, + anon_sym_PIPE, + ACTIONS(6754), 1, + anon_sym_CARET, + ACTIONS(6758), 1, + anon_sym_EQ_EQ, + ACTIONS(6764), 1, + anon_sym_AMP_STAR, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6770), 1, + anon_sym_QMARK, + ACTIONS(6772), 1, + anon_sym_AMP_AMP, + ACTIONS(6774), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6776), 1, + sym__start_of_index_operator, + ACTIONS(6782), 1, + sym_binary_ampersand, + STATE(3416), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6756), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6762), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6750), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6760), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6778), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6780), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5773), 13, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [77653] = 5, + [78323] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3409), 1, + STATE(3417), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5520), 8, + ACTIONS(6148), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -398149,8 +403002,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5518), 38, + ACTIONS(6146), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -398168,7 +403022,6 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -398183,20 +403036,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_else, - [77714] = 5, + [78384] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3410), 1, + STATE(3418), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6228), 8, + ACTIONS(5813), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -398205,7 +403058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6226), 38, + ACTIONS(5811), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -398244,35 +403097,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [77775] = 11, + [78445] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6746), 1, - anon_sym_LBRACK, - ACTIONS(6748), 1, - anon_sym_STAR, - ACTIONS(6752), 1, - anon_sym_DOT, - ACTIONS(6754), 1, - anon_sym_QMARK, - ACTIONS(6823), 1, - anon_sym_PIPE, - STATE(3370), 1, - aux_sym_union_type_repeat1, - STATE(3411), 1, + STATE(3419), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4605), 33, + anon_sym_DOT, + ACTIONS(6229), 38, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -398283,11 +403127,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -398300,23 +403148,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [77848] = 6, + [78506] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3370), 1, - aux_sym_union_type_repeat1, - STATE(3412), 1, + STATE(3420), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -398325,8 +403170,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 36, + ACTIONS(6233), 38, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -398337,15 +403183,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -398359,23 +403207,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [77911] = 7, + [78567] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6819), 1, - anon_sym_COLON_COLON, - STATE(3413), 1, + STATE(3421), 1, sym_heredoc_body, - STATE(3496), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 9, + ACTIONS(6175), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -398384,8 +403226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4549), 35, + ACTIONS(6173), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -398398,13 +403239,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -398415,21 +403260,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [77976] = 5, + anon_sym_else, + [78628] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3414), 1, + STATE(3422), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5770), 8, + ACTIONS(6299), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -398438,7 +403282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5768), 38, + ACTIONS(6297), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -398477,15 +403321,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [78037] = 5, + [78689] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3415), 1, + STATE(3423), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5782), 8, + ACTIONS(4638), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -398494,9 +403338,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5780), 38, + anon_sym_EQ, + ACTIONS(4640), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -398517,6 +403361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -398531,19 +403376,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_else, - [78098] = 6, + [78750] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6838), 1, - sym_regex_modifier, - STATE(3416), 1, + STATE(3424), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5679), 8, + ACTIONS(4712), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -398552,8 +403394,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5677), 37, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4714), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -398567,11 +403409,13 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -398586,93 +403430,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [78161] = 23, + [78811] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6671), 1, - anon_sym_DOT_DOT, - ACTIONS(6673), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6677), 1, - anon_sym_PIPE, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6683), 1, - anon_sym_EQ_EQ, - ACTIONS(6689), 1, - anon_sym_AMP_STAR, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6695), 1, - anon_sym_QMARK, - ACTIONS(6697), 1, - anon_sym_AMP_AMP, - ACTIONS(6699), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, - sym__start_of_index_operator, - ACTIONS(6707), 1, - sym_binary_ampersand, - STATE(3417), 1, + STATE(3425), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6681), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6687), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, + ACTIONS(4720), 9, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6685), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6703), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4722), 37, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6705), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5708), 13, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, - anon_sym_do, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_else, - [78258] = 5, + anon_sym_when, + anon_sym_in, + [78872] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3418), 1, + STATE(3426), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5786), 8, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -398681,7 +403506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5784), 38, + ACTIONS(6237), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -398720,15 +403545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [78319] = 5, + [78933] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3419), 1, + STATE(3427), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5790), 8, + ACTIONS(6243), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -398737,7 +403562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5788), 38, + ACTIONS(6241), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -398776,15 +403601,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [78380] = 5, + [78994] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3420), 1, + STATE(3428), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5794), 8, + ACTIONS(6247), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -398793,7 +403618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5792), 38, + ACTIONS(6245), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -398832,15 +403657,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [78441] = 5, + [79055] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3421), 1, + STATE(3429), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4667), 9, + ACTIONS(6255), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -398849,9 +403674,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4669), 37, + ACTIONS(6253), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -398864,17 +403689,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -398888,17 +403711,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [78502] = 6, + anon_sym_do, + anon_sym_else, + [79116] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6146), 1, - anon_sym_LPAREN2, - STATE(3422), 1, + STATE(3430), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6267), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -398907,7 +403730,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 37, + ACTIONS(6265), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -398919,12 +403743,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -398940,20 +403767,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [78565] = 5, + [79177] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3423), 1, + STATE(3431), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5798), 8, + ACTIONS(6458), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -398962,7 +403786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5796), 38, + ACTIONS(6456), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -399001,15 +403825,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [78626] = 5, + [79238] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3424), 1, + STATE(3432), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5806), 8, + ACTIONS(6071), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -399018,7 +403842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5804), 38, + ACTIONS(6069), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -399057,15 +403881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [78687] = 5, + [79299] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3425), 1, + STATE(3433), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5814), 8, + ACTIONS(6291), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -399074,7 +403898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5812), 38, + ACTIONS(6289), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -399113,21 +403937,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [78748] = 8, + [79360] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(6840), 1, - anon_sym_DASH_GT, - STATE(3426), 1, + STATE(3434), 1, sym_heredoc_body, - STATE(9857), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(6287), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -399136,8 +403954,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 34, + ACTIONS(6285), 38, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -399148,11 +403967,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -399168,19 +403991,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [78815] = 5, + [79421] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3427), 1, + STATE(3435), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4619), 9, + ACTIONS(5973), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -399189,9 +404010,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4621), 37, + ACTIONS(5971), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -399204,17 +404025,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -399228,15 +404047,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [78876] = 5, + anon_sym_do, + anon_sym_else, + [79482] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3428), 1, + STATE(3436), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5822), 8, + ACTIONS(6279), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -399245,7 +404066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5820), 38, + ACTIONS(6277), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -399284,15 +404105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [78937] = 5, + [79543] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3429), 1, + STATE(3437), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5713), 8, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -399301,7 +404122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 38, + ACTIONS(6309), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -399340,15 +404161,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [78998] = 5, + [79604] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3430), 1, + STATE(3438), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5842), 8, + ACTIONS(5861), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -399357,7 +404178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5840), 38, + ACTIONS(5859), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -399396,15 +404217,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [79059] = 5, + [79665] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3431), 1, + STATE(3439), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(5893), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -399413,7 +404234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5868), 38, + ACTIONS(5891), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -399452,15 +404273,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [79120] = 5, + [79726] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3432), 1, + STATE(3440), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5903), 8, + ACTIONS(4676), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -399469,9 +404290,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5901), 38, + anon_sym_EQ, + ACTIONS(4678), 37, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [79787] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3441), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4660), 9, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4662), 37, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [79848] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3442), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4688), 9, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4690), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -399484,15 +404417,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -399506,17 +404441,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [79181] = 5, + [79909] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3433), 1, + STATE(3443), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5907), 8, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -399525,7 +404458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5905), 38, + ACTIONS(6329), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -399564,15 +404497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [79242] = 5, + [79970] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3434), 1, + STATE(3444), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5911), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -399581,7 +404514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5909), 38, + ACTIONS(6333), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -399620,15 +404553,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [79303] = 5, + [80031] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3435), 1, + STATE(3445), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4696), 9, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4698), 37, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [80092] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3446), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5915), 8, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -399637,7 +404626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5913), 38, + ACTIONS(6337), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -399676,35 +404665,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [79364] = 11, + [80153] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6768), 1, - anon_sym_LBRACK, - ACTIONS(6770), 1, - anon_sym_STAR, - ACTIONS(6774), 1, - anon_sym_DOT, - ACTIONS(6776), 1, - anon_sym_QMARK, - ACTIONS(6842), 1, - anon_sym_PIPE, - STATE(3436), 1, + STATE(3447), 1, sym_heredoc_body, - STATE(3440), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(4700), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4605), 33, + ACTIONS(4702), 37, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -399723,9 +404702,12 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -399736,17 +404718,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [79437] = 5, + [80214] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3437), 1, + STATE(3448), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5746), 8, + ACTIONS(5989), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -399755,7 +404738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5744), 38, + ACTIONS(5987), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -399794,15 +404777,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [79498] = 5, + [80275] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3438), 1, + STATE(3449), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4635), 9, + ACTIONS(6183), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -399811,8 +404794,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4637), 37, + ACTIONS(6181), 38, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -399823,16 +404807,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -399846,95 +404831,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [79559] = 11, + [80336] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6746), 1, - anon_sym_LBRACK, - ACTIONS(6748), 1, - anon_sym_STAR, - ACTIONS(6752), 1, - anon_sym_DOT, - ACTIONS(6754), 1, - anon_sym_QMARK, - ACTIONS(6823), 1, - anon_sym_PIPE, - STATE(3370), 1, - aux_sym_union_type_repeat1, - STATE(3439), 1, + STATE(3450), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4639), 7, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4641), 33, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [79632] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6842), 1, anon_sym_PIPE, - STATE(3440), 1, - sym_heredoc_body, - STATE(3441), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4582), 8, - anon_sym_DOT_DOT, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 36, + ACTIONS(6341), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -399947,16 +404865,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -399970,28 +404887,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [79697] = 6, + anon_sym_do, + anon_sym_else, + [80397] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6844), 1, - anon_sym_PIPE, + STATE(3451), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3441), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(6207), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 36, + ACTIONS(6205), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -400004,16 +404921,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -400027,36 +404943,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [79760] = 11, + anon_sym_do, + anon_sym_else, + [80458] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6768), 1, - anon_sym_LBRACK, - ACTIONS(6770), 1, - anon_sym_STAR, - ACTIONS(6774), 1, - anon_sym_DOT, - ACTIONS(6776), 1, - anon_sym_QMARK, - ACTIONS(6842), 1, - anon_sym_PIPE, - STATE(3440), 1, - aux_sym_union_type_repeat1, - STATE(3442), 1, + STATE(3452), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(6227), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4609), 33, + anon_sym_DOT, + ACTIONS(6225), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -400069,6 +404977,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -400087,38 +404996,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [79833] = 11, + anon_sym_do, + anon_sym_else, + [80519] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6768), 1, - anon_sym_LBRACK, - ACTIONS(6770), 1, - anon_sym_STAR, - ACTIONS(6774), 1, - anon_sym_DOT, - ACTIONS(6776), 1, - anon_sym_QMARK, - ACTIONS(6842), 1, - anon_sym_PIPE, - STATE(3440), 1, - aux_sym_union_type_repeat1, - STATE(3443), 1, + STATE(3453), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(5559), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 33, + anon_sym_DOT, + ACTIONS(5557), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -400135,6 +405037,7 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -400149,17 +405052,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [79906] = 5, + anon_sym_do, + [80580] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3444), 1, + STATE(3454), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4643), 9, + ACTIONS(5574), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -400168,8 +405074,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4645), 37, + ACTIONS(5572), 38, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -400180,16 +405087,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + sym__string_literal_start, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -400200,22 +405108,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [79967] = 5, + anon_sym_do, + [80641] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3445), 1, + STATE(3455), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5968), 8, + ACTIONS(6271), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -400224,7 +405130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5966), 38, + ACTIONS(6269), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -400263,15 +405169,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [80028] = 5, + [80702] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3446), 1, + STATE(3456), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 9, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -400281,7 +405187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4595), 37, + ACTIONS(4785), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -400298,8 +405204,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -400319,15 +405225,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [80089] = 5, + [80763] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3447), 1, + STATE(3457), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5972), 8, + ACTIONS(6275), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -400336,7 +405242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5970), 38, + ACTIONS(6273), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -400375,15 +405281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [80150] = 5, + [80824] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3448), 1, + STATE(3458), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5648), 8, + ACTIONS(6307), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -400392,7 +405298,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5646), 38, + ACTIONS(6305), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -400404,13 +405311,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -400426,20 +405335,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [80211] = 5, + [80885] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3449), 1, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(6880), 1, + anon_sym_DASH_GT, + STATE(3459), 1, sym_heredoc_body, + STATE(9796), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6028), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -400448,9 +405360,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6026), 38, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4785), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -400461,15 +405372,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -400485,17 +405392,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [80272] = 5, + anon_sym_when, + anon_sym_in, + [80952] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3450), 1, + STATE(3460), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6446), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -400504,7 +405413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 38, + ACTIONS(6444), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -400543,15 +405452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [80333] = 5, + [81013] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3451), 1, + STATE(3461), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5850), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -400560,7 +405469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5848), 38, + ACTIONS(6349), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -400599,15 +405508,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [80394] = 5, + [81074] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3452), 1, + STATE(3462), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5854), 8, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -400616,7 +405525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5852), 38, + ACTIONS(5694), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -400655,15 +405564,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [80455] = 5, + [81135] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3453), 1, + STATE(3463), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6076), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -400672,7 +405581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6074), 38, + ACTIONS(5545), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -400711,15 +405620,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [80516] = 5, + [81196] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3454), 1, + STATE(3464), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6086), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -400728,7 +405637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6084), 38, + ACTIONS(6353), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -400767,15 +405676,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [80577] = 5, + [81257] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3455), 1, + STATE(3465), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -400784,7 +405693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5872), 38, + ACTIONS(6317), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -400823,15 +405732,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [80638] = 5, + [81318] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3456), 1, + STATE(3466), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6098), 8, + ACTIONS(6160), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -400840,7 +405749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6096), 38, + ACTIONS(6158), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -400879,15 +405788,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [80699] = 5, + [81379] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3457), 1, + STATE(3467), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6102), 8, + ACTIONS(6367), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -400896,7 +405805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6100), 38, + ACTIONS(6365), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -400935,15 +405844,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [80760] = 5, + [81440] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3458), 1, + ACTIONS(5961), 1, + anon_sym_LPAREN2, + STATE(3468), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6268), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -400952,8 +405863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6266), 38, - sym__line_break, + ACTIONS(135), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -400965,15 +405875,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -400989,17 +405896,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, anon_sym_else, - [80821] = 5, + anon_sym_when, + anon_sym_in, + [81503] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3459), 1, + STATE(3469), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6122), 8, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -401008,7 +405918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6120), 38, + ACTIONS(6369), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -401047,15 +405957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [80882] = 5, + [81564] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3460), 1, + STATE(3470), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5887), 8, + ACTIONS(6379), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -401064,7 +405974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5885), 38, + ACTIONS(6377), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -401103,15 +406013,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [80943] = 5, + [81625] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3461), 1, + STATE(3471), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5891), 8, + ACTIONS(5777), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -401120,7 +406030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5889), 38, + ACTIONS(5775), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -401159,19 +406069,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [81004] = 7, + [81686] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6701), 1, - sym__start_of_index_operator, - STATE(3462), 1, + STATE(3472), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5895), 7, + ACTIONS(6171), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -401179,9 +406085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5893), 37, + anon_sym_DOT, + ACTIONS(6169), 38, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -401217,87 +406125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [81069] = 21, + [81747] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5923), 1, - anon_sym_DOT_DOT, - ACTIONS(6677), 1, - anon_sym_PIPE, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6683), 1, - anon_sym_EQ_EQ, - ACTIONS(6689), 1, - anon_sym_AMP_STAR, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6697), 1, - anon_sym_AMP_AMP, - ACTIONS(6699), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, - sym__start_of_index_operator, - ACTIONS(6707), 1, - sym_binary_ampersand, - STATE(3463), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6681), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6687), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6685), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6703), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6705), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5921), 15, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - anon_sym_do, - anon_sym_else, - [81162] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3464), 1, + STATE(3473), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5935), 8, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -401306,7 +406142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5933), 38, + ACTIONS(6385), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -401345,15 +406181,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [81223] = 5, + [81808] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3465), 1, + STATE(3474), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5945), 8, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -401362,7 +406198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5943), 38, + ACTIONS(6199), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -401401,15 +406237,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [81284] = 5, + [81869] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3466), 1, + STATE(3475), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6130), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -401418,7 +406254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6128), 38, + ACTIONS(6389), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -401457,15 +406293,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [81345] = 5, + [81930] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3467), 1, + STATE(3476), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -401474,7 +406310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5955), 38, + ACTIONS(6393), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -401513,15 +406349,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [81406] = 5, + [81991] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3468), 1, + STATE(3477), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5976), 8, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -401530,7 +406366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5974), 38, + ACTIONS(6397), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -401569,15 +406405,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [81467] = 5, + [82052] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3469), 1, + STATE(3478), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5980), 8, + ACTIONS(6410), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -401586,7 +406422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5978), 38, + ACTIONS(6408), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -401625,15 +406461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [81528] = 5, + [82113] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3470), 1, + STATE(3479), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5984), 8, + ACTIONS(6414), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -401642,7 +406478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5982), 38, + ACTIONS(6412), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -401681,15 +406517,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [81589] = 5, + [82174] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3471), 1, + STATE(3480), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5996), 8, + ACTIONS(6418), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -401698,7 +406534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5994), 38, + ACTIONS(6416), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -401737,19 +406573,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [81650] = 7, + [82235] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6701), 1, - sym__start_of_index_operator, - STATE(3472), 1, + STATE(3481), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6000), 7, + ACTIONS(4692), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -401757,67 +406589,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5998), 37, - sym__line_break, - sym__start_of_brace_block, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [81715] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6693), 1, anon_sym_DOT, - ACTIONS(6701), 1, - sym__start_of_index_operator, - STATE(3473), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6004), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6002), 37, + anon_sym_EQ, + ACTIONS(4694), 37, sym__line_break, - sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -401829,15 +406605,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -401851,17 +406629,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [81780] = 5, + [82296] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3474), 1, + STATE(3482), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6142), 8, + ACTIONS(6422), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -401870,7 +406646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6140), 38, + ACTIONS(6420), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -401909,15 +406685,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [81841] = 5, + [82357] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3475), 1, + STATE(3483), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6150), 8, + ACTIONS(4704), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -401926,9 +406702,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6148), 38, + anon_sym_EQ, + ACTIONS(4706), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -401941,15 +406717,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -401963,74 +406741,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [81902] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6847), 1, - anon_sym_of, - STATE(3476), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5660), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5656), 37, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [81965] = 5, + [82418] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3477), 1, + STATE(3484), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(6187), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -402039,7 +406758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6419), 38, + ACTIONS(6185), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -402078,15 +406797,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [82026] = 5, + [82479] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3478), 1, + STATE(3485), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6184), 8, + ACTIONS(6426), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -402095,7 +406814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6182), 38, + ACTIONS(6424), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -402134,15 +406853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [82087] = 5, + [82540] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3479), 1, + STATE(3486), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6020), 8, + ACTIONS(6430), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -402151,7 +406870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6018), 38, + ACTIONS(6428), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -402190,15 +406909,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [82148] = 5, + [82601] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3480), 1, + STATE(3487), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6024), 8, + ACTIONS(6434), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -402207,7 +406926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6022), 38, + ACTIONS(6432), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -402246,17 +406965,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [82209] = 6, + [82662] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6849), 1, - sym_regex_modifier, - STATE(3481), 1, + STATE(3488), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(6438), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -402265,7 +406982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 37, + ACTIONS(6436), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -402277,12 +406995,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -402298,20 +407019,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [82272] = 5, + [82723] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3482), 1, + STATE(3489), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6188), 8, + ACTIONS(6223), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -402320,7 +407038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6186), 38, + ACTIONS(6221), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -402359,15 +407077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [82333] = 5, + [82784] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3483), 1, + STATE(3490), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6196), 8, + ACTIONS(5965), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -402376,7 +407094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6194), 38, + ACTIONS(5963), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -402415,15 +407133,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [82394] = 5, + [82845] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3484), 1, + STATE(3491), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6200), 8, + ACTIONS(6211), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -402432,7 +407150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6198), 38, + ACTIONS(6209), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -402471,15 +407189,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [82455] = 5, + [82906] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3485), 1, + STATE(3492), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5536), 8, + ACTIONS(6005), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -402488,8 +407206,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5534), 38, + ACTIONS(6003), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -402507,7 +407226,6 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -402522,20 +407240,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_else, - [82516] = 5, + [82967] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3486), 1, + STATE(3493), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5953), 8, + ACTIONS(5801), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -402544,7 +407262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5951), 38, + ACTIONS(5799), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -402583,15 +407301,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [82577] = 5, + [83028] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3487), 1, + STATE(3494), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4627), 9, + ACTIONS(5917), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -402600,8 +407318,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4629), 37, + ACTIONS(5915), 38, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -402612,16 +407331,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -402635,19 +407355,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [82638] = 5, + [83089] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3488), 1, + STATE(3495), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6264), 8, + ACTIONS(5943), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -402656,7 +407374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6262), 38, + ACTIONS(5941), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -402695,15 +407413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [82699] = 5, + [83150] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3489), 1, + STATE(3496), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(5955), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -402712,7 +407430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 38, + ACTIONS(5953), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -402751,15 +407469,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [82760] = 5, + [83211] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3490), 1, + STATE(3497), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -402768,7 +407486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 38, + ACTIONS(6195), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -402807,15 +407525,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [82821] = 5, + [83272] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3491), 1, + STATE(3498), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -402824,7 +407542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 38, + ACTIONS(6249), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -402863,15 +407581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [82882] = 5, + [83333] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3492), 1, + STATE(3499), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6134), 8, + ACTIONS(6164), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -402880,7 +407598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6132), 38, + ACTIONS(6162), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -402919,15 +407637,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [82943] = 5, + [83394] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3493), 1, + STATE(3500), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4659), 9, + ACTIONS(4664), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -402937,7 +407655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4661), 37, + ACTIONS(4666), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -402975,17 +407693,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [83004] = 6, + [83455] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6851), 1, - sym_regex_modifier, - STATE(3494), 1, + STATE(3501), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -402994,7 +407710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 37, + ACTIONS(6357), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -403006,12 +407723,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -403027,20 +407747,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [83067] = 5, + [83516] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3495), 1, + STATE(3502), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -403049,7 +407766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 38, + ACTIONS(5545), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -403088,19 +407805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [83128] = 7, + [83577] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6819), 1, - anon_sym_COLON_COLON, - STATE(3323), 1, - aux_sym_constant_repeat1, - STATE(3496), 1, + STATE(3503), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 9, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -403109,8 +407822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 35, + ACTIONS(5871), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -403123,13 +407835,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -403140,77 +407856,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [83193] = 5, + anon_sym_else, + [83638] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3497), 1, + ACTIONS(6063), 1, + anon_sym_DOT_DOT, + ACTIONS(6752), 1, + anon_sym_PIPE, + ACTIONS(6754), 1, + anon_sym_CARET, + ACTIONS(6758), 1, + anon_sym_EQ_EQ, + ACTIONS(6764), 1, + anon_sym_AMP_STAR, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6772), 1, + anon_sym_AMP_AMP, + ACTIONS(6774), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6776), 1, + sym__start_of_index_operator, + ACTIONS(6782), 1, + sym_binary_ampersand, + STATE(3504), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4647), 9, - anon_sym_DOT_DOT, + ACTIONS(6756), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6762), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6766), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6750), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4649), 37, - sym__start_of_index_operator, + ACTIONS(6760), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6778), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6780), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(6061), 15, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [83254] = 5, + [83731] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3498), 1, + STATE(3505), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -403219,7 +407950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 38, + ACTIONS(5871), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -403258,15 +407989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [83315] = 5, + [83792] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3499), 1, + STATE(3506), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -403275,7 +408006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 38, + ACTIONS(5875), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -403314,15 +408045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [83376] = 5, + [83853] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3500), 1, + STATE(3507), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(4688), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -403331,9 +408062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 38, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4690), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -403344,17 +408074,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -403368,17 +408097,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [83437] = 5, + anon_sym_when, + anon_sym_in, + [83914] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3501), 1, + ACTIONS(6882), 1, + sym_regex_modifier, + STATE(3508), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6212), 8, + ACTIONS(5769), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -403387,8 +408120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6210), 38, - sym__line_break, + ACTIONS(5767), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -403400,15 +408132,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -403424,17 +408153,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, anon_sym_else, - [83498] = 5, + anon_sym_when, + anon_sym_in, + [83977] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3502), 1, + STATE(3509), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6216), 8, + ACTIONS(5559), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -403443,9 +408175,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6214), 38, + ACTIONS(5557), 38, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -403463,6 +408194,7 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -403477,20 +408209,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_else, - [83559] = 5, + [84038] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3503), 1, + ACTIONS(6884), 1, + sym_regex_modifier, + STATE(3510), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -403499,8 +408233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 38, - sym__line_break, + ACTIONS(5660), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -403512,15 +408245,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -403536,17 +408266,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, anon_sym_else, - [83620] = 5, + anon_sym_when, + anon_sym_in, + [84101] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3504), 1, + STATE(3511), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4671), 9, + ACTIONS(4680), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -403556,7 +408289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4673), 37, + ACTIONS(4682), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -403594,26 +408327,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [83681] = 5, + [84162] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3505), 1, + ACTIONS(6876), 1, + anon_sym_PIPE, + STATE(3512), 1, sym_heredoc_body, + STATE(3513), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6238), 8, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6236), 38, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4636), 36, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -403624,17 +408359,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -403648,28 +408381,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [83742] = 5, + anon_sym_when, + anon_sym_in, + [84227] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3506), 1, - sym_heredoc_body, + ACTIONS(6886), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6254), 8, + STATE(3513), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6252), 38, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4629), 36, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -403680,17 +408416,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -403704,17 +408438,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [83803] = 5, + anon_sym_when, + anon_sym_in, + [84290] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3507), 1, + STATE(3514), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6260), 8, + ACTIONS(5708), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -403723,8 +408459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6258), 38, - sym__line_break, + ACTIONS(5706), 38, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -403736,15 +408471,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + sym__string_literal_start, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -403760,27 +408493,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, anon_sym_else, - [83864] = 5, + anon_sym_when, + anon_sym_in, + [84351] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3508), 1, + ACTIONS(6789), 1, + anon_sym_LBRACK, + ACTIONS(6791), 1, + anon_sym_STAR, + ACTIONS(6793), 1, + anon_sym_DOT, + ACTIONS(6795), 1, + anon_sym_QMARK, + ACTIONS(6876), 1, + anon_sym_PIPE, + STATE(3512), 1, + aux_sym_union_type_repeat1, + STATE(3515), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4623), 9, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4625), 37, + ACTIONS(4625), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -403794,13 +408540,10 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -403811,22 +408554,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [83925] = 5, + [84424] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3509), 1, + STATE(3516), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(5853), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -403835,7 +408577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 38, + ACTIONS(5851), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -403874,26 +408616,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [83986] = 5, + [84485] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3510), 1, + ACTIONS(6789), 1, + anon_sym_LBRACK, + ACTIONS(6791), 1, + anon_sym_STAR, + ACTIONS(6793), 1, + anon_sym_DOT, + ACTIONS(6795), 1, + anon_sym_QMARK, + ACTIONS(6876), 1, + anon_sym_PIPE, + STATE(3512), 1, + aux_sym_union_type_repeat1, + STATE(3517), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6272), 8, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6270), 38, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4607), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -403904,15 +408655,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -403925,20 +408672,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [84047] = 5, + anon_sym_when, + anon_sym_in, + [84558] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3511), 1, + ACTIONS(6889), 1, + anon_sym_of, + STATE(3518), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6276), 8, + ACTIONS(5739), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -403947,8 +408697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6274), 38, - sym__line_break, + ACTIONS(5735), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -403960,15 +408709,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -403984,17 +408730,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, anon_sym_else, - [84108] = 5, + anon_sym_when, + anon_sym_in, + [84621] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3512), 1, + ACTIONS(6891), 1, + sym_regex_modifier, + STATE(3519), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6280), 8, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -404003,8 +408754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6278), 38, - sym__line_break, + ACTIONS(5741), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -404016,15 +408766,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -404040,17 +408787,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, anon_sym_else, - [84169] = 5, + anon_sym_when, + anon_sym_in, + [84684] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3513), 1, + STATE(3520), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6284), 8, + ACTIONS(5574), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -404059,9 +408809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6282), 38, + ACTIONS(5572), 38, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -404079,6 +408828,7 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -404093,20 +408843,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_else, - [84230] = 5, + [84745] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3514), 1, + ACTIONS(6893), 1, + sym_regex_modifier, + STATE(3521), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6288), 8, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -404115,8 +408867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6286), 38, - sym__line_break, + ACTIONS(5747), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -404128,15 +408879,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -404152,17 +408900,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, anon_sym_else, - [84291] = 5, + anon_sym_when, + anon_sym_in, + [84808] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3515), 1, + ACTIONS(6895), 1, + anon_sym_of, + STATE(3522), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(5757), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -404171,9 +408924,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4599), 37, - sym__line_break, + ACTIONS(5753), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -404184,19 +408936,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -404210,19 +408957,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [84352] = 7, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [84871] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6819), 1, - anon_sym_COLON_COLON, - STATE(3324), 1, - aux_sym_constant_repeat1, - STATE(3516), 1, + STATE(3523), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 9, + ACTIONS(4652), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -404232,9 +408980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4555), 35, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4654), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -404246,11 +408992,14 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, + anon_sym_end, anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, @@ -404262,27 +409011,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [84417] = 8, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [84932] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(519), 1, - sym__start_of_brace_block, - STATE(3517), 1, + STATE(3524), 1, sym_heredoc_body, - STATE(4159), 1, - sym_do_end_block, - STATE(4168), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(4638), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -404291,8 +409035,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 35, - sym__line_break, + anon_sym_EQ, + ACTIONS(4640), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -404303,15 +409048,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -404326,16 +409069,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [84484] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [84993] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3518), 1, + STATE(3525), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6292), 8, + ACTIONS(4672), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -404344,9 +409091,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6290), 38, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4674), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -404357,17 +409103,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -404381,17 +409126,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [84545] = 5, + anon_sym_when, + anon_sym_in, + [85054] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3519), 1, + STATE(3526), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6224), 8, + ACTIONS(5857), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -404400,7 +409147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6222), 38, + ACTIONS(5855), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -404439,17 +409186,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [84606] = 6, + [85115] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6853), 1, - anon_sym_of, - STATE(3520), 1, + STATE(3527), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5690), 8, + ACTIONS(4656), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -404458,8 +409203,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5686), 37, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4658), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -404473,11 +409218,13 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -404492,21 +409239,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [84669] = 6, + [85176] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6855), 1, + ACTIONS(6897), 1, anon_sym_of, - STATE(3521), 1, + STATE(3528), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5702), 8, + ACTIONS(5725), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -404515,7 +409261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5698), 37, + ACTIONS(5721), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -404553,15 +409299,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [84732] = 5, + [85239] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3522), 1, + ACTIONS(6899), 1, + anon_sym_of, + STATE(3529), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4651), 9, + ACTIONS(5733), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -404570,9 +409318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4653), 37, - sym__line_break, + ACTIONS(5729), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -404583,19 +409330,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -404609,15 +409351,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [84793] = 5, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [85302] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3523), 1, + STATE(3530), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4615), 9, + ACTIONS(5909), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -404626,9 +409373,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4617), 37, + ACTIONS(5907), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -404641,17 +409388,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -404665,25 +409410,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [84854] = 5, + anon_sym_do, + anon_sym_else, + [85363] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3524), 1, + ACTIONS(6789), 1, + anon_sym_LBRACK, + ACTIONS(6791), 1, + anon_sym_STAR, + ACTIONS(6793), 1, + anon_sym_DOT, + ACTIONS(6795), 1, + anon_sym_QMARK, + ACTIONS(6876), 1, + anon_sym_PIPE, + STATE(3512), 1, + aux_sym_union_type_repeat1, + STATE(3531), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(4668), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4599), 37, + ACTIONS(4670), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -404697,13 +409454,10 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -404714,22 +409468,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [84915] = 5, + [85436] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3525), 1, + STATE(3532), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4663), 9, + ACTIONS(5969), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -404738,9 +409491,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4665), 37, + ACTIONS(5967), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -404753,17 +409506,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -404777,15 +409528,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [84976] = 5, + anon_sym_do, + anon_sym_else, + [85497] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3526), 1, + STATE(3533), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4675), 9, + ACTIONS(5885), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -404794,9 +409547,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4677), 37, + ACTIONS(5883), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -404809,17 +409562,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -404833,15 +409584,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [85037] = 5, + anon_sym_do, + anon_sym_else, + [85558] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3527), 1, + STATE(3534), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4679), 9, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -404850,9 +409603,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4681), 37, + ACTIONS(5741), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -404865,17 +409618,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -404889,15 +409640,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [85098] = 5, + anon_sym_do, + anon_sym_else, + [85619] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3528), 1, + STATE(3535), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6234), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -404906,7 +409659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6232), 38, + ACTIONS(5995), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -404945,15 +409698,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [85159] = 5, + [85680] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3529), 1, + STATE(3536), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4631), 9, + ACTIONS(5897), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -404962,9 +409715,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4633), 37, + ACTIONS(5895), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -404977,17 +409730,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -405001,139 +409752,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [85220] = 6, + anon_sym_do, + anon_sym_else, + [85741] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3440), 1, - aux_sym_union_type_repeat1, - STATE(3530), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4586), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 36, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, + ACTIONS(6676), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, + ACTIONS(6678), 1, anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [85283] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6857), 1, - anon_sym_of, - STATE(3531), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5719), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, + ACTIONS(6682), 1, anon_sym_DOT, - ACTIONS(5715), 37, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(6684), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [85346] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3532), 1, + ACTIONS(6872), 1, + anon_sym_PIPE, + STATE(3537), 1, sym_heredoc_body, + STATE(3545), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4655), 9, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4657), 37, + ACTIONS(4650), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -405152,12 +409801,9 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -405168,18 +409814,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [85407] = 5, + [85814] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3533), 1, + STATE(3538), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4635), 9, + ACTIONS(5901), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -405188,9 +409833,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4637), 37, + ACTIONS(5899), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -405203,17 +409848,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -405227,15 +409870,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [85468] = 5, + anon_sym_do, + anon_sym_else, + [85875] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3534), 1, + STATE(3539), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4643), 9, + ACTIONS(6013), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -405244,9 +409889,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4645), 37, + ACTIONS(6011), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -405259,17 +409904,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -405283,15 +409926,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [85529] = 5, + anon_sym_do, + anon_sym_else, + [85936] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3535), 1, + STATE(3540), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4627), 9, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -405300,9 +409945,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4629), 37, + ACTIONS(6098), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -405315,17 +409960,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -405339,15 +409982,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [85590] = 5, + anon_sym_do, + anon_sym_else, + [85997] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3536), 1, + STATE(3541), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4659), 9, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -405356,9 +410001,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4661), 37, + ACTIONS(135), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -405371,17 +410016,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -405395,15 +410038,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [85651] = 5, + anon_sym_do, + anon_sym_else, + [86058] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3537), 1, + STATE(3542), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6308), 8, + ACTIONS(5849), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -405412,7 +410057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6306), 38, + ACTIONS(5847), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -405451,15 +410096,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [85712] = 5, + [86119] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3538), 1, + STATE(3543), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6316), 8, + ACTIONS(5570), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -405468,7 +410113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6314), 38, + ACTIONS(5568), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -405507,15 +410152,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [85773] = 5, + [86180] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3539), 1, + STATE(3544), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6304), 8, + ACTIONS(4716), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -405524,9 +410169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6302), 38, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4718), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -405537,17 +410181,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -405561,27 +410204,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [85834] = 5, + anon_sym_when, + anon_sym_in, + [86241] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3540), 1, + ACTIONS(6872), 1, + anon_sym_PIPE, + STATE(3545), 1, sym_heredoc_body, + STATE(3546), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4667), 9, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4669), 37, + ACTIONS(4636), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -405592,14 +410241,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, anon_sym_CARET, @@ -405615,30 +410266,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [85895] = 5, + [86306] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3541), 1, - sym_heredoc_body, + ACTIONS(6901), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6246), 8, + STATE(3546), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6244), 38, + anon_sym_EQ, + ACTIONS(4629), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -405651,15 +410300,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -405673,27 +410323,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [85956] = 5, + [86369] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3542), 1, + ACTIONS(6676), 1, + anon_sym_LBRACK, + ACTIONS(6678), 1, + anon_sym_STAR, + ACTIONS(6682), 1, + anon_sym_DOT, + ACTIONS(6684), 1, + anon_sym_QMARK, + ACTIONS(6872), 1, + anon_sym_PIPE, + STATE(3545), 1, + aux_sym_union_type_repeat1, + STATE(3547), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4619), 9, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4621), 37, + ACTIONS(4625), 33, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -405704,16 +410363,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -405724,34 +410383,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [86017] = 11, + [86442] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6768), 1, + ACTIONS(6676), 1, anon_sym_LBRACK, - ACTIONS(6770), 1, + ACTIONS(6678), 1, anon_sym_STAR, - ACTIONS(6774), 1, + ACTIONS(6682), 1, anon_sym_DOT, - ACTIONS(6776), 1, + ACTIONS(6684), 1, anon_sym_QMARK, - ACTIONS(6842), 1, + ACTIONS(6872), 1, anon_sym_PIPE, - STATE(3440), 1, + STATE(3545), 1, aux_sym_union_type_repeat1, - STATE(3543), 1, + STATE(3548), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4683), 7, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -405759,7 +410413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4685), 33, + ACTIONS(4607), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -405793,15 +410447,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [86090] = 5, + [86515] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3544), 1, + STATE(3549), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6250), 8, + ACTIONS(5837), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -405810,7 +410464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6248), 38, + ACTIONS(5835), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -405849,21 +410503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [86151] = 8, + [86576] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(519), 1, - sym__start_of_brace_block, - STATE(3545), 1, + STATE(3550), 1, sym_heredoc_body, - STATE(4018), 1, - sym_do_end_block, - STATE(4028), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(5865), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -405872,8 +410520,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 35, + ACTIONS(5863), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -405886,6 +410535,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -405908,36 +410558,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [86218] = 11, + anon_sym_else, + [86637] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6768), 1, - anon_sym_LBRACK, - ACTIONS(6770), 1, - anon_sym_STAR, - ACTIONS(6774), 1, - anon_sym_DOT, - ACTIONS(6776), 1, - anon_sym_QMARK, - ACTIONS(6842), 1, - anon_sym_PIPE, - STATE(3440), 1, - aux_sym_union_type_repeat1, - STATE(3546), 1, + STATE(3551), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4639), 7, + ACTIONS(6059), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4641), 33, + anon_sym_DOT, + ACTIONS(6057), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -405950,6 +410591,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -405968,17 +410610,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [86291] = 5, + anon_sym_do, + anon_sym_else, + [86698] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3547), 1, + STATE(3552), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(6470), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -405987,7 +410632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 38, + ACTIONS(6468), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -406026,15 +410671,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [86352] = 5, + [86759] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3548), 1, + STATE(3553), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -406043,7 +410688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 38, + ACTIONS(5903), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -406082,15 +410727,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [86413] = 5, + [86820] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3549), 1, + STATE(3554), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6328), 8, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -406099,7 +410744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6326), 38, + ACTIONS(6381), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -406138,15 +410783,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [86474] = 5, + [86881] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3550), 1, + ACTIONS(6904), 1, + anon_sym_of, + STATE(3555), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6332), 8, + ACTIONS(5714), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -406155,8 +410802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6330), 38, - sym__line_break, + ACTIONS(5710), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -406168,15 +410814,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -406192,17 +410835,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, anon_sym_else, - [86535] = 5, + anon_sym_when, + anon_sym_in, + [86944] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3551), 1, + ACTIONS(6906), 1, + anon_sym_of, + STATE(3556), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6336), 8, + ACTIONS(5651), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -406211,8 +410859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6334), 38, - sym__line_break, + ACTIONS(5647), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -406224,15 +410871,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -406248,17 +410892,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, anon_sym_else, - [86596] = 5, + anon_sym_when, + anon_sym_in, + [87007] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3552), 1, + STATE(3557), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6340), 8, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -406267,7 +410914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6338), 38, + ACTIONS(5747), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -406306,15 +410953,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [86657] = 5, + [87068] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3553), 1, + STATE(3558), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6344), 8, + ACTIONS(6450), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -406323,7 +410970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6342), 38, + ACTIONS(6448), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -406362,21 +411009,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [86718] = 8, + [87129] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(519), 1, - sym__start_of_brace_block, - STATE(3554), 1, + STATE(3559), 1, sym_heredoc_body, - STATE(4041), 1, - sym_do_end_block, - STATE(4050), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(5805), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -406385,8 +411026,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 35, + ACTIONS(5803), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -406399,6 +411041,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -406421,15 +411064,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [86785] = 5, + anon_sym_else, + [87190] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3555), 1, + STATE(3560), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6296), 8, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -406438,7 +411082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6294), 38, + ACTIONS(5785), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -406477,15 +411121,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [86846] = 5, + [87251] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3556), 1, + STATE(3561), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -406494,7 +411138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 38, + ACTIONS(5785), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -406533,15 +411177,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [86907] = 5, + [87312] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3557), 1, + STATE(3562), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5685), 9, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_COLON2, + ACTIONS(5683), 37, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [87373] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3563), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(5921), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -406550,7 +411250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 38, + ACTIONS(5919), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -406589,15 +411289,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [86968] = 5, + [87434] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3558), 1, + STATE(3564), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6324), 8, + ACTIONS(5927), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -406606,7 +411306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6322), 38, + ACTIONS(5925), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -406645,15 +411345,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [87029] = 5, + [87495] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3559), 1, + STATE(3565), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(5931), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -406662,7 +411362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 38, + ACTIONS(5929), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -406701,15 +411401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [87090] = 5, + [87556] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3560), 1, + STATE(3566), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(5935), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -406718,7 +411418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 38, + ACTIONS(5933), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -406757,15 +411457,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [87151] = 5, + [87617] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3561), 1, + STATE(3567), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -406774,7 +411474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6360), 38, + ACTIONS(5937), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -406813,174 +411513,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [87212] = 23, + [87678] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6671), 1, - anon_sym_DOT_DOT, - ACTIONS(6673), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6677), 1, - anon_sym_PIPE, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6683), 1, - anon_sym_EQ_EQ, - ACTIONS(6689), 1, - anon_sym_AMP_STAR, - ACTIONS(6693), 1, + ACTIONS(6789), 1, + anon_sym_LBRACK, + ACTIONS(6791), 1, + anon_sym_STAR, + ACTIONS(6793), 1, anon_sym_DOT, - ACTIONS(6695), 1, + ACTIONS(6795), 1, anon_sym_QMARK, - ACTIONS(6697), 1, - anon_sym_AMP_AMP, - ACTIONS(6699), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, - sym__start_of_index_operator, - ACTIONS(6707), 1, - sym_binary_ampersand, - STATE(3562), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6681), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6687), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6685), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6703), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6705), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6358), 13, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - anon_sym_do, - anon_sym_else, - [87309] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6671), 1, - anon_sym_DOT_DOT, - ACTIONS(6673), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6677), 1, + ACTIONS(6876), 1, anon_sym_PIPE, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6683), 1, - anon_sym_EQ_EQ, - ACTIONS(6689), 1, - anon_sym_AMP_STAR, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6695), 1, - anon_sym_QMARK, - ACTIONS(6697), 1, - anon_sym_AMP_AMP, - ACTIONS(6699), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, - sym__start_of_index_operator, - ACTIONS(6707), 1, - sym_binary_ampersand, - STATE(3563), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6681), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6687), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6685), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6703), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6705), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6364), 13, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - anon_sym_do, - anon_sym_else, - [87406] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3564), 1, + STATE(3512), 1, + aux_sym_union_type_repeat1, + STATE(3568), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6372), 8, + ACTIONS(4684), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6370), 38, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4686), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -406991,15 +411552,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -407012,20 +411569,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [87467] = 5, + anon_sym_when, + anon_sym_in, + [87751] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3565), 1, + STATE(3569), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6376), 8, + ACTIONS(5947), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -407034,7 +411592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6374), 38, + ACTIONS(5945), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -407073,15 +411631,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [87528] = 5, + [87812] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3566), 1, + STATE(3570), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6380), 8, + ACTIONS(5821), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -407090,7 +411648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6378), 38, + ACTIONS(5819), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -407129,15 +411687,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [87589] = 5, + [87873] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3567), 1, + STATE(3571), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6384), 8, + ACTIONS(4696), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -407146,9 +411704,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6382), 38, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4698), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -407159,17 +411716,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -407183,17 +411739,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [87650] = 5, + anon_sym_when, + anon_sym_in, + [87934] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3568), 1, + STATE(3572), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6388), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -407202,7 +411760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6386), 38, + ACTIONS(6098), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -407241,15 +411799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [87711] = 5, + [87995] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3569), 1, + STATE(3573), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6392), 8, + ACTIONS(4700), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -407258,9 +411816,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6390), 38, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4702), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -407271,17 +411828,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -407295,17 +411851,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, - [87772] = 5, + anon_sym_when, + anon_sym_in, + [88056] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3570), 1, + STATE(3574), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6396), 8, + ACTIONS(6106), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -407314,7 +411872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6394), 38, + ACTIONS(6104), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -407353,15 +411911,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [87833] = 5, + [88117] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3571), 1, + STATE(3575), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6348), 8, + ACTIONS(6114), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -407370,7 +411928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6346), 38, + ACTIONS(6112), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -407409,71 +411967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [87894] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3572), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4593), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4595), 37, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [87955] = 5, + [88178] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3573), 1, + STATE(3576), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6404), 8, + ACTIONS(6118), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -407482,7 +411984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6402), 38, + ACTIONS(6116), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -407521,15 +412023,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [88016] = 5, + [88239] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3574), 1, + STATE(3577), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6410), 8, + ACTIONS(6122), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -407538,7 +412040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6408), 38, + ACTIONS(6120), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -407577,71 +412079,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [88077] = 5, + [88300] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3575), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6352), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6350), 38, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [88138] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3576), 1, + STATE(3578), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(5645), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -407650,8 +412096,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6415), 38, - sym__line_break, + anon_sym_COLON2, + ACTIONS(5643), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -407663,15 +412109,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -407684,20 +412127,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [88199] = 5, + anon_sym_when, + anon_sym_in, + [88361] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3577), 1, + STATE(3579), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4651), 9, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -407707,7 +412153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4653), 37, + ACTIONS(4644), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -407745,87 +412191,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [88260] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5941), 1, - anon_sym_DOT_DOT, - ACTIONS(6677), 1, - anon_sym_PIPE, - ACTIONS(6679), 1, - anon_sym_CARET, - ACTIONS(6683), 1, - anon_sym_EQ_EQ, - ACTIONS(6689), 1, - anon_sym_AMP_STAR, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6697), 1, - anon_sym_AMP_AMP, - ACTIONS(6699), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6701), 1, - sym__start_of_index_operator, - ACTIONS(6707), 1, - sym_binary_ampersand, - STATE(3578), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6681), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6687), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6691), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6675), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6685), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6703), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6705), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5939), 15, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - anon_sym_do, - anon_sym_else, - [88353] = 5, + [88422] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3579), 1, + STATE(3580), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6368), 8, + ACTIONS(6126), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -407834,7 +412208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6366), 38, + ACTIONS(6124), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -407873,63 +412247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [88414] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3580), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4615), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4617), 37, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [88475] = 5, + [88483] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3581), 1, @@ -407937,7 +412255,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5810), 8, + ACTIONS(5845), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -407946,7 +412264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5808), 38, + ACTIONS(5843), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -407985,7 +412303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [88536] = 5, + [88544] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3582), 1, @@ -407993,7 +412311,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6400), 8, + ACTIONS(6179), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -408002,7 +412320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6398), 38, + ACTIONS(6177), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -408041,7 +412359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [88597] = 5, + [88605] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3583), 1, @@ -408049,7 +412367,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5818), 8, + ACTIONS(6363), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -408058,7 +412376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5816), 38, + ACTIONS(6361), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -408097,15 +412415,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [88658] = 5, + [88666] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + STATE(3545), 1, + aux_sym_union_type_repeat1, STATE(3584), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5738), 8, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -408114,9 +412434,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5736), 38, + anon_sym_EQ, + ACTIONS(4629), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -408129,15 +412449,16 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -408151,9 +412472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [88719] = 5, + [88729] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3585), 1, @@ -408161,7 +412480,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5742), 8, + ACTIONS(6454), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -408170,7 +412489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5740), 38, + ACTIONS(6452), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -408209,7 +412528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [88780] = 5, + [88790] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3586), 1, @@ -408217,7 +412536,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5846), 8, + ACTIONS(6466), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -408226,7 +412545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5844), 38, + ACTIONS(6464), 38, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -408265,7 +412584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_else, - [88841] = 5, + [88851] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3587), 1, @@ -408273,7 +412592,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -408282,9 +412601,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5947), 38, + anon_sym_EQ, + ACTIONS(4644), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -408297,15 +412616,17 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -408319,9 +412640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - [88902] = 5, + [88912] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3588), 1, @@ -408329,7 +412648,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4655), 9, + ACTIONS(6303), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -408338,8 +412657,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4657), 37, + ACTIONS(6301), 38, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -408350,16 +412670,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -408373,11 +412694,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [88963] = 5, + [88973] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3589), 1, @@ -408385,7 +412704,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5830), 8, + ACTIONS(6406), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -408394,7 +412713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5828), 37, + ACTIONS(6404), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -408406,12 +412726,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -408427,12 +412750,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [89023] = 5, + [89034] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3590), 1, @@ -408440,7 +412760,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(6130), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -408449,9 +412769,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 36, + ACTIONS(6128), 38, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -408486,8 +412806,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_else, - [89083] = 5, + [89095] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3591), 1, @@ -408495,7 +412816,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6332), 8, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -408504,7 +412825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6330), 37, + ACTIONS(6321), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -408516,12 +412838,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -408537,24 +412862,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [89143] = 7, + [89156] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6859), 1, - anon_sym_COMMA, + ACTIONS(479), 1, + sym__start_of_brace_block, + ACTIONS(6865), 1, + anon_sym_do, STATE(3592), 1, sym_heredoc_body, - STATE(3617), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + STATE(4619), 2, + sym_do_end_block, + sym_brace_block, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -408563,7 +412888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 35, + ACTIONS(5551), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -408577,12 +412902,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -408598,8 +412923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [89207] = 5, + [89223] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3593), 1, @@ -408607,7 +412931,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6336), 8, + ACTIONS(4708), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -408616,8 +412940,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6334), 37, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4710), 37, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -408631,11 +412955,13 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -408650,86 +412976,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [89267] = 25, + [89284] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6861), 1, - anon_sym_COMMA, - ACTIONS(6863), 1, - anon_sym_DOT_DOT, - ACTIONS(6865), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6869), 1, - anon_sym_PIPE, - ACTIONS(6871), 1, - anon_sym_CARET, - ACTIONS(6875), 1, - anon_sym_EQ_EQ, - ACTIONS(6881), 1, - anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6887), 1, - anon_sym_QMARK, - ACTIONS(6889), 1, - anon_sym_AMP_AMP, - ACTIONS(6891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, - sym__start_of_index_operator, - ACTIONS(6899), 1, - sym_binary_ampersand, STATE(3594), 1, sym_heredoc_body, - STATE(3626), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6879), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, + ACTIONS(6051), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6877), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6895), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6049), 38, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6897), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5585), 10, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - [89367] = 5, + anon_sym_else, + [89345] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3595), 1, @@ -408737,7 +413043,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5953), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -408746,7 +413052,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5951), 37, + ACTIONS(6189), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -408758,12 +413065,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -408779,12 +413089,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [89427] = 5, + [89406] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3596), 1, @@ -408792,7 +413099,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6340), 8, + ACTIONS(6075), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -408801,7 +413108,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6338), 37, + ACTIONS(6073), 38, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -408813,12 +413121,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -408834,20 +413145,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [89487] = 5, + [89467] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(6867), 1, + anon_sym_COLON_COLON, + STATE(3343), 1, + aux_sym_constant_repeat1, STATE(3597), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6224), 8, + ACTIONS(4584), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -408856,7 +413168,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6222), 37, + anon_sym_EQ, + ACTIONS(4586), 35, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -408869,13 +413183,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -408886,23 +413199,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [89547] = 5, + anon_sym_then, + [89532] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(6908), 1, + anon_sym_COMMA, STATE(3598), 1, sym_heredoc_body, + STATE(3632), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6234), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -408911,7 +413226,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6232), 37, + ACTIONS(5587), 35, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -408923,12 +413239,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -408944,20 +413261,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [89607] = 5, + [89596] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(6481), 1, + anon_sym_LPAREN2, STATE(3599), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5961), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -408966,8 +413281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5959), 37, - sym__start_of_brace_block, + ACTIONS(135), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -408978,12 +413293,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -408999,20 +413317,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [89667] = 5, + [89658] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(6618), 1, + anon_sym_COLON, STATE(3600), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6016), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -409021,7 +413337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6014), 37, + ACTIONS(135), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -409033,12 +413350,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -409054,20 +413373,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [89727] = 5, + [89720] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(6910), 1, + anon_sym_COMMA, STATE(3601), 1, sym_heredoc_body, + STATE(3607), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6126), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -409076,8 +413395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6124), 37, - sym__start_of_brace_block, + ACTIONS(5587), 35, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -409088,12 +413407,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -409109,20 +413430,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [89787] = 5, + [89784] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(6912), 1, + anon_sym_EQ, STATE(3602), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6246), 8, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -409131,7 +413450,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6244), 37, + ACTIONS(5761), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -409143,12 +413463,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -409164,24 +413486,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [89847] = 6, + [89846] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6901), 1, - anon_sym_COLON_COLON, + STATE(3603), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3603), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4561), 10, - anon_sym_RBRACK, + ACTIONS(6375), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -409190,8 +413504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4563), 33, + ACTIONS(6373), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -409204,11 +413517,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -409219,26 +413534,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [89909] = 7, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [89906] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6904), 1, - anon_sym_COLON_COLON, - STATE(3603), 1, - aux_sym_constant_repeat1, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6910), 1, + anon_sym_COMMA, + ACTIONS(6914), 1, + anon_sym_DOT_DOT, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_CARET, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6936), 1, + anon_sym_QMARK, + ACTIONS(6938), 1, + anon_sym_AMP_AMP, + ACTIONS(6940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, STATE(3604), 1, sym_heredoc_body, + STATE(3607), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4557), 10, - anon_sym_RBRACK, + ACTIONS(6924), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6944), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6946), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5587), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + [90006] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6950), 1, + anon_sym_COMMA, + STATE(3605), 1, + sym_heredoc_body, + STATE(3637), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -409247,9 +413638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4559), 33, - sym__start_of_brace_block, + ACTIONS(5631), 35, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -409260,12 +413650,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -409276,21 +413670,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [89973] = 5, + anon_sym_else, + [90070] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3605), 1, + ACTIONS(6643), 1, + anon_sym_COLON, + STATE(3606), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6164), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -409299,8 +413693,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6162), 37, - sym__start_of_brace_block, + ACTIONS(135), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -409311,12 +413705,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -409332,24 +413729,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [90033] = 7, + [90132] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6861), 1, + ACTIONS(6950), 1, anon_sym_COMMA, - STATE(3606), 1, + STATE(3607), 1, sym_heredoc_body, - STATE(3628), 1, + STATE(3642), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -409358,9 +413751,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 35, + ACTIONS(5631), 35, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -409373,6 +413765,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -409393,16 +413786,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [90097] = 5, + anon_sym_else, + [90196] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3607), 1, + STATE(3608), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6160), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -409411,7 +413804,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6158), 37, + anon_sym_EQ, + ACTIONS(4785), 36, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -409428,7 +413822,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -409449,15 +413842,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [90157] = 5, + [90256] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3608), 1, + ACTIONS(1619), 1, + sym__string_literal_start, + STATE(3609), 1, + sym_heredoc_body, + STATE(3612), 1, + aux_sym_chained_string_repeat1, + STATE(4595), 1, + sym_string, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5541), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5539), 34, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [90322] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3610), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5512), 8, + ACTIONS(6291), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -409466,7 +413917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 37, + ACTIONS(6289), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -409504,15 +413955,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [90217] = 5, + [90382] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3609), 1, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(6952), 1, + anon_sym_DASH_GT, + STATE(3611), 1, sym_heredoc_body, + STATE(9916), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6192), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -409521,8 +413978,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6190), 37, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4785), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -409536,9 +413993,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -409555,23 +414010,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [90277] = 7, + [90448] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6906), 1, - anon_sym_COMMA, - STATE(3610), 1, - sym_heredoc_body, - STATE(3617), 1, - aux_sym_argument_list_no_parens_repeat1, + ACTIONS(6954), 1, + sym__string_literal_start, + STATE(4595), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + STATE(3612), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5534), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -409580,7 +414035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 35, + ACTIONS(5532), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -409594,12 +414049,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -409615,16 +414070,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [90341] = 5, + [90512] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3611), 1, + STATE(3613), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6250), 8, + ACTIONS(6446), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -409633,7 +414087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6248), 37, + ACTIONS(6444), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -409671,15 +414125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [90401] = 5, + [90572] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3612), 1, + STATE(3614), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6296), 8, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -409688,7 +414142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6294), 37, + ACTIONS(5694), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -409726,15 +414180,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [90461] = 5, + [90632] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3613), 1, + STATE(3615), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6324), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -409743,7 +414197,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6322), 37, + anon_sym_EQ, + ACTIONS(4785), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -409755,12 +414211,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -409776,20 +414234,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [90521] = 5, + [90692] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3614), 1, + ACTIONS(6957), 1, + anon_sym_COLON_COLON, + STATE(3616), 1, sym_heredoc_body, + STATE(3617), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6268), 8, + ACTIONS(4584), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -409798,7 +414257,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6266), 37, + anon_sym_EQ, + ACTIONS(4586), 33, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -409811,13 +414271,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -409828,23 +414286,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [90581] = 5, + [90756] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3615), 1, + ACTIONS(6957), 1, + anon_sym_COLON_COLON, + STATE(3617), 1, sym_heredoc_body, + STATE(3619), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6172), 8, + ACTIONS(4594), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -409853,7 +414314,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6170), 37, + anon_sym_EQ, + ACTIONS(4596), 33, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -409866,13 +414328,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -409883,23 +414343,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [90641] = 5, + [90820] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3616), 1, + ACTIONS(6957), 1, + anon_sym_COLON_COLON, + STATE(3618), 1, sym_heredoc_body, + STATE(3620), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4561), 9, + ACTIONS(4594), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -409909,8 +414372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4563), 36, - sym__line_break, + ACTIONS(4596), 33, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -409923,7 +414385,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -409939,25 +414400,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON_COLON, anon_sym_LPAREN2, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [90701] = 6, + [90884] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6908), 1, - anon_sym_COMMA, + ACTIONS(6959), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3617), 2, + STATE(3619), 2, sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5713), 8, + aux_sym_constant_repeat1, + ACTIONS(4598), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -409966,8 +414427,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 35, - sym__line_break, + anon_sym_EQ, + ACTIONS(4600), 33, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -409978,16 +414440,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -409998,19 +414456,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [90763] = 5, + anon_sym_do, + [90946] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3618), 1, + ACTIONS(6957), 1, + anon_sym_COLON_COLON, + STATE(3619), 1, + aux_sym_constant_repeat1, + STATE(3620), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6348), 8, + ACTIONS(4590), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -410019,7 +414484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6346), 37, + anon_sym_EQ, + ACTIONS(4592), 33, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -410032,13 +414498,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -410049,23 +414513,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [90823] = 5, + [91010] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3619), 1, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(6962), 1, + anon_sym_DASH_GT, + STATE(3621), 1, + sym_heredoc_body, + STATE(10315), 1, + aux_sym_proc_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4783), 9, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4785), 33, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [91076] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3622), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6176), 8, + ACTIONS(6179), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -410074,7 +414594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6174), 37, + ACTIONS(6177), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -410112,15 +414632,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [90883] = 5, + [91136] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3620), 1, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(6962), 1, + anon_sym_DASH_GT, + STATE(3623), 1, sym_heredoc_body, + STATE(10315), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -410129,8 +414655,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5878), 37, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4785), 33, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -410141,12 +414668,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -410162,20 +414690,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [90943] = 5, + [91202] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3621), 1, + STATE(3624), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6180), 8, + ACTIONS(5829), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -410184,7 +414707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6178), 37, + ACTIONS(5827), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -410222,15 +414745,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [91003] = 5, + [91262] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3622), 1, + ACTIONS(6561), 1, + anon_sym_LPAREN2, + STATE(3625), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5648), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -410239,8 +414764,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5646), 37, + ACTIONS(135), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -410253,12 +414779,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -410276,16 +414800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [91063] = 5, + anon_sym_do, + [91324] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3623), 1, + ACTIONS(6964), 1, + sym_regex_modifier, + STATE(3626), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(5769), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -410294,8 +414820,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 36, + ACTIONS(5767), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -410307,11 +414833,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -410327,20 +414856,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [91123] = 5, + [91386] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3624), 1, + ACTIONS(6966), 1, + sym_regex_modifier, + STATE(3627), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6208), 8, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -410349,7 +414876,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6206), 37, + ACTIONS(5660), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -410361,12 +414889,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -410382,20 +414912,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [91183] = 5, + [91448] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3625), 1, + ACTIONS(6968), 1, + anon_sym_COMMA, + STATE(3628), 1, sym_heredoc_body, + STATE(3647), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6352), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -410404,7 +414934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6350), 37, + ACTIONS(5587), 35, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -410416,12 +414947,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -410437,24 +414969,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [91243] = 7, + [91512] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6911), 1, - anon_sym_COMMA, - STATE(3626), 1, + STATE(3629), 1, sym_heredoc_body, - STATE(3628), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -410463,8 +414987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 35, - sym__line_break, + ACTIONS(5551), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -410476,13 +414999,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -410498,16 +415020,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [91307] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [91572] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3627), 1, + STATE(3630), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5838), 8, + ACTIONS(6462), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -410516,7 +415042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5836), 37, + ACTIONS(6460), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -410554,18 +415080,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [91367] = 6, + [91632] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6913), 1, + ACTIONS(6970), 1, anon_sym_COMMA, + STATE(3631), 1, + sym_heredoc_body, + STATE(3633), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3628), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5713), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -410574,7 +415101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 35, + ACTIONS(5631), 35, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -410610,15 +415137,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [91429] = 5, + [91696] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3629), 1, + ACTIONS(6970), 1, + anon_sym_COMMA, + STATE(3632), 1, sym_heredoc_body, + STATE(3661), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -410627,7 +415158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 37, + ACTIONS(5631), 35, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -410639,12 +415171,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -410660,22 +415193,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [91489] = 6, + [91760] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6916), 1, - sym_regex_modifier, - STATE(3630), 1, + ACTIONS(6972), 1, + anon_sym_COMMA, + STATE(3633), 1, sym_heredoc_body, + STATE(3661), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -410684,8 +415215,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 36, + ACTIONS(5637), 35, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -410698,13 +415230,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -410720,71 +415250,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [91551] = 5, + anon_sym_do, + [91824] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3631), 1, + ACTIONS(6908), 1, + anon_sym_COMMA, + ACTIONS(6974), 1, + anon_sym_DOT_DOT, + ACTIONS(6976), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6980), 1, + anon_sym_PIPE, + ACTIONS(6982), 1, + anon_sym_CARET, + ACTIONS(6986), 1, + anon_sym_EQ_EQ, + ACTIONS(6992), 1, + anon_sym_AMP_STAR, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(6998), 1, + anon_sym_QMARK, + ACTIONS(7000), 1, + anon_sym_AMP_AMP, + ACTIONS(7002), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7004), 1, + sym__start_of_index_operator, + ACTIONS(7010), 1, + sym_binary_ampersand, + STATE(3632), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3634), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6368), 8, - anon_sym_DOT_DOT, + ACTIONS(6984), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6990), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6994), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6978), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6366), 37, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6988), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7008), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5587), 10, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_do, + [91924] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6970), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + ACTIONS(6974), 1, + anon_sym_DOT_DOT, + ACTIONS(6976), 1, anon_sym_DOT_DOT_DOT, - anon_sym_end, + ACTIONS(6980), 1, + anon_sym_PIPE, + ACTIONS(6982), 1, anon_sym_CARET, + ACTIONS(6986), 1, + anon_sym_EQ_EQ, + ACTIONS(6992), 1, + anon_sym_AMP_STAR, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(6998), 1, + anon_sym_QMARK, + ACTIONS(7000), 1, + anon_sym_AMP_AMP, + ACTIONS(7002), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7004), 1, + sym__start_of_index_operator, + ACTIONS(7010), 1, + sym_binary_ampersand, + STATE(3633), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3635), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6984), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6990), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(6994), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6978), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6988), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + ACTIONS(7006), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7008), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5631), 10, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [91611] = 5, + [92024] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3632), 1, + STATE(3636), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6344), 8, + ACTIONS(5708), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -410793,7 +415418,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6342), 37, + ACTIONS(5706), 37, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -410805,12 +415431,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + sym__string_literal_start, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -410826,20 +415455,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [91671] = 5, + [92084] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3633), 1, + ACTIONS(7012), 1, + anon_sym_COMMA, + STATE(3637), 1, sym_heredoc_body, + STATE(3642), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6220), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -410848,8 +415477,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6218), 37, - sym__start_of_brace_block, + ACTIONS(5637), 35, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -410860,12 +415489,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -410881,22 +415512,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [91731] = 6, + [92148] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6918), 1, - sym_regex_modifier, - STATE(3634), 1, + ACTIONS(7014), 1, + anon_sym_of, + STATE(3638), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(5739), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -410905,8 +415532,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 36, + ACTIONS(5735), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -410919,7 +415547,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -410941,74 +415568,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [91793] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(6920), 1, - anon_sym_DASH_GT, - STATE(3635), 1, - sym_heredoc_body, - STATE(10184), 1, - aux_sym_proc_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4743), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 33, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [91859] = 5, + anon_sym_do, + [92210] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3636), 1, + ACTIONS(1715), 1, + sym__string_literal_start, + STATE(3639), 1, sym_heredoc_body, + STATE(3649), 1, + aux_sym_chained_string_repeat1, + STATE(3931), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -411017,8 +415592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 37, - sym__start_of_brace_block, + ACTIONS(135), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -411050,20 +415624,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [91919] = 5, + [92276] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3637), 1, + ACTIONS(6481), 1, + anon_sym_LPAREN2, + ACTIONS(7016), 1, + anon_sym_EQ, + STATE(3640), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6400), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -411072,8 +415648,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6398), 37, - sym__start_of_brace_block, + ACTIONS(135), 35, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -411084,12 +415660,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -411105,20 +415683,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [91979] = 5, + [92340] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3638), 1, + ACTIONS(7018), 1, + sym_regex_modifier, + STATE(3641), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -411127,7 +415703,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 37, + ACTIONS(5741), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -411139,12 +415716,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -411160,26 +415739,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [92039] = 8, + [92402] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1701), 1, - sym__string_literal_start, - STATE(3639), 1, - sym_heredoc_body, - STATE(3767), 1, - aux_sym_chained_string_repeat1, - STATE(3839), 1, - sym_string, + ACTIONS(7020), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5490), 8, + STATE(3642), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -411188,7 +415760,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5488), 34, + ACTIONS(5694), 35, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -411199,12 +415772,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -411221,17 +415796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - anon_sym_when, - anon_sym_in, - [92105] = 5, + [92464] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3640), 1, + ACTIONS(7023), 1, + sym_regex_modifier, + STATE(3643), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5738), 8, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -411240,7 +415815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5736), 37, + ACTIONS(5747), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -411252,12 +415828,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -411273,25 +415851,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [92165] = 7, + [92526] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6904), 1, - anon_sym_COLON_COLON, - STATE(3603), 1, - aux_sym_constant_repeat1, - STATE(3641), 1, + STATE(3644), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 10, - anon_sym_RBRACK, + ACTIONS(5559), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -411300,9 +415869,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 33, - sym__start_of_brace_block, + anon_sym_COLON2, + ACTIONS(5557), 36, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -411314,11 +415882,14 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + sym__string_literal_start, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -411329,21 +415900,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [92229] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [92586] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3642), 1, + ACTIONS(7025), 1, + anon_sym_of, + STATE(3645), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6228), 8, + ACTIONS(5757), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -411352,7 +415926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6226), 37, + ACTIONS(5753), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -411364,12 +415939,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -411385,20 +415962,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [92289] = 5, + [92648] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3643), 1, + ACTIONS(7027), 1, + anon_sym_COMMA, + STATE(3646), 1, sym_heredoc_body, + STATE(3660), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -411407,7 +415984,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 37, + ACTIONS(5631), 35, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -411419,12 +415997,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -411440,20 +416019,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [92349] = 5, + [92712] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3644), 1, + ACTIONS(7027), 1, + anon_sym_COMMA, + STATE(3647), 1, sym_heredoc_body, + STATE(3661), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -411462,7 +416041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 37, + ACTIONS(5631), 35, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -411474,12 +416054,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -411495,20 +416076,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [92409] = 5, + [92776] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3645), 1, + STATE(3648), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -411517,7 +416094,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 37, + anon_sym_EQ, + ACTIONS(4600), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -411530,13 +416109,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -411547,23 +416125,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [92469] = 5, + anon_sym_then, + [92836] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3646), 1, + ACTIONS(1715), 1, + sym__string_literal_start, + STATE(3649), 1, sym_heredoc_body, + STATE(3654), 1, + aux_sym_chained_string_repeat1, + STATE(3931), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6264), 8, + ACTIONS(5541), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -411572,8 +416155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6262), 37, - sym__start_of_brace_block, + ACTIONS(5539), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -411605,76 +416187,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [92529] = 6, + [92902] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6922), 1, - anon_sym_of, - STATE(3647), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5702), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5698), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [92591] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3648), 1, + STATE(3650), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6300), 8, + ACTIONS(5574), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -411683,8 +416207,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6298), 37, - sym__start_of_brace_block, + anon_sym_COLON2, + ACTIONS(5572), 36, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -411696,6 +416220,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + sym__string_literal_start, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -411713,23 +416238,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [92651] = 5, + [92962] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3649), 1, + STATE(3651), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6316), 8, + ACTIONS(5783), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -411738,7 +416262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6314), 37, + ACTIONS(5781), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -411776,15 +416300,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [92711] = 5, + [93022] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3650), 1, + ACTIONS(7029), 1, + sym_regex_modifier, + STATE(3652), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5742), 8, + ACTIONS(5769), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -411793,8 +416319,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5740), 37, - sym__start_of_brace_block, + ACTIONS(5767), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -411805,12 +416331,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -411826,20 +416355,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [92771] = 5, + [93084] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3651), 1, + ACTIONS(7031), 1, + sym_regex_modifier, + STATE(3653), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5746), 8, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -411848,8 +416375,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5744), 37, - sym__start_of_brace_block, + ACTIONS(5660), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -411860,12 +416387,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -411881,20 +416411,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [92831] = 5, + [93146] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3652), 1, - sym_heredoc_body, + ACTIONS(7033), 1, + sym__string_literal_start, + STATE(3931), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5750), 8, + STATE(3654), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5534), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -411903,8 +416434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5748), 37, - sym__start_of_brace_block, + ACTIONS(5532), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -411936,22 +416466,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [92891] = 6, + [93210] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6504), 1, - anon_sym_LPAREN2, - STATE(3653), 1, + STATE(3655), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5708), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -411960,9 +416486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 36, + ACTIONS(5706), 37, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -411975,10 +416500,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -411996,16 +416523,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [92953] = 5, + anon_sym_else, + [93270] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3654), 1, + ACTIONS(7036), 1, + anon_sym_of, + STATE(3656), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5754), 8, + ACTIONS(5725), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -412014,7 +416543,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5752), 37, + ACTIONS(5721), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -412026,12 +416556,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -412047,20 +416579,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [93013] = 5, + [93332] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3655), 1, + ACTIONS(7038), 1, + sym_regex_modifier, + STATE(3657), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6312), 8, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -412069,8 +416599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6310), 37, - sym__start_of_brace_block, + ACTIONS(5741), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -412081,12 +416611,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -412102,25 +416635,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [93073] = 7, + [93394] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6904), 1, - anon_sym_COLON_COLON, - STATE(3604), 1, - aux_sym_constant_repeat1, - STATE(3656), 1, + ACTIONS(7040), 1, + sym_regex_modifier, + STATE(3658), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 10, - anon_sym_RBRACK, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -412129,9 +416655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 33, - sym__start_of_brace_block, + ACTIONS(5747), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -412142,12 +416667,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -412158,21 +416688,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [93137] = 5, + anon_sym_else, + [93456] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3657), 1, + ACTIONS(7042), 1, + anon_sym_of, + STATE(3659), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6044), 8, + ACTIONS(5733), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -412181,7 +416711,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6042), 37, + ACTIONS(5729), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -412193,12 +416724,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -412214,20 +416747,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [93197] = 5, + [93518] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3658), 1, + ACTIONS(7044), 1, + anon_sym_COMMA, + STATE(3660), 1, sym_heredoc_body, + STATE(3661), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -412236,7 +416769,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 37, + ACTIONS(5637), 35, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -412248,12 +416782,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -412269,20 +416804,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [93257] = 5, + [93582] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3659), 1, - sym_heredoc_body, + ACTIONS(7046), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5758), 8, + STATE(3661), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -412291,7 +416825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5756), 37, + ACTIONS(5694), 35, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -412303,12 +416838,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -412324,20 +416860,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [93317] = 5, + [93644] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3660), 1, + STATE(3662), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -412346,7 +416878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 37, + ACTIONS(135), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -412384,15 +416916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [93377] = 5, + [93704] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3661), 1, + STATE(3663), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5762), 8, + ACTIONS(5849), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -412401,7 +416933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5760), 37, + ACTIONS(5847), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -412439,15 +416971,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [93437] = 5, + [93764] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3662), 1, + STATE(3664), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(5865), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -412456,7 +416988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6360), 37, + ACTIONS(5863), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -412494,15 +417026,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [93497] = 5, + [93824] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3663), 1, + STATE(3665), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5766), 8, + ACTIONS(6303), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -412511,7 +417043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5764), 37, + ACTIONS(6301), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -412549,15 +417081,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [93557] = 5, + [93884] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3664), 1, + ACTIONS(1619), 1, + sym__string_literal_start, + STATE(3609), 1, + aux_sym_chained_string_repeat1, + STATE(3666), 1, sym_heredoc_body, + STATE(4595), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5770), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -412566,8 +417104,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5768), 37, - sym__start_of_brace_block, + ACTIONS(135), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -412578,12 +417116,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -412599,20 +417139,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [93617] = 5, + [93950] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3665), 1, + STATE(3667), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5536), 9, + ACTIONS(5943), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -412621,8 +417156,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_COLON2, - ACTIONS(5534), 36, + ACTIONS(5941), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -412634,7 +417169,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -412652,22 +417186,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [93677] = 5, + [94010] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3666), 1, + STATE(3668), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6060), 8, + ACTIONS(5993), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -412676,7 +417211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6058), 37, + ACTIONS(5991), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -412714,15 +417249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [93737] = 5, + [94070] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3667), 1, + STATE(3669), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6212), 8, + ACTIONS(5685), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -412731,8 +417266,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6210), 37, - sym__start_of_brace_block, + ACTIONS(5683), 37, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -412743,12 +417278,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -412761,25 +417299,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [93797] = 6, + [94130] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6924), 1, - sym_regex_modifier, - STATE(3668), 1, + STATE(3670), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5633), 8, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -412788,8 +417321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5631), 36, - sym__line_break, + ACTIONS(5983), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -412801,14 +417333,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -412824,16 +417354,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [93859] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [94190] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3669), 1, + STATE(3671), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5782), 8, + ACTIONS(6029), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -412842,7 +417376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5780), 37, + ACTIONS(6027), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -412880,17 +417414,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [93919] = 6, + [94250] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6586), 1, - anon_sym_COLON, - STATE(3670), 1, + STATE(3672), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6033), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -412899,8 +417431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 36, - sym__line_break, + ACTIONS(6031), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -412912,14 +417443,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -412935,16 +417464,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [93981] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [94310] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3671), 1, + STATE(3673), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6372), 8, + ACTIONS(6086), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -412953,7 +417486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6370), 37, + ACTIONS(6084), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -412991,90 +417524,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94041] = 25, + [94370] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6926), 1, - anon_sym_COMMA, - ACTIONS(6928), 1, - anon_sym_DOT_DOT, - ACTIONS(6930), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6950), 1, - anon_sym_QMARK, - ACTIONS(6952), 1, - anon_sym_AMP_AMP, - ACTIONS(6954), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(3592), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3672), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6958), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6960), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5570), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [94141] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3673), 1, + STATE(3674), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5774), 8, + ACTIONS(6096), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -413083,7 +417541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5772), 37, + ACTIONS(6094), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -413121,17 +417579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94201] = 6, + [94430] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6964), 1, - sym_regex_modifier, - STATE(3674), 1, + STATE(3675), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5679), 8, + ACTIONS(6110), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -413140,8 +417596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5677), 36, - sym__line_break, + ACTIONS(6108), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -413153,14 +417608,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -413176,18 +417629,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [94263] = 6, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [94490] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6623), 1, - anon_sym_COLON, - STATE(3675), 1, + STATE(3676), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6144), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -413196,8 +417651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 36, - sym__line_break, + ACTIONS(6142), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -413208,15 +417663,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -413232,16 +417684,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [94325] = 5, + anon_sym_when, + anon_sym_in, + [94550] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3676), 1, + ACTIONS(1267), 1, + anon_sym_COLON, + ACTIONS(5823), 1, + anon_sym_COLON_COLON, + STATE(2560), 1, + aux_sym_constant_repeat1, + STATE(3677), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5778), 8, + ACTIONS(4584), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -413250,8 +417712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5776), 37, - sym__start_of_brace_block, + ACTIONS(4586), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -413267,7 +417728,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -413280,23 +417740,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [94385] = 5, + [94616] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3677), 1, + ACTIONS(7049), 1, + anon_sym_of, + STATE(3678), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6376), 8, + ACTIONS(5714), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -413305,7 +417766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6374), 37, + ACTIONS(5710), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -413317,12 +417779,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -413338,20 +417802,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [94445] = 5, + [94678] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3678), 1, + ACTIONS(1715), 1, + sym__string_literal_start, + ACTIONS(7051), 1, + anon_sym_COLON, + STATE(3649), 1, + aux_sym_chained_string_repeat1, + STATE(3679), 1, sym_heredoc_body, + STATE(3931), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6216), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -413360,8 +417828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6214), 37, - sym__start_of_brace_block, + ACTIONS(135), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -413377,7 +417844,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -413393,20 +417859,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [94505] = 5, + [94746] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3679), 1, + STATE(3680), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(6223), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -413415,7 +417879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 37, + ACTIONS(6221), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -413453,15 +417917,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94565] = 5, + [94806] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3680), 1, + STATE(3681), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6380), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -413470,7 +417934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6378), 37, + ACTIONS(6249), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -413508,15 +417972,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94625] = 5, + [94866] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3681), 1, + STATE(3682), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6384), 8, + ACTIONS(5570), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -413525,7 +417989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6382), 37, + ACTIONS(5568), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -413563,15 +418027,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94685] = 5, + [94926] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3682), 1, + STATE(3683), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6388), 8, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -413580,7 +418044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6386), 37, + ACTIONS(5785), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -413618,15 +418082,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94745] = 5, + [94986] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3683), 1, + STATE(3684), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6392), 8, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -413635,7 +418099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6390), 37, + ACTIONS(5785), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -413673,15 +418137,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94805] = 5, + [95046] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3684), 1, + STATE(3685), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5802), 8, + ACTIONS(5809), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -413690,7 +418154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5800), 37, + ACTIONS(5807), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -413728,15 +418192,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94865] = 5, + [95106] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3685), 1, + STATE(3686), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6396), 8, + ACTIONS(5813), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -413745,7 +418209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6394), 37, + ACTIONS(5811), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -413783,17 +418247,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [94925] = 6, + [95166] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6966), 1, - anon_sym_of, - STATE(3686), 1, + STATE(3687), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5690), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -413802,8 +418264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5686), 36, - sym__line_break, + ACTIONS(5545), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -413815,14 +418276,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -413838,16 +418297,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [94987] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [95226] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3687), 1, + STATE(3688), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6404), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -413856,7 +418319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6402), 37, + ACTIONS(5545), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -413894,17 +418357,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95047] = 6, + [95286] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6968), 1, - anon_sym_of, - STATE(3688), 1, + STATE(3689), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5719), 8, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -413913,8 +418374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5715), 36, - sym__line_break, + ACTIONS(5871), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -413926,14 +418386,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -413949,16 +418407,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [95109] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [95346] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3689), 1, + STATE(3690), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5786), 8, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -413967,7 +418429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5784), 37, + ACTIONS(5871), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -414005,15 +418467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95169] = 5, + [95406] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3690), 1, + STATE(3691), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5790), 8, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -414022,7 +418484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5788), 37, + ACTIONS(5875), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -414060,15 +418522,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95229] = 5, + [95466] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3691), 1, + ACTIONS(7053), 1, + anon_sym_of, + STATE(3692), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6410), 8, + ACTIONS(5651), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -414077,7 +418541,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6408), 37, + ACTIONS(5647), 36, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [95528] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3693), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5885), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5883), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -414115,15 +418633,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95289] = 5, + [95588] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3692), 1, + STATE(3694), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5794), 8, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -414132,7 +418650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5792), 37, + ACTIONS(5741), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -414170,15 +418688,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95349] = 5, + [95648] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3693), 1, + STATE(3695), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5654), 8, + ACTIONS(5645), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -414187,7 +418705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5652), 37, + ACTIONS(5643), 37, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -414225,15 +418743,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [95409] = 5, + [95708] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3694), 1, + STATE(3696), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6238), 8, + ACTIONS(5897), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -414242,7 +418760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6236), 37, + ACTIONS(5895), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -414280,15 +418798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95469] = 5, + [95768] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3695), 1, + STATE(3697), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6254), 8, + ACTIONS(5901), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -414297,7 +418815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6252), 37, + ACTIONS(5899), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -414335,15 +418853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95529] = 5, + [95828] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3696), 1, + STATE(3698), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6260), 8, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -414352,7 +418870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6258), 37, + ACTIONS(5903), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -414390,21 +418908,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95589] = 8, + [95888] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1529), 1, - sym__string_literal_start, - STATE(3697), 1, + STATE(3699), 1, sym_heredoc_body, - STATE(3762), 1, - aux_sym_chained_string_repeat1, - STATE(4311), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5490), 8, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -414413,8 +418925,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5488), 34, - sym__line_break, + ACTIONS(5747), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -414425,14 +418937,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -414448,15 +418958,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [95655] = 5, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [95948] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3698), 1, + STATE(3700), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(5921), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -414465,7 +418980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 37, + ACTIONS(5919), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -414503,15 +419018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95715] = 5, + [96008] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3699), 1, + STATE(3701), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5798), 8, + ACTIONS(5927), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -414520,7 +419035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5796), 37, + ACTIONS(5925), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -414558,15 +419073,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95775] = 5, + [96068] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3700), 1, + ACTIONS(7055), 1, + anon_sym_of, + STATE(3702), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6272), 8, + ACTIONS(5757), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -414575,8 +419092,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6270), 37, - sym__start_of_brace_block, + ACTIONS(5753), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -414587,12 +419104,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -414608,20 +419128,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [95835] = 5, + [96130] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3701), 1, + STATE(3703), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6276), 8, + ACTIONS(5931), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -414630,7 +419146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6274), 37, + ACTIONS(5929), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -414668,15 +419184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95895] = 5, + [96190] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3702), 1, + STATE(3704), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6280), 8, + ACTIONS(5935), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -414685,7 +419201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6278), 37, + ACTIONS(5933), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -414723,15 +419239,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [95955] = 5, + [96250] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3703), 1, + ACTIONS(7057), 1, + anon_sym_of, + STATE(3705), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6284), 8, + ACTIONS(5733), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -414740,8 +419258,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6282), 37, - sym__start_of_brace_block, + ACTIONS(5729), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -414752,12 +419270,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -414773,24 +419294,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [96015] = 7, + [96312] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6970), 1, - anon_sym_COMMA, - STATE(3606), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3704), 1, + STATE(3706), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -414799,8 +419312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 35, - sym__line_break, + ACTIONS(5937), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -414812,13 +419324,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -414834,16 +419345,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [96079] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [96372] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3705), 1, + ACTIONS(7059), 1, + anon_sym_of, + STATE(3707), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6288), 8, + ACTIONS(5651), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -414852,8 +419369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6286), 37, - sym__start_of_brace_block, + ACTIONS(5647), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -414864,12 +419381,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -414885,20 +419405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [96139] = 5, + [96434] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3706), 1, + STATE(3708), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5947), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -414907,7 +419423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 37, + ACTIONS(5945), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -414945,15 +419461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96199] = 5, + [96494] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3707), 1, + STATE(3709), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5850), 8, + ACTIONS(6051), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -414962,7 +419478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5848), 37, + ACTIONS(6049), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -415000,15 +419516,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96259] = 5, + [96554] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3708), 1, + STATE(3710), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5806), 8, + ACTIONS(6075), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -415017,7 +419533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5804), 37, + ACTIONS(6073), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -415055,15 +419571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96319] = 5, + [96614] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3709), 1, + STATE(3711), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5854), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -415072,7 +419588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5852), 37, + ACTIONS(6098), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -415110,15 +419626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96379] = 5, + [96674] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3710), 1, + STATE(3712), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -415127,7 +419643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5872), 37, + ACTIONS(6098), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -415165,15 +419681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96439] = 5, + [96734] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3711), 1, + STATE(3713), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5814), 8, + ACTIONS(6106), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -415182,7 +419698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5812), 37, + ACTIONS(6104), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -415220,15 +419736,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96499] = 5, + [96794] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3712), 1, + STATE(3714), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6110), 8, + ACTIONS(6114), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -415237,7 +419753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6108), 37, + ACTIONS(6112), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -415275,15 +419791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96559] = 5, + [96854] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3713), 1, + STATE(3715), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6036), 8, + ACTIONS(6118), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -415292,7 +419808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6034), 37, + ACTIONS(6116), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -415330,15 +419846,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96619] = 5, + [96914] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3714), 1, + STATE(3716), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5822), 8, + ACTIONS(6122), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -415347,7 +419863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5820), 37, + ACTIONS(6120), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -415385,15 +419901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96679] = 5, + [96974] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3715), 1, + STATE(3717), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6040), 8, + ACTIONS(6126), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -415402,7 +419918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6038), 37, + ACTIONS(6124), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -415440,15 +419956,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96739] = 5, + [97034] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3716), 1, + STATE(3718), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 9, + ACTIONS(6130), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -415457,8 +419973,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4595), 36, + ACTIONS(6128), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -415476,7 +419992,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -415492,18 +420007,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [96799] = 5, + [97094] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3717), 1, + STATE(3719), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -415512,7 +420028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6415), 37, + ACTIONS(6189), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -415550,15 +420066,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96859] = 5, + [97154] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3718), 1, + STATE(3720), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6012), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -415567,7 +420083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6010), 37, + ACTIONS(6189), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -415605,21 +420121,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [96919] = 8, + [97214] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5481), 1, + STATE(3721), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6191), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6189), 37, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(6972), 1, - anon_sym_DASH_GT, - STATE(3719), 1, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [97274] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3722), 1, sym_heredoc_body, - STATE(10052), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -415628,8 +420193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 33, + ACTIONS(6189), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -415643,7 +420208,9 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -415660,18 +420227,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [96985] = 5, + [97334] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3720), 1, + STATE(3723), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6156), 8, + ACTIONS(6219), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -415680,7 +420248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6154), 37, + ACTIONS(6217), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -415718,19 +420286,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [97045] = 7, + [97394] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6859), 1, + STATE(3724), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6231), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6229), 37, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3610), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3721), 1, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [97454] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3725), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -415739,8 +420358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 35, - sym__line_break, + ACTIONS(6233), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -415751,14 +420370,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -415774,22 +420391,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [97109] = 8, + anon_sym_when, + anon_sym_in, + [97514] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1529), 1, - sym__string_literal_start, - STATE(3697), 1, - aux_sym_chained_string_repeat1, - STATE(3722), 1, + STATE(3726), 1, sym_heredoc_body, - STATE(4311), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -415798,8 +420413,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 34, - sym__line_break, + ACTIONS(6237), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -415810,14 +420425,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -415833,19 +420446,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [97175] = 7, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [97574] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6861), 1, + STATE(3727), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6243), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6241), 37, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3626), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3723), 1, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [97634] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3728), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6247), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -415854,8 +420523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 35, - sym__line_break, + ACTIONS(6245), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -415867,13 +420535,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -415889,16 +420556,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [97239] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [97694] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3724), 1, + STATE(3729), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6138), 8, + ACTIONS(6255), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -415907,7 +420578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6136), 37, + ACTIONS(6253), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -415945,15 +420616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [97299] = 5, + [97754] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3725), 1, + STATE(3730), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5834), 8, + ACTIONS(6267), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -415962,7 +420633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5832), 37, + ACTIONS(6265), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -416000,15 +420671,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [97359] = 5, + [97814] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3726), 1, + STATE(3731), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(6283), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -416017,7 +420688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5868), 37, + ACTIONS(6281), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -416055,15 +420726,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [97419] = 5, + [97874] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3727), 1, + STATE(3732), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5903), 8, + ACTIONS(6287), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -416072,7 +420743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5901), 37, + ACTIONS(6285), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -416110,17 +420781,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [97479] = 6, + [97934] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6974), 1, - anon_sym_of, - STATE(3728), 1, + STATE(3733), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5660), 8, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -416129,8 +420798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5656), 36, - sym__line_break, + ACTIONS(6309), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -416141,15 +420810,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -416165,245 +420831,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [97541] = 6, + anon_sym_when, + anon_sym_in, + [97994] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6976), 1, - anon_sym_of, - STATE(3729), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5728), 8, + ACTIONS(6974), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(6976), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6980), 1, anon_sym_PIPE, + ACTIONS(6982), 1, + anon_sym_CARET, + ACTIONS(6986), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(6992), 1, anon_sym_AMP_STAR, + ACTIONS(6996), 1, anon_sym_DOT, - ACTIONS(5724), 36, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(6998), 1, anon_sym_QMARK, + ACTIONS(7000), 1, anon_sym_AMP_AMP, + ACTIONS(7002), 1, anon_sym_PIPE_PIPE, - anon_sym_else, - [97603] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6978), 1, - anon_sym_of, - STATE(3730), 1, + ACTIONS(7004), 1, + sym__start_of_index_operator, + ACTIONS(7010), 1, + sym_binary_ampersand, + ACTIONS(7027), 1, + anon_sym_COMMA, + STATE(3660), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3734), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5690), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5686), 36, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, + ACTIONS(6984), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6990), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(6994), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_else, - [97665] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6980), 1, - anon_sym_EQ, - STATE(3731), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5670), 8, - anon_sym_DOT_DOT, + ACTIONS(6978), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5668), 36, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, + ACTIONS(6988), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_else, - [97727] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6982), 1, - anon_sym_COMMA, - STATE(3732), 1, - sym_heredoc_body, - STATE(3734), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5574), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5570), 35, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7008), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5631), 10, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_else, - [97791] = 7, + anon_sym_do, + [98094] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6984), 1, - anon_sym_COMMA, - STATE(3733), 1, - sym_heredoc_body, STATE(3735), 1, - aux_sym_argument_list_no_parens_repeat1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -416412,8 +420928,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 35, - sym__line_break, + ACTIONS(6333), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -416424,14 +420940,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -416447,20 +420961,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [97855] = 7, + anon_sym_when, + anon_sym_in, + [98154] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6984), 1, - anon_sym_COMMA, - STATE(3617), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3734), 1, + STATE(3736), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -416469,8 +420983,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 35, - sym__line_break, + ACTIONS(6337), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -416481,14 +420995,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -416504,20 +421016,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [97919] = 7, + anon_sym_when, + anon_sym_in, + [98214] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6986), 1, - anon_sym_COMMA, - STATE(3617), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3735), 1, + STATE(3737), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -416526,8 +421038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 35, - sym__line_break, + ACTIONS(6341), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -416538,14 +421050,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -416561,147 +421071,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [97983] = 25, + anon_sym_when, + anon_sym_in, + [98274] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, + ACTIONS(6768), 1, anon_sym_DOT, - ACTIONS(6928), 1, + ACTIONS(6914), 1, anon_sym_DOT_DOT, - ACTIONS(6930), 1, + ACTIONS(6916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6936), 1, + ACTIONS(6922), 1, anon_sym_CARET, - ACTIONS(6940), 1, + ACTIONS(6926), 1, anon_sym_EQ_EQ, - ACTIONS(6946), 1, + ACTIONS(6932), 1, anon_sym_AMP_STAR, - ACTIONS(6950), 1, - anon_sym_QMARK, - ACTIONS(6952), 1, - anon_sym_AMP_AMP, - ACTIONS(6954), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - ACTIONS(6982), 1, - anon_sym_COMMA, - STATE(3734), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3736), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6958), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6960), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5570), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [98083] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, - anon_sym_DOT_DOT, - ACTIONS(6930), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, ACTIONS(6936), 1, - anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6950), 1, anon_sym_QMARK, - ACTIONS(6952), 1, + ACTIONS(6938), 1, anon_sym_AMP_AMP, - ACTIONS(6954), 1, + ACTIONS(6940), 1, anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(6962), 1, + ACTIONS(6948), 1, sym_binary_ampersand, - ACTIONS(6984), 1, + ACTIONS(6950), 1, anon_sym_COMMA, - STATE(3735), 1, + STATE(3637), 1, aux_sym_argument_list_no_parens_repeat1, - STATE(3737), 1, + STATE(3738), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, + ACTIONS(6924), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, + ACTIONS(6934), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(6918), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, + ACTIONS(6928), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, + ACTIONS(6946), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5585), 10, + ACTIONS(5631), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -416712,15 +421151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [98183] = 5, + [98374] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3738), 1, + STATE(3739), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5907), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -416729,7 +421168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5905), 37, + ACTIONS(6349), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -416767,15 +421206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [98243] = 5, + [98434] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3739), 1, + STATE(3740), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -416784,7 +421223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 37, + ACTIONS(6353), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -416822,19 +421261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [98303] = 7, + [98494] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6988), 1, - anon_sym_COMMA, - STATE(3740), 1, + STATE(3741), 1, sym_heredoc_body, - STATE(3742), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(6367), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -416843,8 +421278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 35, - sym__line_break, + ACTIONS(6365), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -416856,13 +421290,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -416878,20 +421311,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [98367] = 7, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [98554] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6990), 1, - anon_sym_COMMA, - STATE(3741), 1, + STATE(3742), 1, sym_heredoc_body, - STATE(3743), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -416900,8 +421333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 35, - sym__line_break, + ACTIONS(6369), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -416913,13 +421345,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -416935,20 +421366,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [98431] = 7, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [98614] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6990), 1, - anon_sym_COMMA, - STATE(3628), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3742), 1, + STATE(3743), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6379), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -416957,8 +421388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 35, - sym__line_break, + ACTIONS(6377), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -416970,13 +421400,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -416992,20 +421421,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [98495] = 7, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [98674] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6992), 1, - anon_sym_COMMA, - STATE(3628), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3743), 1, + STATE(3744), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -417014,8 +421443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 35, - sym__line_break, + ACTIONS(6385), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -417027,13 +421455,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -417049,158 +421476,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [98559] = 25, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [98734] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6863), 1, - anon_sym_DOT_DOT, - ACTIONS(6865), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6869), 1, - anon_sym_PIPE, - ACTIONS(6871), 1, - anon_sym_CARET, - ACTIONS(6875), 1, - anon_sym_EQ_EQ, - ACTIONS(6881), 1, - anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6887), 1, - anon_sym_QMARK, - ACTIONS(6889), 1, - anon_sym_AMP_AMP, - ACTIONS(6891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, - sym__start_of_index_operator, - ACTIONS(6899), 1, - sym_binary_ampersand, - ACTIONS(6988), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3744), 1, + STATE(3745), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6879), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, + ACTIONS(6391), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6877), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6895), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6389), 37, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6897), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5570), 10, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_do, - [98659] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6863), 1, - anon_sym_DOT_DOT, - ACTIONS(6865), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - ACTIONS(6869), 1, - anon_sym_PIPE, - ACTIONS(6871), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(6875), 1, - anon_sym_EQ_EQ, - ACTIONS(6881), 1, - anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6887), 1, - anon_sym_QMARK, - ACTIONS(6889), 1, - anon_sym_AMP_AMP, - ACTIONS(6891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, - sym__start_of_index_operator, - ACTIONS(6899), 1, - sym_binary_ampersand, - ACTIONS(6990), 1, - anon_sym_COMMA, - STATE(3743), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3745), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6873), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6879), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6877), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6895), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6897), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5585), 10, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [98759] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [98794] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3746), 1, @@ -417208,7 +421544,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5911), 8, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -417217,7 +421553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5909), 37, + ACTIONS(6393), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -417255,7 +421591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [98819] = 5, + [98854] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3747), 1, @@ -417263,7 +421599,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5810), 8, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -417272,7 +421608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5808), 37, + ACTIONS(6397), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -417310,7 +421646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [98879] = 5, + [98914] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3748), 1, @@ -417318,7 +421654,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5826), 8, + ACTIONS(6410), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -417327,7 +421663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5824), 37, + ACTIONS(6408), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -417365,17 +421701,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [98939] = 6, + [98974] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6994), 1, - anon_sym_of, STATE(3749), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5728), 8, + ACTIONS(6414), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -417384,8 +421718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5724), 36, - sym__line_break, + ACTIONS(6412), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -417397,14 +421730,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -417420,8 +421751,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [99001] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [99034] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3750), 1, @@ -417429,7 +421764,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(6418), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -417438,7 +421773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5856), 37, + ACTIONS(6416), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -417476,21 +421811,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [99061] = 8, + [99094] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1701), 1, - sym__string_literal_start, - STATE(3639), 1, - aux_sym_chained_string_repeat1, STATE(3751), 1, sym_heredoc_body, - STATE(3839), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6422), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -417499,7 +421828,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 34, + ACTIONS(6420), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -417531,10 +421861,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [99127] = 5, + [99154] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3752), 1, @@ -417542,7 +421874,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5818), 8, + ACTIONS(6426), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -417551,7 +421883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5816), 37, + ACTIONS(6424), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -417589,7 +421921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [99187] = 5, + [99214] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3753), 1, @@ -417597,7 +421929,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5846), 8, + ACTIONS(6430), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -417606,7 +421938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5844), 37, + ACTIONS(6428), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -417644,7 +421976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [99247] = 5, + [99274] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3754), 1, @@ -417652,7 +421984,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5862), 8, + ACTIONS(6434), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -417661,7 +421993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5860), 37, + ACTIONS(6432), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -417699,7 +422031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [99307] = 5, + [99334] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3755), 1, @@ -417707,7 +422039,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5887), 8, + ACTIONS(6438), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -417716,7 +422048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5885), 37, + ACTIONS(6436), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -417754,7 +422086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [99367] = 5, + [99394] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3756), 1, @@ -417762,7 +422094,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5866), 8, + ACTIONS(5965), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -417771,7 +422103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5864), 37, + ACTIONS(5963), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -417809,7 +422141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [99427] = 5, + [99454] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3757), 1, @@ -417817,7 +422149,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(6005), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -417826,7 +422158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5947), 37, + ACTIONS(6003), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -417864,7 +422196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [99487] = 5, + [99514] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3758), 1, @@ -417872,7 +422204,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5713), 8, + ACTIONS(5801), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -417881,7 +422213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 37, + ACTIONS(5799), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -417919,17 +422251,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [99547] = 6, + [99574] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6996), 1, - anon_sym_EQ, STATE(3759), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, + ACTIONS(5917), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -417938,8 +422268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 36, - sym__line_break, + ACTIONS(5915), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -417951,14 +422280,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -417974,8 +422301,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [99609] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [99634] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3760), 1, @@ -417983,7 +422314,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5899), 8, + ACTIONS(5955), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -417992,7 +422323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5897), 37, + ACTIONS(5953), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -418030,7 +422361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [99669] = 5, + [99694] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(3761), 1, @@ -418038,7 +422369,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5919), 8, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -418047,7 +422378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5917), 37, + ACTIONS(6195), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -418085,129 +422416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [99729] = 7, + [99754] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6998), 1, - sym__string_literal_start, - STATE(4311), 1, - sym_string, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(3762), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5499), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5497), 34, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [99793] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6904), 1, - anon_sym_COLON_COLON, - STATE(3641), 1, - aux_sym_constant_repeat1, - STATE(3763), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4547), 10, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4549), 33, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [99857] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3764), 1, + STATE(3762), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5927), 8, + ACTIONS(6164), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -418216,7 +422433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5925), 37, + ACTIONS(6162), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -418254,15 +422471,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [99917] = 5, + [99814] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3765), 1, + STATE(3763), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5915), 8, + ACTIONS(5837), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -418271,7 +422488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5913), 37, + ACTIONS(5835), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -418309,15 +422526,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [99977] = 5, + [99874] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3766), 1, + STATE(3764), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5891), 8, + ACTIONS(6059), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -418326,7 +422543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5889), 37, + ACTIONS(6057), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -418364,20 +422581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [100037] = 7, + [99934] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7001), 1, - sym__string_literal_start, - STATE(3839), 1, - sym_string, + STATE(3765), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3767), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5499), 8, + ACTIONS(6470), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -418386,7 +422598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5497), 34, + ACTIONS(6468), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -418418,18 +422631,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [100101] = 5, + [99994] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3768), 1, + STATE(3766), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5968), 8, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -418438,7 +422653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5966), 37, + ACTIONS(6381), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -418476,128 +422691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [100161] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(6920), 1, - anon_sym_DASH_GT, - STATE(3769), 1, - sym_heredoc_body, - STATE(10184), 1, - aux_sym_proc_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4743), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 33, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [100227] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3770), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5581), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5579), 37, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [100287] = 5, + [100054] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3771), 1, + STATE(3767), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5972), 8, + ACTIONS(6450), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -418606,7 +422708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5970), 37, + ACTIONS(6448), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -418644,15 +422746,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [100347] = 5, + [100114] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3772), 1, + STATE(3768), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6028), 8, + ACTIONS(5805), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -418661,7 +422763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6026), 37, + ACTIONS(5803), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -418699,17 +422801,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [100407] = 6, + [100174] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7004), 1, - anon_sym_of, - STATE(3773), 1, + STATE(3769), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5734), 8, + ACTIONS(5821), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -418718,8 +422818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5730), 36, - sym__line_break, + ACTIONS(5819), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -418731,14 +422830,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -418754,16 +422851,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [100469] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [100234] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3774), 1, + STATE(3770), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5520), 9, + ACTIONS(5845), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -418772,8 +422873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_COLON2, - ACTIONS(5518), 36, + ACTIONS(5843), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -418785,7 +422886,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -418803,101 +422903,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [100529] = 25, + [100294] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6859), 1, - anon_sym_COMMA, - ACTIONS(6928), 1, - anon_sym_DOT_DOT, - ACTIONS(6930), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6950), 1, - anon_sym_QMARK, - ACTIONS(6952), 1, - anon_sym_AMP_AMP, - ACTIONS(6954), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(3610), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3775), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6958), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6960), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5585), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [100629] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6558), 1, - anon_sym_LPAREN2, - ACTIONS(7006), 1, - anon_sym_EQ, - STATE(3776), 1, + STATE(3771), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6363), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -418906,8 +422928,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 35, - sym__line_break, + ACTIONS(6361), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -418918,14 +422940,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -418941,16 +422961,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [100693] = 5, + anon_sym_when, + anon_sym_in, + [100354] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3777), 1, + STATE(3772), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6076), 8, + ACTIONS(6454), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -418959,7 +422983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6074), 37, + ACTIONS(6452), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -418997,90 +423021,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [100753] = 25, + [100414] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6863), 1, - anon_sym_DOT_DOT, - ACTIONS(6865), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6869), 1, - anon_sym_PIPE, - ACTIONS(6871), 1, - anon_sym_CARET, - ACTIONS(6875), 1, - anon_sym_EQ_EQ, - ACTIONS(6881), 1, - anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6887), 1, - anon_sym_QMARK, - ACTIONS(6889), 1, - anon_sym_AMP_AMP, - ACTIONS(6891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, - sym__start_of_index_operator, - ACTIONS(6899), 1, - sym_binary_ampersand, - ACTIONS(6970), 1, - anon_sym_COMMA, - STATE(3606), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3778), 1, + STATE(3773), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6879), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, + ACTIONS(6466), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6877), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6895), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6464), 37, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6897), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5570), 10, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [100853] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [100474] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3779), 1, + STATE(3774), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5931), 8, + ACTIONS(6406), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -419089,7 +423093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5929), 37, + ACTIONS(6404), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -419127,15 +423131,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [100913] = 5, + [100534] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3780), 1, + STATE(3775), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6292), 8, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -419144,7 +423148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6290), 37, + ACTIONS(6199), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -419182,15 +423186,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [100973] = 5, + [100594] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3781), 1, + STATE(3776), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5648), 8, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -419199,8 +423203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5646), 37, - sym__line_break, + ACTIONS(6321), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -419212,15 +423215,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -419236,16 +423236,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [101033] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [100654] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3782), 1, + STATE(3777), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5581), 8, + ACTIONS(5881), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -419254,8 +423258,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5579), 37, - sym__line_break, + ACTIONS(5879), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -419266,15 +423270,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -419287,20 +423288,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [101093] = 5, + anon_sym_when, + anon_sym_in, + [100714] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3783), 1, + STATE(3778), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5935), 8, + ACTIONS(6023), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -419309,7 +423313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5933), 37, + ACTIONS(6021), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -419347,15 +423351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [101153] = 5, + [100774] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3784), 1, + STATE(3779), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6168), 8, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -419364,7 +423368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6166), 37, + ACTIONS(6035), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -419402,15 +423406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [101213] = 5, + [100834] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3785), 1, + STATE(3780), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5945), 8, + ACTIONS(6055), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -419419,7 +423423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5943), 37, + ACTIONS(6053), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -419457,17 +423461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [101273] = 6, + [100894] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6558), 1, - anon_sym_LPAREN2, - STATE(3786), 1, + STATE(3781), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5685), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -419476,8 +423478,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 36, + ACTIONS(5683), 37, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -419490,7 +423493,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -419509,19 +423511,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [101335] = 5, + anon_sym_do, + [100954] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3787), 1, + STATE(3782), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(6071), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -419530,7 +423533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5955), 37, + ACTIONS(6069), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -419568,15 +423571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [101395] = 5, + [101014] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3788), 1, + STATE(3783), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(6160), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -419585,7 +423588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 37, + ACTIONS(6158), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -419623,15 +423626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [101455] = 5, + [101074] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3789), 1, + STATE(3784), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6086), 8, + ACTIONS(6171), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -419640,7 +423643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6084), 37, + ACTIONS(6169), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -419678,15 +423681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [101515] = 5, + [101134] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3790), 1, + STATE(3785), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6098), 8, + ACTIONS(6187), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -419695,7 +423698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6096), 37, + ACTIONS(6185), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -419733,15 +423736,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [101575] = 5, + [101194] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3791), 1, + STATE(3786), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6102), 8, + ACTIONS(6211), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -419750,7 +423753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6100), 37, + ACTIONS(6209), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -419788,15 +423791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [101635] = 5, + [101254] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3792), 1, + STATE(3787), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6122), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -419805,7 +423808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6120), 37, + ACTIONS(6357), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -419843,19 +423846,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [101695] = 7, + [101314] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7008), 1, - anon_sym_COMMA, - STATE(3793), 1, + STATE(3788), 1, sym_heredoc_body, - STATE(3798), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(5833), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -419864,8 +423863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 35, - sym__line_break, + ACTIONS(5831), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -419877,13 +423875,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -419899,20 +423896,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [101759] = 7, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [101374] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7010), 1, - anon_sym_COMMA, - STATE(3794), 1, + STATE(3789), 1, sym_heredoc_body, - STATE(3810), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5841), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -419921,8 +423918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 35, - sym__line_break, + ACTIONS(5839), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -419934,13 +423930,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -419956,16 +423951,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [101823] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [101434] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3795), 1, + STATE(3790), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6130), 8, + ACTIONS(5889), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -419974,7 +423973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6128), 37, + ACTIONS(5887), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -420012,15 +424011,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [101883] = 5, + [101494] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3796), 1, + STATE(3791), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6308), 8, + ACTIONS(5913), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -420029,7 +424028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6306), 37, + ACTIONS(5911), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -420067,15 +424066,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [101943] = 5, + [101554] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3797), 1, + STATE(3792), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5976), 8, + ACTIONS(5951), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -420084,7 +424083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5974), 37, + ACTIONS(5949), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -420122,19 +424121,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [102003] = 7, + [101614] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7010), 1, - anon_sym_COMMA, - STATE(3628), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3798), 1, + STATE(3793), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5959), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -420143,8 +424138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 35, - sym__line_break, + ACTIONS(5957), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -420156,13 +424150,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -420178,16 +424171,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [102067] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [101674] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3799), 1, + STATE(3794), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5980), 8, + ACTIONS(6009), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -420196,7 +424193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5978), 37, + ACTIONS(6007), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -420234,72 +424231,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [102127] = 7, + [101734] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6926), 1, + ACTIONS(6968), 1, anon_sym_COMMA, - STATE(3592), 1, + ACTIONS(6974), 1, + anon_sym_DOT_DOT, + ACTIONS(6976), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6980), 1, + anon_sym_PIPE, + ACTIONS(6982), 1, + anon_sym_CARET, + ACTIONS(6986), 1, + anon_sym_EQ_EQ, + ACTIONS(6992), 1, + anon_sym_AMP_STAR, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(6998), 1, + anon_sym_QMARK, + ACTIONS(7000), 1, + anon_sym_AMP_AMP, + ACTIONS(7002), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7004), 1, + sym__start_of_index_operator, + ACTIONS(7010), 1, + sym_binary_ampersand, + STATE(3647), 1, aux_sym_argument_list_no_parens_repeat1, - STATE(3800), 1, + STATE(3795), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, - anon_sym_DOT_DOT, + ACTIONS(6984), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6990), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6994), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6978), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5570), 35, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6988), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7008), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5587), 10, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_else, - [102191] = 5, + anon_sym_do, + [101834] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3801), 1, + STATE(3796), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5984), 8, + ACTIONS(6019), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -420308,7 +424323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5982), 37, + ACTIONS(6017), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -420346,15 +424361,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [102251] = 5, + [101894] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3802), 1, + STATE(3797), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5996), 8, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -420363,7 +424378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5994), 37, + ACTIONS(6041), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -420401,21 +424416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [102311] = 8, + [101954] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1253), 1, - anon_sym_COLON, - ACTIONS(6078), 1, - anon_sym_COLON_COLON, - STATE(2656), 1, - aux_sym_constant_repeat1, - STATE(3803), 1, + STATE(3798), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 8, + ACTIONS(6067), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -420424,7 +424433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(4549), 34, + ACTIONS(6065), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -420440,6 +424450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -420452,86 +424463,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [102377] = 6, + [102014] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7012), 1, - anon_sym_of, - STATE(3804), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5702), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5698), 36, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_else, - [102439] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1701), 1, - sym__string_literal_start, - ACTIONS(7014), 1, - anon_sym_COLON, - STATE(3639), 1, - aux_sym_chained_string_repeat1, - STATE(3805), 1, + STATE(3799), 1, sym_heredoc_body, - STATE(3839), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6079), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -420540,7 +424488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 33, + ACTIONS(6077), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -420556,6 +424505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -420571,18 +424521,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [102507] = 5, + [102074] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3806), 1, + STATE(3800), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6020), 8, + ACTIONS(6090), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -420591,7 +424543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6018), 37, + ACTIONS(6088), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -420629,17 +424581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [102567] = 6, + [102134] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7016), 1, - anon_sym_of, - STATE(3807), 1, + STATE(3801), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5734), 8, + ACTIONS(6138), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -420648,8 +424598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5730), 36, - sym__line_break, + ACTIONS(6136), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -420660,15 +424610,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -420684,16 +424631,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [102629] = 5, + anon_sym_when, + anon_sym_in, + [102194] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3808), 1, + STATE(3802), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6024), 8, + ACTIONS(6148), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -420702,7 +424653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6022), 37, + ACTIONS(6146), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -420740,17 +424691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [102689] = 6, + [102254] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7018), 1, - anon_sym_of, - STATE(3809), 1, + STATE(3803), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5719), 8, + ACTIONS(6175), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -420759,8 +424708,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5715), 36, - sym__line_break, + ACTIONS(6173), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -420771,15 +424720,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -420795,20 +424741,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, anon_sym_else, - [102751] = 7, + anon_sym_when, + anon_sym_in, + [102314] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7020), 1, - anon_sym_COMMA, - STATE(3628), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3810), 1, + STATE(3804), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(6299), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -420817,8 +424763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 35, - sym__line_break, + ACTIONS(6297), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -420830,13 +424775,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -420852,16 +424796,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [102815] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [102374] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3811), 1, + STATE(3805), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(6458), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -420870,7 +424818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 37, + ACTIONS(6456), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -420908,15 +424856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [102875] = 5, + [102434] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3812), 1, + STATE(3806), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6142), 8, + ACTIONS(5973), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -420925,7 +424873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6140), 37, + ACTIONS(5971), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -420963,17 +424911,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [102935] = 6, + [102494] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7022), 1, - anon_sym_of, - STATE(3813), 1, + STATE(3807), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5660), 8, + ACTIONS(6279), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -420982,8 +424928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5656), 36, - sym__line_break, + ACTIONS(6277), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -420995,14 +424940,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -421018,16 +424961,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [102997] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [102554] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3814), 1, + STATE(3808), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(5861), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -421036,7 +424983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 37, + ACTIONS(5859), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -421074,15 +425021,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [103057] = 5, + [102614] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3815), 1, + STATE(3809), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(5893), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -421091,9 +425038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 36, - sym__line_break, + ACTIONS(5891), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -421105,14 +425050,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -421128,166 +425071,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [103117] = 25, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [102674] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6863), 1, + STATE(3810), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5989), 8, anon_sym_DOT_DOT, - ACTIONS(6865), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6869), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(6871), 1, - anon_sym_CARET, - ACTIONS(6875), 1, anon_sym_EQ_EQ, - ACTIONS(6881), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6885), 1, anon_sym_DOT, - ACTIONS(6887), 1, - anon_sym_QMARK, - ACTIONS(6889), 1, - anon_sym_AMP_AMP, - ACTIONS(6891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, + ACTIONS(5987), 37, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(6899), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - ACTIONS(7008), 1, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3798), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3816), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6873), 2, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6879), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [102734] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3811), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6183), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6877), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6895), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6181), 37, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6897), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5570), 10, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_do, - [103217] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6863), 1, - anon_sym_DOT_DOT, - ACTIONS(6865), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - ACTIONS(6869), 1, - anon_sym_PIPE, - ACTIONS(6871), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(6875), 1, - anon_sym_EQ_EQ, - ACTIONS(6881), 1, - anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6887), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(6889), 1, anon_sym_AMP_AMP, - ACTIONS(6891), 1, anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, - sym__start_of_index_operator, - ACTIONS(6899), 1, - sym_binary_ampersand, - ACTIONS(7010), 1, - anon_sym_COMMA, - STATE(3810), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(3817), 1, + anon_sym_COLON2, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [102794] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3812), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6879), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, + ACTIONS(6207), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6877), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6895), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6205), 37, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6897), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5585), 10, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [103317] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [102854] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3818), 1, + STATE(3813), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6150), 8, + ACTIONS(6227), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -421296,7 +425258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6148), 37, + ACTIONS(6225), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -421334,15 +425296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [103377] = 5, + [102914] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3819), 1, + STATE(3814), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(6271), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -421351,7 +425313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6419), 37, + ACTIONS(6269), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -421389,15 +425351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [103437] = 5, + [102974] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3820), 1, + STATE(3815), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6184), 8, + ACTIONS(6275), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -421406,7 +425368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6182), 37, + ACTIONS(6273), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -421444,15 +425406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [103497] = 5, + [103034] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3821), 1, + STATE(3816), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6188), 8, + ACTIONS(6307), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -421461,7 +425423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6186), 37, + ACTIONS(6305), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -421499,15 +425461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [103557] = 5, + [103094] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3822), 1, + STATE(3817), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5654), 8, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -421516,8 +425478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5652), 37, - sym__line_break, + ACTIONS(6317), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -421529,14 +425490,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -421549,22 +425508,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [103617] = 6, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [103154] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7024), 1, - sym_regex_modifier, - STATE(3823), 1, + STATE(3818), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(5777), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -421573,8 +425533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 36, - sym__line_break, + ACTIONS(5775), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -421586,14 +425545,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -421609,16 +425566,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [103679] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [103214] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3824), 1, + STATE(3819), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6328), 8, + ACTIONS(5853), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -421627,7 +425588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6326), 37, + ACTIONS(5851), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -421665,15 +425626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [103739] = 5, + [103274] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3825), 1, + STATE(3820), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6196), 8, + ACTIONS(5857), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -421682,7 +425643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6194), 37, + ACTIONS(5855), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -421720,71 +425681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [103799] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7026), 1, - sym_regex_modifier, - STATE(3826), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5633), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5631), 36, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_else, - [103861] = 5, + [103334] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3827), 1, + STATE(3821), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6304), 8, + ACTIONS(5909), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -421793,7 +425698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6302), 37, + ACTIONS(5907), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -421831,15 +425736,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [103921] = 5, + [103394] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3828), 1, + STATE(3822), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6200), 8, + ACTIONS(5969), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -421848,7 +425753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6198), 37, + ACTIONS(5967), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -421886,15 +425791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [103981] = 5, + [103454] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3829), 1, + STATE(3823), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -421903,7 +425808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 37, + ACTIONS(5995), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -421941,21 +425846,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [104041] = 8, + [103514] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(6840), 1, - anon_sym_DASH_GT, - STATE(3830), 1, + STATE(3824), 1, sym_heredoc_body, - STATE(9857), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(6013), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -421964,8 +425863,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 33, + ACTIONS(6011), 37, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -421979,6 +425878,8 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, @@ -421996,18 +425897,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [104107] = 5, + [103574] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3831), 1, + STATE(3825), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6134), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -422016,7 +425918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6132), 37, + ACTIONS(6345), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -422054,17 +425956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [104167] = 6, + [103634] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7028), 1, - sym_regex_modifier, - STATE(3832), 1, + ACTIONS(7061), 1, + anon_sym_of, + STATE(3826), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5679), 8, + ACTIONS(5739), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -422073,7 +425975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5677), 36, + ACTIONS(5735), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -422110,15 +426012,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [104229] = 5, + [103696] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3833), 1, + ACTIONS(7063), 1, + anon_sym_of, + STATE(3827), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6008), 8, + ACTIONS(5725), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -422127,8 +426031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6006), 37, - sym__start_of_brace_block, + ACTIONS(5721), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -422139,12 +426043,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -422160,22 +426067,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [104289] = 6, + [103758] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7030), 1, - sym_regex_modifier, - STATE(3834), 1, + ACTIONS(7065), 1, + anon_sym_of, + STATE(3828), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(5714), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -422184,9 +426087,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 36, + ACTIONS(5710), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -422199,6 +426101,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -422220,143 +426123,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [104351] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3835), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5842), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5840), 37, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [104411] = 23, + [103820] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6863), 1, - anon_sym_DOT_DOT, - ACTIONS(6865), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6869), 1, - anon_sym_PIPE, - ACTIONS(6871), 1, - anon_sym_CARET, - ACTIONS(6875), 1, - anon_sym_EQ_EQ, - ACTIONS(6881), 1, - anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6887), 1, - anon_sym_QMARK, - ACTIONS(6889), 1, - anon_sym_AMP_AMP, - ACTIONS(6891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, - sym__start_of_index_operator, - ACTIONS(6899), 1, - sym_binary_ampersand, - STATE(3836), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6873), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6879), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6877), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6895), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6897), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6256), 11, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - anon_sym_do, - [104506] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3837), 1, + ACTIONS(7067), 1, + anon_sym_EQ, + STATE(3829), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6200), 8, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -422365,7 +426143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6198), 36, + ACTIONS(5761), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -422402,15 +426180,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [104565] = 5, + [103882] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3838), 1, + ACTIONS(7069), 1, + anon_sym_COMMA, + STATE(3830), 1, sym_heredoc_body, + STATE(3832), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6012), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -422419,7 +426201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6010), 36, + ACTIONS(5587), 35, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -422439,7 +426221,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -422456,15 +426237,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [104624] = 5, + [103946] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3839), 1, + ACTIONS(7071), 1, + anon_sym_COMMA, + STATE(3831), 1, sym_heredoc_body, + STATE(3833), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5648), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -422473,7 +426258,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5646), 36, + ACTIONS(5631), 35, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -422484,13 +426270,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -422506,41 +426293,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_else, - anon_sym_when, - anon_sym_in, - [104683] = 11, + [104010] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, - anon_sym_STAR, - ACTIONS(7036), 1, - anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_DOT, - ACTIONS(7040), 1, - anon_sym_QMARK, - STATE(3840), 1, + ACTIONS(7071), 1, + anon_sym_COMMA, + STATE(3642), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3832), 1, sym_heredoc_body, - STATE(4156), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4605), 31, + anon_sym_DOT, + ACTIONS(5631), 35, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -422551,11 +426327,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -422566,19 +426347,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [104754] = 5, + anon_sym_else, + [104074] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3841), 1, + ACTIONS(7073), 1, + anon_sym_COMMA, + STATE(3642), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3833), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5887), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -422587,7 +426372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5885), 36, + ACTIONS(5637), 35, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -422607,7 +426392,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -422624,69 +426408,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [104813] = 5, + [104138] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3842), 1, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, + anon_sym_DOT_DOT, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_CARET, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6936), 1, + anon_sym_QMARK, + ACTIONS(6938), 1, + anon_sym_AMP_AMP, + ACTIONS(6940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + ACTIONS(7069), 1, + anon_sym_COMMA, + STATE(3832), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3834), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5891), 8, - anon_sym_DOT_DOT, + ACTIONS(6924), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5889), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6946), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5587), 10, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_else, + [104238] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, + anon_sym_DOT_DOT, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, anon_sym_CARET, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6936), 1, + anon_sym_QMARK, + ACTIONS(6938), 1, + anon_sym_AMP_AMP, + ACTIONS(6940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + ACTIONS(7071), 1, + anon_sym_COMMA, + STATE(3833), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3835), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6924), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6944), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6946), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5631), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, anon_sym_else, - [104872] = 5, + [104338] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3843), 1, + STATE(3836), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5806), 8, + ACTIONS(5645), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -422695,7 +426575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5804), 36, + ACTIONS(5643), 37, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -422728,19 +426608,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [104931] = 5, + [104398] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3844), 1, + ACTIONS(7075), 1, + anon_sym_COMMA, + STATE(3837), 1, sym_heredoc_body, + STATE(3839), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5968), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -422749,7 +426634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5966), 36, + ACTIONS(5587), 35, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -422769,7 +426654,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -422786,35 +426670,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [104990] = 11, + [104462] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, - anon_sym_STAR, - ACTIONS(7036), 1, - anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_DOT, - ACTIONS(7040), 1, - anon_sym_QMARK, - STATE(3845), 1, + ACTIONS(7077), 1, + anon_sym_COMMA, + STATE(3838), 1, sym_heredoc_body, - STATE(4156), 1, - aux_sym_union_type_repeat1, + STATE(3840), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4611), 7, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4613), 31, + anon_sym_DOT, + ACTIONS(5631), 35, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -422827,11 +426704,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -422842,19 +426723,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [105061] = 5, + [104526] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3846), 1, + ACTIONS(7077), 1, + anon_sym_COMMA, + STATE(3661), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3839), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5972), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -422863,7 +426748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5970), 36, + ACTIONS(5631), 35, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -422883,7 +426768,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -422900,15 +426784,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [105120] = 5, + [104590] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3847), 1, + ACTIONS(7079), 1, + anon_sym_COMMA, + STATE(3661), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3840), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6028), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -422917,7 +426805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6026), 36, + ACTIONS(5637), 35, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -422937,7 +426825,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -422954,69 +426841,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [105179] = 5, + [104654] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3848), 1, + ACTIONS(6974), 1, + anon_sym_DOT_DOT, + ACTIONS(6976), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6980), 1, + anon_sym_PIPE, + ACTIONS(6982), 1, + anon_sym_CARET, + ACTIONS(6986), 1, + anon_sym_EQ_EQ, + ACTIONS(6992), 1, + anon_sym_AMP_STAR, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(6998), 1, + anon_sym_QMARK, + ACTIONS(7000), 1, + anon_sym_AMP_AMP, + ACTIONS(7002), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7004), 1, + sym__start_of_index_operator, + ACTIONS(7010), 1, + sym_binary_ampersand, + ACTIONS(7075), 1, + anon_sym_COMMA, + STATE(3839), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3841), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6076), 8, - anon_sym_DOT_DOT, + ACTIONS(6984), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6990), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6994), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6978), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6074), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6988), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7008), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5587), 10, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_do, + [104754] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6974), 1, + anon_sym_DOT_DOT, + ACTIONS(6976), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6980), 1, + anon_sym_PIPE, + ACTIONS(6982), 1, anon_sym_CARET, + ACTIONS(6986), 1, + anon_sym_EQ_EQ, + ACTIONS(6992), 1, + anon_sym_AMP_STAR, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(6998), 1, + anon_sym_QMARK, + ACTIONS(7000), 1, + anon_sym_AMP_AMP, + ACTIONS(7002), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7004), 1, + sym__start_of_index_operator, + ACTIONS(7010), 1, + sym_binary_ampersand, + ACTIONS(7077), 1, + anon_sym_COMMA, + STATE(3840), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3842), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6984), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6990), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(6994), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6978), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6988), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(7006), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7008), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5631), 10, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, anon_sym_do, - [105238] = 5, + [104854] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3849), 1, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(6880), 1, + anon_sym_DASH_GT, + STATE(3843), 1, sym_heredoc_body, + STATE(9796), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5935), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -423025,8 +427014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5933), 36, - sym__line_break, + anon_sym_EQ, + ACTIONS(4785), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -423037,15 +427026,10 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -423061,16 +427045,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_else, - [105297] = 5, + anon_sym_when, + anon_sym_in, + [104920] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3850), 1, + STATE(3844), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5945), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -423079,7 +427066,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5943), 36, + anon_sym_EQ, + ACTIONS(4785), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -423116,15 +427104,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [105356] = 5, + [104980] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3851), 1, + STATE(3845), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(4638), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -423133,8 +427121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5955), 36, - sym__line_break, + anon_sym_EQ, + ACTIONS(4640), 36, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -423145,16 +427133,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -423169,16 +427155,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_else, - [105415] = 5, + anon_sym_when, + anon_sym_in, + [105040] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3852), 1, + STATE(3846), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6086), 8, + ACTIONS(6102), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -423187,8 +427176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6084), 36, - sym__line_break, + ACTIONS(6092), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -423200,14 +427188,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -423223,16 +427209,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [105474] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [105100] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3853), 1, + STATE(3847), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6098), 8, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -423241,8 +427231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6096), 36, - sym__line_break, + ACTIONS(6329), 37, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -423254,14 +427243,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -423277,16 +427264,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [105533] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [105160] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3854), 1, + STATE(3848), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6102), 8, + ACTIONS(6175), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -423295,7 +427286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6100), 36, + ACTIONS(6173), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -423332,15 +427323,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [105592] = 5, + [105219] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3855), 1, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, + anon_sym_DOT_DOT, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_CARET, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6936), 1, + anon_sym_QMARK, + ACTIONS(6938), 1, + anon_sym_AMP_AMP, + ACTIONS(6940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(3849), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5976), 8, + ACTIONS(6924), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6944), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6946), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5923), 11, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, + anon_sym_else, + [105314] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3850), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4638), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -423349,7 +427412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5974), 36, + anon_sym_EQ, + ACTIONS(4640), 35, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -423363,7 +427427,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -423371,6 +427434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -423385,95 +427449,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [105651] = 21, + [105373] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6242), 1, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, anon_sym_DOT_DOT, - ACTIONS(6869), 1, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6871), 1, + ACTIONS(6922), 1, anon_sym_CARET, - ACTIONS(6875), 1, + ACTIONS(6926), 1, anon_sym_EQ_EQ, - ACTIONS(6881), 1, + ACTIONS(6932), 1, anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6889), 1, + ACTIONS(6936), 1, + anon_sym_QMARK, + ACTIONS(6938), 1, anon_sym_AMP_AMP, - ACTIONS(6891), 1, + ACTIONS(6940), 1, anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(6899), 1, + ACTIONS(6948), 1, sym_binary_ampersand, - STATE(3856), 1, + STATE(3851), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, + ACTIONS(6924), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6879), 2, + ACTIONS(6930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, + ACTIONS(6934), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, + ACTIONS(6918), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6877), 4, + ACTIONS(6928), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6895), 4, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6897), 4, + ACTIONS(6946), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6240), 13, + ACTIONS(5773), 11, sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, - anon_sym_do, - [105742] = 5, + anon_sym_else, + [105468] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3857), 1, + ACTIONS(7081), 1, + anon_sym_PIPE, + STATE(3852), 1, sym_heredoc_body, + STATE(3853), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5814), 8, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5812), 36, + anon_sym_EQ, + ACTIONS(4636), 34, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -423486,16 +427555,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -423510,24 +427576,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [105801] = 5, + anon_sym_then, + [105531] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3858), 1, - sym_heredoc_body, + ACTIONS(7083), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6196), 8, + STATE(3853), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6194), 36, + anon_sym_EQ, + ACTIONS(4629), 34, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -423540,16 +427610,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -423564,24 +427631,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [105860] = 5, + anon_sym_then, + [105592] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3859), 1, + ACTIONS(7081), 1, + anon_sym_PIPE, + ACTIONS(7086), 1, + anon_sym_LBRACK, + ACTIONS(7088), 1, + anon_sym_STAR, + ACTIONS(7090), 1, + anon_sym_DOT, + ACTIONS(7092), 1, + anon_sym_QMARK, + STATE(3852), 1, + aux_sym_union_type_repeat1, + STATE(3854), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5822), 8, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5820), 36, + anon_sym_EQ, + ACTIONS(4625), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -423594,16 +427673,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -423614,29 +427688,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [105919] = 5, + anon_sym_then, + [105663] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3860), 1, + ACTIONS(7081), 1, + anon_sym_PIPE, + ACTIONS(7086), 1, + anon_sym_LBRACK, + ACTIONS(7088), 1, + anon_sym_STAR, + ACTIONS(7090), 1, + anon_sym_DOT, + ACTIONS(7092), 1, + anon_sym_QMARK, + STATE(3852), 1, + aux_sym_union_type_repeat1, + STATE(3855), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6304), 8, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6302), 36, + anon_sym_EQ, + ACTIONS(4607), 31, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -423647,17 +427733,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -423668,21 +427748,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [105978] = 6, + anon_sym_do, + anon_sym_then, + [105734] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3861), 1, + STATE(3856), 1, sym_heredoc_body, - STATE(4156), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(4598), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -423692,8 +427771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 34, - sym__line_break, + ACTIONS(4600), 34, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -423706,7 +427784,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -423722,20 +427799,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_LPAREN2, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [106039] = 5, + [105793] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3862), 1, + ACTIONS(7094), 1, + anon_sym_LPAREN, + ACTIONS(7096), 1, + anon_sym_DASH_GT, + ACTIONS(7099), 1, + anon_sym_typeof, + ACTIONS(7101), 1, + sym__constant_segment, + ACTIONS(7103), 1, + anon_sym_COLON_COLON, + ACTIONS(7107), 1, + sym__start_of_tuple_type, + ACTIONS(7109), 1, + sym__start_of_named_tuple_type, + STATE(3857), 1, + sym_heredoc_body, + STATE(7682), 1, + sym__type, + STATE(7692), 1, + sym_constant, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7105), 2, + sym_self, + sym_underscore_type, + STATE(7763), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4362), 21, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [105872] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3858), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5980), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -423744,8 +427887,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5978), 36, + ACTIONS(135), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -423758,7 +427902,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -423780,16 +427923,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [106098] = 5, + anon_sym_do, + [105931] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3863), 1, + STATE(3859), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5830), 8, + ACTIONS(5849), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -423798,7 +427941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5828), 36, + ACTIONS(5847), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -423835,15 +427978,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [106157] = 5, + [105990] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3864), 1, + STATE(3860), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6224), 8, + ACTIONS(5865), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -423852,7 +427995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6222), 36, + ACTIONS(5863), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -423889,17 +428032,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [106216] = 6, + [106049] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7042), 1, - anon_sym_of, - STATE(3865), 1, + STATE(3861), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5728), 8, + ACTIONS(6303), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -423908,7 +428049,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5724), 35, + ACTIONS(6301), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -423919,12 +428062,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -423940,19 +428085,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [106277] = 5, + anon_sym_do, + [106108] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3866), 1, + STATE(3862), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6234), 8, + ACTIONS(5943), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -423961,7 +428103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6232), 36, + ACTIONS(5941), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -423998,15 +428140,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [106336] = 5, + [106167] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3867), 1, + STATE(3863), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6272), 8, + ACTIONS(5993), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -424015,7 +428157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6270), 36, + ACTIONS(5991), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -424052,15 +428194,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [106395] = 5, + [106226] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3868), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7004), 1, + sym__start_of_index_operator, + STATE(3864), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5968), 8, + ACTIONS(6001), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -424068,10 +428214,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5966), 36, + ACTIONS(5999), 35, sym__line_break, - sym__start_of_index_operator, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -424083,7 +428228,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -424105,124 +428249,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [106454] = 5, + anon_sym_do, + [106289] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3869), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5984), 8, + ACTIONS(6063), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(6980), 1, anon_sym_PIPE, + ACTIONS(6982), 1, + anon_sym_CARET, + ACTIONS(6986), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(6992), 1, anon_sym_AMP_STAR, + ACTIONS(6996), 1, anon_sym_DOT, - ACTIONS(5982), 36, - sym__line_break, + ACTIONS(7000), 1, + anon_sym_AMP_AMP, + ACTIONS(7002), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7004), 1, sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, + ACTIONS(7010), 1, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, + STATE(3865), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6984), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6990), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(6994), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_else, - [106513] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3870), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5996), 8, - anon_sym_DOT_DOT, + ACTIONS(6978), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5994), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6988), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7008), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6061), 13, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_else, - [106572] = 5, + anon_sym_do, + [106380] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3871), 1, + STATE(3866), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5972), 8, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -424231,8 +428337,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5970), 36, + ACTIONS(5983), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -424245,7 +428352,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -424267,88 +428373,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [106631] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6863), 1, - anon_sym_DOT_DOT, - ACTIONS(6865), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6869), 1, - anon_sym_PIPE, - ACTIONS(6871), 1, - anon_sym_CARET, - ACTIONS(6875), 1, - anon_sym_EQ_EQ, - ACTIONS(6881), 1, - anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6887), 1, - anon_sym_QMARK, - ACTIONS(6889), 1, - anon_sym_AMP_AMP, - ACTIONS(6891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, - sym__start_of_index_operator, - ACTIONS(6899), 1, - sym_binary_ampersand, - STATE(3872), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6873), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6879), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6877), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6895), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6897), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6230), 11, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, anon_sym_do, - [106726] = 5, + [106439] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3873), 1, + STATE(3867), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6246), 8, + ACTIONS(6029), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -424357,7 +428391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6244), 36, + ACTIONS(6027), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -424394,15 +428428,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [106785] = 5, + [106498] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3874), 1, + STATE(3868), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6250), 8, + ACTIONS(6033), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -424411,7 +428445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6248), 36, + ACTIONS(6031), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -424448,17 +428482,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [106844] = 6, + [106557] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7044), 1, - anon_sym_of, - STATE(3875), 1, + STATE(3869), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5734), 8, + ACTIONS(6086), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -424467,7 +428499,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5730), 35, + ACTIONS(6084), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -424478,12 +428512,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -424499,19 +428535,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [106905] = 5, + anon_sym_do, + [106616] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3876), 1, + STATE(3870), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6028), 8, + ACTIONS(6096), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -424520,8 +428553,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6026), 36, + ACTIONS(6094), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -424534,7 +428568,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -424556,16 +428589,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [106964] = 5, + anon_sym_do, + [106675] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3877), 1, + STATE(3871), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6076), 8, + ACTIONS(6110), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -424574,8 +428607,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6074), 36, + ACTIONS(6108), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -424588,7 +428622,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -424610,70 +428643,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [107023] = 5, + anon_sym_do, + [106734] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3878), 1, + ACTIONS(7111), 1, + anon_sym_COMMA, + ACTIONS(7113), 1, + anon_sym_DOT_DOT, + ACTIONS(7115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7119), 1, + anon_sym_PIPE, + ACTIONS(7121), 1, + anon_sym_CARET, + ACTIONS(7125), 1, + anon_sym_EQ_EQ, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, + anon_sym_AMP_AMP, + ACTIONS(7141), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, + sym_binary_ampersand, + STATE(3872), 1, sym_heredoc_body, + STATE(3876), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6296), 8, - anon_sym_DOT_DOT, + ACTIONS(7123), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7129), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7117), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6294), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7127), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7147), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + ACTIONS(5587), 9, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, - [107082] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [106833] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3879), 1, + ACTIONS(7111), 1, + anon_sym_COMMA, + STATE(3873), 1, sym_heredoc_body, + STATE(3876), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6324), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -424682,8 +428739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6322), 36, - sym__line_break, + ACTIONS(5587), 34, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -424695,14 +428751,10 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -424719,87 +428771,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [107141] = 23, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [106896] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, + ACTIONS(7113), 1, anon_sym_DOT_DOT, - ACTIONS(6930), 1, + ACTIONS(7115), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, + ACTIONS(7119), 1, anon_sym_PIPE, - ACTIONS(6936), 1, + ACTIONS(7121), 1, anon_sym_CARET, - ACTIONS(6940), 1, + ACTIONS(7125), 1, anon_sym_EQ_EQ, - ACTIONS(6946), 1, + ACTIONS(7131), 1, anon_sym_AMP_STAR, - ACTIONS(6950), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7137), 1, anon_sym_QMARK, - ACTIONS(6952), 1, + ACTIONS(7139), 1, anon_sym_AMP_AMP, - ACTIONS(6954), 1, + ACTIONS(7141), 1, anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, + ACTIONS(7143), 1, sym__start_of_index_operator, - ACTIONS(6962), 1, + ACTIONS(7149), 1, sym_binary_ampersand, - STATE(3880), 1, + ACTIONS(7151), 1, + anon_sym_COMMA, + STATE(3874), 1, sym_heredoc_body, + STATE(3877), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, + ACTIONS(7123), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(7129), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, + ACTIONS(7133), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(7117), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, + ACTIONS(7127), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, + ACTIONS(7147), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6358), 11, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(5631), 9, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_end, + anon_sym_do, anon_sym_else, - [107236] = 5, + anon_sym_when, + anon_sym_in, + [106995] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3881), 1, + ACTIONS(7151), 1, + anon_sym_COMMA, + STATE(3875), 1, sym_heredoc_body, + STATE(3877), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6368), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -424808,8 +428869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6366), 36, - sym__line_break, + ACTIONS(5631), 34, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -424821,14 +428881,10 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -424845,15 +428901,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [107295] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [107058] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3882), 1, + ACTIONS(7151), 1, + anon_sym_COMMA, + STATE(3876), 1, sym_heredoc_body, + STATE(3878), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6020), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -424862,8 +428925,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6018), 36, - sym__line_break, + ACTIONS(5631), 34, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -424874,15 +428937,10 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -424898,16 +428956,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_else, - [107354] = 5, + anon_sym_when, + anon_sym_in, + [107121] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3883), 1, + ACTIONS(7153), 1, + anon_sym_COMMA, + STATE(3877), 1, sym_heredoc_body, + STATE(3878), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6024), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -424916,8 +428981,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6022), 36, - sym__line_break, + ACTIONS(5637), 34, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -424928,15 +428993,10 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -424952,16 +429012,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_else, - [107413] = 5, + anon_sym_when, + anon_sym_in, + [107184] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3884), 1, - sym_heredoc_body, + ACTIONS(7155), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6400), 8, + STATE(3878), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -424970,8 +429036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6398), 36, - sym__line_break, + ACTIONS(5694), 34, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -424983,14 +429048,10 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -425007,87 +429068,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [107472] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, - anon_sym_DOT_DOT, - ACTIONS(6930), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6950), 1, - anon_sym_QMARK, - ACTIONS(6952), 1, - anon_sym_AMP_AMP, - ACTIONS(6954), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(3885), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6958), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6960), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6364), 11, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, anon_sym_else, - [107567] = 5, + anon_sym_when, + anon_sym_in, + [107245] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3886), 1, + STATE(3879), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6086), 8, + ACTIONS(6144), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -425096,8 +429088,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6084), 36, + ACTIONS(6142), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -425110,7 +429103,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -425132,16 +429124,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [107626] = 5, + anon_sym_do, + [107304] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3887), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7004), 1, + sym__start_of_index_operator, + STATE(3880), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5738), 8, + ACTIONS(6152), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -425149,11 +429145,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5736), 36, + ACTIONS(6150), 35, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -425187,15 +429181,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [107685] = 5, + [107367] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3888), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7004), 1, + sym__start_of_index_operator, + STATE(3881), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5770), 8, + ACTIONS(6156), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -425203,10 +429201,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5768), 36, + ACTIONS(6154), 35, sym__line_break, - sym__start_of_index_operator, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -425218,7 +429215,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -425240,16 +429236,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [107744] = 5, + anon_sym_do, + [107430] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3889), 1, - sym_heredoc_body, + ACTIONS(7158), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5742), 8, + STATE(3882), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -425258,9 +429257,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5740), 36, + anon_sym_EQ, + ACTIONS(4600), 33, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -425271,16 +429270,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -425291,19 +429287,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [107803] = 5, + anon_sym_then, + [107491] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3890), 1, + ACTIONS(7161), 1, + anon_sym_COLON_COLON, + STATE(3882), 1, + aux_sym_constant_repeat1, + STATE(3883), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5746), 8, + ACTIONS(4590), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -425312,9 +429313,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5744), 36, + anon_sym_EQ, + ACTIONS(4592), 33, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -425325,16 +429326,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -425345,19 +429343,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [107862] = 5, + anon_sym_then, + [107554] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3891), 1, + STATE(3884), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5750), 8, + ACTIONS(6223), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -425366,7 +429365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5748), 36, + ACTIONS(6221), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -425403,15 +429402,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [107921] = 5, + [107613] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3892), 1, + ACTIONS(7161), 1, + anon_sym_COLON_COLON, + STATE(3885), 1, sym_heredoc_body, + STATE(4285), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6044), 8, + ACTIONS(4584), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -425420,7 +429423,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6042), 36, + anon_sym_EQ, + ACTIONS(4586), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -425432,17 +429436,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -425453,19 +429453,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [107980] = 5, + anon_sym_then, + [107676] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3893), 1, + STATE(3886), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5758), 8, + ACTIONS(5570), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -425474,7 +429475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5756), 36, + ACTIONS(5568), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -425511,17 +429512,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [108039] = 6, + [107735] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7046), 1, - anon_sym_EQ, - STATE(3894), 1, + STATE(3887), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -425530,8 +429529,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 35, + ACTIONS(5785), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -425544,12 +429544,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -425565,16 +429565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [108100] = 5, + anon_sym_do, + [107794] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3895), 1, + STATE(3888), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -425583,8 +429583,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 36, + ACTIONS(5785), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -425597,7 +429598,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -425619,16 +429619,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [108159] = 5, + anon_sym_do, + [107853] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3896), 1, + STATE(3889), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5762), 8, + ACTIONS(5809), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -425637,7 +429637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5760), 36, + ACTIONS(5807), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -425674,15 +429674,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [108218] = 5, + [107912] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3897), 1, + STATE(3890), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5766), 8, + ACTIONS(5813), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -425691,7 +429691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5764), 36, + ACTIONS(5811), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -425728,15 +429728,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [108277] = 5, + [107971] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3898), 1, + STATE(3891), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5774), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -425745,7 +429745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5772), 36, + ACTIONS(6249), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -425782,15 +429782,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [108336] = 5, + [108030] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3899), 1, + STATE(3892), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5778), 8, + ACTIONS(6446), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -425799,9 +429799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5776), 36, + ACTIONS(6444), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -425814,6 +429813,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -425835,16 +429835,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [108395] = 5, + anon_sym_else, + [108089] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3900), 1, + STATE(3893), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -425853,7 +429853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 36, + ACTIONS(5545), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -425890,15 +429890,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [108454] = 5, + [108148] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3901), 1, + STATE(3894), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -425907,7 +429907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 36, + ACTIONS(5694), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -425944,15 +429944,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [108513] = 5, + [108207] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3902), 1, + STATE(3895), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -425961,8 +429961,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 36, + ACTIONS(5545), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -425975,7 +429976,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -425997,16 +429997,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [108572] = 5, + anon_sym_do, + [108266] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3903), 1, + STATE(3896), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -426015,7 +430015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6415), 36, + ACTIONS(5871), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -426052,15 +430052,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [108631] = 5, + [108325] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3904), 1, + STATE(3897), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6134), 8, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -426069,8 +430069,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6132), 36, + ACTIONS(5871), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -426083,7 +430084,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -426105,16 +430105,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [108690] = 5, + anon_sym_do, + [108384] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3905), 1, + STATE(3898), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5842), 8, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -426123,7 +430123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5840), 36, + ACTIONS(5875), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -426160,15 +430160,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [108749] = 5, + [108443] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3906), 1, + ACTIONS(7163), 1, + anon_sym_COLON_COLON, + STATE(3899), 1, sym_heredoc_body, + STATE(3969), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5850), 8, + ACTIONS(4594), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -426177,7 +430181,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5848), 36, + anon_sym_EQ, + ACTIONS(4596), 33, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [108506] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3900), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5885), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5883), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -426214,15 +430270,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [108808] = 5, + [108565] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3907), 1, + STATE(3901), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -426231,7 +430287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5868), 36, + ACTIONS(5741), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -426268,15 +430324,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [108867] = 5, + [108624] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3908), 1, + ACTIONS(7163), 1, + anon_sym_COLON_COLON, + STATE(3902), 1, sym_heredoc_body, + STATE(3971), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5834), 8, + ACTIONS(4594), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -426285,8 +430345,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5832), 36, + anon_sym_EQ, + ACTIONS(4596), 33, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [108687] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3903), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5897), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5895), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -426299,7 +430412,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -426321,16 +430433,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [108926] = 5, + anon_sym_do, + [108746] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3909), 1, + STATE(3904), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5903), 8, + ACTIONS(5901), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -426339,7 +430451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5901), 36, + ACTIONS(5899), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -426376,15 +430488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [108985] = 5, + [108805] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3910), 1, + STATE(3905), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5907), 8, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -426393,7 +430505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5905), 36, + ACTIONS(5903), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -426430,15 +430542,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [109044] = 5, + [108864] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3911), 1, + STATE(3906), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5749), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5747), 36, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [108923] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7165), 1, + sym_regex_modifier, + STATE(3907), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5769), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5767), 35, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [108984] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3908), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5915), 8, + ACTIONS(5947), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -426447,7 +430668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5913), 36, + ACTIONS(5945), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -426484,15 +430705,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [109103] = 5, + [109043] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3912), 1, + STATE(3909), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6328), 8, + ACTIONS(5685), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -426501,9 +430722,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6326), 36, - sym__line_break, - sym__start_of_brace_block, + anon_sym_COLON2, + ACTIONS(5683), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -426514,14 +430734,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -426534,19 +430752,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [109162] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [109102] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3913), 1, + ACTIONS(7167), 1, + sym_regex_modifier, + STATE(3910), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5854), 8, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -426555,9 +430778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5852), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5660), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -426568,14 +430789,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -426591,16 +430810,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [109221] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [109163] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3914), 1, + STATE(3911), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6296), 8, + ACTIONS(5921), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -426609,8 +430831,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6294), 36, + ACTIONS(5919), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -426623,7 +430846,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -426645,16 +430867,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [109280] = 5, + anon_sym_do, + [109222] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3915), 1, + STATE(3912), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6368), 8, + ACTIONS(5927), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -426663,8 +430885,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6366), 36, + ACTIONS(5925), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -426677,7 +430900,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -426699,89 +430921,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [109339] = 24, + anon_sym_do, + [109281] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, + ACTIONS(7113), 1, anon_sym_DOT_DOT, - ACTIONS(6930), 1, + ACTIONS(7115), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, + ACTIONS(7119), 1, anon_sym_PIPE, - ACTIONS(6936), 1, + ACTIONS(7121), 1, anon_sym_CARET, - ACTIONS(6940), 1, + ACTIONS(7125), 1, anon_sym_EQ_EQ, - ACTIONS(6946), 1, + ACTIONS(7131), 1, anon_sym_AMP_STAR, - ACTIONS(6950), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7137), 1, anon_sym_QMARK, - ACTIONS(6952), 1, + ACTIONS(7139), 1, anon_sym_AMP_AMP, - ACTIONS(6954), 1, + ACTIONS(7141), 1, anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, + ACTIONS(7143), 1, sym__start_of_index_operator, - ACTIONS(6962), 1, + ACTIONS(7149), 1, sym_binary_ampersand, - STATE(3916), 1, + ACTIONS(7169), 1, + anon_sym_COMMA, + STATE(3913), 1, sym_heredoc_body, + STATE(3917), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, + ACTIONS(7123), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(7129), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, + ACTIONS(7133), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(7117), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, + ACTIONS(7127), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, + ACTIONS(7147), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6604), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(5587), 9, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_end, + anon_sym_do, anon_sym_else, - [109436] = 5, + anon_sym_when, + anon_sym_in, + [109380] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3917), 1, + ACTIONS(7169), 1, + anon_sym_COMMA, + STATE(3914), 1, sym_heredoc_body, + STATE(3917), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5713), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -426790,8 +431017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 36, - sym__line_break, + ACTIONS(5587), 34, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -426802,15 +431029,10 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -426826,89 +431048,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_else, - [109495] = 24, + anon_sym_when, + anon_sym_in, + [109443] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, + ACTIONS(7113), 1, anon_sym_DOT_DOT, - ACTIONS(6930), 1, + ACTIONS(7115), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, + ACTIONS(7119), 1, anon_sym_PIPE, - ACTIONS(6936), 1, + ACTIONS(7121), 1, anon_sym_CARET, - ACTIONS(6940), 1, + ACTIONS(7125), 1, anon_sym_EQ_EQ, - ACTIONS(6946), 1, + ACTIONS(7131), 1, anon_sym_AMP_STAR, - ACTIONS(6950), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7137), 1, anon_sym_QMARK, - ACTIONS(6952), 1, + ACTIONS(7139), 1, anon_sym_AMP_AMP, - ACTIONS(6954), 1, + ACTIONS(7141), 1, anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, + ACTIONS(7143), 1, sym__start_of_index_operator, - ACTIONS(6962), 1, + ACTIONS(7149), 1, sym_binary_ampersand, - STATE(3918), 1, + ACTIONS(7171), 1, + anon_sym_COMMA, + STATE(3915), 1, sym_heredoc_body, + STATE(3918), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, + ACTIONS(7123), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(7129), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, + ACTIONS(7133), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(7117), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, + ACTIONS(7127), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, + ACTIONS(7147), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6606), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(5631), 9, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_end, + anon_sym_do, anon_sym_else, - [109592] = 5, + anon_sym_when, + anon_sym_in, + [109542] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3919), 1, + ACTIONS(7171), 1, + anon_sym_COMMA, + STATE(3916), 1, sym_heredoc_body, + STATE(3918), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6332), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -426917,8 +431147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6330), 36, - sym__line_break, + ACTIONS(5631), 34, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -426930,14 +431159,10 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -426954,15 +431179,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [109651] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [109605] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3920), 1, + ACTIONS(7171), 1, + anon_sym_COMMA, + STATE(3878), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3917), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6098), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -426971,8 +431203,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6096), 36, - sym__line_break, + ACTIONS(5631), 34, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -426983,15 +431215,10 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -427007,18 +431234,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_else, - [109710] = 6, + anon_sym_when, + anon_sym_in, + [109668] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7048), 1, - anon_sym_of, - STATE(3921), 1, + ACTIONS(7173), 1, + anon_sym_COMMA, + STATE(3878), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(3918), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5660), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -427027,7 +431259,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5656), 35, + ACTIONS(5637), 34, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -427041,9 +431274,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -427059,19 +431290,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [109771] = 5, + [109731] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3922), 1, + STATE(3919), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6102), 8, + ACTIONS(5931), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -427080,8 +431311,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6100), 36, + ACTIONS(5929), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -427094,7 +431326,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -427116,89 +431347,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [109830] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, - anon_sym_DOT_DOT, - ACTIONS(6930), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6950), 1, - anon_sym_QMARK, - ACTIONS(6952), 1, - anon_sym_AMP_AMP, - ACTIONS(6954), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(3923), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6958), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6960), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6606), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [109927] = 5, + anon_sym_do, + [109790] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3924), 1, + STATE(3920), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6336), 8, + ACTIONS(5935), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -427207,7 +431365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6334), 36, + ACTIONS(5933), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -427244,15 +431402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [109986] = 5, + [109849] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3925), 1, + STATE(3921), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6268), 8, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -427261,7 +431419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6266), 36, + ACTIONS(5937), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -427298,88 +431456,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [110045] = 24, + [109908] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6580), 1, + ACTIONS(4787), 1, anon_sym_COMMA, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, - anon_sym_DOT_DOT, - ACTIONS(6930), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6950), 1, - anon_sym_QMARK, ACTIONS(6952), 1, - anon_sym_AMP_AMP, - ACTIONS(6954), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(3926), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6958), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6960), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6606), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [110142] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3927), 1, + anon_sym_DASH_GT, + STATE(3922), 1, sym_heredoc_body, + STATE(9916), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6122), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -427388,8 +431479,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6120), 36, - sym__line_break, + anon_sym_EQ, + ACTIONS(4785), 32, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -427400,15 +431491,9 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -427424,16 +431509,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_else, - [110201] = 5, + anon_sym_when, + anon_sym_in, + [109973] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3928), 1, + STATE(3923), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6156), 8, + ACTIONS(6051), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -427442,8 +431530,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6154), 36, + ACTIONS(6049), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -427456,7 +431545,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -427478,16 +431566,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [110260] = 5, + anon_sym_do, + [110032] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3929), 1, + STATE(3924), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6122), 8, + ACTIONS(6291), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -427496,7 +431584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6120), 36, + ACTIONS(6289), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -427533,144 +431621,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [110319] = 5, + [110091] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3930), 1, + ACTIONS(6974), 1, + anon_sym_DOT_DOT, + ACTIONS(6976), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6980), 1, + anon_sym_PIPE, + ACTIONS(6982), 1, + anon_sym_CARET, + ACTIONS(6986), 1, + anon_sym_EQ_EQ, + ACTIONS(6992), 1, + anon_sym_AMP_STAR, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(6998), 1, + anon_sym_QMARK, + ACTIONS(7000), 1, + anon_sym_AMP_AMP, + ACTIONS(7002), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7004), 1, + sym__start_of_index_operator, + ACTIONS(7010), 1, + sym_binary_ampersand, + STATE(3925), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6340), 8, - anon_sym_DOT_DOT, + ACTIONS(6984), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6990), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6994), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6978), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6338), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6988), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7008), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6025), 11, + sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, - [110378] = 24, + [110186] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, + ACTIONS(6974), 1, anon_sym_DOT_DOT, - ACTIONS(6930), 1, + ACTIONS(6976), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, + ACTIONS(6980), 1, anon_sym_PIPE, - ACTIONS(6936), 1, + ACTIONS(6982), 1, anon_sym_CARET, - ACTIONS(6940), 1, + ACTIONS(6986), 1, anon_sym_EQ_EQ, - ACTIONS(6946), 1, + ACTIONS(6992), 1, anon_sym_AMP_STAR, - ACTIONS(6950), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(6998), 1, anon_sym_QMARK, - ACTIONS(6952), 1, + ACTIONS(7000), 1, anon_sym_AMP_AMP, - ACTIONS(6954), 1, + ACTIONS(7002), 1, anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, + ACTIONS(7004), 1, sym__start_of_index_operator, - ACTIONS(6962), 1, + ACTIONS(7010), 1, sym_binary_ampersand, - STATE(3931), 1, + STATE(3926), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, + ACTIONS(6984), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6990), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, + ACTIONS(6994), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(6978), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, + ACTIONS(6988), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, + ACTIONS(7008), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6606), 10, + ACTIONS(6039), 11, sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_end, - anon_sym_else, - [110475] = 6, + anon_sym_do, + [110281] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7050), 1, - sym_regex_modifier, - STATE(3932), 1, + STATE(3927), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -427679,7 +431782,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 35, + ACTIONS(6098), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -427690,12 +431795,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -427711,19 +431818,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [110536] = 5, + anon_sym_do, + [110340] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3933), 1, + STATE(3928), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6130), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -427732,7 +431836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6128), 36, + ACTIONS(6098), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -427769,15 +431873,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [110595] = 5, + [110399] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3934), 1, + STATE(3929), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(6106), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -427786,8 +431890,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 36, + ACTIONS(6104), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -427800,7 +431905,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -427822,89 +431926,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [110654] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, - anon_sym_DOT_DOT, - ACTIONS(6930), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6950), 1, - anon_sym_QMARK, - ACTIONS(6952), 1, - anon_sym_AMP_AMP, - ACTIONS(6954), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(3935), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6958), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6960), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6606), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [110751] = 5, + anon_sym_do, + [110458] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3936), 1, + STATE(3930), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6142), 8, + ACTIONS(6114), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -427913,7 +431944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6140), 36, + ACTIONS(6112), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -427950,15 +431981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [110810] = 5, + [110517] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3937), 1, + STATE(3931), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(5708), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -427967,8 +431998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 36, - sym__line_break, + ACTIONS(5706), 36, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -427979,15 +432009,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + sym__string_literal_start, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -428003,16 +432031,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_else, - [110869] = 5, + anon_sym_when, + anon_sym_in, + [110576] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3938), 1, + STATE(3932), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(6375), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -428021,8 +432052,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 36, + ACTIONS(6373), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -428035,7 +432067,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -428057,16 +432088,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [110928] = 5, + anon_sym_do, + [110635] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3939), 1, + STATE(3933), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(6118), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -428075,8 +432106,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 36, + ACTIONS(6116), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -428089,7 +432121,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -428111,16 +432142,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [110987] = 5, + anon_sym_do, + [110694] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3940), 1, + STATE(3934), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5654), 9, + ACTIONS(6122), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -428129,8 +432160,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_COLON2, - ACTIONS(5652), 35, + ACTIONS(6120), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -428141,12 +432173,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -428159,22 +432193,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [111046] = 5, + anon_sym_do, + [110753] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3941), 1, + STATE(3935), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6212), 8, + ACTIONS(6126), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -428183,8 +432214,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6210), 36, + ACTIONS(6124), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -428197,7 +432229,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -428219,18 +432250,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [111105] = 6, + anon_sym_do, + [110812] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7052), 1, - anon_sym_of, - STATE(3942), 1, + STATE(3936), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5660), 8, + ACTIONS(6130), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -428239,8 +432268,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5656), 35, + ACTIONS(6128), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -428253,12 +432283,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -428274,16 +432304,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [111166] = 5, + anon_sym_do, + [110871] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3943), 1, + ACTIONS(7175), 1, + anon_sym_of, + STATE(3937), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6150), 8, + ACTIONS(5739), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -428292,9 +432324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6148), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5735), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -428305,14 +432335,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -428328,16 +432356,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [111225] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [110932] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3944), 1, + ACTIONS(7177), 1, + sym_regex_modifier, + STATE(3938), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6216), 8, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -428346,8 +432379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6214), 36, - sym__line_break, + ACTIONS(5741), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -428358,15 +432390,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -428382,16 +432411,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_else, - [111284] = 5, + anon_sym_when, + anon_sym_in, + [110993] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3945), 1, + STATE(3939), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6268), 8, + ACTIONS(6102), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -428400,8 +432432,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6266), 36, + ACTIONS(6092), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -428414,7 +432447,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -428436,16 +432468,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [111343] = 5, + anon_sym_do, + [111052] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3946), 1, + STATE(3940), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(5645), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -428454,9 +432486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6419), 36, - sym__line_break, - sym__start_of_brace_block, + anon_sym_COLON2, + ACTIONS(5643), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -428467,14 +432498,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -428487,92 +432516,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [111402] = 24, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [111111] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, + ACTIONS(7179), 1, + sym_regex_modifier, + STATE(3941), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5749), 8, anon_sym_DOT_DOT, - ACTIONS(6930), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_CARET, - ACTIONS(6940), 1, anon_sym_EQ_EQ, - ACTIONS(6946), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6950), 1, + anon_sym_DOT, + ACTIONS(5747), 35, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(6952), 1, anon_sym_AMP_AMP, - ACTIONS(6954), 1, anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(3947), 1, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [111172] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7181), 1, + anon_sym_of, + STATE(3942), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, + ACTIONS(5757), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5753), 35, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [111233] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3943), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6075), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6073), 36, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6606), 10, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_else, - [111499] = 5, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [111292] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3948), 1, + STATE(3944), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6246), 8, + ACTIONS(6179), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -428581,7 +432704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6244), 36, + ACTIONS(6177), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -428618,15 +432741,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [111558] = 5, + [111351] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3949), 1, + STATE(3945), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -428635,8 +432758,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 36, + ACTIONS(6189), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -428649,7 +432773,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -428671,16 +432794,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [111617] = 5, + anon_sym_do, + [111410] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3950), 1, + STATE(3946), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6184), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -428689,9 +432812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6182), 36, + ACTIONS(135), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -428704,6 +432826,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -428725,18 +432848,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [111676] = 6, + anon_sym_else, + [111469] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7054), 1, - anon_sym_of, - STATE(3951), 1, + STATE(3947), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5690), 8, + ACTIONS(5849), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -428745,7 +432866,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5686), 35, + ACTIONS(5847), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -428756,12 +432878,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -428777,21 +432902,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_else, - anon_sym_when, - anon_sym_in, - [111737] = 6, + [111528] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7056), 1, - anon_sym_of, - STATE(3952), 1, + STATE(3948), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5719), 8, + ACTIONS(5865), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -428800,7 +432920,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5715), 35, + ACTIONS(5863), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -428811,12 +432932,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -428832,131 +432956,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_else, - anon_sym_when, - anon_sym_in, - [111798] = 7, + [111587] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7058), 1, - anon_sym_COLON_COLON, - STATE(3953), 1, - sym_heredoc_body, - STATE(3994), 1, - aux_sym_constant_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4553), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 33, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [111861] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7058), 1, - anon_sym_COLON_COLON, - STATE(3954), 1, - sym_heredoc_body, - STATE(3997), 1, - aux_sym_constant_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4553), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 33, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [111924] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(3955), 1, + STATE(3949), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(6303), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -428965,9 +432974,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5872), 36, + ACTIONS(6301), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -428980,6 +432988,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -429001,16 +433010,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [111983] = 5, + anon_sym_else, + [111646] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3956), 1, + STATE(3950), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6238), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -429019,8 +433028,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6236), 36, + ACTIONS(6189), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -429033,7 +433043,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -429055,16 +433064,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [112042] = 5, + anon_sym_do, + [111705] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3957), 1, + STATE(3951), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6188), 8, + ACTIONS(5943), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -429073,9 +433082,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6186), 36, + ACTIONS(5941), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -429088,6 +433096,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -429109,16 +433118,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [112101] = 5, + anon_sym_else, + [111764] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3958), 1, + STATE(3952), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6254), 8, + ACTIONS(5993), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -429127,7 +433136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6252), 36, + ACTIONS(5991), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -429164,15 +433173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [112160] = 5, + [111823] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3959), 1, + STATE(3953), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6260), 8, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -429181,7 +433190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6258), 36, + ACTIONS(5983), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -429218,15 +433227,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [112219] = 5, + [111882] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3960), 1, + STATE(3954), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(6029), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -429235,7 +433244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 36, + ACTIONS(6027), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -429272,15 +433281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [112278] = 5, + [111941] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3961), 1, + STATE(3955), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6200), 8, + ACTIONS(6033), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -429289,9 +433298,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6198), 36, + ACTIONS(6031), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -429304,6 +433312,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -429325,16 +433334,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [112337] = 5, + anon_sym_else, + [112000] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3962), 1, + STATE(3956), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6400), 8, + ACTIONS(6086), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -429343,7 +433352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6398), 36, + ACTIONS(6084), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -429380,15 +433389,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [112396] = 5, + [112059] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3963), 1, + STATE(3957), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6250), 8, + ACTIONS(6096), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -429397,7 +433406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6248), 36, + ACTIONS(6094), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -429434,15 +433443,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [112455] = 5, + [112118] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3964), 1, + STATE(3958), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5738), 8, + ACTIONS(6110), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -429451,7 +433460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5736), 36, + ACTIONS(6108), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -429488,15 +433497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [112514] = 5, + [112177] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3965), 1, + STATE(3959), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6272), 8, + ACTIONS(6144), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -429505,7 +433514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6270), 36, + ACTIONS(6142), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -429542,15 +433551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [112573] = 5, + [112236] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3966), 1, + STATE(3960), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5742), 8, + ACTIONS(6223), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -429559,7 +433568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5740), 36, + ACTIONS(6221), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -429596,15 +433605,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [112632] = 5, + [112295] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3967), 1, + STATE(3961), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6276), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -429613,7 +433622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6274), 36, + ACTIONS(6249), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -429650,15 +433659,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [112691] = 5, + [112354] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3968), 1, + STATE(3962), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6280), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -429667,8 +433676,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6278), 36, + ACTIONS(6189), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -429681,7 +433691,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -429703,16 +433712,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [112750] = 5, + anon_sym_do, + [112413] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3969), 1, + STATE(3963), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6284), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -429721,8 +433730,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6282), 36, + ACTIONS(6189), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -429735,7 +433745,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -429757,16 +433766,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [112809] = 5, + anon_sym_do, + [112472] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3970), 1, + STATE(3964), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6288), 8, + ACTIONS(5570), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -429775,7 +433784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6286), 36, + ACTIONS(5568), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -429812,15 +433821,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [112868] = 5, + [112531] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3971), 1, + STATE(3965), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6344), 8, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -429829,9 +433838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6342), 36, + ACTIONS(5785), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -429844,6 +433852,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -429865,16 +433874,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [112927] = 5, + anon_sym_else, + [112590] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3972), 1, + STATE(3966), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6348), 8, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -429883,9 +433892,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6346), 36, + ACTIONS(5785), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -429898,6 +433906,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -429919,16 +433928,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [112986] = 5, + anon_sym_else, + [112649] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3973), 1, + STATE(3967), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6352), 8, + ACTIONS(5809), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -429937,9 +433946,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6350), 36, + ACTIONS(5807), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -429952,6 +433960,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -429973,18 +433982,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [113045] = 6, + anon_sym_else, + [112708] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7060), 1, - anon_sym_of, - STATE(3974), 1, + STATE(3968), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5702), 8, + ACTIONS(5813), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -429993,7 +434000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5698), 35, + ACTIONS(5811), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -430013,6 +434020,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -430029,15 +434037,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [113106] = 5, + [112767] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3975), 1, - sym_heredoc_body, + ACTIONS(7183), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5754), 8, + STATE(3969), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -430046,10 +434057,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5752), 36, - sym__line_break, + anon_sym_EQ, + ACTIONS(4600), 33, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -430059,16 +434071,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -430079,19 +434087,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [113165] = 5, + [112828] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3976), 1, + STATE(3970), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6292), 8, + ACTIONS(6219), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -430100,8 +434109,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6290), 36, + ACTIONS(6217), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -430114,7 +434124,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -430136,18 +434145,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [113224] = 6, + anon_sym_do, + [112887] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7062), 1, - sym_regex_modifier, - STATE(3977), 1, + ACTIONS(7163), 1, + anon_sym_COLON_COLON, + STATE(3969), 1, + aux_sym_constant_repeat1, + STATE(3971), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(4590), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -430156,8 +434167,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 35, + anon_sym_EQ, + ACTIONS(4592), 33, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -430168,13 +434182,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -430185,386 +434197,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [113285] = 24, + anon_sym_do, + [112950] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, + ACTIONS(6974), 1, anon_sym_DOT_DOT, - ACTIONS(6930), 1, + ACTIONS(6976), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, + ACTIONS(6980), 1, anon_sym_PIPE, - ACTIONS(6936), 1, + ACTIONS(6982), 1, anon_sym_CARET, - ACTIONS(6940), 1, + ACTIONS(6986), 1, anon_sym_EQ_EQ, - ACTIONS(6946), 1, + ACTIONS(6992), 1, anon_sym_AMP_STAR, - ACTIONS(6950), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(6998), 1, anon_sym_QMARK, - ACTIONS(6952), 1, + ACTIONS(7000), 1, anon_sym_AMP_AMP, - ACTIONS(6954), 1, + ACTIONS(7002), 1, anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, + ACTIONS(7004), 1, sym__start_of_index_operator, - ACTIONS(6962), 1, + ACTIONS(7010), 1, sym_binary_ampersand, - STATE(3978), 1, + STATE(3972), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, + ACTIONS(6984), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6990), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, + ACTIONS(6994), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(6978), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, + ACTIONS(6988), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, + ACTIONS(7008), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6584), 10, + ACTIONS(5923), 11, sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_end, - anon_sym_else, - [113382] = 24, + anon_sym_do, + [113045] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, - anon_sym_DOT_DOT, - ACTIONS(6930), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6950), 1, - anon_sym_QMARK, - ACTIONS(6952), 1, - anon_sym_AMP_AMP, - ACTIONS(6954), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(3979), 1, + STATE(3973), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(5547), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5545), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6584), 10, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [113479] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6580), 1, anon_sym_COMMA, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, - anon_sym_DOT_DOT, - ACTIONS(6930), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6950), 1, - anon_sym_QMARK, - ACTIONS(6952), 1, - anon_sym_AMP_AMP, - ACTIONS(6954), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(3980), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6938), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6958), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6960), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6584), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_else, - [113576] = 23, + [113104] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, + ACTIONS(6974), 1, anon_sym_DOT_DOT, - ACTIONS(6930), 1, + ACTIONS(6976), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, + ACTIONS(6980), 1, anon_sym_PIPE, - ACTIONS(6936), 1, + ACTIONS(6982), 1, anon_sym_CARET, - ACTIONS(6940), 1, + ACTIONS(6986), 1, anon_sym_EQ_EQ, - ACTIONS(6946), 1, + ACTIONS(6992), 1, anon_sym_AMP_STAR, - ACTIONS(6950), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(6998), 1, anon_sym_QMARK, - ACTIONS(6952), 1, + ACTIONS(7000), 1, anon_sym_AMP_AMP, - ACTIONS(6954), 1, + ACTIONS(7002), 1, anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, + ACTIONS(7004), 1, sym__start_of_index_operator, - ACTIONS(6962), 1, + ACTIONS(7010), 1, sym_binary_ampersand, - STATE(3981), 1, + STATE(3974), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, + ACTIONS(6984), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6990), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, + ACTIONS(6994), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(6978), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, + ACTIONS(6988), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, + ACTIONS(7008), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5708), 11, + ACTIONS(5773), 11, sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_COMMA, anon_sym_end, - anon_sym_else, - [113671] = 24, + anon_sym_do, + [113199] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, - anon_sym_DOT_DOT, - ACTIONS(6930), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6950), 1, - anon_sym_QMARK, - ACTIONS(6952), 1, - anon_sym_AMP_AMP, - ACTIONS(6954), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(3982), 1, + STATE(3975), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(5547), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5545), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6584), 10, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_else, - [113768] = 5, + [113258] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3983), 1, + STATE(3976), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5746), 8, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -430573,7 +434471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5744), 36, + ACTIONS(5871), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -430610,161 +434508,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [113827] = 24, + [113317] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, - anon_sym_DOT_DOT, - ACTIONS(6930), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6950), 1, - anon_sym_QMARK, - ACTIONS(6952), 1, - anon_sym_AMP_AMP, - ACTIONS(6954), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(3984), 1, + STATE(3977), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(5873), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5871), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6584), 10, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [113924] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6580), 1, anon_sym_COMMA, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, - anon_sym_DOT_DOT, - ACTIONS(6930), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6950), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(6952), 1, anon_sym_AMP_AMP, - ACTIONS(6954), 1, anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(3985), 1, + anon_sym_else, + [113376] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3978), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(5877), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5875), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6584), 10, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_else, - [114021] = 5, + [113435] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3986), 1, + ACTIONS(7186), 1, + anon_sym_of, + STATE(3979), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5750), 8, + ACTIONS(5739), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -430773,7 +434635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5748), 36, + ACTIONS(5735), 35, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -430793,7 +434655,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -430810,15 +434671,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [114080] = 5, + [113496] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3987), 1, + STATE(3980), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6308), 8, + ACTIONS(5885), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -430827,7 +434688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6306), 36, + ACTIONS(5883), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -430864,21 +434725,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [114139] = 8, + [113555] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(6972), 1, - anon_sym_DASH_GT, - STATE(3988), 1, + STATE(3981), 1, sym_heredoc_body, - STATE(10052), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -430887,8 +434742,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 32, + ACTIONS(5741), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -430899,9 +434754,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -430917,163 +434778,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_else, - anon_sym_when, - anon_sym_in, - [114204] = 23, + [113614] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6863), 1, - anon_sym_DOT_DOT, - ACTIONS(6865), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6869), 1, - anon_sym_PIPE, - ACTIONS(6871), 1, - anon_sym_CARET, - ACTIONS(6875), 1, - anon_sym_EQ_EQ, - ACTIONS(6881), 1, - anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6887), 1, - anon_sym_QMARK, - ACTIONS(6889), 1, - anon_sym_AMP_AMP, - ACTIONS(6891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, - sym__start_of_index_operator, - ACTIONS(6899), 1, - sym_binary_ampersand, - STATE(3989), 1, + STATE(3982), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6879), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, + ACTIONS(6283), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6877), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6895), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6281), 36, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6897), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6144), 11, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - [114299] = 23, + [113673] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6863), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, anon_sym_DOT_DOT, - ACTIONS(6865), 1, + ACTIONS(6916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6869), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6871), 1, + ACTIONS(6922), 1, anon_sym_CARET, - ACTIONS(6875), 1, + ACTIONS(6926), 1, anon_sym_EQ_EQ, - ACTIONS(6881), 1, + ACTIONS(6932), 1, anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6887), 1, + ACTIONS(6936), 1, anon_sym_QMARK, - ACTIONS(6889), 1, + ACTIONS(6938), 1, anon_sym_AMP_AMP, - ACTIONS(6891), 1, + ACTIONS(6940), 1, anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(6899), 1, + ACTIONS(6948), 1, sym_binary_ampersand, - STATE(3990), 1, + STATE(3983), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, + ACTIONS(6924), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6879), 2, + ACTIONS(6930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, + ACTIONS(6934), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, + ACTIONS(6918), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6877), 4, + ACTIONS(6928), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6895), 4, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6897), 4, + ACTIONS(6946), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6152), 11, + ACTIONS(6652), 10, sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_end, - anon_sym_do, - [114394] = 5, + anon_sym_else, + [113770] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3991), 1, + STATE(3984), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(5897), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -431082,7 +434923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5878), 36, + ACTIONS(5895), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -431119,15 +434960,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [114453] = 5, + [113829] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3992), 1, + STATE(3985), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6008), 8, + ACTIONS(5901), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -431136,9 +434977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6006), 36, + ACTIONS(5899), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -431151,6 +434991,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -431172,16 +435013,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [114512] = 5, + anon_sym_else, + [113888] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3993), 1, + STATE(3986), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6288), 8, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -431190,9 +435031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6286), 36, + ACTIONS(5903), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -431205,6 +435045,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -431226,19 +435067,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [114571] = 6, + anon_sym_else, + [113947] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7064), 1, - anon_sym_COLON_COLON, + STATE(3987), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3994), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4561), 9, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -431247,11 +435085,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4563), 33, - sym__start_of_brace_block, + ACTIONS(5747), 36, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -431261,12 +435097,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -431277,20 +435118,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [114632] = 5, + anon_sym_else, + [114006] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3995), 1, + STATE(3988), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6316), 8, + ACTIONS(5921), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -431299,7 +435139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6314), 36, + ACTIONS(5919), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -431336,19 +435176,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [114691] = 7, + [114065] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7058), 1, - anon_sym_COLON_COLON, - STATE(3953), 1, - aux_sym_constant_repeat1, - STATE(3996), 1, + STATE(3989), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 9, + ACTIONS(5927), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -431357,11 +435193,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4549), 33, - sym__start_of_brace_block, + ACTIONS(5925), 36, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -431371,12 +435205,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -431387,24 +435226,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [114754] = 7, + anon_sym_else, + [114124] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7058), 1, - anon_sym_COLON_COLON, - STATE(3994), 1, - aux_sym_constant_repeat1, - STATE(3997), 1, + STATE(3990), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4557), 9, + ACTIONS(5931), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -431413,11 +435247,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4559), 33, - sym__start_of_brace_block, + ACTIONS(5929), 36, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -431427,12 +435259,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -431443,20 +435280,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [114817] = 5, + anon_sym_else, + [114183] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3998), 1, + STATE(3991), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5754), 8, + ACTIONS(5935), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -431465,7 +435301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5752), 36, + ACTIONS(5933), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -431502,15 +435338,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [114876] = 5, + [114242] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(3999), 1, + STATE(3992), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5887), 8, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -431519,9 +435355,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5885), 36, + ACTIONS(5937), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -431534,6 +435369,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -431555,17 +435391,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [114935] = 5, + anon_sym_else, + [114301] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4000), 1, + ACTIONS(7188), 1, + anon_sym_of, + STATE(3993), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4561), 10, - anon_sym_RBRACK, + ACTIONS(5757), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -431574,9 +435411,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4563), 34, - sym__start_of_brace_block, + ACTIONS(5753), 35, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -431587,12 +435423,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -431603,22 +435443,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [114994] = 5, + anon_sym_else, + [114362] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4001), 1, + STATE(3994), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5891), 8, + ACTIONS(5947), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -431627,9 +435464,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5889), 36, + ACTIONS(5945), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -431642,6 +435478,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -431663,20 +435500,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [115053] = 7, + anon_sym_else, + [114421] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6893), 1, - sym__start_of_index_operator, - STATE(4002), 1, + STATE(3995), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5895), 7, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -431684,9 +435517,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5893), 35, + anon_sym_DOT, + ACTIONS(6229), 36, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -431720,15 +435555,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [115116] = 5, + [114480] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4003), 1, + STATE(3996), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5798), 8, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -431737,8 +435572,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5796), 36, + ACTIONS(6233), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -431751,7 +435587,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -431773,16 +435608,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [115175] = 5, + anon_sym_do, + [114539] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4004), 1, + STATE(3997), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5512), 8, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -431791,7 +435626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 36, + ACTIONS(6237), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -431828,15 +435663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [115234] = 5, + [114598] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4005), 1, + STATE(3998), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6192), 8, + ACTIONS(6243), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -431845,7 +435680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6190), 36, + ACTIONS(6241), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -431882,85 +435717,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [115293] = 21, + [114657] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5923), 1, - anon_sym_DOT_DOT, - ACTIONS(6869), 1, - anon_sym_PIPE, - ACTIONS(6871), 1, - anon_sym_CARET, - ACTIONS(6875), 1, - anon_sym_EQ_EQ, - ACTIONS(6881), 1, - anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6889), 1, - anon_sym_AMP_AMP, - ACTIONS(6891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, - sym__start_of_index_operator, - ACTIONS(6899), 1, - sym_binary_ampersand, - STATE(4006), 1, + STATE(3999), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6879), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, + ACTIONS(6247), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6877), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6895), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6245), 36, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6897), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5921), 13, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - [115384] = 5, + [114716] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4007), 1, + STATE(4000), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5758), 8, + ACTIONS(6255), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -431969,8 +435788,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5756), 36, + ACTIONS(6253), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -431983,7 +435803,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -432005,16 +435824,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [115443] = 5, + anon_sym_do, + [114775] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4008), 1, + STATE(4001), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(6267), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -432023,8 +435842,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 36, + ACTIONS(6265), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -432037,7 +435857,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -432059,16 +435878,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [115502] = 5, + anon_sym_do, + [114834] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4009), 1, + STATE(4002), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(6051), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -432077,7 +435896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 36, + ACTIONS(6049), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -432114,15 +435933,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [115561] = 5, + [114893] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4010), 1, + ACTIONS(7190), 1, + anon_sym_of, + STATE(4003), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6280), 8, + ACTIONS(5725), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -432131,9 +435952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6278), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5721), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -432144,14 +435963,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -432167,16 +435984,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [115620] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [114954] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4011), 1, + STATE(4004), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5762), 8, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -432185,8 +436005,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5760), 36, + ACTIONS(6329), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -432199,7 +436020,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -432221,16 +436041,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [115679] = 5, + anon_sym_do, + [115013] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4012), 1, + STATE(4005), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6328), 8, + ACTIONS(6075), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -432239,7 +436059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6326), 36, + ACTIONS(6073), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -432276,17 +436096,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [115738] = 6, + [115072] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7067), 1, - anon_sym_of, - STATE(4013), 1, + STATE(4006), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5702), 8, + ACTIONS(6287), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -432295,7 +436113,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5698), 35, + ACTIONS(6285), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -432306,12 +436126,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -432327,19 +436149,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [115799] = 5, + anon_sym_do, + [115131] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4014), 1, + STATE(4007), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6332), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -432348,7 +436167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6330), 36, + ACTIONS(6098), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -432385,15 +436204,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [115858] = 5, + [115190] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4015), 1, + STATE(4008), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6336), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -432402,7 +436221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6334), 36, + ACTIONS(6098), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -432439,15 +436258,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [115917] = 5, + [115249] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4016), 1, + STATE(4009), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6340), 8, + ACTIONS(6106), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -432456,7 +436275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6338), 36, + ACTIONS(6104), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -432493,15 +436312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [115976] = 5, + [115308] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4017), 1, + STATE(4010), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6224), 8, + ACTIONS(6114), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -432510,7 +436329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6222), 36, + ACTIONS(6112), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -432547,15 +436366,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [116035] = 5, + [115367] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4018), 1, + STATE(4011), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6118), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -432564,9 +436383,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 36, + ACTIONS(6116), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -432579,6 +436397,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -432600,16 +436419,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [116094] = 5, + anon_sym_else, + [115426] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4019), 1, + STATE(4012), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6344), 8, + ACTIONS(6122), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -432618,7 +436437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6342), 36, + ACTIONS(6120), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -432655,15 +436474,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [116153] = 5, + [115485] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4020), 1, + STATE(4013), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(6126), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -432672,9 +436491,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5878), 36, + ACTIONS(6124), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -432687,6 +436505,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -432708,16 +436527,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [116212] = 5, + anon_sym_else, + [115544] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4021), 1, + STATE(4014), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5766), 8, + ACTIONS(6130), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -432726,7 +436545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5764), 36, + ACTIONS(6128), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -432763,15 +436582,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [116271] = 5, + [115603] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4022), 1, + ACTIONS(7192), 1, + anon_sym_of, + STATE(4015), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5774), 8, + ACTIONS(5733), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -432780,8 +436601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5772), 36, - sym__line_break, + ACTIONS(5729), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -432792,15 +436612,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -432816,16 +436633,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_else, - [116330] = 5, + anon_sym_when, + anon_sym_in, + [115664] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4023), 1, + STATE(4016), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5834), 8, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -432834,7 +436654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5832), 36, + ACTIONS(6309), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -432871,19 +436691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [116389] = 7, + [115723] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7069), 1, - anon_sym_COLON_COLON, - STATE(4024), 1, + STATE(4017), 1, sym_heredoc_body, - STATE(4063), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 9, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -432892,8 +436708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4549), 33, + ACTIONS(6189), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -432905,13 +436720,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -432922,20 +436741,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [116452] = 5, + anon_sym_else, + [115782] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4025), 1, + STATE(4018), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5778), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -432944,7 +436762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5776), 36, + ACTIONS(6189), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -432981,15 +436799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [116511] = 5, + [115841] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4026), 1, + STATE(4019), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5713), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -432998,9 +436816,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 36, + ACTIONS(6189), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -433013,6 +436830,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -433034,16 +436852,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [116570] = 5, + anon_sym_else, + [115900] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4027), 1, + STATE(4020), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5838), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -433052,9 +436870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5836), 36, + ACTIONS(6189), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -433067,6 +436884,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -433088,16 +436906,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [116629] = 5, + anon_sym_else, + [115959] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4028), 1, + STATE(4021), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6219), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -433106,9 +436924,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 36, + ACTIONS(6217), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -433121,6 +436938,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -433142,16 +436960,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [116688] = 5, + anon_sym_else, + [116018] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4029), 1, + ACTIONS(7194), 1, + anon_sym_of, + STATE(4022), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5935), 8, + ACTIONS(5725), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -433160,9 +436980,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5933), 36, + ACTIONS(5721), 35, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -433175,12 +436994,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -433196,16 +437015,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [116747] = 5, + anon_sym_else, + [116079] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4030), 1, + STATE(4023), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5945), 8, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -433214,9 +437033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5943), 36, + ACTIONS(6229), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -433229,6 +437047,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -433250,16 +437069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [116806] = 5, + anon_sym_else, + [116138] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4031), 1, + STATE(4024), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -433268,9 +437087,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5955), 36, + ACTIONS(6233), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -433283,6 +437101,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -433304,16 +437123,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [116865] = 5, + anon_sym_else, + [116197] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4032), 1, + STATE(4025), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5806), 8, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -433322,7 +437141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5804), 36, + ACTIONS(6237), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -433359,15 +437178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [116924] = 5, + [116256] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4033), 1, + STATE(4026), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5520), 8, + ACTIONS(6243), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -433376,7 +437195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5518), 36, + ACTIONS(6241), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -433390,11 +437209,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -433409,19 +437228,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [116983] = 5, + anon_sym_else, + [116315] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4034), 1, + STATE(4027), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5976), 8, + ACTIONS(6247), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -433430,9 +437249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5974), 36, + ACTIONS(6245), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -433445,6 +437263,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -433466,16 +437285,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [117042] = 5, + anon_sym_else, + [116374] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4035), 1, + STATE(4028), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5980), 8, + ACTIONS(6255), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -433484,9 +437303,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5978), 36, + ACTIONS(6253), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -433499,6 +437317,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -433520,16 +437339,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [117101] = 5, + anon_sym_else, + [116433] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4036), 1, + STATE(4029), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6016), 8, + ACTIONS(6267), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -433538,9 +437357,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6014), 36, + ACTIONS(6265), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -433553,6 +437371,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -433574,16 +437393,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [117160] = 5, + anon_sym_else, + [116492] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4037), 1, + ACTIONS(7196), 1, + anon_sym_of, + STATE(4030), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6126), 8, + ACTIONS(5733), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -433592,9 +437413,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6124), 36, + ACTIONS(5729), 35, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -433607,12 +437427,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -433628,16 +437448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [117219] = 5, + anon_sym_else, + [116553] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4038), 1, + STATE(4031), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5984), 8, + ACTIONS(6283), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -433646,9 +437466,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5982), 36, + ACTIONS(6281), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -433661,6 +437480,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -433682,16 +437502,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [117278] = 5, + anon_sym_else, + [116612] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4039), 1, + STATE(4032), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5996), 8, + ACTIONS(6287), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -433700,9 +437520,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5994), 36, + ACTIONS(6285), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -433715,6 +437534,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -433736,20 +437556,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [117337] = 7, + anon_sym_else, + [116671] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6893), 1, - sym__start_of_index_operator, - STATE(4040), 1, + STATE(4033), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6000), 7, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -433757,9 +437573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5998), 35, + anon_sym_DOT, + ACTIONS(6309), 36, sym__line_break, - sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -433771,6 +437588,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -433792,16 +437610,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [117400] = 5, + anon_sym_else, + [116730] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4041), 1, + STATE(4034), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -433810,7 +437628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 36, + ACTIONS(6333), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -433847,15 +437665,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [117459] = 5, + [116789] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4042), 1, + STATE(4035), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5814), 8, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -433864,7 +437682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5812), 36, + ACTIONS(6329), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -433901,19 +437719,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [117518] = 7, + [116848] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6893), 1, - sym__start_of_index_operator, - STATE(4043), 1, + STATE(4036), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6004), 7, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -433921,9 +437735,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6002), 35, + anon_sym_DOT, + ACTIONS(6333), 36, sym__line_break, - sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -433935,6 +437750,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -433956,16 +437772,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [117581] = 5, + anon_sym_else, + [116907] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4044), 1, + STATE(4037), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5822), 8, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -433974,7 +437790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5820), 36, + ACTIONS(6337), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -434011,15 +437827,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [117640] = 5, + [116966] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4045), 1, + STATE(4038), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5830), 8, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -434028,7 +437844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5828), 36, + ACTIONS(6341), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -434065,15 +437881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [117699] = 5, + [117025] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4046), 1, + STATE(4039), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6160), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -434082,9 +437898,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6158), 36, + ACTIONS(6349), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -434097,6 +437912,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -434118,16 +437934,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [117758] = 5, + anon_sym_else, + [117084] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4047), 1, + STATE(4040), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6110), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -434136,7 +437952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6108), 36, + ACTIONS(6353), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -434173,15 +437989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [117817] = 5, + [117143] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4048), 1, + STATE(4041), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6172), 8, + ACTIONS(6446), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -434190,7 +438006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6170), 36, + ACTIONS(6444), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -434227,79 +438043,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [117876] = 15, + [117202] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7071), 1, - anon_sym_LPAREN, - ACTIONS(7073), 1, - anon_sym_DASH_GT, - ACTIONS(7076), 1, - anon_sym_typeof, - ACTIONS(7078), 1, - sym__constant_segment, - ACTIONS(7080), 1, - anon_sym_COLON_COLON, - ACTIONS(7084), 1, - sym__start_of_tuple_type, - ACTIONS(7086), 1, - sym__start_of_named_tuple_type, - STATE(4049), 1, + STATE(4042), 1, sym_heredoc_body, - STATE(7662), 1, - sym_constant, - STATE(7698), 1, - sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7082), 2, - sym_self, - sym_underscore_type, - STATE(7736), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4325), 21, + ACTIONS(6367), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6365), 36, sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + [117261] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4043), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6371), 8, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_forall, + ACTIONS(6369), 36, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_elsif, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_else, - anon_sym_when, - anon_sym_in, - [117955] = 5, + [117320] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4050), 1, + STATE(4044), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6379), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -434308,9 +438168,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 36, + ACTIONS(6377), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -434323,6 +438182,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -434344,16 +438204,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [118014] = 5, + anon_sym_else, + [117379] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4051), 1, + STATE(4045), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6176), 8, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -434362,9 +438222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6174), 36, + ACTIONS(6385), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -434377,6 +438236,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -434398,16 +438258,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [118073] = 5, + anon_sym_else, + [117438] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4052), 1, + STATE(4046), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -434416,7 +438276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 36, + ACTIONS(6389), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -434453,15 +438313,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [118132] = 5, + [117497] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4053), 1, + STATE(4047), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6180), 8, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -434470,9 +438330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6178), 36, + ACTIONS(6393), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -434485,6 +438344,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -434506,16 +438366,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [118191] = 5, + anon_sym_else, + [117556] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4054), 1, + STATE(4048), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6024), 8, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -434524,9 +438384,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6022), 36, + ACTIONS(6397), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -434539,6 +438398,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -434560,70 +438420,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [118250] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4055), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4743), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 35, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_else, - anon_sym_when, - anon_sym_in, - [118309] = 5, + [117615] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4056), 1, + STATE(4049), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6208), 8, + ACTIONS(6410), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -434632,9 +438438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6206), 36, + ACTIONS(6408), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -434647,6 +438452,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -434668,16 +438474,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [118368] = 5, + anon_sym_else, + [117674] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4057), 1, + STATE(4050), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5838), 8, + ACTIONS(6414), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -434686,7 +438492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5836), 36, + ACTIONS(6412), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -434723,15 +438529,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [118427] = 5, + [117733] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4058), 1, + STATE(4051), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6220), 8, + ACTIONS(6418), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -434740,9 +438546,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6218), 36, + ACTIONS(6416), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -434755,6 +438560,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -434776,16 +438582,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [118486] = 5, + anon_sym_else, + [117792] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4059), 1, + STATE(4052), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6228), 8, + ACTIONS(6422), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -434794,9 +438600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6226), 36, + ACTIONS(6420), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -434809,6 +438614,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -434830,16 +438636,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [118545] = 5, + anon_sym_else, + [117851] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4060), 1, + STATE(4053), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6324), 8, + ACTIONS(6426), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -434848,7 +438654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6322), 36, + ACTIONS(6424), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -434885,15 +438691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [118604] = 5, + [117910] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4061), 1, + STATE(4054), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6264), 8, + ACTIONS(6430), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -434902,9 +438708,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6262), 36, + ACTIONS(6428), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -434917,6 +438722,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -434938,16 +438744,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [118663] = 5, + anon_sym_else, + [117969] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4062), 1, + STATE(4055), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6300), 8, + ACTIONS(6434), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -434956,9 +438762,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6298), 36, + ACTIONS(6432), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -434971,6 +438776,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -434992,128 +438798,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [118722] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7069), 1, - anon_sym_COLON_COLON, - STATE(4063), 1, - sym_heredoc_body, - STATE(4211), 1, - aux_sym_constant_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4553), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 33, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [118785] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7069), 1, - anon_sym_COLON_COLON, - STATE(4064), 1, - sym_heredoc_body, - STATE(4212), 1, - aux_sym_constant_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4553), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 33, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [118848] = 5, + anon_sym_else, + [118028] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4065), 1, + STATE(4056), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6312), 8, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -435122,7 +438816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6310), 36, + ACTIONS(5694), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -435159,15 +438853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [118907] = 5, + [118087] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4066), 1, + STATE(4057), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6438), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -435176,7 +438870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 36, + ACTIONS(6436), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -435213,15 +438907,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [118966] = 5, + [118146] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4067), 1, + ACTIONS(7198), 1, + anon_sym_of, + STATE(4058), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6284), 8, + ACTIONS(5714), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -435230,9 +438926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6282), 36, + ACTIONS(5710), 35, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -435245,12 +438940,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -435266,16 +438961,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [119025] = 5, + anon_sym_else, + [118207] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4068), 1, + STATE(4059), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(5965), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -435284,7 +438979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 36, + ACTIONS(5963), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -435321,15 +439016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [119084] = 5, + [118266] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4069), 1, + STATE(4060), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5802), 8, + ACTIONS(6005), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -435338,9 +439033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5800), 36, + ACTIONS(6003), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -435353,6 +439047,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -435374,16 +439069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [119143] = 5, + anon_sym_else, + [118325] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4070), 1, + STATE(4061), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6138), 8, + ACTIONS(5801), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -435392,7 +439087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6136), 36, + ACTIONS(5799), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -435429,15 +439124,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [119202] = 5, + [118384] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4071), 1, + STATE(4062), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(5917), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -435446,7 +439141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 36, + ACTIONS(5915), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -435483,15 +439178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [119261] = 5, + [118443] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4072), 1, + STATE(4063), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6348), 8, + ACTIONS(5955), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -435500,7 +439195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6346), 36, + ACTIONS(5953), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -435537,15 +439232,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [119320] = 5, + [118502] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4073), 1, + STATE(4064), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -435554,9 +439249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6360), 36, + ACTIONS(6195), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -435569,6 +439263,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -435590,16 +439285,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [119379] = 5, + anon_sym_else, + [118561] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4074), 1, + ACTIONS(7200), 1, + anon_sym_of, + STATE(4065), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6196), 8, + ACTIONS(5651), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -435608,7 +439305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6194), 36, + ACTIONS(5647), 35, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -435628,7 +439325,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -435645,15 +439341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [119438] = 5, + [118622] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4075), 1, + STATE(4066), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(6164), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -435662,7 +439358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6360), 36, + ACTIONS(6162), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -435699,17 +439395,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [119497] = 6, + [118681] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7088), 1, - anon_sym_of, - STATE(4076), 1, + STATE(4067), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5728), 8, + ACTIONS(5837), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -435718,7 +439412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5724), 35, + ACTIONS(5835), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -435738,6 +439432,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -435754,15 +439449,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [119558] = 5, + [118740] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4077), 1, + STATE(4068), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6304), 8, + ACTIONS(6059), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -435771,9 +439466,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6302), 36, + ACTIONS(6057), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -435786,6 +439480,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -435807,16 +439502,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [119617] = 5, + anon_sym_else, + [118799] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4078), 1, + STATE(4069), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6020), 8, + ACTIONS(6470), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -435825,9 +439520,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6018), 36, + ACTIONS(6468), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -435840,6 +439534,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -435861,16 +439556,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [119676] = 5, + anon_sym_else, + [118858] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4079), 1, + STATE(4070), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6372), 8, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -435879,7 +439574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6370), 36, + ACTIONS(6381), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -435916,15 +439611,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [119735] = 5, + [118917] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4080), 1, + STATE(4071), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5536), 8, + ACTIONS(6450), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -435933,7 +439628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5534), 36, + ACTIONS(6448), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -435947,11 +439642,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -435966,19 +439661,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [119794] = 5, + anon_sym_else, + [118976] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4081), 1, + STATE(4072), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6276), 8, + ACTIONS(5805), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -435987,9 +439682,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6274), 36, + ACTIONS(5803), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -436002,6 +439696,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -436023,16 +439718,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [119853] = 5, + anon_sym_else, + [119035] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4082), 1, + STATE(4073), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5842), 8, + ACTIONS(5821), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -436041,7 +439736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5840), 36, + ACTIONS(5819), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -436078,15 +439773,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [119912] = 5, + [119094] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4083), 1, + STATE(4074), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6376), 8, + ACTIONS(5845), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -436095,7 +439790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6374), 36, + ACTIONS(5843), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -436132,15 +439827,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [119971] = 5, + [119153] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4084), 1, + STATE(4075), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6292), 8, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -436149,7 +439844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6290), 36, + ACTIONS(6337), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -436186,159 +439881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [120030] = 23, + [119212] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6863), 1, - anon_sym_DOT_DOT, - ACTIONS(6865), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6869), 1, - anon_sym_PIPE, - ACTIONS(6871), 1, - anon_sym_CARET, - ACTIONS(6875), 1, - anon_sym_EQ_EQ, - ACTIONS(6881), 1, - anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6887), 1, - anon_sym_QMARK, - ACTIONS(6889), 1, - anon_sym_AMP_AMP, - ACTIONS(6891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, - sym__start_of_index_operator, - ACTIONS(6899), 1, - sym_binary_ampersand, - STATE(4085), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6873), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6879), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6877), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6895), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6897), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6358), 11, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - anon_sym_do, - [120125] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6863), 1, - anon_sym_DOT_DOT, - ACTIONS(6865), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6869), 1, - anon_sym_PIPE, - ACTIONS(6871), 1, - anon_sym_CARET, - ACTIONS(6875), 1, - anon_sym_EQ_EQ, - ACTIONS(6881), 1, - anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6887), 1, - anon_sym_QMARK, - ACTIONS(6889), 1, - anon_sym_AMP_AMP, - ACTIONS(6891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, - sym__start_of_index_operator, - ACTIONS(6899), 1, - sym_binary_ampersand, - STATE(4086), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6873), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6879), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6877), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6895), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6897), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6364), 11, - sym__line_break, - sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - anon_sym_do, - [120220] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4087), 1, + STATE(4076), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6380), 8, + ACTIONS(6363), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -436347,7 +439898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6378), 36, + ACTIONS(6361), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -436384,15 +439935,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [120279] = 5, + [119271] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4088), 1, + STATE(4077), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6008), 8, + ACTIONS(6454), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -436401,7 +439952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6006), 36, + ACTIONS(6452), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -436438,89 +439989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [120338] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7090), 1, - anon_sym_COMMA, - ACTIONS(7092), 1, - anon_sym_DOT_DOT, - ACTIONS(7094), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, - anon_sym_PIPE, - ACTIONS(7100), 1, - anon_sym_CARET, - ACTIONS(7104), 1, - anon_sym_EQ_EQ, - ACTIONS(7110), 1, - anon_sym_AMP_STAR, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7116), 1, - anon_sym_QMARK, - ACTIONS(7118), 1, - anon_sym_AMP_AMP, - ACTIONS(7120), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7128), 1, - sym_binary_ampersand, - STATE(4089), 1, - sym_heredoc_body, - STATE(4115), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7102), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7108), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7106), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7124), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7126), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5570), 9, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_end, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [120437] = 5, + [119330] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4090), 1, + STATE(4078), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6384), 8, + ACTIONS(6466), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -436529,7 +440006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6382), 36, + ACTIONS(6464), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -436566,15 +440043,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [120496] = 5, + [119389] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4091), 1, + STATE(4079), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6388), 8, + ACTIONS(6406), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -436583,7 +440060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6386), 36, + ACTIONS(6404), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -436620,15 +440097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [120555] = 5, + [119448] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4092), 1, + STATE(4080), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6392), 8, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -436637,7 +440114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6390), 36, + ACTIONS(6199), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -436674,71 +440151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [120614] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7130), 1, - anon_sym_COMMA, - STATE(4093), 1, - sym_heredoc_body, - STATE(4100), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5574), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5570), 34, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [120677] = 5, + [119507] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4094), 1, + STATE(4081), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -436747,7 +440168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5868), 36, + ACTIONS(6321), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -436784,19 +440205,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [120736] = 7, + [119566] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7090), 1, - anon_sym_COMMA, - STATE(4095), 1, + STATE(4082), 1, sym_heredoc_body, - STATE(4115), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(5881), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -436805,8 +440222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 34, - sym__start_of_brace_block, + ACTIONS(5879), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -436817,10 +440234,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -436836,19 +440258,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [120799] = 5, + [119625] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4096), 1, + STATE(4083), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5903), 8, + ACTIONS(6023), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -436857,7 +440276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5901), 36, + ACTIONS(6021), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -436894,93 +440313,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [120858] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7092), 1, - anon_sym_DOT_DOT, - ACTIONS(7094), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, - anon_sym_PIPE, - ACTIONS(7100), 1, - anon_sym_CARET, - ACTIONS(7104), 1, - anon_sym_EQ_EQ, - ACTIONS(7110), 1, - anon_sym_AMP_STAR, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7116), 1, - anon_sym_QMARK, - ACTIONS(7118), 1, - anon_sym_AMP_AMP, - ACTIONS(7120), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7128), 1, - sym_binary_ampersand, - ACTIONS(7132), 1, - anon_sym_COMMA, - STATE(4097), 1, - sym_heredoc_body, - STATE(4107), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7102), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7108), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7106), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7124), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7126), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5585), 9, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_end, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [120957] = 7, + [119684] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7132), 1, - anon_sym_COMMA, - STATE(4098), 1, + STATE(4084), 1, sym_heredoc_body, - STATE(4107), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -436989,8 +440330,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 34, - sym__start_of_brace_block, + ACTIONS(6035), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -437001,10 +440342,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -437020,19 +440366,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [121020] = 5, + [119743] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4099), 1, + STATE(4085), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6396), 8, + ACTIONS(6055), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -437041,7 +440384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6394), 36, + ACTIONS(6053), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -437078,19 +440421,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [121079] = 7, + [119802] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7132), 1, - anon_sym_COMMA, - STATE(4100), 1, + STATE(4086), 1, sym_heredoc_body, - STATE(4108), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6071), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -437099,8 +440438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 34, - sym__start_of_brace_block, + ACTIONS(6069), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -437111,10 +440450,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -437130,19 +440474,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [121142] = 5, + [119861] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4101), 1, + STATE(4087), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5826), 8, + ACTIONS(6160), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -437151,9 +440492,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5824), 36, + ACTIONS(6158), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -437166,6 +440506,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -437187,18 +440528,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [121201] = 6, + anon_sym_else, + [119920] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7134), 1, - anon_sym_of, - STATE(4102), 1, + STATE(4088), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5734), 8, + ACTIONS(6171), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -437207,7 +440546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5730), 35, + ACTIONS(6169), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -437227,6 +440566,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -437243,15 +440583,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [121262] = 5, + [119979] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4103), 1, + STATE(4089), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6404), 8, + ACTIONS(6187), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -437260,7 +440600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6402), 36, + ACTIONS(6185), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -437297,15 +440637,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [121321] = 5, + [120038] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4104), 1, + STATE(4090), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6410), 8, + ACTIONS(6211), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -437314,7 +440654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6408), 36, + ACTIONS(6209), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -437351,15 +440691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [121380] = 5, + [120097] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4105), 1, + STATE(4091), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6372), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -437368,9 +440708,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6370), 36, + ACTIONS(6357), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -437383,6 +440722,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -437404,94 +440744,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [121439] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7092), 1, - anon_sym_DOT_DOT, - ACTIONS(7094), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, - anon_sym_PIPE, - ACTIONS(7100), 1, - anon_sym_CARET, - ACTIONS(7104), 1, - anon_sym_EQ_EQ, - ACTIONS(7110), 1, - anon_sym_AMP_STAR, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7116), 1, - anon_sym_QMARK, - ACTIONS(7118), 1, - anon_sym_AMP_AMP, - ACTIONS(7120), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7128), 1, - sym_binary_ampersand, - ACTIONS(7136), 1, - anon_sym_COMMA, - STATE(4106), 1, - sym_heredoc_body, - STATE(4116), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7102), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7108), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7106), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7124), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7126), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5585), 9, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_end, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [121538] = 7, + [120156] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7138), 1, - anon_sym_COMMA, - STATE(4107), 1, + STATE(4092), 1, sym_heredoc_body, - STATE(4108), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(6367), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -437500,7 +440762,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 34, + ACTIONS(6365), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -437512,10 +440775,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -437532,21 +440799,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [121601] = 6, + [120215] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7140), 1, - anon_sym_COMMA, + STATE(4093), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4108), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5713), 8, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -437555,7 +440816,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 34, + ACTIONS(6369), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -437567,10 +440829,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -437587,20 +440853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [121662] = 6, + [120274] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6734), 1, - anon_sym_COLON, - STATE(4109), 1, + STATE(4094), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(4638), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -437609,8 +440870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 35, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4640), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -437627,6 +440888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -437641,19 +440903,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [121723] = 5, + [120333] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4110), 1, + STATE(4095), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(6379), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -437662,8 +440924,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6415), 36, + ACTIONS(6377), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -437676,7 +440939,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -437698,16 +440960,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [121782] = 5, + anon_sym_do, + [120392] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4111), 1, + STATE(4096), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6352), 8, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -437716,8 +440978,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6350), 36, + ACTIONS(6385), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -437730,7 +440993,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -437752,16 +441014,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [121841] = 5, + anon_sym_do, + [120451] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4112), 1, + STATE(4097), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -437770,7 +441032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5856), 36, + ACTIONS(6389), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -437807,19 +441069,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [121900] = 7, + [120510] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7136), 1, - anon_sym_COMMA, - STATE(4113), 1, + STATE(4098), 1, sym_heredoc_body, - STATE(4116), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -437828,7 +441086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 34, + ACTIONS(6393), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -437840,10 +441099,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -437860,18 +441123,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [121963] = 5, + [120569] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4114), 1, + STATE(4099), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5862), 8, + ACTIONS(5833), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -437880,9 +441140,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5860), 36, + ACTIONS(5831), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -437895,6 +441154,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -437916,20 +441176,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [122022] = 7, + anon_sym_else, + [120628] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7136), 1, - anon_sym_COMMA, - STATE(4108), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4115), 1, + STATE(4100), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5841), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -437938,8 +441194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 34, - sym__start_of_brace_block, + ACTIONS(5839), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -437950,10 +441206,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -437969,23 +441230,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [122085] = 7, + [120687] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7143), 1, - anon_sym_COMMA, - STATE(4108), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4116), 1, + STATE(4101), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(5889), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -437994,8 +441248,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 34, - sym__start_of_brace_block, + ACTIONS(5887), 36, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -438006,10 +441260,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -438025,19 +441284,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [122148] = 5, + [120746] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4117), 1, + STATE(4102), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5866), 8, + ACTIONS(5913), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -438046,9 +441302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5864), 36, + ACTIONS(5911), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -438061,6 +441316,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -438082,16 +441338,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [122207] = 5, + anon_sym_else, + [120805] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4118), 1, + STATE(4103), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 9, + ACTIONS(5951), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -438100,8 +441356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4595), 35, + ACTIONS(5949), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -438115,6 +441370,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -438122,7 +441378,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, @@ -438137,15 +441392,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [122266] = 5, + anon_sym_else, + [120864] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4119), 1, + STATE(4104), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5810), 8, + ACTIONS(5959), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -438154,7 +441410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5808), 36, + ACTIONS(5957), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -438191,15 +441447,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [122325] = 5, + [120923] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4120), 1, + STATE(4105), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6308), 8, + ACTIONS(6009), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -438208,9 +441464,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6306), 36, + ACTIONS(6007), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -438223,6 +441478,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -438244,16 +441500,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [122384] = 5, + anon_sym_else, + [120982] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4121), 1, + STATE(4106), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5899), 8, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -438262,7 +441518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5897), 36, + ACTIONS(6397), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -438299,15 +441555,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [122443] = 5, + [121041] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4122), 1, + STATE(4107), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5907), 8, + ACTIONS(6019), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -438316,7 +441572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5905), 36, + ACTIONS(6017), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -438353,15 +441609,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [122502] = 5, + [121100] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4123), 1, + STATE(4108), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5818), 8, + ACTIONS(6410), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -438370,8 +441626,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5816), 36, + ACTIONS(6408), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -438384,7 +441641,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -438406,16 +441662,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [122561] = 5, + anon_sym_do, + [121159] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4124), 1, + STATE(4109), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5846), 8, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -438424,7 +441680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5844), 36, + ACTIONS(6041), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -438461,15 +441717,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [122620] = 5, + [121218] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4125), 1, + STATE(4110), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(6067), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -438478,7 +441734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5947), 36, + ACTIONS(6065), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -438515,15 +441771,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [122679] = 5, + [121277] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4126), 1, + STATE(4111), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6012), 8, + ACTIONS(6079), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -438532,9 +441788,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6010), 36, + ACTIONS(6077), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -438547,6 +441802,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -438568,16 +441824,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [122738] = 5, + anon_sym_else, + [121336] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4127), 1, + STATE(4112), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5919), 8, + ACTIONS(6090), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -438586,9 +441842,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5917), 36, + ACTIONS(6088), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -438601,6 +441856,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -438622,70 +441878,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [122797] = 24, + anon_sym_else, + [121395] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6580), 1, + ACTIONS(6614), 1, anon_sym_COMMA, - ACTIONS(6693), 1, + ACTIONS(6768), 1, anon_sym_DOT, - ACTIONS(6928), 1, + ACTIONS(6914), 1, anon_sym_DOT_DOT, - ACTIONS(6930), 1, + ACTIONS(6916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6936), 1, + ACTIONS(6922), 1, anon_sym_CARET, - ACTIONS(6940), 1, + ACTIONS(6926), 1, anon_sym_EQ_EQ, - ACTIONS(6946), 1, + ACTIONS(6932), 1, anon_sym_AMP_STAR, - ACTIONS(6950), 1, + ACTIONS(6936), 1, anon_sym_QMARK, - ACTIONS(6952), 1, + ACTIONS(6938), 1, anon_sym_AMP_AMP, - ACTIONS(6954), 1, + ACTIONS(6940), 1, anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(6962), 1, + ACTIONS(6948), 1, sym_binary_ampersand, - STATE(4128), 1, + STATE(4113), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, + ACTIONS(6924), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, + ACTIONS(6934), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(6918), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, + ACTIONS(6928), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, + ACTIONS(6946), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6578), 10, + ACTIONS(6666), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -438696,15 +441952,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [122894] = 5, + [121492] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4129), 1, + STATE(4114), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6316), 8, + ACTIONS(6414), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -438713,7 +441969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6314), 36, + ACTIONS(6412), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -438750,15 +442006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [122953] = 5, + [121551] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4130), 1, + STATE(4115), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6184), 8, + ACTIONS(6138), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -438767,7 +442023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6182), 36, + ACTIONS(6136), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -438804,15 +442060,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [123012] = 5, + [121610] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4131), 1, + STATE(4116), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6188), 8, + ACTIONS(6148), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -438821,7 +442077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6186), 36, + ACTIONS(6146), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -438858,15 +442114,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [123071] = 5, + [121669] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4132), 1, + STATE(4117), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5782), 8, + ACTIONS(6175), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -438875,7 +442131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5780), 36, + ACTIONS(6173), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -438912,15 +442168,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [123130] = 5, + [121728] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4133), 1, + STATE(4118), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6299), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6297), 36, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + [121787] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4119), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6404), 8, + ACTIONS(6418), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -438929,7 +442239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6402), 36, + ACTIONS(6416), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -438966,15 +442276,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [123189] = 5, + [121846] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4134), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, + anon_sym_DOT_DOT, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_CARET, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6936), 1, + anon_sym_QMARK, + ACTIONS(6938), 1, + anon_sym_AMP_AMP, + ACTIONS(6940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(4120), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6924), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6944), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6946), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6622), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + [121943] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4121), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5786), 8, + ACTIONS(6422), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -438983,8 +442366,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5784), 36, + ACTIONS(6420), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -438997,7 +442381,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -439019,124 +442402,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [123248] = 5, + anon_sym_do, + [122002] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4135), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5512), 8, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_CARET, + ACTIONS(6926), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(6932), 1, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5510), 36, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(6936), 1, anon_sym_QMARK, + ACTIONS(6938), 1, anon_sym_AMP_AMP, + ACTIONS(6940), 1, anon_sym_PIPE_PIPE, - anon_sym_else, - [123307] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4136), 1, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(4122), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, - anon_sym_DOT_DOT, + ACTIONS(6924), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5528), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6946), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6622), 10, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [123366] = 5, + anon_sym_else, + [122099] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4137), 1, + STATE(4123), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(6458), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -439145,9 +442493,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 36, + ACTIONS(6456), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -439160,6 +442507,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -439181,16 +442529,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [123425] = 5, + anon_sym_else, + [122158] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4138), 1, + STATE(4124), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(6426), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -439199,7 +442547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 36, + ACTIONS(6424), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -439236,143 +442584,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [123484] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7071), 1, - anon_sym_LPAREN, - ACTIONS(7076), 1, - anon_sym_typeof, - ACTIONS(7078), 1, - sym__constant_segment, - ACTIONS(7080), 1, - anon_sym_COLON_COLON, - ACTIONS(7084), 1, - sym__start_of_tuple_type, - ACTIONS(7086), 1, - sym__start_of_named_tuple_type, - ACTIONS(7145), 1, - anon_sym_DASH_GT, - STATE(4139), 1, - sym_heredoc_body, - STATE(7637), 1, - sym__type, - STATE(7662), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7082), 2, - sym_self, - sym_underscore_type, - STATE(7736), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4353), 21, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [123563] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7071), 1, - anon_sym_LPAREN, - ACTIONS(7076), 1, - anon_sym_typeof, - ACTIONS(7078), 1, - sym__constant_segment, - ACTIONS(7080), 1, - anon_sym_COLON_COLON, - ACTIONS(7084), 1, - sym__start_of_tuple_type, - ACTIONS(7086), 1, - sym__start_of_named_tuple_type, - ACTIONS(7148), 1, - anon_sym_DASH_GT, - STATE(4140), 1, - sym_heredoc_body, - STATE(7662), 1, - sym_constant, - STATE(7713), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7082), 2, - sym_self, - sym_underscore_type, - STATE(7736), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4375), 21, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [123642] = 5, + [122217] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4141), 1, + STATE(4125), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5927), 8, + ACTIONS(5973), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -439381,9 +442601,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5925), 36, + ACTIONS(5971), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -439396,6 +442615,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -439417,16 +442637,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [123701] = 5, + anon_sym_else, + [122276] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4142), 1, + STATE(4126), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6376), 8, + ACTIONS(6279), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -439435,9 +442655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6374), 36, + ACTIONS(6277), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -439450,6 +442669,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -439471,16 +442691,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [123760] = 5, + anon_sym_else, + [122335] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4143), 1, + STATE(4127), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5931), 8, + ACTIONS(5861), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -439489,9 +442709,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5929), 36, + ACTIONS(5859), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -439504,6 +442723,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -439525,16 +442745,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [123819] = 5, + anon_sym_else, + [122394] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4144), 1, + STATE(4128), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6134), 8, + ACTIONS(5893), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -439543,9 +442763,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6132), 36, + ACTIONS(5891), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -439558,6 +442777,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -439579,16 +442799,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [123878] = 5, + anon_sym_else, + [122453] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4145), 1, + STATE(4129), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6380), 8, + ACTIONS(5989), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -439597,9 +442817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6378), 36, + ACTIONS(5987), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -439612,6 +442831,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -439633,16 +442853,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [123937] = 5, + anon_sym_else, + [122512] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4146), 1, + STATE(4130), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6384), 8, + ACTIONS(6183), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -439651,9 +442871,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6382), 36, + ACTIONS(6181), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -439666,6 +442885,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -439687,16 +442907,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [123996] = 5, + anon_sym_else, + [122571] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4147), 1, + STATE(4131), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(6207), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -439705,7 +442925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6419), 36, + ACTIONS(6205), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -439742,15 +442962,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [124055] = 5, + [122630] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4148), 1, + STATE(4132), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6388), 8, + ACTIONS(6430), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -439759,7 +442979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6386), 36, + ACTIONS(6428), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -439796,15 +443016,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [124114] = 5, + [122689] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4149), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, + anon_sym_DOT_DOT, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_CARET, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6936), 1, + anon_sym_QMARK, + ACTIONS(6938), 1, + anon_sym_AMP_AMP, + ACTIONS(6940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(4133), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6924), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6944), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6946), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6622), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + [122786] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4134), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5810), 8, + ACTIONS(6227), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -439813,9 +443106,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5808), 36, + ACTIONS(6225), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -439828,6 +443120,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -439849,16 +443142,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [124173] = 5, + anon_sym_else, + [122845] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4150), 1, + STATE(4135), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5818), 8, + ACTIONS(6271), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -439867,9 +443160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5816), 36, + ACTIONS(6269), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -439882,6 +443174,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -439903,16 +443196,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [124232] = 5, + anon_sym_else, + [122904] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4151), 1, + STATE(4136), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5846), 8, + ACTIONS(6275), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -439921,9 +443214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5844), 36, + ACTIONS(6273), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -439936,6 +443228,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -439957,16 +443250,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [124291] = 5, + anon_sym_else, + [122963] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4152), 1, + STATE(4137), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(6307), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -439975,9 +443268,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5947), 36, + ACTIONS(6305), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -439990,6 +443282,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -440011,16 +443304,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [124350] = 5, + anon_sym_else, + [123022] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4153), 1, + STATE(4138), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6392), 8, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -440029,9 +443322,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6390), 36, + ACTIONS(6317), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -440044,6 +443336,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -440065,16 +443358,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [124409] = 5, + anon_sym_else, + [123081] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4154), 1, + STATE(4139), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6396), 8, + ACTIONS(5777), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -440083,9 +443376,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6394), 36, + ACTIONS(5775), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -440098,6 +443390,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -440119,16 +443412,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [124468] = 5, + anon_sym_else, + [123140] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4155), 1, + STATE(4140), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5953), 8, + ACTIONS(5853), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -440137,9 +443430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5951), 36, + ACTIONS(5851), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -440152,6 +443444,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -440173,31 +443466,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [124527] = 7, + anon_sym_else, + [123199] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7036), 1, - anon_sym_PIPE, - STATE(4156), 1, + STATE(4141), 1, sym_heredoc_body, - STATE(4173), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(5857), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 34, + ACTIONS(5855), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -440208,13 +443496,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -440228,89 +443520,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [124590] = 23, + anon_sym_else, + [123258] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6863), 1, - anon_sym_DOT_DOT, - ACTIONS(6865), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6869), 1, - anon_sym_PIPE, - ACTIONS(6871), 1, - anon_sym_CARET, - ACTIONS(6875), 1, - anon_sym_EQ_EQ, - ACTIONS(6881), 1, - anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6887), 1, - anon_sym_QMARK, - ACTIONS(6889), 1, - anon_sym_AMP_AMP, - ACTIONS(6891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, - sym__start_of_index_operator, - ACTIONS(6899), 1, - sym_binary_ampersand, - STATE(4157), 1, + STATE(4142), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6879), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, + ACTIONS(5909), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6877), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6895), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5907), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6897), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5708), 11, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_do, - [124685] = 5, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + [123317] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4158), 1, + STATE(4143), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5961), 8, + ACTIONS(5969), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -440319,9 +443592,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5959), 36, + ACTIONS(5967), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -440334,6 +443606,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -440355,16 +443628,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [124744] = 5, + anon_sym_else, + [123376] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4159), 1, + STATE(4144), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -440373,9 +443646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 36, + ACTIONS(5995), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -440388,6 +443660,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -440409,16 +443682,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [124803] = 5, + anon_sym_else, + [123435] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4160), 1, + STATE(4145), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6164), 8, + ACTIONS(6013), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -440427,9 +443700,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6162), 36, + ACTIONS(6011), 36, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -440442,6 +443714,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -440463,16 +443736,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [124862] = 5, + anon_sym_else, + [123494] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4161), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, + anon_sym_DOT_DOT, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_CARET, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6936), 1, + anon_sym_QMARK, + ACTIONS(6938), 1, + anon_sym_AMP_AMP, + ACTIONS(6940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(4146), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6410), 8, + ACTIONS(6924), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6944), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6946), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6622), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + [123591] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4147), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -440481,7 +443827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6408), 36, + ACTIONS(6341), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -440518,15 +443864,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [124921] = 5, + [123650] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4162), 1, + STATE(4148), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5953), 8, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -440535,8 +443881,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5951), 36, + ACTIONS(5551), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -440549,7 +443896,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -440571,70 +443917,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [124980] = 5, + anon_sym_do, + [123709] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4163), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, + anon_sym_DOT_DOT, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_CARET, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6936), 1, + anon_sym_QMARK, + ACTIONS(6938), 1, + anon_sym_AMP_AMP, + ACTIONS(6940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(4149), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6060), 8, - anon_sym_DOT_DOT, + ACTIONS(6924), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6058), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6946), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6622), 10, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_else, - [125039] = 5, + [123806] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4164), 1, + STATE(4150), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6156), 8, + ACTIONS(6434), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -440643,7 +444008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6154), 36, + ACTIONS(6432), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -440680,17 +444045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [125098] = 6, + [123865] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7151), 1, - anon_sym_EQ, - STATE(4165), 1, + STATE(4151), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, + ACTIONS(6462), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -440699,7 +444062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 35, + ACTIONS(6460), 36, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -440711,11 +444075,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -440732,18 +444099,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, + [123924] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, + anon_sym_DOT_DOT, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_CARET, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6936), 1, + anon_sym_QMARK, + ACTIONS(6938), 1, + anon_sym_AMP_AMP, + ACTIONS(6940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(4152), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6924), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6944), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6946), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6622), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, anon_sym_else, - anon_sym_when, - anon_sym_in, - [125159] = 5, + [124021] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4166), 1, + STATE(4153), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5961), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -440752,8 +444189,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5959), 36, + ACTIONS(6349), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -440766,7 +444204,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -440788,18 +444225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [125218] = 6, + anon_sym_do, + [124080] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6590), 1, - anon_sym_LPAREN2, - STATE(4167), 1, + ACTIONS(7202), 1, + anon_sym_of, + STATE(4154), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5714), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -440808,7 +444245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 35, + ACTIONS(5710), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -440844,15 +444281,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [125279] = 5, + [124141] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4168), 1, + STATE(4155), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -440861,7 +444298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 36, + ACTIONS(6353), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -440898,15 +444335,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [125338] = 5, + [124200] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4169), 1, + STATE(4156), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6234), 8, + ACTIONS(6438), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -440915,8 +444352,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6232), 36, + ACTIONS(6436), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -440929,7 +444367,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -440951,16 +444388,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [125397] = 5, + anon_sym_do, + [124259] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4170), 1, + STATE(4157), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5790), 8, + ACTIONS(5837), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -440969,8 +444406,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5788), 36, + ACTIONS(5835), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -440983,7 +444421,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -441005,16 +444442,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [125456] = 5, + anon_sym_do, + [124318] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4171), 1, + STATE(4158), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6016), 8, + ACTIONS(6059), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -441023,8 +444460,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6014), 36, + ACTIONS(6057), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441037,7 +444475,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -441059,16 +444496,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [125515] = 5, + anon_sym_do, + [124377] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4172), 1, + STATE(4159), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6126), 8, + ACTIONS(6470), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -441077,8 +444514,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6124), 36, + ACTIONS(6468), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441091,7 +444529,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -441113,28 +444550,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [125574] = 6, + anon_sym_do, + [124436] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7153), 1, - anon_sym_PIPE, + STATE(4160), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4173), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 34, + ACTIONS(6381), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -441147,13 +444581,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -441168,16 +444605,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [125635] = 5, + [124495] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4174), 1, + STATE(4161), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5911), 8, + ACTIONS(6450), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -441186,8 +444622,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5909), 36, + ACTIONS(6448), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441200,7 +444637,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -441222,16 +444658,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [125694] = 5, + anon_sym_do, + [124554] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4175), 1, + STATE(4162), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6160), 8, + ACTIONS(5805), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -441240,8 +444676,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6158), 36, + ACTIONS(5803), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441254,7 +444691,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -441276,16 +444712,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [125753] = 5, + anon_sym_do, + [124613] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4176), 1, + STATE(4163), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6172), 8, + ACTIONS(5965), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -441294,8 +444730,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6170), 36, + ACTIONS(5963), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441308,7 +444745,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -441330,16 +444766,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [125812] = 5, + anon_sym_do, + [124672] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4177), 1, + ACTIONS(6842), 1, + anon_sym_COLON, + STATE(4164), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6176), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -441348,8 +444786,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6174), 36, - sym__line_break, + ACTIONS(135), 35, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441360,15 +444798,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -441384,16 +444818,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_else, - [125871] = 5, + anon_sym_when, + anon_sym_in, + [124733] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4178), 1, + STATE(4165), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6180), 8, + ACTIONS(5783), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -441402,8 +444839,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6178), 36, + ACTIONS(5781), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441416,7 +444854,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -441438,16 +444875,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [125930] = 5, + anon_sym_do, + [124792] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4179), 1, + STATE(4166), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6208), 8, + ACTIONS(5845), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -441456,8 +444893,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6206), 36, + ACTIONS(5843), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441470,7 +444908,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -441492,16 +444929,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [125989] = 5, + anon_sym_do, + [124851] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4180), 1, + STATE(4167), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6220), 8, + ACTIONS(6005), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -441510,8 +444947,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6218), 36, + ACTIONS(6003), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441524,7 +444962,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -441546,16 +444983,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [126048] = 5, + anon_sym_do, + [124910] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4181), 1, + STATE(4168), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6228), 8, + ACTIONS(6211), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -441564,8 +445001,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6226), 36, + ACTIONS(6209), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441578,7 +445016,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -441600,16 +445037,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [126107] = 5, + anon_sym_do, + [124969] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4182), 1, + STATE(4169), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6264), 8, + ACTIONS(5833), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -441618,8 +445055,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6262), 36, + ACTIONS(5831), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441632,7 +445070,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -441654,71 +445091,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [126166] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7156), 1, - sym_regex_modifier, - STATE(4183), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5633), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5631), 35, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [126227] = 5, + anon_sym_do, + [125028] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4184), 1, + STATE(4170), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5915), 8, + ACTIONS(5841), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -441727,8 +445109,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5913), 36, + ACTIONS(5839), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441741,7 +445124,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -441763,16 +445145,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [126286] = 5, + anon_sym_do, + [125087] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4185), 1, + STATE(4171), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6300), 8, + ACTIONS(5889), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -441781,8 +445163,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6298), 36, + ACTIONS(5887), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441795,7 +445178,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -441817,16 +445199,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [126345] = 5, + anon_sym_do, + [125146] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4186), 1, + ACTIONS(7204), 1, + anon_sym_of, + STATE(4172), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5770), 8, + ACTIONS(5651), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -441835,9 +445219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5768), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5647), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441848,14 +445230,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -441871,16 +445251,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [126404] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [125207] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4187), 1, + STATE(4173), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6312), 8, + ACTIONS(5801), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -441889,8 +445272,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6310), 36, + ACTIONS(5799), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441903,7 +445287,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -441925,16 +445308,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [126463] = 5, + anon_sym_do, + [125266] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4188), 1, + STATE(4174), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5802), 8, + ACTIONS(5917), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -441943,8 +445326,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5800), 36, + ACTIONS(5915), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -441957,7 +445341,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -441979,70 +445362,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [126522] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4189), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4593), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4595), 35, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [126581] = 5, + anon_sym_do, + [125325] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4190), 1, + STATE(4175), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6164), 8, + ACTIONS(5955), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -442051,8 +445380,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6162), 36, + ACTIONS(5953), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -442065,7 +445395,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -442087,20 +445416,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [126640] = 7, + anon_sym_do, + [125384] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6956), 1, - sym__start_of_index_operator, - STATE(4191), 1, + STATE(4176), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5895), 7, + ACTIONS(5913), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -442108,8 +445433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5893), 35, + anon_sym_DOT, + ACTIONS(5911), 36, sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -442121,7 +445449,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -442143,86 +445470,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [126703] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5923), 1, - anon_sym_DOT_DOT, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6952), 1, - anon_sym_AMP_AMP, - ACTIONS(6954), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(4192), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6958), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6960), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5921), 13, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - anon_sym_else, - [126794] = 5, + anon_sym_do, + [125443] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4193), 1, + STATE(4177), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5826), 8, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -442231,8 +445488,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5824), 36, + ACTIONS(6195), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -442245,7 +445503,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -442267,18 +445524,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [126853] = 6, + anon_sym_do, + [125502] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7158), 1, - anon_sym_of, - STATE(4194), 1, + STATE(4178), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5690), 8, + ACTIONS(5951), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -442287,8 +445542,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5686), 35, + ACTIONS(5949), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -442301,12 +445557,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -442322,16 +445578,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [126914] = 5, + anon_sym_do, + [125561] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4195), 1, + STATE(4179), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -442340,8 +445596,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5856), 36, + ACTIONS(6345), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -442354,7 +445611,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -442376,16 +445632,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [126973] = 5, + anon_sym_do, + [125620] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4196), 1, + STATE(4180), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5862), 8, + ACTIONS(5959), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -442394,8 +445650,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5860), 36, + ACTIONS(5957), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -442408,7 +445665,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -442430,16 +445686,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [127032] = 5, + anon_sym_do, + [125679] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4197), 1, + STATE(4181), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5866), 8, + ACTIONS(6009), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -442448,8 +445704,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5864), 36, + ACTIONS(6007), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -442462,7 +445719,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -442484,20 +445740,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [127091] = 7, + anon_sym_do, + [125738] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6956), 1, - sym__start_of_index_operator, - STATE(4198), 1, + STATE(4182), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6000), 7, + ACTIONS(6458), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -442505,8 +445757,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5998), 35, + anon_sym_DOT, + ACTIONS(6456), 36, sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -442518,7 +445773,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -442540,16 +445794,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [127154] = 5, + anon_sym_do, + [125797] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4199), 1, + STATE(4183), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5899), 8, + ACTIONS(6164), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -442558,8 +445812,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5897), 36, + ACTIONS(6162), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -442572,7 +445827,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -442594,16 +445848,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [127213] = 5, + anon_sym_do, + [125856] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4200), 1, + STATE(4184), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5919), 8, + ACTIONS(5973), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -442612,8 +445866,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5917), 36, + ACTIONS(5971), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -442626,7 +445881,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -442648,16 +445902,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [127272] = 5, + anon_sym_do, + [125915] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4201), 1, + STATE(4185), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5927), 8, + ACTIONS(6279), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -442666,8 +445920,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5925), 36, + ACTIONS(6277), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -442680,7 +445935,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -442702,18 +445956,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [127331] = 6, + anon_sym_do, + [125974] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7160), 1, - anon_sym_of, - STATE(4202), 1, + STATE(4186), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5719), 8, + ACTIONS(5861), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -442722,8 +445974,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5715), 35, + ACTIONS(5859), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -442736,12 +445989,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -442757,16 +446010,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [127392] = 5, + anon_sym_do, + [126033] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4203), 1, + STATE(4187), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5931), 8, + ACTIONS(5893), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -442775,8 +446028,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5929), 36, + ACTIONS(5891), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -442789,7 +446043,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -442811,36 +446064,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [127451] = 11, + anon_sym_do, + [126092] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, - anon_sym_STAR, - ACTIONS(7036), 1, - anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_DOT, - ACTIONS(7040), 1, - anon_sym_QMARK, - STATE(4156), 1, - aux_sym_union_type_repeat1, - STATE(4204), 1, + STATE(4188), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(5989), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4609), 31, + anon_sym_DOT, + ACTIONS(5987), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -442853,11 +446095,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -442868,114 +446115,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [127522] = 23, + [126151] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, + ACTIONS(6768), 1, anon_sym_DOT, - ACTIONS(6928), 1, - anon_sym_DOT_DOT, - ACTIONS(6930), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6950), 1, - anon_sym_QMARK, - ACTIONS(6952), 1, - anon_sym_AMP_AMP, - ACTIONS(6954), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(4205), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6958), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6960), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6144), 11, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - anon_sym_else, - [127617] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, - anon_sym_STAR, - ACTIONS(7036), 1, - anon_sym_PIPE, - ACTIONS(7038), 1, - anon_sym_DOT, - ACTIONS(7040), 1, - anon_sym_QMARK, - STATE(4156), 1, - aux_sym_union_type_repeat1, - STATE(4206), 1, + STATE(4189), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(6001), 7, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 31, + ACTIONS(5999), 35, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -442985,11 +446150,17 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -443000,71 +446171,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [127688] = 23, + anon_sym_else, + [126214] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, + ACTIONS(6063), 1, anon_sym_DOT_DOT, - ACTIONS(6930), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6936), 1, + ACTIONS(6922), 1, anon_sym_CARET, - ACTIONS(6940), 1, + ACTIONS(6926), 1, anon_sym_EQ_EQ, - ACTIONS(6946), 1, + ACTIONS(6932), 1, anon_sym_AMP_STAR, - ACTIONS(6950), 1, - anon_sym_QMARK, - ACTIONS(6952), 1, + ACTIONS(6938), 1, anon_sym_AMP_AMP, - ACTIONS(6954), 1, + ACTIONS(6940), 1, anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(6962), 1, + ACTIONS(6948), 1, sym_binary_ampersand, - STATE(4207), 1, + STATE(4190), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, + ACTIONS(6924), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, + ACTIONS(6934), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(6918), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, + ACTIONS(6928), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, + ACTIONS(6946), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6152), 11, + ACTIONS(6061), 13, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -443074,21 +446241,23 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_QMARK, anon_sym_else, - [127783] = 7, + [126305] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, + ACTIONS(6768), 1, anon_sym_DOT, - ACTIONS(6956), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - STATE(4208), 1, + STATE(4191), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6004), 7, + ACTIONS(6152), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -443096,7 +446265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6002), 35, + ACTIONS(6150), 35, sym__line_break, sym_binary_plus, sym_binary_minus, @@ -443132,15 +446301,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [127846] = 5, + [126368] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4209), 1, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6942), 1, + sym__start_of_index_operator, + STATE(4192), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5581), 9, + ACTIONS(6156), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -443148,10 +446321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_COLON2, - ACTIONS(5579), 35, - sym__start_of_index_operator, + ACTIONS(6154), 35, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -443161,12 +446332,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -443179,22 +446353,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - anon_sym_when, - anon_sym_in, - [127905] = 5, + [126431] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4210), 1, + STATE(4193), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6192), 8, + ACTIONS(6227), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -443203,8 +446374,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6190), 36, + ACTIONS(6225), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -443217,7 +446389,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -443239,19 +446410,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [127964] = 6, + anon_sym_do, + [126490] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7162), 1, - anon_sym_COLON_COLON, + STATE(4194), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4211), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4561), 9, + ACTIONS(6271), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -443260,9 +446428,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4563), 33, + ACTIONS(6269), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -443273,13 +446441,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -443290,24 +446461,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [128025] = 7, + anon_sym_do, + [126549] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7069), 1, - anon_sym_COLON_COLON, - STATE(4211), 1, - aux_sym_constant_repeat1, - STATE(4212), 1, + STATE(4195), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4557), 9, + ACTIONS(6275), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -443316,9 +446482,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4559), 33, + ACTIONS(6273), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -443329,13 +446495,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -443346,20 +446515,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [128088] = 5, + anon_sym_do, + [126608] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4213), 1, + STATE(4196), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6036), 8, + ACTIONS(6307), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -443368,8 +446536,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6034), 36, + ACTIONS(6305), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -443382,7 +446551,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -443404,16 +446572,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [128147] = 5, + anon_sym_do, + [126667] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4214), 1, + STATE(4197), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6036), 8, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -443422,7 +446590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6034), 36, + ACTIONS(6317), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -443459,17 +446627,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [128206] = 6, + [126726] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7165), 1, - sym_regex_modifier, - STATE(4215), 1, + STATE(4198), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5679), 8, + ACTIONS(5777), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -443478,7 +446644,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5677), 35, + ACTIONS(5775), 36, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -443489,12 +446657,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -443510,19 +446680,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [128267] = 5, + anon_sym_do, + [126785] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4216), 1, + STATE(4199), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6040), 8, + ACTIONS(5821), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -443531,7 +446698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6038), 36, + ACTIONS(5819), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -443568,15 +446735,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [128326] = 5, + [126844] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4217), 1, + STATE(4200), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6044), 8, + ACTIONS(5857), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -443585,7 +446752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6042), 36, + ACTIONS(5855), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -443622,15 +446789,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [128385] = 5, + [126903] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4218), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + STATE(4201), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6060), 8, + ACTIONS(6001), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -443638,11 +446809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6058), 36, - sym__line_break, + ACTIONS(5999), 35, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -443652,14 +446820,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -443675,16 +446840,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [128444] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [126966] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4219), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + STATE(4202), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6110), 8, + ACTIONS(6152), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -443692,11 +446865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6108), 36, - sym__line_break, + ACTIONS(6150), 35, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -443706,14 +446876,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -443729,16 +446896,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [128503] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [127029] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4220), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + STATE(4203), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6138), 8, + ACTIONS(6156), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -443746,11 +446921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6136), 36, - sym__line_break, + ACTIONS(6154), 35, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -443760,14 +446932,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -443783,16 +446952,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [128562] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [127092] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4221), 1, + STATE(4204), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6168), 8, + ACTIONS(5909), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -443801,8 +446974,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6166), 36, + ACTIONS(5907), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -443815,7 +446989,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -443837,16 +447010,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [128621] = 5, + anon_sym_do, + [127151] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4222), 1, + STATE(4205), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6040), 8, + ACTIONS(6102), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -443855,7 +447028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6038), 36, + ACTIONS(6092), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -443892,15 +447065,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [128680] = 5, + [127210] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4223), 1, + STATE(4206), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6130), 8, + ACTIONS(5969), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -443909,8 +447082,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6128), 36, + ACTIONS(5967), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -443923,7 +447097,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -443945,167 +447118,335 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [128739] = 5, + anon_sym_do, + [127269] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4224), 1, + ACTIONS(5977), 1, + anon_sym_DOT_DOT, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_CARET, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6938), 1, + anon_sym_AMP_AMP, + ACTIONS(6940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(4207), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6142), 8, - anon_sym_DOT_DOT, + ACTIONS(6924), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6140), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6946), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5975), 13, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_QMARK, + anon_sym_else, + [127360] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, + anon_sym_DOT_DOT, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, anon_sym_CARET, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6936), 1, + anon_sym_QMARK, + ACTIONS(6938), 1, + anon_sym_AMP_AMP, + ACTIONS(6940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(4208), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6924), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(6944), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6946), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6092), 11, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, + anon_sym_else, + [127455] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, + anon_sym_DOT_DOT, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_CARET, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6936), 1, anon_sym_QMARK, + ACTIONS(6938), 1, anon_sym_AMP_AMP, + ACTIONS(6940), 1, anon_sym_PIPE_PIPE, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(4209), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6924), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6944), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6946), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6193), 11, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, anon_sym_else, - [128798] = 21, + [127550] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5941), 1, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, anon_sym_DOT_DOT, - ACTIONS(6869), 1, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6871), 1, + ACTIONS(6922), 1, anon_sym_CARET, - ACTIONS(6875), 1, + ACTIONS(6926), 1, anon_sym_EQ_EQ, - ACTIONS(6881), 1, + ACTIONS(6932), 1, anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6889), 1, + ACTIONS(6936), 1, + anon_sym_QMARK, + ACTIONS(6938), 1, anon_sym_AMP_AMP, - ACTIONS(6891), 1, + ACTIONS(6940), 1, anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(6899), 1, + ACTIONS(6948), 1, sym_binary_ampersand, - STATE(4225), 1, + STATE(4210), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, + ACTIONS(6924), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6879), 2, + ACTIONS(6930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, + ACTIONS(6934), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, + ACTIONS(6918), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6877), 4, + ACTIONS(6928), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6895), 4, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6897), 4, + ACTIONS(6946), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5939), 13, + ACTIONS(6203), 11, sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, - anon_sym_do, - [128889] = 5, + anon_sym_else, + [127645] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4226), 1, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6942), 1, + sym__start_of_index_operator, + STATE(4211), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6168), 8, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6946), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6259), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6166), 36, + ACTIONS(6257), 29, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -444119,22 +447460,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [128948] = 6, + anon_sym_else, + [127714] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7167), 1, - anon_sym_LPAREN2, - STATE(4227), 1, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6942), 1, + sym__start_of_index_operator, + STATE(4212), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6295), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -444142,28 +447487,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4599), 34, + ACTIONS(6293), 33, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -444173,21 +447517,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [129009] = 5, + anon_sym_else, + [127779] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4228), 1, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6942), 1, + sym__start_of_index_operator, + STATE(4213), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -444195,22 +447544,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5524), 36, + ACTIONS(6313), 33, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -444228,213 +447574,314 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [129068] = 7, + anon_sym_else, + [127844] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(6768), 1, anon_sym_DOT, - ACTIONS(7122), 1, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6942), 1, sym__start_of_index_operator, - STATE(4229), 1, + STATE(4214), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5895), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5893), 35, - sym__start_of_brace_block, + ACTIONS(6924), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6946), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6327), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6325), 23, + sym__line_break, + sym_binary_ampersand, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [129131] = 5, + [127917] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4230), 1, + ACTIONS(6442), 1, + anon_sym_DOT_DOT, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_CARET, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6938), 1, + anon_sym_AMP_AMP, + ACTIONS(6940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(4215), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5782), 8, - anon_sym_DOT_DOT, + ACTIONS(6924), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5780), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6946), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6440), 13, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_QMARK, + anon_sym_else, + [128008] = 17, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, anon_sym_CARET, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(4216), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6924), 2, anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5817), 4, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6928), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(6944), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6946), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5815), 17, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [129190] = 7, + anon_sym_else, + [128091] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(6768), 1, anon_sym_DOT, - ACTIONS(7122), 1, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6942), 1, sym__start_of_index_operator, - STATE(4231), 1, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(4217), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6000), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5998), 35, - sym__start_of_brace_block, + ACTIONS(6924), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6946), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6263), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6261), 22, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [129253] = 7, + [128166] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(6768), 1, anon_sym_DOT, - ACTIONS(7122), 1, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6942), 1, sym__start_of_index_operator, - STATE(4232), 1, + STATE(4218), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6004), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6002), 35, - sym__start_of_brace_block, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6946), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5869), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5867), 25, + sym__line_break, + sym_binary_ampersand, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -444446,264 +447893,434 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [129316] = 5, + [128237] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4233), 1, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_CARET, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(4219), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5786), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5784), 36, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6924), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6946), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6134), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6132), 21, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [129375] = 11, + anon_sym_else, + [128316] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, - anon_sym_STAR, - ACTIONS(7036), 1, - anon_sym_PIPE, - ACTIONS(7038), 1, + ACTIONS(6047), 1, + anon_sym_DOT_DOT, + ACTIONS(6768), 1, anon_sym_DOT, - ACTIONS(7040), 1, - anon_sym_QMARK, - STATE(4156), 1, - aux_sym_union_type_repeat1, - STATE(4234), 1, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_CARET, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(4220), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 7, - anon_sym_DOT_DOT, + ACTIONS(6924), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, anon_sym_LT, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4595), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6946), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6045), 15, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_end, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + [128403] = 20, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6215), 1, + anon_sym_DOT_DOT, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, anon_sym_CARET, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6938), 1, + anon_sym_AMP_AMP, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(4221), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6924), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, + ACTIONS(6944), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6946), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6213), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [129446] = 5, + anon_sym_else, + [128492] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4235), 1, + ACTIONS(5981), 1, + anon_sym_DOT_DOT, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_CARET, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6938), 1, + anon_sym_AMP_AMP, + ACTIONS(6940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(4222), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5794), 8, - anon_sym_DOT_DOT, + ACTIONS(6924), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5792), 36, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6946), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5979), 13, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_QMARK, + anon_sym_else, + [128583] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, + anon_sym_DOT_DOT, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, anon_sym_CARET, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6936), 1, + anon_sym_QMARK, + ACTIONS(6938), 1, + anon_sym_AMP_AMP, + ACTIONS(6940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(4223), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6924), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(6930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6944), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(6946), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5779), 11, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, anon_sym_else, - [129505] = 23, + [128678] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6863), 1, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, anon_sym_DOT_DOT, - ACTIONS(6865), 1, + ACTIONS(6916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6869), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6871), 1, + ACTIONS(6922), 1, anon_sym_CARET, - ACTIONS(6875), 1, + ACTIONS(6926), 1, anon_sym_EQ_EQ, - ACTIONS(6881), 1, + ACTIONS(6932), 1, anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6887), 1, + ACTIONS(6936), 1, anon_sym_QMARK, - ACTIONS(6889), 1, + ACTIONS(6938), 1, anon_sym_AMP_AMP, - ACTIONS(6891), 1, + ACTIONS(6940), 1, anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(6899), 1, + ACTIONS(6948), 1, sym_binary_ampersand, - STATE(4236), 1, + STATE(4224), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, + ACTIONS(6924), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6879), 2, + ACTIONS(6930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, + ACTIONS(6934), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, + ACTIONS(6918), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6877), 4, + ACTIONS(6928), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6895), 4, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6897), 4, + ACTIONS(6946), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6010), 11, + ACTIONS(5825), 11, sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_COMMA, anon_sym_end, - anon_sym_do, - [129600] = 5, + anon_sym_else, + [128773] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4237), 1, + STATE(4225), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -444712,7 +448329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 36, + ACTIONS(5995), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -444749,15 +448366,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [129659] = 5, + [128832] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4238), 1, + STATE(4226), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5790), 8, + ACTIONS(6013), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -444766,7 +448383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5788), 36, + ACTIONS(6011), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -444803,159 +448420,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [129718] = 23, + [128891] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6863), 1, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, anon_sym_DOT_DOT, - ACTIONS(6865), 1, + ACTIONS(6916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6869), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6871), 1, + ACTIONS(6922), 1, anon_sym_CARET, - ACTIONS(6875), 1, + ACTIONS(6926), 1, anon_sym_EQ_EQ, - ACTIONS(6881), 1, + ACTIONS(6932), 1, anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6887), 1, + ACTIONS(6936), 1, anon_sym_QMARK, - ACTIONS(6889), 1, + ACTIONS(6938), 1, anon_sym_AMP_AMP, - ACTIONS(6891), 1, + ACTIONS(6940), 1, anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(6899), 1, + ACTIONS(6948), 1, sym_binary_ampersand, - STATE(4239), 1, + STATE(4227), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, + ACTIONS(6924), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6879), 2, + ACTIONS(6930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, + ACTIONS(6934), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, + ACTIONS(6918), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6877), 4, + ACTIONS(6928), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6895), 4, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6897), 4, + ACTIONS(6946), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6030), 11, + ACTIONS(6025), 11, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, + anon_sym_else, + [128986] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4228), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6179), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6177), 36, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - [129813] = 23, + [129045] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6863), 1, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, anon_sym_DOT_DOT, - ACTIONS(6865), 1, + ACTIONS(6916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6869), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(6871), 1, + ACTIONS(6922), 1, anon_sym_CARET, - ACTIONS(6875), 1, + ACTIONS(6926), 1, anon_sym_EQ_EQ, - ACTIONS(6881), 1, + ACTIONS(6932), 1, anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6887), 1, + ACTIONS(6936), 1, anon_sym_QMARK, - ACTIONS(6889), 1, + ACTIONS(6938), 1, anon_sym_AMP_AMP, - ACTIONS(6891), 1, + ACTIONS(6940), 1, anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(6899), 1, + ACTIONS(6948), 1, sym_binary_ampersand, - STATE(4240), 1, + STATE(4229), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, + ACTIONS(6924), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6879), 2, + ACTIONS(6930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, + ACTIONS(6934), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, + ACTIONS(6918), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6877), 4, + ACTIONS(6928), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6895), 4, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6897), 4, + ACTIONS(6946), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6032), 11, + ACTIONS(6039), 11, sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_COMMA, anon_sym_end, - anon_sym_do, - [129908] = 5, + anon_sym_else, + [129140] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4241), 1, + STATE(4230), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6363), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -444964,8 +448635,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 36, + ACTIONS(6361), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -444978,7 +448650,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -445000,49 +448671,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [129967] = 10, + anon_sym_do, + [129199] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6881), 1, - anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6893), 1, - sym__start_of_index_operator, - STATE(4242), 1, + STATE(4231), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6897), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(6454), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 29, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6452), 36, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -445056,26 +448721,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [130036] = 8, + [129258] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6893), 1, - sym__start_of_index_operator, - STATE(4243), 1, + STATE(4232), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(6466), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -445083,14 +448742,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 33, + anon_sym_DOT, + ACTIONS(6464), 36, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -445113,26 +448775,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [130101] = 8, + [129317] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6893), 1, - sym__start_of_index_operator, - STATE(4244), 1, + STATE(4233), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(6406), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -445140,14 +448796,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 33, + anon_sym_DOT, + ACTIONS(6404), 36, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -445170,19 +448829,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [130166] = 5, + [129376] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4245), 1, + STATE(4234), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -445191,7 +448851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 36, + ACTIONS(6199), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -445228,76 +448888,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [130225] = 12, + [129435] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6881), 1, - anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6893), 1, - sym__start_of_index_operator, - STATE(4246), 1, + STATE(4235), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6895), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6897), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6064), 6, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6062), 23, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6321), 36, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [130298] = 5, + [129494] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4247), 1, + STATE(4236), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(5881), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -445306,7 +448959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 36, + ACTIONS(5879), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -445343,15 +448996,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [130357] = 5, + [129553] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4248), 1, + STATE(4237), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5911), 8, + ACTIONS(6023), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -445360,7 +449013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5909), 36, + ACTIONS(6021), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -445397,227 +449050,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [130416] = 21, + [129612] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6068), 1, - anon_sym_DOT_DOT, - ACTIONS(6869), 1, - anon_sym_PIPE, - ACTIONS(6871), 1, - anon_sym_CARET, - ACTIONS(6875), 1, - anon_sym_EQ_EQ, - ACTIONS(6881), 1, - anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6889), 1, - anon_sym_AMP_AMP, - ACTIONS(6891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6893), 1, - sym__start_of_index_operator, - ACTIONS(6899), 1, - sym_binary_ampersand, - STATE(4249), 1, + STATE(4238), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6879), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, + ACTIONS(6037), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6877), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6895), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6035), 36, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6897), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6066), 13, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - [130507] = 21, + [129671] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5941), 1, - anon_sym_DOT_DOT, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6952), 1, - anon_sym_AMP_AMP, - ACTIONS(6954), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(4250), 1, + STATE(4239), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(6055), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6053), 36, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5939), 13, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, - anon_sym_else, - [130598] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, - anon_sym_DOT_DOT, - ACTIONS(6930), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6950), 1, - anon_sym_QMARK, - ACTIONS(6952), 1, - anon_sym_AMP_AMP, - ACTIONS(6954), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(4251), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6938), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6958), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6960), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6010), 11, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - anon_sym_else, - [130693] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [129730] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4252), 1, + STATE(4240), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5850), 8, + ACTIONS(6071), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -445626,8 +449175,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5848), 36, + ACTIONS(6069), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -445640,7 +449190,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -445662,193 +449211,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [130752] = 23, + anon_sym_do, + [129789] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, - anon_sym_DOT_DOT, - ACTIONS(6930), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6950), 1, - anon_sym_QMARK, - ACTIONS(6952), 1, - anon_sym_AMP_AMP, - ACTIONS(6954), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(4253), 1, + STATE(4241), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(6160), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6158), 36, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6030), 11, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_end, - anon_sym_else, - [130847] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, - anon_sym_DOT_DOT, - ACTIONS(6930), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6950), 1, - anon_sym_QMARK, - ACTIONS(6952), 1, - anon_sym_AMP_AMP, - ACTIONS(6954), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(4254), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6938), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6958), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6960), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6032), 11, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - anon_sym_else, - [130942] = 10, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [129848] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6956), 1, - sym__start_of_index_operator, - STATE(4255), 1, + STATE(4242), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6960), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(6171), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 29, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6169), 36, sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -445862,19 +449315,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [131011] = 5, + anon_sym_do, + [129907] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4256), 1, + STATE(4243), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6212), 8, + ACTIONS(6187), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -445883,7 +449337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6210), 36, + ACTIONS(6185), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -445920,22 +449374,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [131070] = 8, + [129966] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6956), 1, - sym__start_of_index_operator, - STATE(4257), 1, + STATE(4244), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -445943,19 +449390,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 33, + anon_sym_DOT, + ACTIONS(6357), 36, sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -445973,26 +449423,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [131135] = 8, + anon_sym_do, + [130025] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6956), 1, - sym__start_of_index_operator, - STATE(4258), 1, + STATE(4245), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(5829), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -446000,19 +449444,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 33, + anon_sym_DOT, + ACTIONS(5827), 36, sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -446030,80 +449477,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [131200] = 12, + anon_sym_do, + [130084] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6956), 1, - sym__start_of_index_operator, - STATE(4259), 1, + STATE(4246), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6958), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6960), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6064), 6, + ACTIONS(6019), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6062), 23, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6017), 36, sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [131273] = 5, + anon_sym_do, + [130143] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4260), 1, + STATE(4247), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5854), 8, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -446112,8 +449553,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5852), 36, + ACTIONS(6041), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -446126,7 +449568,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -446148,248 +449589,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [131332] = 21, + anon_sym_do, + [130202] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6068), 1, - anon_sym_DOT_DOT, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6952), 1, - anon_sym_AMP_AMP, - ACTIONS(6954), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(4261), 1, + STATE(4248), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(6067), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6065), 36, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6066), 13, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, - anon_sym_else, - [131423] = 17, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(4262), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6938), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6942), 4, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6958), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6960), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6070), 17, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [131506] = 13, + anon_sym_do, + [130261] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(4263), 1, + STATE(4249), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6958), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6960), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6082), 6, + ACTIONS(6079), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6080), 22, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6077), 36, sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [131581] = 11, + anon_sym_do, + [130320] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6956), 1, - sym__start_of_index_operator, - STATE(4264), 1, + STATE(4250), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6958), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6960), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6090), 6, + ACTIONS(6090), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6088), 25, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6088), 36, sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -446403,19 +449747,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [131652] = 5, + anon_sym_do, + [130379] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4265), 1, + STATE(4251), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6216), 8, + ACTIONS(6138), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -446424,7 +449769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6214), 36, + ACTIONS(6136), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -446461,79 +449806,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [131711] = 15, + [130438] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_CARET, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(4266), 1, + STATE(4252), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6958), 4, + ACTIONS(6148), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6146), 36, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6094), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6092), 21, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [131790] = 5, + anon_sym_do, + [130497] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4267), 1, + STATE(4253), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6150), 8, + ACTIONS(6299), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -446542,8 +449877,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6148), 36, + ACTIONS(6297), 36, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -446556,7 +449892,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -446578,153 +449913,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [131849] = 19, + anon_sym_do, + [130556] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, - anon_sym_DOT_DOT, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, - anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(4268), 1, + ACTIONS(7206), 1, + anon_sym_EQ, + STATE(4254), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(5763), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5761), 35, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6112), 15, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_else, - [131936] = 20, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6118), 1, - anon_sym_DOT_DOT, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6934), 1, - anon_sym_PIPE, - ACTIONS(6936), 1, anon_sym_CARET, - ACTIONS(6940), 1, - anon_sym_EQ_EQ, - ACTIONS(6946), 1, - anon_sym_AMP_STAR, - ACTIONS(6952), 1, - anon_sym_AMP_AMP, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(6962), 1, - sym_binary_ampersand, - STATE(4269), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6938), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6942), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6958), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6960), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6116), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [132025] = 5, + [130617] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4270), 1, + ACTIONS(6674), 1, + anon_sym_LPAREN2, + STATE(4255), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -446733,9 +449988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 36, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(135), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -446746,14 +449999,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -446769,134 +450020,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [132084] = 17, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [130678] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6869), 1, - anon_sym_PIPE, - ACTIONS(6871), 1, - anon_sym_CARET, - ACTIONS(6875), 1, - anon_sym_EQ_EQ, - ACTIONS(6881), 1, - anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6893), 1, - sym__start_of_index_operator, - ACTIONS(6899), 1, - sym_binary_ampersand, - STATE(4271), 1, + STATE(4256), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6877), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(6895), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6345), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6897), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6070), 17, - sym__line_break, - sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [132167] = 21, + anon_sym_else, + [130737] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6242), 1, + ACTIONS(5977), 1, anon_sym_DOT_DOT, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6934), 1, + ACTIONS(6980), 1, anon_sym_PIPE, - ACTIONS(6936), 1, + ACTIONS(6982), 1, anon_sym_CARET, - ACTIONS(6940), 1, + ACTIONS(6986), 1, anon_sym_EQ_EQ, - ACTIONS(6946), 1, + ACTIONS(6992), 1, anon_sym_AMP_STAR, - ACTIONS(6952), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7000), 1, anon_sym_AMP_AMP, - ACTIONS(6954), 1, + ACTIONS(7002), 1, anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, + ACTIONS(7004), 1, sym__start_of_index_operator, - ACTIONS(6962), 1, + ACTIONS(7010), 1, sym_binary_ampersand, - STATE(4272), 1, + STATE(4257), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, + ACTIONS(6984), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6990), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, + ACTIONS(6994), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(6978), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, + ACTIONS(6988), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, + ACTIONS(7008), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6240), 13, + ACTIONS(5975), 13, sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -446905,87 +450147,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_QMARK, - anon_sym_else, - [132258] = 13, + anon_sym_do, + [130828] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6881), 1, - anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6893), 1, - sym__start_of_index_operator, - ACTIONS(6899), 1, - sym_binary_ampersand, - STATE(4273), 1, + ACTIONS(7208), 1, + anon_sym_LPAREN2, + STATE(4258), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6895), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6897), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6082), 6, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6080), 22, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4644), 34, sym__line_break, sym__start_of_brace_block, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [132333] = 5, + anon_sym_then, + [130889] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4274), 1, + ACTIONS(7081), 1, + anon_sym_PIPE, + ACTIONS(7086), 1, + anon_sym_LBRACK, + ACTIONS(7088), 1, + anon_sym_STAR, + ACTIONS(7090), 1, + anon_sym_DOT, + ACTIONS(7092), 1, + anon_sym_QMARK, + STATE(3852), 1, + aux_sym_union_type_repeat1, + STATE(4259), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6238), 8, + ACTIONS(4638), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6236), 36, + anon_sym_EQ, + ACTIONS(4640), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -446998,16 +450244,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -447018,53 +450259,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [132392] = 11, + anon_sym_then, + [130960] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6881), 1, - anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6893), 1, - sym__start_of_index_operator, - STATE(4275), 1, + STATE(4260), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6895), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6897), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6090), 6, + ACTIONS(6183), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6088), 25, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6181), 36, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -447078,325 +450312,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [132463] = 15, + [131019] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6869), 1, - anon_sym_PIPE, - ACTIONS(6871), 1, - anon_sym_CARET, - ACTIONS(6881), 1, - anon_sym_AMP_STAR, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(6893), 1, - sym__start_of_index_operator, - ACTIONS(6899), 1, - sym_binary_ampersand, - STATE(4276), 1, + STATE(4261), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(6883), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6895), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(6897), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6094), 5, + ACTIONS(6207), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6092), 21, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6205), 36, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [132542] = 23, + [131078] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, + ACTIONS(6974), 1, anon_sym_DOT_DOT, - ACTIONS(6930), 1, + ACTIONS(6976), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, + ACTIONS(6980), 1, anon_sym_PIPE, - ACTIONS(6936), 1, + ACTIONS(6982), 1, anon_sym_CARET, - ACTIONS(6940), 1, + ACTIONS(6986), 1, anon_sym_EQ_EQ, - ACTIONS(6946), 1, + ACTIONS(6992), 1, anon_sym_AMP_STAR, - ACTIONS(6950), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(6998), 1, anon_sym_QMARK, - ACTIONS(6952), 1, + ACTIONS(7000), 1, anon_sym_AMP_AMP, - ACTIONS(6954), 1, + ACTIONS(7002), 1, anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, + ACTIONS(7004), 1, sym__start_of_index_operator, - ACTIONS(6962), 1, + ACTIONS(7010), 1, sym_binary_ampersand, - STATE(4277), 1, + STATE(4262), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, + ACTIONS(6984), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6990), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, + ACTIONS(6994), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(6978), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, + ACTIONS(6988), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, + ACTIONS(7008), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6256), 11, + ACTIONS(6092), 11, sym__line_break, + sym__start_of_brace_block, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_COMMA, anon_sym_end, - anon_sym_else, - [132637] = 23, + anon_sym_do, + [131173] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6693), 1, - anon_sym_DOT, - ACTIONS(6928), 1, + ACTIONS(6974), 1, anon_sym_DOT_DOT, - ACTIONS(6930), 1, + ACTIONS(6976), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(6934), 1, + ACTIONS(6980), 1, anon_sym_PIPE, - ACTIONS(6936), 1, + ACTIONS(6982), 1, anon_sym_CARET, - ACTIONS(6940), 1, + ACTIONS(6986), 1, anon_sym_EQ_EQ, - ACTIONS(6946), 1, + ACTIONS(6992), 1, anon_sym_AMP_STAR, - ACTIONS(6950), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(6998), 1, anon_sym_QMARK, - ACTIONS(6952), 1, + ACTIONS(7000), 1, anon_sym_AMP_AMP, - ACTIONS(6954), 1, + ACTIONS(7002), 1, anon_sym_PIPE_PIPE, - ACTIONS(6956), 1, + ACTIONS(7004), 1, sym__start_of_index_operator, - ACTIONS(6962), 1, + ACTIONS(7010), 1, sym_binary_ampersand, - STATE(4278), 1, + STATE(4263), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6938), 2, + ACTIONS(6984), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6990), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6948), 2, + ACTIONS(6994), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6932), 3, + ACTIONS(6978), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6942), 4, + ACTIONS(6988), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6958), 4, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6960), 4, + ACTIONS(7008), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6230), 11, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - anon_sym_else, - [132732] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4279), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5794), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5792), 36, + ACTIONS(6193), 11, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, - [132791] = 19, + [131268] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, + ACTIONS(6974), 1, anon_sym_DOT_DOT, - ACTIONS(6869), 1, + ACTIONS(6976), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6980), 1, anon_sym_PIPE, - ACTIONS(6871), 1, + ACTIONS(6982), 1, anon_sym_CARET, - ACTIONS(6875), 1, + ACTIONS(6986), 1, anon_sym_EQ_EQ, - ACTIONS(6881), 1, + ACTIONS(6992), 1, anon_sym_AMP_STAR, - ACTIONS(6885), 1, + ACTIONS(6996), 1, anon_sym_DOT, - ACTIONS(6893), 1, + ACTIONS(6998), 1, + anon_sym_QMARK, + ACTIONS(7000), 1, + anon_sym_AMP_AMP, + ACTIONS(7002), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7004), 1, sym__start_of_index_operator, - ACTIONS(6899), 1, + ACTIONS(7010), 1, sym_binary_ampersand, - STATE(4280), 1, + STATE(4264), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, + ACTIONS(6984), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6879), 2, + ACTIONS(6990), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, + ACTIONS(6994), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, + ACTIONS(6978), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6877), 4, + ACTIONS(6988), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6895), 4, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6897), 4, + ACTIONS(7008), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 15, + ACTIONS(6203), 11, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -447406,48 +450585,50 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, - [132878] = 5, + [131363] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4281), 1, + ACTIONS(6992), 1, + anon_sym_AMP_STAR, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7004), 1, + sym__start_of_index_operator, + STATE(4265), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6254), 8, + ACTIONS(6994), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7008), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6259), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6252), 36, + ACTIONS(6257), 29, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -447461,20 +450642,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [132937] = 5, + [131432] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4282), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7004), 1, + sym__start_of_index_operator, + STATE(4266), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6260), 8, + ACTIONS(6994), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6295), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -447482,17 +450669,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6258), 36, + ACTIONS(6293), 33, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -447515,20 +450699,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [132996] = 5, + [131497] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4283), 1, + STATE(4267), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(5853), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -447537,7 +450720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 36, + ACTIONS(5851), 36, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -447574,15 +450757,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [133055] = 5, + [131556] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4284), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7004), 1, + sym__start_of_index_operator, + STATE(4268), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(6994), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -447590,22 +450780,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5872), 36, + ACTIONS(6313), 33, sym__line_break, - sym__start_of_index_operator, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -447623,120 +450810,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [133114] = 5, + anon_sym_do, + [131621] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4285), 1, + ACTIONS(6992), 1, + anon_sym_AMP_STAR, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7004), 1, + sym__start_of_index_operator, + STATE(4269), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5798), 8, + ACTIONS(6984), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6994), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7006), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7008), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6327), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5796), 36, + ACTIONS(6325), 23, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [133173] = 20, + [131694] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6118), 1, + ACTIONS(6442), 1, anon_sym_DOT_DOT, - ACTIONS(6869), 1, + ACTIONS(6980), 1, anon_sym_PIPE, - ACTIONS(6871), 1, + ACTIONS(6982), 1, anon_sym_CARET, - ACTIONS(6875), 1, + ACTIONS(6986), 1, anon_sym_EQ_EQ, - ACTIONS(6881), 1, + ACTIONS(6992), 1, anon_sym_AMP_STAR, - ACTIONS(6885), 1, + ACTIONS(6996), 1, anon_sym_DOT, - ACTIONS(6889), 1, + ACTIONS(7000), 1, anon_sym_AMP_AMP, - ACTIONS(6893), 1, + ACTIONS(7002), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7004), 1, sym__start_of_index_operator, - ACTIONS(6899), 1, + ACTIONS(7010), 1, sym_binary_ampersand, - STATE(4286), 1, + STATE(4270), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6873), 2, + ACTIONS(6984), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(6879), 2, + ACTIONS(6990), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6883), 2, + ACTIONS(6994), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6867), 3, + ACTIONS(6978), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6877), 4, + ACTIONS(6988), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(6895), 4, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(6897), 4, + ACTIONS(7008), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6116), 14, + ACTIONS(6440), 13, sym__line_break, sym__start_of_brace_block, sym__modifier_if_keyword, @@ -447749,116 +450944,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_QMARK, - anon_sym_PIPE_PIPE, anon_sym_do, - [133262] = 25, + [131785] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7092), 1, - anon_sym_DOT_DOT, - ACTIONS(7094), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, + ACTIONS(6980), 1, anon_sym_PIPE, - ACTIONS(7100), 1, + ACTIONS(6982), 1, anon_sym_CARET, - ACTIONS(7104), 1, + ACTIONS(6986), 1, anon_sym_EQ_EQ, - ACTIONS(7110), 1, + ACTIONS(6992), 1, anon_sym_AMP_STAR, - ACTIONS(7114), 1, + ACTIONS(6996), 1, anon_sym_DOT, - ACTIONS(7116), 1, - anon_sym_QMARK, - ACTIONS(7118), 1, - anon_sym_AMP_AMP, - ACTIONS(7120), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, + ACTIONS(7004), 1, sym__start_of_index_operator, - ACTIONS(7128), 1, + ACTIONS(7010), 1, sym_binary_ampersand, - ACTIONS(7130), 1, - anon_sym_COMMA, - STATE(4100), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4287), 1, + STATE(4271), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, + ACTIONS(6984), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7108), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, + ACTIONS(6994), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, + ACTIONS(5817), 4, + anon_sym_DOT_DOT, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7106), 4, + ACTIONS(6988), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, + ACTIONS(7008), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5570), 9, + ACTIONS(5815), 17, + sym__line_break, sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [133361] = 5, + [131868] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4288), 1, + ACTIONS(6992), 1, + anon_sym_AMP_STAR, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7004), 1, + sym__start_of_index_operator, + ACTIONS(7010), 1, + sym_binary_ampersand, + STATE(4272), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(6984), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6994), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7006), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7008), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6263), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, + ACTIONS(6261), 22, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [131943] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6992), 1, anon_sym_AMP_STAR, + ACTIONS(6996), 1, anon_sym_DOT, - ACTIONS(6318), 35, + ACTIONS(7004), 1, sym__start_of_index_operator, + STATE(4273), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6994), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7008), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5869), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5867), 25, + sym__line_break, + sym__start_of_brace_block, + sym_binary_ampersand, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -447870,196 +451129,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [133419] = 23, + anon_sym_do, + [132014] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7092), 1, - anon_sym_DOT_DOT, - ACTIONS(7094), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, + ACTIONS(6980), 1, anon_sym_PIPE, - ACTIONS(7100), 1, + ACTIONS(6982), 1, anon_sym_CARET, - ACTIONS(7104), 1, - anon_sym_EQ_EQ, - ACTIONS(7110), 1, + ACTIONS(6992), 1, anon_sym_AMP_STAR, - ACTIONS(7114), 1, + ACTIONS(6996), 1, anon_sym_DOT, - ACTIONS(7116), 1, - anon_sym_QMARK, - ACTIONS(7118), 1, - anon_sym_AMP_AMP, - ACTIONS(7120), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, + ACTIONS(7004), 1, sym__start_of_index_operator, - ACTIONS(7128), 1, + ACTIONS(7010), 1, sym_binary_ampersand, - STATE(4289), 1, + STATE(4274), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, + ACTIONS(6984), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7108), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, + ACTIONS(6994), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7106), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, + ACTIONS(7008), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6030), 10, + ACTIONS(6134), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6132), 21, + sym__line_break, sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [133513] = 23, + [132093] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7092), 1, + ACTIONS(6047), 1, anon_sym_DOT_DOT, - ACTIONS(7094), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, + ACTIONS(6980), 1, anon_sym_PIPE, - ACTIONS(7100), 1, + ACTIONS(6982), 1, anon_sym_CARET, - ACTIONS(7104), 1, + ACTIONS(6986), 1, anon_sym_EQ_EQ, - ACTIONS(7110), 1, + ACTIONS(6992), 1, anon_sym_AMP_STAR, - ACTIONS(7114), 1, + ACTIONS(6996), 1, anon_sym_DOT, - ACTIONS(7116), 1, - anon_sym_QMARK, - ACTIONS(7118), 1, - anon_sym_AMP_AMP, - ACTIONS(7120), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, + ACTIONS(7004), 1, sym__start_of_index_operator, - ACTIONS(7128), 1, + ACTIONS(7010), 1, sym_binary_ampersand, - STATE(4290), 1, + STATE(4275), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, + ACTIONS(6984), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7108), 2, + ACTIONS(6990), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, + ACTIONS(6994), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, + ACTIONS(6978), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7106), 4, + ACTIONS(6988), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, + ACTIONS(7008), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6032), 10, + ACTIONS(6045), 15, + sym__line_break, sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [133607] = 10, + [132180] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7110), 1, + ACTIONS(6215), 1, + anon_sym_DOT_DOT, + ACTIONS(6980), 1, + anon_sym_PIPE, + ACTIONS(6982), 1, + anon_sym_CARET, + ACTIONS(6986), 1, + anon_sym_EQ_EQ, + ACTIONS(6992), 1, anon_sym_AMP_STAR, - ACTIONS(7114), 1, + ACTIONS(6996), 1, anon_sym_DOT, - ACTIONS(7122), 1, + ACTIONS(7000), 1, + anon_sym_AMP_AMP, + ACTIONS(7004), 1, sym__start_of_index_operator, - STATE(4291), 1, + ACTIONS(7010), 1, + sym_binary_ampersand, + STATE(4276), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7112), 2, + ACTIONS(6984), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6990), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6994), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7126), 4, + ACTIONS(6978), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6988), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7006), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7008), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(6213), 14, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_do, + [132269] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4277), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5559), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 28, - sym__start_of_brace_block, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5557), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - anon_sym_RPAREN, - anon_sym_RBRACE, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + sym__string_literal_start, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -448071,53 +451383,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [133675] = 8, + [132328] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7081), 1, + anon_sym_PIPE, + ACTIONS(7086), 1, + anon_sym_LBRACK, + ACTIONS(7088), 1, + anon_sym_STAR, + ACTIONS(7090), 1, anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - STATE(4292), 1, + ACTIONS(7092), 1, + anon_sym_QMARK, + STATE(3852), 1, + aux_sym_union_type_repeat1, + STATE(4278), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7112), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 32, + anon_sym_EQ, + ACTIONS(4650), 31, + sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -448127,53 +451443,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_AMP_STAR_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [133739] = 8, + anon_sym_then, + [132399] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7081), 1, + anon_sym_PIPE, + ACTIONS(7086), 1, + anon_sym_LBRACK, + ACTIONS(7088), 1, + anon_sym_STAR, + ACTIONS(7090), 1, anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - STATE(4293), 1, + ACTIONS(7092), 1, + anon_sym_QMARK, + STATE(3852), 1, + aux_sym_union_type_repeat1, + STATE(4279), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7112), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(4619), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 32, + anon_sym_EQ, + ACTIONS(4621), 31, + sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -448183,309 +451503,428 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_AMP_STAR_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [133803] = 12, + anon_sym_then, + [132470] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7110), 1, + ACTIONS(5981), 1, + anon_sym_DOT_DOT, + ACTIONS(6980), 1, + anon_sym_PIPE, + ACTIONS(6982), 1, + anon_sym_CARET, + ACTIONS(6986), 1, + anon_sym_EQ_EQ, + ACTIONS(6992), 1, anon_sym_AMP_STAR, - ACTIONS(7114), 1, + ACTIONS(6996), 1, anon_sym_DOT, - ACTIONS(7122), 1, + ACTIONS(7000), 1, + anon_sym_AMP_AMP, + ACTIONS(7002), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7004), 1, sym__start_of_index_operator, - STATE(4294), 1, + ACTIONS(7010), 1, + sym_binary_ampersand, + STATE(4280), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, + ACTIONS(6984), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7112), 2, + ACTIONS(6990), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6994), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7124), 4, + ACTIONS(6978), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6988), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, + ACTIONS(7008), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6064), 6, + ACTIONS(5979), 13, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, + anon_sym_do, + [132561] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(3852), 1, + aux_sym_union_type_repeat1, + STATE(4281), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6062), 22, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4629), 34, + sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - anon_sym_RPAREN, - anon_sym_RBRACE, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [133875] = 21, + anon_sym_then, + [132622] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6068), 1, + ACTIONS(6974), 1, anon_sym_DOT_DOT, - ACTIONS(7098), 1, + ACTIONS(6976), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6980), 1, anon_sym_PIPE, - ACTIONS(7100), 1, + ACTIONS(6982), 1, anon_sym_CARET, - ACTIONS(7104), 1, + ACTIONS(6986), 1, anon_sym_EQ_EQ, - ACTIONS(7110), 1, + ACTIONS(6992), 1, anon_sym_AMP_STAR, - ACTIONS(7114), 1, + ACTIONS(6996), 1, anon_sym_DOT, - ACTIONS(7118), 1, + ACTIONS(6998), 1, + anon_sym_QMARK, + ACTIONS(7000), 1, anon_sym_AMP_AMP, - ACTIONS(7120), 1, + ACTIONS(7002), 1, anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, + ACTIONS(7004), 1, sym__start_of_index_operator, - ACTIONS(7128), 1, + ACTIONS(7010), 1, sym_binary_ampersand, - STATE(4295), 1, + STATE(4282), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, + ACTIONS(6984), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7108), 2, + ACTIONS(6990), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, + ACTIONS(6994), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, + ACTIONS(6978), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7106), 4, + ACTIONS(6988), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, + ACTIONS(7008), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6066), 12, + ACTIONS(5779), 11, + sym__line_break, sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [133965] = 17, + [132717] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7098), 1, - anon_sym_PIPE, - ACTIONS(7100), 1, - anon_sym_CARET, - ACTIONS(7104), 1, - anon_sym_EQ_EQ, - ACTIONS(7110), 1, - anon_sym_AMP_STAR, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7128), 1, - sym_binary_ampersand, - STATE(4296), 1, + STATE(4283), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7112), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, + ACTIONS(5783), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7106), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5781), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - ACTIONS(6070), 16, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [134047] = 13, + [132776] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7110), 1, + ACTIONS(6974), 1, + anon_sym_DOT_DOT, + ACTIONS(6976), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6980), 1, + anon_sym_PIPE, + ACTIONS(6982), 1, + anon_sym_CARET, + ACTIONS(6986), 1, + anon_sym_EQ_EQ, + ACTIONS(6992), 1, anon_sym_AMP_STAR, - ACTIONS(7114), 1, + ACTIONS(6996), 1, anon_sym_DOT, - ACTIONS(7122), 1, + ACTIONS(6998), 1, + anon_sym_QMARK, + ACTIONS(7000), 1, + anon_sym_AMP_AMP, + ACTIONS(7002), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7004), 1, sym__start_of_index_operator, - ACTIONS(7128), 1, + ACTIONS(7010), 1, sym_binary_ampersand, - STATE(4297), 1, + STATE(4284), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, + ACTIONS(6984), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7112), 2, + ACTIONS(6990), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6994), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7124), 4, + ACTIONS(6978), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6988), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, + ACTIONS(7008), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6082), 6, + ACTIONS(5825), 11, + sym__line_break, + sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, + anon_sym_do, + [132871] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7161), 1, + anon_sym_COLON_COLON, + STATE(3882), 1, + aux_sym_constant_repeat1, + STATE(4285), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4594), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6080), 21, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4596), 33, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [134121] = 11, + anon_sym_then, + [132934] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7110), 1, - anon_sym_AMP_STAR, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - STATE(4298), 1, + STATE(4286), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7112), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7124), 4, + ACTIONS(6291), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6289), 36, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - ACTIONS(6090), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6088), 24, - sym__start_of_brace_block, - sym_binary_ampersand, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -448497,539 +451936,666 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [134191] = 15, + [132993] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7098), 1, + ACTIONS(6974), 1, + anon_sym_DOT_DOT, + ACTIONS(6976), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6980), 1, anon_sym_PIPE, - ACTIONS(7100), 1, + ACTIONS(6982), 1, anon_sym_CARET, - ACTIONS(7110), 1, + ACTIONS(6986), 1, + anon_sym_EQ_EQ, + ACTIONS(6992), 1, anon_sym_AMP_STAR, - ACTIONS(7114), 1, + ACTIONS(6996), 1, anon_sym_DOT, - ACTIONS(7122), 1, + ACTIONS(6998), 1, + anon_sym_QMARK, + ACTIONS(7000), 1, + anon_sym_AMP_AMP, + ACTIONS(7002), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7004), 1, sym__start_of_index_operator, - ACTIONS(7128), 1, + ACTIONS(7010), 1, sym_binary_ampersand, - STATE(4299), 1, + STATE(4287), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, + ACTIONS(6984), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7112), 2, + ACTIONS(6990), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6994), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7124), 4, + ACTIONS(6978), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6988), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7006), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, + ACTIONS(7008), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6094), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6092), 20, + ACTIONS(5694), 11, + sym__line_break, sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [134269] = 19, + [133088] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, anon_sym_DOT_DOT, - ACTIONS(7098), 1, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(7100), 1, + ACTIONS(6922), 1, anon_sym_CARET, - ACTIONS(7104), 1, + ACTIONS(6926), 1, anon_sym_EQ_EQ, - ACTIONS(7110), 1, + ACTIONS(6932), 1, anon_sym_AMP_STAR, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, + ACTIONS(6936), 1, + anon_sym_QMARK, + ACTIONS(6938), 1, + anon_sym_AMP_AMP, + ACTIONS(6940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(7128), 1, + ACTIONS(6948), 1, sym_binary_ampersand, - STATE(4300), 1, + STATE(4288), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, + ACTIONS(6924), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7108), 2, + ACTIONS(6930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, + ACTIONS(6934), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, + ACTIONS(6918), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7106), 4, + ACTIONS(6928), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, + ACTIONS(6946), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 14, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, + ACTIONS(6612), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [134355] = 20, + [133185] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6118), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, anon_sym_DOT_DOT, - ACTIONS(7098), 1, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(7100), 1, + ACTIONS(6922), 1, anon_sym_CARET, - ACTIONS(7104), 1, + ACTIONS(6926), 1, anon_sym_EQ_EQ, - ACTIONS(7110), 1, + ACTIONS(6932), 1, anon_sym_AMP_STAR, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7118), 1, + ACTIONS(6936), 1, + anon_sym_QMARK, + ACTIONS(6938), 1, anon_sym_AMP_AMP, - ACTIONS(7122), 1, + ACTIONS(6940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(7128), 1, + ACTIONS(6948), 1, sym_binary_ampersand, - STATE(4301), 1, + STATE(4289), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, + ACTIONS(6924), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7108), 2, + ACTIONS(6930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, + ACTIONS(6934), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, + ACTIONS(6918), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7106), 4, + ACTIONS(6928), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, + ACTIONS(6946), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6116), 13, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, + ACTIONS(6612), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [134443] = 21, + [133282] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6242), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, anon_sym_DOT_DOT, - ACTIONS(7098), 1, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(7100), 1, + ACTIONS(6922), 1, anon_sym_CARET, - ACTIONS(7104), 1, + ACTIONS(6926), 1, anon_sym_EQ_EQ, - ACTIONS(7110), 1, + ACTIONS(6932), 1, anon_sym_AMP_STAR, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7118), 1, + ACTIONS(6936), 1, + anon_sym_QMARK, + ACTIONS(6938), 1, anon_sym_AMP_AMP, - ACTIONS(7120), 1, + ACTIONS(6940), 1, anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(7128), 1, + ACTIONS(6948), 1, sym_binary_ampersand, - STATE(4302), 1, + STATE(4290), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, + ACTIONS(6924), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7108), 2, + ACTIONS(6930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, + ACTIONS(6934), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, + ACTIONS(6918), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7106), 4, + ACTIONS(6928), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, + ACTIONS(6946), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6240), 12, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, + ACTIONS(6612), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - anon_sym_QMARK, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [134533] = 5, + [133379] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4303), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, + anon_sym_DOT_DOT, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, + anon_sym_CARET, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6936), 1, + anon_sym_QMARK, + ACTIONS(6938), 1, + anon_sym_AMP_AMP, + ACTIONS(6940), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(4291), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6304), 8, - anon_sym_DOT_DOT, + ACTIONS(6924), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6302), 35, - sym__start_of_index_operator, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6946), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, + ACTIONS(6612), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, + anon_sym_else, + [133476] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, + anon_sym_DOT_DOT, + ACTIONS(6916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6920), 1, + anon_sym_PIPE, + ACTIONS(6922), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(6926), 1, + anon_sym_EQ_EQ, + ACTIONS(6932), 1, + anon_sym_AMP_STAR, + ACTIONS(6936), 1, anon_sym_QMARK, + ACTIONS(6938), 1, anon_sym_AMP_AMP, + ACTIONS(6940), 1, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [134591] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4304), 1, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(6948), 1, + sym_binary_ampersand, + STATE(4292), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4561), 9, - anon_sym_DOT_DOT, + ACTIONS(6924), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(6930), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(6934), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6918), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4563), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6928), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(6946), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5694), 11, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [134649] = 23, + anon_sym_end, + anon_sym_else, + [133571] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7092), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, anon_sym_DOT_DOT, - ACTIONS(7094), 1, + ACTIONS(6916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(7100), 1, + ACTIONS(6922), 1, anon_sym_CARET, - ACTIONS(7104), 1, + ACTIONS(6926), 1, anon_sym_EQ_EQ, - ACTIONS(7110), 1, + ACTIONS(6932), 1, anon_sym_AMP_STAR, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7116), 1, + ACTIONS(6936), 1, anon_sym_QMARK, - ACTIONS(7118), 1, + ACTIONS(6938), 1, anon_sym_AMP_AMP, - ACTIONS(7120), 1, + ACTIONS(6940), 1, anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(7128), 1, + ACTIONS(6948), 1, sym_binary_ampersand, - STATE(4305), 1, + STATE(4293), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, + ACTIONS(6924), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7108), 2, + ACTIONS(6930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, + ACTIONS(6934), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, + ACTIONS(6918), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7106), 4, + ACTIONS(6928), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, + ACTIONS(6946), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6256), 10, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6612), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [134743] = 23, + [133668] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7092), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6768), 1, + anon_sym_DOT, + ACTIONS(6914), 1, anon_sym_DOT_DOT, - ACTIONS(7094), 1, + ACTIONS(6916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, + ACTIONS(6920), 1, anon_sym_PIPE, - ACTIONS(7100), 1, + ACTIONS(6922), 1, anon_sym_CARET, - ACTIONS(7104), 1, + ACTIONS(6926), 1, anon_sym_EQ_EQ, - ACTIONS(7110), 1, + ACTIONS(6932), 1, anon_sym_AMP_STAR, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7116), 1, + ACTIONS(6936), 1, anon_sym_QMARK, - ACTIONS(7118), 1, + ACTIONS(6938), 1, anon_sym_AMP_AMP, - ACTIONS(7120), 1, + ACTIONS(6940), 1, anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(7128), 1, + ACTIONS(6948), 1, sym_binary_ampersand, - STATE(4306), 1, + STATE(4294), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, + ACTIONS(6924), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7108), 2, + ACTIONS(6930), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, + ACTIONS(6934), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, + ACTIONS(6918), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7106), 4, + ACTIONS(6928), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + ACTIONS(6944), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, + ACTIONS(6946), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6230), 10, - sym__start_of_brace_block, + ACTIONS(6612), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + [133765] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7094), 1, + anon_sym_LPAREN, + ACTIONS(7099), 1, + anon_sym_typeof, + ACTIONS(7101), 1, + sym__constant_segment, + ACTIONS(7103), 1, + anon_sym_COLON_COLON, + ACTIONS(7107), 1, + sym__start_of_tuple_type, + ACTIONS(7109), 1, + sym__start_of_named_tuple_type, + ACTIONS(7210), 1, + anon_sym_DASH_GT, + STATE(4295), 1, + sym_heredoc_body, + STATE(7692), 1, + sym_constant, + STATE(7738), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7105), 2, + sym_self, + sym_underscore_type, + STATE(7763), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4390), 21, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_end, - anon_sym_do, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [134837] = 6, + [133844] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6766), 1, - anon_sym_LPAREN2, - STATE(4307), 1, + STATE(4296), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5829), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -449038,7 +452604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 34, + ACTIONS(5827), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -449052,6 +452618,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -449073,17 +452640,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [134897] = 6, + anon_sym_else, + [133903] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7169), 1, - sym_regex_modifier, - STATE(4308), 1, + STATE(4297), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5633), 8, + ACTIONS(5574), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -449092,7 +452658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5631), 34, + ACTIONS(5572), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -449110,6 +452676,7 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -449124,20 +452691,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [134957] = 6, + [133962] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7171), 1, - sym_regex_modifier, - STATE(4309), 1, + ACTIONS(7163), 1, + anon_sym_COLON_COLON, + STATE(3899), 1, + aux_sym_constant_repeat1, + STATE(4298), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5679), 8, + ACTIONS(4584), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -449146,9 +452716,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5677), 34, - sym__line_break, + anon_sym_EQ, + ACTIONS(4586), 33, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -449158,16 +452730,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -449178,22 +452746,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [135017] = 7, + anon_sym_do, + [134025] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7173), 1, + ACTIONS(7094), 1, + anon_sym_LPAREN, + ACTIONS(7099), 1, + anon_sym_typeof, + ACTIONS(7101), 1, + sym__constant_segment, + ACTIONS(7103), 1, + anon_sym_COLON_COLON, + ACTIONS(7107), 1, + sym__start_of_tuple_type, + ACTIONS(7109), 1, + sym__start_of_named_tuple_type, + ACTIONS(7213), 1, + anon_sym_DASH_GT, + STATE(4299), 1, + sym_heredoc_body, + STATE(7692), 1, + sym_constant, + STATE(7699), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7105), 2, + sym_self, + sym_underscore_type, + STATE(7763), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4412), 21, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - STATE(4310), 1, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [134104] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7216), 1, + anon_sym_EQ, + STATE(4300), 1, sym_heredoc_body, - STATE(4315), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -449202,8 +452834,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 33, - sym__line_break, + ACTIONS(5761), 35, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -449214,13 +452846,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -449236,15 +452866,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [135079] = 5, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [134165] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4311), 1, + STATE(4301), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5648), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -449253,8 +452887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5646), 35, - sym__line_break, + anon_sym_EQ, + ACTIONS(4785), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -449265,15 +452899,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - sym__string_literal_start, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -449289,17 +452920,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [135137] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [134224] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7175), 1, - sym_regex_modifier, - STATE(4312), 1, + STATE(4302), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(6375), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -449308,7 +452941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 34, + ACTIONS(6373), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -449322,6 +452955,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -449343,17 +452977,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [135197] = 6, + anon_sym_else, + [134283] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7177), 1, - sym_regex_modifier, - STATE(4313), 1, + STATE(4303), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -449362,7 +452995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 34, + ACTIONS(5551), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -449376,6 +453009,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -449397,19 +453031,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [135257] = 7, + anon_sym_else, + [134342] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7179), 1, - anon_sym_COMMA, - STATE(4314), 1, + STATE(4304), 1, sym_heredoc_body, - STATE(4318), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6462), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -449418,7 +453049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 33, + ACTIONS(6460), 36, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -449432,11 +453063,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -449452,19 +453085,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [135319] = 7, + anon_sym_else, + [134401] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7179), 1, - anon_sym_COMMA, - STATE(4315), 1, + ACTIONS(7161), 1, + anon_sym_COLON_COLON, + STATE(3883), 1, + aux_sym_constant_repeat1, + STATE(4305), 1, sym_heredoc_body, - STATE(4319), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(4594), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -449473,7 +453107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 33, + anon_sym_EQ, + ACTIONS(4596), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -449485,15 +453120,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -449504,27 +453137,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [135381] = 5, + anon_sym_then, + [134464] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4316), 1, + ACTIONS(7218), 1, + anon_sym_LBRACK, + ACTIONS(7220), 1, + anon_sym_STAR, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7224), 1, + anon_sym_DOT, + ACTIONS(7226), 1, + anon_sym_QMARK, + STATE(4306), 1, sym_heredoc_body, + STATE(4547), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5834), 8, + ACTIONS(4638), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5832), 35, + anon_sym_EQ, + ACTIONS(4640), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -449536,13 +453184,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -449553,22 +453197,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [135439] = 5, + anon_sym_do, + [134534] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4317), 1, + STATE(4307), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5713), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -449577,7 +453218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 35, + ACTIONS(6333), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -449613,19 +453254,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [135497] = 7, + [134592] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7181), 1, - anon_sym_COMMA, - STATE(4318), 1, + STATE(4308), 1, sym_heredoc_body, - STATE(4319), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -449634,8 +453271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 33, - sym__line_break, + ACTIONS(6337), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -449646,13 +453282,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -449668,18 +453303,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [135559] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [134650] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7183), 1, - anon_sym_COMMA, + STATE(4309), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4319), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5713), 8, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -449688,8 +453324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 33, - sym__line_break, + ACTIONS(6341), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -449700,13 +453335,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -449722,15 +453356,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [135619] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [134708] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4320), 1, + STATE(4310), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5581), 8, + ACTIONS(6438), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -449739,8 +453377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5579), 35, - sym__line_break, + ACTIONS(6436), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -449751,14 +453388,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -449771,102 +453406,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [135677] = 25, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [134766] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7173), 1, - anon_sym_COMMA, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, - anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, + ACTIONS(7131), 1, anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4315), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4321), 1, + STATE(4311), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7202), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, + ACTIONS(7133), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, + ACTIONS(7147), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5570), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(5869), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5867), 24, + sym__start_of_brace_block, + sym_binary_ampersand, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_end, - [135775] = 5, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [134836] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4322), 1, - sym_heredoc_body, + ACTIONS(7228), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5654), 8, + STATE(4312), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5652), 35, - sym__line_break, + anon_sym_EQ, + ACTIONS(4629), 32, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -449877,16 +453505,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -449897,19 +453521,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [135833] = 5, + anon_sym_do, + [134896] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4323), 1, + ACTIONS(7119), 1, + anon_sym_PIPE, + ACTIONS(7121), 1, + anon_sym_CARET, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, + sym_binary_ampersand, + STATE(4313), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6156), 8, + ACTIONS(7123), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7145), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7147), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6134), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6132), 20, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [134974] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4314), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5965), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -449918,7 +453606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6154), 35, + ACTIONS(5963), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -449954,143 +453642,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [135891] = 25, + [135032] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7179), 1, - anon_sym_COMMA, - ACTIONS(7186), 1, + ACTIONS(6047), 1, anon_sym_DOT_DOT, - ACTIONS(7188), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, + ACTIONS(7119), 1, anon_sym_PIPE, - ACTIONS(7194), 1, + ACTIONS(7121), 1, anon_sym_CARET, - ACTIONS(7198), 1, + ACTIONS(7125), 1, anon_sym_EQ_EQ, - ACTIONS(7204), 1, + ACTIONS(7131), 1, anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, sym__start_of_index_operator, - ACTIONS(7220), 1, + ACTIONS(7149), 1, sym_binary_ampersand, - STATE(4318), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4324), 1, + STATE(4315), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, + ACTIONS(7123), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7202), 2, + ACTIONS(7129), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, + ACTIONS(7133), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(7117), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, + ACTIONS(7127), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, + ACTIONS(7147), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5585), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(6045), 14, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_end, - [135989] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [135118] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4325), 1, + ACTIONS(6215), 1, + anon_sym_DOT_DOT, + ACTIONS(7119), 1, + anon_sym_PIPE, + ACTIONS(7121), 1, + anon_sym_CARET, + ACTIONS(7125), 1, + anon_sym_EQ_EQ, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7139), 1, + anon_sym_AMP_AMP, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, + sym_binary_ampersand, + STATE(4316), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6268), 8, - anon_sym_DOT_DOT, + ACTIONS(7123), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7129), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7117), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6266), 35, - sym__start_of_index_operator, + ACTIONS(7127), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7147), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6213), 13, + sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [136047] = 6, + [135206] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6821), 1, - anon_sym_COLON, - STATE(4326), 1, + STATE(4317), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -450099,8 +453794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 34, - sym__line_break, + ACTIONS(5875), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450111,14 +453805,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -450134,28 +453826,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [136107] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [135264] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4327), 1, + ACTIONS(7218), 1, + anon_sym_LBRACK, + ACTIONS(7220), 1, + anon_sym_STAR, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7224), 1, + anon_sym_DOT, + ACTIONS(7226), 1, + anon_sym_QMARK, + STATE(4318), 1, sym_heredoc_body, + STATE(4547), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4561), 9, + ACTIONS(4623), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4563), 34, + ACTIONS(4625), 29, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -450166,11 +453872,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -450181,21 +453885,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_LPAREN2, - anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [136165] = 5, + [135334] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4328), 1, + STATE(4319), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(5885), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -450204,10 +453906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4599), 34, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5883), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450219,12 +453918,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -450238,17 +453938,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [136223] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [135392] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4329), 1, + STATE(4320), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4651), 9, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -450257,10 +453959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4653), 34, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5741), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450272,12 +453971,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -450291,28 +453991,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [136281] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [135450] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4330), 1, + ACTIONS(7218), 1, + anon_sym_LBRACK, + ACTIONS(7220), 1, + anon_sym_STAR, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7224), 1, + anon_sym_DOT, + ACTIONS(7226), 1, + anon_sym_QMARK, + STATE(4321), 1, sym_heredoc_body, + STATE(4547), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4615), 9, + ACTIONS(4605), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4617), 34, - sym__line_break, + ACTIONS(4607), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -450325,12 +454037,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -450341,20 +454050,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [136339] = 5, + [135520] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4331), 1, + STATE(4322), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4663), 9, + ACTIONS(6005), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -450363,10 +454071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4665), 34, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(6003), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450378,12 +454083,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -450397,17 +454103,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [136397] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [135578] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4332), 1, + STATE(4323), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4675), 9, + ACTIONS(5801), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -450416,10 +454124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4677), 34, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5799), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450431,12 +454136,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -450450,17 +454156,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [136455] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [135636] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4333), 1, + STATE(4324), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4679), 9, + ACTIONS(5893), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -450469,10 +454177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4681), 34, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5891), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450484,12 +454189,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -450503,17 +454209,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [136513] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [135694] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4334), 1, + STATE(4325), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4631), 9, + ACTIONS(5917), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -450522,10 +454230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4633), 34, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5915), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450537,12 +454242,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -450556,17 +454262,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [136571] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [135752] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4335), 1, + STATE(4326), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4655), 9, + ACTIONS(5955), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -450575,10 +454283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4657), 34, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5953), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450590,12 +454295,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -450609,17 +454315,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [136629] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [135810] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4336), 1, + ACTIONS(7231), 1, + anon_sym_COMMA, + STATE(4327), 1, sym_heredoc_body, + STATE(4435), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4635), 9, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -450628,10 +454340,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4637), 34, + ACTIONS(5631), 33, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450642,13 +454352,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -450662,17 +454374,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [136687] = 5, + [135872] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4337), 1, + STATE(4328), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4643), 9, + ACTIONS(5897), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -450681,10 +454391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4645), 34, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5895), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450696,12 +454403,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -450715,17 +454423,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [136745] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [135930] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4338), 1, + STATE(4329), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4627), 9, + ACTIONS(5901), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -450734,10 +454444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4629), 34, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5899), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450749,12 +454456,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -450768,17 +454476,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [136803] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [135988] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4339), 1, + STATE(4330), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4659), 9, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -450787,10 +454497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4661), 34, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5903), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450802,12 +454509,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -450821,39 +454529,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [136861] = 11, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [136046] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, - anon_sym_STAR, - ACTIONS(7038), 1, - anon_sym_DOT, - ACTIONS(7040), 1, - anon_sym_QMARK, - ACTIONS(7222), 1, - anon_sym_PIPE, - STATE(4340), 1, + STATE(4331), 1, sym_heredoc_body, - STATE(4523), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4683), 7, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4685), 30, - sym__line_break, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(5747), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450865,9 +454562,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -450878,41 +454579,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [136931] = 11, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [136104] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, - anon_sym_STAR, - ACTIONS(7038), 1, - anon_sym_DOT, - ACTIONS(7040), 1, - anon_sym_QMARK, - ACTIONS(7222), 1, - anon_sym_PIPE, - STATE(4341), 1, + STATE(4332), 1, sym_heredoc_body, - STATE(4523), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4639), 7, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4641), 30, - sym__line_break, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(6195), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -450924,9 +454615,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -450937,19 +454632,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [137001] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [136162] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4342), 1, + ACTIONS(7233), 1, + sym_regex_modifier, + STATE(4333), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -450958,8 +454658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 34, + ACTIONS(5741), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -450994,83 +454693,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [137059] = 15, + [136222] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7076), 1, - anon_sym_typeof, - ACTIONS(7078), 1, - sym__constant_segment, - ACTIONS(7080), 1, - anon_sym_COLON_COLON, - ACTIONS(7084), 1, - sym__start_of_tuple_type, - ACTIONS(7086), 1, - sym__start_of_named_tuple_type, - ACTIONS(7224), 1, - anon_sym_LPAREN, - ACTIONS(7226), 1, - anon_sym_DASH_GT, - STATE(4343), 1, - sym_heredoc_body, - STATE(7662), 1, - sym_constant, - STATE(7744), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7082), 2, - sym_self, - sym_underscore_type, - STATE(7736), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4325), 20, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [137137] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7228), 1, - anon_sym_COLON_COLON, - STATE(4344), 1, + STATE(4334), 1, sym_heredoc_body, - STATE(4345), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 10, - anon_sym_RBRACK, + ACTIONS(5921), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -451079,8 +454710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4549), 31, + ACTIONS(5919), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -451092,11 +454722,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -451107,25 +454739,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [137199] = 7, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [136280] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7228), 1, - anon_sym_COLON_COLON, - STATE(4345), 1, + STATE(4335), 1, sym_heredoc_body, - STATE(4349), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 10, - anon_sym_RBRACK, + ACTIONS(6275), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -451134,8 +454763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 31, + ACTIONS(6273), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -451147,11 +454775,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -451162,25 +454792,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [137261] = 7, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [136338] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7228), 1, - anon_sym_COLON_COLON, - STATE(4346), 1, + STATE(4336), 1, sym_heredoc_body, - STATE(4350), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 10, - anon_sym_RBRACK, + ACTIONS(5927), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -451189,8 +454816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 31, + ACTIONS(5925), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -451202,11 +454828,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -451217,23 +454845,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [137323] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [136396] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7230), 1, - anon_sym_LPAREN2, - STATE(4347), 1, + STATE(4337), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 10, - anon_sym_RBRACK, + ACTIONS(5931), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -451242,9 +454869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4599), 32, - sym__start_of_brace_block, + ACTIONS(5929), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -451256,11 +454881,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -451272,41 +454899,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [137383] = 11, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [136454] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7232), 1, - anon_sym_LBRACK, - ACTIONS(7234), 1, - anon_sym_STAR, - ACTIONS(7236), 1, - anon_sym_PIPE, - ACTIONS(7238), 1, - anon_sym_DOT, - ACTIONS(7240), 1, - anon_sym_QMARK, - STATE(4348), 1, + STATE(4338), 1, sym_heredoc_body, - STATE(4356), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 8, - anon_sym_RBRACK, + ACTIONS(5935), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4595), 29, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(5933), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -451318,9 +454934,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -451331,23 +454951,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_RBRACK_QMARK, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [137453] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [136512] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7242), 1, - anon_sym_COLON_COLON, + STATE(4339), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4349), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4561), 10, - anon_sym_RBRACK, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -451357,7 +454976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4563), 31, + ACTIONS(4785), 34, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -451369,11 +454988,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -451384,25 +455004,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [137513] = 7, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [136570] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7228), 1, - anon_sym_COLON_COLON, - STATE(4349), 1, - aux_sym_constant_repeat1, - STATE(4350), 1, + STATE(4340), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4557), 10, - anon_sym_RBRACK, + ACTIONS(6164), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -451411,8 +455028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4559), 31, + ACTIONS(6162), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -451424,11 +455040,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -451439,42 +455057,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [137575] = 11, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [136628] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7232), 1, - anon_sym_LBRACK, - ACTIONS(7234), 1, - anon_sym_STAR, - ACTIONS(7236), 1, - anon_sym_PIPE, - ACTIONS(7238), 1, - anon_sym_DOT, - ACTIONS(7240), 1, - anon_sym_QMARK, - STATE(4351), 1, + STATE(4341), 1, sym_heredoc_body, - STATE(4356), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 8, - anon_sym_RBRACK, + ACTIONS(5837), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4605), 29, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(5835), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -451486,9 +455093,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -451499,41 +455110,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_RBRACK_QMARK, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [137645] = 11, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [136686] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7232), 1, - anon_sym_LBRACK, - ACTIONS(7234), 1, - anon_sym_STAR, - ACTIONS(7236), 1, - anon_sym_PIPE, - ACTIONS(7238), 1, - anon_sym_DOT, - ACTIONS(7240), 1, - anon_sym_QMARK, - STATE(4352), 1, + STATE(4342), 1, sym_heredoc_body, - STATE(4356), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4611), 8, - anon_sym_RBRACK, + ACTIONS(6059), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4613), 29, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(6057), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -451545,9 +455146,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -451558,22 +455163,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_RBRACK_QMARK, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [137715] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [136744] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4353), 1, + STATE(4343), 1, sym_heredoc_body, - STATE(4356), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 10, - anon_sym_RBRACK, + ACTIONS(6470), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -451582,9 +455187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 32, - sym__start_of_brace_block, + ACTIONS(6468), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -451596,11 +455199,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -451612,160 +455217,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [137775] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7076), 1, - anon_sym_typeof, - ACTIONS(7078), 1, - sym__constant_segment, - ACTIONS(7080), 1, - anon_sym_COLON_COLON, - ACTIONS(7084), 1, - sym__start_of_tuple_type, - ACTIONS(7086), 1, - sym__start_of_named_tuple_type, - ACTIONS(7224), 1, - anon_sym_LPAREN, - ACTIONS(7226), 1, - anon_sym_DASH_GT, - STATE(4354), 1, - sym_heredoc_body, - STATE(7662), 1, - sym_constant, - STATE(7740), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7082), 2, - sym_self, - sym_underscore_type, - STATE(7736), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4353), 20, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [137853] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7076), 1, - anon_sym_typeof, - ACTIONS(7078), 1, - sym__constant_segment, - ACTIONS(7080), 1, - anon_sym_COLON_COLON, - ACTIONS(7084), 1, - sym__start_of_tuple_type, - ACTIONS(7086), 1, - sym__start_of_named_tuple_type, - ACTIONS(7224), 1, - anon_sym_LPAREN, - ACTIONS(7226), 1, - anon_sym_DASH_GT, - STATE(4355), 1, - sym_heredoc_body, - STATE(7662), 1, - sym_constant, - STATE(7747), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7082), 2, - sym_self, - sym_underscore_type, - STATE(7736), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4375), 20, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_elsif, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [137931] = 7, + [136802] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7236), 1, - anon_sym_PIPE, - STATE(4356), 1, + STATE(4344), 1, sym_heredoc_body, - STATE(4357), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 9, - anon_sym_RBRACK, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 32, - sym__start_of_brace_block, + ACTIONS(6381), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -451777,11 +455252,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -451793,33 +455270,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [137993] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [136860] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7245), 1, - anon_sym_PIPE, + STATE(4345), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4357), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 9, - anon_sym_RBRACK, + ACTIONS(6450), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 32, - sym__start_of_brace_block, + ACTIONS(6448), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -451831,11 +455305,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -451847,41 +455323,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [138053] = 11, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [136918] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7232), 1, - anon_sym_LBRACK, - ACTIONS(7234), 1, - anon_sym_STAR, - ACTIONS(7236), 1, - anon_sym_PIPE, - ACTIONS(7238), 1, - anon_sym_DOT, - ACTIONS(7240), 1, - anon_sym_QMARK, - STATE(4356), 1, - aux_sym_union_type_repeat1, - STATE(4358), 1, + STATE(4346), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 8, - anon_sym_RBRACK, + ACTIONS(5805), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4609), 29, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(5803), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -451893,9 +455358,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -451906,41 +455375,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_RBRACK_QMARK, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [138123] = 11, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [136976] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7232), 1, - anon_sym_LBRACK, - ACTIONS(7234), 1, - anon_sym_STAR, - ACTIONS(7236), 1, - anon_sym_PIPE, - ACTIONS(7238), 1, - anon_sym_DOT, - ACTIONS(7240), 1, - anon_sym_QMARK, - STATE(4356), 1, - aux_sym_union_type_repeat1, - STATE(4359), 1, + STATE(4347), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 8, - anon_sym_RBRACK, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 29, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(5937), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -451952,9 +455411,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -451965,23 +455428,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_RBRACK_QMARK, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [138193] = 7, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [137034] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - STATE(4360), 1, + STATE(4348), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5895), 7, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -451989,8 +455451,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5893), 34, - sym__line_break, + anon_sym_DOT, + ACTIONS(6349), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -452000,14 +455463,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -452023,89 +455484,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_else, - [138255] = 21, + anon_sym_when, + anon_sym_in, + [137092] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5923), 1, - anon_sym_DOT_DOT, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7252), 1, - anon_sym_PIPE, - ACTIONS(7254), 1, - anon_sym_CARET, - ACTIONS(7258), 1, - anon_sym_EQ_EQ, - ACTIONS(7264), 1, - anon_sym_AMP_STAR, - ACTIONS(7268), 1, - anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7276), 1, - sym_binary_ampersand, - STATE(4361), 1, + STATE(4349), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7256), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7266), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7250), 3, + ACTIONS(6227), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7260), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7272), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6225), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7274), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5921), 12, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_else, - [138345] = 7, + anon_sym_when, + anon_sym_in, + [137150] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - STATE(4362), 1, + STATE(4350), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6000), 7, + ACTIONS(5947), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -452113,8 +455557,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5998), 34, - sym__line_break, + anon_sym_DOT, + ACTIONS(5945), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -452124,14 +455569,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -452147,20 +455590,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_else, - [138407] = 7, + anon_sym_when, + anon_sym_in, + [137208] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - STATE(4363), 1, + STATE(4351), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6004), 7, + ACTIONS(6051), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -452168,8 +455610,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6002), 34, - sym__line_break, + anon_sym_DOT, + ACTIONS(6049), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -452179,14 +455622,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -452202,22 +455643,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_else, - [138469] = 8, + anon_sym_when, + anon_sym_in, + [137266] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1549), 1, - anon_sym_COLON, - ACTIONS(6819), 1, - anon_sym_COLON_COLON, - STATE(3496), 1, - aux_sym_constant_repeat1, - STATE(4364), 1, + STATE(4352), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 8, + ACTIONS(5989), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -452226,9 +455664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(4549), 32, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5987), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -452240,9 +455676,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -452253,29 +455693,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [138533] = 9, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [137324] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(757), 1, - sym__string_literal_start, - ACTIONS(7278), 1, - anon_sym_COLON, - STATE(4365), 1, + STATE(4353), 1, sym_heredoc_body, - STATE(4768), 1, - aux_sym_chained_string_repeat1, - STATE(5059), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6102), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -452284,9 +455717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(6092), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -452298,9 +455729,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -452314,441 +455749,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [138599] = 23, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [137382] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7092), 1, - anon_sym_DOT_DOT, - ACTIONS(7094), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, - anon_sym_PIPE, - ACTIONS(7100), 1, - anon_sym_CARET, - ACTIONS(7104), 1, - anon_sym_EQ_EQ, - ACTIONS(7110), 1, - anon_sym_AMP_STAR, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7116), 1, - anon_sym_QMARK, - ACTIONS(7118), 1, - anon_sym_AMP_AMP, - ACTIONS(7120), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7128), 1, - sym_binary_ampersand, - STATE(4366), 1, + STATE(4354), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7108), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, + ACTIONS(6375), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7106), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6373), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6144), 10, - sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_end, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [138693] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7092), 1, - anon_sym_DOT_DOT, - ACTIONS(7094), 1, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, - anon_sym_PIPE, - ACTIONS(7100), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7104), 1, - anon_sym_EQ_EQ, - ACTIONS(7110), 1, - anon_sym_AMP_STAR, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7116), 1, - anon_sym_QMARK, - ACTIONS(7118), 1, - anon_sym_AMP_AMP, - ACTIONS(7120), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7128), 1, - sym_binary_ampersand, - STATE(4367), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7102), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7108), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7106), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7124), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7126), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6152), 10, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_end, - anon_sym_do, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [138787] = 23, + [137440] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7092), 1, - anon_sym_DOT_DOT, - ACTIONS(7094), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, - anon_sym_PIPE, - ACTIONS(7100), 1, - anon_sym_CARET, - ACTIONS(7104), 1, - anon_sym_EQ_EQ, - ACTIONS(7110), 1, - anon_sym_AMP_STAR, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7116), 1, - anon_sym_QMARK, - ACTIONS(7118), 1, - anon_sym_AMP_AMP, - ACTIONS(7120), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7128), 1, - sym_binary_ampersand, - STATE(4368), 1, + STATE(4355), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7108), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, + ACTIONS(6183), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7106), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6181), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6358), 10, - sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_end, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [138881] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7092), 1, - anon_sym_DOT_DOT, - ACTIONS(7094), 1, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, - anon_sym_PIPE, - ACTIONS(7100), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7104), 1, - anon_sym_EQ_EQ, - ACTIONS(7110), 1, - anon_sym_AMP_STAR, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7116), 1, - anon_sym_QMARK, - ACTIONS(7118), 1, - anon_sym_AMP_AMP, - ACTIONS(7120), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7128), 1, - sym_binary_ampersand, - STATE(4369), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7102), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7108), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7106), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7124), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7126), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6364), 10, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_end, - anon_sym_do, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [138975] = 23, + [137498] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7092), 1, - anon_sym_DOT_DOT, - ACTIONS(7094), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, - anon_sym_PIPE, - ACTIONS(7100), 1, - anon_sym_CARET, - ACTIONS(7104), 1, - anon_sym_EQ_EQ, - ACTIONS(7110), 1, - anon_sym_AMP_STAR, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7116), 1, - anon_sym_QMARK, - ACTIONS(7118), 1, - anon_sym_AMP_AMP, - ACTIONS(7120), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7128), 1, - sym_binary_ampersand, - STATE(4370), 1, + STATE(4356), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7108), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, + ACTIONS(6307), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7106), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6305), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5708), 10, - sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_do, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [139069] = 21, + [137556] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5923), 1, + ACTIONS(5977), 1, anon_sym_DOT_DOT, - ACTIONS(7098), 1, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(7237), 1, anon_sym_PIPE, - ACTIONS(7100), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7104), 1, + ACTIONS(7243), 1, anon_sym_EQ_EQ, - ACTIONS(7110), 1, + ACTIONS(7249), 1, anon_sym_AMP_STAR, - ACTIONS(7114), 1, + ACTIONS(7253), 1, anon_sym_DOT, - ACTIONS(7118), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7120), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7128), 1, + ACTIONS(7263), 1, sym_binary_ampersand, - STATE(4371), 1, + STATE(4357), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, + ACTIONS(7241), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7108), 2, + ACTIONS(7247), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, + ACTIONS(7251), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, + ACTIONS(7235), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7106), 4, + ACTIONS(7245), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + ACTIONS(7259), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, + ACTIONS(7261), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5921), 12, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(5975), 12, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_QMARK, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [139159] = 5, + [137646] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4372), 1, + STATE(4358), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6075), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -452757,7 +455998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 35, + ACTIONS(6073), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -452793,15 +456034,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [139217] = 5, + [137704] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4373), 1, + ACTIONS(7265), 1, + sym_regex_modifier, + STATE(4359), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5850), 8, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -452810,7 +456053,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5848), 35, + ACTIONS(5747), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -452821,12 +456065,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -452842,19 +456088,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [139275] = 5, + [137764] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4374), 1, + STATE(4360), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5854), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -452863,7 +456105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5852), 35, + ACTIONS(6353), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -452899,15 +456141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [139333] = 5, + [137822] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4375), 1, + STATE(4361), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(6299), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -452916,7 +456158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5872), 35, + ACTIONS(6297), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -452952,86 +456194,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [139391] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7252), 1, - anon_sym_PIPE, - ACTIONS(7254), 1, - anon_sym_CARET, - ACTIONS(7258), 1, - anon_sym_EQ_EQ, - ACTIONS(7264), 1, - anon_sym_AMP_STAR, - ACTIONS(7268), 1, - anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7276), 1, - sym_binary_ampersand, - ACTIONS(7280), 1, - anon_sym_DOT_DOT, - ACTIONS(7282), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7284), 1, - anon_sym_QMARK, - STATE(4376), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7256), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7266), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7250), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7260), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7272), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7274), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6790), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [139485] = 5, + [137880] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4377), 1, + STATE(4362), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5887), 8, + ACTIONS(6291), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -453040,7 +456211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5885), 35, + ACTIONS(6289), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453076,15 +456247,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [139543] = 5, + [137938] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4378), 1, + STATE(4363), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5891), 8, + ACTIONS(6271), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -453093,7 +456264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5889), 35, + ACTIONS(6269), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453129,15 +456300,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [139601] = 5, + [137996] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4379), 1, + STATE(4364), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5935), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -453146,7 +456317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5933), 35, + ACTIONS(135), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453182,15 +456353,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [139659] = 5, + [138054] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4380), 1, + STATE(4365), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5945), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -453199,7 +456370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5943), 35, + ACTIONS(6098), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453235,15 +456406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [139717] = 5, + [138112] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4381), 1, + STATE(4366), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -453252,7 +456423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5955), 35, + ACTIONS(6098), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453288,15 +456459,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [139775] = 5, + [138170] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4382), 1, + STATE(4367), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5976), 8, + ACTIONS(6106), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -453305,7 +456476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5974), 35, + ACTIONS(6104), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453341,15 +456512,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [139833] = 5, + [138228] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4383), 1, + STATE(4368), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5980), 8, + ACTIONS(5849), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -453358,7 +456529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5978), 35, + ACTIONS(5847), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453394,15 +456565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [139891] = 5, + [138286] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4384), 1, + STATE(4369), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5984), 8, + ACTIONS(6114), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -453411,7 +456582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5982), 35, + ACTIONS(6112), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453447,15 +456618,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [139949] = 5, + [138344] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4385), 1, + STATE(4370), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5996), 8, + ACTIONS(6118), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -453464,7 +456635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5994), 35, + ACTIONS(6116), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453500,228 +456671,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [140007] = 23, + [138402] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7252), 1, + STATE(4371), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6122), 8, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7254), 1, - anon_sym_CARET, - ACTIONS(7258), 1, anon_sym_EQ_EQ, - ACTIONS(7264), 1, - anon_sym_AMP_STAR, - ACTIONS(7268), 1, - anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7276), 1, - sym_binary_ampersand, - ACTIONS(7280), 1, - anon_sym_DOT_DOT, - ACTIONS(7282), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7284), 1, - anon_sym_QMARK, - STATE(4386), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7256), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7266), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7250), 3, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7260), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7272), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6120), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7274), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6794), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_else, - [140101] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7252), 1, - anon_sym_PIPE, - ACTIONS(7254), 1, anon_sym_CARET, - ACTIONS(7258), 1, - anon_sym_EQ_EQ, - ACTIONS(7264), 1, - anon_sym_AMP_STAR, - ACTIONS(7268), 1, - anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7276), 1, - sym_binary_ampersand, - ACTIONS(7280), 1, - anon_sym_DOT_DOT, - ACTIONS(7282), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7284), 1, - anon_sym_QMARK, - STATE(4387), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7256), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7262), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7266), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7250), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7260), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7272), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7274), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6784), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [140195] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7252), 1, - anon_sym_PIPE, - ACTIONS(7254), 1, - anon_sym_CARET, - ACTIONS(7258), 1, - anon_sym_EQ_EQ, - ACTIONS(7264), 1, - anon_sym_AMP_STAR, - ACTIONS(7268), 1, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, - ACTIONS(7270), 1, anon_sym_PIPE_PIPE, - ACTIONS(7276), 1, - sym_binary_ampersand, - ACTIONS(7280), 1, - anon_sym_DOT_DOT, - ACTIONS(7282), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7284), 1, - anon_sym_QMARK, - STATE(4388), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7256), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7266), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7250), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7260), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7272), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7274), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6786), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, + anon_sym_COLON2, anon_sym_else, - [140289] = 5, + anon_sym_when, + anon_sym_in, + [138460] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4389), 1, + STATE(4372), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6020), 8, + ACTIONS(6126), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -453730,7 +456741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6018), 35, + ACTIONS(6124), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453766,15 +456777,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [140347] = 5, + [138518] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4390), 1, + STATE(4373), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6024), 8, + ACTIONS(6130), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -453783,7 +456794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6022), 35, + ACTIONS(6128), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453819,15 +456830,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [140405] = 5, + [138576] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4391), 1, + STATE(4374), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(6367), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -453836,7 +456847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 35, + ACTIONS(6365), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453872,15 +456883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [140463] = 5, + [138634] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4392), 1, + STATE(4375), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -453889,7 +456900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 35, + ACTIONS(6369), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453925,15 +456936,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [140521] = 5, + [138692] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4393), 1, + STATE(4376), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(5865), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -453942,7 +456953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 35, + ACTIONS(5863), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -453978,40 +456989,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [140579] = 5, + [138750] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4394), 1, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(7237), 1, + anon_sym_PIPE, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7243), 1, + anon_sym_EQ_EQ, + ACTIONS(7249), 1, + anon_sym_AMP_STAR, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7263), 1, + sym_binary_ampersand, + ACTIONS(7267), 1, + anon_sym_DOT_DOT, + ACTIONS(7269), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7271), 1, + anon_sym_QMARK, + STATE(4377), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6134), 8, - anon_sym_DOT_DOT, + ACTIONS(7241), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7247), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7251), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7235), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6132), 35, - sym__start_of_index_operator, + ACTIONS(7245), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7259), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7261), 4, sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6797), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + [138844] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + STATE(4378), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7133), 2, sym__binary_double_star, - sym_binary_ampersand, + anon_sym_AMP_STAR_STAR, + ACTIONS(7147), 4, + sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6259), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6257), 28, + sym__start_of_brace_block, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym_binary_ampersand, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -454023,23 +457111,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [140637] = 5, + [138912] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4395), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + STATE(4379), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6295), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -454047,15 +457141,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5524), 35, - sym__start_of_index_operator, + ACTIONS(6293), 32, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -454064,7 +457156,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -454076,23 +457167,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [140695] = 5, + [138976] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4396), 1, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(7253), 1, + anon_sym_DOT, + STATE(4380), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(6001), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -454100,9 +457194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5524), 35, - sym__start_of_index_operator, + ACTIONS(5999), 34, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -454112,12 +457205,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -454133,19 +457228,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_else, - anon_sym_when, - anon_sym_in, - [140753] = 5, + [139038] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4397), 1, + STATE(4381), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(5821), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -454154,7 +457246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 35, + ACTIONS(5819), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -454190,68 +457282,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [140811] = 5, + [139096] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4398), 1, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(7237), 1, + anon_sym_PIPE, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7243), 1, + anon_sym_EQ_EQ, + ACTIONS(7249), 1, + anon_sym_AMP_STAR, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7263), 1, + sym_binary_ampersand, + ACTIONS(7267), 1, + anon_sym_DOT_DOT, + ACTIONS(7269), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7271), 1, + anon_sym_QMARK, + STATE(4382), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, - anon_sym_DOT_DOT, + ACTIONS(7241), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7247), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7251), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7235), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, + ACTIONS(7245), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7259), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7261), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6092), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + [139190] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(7237), 1, + anon_sym_PIPE, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7243), 1, + anon_sym_EQ_EQ, + ACTIONS(7249), 1, anon_sym_AMP_STAR, + ACTIONS(7253), 1, anon_sym_DOT, - ACTIONS(6202), 35, - sym__start_of_index_operator, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7263), 1, + sym_binary_ampersand, + ACTIONS(7267), 1, + anon_sym_DOT_DOT, + ACTIONS(7269), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7271), 1, + anon_sym_QMARK, + STATE(4383), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7241), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7247), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7251), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7235), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7245), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7259), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7261), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, + ACTIONS(6799), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, + anon_sym_else, + [139284] = 21, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6063), 1, + anon_sym_DOT_DOT, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(7237), 1, + anon_sym_PIPE, + ACTIONS(7239), 1, anon_sym_CARET, + ACTIONS(7243), 1, + anon_sym_EQ_EQ, + ACTIONS(7249), 1, + anon_sym_AMP_STAR, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7263), 1, + sym_binary_ampersand, + STATE(4384), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7241), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7247), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7251), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7235), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7245), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7259), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7261), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6061), 12, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_else, - anon_sym_when, - anon_sym_in, - [140869] = 5, + [139374] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4399), 1, + STATE(4385), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6212), 8, + ACTIONS(5783), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -454260,7 +457510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6210), 35, + ACTIONS(5781), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -454296,68 +457546,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [140927] = 5, + [139432] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4400), 1, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(7237), 1, + anon_sym_PIPE, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7243), 1, + anon_sym_EQ_EQ, + ACTIONS(7249), 1, + anon_sym_AMP_STAR, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7263), 1, + sym_binary_ampersand, + ACTIONS(7267), 1, + anon_sym_DOT_DOT, + ACTIONS(7269), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7271), 1, + anon_sym_QMARK, + STATE(4386), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6216), 8, - anon_sym_DOT_DOT, + ACTIONS(7241), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7247), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7251), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7235), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6214), 35, - sym__start_of_index_operator, + ACTIONS(7245), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7259), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7261), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, + ACTIONS(6801), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_else, - anon_sym_when, - anon_sym_in, - [140985] = 5, + [139526] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4401), 1, + STATE(4387), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(5845), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -454366,7 +457634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 35, + ACTIONS(5843), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -454402,15 +457670,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [141043] = 5, + [139584] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4402), 1, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(7237), 1, + anon_sym_PIPE, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7243), 1, + anon_sym_EQ_EQ, + ACTIONS(7249), 1, + anon_sym_AMP_STAR, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7263), 1, + sym_binary_ampersand, + ACTIONS(7267), 1, + anon_sym_DOT_DOT, + ACTIONS(7269), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7271), 1, + anon_sym_QMARK, + STATE(4388), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7241), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7247), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7251), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7235), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7245), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7259), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7261), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6803), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + [139678] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4389), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6238), 8, + ACTIONS(6379), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -454419,7 +457758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6236), 35, + ACTIONS(6377), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -454455,15 +457794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [141101] = 5, + [139736] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4403), 1, + STATE(4390), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6254), 8, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -454472,7 +457811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6252), 35, + ACTIONS(6385), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -454508,15 +457847,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [141159] = 5, + [139794] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4404), 1, + STATE(4391), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6260), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -454525,7 +457864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6258), 35, + ACTIONS(6389), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -454561,15 +457900,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [141217] = 5, + [139852] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4405), 1, + STATE(4392), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -454578,7 +457917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 35, + ACTIONS(6393), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -454614,15 +457953,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [141275] = 5, + [139910] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4406), 1, + STATE(4393), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6272), 8, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -454631,7 +457970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6270), 35, + ACTIONS(6397), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -454667,15 +458006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [141333] = 5, + [139968] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4407), 1, + STATE(4394), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6276), 8, + ACTIONS(6410), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -454684,7 +458023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6274), 35, + ACTIONS(6408), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -454720,15 +458059,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [141391] = 5, + [140026] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4408), 1, + STATE(4395), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6280), 8, + ACTIONS(6414), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -454737,7 +458076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6278), 35, + ACTIONS(6412), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -454773,121 +458112,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [141449] = 5, + [140084] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4409), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6284), 8, + ACTIONS(5977), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(7119), 1, anon_sym_PIPE, + ACTIONS(7121), 1, + anon_sym_CARET, + ACTIONS(7125), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(7131), 1, anon_sym_AMP_STAR, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(6282), 35, + ACTIONS(7139), 1, + anon_sym_AMP_AMP, + ACTIONS(7141), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7143), 1, sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, + ACTIONS(7149), 1, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, + STATE(4396), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7123), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7129), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(7133), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [141507] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4410), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6288), 8, - anon_sym_DOT_DOT, + ACTIONS(7117), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6286), 35, - sym__start_of_index_operator, + ACTIONS(7127), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7147), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5975), 12, + sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [141565] = 5, + [140174] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4411), 1, + STATE(4397), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6292), 8, + ACTIONS(6303), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -454896,7 +458198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6290), 35, + ACTIONS(6301), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -454932,68 +458234,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [141623] = 5, + [140232] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4412), 1, + ACTIONS(7099), 1, + anon_sym_typeof, + ACTIONS(7101), 1, + sym__constant_segment, + ACTIONS(7103), 1, + anon_sym_COLON_COLON, + ACTIONS(7107), 1, + sym__start_of_tuple_type, + ACTIONS(7109), 1, + sym__start_of_named_tuple_type, + ACTIONS(7273), 1, + anon_sym_LPAREN, + ACTIONS(7275), 1, + anon_sym_DASH_GT, + STATE(4398), 1, sym_heredoc_body, + STATE(7692), 1, + sym_constant, + STATE(7791), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6308), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6306), 35, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, + ACTIONS(7105), 2, + sym_self, + sym_underscore_type, + STATE(7763), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4412), 20, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [141681] = 5, + [140310] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4413), 1, + STATE(4399), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6008), 8, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -455002,8 +458314,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6006), 35, + anon_sym_EQ, + ACTIONS(4600), 34, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -455014,13 +458329,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -455031,181 +458344,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [141739] = 5, + anon_sym_do, + [140368] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4414), 1, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(7237), 1, + anon_sym_PIPE, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7243), 1, + anon_sym_EQ_EQ, + ACTIONS(7249), 1, + anon_sym_AMP_STAR, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7263), 1, + sym_binary_ampersand, + ACTIONS(7267), 1, + anon_sym_DOT_DOT, + ACTIONS(7269), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7271), 1, + anon_sym_QMARK, + STATE(4400), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6012), 8, - anon_sym_DOT_DOT, + ACTIONS(7241), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7247), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7251), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7235), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6010), 35, - sym__start_of_index_operator, + ACTIONS(7245), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7259), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7261), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, + ACTIONS(6840), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_else, - anon_sym_when, - anon_sym_in, - [141797] = 5, + [140462] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4415), 1, + ACTIONS(5981), 1, + anon_sym_DOT_DOT, + ACTIONS(7119), 1, + anon_sym_PIPE, + ACTIONS(7121), 1, + anon_sym_CARET, + ACTIONS(7125), 1, + anon_sym_EQ_EQ, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7139), 1, + anon_sym_AMP_AMP, + ACTIONS(7141), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, + sym_binary_ampersand, + STATE(4401), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6316), 8, - anon_sym_DOT_DOT, + ACTIONS(7123), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7129), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7117), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6314), 35, - sym__start_of_index_operator, + ACTIONS(7127), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7147), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5979), 12, + sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [141855] = 5, + [140552] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4416), 1, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(7237), 1, + anon_sym_PIPE, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7243), 1, + anon_sym_EQ_EQ, + ACTIONS(7249), 1, + anon_sym_AMP_STAR, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7263), 1, + sym_binary_ampersand, + ACTIONS(7267), 1, + anon_sym_DOT_DOT, + ACTIONS(7269), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7271), 1, + anon_sym_QMARK, + STATE(4402), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, - anon_sym_DOT_DOT, + ACTIONS(7241), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7247), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7251), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7235), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6318), 35, - sym__start_of_index_operator, + ACTIONS(7245), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7259), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7261), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, + ACTIONS(6193), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_else, - anon_sym_when, - anon_sym_in, - [141913] = 5, + [140646] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4417), 1, + STATE(4403), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6328), 8, + ACTIONS(5645), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -455214,7 +458578,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6326), 35, + ACTIONS(5643), 35, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -455225,12 +458590,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -455243,22 +458610,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [141971] = 5, + [140704] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4418), 1, + STATE(4404), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6332), 8, + ACTIONS(5685), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -455267,7 +458631,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6330), 35, + ACTIONS(5683), 35, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -455278,12 +458643,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -455296,70 +458663,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [142029] = 21, + [140762] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5941), 1, - anon_sym_DOT_DOT, - ACTIONS(6956), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7252), 1, + ACTIONS(7237), 1, anon_sym_PIPE, - ACTIONS(7254), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7258), 1, + ACTIONS(7243), 1, anon_sym_EQ_EQ, - ACTIONS(7264), 1, + ACTIONS(7249), 1, anon_sym_AMP_STAR, - ACTIONS(7268), 1, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7270), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7276), 1, + ACTIONS(7263), 1, sym_binary_ampersand, - STATE(4419), 1, + ACTIONS(7267), 1, + anon_sym_DOT_DOT, + ACTIONS(7269), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7271), 1, + anon_sym_QMARK, + STATE(4405), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7256), 2, + ACTIONS(7241), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7262), 2, + ACTIONS(7247), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7266), 2, + ACTIONS(7251), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7250), 3, + ACTIONS(7235), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7260), 4, + ACTIONS(7245), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7272), 4, + ACTIONS(7259), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7274), 4, + ACTIONS(7261), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5939), 12, + ACTIONS(6203), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -455368,19 +458736,17 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, anon_sym_else, - [142119] = 5, + [140856] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4420), 1, + STATE(4406), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6336), 8, + ACTIONS(6418), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -455389,7 +458755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6334), 35, + ACTIONS(6416), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -455425,15 +458791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [142177] = 5, + [140914] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4421), 1, + STATE(4407), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6340), 8, + ACTIONS(6422), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -455442,7 +458808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6338), 35, + ACTIONS(6420), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -455478,40 +458844,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [142235] = 5, + [140972] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4422), 1, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(7249), 1, + anon_sym_AMP_STAR, + ACTIONS(7253), 1, + anon_sym_DOT, + STATE(4408), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6344), 8, + ACTIONS(7251), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7261), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6259), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6342), 35, - sym__start_of_index_operator, + ACTIONS(6257), 28, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -455523,289 +458898,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_else, - anon_sym_when, - anon_sym_in, - [142293] = 23, + [141040] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6956), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(7248), 1, + ACTIONS(7253), 1, anon_sym_DOT, - ACTIONS(7252), 1, - anon_sym_PIPE, - ACTIONS(7254), 1, - anon_sym_CARET, - ACTIONS(7258), 1, - anon_sym_EQ_EQ, - ACTIONS(7264), 1, - anon_sym_AMP_STAR, - ACTIONS(7268), 1, - anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7276), 1, - sym_binary_ampersand, - ACTIONS(7280), 1, - anon_sym_DOT_DOT, - ACTIONS(7282), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7284), 1, - anon_sym_QMARK, - STATE(4423), 1, + STATE(4409), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7256), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7266), 2, + ACTIONS(7251), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7250), 3, + ACTIONS(6295), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7260), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7272), 4, + anon_sym_AMP_STAR, + ACTIONS(6293), 32, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7274), 4, sym__binary_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6758), 10, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_else, - [142387] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7252), 1, - anon_sym_PIPE, - ACTIONS(7254), 1, anon_sym_CARET, - ACTIONS(7258), 1, - anon_sym_EQ_EQ, - ACTIONS(7264), 1, - anon_sym_AMP_STAR, - ACTIONS(7268), 1, - anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7276), 1, - sym_binary_ampersand, - ACTIONS(7280), 1, - anon_sym_DOT_DOT, - ACTIONS(7282), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7284), 1, - anon_sym_QMARK, - STATE(4424), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7256), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7262), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7266), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7250), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7260), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7272), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7274), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6760), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_else, - [142481] = 23, + [141104] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6956), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(7248), 1, + ACTIONS(7253), 1, anon_sym_DOT, - ACTIONS(7252), 1, - anon_sym_PIPE, - ACTIONS(7254), 1, - anon_sym_CARET, - ACTIONS(7258), 1, - anon_sym_EQ_EQ, - ACTIONS(7264), 1, - anon_sym_AMP_STAR, - ACTIONS(7268), 1, - anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7276), 1, - sym_binary_ampersand, - ACTIONS(7280), 1, - anon_sym_DOT_DOT, - ACTIONS(7282), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7284), 1, - anon_sym_QMARK, - STATE(4425), 1, + STATE(4410), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7256), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7266), 2, + ACTIONS(7251), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7250), 3, + ACTIONS(6315), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7260), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7272), 4, + anon_sym_AMP_STAR, + ACTIONS(6313), 32, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7274), 4, sym__binary_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6629), 10, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_else, - [142575] = 23, + [141168] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6956), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7252), 1, - anon_sym_PIPE, - ACTIONS(7254), 1, - anon_sym_CARET, - ACTIONS(7258), 1, - anon_sym_EQ_EQ, - ACTIONS(7264), 1, + ACTIONS(7249), 1, anon_sym_AMP_STAR, - ACTIONS(7268), 1, - anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7276), 1, - sym_binary_ampersand, - ACTIONS(7280), 1, - anon_sym_DOT_DOT, - ACTIONS(7282), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7284), 1, - anon_sym_QMARK, - STATE(4426), 1, + ACTIONS(7253), 1, + anon_sym_DOT, + STATE(4411), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7256), 2, + ACTIONS(7241), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7266), 2, + ACTIONS(7251), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7250), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7260), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7272), 4, + ACTIONS(7259), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7274), 4, + ACTIONS(7261), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6667), 10, + ACTIONS(6327), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6325), 22, sym__line_break, + sym_binary_ampersand, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, @@ -455813,140 +459061,131 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_else, - [142669] = 23, + [141240] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6956), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(7248), 1, + ACTIONS(7253), 1, anon_sym_DOT, - ACTIONS(7252), 1, - anon_sym_PIPE, - ACTIONS(7254), 1, - anon_sym_CARET, - ACTIONS(7258), 1, - anon_sym_EQ_EQ, - ACTIONS(7264), 1, - anon_sym_AMP_STAR, - ACTIONS(7268), 1, - anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7276), 1, - sym_binary_ampersand, - ACTIONS(7280), 1, - anon_sym_DOT_DOT, - ACTIONS(7282), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7284), 1, - anon_sym_QMARK, - STATE(4427), 1, + STATE(4412), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7256), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7266), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7250), 3, + ACTIONS(6152), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7260), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7272), 4, + anon_sym_AMP_STAR, + ACTIONS(6150), 34, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7274), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6010), 10, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_else, - [142763] = 23, + [141302] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6956), 1, + ACTIONS(6442), 1, + anon_sym_DOT_DOT, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7252), 1, + ACTIONS(7237), 1, anon_sym_PIPE, - ACTIONS(7254), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7258), 1, + ACTIONS(7243), 1, anon_sym_EQ_EQ, - ACTIONS(7264), 1, + ACTIONS(7249), 1, anon_sym_AMP_STAR, - ACTIONS(7268), 1, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7270), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7276), 1, + ACTIONS(7263), 1, sym_binary_ampersand, - ACTIONS(7280), 1, - anon_sym_DOT_DOT, - ACTIONS(7282), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7284), 1, - anon_sym_QMARK, - STATE(4428), 1, + STATE(4413), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7256), 2, + ACTIONS(7241), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7262), 2, + ACTIONS(7247), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7266), 2, + ACTIONS(7251), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7250), 3, + ACTIONS(7235), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7260), 4, + ACTIONS(7245), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7272), 4, + ACTIONS(7259), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7274), 4, + ACTIONS(7261), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6030), 10, + ACTIONS(6440), 12, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -455955,115 +459194,60 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_QMARK, anon_sym_else, - [142857] = 23, + [141392] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6956), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7252), 1, + ACTIONS(7237), 1, anon_sym_PIPE, - ACTIONS(7254), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7258), 1, + ACTIONS(7243), 1, anon_sym_EQ_EQ, - ACTIONS(7264), 1, + ACTIONS(7249), 1, anon_sym_AMP_STAR, - ACTIONS(7268), 1, - anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7276), 1, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7263), 1, sym_binary_ampersand, - ACTIONS(7280), 1, - anon_sym_DOT_DOT, - ACTIONS(7282), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7284), 1, - anon_sym_QMARK, - STATE(4429), 1, + STATE(4414), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7256), 2, + ACTIONS(7241), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7266), 2, + ACTIONS(7251), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7250), 3, + ACTIONS(5817), 4, + anon_sym_DOT_DOT, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7260), 4, + ACTIONS(7245), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7272), 4, + ACTIONS(7259), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7274), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6032), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [142951] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7264), 1, - anon_sym_AMP_STAR, - STATE(4430), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7266), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7274), 4, + ACTIONS(7261), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6048), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6046), 28, + ACTIONS(5815), 16, sym__line_break, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym_binary_ampersand, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, @@ -456073,35 +459257,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [143019] = 8, + [141474] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - STATE(4431), 1, + ACTIONS(7277), 1, + anon_sym_of, + STATE(4415), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7266), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(5757), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -456109,24 +459281,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 32, + anon_sym_DOT, + ACTIONS(5753), 34, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -456138,26 +459313,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [143083] = 8, + [141534] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - STATE(4432), 1, + ACTIONS(7279), 1, + anon_sym_of, + STATE(4416), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7266), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(5733), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -456165,24 +459335,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 32, + anon_sym_DOT, + ACTIONS(5729), 34, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -456194,79 +459367,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_else, - [143147] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7264), 1, - anon_sym_AMP_STAR, - STATE(4433), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7256), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7266), 2, - sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7272), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7274), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6064), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6062), 22, - sym__line_break, - sym_binary_ampersand, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [143219] = 5, + [141594] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4434), 1, + ACTIONS(7281), 1, + anon_sym_of, + STATE(4417), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(5651), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -456275,7 +459390,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 35, + ACTIONS(5647), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -456286,205 +459402,69 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [143277] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6068), 1, - anon_sym_DOT_DOT, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7252), 1, - anon_sym_PIPE, - ACTIONS(7254), 1, - anon_sym_CARET, - ACTIONS(7258), 1, - anon_sym_EQ_EQ, - ACTIONS(7264), 1, - anon_sym_AMP_STAR, - ACTIONS(7268), 1, - anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7276), 1, - sym_binary_ampersand, - STATE(4435), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7256), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7266), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7250), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7260), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7272), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7274), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6066), 12, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, - anon_sym_else, - [143367] = 17, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7252), 1, - anon_sym_PIPE, - ACTIONS(7254), 1, anon_sym_CARET, - ACTIONS(7258), 1, - anon_sym_EQ_EQ, - ACTIONS(7264), 1, - anon_sym_AMP_STAR, - ACTIONS(7276), 1, - sym_binary_ampersand, - STATE(4436), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7256), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7266), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7260), 4, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7272), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7274), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6070), 16, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - [143449] = 13, + [141654] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6956), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7264), 1, + ACTIONS(7249), 1, anon_sym_AMP_STAR, - ACTIONS(7276), 1, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7263), 1, sym_binary_ampersand, - STATE(4437), 1, + STATE(4418), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7256), 2, + ACTIONS(7241), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7266), 2, + ACTIONS(7251), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7272), 4, + ACTIONS(7259), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7274), 4, + ACTIONS(7261), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6082), 6, + ACTIONS(6263), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6080), 21, + ACTIONS(6261), 21, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -456506,41 +459486,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [143523] = 11, + [141728] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6956), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7264), 1, + ACTIONS(7249), 1, anon_sym_AMP_STAR, - STATE(4438), 1, + ACTIONS(7253), 1, + anon_sym_DOT, + STATE(4419), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7266), 2, + ACTIONS(7251), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7272), 4, + ACTIONS(7259), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7274), 4, + ACTIONS(7261), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6090), 6, + ACTIONS(5869), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6088), 24, + ACTIONS(5867), 24, sym__line_break, sym_binary_ampersand, sym__modifier_if_keyword, @@ -456565,49 +459545,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [143593] = 15, + [141798] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6956), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7252), 1, + ACTIONS(7237), 1, anon_sym_PIPE, - ACTIONS(7254), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7264), 1, + ACTIONS(7249), 1, anon_sym_AMP_STAR, - ACTIONS(7276), 1, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7263), 1, sym_binary_ampersand, - STATE(4439), 1, + STATE(4420), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7256), 2, + ACTIONS(7241), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7266), 2, + ACTIONS(7251), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7272), 4, + ACTIONS(7259), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7274), 4, + ACTIONS(7261), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6094), 5, + ACTIONS(6134), 5, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6092), 20, + ACTIONS(6132), 20, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -456628,15 +459608,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [143671] = 5, + [141876] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4440), 1, + STATE(4421), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6426), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -456645,7 +459625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 35, + ACTIONS(6424), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -456681,68 +459661,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [143729] = 5, + [141934] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4441), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6356), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6354), 35, + ACTIONS(6942), 1, sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [143787] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4442), 1, + ACTIONS(7253), 1, + anon_sym_DOT, + STATE(4422), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6156), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -456750,9 +459681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6354), 35, - sym__start_of_index_operator, + ACTIONS(6154), 34, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -456762,12 +459692,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -456783,63 +459715,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_else, - anon_sym_when, - anon_sym_in, - [143845] = 19, + [141996] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, + ACTIONS(6047), 1, anon_sym_DOT_DOT, - ACTIONS(6956), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7252), 1, + ACTIONS(7237), 1, anon_sym_PIPE, - ACTIONS(7254), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7258), 1, + ACTIONS(7243), 1, anon_sym_EQ_EQ, - ACTIONS(7264), 1, + ACTIONS(7249), 1, anon_sym_AMP_STAR, - ACTIONS(7276), 1, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7263), 1, sym_binary_ampersand, - STATE(4443), 1, + STATE(4423), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7256), 2, + ACTIONS(7241), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7262), 2, + ACTIONS(7247), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7266), 2, + ACTIONS(7251), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7250), 3, + ACTIONS(7235), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7260), 4, + ACTIONS(7245), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7272), 4, + ACTIONS(7259), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7274), 4, + ACTIONS(7261), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 14, + ACTIONS(6045), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -456854,61 +459783,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, - [143931] = 20, + [142082] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6118), 1, + ACTIONS(6215), 1, anon_sym_DOT_DOT, - ACTIONS(6956), 1, + ACTIONS(6942), 1, sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7252), 1, + ACTIONS(7237), 1, anon_sym_PIPE, - ACTIONS(7254), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7258), 1, + ACTIONS(7243), 1, anon_sym_EQ_EQ, - ACTIONS(7264), 1, + ACTIONS(7249), 1, anon_sym_AMP_STAR, - ACTIONS(7268), 1, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7276), 1, + ACTIONS(7263), 1, sym_binary_ampersand, - STATE(4444), 1, + STATE(4424), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7256), 2, + ACTIONS(7241), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7262), 2, + ACTIONS(7247), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7266), 2, + ACTIONS(7251), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7250), 3, + ACTIONS(7235), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7260), 4, + ACTIONS(7245), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7272), 4, + ACTIONS(7259), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7274), 4, + ACTIONS(7261), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6116), 13, + ACTIONS(6213), 13, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -456922,15 +459851,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_PIPE_PIPE, anon_sym_else, - [144019] = 5, + [142170] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4445), 1, + ACTIONS(1521), 1, + anon_sym_COLON, + ACTIONS(6867), 1, + anon_sym_COLON_COLON, + STATE(3343), 1, + aux_sym_constant_repeat1, + STATE(4425), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(4584), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -456939,7 +459874,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6360), 35, + ACTIONS(4586), 32, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -456951,13 +459888,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -456968,22 +459901,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [144077] = 5, + anon_sym_do, + anon_sym_then, + [142234] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4446), 1, + ACTIONS(771), 1, + sym__string_literal_start, + ACTIONS(7283), 1, + anon_sym_COLON, + STATE(4426), 1, sym_heredoc_body, + STATE(4870), 1, + aux_sym_chained_string_repeat1, + STATE(5048), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6372), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -456992,7 +459932,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6370), 35, + ACTIONS(135), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457004,13 +459946,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -457024,19 +459962,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [144135] = 5, + anon_sym_do, + anon_sym_then, + [142300] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4447), 1, + STATE(4427), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6376), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -457045,7 +459981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6374), 35, + ACTIONS(6345), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457081,86 +460017,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [144193] = 23, + [142358] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7092), 1, + ACTIONS(7285), 1, + anon_sym_COMMA, + STATE(4428), 1, + sym_heredoc_body, + STATE(4435), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5641), 8, anon_sym_DOT_DOT, - ACTIONS(7094), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7100), 1, - anon_sym_CARET, - ACTIONS(7104), 1, anon_sym_EQ_EQ, - ACTIONS(7110), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7114), 1, anon_sym_DOT, - ACTIONS(7116), 1, + ACTIONS(5637), 33, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7118), 1, anon_sym_AMP_AMP, - ACTIONS(7120), 1, anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7128), 1, - sym_binary_ampersand, - STATE(4448), 1, + [142420] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6688), 1, + anon_sym_LPAREN2, + ACTIONS(7287), 1, + anon_sym_EQ, + STATE(4429), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, + ACTIONS(157), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(135), 33, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7108), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [142482] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4430), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6319), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7106), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6317), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6010), 10, - sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_do, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [144287] = 5, + [142540] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4449), 1, + STATE(4431), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6384), 8, + ACTIONS(5829), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -457169,7 +460197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6382), 35, + ACTIONS(5827), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457205,15 +460233,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [144345] = 5, + [142598] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4450), 1, + STATE(4432), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6388), 8, + ACTIONS(5777), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -457222,7 +460250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6386), 35, + ACTIONS(5775), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457258,15 +460286,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [144403] = 5, + [142656] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4451), 1, + STATE(4433), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6392), 8, + ACTIONS(5853), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -457275,7 +460303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6390), 35, + ACTIONS(5851), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457311,15 +460339,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [144461] = 5, + [142714] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4452), 1, + STATE(4434), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6396), 8, + ACTIONS(5857), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -457328,7 +460356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6394), 35, + ACTIONS(5855), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457364,15 +460392,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [144519] = 5, + [142772] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4453), 1, - sym_heredoc_body, + ACTIONS(7289), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6404), 8, + STATE(4435), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -457381,7 +460412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6402), 35, + ACTIONS(5694), 33, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457392,12 +460424,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -457413,19 +460446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [144577] = 5, + [142832] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4454), 1, + STATE(4436), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6410), 8, + ACTIONS(5909), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -457434,7 +460463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6408), 35, + ACTIONS(5907), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457470,15 +460499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [144635] = 5, + [142890] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4455), 1, + STATE(4437), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(5969), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -457487,7 +460516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6415), 35, + ACTIONS(5967), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457523,15 +460552,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [144693] = 5, + [142948] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4456), 1, + STATE(4438), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5810), 8, + ACTIONS(6207), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -457540,7 +460569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5808), 35, + ACTIONS(6205), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457576,15 +460605,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [144751] = 5, + [143006] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4457), 1, + ACTIONS(7292), 1, + anon_sym_COLON_COLON, + STATE(4439), 1, sym_heredoc_body, + STATE(4445), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5818), 8, + ACTIONS(4584), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -457593,7 +460627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5816), 35, + anon_sym_EQ, + ACTIONS(4586), 31, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457605,13 +460640,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -457622,22 +460655,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [144809] = 5, + [143068] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4458), 1, + ACTIONS(7086), 1, + anon_sym_LBRACK, + ACTIONS(7088), 1, + anon_sym_STAR, + ACTIONS(7090), 1, + anon_sym_DOT, + ACTIONS(7092), 1, + anon_sym_QMARK, + ACTIONS(7294), 1, + anon_sym_PIPE, + STATE(4440), 1, + sym_heredoc_body, + STATE(4449), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4648), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4650), 30, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_then, + [143138] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4441), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5846), 8, + ACTIONS(5943), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -457646,7 +460736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5844), 35, + ACTIONS(5941), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457682,15 +460772,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [144867] = 5, + [143196] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4459), 1, + STATE(4442), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(5993), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -457699,7 +460789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5947), 35, + ACTIONS(5991), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457735,84 +460825,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [144925] = 21, + [143254] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6242), 1, + ACTIONS(7113), 1, anon_sym_DOT_DOT, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7252), 1, + ACTIONS(7115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7119), 1, anon_sym_PIPE, - ACTIONS(7254), 1, + ACTIONS(7121), 1, anon_sym_CARET, - ACTIONS(7258), 1, + ACTIONS(7125), 1, anon_sym_EQ_EQ, - ACTIONS(7264), 1, + ACTIONS(7131), 1, anon_sym_AMP_STAR, - ACTIONS(7268), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, anon_sym_AMP_AMP, - ACTIONS(7270), 1, + ACTIONS(7141), 1, anon_sym_PIPE_PIPE, - ACTIONS(7276), 1, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, sym_binary_ampersand, - STATE(4460), 1, + STATE(4443), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7256), 2, + ACTIONS(7123), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7262), 2, + ACTIONS(7129), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7266), 2, + ACTIONS(7133), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7250), 3, + ACTIONS(7117), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7260), 4, + ACTIONS(7127), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7272), 4, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7274), 4, + ACTIONS(7147), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6240), 12, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, + ACTIONS(5825), 10, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_end, - anon_sym_QMARK, + anon_sym_do, anon_sym_else, - [145015] = 5, + anon_sym_when, + anon_sym_in, + [143348] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4461), 1, + STATE(4444), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5512), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -457821,7 +460913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 35, + ACTIONS(5995), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457857,15 +460949,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [145073] = 5, + [143406] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4462), 1, + ACTIONS(7292), 1, + anon_sym_COLON_COLON, + STATE(4445), 1, sym_heredoc_body, + STATE(4471), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6192), 8, + ACTIONS(4594), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -457874,7 +460971,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6190), 35, + anon_sym_EQ, + ACTIONS(4596), 31, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457886,13 +460984,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -457903,22 +460999,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [145131] = 5, + [143468] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4463), 1, + STATE(4446), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5953), 8, + ACTIONS(6430), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -457927,7 +461021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5951), 35, + ACTIONS(6428), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -457963,15 +461057,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [145189] = 5, + [143526] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4464), 1, + STATE(4447), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5961), 8, + ACTIONS(6013), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -457980,7 +461074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5959), 35, + ACTIONS(6011), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458016,15 +461110,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [145247] = 5, + [143584] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4465), 1, + STATE(4448), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6016), 8, + ACTIONS(6434), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -458033,7 +461127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6014), 35, + ACTIONS(6432), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458069,24 +461163,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [145305] = 5, + [143642] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4466), 1, + ACTIONS(7294), 1, + anon_sym_PIPE, + STATE(4449), 1, sym_heredoc_body, + STATE(4451), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6126), 8, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6124), 35, + anon_sym_EQ, + ACTIONS(4636), 33, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458098,13 +461198,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -458118,19 +461216,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [145363] = 5, + anon_sym_do, + anon_sym_then, + [143704] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4467), 1, + ACTIONS(7292), 1, + anon_sym_COLON_COLON, + STATE(4450), 1, sym_heredoc_body, + STATE(4481), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6160), 8, + ACTIONS(4594), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -458139,7 +461240,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6158), 35, + anon_sym_EQ, + ACTIONS(4596), 31, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458151,13 +461253,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -458168,31 +461268,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [145421] = 5, + [143766] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4468), 1, - sym_heredoc_body, + ACTIONS(7296), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6172), 8, + STATE(4451), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6170), 35, + anon_sym_EQ, + ACTIONS(4629), 33, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458204,13 +461307,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -458224,19 +461325,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [145479] = 5, + anon_sym_do, + anon_sym_then, + [143826] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4469), 1, + STATE(4452), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6176), 8, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -458245,7 +461344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6174), 35, + ACTIONS(5983), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458281,24 +461380,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [145537] = 5, + [143884] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4470), 1, + ACTIONS(7086), 1, + anon_sym_LBRACK, + ACTIONS(7088), 1, + anon_sym_STAR, + ACTIONS(7090), 1, + anon_sym_DOT, + ACTIONS(7092), 1, + anon_sym_QMARK, + ACTIONS(7294), 1, + anon_sym_PIPE, + STATE(4449), 1, + aux_sym_union_type_repeat1, + STATE(4453), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6180), 8, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6178), 35, + anon_sym_EQ, + ACTIONS(4625), 30, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458310,13 +461422,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -458327,22 +461435,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_then, + [143954] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7086), 1, + anon_sym_LBRACK, + ACTIONS(7088), 1, + anon_sym_STAR, + ACTIONS(7090), 1, + anon_sym_DOT, + ACTIONS(7092), 1, anon_sym_QMARK, + ACTIONS(7294), 1, + anon_sym_PIPE, + STATE(4449), 1, + aux_sym_union_type_repeat1, + STATE(4454), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4605), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4607), 30, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [145595] = 5, + anon_sym_do, + anon_sym_then, + [144024] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4471), 1, + STATE(4455), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6208), 8, + ACTIONS(6029), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -458351,7 +461515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6206), 35, + ACTIONS(6027), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458387,15 +461551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [145653] = 5, + [144082] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4472), 1, + STATE(4456), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6220), 8, + ACTIONS(6033), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -458404,7 +461568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6218), 35, + ACTIONS(6031), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458440,86 +461604,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [145711] = 23, + [144140] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7252), 1, + ACTIONS(7113), 1, + anon_sym_DOT_DOT, + ACTIONS(7115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7119), 1, anon_sym_PIPE, - ACTIONS(7254), 1, + ACTIONS(7121), 1, anon_sym_CARET, - ACTIONS(7258), 1, + ACTIONS(7125), 1, anon_sym_EQ_EQ, - ACTIONS(7264), 1, + ACTIONS(7131), 1, anon_sym_AMP_STAR, - ACTIONS(7268), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, anon_sym_AMP_AMP, - ACTIONS(7270), 1, + ACTIONS(7141), 1, anon_sym_PIPE_PIPE, - ACTIONS(7276), 1, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, sym_binary_ampersand, - ACTIONS(7280), 1, - anon_sym_DOT_DOT, - ACTIONS(7282), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7284), 1, - anon_sym_QMARK, - STATE(4473), 1, + STATE(4457), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7256), 2, + ACTIONS(7123), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7262), 2, + ACTIONS(7129), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7266), 2, + ACTIONS(7133), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7250), 3, + ACTIONS(7117), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7260), 4, + ACTIONS(7127), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7272), 4, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7274), 4, + ACTIONS(7147), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6256), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(6092), 10, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_end, + anon_sym_do, anon_sym_else, - [145805] = 5, + anon_sym_when, + anon_sym_in, + [144234] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4474), 1, + STATE(4458), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6228), 8, + ACTIONS(6458), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -458528,7 +461692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6226), 35, + ACTIONS(6456), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458564,15 +461728,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [145863] = 5, + [144292] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4475), 1, + STATE(4459), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6264), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -458581,7 +461745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6262), 35, + ACTIONS(6189), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458617,15 +461781,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [145921] = 5, + [144350] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4476), 1, + STATE(4460), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6300), 8, + ACTIONS(6363), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -458634,7 +461798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6298), 35, + ACTIONS(6361), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458670,15 +461834,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [145979] = 5, + [144408] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4477), 1, + STATE(4461), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6312), 8, + ACTIONS(6454), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -458687,7 +461851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6310), 35, + ACTIONS(6452), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458723,15 +461887,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146037] = 5, + [144466] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4478), 1, + STATE(4462), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5802), 8, + ACTIONS(6466), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -458740,7 +461904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5800), 35, + ACTIONS(6464), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458776,86 +461940,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146095] = 23, + [144524] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6956), 1, - sym__start_of_index_operator, - ACTIONS(7248), 1, - anon_sym_DOT, - ACTIONS(7252), 1, - anon_sym_PIPE, - ACTIONS(7254), 1, - anon_sym_CARET, - ACTIONS(7258), 1, - anon_sym_EQ_EQ, - ACTIONS(7264), 1, - anon_sym_AMP_STAR, - ACTIONS(7268), 1, - anon_sym_AMP_AMP, - ACTIONS(7270), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7276), 1, - sym_binary_ampersand, - ACTIONS(7280), 1, - anon_sym_DOT_DOT, - ACTIONS(7282), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7284), 1, - anon_sym_QMARK, - STATE(4479), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7256), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7262), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7266), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7250), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7260), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7272), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7274), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6230), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [146189] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4480), 1, + STATE(4463), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5826), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -458864,7 +461957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5824), 35, + ACTIONS(6189), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458900,15 +461993,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146247] = 5, + [144582] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4481), 1, + ACTIONS(7299), 1, + anon_sym_LPAREN2, + STATE(4464), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(4642), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -458917,7 +462013,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5856), 35, + anon_sym_EQ, + ACTIONS(4644), 32, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -458929,13 +462027,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -458947,21 +462043,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [146305] = 5, + anon_sym_do, + [144642] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4482), 1, + STATE(4465), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5862), 8, + ACTIONS(6086), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -458970,7 +462064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5860), 35, + ACTIONS(6084), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459006,15 +462100,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146363] = 5, + [144700] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4483), 1, + STATE(4466), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5866), 8, + ACTIONS(6096), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -459023,7 +462117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5864), 35, + ACTIONS(6094), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459059,15 +462153,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146421] = 5, + [144758] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4484), 1, + STATE(4467), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5899), 8, + ACTIONS(6110), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -459076,7 +462170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5897), 35, + ACTIONS(6108), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459112,15 +462206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146479] = 5, + [144816] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4485), 1, + STATE(4468), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5919), 8, + ACTIONS(6144), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -459129,7 +462223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5917), 35, + ACTIONS(6142), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459165,15 +462259,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146537] = 5, + [144874] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4486), 1, + STATE(4469), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5927), 8, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -459182,7 +462276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5925), 35, + ACTIONS(6309), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459218,15 +462312,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146595] = 5, + [144932] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4487), 1, + STATE(4470), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5931), 8, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -459235,7 +462329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5929), 35, + ACTIONS(6329), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459271,15 +462365,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [146653] = 5, + [144990] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4488), 1, - sym_heredoc_body, + ACTIONS(7301), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6036), 8, + STATE(4471), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4598), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -459288,7 +462386,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6034), 35, + anon_sym_EQ, + ACTIONS(4600), 31, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459300,13 +462399,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -459317,75 +462414,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [146711] = 5, + [145050] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4489), 1, + ACTIONS(7113), 1, + anon_sym_DOT_DOT, + ACTIONS(7115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7119), 1, + anon_sym_PIPE, + ACTIONS(7121), 1, + anon_sym_CARET, + ACTIONS(7125), 1, + anon_sym_EQ_EQ, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, + anon_sym_AMP_AMP, + ACTIONS(7141), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, + sym_binary_ampersand, + STATE(4472), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6040), 8, - anon_sym_DOT_DOT, + ACTIONS(7123), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7129), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7117), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6038), 35, - sym__start_of_index_operator, + ACTIONS(7127), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7147), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6025), 10, + sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [145144] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7113), 1, + anon_sym_DOT_DOT, + ACTIONS(7115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7119), 1, + anon_sym_PIPE, + ACTIONS(7121), 1, anon_sym_CARET, + ACTIONS(7125), 1, + anon_sym_EQ_EQ, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, + anon_sym_AMP_AMP, + ACTIONS(7141), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, + sym_binary_ampersand, + ACTIONS(7304), 1, + anon_sym_COMMA, + STATE(4473), 1, + sym_heredoc_body, + STATE(4477), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7123), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7129), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7117), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7127), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + ACTIONS(7145), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7147), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5587), 8, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [146769] = 5, + [145242] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4490), 1, + ACTIONS(7304), 1, + anon_sym_COMMA, + STATE(4474), 1, sym_heredoc_body, + STATE(4477), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6044), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -459394,7 +462584,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6042), 35, + ACTIONS(5587), 33, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459408,9 +462599,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -459426,19 +462614,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [146827] = 5, + [145304] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4491), 1, + ACTIONS(7113), 1, + anon_sym_DOT_DOT, + ACTIONS(7115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7119), 1, + anon_sym_PIPE, + ACTIONS(7121), 1, + anon_sym_CARET, + ACTIONS(7125), 1, + anon_sym_EQ_EQ, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, + anon_sym_AMP_AMP, + ACTIONS(7141), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, + sym_binary_ampersand, + ACTIONS(7306), 1, + anon_sym_COMMA, + STATE(4475), 1, sym_heredoc_body, + STATE(4478), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6060), 8, + ACTIONS(7123), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7129), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7117), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7127), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7145), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7147), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5631), 8, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [145402] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7306), 1, + anon_sym_COMMA, + STATE(4476), 1, + sym_heredoc_body, + STATE(4478), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -459447,7 +462712,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6058), 35, + ACTIONS(5631), 33, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459461,9 +462727,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -459479,19 +462742,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [146885] = 5, + [145464] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4492), 1, + ACTIONS(7306), 1, + anon_sym_COMMA, + STATE(3878), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(4477), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6110), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -459500,7 +462767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6108), 35, + ACTIONS(5631), 33, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459514,9 +462782,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -459532,19 +462797,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [146943] = 5, + [145526] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4493), 1, + ACTIONS(7308), 1, + anon_sym_COMMA, + STATE(3878), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(4478), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6138), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -459553,7 +462822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6136), 35, + ACTIONS(5637), 33, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459567,9 +462837,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -459585,72 +462852,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [147001] = 5, + [145588] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4494), 1, + ACTIONS(7113), 1, + anon_sym_DOT_DOT, + ACTIONS(7115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7119), 1, + anon_sym_PIPE, + ACTIONS(7121), 1, + anon_sym_CARET, + ACTIONS(7125), 1, + anon_sym_EQ_EQ, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, + anon_sym_AMP_AMP, + ACTIONS(7141), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, + sym_binary_ampersand, + STATE(4479), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6164), 8, - anon_sym_DOT_DOT, + ACTIONS(7123), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7129), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7117), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6162), 35, - sym__start_of_index_operator, + ACTIONS(7127), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7147), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6039), 10, + sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [147059] = 5, + [145682] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4495), 1, + STATE(4480), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(4696), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -459659,7 +462944,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5878), 35, + anon_sym_EQ, + ACTIONS(4698), 34, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459671,13 +462959,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -459691,19 +462978,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [147117] = 5, + anon_sym_do, + anon_sym_then, + [145740] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4496), 1, + ACTIONS(7292), 1, + anon_sym_COLON_COLON, + STATE(4471), 1, + aux_sym_constant_repeat1, + STATE(4481), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6168), 8, + ACTIONS(4590), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -459712,7 +463002,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6166), 35, + anon_sym_EQ, + ACTIONS(4592), 31, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459724,13 +463015,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -459741,22 +463030,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [147175] = 5, + [145802] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4497), 1, + STATE(4482), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5770), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -459765,7 +463052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5768), 35, + ACTIONS(6189), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459801,15 +463088,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [147233] = 5, + [145860] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4498), 1, + STATE(4483), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5782), 8, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -459818,7 +463105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5780), 35, + anon_sym_EQ, + ACTIONS(4644), 34, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459830,13 +463120,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -459850,28 +463139,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [147291] = 5, + anon_sym_do, + anon_sym_then, + [145918] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4499), 1, + ACTIONS(7218), 1, + anon_sym_LBRACK, + ACTIONS(7220), 1, + anon_sym_STAR, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7224), 1, + anon_sym_DOT, + ACTIONS(7226), 1, + anon_sym_QMARK, + STATE(4484), 1, sym_heredoc_body, + STATE(4547), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5786), 8, + ACTIONS(4648), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5784), 35, + anon_sym_EQ, + ACTIONS(4650), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459883,13 +463183,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -459900,31 +463196,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [147349] = 5, + anon_sym_do, + [145988] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4500), 1, + ACTIONS(7218), 1, + anon_sym_LBRACK, + ACTIONS(7220), 1, + anon_sym_STAR, + ACTIONS(7222), 1, + anon_sym_PIPE, + ACTIONS(7224), 1, + anon_sym_DOT, + ACTIONS(7226), 1, + anon_sym_QMARK, + STATE(4485), 1, sym_heredoc_body, + STATE(4547), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5790), 8, + ACTIONS(4619), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5788), 35, + anon_sym_EQ, + ACTIONS(4621), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459936,13 +463242,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -459953,22 +463255,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [147407] = 5, + anon_sym_do, + [146058] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4501), 1, + STATE(4486), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4647), 9, + ACTIONS(6406), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -459977,10 +463276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4649), 34, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(6404), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -459992,12 +463288,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -460011,70 +463308,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [147465] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [146116] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4502), 1, + ACTIONS(5981), 1, + anon_sym_DOT_DOT, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(7237), 1, + anon_sym_PIPE, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7243), 1, + anon_sym_EQ_EQ, + ACTIONS(7249), 1, + anon_sym_AMP_STAR, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7263), 1, + sym_binary_ampersand, + STATE(4487), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5794), 8, - anon_sym_DOT_DOT, + ACTIONS(7241), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7247), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7251), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7235), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5792), 35, - sym__start_of_index_operator, + ACTIONS(7245), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7259), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7261), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, + ACTIONS(5979), 12, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_else, - anon_sym_when, - anon_sym_in, - [147523] = 5, + [146206] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4503), 1, + STATE(4488), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5798), 8, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -460083,7 +463398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5796), 35, + ACTIONS(6199), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460119,15 +463434,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [147581] = 5, + [146264] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4504), 1, + STATE(4489), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5806), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -460136,7 +463451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5804), 35, + ACTIONS(6189), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460172,174 +463487,373 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [147639] = 5, + [146322] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4505), 1, + ACTIONS(7113), 1, + anon_sym_DOT_DOT, + ACTIONS(7115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7119), 1, + anon_sym_PIPE, + ACTIONS(7121), 1, + anon_sym_CARET, + ACTIONS(7125), 1, + anon_sym_EQ_EQ, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, + anon_sym_AMP_AMP, + ACTIONS(7141), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, + sym_binary_ampersand, + STATE(4490), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5814), 8, - anon_sym_DOT_DOT, + ACTIONS(7123), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7129), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7117), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5812), 35, - sym__start_of_index_operator, + ACTIONS(7127), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7147), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5923), 10, + sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [146416] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(7237), 1, + anon_sym_PIPE, + ACTIONS(7239), 1, anon_sym_CARET, + ACTIONS(7243), 1, + anon_sym_EQ_EQ, + ACTIONS(7249), 1, + anon_sym_AMP_STAR, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7263), 1, + sym_binary_ampersand, + ACTIONS(7267), 1, + anon_sym_DOT_DOT, + ACTIONS(7269), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7271), 1, + anon_sym_QMARK, + STATE(4491), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7241), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7247), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7251), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7235), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7245), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + ACTIONS(7259), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7261), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6863), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, anon_sym_else, - anon_sym_when, - anon_sym_in, - [147697] = 5, + [146510] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4506), 1, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(7237), 1, + anon_sym_PIPE, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7243), 1, + anon_sym_EQ_EQ, + ACTIONS(7249), 1, + anon_sym_AMP_STAR, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7263), 1, + sym_binary_ampersand, + ACTIONS(7267), 1, + anon_sym_DOT_DOT, + ACTIONS(7269), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7271), 1, + anon_sym_QMARK, + STATE(4492), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5822), 8, - anon_sym_DOT_DOT, + ACTIONS(7241), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7247), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7251), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7235), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5820), 35, - sym__start_of_index_operator, + ACTIONS(7245), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7259), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7261), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, + ACTIONS(6820), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, + anon_sym_else, + [146604] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(7237), 1, + anon_sym_PIPE, + ACTIONS(7239), 1, anon_sym_CARET, + ACTIONS(7243), 1, + anon_sym_EQ_EQ, + ACTIONS(7249), 1, + anon_sym_AMP_STAR, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7263), 1, + sym_binary_ampersand, + ACTIONS(7267), 1, + anon_sym_DOT_DOT, + ACTIONS(7269), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7271), 1, + anon_sym_QMARK, + STATE(4493), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7241), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7247), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7251), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7235), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7245), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + ACTIONS(7259), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7261), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6822), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, anon_sym_else, - anon_sym_when, - anon_sym_in, - [147755] = 5, + [146698] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4507), 1, + ACTIONS(7113), 1, + anon_sym_DOT_DOT, + ACTIONS(7115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7119), 1, + anon_sym_PIPE, + ACTIONS(7121), 1, + anon_sym_CARET, + ACTIONS(7125), 1, + anon_sym_EQ_EQ, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, + anon_sym_AMP_AMP, + ACTIONS(7141), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, + sym_binary_ampersand, + STATE(4494), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5830), 8, - anon_sym_DOT_DOT, + ACTIONS(7123), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7129), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7117), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5828), 35, - sym__start_of_index_operator, + ACTIONS(7127), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7147), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5773), 10, + sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [147813] = 5, + [146792] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4508), 1, + STATE(4495), 1, sym_heredoc_body, + STATE(4547), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4671), 9, + ACTIONS(4627), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -460349,8 +463863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4673), 34, - sym__line_break, + ACTIONS(4629), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -460363,7 +463876,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -460380,19 +463892,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [147871] = 5, + [146852] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4509), 1, + ACTIONS(7113), 1, + anon_sym_DOT_DOT, + ACTIONS(7115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7119), 1, + anon_sym_PIPE, + ACTIONS(7121), 1, + anon_sym_CARET, + ACTIONS(7125), 1, + anon_sym_EQ_EQ, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, + anon_sym_AMP_AMP, + ACTIONS(7141), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, + sym_binary_ampersand, + STATE(4496), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7123), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7129), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7117), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7127), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7145), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7147), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5694), 10, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_end, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [146946] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7099), 1, + anon_sym_typeof, + ACTIONS(7101), 1, + sym__constant_segment, + ACTIONS(7103), 1, + anon_sym_COLON_COLON, + ACTIONS(7107), 1, + sym__start_of_tuple_type, + ACTIONS(7109), 1, + sym__start_of_named_tuple_type, + ACTIONS(7273), 1, + anon_sym_LPAREN, + ACTIONS(7275), 1, + anon_sym_DASH_GT, + STATE(4497), 1, + sym_heredoc_body, + STATE(7692), 1, + sym_constant, + STATE(7785), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7105), 2, + sym_self, + sym_underscore_type, + STATE(7763), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4390), 20, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [147024] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4498), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4623), 9, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -460401,10 +464047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4625), 34, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(6321), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460416,12 +464059,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -460435,19 +464079,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [147929] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [147082] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7286), 1, - anon_sym_of, - STATE(4510), 1, + STATE(4499), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5702), 8, + ACTIONS(6223), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -460456,8 +464100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5698), 34, - sym__line_break, + ACTIONS(6221), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460468,14 +464111,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -460491,17 +464132,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [147989] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [147140] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7288), 1, - anon_sym_of, - STATE(4511), 1, + STATE(4500), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5734), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -460510,8 +464153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5730), 34, - sym__line_break, + ACTIONS(6249), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460522,14 +464164,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -460545,69 +464185,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [148049] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [147198] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7290), 1, - anon_sym_of, - STATE(4512), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7231), 1, + anon_sym_COMMA, + ACTIONS(7310), 1, + anon_sym_DOT_DOT, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, + anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7332), 1, + anon_sym_QMARK, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4428), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(4501), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5719), 8, - anon_sym_DOT_DOT, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5715), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5631), 8, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [148109] = 5, + [147296] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4513), 1, + STATE(4502), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5842), 8, + ACTIONS(5570), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -460616,7 +464279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5840), 35, + ACTIONS(5568), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460652,15 +464315,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [148167] = 5, + [147354] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4514), 1, + STATE(4503), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -460669,7 +464332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5868), 35, + ACTIONS(5785), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460705,15 +464368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [148225] = 5, + [147412] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4515), 1, + STATE(4504), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5903), 8, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -460722,7 +464385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5901), 35, + ACTIONS(5785), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460758,15 +464421,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [148283] = 5, + [147470] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4516), 1, + STATE(4505), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5907), 8, + ACTIONS(5809), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -460775,7 +464438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5905), 35, + ACTIONS(5807), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460811,15 +464474,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [148341] = 5, + [147528] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4517), 1, + STATE(4506), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5911), 8, + ACTIONS(5881), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -460828,7 +464491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5909), 35, + ACTIONS(5879), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460864,37 +464527,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [148399] = 11, + [147586] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7032), 1, + ACTIONS(7099), 1, + anon_sym_typeof, + ACTIONS(7101), 1, + sym__constant_segment, + ACTIONS(7103), 1, + anon_sym_COLON_COLON, + ACTIONS(7107), 1, + sym__start_of_tuple_type, + ACTIONS(7109), 1, + sym__start_of_named_tuple_type, + ACTIONS(7273), 1, + anon_sym_LPAREN, + ACTIONS(7275), 1, + anon_sym_DASH_GT, + STATE(4507), 1, + sym_heredoc_body, + STATE(7692), 1, + sym_constant, + STATE(7787), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7105), 2, + sym_self, + sym_underscore_type, + STATE(7763), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4362), 20, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(7034), 1, + anon_sym_end, anon_sym_STAR, - ACTIONS(7038), 1, + anon_sym_PIPE, anon_sym_DOT, - ACTIONS(7040), 1, + anon_sym_forall, anon_sym_QMARK, - ACTIONS(7222), 1, - anon_sym_PIPE, - STATE(4518), 1, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [147664] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4508), 1, sym_heredoc_body, - STATE(4523), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(6023), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4605), 30, - sym__line_break, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(6021), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460906,9 +464619,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -460919,19 +464636,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [148469] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [147722] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4519), 1, + STATE(4509), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5915), 8, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -460940,7 +464660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5913), 35, + ACTIONS(6035), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -460976,15 +464696,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [148527] = 5, + [147780] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4520), 1, + STATE(4510), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5968), 8, + ACTIONS(5813), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -460993,7 +464713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5966), 35, + ACTIONS(5811), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -461029,15 +464749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [148585] = 5, + [147838] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4521), 1, + STATE(4511), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5972), 8, + ACTIONS(6055), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -461046,7 +464766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5970), 35, + ACTIONS(6053), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -461082,15 +464802,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [148643] = 5, + [147896] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4522), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + STATE(4512), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6028), 8, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -461098,15 +464825,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6026), 35, - sym__start_of_index_operator, + ACTIONS(6313), 32, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -461115,7 +464840,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -461127,36 +464851,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [148701] = 7, + [147960] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7222), 1, + ACTIONS(6063), 1, + anon_sym_DOT_DOT, + ACTIONS(7119), 1, anon_sym_PIPE, - STATE(4523), 1, + ACTIONS(7121), 1, + anon_sym_CARET, + ACTIONS(7125), 1, + anon_sym_EQ_EQ, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7139), 1, + anon_sym_AMP_AMP, + ACTIONS(7141), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, + sym_binary_ampersand, + STATE(4513), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7123), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7129), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7117), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7127), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7145), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7147), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6061), 12, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [148050] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4514), 1, sym_heredoc_body, - STATE(4524), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(4676), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4584), 33, + ACTIONS(4678), 34, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -461174,6 +464963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, @@ -461190,27 +464980,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [148763] = 6, + [148108] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7292), 1, - anon_sym_PIPE, + STATE(4515), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4524), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(4660), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 33, + ACTIONS(4662), 34, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -461228,6 +465016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, @@ -461244,94 +465033,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [148823] = 11, + [148166] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, - anon_sym_STAR, - ACTIONS(7038), 1, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7040), 1, - anon_sym_QMARK, - ACTIONS(7222), 1, - anon_sym_PIPE, - STATE(4523), 1, - aux_sym_union_type_repeat1, - STATE(4525), 1, + ACTIONS(7143), 1, + sym__start_of_index_operator, + STATE(4516), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4609), 30, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7123), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7147), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + ACTIONS(6327), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6325), 22, + sym__start_of_brace_block, + sym_binary_ampersand, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [148893] = 11, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [148238] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7032), 1, - anon_sym_LBRACK, - ACTIONS(7034), 1, - anon_sym_STAR, - ACTIONS(7038), 1, - anon_sym_DOT, - ACTIONS(7040), 1, - anon_sym_QMARK, - ACTIONS(7222), 1, - anon_sym_PIPE, - STATE(4523), 1, - aux_sym_union_type_repeat1, - STATE(4526), 1, + STATE(4517), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(4664), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4570), 30, + ACTIONS(4666), 34, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -461346,8 +465126,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -461358,19 +465141,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [148963] = 5, + [148296] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4527), 1, + STATE(4518), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6076), 8, + ACTIONS(4652), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -461379,7 +465163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6074), 35, + anon_sym_EQ, + ACTIONS(4654), 34, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -461391,13 +465178,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -461411,19 +465197,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [149021] = 5, + anon_sym_do, + anon_sym_then, + [148354] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4528), 1, + STATE(4519), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6086), 8, + ACTIONS(4656), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -461432,7 +465216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6084), 35, + anon_sym_EQ, + ACTIONS(4658), 34, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -461444,13 +465231,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -461464,96 +465250,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [149079] = 25, + anon_sym_do, + anon_sym_then, + [148412] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7092), 1, - anon_sym_DOT_DOT, - ACTIONS(7094), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(7237), 1, anon_sym_PIPE, - ACTIONS(7100), 1, + ACTIONS(7239), 1, anon_sym_CARET, - ACTIONS(7104), 1, + ACTIONS(7243), 1, anon_sym_EQ_EQ, - ACTIONS(7110), 1, + ACTIONS(7249), 1, anon_sym_AMP_STAR, - ACTIONS(7114), 1, + ACTIONS(7253), 1, anon_sym_DOT, - ACTIONS(7116), 1, - anon_sym_QMARK, - ACTIONS(7118), 1, + ACTIONS(7255), 1, anon_sym_AMP_AMP, - ACTIONS(7120), 1, + ACTIONS(7257), 1, anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7128), 1, + ACTIONS(7263), 1, sym_binary_ampersand, - ACTIONS(7295), 1, - anon_sym_COMMA, - STATE(4529), 1, + ACTIONS(7267), 1, + anon_sym_DOT_DOT, + ACTIONS(7269), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7271), 1, + anon_sym_QMARK, + STATE(4520), 1, sym_heredoc_body, - STATE(4533), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, + ACTIONS(7241), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7108), 2, + ACTIONS(7247), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, + ACTIONS(7251), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, + ACTIONS(7235), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7106), 4, + ACTIONS(7245), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + ACTIONS(7259), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, + ACTIONS(7261), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5570), 8, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5779), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - anon_sym_do, anon_sym_else, - anon_sym_when, - anon_sym_in, - [149177] = 7, + [148506] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7295), 1, - anon_sym_COMMA, - STATE(4530), 1, + STATE(4521), 1, sym_heredoc_body, - STATE(4533), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(6219), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -461562,8 +465340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 33, - sym__start_of_brace_block, + ACTIONS(6217), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -461577,6 +465354,9 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -461592,96 +465372,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [149239] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7092), 1, - anon_sym_DOT_DOT, - ACTIONS(7094), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, - anon_sym_PIPE, - ACTIONS(7100), 1, - anon_sym_CARET, - ACTIONS(7104), 1, - anon_sym_EQ_EQ, - ACTIONS(7110), 1, - anon_sym_AMP_STAR, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7116), 1, - anon_sym_QMARK, - ACTIONS(7118), 1, - anon_sym_AMP_AMP, - ACTIONS(7120), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7128), 1, - sym_binary_ampersand, - ACTIONS(7297), 1, - anon_sym_COMMA, - STATE(4531), 1, - sym_heredoc_body, - STATE(4534), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7102), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7108), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7106), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7124), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7126), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5585), 8, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [149337] = 7, + [148564] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7297), 1, - anon_sym_COMMA, - STATE(4532), 1, + STATE(4522), 1, sym_heredoc_body, - STATE(4534), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(4716), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -461690,7 +465393,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 33, + anon_sym_EQ, + ACTIONS(4718), 34, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -461703,10 +465408,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -461721,22 +465428,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [149399] = 7, + anon_sym_then, + [148622] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7297), 1, - anon_sym_COMMA, - STATE(4108), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4533), 1, + STATE(4523), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(4704), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -461745,7 +465446,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 33, + anon_sym_EQ, + ACTIONS(4706), 34, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -461758,10 +465461,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -461776,22 +465481,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [149461] = 7, + anon_sym_then, + [148680] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7299), 1, - anon_sym_COMMA, - STATE(4108), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4534), 1, + STATE(4524), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(4680), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -461800,7 +465499,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 33, + anon_sym_EQ, + ACTIONS(4682), 34, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -461813,10 +465514,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -461831,18 +465534,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [149523] = 5, + anon_sym_then, + [148738] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4535), 1, + STATE(4525), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5838), 8, + ACTIONS(4672), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -461851,7 +465552,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5836), 35, + anon_sym_EQ, + ACTIONS(4674), 34, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -461863,13 +465567,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -461883,19 +465586,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [149581] = 5, + anon_sym_do, + anon_sym_then, + [148796] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4536), 1, + STATE(4526), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6098), 8, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -461904,7 +465605,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6096), 35, + anon_sym_EQ, + ACTIONS(4600), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -461916,13 +465619,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -461933,22 +465635,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [149639] = 5, + anon_sym_then, + [148854] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4537), 1, + STATE(4527), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6102), 8, + ACTIONS(4708), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -461957,7 +465658,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6100), 35, + anon_sym_EQ, + ACTIONS(4710), 34, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -461969,13 +465673,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -461989,19 +465692,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [149697] = 5, + anon_sym_do, + anon_sym_then, + [148912] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4538), 1, + STATE(4528), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6122), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -462010,7 +465711,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6120), 35, + anon_sym_EQ, + ACTIONS(4785), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462021,12 +465724,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -462042,19 +465747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [149755] = 5, + [148970] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4539), 1, + STATE(4529), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6130), 8, + ACTIONS(4712), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -462063,7 +465764,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6128), 35, + anon_sym_EQ, + ACTIONS(4714), 34, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462075,13 +465779,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -462095,19 +465798,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [149813] = 5, + anon_sym_do, + anon_sym_then, + [149028] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4540), 1, + STATE(4530), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4667), 9, + ACTIONS(4720), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -462117,7 +465818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4669), 34, + ACTIONS(4722), 34, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -462152,68 +465853,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [149871] = 5, + [149086] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4541), 1, + ACTIONS(6442), 1, + anon_sym_DOT_DOT, + ACTIONS(7119), 1, + anon_sym_PIPE, + ACTIONS(7121), 1, + anon_sym_CARET, + ACTIONS(7125), 1, + anon_sym_EQ_EQ, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7139), 1, + anon_sym_AMP_AMP, + ACTIONS(7141), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, + sym_binary_ampersand, + STATE(4531), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6142), 8, - anon_sym_DOT_DOT, + ACTIONS(7123), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7129), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7117), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6140), 35, - sym__start_of_index_operator, + ACTIONS(7127), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7147), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6440), 12, + sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [149929] = 5, + [149176] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4542), 1, + ACTIONS(6688), 1, + anon_sym_LPAREN2, + STATE(4532), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6150), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -462222,7 +465941,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6148), 35, + ACTIONS(135), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462233,12 +465953,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -462254,19 +465976,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + [149236] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6942), 1, + sym__start_of_index_operator, + ACTIONS(7237), 1, + anon_sym_PIPE, + ACTIONS(7239), 1, + anon_sym_CARET, + ACTIONS(7243), 1, + anon_sym_EQ_EQ, + ACTIONS(7249), 1, + anon_sym_AMP_STAR, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7255), 1, + anon_sym_AMP_AMP, + ACTIONS(7257), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7263), 1, + sym_binary_ampersand, + ACTIONS(7267), 1, + anon_sym_DOT_DOT, + ACTIONS(7269), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7271), 1, + anon_sym_QMARK, + STATE(4533), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7241), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7247), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7251), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7235), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7245), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7259), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7261), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5825), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, anon_sym_else, - anon_sym_when, - anon_sym_in, - [149987] = 5, + [149330] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4543), 1, + STATE(4534), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -462275,7 +466064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6419), 35, + ACTIONS(6229), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462311,15 +466100,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [150045] = 5, + [149388] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4544), 1, + STATE(4535), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6184), 8, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -462328,7 +466117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6182), 35, + ACTIONS(6233), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462364,15 +466153,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [150103] = 5, + [149446] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4545), 1, + STATE(4536), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6188), 8, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -462381,7 +466170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6186), 35, + ACTIONS(6237), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462417,15 +466206,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [150161] = 5, + [149504] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4546), 1, + ACTIONS(7346), 1, + sym_regex_modifier, + STATE(4537), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6196), 8, + ACTIONS(5769), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -462434,7 +466225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6194), 35, + ACTIONS(5767), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462445,12 +466237,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -462466,19 +466260,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [150219] = 5, + [149564] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4547), 1, + STATE(4538), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6200), 8, + ACTIONS(4700), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -462487,7 +466277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6198), 35, + anon_sym_EQ, + ACTIONS(4702), 34, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462499,13 +466292,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -462519,19 +466311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [150277] = 5, + anon_sym_do, + anon_sym_then, + [149622] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4548), 1, + STATE(4539), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6224), 8, + ACTIONS(6243), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -462540,7 +466330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6222), 35, + ACTIONS(6241), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462576,68 +466366,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [150335] = 5, + [149680] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4549), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4619), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4621), 34, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [150393] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4550), 1, + STATE(4540), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6234), 8, + ACTIONS(6247), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -462646,7 +466383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6232), 35, + ACTIONS(6245), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462682,15 +466419,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [150451] = 5, + [149738] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4551), 1, + ACTIONS(7348), 1, + sym_regex_modifier, + STATE(4541), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6246), 8, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -462699,7 +466438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6244), 35, + ACTIONS(5660), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462710,12 +466450,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -462731,129 +466473,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [150509] = 5, + [149798] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4552), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, + anon_sym_DOT_DOT, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, + anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7332), 1, + anon_sym_QMARK, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + ACTIONS(7350), 1, + anon_sym_COMMA, + STATE(4327), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(4542), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6250), 8, - anon_sym_DOT_DOT, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6248), 35, - sym__start_of_index_operator, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, + ACTIONS(5587), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [150567] = 5, + [149896] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4553), 1, + ACTIONS(7119), 1, + anon_sym_PIPE, + ACTIONS(7121), 1, + anon_sym_CARET, + ACTIONS(7125), 1, + anon_sym_EQ_EQ, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, + sym_binary_ampersand, + STATE(4543), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6296), 8, + ACTIONS(7123), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5817), 4, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6294), 35, - sym__start_of_index_operator, + ACTIONS(7127), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7147), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5815), 16, + sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [150625] = 7, + [149978] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7301), 1, - anon_sym_COMMA, - STATE(4554), 1, + STATE(4544), 1, sym_heredoc_body, - STATE(4557), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(6279), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -462862,8 +466628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 33, - sym__line_break, + ACTIONS(6277), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462874,13 +466639,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -462896,17 +466660,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [150687] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [150036] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7303), 1, - anon_sym_of, - STATE(4555), 1, + STATE(4545), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5660), 8, + ACTIONS(5861), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -462915,8 +466681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5656), 34, - sym__line_break, + ACTIONS(5859), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -462927,14 +466692,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -462950,19 +466713,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [150747] = 7, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [150094] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7305), 1, + ACTIONS(7231), 1, anon_sym_COMMA, - STATE(4556), 1, - sym_heredoc_body, - STATE(4559), 1, + STATE(4428), 1, aux_sym_argument_list_no_parens_repeat1, + STATE(4546), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -462971,7 +466738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 33, + ACTIONS(5631), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -463005,29 +466772,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [150809] = 7, + [150156] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7305), 1, - anon_sym_COMMA, - STATE(4319), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4557), 1, + ACTIONS(7222), 1, + anon_sym_PIPE, + STATE(4312), 1, + aux_sym_union_type_repeat1, + STATE(4547), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(4634), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 33, - sym__line_break, + anon_sym_EQ, + ACTIONS(4636), 32, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463038,15 +466806,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -463058,19 +466823,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [150871] = 6, + anon_sym_do, + [150218] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7307), 1, - anon_sym_of, - STATE(4558), 1, + STATE(4548), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5728), 8, + ACTIONS(6071), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -463079,8 +466844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5724), 34, - sym__line_break, + ACTIONS(6069), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463091,14 +466855,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -463114,19 +466876,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [150931] = 7, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [150276] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7309), 1, - anon_sym_COMMA, - STATE(4319), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4559), 1, + STATE(4549), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(6160), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -463135,8 +466897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 33, - sym__line_break, + ACTIONS(6158), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463147,13 +466908,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -463169,17 +466929,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [150993] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [150334] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7311), 1, - anon_sym_of, - STATE(4560), 1, + STATE(4550), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5690), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -463188,8 +466950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5686), 34, - sym__line_break, + ACTIONS(5545), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463200,14 +466961,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -463223,163 +466982,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [151053] = 25, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [150392] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, - anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - ACTIONS(7301), 1, - anon_sym_COMMA, - STATE(4557), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4561), 1, + STATE(4551), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7202), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(6171), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6169), 35, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5570), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [151151] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - ACTIONS(7305), 1, - anon_sym_COMMA, - STATE(4559), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4562), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7196), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7202), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7216), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7218), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5585), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [151249] = 6, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [150450] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7313), 1, - anon_sym_EQ, - STATE(4563), 1, + STATE(4552), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, + ACTIONS(6187), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -463388,8 +467056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 34, - sym__line_break, + ACTIONS(6185), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463400,14 +467067,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -463423,17 +467088,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [151309] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [150508] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4523), 1, - aux_sym_union_type_repeat1, - STATE(4564), 1, + STATE(4553), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(6211), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -463442,10 +467109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 33, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(6209), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463457,11 +467121,13 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -463475,17 +467141,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [151369] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [150566] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4565), 1, + STATE(4554), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6324), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -463494,7 +467162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6322), 35, + ACTIONS(6357), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463530,15 +467198,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [151427] = 5, + [150624] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4566), 1, + ACTIONS(6878), 1, + anon_sym_COLON, + STATE(4555), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6348), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -463547,7 +467217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6346), 35, + ACTIONS(135), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463558,12 +467229,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -463579,19 +467252,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [151485] = 5, + [150684] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4567), 1, + STATE(4556), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6352), 8, + ACTIONS(5833), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -463600,7 +467269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6350), 35, + ACTIONS(5831), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463636,15 +467305,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [151543] = 5, + [150742] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4568), 1, + STATE(4557), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6368), 8, + ACTIONS(5841), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -463653,7 +467322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6366), 35, + ACTIONS(5839), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463689,15 +467358,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [151601] = 5, + [150800] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4569), 1, + STATE(4558), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6400), 8, + ACTIONS(5889), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -463706,7 +467375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6398), 35, + ACTIONS(5887), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463742,15 +467411,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [151659] = 5, + [150858] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4570), 1, + STATE(4559), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5738), 8, + ACTIONS(5913), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -463759,7 +467428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5736), 35, + ACTIONS(5911), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463795,15 +467464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [151717] = 5, + [150916] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4571), 1, + STATE(4560), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5742), 8, + ACTIONS(5951), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -463812,7 +467481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5740), 35, + ACTIONS(5949), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -463848,121 +467517,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [151775] = 5, + [150974] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4572), 1, + ACTIONS(7113), 1, + anon_sym_DOT_DOT, + ACTIONS(7115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7119), 1, + anon_sym_PIPE, + ACTIONS(7121), 1, + anon_sym_CARET, + ACTIONS(7125), 1, + anon_sym_EQ_EQ, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, + anon_sym_AMP_AMP, + ACTIONS(7141), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, + sym_binary_ampersand, + STATE(4561), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5746), 8, - anon_sym_DOT_DOT, + ACTIONS(7123), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7129), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7117), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5744), 35, - sym__start_of_index_operator, + ACTIONS(7127), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7147), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5779), 10, + sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [151833] = 5, + [151068] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4573), 1, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, + sym_binary_ampersand, + STATE(4562), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5750), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5748), 35, - sym__start_of_index_operator, + ACTIONS(7123), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7147), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6263), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6261), 21, + sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, + anon_sym_do, anon_sym_else, anon_sym_when, anon_sym_in, - [151891] = 5, + [151142] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4574), 1, + STATE(4563), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5754), 8, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -463971,7 +467666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5752), 35, + ACTIONS(5551), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -464007,15 +467702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [151949] = 5, + [151200] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4575), 1, + STATE(4564), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5758), 8, + ACTIONS(6462), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -464024,7 +467719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5756), 35, + ACTIONS(6460), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -464060,15 +467755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [152007] = 5, + [151258] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4576), 1, + STATE(4565), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5762), 8, + ACTIONS(6446), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -464077,7 +467772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5760), 35, + ACTIONS(6444), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -464113,15 +467808,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [152065] = 5, + [151316] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4577), 1, + STATE(4566), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5766), 8, + ACTIONS(5959), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -464130,7 +467825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5764), 35, + ACTIONS(5957), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -464166,15 +467861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [152123] = 5, + [151374] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4578), 1, + STATE(4567), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5774), 8, + ACTIONS(6009), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -464183,7 +467878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5772), 35, + ACTIONS(6007), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -464219,15 +467914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [152181] = 5, + [151432] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4579), 1, + STATE(4568), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5778), 8, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -464236,7 +467931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5776), 35, + ACTIONS(5694), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -464272,19 +467967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [152239] = 7, + [151490] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6766), 1, - anon_sym_LPAREN2, - ACTIONS(7315), 1, - anon_sym_EQ, - STATE(4580), 1, + STATE(4569), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6019), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -464293,8 +467984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 33, - sym__line_break, + ACTIONS(6017), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -464305,13 +467995,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -464327,84 +468016,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [152301] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5941), 1, - anon_sym_DOT_DOT, - ACTIONS(7098), 1, - anon_sym_PIPE, - ACTIONS(7100), 1, - anon_sym_CARET, - ACTIONS(7104), 1, - anon_sym_EQ_EQ, - ACTIONS(7110), 1, - anon_sym_AMP_STAR, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7118), 1, - anon_sym_AMP_AMP, - ACTIONS(7120), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7128), 1, - sym_binary_ampersand, - STATE(4581), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7102), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7108), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7096), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7106), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7124), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7126), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5939), 12, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - anon_sym_do, + anon_sym_COLON2, anon_sym_else, anon_sym_when, anon_sym_in, - [152391] = 5, + [151548] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4582), 1, + STATE(4570), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -464413,8 +468037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 34, + ACTIONS(6041), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -464430,6 +468053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -464449,24 +468073,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [152449] = 5, + [151606] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4583), 1, + ACTIONS(7086), 1, + anon_sym_LBRACK, + ACTIONS(7088), 1, + anon_sym_STAR, + ACTIONS(7090), 1, + anon_sym_DOT, + ACTIONS(7092), 1, + anon_sym_QMARK, + ACTIONS(7294), 1, + anon_sym_PIPE, + STATE(4449), 1, + aux_sym_union_type_repeat1, + STATE(4571), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6380), 8, + ACTIONS(4668), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6378), 35, + anon_sym_EQ, + ACTIONS(4670), 30, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -464478,13 +468115,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -464495,22 +468128,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [152507] = 5, + anon_sym_do, + anon_sym_then, + [151676] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4584), 1, + ACTIONS(7350), 1, + anon_sym_COMMA, + STATE(4327), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(4572), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6384), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -464519,7 +468153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6382), 34, + ACTIONS(5587), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -464538,7 +468172,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -464554,25 +468187,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [152564] = 5, + [151738] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4585), 1, + ACTIONS(7086), 1, + anon_sym_LBRACK, + ACTIONS(7088), 1, + anon_sym_STAR, + ACTIONS(7090), 1, + anon_sym_DOT, + ACTIONS(7092), 1, + anon_sym_QMARK, + ACTIONS(7294), 1, + anon_sym_PIPE, + STATE(4449), 1, + aux_sym_union_type_repeat1, + STATE(4573), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5911), 8, + ACTIONS(4684), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5909), 34, + anon_sym_EQ, + ACTIONS(4686), 30, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -464583,16 +468228,10 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -464603,18 +468242,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [152621] = 5, + anon_sym_do, + anon_sym_then, + [151808] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4586), 1, + STATE(4574), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5915), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -464623,8 +468263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5913), 34, - sym__line_break, + ACTIONS(5545), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -464635,14 +468274,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -464658,15 +468295,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [152678] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [151866] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4587), 1, + ACTIONS(7352), 1, + anon_sym_COMMA, + STATE(4575), 1, sym_heredoc_body, + STATE(4578), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5968), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -464675,7 +468320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5966), 34, + ACTIONS(5587), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -464694,7 +468339,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -464710,15 +468354,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [152735] = 5, + [151928] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4588), 1, + ACTIONS(7354), 1, + anon_sym_of, + STATE(4576), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5972), 8, + ACTIONS(5739), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -464727,7 +468373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5970), 34, + ACTIONS(5735), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -464762,15 +468408,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [152792] = 5, + [151988] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4589), 1, + ACTIONS(7356), 1, + anon_sym_COMMA, + STATE(4577), 1, sym_heredoc_body, + STATE(4580), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6028), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -464779,7 +468429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6026), 34, + ACTIONS(5631), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -464798,7 +468448,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -464814,15 +468463,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [152849] = 5, + [152050] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4590), 1, + ACTIONS(7356), 1, + anon_sym_COMMA, + STATE(4435), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(4578), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6076), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -464831,7 +468484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6074), 34, + ACTIONS(5631), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -464850,7 +468503,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -464866,15 +468518,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [152906] = 5, + [152112] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4591), 1, + ACTIONS(7358), 1, + anon_sym_of, + STATE(4579), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6086), 8, + ACTIONS(5725), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -464883,7 +468537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6084), 34, + ACTIONS(5721), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -464918,15 +468572,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [152963] = 5, + [152172] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4592), 1, + ACTIONS(7360), 1, + anon_sym_COMMA, + STATE(4435), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(4580), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6098), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -464935,7 +468593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6096), 34, + ACTIONS(5637), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -464954,7 +468612,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -464970,15 +468627,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [153020] = 5, + [152234] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4593), 1, + ACTIONS(7362), 1, + anon_sym_of, + STATE(4581), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6102), 8, + ACTIONS(5714), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -464987,7 +468646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6100), 34, + ACTIONS(5710), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -465022,67 +468681,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [153077] = 5, + [152294] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4594), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, + anon_sym_DOT_DOT, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, + anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7332), 1, + anon_sym_QMARK, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + ACTIONS(7352), 1, + anon_sym_COMMA, + STATE(4578), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(4582), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6268), 8, - anon_sym_DOT_DOT, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6266), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5587), 8, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, + [152392] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, + anon_sym_DOT_DOT, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7332), 1, + anon_sym_QMARK, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + ACTIONS(7356), 1, + anon_sym_COMMA, + STATE(4580), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(4583), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7320), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7326), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [153134] = 5, + ACTIONS(7340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5631), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [152490] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4595), 1, + STATE(4584), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6122), 8, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -465091,8 +468844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6120), 34, - sym__line_break, + ACTIONS(5871), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465103,14 +468855,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -465126,15 +468876,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [153191] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [152548] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4596), 1, + STATE(4585), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6130), 8, + ACTIONS(4692), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -465143,8 +468897,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6128), 34, + anon_sym_EQ, + ACTIONS(4694), 34, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465155,16 +468911,13 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -465178,15 +468931,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [153248] = 5, + anon_sym_do, + anon_sym_then, + [152606] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4597), 1, + ACTIONS(7364), 1, + anon_sym_EQ, + STATE(4586), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6142), 8, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -465195,7 +468952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6140), 34, + ACTIONS(5761), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -465230,15 +468987,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [153305] = 5, + [152666] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4598), 1, + ACTIONS(7113), 1, + anon_sym_DOT_DOT, + ACTIONS(7115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7119), 1, + anon_sym_PIPE, + ACTIONS(7121), 1, + anon_sym_CARET, + ACTIONS(7125), 1, + anon_sym_EQ_EQ, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, + anon_sym_AMP_AMP, + ACTIONS(7141), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, + sym_binary_ampersand, + STATE(4587), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7123), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7129), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7117), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7127), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7145), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7147), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6193), 10, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_end, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [152760] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4588), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6150), 8, + ACTIONS(6255), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -465247,8 +469075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6148), 34, - sym__line_break, + ACTIONS(6253), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465259,14 +469086,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -465282,15 +469107,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [153362] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [152818] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4599), 1, + STATE(4589), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(6267), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -465299,8 +469128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6419), 34, - sym__line_break, + ACTIONS(6265), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465311,14 +469139,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -465334,15 +469160,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [153419] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [152876] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4600), 1, + ACTIONS(7113), 1, + anon_sym_DOT_DOT, + ACTIONS(7115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7119), 1, + anon_sym_PIPE, + ACTIONS(7121), 1, + anon_sym_CARET, + ACTIONS(7125), 1, + anon_sym_EQ_EQ, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, + anon_sym_AMP_AMP, + ACTIONS(7141), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, + sym_binary_ampersand, + STATE(4590), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7123), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7129), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7117), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7127), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7145), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7147), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6203), 10, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_end, + anon_sym_do, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [152970] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4449), 1, + aux_sym_union_type_repeat1, + STATE(4591), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6184), 8, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -465351,8 +469254,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6182), 34, + anon_sym_EQ, + ACTIONS(4629), 33, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465363,16 +469268,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -465386,15 +469287,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [153476] = 5, + anon_sym_do, + anon_sym_then, + [153030] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4601), 1, + STATE(4592), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6188), 8, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -465403,8 +469306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6186), 34, - sym__line_break, + ACTIONS(5871), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465415,14 +469317,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -465438,15 +469338,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [153533] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [153088] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4602), 1, + STATE(4593), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6196), 8, + ACTIONS(6067), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -465455,8 +469359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6194), 34, - sym__line_break, + ACTIONS(6065), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465467,14 +469370,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -465490,15 +469391,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [153590] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [153146] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4603), 1, + STATE(4594), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6200), 8, + ACTIONS(6283), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -465507,8 +469412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6198), 34, - sym__line_break, + ACTIONS(6281), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465519,14 +469423,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -465542,15 +469444,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [153647] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [153204] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4604), 1, + STATE(4595), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6224), 8, + ACTIONS(5708), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -465559,7 +469465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6222), 34, + ACTIONS(5706), 35, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -465577,6 +469483,7 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, sym__modulo_operator, + sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -465594,15 +469501,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [153704] = 5, + [153262] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4605), 1, + STATE(4596), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6234), 8, + ACTIONS(6079), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -465611,8 +469518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6232), 34, - sym__line_break, + ACTIONS(6077), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465623,14 +469529,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -465646,15 +469550,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [153761] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [153320] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4606), 1, + STATE(4597), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6246), 8, + ACTIONS(6090), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -465663,8 +469571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6244), 34, - sym__line_break, + ACTIONS(6088), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465675,14 +469582,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -465698,15 +469603,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [153818] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [153378] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4607), 1, + STATE(4598), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6250), 8, + ACTIONS(6138), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -465715,8 +469624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6248), 34, - sym__line_break, + ACTIONS(6136), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465727,14 +469635,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -465750,15 +469656,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [153875] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [153436] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4608), 1, + STATE(4599), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6296), 8, + ACTIONS(6179), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -465767,8 +469677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6294), 34, - sym__line_break, + ACTIONS(6177), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465779,14 +469688,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -465802,15 +469709,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [153932] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [153494] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4609), 1, + STATE(4600), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6324), 8, + ACTIONS(6287), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -465819,8 +469730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6322), 34, - sym__line_break, + ACTIONS(6285), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465831,14 +469741,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -465854,15 +469762,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [153989] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [153552] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4610), 1, + STATE(4601), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6348), 8, + ACTIONS(6148), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -465871,8 +469783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6346), 34, - sym__line_break, + ACTIONS(6146), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465883,14 +469794,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -465906,15 +469815,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [154046] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [153610] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4611), 1, + STATE(4602), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6352), 8, + ACTIONS(4688), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -465923,8 +469836,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6350), 34, + anon_sym_EQ, + ACTIONS(4690), 34, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465935,14 +469850,62 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_then, + [153668] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4603), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6175), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6173), 35, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -465958,15 +469921,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [154103] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [153726] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4612), 1, + STATE(4604), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6368), 8, + ACTIONS(5973), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -465975,8 +469942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6366), 34, - sym__line_break, + ACTIONS(5971), 35, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -465987,14 +469953,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -466010,15 +469974,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [154160] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [153784] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4613), 1, + STATE(4605), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6400), 8, + ACTIONS(6219), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -466027,7 +469995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6398), 34, + ACTIONS(6217), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -466062,15 +470030,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [154217] = 5, + [153841] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4614), 1, + STATE(4606), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5738), 8, + ACTIONS(6255), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -466079,7 +470047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5736), 34, + ACTIONS(6253), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -466114,15 +470082,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [154274] = 5, + [153898] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4615), 1, + STATE(4607), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5742), 8, + ACTIONS(5885), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -466131,7 +470099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5740), 34, + ACTIONS(5883), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -466166,15 +470134,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [154331] = 5, + [153955] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4616), 1, + STATE(4608), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5746), 8, + ACTIONS(6267), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -466183,7 +470151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5744), 34, + ACTIONS(6265), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -466218,15 +470186,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [154388] = 5, + [154012] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4617), 1, + ACTIONS(7366), 1, + anon_sym_of, + STATE(4609), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5750), 8, + ACTIONS(5733), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -466235,7 +470205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5748), 34, + ACTIONS(5729), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -466254,7 +470224,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -466270,15 +470239,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [154445] = 5, + [154071] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4618), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7368), 1, + anon_sym_DOT_DOT, + ACTIONS(7370), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7372), 1, + anon_sym_end, + ACTIONS(7376), 1, + anon_sym_PIPE, + ACTIONS(7378), 1, + anon_sym_CARET, + ACTIONS(7382), 1, + anon_sym_EQ_EQ, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(7394), 1, + anon_sym_AMP_AMP, + ACTIONS(7396), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, + sym_binary_ampersand, + STATE(4610), 1, + sym_heredoc_body, + STATE(9201), 1, + aux_sym_case_repeat1, + STATE(9659), 1, + aux_sym_exhaustive_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(10531), 1, + sym_in, + STATE(11585), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7380), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7386), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7374), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7384), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7406), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7408), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [154180] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4611), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5754), 8, + ACTIONS(6283), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -466287,7 +470334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5752), 34, + ACTIONS(6281), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -466322,15 +470369,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [154502] = 5, + [154237] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4619), 1, + STATE(4612), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5758), 8, + ACTIONS(6287), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -466339,7 +470386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5756), 34, + ACTIONS(6285), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -466374,15 +470421,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [154559] = 5, + [154294] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4620), 1, + ACTIONS(7412), 1, + anon_sym_EQ, + STATE(4613), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5762), 8, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -466391,8 +470440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5760), 34, - sym__line_break, + ACTIONS(5761), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -466403,14 +470451,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -466426,15 +470471,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [154616] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [154353] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4621), 1, + STATE(4614), 1, sym_heredoc_body, + STATE(4625), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5766), 8, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -466443,9 +470493,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5764), 34, - sym__line_break, + anon_sym_EQ, + ACTIONS(4629), 32, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -466455,16 +470507,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -466478,15 +470526,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [154673] = 5, + anon_sym_do, + [154412] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4622), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + STATE(4615), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5774), 8, + ACTIONS(6001), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -466494,10 +470547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5772), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(5999), 33, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -466507,14 +470557,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -466530,15 +470577,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [154730] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [154473] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4623), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + STATE(4616), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5778), 8, + ACTIONS(6152), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -466546,10 +470601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5776), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6150), 33, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -466559,14 +470611,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -466582,512 +470631,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [154787] = 24, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [154534] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6885), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, - anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4624), 1, + STATE(4617), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7202), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(6156), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + anon_sym_AMP_STAR, + ACTIONS(6154), 33, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6604), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [154882] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6580), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4625), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7196), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7202), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7216), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7218), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6606), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [154977] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, - anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7210), 1, anon_sym_AMP_AMP, - ACTIONS(7212), 1, anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4626), 1, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [154595] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4618), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7202), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(6311), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6309), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6606), 8, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_end, - [155072] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6580), 1, anon_sym_COMMA, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4627), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7196), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7202), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7216), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7218), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6606), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [155167] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, - anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7210), 1, anon_sym_AMP_AMP, - ACTIONS(7212), 1, anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4628), 1, + [154652] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4619), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7202), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(5783), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5781), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6606), 8, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_end, - [155262] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6580), 1, anon_sym_COMMA, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7210), 1, anon_sym_AMP_AMP, - ACTIONS(7212), 1, anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4629), 1, + [154709] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4620), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7202), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(6331), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6329), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6606), 8, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_end, - [155357] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6580), 1, anon_sym_COMMA, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4630), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7196), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7202), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7216), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7218), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6606), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [155452] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [154766] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4631), 1, + STATE(4621), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6012), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -467096,7 +470862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6010), 34, + ACTIONS(6333), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -467131,517 +470897,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [155509] = 24, + [154823] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, - anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4632), 1, + STATE(4622), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7202), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(6339), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6337), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6584), 8, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_end, - [155604] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6580), 1, anon_sym_COMMA, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4633), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7196), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7202), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7216), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7218), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6584), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [155699] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, - anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7210), 1, anon_sym_AMP_AMP, - ACTIONS(7212), 1, anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4634), 1, + [154880] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4623), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7202), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(6343), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6341), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6584), 8, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_end, - [155794] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6580), 1, anon_sym_COMMA, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4635), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7196), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7202), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7216), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7218), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6584), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [155889] = 24, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [154937] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6885), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7186), 1, + ACTIONS(7368), 1, anon_sym_DOT_DOT, - ACTIONS(7188), 1, + ACTIONS(7370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, + ACTIONS(7376), 1, anon_sym_PIPE, - ACTIONS(7194), 1, + ACTIONS(7378), 1, anon_sym_CARET, - ACTIONS(7198), 1, + ACTIONS(7382), 1, anon_sym_EQ_EQ, - ACTIONS(7204), 1, + ACTIONS(7388), 1, anon_sym_AMP_STAR, - ACTIONS(7208), 1, + ACTIONS(7392), 1, anon_sym_QMARK, - ACTIONS(7210), 1, + ACTIONS(7394), 1, anon_sym_AMP_AMP, - ACTIONS(7212), 1, + ACTIONS(7396), 1, anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7220), 1, + ACTIONS(7410), 1, sym_binary_ampersand, - STATE(4636), 1, + ACTIONS(7414), 1, + anon_sym_end, + STATE(4624), 1, sym_heredoc_body, + STATE(9246), 1, + aux_sym_case_repeat1, + STATE(9694), 1, + aux_sym_exhaustive_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(10531), 1, + sym_in, + STATE(11898), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7202), 2, + ACTIONS(7386), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, + ACTIONS(7390), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(7374), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, + ACTIONS(7384), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, + ACTIONS(7408), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6584), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [155984] = 24, + [155046] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, + ACTIONS(7416), 1, anon_sym_PIPE, - ACTIONS(7194), 1, - anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4637), 1, + STATE(4625), 1, sym_heredoc_body, + STATE(4634), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7202), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(4634), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4636), 32, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6584), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [156079] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4638), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7196), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7202), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7216), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7218), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5708), 9, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - [156172] = 8, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [155107] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1721), 1, - anon_sym_COLON, - ACTIONS(5522), 1, - anon_sym_COLON_COLON, - STATE(2446), 1, - aux_sym_constant_repeat1, - STATE(4639), 1, + ACTIONS(7418), 1, + anon_sym_of, + STATE(4626), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 8, + ACTIONS(5757), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -467650,8 +471152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(4549), 31, - sym__start_of_brace_block, + ACTIONS(5753), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -467663,10 +471164,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -467677,168 +471179,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [156235] = 23, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [155166] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, - anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4640), 1, + STATE(4627), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7202), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(6446), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6444), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6144), 9, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_end, - [156328] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4641), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7196), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7202), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7216), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7218), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6152), 9, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - [156421] = 9, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [155223] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(615), 1, - sym__string_literal_start, - ACTIONS(7317), 1, - anon_sym_COLON, - STATE(3196), 1, - aux_sym_chained_string_repeat1, - STATE(3448), 1, - sym_string, - STATE(4642), 1, + ACTIONS(7420), 1, + anon_sym_of, + STATE(4628), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5733), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -467847,8 +471257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 30, - sym__start_of_brace_block, + ACTIONS(5729), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -467860,10 +471269,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -467877,16 +471287,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [156486] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [155282] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4643), 1, + ACTIONS(7422), 1, + anon_sym_of, + STATE(4629), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6008), 8, + ACTIONS(5651), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -467895,8 +471310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6006), 34, - sym__line_break, + ACTIONS(5647), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -467907,14 +471321,10 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -467930,15 +471340,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [156543] = 5, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [155341] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4644), 1, + STATE(4630), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5512), 8, + ACTIONS(6102), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -467947,7 +471361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 34, + ACTIONS(6092), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -467982,15 +471396,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [156600] = 5, + [155398] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4645), 1, + STATE(4631), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6192), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -467999,7 +471413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6190), 34, + ACTIONS(6349), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -468034,17 +471448,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [156657] = 6, + [155455] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7319), 1, - anon_sym_EQ, - STATE(4646), 1, + STATE(4632), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -468053,7 +471465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 33, + ACTIONS(5694), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -468072,6 +471484,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -468087,15 +471500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [156716] = 5, + [155512] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4647), 1, + STATE(4633), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -468104,7 +471517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5878), 34, + ACTIONS(6353), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -468139,26 +471552,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [156773] = 5, + [155569] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4648), 1, - sym_heredoc_body, + ACTIONS(7424), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5838), 8, + STATE(4634), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5836), 34, - sym__line_break, + anon_sym_EQ, + ACTIONS(4629), 32, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -468168,16 +471585,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -468191,22 +471604,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [156830] = 8, + anon_sym_do, + [155628] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1747), 1, - anon_sym_COLON, - ACTIONS(6904), 1, - anon_sym_COLON_COLON, - STATE(3641), 1, - aux_sym_constant_repeat1, - STATE(4649), 1, + STATE(4635), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 9, - anon_sym_RBRACK, + ACTIONS(6367), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -468215,8 +471622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(4549), 30, - sym__start_of_brace_block, + ACTIONS(6365), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -468227,9 +471634,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -468240,30 +471654,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [156893] = 9, + [155685] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3000), 1, - sym__string_literal_start, - ACTIONS(7321), 1, - anon_sym_COLON, - STATE(4650), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7368), 1, + anon_sym_DOT_DOT, + ACTIONS(7370), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_PIPE, + ACTIONS(7378), 1, + anon_sym_CARET, + ACTIONS(7382), 1, + anon_sym_EQ_EQ, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(7394), 1, + anon_sym_AMP_AMP, + ACTIONS(7396), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, + sym_binary_ampersand, + ACTIONS(7427), 1, + anon_sym_end, + STATE(4636), 1, sym_heredoc_body, - STATE(4971), 1, + STATE(9150), 1, + aux_sym_case_repeat1, + STATE(9569), 1, + aux_sym_exhaustive_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(10531), 1, + sym_in, + STATE(10911), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7380), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7386), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7374), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7384), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7406), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7408), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [155794] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(771), 1, + sym__string_literal_start, + STATE(4637), 1, + sym_heredoc_body, + STATE(4870), 1, aux_sym_chained_string_repeat1, - STATE(5190), 1, + STATE(5048), 1, sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 9, - anon_sym_RBRACK, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -468272,7 +471758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 29, + ACTIONS(135), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -468285,6 +471772,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -468298,21 +471786,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [156958] = 6, + anon_sym_then, + [155857] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7323), 1, - anon_sym_EQ, - STATE(4651), 1, + STATE(4638), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -468321,7 +471807,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 33, + ACTIONS(6369), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -468332,11 +471819,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -468352,20 +471842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [157017] = 6, + [155914] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7325), 1, - anon_sym_LPAREN2, - STATE(4652), 1, + STATE(4639), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(6379), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -468374,11 +471859,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4599), 32, - sym__start_of_brace_block, + ACTIONS(6377), 34, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -468388,12 +471871,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -468407,39 +471894,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [157076] = 11, + [155971] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7327), 1, - anon_sym_LBRACK, - ACTIONS(7329), 1, - anon_sym_STAR, - ACTIONS(7331), 1, - anon_sym_PIPE, - ACTIONS(7333), 1, - anon_sym_DOT, - ACTIONS(7335), 1, - anon_sym_QMARK, - STATE(4653), 1, + STATE(4640), 1, sym_heredoc_body, - STATE(4659), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 7, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4595), 29, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(6385), 34, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -468449,10 +471923,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -468463,30 +471943,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [157145] = 11, + [156028] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7327), 1, + ACTIONS(7416), 1, + anon_sym_PIPE, + ACTIONS(7429), 1, anon_sym_LBRACK, - ACTIONS(7329), 1, + ACTIONS(7431), 1, anon_sym_STAR, - ACTIONS(7331), 1, - anon_sym_PIPE, - ACTIONS(7333), 1, + ACTIONS(7433), 1, anon_sym_DOT, - ACTIONS(7335), 1, + ACTIONS(7435), 1, anon_sym_QMARK, - STATE(4654), 1, - sym_heredoc_body, - STATE(4659), 1, + STATE(4625), 1, aux_sym_union_type_repeat1, + STATE(4641), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -468494,7 +471974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4605), 29, + ACTIONS(4625), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -468524,27 +472004,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [157214] = 11, + [156097] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7437), 1, + anon_sym_COMMA, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + STATE(4642), 1, + sym_heredoc_body, + STATE(4823), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5587), 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [156194] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7327), 1, + ACTIONS(7416), 1, + anon_sym_PIPE, + ACTIONS(7429), 1, anon_sym_LBRACK, - ACTIONS(7329), 1, + ACTIONS(7431), 1, anon_sym_STAR, - ACTIONS(7331), 1, - anon_sym_PIPE, - ACTIONS(7333), 1, + ACTIONS(7433), 1, anon_sym_DOT, - ACTIONS(7335), 1, + ACTIONS(7435), 1, anon_sym_QMARK, - STATE(4655), 1, - sym_heredoc_body, - STATE(4659), 1, + STATE(4625), 1, aux_sym_union_type_repeat1, + STATE(4643), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4611), 7, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -468552,7 +472104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4613), 29, + ACTIONS(4607), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -468582,17 +472134,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [157283] = 6, + [156263] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4656), 1, + STATE(4644), 1, sym_heredoc_body, - STATE(4659), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -468601,11 +472151,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 32, - sym__start_of_brace_block, + ACTIONS(5741), 34, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -468615,12 +472163,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -468634,22 +472186,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [157342] = 8, + [156320] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(7337), 1, - anon_sym_DASH_GT, - STATE(4657), 1, + ACTIONS(7051), 1, + anon_sym_COLON, + STATE(4645), 1, sym_heredoc_body, - STATE(10032), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -468658,10 +472205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 30, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(135), 33, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -468673,8 +472217,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -468688,30 +472236,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [157405] = 6, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [156379] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7339), 1, - anon_sym_PIPE, + STATE(4646), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4658), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(4642), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 32, - sym__line_break, + ACTIONS(4644), 32, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -468723,7 +472271,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -468740,34 +472287,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [157464] = 7, + anon_sym_do, + [156436] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7331), 1, - anon_sym_PIPE, - STATE(4659), 1, + STATE(4647), 1, sym_heredoc_body, - STATE(4660), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 32, - sym__start_of_brace_block, + ACTIONS(5545), 34, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -468777,12 +472320,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -468796,31 +472343,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [157525] = 6, + [156493] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7342), 1, - anon_sym_PIPE, + STATE(4648), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4660), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(4598), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 32, - sym__start_of_brace_block, + ACTIONS(4600), 32, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -468846,100 +472389,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_LPAREN2, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [157584] = 11, + [156550] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7327), 1, - anon_sym_LBRACK, - ACTIONS(7329), 1, - anon_sym_STAR, - ACTIONS(7331), 1, - anon_sym_PIPE, - ACTIONS(7333), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7335), 1, + ACTIONS(7368), 1, + anon_sym_DOT_DOT, + ACTIONS(7370), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_PIPE, + ACTIONS(7378), 1, + anon_sym_CARET, + ACTIONS(7382), 1, + anon_sym_EQ_EQ, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7392), 1, anon_sym_QMARK, - STATE(4659), 1, - aux_sym_union_type_repeat1, - STATE(4661), 1, + ACTIONS(7394), 1, + anon_sym_AMP_AMP, + ACTIONS(7396), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, + sym_binary_ampersand, + ACTIONS(7473), 1, + anon_sym_end, + STATE(4649), 1, sym_heredoc_body, + STATE(9244), 1, + aux_sym_case_repeat1, + STATE(9556), 1, + aux_sym_exhaustive_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(10531), 1, + sym_in, + STATE(10875), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, - anon_sym_DOT_DOT, + ACTIONS(7380), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7386), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7374), 3, anon_sym_LT, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4609), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7384), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7408), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [157653] = 11, + [156659] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7327), 1, - anon_sym_LBRACK, - ACTIONS(7329), 1, - anon_sym_STAR, - ACTIONS(7331), 1, - anon_sym_PIPE, - ACTIONS(7333), 1, - anon_sym_DOT, - ACTIONS(7335), 1, - anon_sym_QMARK, - STATE(4659), 1, - aux_sym_union_type_repeat1, - STATE(4662), 1, + STATE(4650), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(4692), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4570), 29, + ACTIONS(4694), 32, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -468950,9 +472505,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -468963,18 +472520,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [157722] = 5, + [156716] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4663), 1, + STATE(4651), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 10, + ACTIONS(4676), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -468985,7 +472544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4599), 32, + ACTIONS(4678), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -469018,15 +472577,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [157779] = 5, + [156773] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4664), 1, + STATE(4652), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4561), 10, + ACTIONS(4660), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -469037,7 +472596,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4563), 32, + ACTIONS(4662), 32, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -469064,21 +472624,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [157836] = 5, + anon_sym_do, + [156830] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4665), 1, + STATE(4653), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4667), 10, + ACTIONS(4688), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -469089,7 +472648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4669), 32, + ACTIONS(4690), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -469122,15 +472681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [157893] = 5, + [156887] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4666), 1, + STATE(4654), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4651), 10, + ACTIONS(4704), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -469141,7 +472700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4653), 32, + ACTIONS(4706), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -469174,15 +472733,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [157950] = 5, + [156944] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4667), 1, + STATE(4655), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4615), 10, + ACTIONS(4664), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -469193,7 +472752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4617), 32, + ACTIONS(4666), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -469226,15 +472785,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [158007] = 5, + [157001] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4668), 1, + STATE(4656), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4647), 10, + ACTIONS(4652), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -469245,7 +472804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4649), 32, + ACTIONS(4654), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -469278,15 +472837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [158064] = 5, + [157058] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4669), 1, + STATE(4657), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4619), 10, + ACTIONS(4656), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -469297,7 +472856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4621), 32, + ACTIONS(4658), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -469330,15 +472889,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [158121] = 5, + [157115] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4670), 1, + STATE(4658), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4663), 10, + ACTIONS(6391), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6389), 34, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [157172] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4659), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4716), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -469349,7 +472960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4665), 32, + ACTIONS(4718), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -469382,15 +472993,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [158178] = 5, + [157229] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4671), 1, + STATE(4660), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4675), 10, + ACTIONS(4696), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -469401,7 +473012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4677), 32, + ACTIONS(4698), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -469434,15 +473045,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [158235] = 5, + [157286] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4672), 1, + STATE(4661), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4679), 10, + ACTIONS(4680), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -469453,7 +473064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4681), 32, + ACTIONS(4682), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -469486,15 +473097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [158292] = 5, + [157343] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4673), 1, + STATE(4662), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4631), 10, + ACTIONS(4672), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -469505,7 +473116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4633), 32, + ACTIONS(4674), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -469538,15 +473149,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [158349] = 5, + [157400] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4674), 1, + STATE(4663), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6395), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6393), 34, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [157457] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4664), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4671), 10, + ACTIONS(4708), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -469557,7 +473220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4673), 32, + ACTIONS(4710), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -469590,16 +473253,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [158406] = 5, + [157514] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4675), 1, + STATE(4665), 1, sym_heredoc_body, + STATE(4794), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4655), 10, - anon_sym_RBRACK, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -469609,8 +473273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4657), 32, - sym__start_of_brace_block, + ACTIONS(4629), 32, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -469622,6 +473286,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -469638,31 +473303,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [158463] = 5, + anon_sym_then, + [157573] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4676), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7368), 1, + anon_sym_DOT_DOT, + ACTIONS(7370), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_PIPE, + ACTIONS(7378), 1, + anon_sym_CARET, + ACTIONS(7382), 1, + anon_sym_EQ_EQ, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(7394), 1, + anon_sym_AMP_AMP, + ACTIONS(7396), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, + sym_binary_ampersand, + ACTIONS(7475), 1, + anon_sym_end, + STATE(4666), 1, sym_heredoc_body, + STATE(9173), 1, + aux_sym_case_repeat1, + STATE(9405), 1, + aux_sym_exhaustive_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(10531), 1, + sym_in, + STATE(11031), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4635), 10, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7380), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7386), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7374), 3, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7384), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7406), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7408), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [157682] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7477), 1, anon_sym_PIPE, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(4667), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4637), 32, - sym__start_of_brace_block, + ACTIONS(4629), 32, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -469674,6 +473417,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -469690,19 +473434,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [158520] = 5, + anon_sym_then, + [157741] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4677), 1, + STATE(4668), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4643), 10, + ACTIONS(4700), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -469713,7 +473456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4645), 32, + ACTIONS(4702), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -469746,15 +473489,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [158577] = 5, + [157798] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4678), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, + anon_sym_DOT_DOT, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, + anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7332), 1, + anon_sym_QMARK, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4669), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6652), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [157893] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4670), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4623), 10, + ACTIONS(4712), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -469765,7 +473579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4625), 32, + ACTIONS(4714), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -469798,15 +473612,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [158634] = 5, + [157950] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4679), 1, + STATE(4671), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4627), 10, + ACTIONS(4720), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -469817,7 +473631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4629), 32, + ACTIONS(4722), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -469850,16 +473664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [158691] = 5, + [158007] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4680), 1, + STATE(4672), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4659), 10, - anon_sym_RBRACK, + ACTIONS(5897), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -469868,9 +473681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4661), 32, - sym__start_of_brace_block, + ACTIONS(5895), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -469881,12 +473693,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -469898,99 +473714,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [158748] = 11, + [158064] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7232), 1, - anon_sym_LBRACK, - ACTIONS(7234), 1, - anon_sym_STAR, - ACTIONS(7238), 1, - anon_sym_DOT, - ACTIONS(7240), 1, - anon_sym_QMARK, - ACTIONS(7345), 1, - anon_sym_PIPE, - STATE(4681), 1, + STATE(4673), 1, sym_heredoc_body, - STATE(4824), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4683), 8, - anon_sym_RBRACK, + ACTIONS(5901), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4685), 28, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [158817] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7232), 1, - anon_sym_LBRACK, - ACTIONS(7234), 1, - anon_sym_STAR, - ACTIONS(7238), 1, - anon_sym_DOT, - ACTIONS(7240), 1, - anon_sym_QMARK, - ACTIONS(7345), 1, anon_sym_PIPE, - STATE(4682), 1, - sym_heredoc_body, - STATE(4824), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4639), 8, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4641), 28, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(5899), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -470001,9 +473745,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -470014,179 +473765,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [158886] = 31, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7347), 1, - anon_sym_DOT_DOT, - ACTIONS(7349), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7351), 1, - anon_sym_end, - ACTIONS(7355), 1, - anon_sym_PIPE, - ACTIONS(7357), 1, - anon_sym_CARET, - ACTIONS(7361), 1, - anon_sym_EQ_EQ, - ACTIONS(7367), 1, - anon_sym_AMP_STAR, - ACTIONS(7371), 1, - anon_sym_QMARK, - ACTIONS(7373), 1, - anon_sym_AMP_AMP, - ACTIONS(7375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(7379), 1, - anon_sym_when, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7389), 1, - sym_binary_ampersand, - STATE(4683), 1, - sym_heredoc_body, - STATE(9134), 1, - aux_sym_case_repeat1, - STATE(9349), 1, - aux_sym_exhaustive_case_repeat1, - STATE(9746), 1, - sym_when, - STATE(10443), 1, - sym_in, - STATE(11954), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7359), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7365), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7363), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7385), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7387), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [158995] = 31, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7347), 1, - anon_sym_DOT_DOT, - ACTIONS(7349), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, - anon_sym_PIPE, - ACTIONS(7357), 1, - anon_sym_CARET, - ACTIONS(7361), 1, - anon_sym_EQ_EQ, - ACTIONS(7367), 1, - anon_sym_AMP_STAR, - ACTIONS(7371), 1, anon_sym_QMARK, - ACTIONS(7373), 1, anon_sym_AMP_AMP, - ACTIONS(7375), 1, anon_sym_PIPE_PIPE, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(7379), 1, - anon_sym_when, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7389), 1, - sym_binary_ampersand, - ACTIONS(7391), 1, - anon_sym_end, - STATE(4684), 1, - sym_heredoc_body, - STATE(9113), 1, - aux_sym_case_repeat1, - STATE(9377), 1, - aux_sym_exhaustive_case_repeat1, - STATE(9746), 1, - sym_when, - STATE(10443), 1, - sym_in, - STATE(10804), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7359), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7365), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7363), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7385), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7387), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [159104] = 7, + [158121] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7393), 1, - anon_sym_COMMA, - STATE(4685), 1, + STATE(4674), 1, sym_heredoc_body, - STATE(4687), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -470195,7 +473785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 32, + ACTIONS(6345), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -470206,10 +473797,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -470225,31 +473820,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [159165] = 7, + [158178] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7395), 1, - anon_sym_COMMA, - STATE(4686), 1, + ACTIONS(7218), 1, + anon_sym_LBRACK, + ACTIONS(7220), 1, + anon_sym_STAR, + ACTIONS(7224), 1, + anon_sym_DOT, + ACTIONS(7226), 1, + anon_sym_QMARK, + ACTIONS(7480), 1, + anon_sym_PIPE, + STATE(4675), 1, sym_heredoc_body, - STATE(4688), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(4776), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(4668), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5585), 32, + anon_sym_EQ, + ACTIONS(4670), 28, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -470261,11 +473862,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -470276,34 +473874,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [159226] = 7, + anon_sym_do, + [158247] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7395), 1, - anon_sym_COMMA, - STATE(4687), 1, + ACTIONS(7218), 1, + anon_sym_LBRACK, + ACTIONS(7220), 1, + anon_sym_STAR, + ACTIONS(7224), 1, + anon_sym_DOT, + ACTIONS(7226), 1, + anon_sym_QMARK, + ACTIONS(7480), 1, + anon_sym_PIPE, + STATE(4676), 1, sym_heredoc_body, - STATE(4689), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(4776), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(4684), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5585), 32, + anon_sym_EQ, + ACTIONS(4686), 28, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -470315,11 +473920,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -470330,25 +473932,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [159287] = 7, + anon_sym_do, + [158316] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7397), 1, - anon_sym_COMMA, - STATE(4688), 1, + STATE(4677), 1, sym_heredoc_body, - STATE(4689), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -470357,7 +473953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 32, + ACTIONS(6397), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -470368,10 +473965,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -470387,21 +473988,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [159348] = 6, + [158373] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7399), 1, - anon_sym_COMMA, + STATE(4678), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4689), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5713), 8, + ACTIONS(6410), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -470410,7 +474005,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 32, + ACTIONS(6408), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -470421,10 +474017,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -470440,38 +474040,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [159407] = 11, + [158430] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7402), 1, - anon_sym_LBRACK, - ACTIONS(7404), 1, - anon_sym_STAR, - ACTIONS(7406), 1, - anon_sym_PIPE, - ACTIONS(7408), 1, - anon_sym_DOT, - ACTIONS(7410), 1, - anon_sym_QMARK, - STATE(4690), 1, + STATE(4679), 1, sym_heredoc_body, - STATE(4746), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(6414), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4609), 29, + anon_sym_DOT, + ACTIONS(6412), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -470483,11 +474069,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -470498,187 +474089,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [159476] = 24, + [158487] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(6885), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7186), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7188), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7194), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7198), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7204), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7208), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7210), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7212), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(4691), 1, + ACTIONS(7482), 1, + anon_sym_COMMA, + STATE(4680), 1, sym_heredoc_body, + STATE(4824), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7202), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6578), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(5631), 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_end, - [159571] = 31, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [158584] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7347), 1, + ACTIONS(7368), 1, anon_sym_DOT_DOT, - ACTIONS(7349), 1, + ACTIONS(7370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, + ACTIONS(7376), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(7378), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(7382), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(7388), 1, anon_sym_AMP_STAR, - ACTIONS(7371), 1, + ACTIONS(7392), 1, anon_sym_QMARK, - ACTIONS(7373), 1, + ACTIONS(7394), 1, anon_sym_AMP_AMP, - ACTIONS(7375), 1, + ACTIONS(7396), 1, anon_sym_PIPE_PIPE, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(7379), 1, + ACTIONS(7400), 1, anon_sym_when, - ACTIONS(7381), 1, + ACTIONS(7402), 1, anon_sym_in, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(7410), 1, sym_binary_ampersand, - ACTIONS(7412), 1, + ACTIONS(7484), 1, anon_sym_end, - STATE(4692), 1, + STATE(4681), 1, sym_heredoc_body, - STATE(9141), 1, + STATE(9156), 1, aux_sym_case_repeat1, - STATE(9466), 1, + STATE(9439), 1, aux_sym_exhaustive_case_repeat1, - STATE(9746), 1, + STATE(9838), 1, sym_when, - STATE(10443), 1, + STATE(10531), 1, sym_in, - STATE(11935), 1, + STATE(10903), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, + ACTIONS(7386), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(7390), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(7374), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(7384), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7408), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [159680] = 11, + [158693] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7402), 1, - anon_sym_LBRACK, - ACTIONS(7404), 1, - anon_sym_STAR, - ACTIONS(7406), 1, - anon_sym_PIPE, - ACTIONS(7408), 1, - anon_sym_DOT, - ACTIONS(7410), 1, - anon_sym_QMARK, - STATE(4693), 1, + STATE(4682), 1, sym_heredoc_body, - STATE(4746), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(6418), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 29, + anon_sym_DOT, + ACTIONS(6416), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -470690,11 +474271,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -470705,18 +474291,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [159749] = 5, + [158750] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4694), 1, + STATE(4683), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6422), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -470725,7 +474311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 34, + ACTIONS(6420), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -470760,15 +474346,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [159806] = 5, + [158807] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4695), 1, + STATE(4684), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5850), 8, + ACTIONS(6426), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -470777,7 +474363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5848), 34, + ACTIONS(6424), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -470812,15 +474398,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [159863] = 5, + [158864] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4696), 1, + STATE(4685), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5854), 8, + ACTIONS(6430), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -470829,7 +474415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5852), 34, + ACTIONS(6428), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -470864,15 +474450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [159920] = 5, + [158921] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4697), 1, + STATE(4686), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(6434), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -470881,7 +474467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5872), 34, + ACTIONS(6432), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -470916,15 +474502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [159977] = 5, + [158978] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4698), 1, + STATE(4687), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5887), 8, + ACTIONS(6438), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -470933,7 +474519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5885), 34, + ACTIONS(6436), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -470968,15 +474554,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [160034] = 5, + [159035] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4699), 1, + ACTIONS(7486), 1, + anon_sym_of, + STATE(4688), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5891), 8, + ACTIONS(5714), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -470985,7 +474573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5889), 34, + ACTIONS(5710), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -471004,137 +474592,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [160091] = 31, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7347), 1, - anon_sym_DOT_DOT, - ACTIONS(7349), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, - anon_sym_PIPE, - ACTIONS(7357), 1, - anon_sym_CARET, - ACTIONS(7361), 1, - anon_sym_EQ_EQ, - ACTIONS(7367), 1, - anon_sym_AMP_STAR, - ACTIONS(7371), 1, - anon_sym_QMARK, - ACTIONS(7373), 1, - anon_sym_AMP_AMP, - ACTIONS(7375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(7379), 1, - anon_sym_when, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7389), 1, - sym_binary_ampersand, - ACTIONS(7414), 1, - anon_sym_end, - STATE(4700), 1, - sym_heredoc_body, - STATE(9109), 1, - aux_sym_case_repeat1, - STATE(9585), 1, - aux_sym_exhaustive_case_repeat1, - STATE(9746), 1, - sym_when, - STATE(10443), 1, - sym_in, - STATE(11403), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7359), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7365), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7363), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7385), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7387), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [160200] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4701), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5935), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5933), 34, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -471150,15 +474607,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [160257] = 5, + [159094] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4702), 1, + STATE(4689), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5945), 8, + ACTIONS(5965), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -471167,7 +474624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5943), 34, + ACTIONS(5963), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -471202,93 +474659,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [160314] = 31, + [159151] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7347), 1, + ACTIONS(7368), 1, anon_sym_DOT_DOT, - ACTIONS(7349), 1, + ACTIONS(7370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, + ACTIONS(7376), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(7378), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(7382), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(7388), 1, anon_sym_AMP_STAR, - ACTIONS(7371), 1, + ACTIONS(7392), 1, anon_sym_QMARK, - ACTIONS(7373), 1, + ACTIONS(7394), 1, anon_sym_AMP_AMP, - ACTIONS(7375), 1, + ACTIONS(7396), 1, anon_sym_PIPE_PIPE, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(7379), 1, + ACTIONS(7400), 1, anon_sym_when, - ACTIONS(7381), 1, + ACTIONS(7402), 1, anon_sym_in, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(7410), 1, sym_binary_ampersand, - ACTIONS(7416), 1, + ACTIONS(7488), 1, anon_sym_end, - STATE(4703), 1, + STATE(4690), 1, sym_heredoc_body, - STATE(9163), 1, + STATE(9159), 1, aux_sym_case_repeat1, - STATE(9340), 1, + STATE(9557), 1, aux_sym_exhaustive_case_repeat1, - STATE(9746), 1, + STATE(9838), 1, sym_when, - STATE(10443), 1, + STATE(10531), 1, sym_in, - STATE(11144), 1, + STATE(10876), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, + ACTIONS(7386), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(7390), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(7374), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(7384), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7408), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [160423] = 5, + [159260] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4704), 1, + STATE(4691), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(6005), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -471297,7 +474754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5955), 34, + ACTIONS(6003), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -471332,15 +474789,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [160480] = 5, + [159317] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4705), 1, + STATE(4692), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5976), 8, + ACTIONS(5801), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -471349,7 +474806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5974), 34, + ACTIONS(5799), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -471384,15 +474841,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [160537] = 5, + [159374] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4706), 1, + STATE(4693), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5980), 8, + ACTIONS(5917), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -471401,7 +474858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5978), 34, + ACTIONS(5915), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -471436,15 +474893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [160594] = 5, + [159431] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4707), 1, + STATE(4694), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5984), 8, + ACTIONS(5955), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -471453,7 +474910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5982), 34, + ACTIONS(5953), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -471488,348 +474945,448 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [160651] = 5, + [159488] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4708), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, + anon_sym_DOT_DOT, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, + anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7332), 1, + anon_sym_QMARK, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4695), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5996), 8, - anon_sym_DOT_DOT, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5994), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6612), 8, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [160708] = 31, + [159583] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6996), 1, anon_sym_DOT, - ACTIONS(7347), 1, + ACTIONS(7310), 1, anon_sym_DOT_DOT, - ACTIONS(7349), 1, + ACTIONS(7312), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, + ACTIONS(7316), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(7318), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(7322), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(7328), 1, anon_sym_AMP_STAR, - ACTIONS(7371), 1, + ACTIONS(7332), 1, anon_sym_QMARK, - ACTIONS(7373), 1, + ACTIONS(7334), 1, anon_sym_AMP_AMP, - ACTIONS(7375), 1, + ACTIONS(7336), 1, anon_sym_PIPE_PIPE, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(7379), 1, - anon_sym_when, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(7383), 1, + ACTIONS(7338), 1, sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(7344), 1, sym_binary_ampersand, - ACTIONS(7418), 1, - anon_sym_end, - STATE(4709), 1, + STATE(4696), 1, sym_heredoc_body, - STATE(9117), 1, - aux_sym_case_repeat1, - STATE(9372), 1, - aux_sym_exhaustive_case_repeat1, - STATE(9746), 1, - sym_when, - STATE(10443), 1, - sym_in, - STATE(10732), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7320), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, + ACTIONS(7326), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(7330), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(7314), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(7324), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [160817] = 25, + ACTIONS(6612), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [159678] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7393), 1, + ACTIONS(6614), 1, anon_sym_COMMA, - ACTIONS(7420), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7312), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7316), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7318), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7322), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7328), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7332), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7334), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7336), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, sym_binary_ampersand, - STATE(4687), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4710), 1, + STATE(4697), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7320), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7326), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7330), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7314), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7324), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5570), 7, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(6612), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [160914] = 6, + [159773] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7014), 1, - anon_sym_COLON, - STATE(4711), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, + anon_sym_DOT_DOT, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, + anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7332), 1, + anon_sym_QMARK, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4698), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, - anon_sym_DOT_DOT, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(133), 33, - sym__start_of_index_operator, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6612), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [159868] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6614), 1, anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, + anon_sym_DOT_DOT, + ACTIONS(7312), 1, anon_sym_DOT_DOT_DOT, - anon_sym_end, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7332), 1, + anon_sym_QMARK, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4699), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7320), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7326), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [160973] = 31, + ACTIONS(7340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6612), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [159963] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7347), 1, + ACTIONS(7368), 1, anon_sym_DOT_DOT, - ACTIONS(7349), 1, + ACTIONS(7370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, + ACTIONS(7376), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(7378), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(7382), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(7388), 1, anon_sym_AMP_STAR, - ACTIONS(7371), 1, + ACTIONS(7392), 1, anon_sym_QMARK, - ACTIONS(7373), 1, + ACTIONS(7394), 1, anon_sym_AMP_AMP, - ACTIONS(7375), 1, + ACTIONS(7396), 1, anon_sym_PIPE_PIPE, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(7379), 1, + ACTIONS(7400), 1, anon_sym_when, - ACTIONS(7381), 1, + ACTIONS(7402), 1, anon_sym_in, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(7410), 1, sym_binary_ampersand, - ACTIONS(7454), 1, + ACTIONS(7490), 1, anon_sym_end, - STATE(4712), 1, + STATE(4700), 1, sym_heredoc_body, - STATE(9150), 1, + STATE(9239), 1, aux_sym_case_repeat1, - STATE(9454), 1, + STATE(9502), 1, aux_sym_exhaustive_case_repeat1, - STATE(9746), 1, + STATE(9838), 1, sym_when, - STATE(10443), 1, + STATE(10531), 1, sym_in, - STATE(11619), 1, + STATE(12004), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, + ACTIONS(7386), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(7390), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(7374), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(7384), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7408), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [161082] = 5, + [160072] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4713), 1, + STATE(4701), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6020), 8, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -471838,7 +475395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6018), 34, + ACTIONS(6195), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -471873,15 +475430,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [161139] = 5, + [160129] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4714), 1, + ACTIONS(7492), 1, + anon_sym_of, + STATE(4702), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6024), 8, + ACTIONS(5651), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -471890,7 +475449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6022), 34, + ACTIONS(5647), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -471909,7 +475468,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -471925,15 +475483,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [161196] = 5, + [160188] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4715), 1, + STATE(4703), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(6164), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -471942,7 +475500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 34, + ACTIONS(6162), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -471977,15 +475535,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [161253] = 5, + [160245] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4716), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7338), 1, + sym__start_of_index_operator, + STATE(4704), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(6001), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -471993,10 +475555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6104), 34, + ACTIONS(5999), 33, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -472029,15 +475589,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [161310] = 5, + [160306] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4717), 1, + ACTIONS(6063), 1, + anon_sym_DOT_DOT, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, + anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4705), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6061), 11, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, + [160395] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7338), 1, + sym__start_of_index_operator, + STATE(4706), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6152), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -472045,10 +475677,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6104), 34, + ACTIONS(6150), 33, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -472081,15 +475711,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [161367] = 5, + [160456] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4718), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7338), 1, + sym__start_of_index_operator, + STATE(4707), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6134), 8, + ACTIONS(6156), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -472097,10 +475731,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6132), 34, + ACTIONS(6154), 33, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -472133,15 +475765,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [161424] = 5, + [160517] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4719), 1, + STATE(4708), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(5837), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -472150,7 +475782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 34, + ACTIONS(5835), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -472185,15 +475817,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [161481] = 5, + [160574] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4720), 1, + STATE(4709), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(6059), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -472202,7 +475834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 34, + ACTIONS(6057), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -472237,15 +475869,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [161538] = 5, + [160631] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4721), 1, + STATE(4710), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(6470), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -472254,7 +475886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 34, + ACTIONS(6468), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -472289,15 +475921,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [161595] = 5, + [160688] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4722), 1, + STATE(4711), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -472306,7 +475938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 34, + ACTIONS(6381), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -472341,15 +475973,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [161652] = 5, + [160745] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4723), 1, + STATE(4712), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6212), 8, + ACTIONS(6450), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -472358,7 +475990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6210), 34, + ACTIONS(6448), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -472393,95 +476025,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [161709] = 31, + [160802] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7347), 1, - anon_sym_DOT_DOT, - ACTIONS(7349), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, - anon_sym_PIPE, - ACTIONS(7357), 1, - anon_sym_CARET, - ACTIONS(7361), 1, - anon_sym_EQ_EQ, - ACTIONS(7367), 1, - anon_sym_AMP_STAR, - ACTIONS(7371), 1, - anon_sym_QMARK, - ACTIONS(7373), 1, - anon_sym_AMP_AMP, - ACTIONS(7375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(7379), 1, - anon_sym_when, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7389), 1, - sym_binary_ampersand, - ACTIONS(7456), 1, - anon_sym_end, - STATE(4724), 1, + STATE(4713), 1, sym_heredoc_body, - STATE(9129), 1, - aux_sym_case_repeat1, - STATE(9471), 1, - aux_sym_exhaustive_case_repeat1, - STATE(9746), 1, - sym_when, - STATE(10443), 1, - sym_in, - STATE(10563), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7365), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(5805), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5803), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - [161818] = 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [160859] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7458), 1, - anon_sym_of, - STATE(4725), 1, + STATE(4714), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5660), 8, + ACTIONS(5821), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -472490,7 +476094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5656), 33, + ACTIONS(5819), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -472509,6 +476113,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -472524,165 +476129,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [161877] = 25, + [160916] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7395), 1, + ACTIONS(6614), 1, anon_sym_COMMA, - ACTIONS(7420), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7312), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7316), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7318), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7322), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7328), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7332), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7334), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7336), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, sym_binary_ampersand, - STATE(4688), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4726), 1, + STATE(4715), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7320), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7326), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7330), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7314), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7324), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5585), 7, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, + ACTIONS(6612), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [161974] = 31, + [161011] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(1729), 1, + anon_sym_COLON, + ACTIONS(6957), 1, + anon_sym_COLON_COLON, + STATE(3617), 1, + aux_sym_constant_repeat1, + STATE(4716), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4584), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(7347), 1, + ACTIONS(4586), 30, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [161074] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(3037), 1, + sym__string_literal_start, + ACTIONS(7494), 1, + anon_sym_COLON, + STATE(4717), 1, + sym_heredoc_body, + STATE(5039), 1, + aux_sym_chained_string_repeat1, + STATE(5218), 1, + sym_string, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(157), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(135), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [161139] = 31, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7368), 1, anon_sym_DOT_DOT, - ACTIONS(7349), 1, + ACTIONS(7370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, + ACTIONS(7376), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(7378), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(7382), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(7388), 1, anon_sym_AMP_STAR, - ACTIONS(7371), 1, + ACTIONS(7392), 1, anon_sym_QMARK, - ACTIONS(7373), 1, + ACTIONS(7394), 1, anon_sym_AMP_AMP, - ACTIONS(7375), 1, + ACTIONS(7396), 1, anon_sym_PIPE_PIPE, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(7379), 1, + ACTIONS(7400), 1, anon_sym_when, - ACTIONS(7381), 1, + ACTIONS(7402), 1, anon_sym_in, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(7410), 1, sym_binary_ampersand, - ACTIONS(7460), 1, + ACTIONS(7496), 1, anon_sym_end, - STATE(4727), 1, + STATE(4718), 1, sym_heredoc_body, - STATE(9142), 1, + STATE(9190), 1, aux_sym_case_repeat1, - STATE(9500), 1, + STATE(9586), 1, aux_sym_exhaustive_case_repeat1, - STATE(9746), 1, + STATE(9838), 1, sym_when, - STATE(10443), 1, + STATE(10531), 1, sym_in, - STATE(10823), 1, + STATE(11010), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, + ACTIONS(7386), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(7390), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(7374), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(7384), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7408), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [162083] = 5, + [161248] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4728), 1, + STATE(4719), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6216), 8, + ACTIONS(5845), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -472691,7 +476406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6214), 34, + ACTIONS(5843), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -472726,15 +476441,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [162140] = 5, + [161305] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4729), 1, + STATE(4720), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(6179), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -472743,7 +476458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 34, + ACTIONS(6177), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -472778,15 +476493,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [162197] = 5, + [161362] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4730), 1, + STATE(4721), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6238), 8, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -472795,7 +476510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6236), 34, + ACTIONS(5903), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -472830,119 +476545,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [162254] = 5, + [161419] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4731), 1, + ACTIONS(5977), 1, + anon_sym_DOT_DOT, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, + anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4722), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6254), 8, - anon_sym_DOT_DOT, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6252), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5975), 11, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_QMARK, + [161508] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, + anon_sym_DOT_DOT, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7332), 1, anon_sym_QMARK, + ACTIONS(7334), 1, anon_sym_AMP_AMP, + ACTIONS(7336), 1, anon_sym_PIPE_PIPE, - [162311] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4732), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4723), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5907), 8, - anon_sym_DOT_DOT, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5905), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6092), 9, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [162368] = 5, + [161601] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4733), 1, + STATE(4724), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -472951,7 +476700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 34, + ACTIONS(5747), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -472986,145 +476735,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [162425] = 5, + [161658] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4734), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, + anon_sym_DOT_DOT, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, + anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7332), 1, + anon_sym_QMARK, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4725), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6272), 8, - anon_sym_DOT_DOT, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6270), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6193), 9, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, + [161751] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, + anon_sym_DOT_DOT, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7332), 1, anon_sym_QMARK, + ACTIONS(7334), 1, anon_sym_AMP_AMP, + ACTIONS(7336), 1, anon_sym_PIPE_PIPE, - [162482] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4735), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4726), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6276), 8, - anon_sym_DOT_DOT, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6274), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6203), 9, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [162539] = 5, + [161844] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4736), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7338), 1, + sym__start_of_index_operator, + STATE(4727), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6280), 8, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6259), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6278), 34, + ACTIONS(6257), 27, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -473138,19 +476929,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [162596] = 5, + [161911] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4737), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7338), 1, + sym__start_of_index_operator, + STATE(4728), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6284), 8, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6295), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -473158,16 +476955,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6282), 34, + ACTIONS(6293), 31, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -473190,19 +476984,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [162653] = 5, + [161974] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4738), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7338), 1, + sym__start_of_index_operator, + STATE(4729), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6288), 8, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -473210,16 +477010,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6286), 34, + ACTIONS(6313), 31, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -473242,358 +477039,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [162710] = 6, + [162037] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7462), 1, - anon_sym_of, - STATE(4739), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7338), 1, + sym__start_of_index_operator, + STATE(4730), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5702), 8, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6327), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5698), 33, + ACTIONS(6325), 21, sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [162769] = 5, + [162108] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4740), 1, + ACTIONS(6442), 1, + anon_sym_DOT_DOT, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, + anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4731), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6292), 8, - anon_sym_DOT_DOT, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6290), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6440), 11, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [162826] = 31, + [162197] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(6996), 1, anon_sym_DOT, - ACTIONS(7347), 1, - anon_sym_DOT_DOT, - ACTIONS(7349), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, + ACTIONS(7316), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(7318), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(7322), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(7328), 1, anon_sym_AMP_STAR, - ACTIONS(7371), 1, - anon_sym_QMARK, - ACTIONS(7373), 1, - anon_sym_AMP_AMP, - ACTIONS(7375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(7379), 1, - anon_sym_when, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(7383), 1, + ACTIONS(7338), 1, sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(7344), 1, sym_binary_ampersand, - ACTIONS(7464), 1, - anon_sym_end, - STATE(4741), 1, + STATE(4732), 1, sym_heredoc_body, - STATE(9169), 1, - aux_sym_case_repeat1, - STATE(9525), 1, - aux_sym_exhaustive_case_repeat1, - STATE(9746), 1, - sym_when, - STATE(10443), 1, - sym_in, - STATE(11055), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7320), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(7330), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(5817), 4, + anon_sym_DOT_DOT, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(7324), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [162935] = 5, + ACTIONS(5815), 15, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [162278] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4742), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4733), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6308), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6306), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6263), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6261), 20, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [162992] = 31, + [162351] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(6996), 1, anon_sym_DOT, - ACTIONS(7347), 1, - anon_sym_DOT_DOT, - ACTIONS(7349), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, - anon_sym_PIPE, - ACTIONS(7357), 1, - anon_sym_CARET, - ACTIONS(7361), 1, - anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(7328), 1, anon_sym_AMP_STAR, - ACTIONS(7371), 1, - anon_sym_QMARK, - ACTIONS(7373), 1, - anon_sym_AMP_AMP, - ACTIONS(7375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(7379), 1, - anon_sym_when, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(7383), 1, + ACTIONS(7338), 1, sym__start_of_index_operator, - ACTIONS(7389), 1, - sym_binary_ampersand, - ACTIONS(7466), 1, - anon_sym_end, - STATE(4743), 1, + STATE(4734), 1, sym_heredoc_body, - STATE(9166), 1, - aux_sym_case_repeat1, - STATE(9558), 1, - aux_sym_exhaustive_case_repeat1, - STATE(9746), 1, - sym_when, - STATE(10443), 1, - sym_in, - STATE(11296), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7365), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(7330), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7363), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [163101] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4744), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6316), 8, + ACTIONS(5869), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6314), 34, + ACTIONS(5867), 23, sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -473607,281 +477348,281 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [163158] = 5, + [162420] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4745), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, + anon_sym_CARET, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4735), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6304), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6302), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6134), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6132), 19, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [163215] = 7, + [162497] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7406), 1, + ACTIONS(6047), 1, + anon_sym_DOT_DOT, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7316), 1, anon_sym_PIPE, - STATE(4658), 1, - aux_sym_union_type_repeat1, - STATE(4746), 1, + ACTIONS(7318), 1, + anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4736), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, - anon_sym_DOT_DOT, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, anon_sym_LT, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 32, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6045), 13, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + anon_sym_end, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [163276] = 31, + [162582] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7347), 1, + ACTIONS(6215), 1, anon_sym_DOT_DOT, - ACTIONS(7349), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7316), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(7318), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(7322), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(7328), 1, anon_sym_AMP_STAR, - ACTIONS(7371), 1, - anon_sym_QMARK, - ACTIONS(7373), 1, + ACTIONS(7334), 1, anon_sym_AMP_AMP, - ACTIONS(7375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(7379), 1, - anon_sym_when, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(7383), 1, + ACTIONS(7338), 1, sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(7344), 1, sym_binary_ampersand, - ACTIONS(7468), 1, - anon_sym_end, - STATE(4747), 1, + STATE(4737), 1, sym_heredoc_body, - STATE(9125), 1, - aux_sym_case_repeat1, - STATE(9598), 1, - aux_sym_exhaustive_case_repeat1, - STATE(9746), 1, - sym_when, - STATE(10443), 1, - sym_in, - STATE(11581), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7320), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, + ACTIONS(7326), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(7330), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(7314), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(7324), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [163385] = 31, + ACTIONS(6213), 12, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + [162669] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7347), 1, + ACTIONS(5981), 1, anon_sym_DOT_DOT, - ACTIONS(7349), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7316), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(7318), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(7322), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(7328), 1, anon_sym_AMP_STAR, - ACTIONS(7371), 1, - anon_sym_QMARK, - ACTIONS(7373), 1, + ACTIONS(7334), 1, anon_sym_AMP_AMP, - ACTIONS(7375), 1, + ACTIONS(7336), 1, anon_sym_PIPE_PIPE, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(7379), 1, - anon_sym_when, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(7383), 1, + ACTIONS(7338), 1, sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(7344), 1, sym_binary_ampersand, - ACTIONS(7470), 1, - anon_sym_end, - STATE(4748), 1, + STATE(4738), 1, sym_heredoc_body, - STATE(9179), 1, - aux_sym_case_repeat1, - STATE(9325), 1, - aux_sym_exhaustive_case_repeat1, - STATE(9746), 1, - sym_when, - STATE(10443), 1, - sym_in, - STATE(11816), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7320), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, + ACTIONS(7326), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(7330), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(7314), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(7324), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [163494] = 5, + ACTIONS(5979), 11, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, + [162758] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4749), 1, + STATE(4739), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(6363), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -473890,7 +477631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 34, + ACTIONS(6361), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -473925,15 +477666,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [163551] = 5, + [162815] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4750), 1, + STATE(4740), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(6454), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -473942,7 +477683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 34, + ACTIONS(6452), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -473977,67 +477718,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [163608] = 5, + [162872] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4751), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, + anon_sym_DOT_DOT, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, + anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7332), 1, + anon_sym_QMARK, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4741), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6328), 8, - anon_sym_DOT_DOT, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6326), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5779), 9, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, + [162965] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, + anon_sym_DOT_DOT, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7332), 1, + anon_sym_QMARK, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4742), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7320), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7326), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [163665] = 5, + ACTIONS(7340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5825), 9, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, + [163058] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4752), 1, + STATE(4743), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6332), 8, + ACTIONS(6466), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -474046,7 +477875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6330), 34, + ACTIONS(6464), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -474081,15 +477910,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [163722] = 5, + [163115] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4753), 1, + STATE(4744), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6336), 8, + ACTIONS(6406), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -474098,7 +477927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6334), 34, + ACTIONS(6404), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -474133,15 +477962,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [163779] = 5, + [163172] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4754), 1, + STATE(4745), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6340), 8, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -474150,7 +477979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6338), 34, + ACTIONS(6199), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -474185,15 +478014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [163836] = 5, + [163229] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4755), 1, + STATE(4746), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6344), 8, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -474202,7 +478031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6342), 34, + ACTIONS(6321), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -474237,93 +478066,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [163893] = 31, + [163286] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7347), 1, + ACTIONS(7368), 1, anon_sym_DOT_DOT, - ACTIONS(7349), 1, + ACTIONS(7370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, + ACTIONS(7376), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(7378), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(7382), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(7388), 1, anon_sym_AMP_STAR, - ACTIONS(7371), 1, + ACTIONS(7392), 1, anon_sym_QMARK, - ACTIONS(7373), 1, + ACTIONS(7394), 1, anon_sym_AMP_AMP, - ACTIONS(7375), 1, + ACTIONS(7396), 1, anon_sym_PIPE_PIPE, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(7379), 1, + ACTIONS(7400), 1, anon_sym_when, - ACTIONS(7381), 1, + ACTIONS(7402), 1, anon_sym_in, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(7410), 1, sym_binary_ampersand, - ACTIONS(7472), 1, + ACTIONS(7498), 1, anon_sym_end, - STATE(4756), 1, + STATE(4747), 1, sym_heredoc_body, - STATE(9181), 1, + STATE(9179), 1, aux_sym_case_repeat1, - STATE(9342), 1, + STATE(9495), 1, aux_sym_exhaustive_case_repeat1, - STATE(9746), 1, + STATE(9838), 1, sym_when, - STATE(10443), 1, + STATE(10531), 1, sym_in, - STATE(11596), 1, + STATE(11918), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, + ACTIONS(7386), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(7390), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(7374), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(7384), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7408), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [164002] = 5, + [163395] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4757), 1, + STATE(4748), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(5881), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -474332,7 +478161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 34, + ACTIONS(5879), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -474367,15 +478196,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [164059] = 5, + [163452] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4758), 1, + STATE(4749), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6023), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -474384,7 +478213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 34, + ACTIONS(6021), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -474419,24 +478248,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [164116] = 5, + [163509] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4759), 1, + ACTIONS(7500), 1, + anon_sym_LBRACK, + ACTIONS(7502), 1, + anon_sym_STAR, + ACTIONS(7504), 1, + anon_sym_PIPE, + ACTIONS(7506), 1, + anon_sym_DOT, + ACTIONS(7508), 1, + anon_sym_QMARK, + STATE(4750), 1, sym_heredoc_body, + STATE(4794), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6354), 34, + anon_sym_EQ, + ACTIONS(4625), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -474448,16 +478288,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -474468,18 +478303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [164173] = 5, + anon_sym_then, + [163578] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4760), 1, + STATE(4751), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -474488,7 +478323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 34, + ACTIONS(6035), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -474523,15 +478358,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [164230] = 5, + [163635] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4761), 1, + STATE(4752), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(6055), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -474540,7 +478375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6360), 34, + ACTIONS(6053), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -474575,19 +478410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [164287] = 7, + [163692] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7474), 1, - anon_sym_COLON_COLON, - STATE(4762), 1, + STATE(4753), 1, sym_heredoc_body, - STATE(4766), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 9, + ACTIONS(6071), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -474596,10 +478427,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4549), 31, + ACTIONS(6069), 34, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -474609,12 +478439,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -474625,21 +478459,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [164348] = 6, + [163749] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7476), 1, - anon_sym_of, - STATE(4763), 1, + STATE(4754), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5728), 8, + ACTIONS(6160), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -474648,7 +478479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5724), 33, + ACTIONS(6158), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -474667,6 +478498,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -474682,159 +478514,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [164407] = 23, + [163806] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, - anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4764), 1, + STATE(4755), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7202), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(6171), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6169), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6358), 9, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_end, - [164500] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4765), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7196), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7202), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7216), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7218), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6364), 9, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - [164593] = 7, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [163863] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7474), 1, - anon_sym_COLON_COLON, - STATE(4766), 1, + STATE(4756), 1, sym_heredoc_body, - STATE(4777), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 9, + ACTIONS(6187), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -474843,10 +478583,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 31, + ACTIONS(6185), 34, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -474856,12 +478595,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -474872,23 +478615,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [164654] = 7, + [163920] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7474), 1, - anon_sym_COLON_COLON, - STATE(4767), 1, + STATE(4757), 1, sym_heredoc_body, - STATE(4778), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4553), 9, + ACTIONS(6211), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -474897,10 +478635,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4555), 31, + ACTIONS(6209), 34, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -474910,12 +478647,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -474926,25 +478667,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [164715] = 8, + [163977] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(757), 1, - sym__string_literal_start, - STATE(4768), 1, + STATE(4758), 1, sym_heredoc_body, - STATE(4780), 1, - aux_sym_chained_string_repeat1, - STATE(5059), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5490), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -474953,9 +478687,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5488), 31, + ACTIONS(6357), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -474966,10 +478699,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -474983,21 +478722,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [164778] = 7, + [164034] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - STATE(4769), 1, + STATE(4759), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5895), 7, + ACTIONS(5833), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -475005,7 +478738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5893), 33, + anon_sym_DOT, + ACTIONS(5831), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -475015,11 +478751,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -475035,23 +478774,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [164839] = 7, + [164091] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - STATE(4770), 1, + STATE(4760), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6000), 7, + ACTIONS(5841), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -475059,7 +478790,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5998), 33, + anon_sym_DOT, + ACTIONS(5839), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -475069,11 +478803,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -475089,73 +478826,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [164900] = 7, + [164148] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7368), 1, + anon_sym_DOT_DOT, + ACTIONS(7370), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_PIPE, + ACTIONS(7378), 1, + anon_sym_CARET, + ACTIONS(7382), 1, + anon_sym_EQ_EQ, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(7394), 1, + anon_sym_AMP_AMP, + ACTIONS(7396), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(7404), 1, sym__start_of_index_operator, - STATE(4771), 1, + ACTIONS(7410), 1, + sym_binary_ampersand, + ACTIONS(7510), 1, + anon_sym_end, + STATE(4761), 1, sym_heredoc_body, + STATE(9153), 1, + aux_sym_case_repeat1, + STATE(9656), 1, + aux_sym_exhaustive_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(10531), 1, + sym_in, + STATE(11516), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6004), 7, - anon_sym_DOT_DOT, + ACTIONS(7380), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7386), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7374), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6002), 33, + ACTIONS(7384), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7408), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [164961] = 5, + [164257] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4772), 1, + STATE(4762), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6372), 8, + ACTIONS(5889), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -475164,7 +478921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6370), 34, + ACTIONS(5887), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -475199,15 +478956,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [165018] = 5, + [164314] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4773), 1, + STATE(4763), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6376), 8, + ACTIONS(5913), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -475216,7 +478973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6374), 34, + ACTIONS(5911), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -475251,15 +479008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [165075] = 5, + [164371] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4774), 1, + STATE(4764), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6380), 8, + ACTIONS(5951), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -475268,7 +479025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6378), 34, + ACTIONS(5949), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -475303,190 +479060,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [165132] = 6, + [164428] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7478), 1, - anon_sym_of, - STATE(4775), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5702), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, + ACTIONS(7218), 1, + anon_sym_LBRACK, + ACTIONS(7220), 1, + anon_sym_STAR, + ACTIONS(7224), 1, anon_sym_DOT, - ACTIONS(5698), 33, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7226), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [165191] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, ACTIONS(7480), 1, - anon_sym_of, - STATE(4776), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5734), 8, - anon_sym_DOT_DOT, - anon_sym_LT, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5730), 33, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [165250] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7482), 1, - anon_sym_COLON_COLON, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(4777), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4561), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4563), 31, - sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [165309] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7474), 1, - anon_sym_COLON_COLON, - STATE(4777), 1, - aux_sym_constant_repeat1, - STATE(4778), 1, + STATE(4765), 1, sym_heredoc_body, + STATE(4776), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4557), 9, + ACTIONS(4648), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4559), 31, + ACTIONS(4650), 28, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -475497,11 +479102,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -475512,21 +479114,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [165370] = 6, + anon_sym_do, + [164497] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7485), 1, - anon_sym_of, - STATE(4779), 1, + STATE(4766), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5719), 8, + ACTIONS(5959), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -475535,7 +479135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5715), 33, + ACTIONS(5957), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -475546,10 +479147,14 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -475565,24 +479170,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [165429] = 7, + [164554] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7487), 1, - sym__string_literal_start, - STATE(5059), 1, - sym_string, + STATE(4767), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4780), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5499), 8, + ACTIONS(6009), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -475591,9 +479187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5497), 31, + ACTIONS(6007), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -475604,10 +479199,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -475621,17 +479222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [165490] = 5, + [164611] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4781), 1, + STATE(4768), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6388), 8, + ACTIONS(5829), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -475640,7 +479239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6386), 34, + ACTIONS(5827), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -475675,26 +479274,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [165547] = 5, + [164668] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4782), 1, + ACTIONS(7416), 1, + anon_sym_PIPE, + ACTIONS(7429), 1, + anon_sym_LBRACK, + ACTIONS(7431), 1, + anon_sym_STAR, + ACTIONS(7433), 1, + anon_sym_DOT, + ACTIONS(7435), 1, + anon_sym_QMARK, + STATE(4625), 1, + aux_sym_union_type_repeat1, + STATE(4769), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6392), 8, + ACTIONS(4638), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6390), 34, - sym__line_break, + anon_sym_EQ, + ACTIONS(4640), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -475704,16 +479315,10 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -475724,18 +479329,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [165604] = 5, + anon_sym_do, + [164737] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4783), 1, + STATE(4770), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6396), 8, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -475744,7 +479349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6394), 34, + ACTIONS(6041), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -475779,17 +479384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [165661] = 6, + [164794] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7490), 1, - anon_sym_of, - STATE(4784), 1, + STATE(4771), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5734), 8, + ACTIONS(6067), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -475798,7 +479401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5730), 33, + ACTIONS(6065), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -475817,6 +479420,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -475832,15 +479436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [165720] = 5, + [164851] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4785), 1, + STATE(4772), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6404), 8, + ACTIONS(6079), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -475849,7 +479453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6402), 34, + ACTIONS(6077), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -475884,15 +479488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [165777] = 5, + [164908] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4786), 1, + STATE(4773), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6410), 8, + ACTIONS(6090), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -475901,7 +479505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6408), 34, + ACTIONS(6088), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -475936,15 +479540,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [165834] = 5, + [164965] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4787), 1, + STATE(4774), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(6138), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -475953,7 +479557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6415), 34, + ACTIONS(6136), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -475988,19 +479592,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [165891] = 7, + [165022] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7214), 1, - sym__start_of_index_operator, - STATE(4788), 1, + STATE(4775), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5895), 7, + ACTIONS(6148), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -476008,8 +479608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5893), 33, + anon_sym_DOT, + ACTIONS(6146), 34, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -476042,96 +479644,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [165952] = 21, + [165079] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5923), 1, - anon_sym_DOT_DOT, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7192), 1, + ACTIONS(7480), 1, anon_sym_PIPE, - ACTIONS(7194), 1, - anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4789), 1, + STATE(4776), 1, sym_heredoc_body, + STATE(4777), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7202), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(4634), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4636), 31, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5921), 11, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [166041] = 7, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [165140] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7214), 1, - sym__start_of_index_operator, - STATE(4790), 1, - sym_heredoc_body, + ACTIONS(7512), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6000), 7, + STATE(4777), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5998), 33, - sym__line_break, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4629), 31, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -476141,16 +479731,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -476162,30 +479747,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [166102] = 7, + anon_sym_do, + [165199] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, + ACTIONS(7218), 1, + anon_sym_LBRACK, + ACTIONS(7220), 1, + anon_sym_STAR, + ACTIONS(7224), 1, anon_sym_DOT, - ACTIONS(7214), 1, - sym__start_of_index_operator, - STATE(4791), 1, + ACTIONS(7226), 1, + anon_sym_QMARK, + ACTIONS(7480), 1, + anon_sym_PIPE, + STATE(4776), 1, + aux_sym_union_type_repeat1, + STATE(4778), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6004), 7, + ACTIONS(4623), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6002), 33, - sym__line_break, + anon_sym_EQ, + ACTIONS(4625), 28, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -476195,16 +479792,9 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -476215,28 +479805,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [166163] = 5, + anon_sym_do, + [165268] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4792), 1, + ACTIONS(7218), 1, + anon_sym_LBRACK, + ACTIONS(7220), 1, + anon_sym_STAR, + ACTIONS(7224), 1, + anon_sym_DOT, + ACTIONS(7226), 1, + anon_sym_QMARK, + ACTIONS(7480), 1, + anon_sym_PIPE, + STATE(4776), 1, + aux_sym_union_type_repeat1, + STATE(4779), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5810), 8, + ACTIONS(4605), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5808), 34, - sym__line_break, + anon_sym_EQ, + ACTIONS(4607), 28, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -476247,16 +479850,9 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -476267,18 +479863,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [166220] = 5, + anon_sym_do, + [165337] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4793), 1, + STATE(4780), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5818), 8, + ACTIONS(6175), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -476287,7 +479884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5816), 34, + ACTIONS(6173), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -476322,15 +479919,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [166277] = 5, + [165394] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4794), 1, + STATE(4781), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5846), 8, + ACTIONS(6299), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -476339,7 +479936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5844), 34, + ACTIONS(6297), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -476374,15 +479971,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [166334] = 5, + [165451] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4795), 1, + STATE(4782), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(6458), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -476391,7 +479988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5947), 34, + ACTIONS(6456), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -476426,325 +480023,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [166391] = 21, + [165508] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5941), 1, - anon_sym_DOT_DOT, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, - anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4796), 1, + STATE(4783), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7202), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(5973), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5971), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5939), 11, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, - [166480] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4797), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7196), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7202), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7216), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7218), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6010), 9, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - [166573] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, - anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7210), 1, anon_sym_AMP_AMP, - ACTIONS(7212), 1, anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4798), 1, + [165565] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4784), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7202), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(6279), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6277), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6030), 9, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_end, - [166666] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4799), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7196), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7202), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7216), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7218), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6032), 9, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - [166759] = 10, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [165622] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7214), 1, - sym__start_of_index_operator, - STATE(4800), 1, + STATE(4785), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7218), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(5861), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 27, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5859), 34, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -476758,25 +480175,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [166826] = 8, + [165679] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7214), 1, - sym__start_of_index_operator, - STATE(4801), 1, + STATE(4786), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(5893), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -476784,13 +480195,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 31, + anon_sym_DOT, + ACTIONS(5891), 34, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -476813,25 +480227,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [166889] = 8, + [165736] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7214), 1, - sym__start_of_index_operator, - STATE(4802), 1, + STATE(4787), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(5989), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -476839,13 +480247,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 31, + anon_sym_DOT, + ACTIONS(5987), 34, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -476868,302 +480279,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [166952] = 12, + [165793] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7214), 1, - sym__start_of_index_operator, - STATE(4803), 1, + STATE(4788), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7216), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7218), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6064), 6, + ACTIONS(6183), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6062), 21, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6181), 34, sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [167023] = 21, + [165850] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6068), 1, - anon_sym_DOT_DOT, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7192), 1, + ACTIONS(7500), 1, + anon_sym_LBRACK, + ACTIONS(7502), 1, + anon_sym_STAR, + ACTIONS(7504), 1, anon_sym_PIPE, - ACTIONS(7194), 1, - anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4804), 1, + ACTIONS(7506), 1, + anon_sym_DOT, + ACTIONS(7508), 1, + anon_sym_QMARK, + STATE(4789), 1, sym_heredoc_body, + STATE(4794), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7202), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(4605), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4607), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6066), 11, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - [167112] = 17, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, + anon_sym_DASH_GT, anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4805), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7196), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7200), 4, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7216), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7218), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6070), 15, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK, + anon_sym_AMP_STAR_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [167193] = 13, + anon_sym_then, + [165919] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4806), 1, + STATE(4790), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7216), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7218), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6082), 6, + ACTIONS(6207), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6080), 20, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [167266] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7204), 1, anon_sym_AMP_STAR, - ACTIONS(7214), 1, + anon_sym_DOT, + ACTIONS(6205), 34, + sym__line_break, sym__start_of_index_operator, - STATE(4807), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7216), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6090), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6088), 23, - sym__line_break, - sym_binary_ampersand, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -477177,421 +480441,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [167335] = 15, + [165976] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, - anon_sym_CARET, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4808), 1, + ACTIONS(7515), 1, + anon_sym_LPAREN2, + STATE(4791), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7216), 4, + ACTIONS(4642), 9, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4644), 32, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6094), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6092), 19, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [167412] = 19, + anon_sym_then, + [166035] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, - anon_sym_DOT_DOT, - ACTIONS(6885), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7192), 1, + ACTIONS(7368), 1, + anon_sym_DOT_DOT, + ACTIONS(7370), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, anon_sym_PIPE, - ACTIONS(7194), 1, + ACTIONS(7378), 1, anon_sym_CARET, - ACTIONS(7198), 1, + ACTIONS(7382), 1, anon_sym_EQ_EQ, - ACTIONS(7204), 1, + ACTIONS(7388), 1, anon_sym_AMP_STAR, - ACTIONS(7214), 1, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(7394), 1, + anon_sym_AMP_AMP, + ACTIONS(7396), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7220), 1, + ACTIONS(7410), 1, sym_binary_ampersand, - STATE(4809), 1, + ACTIONS(7517), 1, + anon_sym_end, + STATE(4792), 1, sym_heredoc_body, + STATE(9197), 1, + aux_sym_case_repeat1, + STATE(9397), 1, + aux_sym_exhaustive_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(10531), 1, + sym_in, + STATE(11019), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7202), 2, + ACTIONS(7386), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, + ACTIONS(7390), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(7374), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, + ACTIONS(7384), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, + ACTIONS(7408), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 13, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [167497] = 20, + [166144] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6118), 1, - anon_sym_DOT_DOT, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7192), 1, + ACTIONS(7500), 1, + anon_sym_LBRACK, + ACTIONS(7502), 1, + anon_sym_STAR, + ACTIONS(7504), 1, anon_sym_PIPE, - ACTIONS(7194), 1, - anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4810), 1, + ACTIONS(7506), 1, + anon_sym_DOT, + ACTIONS(7508), 1, + anon_sym_QMARK, + STATE(4793), 1, sym_heredoc_body, + STATE(4794), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7202), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(4638), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4640), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6116), 12, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - [167584] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6242), 1, - anon_sym_DOT_DOT, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, + anon_sym_DASH_GT, anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4811), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7196), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7202), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7216), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7218), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6240), 11, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - [167673] = 23, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [166213] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, + ACTIONS(7504), 1, anon_sym_PIPE, - ACTIONS(7194), 1, - anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4812), 1, + STATE(4667), 1, + aux_sym_union_type_repeat1, + STATE(4794), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7196), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7202), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, + ACTIONS(4634), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7216), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4636), 32, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7218), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6256), 9, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_end, - [167766] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6885), 1, - anon_sym_DOT, - ACTIONS(7186), 1, - anon_sym_DOT_DOT, - ACTIONS(7188), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7192), 1, - anon_sym_PIPE, - ACTIONS(7194), 1, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, - ACTIONS(7198), 1, - anon_sym_EQ_EQ, - ACTIONS(7204), 1, - anon_sym_AMP_STAR, - ACTIONS(7208), 1, - anon_sym_QMARK, - ACTIONS(7210), 1, - anon_sym_AMP_AMP, - ACTIONS(7212), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7220), 1, - sym_binary_ampersand, - STATE(4813), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7196), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7202), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7206), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7190), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7200), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7216), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7218), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6230), 9, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_end, - [167859] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [166274] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4814), 1, + STATE(4795), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5834), 8, + ACTIONS(6227), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -477600,7 +480705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5832), 34, + ACTIONS(6225), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -477635,21 +480740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [167916] = 8, + [166331] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(757), 1, - sym__string_literal_start, - STATE(4768), 1, - aux_sym_chained_string_repeat1, - STATE(4815), 1, + STATE(4796), 1, sym_heredoc_body, - STATE(5059), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6271), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -477658,9 +480757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 31, + ACTIONS(6269), 34, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -477671,10 +480769,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -477688,17 +480792,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [167979] = 5, + [166388] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4816), 1, + STATE(4797), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5953), 8, + ACTIONS(6275), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -477707,7 +480809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5951), 34, + ACTIONS(6273), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -477742,15 +480844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168036] = 5, + [166445] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4817), 1, + STATE(4798), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5713), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -477759,7 +480861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 34, + ACTIONS(135), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -477794,15 +480896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168093] = 5, + [166502] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4818), 1, + STATE(4799), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5961), 8, + ACTIONS(6307), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -477811,7 +480913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5959), 34, + ACTIONS(6305), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -477846,15 +480948,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168150] = 5, + [166559] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4819), 1, + STATE(4800), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6016), 8, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -477863,7 +480965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6014), 34, + ACTIONS(6317), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -477898,15 +481000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168207] = 5, + [166616] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4820), 1, + STATE(4801), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6126), 8, + ACTIONS(5777), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -477915,7 +481017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6124), 34, + ACTIONS(5775), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -477950,15 +481052,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168264] = 5, + [166673] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4821), 1, + STATE(4802), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6160), 8, + ACTIONS(5853), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -477967,7 +481069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6158), 34, + ACTIONS(5851), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -478002,37 +481104,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168321] = 11, + [166730] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7232), 1, - anon_sym_LBRACK, - ACTIONS(7234), 1, - anon_sym_STAR, - ACTIONS(7238), 1, - anon_sym_DOT, - ACTIONS(7240), 1, - anon_sym_QMARK, - ACTIONS(7345), 1, - anon_sym_PIPE, - STATE(4822), 1, + STATE(4803), 1, sym_heredoc_body, - STATE(4824), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 8, - anon_sym_RBRACK, + ACTIONS(5857), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4605), 28, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(5855), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -478043,9 +481133,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -478056,19 +481153,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_RBRACK_QMARK, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [168390] = 5, + [166787] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4823), 1, + STATE(4804), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6172), 8, + ACTIONS(5909), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -478077,7 +481173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6170), 34, + ACTIONS(5907), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -478112,30 +481208,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168447] = 7, + [166844] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7345), 1, - anon_sym_PIPE, - STATE(4824), 1, + STATE(4805), 1, sym_heredoc_body, - STATE(4825), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 9, - anon_sym_RBRACK, + ACTIONS(5969), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 31, - sym__start_of_brace_block, + ACTIONS(5967), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -478146,11 +481237,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -478162,33 +481258,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [168508] = 6, + [166901] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7492), 1, - anon_sym_PIPE, + STATE(4806), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4825), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 9, - anon_sym_RBRACK, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 31, - sym__start_of_brace_block, + ACTIONS(5995), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -478199,11 +481289,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -478215,41 +481310,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [168567] = 11, + [166958] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7232), 1, - anon_sym_LBRACK, - ACTIONS(7234), 1, - anon_sym_STAR, - ACTIONS(7238), 1, - anon_sym_DOT, - ACTIONS(7240), 1, - anon_sym_QMARK, - ACTIONS(7345), 1, - anon_sym_PIPE, - STATE(4824), 1, - aux_sym_union_type_repeat1, - STATE(4826), 1, + STATE(4807), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 8, - anon_sym_RBRACK, + ACTIONS(6013), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4609), 28, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(6011), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -478260,9 +481341,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -478273,77 +481361,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_RBRACK_QMARK, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [168636] = 11, + [167015] = 31, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7232), 1, - anon_sym_LBRACK, - ACTIONS(7234), 1, - anon_sym_STAR, - ACTIONS(7238), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7240), 1, - anon_sym_QMARK, - ACTIONS(7345), 1, + ACTIONS(7368), 1, + anon_sym_DOT_DOT, + ACTIONS(7370), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, anon_sym_PIPE, - STATE(4824), 1, - aux_sym_union_type_repeat1, - STATE(4827), 1, + ACTIONS(7378), 1, + anon_sym_CARET, + ACTIONS(7382), 1, + anon_sym_EQ_EQ, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(7394), 1, + anon_sym_AMP_AMP, + ACTIONS(7396), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, + sym_binary_ampersand, + ACTIONS(7519), 1, + anon_sym_end, + STATE(4808), 1, sym_heredoc_body, + STATE(9169), 1, + aux_sym_case_repeat1, + STATE(9412), 1, + aux_sym_exhaustive_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(10531), 1, + sym_in, + STATE(10588), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 8, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7380), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7386), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7374), 3, anon_sym_LT, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 28, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7384), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7408), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [168705] = 5, + [167124] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4828), 1, + STATE(4809), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6176), 8, + ACTIONS(5921), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -478352,7 +481459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6174), 34, + ACTIONS(5919), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -478387,67 +481494,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168762] = 5, + [167181] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4829), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, + anon_sym_DOT_DOT, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, + anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7332), 1, + anon_sym_QMARK, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4810), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6180), 8, - anon_sym_DOT_DOT, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6178), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6666), 8, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [168819] = 5, + [167276] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4830), 1, + STATE(4811), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6208), 8, + ACTIONS(5927), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -478456,7 +481582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6206), 34, + ACTIONS(5925), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -478491,15 +481617,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168876] = 5, + [167333] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4831), 1, + STATE(4812), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6220), 8, + ACTIONS(5931), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -478508,7 +481634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6218), 34, + ACTIONS(5929), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -478543,15 +481669,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168933] = 5, + [167390] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4832), 1, + STATE(4813), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6228), 8, + ACTIONS(5849), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -478560,7 +481686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6226), 34, + ACTIONS(5847), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -478595,69 +481721,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [168990] = 5, + [167447] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4833), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, + anon_sym_DOT_DOT, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, + anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7332), 1, + anon_sym_QMARK, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4814), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6264), 8, - anon_sym_DOT_DOT, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6262), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6622), 8, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [169047] = 6, + [167542] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7495), 1, - anon_sym_LPAREN2, - STATE(4834), 1, + STATE(4815), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(5865), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -478666,8 +481809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4599), 32, + ACTIONS(5863), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -478679,13 +481821,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -478699,36 +481844,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [169106] = 11, + [167599] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7402), 1, - anon_sym_LBRACK, - ACTIONS(7404), 1, - anon_sym_STAR, - ACTIONS(7406), 1, - anon_sym_PIPE, - ACTIONS(7408), 1, - anon_sym_DOT, - ACTIONS(7410), 1, - anon_sym_QMARK, - STATE(4746), 1, - aux_sym_union_type_repeat1, - STATE(4835), 1, + STATE(4816), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 7, + ACTIONS(5935), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4595), 29, + anon_sym_DOT, + ACTIONS(5933), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -478740,11 +481873,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -478755,18 +481893,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [169175] = 5, + [167656] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4836), 1, + STATE(4817), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6300), 8, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -478775,7 +481913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6298), 34, + ACTIONS(5937), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -478810,15 +481948,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169232] = 5, + [167713] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4837), 1, + ACTIONS(7521), 1, + anon_sym_of, + STATE(4818), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6312), 8, + ACTIONS(5757), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -478827,7 +481967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6310), 34, + ACTIONS(5753), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -478846,7 +481986,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -478862,15 +482001,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169289] = 5, + [167772] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4838), 1, + STATE(4819), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5802), 8, + ACTIONS(5947), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -478879,7 +482018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5800), 34, + ACTIONS(5945), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -478914,15 +482053,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169346] = 5, + [167829] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4839), 1, + ACTIONS(7437), 1, + anon_sym_COMMA, + STATE(4820), 1, sym_heredoc_body, + STATE(4823), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5826), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -478931,8 +482074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5824), 34, - sym__line_break, + ACTIONS(5587), 32, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -478943,14 +482085,10 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -478966,17 +482104,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169403] = 6, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [167890] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7497), 1, - anon_sym_of, - STATE(4840), 1, + STATE(4821), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5690), 8, + ACTIONS(6303), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -478985,7 +482124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5686), 33, + ACTIONS(6301), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -479004,6 +482143,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -479019,36 +482159,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169462] = 11, + [167947] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7402), 1, - anon_sym_LBRACK, - ACTIONS(7404), 1, - anon_sym_STAR, - ACTIONS(7406), 1, - anon_sym_PIPE, - ACTIONS(7408), 1, - anon_sym_DOT, - ACTIONS(7410), 1, - anon_sym_QMARK, - STATE(4746), 1, - aux_sym_union_type_repeat1, - STATE(4841), 1, + ACTIONS(7482), 1, + anon_sym_COMMA, + STATE(4822), 1, sym_heredoc_body, + STATE(4824), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4605), 29, - sym__line_break, + anon_sym_DOT, + ACTIONS(5631), 32, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -479060,10 +482192,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -479074,39 +482207,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [169531] = 11, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [168008] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7402), 1, - anon_sym_LBRACK, - ACTIONS(7404), 1, - anon_sym_STAR, - ACTIONS(7406), 1, - anon_sym_PIPE, - ACTIONS(7408), 1, - anon_sym_DOT, - ACTIONS(7410), 1, - anon_sym_QMARK, - STATE(4746), 1, - aux_sym_union_type_repeat1, - STATE(4842), 1, + ACTIONS(7482), 1, + anon_sym_COMMA, + STATE(4823), 1, sym_heredoc_body, + STATE(4825), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4611), 7, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4613), 29, - sym__line_break, + anon_sym_DOT, + ACTIONS(5631), 32, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -479118,10 +482246,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -479132,18 +482261,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [169600] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [168069] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4843), 1, + ACTIONS(7523), 1, + anon_sym_COMMA, + STATE(4824), 1, sym_heredoc_body, + STATE(4825), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -479152,8 +482288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5856), 34, - sym__line_break, + ACTIONS(5637), 32, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -479164,14 +482299,10 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -479187,15 +482318,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169657] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [168130] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4844), 1, - sym_heredoc_body, + ACTIONS(7525), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5862), 8, + STATE(4825), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -479204,8 +482341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5860), 34, - sym__line_break, + ACTIONS(5694), 32, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -479216,14 +482352,10 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -479239,15 +482371,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169714] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [168189] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4845), 1, + STATE(4826), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5866), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -479256,7 +482391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5864), 34, + ACTIONS(5545), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -479291,15 +482426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169771] = 5, + [168246] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4846), 1, + STATE(4827), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5899), 8, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -479308,7 +482443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5897), 34, + ACTIONS(5871), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -479343,15 +482478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169828] = 5, + [168303] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4847), 1, + STATE(4828), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5919), 8, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -479360,7 +482495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5917), 34, + ACTIONS(5871), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -479395,15 +482530,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169885] = 5, + [168360] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4848), 1, + STATE(4829), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5927), 8, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -479412,7 +482547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5925), 34, + ACTIONS(5551), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -479447,17 +482582,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [169942] = 6, + [168417] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7499), 1, - anon_sym_of, - STATE(4849), 1, + STATE(4830), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5719), 8, + ACTIONS(6462), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -479466,7 +482599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5715), 33, + ACTIONS(6460), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -479485,6 +482618,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -479500,15 +482634,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [170001] = 5, + [168474] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4850), 1, + STATE(4831), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5931), 8, + ACTIONS(6051), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -479517,7 +482651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5929), 34, + ACTIONS(6049), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -479552,29 +482686,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [170058] = 6, + [168531] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4746), 1, + ACTIONS(7416), 1, + anon_sym_PIPE, + ACTIONS(7429), 1, + anon_sym_LBRACK, + ACTIONS(7431), 1, + anon_sym_STAR, + ACTIONS(7433), 1, + anon_sym_DOT, + ACTIONS(7435), 1, + anon_sym_QMARK, + STATE(4625), 1, aux_sym_union_type_repeat1, - STATE(4851), 1, + STATE(4832), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 32, - sym__line_break, + ACTIONS(4650), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -479585,12 +482728,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -479601,84 +482741,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [170117] = 6, + anon_sym_do, + [168600] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7501), 1, - anon_sym_of, - STATE(4852), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5660), 8, - anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(7416), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, + ACTIONS(7429), 1, + anon_sym_LBRACK, + ACTIONS(7431), 1, + anon_sym_STAR, + ACTIONS(7433), 1, anon_sym_DOT, - ACTIONS(5656), 33, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7435), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [170176] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7503), 1, - anon_sym_of, - STATE(4853), 1, + STATE(4625), 1, + aux_sym_union_type_repeat1, + STATE(4833), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5728), 8, + ACTIONS(4619), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5724), 33, + anon_sym_EQ, + ACTIONS(4621), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -479689,11 +482786,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -479704,24 +482799,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [170235] = 6, + anon_sym_do, + [168669] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7505), 1, - anon_sym_of, - STATE(4854), 1, + ACTIONS(1731), 1, + anon_sym_COLON, + ACTIONS(5579), 1, + anon_sym_COLON_COLON, + STATE(2473), 1, + aux_sym_constant_repeat1, + STATE(4834), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5690), 8, + ACTIONS(4584), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -479730,7 +482825,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5686), 33, + ACTIONS(4586), 31, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -479742,11 +482838,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -479757,22 +482852,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [170294] = 5, + anon_sym_do, + [168732] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4855), 1, + STATE(4835), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6036), 8, + ACTIONS(5943), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -479781,7 +482874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6034), 34, + ACTIONS(5941), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -479816,15 +482909,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [170351] = 5, + [168789] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4856), 1, + ACTIONS(627), 1, + sym__string_literal_start, + ACTIONS(7528), 1, + anon_sym_COLON, + STATE(3295), 1, + aux_sym_chained_string_repeat1, + STATE(3514), 1, + sym_string, + STATE(4836), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6040), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -479833,8 +482934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6038), 34, - sym__line_break, + ACTIONS(135), 30, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -479845,16 +482946,11 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -479868,15 +482964,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [170408] = 5, + anon_sym_do, + [168854] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4857), 1, + STATE(4837), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6044), 8, + ACTIONS(5993), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -479885,7 +482982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6042), 34, + ACTIONS(5991), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -479920,15 +483017,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [170465] = 5, + [168911] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4858), 1, + ACTIONS(7500), 1, + anon_sym_LBRACK, + ACTIONS(7502), 1, + anon_sym_STAR, + ACTIONS(7504), 1, + anon_sym_PIPE, + ACTIONS(7506), 1, + anon_sym_DOT, + ACTIONS(7508), 1, + anon_sym_QMARK, + STATE(4794), 1, + aux_sym_union_type_repeat1, + STATE(4838), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6060), 8, + ACTIONS(4648), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4650), 29, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [168980] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7500), 1, + anon_sym_LBRACK, + ACTIONS(7502), 1, + anon_sym_STAR, + ACTIONS(7504), 1, + anon_sym_PIPE, + ACTIONS(7506), 1, + anon_sym_DOT, + ACTIONS(7508), 1, + anon_sym_QMARK, + STATE(4794), 1, + aux_sym_union_type_repeat1, + STATE(4839), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4619), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4621), 29, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [169049] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4840), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -479937,7 +483150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6058), 34, + ACTIONS(5875), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -479972,15 +483185,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [170522] = 5, + [169106] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4859), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, + anon_sym_DOT_DOT, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, + anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7332), 1, + anon_sym_QMARK, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4841), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6110), 8, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7342), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5694), 9, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, + [169199] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4842), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -479989,7 +483272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6108), 34, + ACTIONS(5983), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -480024,15 +483307,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [170579] = 5, + [169256] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4860), 1, + ACTIONS(7530), 1, + anon_sym_EQ, + STATE(4843), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6138), 8, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -480041,7 +483326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6136), 34, + ACTIONS(5761), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -480060,7 +483345,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -480076,15 +483360,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [170636] = 5, + [169315] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4861), 1, + STATE(4844), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6164), 8, + ACTIONS(6029), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -480093,7 +483377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6162), 34, + ACTIONS(6027), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -480128,18 +483412,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [170693] = 6, + [169372] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4824), 1, - aux_sym_union_type_repeat1, - STATE(4862), 1, + STATE(4845), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 10, - anon_sym_RBRACK, + ACTIONS(6075), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -480148,9 +483429,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 31, - sym__start_of_brace_block, + ACTIONS(6073), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -480161,11 +483441,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -480177,19 +483462,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [170752] = 5, + [169429] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4863), 1, + STATE(4846), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6168), 8, + ACTIONS(6033), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -480198,7 +483481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6166), 34, + ACTIONS(6031), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -480233,15 +483516,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [170809] = 5, + [169486] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4864), 1, + STATE(4847), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6156), 8, + ACTIONS(6291), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -480250,7 +483533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6154), 34, + ACTIONS(6289), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -480285,15 +483568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [170866] = 5, + [169543] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4865), 1, + STATE(4848), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5770), 8, + ACTIONS(6086), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -480302,7 +483585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5768), 34, + ACTIONS(6084), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -480337,15 +483620,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [170923] = 5, + [169600] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4866), 1, + STATE(4849), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5782), 8, + ACTIONS(6096), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -480354,7 +483637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5780), 34, + ACTIONS(6094), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -480389,15 +483672,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [170980] = 5, + [169657] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4867), 1, + STATE(4850), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5786), 8, + ACTIONS(6110), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -480406,7 +483689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5784), 34, + ACTIONS(6108), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -480441,15 +483724,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171037] = 5, + [169714] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4868), 1, + STATE(4851), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5790), 8, + ACTIONS(6144), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -480458,7 +483741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5788), 34, + ACTIONS(6142), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -480493,15 +483776,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171094] = 5, + [169771] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4869), 1, + ACTIONS(7532), 1, + anon_sym_COLON_COLON, + STATE(4852), 1, + sym_heredoc_body, + STATE(4862), 1, + aux_sym_constant_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4584), 9, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4586), 31, + sym__start_of_index_operator, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [169832] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4853), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5794), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -480510,7 +483847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5792), 34, + ACTIONS(6098), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -480545,15 +483882,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171151] = 5, + [169889] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4870), 1, + STATE(4854), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5798), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -480562,7 +483899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5796), 34, + ACTIONS(6098), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -480597,15 +483934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171208] = 5, + [169946] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4871), 1, + STATE(4855), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5806), 8, + ACTIONS(6106), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -480614,7 +483951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5804), 34, + ACTIONS(6104), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -480649,15 +483986,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171265] = 5, + [170003] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4872), 1, + STATE(4856), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5814), 8, + ACTIONS(6114), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -480666,7 +484003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5812), 34, + ACTIONS(6112), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -480701,15 +484038,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171322] = 5, + [170060] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4873), 1, + STATE(4857), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5822), 8, + ACTIONS(6118), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -480718,7 +484055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5820), 34, + ACTIONS(6116), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -480753,15 +484090,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171379] = 5, + [170117] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4874), 1, + ACTIONS(7534), 1, + anon_sym_of, + STATE(4858), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5830), 8, + ACTIONS(5739), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -480770,7 +484109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5828), 34, + ACTIONS(5735), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -480789,7 +484128,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -480805,171 +484143,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171436] = 5, + [170176] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4875), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5842), 8, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, anon_sym_PIPE, + ACTIONS(7318), 1, + anon_sym_CARET, + ACTIONS(7322), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(7328), 1, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5840), 34, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7332), 1, anon_sym_QMARK, + ACTIONS(7334), 1, anon_sym_AMP_AMP, + ACTIONS(7336), 1, anon_sym_PIPE_PIPE, - [171493] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4876), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4859), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5868), 34, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, + ACTIONS(7320), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7326), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(7330), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [171550] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4877), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5903), 8, - anon_sym_DOT_DOT, + ACTIONS(7314), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5901), 34, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6622), 8, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [171607] = 5, + [170271] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4878), 1, + STATE(4860), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6260), 8, + ACTIONS(6122), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -480978,7 +484231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6258), 34, + ACTIONS(6120), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -481013,117 +484266,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [171664] = 5, + [170328] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4879), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4631), 9, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, anon_sym_PIPE, + ACTIONS(7318), 1, + anon_sym_CARET, + ACTIONS(7322), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(7328), 1, anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4633), 32, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7332), 1, anon_sym_QMARK, + ACTIONS(7334), 1, anon_sym_AMP_AMP, + ACTIONS(7336), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - [171720] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4880), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4861), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4635), 9, - anon_sym_DOT_DOT, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4637), 32, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [171776] = 5, + ACTIONS(6622), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [170423] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4881), 1, + ACTIONS(7532), 1, + anon_sym_COLON_COLON, + STATE(4862), 1, sym_heredoc_body, + STATE(4898), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4643), 9, + ACTIONS(4594), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -481133,8 +484359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4645), 32, - sym__start_of_brace_block, + ACTIONS(4596), 31, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -481162,19 +484387,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [171832] = 5, + [170484] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4882), 1, + ACTIONS(7532), 1, + anon_sym_COLON_COLON, + STATE(4863), 1, sym_heredoc_body, + STATE(4899), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4627), 9, + ACTIONS(4594), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -481184,8 +484413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4629), 32, - sym__start_of_brace_block, + ACTIONS(4596), 31, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -481213,19 +484441,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [171888] = 5, + [170545] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4883), 1, + ACTIONS(7536), 1, + anon_sym_of, + STATE(4864), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4659), 9, + ACTIONS(5739), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -481234,11 +484464,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4661), 32, - sym__start_of_brace_block, + ACTIONS(5735), 33, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -481249,11 +484476,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -481267,39 +484494,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [171944] = 11, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [170604] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7327), 1, - anon_sym_LBRACK, - ACTIONS(7329), 1, - anon_sym_STAR, - ACTIONS(7333), 1, - anon_sym_DOT, - ACTIONS(7335), 1, - anon_sym_QMARK, - ACTIONS(7507), 1, - anon_sym_PIPE, - STATE(4884), 1, + ACTIONS(7538), 1, + anon_sym_of, + STATE(4865), 1, sym_heredoc_body, - STATE(4950), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4683), 7, + ACTIONS(5725), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4685), 28, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(5721), 33, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -481310,8 +484529,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -481322,41 +484544,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [172012] = 11, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [170663] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7327), 1, - anon_sym_LBRACK, - ACTIONS(7329), 1, - anon_sym_STAR, - ACTIONS(7333), 1, - anon_sym_DOT, - ACTIONS(7335), 1, - anon_sym_QMARK, - ACTIONS(7507), 1, - anon_sym_PIPE, - STATE(4885), 1, + ACTIONS(7540), 1, + anon_sym_of, + STATE(4866), 1, sym_heredoc_body, - STATE(4950), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4639), 7, + ACTIONS(5714), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4641), 28, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(5710), 33, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -481367,8 +484582,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -481379,21 +484597,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [172080] = 6, + anon_sym_COLON2, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [170722] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7509), 1, - anon_sym_LPAREN2, - STATE(4886), 1, + STATE(4867), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 10, - anon_sym_RBRACK, + ACTIONS(6126), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -481402,8 +484621,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4599), 30, + ACTIONS(6124), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -481414,12 +484633,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -481431,70 +484654,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [172138] = 23, + [170779] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7511), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, anon_sym_DOT_DOT, - ACTIONS(7513), 1, + ACTIONS(7312), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7517), 1, + ACTIONS(7316), 1, anon_sym_PIPE, - ACTIONS(7519), 1, + ACTIONS(7318), 1, anon_sym_CARET, - ACTIONS(7523), 1, + ACTIONS(7322), 1, anon_sym_EQ_EQ, - ACTIONS(7529), 1, + ACTIONS(7328), 1, anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7535), 1, + ACTIONS(7332), 1, anon_sym_QMARK, - ACTIONS(7537), 1, + ACTIONS(7334), 1, anon_sym_AMP_AMP, - ACTIONS(7539), 1, + ACTIONS(7336), 1, anon_sym_PIPE_PIPE, - ACTIONS(7545), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, sym_binary_ampersand, - STATE(4887), 1, + STATE(4868), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, + ACTIONS(7320), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7527), 2, + ACTIONS(7326), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7531), 2, + ACTIONS(7330), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7515), 3, + ACTIONS(7314), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7525), 4, + ACTIONS(7324), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7541), 4, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, + ACTIONS(7342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6032), 8, + ACTIONS(6622), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -481503,79 +484727,92 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [172230] = 11, + [170874] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7547), 1, - anon_sym_LBRACK, - ACTIONS(7549), 1, - anon_sym_STAR, - ACTIONS(7551), 1, - anon_sym_PIPE, - ACTIONS(7553), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(6996), 1, anon_sym_DOT, - ACTIONS(7555), 1, + ACTIONS(7310), 1, + anon_sym_DOT_DOT, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, + anon_sym_CARET, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7332), 1, anon_sym_QMARK, - STATE(4888), 1, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4869), 1, sym_heredoc_body, - STATE(4925), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 8, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7314), 3, anon_sym_LT, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4595), 27, - sym__start_of_index_operator, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7342), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [172298] = 8, + ACTIONS(6622), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [170969] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(783), 1, - sym__start_of_brace_block, - ACTIONS(7557), 1, - anon_sym_do, - STATE(4889), 1, + ACTIONS(771), 1, + sym__string_literal_start, + STATE(4870), 1, sym_heredoc_body, + STATE(4901), 1, + aux_sym_chained_string_repeat1, + STATE(5048), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6114), 2, - sym_do_end_block, - sym_brace_block, - ACTIONS(5512), 8, + ACTIONS(5541), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -481584,8 +484821,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 29, + ACTIONS(5539), 31, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -481613,163 +484851,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_then, - [172360] = 11, + [171032] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7547), 1, - anon_sym_LBRACK, - ACTIONS(7549), 1, - anon_sym_STAR, - ACTIONS(7551), 1, - anon_sym_PIPE, - ACTIONS(7553), 1, - anon_sym_DOT, - ACTIONS(7555), 1, - anon_sym_QMARK, - STATE(4890), 1, - sym_heredoc_body, - STATE(4925), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4603), 8, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4605), 27, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, + ACTIONS(6614), 1, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [172428] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(6996), 1, anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7310), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7312), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7316), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7318), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7322), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7328), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7332), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7334), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7336), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, sym_binary_ampersand, - STATE(4891), 1, + STATE(4871), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7320), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7326), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7330), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7314), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7324), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5708), 8, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(6622), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [172520] = 11, + [171127] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7547), 1, - anon_sym_LBRACK, - ACTIONS(7549), 1, - anon_sym_STAR, - ACTIONS(7551), 1, - anon_sym_PIPE, - ACTIONS(7553), 1, - anon_sym_DOT, - ACTIONS(7555), 1, - anon_sym_QMARK, - STATE(4892), 1, + STATE(4872), 1, sym_heredoc_body, - STATE(4925), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4611), 8, - anon_sym_RBRACK, + ACTIONS(6130), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4613), 27, + anon_sym_DOT, + ACTIONS(6128), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -481780,10 +484953,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -481794,21 +484973,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_RBRACK_QMARK, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [172588] = 6, + [171184] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4893), 1, + STATE(4873), 1, sym_heredoc_body, - STATE(4925), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 10, - anon_sym_RBRACK, + ACTIONS(6223), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -481817,8 +484993,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 30, + ACTIONS(6221), 34, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -481829,12 +485005,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -481846,26 +485026,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [172646] = 9, + [171241] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(783), 1, - sym__start_of_brace_block, - ACTIONS(7557), 1, - anon_sym_do, - STATE(4894), 1, + STATE(4874), 1, sym_heredoc_body, - STATE(6193), 1, - sym_do_end_block, - STATE(6218), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -481874,7 +485045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 29, + ACTIONS(6249), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -481886,10 +485057,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -481903,16 +485080,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [172710] = 5, + [171298] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4895), 1, + STATE(4875), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4667), 9, + ACTIONS(5570), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -481921,11 +485097,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4669), 32, - sym__start_of_brace_block, + ACTIONS(5568), 34, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -481935,12 +485109,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -481954,49 +485132,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [172766] = 10, + [171355] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7529), 1, - anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - STATE(4896), 1, + STATE(4876), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7531), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7543), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 26, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5785), 34, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -482008,25 +485180,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [172832] = 8, + [171412] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7533), 1, - anon_sym_DOT, - STATE(4897), 1, + STATE(4877), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7531), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -482034,13 +485200,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 30, + anon_sym_DOT, + ACTIONS(6189), 34, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -482051,6 +485220,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -482062,25 +485232,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [172894] = 8, + [171469] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7533), 1, - anon_sym_DOT, - STATE(4898), 1, + STATE(4878), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7531), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -482088,13 +485252,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 30, + anon_sym_DOT, + ACTIONS(6189), 34, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -482105,6 +485272,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, @@ -482116,82 +485284,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [172956] = 12, + [171526] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7529), 1, - anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - STATE(4899), 1, + STATE(4879), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7531), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7541), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7543), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6064), 6, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6062), 20, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6189), 34, sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [173026] = 8, + [171583] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(733), 1, - sym__start_of_brace_block, - STATE(4900), 1, + STATE(4880), 1, sym_heredoc_body, - STATE(5247), 1, - sym_do_end_block, - STATE(5248), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -482200,7 +485357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 30, + ACTIONS(6189), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -482212,10 +485369,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -482229,90 +485392,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [173088] = 21, + [171640] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6068), 1, - anon_sym_DOT_DOT, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7517), 1, - anon_sym_PIPE, - ACTIONS(7519), 1, - anon_sym_CARET, - ACTIONS(7523), 1, - anon_sym_EQ_EQ, - ACTIONS(7529), 1, - anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7537), 1, - anon_sym_AMP_AMP, - ACTIONS(7539), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7545), 1, - sym_binary_ampersand, - STATE(4901), 1, + STATE(4881), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7527), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7531), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7515), 3, + ACTIONS(5787), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7525), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7541), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5785), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6066), 10, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [173176] = 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [171697] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(733), 1, - sym__start_of_brace_block, - STATE(4902), 1, + ACTIONS(7542), 1, + anon_sym_of, + STATE(4882), 1, sym_heredoc_body, - STATE(5254), 1, - sym_do_end_block, - STATE(5255), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(5725), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -482321,7 +485463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 30, + ACTIONS(5721), 33, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -482333,10 +485475,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -482350,23 +485497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [173238] = 8, + [171756] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(733), 1, - sym__start_of_brace_block, - STATE(4903), 1, + STATE(4883), 1, sym_heredoc_body, - STATE(5256), 1, - sym_do_end_block, - STATE(5257), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(5809), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -482375,7 +485514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 30, + ACTIONS(5807), 34, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -482387,10 +485526,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -482404,17 +485549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [173300] = 5, + [171813] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4904), 1, + STATE(4884), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4671), 9, + ACTIONS(5813), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -482423,11 +485566,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4673), 32, - sym__start_of_brace_block, + ACTIONS(5811), 34, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -482437,12 +485578,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -482456,56 +485601,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [173356] = 17, + [171870] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7517), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, + anon_sym_DOT_DOT, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, anon_sym_PIPE, - ACTIONS(7519), 1, + ACTIONS(7318), 1, anon_sym_CARET, - ACTIONS(7523), 1, + ACTIONS(7322), 1, anon_sym_EQ_EQ, - ACTIONS(7529), 1, + ACTIONS(7328), 1, anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7545), 1, + ACTIONS(7332), 1, + anon_sym_QMARK, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, sym_binary_ampersand, - STATE(4905), 1, + STATE(4885), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, + ACTIONS(7320), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7531), 2, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, - anon_sym_DOT_DOT, + ACTIONS(7314), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7525), 4, + ACTIONS(7324), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7541), 4, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, + ACTIONS(7342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6070), 14, + ACTIONS(5923), 9, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -482513,243 +485669,269 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_end, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + [171963] = 31, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7368), 1, + anon_sym_DOT_DOT, + ACTIONS(7370), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_PIPE, + ACTIONS(7378), 1, + anon_sym_CARET, + ACTIONS(7382), 1, + anon_sym_EQ_EQ, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7392), 1, anon_sym_QMARK, + ACTIONS(7394), 1, anon_sym_AMP_AMP, + ACTIONS(7396), 1, anon_sym_PIPE_PIPE, - [173436] = 13, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7214), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7529), 1, - anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7545), 1, + ACTIONS(7410), 1, sym_binary_ampersand, - STATE(4906), 1, + ACTIONS(7544), 1, + anon_sym_end, + STATE(4886), 1, sym_heredoc_body, + STATE(9230), 1, + aux_sym_case_repeat1, + STATE(9595), 1, + aux_sym_exhaustive_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(10531), 1, + sym_in, + STATE(11143), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7531), 2, + ACTIONS(7386), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7390), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7541), 4, + ACTIONS(7374), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7384), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, + ACTIONS(7408), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6082), 6, + [172072] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6080), 19, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(7312), 1, anon_sym_DOT_DOT_DOT, - anon_sym_end, + ACTIONS(7316), 1, + anon_sym_PIPE, + ACTIONS(7318), 1, anon_sym_CARET, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(7322), 1, + anon_sym_EQ_EQ, + ACTIONS(7328), 1, + anon_sym_AMP_STAR, + ACTIONS(7332), 1, anon_sym_QMARK, + ACTIONS(7334), 1, anon_sym_AMP_AMP, + ACTIONS(7336), 1, anon_sym_PIPE_PIPE, - [173508] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7214), 1, + ACTIONS(7338), 1, sym__start_of_index_operator, - ACTIONS(7529), 1, - anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - STATE(4907), 1, + ACTIONS(7344), 1, + sym_binary_ampersand, + STATE(4887), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7531), 2, + ACTIONS(7320), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7326), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7330), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7541), 4, + ACTIONS(7314), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7324), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, + ACTIONS(7342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6090), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6088), 22, + ACTIONS(5773), 9, sym__line_break, - sym_binary_ampersand, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [173576] = 15, + [172165] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7517), 1, - anon_sym_PIPE, - ACTIONS(7519), 1, - anon_sym_CARET, - ACTIONS(7529), 1, - anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7545), 1, - sym_binary_ampersand, - STATE(4908), 1, + STATE(4888), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7531), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7541), 4, + ACTIONS(6231), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6229), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6094), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6092), 18, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [173652] = 19, + [172222] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, anon_sym_DOT_DOT, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7517), 1, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, anon_sym_PIPE, - ACTIONS(7519), 1, + ACTIONS(7318), 1, anon_sym_CARET, - ACTIONS(7523), 1, + ACTIONS(7322), 1, anon_sym_EQ_EQ, - ACTIONS(7529), 1, + ACTIONS(7328), 1, anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7545), 1, + ACTIONS(7332), 1, + anon_sym_QMARK, + ACTIONS(7334), 1, + anon_sym_AMP_AMP, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, sym_binary_ampersand, - STATE(4909), 1, + STATE(4889), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, + ACTIONS(7320), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7527), 2, + ACTIONS(7326), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7531), 2, + ACTIONS(7330), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7515), 3, + ACTIONS(7314), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7525), 4, + ACTIONS(7324), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7541), 4, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, + ACTIONS(7342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 12, + ACTIONS(6025), 9, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -482757,66 +485939,69 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_end, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [173736] = 20, + [172315] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6118), 1, + ACTIONS(6996), 1, + anon_sym_DOT, + ACTIONS(7310), 1, anon_sym_DOT_DOT, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7517), 1, + ACTIONS(7312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7316), 1, anon_sym_PIPE, - ACTIONS(7519), 1, + ACTIONS(7318), 1, anon_sym_CARET, - ACTIONS(7523), 1, + ACTIONS(7322), 1, anon_sym_EQ_EQ, - ACTIONS(7529), 1, + ACTIONS(7328), 1, anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7537), 1, + ACTIONS(7332), 1, + anon_sym_QMARK, + ACTIONS(7334), 1, anon_sym_AMP_AMP, - ACTIONS(7545), 1, + ACTIONS(7336), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7344), 1, sym_binary_ampersand, - STATE(4910), 1, + STATE(4890), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, + ACTIONS(7320), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7527), 2, + ACTIONS(7326), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7531), 2, + ACTIONS(7330), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7515), 3, + ACTIONS(7314), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7525), 4, + ACTIONS(7324), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7541), 4, + ACTIONS(7340), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, + ACTIONS(7342), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6116), 11, + ACTIONS(6039), 9, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -482824,19 +486009,17 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_end, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - [173822] = 5, + [172408] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4911), 1, + STATE(4891), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4561), 9, + ACTIONS(6375), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -482845,10 +486028,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4563), 32, + ACTIONS(6373), 34, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -482858,12 +486040,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -482874,20 +486060,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON_COLON, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [173878] = 5, + [172465] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4912), 1, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(7546), 1, + anon_sym_DASH_GT, + STATE(4892), 1, sym_heredoc_body, + STATE(10172), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4647), 9, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -482897,10 +486087,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4649), 32, + ACTIONS(4785), 30, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -482911,11 +486101,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -482930,494 +486117,281 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [173934] = 23, + anon_sym_then, + [172528] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7511), 1, - anon_sym_DOT_DOT, - ACTIONS(7513), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7517), 1, - anon_sym_PIPE, - ACTIONS(7519), 1, - anon_sym_CARET, - ACTIONS(7523), 1, - anon_sym_EQ_EQ, - ACTIONS(7529), 1, - anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7535), 1, - anon_sym_QMARK, - ACTIONS(7537), 1, - anon_sym_AMP_AMP, - ACTIONS(7539), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7545), 1, - sym_binary_ampersand, - STATE(4913), 1, + ACTIONS(7548), 1, + anon_sym_LPAREN2, + STATE(4893), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7527), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7531), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7515), 3, + ACTIONS(4642), 9, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7525), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7541), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4644), 32, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6784), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [174026] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6242), 1, - anon_sym_DOT_DOT, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7517), 1, - anon_sym_PIPE, - ACTIONS(7519), 1, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, - ACTIONS(7523), 1, - anon_sym_EQ_EQ, - ACTIONS(7529), 1, - anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7537), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, - ACTIONS(7539), 1, anon_sym_PIPE_PIPE, - ACTIONS(7545), 1, - sym_binary_ampersand, - STATE(4914), 1, + anon_sym_do, + [172587] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4776), 1, + aux_sym_union_type_repeat1, + STATE(4894), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7527), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7531), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7515), 3, + ACTIONS(4627), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7525), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7541), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4629), 31, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6240), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - [174114] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7511), 1, - anon_sym_DOT_DOT, - ACTIONS(7513), 1, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7517), 1, - anon_sym_PIPE, - ACTIONS(7519), 1, + anon_sym_STAR, anon_sym_CARET, - ACTIONS(7523), 1, - anon_sym_EQ_EQ, - ACTIONS(7529), 1, - anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7535), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7537), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(7539), 1, anon_sym_PIPE_PIPE, - ACTIONS(7545), 1, - sym_binary_ampersand, - STATE(4915), 1, + anon_sym_do, + [172646] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4895), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7527), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7531), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7515), 3, + ACTIONS(6235), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7525), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7541), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6233), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6786), 8, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, - [174206] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5941), 1, - anon_sym_DOT_DOT, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - STATE(4916), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7430), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7450), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5939), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [174294] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7511), 1, - anon_sym_DOT_DOT, - ACTIONS(7513), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7517), 1, - anon_sym_PIPE, - ACTIONS(7519), 1, - anon_sym_CARET, - ACTIONS(7523), 1, - anon_sym_EQ_EQ, - ACTIONS(7529), 1, - anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7535), 1, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7537), 1, anon_sym_AMP_AMP, - ACTIONS(7539), 1, anon_sym_PIPE_PIPE, - ACTIONS(7545), 1, - sym_binary_ampersand, - STATE(4917), 1, + [172703] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4896), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7527), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7531), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7515), 3, + ACTIONS(6239), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7525), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7541), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6237), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6256), 8, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_end, - [174386] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7511), 1, - anon_sym_DOT_DOT, - ACTIONS(7513), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7517), 1, - anon_sym_PIPE, - ACTIONS(7519), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7523), 1, - anon_sym_EQ_EQ, - ACTIONS(7529), 1, - anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7535), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7537), 1, anon_sym_AMP_AMP, - ACTIONS(7539), 1, anon_sym_PIPE_PIPE, - ACTIONS(7545), 1, - sym_binary_ampersand, - STATE(4918), 1, + [172760] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4897), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7527), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7531), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7515), 3, + ACTIONS(6243), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7525), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7541), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6241), 34, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6230), 8, - sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + sym__modulo_operator, anon_sym_SEMI, - anon_sym_end, - [174478] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, + anon_sym_end, anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - STATE(4919), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7430), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7450), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6010), 8, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [174570] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [172817] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4920), 1, - sym_heredoc_body, + ACTIONS(7550), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4647), 9, + STATE(4898), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -483427,9 +486401,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4649), 32, - sym__line_break, + ACTIONS(4600), 31, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -483440,7 +486414,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -483456,26 +486429,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [174626] = 8, + [172876] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3000), 1, - sym__string_literal_start, - STATE(4921), 1, + ACTIONS(7532), 1, + anon_sym_COLON_COLON, + STATE(4898), 1, + aux_sym_constant_repeat1, + STATE(4899), 1, sym_heredoc_body, - STATE(4971), 1, - aux_sym_chained_string_repeat1, - STATE(5190), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 9, - anon_sym_RBRACK, + ACTIONS(4590), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -483484,9 +486454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 29, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4592), 31, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -483497,9 +486468,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, anon_sym_BANG_EQ, @@ -483509,228 +486483,594 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [174688] = 23, + [172937] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + STATE(4900), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6247), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(6245), 34, + sym__line_break, sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [172994] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7553), 1, + sym__string_literal_start, + STATE(5048), 1, + sym_string, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(4901), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5534), 8, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7428), 1, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5532), 31, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_CARET, - ACTIONS(7432), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_then, + [173055] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4902), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6019), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + anon_sym_DOT, + ACTIONS(6017), 34, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7444), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + [173112] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7429), 1, + anon_sym_LBRACK, + ACTIONS(7431), 1, + anon_sym_STAR, + ACTIONS(7433), 1, + anon_sym_DOT, + ACTIONS(7435), 1, + anon_sym_QMARK, + ACTIONS(7556), 1, + anon_sym_PIPE, + STATE(4903), 1, + sym_heredoc_body, + STATE(4982), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4668), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4670), 28, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - STATE(4922), 1, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [173180] = 13, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, + sym_binary_ampersand, + STATE(4904), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7558), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7562), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7566), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7568), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6263), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6261), 19, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [173252] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4905), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5574), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5572), 33, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + sym__string_literal_start, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_then, + [173308] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4906), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4660), 9, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4662), 32, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [173364] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + STATE(4907), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6313), 30, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6030), 8, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_else, anon_sym_when, anon_sym_in, - [174780] = 23, + [173426] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(4923), 1, + STATE(4908), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(5817), 4, + anon_sym_DOT_DOT, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6032), 8, + ACTIONS(5815), 14, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_end, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_else, anon_sym_when, anon_sym_in, - [174872] = 10, + [173506] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7438), 1, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - STATE(4924), 1, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + STATE(4909), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7440), 2, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7450), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, - anon_sym_DOT_DOT, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 26, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - sym_binary_ampersand, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5779), 8, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_else, anon_sym_when, anon_sym_in, - [174938] = 7, + [173598] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7551), 1, - anon_sym_PIPE, - STATE(4925), 1, + STATE(4910), 1, sym_heredoc_body, - STATE(4926), 1, + STATE(4974), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 9, + ACTIONS(4627), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4584), 30, + ACTIONS(4629), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -483761,28 +487101,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [174998] = 6, + [173656] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7559), 1, - anon_sym_PIPE, + ACTIONS(1503), 1, + anon_sym_COLON, + ACTIONS(7161), 1, + anon_sym_COLON_COLON, + STATE(4285), 1, + aux_sym_constant_repeat1, + STATE(4911), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4926), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 9, - anon_sym_RBRACK, + ACTIONS(4584), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 30, + ACTIONS(4586), 30, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -483794,11 +487137,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -483809,54 +487150,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [175056] = 11, + anon_sym_then, + [173718] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7547), 1, - anon_sym_LBRACK, - ACTIONS(7549), 1, - anon_sym_STAR, - ACTIONS(7551), 1, - anon_sym_PIPE, - ACTIONS(7553), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, anon_sym_DOT, - ACTIONS(7555), 1, - anon_sym_QMARK, - STATE(4925), 1, - aux_sym_union_type_repeat1, - STATE(4927), 1, + STATE(4912), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 8, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4609), 27, - sym__start_of_index_operator, + ACTIONS(7562), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7568), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + ACTIONS(5869), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5867), 22, + sym__line_break, + sym_binary_ampersand, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -483866,40 +487209,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_RBRACK_QMARK, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [175124] = 11, + [173786] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7547), 1, - anon_sym_LBRACK, - ACTIONS(7549), 1, - anon_sym_STAR, - ACTIONS(7551), 1, - anon_sym_PIPE, - ACTIONS(7553), 1, - anon_sym_DOT, - ACTIONS(7555), 1, - anon_sym_QMARK, - STATE(4925), 1, - aux_sym_union_type_repeat1, - STATE(4928), 1, - sym_heredoc_body, + ACTIONS(7572), 1, + sym__string_literal_start, + STATE(5218), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 8, + STATE(4913), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5534), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 27, + anon_sym_DOT, + ACTIONS(5532), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -483913,7 +487250,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -483924,31 +487260,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [175192] = 7, + anon_sym_do, + [173846] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7562), 1, - anon_sym_PIPE, - STATE(4929), 1, + ACTIONS(2173), 1, + sym__string_literal_start, + ACTIONS(7575), 1, + anon_sym_COLON, + STATE(4914), 1, sym_heredoc_body, - STATE(4930), 1, - aux_sym_union_type_repeat1, + STATE(5089), 1, + aux_sym_chained_string_repeat1, + STATE(5473), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 31, + ACTIONS(135), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -483962,10 +487304,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -483980,28 +487320,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [175252] = 6, + [173910] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7564), 1, - anon_sym_PIPE, + STATE(4915), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4930), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(4638), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 31, + ACTIONS(4640), 32, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -484014,10 +487353,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_STAR, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -484031,36 +487369,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_then, - [175310] = 11, + [173966] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7402), 1, - anon_sym_LBRACK, - ACTIONS(7404), 1, - anon_sym_STAR, - ACTIONS(7408), 1, - anon_sym_DOT, - ACTIONS(7410), 1, - anon_sym_QMARK, - ACTIONS(7562), 1, - anon_sym_PIPE, - STATE(4929), 1, - aux_sym_union_type_repeat1, - STATE(4931), 1, + STATE(4916), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(4672), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4609), 28, + ACTIONS(4674), 32, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -484074,8 +487403,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -484086,38 +487418,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [175378] = 11, + [174022] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7402), 1, - anon_sym_LBRACK, - ACTIONS(7404), 1, - anon_sym_STAR, - ACTIONS(7408), 1, - anon_sym_DOT, - ACTIONS(7410), 1, - anon_sym_QMARK, - ACTIONS(7562), 1, - anon_sym_PIPE, - STATE(4929), 1, - aux_sym_union_type_repeat1, - STATE(4932), 1, + STATE(4917), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(4692), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4570), 28, + ACTIONS(4694), 32, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -484131,8 +487454,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -484143,25 +487469,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [175446] = 8, + [174078] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(7567), 1, - anon_sym_DASH_GT, - STATE(4933), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7471), 1, + sym_binary_ampersand, + STATE(4918), 1, sym_heredoc_body, - STATE(10338), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 10, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6263), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6261), 19, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [174150] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1821), 1, + anon_sym_COLON, + ACTIONS(5579), 1, + anon_sym_COLON_COLON, + STATE(2473), 1, + aux_sym_constant_repeat1, + STATE(4919), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4584), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -484170,8 +487555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 28, + anon_sym_COLON2, + ACTIONS(4586), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -484184,6 +487569,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -484195,27 +487581,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [175508] = 8, + [174212] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - STATE(4934), 1, + ACTIONS(3037), 1, + sym__string_literal_start, + ACTIONS(7577), 1, + anon_sym_COLON, + STATE(3514), 1, + sym_string, + STATE(4920), 1, sym_heredoc_body, + STATE(5071), 1, + aux_sym_chained_string_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(157), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -484223,22 +487610,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 30, + anon_sym_DOT, + anon_sym_COLON2, + ACTIONS(135), 28, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -484248,142 +487636,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [175570] = 23, + anon_sym_do, + [174276] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7511), 1, + ACTIONS(6063), 1, anon_sym_DOT_DOT, - ACTIONS(7513), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7517), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7519), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7523), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7529), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7535), 1, - anon_sym_QMARK, - ACTIONS(7537), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7539), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7545), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(4935), 1, + STATE(4921), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7527), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7531), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7515), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7525), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7541), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6758), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(6061), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_end, - [175662] = 23, + anon_sym_QMARK, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [174364] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7511), 1, + ACTIONS(5981), 1, anon_sym_DOT_DOT, - ACTIONS(7513), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7517), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, + sym_binary_ampersand, + ACTIONS(7581), 1, anon_sym_PIPE, - ACTIONS(7519), 1, + ACTIONS(7583), 1, anon_sym_CARET, - ACTIONS(7523), 1, + ACTIONS(7585), 1, anon_sym_EQ_EQ, - ACTIONS(7529), 1, - anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7535), 1, - anon_sym_QMARK, - ACTIONS(7537), 1, + ACTIONS(7591), 1, anon_sym_AMP_AMP, - ACTIONS(7539), 1, + ACTIONS(7593), 1, anon_sym_PIPE_PIPE, - ACTIONS(7545), 1, - sym_binary_ampersand, - STATE(4936), 1, + STATE(4922), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, + ACTIONS(7558), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7527), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7531), 2, + ACTIONS(7562), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7515), 3, + ACTIONS(7589), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7579), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7525), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7541), 4, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, + ACTIONS(7568), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6760), 8, + ACTIONS(7587), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5979), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -484391,68 +487772,188 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, anon_sym_end, - [175754] = 23, + anon_sym_QMARK, + [174452] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7214), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7511), 1, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + STATE(4923), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5869), 6, anon_sym_DOT_DOT, - ACTIONS(7513), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7517), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7519), 1, - anon_sym_CARET, - ACTIONS(7523), 1, anon_sym_EQ_EQ, - ACTIONS(7529), 1, - anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7535), 1, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5867), 22, + sym_binary_ampersand, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_QMARK, - ACTIONS(7537), 1, anon_sym_AMP_AMP, - ACTIONS(7539), 1, anon_sym_PIPE_PIPE, - ACTIONS(7545), 1, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [174520] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(4937), 1, + STATE(4924), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7527), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7531), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7515), 3, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6134), 5, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7525), 4, + ACTIONS(6132), 18, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7541), 4, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [174596] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, + sym_binary_ampersand, + ACTIONS(7581), 1, + anon_sym_PIPE, + ACTIONS(7583), 1, + anon_sym_CARET, + ACTIONS(7585), 1, + anon_sym_EQ_EQ, + ACTIONS(7591), 1, + anon_sym_AMP_AMP, + ACTIONS(7593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7595), 1, + anon_sym_DOT_DOT, + ACTIONS(7597), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7599), 1, + anon_sym_QMARK, + STATE(4925), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7558), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7562), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7589), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7579), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, + ACTIONS(7568), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6629), 8, + ACTIONS(7587), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6863), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -484461,22 +487962,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [175846] = 8, + [174688] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - STATE(4938), 1, + STATE(4926), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(4696), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -484484,22 +487978,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 30, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4698), 32, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -484509,117 +488008,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [175908] = 21, + anon_sym_then, + [174744] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5923), 1, - anon_sym_DOT_DOT, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7426), 1, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7444), 1, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(4939), 1, + STATE(4927), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5921), 10, + ACTIONS(6092), 8, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, anon_sym_else, anon_sym_when, anon_sym_in, - [175996] = 12, + [174836] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - STATE(4940), 1, + STATE(4928), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6064), 6, + ACTIONS(6327), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6062), 20, + ACTIONS(6325), 20, sym_binary_ampersand, anon_sym_RPAREN, anon_sym_RBRACE, @@ -484640,63 +488140,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [176066] = 21, + [174906] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(4929), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4716), 9, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4718), 32, + sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [174962] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6068), 1, + ACTIONS(6047), 1, anon_sym_DOT_DOT, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(4941), 1, + STATE(4930), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6066), 10, + ACTIONS(6045), 12, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -484704,25 +488251,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_end, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_else, anon_sym_when, anon_sym_in, - [176154] = 8, + [175046] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(733), 1, + ACTIONS(747), 1, sym__start_of_brace_block, - ACTIONS(7569), 1, + ACTIONS(7601), 1, anon_sym_do, - STATE(4942), 1, + STATE(4931), 1, sym_heredoc_body, + STATE(6087), 1, + sym_do_end_block, + STATE(6088), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5128), 2, - sym_do_end_block, - sym_brace_block, - ACTIONS(5512), 8, + ACTIONS(5570), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -484731,7 +488281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 29, + ACTIONS(5568), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -484761,88 +488311,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [176216] = 17, + [175110] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(6215), 1, + anon_sym_DOT_DOT, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7452), 1, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(4943), 1, + STATE(4932), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7440), 2, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, - anon_sym_DOT_DOT, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6070), 14, + ACTIONS(6213), 11, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_else, anon_sym_when, anon_sym_in, - [176296] = 5, + [175196] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4944), 1, + ACTIONS(7429), 1, + anon_sym_LBRACK, + ACTIONS(7431), 1, + anon_sym_STAR, + ACTIONS(7433), 1, + anon_sym_DOT, + ACTIONS(7435), 1, + anon_sym_QMARK, + ACTIONS(7556), 1, + anon_sym_PIPE, + STATE(4933), 1, sym_heredoc_body, + STATE(4982), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4655), 9, + ACTIONS(4684), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4657), 32, + ACTIONS(4686), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -484856,11 +488419,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -484871,42 +488431,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [176352] = 11, + [175264] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7327), 1, - anon_sym_LBRACK, - ACTIONS(7329), 1, - anon_sym_STAR, - ACTIONS(7333), 1, - anon_sym_DOT, - ACTIONS(7335), 1, - anon_sym_QMARK, - ACTIONS(7507), 1, - anon_sym_PIPE, - STATE(4945), 1, + STATE(4934), 1, sym_heredoc_body, - STATE(4950), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(4700), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4605), 28, - sym__start_of_brace_block, + ACTIONS(4702), 32, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -484917,8 +488465,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -484929,88 +488481,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [176420] = 23, + anon_sym_then, + [175320] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7511), 1, - anon_sym_DOT_DOT, - ACTIONS(7513), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7517), 1, - anon_sym_PIPE, - ACTIONS(7519), 1, - anon_sym_CARET, - ACTIONS(7523), 1, - anon_sym_EQ_EQ, - ACTIONS(7529), 1, - anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7535), 1, - anon_sym_QMARK, - ACTIONS(7537), 1, - anon_sym_AMP_AMP, - ACTIONS(7539), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7545), 1, - sym_binary_ampersand, - STATE(4946), 1, + STATE(4935), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7527), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7531), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7515), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7525), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7541), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7543), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6667), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [176512] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4947), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4623), 9, - anon_sym_DOT_DOT, + ACTIONS(4696), 9, + anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, @@ -485019,7 +488503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4625), 32, + ACTIONS(4698), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -485052,23 +488536,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [176568] = 9, + [175376] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(783), 1, - sym__start_of_brace_block, - ACTIONS(7557), 1, - anon_sym_do, - STATE(4948), 1, + STATE(4936), 1, sym_heredoc_body, - STATE(5753), 1, - sym_do_end_block, - STATE(5771), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(4676), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -485077,7 +488553,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 29, + anon_sym_EQ, + ACTIONS(4678), 32, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -485091,8 +488568,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -485107,194 +488587,366 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [176632] = 5, + [175432] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4949), 1, + ACTIONS(6047), 1, + anon_sym_DOT_DOT, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, + sym_binary_ampersand, + ACTIONS(7581), 1, + anon_sym_PIPE, + ACTIONS(7583), 1, + anon_sym_CARET, + ACTIONS(7585), 1, + anon_sym_EQ_EQ, + STATE(4937), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4667), 9, - anon_sym_DOT_DOT, + ACTIONS(7558), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7562), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7589), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7579), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4669), 32, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7568), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, + ACTIONS(7587), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(6045), 12, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [176688] = 7, + [175516] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7507), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, anon_sym_PIPE, - STATE(4950), 1, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + STATE(4938), 1, sym_heredoc_body, - STATE(4951), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 31, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + ACTIONS(6193), 8, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [175608] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, + sym_binary_ampersand, + ACTIONS(7581), 1, + anon_sym_PIPE, + ACTIONS(7583), 1, anon_sym_CARET, + ACTIONS(7585), 1, + anon_sym_EQ_EQ, + ACTIONS(7591), 1, + anon_sym_AMP_AMP, + ACTIONS(7593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7595), 1, + anon_sym_DOT_DOT, + ACTIONS(7597), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7599), 1, + anon_sym_QMARK, + STATE(4939), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7558), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7562), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7589), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7579), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7566), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7568), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(7587), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [176748] = 6, + ACTIONS(5779), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [175700] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7571), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, + sym_binary_ampersand, + ACTIONS(7581), 1, anon_sym_PIPE, + ACTIONS(7583), 1, + anon_sym_CARET, + ACTIONS(7585), 1, + anon_sym_EQ_EQ, + ACTIONS(7591), 1, + anon_sym_AMP_AMP, + ACTIONS(7593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7595), 1, + anon_sym_DOT_DOT, + ACTIONS(7597), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7599), 1, + anon_sym_QMARK, + STATE(4940), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4951), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, - anon_sym_DOT_DOT, + ACTIONS(7558), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7562), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7589), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7579), 3, anon_sym_LT, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 31, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7568), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_STAR, + ACTIONS(7587), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6840), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [175792] = 21, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6442), 1, + anon_sym_DOT_DOT, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + STATE(4941), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6440), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [176806] = 11, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [175880] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7327), 1, - anon_sym_LBRACK, - ACTIONS(7329), 1, - anon_sym_STAR, - ACTIONS(7333), 1, - anon_sym_DOT, - ACTIONS(7335), 1, - anon_sym_QMARK, - ACTIONS(7507), 1, - anon_sym_PIPE, - STATE(4950), 1, - aux_sym_union_type_repeat1, - STATE(4952), 1, + STATE(4942), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(4680), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4609), 28, - sym__start_of_brace_block, + ACTIONS(4682), 32, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -485305,8 +488957,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -485317,81 +488973,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [176874] = 11, + anon_sym_then, + [175936] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7327), 1, - anon_sym_LBRACK, - ACTIONS(7329), 1, - anon_sym_STAR, - ACTIONS(7333), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7335), 1, - anon_sym_QMARK, - ACTIONS(7507), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, anon_sym_PIPE, - STATE(4950), 1, - aux_sym_union_type_repeat1, - STATE(4953), 1, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + STATE(4943), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 28, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6203), 8, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [176942] = 8, + anon_sym_RBRACK, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [176028] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1982), 1, - anon_sym_COLON, - ACTIONS(7058), 1, - anon_sym_COLON_COLON, - STATE(3953), 1, - aux_sym_constant_repeat1, - STATE(4954), 1, + STATE(4944), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 8, + ACTIONS(4708), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -485400,10 +489063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(4549), 30, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4710), 32, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -485414,8 +489077,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -485426,28 +489093,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [177004] = 9, + anon_sym_then, + [176084] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1053), 1, - sym__string_literal_start, - ACTIONS(7574), 1, - anon_sym_COLON, - STATE(4955), 1, + STATE(4945), 1, sym_heredoc_body, - STATE(5033), 1, - aux_sym_chained_string_repeat1, - STATE(5627), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(4704), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -485456,10 +489114,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 29, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4706), 32, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -485470,8 +489128,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -485485,42 +489147,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [177068] = 11, + anon_sym_then, + [176140] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7338), 1, sym__start_of_index_operator, - ACTIONS(7438), 1, + ACTIONS(7560), 1, anon_sym_AMP_STAR, - STATE(4956), 1, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, + sym_binary_ampersand, + ACTIONS(7581), 1, + anon_sym_PIPE, + ACTIONS(7583), 1, + anon_sym_CARET, + ACTIONS(7585), 1, + anon_sym_EQ_EQ, + ACTIONS(7591), 1, + anon_sym_AMP_AMP, + ACTIONS(7593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7595), 1, + anon_sym_DOT_DOT, + ACTIONS(7597), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7599), 1, + anon_sym_QMARK, + STATE(4946), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7440), 2, + ACTIONS(7558), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7562), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7448), 4, + ACTIONS(7589), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7579), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7568), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(7587), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6822), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [176232] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + STATE(4947), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6090), 6, + ACTIONS(6259), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6088), 22, + ACTIONS(6257), 26, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, sym_binary_ampersand, anon_sym_RPAREN, anon_sym_RBRACE, @@ -485543,67 +489273,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [177136] = 23, + [176298] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(4957), 1, + STATE(4948), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6358), 8, + ACTIONS(5825), 8, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -485612,19 +489342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [177228] = 7, + [176390] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7576), 1, - anon_sym_COMMA, - STATE(4958), 1, + STATE(4949), 1, sym_heredoc_body, - STATE(4960), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(4664), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -485633,7 +489359,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 31, + anon_sym_EQ, + ACTIONS(4666), 32, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -485645,10 +489373,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -485662,22 +489392,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [177288] = 7, + anon_sym_then, + [176446] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7578), 1, - anon_sym_COMMA, - STATE(4959), 1, + STATE(4950), 1, sym_heredoc_body, - STATE(4961), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(4652), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -485686,7 +489410,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 31, + anon_sym_EQ, + ACTIONS(4654), 32, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -485698,10 +489424,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -485715,183 +489443,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [177348] = 7, + anon_sym_then, + [176502] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7578), 1, - anon_sym_COMMA, - STATE(4689), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4960), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5627), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(5585), 31, + ACTIONS(7404), 1, sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - anon_sym_end, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, anon_sym_QMARK, + ACTIONS(7463), 1, anon_sym_AMP_AMP, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [177408] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7580), 1, - anon_sym_COMMA, - STATE(4689), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4961), 1, + ACTIONS(7471), 1, + sym_binary_ampersand, + STATE(4951), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5562), 31, - sym__start_of_index_operator, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6025), 8, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_else, anon_sym_when, anon_sym_in, - [177468] = 11, + [176594] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7402), 1, - anon_sym_LBRACK, - ACTIONS(7404), 1, - anon_sym_STAR, - ACTIONS(7408), 1, - anon_sym_DOT, - ACTIONS(7410), 1, - anon_sym_QMARK, - ACTIONS(7562), 1, - anon_sym_PIPE, - STATE(4929), 1, - aux_sym_union_type_repeat1, - STATE(4962), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4603), 7, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4605), 28, - sym__line_break, + ACTIONS(7338), 1, sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [177536] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4929), 1, - aux_sym_union_type_repeat1, - STATE(4963), 1, + ACTIONS(7564), 1, + anon_sym_DOT, + STATE(4952), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(6001), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -485899,11 +489533,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 31, + ACTIONS(5999), 32, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -485913,12 +489544,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -485932,68 +489566,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [177594] = 23, + [176654] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(4964), 1, + STATE(4953), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6364), 8, + ACTIONS(6039), 8, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, @@ -486002,94 +489635,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [177686] = 15, + [176746] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(6063), 1, + anon_sym_DOT_DOT, + ACTIONS(7338), 1, sym__start_of_index_operator, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, - anon_sym_CARET, - ACTIONS(7438), 1, + ACTIONS(7560), 1, anon_sym_AMP_STAR, - ACTIONS(7452), 1, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, sym_binary_ampersand, - STATE(4965), 1, + ACTIONS(7581), 1, + anon_sym_PIPE, + ACTIONS(7583), 1, + anon_sym_CARET, + ACTIONS(7585), 1, + anon_sym_EQ_EQ, + ACTIONS(7591), 1, + anon_sym_AMP_AMP, + ACTIONS(7593), 1, + anon_sym_PIPE_PIPE, + STATE(4954), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7558), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7440), 2, + ACTIONS(7562), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7448), 4, + ACTIONS(7589), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7579), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7568), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6094), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6092), 18, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_end, + ACTIONS(7587), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + ACTIONS(6061), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [177762] = 8, + [176834] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1986), 1, - anon_sym_COLON, - ACTIONS(5522), 1, - anon_sym_COLON_COLON, - STATE(2446), 1, - aux_sym_constant_repeat1, - STATE(4966), 1, + ACTIONS(7429), 1, + anon_sym_LBRACK, + ACTIONS(7431), 1, + anon_sym_STAR, + ACTIONS(7433), 1, + anon_sym_DOT, + ACTIONS(7435), 1, + anon_sym_QMARK, + ACTIONS(7556), 1, + anon_sym_PIPE, + STATE(4955), 1, sym_heredoc_body, + STATE(4982), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 9, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_COLON2, - ACTIONS(4549), 29, + anon_sym_EQ, + ACTIONS(4650), 28, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -486112,28 +489756,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [177824] = 9, + [176902] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3000), 1, - sym__string_literal_start, - ACTIONS(7582), 1, - anon_sym_COLON, - STATE(3448), 1, - sym_string, - STATE(4967), 1, + STATE(4956), 1, sym_heredoc_body, - STATE(5032), 1, - aux_sym_chained_string_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 9, + ACTIONS(4716), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -486142,10 +489776,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_COLON2, - ACTIONS(133), 28, + anon_sym_EQ, + ACTIONS(4718), 32, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -486156,8 +489791,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -486172,15 +489810,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [177888] = 5, + [176958] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4968), 1, + ACTIONS(795), 1, + sym__start_of_brace_block, + ACTIONS(7603), 1, + anon_sym_do, + STATE(4957), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + STATE(5338), 2, + sym_do_end_block, + sym_brace_block, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -486189,8 +489834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4599), 32, + ACTIONS(5551), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -486204,11 +489848,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -486223,153 +489864,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [177944] = 19, + [177020] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, - anon_sym_DOT_DOT, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, - anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7452), 1, - sym_binary_ampersand, - STATE(4969), 1, + STATE(4958), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(4680), 9, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4682), 32, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 12, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [178028] = 20, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6118), 1, - anon_sym_DOT_DOT, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7452), 1, - sym_binary_ampersand, - STATE(4970), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7430), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7450), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6116), 11, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [178114] = 8, + anon_sym_do, + [177076] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3000), 1, - sym__string_literal_start, - STATE(4971), 1, + STATE(4959), 1, sym_heredoc_body, - STATE(4973), 1, - aux_sym_chained_string_repeat1, - STATE(5190), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5490), 9, - anon_sym_RBRACK, + ACTIONS(5559), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -486378,7 +489932,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5488), 29, + ACTIONS(5557), 33, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -486391,6 +489946,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + sym__string_literal_start, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -486403,20 +489960,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [178176] = 5, + anon_sym_then, + [177132] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4972), 1, + STATE(4960), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4619), 9, + ACTIONS(4672), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -486426,7 +489984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4621), 32, + ACTIONS(4674), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -486459,21 +490017,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [178232] = 7, + [177188] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7584), 1, - sym__string_literal_start, - STATE(5190), 1, - sym_string, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7564), 1, + anon_sym_DOT, + STATE(4961), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4973), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5499), 9, - anon_sym_RBRACK, + ACTIONS(6152), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -486481,10 +490037,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5497), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6150), 32, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -486494,9 +490048,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -486508,19 +490068,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [178292] = 5, + [177248] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4974), 1, + STATE(4962), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4651), 9, + ACTIONS(4676), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -486530,9 +490088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4653), 32, - sym__line_break, + ACTIONS(4678), 32, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -486543,7 +490102,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -486562,16 +490120,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [178348] = 5, + anon_sym_do, + [177304] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4975), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7564), 1, + anon_sym_DOT, + STATE(4963), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4615), 9, + ACTIONS(6156), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -486579,11 +490141,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4617), 32, + ACTIONS(6154), 32, sym__line_break, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -486593,13 +490152,15 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -486613,20 +490174,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [178404] = 7, + [177364] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7533), 1, - anon_sym_DOT, - STATE(4976), 1, + STATE(4964), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5895), 7, + ACTIONS(4660), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -486634,8 +490190,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5893), 32, - sym__line_break, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4662), 32, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -486645,15 +490205,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -486667,130 +490224,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [178464] = 21, + anon_sym_do, + [177420] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5923), 1, - anon_sym_DOT_DOT, - ACTIONS(7214), 1, + ACTIONS(7338), 1, sym__start_of_index_operator, - ACTIONS(7517), 1, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, + sym_binary_ampersand, + ACTIONS(7581), 1, anon_sym_PIPE, - ACTIONS(7519), 1, + ACTIONS(7583), 1, anon_sym_CARET, - ACTIONS(7523), 1, + ACTIONS(7585), 1, anon_sym_EQ_EQ, - ACTIONS(7529), 1, - anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7537), 1, + ACTIONS(7591), 1, anon_sym_AMP_AMP, - ACTIONS(7539), 1, + ACTIONS(7593), 1, anon_sym_PIPE_PIPE, - ACTIONS(7545), 1, - sym_binary_ampersand, - STATE(4977), 1, + ACTIONS(7595), 1, + anon_sym_DOT_DOT, + ACTIONS(7597), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7599), 1, + anon_sym_QMARK, + STATE(4965), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, + ACTIONS(7558), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7527), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7531), 2, + ACTIONS(7562), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7515), 3, + ACTIONS(7589), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7579), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7525), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7541), 4, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, + ACTIONS(7568), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5921), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - [178552] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5941), 1, - anon_sym_DOT_DOT, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7517), 1, - anon_sym_PIPE, - ACTIONS(7519), 1, - anon_sym_CARET, - ACTIONS(7523), 1, - anon_sym_EQ_EQ, - ACTIONS(7529), 1, - anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7537), 1, - anon_sym_AMP_AMP, - ACTIONS(7539), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7545), 1, - sym_binary_ampersand, - STATE(4978), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7521), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7527), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7531), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7515), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7525), 4, + ACTIONS(7587), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7541), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7543), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5939), 10, + ACTIONS(6801), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -486798,18 +490293,16 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_QMARK, - [178640] = 5, + [177512] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4979), 1, + STATE(4966), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4619), 9, + ACTIONS(4704), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -486819,9 +490312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4621), 32, - sym__line_break, + ACTIONS(4706), 32, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -486832,7 +490326,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -486851,16 +490344,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [178696] = 5, + anon_sym_do, + [177568] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4980), 1, + ACTIONS(1819), 1, + anon_sym_COLON, + ACTIONS(7163), 1, + anon_sym_COLON_COLON, + STATE(3899), 1, + aux_sym_constant_repeat1, + STATE(4967), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4663), 9, + ACTIONS(4584), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -486869,10 +490368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4665), 32, - sym__line_break, + ACTIONS(4586), 30, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -486883,12 +490382,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -486899,70 +490394,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [178752] = 5, + anon_sym_do, + [177630] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4981), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, + sym_binary_ampersand, + ACTIONS(7581), 1, + anon_sym_PIPE, + ACTIONS(7583), 1, + anon_sym_CARET, + ACTIONS(7585), 1, + anon_sym_EQ_EQ, + ACTIONS(7591), 1, + anon_sym_AMP_AMP, + ACTIONS(7593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7595), 1, + anon_sym_DOT_DOT, + ACTIONS(7597), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7599), 1, + anon_sym_QMARK, + STATE(4968), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4675), 9, - anon_sym_DOT_DOT, + ACTIONS(7558), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7562), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7589), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7579), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4677), 32, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7568), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, + ACTIONS(7587), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [178808] = 5, + ACTIONS(6803), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [177722] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4982), 1, + STATE(4969), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4679), 9, + ACTIONS(4708), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -486972,9 +490486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4681), 32, - sym__line_break, + ACTIONS(4710), 32, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -486985,7 +490500,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -487004,28 +490518,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [178864] = 11, + anon_sym_do, + [177778] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7402), 1, + ACTIONS(7500), 1, anon_sym_LBRACK, - ACTIONS(7404), 1, + ACTIONS(7502), 1, anon_sym_STAR, - ACTIONS(7408), 1, + ACTIONS(7506), 1, anon_sym_DOT, - ACTIONS(7410), 1, + ACTIONS(7508), 1, anon_sym_QMARK, - ACTIONS(7562), 1, + ACTIONS(7605), 1, anon_sym_PIPE, - STATE(4929), 1, - aux_sym_union_type_repeat1, - STATE(4983), 1, + STATE(4970), 1, sym_heredoc_body, + STATE(5006), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4683), 7, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -487033,61 +490547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4685), 28, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [178932] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(783), 1, - sym__start_of_brace_block, - ACTIONS(7557), 1, - anon_sym_do, - STATE(4984), 1, - sym_heredoc_body, - STATE(5772), 1, - sym_do_end_block, - STATE(5867), 1, - sym_brace_block, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5530), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5528), 29, + ACTIONS(4650), 28, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -487113,19 +490573,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [178996] = 5, + [177846] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4985), 1, + STATE(4971), 1, sym_heredoc_body, + STATE(5006), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4631), 9, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -487135,7 +490596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4633), 32, + ACTIONS(4629), 31, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -487152,7 +490613,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, @@ -487168,293 +490628,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [179052] = 21, + [177904] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6242), 1, - anon_sym_DOT_DOT, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7338), 1, sym__start_of_index_operator, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, - anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7560), 1, anon_sym_AMP_STAR, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - STATE(4986), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7450), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6240), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [179140] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7564), 1, anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7570), 1, + sym_binary_ampersand, + ACTIONS(7581), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7583), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7585), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7591), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7593), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - STATE(4987), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7450), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6256), 8, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [179232] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7595), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7597), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, - anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7599), 1, anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(7576), 1, - anon_sym_COMMA, - STATE(4960), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4988), 1, + STATE(4972), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7558), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7562), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7589), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7579), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7568), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5570), 6, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [179328] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, - anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(7578), 1, - anon_sym_COMMA, - STATE(4961), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(4989), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7587), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7450), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5585), 6, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5825), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [179424] = 5, + [177996] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4990), 1, + STATE(4973), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4655), 9, + ACTIONS(4664), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -487464,9 +490715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4657), 32, - sym__line_break, + ACTIONS(4666), 32, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -487477,7 +490729,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -487496,27 +490747,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [179480] = 5, + anon_sym_do, + [178052] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4991), 1, + ACTIONS(7607), 1, + anon_sym_PIPE, + STATE(4974), 1, sym_heredoc_body, + STATE(4977), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4635), 9, + ACTIONS(4634), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4637), 32, - sym__line_break, + ACTIONS(4636), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -487528,7 +490782,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -487545,39 +490798,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [179536] = 11, + [178112] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7402), 1, - anon_sym_LBRACK, - ACTIONS(7404), 1, - anon_sym_STAR, - ACTIONS(7408), 1, - anon_sym_DOT, - ACTIONS(7410), 1, - anon_sym_QMARK, - ACTIONS(7562), 1, - anon_sym_PIPE, - STATE(4929), 1, - aux_sym_union_type_repeat1, - STATE(4992), 1, + ACTIONS(3037), 1, + sym__string_literal_start, + STATE(4975), 1, sym_heredoc_body, + STATE(5039), 1, + aux_sym_chained_string_repeat1, + STATE(5218), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4639), 7, + ACTIONS(157), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4641), 28, - sym__line_break, + anon_sym_DOT, + ACTIONS(135), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -487589,7 +490838,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -487602,18 +490850,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [179604] = 5, + anon_sym_do, + [178174] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4993), 1, + STATE(4976), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4643), 9, + ACTIONS(4712), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -487623,7 +490873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4645), 32, + ACTIONS(4714), 32, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -487656,27 +490906,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [179660] = 5, + [178230] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4994), 1, - sym_heredoc_body, + ACTIONS(7609), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 9, + STATE(4977), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4595), 32, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4629), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -487688,10 +490939,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -487703,23 +490955,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [179716] = 7, + [178288] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7533), 1, - anon_sym_DOT, - STATE(4995), 1, + STATE(4978), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6000), 7, + ACTIONS(4700), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -487727,8 +490974,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5998), 32, - sym__line_break, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4702), 32, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -487738,15 +490989,12 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -487760,28 +491008,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [179776] = 7, + anon_sym_do, + [178344] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7533), 1, + ACTIONS(7607), 1, + anon_sym_PIPE, + ACTIONS(7612), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_STAR, + ACTIONS(7616), 1, anon_sym_DOT, - STATE(4996), 1, + ACTIONS(7618), 1, + anon_sym_QMARK, + STATE(4974), 1, + aux_sym_union_type_repeat1, + STATE(4979), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6004), 7, + ACTIONS(4623), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6002), 32, - sym__line_break, + anon_sym_EQ, + ACTIONS(4625), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -487791,15 +491049,10 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -487810,98 +491063,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [179836] = 23, + [178412] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7607), 1, anon_sym_PIPE, - ACTIONS(7428), 1, - anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7612), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_STAR, + ACTIONS(7616), 1, + anon_sym_DOT, + ACTIONS(7618), 1, anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - STATE(4997), 1, + STATE(4974), 1, + aux_sym_union_type_repeat1, + STATE(4980), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7450), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6230), 8, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4605), 8, anon_sym_RBRACK, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [179928] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(4998), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4629), 32, - sym__line_break, + ACTIONS(4607), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -487913,12 +491107,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -487929,19 +491120,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [179984] = 5, + [178480] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4999), 1, + ACTIONS(795), 1, + sym__start_of_brace_block, + STATE(4981), 1, sym_heredoc_body, + STATE(5402), 1, + sym_do_end_block, + STATE(5403), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4659), 9, + ACTIONS(5570), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -487950,8 +491146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4661), 32, + ACTIONS(5568), 30, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -487965,11 +491160,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -487983,28 +491175,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_then, - [180040] = 6, + [178542] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(4950), 1, - aux_sym_union_type_repeat1, - STATE(5000), 1, + ACTIONS(7556), 1, + anon_sym_PIPE, + STATE(4982), 1, sym_heredoc_body, + STATE(4983), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 31, + ACTIONS(4636), 31, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -488036,32 +491230,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [180098] = 8, + [178602] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1599), 1, - anon_sym_COLON, - ACTIONS(7069), 1, - anon_sym_COLON_COLON, - STATE(4063), 1, - aux_sym_constant_repeat1, - STATE(5001), 1, - sym_heredoc_body, + ACTIONS(7620), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 8, + STATE(4983), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(4549), 30, - sym__line_break, + anon_sym_EQ, + ACTIONS(4629), 31, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -488072,9 +491264,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -488085,39 +491278,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [180160] = 9, + anon_sym_do, + [178660] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2154), 1, - sym__string_literal_start, - ACTIONS(7587), 1, - anon_sym_COLON, - STATE(5002), 1, + ACTIONS(7429), 1, + anon_sym_LBRACK, + ACTIONS(7431), 1, + anon_sym_STAR, + ACTIONS(7433), 1, + anon_sym_DOT, + ACTIONS(7435), 1, + anon_sym_QMARK, + ACTIONS(7556), 1, + anon_sym_PIPE, + STATE(4982), 1, + aux_sym_union_type_repeat1, + STATE(4984), 1, sym_heredoc_body, - STATE(5061), 1, - aux_sym_chained_string_repeat1, - STATE(5485), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(133), 29, - sym__line_break, + anon_sym_EQ, + ACTIONS(4625), 28, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -488128,7 +491324,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -488141,29 +491336,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [180224] = 5, + anon_sym_do, + [178728] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5003), 1, + ACTIONS(7429), 1, + anon_sym_LBRACK, + ACTIONS(7431), 1, + anon_sym_STAR, + ACTIONS(7433), 1, + anon_sym_DOT, + ACTIONS(7435), 1, + anon_sym_QMARK, + ACTIONS(7556), 1, + anon_sym_PIPE, + STATE(4982), 1, + aux_sym_union_type_repeat1, + STATE(4985), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4599), 32, + ACTIONS(4607), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -488177,11 +491381,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -488192,19 +491393,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [180280] = 5, + [178796] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5004), 1, + ACTIONS(795), 1, + sym__start_of_brace_block, + STATE(4986), 1, sym_heredoc_body, + STATE(5410), 1, + sym_do_end_block, + STATE(5411), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4623), 9, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -488213,8 +491419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4625), 32, + ACTIONS(5545), 30, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -488228,11 +491433,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -488246,16 +491448,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_then, - [180336] = 5, + [178858] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5005), 1, + ACTIONS(795), 1, + sym__start_of_brace_block, + STATE(4987), 1, sym_heredoc_body, + STATE(5412), 1, + sym_do_end_block, + STATE(5413), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4671), 9, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -488264,8 +491473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4673), 32, + ACTIONS(5545), 30, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -488279,11 +491487,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -488297,16 +491502,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_then, - [180392] = 5, + [178920] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5006), 1, + ACTIONS(747), 1, + sym__start_of_brace_block, + ACTIONS(7601), 1, + anon_sym_do, + STATE(4988), 1, sym_heredoc_body, + STATE(6155), 1, + sym_do_end_block, + STATE(6163), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5520), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -488315,9 +491529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5518), 33, + ACTIONS(5545), 29, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -488329,7 +491542,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -488343,90 +491555,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_then, - [180448] = 23, + [178984] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7511), 1, + ACTIONS(5981), 1, anon_sym_DOT_DOT, - ACTIONS(7513), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7517), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7519), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7523), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7529), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7535), 1, - anon_sym_QMARK, - ACTIONS(7537), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7539), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7545), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(5007), 1, + STATE(4989), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7527), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7531), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7515), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7525), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7541), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6010), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(5979), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, anon_sym_end, - [180540] = 5, + anon_sym_QMARK, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [179072] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5008), 1, + STATE(4990), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4651), 9, + ACTIONS(4688), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -488436,7 +491644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4653), 32, + ACTIONS(4690), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -488469,117 +491677,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [180596] = 5, + [179128] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5009), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(7623), 1, + anon_sym_COMMA, + STATE(4991), 1, sym_heredoc_body, + STATE(5026), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4615), 9, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4617), 32, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(5587), 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [179224] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(7625), 1, + anon_sym_COMMA, + STATE(4992), 1, + sym_heredoc_body, + STATE(5027), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [180652] = 5, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5631), 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [179320] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5010), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, + sym_binary_ampersand, + ACTIONS(7581), 1, + anon_sym_PIPE, + ACTIONS(7583), 1, + anon_sym_CARET, + ACTIONS(7585), 1, + anon_sym_EQ_EQ, + ACTIONS(7591), 1, + anon_sym_AMP_AMP, + ACTIONS(7593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7595), 1, + anon_sym_DOT_DOT, + ACTIONS(7597), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7599), 1, + anon_sym_QMARK, + STATE(4993), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4663), 9, - anon_sym_DOT_DOT, + ACTIONS(7558), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7562), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7589), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7579), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4665), 32, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7568), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, + ACTIONS(7587), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [180708] = 5, + ACTIONS(6820), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [179412] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5011), 1, + ACTIONS(747), 1, + sym__start_of_brace_block, + ACTIONS(7601), 1, + anon_sym_do, + STATE(4994), 1, sym_heredoc_body, + STATE(6168), 1, + sym_do_end_block, + STATE(6169), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4675), 9, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -488588,11 +491913,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4677), 32, - sym__start_of_brace_block, + ACTIONS(5545), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -488603,11 +491926,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -488621,16 +491942,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [180764] = 5, + anon_sym_then, + [179476] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5012), 1, + STATE(4995), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4679), 9, + ACTIONS(4652), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -488640,7 +491961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4681), 32, + ACTIONS(4654), 32, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -488673,153 +491994,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [180820] = 23, + [179532] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7214), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7511), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7513), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7517), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7519), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7523), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7529), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7535), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7537), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7539), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7545), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(5013), 1, + STATE(4996), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7527), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7531), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7515), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7525), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7541), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6790), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(5694), 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_end, - [180912] = 23, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [179624] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(5977), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, + sym_binary_ampersand, + ACTIONS(7581), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7583), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7585), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7591), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7593), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - STATE(5014), 1, + STATE(4997), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7558), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7562), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7589), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7579), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7568), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6144), 8, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(7587), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(5975), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [181004] = 5, + anon_sym_QMARK, + [179712] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5015), 1, + STATE(4998), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5536), 8, + ACTIONS(4692), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -488828,10 +492147,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5534), 33, - sym__line_break, + anon_sym_EQ, + ACTIONS(4694), 32, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -488842,10 +492162,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -488856,211 +492177,230 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [181060] = 23, + [179768] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7500), 1, + anon_sym_LBRACK, + ACTIONS(7502), 1, + anon_sym_STAR, + ACTIONS(7506), 1, anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, - anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7508), 1, anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - STATE(5016), 1, + ACTIONS(7605), 1, + anon_sym_PIPE, + STATE(4999), 1, sym_heredoc_body, + STATE(5006), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(4684), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4686), 28, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6152), 8, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [181152] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7511), 1, - anon_sym_DOT_DOT, - ACTIONS(7513), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7517), 1, - anon_sym_PIPE, - ACTIONS(7519), 1, anon_sym_CARET, - ACTIONS(7523), 1, - anon_sym_EQ_EQ, - ACTIONS(7529), 1, - anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7535), 1, - anon_sym_QMARK, - ACTIONS(7537), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_AMP_AMP, - ACTIONS(7539), 1, anon_sym_PIPE_PIPE, - ACTIONS(7545), 1, - sym_binary_ampersand, - STATE(5017), 1, + anon_sym_then, + [179836] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5000), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7527), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7531), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7515), 3, + ACTIONS(4688), 9, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7525), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7541), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4690), 32, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6030), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_end, - [181244] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7214), 1, - sym__start_of_index_operator, - ACTIONS(7511), 1, - anon_sym_DOT_DOT, - ACTIONS(7513), 1, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7517), 1, - anon_sym_PIPE, - ACTIONS(7519), 1, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, - ACTIONS(7523), 1, - anon_sym_EQ_EQ, - ACTIONS(7529), 1, - anon_sym_AMP_STAR, - ACTIONS(7533), 1, - anon_sym_DOT, - ACTIONS(7535), 1, - anon_sym_QMARK, - ACTIONS(7537), 1, - anon_sym_AMP_AMP, - ACTIONS(7539), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(7545), 1, - sym_binary_ampersand, - STATE(5018), 1, + anon_sym_then, + [179892] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5001), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7521), 2, + ACTIONS(4712), 9, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4714), 32, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7527), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7531), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [179948] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, + sym_binary_ampersand, + ACTIONS(7581), 1, + anon_sym_PIPE, + ACTIONS(7583), 1, + anon_sym_CARET, + ACTIONS(7585), 1, + anon_sym_EQ_EQ, + ACTIONS(7591), 1, + anon_sym_AMP_AMP, + ACTIONS(7593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7595), 1, + anon_sym_DOT_DOT, + ACTIONS(7597), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7599), 1, + anon_sym_QMARK, + STATE(5002), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7558), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7562), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7515), 3, + ACTIONS(7589), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7579), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7525), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7541), 4, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7543), 4, + ACTIONS(7568), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6794), 8, + ACTIONS(7587), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6797), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -489069,205 +492409,225 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [181336] = 13, + [180040] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7338), 1, sym__start_of_index_operator, - ACTIONS(7438), 1, + ACTIONS(7560), 1, anon_sym_AMP_STAR, - ACTIONS(7452), 1, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, sym_binary_ampersand, - STATE(5019), 1, + ACTIONS(7581), 1, + anon_sym_PIPE, + ACTIONS(7583), 1, + anon_sym_CARET, + ACTIONS(7585), 1, + anon_sym_EQ_EQ, + ACTIONS(7591), 1, + anon_sym_AMP_AMP, + ACTIONS(7593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7595), 1, + anon_sym_DOT_DOT, + ACTIONS(7597), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7599), 1, + anon_sym_QMARK, + STATE(5003), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7558), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7440), 2, + ACTIONS(7562), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7448), 4, + ACTIONS(7589), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7579), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7568), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6082), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6080), 19, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, + ACTIONS(7587), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [181408] = 25, + ACTIONS(6799), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [180132] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7589), 1, - anon_sym_COMMA, - ACTIONS(7591), 1, + ACTIONS(6215), 1, anon_sym_DOT_DOT, - ACTIONS(7593), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7597), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, + sym_binary_ampersand, + ACTIONS(7581), 1, anon_sym_PIPE, - ACTIONS(7599), 1, + ACTIONS(7583), 1, anon_sym_CARET, - ACTIONS(7603), 1, + ACTIONS(7585), 1, anon_sym_EQ_EQ, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7615), 1, - anon_sym_QMARK, - ACTIONS(7617), 1, + ACTIONS(7591), 1, anon_sym_AMP_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - STATE(5020), 1, + STATE(5004), 1, sym_heredoc_body, - STATE(5075), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7601), 2, + ACTIONS(7558), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, + ACTIONS(7562), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, + ACTIONS(7589), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7579), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7605), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7623), 4, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7625), 4, + ACTIONS(7568), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5570), 5, + ACTIONS(7587), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6213), 11, sym__line_break, - sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_do, - anon_sym_then, - [181503] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + [180218] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5021), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, + sym_binary_ampersand, + ACTIONS(7581), 1, + anon_sym_PIPE, + ACTIONS(7583), 1, + anon_sym_CARET, + STATE(5005), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5520), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5518), 31, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7558), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7562), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7568), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, - anon_sym_COMMA, + ACTIONS(6134), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6132), 18, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, + anon_sym_end, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [181558] = 5, + [180294] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5022), 1, + ACTIONS(7605), 1, + anon_sym_PIPE, + STATE(5006), 1, sym_heredoc_body, + STATE(5009), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4667), 10, - anon_sym_RBRACK, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4669), 30, + ACTIONS(4636), 31, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489279,10 +492639,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, @@ -489295,27 +492655,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [181613] = 9, + anon_sym_then, + [180354] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(857), 1, + ACTIONS(747), 1, sym__start_of_brace_block, - ACTIONS(7629), 1, + ACTIONS(7601), 1, anon_sym_do, - STATE(5023), 1, + STATE(5007), 1, sym_heredoc_body, - STATE(6266), 1, - sym_do_end_block, - STATE(6267), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 9, - anon_sym_RBRACK, + STATE(6124), 2, + sym_do_end_block, + sym_brace_block, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -489324,7 +492682,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 27, + ACTIONS(5551), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489336,6 +492695,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -489349,90 +492709,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [181676] = 5, + anon_sym_then, + [180416] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5024), 1, + ACTIONS(5977), 1, + anon_sym_DOT_DOT, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + STATE(5008), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5536), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5534), 31, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, + ACTIONS(5975), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_COLON, + anon_sym_end, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [181731] = 11, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [180504] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7631), 1, - anon_sym_LBRACK, - ACTIONS(7633), 1, - anon_sym_STAR, - ACTIONS(7635), 1, + ACTIONS(7627), 1, anon_sym_PIPE, - ACTIONS(7637), 1, - anon_sym_DOT, - ACTIONS(7639), 1, - anon_sym_QMARK, - STATE(5025), 1, - sym_heredoc_body, - STATE(5048), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + STATE(5009), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4605), 27, + ACTIONS(4629), 31, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -489443,9 +492812,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -489456,30 +492827,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [181798] = 6, + anon_sym_then, + [180562] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7641), 1, - anon_sym_of, - STATE(5026), 1, + ACTIONS(7500), 1, + anon_sym_LBRACK, + ACTIONS(7502), 1, + anon_sym_STAR, + ACTIONS(7506), 1, + anon_sym_DOT, + ACTIONS(7508), 1, + anon_sym_QMARK, + ACTIONS(7605), 1, + anon_sym_PIPE, + STATE(5006), 1, + aux_sym_union_type_repeat1, + STATE(5010), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5690), 8, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5686), 31, + anon_sym_EQ, + ACTIONS(4625), 28, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489504,22 +492885,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_then, - [181855] = 6, + [180630] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7643), 1, - anon_sym_of, - STATE(5027), 1, + ACTIONS(1069), 1, + sym__string_literal_start, + ACTIONS(7630), 1, + anon_sym_COLON, + STATE(5011), 1, sym_heredoc_body, + STATE(5065), 1, + aux_sym_chained_string_repeat1, + STATE(5673), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5719), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -489528,10 +492913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5715), 31, - sym__line_break, + ACTIONS(135), 29, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -489542,7 +492927,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -489559,24 +492943,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [181912] = 8, + [180694] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(955), 1, - sym__start_of_brace_block, - ACTIONS(7645), 1, - anon_sym_do, - STATE(5028), 1, + STATE(5012), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5617), 2, - sym_do_end_block, - sym_brace_block, - ACTIONS(5512), 9, - anon_sym_RBRACK, + ACTIONS(4656), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -489585,8 +492960,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 27, + anon_sym_EQ, + ACTIONS(4658), 32, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -489597,8 +492975,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -489610,40 +492991,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [181973] = 11, + anon_sym_do, + [180750] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7631), 1, - anon_sym_LBRACK, - ACTIONS(7633), 1, - anon_sym_STAR, - ACTIONS(7635), 1, - anon_sym_PIPE, - ACTIONS(7637), 1, - anon_sym_DOT, - ACTIONS(7639), 1, - anon_sym_QMARK, - STATE(5029), 1, + STATE(5013), 1, sym_heredoc_body, - STATE(5048), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4611), 7, + ACTIONS(4656), 9, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, + anon_sym_DOT, anon_sym_EQ, - ACTIONS(4613), 27, + ACTIONS(4658), 32, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -489654,9 +493025,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -489667,17 +493041,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [182040] = 5, + anon_sym_then, + [180806] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5030), 1, + ACTIONS(7632), 1, + anon_sym_LPAREN2, + STATE(5014), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4647), 10, + ACTIONS(4642), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -489688,7 +493066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4649), 30, + ACTIONS(4644), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489719,18 +493097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [182095] = 6, + [180864] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7647), 1, - anon_sym_COMMA, + STATE(5015), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5031), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5713), 8, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -489739,10 +493114,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 30, - sym__line_break, + anon_sym_EQ, + ACTIONS(4644), 32, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -489753,8 +493129,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -489769,22 +493148,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [182152] = 8, + [180920] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3000), 1, - sym__string_literal_start, - STATE(3448), 1, - sym_string, - STATE(5032), 1, + STATE(5016), 1, sym_heredoc_body, - STATE(5034), 1, - aux_sym_chained_string_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5490), 8, + ACTIONS(4720), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -489793,8 +493165,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5488), 29, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4722), 32, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489806,8 +493179,12 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -489821,23 +493198,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - [182213] = 8, + anon_sym_then, + [180976] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1053), 1, - sym__string_literal_start, - STATE(5033), 1, + STATE(4982), 1, + aux_sym_union_type_repeat1, + STATE(5017), 1, sym_heredoc_body, - STATE(5043), 1, - aux_sym_chained_string_repeat1, - STATE(5627), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5490), 8, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -489846,7 +493218,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5488), 29, + anon_sym_EQ, + ACTIONS(4629), 31, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -489860,8 +493233,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -489876,30 +493251,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [182274] = 7, + [181034] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7584), 1, - sym__string_literal_start, - STATE(3448), 1, - sym_string, + ACTIONS(7500), 1, + anon_sym_LBRACK, + ACTIONS(7502), 1, + anon_sym_STAR, + ACTIONS(7506), 1, + anon_sym_DOT, + ACTIONS(7508), 1, + anon_sym_QMARK, + ACTIONS(7605), 1, + anon_sym_PIPE, + STATE(5006), 1, + aux_sym_union_type_repeat1, + STATE(5018), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5034), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5499), 8, + ACTIONS(4668), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5497), 29, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4670), 28, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -489911,6 +493292,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -489923,26 +493305,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - [182333] = 8, + anon_sym_then, + [181102] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3000), 1, - sym__string_literal_start, - STATE(3448), 1, - sym_string, - STATE(5032), 1, - aux_sym_chained_string_repeat1, - STATE(5035), 1, + STATE(5019), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(4720), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -489951,9 +493325,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 29, + anon_sym_EQ, + ACTIONS(4722), 32, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -489964,8 +493340,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -489979,17 +493358,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [182394] = 5, + [181158] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5036), 1, + STATE(5020), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5654), 8, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -489998,9 +493376,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5652), 32, + anon_sym_EQ, + ACTIONS(4644), 32, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -490013,8 +493391,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -490025,32 +493406,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_then, - [182449] = 5, + [181214] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5037), 1, + ACTIONS(7607), 1, + anon_sym_PIPE, + ACTIONS(7612), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_STAR, + ACTIONS(7616), 1, + anon_sym_DOT, + ACTIONS(7618), 1, + anon_sym_QMARK, + STATE(4974), 1, + aux_sym_union_type_repeat1, + STATE(5021), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4619), 10, + ACTIONS(4638), 8, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4621), 30, + ACTIONS(4640), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -490062,11 +493451,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -490077,32 +493464,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [182504] = 11, + [181282] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7547), 1, + ACTIONS(7500), 1, anon_sym_LBRACK, - ACTIONS(7549), 1, + ACTIONS(7502), 1, anon_sym_STAR, - ACTIONS(7553), 1, + ACTIONS(7506), 1, anon_sym_DOT, - ACTIONS(7555), 1, + ACTIONS(7508), 1, anon_sym_QMARK, - ACTIONS(7650), 1, + ACTIONS(7605), 1, anon_sym_PIPE, - STATE(5038), 1, - sym_heredoc_body, - STATE(5112), 1, + STATE(5006), 1, aux_sym_union_type_repeat1, + STATE(5022), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4683), 8, - anon_sym_RBRACK, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -490110,7 +493495,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4685), 26, + ACTIONS(4607), 28, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -490122,6 +493508,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -490134,24 +493521,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [182571] = 8, + anon_sym_then, + [181350] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5481), 1, + ACTIONS(7623), 1, anon_sym_COMMA, - ACTIONS(7652), 1, - anon_sym_DASH_GT, - STATE(5039), 1, + STATE(5023), 1, sym_heredoc_body, - STATE(9969), 1, - aux_sym_proc_type_repeat1, + STATE(5026), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -490160,9 +493545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 28, - sym__line_break, + ACTIONS(5587), 31, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -490174,8 +493557,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -490189,22 +493574,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [182632] = 8, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [181410] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5481), 1, + ACTIONS(7625), 1, anon_sym_COMMA, - ACTIONS(7654), 1, - anon_sym_DASH_GT, - STATE(5040), 1, + STATE(5024), 1, sym_heredoc_body, - STATE(10136), 1, - aux_sym_proc_type_repeat1, + STATE(5027), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -490213,11 +493598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 28, - sym__start_of_brace_block, + ACTIONS(5631), 31, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -490228,7 +493610,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -490242,23 +493627,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [182693] = 8, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [181470] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(955), 1, - sym__start_of_brace_block, - STATE(5041), 1, + STATE(5025), 1, sym_heredoc_body, - STATE(5464), 1, - sym_do_end_block, - STATE(5465), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 9, - anon_sym_RBRACK, + ACTIONS(4598), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -490267,8 +493647,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 28, + anon_sym_EQ, + ACTIONS(4600), 32, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -490279,8 +493661,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -490291,27 +493676,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON_COLON, + anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [182754] = 8, + [181526] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(955), 1, - sym__start_of_brace_block, - STATE(5042), 1, + ACTIONS(7625), 1, + anon_sym_COMMA, + STATE(4825), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5026), 1, sym_heredoc_body, - STATE(5466), 1, - sym_do_end_block, - STATE(5467), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 9, - anon_sym_RBRACK, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -490320,7 +493702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 28, + ACTIONS(5631), 31, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -490332,8 +493714,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -490345,24 +493729,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [182815] = 7, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [181586] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7656), 1, - sym__string_literal_start, - STATE(5627), 1, - sym_string, + ACTIONS(7634), 1, + anon_sym_COMMA, + STATE(4825), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5027), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5043), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5499), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -490371,10 +493755,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5497), 29, - sym__start_of_brace_block, + ACTIONS(5637), 31, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -490385,8 +493767,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -490400,100 +493784,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [182874] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [181646] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5044), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, + sym_binary_ampersand, + ACTIONS(7581), 1, + anon_sym_PIPE, + ACTIONS(7583), 1, + anon_sym_CARET, + ACTIONS(7585), 1, + anon_sym_EQ_EQ, + ACTIONS(7591), 1, + anon_sym_AMP_AMP, + ACTIONS(7593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7595), 1, + anon_sym_DOT_DOT, + ACTIONS(7597), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7599), 1, + anon_sym_QMARK, + STATE(5028), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4671), 10, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7558), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7562), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7589), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7579), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4673), 30, - sym__start_of_index_operator, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7568), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, + ACTIONS(7587), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [182929] = 11, + ACTIONS(6092), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [181738] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7547), 1, - anon_sym_LBRACK, - ACTIONS(7549), 1, - anon_sym_STAR, - ACTIONS(7553), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7555), 1, - anon_sym_QMARK, - ACTIONS(7650), 1, - anon_sym_PIPE, - STATE(5045), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + STATE(5029), 1, sym_heredoc_body, - STATE(5112), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4639), 8, - anon_sym_RBRACK, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6295), 7, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4641), 26, - sym__start_of_index_operator, + ACTIONS(6293), 30, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -490503,189 +493904,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_RBRACK_QMARK, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [182996] = 25, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [181800] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7591), 1, - anon_sym_DOT_DOT, - ACTIONS(7593), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7597), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, + sym_binary_ampersand, + ACTIONS(7581), 1, anon_sym_PIPE, - ACTIONS(7599), 1, + ACTIONS(7583), 1, anon_sym_CARET, - ACTIONS(7603), 1, + ACTIONS(7585), 1, anon_sym_EQ_EQ, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7615), 1, - anon_sym_QMARK, - ACTIONS(7617), 1, + ACTIONS(7591), 1, anon_sym_AMP_AMP, - ACTIONS(7619), 1, + ACTIONS(7593), 1, anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - ACTIONS(7659), 1, - anon_sym_COMMA, - STATE(5046), 1, + ACTIONS(7595), 1, + anon_sym_DOT_DOT, + ACTIONS(7597), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7599), 1, + anon_sym_QMARK, + STATE(5030), 1, sym_heredoc_body, - STATE(9037), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7601), 2, + ACTIONS(7558), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, + ACTIONS(7562), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, + ACTIONS(7589), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7579), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7605), 4, + ACTIONS(7566), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7568), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(7587), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7623), 4, + ACTIONS(6193), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [181892] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, + sym_binary_ampersand, + ACTIONS(7581), 1, + anon_sym_PIPE, + ACTIONS(7583), 1, + anon_sym_CARET, + ACTIONS(7585), 1, + anon_sym_EQ_EQ, + ACTIONS(7591), 1, + anon_sym_AMP_AMP, + ACTIONS(7593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7595), 1, + anon_sym_DOT_DOT, + ACTIONS(7597), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7599), 1, + anon_sym_QMARK, + STATE(5031), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7558), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7562), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7589), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7579), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7625), 4, + ACTIONS(7568), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5570), 5, + ACTIONS(7587), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(6203), 8, sym__line_break, - sym__start_of_brace_block, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_do, - anon_sym_then, - [183091] = 25, + anon_sym_end, + [181984] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7591), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7593), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7597), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7599), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7603), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7609), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7615), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7617), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7619), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(7661), 1, - anon_sym_COMMA, - STATE(5047), 1, + STATE(5032), 1, sym_heredoc_body, - STATE(9103), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7601), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7607), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7605), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7623), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7625), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5585), 5, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_do, - anon_sym_then, - [183186] = 7, + ACTIONS(5923), 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [182076] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7635), 1, - anon_sym_PIPE, - STATE(5048), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + STATE(5033), 1, sym_heredoc_body, - STATE(5049), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(7562), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7568), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6259), 6, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 30, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6257), 26, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -490695,48 +494170,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [183245] = 6, + [182142] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7663), 1, - anon_sym_PIPE, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7564), 1, + anon_sym_DOT, + STATE(5034), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5049), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(7562), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6295), 7, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 30, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6293), 30, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -490746,21 +494224,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [183302] = 6, + [182204] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7666), 1, - sym_regex_modifier, - STATE(5050), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7564), 1, + anon_sym_DOT, + STATE(5035), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5633), 8, + ACTIONS(7562), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -490768,24 +494250,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5631), 31, + ACTIONS(6313), 30, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -490795,89 +494278,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [183359] = 6, + [182266] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7668), 1, - sym_regex_modifier, - STATE(5051), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + STATE(5036), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5679), 8, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5677), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + ACTIONS(5773), 8, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [183416] = 8, + anon_sym_RBRACK, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [182358] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(857), 1, - sym__start_of_brace_block, - ACTIONS(7629), 1, - anon_sym_do, - STATE(5052), 1, + ACTIONS(7607), 1, + anon_sym_PIPE, + ACTIONS(7612), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_STAR, + ACTIONS(7616), 1, + anon_sym_DOT, + ACTIONS(7618), 1, + anon_sym_QMARK, + STATE(4974), 1, + aux_sym_union_type_repeat1, + STATE(5037), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6490), 2, - sym_do_end_block, - sym_brace_block, - ACTIONS(5512), 9, + ACTIONS(4648), 8, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5510), 27, + anon_sym_EQ, + ACTIONS(4650), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -490891,6 +494393,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -490901,31 +494404,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [183477] = 11, + [182426] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7631), 1, + ACTIONS(7607), 1, + anon_sym_PIPE, + ACTIONS(7612), 1, anon_sym_LBRACK, - ACTIONS(7633), 1, + ACTIONS(7614), 1, anon_sym_STAR, - ACTIONS(7635), 1, - anon_sym_PIPE, - ACTIONS(7637), 1, + ACTIONS(7616), 1, anon_sym_DOT, - ACTIONS(7639), 1, + ACTIONS(7618), 1, anon_sym_QMARK, - STATE(5048), 1, + STATE(4974), 1, aux_sym_union_type_repeat1, - STATE(5053), 1, + STATE(5038), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(4619), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -490933,9 +494436,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4609), 27, + ACTIONS(4621), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -490959,17 +494461,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [183544] = 5, + [182494] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5054), 1, + ACTIONS(3037), 1, + sym__string_literal_start, + STATE(4913), 1, + aux_sym_chained_string_repeat1, + STATE(5039), 1, sym_heredoc_body, + STATE(5218), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4623), 10, + ACTIONS(5541), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -490979,8 +494488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4625), 30, + ACTIONS(5539), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -490992,11 +494501,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -491011,282 +494517,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [183599] = 5, + anon_sym_do, + [182556] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5055), 1, - sym_heredoc_body, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + STATE(5040), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 10, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4599), 30, - sym__start_of_index_operator, + ACTIONS(7558), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7562), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7568), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, + ACTIONS(6327), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6325), 20, + sym__line_break, + sym_binary_ampersand, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, + anon_sym_end, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [183654] = 11, + [182626] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7631), 1, - anon_sym_LBRACK, - ACTIONS(7633), 1, - anon_sym_STAR, - ACTIONS(7635), 1, - anon_sym_PIPE, - ACTIONS(7637), 1, - anon_sym_DOT, - ACTIONS(7639), 1, - anon_sym_QMARK, - STATE(5048), 1, - aux_sym_union_type_repeat1, - STATE(5056), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4568), 7, + ACTIONS(6442), 1, anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 27, + ACTIONS(7338), 1, sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, + ACTIONS(7581), 1, + anon_sym_PIPE, + ACTIONS(7583), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7585), 1, + anon_sym_EQ_EQ, + ACTIONS(7591), 1, anon_sym_AMP_AMP, + ACTIONS(7593), 1, anon_sym_PIPE_PIPE, - [183721] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7670), 1, - anon_sym_EQ, - STATE(5057), 1, + STATE(5041), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, - anon_sym_DOT_DOT, + ACTIONS(7558), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7562), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7589), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7579), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5668), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7568), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, + ACTIONS(7587), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [183778] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7672), 1, - anon_sym_LPAREN, - ACTIONS(7674), 1, - anon_sym_DASH_GT, - ACTIONS(7677), 1, - anon_sym_typeof, - ACTIONS(7679), 1, - sym__constant_segment, - ACTIONS(7681), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - sym__start_of_tuple_type, - ACTIONS(7687), 1, - sym__start_of_named_tuple_type, - STATE(5058), 1, - sym_heredoc_body, - STATE(7765), 1, - sym__type, - STATE(7775), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7683), 2, - sym_self, - sym_underscore_type, - STATE(7815), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4353), 17, + ACTIONS(6440), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, anon_sym_QMARK, - anon_sym_else, - [183853] = 5, + [182714] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5059), 1, + ACTIONS(7338), 1, + sym__start_of_index_operator, + ACTIONS(7560), 1, + anon_sym_AMP_STAR, + ACTIONS(7564), 1, + anon_sym_DOT, + ACTIONS(7570), 1, + sym_binary_ampersand, + ACTIONS(7581), 1, + anon_sym_PIPE, + ACTIONS(7583), 1, + anon_sym_CARET, + ACTIONS(7585), 1, + anon_sym_EQ_EQ, + STATE(5042), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5648), 8, + ACTIONS(7558), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7562), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5817), 4, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5646), 32, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7566), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7568), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, + ACTIONS(7587), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(5815), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [183908] = 5, + [182794] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5060), 1, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(7636), 1, + anon_sym_DASH_GT, + STATE(5043), 1, sym_heredoc_body, + STATE(10418), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4651), 10, + ACTIONS(4783), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -491297,7 +494731,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4653), 30, + ACTIONS(4785), 28, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -491309,11 +494744,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -491328,21 +494759,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [183963] = 8, + anon_sym_do, + [182856] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2154), 1, - sym__string_literal_start, - STATE(5061), 1, + ACTIONS(7638), 1, + sym_regex_modifier, + STATE(5044), 1, sym_heredoc_body, - STATE(5093), 1, - aux_sym_chained_string_repeat1, - STATE(5485), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5490), 8, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -491351,8 +494779,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5488), 29, + ACTIONS(5747), 31, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -491380,16 +494809,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_then, - [184024] = 5, + [182913] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5062), 1, + STATE(5045), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4615), 10, + ACTIONS(4638), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -491400,7 +494830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4617), 30, + ACTIONS(4640), 30, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -491412,11 +494843,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -491431,17 +494860,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [184079] = 6, + anon_sym_do, + [182968] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7689), 1, - anon_sym_of, - STATE(5063), 1, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(7640), 1, + anon_sym_DASH_GT, + STATE(5046), 1, sym_heredoc_body, + STATE(10428), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5660), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -491450,9 +494884,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5656), 31, + anon_sym_EQ, + ACTIONS(4785), 28, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -491465,7 +494899,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -491480,24 +494913,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_then, - [184136] = 8, + [183029] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1727), 1, - anon_sym_COLON, - ACTIONS(7228), 1, - anon_sym_COLON_COLON, - STATE(4345), 1, - aux_sym_constant_repeat1, - STATE(5064), 1, + ACTIONS(7642), 1, + anon_sym_EQ, + STATE(5047), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 9, - anon_sym_RBRACK, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -491506,7 +494933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(4549), 28, + ACTIONS(5761), 31, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -491518,8 +494945,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -491530,22 +494959,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [184197] = 6, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [183086] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7691), 1, - sym_regex_modifier, - STATE(5065), 1, + STATE(5048), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(5708), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -491554,7 +494982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 31, + ACTIONS(5706), 32, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -491568,6 +494996,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -491586,17 +495015,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [184254] = 6, + [183141] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7693), 1, - sym_regex_modifier, - STATE(5066), 1, - sym_heredoc_body, + ACTIONS(7572), 1, + sym__string_literal_start, + STATE(3514), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + STATE(5049), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5534), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -491605,8 +495037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 31, - sym__line_break, + ACTIONS(5532), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -491619,7 +495050,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -491635,19 +495065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - anon_sym_then, - [184311] = 6, + [183200] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7695), 1, - anon_sym_of, - STATE(5067), 1, + STATE(5050), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5702), 8, + ACTIONS(4672), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -491656,9 +495085,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5698), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4674), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -491670,9 +495098,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -491684,21 +495114,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [184368] = 6, + [183255] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7278), 1, - anon_sym_COLON, - STATE(5068), 1, + STATE(5051), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5574), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -491707,8 +495135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 31, - sym__line_break, + ACTIONS(5572), 31, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -491721,7 +495148,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + sym__string_literal_start, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -491735,124 +495162,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - anon_sym_then, - [184425] = 5, + [183310] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5069), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4743), 9, + ACTIONS(7644), 1, + anon_sym_COMMA, + ACTIONS(7646), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(7648), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, anon_sym_PIPE, + ACTIONS(7654), 1, + anon_sym_CARET, + ACTIONS(7658), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(7664), 1, anon_sym_AMP_STAR, + ACTIONS(7668), 1, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7670), 1, anon_sym_QMARK, + ACTIONS(7672), 1, anon_sym_AMP_AMP, + ACTIONS(7674), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [184480] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7697), 1, - anon_sym_EQ, - STATE(5070), 1, + ACTIONS(7676), 1, + sym__start_of_index_operator, + ACTIONS(7682), 1, + sym_binary_ampersand, + STATE(5052), 1, sym_heredoc_body, + STATE(5057), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, - anon_sym_DOT_DOT, + ACTIONS(7656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7662), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7666), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7650), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5668), 31, - sym__start_of_index_operator, + ACTIONS(7660), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7680), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [184537] = 7, + ACTIONS(5587), 5, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_do, + anon_sym_then, + [183405] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7699), 1, + ACTIONS(7644), 1, anon_sym_COMMA, - STATE(5031), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5071), 1, + STATE(5053), 1, sym_heredoc_body, + STATE(5057), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -491861,7 +495258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 30, + ACTIONS(5587), 30, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -491892,141 +495289,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [184596] = 7, + [183464] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7701), 1, - anon_sym_COMMA, - STATE(5031), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5072), 1, + ACTIONS(7684), 1, + anon_sym_LPAREN, + ACTIONS(7686), 1, + anon_sym_DASH_GT, + ACTIONS(7689), 1, + anon_sym_typeof, + ACTIONS(7691), 1, + sym__constant_segment, + ACTIONS(7693), 1, + anon_sym_COLON_COLON, + ACTIONS(7697), 1, + sym__start_of_tuple_type, + ACTIONS(7699), 1, + sym__start_of_named_tuple_type, + STATE(5054), 1, sym_heredoc_body, + STATE(7796), 1, + sym__type, + STATE(7803), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5562), 30, + ACTIONS(7695), 2, + sym_self, + sym_underscore_type, + STATE(7865), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4412), 17, sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [184655] = 25, + anon_sym_else, + [183539] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7591), 1, + ACTIONS(7646), 1, anon_sym_DOT_DOT, - ACTIONS(7593), 1, + ACTIONS(7648), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7597), 1, + ACTIONS(7652), 1, anon_sym_PIPE, - ACTIONS(7599), 1, + ACTIONS(7654), 1, anon_sym_CARET, - ACTIONS(7603), 1, + ACTIONS(7658), 1, anon_sym_EQ_EQ, - ACTIONS(7609), 1, + ACTIONS(7664), 1, anon_sym_AMP_STAR, - ACTIONS(7613), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7615), 1, + ACTIONS(7670), 1, anon_sym_QMARK, - ACTIONS(7617), 1, + ACTIONS(7672), 1, anon_sym_AMP_AMP, - ACTIONS(7619), 1, + ACTIONS(7674), 1, anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, + ACTIONS(7676), 1, sym__start_of_index_operator, - ACTIONS(7627), 1, + ACTIONS(7682), 1, sym_binary_ampersand, - ACTIONS(7703), 1, + ACTIONS(7701), 1, anon_sym_COMMA, - STATE(5073), 1, + STATE(5055), 1, sym_heredoc_body, - STATE(5076), 1, + STATE(5059), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7601), 2, + ACTIONS(7656), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7607), 2, + ACTIONS(7662), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, + ACTIONS(7666), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, + ACTIONS(7650), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7605), 4, + ACTIONS(7660), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7623), 4, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7625), 4, + ACTIONS(7680), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5585), 5, + ACTIONS(5631), 5, sym__line_break, sym__start_of_brace_block, anon_sym_SEMI, anon_sym_do, anon_sym_then, - [184750] = 7, + [183634] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7703), 1, + ACTIONS(7701), 1, anon_sym_COMMA, - STATE(5074), 1, + STATE(5056), 1, sym_heredoc_body, - STATE(5076), 1, + STATE(5059), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -492035,7 +495440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 30, + ACTIONS(5631), 30, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -492066,19 +495471,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [184809] = 7, + [183693] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7703), 1, + ACTIONS(7701), 1, anon_sym_COMMA, - STATE(5031), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5075), 1, + STATE(5057), 1, sym_heredoc_body, + STATE(5082), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -492087,7 +495492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 30, + ACTIONS(5631), 30, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -492118,19 +495523,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [184868] = 7, + [183752] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7705), 1, - anon_sym_COMMA, - STATE(5031), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5076), 1, + STATE(5058), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(5559), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -492139,8 +495541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 30, - sym__line_break, + ACTIONS(5557), 31, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -492153,7 +495554,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + sym__string_literal_start, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -492165,21 +495567,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [184927] = 5, + [183807] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5077), 1, + ACTIONS(7703), 1, + anon_sym_COMMA, + STATE(5059), 1, sym_heredoc_body, + STATE(5082), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4663), 10, - anon_sym_RBRACK, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -492188,8 +495594,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4665), 30, + ACTIONS(5637), 30, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -492201,11 +495608,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -492217,18 +495621,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [184982] = 5, + anon_sym_do, + anon_sym_then, + [183866] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5078), 1, + STATE(5060), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4675), 10, + ACTIONS(4708), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -492239,7 +495644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4677), 30, + ACTIONS(4710), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -492270,15 +495675,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [185037] = 5, + [183921] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5079), 1, + STATE(5061), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 10, + ACTIONS(4712), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -492289,8 +495694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4595), 30, - sym__start_of_brace_block, + ACTIONS(4714), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -492302,9 +495706,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -492319,22 +495725,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [185092] = 8, + [183976] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(955), 1, - sym__start_of_brace_block, - STATE(5080), 1, + STATE(5062), 1, sym_heredoc_body, - STATE(5455), 1, - sym_do_end_block, - STATE(5456), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 9, + ACTIONS(5574), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -492344,7 +495743,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 28, + ACTIONS(5572), 31, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -492356,6 +495756,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + sym__string_literal_start, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -492368,21 +495769,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [185153] = 5, + [184031] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5081), 1, + ACTIONS(7705), 1, + anon_sym_of, + STATE(5063), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4679), 10, - anon_sym_RBRACK, + ACTIONS(5739), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -492391,8 +495794,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4681), 30, + ACTIONS(5735), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -492404,11 +495808,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -492420,80 +495822,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [185208] = 15, + anon_sym_do, + anon_sym_then, + [184088] = 25, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7646), 1, + anon_sym_DOT_DOT, + ACTIONS(7648), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_PIPE, + ACTIONS(7654), 1, + anon_sym_CARET, + ACTIONS(7658), 1, + anon_sym_EQ_EQ, + ACTIONS(7664), 1, + anon_sym_AMP_STAR, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7670), 1, + anon_sym_QMARK, ACTIONS(7672), 1, - anon_sym_LPAREN, - ACTIONS(7677), 1, - anon_sym_typeof, - ACTIONS(7679), 1, - sym__constant_segment, - ACTIONS(7681), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - sym__start_of_tuple_type, - ACTIONS(7687), 1, - sym__start_of_named_tuple_type, + anon_sym_AMP_AMP, + ACTIONS(7674), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7676), 1, + sym__start_of_index_operator, + ACTIONS(7682), 1, + sym_binary_ampersand, ACTIONS(7707), 1, - anon_sym_DASH_GT, - STATE(5082), 1, + anon_sym_COMMA, + STATE(5064), 1, sym_heredoc_body, - STATE(7769), 1, - sym__type, - STATE(7775), 1, - sym_constant, + STATE(8999), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7683), 2, - sym_self, - sym_underscore_type, - STATE(7815), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4375), 17, + ACTIONS(7656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7662), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7666), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7650), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7660), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7678), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7680), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5587), 5, sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, + sym__start_of_brace_block, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_else, - [185283] = 6, + anon_sym_do, + anon_sym_then, + [184183] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5048), 1, - aux_sym_union_type_repeat1, - STATE(5083), 1, + ACTIONS(1069), 1, + sym__string_literal_start, + STATE(5065), 1, sym_heredoc_body, + STATE(5069), 1, + aux_sym_chained_string_repeat1, + STATE(5673), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(5541), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -492502,8 +495919,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 30, + ACTIONS(5539), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -492516,11 +495933,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -492534,16 +495948,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [185340] = 5, + anon_sym_do, + [184244] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5084), 1, + STATE(5066), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4631), 10, - anon_sym_RBRACK, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -492553,7 +495967,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4633), 30, + ACTIONS(4785), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -492565,11 +495981,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -492581,20 +495995,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [185395] = 6, + anon_sym_do, + anon_sym_then, + [184299] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7167), 1, - anon_sym_LPAREN2, - STATE(5085), 1, + STATE(5067), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(4720), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -492603,9 +496017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4722), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -492617,9 +496030,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -492631,30 +496046,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [185452] = 5, + [184354] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5086), 1, + ACTIONS(7612), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_STAR, + ACTIONS(7616), 1, + anon_sym_DOT, + ACTIONS(7618), 1, + anon_sym_QMARK, + ACTIONS(7709), 1, + anon_sym_PIPE, + STATE(5068), 1, sym_heredoc_body, + STATE(5079), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4655), 10, + ACTIONS(4684), 8, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4657), 30, + ACTIONS(4686), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -492666,11 +496090,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -492681,20 +496102,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [185507] = 5, + [184421] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5087), 1, - sym_heredoc_body, + ACTIONS(7711), 1, + sym__string_literal_start, + STATE(5673), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4635), 10, - anon_sym_RBRACK, + STATE(5069), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5534), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -492703,9 +496127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4637), 30, + ACTIONS(5532), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -492716,11 +496141,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -492732,18 +496154,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [185562] = 5, + anon_sym_do, + [184480] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5088), 1, + ACTIONS(921), 1, + sym__start_of_brace_block, + ACTIONS(7714), 1, + anon_sym_do, + STATE(5070), 1, sym_heredoc_body, + STATE(6340), 1, + sym_do_end_block, + STATE(6379), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4643), 10, + ACTIONS(5547), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -492753,8 +496183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4645), 30, + ACTIONS(5545), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -492766,11 +496195,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -492785,16 +496211,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [185617] = 5, + [184543] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5089), 1, + ACTIONS(3037), 1, + sym__string_literal_start, + STATE(3514), 1, + sym_string, + STATE(5049), 1, + aux_sym_chained_string_repeat1, + STATE(5071), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5520), 9, - anon_sym_RBRACK, + ACTIONS(5541), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -492803,7 +496234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5518), 31, + ACTIONS(5539), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -492816,7 +496247,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -492830,32 +496260,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, anon_sym_do, - [185672] = 5, + [184604] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5090), 1, + ACTIONS(7716), 1, + anon_sym_PIPE, + STATE(5072), 1, sym_heredoc_body, + STATE(5137), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5536), 9, - anon_sym_RBRACK, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5534), 31, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4636), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -492866,9 +496298,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -492880,20 +496314,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - [185727] = 5, + [184663] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5091), 1, + STATE(5073), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4627), 10, + ACTIONS(4652), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -492904,7 +496335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4629), 30, + ACTIONS(4654), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -492935,23 +496366,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [185782] = 9, + [184718] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1701), 1, - sym__string_literal_start, - ACTIONS(7710), 1, - anon_sym_COLON, - STATE(3639), 1, - aux_sym_chained_string_repeat1, - STATE(3839), 1, - sym_string, - STATE(5092), 1, + STATE(5074), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5685), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -492960,7 +496383,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 28, + ACTIONS(5683), 32, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -492972,9 +496397,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -492986,23 +496410,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [185845] = 7, + anon_sym_do, + anon_sym_then, + [184773] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7712), 1, - sym__string_literal_start, - STATE(5485), 1, - sym_string, + ACTIONS(1813), 1, + anon_sym_COLON, + ACTIONS(5823), 1, + anon_sym_COLON_COLON, + STATE(2560), 1, + aux_sym_constant_repeat1, + STATE(5075), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5093), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5499), 8, + ACTIONS(4584), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -493011,8 +496439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5497), 29, - sym__line_break, + ACTIONS(4586), 29, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -493024,8 +496451,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -493037,32 +496465,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [185904] = 6, + [184834] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5094), 1, + ACTIONS(7612), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_STAR, + ACTIONS(7616), 1, + anon_sym_DOT, + ACTIONS(7618), 1, + anon_sym_QMARK, + ACTIONS(7709), 1, + anon_sym_PIPE, + STATE(5076), 1, sym_heredoc_body, - STATE(5112), 1, + STATE(5079), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 10, + ACTIONS(4668), 8, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, anon_sym_EQ, - ACTIONS(4588), 29, + ACTIONS(4670), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -493074,10 +496510,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -493088,88 +496522,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [185961] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7672), 1, - anon_sym_LPAREN, - ACTIONS(7677), 1, - anon_sym_typeof, - ACTIONS(7679), 1, - sym__constant_segment, - ACTIONS(7681), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - sym__start_of_tuple_type, - ACTIONS(7687), 1, - sym__start_of_named_tuple_type, - ACTIONS(7715), 1, - anon_sym_DASH_GT, - STATE(5095), 1, - sym_heredoc_body, - STATE(7756), 1, - sym__type, - STATE(7775), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7683), 2, - sym_self, - sym_underscore_type, - STATE(7815), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4325), 17, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_else, - [186036] = 9, + [184901] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(857), 1, - sym__start_of_brace_block, - ACTIONS(7629), 1, - anon_sym_do, - STATE(5096), 1, + ACTIONS(3037), 1, + sym__string_literal_start, + STATE(3514), 1, + sym_string, + STATE(5071), 1, + aux_sym_chained_string_repeat1, + STATE(5077), 1, sym_heredoc_body, - STATE(6257), 1, - sym_do_end_block, - STATE(6258), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 9, - anon_sym_RBRACK, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -493178,7 +496548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 27, + ACTIONS(135), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -493203,20 +496574,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [186099] = 6, + anon_sym_COLON2, + anon_sym_do, + [184962] = 9, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(1715), 1, + sym__string_literal_start, ACTIONS(7718), 1, - anon_sym_LPAREN2, - STATE(5097), 1, + anon_sym_COLON, + STATE(3649), 1, + aux_sym_chained_string_repeat1, + STATE(3931), 1, + sym_string, + STATE(5078), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -493225,10 +496603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4599), 30, + ACTIONS(135), 28, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -493239,11 +496615,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -493257,33 +496632,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [186156] = 8, + [185025] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1053), 1, - sym__string_literal_start, - STATE(5033), 1, - aux_sym_chained_string_repeat1, - STATE(5098), 1, + ACTIONS(7709), 1, + anon_sym_PIPE, + STATE(5079), 1, sym_heredoc_body, - STATE(5627), 1, - sym_string, + STATE(5083), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(4634), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 29, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4636), 29, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -493294,8 +496666,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -493307,107 +496681,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [186217] = 25, + [185084] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7591), 1, - anon_sym_DOT_DOT, - ACTIONS(7593), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7597), 1, + ACTIONS(7716), 1, anon_sym_PIPE, - ACTIONS(7599), 1, - anon_sym_CARET, - ACTIONS(7603), 1, - anon_sym_EQ_EQ, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7615), 1, - anon_sym_QMARK, - ACTIONS(7617), 1, - anon_sym_AMP_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, ACTIONS(7720), 1, - anon_sym_COMMA, - STATE(5071), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5099), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7601), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7605), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7623), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7625), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5570), 5, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_do, - anon_sym_then, - [186312] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(2310), 1, - sym__string_literal_start, + anon_sym_LBRACK, ACTIONS(7722), 1, - anon_sym_COLON, - STATE(5100), 1, + anon_sym_STAR, + ACTIONS(7724), 1, + anon_sym_DOT, + ACTIONS(7726), 1, + anon_sym_QMARK, + STATE(5072), 1, + aux_sym_union_type_repeat1, + STATE(5080), 1, sym_heredoc_body, - STATE(5122), 1, - aux_sym_chained_string_repeat1, - STATE(5875), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 9, - anon_sym_RBRACK, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(133), 27, + anon_sym_EQ, + ACTIONS(4625), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -493420,6 +496727,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -493430,40 +496738,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [186375] = 11, + [185151] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7547), 1, - anon_sym_LBRACK, - ACTIONS(7549), 1, - anon_sym_STAR, - ACTIONS(7553), 1, - anon_sym_DOT, - ACTIONS(7555), 1, - anon_sym_QMARK, - ACTIONS(7650), 1, - anon_sym_PIPE, - STATE(5101), 1, - sym_heredoc_body, - STATE(5112), 1, - aux_sym_union_type_repeat1, + ACTIONS(7728), 1, + sym__string_literal_start, + STATE(5473), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 8, - anon_sym_RBRACK, + STATE(5081), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5534), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4605), 26, + anon_sym_DOT, + ACTIONS(5532), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -493475,6 +496775,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -493487,22 +496788,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_RBRACK_QMARK, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [186442] = 7, + anon_sym_then, + [185210] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7720), 1, + ACTIONS(7731), 1, anon_sym_COMMA, - STATE(5071), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5102), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + STATE(5082), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -493511,7 +496812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 30, + ACTIONS(5694), 30, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -493542,26 +496843,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [186501] = 5, + [185267] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5103), 1, - sym_heredoc_body, + ACTIONS(7734), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5581), 8, + STATE(5083), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5579), 32, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4629), 29, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -493573,9 +496876,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -493586,21 +496890,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [186556] = 5, + [185324] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5104), 1, + STATE(5084), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4659), 10, + ACTIONS(4676), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -493611,7 +496913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4661), 30, + ACTIONS(4678), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -493642,28 +496944,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [186611] = 6, + [185379] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7724), 1, - anon_sym_of, - STATE(5105), 1, + ACTIONS(7612), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_STAR, + ACTIONS(7616), 1, + anon_sym_DOT, + ACTIONS(7618), 1, + anon_sym_QMARK, + ACTIONS(7709), 1, + anon_sym_PIPE, + STATE(5079), 1, + aux_sym_union_type_repeat1, + STATE(5085), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5728), 8, + ACTIONS(4623), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5724), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4625), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -493675,7 +496985,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -493688,33 +496997,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [186668] = 6, + [185446] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7726), 1, - anon_sym_of, - STATE(5106), 1, + ACTIONS(7612), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_STAR, + ACTIONS(7616), 1, + anon_sym_DOT, + ACTIONS(7618), 1, + anon_sym_QMARK, + ACTIONS(7709), 1, + anon_sym_PIPE, + STATE(5079), 1, + aux_sym_union_type_repeat1, + STATE(5086), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5734), 8, + ACTIONS(4605), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5730), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4607), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -493726,7 +497041,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -493739,42 +497053,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [186725] = 11, + [185513] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7631), 1, - anon_sym_LBRACK, - ACTIONS(7633), 1, - anon_sym_STAR, - ACTIONS(7635), 1, - anon_sym_PIPE, - ACTIONS(7637), 1, - anon_sym_DOT, - ACTIONS(7639), 1, - anon_sym_QMARK, - STATE(5048), 1, - aux_sym_union_type_repeat1, - STATE(5107), 1, + ACTIONS(921), 1, + sym__start_of_brace_block, + ACTIONS(7714), 1, + anon_sym_do, + STATE(5087), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 7, + STATE(6626), 2, + sym_do_end_block, + sym_brace_block, + ACTIONS(5553), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4595), 27, + anon_sym_DOT, + ACTIONS(5551), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -493787,7 +497095,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -493798,91 +497105,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [186792] = 25, + [185574] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7591), 1, + ACTIONS(7646), 1, anon_sym_DOT_DOT, - ACTIONS(7593), 1, + ACTIONS(7648), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7597), 1, + ACTIONS(7652), 1, anon_sym_PIPE, - ACTIONS(7599), 1, + ACTIONS(7654), 1, anon_sym_CARET, - ACTIONS(7603), 1, + ACTIONS(7658), 1, anon_sym_EQ_EQ, - ACTIONS(7609), 1, + ACTIONS(7664), 1, anon_sym_AMP_STAR, - ACTIONS(7613), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7615), 1, + ACTIONS(7670), 1, anon_sym_QMARK, - ACTIONS(7617), 1, + ACTIONS(7672), 1, anon_sym_AMP_AMP, - ACTIONS(7619), 1, + ACTIONS(7674), 1, anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, + ACTIONS(7676), 1, sym__start_of_index_operator, - ACTIONS(7627), 1, + ACTIONS(7682), 1, sym_binary_ampersand, - ACTIONS(7699), 1, + ACTIONS(7737), 1, anon_sym_COMMA, - STATE(5072), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5108), 1, + STATE(5088), 1, sym_heredoc_body, + STATE(5094), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7601), 2, + ACTIONS(7656), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7607), 2, + ACTIONS(7662), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, + ACTIONS(7666), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, + ACTIONS(7650), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7605), 4, + ACTIONS(7660), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7623), 4, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7625), 4, + ACTIONS(7680), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5585), 5, + ACTIONS(5587), 5, sym__line_break, sym__start_of_brace_block, anon_sym_SEMI, anon_sym_do, anon_sym_then, - [186887] = 7, + [185669] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7699), 1, - anon_sym_COMMA, - STATE(5072), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5109), 1, + ACTIONS(2173), 1, + sym__string_literal_start, + STATE(5081), 1, + aux_sym_chained_string_repeat1, + STATE(5089), 1, sym_heredoc_body, + STATE(5473), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5541), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -493891,9 +497202,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 30, + ACTIONS(5539), 29, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -493906,6 +497216,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -493920,23 +497231,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_then, - [186946] = 8, + [185730] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1621), 1, - anon_sym_COLON, - ACTIONS(6078), 1, - anon_sym_COLON_COLON, - STATE(2656), 1, - aux_sym_constant_repeat1, - STATE(5110), 1, + ACTIONS(7737), 1, + anon_sym_COMMA, + STATE(5090), 1, sym_heredoc_body, + STATE(5094), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -493945,7 +497253,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(4549), 29, + ACTIONS(5587), 30, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -493957,9 +497267,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -493971,25 +497279,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [187007] = 8, + anon_sym_do, + anon_sym_then, + [185789] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2154), 1, - sym__string_literal_start, - STATE(5061), 1, - aux_sym_chained_string_repeat1, - STATE(5111), 1, + ACTIONS(7646), 1, + anon_sym_DOT_DOT, + ACTIONS(7648), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_PIPE, + ACTIONS(7654), 1, + anon_sym_CARET, + ACTIONS(7658), 1, + anon_sym_EQ_EQ, + ACTIONS(7664), 1, + anon_sym_AMP_STAR, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7670), 1, + anon_sym_QMARK, + ACTIONS(7672), 1, + anon_sym_AMP_AMP, + ACTIONS(7674), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7676), 1, + sym__start_of_index_operator, + ACTIONS(7682), 1, + sym_binary_ampersand, + ACTIONS(7739), 1, + anon_sym_COMMA, + STATE(5091), 1, sym_heredoc_body, - STATE(5485), 1, - sym_string, + STATE(5100), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(7656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7662), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7666), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7650), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7660), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7678), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7680), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5631), 5, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_do, + anon_sym_then, + [185884] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7739), 1, + anon_sym_COMMA, + STATE(5092), 1, + sym_heredoc_body, + STATE(5100), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -493998,8 +497375,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 29, + ACTIONS(5631), 30, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -494012,7 +497390,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -494027,30 +497404,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_then, - [187068] = 7, + [185943] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7650), 1, - anon_sym_PIPE, - STATE(5112), 1, + ACTIONS(7741), 1, + sym_regex_modifier, + STATE(5093), 1, sym_heredoc_body, - STATE(5113), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 9, - anon_sym_RBRACK, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 29, + ACTIONS(5741), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -494062,10 +497439,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -494077,31 +497453,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [187127] = 6, + anon_sym_do, + anon_sym_then, + [186000] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7728), 1, - anon_sym_PIPE, + ACTIONS(7739), 1, + anon_sym_COMMA, + STATE(5082), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5094), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5113), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 9, - anon_sym_RBRACK, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 29, + ACTIONS(5631), 30, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -494113,10 +497492,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -494128,39 +497505,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [187184] = 11, + anon_sym_do, + anon_sym_then, + [186059] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7547), 1, - anon_sym_LBRACK, - ACTIONS(7549), 1, - anon_sym_STAR, - ACTIONS(7553), 1, - anon_sym_DOT, - ACTIONS(7555), 1, - anon_sym_QMARK, - ACTIONS(7650), 1, - anon_sym_PIPE, - STATE(5112), 1, - aux_sym_union_type_repeat1, - STATE(5114), 1, + ACTIONS(7743), 1, + anon_sym_EQ, + STATE(5095), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 8, - anon_sym_RBRACK, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4609), 26, + anon_sym_DOT, + ACTIONS(5761), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -494172,6 +497542,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -494184,39 +497555,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_RBRACK_QMARK, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [187251] = 11, + anon_sym_do, + anon_sym_then, + [186116] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7547), 1, - anon_sym_LBRACK, - ACTIONS(7549), 1, - anon_sym_STAR, - ACTIONS(7553), 1, - anon_sym_DOT, - ACTIONS(7555), 1, - anon_sym_QMARK, - ACTIONS(7650), 1, - anon_sym_PIPE, - STATE(5112), 1, - aux_sym_union_type_repeat1, - STATE(5115), 1, + ACTIONS(921), 1, + sym__start_of_brace_block, + ACTIONS(7714), 1, + anon_sym_do, + STATE(5096), 1, sym_heredoc_body, + STATE(6298), 1, + sym_do_end_block, + STATE(6322), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 8, + ACTIONS(5547), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 26, + anon_sym_DOT, + ACTIONS(5545), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -494240,26 +497610,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [187318] = 9, + [186179] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(857), 1, - sym__start_of_brace_block, - ACTIONS(7629), 1, - anon_sym_do, - STATE(5116), 1, + STATE(5097), 1, sym_heredoc_body, - STATE(6264), 1, - sym_do_end_block, - STATE(6265), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 9, + ACTIONS(4688), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -494269,7 +497632,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 27, + anon_sym_EQ, + ACTIONS(4690), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -494281,8 +497645,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -494297,19 +497664,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [187381] = 7, + [186234] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7589), 1, - anon_sym_COMMA, - STATE(5075), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5117), 1, + STATE(5098), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(4704), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -494318,9 +497682,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 30, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4706), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -494332,8 +497695,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -494345,97 +497711,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [187440] = 27, + [186289] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7733), 1, - anon_sym_COMMA, - ACTIONS(7735), 1, - anon_sym_DOT_DOT, - ACTIONS(7737), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7741), 1, - anon_sym_PIPE, - ACTIONS(7743), 1, - anon_sym_CARET, - ACTIONS(7747), 1, - anon_sym_EQ_EQ, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7757), 1, - anon_sym_QMARK, - ACTIONS(7759), 1, - anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7763), 1, - anon_sym_then, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(7771), 1, - sym_binary_ampersand, - STATE(298), 1, - sym__terminator, - STATE(5118), 1, + STATE(5099), 1, sym_heredoc_body, - STATE(9140), 1, - aux_sym_when_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(7745), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7751), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, + ACTIONS(4642), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7749), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7767), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4644), 30, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7769), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [187538] = 8, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [186344] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2310), 1, - sym__string_literal_start, - STATE(5119), 1, + ACTIONS(7745), 1, + anon_sym_COMMA, + STATE(5082), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5100), 1, sym_heredoc_body, - STATE(5122), 1, - aux_sym_chained_string_repeat1, - STATE(5875), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 9, - anon_sym_RBRACK, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -494444,7 +497785,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 27, + ACTIONS(5637), 30, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -494456,7 +497799,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -494469,18 +497812,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [187598] = 5, + anon_sym_do, + anon_sym_then, + [186403] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5120), 1, + ACTIONS(7747), 1, + anon_sym_LPAREN2, + STATE(5101), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4667), 9, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -494490,7 +497836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4669), 30, + ACTIONS(4644), 30, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -494521,15 +497867,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [187652] = 5, + [186460] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5121), 1, + ACTIONS(2173), 1, + sym__string_literal_start, + STATE(5089), 1, + aux_sym_chained_string_repeat1, + STATE(5102), 1, sym_heredoc_body, + STATE(5473), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5520), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -494538,7 +497890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5518), 31, + ACTIONS(135), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -494551,7 +497903,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -494565,26 +497916,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [187706] = 8, + [186521] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2310), 1, - sym__string_literal_start, - STATE(5122), 1, + STATE(5103), 1, sym_heredoc_body, - STATE(5131), 1, - aux_sym_chained_string_repeat1, - STATE(5875), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5490), 9, + ACTIONS(4660), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -494594,7 +497938,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5488), 27, + anon_sym_EQ, + ACTIONS(4662), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -494606,8 +497951,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -494622,84 +497970,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [187766] = 25, + [186576] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7773), 1, + ACTIONS(1069), 1, + sym__string_literal_start, + STATE(5065), 1, + aux_sym_chained_string_repeat1, + STATE(5104), 1, + sym_heredoc_body, + STATE(5673), 1, + sym_string, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(157), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(135), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, - ACTIONS(7775), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [186637] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7646), 1, anon_sym_DOT_DOT, - ACTIONS(7777), 1, + ACTIONS(7648), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7781), 1, + ACTIONS(7652), 1, anon_sym_PIPE, - ACTIONS(7783), 1, + ACTIONS(7654), 1, anon_sym_CARET, - ACTIONS(7787), 1, + ACTIONS(7658), 1, anon_sym_EQ_EQ, - ACTIONS(7793), 1, + ACTIONS(7664), 1, anon_sym_AMP_STAR, - ACTIONS(7797), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7799), 1, + ACTIONS(7670), 1, anon_sym_QMARK, - ACTIONS(7801), 1, + ACTIONS(7672), 1, anon_sym_AMP_AMP, - ACTIONS(7803), 1, + ACTIONS(7674), 1, anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, + ACTIONS(7676), 1, sym__start_of_index_operator, - ACTIONS(7811), 1, + ACTIONS(7682), 1, sym_binary_ampersand, - STATE(5123), 1, + ACTIONS(7749), 1, + anon_sym_COMMA, + STATE(5105), 1, sym_heredoc_body, - STATE(5146), 1, + STATE(9063), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, + ACTIONS(7656), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7791), 2, + ACTIONS(7662), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, + ACTIONS(7666), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, + ACTIONS(7650), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5570), 4, - sym__start_of_brace_block, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_do, - ACTIONS(7789), 4, + ACTIONS(7660), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, + ACTIONS(7680), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [187860] = 5, + ACTIONS(5631), 5, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_do, + anon_sym_then, + [186732] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5124), 1, + STATE(5079), 1, + aux_sym_union_type_repeat1, + STATE(5106), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4619), 9, + ACTIONS(4627), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -494709,9 +498114,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4621), 30, + ACTIONS(4629), 29, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -494725,7 +498129,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, @@ -494738,17 +498141,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [187914] = 5, + [186789] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5125), 1, + ACTIONS(1809), 1, + anon_sym_COLON, + ACTIONS(7292), 1, + anon_sym_COLON_COLON, + STATE(4445), 1, + aux_sym_constant_repeat1, + STATE(5107), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5512), 8, + ACTIONS(4584), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -494757,9 +498168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4586), 28, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -494771,7 +498180,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -494784,74 +498192,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [187968] = 6, + [186850] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7317), 1, - anon_sym_COLON, - STATE(5126), 1, + ACTIONS(7684), 1, + anon_sym_LPAREN, + ACTIONS(7689), 1, + anon_sym_typeof, + ACTIONS(7691), 1, + sym__constant_segment, + ACTIONS(7693), 1, + anon_sym_COLON_COLON, + ACTIONS(7697), 1, + sym__start_of_tuple_type, + ACTIONS(7699), 1, + sym__start_of_named_tuple_type, + ACTIONS(7751), 1, + anon_sym_DASH_GT, + STATE(5108), 1, sym_heredoc_body, + STATE(7802), 1, + sym__type, + STATE(7803), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, - anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(7695), 2, + sym_self, + sym_underscore_type, + STATE(7865), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4390), 17, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_end, + anon_sym_STAR, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 30, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + anon_sym_forall, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [188024] = 7, + anon_sym_else, + [186925] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7773), 1, - anon_sym_COMMA, - STATE(5127), 1, + STATE(5109), 1, sym_heredoc_body, - STATE(5146), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(5645), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -494860,7 +498274,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 29, + ACTIONS(5643), 32, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -494873,8 +498288,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -494886,19 +498301,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [188082] = 5, + anon_sym_then, + [186980] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5128), 1, + ACTIONS(7754), 1, + sym_regex_modifier, + STATE(5110), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(5769), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -494907,7 +498326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5878), 31, + ACTIONS(5767), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -494939,15 +498358,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [188136] = 5, + [187037] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5129), 1, + STATE(5111), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 10, + ACTIONS(4680), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -494958,8 +498377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR, anon_sym_DOT, anon_sym_EQ, - ACTIONS(4745), 29, - sym__start_of_brace_block, + ACTIONS(4682), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -494971,8 +498389,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -494987,16 +498408,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [188190] = 5, + [187092] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5130), 1, + ACTIONS(7756), 1, + sym_regex_modifier, + STATE(5112), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6192), 8, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -495005,7 +498427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6190), 31, + ACTIONS(5660), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -495037,20 +498459,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [188244] = 7, + [187149] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7813), 1, - sym__string_literal_start, - STATE(5875), 1, - sym_string, + ACTIONS(7716), 1, + anon_sym_PIPE, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7722), 1, + anon_sym_STAR, + ACTIONS(7724), 1, + anon_sym_DOT, + ACTIONS(7726), 1, + anon_sym_QMARK, + STATE(5072), 1, + aux_sym_union_type_repeat1, + STATE(5113), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5131), 2, + ACTIONS(4605), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4607), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [187216] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(969), 1, + sym__start_of_brace_block, + ACTIONS(7758), 1, + anon_sym_do, + STATE(5114), 1, sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5499), 9, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(5535), 2, + sym_do_end_block, + sym_brace_block, + ACTIONS(5553), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -495060,7 +498540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5497), 27, + ACTIONS(5551), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -495088,32 +498568,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [188302] = 9, + [187277] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1029), 1, - sym__start_of_brace_block, - ACTIONS(7816), 1, - anon_sym_do, - STATE(5132), 1, + ACTIONS(7716), 1, + anon_sym_PIPE, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7722), 1, + anon_sym_STAR, + ACTIONS(7724), 1, + anon_sym_DOT, + ACTIONS(7726), 1, + anon_sym_QMARK, + STATE(5072), 1, + aux_sym_union_type_repeat1, + STATE(5115), 1, sym_heredoc_body, - STATE(6684), 1, - sym_do_end_block, - STATE(6692), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(4638), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5528), 27, + anon_sym_EQ, + ACTIONS(4640), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -495128,6 +498611,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -495138,26 +498622,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [188364] = 9, + [187344] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1029), 1, - sym__start_of_brace_block, - ACTIONS(7816), 1, - anon_sym_do, - STATE(5133), 1, + STATE(5116), 1, sym_heredoc_body, - STATE(6637), 1, - sym_brace_block, - STATE(6776), 1, - sym_do_end_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(4696), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -495166,9 +498642,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 27, + anon_sym_EQ, + ACTIONS(4698), 30, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -495179,8 +498655,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -495192,25 +498671,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [188426] = 9, + [187399] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1029), 1, - sym__start_of_brace_block, - ACTIONS(7816), 1, - anon_sym_do, - STATE(5134), 1, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(7760), 1, + anon_sym_DASH_GT, + STATE(5117), 1, sym_heredoc_body, - STATE(6641), 1, - sym_do_end_block, - STATE(6653), 1, - sym_brace_block, + STATE(10216), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -495219,7 +498697,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 27, + anon_sym_EQ, + ACTIONS(4785), 28, + sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -495232,7 +498712,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -495247,15 +498726,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [188488] = 5, + anon_sym_do, + [187460] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5135), 1, + ACTIONS(7283), 1, + anon_sym_COLON, + STATE(5118), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5536), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -495264,8 +498746,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5534), 31, + ACTIONS(135), 31, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -495277,7 +498760,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -495291,26 +498773,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_then, - [188542] = 8, + [187517] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(7818), 1, - anon_sym_DASH_GT, - STATE(5136), 1, + ACTIONS(2352), 1, + sym__string_literal_start, + ACTIONS(7762), 1, + anon_sym_COLON, + STATE(5119), 1, sym_heredoc_body, - STATE(10297), 1, - aux_sym_proc_type_repeat1, + STATE(5168), 1, + aux_sym_chained_string_repeat1, + STATE(6162), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 10, + ACTIONS(157), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -495320,8 +498804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 26, + ACTIONS(135), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -495333,6 +498816,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -495348,30 +498832,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [188602] = 7, + [187580] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7820), 1, - anon_sym_PIPE, - STATE(5137), 1, + ACTIONS(921), 1, + sym__start_of_brace_block, + ACTIONS(7714), 1, + anon_sym_do, + STATE(5120), 1, sym_heredoc_body, - STATE(5138), 1, - aux_sym_union_type_repeat1, + STATE(6275), 1, + sym_do_end_block, + STATE(6609), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4582), 8, + ACTIONS(5570), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4584), 29, + ACTIONS(5568), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -495382,10 +498870,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -495397,31 +498883,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [188660] = 6, + [187643] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7822), 1, - anon_sym_PIPE, + ACTIONS(969), 1, + sym__start_of_brace_block, + STATE(5121), 1, + sym_heredoc_body, + STATE(5528), 1, + sym_do_end_block, + STATE(5539), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5138), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4586), 8, + ACTIONS(5547), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 29, + ACTIONS(5545), 28, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -495432,10 +498922,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -495447,39 +498935,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [188716] = 11, + anon_sym_do, + [187704] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7631), 1, - anon_sym_LBRACK, - ACTIONS(7633), 1, - anon_sym_STAR, - ACTIONS(7637), 1, - anon_sym_DOT, - ACTIONS(7639), 1, - anon_sym_QMARK, - ACTIONS(7820), 1, - anon_sym_PIPE, - STATE(5137), 1, - aux_sym_union_type_repeat1, - STATE(5139), 1, + ACTIONS(7764), 1, + anon_sym_of, + STATE(5122), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4607), 7, + ACTIONS(5725), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4609), 26, + anon_sym_DOT, + ACTIONS(5721), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -495490,6 +498972,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -495502,39 +498985,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [188782] = 11, + anon_sym_do, + anon_sym_then, + [187761] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7631), 1, - anon_sym_LBRACK, - ACTIONS(7633), 1, - anon_sym_STAR, - ACTIONS(7637), 1, - anon_sym_DOT, - ACTIONS(7639), 1, - anon_sym_QMARK, - ACTIONS(7820), 1, - anon_sym_PIPE, - STATE(5137), 1, - aux_sym_union_type_repeat1, - STATE(5140), 1, + ACTIONS(7766), 1, + anon_sym_of, + STATE(5123), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4568), 7, + ACTIONS(5733), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4570), 26, + anon_sym_DOT, + ACTIONS(5729), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -495545,6 +499023,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -495557,225 +499036,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [188848] = 25, + anon_sym_do, + anon_sym_then, + [187818] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7775), 1, - anon_sym_DOT_DOT, - ACTIONS(7777), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7781), 1, - anon_sym_PIPE, - ACTIONS(7783), 1, - anon_sym_CARET, - ACTIONS(7787), 1, - anon_sym_EQ_EQ, - ACTIONS(7793), 1, - anon_sym_AMP_STAR, - ACTIONS(7797), 1, + ACTIONS(7612), 1, + anon_sym_LBRACK, + ACTIONS(7614), 1, + anon_sym_STAR, + ACTIONS(7616), 1, anon_sym_DOT, - ACTIONS(7799), 1, + ACTIONS(7618), 1, anon_sym_QMARK, - ACTIONS(7801), 1, - anon_sym_AMP_AMP, - ACTIONS(7803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, - sym__start_of_index_operator, - ACTIONS(7811), 1, - sym_binary_ampersand, - ACTIONS(7825), 1, - anon_sym_COMMA, - STATE(5141), 1, + ACTIONS(7709), 1, + anon_sym_PIPE, + STATE(5079), 1, + aux_sym_union_type_repeat1, + STATE(5124), 1, sym_heredoc_body, - STATE(5294), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7791), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, + ACTIONS(4648), 8, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5585), 4, - sym__start_of_brace_block, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_do, - ACTIONS(7789), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4650), 26, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [188942] = 15, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [187885] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7677), 1, - anon_sym_typeof, - ACTIONS(7679), 1, - sym__constant_segment, - ACTIONS(7681), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - sym__start_of_tuple_type, - ACTIONS(7687), 1, - sym__start_of_named_tuple_type, - ACTIONS(7827), 1, - anon_sym_LPAREN, - ACTIONS(7829), 1, - anon_sym_DASH_GT, - STATE(5142), 1, + STATE(5125), 1, sym_heredoc_body, - STATE(7775), 1, - sym_constant, - STATE(7837), 1, - sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7683), 2, - sym_self, - sym_underscore_type, - STATE(7815), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4325), 16, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_end, - anon_sym_STAR, + ACTIONS(4692), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_else, - [189016] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7677), 1, - anon_sym_typeof, - ACTIONS(7679), 1, - sym__constant_segment, - ACTIONS(7681), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - sym__start_of_tuple_type, - ACTIONS(7687), 1, - sym__start_of_named_tuple_type, - ACTIONS(7827), 1, - anon_sym_LPAREN, - ACTIONS(7829), 1, - anon_sym_DASH_GT, - STATE(5143), 1, - sym_heredoc_body, - STATE(7775), 1, - sym_constant, - STATE(7828), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7683), 2, - sym_self, - sym_underscore_type, - STATE(7815), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4353), 16, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(4694), 30, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_LBRACK, - anon_sym_end, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_else, - [189090] = 15, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [187940] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7677), 1, + ACTIONS(7684), 1, + anon_sym_LPAREN, + ACTIONS(7689), 1, anon_sym_typeof, - ACTIONS(7679), 1, + ACTIONS(7691), 1, sym__constant_segment, - ACTIONS(7681), 1, + ACTIONS(7693), 1, anon_sym_COLON_COLON, - ACTIONS(7685), 1, + ACTIONS(7697), 1, sym__start_of_tuple_type, - ACTIONS(7687), 1, + ACTIONS(7699), 1, sym__start_of_named_tuple_type, - ACTIONS(7827), 1, - anon_sym_LPAREN, - ACTIONS(7829), 1, + ACTIONS(7768), 1, anon_sym_DASH_GT, - STATE(5144), 1, + STATE(5126), 1, sym_heredoc_body, - STATE(7775), 1, + STATE(7803), 1, sym_constant, - STATE(7829), 1, + STATE(7809), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7683), 2, + ACTIONS(7695), 2, sym_self, sym_underscore_type, - STATE(7815), 12, + STATE(7865), 12, sym_typeof, sym_class_type, sym_union_type, @@ -495788,7 +499189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - ACTIONS(4375), 16, + ACTIONS(4362), 17, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -495798,6 +499199,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_end, anon_sym_STAR, anon_sym_PIPE, @@ -495805,19 +499207,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [189164] = 7, + [188015] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7825), 1, - anon_sym_COMMA, - STATE(5145), 1, + ACTIONS(7208), 1, + anon_sym_LPAREN2, + STATE(5127), 1, sym_heredoc_body, - STATE(5294), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -495826,7 +499226,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 29, + ACTIONS(135), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -495839,8 +499240,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -495856,19 +499257,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [189222] = 7, + anon_sym_then, + [188072] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7825), 1, - anon_sym_COMMA, - STATE(5146), 1, + STATE(5072), 1, + aux_sym_union_type_repeat1, + STATE(5128), 1, sym_heredoc_body, - STATE(5319), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -495877,9 +499277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 29, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4629), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -495890,9 +499291,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -495906,85 +499309,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [189280] = 25, + [188129] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7591), 1, - anon_sym_DOT_DOT, - ACTIONS(7593), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7597), 1, - anon_sym_PIPE, - ACTIONS(7599), 1, - anon_sym_CARET, - ACTIONS(7603), 1, - anon_sym_EQ_EQ, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7615), 1, - anon_sym_QMARK, - ACTIONS(7617), 1, - anon_sym_AMP_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - ACTIONS(7831), 1, - anon_sym_COMMA, - STATE(5147), 1, + STATE(5129), 1, sym_heredoc_body, - STATE(5155), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7601), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, + ACTIONS(4716), 10, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5570), 4, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_do, - ACTIONS(7605), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7623), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4718), 30, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7625), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [189374] = 5, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [188184] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5148), 1, + STATE(5130), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5838), 8, + ACTIONS(5559), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -495993,8 +499377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5836), 31, - sym__line_break, + ACTIONS(5557), 31, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -496007,7 +499390,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + sym__string_literal_start, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -496021,23 +499404,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - anon_sym_then, - [189428] = 7, + [188239] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7831), 1, - anon_sym_COMMA, - STATE(5149), 1, + STATE(5131), 1, sym_heredoc_body, - STATE(5155), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(4656), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -496046,9 +499427,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 29, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4658), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -496060,8 +499440,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -496073,225 +499456,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [189486] = 23, + [188294] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7591), 1, - anon_sym_DOT_DOT, - ACTIONS(7593), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7597), 1, + ACTIONS(7716), 1, anon_sym_PIPE, - ACTIONS(7599), 1, - anon_sym_CARET, - ACTIONS(7603), 1, - anon_sym_EQ_EQ, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7722), 1, + anon_sym_STAR, + ACTIONS(7724), 1, anon_sym_DOT, - ACTIONS(7615), 1, + ACTIONS(7726), 1, anon_sym_QMARK, - ACTIONS(7617), 1, - anon_sym_AMP_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - STATE(5150), 1, + STATE(5072), 1, + aux_sym_union_type_repeat1, + STATE(5132), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7601), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, + ACTIONS(4619), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7605), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7623), 4, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4621), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7625), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6144), 6, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, anon_sym_COMMA, - anon_sym_do, - anon_sym_then, - [189576] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7591), 1, - anon_sym_DOT_DOT, - ACTIONS(7593), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7597), 1, - anon_sym_PIPE, - ACTIONS(7599), 1, + anon_sym_DASH_GT, anon_sym_CARET, - ACTIONS(7603), 1, - anon_sym_EQ_EQ, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7615), 1, - anon_sym_QMARK, - ACTIONS(7617), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_AMP_AMP, - ACTIONS(7619), 1, anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - STATE(5151), 1, + [188361] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(969), 1, + sym__start_of_brace_block, + STATE(5133), 1, sym_heredoc_body, + STATE(5505), 1, + sym_do_end_block, + STATE(5506), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7601), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, + ACTIONS(5570), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7605), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7623), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5568), 28, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7625), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6152), 6, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, anon_sym_COMMA, - anon_sym_do, - anon_sym_then, - [189666] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7591), 1, - anon_sym_DOT_DOT, - ACTIONS(7593), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7597), 1, - anon_sym_PIPE, - ACTIONS(7599), 1, anon_sym_CARET, - ACTIONS(7603), 1, - anon_sym_EQ_EQ, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7615), 1, - anon_sym_QMARK, - ACTIONS(7617), 1, - anon_sym_AMP_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - ACTIONS(7833), 1, - anon_sym_COMMA, - STATE(5152), 1, - sym_heredoc_body, - STATE(5167), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7601), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7607), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5585), 4, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_do, - ACTIONS(7605), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7623), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7625), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [189760] = 7, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [188422] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7833), 1, - anon_sym_COMMA, - STATE(5153), 1, + STATE(5134), 1, sym_heredoc_body, - STATE(5167), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(4700), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -496300,9 +499586,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 29, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4702), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -496314,8 +499599,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -496327,18 +499615,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [189818] = 5, + [188477] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5154), 1, + ACTIONS(969), 1, + sym__start_of_brace_block, + STATE(5135), 1, sym_heredoc_body, + STATE(5525), 1, + sym_do_end_block, + STATE(5526), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6304), 8, + ACTIONS(5547), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -496347,9 +499642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6302), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5545), 28, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -496361,7 +499654,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -496375,35 +499667,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [189872] = 7, + [188538] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7833), 1, - anon_sym_COMMA, - STATE(5031), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5155), 1, + ACTIONS(7716), 1, + anon_sym_PIPE, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7722), 1, + anon_sym_STAR, + ACTIONS(7724), 1, + anon_sym_DOT, + ACTIONS(7726), 1, + anon_sym_QMARK, + STATE(5072), 1, + aux_sym_union_type_repeat1, + STATE(5136), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(4648), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5585), 29, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4650), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -496414,8 +499712,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -496426,155 +499725,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [189930] = 23, + [188605] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7591), 1, - anon_sym_DOT_DOT, - ACTIONS(7593), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7597), 1, + ACTIONS(7771), 1, anon_sym_PIPE, - ACTIONS(7599), 1, - anon_sym_CARET, - ACTIONS(7603), 1, - anon_sym_EQ_EQ, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7615), 1, - anon_sym_QMARK, - ACTIONS(7617), 1, - anon_sym_AMP_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - STATE(5156), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7601), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, + STATE(5137), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7605), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7623), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4629), 30, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7625), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6358), 6, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_do, - anon_sym_then, - [190020] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7591), 1, - anon_sym_DOT_DOT, - ACTIONS(7593), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7597), 1, - anon_sym_PIPE, - ACTIONS(7599), 1, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, - ACTIONS(7603), 1, - anon_sym_EQ_EQ, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7615), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7617), 1, anon_sym_AMP_AMP, - ACTIONS(7619), 1, anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - STATE(5157), 1, + [188662] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7774), 1, + anon_sym_of, + STATE(5138), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7601), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, + ACTIONS(5651), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7605), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7623), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5647), 31, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7625), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6364), 6, - sym__line_break, - sym__start_of_brace_block, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [190110] = 6, + [188719] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7230), 1, - anon_sym_LPAREN2, - STATE(5158), 1, + STATE(5139), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 9, + ACTIONS(4664), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -496584,8 +499847,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 29, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4666), 30, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -496597,8 +499860,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -496613,19 +499879,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [190166] = 6, + [188774] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7835), 1, - sym_regex_modifier, - STATE(5159), 1, + ACTIONS(7776), 1, + anon_sym_of, + STATE(5140), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5633), 9, - anon_sym_RBRACK, + ACTIONS(5714), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -496634,7 +499898,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5631), 29, + ACTIONS(5710), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -496647,6 +499912,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -496660,20 +499926,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [190222] = 5, + anon_sym_then, + [188831] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5160), 1, + ACTIONS(7778), 1, + anon_sym_of, + STATE(5141), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5581), 9, - anon_sym_RBRACK, + ACTIONS(5757), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -496682,7 +499949,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5579), 30, + ACTIONS(5753), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -496695,6 +499963,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -496708,36 +499977,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [190276] = 8, + anon_sym_then, + [188888] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, - sym__start_of_brace_block, - ACTIONS(7837), 1, - anon_sym_do, - STATE(5161), 1, - sym_heredoc_body, + ACTIONS(7780), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6164), 2, - sym_do_end_block, - sym_brace_block, - ACTIONS(5512), 8, + STATE(5142), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4627), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 27, + anon_sym_EQ, + ACTIONS(4629), 29, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -496750,8 +500014,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -496765,18 +500031,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [190336] = 6, + [188944] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7839), 1, - sym_regex_modifier, - STATE(5162), 1, + STATE(5143), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5679), 9, - anon_sym_RBRACK, + ACTIONS(6406), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -496785,7 +500048,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5677), 29, + ACTIONS(6404), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -496798,6 +500062,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -496811,25 +500076,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [190392] = 8, + anon_sym_then, + [188998] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1984), 1, - anon_sym_COLON, - ACTIONS(6078), 1, - anon_sym_COLON_COLON, - STATE(2656), 1, - aux_sym_constant_repeat1, - STATE(5163), 1, + STATE(5144), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 9, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -496838,8 +500097,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_COLON2, - ACTIONS(4549), 27, + ACTIONS(6199), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -496851,6 +500111,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -496863,27 +500124,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [190452] = 9, + anon_sym_do, + anon_sym_then, + [189052] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3072), 1, - sym__string_literal_start, - ACTIONS(7841), 1, - anon_sym_COLON, - STATE(3839), 1, - sym_string, - STATE(5164), 1, + STATE(5145), 1, sym_heredoc_body, - STATE(5645), 1, - aux_sym_chained_string_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 9, + ACTIONS(5559), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -496892,9 +500146,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_COLON2, - ACTIONS(133), 26, + ACTIONS(5557), 31, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -496905,6 +500160,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + sym__string_literal_start, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -496917,18 +500173,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [190514] = 5, + anon_sym_do, + [189106] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5165), 1, + ACTIONS(7783), 1, + anon_sym_COMMA, + STATE(5146), 1, sym_heredoc_body, + STATE(5150), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4643), 9, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -496937,10 +500199,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4645), 30, + ACTIONS(5637), 29, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -496951,11 +500212,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -496969,15 +500228,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [190568] = 5, + anon_sym_do, + [189164] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5166), 1, + STATE(5147), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4655), 9, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -496986,10 +500246,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4657), 30, + ACTIONS(6321), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -497000,11 +500260,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -497018,19 +500276,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [190622] = 7, + anon_sym_do, + anon_sym_then, + [189218] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7843), 1, - anon_sym_COMMA, - STATE(5031), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5167), 1, + STATE(5148), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(5881), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -497039,7 +500295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 29, + ACTIONS(5879), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -497054,6 +500310,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -497069,27 +500326,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [190680] = 5, + anon_sym_then, + [189272] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5168), 1, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7722), 1, + anon_sym_STAR, + ACTIONS(7724), 1, + anon_sym_DOT, + ACTIONS(7726), 1, + anon_sym_QMARK, + ACTIONS(7785), 1, + anon_sym_PIPE, + STATE(5149), 1, sym_heredoc_body, + STATE(5169), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5834), 8, + ACTIONS(4668), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5832), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4670), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -497100,7 +500368,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -497113,20 +500380,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [190734] = 5, + [189338] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5169), 1, - sym_heredoc_body, + ACTIONS(7787), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4635), 9, + STATE(5150), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -497135,10 +500402,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4637), 30, + ACTIONS(5694), 29, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -497149,11 +500415,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -497167,82 +500431,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [190788] = 23, + anon_sym_do, + [189394] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7591), 1, - anon_sym_DOT_DOT, - ACTIONS(7593), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7597), 1, + STATE(5151), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4688), 9, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7599), 1, - anon_sym_CARET, - ACTIONS(7603), 1, anon_sym_EQ_EQ, - ACTIONS(7609), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7613), 1, anon_sym_DOT, - ACTIONS(7615), 1, - anon_sym_QMARK, - ACTIONS(7617), 1, - anon_sym_AMP_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, + anon_sym_EQ, + ACTIONS(4690), 30, sym__start_of_index_operator, - ACTIONS(7627), 1, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - STATE(5170), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7601), 2, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7607), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [189448] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5152), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6023), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7605), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7623), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6021), 31, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7625), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5708), 6, - sym__line_break, - sym__start_of_brace_block, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [190878] = 5, + [189502] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5171), 1, + STATE(5153), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5713), 8, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -497251,7 +500547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 31, + ACTIONS(6035), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -497283,15 +500579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [190932] = 5, + [189556] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5172), 1, + STATE(5154), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4627), 9, + ACTIONS(6055), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -497300,10 +500596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4629), 30, + ACTIONS(6053), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -497314,11 +500610,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -497332,27 +500626,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [190986] = 11, + anon_sym_do, + anon_sym_then, + [189610] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7631), 1, + ACTIONS(7720), 1, anon_sym_LBRACK, - ACTIONS(7633), 1, + ACTIONS(7722), 1, anon_sym_STAR, - ACTIONS(7637), 1, + ACTIONS(7724), 1, anon_sym_DOT, - ACTIONS(7639), 1, + ACTIONS(7726), 1, anon_sym_QMARK, - ACTIONS(7820), 1, + ACTIONS(7785), 1, anon_sym_PIPE, - STATE(5137), 1, - aux_sym_union_type_repeat1, - STATE(5173), 1, + STATE(5155), 1, sym_heredoc_body, + STATE(5169), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4603), 7, + ACTIONS(4684), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, @@ -497360,7 +500656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_EQ, - ACTIONS(4605), 26, + ACTIONS(4686), 26, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -497387,17 +500683,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_STAR_STAR, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [191052] = 6, + [189676] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5137), 1, - aux_sym_union_type_repeat1, - STATE(5174), 1, + STATE(5156), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4586), 9, + ACTIONS(6470), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -497406,10 +500700,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4588), 29, + ACTIONS(6468), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -497420,10 +500714,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -497437,90 +500730,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [191108] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5574), 1, - anon_sym_RBRACK, - ACTIONS(7845), 1, - anon_sym_COMMA, - ACTIONS(7847), 1, - anon_sym_DOT_DOT, - ACTIONS(7849), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7853), 1, - anon_sym_PIPE, - ACTIONS(7855), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_EQ_EQ, - ACTIONS(7865), 1, - anon_sym_AMP_STAR, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7871), 1, - anon_sym_QMARK, - ACTIONS(7873), 1, - anon_sym_AMP_AMP, - ACTIONS(7875), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7877), 1, - sym__start_of_index_operator, - ACTIONS(7883), 1, - sym_binary_ampersand, - STATE(5175), 1, - sym_heredoc_body, - STATE(5179), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7857), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7863), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7867), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5570), 3, - sym__start_of_brace_block, - anon_sym_RBRACK_QMARK, anon_sym_do, - ACTIONS(7851), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7861), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7879), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7881), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [191204] = 7, + anon_sym_then, + [189730] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7845), 1, - anon_sym_COMMA, - STATE(5176), 1, + STATE(5157), 1, sym_heredoc_body, - STATE(5179), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 9, - anon_sym_RBRACK, + ACTIONS(6071), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -497529,7 +500749,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 28, + ACTIONS(6069), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -497542,6 +500763,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -497554,94 +500777,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [191262] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5627), 1, - anon_sym_RBRACK, - ACTIONS(7847), 1, - anon_sym_DOT_DOT, - ACTIONS(7849), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7853), 1, - anon_sym_PIPE, - ACTIONS(7855), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_EQ_EQ, - ACTIONS(7865), 1, - anon_sym_AMP_STAR, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7871), 1, - anon_sym_QMARK, - ACTIONS(7873), 1, - anon_sym_AMP_AMP, - ACTIONS(7875), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7877), 1, - sym__start_of_index_operator, - ACTIONS(7883), 1, - sym_binary_ampersand, - ACTIONS(7885), 1, - anon_sym_COMMA, - STATE(5177), 1, - sym_heredoc_body, - STATE(5180), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7857), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7863), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7867), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5585), 3, - sym__start_of_brace_block, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(7851), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7861), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7879), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7881), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [191358] = 7, + anon_sym_then, + [189784] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7885), 1, - anon_sym_COMMA, - STATE(5178), 1, + STATE(5158), 1, sym_heredoc_body, - STATE(5180), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 9, - anon_sym_RBRACK, + ACTIONS(6160), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -497650,7 +500798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 28, + ACTIONS(6158), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -497663,6 +500812,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -497675,24 +500826,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [191416] = 7, + anon_sym_then, + [189838] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7885), 1, - anon_sym_COMMA, - STATE(5179), 1, + STATE(5159), 1, sym_heredoc_body, - STATE(5390), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 9, - anon_sym_RBRACK, + ACTIONS(5574), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -497701,9 +500847,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 28, + ACTIONS(5572), 31, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -497714,6 +500861,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + sym__string_literal_start, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -497725,24 +500874,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [191474] = 7, + [189892] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7887), 1, - anon_sym_COMMA, - STATE(5180), 1, + STATE(5160), 1, sym_heredoc_body, - STATE(5390), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 9, + ACTIONS(4783), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -497752,7 +500897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 28, + anon_sym_EQ, + ACTIONS(4785), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -497765,6 +500911,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -497781,15 +500928,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [191532] = 5, + [189946] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5181), 1, + ACTIONS(2352), 1, + sym__string_literal_start, + STATE(5161), 1, sym_heredoc_body, + STATE(5168), 1, + aux_sym_chained_string_repeat1, + STATE(6162), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4659), 9, + ACTIONS(157), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -497798,10 +500952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4661), 30, + ACTIONS(135), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -497812,11 +500964,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -497828,17 +500977,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [191586] = 5, + [190006] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5182), 1, + STATE(5162), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6156), 8, + ACTIONS(6171), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -497847,7 +500997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6154), 31, + ACTIONS(6169), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -497879,88 +501029,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [191640] = 25, + [190060] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7775), 1, - anon_sym_DOT_DOT, - ACTIONS(7777), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7781), 1, - anon_sym_PIPE, - ACTIONS(7783), 1, - anon_sym_CARET, - ACTIONS(7787), 1, - anon_sym_EQ_EQ, - ACTIONS(7793), 1, - anon_sym_AMP_STAR, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(7799), 1, - anon_sym_QMARK, - ACTIONS(7801), 1, - anon_sym_AMP_AMP, - ACTIONS(7803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, - sym__start_of_index_operator, - ACTIONS(7811), 1, - sym_binary_ampersand, - ACTIONS(7889), 1, - anon_sym_COMMA, - STATE(5183), 1, - sym_heredoc_body, - STATE(5187), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7785), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7791), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5570), 4, - sym__start_of_brace_block, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_do, - ACTIONS(7789), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7807), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7809), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [191734] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7889), 1, - anon_sym_COMMA, - STATE(5184), 1, + STATE(5163), 1, sym_heredoc_body, - STATE(5187), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(6187), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -497969,7 +501046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 29, + ACTIONS(6185), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -497982,8 +501060,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -497999,88 +501077,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [191792] = 25, + anon_sym_then, + [190114] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7775), 1, - anon_sym_DOT_DOT, - ACTIONS(7777), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7781), 1, - anon_sym_PIPE, - ACTIONS(7783), 1, - anon_sym_CARET, - ACTIONS(7787), 1, - anon_sym_EQ_EQ, - ACTIONS(7793), 1, - anon_sym_AMP_STAR, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(7799), 1, - anon_sym_QMARK, - ACTIONS(7801), 1, - anon_sym_AMP_AMP, - ACTIONS(7803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, - sym__start_of_index_operator, - ACTIONS(7811), 1, - sym_binary_ampersand, - ACTIONS(7891), 1, - anon_sym_COMMA, - STATE(5185), 1, - sym_heredoc_body, - STATE(5188), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7785), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7791), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5585), 4, + ACTIONS(1093), 1, sym__start_of_brace_block, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_do, - ACTIONS(7789), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7807), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7809), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [191886] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7891), 1, - anon_sym_COMMA, - STATE(5186), 1, + STATE(5164), 1, sym_heredoc_body, - STATE(5188), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(5831), 1, + sym_do_end_block, + STATE(5832), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5570), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -498089,9 +501101,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 29, - sym__start_of_brace_block, + ACTIONS(5568), 28, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -498102,8 +501114,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -498119,19 +501130,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [191944] = 7, + [190174] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7891), 1, - anon_sym_COMMA, - STATE(5187), 1, + STATE(5165), 1, sym_heredoc_body, - STATE(5319), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5917), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -498140,7 +501147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 29, + ACTIONS(5915), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -498153,8 +501161,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -498170,19 +501178,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [192002] = 7, + anon_sym_then, + [190228] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7893), 1, - anon_sym_COMMA, - STATE(5188), 1, + STATE(5166), 1, sym_heredoc_body, - STATE(5319), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(4642), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -498191,9 +501196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 29, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4644), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -498204,9 +501210,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -498220,16 +501228,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [192060] = 5, + [190282] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5189), 1, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(7790), 1, + anon_sym_DASH_GT, + STATE(5167), 1, sym_heredoc_body, + STATE(10384), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6268), 8, + ACTIONS(4783), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -498238,9 +501252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6266), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4785), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -498252,8 +501265,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -498266,19 +501277,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [192114] = 5, + [190342] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5190), 1, + ACTIONS(2352), 1, + sym__string_literal_start, + STATE(5168), 1, sym_heredoc_body, + STATE(5183), 1, + aux_sym_chained_string_repeat1, + STATE(6162), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5648), 9, + ACTIONS(5541), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -498288,8 +501304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5646), 30, - sym__start_of_brace_block, + ACTIONS(5539), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -498301,7 +501316,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -498318,26 +501332,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [192168] = 5, + [190402] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5191), 1, + ACTIONS(7785), 1, + anon_sym_PIPE, + STATE(5142), 1, + aux_sym_union_type_repeat1, + STATE(5169), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5520), 8, + ACTIONS(4634), 8, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5518), 31, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4636), 29, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -498350,9 +501366,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -498363,23 +501380,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [192222] = 6, + [190460] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7895), 1, - anon_sym_of, - STATE(5192), 1, + STATE(5170), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5660), 9, - anon_sym_RBRACK, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -498388,7 +501400,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5656), 29, + ACTIONS(6195), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -498401,6 +501414,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -498414,33 +501428,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [192278] = 6, + anon_sym_then, + [190514] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7897), 1, - sym_regex_modifier, - STATE(5193), 1, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7722), 1, + anon_sym_STAR, + ACTIONS(7724), 1, + anon_sym_DOT, + ACTIONS(7726), 1, + anon_sym_QMARK, + ACTIONS(7785), 1, + anon_sym_PIPE, + STATE(5169), 1, + aux_sym_union_type_repeat1, + STATE(5171), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 9, - anon_sym_RBRACK, + ACTIONS(4623), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5662), 29, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4625), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -498463,32 +501485,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [192334] = 5, + [190580] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5194), 1, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7722), 1, + anon_sym_STAR, + ACTIONS(7724), 1, + anon_sym_DOT, + ACTIONS(7726), 1, + anon_sym_QMARK, + ACTIONS(7785), 1, + anon_sym_PIPE, + STATE(5169), 1, + aux_sym_union_type_repeat1, + STATE(5172), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5654), 9, - anon_sym_RBRACK, + ACTIONS(4605), 7, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5652), 30, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4607), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -498511,24 +501540,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - [192388] = 6, + [190646] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7899), 1, - sym_regex_modifier, - STATE(5195), 1, + ACTIONS(7689), 1, + anon_sym_typeof, + ACTIONS(7691), 1, + sym__constant_segment, + ACTIONS(7693), 1, + anon_sym_COLON_COLON, + ACTIONS(7697), 1, + sym__start_of_tuple_type, + ACTIONS(7699), 1, + sym__start_of_named_tuple_type, + ACTIONS(7792), 1, + anon_sym_LPAREN, + ACTIONS(7794), 1, + anon_sym_DASH_GT, + STATE(5173), 1, sym_heredoc_body, + STATE(7803), 1, + sym_constant, + STATE(7880), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 9, - anon_sym_RBRACK, + ACTIONS(7695), 2, + sym_self, + sym_underscore_type, + STATE(7865), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4412), 16, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_else, + [190720] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7689), 1, + anon_sym_typeof, + ACTIONS(7691), 1, + sym__constant_segment, + ACTIONS(7693), 1, + anon_sym_COLON_COLON, + ACTIONS(7697), 1, + sym__start_of_tuple_type, + ACTIONS(7699), 1, + sym__start_of_named_tuple_type, + ACTIONS(7792), 1, + anon_sym_LPAREN, + ACTIONS(7794), 1, + anon_sym_DASH_GT, + STATE(5174), 1, + sym_heredoc_body, + STATE(7803), 1, + sym_constant, + STATE(7886), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7695), 2, + sym_self, + sym_underscore_type, + STATE(7865), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4390), 16, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_else, + [190794] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7689), 1, + anon_sym_typeof, + ACTIONS(7691), 1, + sym__constant_segment, + ACTIONS(7693), 1, + anon_sym_COLON_COLON, + ACTIONS(7697), 1, + sym__start_of_tuple_type, + ACTIONS(7699), 1, + sym__start_of_named_tuple_type, + ACTIONS(7792), 1, + anon_sym_LPAREN, + ACTIONS(7794), 1, + anon_sym_DASH_GT, + STATE(5175), 1, + sym_heredoc_body, + STATE(7803), 1, + sym_constant, + STATE(7867), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7695), 2, + sym_self, + sym_underscore_type, + STATE(7865), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4362), 16, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_else, + [190868] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5176), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4700), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -498537,9 +501736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 29, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4702), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -498550,8 +501750,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -498563,22 +501766,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [192444] = 6, + [190922] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7901), 1, - anon_sym_of, - STATE(5196), 1, + STATE(5177), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5702), 9, - anon_sym_RBRACK, + ACTIONS(6211), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -498587,7 +501785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5698), 29, + ACTIONS(6209), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -498600,6 +501799,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -498613,19 +501813,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [192500] = 5, + anon_sym_then, + [190976] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5197), 1, + STATE(5178), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5536), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -498634,10 +501834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5534), 31, + ACTIONS(6357), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -498648,7 +501848,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -498661,23 +501861,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [192554] = 6, + anon_sym_then, + [191030] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7903), 1, - anon_sym_of, - STATE(5198), 1, + STATE(5179), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5728), 9, - anon_sym_RBRACK, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -498686,7 +501883,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5724), 29, + ACTIONS(6381), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -498699,6 +501897,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -498712,19 +501911,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [192610] = 5, + anon_sym_then, + [191084] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5199), 1, + STATE(5180), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4597), 9, + ACTIONS(6450), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -498733,10 +501932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4599), 30, + ACTIONS(6448), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -498747,11 +501946,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -498765,18 +501962,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [192664] = 6, + anon_sym_do, + anon_sym_then, + [191138] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7905), 1, - anon_sym_of, - STATE(5200), 1, + STATE(5181), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5734), 9, - anon_sym_RBRACK, + ACTIONS(5805), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -498785,7 +501981,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5730), 29, + ACTIONS(5803), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -498798,6 +501995,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -498811,21 +502009,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [192720] = 6, + anon_sym_then, + [191192] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7907), 1, - anon_sym_of, - STATE(5201), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7798), 1, + anon_sym_COMMA, + ACTIONS(7800), 1, + anon_sym_DOT_DOT, + ACTIONS(7802), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_CARET, + ACTIONS(7812), 1, + anon_sym_EQ_EQ, + ACTIONS(7818), 1, + anon_sym_AMP_STAR, + ACTIONS(7822), 1, + anon_sym_QMARK, + ACTIONS(7824), 1, + anon_sym_AMP_AMP, + ACTIONS(7826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7828), 1, + anon_sym_then, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(7836), 1, + sym_binary_ampersand, + STATE(298), 1, + sym__terminator, + STATE(5182), 1, sym_heredoc_body, + STATE(9212), 1, + aux_sym_when_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(7810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7816), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7804), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7814), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7832), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7834), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [191290] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7838), 1, + sym__string_literal_start, + STATE(6162), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5690), 9, + STATE(5183), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5534), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -498835,8 +502107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5686), 29, - sym__start_of_brace_block, + ACTIONS(5532), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -498864,16 +502135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [192776] = 5, + [191348] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5202), 1, + STATE(5184), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5821), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -498882,7 +502152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 31, + ACTIONS(5819), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -498914,15 +502184,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [192830] = 5, + [191402] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5203), 1, + ACTIONS(1093), 1, + sym__start_of_brace_block, + ACTIONS(7841), 1, + anon_sym_do, + STATE(5185), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5850), 8, + STATE(5834), 2, + sym_do_end_block, + sym_brace_block, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -498931,10 +502208,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5848), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5551), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -498945,7 +502221,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -498961,17 +502236,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [192884] = 5, + [191462] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5204), 1, + STATE(5186), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5854), 8, + ACTIONS(5833), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -498980,7 +502253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5852), 31, + ACTIONS(5831), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -499012,18 +502285,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [192938] = 6, + [191516] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7909), 1, - anon_sym_of, - STATE(5205), 1, + ACTIONS(1817), 1, + anon_sym_COLON, + ACTIONS(5823), 1, + anon_sym_COLON_COLON, + STATE(2560), 1, + aux_sym_constant_repeat1, + STATE(5187), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5719), 9, - anon_sym_RBRACK, + ACTIONS(4584), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -499032,8 +502308,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5715), 29, - sym__start_of_brace_block, + anon_sym_COLON2, + ACTIONS(4586), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -499057,20 +502333,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [192994] = 5, + [191576] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5206), 1, + ACTIONS(3131), 1, + sym__string_literal_start, + ACTIONS(7843), 1, + anon_sym_COLON, + STATE(3931), 1, + sym_string, + STATE(5188), 1, sym_heredoc_body, + STATE(5457), 1, + aux_sym_chained_string_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(157), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -499079,9 +502362,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5872), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_COLON2, + ACTIONS(135), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -499093,7 +502375,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -499109,17 +502390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [193048] = 5, + [191638] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5207), 1, + STATE(5189), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5887), 8, + ACTIONS(5841), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -499128,7 +502407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5885), 31, + ACTIONS(5839), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -499160,15 +502439,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [193102] = 5, + [191692] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5208), 1, + ACTIONS(7720), 1, + anon_sym_LBRACK, + ACTIONS(7722), 1, + anon_sym_STAR, + ACTIONS(7724), 1, + anon_sym_DOT, + ACTIONS(7726), 1, + anon_sym_QMARK, + ACTIONS(7785), 1, + anon_sym_PIPE, + STATE(5169), 1, + aux_sym_union_type_repeat1, + STATE(5190), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4648), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_EQ, + ACTIONS(4650), 26, + sym__start_of_index_operator, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [191758] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5169), 1, + aux_sym_union_type_repeat1, + STATE(5191), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5891), 8, + ACTIONS(4627), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -499177,10 +502513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5889), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4629), 29, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -499191,9 +502527,10 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -499207,21 +502544,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [193156] = 7, + [191814] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(1093), 1, + sym__start_of_brace_block, + STATE(5192), 1, + sym_heredoc_body, + STATE(5892), 1, + sym_do_end_block, + STATE(5893), 1, + sym_brace_block, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5547), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(7621), 1, + ACTIONS(5545), 28, sym__start_of_index_operator, - STATE(5209), 1, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [191874] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1093), 1, + sym__start_of_brace_block, + STATE(5193), 1, sym_heredoc_body, + STATE(5904), 1, + sym_do_end_block, + STATE(5905), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5895), 7, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -499229,9 +502618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5893), 30, - sym__line_break, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(5545), 28, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -499242,7 +502632,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -499259,81 +502648,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [193214] = 21, + [191934] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5923), 1, + ACTIONS(5629), 1, + anon_sym_RBRACK, + ACTIONS(7845), 1, + anon_sym_COMMA, + ACTIONS(7847), 1, anon_sym_DOT_DOT, - ACTIONS(7597), 1, + ACTIONS(7849), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7853), 1, anon_sym_PIPE, - ACTIONS(7599), 1, + ACTIONS(7855), 1, anon_sym_CARET, - ACTIONS(7603), 1, + ACTIONS(7859), 1, anon_sym_EQ_EQ, - ACTIONS(7609), 1, + ACTIONS(7865), 1, anon_sym_AMP_STAR, - ACTIONS(7613), 1, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(7617), 1, + ACTIONS(7871), 1, + anon_sym_QMARK, + ACTIONS(7873), 1, anon_sym_AMP_AMP, - ACTIONS(7619), 1, + ACTIONS(7875), 1, anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, + ACTIONS(7877), 1, sym__start_of_index_operator, - ACTIONS(7627), 1, + ACTIONS(7883), 1, sym_binary_ampersand, - STATE(5210), 1, + STATE(5194), 1, sym_heredoc_body, + STATE(5198), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7601), 2, + ACTIONS(7857), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7607), 2, + ACTIONS(7863), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, + ACTIONS(7867), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, + ACTIONS(5587), 3, + sym__start_of_brace_block, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(7851), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7605), 4, + ACTIONS(7861), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7623), 4, + ACTIONS(7879), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7625), 4, + ACTIONS(7881), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5921), 8, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_do, - anon_sym_then, - [193300] = 5, + [192030] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5211), 1, + ACTIONS(7845), 1, + anon_sym_COMMA, + STATE(5195), 1, sym_heredoc_body, + STATE(5198), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5935), 8, + ACTIONS(5629), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -499342,8 +502740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5933), 31, - sym__line_break, + ACTIONS(5587), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -499356,8 +502753,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -499370,19 +502765,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [193354] = 5, + [192088] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5212), 1, + ACTIONS(5635), 1, + anon_sym_RBRACK, + ACTIONS(7847), 1, + anon_sym_DOT_DOT, + ACTIONS(7849), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7853), 1, + anon_sym_PIPE, + ACTIONS(7855), 1, + anon_sym_CARET, + ACTIONS(7859), 1, + anon_sym_EQ_EQ, + ACTIONS(7865), 1, + anon_sym_AMP_STAR, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7871), 1, + anon_sym_QMARK, + ACTIONS(7873), 1, + anon_sym_AMP_AMP, + ACTIONS(7875), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7877), 1, + sym__start_of_index_operator, + ACTIONS(7883), 1, + sym_binary_ampersand, + ACTIONS(7885), 1, + anon_sym_COMMA, + STATE(5196), 1, + sym_heredoc_body, + STATE(5199), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7857), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7863), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5631), 3, + sym__start_of_brace_block, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(7851), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7861), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7879), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7881), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [192184] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7885), 1, + anon_sym_COMMA, + STATE(5197), 1, sym_heredoc_body, + STATE(5199), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5945), 8, + ACTIONS(5635), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -499391,8 +502861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5943), 31, - sym__line_break, + ACTIONS(5631), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -499405,8 +502874,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -499419,19 +502886,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [193408] = 5, + [192242] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5213), 1, + ACTIONS(7885), 1, + anon_sym_COMMA, + STATE(5198), 1, sym_heredoc_body, + STATE(5321), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(5635), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -499440,8 +502912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5955), 31, - sym__line_break, + ACTIONS(5631), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -499454,8 +502925,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -499468,19 +502937,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [193462] = 5, + [192300] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5214), 1, + ACTIONS(7887), 1, + anon_sym_COMMA, + STATE(5199), 1, sym_heredoc_body, + STATE(5321), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5976), 8, + ACTIONS(5641), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -499489,8 +502963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5974), 31, - sym__line_break, + ACTIONS(5637), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -499503,8 +502976,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -499517,19 +502988,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [193516] = 5, + [192358] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5215), 1, + STATE(5200), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5980), 8, + ACTIONS(4692), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -499538,10 +503009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5978), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4694), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -499552,9 +503023,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -499568,17 +503041,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + [192412] = 21, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5977), 1, + anon_sym_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_PIPE, + ACTIONS(7654), 1, + anon_sym_CARET, + ACTIONS(7658), 1, + anon_sym_EQ_EQ, + ACTIONS(7664), 1, + anon_sym_AMP_STAR, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7672), 1, + anon_sym_AMP_AMP, + ACTIONS(7674), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7676), 1, + sym__start_of_index_operator, + ACTIONS(7682), 1, + sym_binary_ampersand, + STATE(5201), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7662), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7666), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7650), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7660), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7678), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7680), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5975), 8, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, anon_sym_do, anon_sym_then, - [193570] = 5, + [192498] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5216), 1, + STATE(5202), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5984), 8, + ACTIONS(5889), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -499587,7 +503123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5982), 31, + ACTIONS(5887), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -499619,15 +503155,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [193624] = 5, + [192552] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5217), 1, + STATE(5203), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5996), 8, + ACTIONS(5913), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -499636,7 +503172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5994), 31, + ACTIONS(5911), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -499668,19 +503204,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [193678] = 7, + [192606] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7621), 1, - sym__start_of_index_operator, - STATE(5218), 1, + ACTIONS(7299), 1, + anon_sym_LPAREN2, + STATE(5204), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6000), 7, + ACTIONS(157), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -499688,9 +503223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5998), 30, - sym__line_break, + anon_sym_DOT, + ACTIONS(135), 29, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -499701,7 +503237,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -499715,23 +503250,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [193736] = 7, + [192662] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7889), 1, + anon_sym_COMMA, + ACTIONS(7891), 1, + anon_sym_DOT_DOT, + ACTIONS(7893), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7897), 1, + anon_sym_PIPE, + ACTIONS(7899), 1, + anon_sym_CARET, + ACTIONS(7903), 1, + anon_sym_EQ_EQ, + ACTIONS(7909), 1, + anon_sym_AMP_STAR, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7621), 1, + ACTIONS(7915), 1, + anon_sym_QMARK, + ACTIONS(7917), 1, + anon_sym_AMP_AMP, + ACTIONS(7919), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7921), 1, sym__start_of_index_operator, - STATE(5219), 1, + ACTIONS(7927), 1, + sym_binary_ampersand, + STATE(5205), 1, + sym_heredoc_body, + STATE(5209), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7901), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7907), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7911), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7895), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5587), 4, + sym__start_of_brace_block, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_do, + ACTIONS(7905), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7923), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7925), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [192756] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7889), 1, + anon_sym_COMMA, + STATE(5206), 1, sym_heredoc_body, + STATE(5209), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6004), 7, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -499739,9 +503343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6002), 30, - sym__line_break, + anon_sym_DOT, + ACTIONS(5587), 29, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -499752,8 +503357,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -499769,22 +503374,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [193794] = 8, + [192814] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1992), 1, - anon_sym_COLON, - ACTIONS(7474), 1, - anon_sym_COLON_COLON, - STATE(4766), 1, - aux_sym_constant_repeat1, - STATE(5220), 1, + ACTIONS(7891), 1, + anon_sym_DOT_DOT, + ACTIONS(7893), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7897), 1, + anon_sym_PIPE, + ACTIONS(7899), 1, + anon_sym_CARET, + ACTIONS(7903), 1, + anon_sym_EQ_EQ, + ACTIONS(7909), 1, + anon_sym_AMP_STAR, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7915), 1, + anon_sym_QMARK, + ACTIONS(7917), 1, + anon_sym_AMP_AMP, + ACTIONS(7919), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7921), 1, + sym__start_of_index_operator, + ACTIONS(7927), 1, + sym_binary_ampersand, + ACTIONS(7929), 1, + anon_sym_COMMA, + STATE(5207), 1, sym_heredoc_body, + STATE(5210), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4547), 8, + ACTIONS(7901), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7907), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7911), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7895), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5631), 4, + sym__start_of_brace_block, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_do, + ACTIONS(7905), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7923), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7925), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [192908] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7929), 1, + anon_sym_COMMA, + STATE(5208), 1, + sym_heredoc_body, + STATE(5210), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -499793,9 +503464,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(4549), 28, + ACTIONS(5631), 29, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -499806,7 +503477,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -499818,27 +503490,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [193854] = 9, + anon_sym_do, + [192966] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2701), 1, - sym__string_literal_start, - ACTIONS(7911), 1, - anon_sym_COLON, - STATE(5221), 1, + ACTIONS(7929), 1, + anon_sym_COMMA, + STATE(5150), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5209), 1, sym_heredoc_body, - STATE(5502), 1, - aux_sym_chained_string_repeat1, - STATE(6309), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -499847,9 +503515,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 27, + ACTIONS(5631), 29, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -499860,7 +503528,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -499875,15 +503544,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [193916] = 5, + anon_sym_do, + [193024] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5222), 1, + ACTIONS(7931), 1, + anon_sym_COMMA, + STATE(5150), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5210), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6020), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -499892,8 +503566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6018), 31, - sym__line_break, + ACTIONS(5637), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -499906,8 +503579,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -499923,16 +503596,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [193970] = 5, + [193082] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5223), 1, + ACTIONS(7933), 1, + sym_regex_modifier, + STATE(5211), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6024), 8, + ACTIONS(5769), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -499941,8 +503616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6022), 31, - sym__line_break, + ACTIONS(5767), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -499955,7 +503629,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -499969,19 +503642,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [194024] = 5, + [193138] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5224), 1, + STATE(5212), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(5685), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -499990,8 +503664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 31, - sym__line_break, + ACTIONS(5683), 30, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -500004,7 +503677,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -500018,19 +503690,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - anon_sym_then, - [194078] = 5, + [193192] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5225), 1, + ACTIONS(7935), 1, + sym_regex_modifier, + STATE(5213), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(5662), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500039,8 +503715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 31, - sym__line_break, + ACTIONS(5660), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -500053,7 +503728,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -500067,19 +503741,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [194132] = 5, + [193248] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5226), 1, + ACTIONS(1045), 1, + sym__start_of_brace_block, + ACTIONS(7937), 1, + anon_sym_do, + STATE(5214), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + STATE(6682), 2, + sym_do_end_block, + sym_brace_block, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500088,10 +503769,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5551), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -500102,7 +503782,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -500118,17 +503797,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [194186] = 5, + [193308] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5227), 1, + STATE(5215), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6134), 8, + ACTIONS(4676), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500137,10 +503814,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6132), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4678), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -500151,9 +503828,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -500167,17 +503846,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [194240] = 5, + [193362] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5228), 1, + STATE(5216), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(4660), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500186,10 +503863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4662), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -500200,9 +503877,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -500216,17 +503895,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [194294] = 5, + [193416] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5229), 1, + STATE(5217), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(4704), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500235,10 +503912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4706), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -500249,9 +503926,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -500265,17 +503944,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [194348] = 5, + [193470] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5230), 1, + STATE(5218), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(5708), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500284,8 +503962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 31, - sym__line_break, + ACTIONS(5706), 30, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -500298,7 +503975,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + sym__string_literal_start, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -500312,19 +503989,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [194402] = 5, + [193524] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5231), 1, + ACTIONS(7939), 1, + anon_sym_of, + STATE(5219), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(5739), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500333,8 +504013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 31, - sym__line_break, + ACTIONS(5735), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -500347,7 +504026,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -500361,19 +504039,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [194456] = 5, + [193580] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5232), 1, + ACTIONS(7941), 1, + sym_regex_modifier, + STATE(5220), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6212), 8, + ACTIONS(5743), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500382,8 +504063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6210), 31, - sym__line_break, + ACTIONS(5741), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -500396,7 +504076,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -500410,19 +504089,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [194510] = 5, + [193636] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5233), 1, + STATE(5221), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6216), 8, + ACTIONS(5645), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500431,8 +504111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6214), 31, - sym__line_break, + ACTIONS(5643), 30, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -500445,7 +504124,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -500459,19 +504137,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - anon_sym_then, - [194564] = 5, + [193690] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5234), 1, + ACTIONS(7943), 1, + sym_regex_modifier, + STATE(5222), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(5749), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500480,8 +504162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 31, - sym__line_break, + ACTIONS(5747), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -500494,7 +504175,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -500508,19 +504188,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [194618] = 5, + [193746] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5235), 1, + ACTIONS(7945), 1, + anon_sym_of, + STATE(5223), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6238), 8, + ACTIONS(5757), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500529,8 +504212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6236), 31, - sym__line_break, + ACTIONS(5753), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -500543,7 +504225,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -500557,19 +504238,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [194672] = 5, + [193802] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5236), 1, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(7640), 1, + anon_sym_DASH_GT, + STATE(5224), 1, sym_heredoc_body, + STATE(10428), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6254), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500578,9 +504265,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6252), 31, + anon_sym_EQ, + ACTIONS(4785), 27, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -500593,7 +504280,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -500608,17 +504294,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [194726] = 5, + [193862] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5237), 1, + ACTIONS(7947), 1, + anon_sym_of, + STATE(5225), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6260), 8, + ACTIONS(5725), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500627,8 +504314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6258), 31, - sym__line_break, + ACTIONS(5721), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -500641,7 +504327,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -500655,19 +504340,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [194780] = 5, + [193918] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5238), 1, + ACTIONS(7949), 1, + anon_sym_of, + STATE(5226), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(5733), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500676,8 +504364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 31, - sym__line_break, + ACTIONS(5729), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -500690,7 +504377,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -500704,19 +504390,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [194834] = 5, + [193974] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5239), 1, + ACTIONS(7646), 1, + anon_sym_DOT_DOT, + ACTIONS(7648), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_PIPE, + ACTIONS(7654), 1, + anon_sym_CARET, + ACTIONS(7658), 1, + anon_sym_EQ_EQ, + ACTIONS(7664), 1, + anon_sym_AMP_STAR, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7670), 1, + anon_sym_QMARK, + ACTIONS(7672), 1, + anon_sym_AMP_AMP, + ACTIONS(7674), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7676), 1, + sym__start_of_index_operator, + ACTIONS(7682), 1, + sym_binary_ampersand, + ACTIONS(7951), 1, + anon_sym_COMMA, + STATE(5227), 1, sym_heredoc_body, + STATE(5246), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6272), 8, + ACTIONS(7656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7662), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7666), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7650), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5587), 4, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_do, + ACTIONS(7660), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7678), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7680), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [194068] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5228), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5951), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500725,7 +504480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6270), 31, + ACTIONS(5949), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -500757,15 +504512,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [194888] = 5, + [194122] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5240), 1, + STATE(5229), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6276), 8, + ACTIONS(6164), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500774,7 +504529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6274), 31, + ACTIONS(6162), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -500806,15 +504561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [194942] = 5, + [194176] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5241), 1, + STATE(5230), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6280), 8, + ACTIONS(6375), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500823,7 +504578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6278), 31, + ACTIONS(6373), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -500855,15 +504610,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [194996] = 5, + [194230] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5242), 1, + ACTIONS(7951), 1, + anon_sym_COMMA, + STATE(5231), 1, sym_heredoc_body, + STATE(5246), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6284), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500872,7 +504631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6282), 31, + ACTIONS(5587), 29, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -500887,7 +504646,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -500903,16 +504661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [195050] = 5, + [194288] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5243), 1, + STATE(5232), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6288), 8, + ACTIONS(5959), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500921,7 +504678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6286), 31, + ACTIONS(5957), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -500953,15 +504710,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [195104] = 5, + [194342] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5244), 1, + STATE(5233), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6292), 8, + ACTIONS(6009), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -500970,7 +504727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6290), 31, + ACTIONS(6007), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -501002,15 +504759,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [195158] = 5, + [194396] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5245), 1, + STATE(5234), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6308), 8, + ACTIONS(4638), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -501019,9 +504776,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6306), 31, + anon_sym_EQ, + ACTIONS(4640), 30, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -501036,6 +504793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -501049,17 +504807,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_then, - [195212] = 5, + [194450] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5246), 1, + ACTIONS(7953), 1, + anon_sym_of, + STATE(5235), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6316), 8, + ACTIONS(5714), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -501068,8 +504828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6314), 31, - sym__line_break, + ACTIONS(5710), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -501082,7 +504841,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -501096,19 +504854,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [195266] = 5, + [194506] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5247), 1, + ACTIONS(7955), 1, + anon_sym_of, + STATE(5236), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(5651), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -501117,8 +504878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 31, - sym__line_break, + ACTIONS(5647), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -501131,7 +504891,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -501145,19 +504904,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [195320] = 5, + [194562] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5248), 1, + STATE(5237), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(5845), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -501166,7 +504925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 31, + ACTIONS(5843), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -501198,113 +504957,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [195374] = 5, + [194616] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5249), 1, + ACTIONS(7646), 1, + anon_sym_DOT_DOT, + ACTIONS(7648), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_PIPE, + ACTIONS(7654), 1, + anon_sym_CARET, + ACTIONS(7658), 1, + anon_sym_EQ_EQ, + ACTIONS(7664), 1, + anon_sym_AMP_STAR, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7670), 1, + anon_sym_QMARK, + ACTIONS(7672), 1, + anon_sym_AMP_AMP, + ACTIONS(7674), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7676), 1, + sym__start_of_index_operator, + ACTIONS(7682), 1, + sym_binary_ampersand, + STATE(5238), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6328), 8, - anon_sym_DOT_DOT, + ACTIONS(7656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7662), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7666), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7650), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6326), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7660), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7680), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6092), 6, + sym__line_break, + sym__start_of_brace_block, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_do, + anon_sym_then, + [194706] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7646), 1, + anon_sym_DOT_DOT, + ACTIONS(7648), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_PIPE, + ACTIONS(7654), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7658), 1, + anon_sym_EQ_EQ, + ACTIONS(7664), 1, + anon_sym_AMP_STAR, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7670), 1, anon_sym_QMARK, + ACTIONS(7672), 1, anon_sym_AMP_AMP, + ACTIONS(7674), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [195428] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5250), 1, + ACTIONS(7676), 1, + sym__start_of_index_operator, + ACTIONS(7682), 1, + sym_binary_ampersand, + STATE(5239), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6332), 8, - anon_sym_DOT_DOT, + ACTIONS(7656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7662), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7666), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7650), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6330), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7660), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7680), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6025), 6, + sym__line_break, + sym__start_of_brace_block, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_do, + anon_sym_then, + [194796] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7646), 1, + anon_sym_DOT_DOT, + ACTIONS(7648), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_PIPE, + ACTIONS(7654), 1, anon_sym_CARET, + ACTIONS(7658), 1, + anon_sym_EQ_EQ, + ACTIONS(7664), 1, + anon_sym_AMP_STAR, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7670), 1, + anon_sym_QMARK, + ACTIONS(7672), 1, + anon_sym_AMP_AMP, + ACTIONS(7674), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7676), 1, + sym__start_of_index_operator, + ACTIONS(7682), 1, + sym_binary_ampersand, + STATE(5240), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7656), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7662), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7666), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7650), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7660), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(7678), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7680), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6039), 6, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_do, anon_sym_then, - [195482] = 5, + [194886] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5251), 1, + STATE(5241), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6336), 8, + ACTIONS(6102), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -501313,7 +505175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6334), 31, + ACTIONS(6092), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -501345,64 +505207,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [195536] = 5, + [194940] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5252), 1, + ACTIONS(7646), 1, + anon_sym_DOT_DOT, + ACTIONS(7648), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_PIPE, + ACTIONS(7654), 1, + anon_sym_CARET, + ACTIONS(7658), 1, + anon_sym_EQ_EQ, + ACTIONS(7664), 1, + anon_sym_AMP_STAR, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7670), 1, + anon_sym_QMARK, + ACTIONS(7672), 1, + anon_sym_AMP_AMP, + ACTIONS(7674), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7676), 1, + sym__start_of_index_operator, + ACTIONS(7682), 1, + sym_binary_ampersand, + ACTIONS(7957), 1, + anon_sym_COMMA, + STATE(5242), 1, sym_heredoc_body, + STATE(5258), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6340), 8, - anon_sym_DOT_DOT, + ACTIONS(7656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7662), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7666), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7650), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6338), 31, + ACTIONS(5631), 4, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, + anon_sym_SEMI, + anon_sym_do, + ACTIONS(7660), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7680), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [195590] = 5, + [195034] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5253), 1, + ACTIONS(7957), 1, + anon_sym_COMMA, + STATE(5243), 1, sym_heredoc_body, + STATE(5258), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6344), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -501411,7 +505297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6342), 31, + ACTIONS(5631), 29, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -501426,7 +505312,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -501442,16 +505327,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [195644] = 5, + [195092] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5254), 1, + STATE(5244), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6019), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -501460,7 +505344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 31, + ACTIONS(6017), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -501492,15 +505376,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [195698] = 5, + [195146] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5255), 1, + STATE(5245), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6291), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -501509,7 +505393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 31, + ACTIONS(6289), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -501541,15 +505425,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [195752] = 5, + [195200] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5256), 1, + ACTIONS(7957), 1, + anon_sym_COMMA, + STATE(5082), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5246), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -501558,7 +505446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 31, + ACTIONS(5631), 29, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -501573,7 +505461,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -501589,16 +505476,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [195806] = 5, + [195258] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5257), 1, + STATE(5247), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -501607,7 +505493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 31, + ACTIONS(6041), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -501639,15 +505525,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [195860] = 5, + [195312] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5258), 1, + STATE(5248), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(4664), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -501656,10 +505542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6360), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4666), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -501670,9 +505556,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -501686,17 +505574,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [195914] = 5, + [195366] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5259), 1, + STATE(5249), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6372), 8, + ACTIONS(4652), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -501705,10 +505591,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6370), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4654), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -501719,9 +505605,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -501735,17 +505623,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [195968] = 5, + [195420] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5260), 1, + STATE(5250), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6376), 8, + ACTIONS(4656), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -501754,10 +505640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6374), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4658), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -501768,9 +505654,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -501784,17 +505672,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [196022] = 5, + [195474] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5261), 1, + STATE(5251), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6380), 8, + ACTIONS(4716), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -501803,10 +505689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6378), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4718), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -501817,9 +505703,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -501833,17 +505721,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + [195528] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7646), 1, + anon_sym_DOT_DOT, + ACTIONS(7648), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_PIPE, + ACTIONS(7654), 1, + anon_sym_CARET, + ACTIONS(7658), 1, + anon_sym_EQ_EQ, + ACTIONS(7664), 1, + anon_sym_AMP_STAR, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7670), 1, + anon_sym_QMARK, + ACTIONS(7672), 1, + anon_sym_AMP_AMP, + ACTIONS(7674), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7676), 1, + sym__start_of_index_operator, + ACTIONS(7682), 1, + sym_binary_ampersand, + STATE(5252), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7662), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7666), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7650), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7660), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7678), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7680), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5923), 6, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_do, anon_sym_then, - [196076] = 5, + [195618] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5262), 1, + ACTIONS(7646), 1, + anon_sym_DOT_DOT, + ACTIONS(7648), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_PIPE, + ACTIONS(7654), 1, + anon_sym_CARET, + ACTIONS(7658), 1, + anon_sym_EQ_EQ, + ACTIONS(7664), 1, + anon_sym_AMP_STAR, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7670), 1, + anon_sym_QMARK, + ACTIONS(7672), 1, + anon_sym_AMP_AMP, + ACTIONS(7674), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7676), 1, + sym__start_of_index_operator, + ACTIONS(7682), 1, + sym_binary_ampersand, + STATE(5253), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7662), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7666), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7650), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7660), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7678), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7680), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5773), 6, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_then, + [195708] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5254), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6384), 8, + ACTIONS(6067), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -501852,7 +505872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6382), 31, + ACTIONS(6065), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -501884,15 +505904,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [196130] = 5, + [195762] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5263), 1, + STATE(5255), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6388), 8, + ACTIONS(6079), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -501901,7 +505921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6386), 31, + ACTIONS(6077), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -501933,64 +505953,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [196184] = 5, + [195816] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5264), 1, + ACTIONS(7646), 1, + anon_sym_DOT_DOT, + ACTIONS(7648), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_PIPE, + ACTIONS(7654), 1, + anon_sym_CARET, + ACTIONS(7658), 1, + anon_sym_EQ_EQ, + ACTIONS(7664), 1, + anon_sym_AMP_STAR, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7670), 1, + anon_sym_QMARK, + ACTIONS(7672), 1, + anon_sym_AMP_AMP, + ACTIONS(7674), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7676), 1, + sym__start_of_index_operator, + ACTIONS(7682), 1, + sym_binary_ampersand, + STATE(5256), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6392), 8, - anon_sym_DOT_DOT, + ACTIONS(7656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7662), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7666), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7650), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6390), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7660), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7680), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6193), 6, + sym__line_break, + sym__start_of_brace_block, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_do, + anon_sym_then, + [195906] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7646), 1, + anon_sym_DOT_DOT, + ACTIONS(7648), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_PIPE, + ACTIONS(7654), 1, anon_sym_CARET, + ACTIONS(7658), 1, + anon_sym_EQ_EQ, + ACTIONS(7664), 1, + anon_sym_AMP_STAR, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7670), 1, + anon_sym_QMARK, + ACTIONS(7672), 1, + anon_sym_AMP_AMP, + ACTIONS(7674), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7676), 1, + sym__start_of_index_operator, + ACTIONS(7682), 1, + sym_binary_ampersand, + STATE(5257), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7656), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7662), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7666), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7650), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7660), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(7678), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7680), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6203), 6, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_do, anon_sym_then, - [196238] = 5, + [195996] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5265), 1, + ACTIONS(7959), 1, + anon_sym_COMMA, + STATE(5082), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5258), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6396), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -501999,7 +506108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6394), 31, + ACTIONS(5637), 29, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -502014,7 +506123,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -502030,16 +506138,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [196292] = 5, + [196054] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5266), 1, + STATE(5259), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6404), 8, + ACTIONS(6446), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -502048,7 +506155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6402), 31, + ACTIONS(6444), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -502080,64 +506187,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [196346] = 5, + [196108] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5267), 1, + ACTIONS(7646), 1, + anon_sym_DOT_DOT, + ACTIONS(7648), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_PIPE, + ACTIONS(7654), 1, + anon_sym_CARET, + ACTIONS(7658), 1, + anon_sym_EQ_EQ, + ACTIONS(7664), 1, + anon_sym_AMP_STAR, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7670), 1, + anon_sym_QMARK, + ACTIONS(7672), 1, + anon_sym_AMP_AMP, + ACTIONS(7674), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7676), 1, + sym__start_of_index_operator, + ACTIONS(7682), 1, + sym_binary_ampersand, + STATE(5260), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6410), 8, - anon_sym_DOT_DOT, + ACTIONS(7656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7662), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7666), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7650), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6408), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7660), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7680), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5694), 6, + sym__line_break, + sym__start_of_brace_block, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [196400] = 5, + [196198] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5268), 1, + STATE(5261), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -502146,7 +506271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6415), 31, + ACTIONS(5694), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -502178,147 +506303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [196454] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5941), 1, - anon_sym_DOT_DOT, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7355), 1, - anon_sym_PIPE, - ACTIONS(7357), 1, - anon_sym_CARET, - ACTIONS(7361), 1, - anon_sym_EQ_EQ, - ACTIONS(7367), 1, - anon_sym_AMP_STAR, - ACTIONS(7373), 1, - anon_sym_AMP_AMP, - ACTIONS(7375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7389), 1, - sym_binary_ampersand, - STATE(5269), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7359), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7365), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7363), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7385), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7387), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5939), 8, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [196540] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7347), 1, - anon_sym_DOT_DOT, - ACTIONS(7349), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, - anon_sym_PIPE, - ACTIONS(7357), 1, - anon_sym_CARET, - ACTIONS(7361), 1, - anon_sym_EQ_EQ, - ACTIONS(7367), 1, - anon_sym_AMP_STAR, - ACTIONS(7371), 1, - anon_sym_QMARK, - ACTIONS(7373), 1, - anon_sym_AMP_AMP, - ACTIONS(7375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7389), 1, - sym_binary_ampersand, - STATE(5270), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7359), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7365), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7363), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7385), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7387), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6010), 6, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [196630] = 5, + [196252] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5271), 1, + STATE(5262), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5810), 8, + ACTIONS(5955), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -502327,7 +506320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5808), 31, + ACTIONS(5953), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -502359,179 +506352,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [196684] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7347), 1, - anon_sym_DOT_DOT, - ACTIONS(7349), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, - anon_sym_PIPE, - ACTIONS(7357), 1, - anon_sym_CARET, - ACTIONS(7361), 1, - anon_sym_EQ_EQ, - ACTIONS(7367), 1, - anon_sym_AMP_STAR, - ACTIONS(7371), 1, - anon_sym_QMARK, - ACTIONS(7373), 1, - anon_sym_AMP_AMP, - ACTIONS(7375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7389), 1, - sym_binary_ampersand, - STATE(5272), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7359), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7365), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7363), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7385), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7387), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6030), 6, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [196774] = 23, + [196306] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7347), 1, - anon_sym_DOT_DOT, - ACTIONS(7349), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, - anon_sym_PIPE, - ACTIONS(7357), 1, - anon_sym_CARET, - ACTIONS(7361), 1, - anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(7664), 1, anon_sym_AMP_STAR, - ACTIONS(7371), 1, - anon_sym_QMARK, - ACTIONS(7373), 1, - anon_sym_AMP_AMP, - ACTIONS(7375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7389), 1, - sym_binary_ampersand, - STATE(5273), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7359), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7365), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7363), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7385), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7387), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6032), 6, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [196864] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7367), 1, - anon_sym_AMP_STAR, - ACTIONS(7383), 1, + ACTIONS(7676), 1, sym__start_of_index_operator, - STATE(5274), 1, + STATE(5263), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7369), 2, + ACTIONS(7666), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7387), 4, + ACTIONS(7680), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(6259), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 24, + ACTIONS(6257), 24, + sym__line_break, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym_binary_ampersand, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -502544,25 +506404,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [196928] = 8, + anon_sym_do, + anon_sym_then, + [196370] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7676), 1, sym__start_of_index_operator, - STATE(5275), 1, + STATE(5264), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7369), 2, + ACTIONS(7666), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(6295), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -502570,7 +506429,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 28, + ACTIONS(6293), 28, + sym__line_break, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -502580,10 +506441,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -502596,25 +506456,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [196988] = 8, + anon_sym_do, + anon_sym_then, + [196430] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7676), 1, sym__start_of_index_operator, - STATE(5276), 1, + STATE(5265), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7369), 2, + ACTIONS(7666), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -502622,7 +506481,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 28, + ACTIONS(6313), 28, + sym__line_break, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -502632,10 +506493,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -502648,52 +506508,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [197048] = 12, + anon_sym_do, + anon_sym_then, + [196490] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7367), 1, + ACTIONS(7664), 1, anon_sym_AMP_STAR, - ACTIONS(7383), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7676), 1, sym__start_of_index_operator, - STATE(5277), 1, + STATE(5266), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7656), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7369), 2, + ACTIONS(7666), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7385), 4, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7680), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6064), 6, + ACTIONS(6327), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6062), 18, + ACTIONS(6325), 18, + sym__line_break, + sym__start_of_brace_block, sym_binary_ampersand, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_CARET, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -502704,18 +506564,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [197116] = 5, + anon_sym_do, + anon_sym_then, + [196558] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5278), 1, + STATE(5267), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5818), 8, + ACTIONS(6090), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -502724,7 +506583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5816), 31, + ACTIONS(6088), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -502756,176 +506615,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [197170] = 21, + [196612] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6068), 1, + ACTIONS(6442), 1, anon_sym_DOT_DOT, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7355), 1, + ACTIONS(7652), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(7654), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(7658), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(7664), 1, anon_sym_AMP_STAR, - ACTIONS(7373), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7672), 1, anon_sym_AMP_AMP, - ACTIONS(7375), 1, + ACTIONS(7674), 1, anon_sym_PIPE_PIPE, - ACTIONS(7383), 1, + ACTIONS(7676), 1, sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(7682), 1, sym_binary_ampersand, - STATE(5279), 1, + STATE(5268), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7656), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, + ACTIONS(7662), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(7666), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(7650), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(7660), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7680), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6066), 8, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6440), 8, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_QMARK, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [197256] = 17, + anon_sym_do, + anon_sym_then, + [196698] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7355), 1, + ACTIONS(7652), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(7654), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(7658), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(7664), 1, anon_sym_AMP_STAR, - ACTIONS(7383), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7676), 1, sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(7682), 1, sym_binary_ampersand, - STATE(5280), 1, + STATE(5269), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7656), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7369), 2, + ACTIONS(7666), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, + ACTIONS(5817), 4, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(7660), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7680), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6070), 12, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(5815), 12, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [197334] = 13, + anon_sym_do, + anon_sym_then, + [196776] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7367), 1, + ACTIONS(7664), 1, anon_sym_AMP_STAR, - ACTIONS(7383), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7676), 1, sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(7682), 1, sym_binary_ampersand, - STATE(5281), 1, + STATE(5270), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7656), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7369), 2, + ACTIONS(7666), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7385), 4, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7680), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6082), 6, + ACTIONS(6263), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6080), 17, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6261), 17, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_CARET, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -502936,111 +506796,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [197404] = 11, + anon_sym_do, + anon_sym_then, + [196846] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7367), 1, + ACTIONS(7664), 1, anon_sym_AMP_STAR, - ACTIONS(7383), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7676), 1, sym__start_of_index_operator, - STATE(5282), 1, + STATE(5271), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7369), 2, + ACTIONS(7666), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7385), 4, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7680), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6090), 6, + ACTIONS(5869), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6088), 20, + ACTIONS(5867), 20, + sym__line_break, + sym__start_of_brace_block, sym_binary_ampersand, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [197470] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7355), 1, - anon_sym_PIPE, - ACTIONS(7357), 1, anon_sym_CARET, - ACTIONS(7367), 1, - anon_sym_AMP_STAR, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7389), 1, - sym_binary_ampersand, - STATE(5283), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7359), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7369), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7385), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7387), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6094), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6092), 16, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -503050,200 +506851,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [197544] = 19, + anon_sym_do, + anon_sym_then, + [196912] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, - anon_sym_DOT_DOT, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7355), 1, + ACTIONS(7652), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(7654), 1, anon_sym_CARET, - ACTIONS(7361), 1, - anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(7664), 1, anon_sym_AMP_STAR, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7389), 1, - sym_binary_ampersand, - STATE(5284), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7359), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7365), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7363), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7385), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7387), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6112), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [197626] = 20, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6118), 1, - anon_sym_DOT_DOT, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7355), 1, - anon_sym_PIPE, - ACTIONS(7357), 1, - anon_sym_CARET, - ACTIONS(7361), 1, - anon_sym_EQ_EQ, - ACTIONS(7367), 1, - anon_sym_AMP_STAR, - ACTIONS(7373), 1, - anon_sym_AMP_AMP, - ACTIONS(7383), 1, + ACTIONS(7676), 1, sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(7682), 1, sym_binary_ampersand, - STATE(5285), 1, + STATE(5272), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7656), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(7666), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7363), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7680), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6116), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [197710] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7631), 1, - anon_sym_LBRACK, - ACTIONS(7633), 1, - anon_sym_STAR, - ACTIONS(7637), 1, - anon_sym_DOT, - ACTIONS(7639), 1, - anon_sym_QMARK, - ACTIONS(7820), 1, - anon_sym_PIPE, - STATE(5137), 1, - aux_sym_union_type_repeat1, - STATE(5286), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4639), 7, + ACTIONS(6134), 5, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4641), 26, - sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, + ACTIONS(6132), 16, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [197776] = 5, + anon_sym_do, + anon_sym_then, + [196986] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5287), 1, + STATE(5273), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(6138), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -503252,7 +506929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5947), 31, + ACTIONS(6136), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -503284,87 +506961,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [197830] = 21, + [197040] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6242), 1, + ACTIONS(6047), 1, anon_sym_DOT_DOT, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7355), 1, + ACTIONS(7652), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(7654), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(7658), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(7664), 1, anon_sym_AMP_STAR, - ACTIONS(7373), 1, - anon_sym_AMP_AMP, - ACTIONS(7375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7383), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7676), 1, sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(7682), 1, sym_binary_ampersand, - STATE(5288), 1, + STATE(5274), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7656), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, + ACTIONS(7662), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(7666), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(7650), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(7660), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7680), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6240), 8, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(6045), 10, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_end, anon_sym_QMARK, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [197916] = 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_then, + [197122] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1029), 1, - sym__start_of_brace_block, - ACTIONS(7816), 1, - anon_sym_do, - STATE(5289), 1, + STATE(5275), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6694), 2, - sym_do_end_block, - sym_brace_block, - ACTIONS(5512), 8, + ACTIONS(4680), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -503373,7 +507041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 27, + anon_sym_EQ, + ACTIONS(4682), 30, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -503386,8 +507055,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -503401,149 +507073,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [197976] = 23, + [197176] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7347), 1, + ACTIONS(5629), 1, + anon_sym_RBRACK, + ACTIONS(7847), 1, anon_sym_DOT_DOT, - ACTIONS(7349), 1, + ACTIONS(7849), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, + ACTIONS(7853), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(7855), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(7859), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(7865), 1, anon_sym_AMP_STAR, - ACTIONS(7371), 1, - anon_sym_QMARK, - ACTIONS(7373), 1, - anon_sym_AMP_AMP, - ACTIONS(7375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7389), 1, - sym_binary_ampersand, - STATE(5290), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7359), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7365), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7363), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7385), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7387), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6256), 6, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [198066] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(7347), 1, - anon_sym_DOT_DOT, - ACTIONS(7349), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, - anon_sym_PIPE, - ACTIONS(7357), 1, - anon_sym_CARET, - ACTIONS(7361), 1, - anon_sym_EQ_EQ, - ACTIONS(7367), 1, - anon_sym_AMP_STAR, - ACTIONS(7371), 1, + ACTIONS(7871), 1, anon_sym_QMARK, - ACTIONS(7373), 1, + ACTIONS(7873), 1, anon_sym_AMP_AMP, - ACTIONS(7375), 1, + ACTIONS(7875), 1, anon_sym_PIPE_PIPE, - ACTIONS(7383), 1, + ACTIONS(7877), 1, sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(7883), 1, sym_binary_ampersand, - STATE(5291), 1, + ACTIONS(7961), 1, + anon_sym_COMMA, + STATE(5276), 1, sym_heredoc_body, + STATE(5311), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7857), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, + ACTIONS(7863), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(7867), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(5587), 3, + sym__start_of_brace_block, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(7851), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(7861), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(7879), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7881), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6230), 6, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [198156] = 5, + [197272] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5292), 1, + STATE(5277), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5953), 8, + ACTIONS(4672), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -503552,10 +507160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5951), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4674), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -503566,9 +507174,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -503582,17 +507192,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [198210] = 5, + [197326] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5293), 1, + ACTIONS(7494), 1, + anon_sym_COLON, + STATE(5278), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5961), 8, + ACTIONS(157), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -503601,8 +507212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5959), 31, - sym__line_break, + ACTIONS(135), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -503615,7 +507225,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -503629,23 +507238,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [198264] = 7, + [197382] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7913), 1, - anon_sym_COMMA, - STATE(5294), 1, + STATE(5279), 1, sym_heredoc_body, - STATE(5319), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(6179), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -503654,7 +507259,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 29, + ACTIONS(6177), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -503667,8 +507273,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -503684,15 +507290,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [198322] = 5, + anon_sym_then, + [197436] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5295), 1, + STATE(5280), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6016), 8, + ACTIONS(4708), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -503701,10 +507308,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6014), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4710), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -503715,9 +507322,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -503731,68 +507340,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [198376] = 5, + [197490] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5296), 1, + ACTIONS(6215), 1, + anon_sym_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_PIPE, + ACTIONS(7654), 1, + anon_sym_CARET, + ACTIONS(7658), 1, + anon_sym_EQ_EQ, + ACTIONS(7664), 1, + anon_sym_AMP_STAR, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7672), 1, + anon_sym_AMP_AMP, + ACTIONS(7676), 1, + sym__start_of_index_operator, + ACTIONS(7682), 1, + sym_binary_ampersand, + STATE(5281), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6126), 8, - anon_sym_DOT_DOT, + ACTIONS(7656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7662), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7666), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7650), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6124), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7660), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7680), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6213), 9, + sym__line_break, + sym__start_of_brace_block, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [198430] = 6, + [197574] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7915), 1, - anon_sym_EQ, - STATE(5297), 1, + STATE(5282), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, + ACTIONS(6148), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -503801,7 +507421,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 30, + ACTIONS(6146), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -503814,9 +507435,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -503832,15 +507452,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [198486] = 5, + anon_sym_then, + [197628] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5298), 1, + STATE(5283), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6160), 8, + ACTIONS(6175), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -503849,7 +507470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6158), 31, + ACTIONS(6173), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -503881,15 +507502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [198540] = 5, + [197682] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5299), 1, + STATE(5284), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6172), 8, + ACTIONS(5829), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -503898,7 +507519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6170), 31, + ACTIONS(5827), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -503930,15 +507551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [198594] = 5, + [197736] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5300), 1, + STATE(5285), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6176), 8, + ACTIONS(6299), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -503947,7 +507568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6174), 31, + ACTIONS(6297), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -503979,138 +507600,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [198648] = 5, + [197790] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5301), 1, + ACTIONS(5977), 1, + anon_sym_DOT_DOT, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7376), 1, + anon_sym_PIPE, + ACTIONS(7378), 1, + anon_sym_CARET, + ACTIONS(7382), 1, + anon_sym_EQ_EQ, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7394), 1, + anon_sym_AMP_AMP, + ACTIONS(7396), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, + sym_binary_ampersand, + STATE(5286), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6180), 8, - anon_sym_DOT_DOT, + ACTIONS(7380), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7386), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7374), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6178), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7384), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7408), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(5975), 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [197876] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7368), 1, + anon_sym_DOT_DOT, + ACTIONS(7370), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_PIPE, + ACTIONS(7378), 1, anon_sym_CARET, + ACTIONS(7382), 1, + anon_sym_EQ_EQ, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(7394), 1, + anon_sym_AMP_AMP, + ACTIONS(7396), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, + sym_binary_ampersand, + STATE(5287), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7386), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7374), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7384), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7406), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7408), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6092), 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [197966] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7368), 1, + anon_sym_DOT_DOT, + ACTIONS(7370), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_PIPE, + ACTIONS(7378), 1, + anon_sym_CARET, + ACTIONS(7382), 1, + anon_sym_EQ_EQ, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7392), 1, anon_sym_QMARK, + ACTIONS(7394), 1, anon_sym_AMP_AMP, + ACTIONS(7396), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [198702] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5302), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, + sym_binary_ampersand, + STATE(5288), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6208), 8, - anon_sym_DOT_DOT, + ACTIONS(7380), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7386), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7374), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6206), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7384), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7408), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6193), 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [198056] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7368), 1, + anon_sym_DOT_DOT, + ACTIONS(7370), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_PIPE, + ACTIONS(7378), 1, anon_sym_CARET, + ACTIONS(7382), 1, + anon_sym_EQ_EQ, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(7394), 1, + anon_sym_AMP_AMP, + ACTIONS(7396), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, + sym_binary_ampersand, + STATE(5289), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7386), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7374), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7384), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [198756] = 5, + ACTIONS(7406), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7408), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6203), 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [198146] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5303), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7404), 1, + sym__start_of_index_operator, + STATE(5290), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6220), 8, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7408), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6259), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6218), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6257), 24, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -504120,21 +507914,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [198810] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [198210] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5304), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + STATE(5291), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6228), 8, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6295), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -504142,24 +507943,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6226), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6293), 28, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -504169,21 +507966,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [198864] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [198270] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5305), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + STATE(5292), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6264), 8, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -504191,24 +507995,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6262), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(6313), 28, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -504218,95 +508018,291 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [198918] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [198330] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5306), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7404), 1, + sym__start_of_index_operator, + STATE(5293), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6300), 8, + ACTIONS(7380), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7406), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7408), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6327), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, + ACTIONS(6325), 18, + sym_binary_ampersand, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [198398] = 21, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6442), 1, + anon_sym_DOT_DOT, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(6298), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(7376), 1, + anon_sym_PIPE, + ACTIONS(7378), 1, + anon_sym_CARET, + ACTIONS(7382), 1, + anon_sym_EQ_EQ, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7394), 1, + anon_sym_AMP_AMP, + ACTIONS(7396), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7404), 1, sym__start_of_index_operator, + ACTIONS(7410), 1, + sym_binary_ampersand, + STATE(5294), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7380), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7386), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7374), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7384), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7408), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6440), 8, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [198484] = 17, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7376), 1, + anon_sym_PIPE, + ACTIONS(7378), 1, anon_sym_CARET, + ACTIONS(7382), 1, + anon_sym_EQ_EQ, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, + sym_binary_ampersand, + STATE(5295), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5817), 4, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7384), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7406), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7408), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5815), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [198972] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [198562] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5307), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, + sym_binary_ampersand, + STATE(5296), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6312), 8, + ACTIONS(7380), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7406), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7408), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6263), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, + ACTIONS(6261), 17, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_CARET, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [198632] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(6310), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7404), 1, sym__start_of_index_operator, + STATE(5297), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7408), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(5869), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5867), 20, + sym_binary_ampersand, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, + anon_sym_end, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -504316,288 +508312,406 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [199026] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [198698] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5308), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7376), 1, + anon_sym_PIPE, + ACTIONS(7378), 1, + anon_sym_CARET, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, + sym_binary_ampersand, + STATE(5298), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5802), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5800), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7380), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7408), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6134), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6132), 16, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, + anon_sym_end, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [199080] = 26, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [198772] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5574), 1, - anon_sym_RBRACK, - ACTIONS(7847), 1, + ACTIONS(6047), 1, anon_sym_DOT_DOT, - ACTIONS(7849), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7853), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7376), 1, anon_sym_PIPE, - ACTIONS(7855), 1, + ACTIONS(7378), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7382), 1, anon_sym_EQ_EQ, - ACTIONS(7865), 1, + ACTIONS(7388), 1, anon_sym_AMP_STAR, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7871), 1, - anon_sym_QMARK, - ACTIONS(7873), 1, - anon_sym_AMP_AMP, - ACTIONS(7875), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7877), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7883), 1, + ACTIONS(7410), 1, sym_binary_ampersand, - ACTIONS(7917), 1, - anon_sym_COMMA, - STATE(5309), 1, + STATE(5299), 1, sym_heredoc_body, - STATE(5387), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7857), 2, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7863), 2, + ACTIONS(7386), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7867), 2, + ACTIONS(7390), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5570), 3, - sym__start_of_brace_block, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(7851), 3, + ACTIONS(7374), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7861), 4, + ACTIONS(7384), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7879), 4, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7881), 4, + ACTIONS(7408), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [199176] = 6, + ACTIONS(6045), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [198854] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7321), 1, - anon_sym_COLON, - STATE(5310), 1, + ACTIONS(6215), 1, + anon_sym_DOT_DOT, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7376), 1, + anon_sym_PIPE, + ACTIONS(7378), 1, + anon_sym_CARET, + ACTIONS(7382), 1, + anon_sym_EQ_EQ, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7394), 1, + anon_sym_AMP_AMP, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, + sym_binary_ampersand, + STATE(5300), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7380), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7386), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7374), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(133), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7384), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7408), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + ACTIONS(6213), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + anon_sym_end, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [199232] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [198938] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5311), 1, + ACTIONS(5981), 1, + anon_sym_DOT_DOT, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7376), 1, + anon_sym_PIPE, + ACTIONS(7378), 1, + anon_sym_CARET, + ACTIONS(7382), 1, + anon_sym_EQ_EQ, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7394), 1, + anon_sym_AMP_AMP, + ACTIONS(7396), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, + sym_binary_ampersand, + STATE(5301), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5826), 8, - anon_sym_DOT_DOT, + ACTIONS(7380), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7386), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7374), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5824), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7384), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7408), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(5979), 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_QMARK, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [199024] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7368), 1, + anon_sym_DOT_DOT, + ACTIONS(7370), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_PIPE, + ACTIONS(7378), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7382), 1, + anon_sym_EQ_EQ, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7392), 1, anon_sym_QMARK, + ACTIONS(7394), 1, anon_sym_AMP_AMP, + ACTIONS(7396), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [199286] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5312), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, + sym_binary_ampersand, + STATE(5302), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, - anon_sym_DOT_DOT, + ACTIONS(7380), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7386), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7374), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5856), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7384), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7408), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(5779), 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [199114] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7368), 1, + anon_sym_DOT_DOT, + ACTIONS(7370), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, + anon_sym_PIPE, + ACTIONS(7378), 1, anon_sym_CARET, + ACTIONS(7382), 1, + anon_sym_EQ_EQ, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(7394), 1, + anon_sym_AMP_AMP, + ACTIONS(7396), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, + sym_binary_ampersand, + STATE(5303), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7386), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7374), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7384), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [199340] = 5, + ACTIONS(7406), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7408), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5825), 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [199204] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5313), 1, + STATE(5304), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5862), 8, + ACTIONS(4712), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -504606,10 +508720,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5860), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4714), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -504620,9 +508734,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -504636,17 +508752,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [199394] = 5, + [199258] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5314), 1, + STATE(5305), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5866), 8, + ACTIONS(4720), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -504655,10 +508769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5864), 31, - sym__line_break, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4722), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -504669,9 +508783,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -504685,17 +508801,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [199448] = 5, + [199312] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5315), 1, + ACTIONS(7961), 1, + anon_sym_COMMA, + STATE(5306), 1, sym_heredoc_body, + STATE(5311), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5899), 8, + ACTIONS(5629), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -504704,8 +508823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5897), 31, - sym__line_break, + ACTIONS(5587), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -504718,8 +508836,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -504732,19 +508848,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [199502] = 5, + [199370] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5316), 1, + STATE(5307), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5919), 8, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -504753,7 +508869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5917), 31, + ACTIONS(5551), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -504785,15 +508901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [199556] = 5, + [199424] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5317), 1, + STATE(5308), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5927), 8, + ACTIONS(6462), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -504802,7 +508918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5925), 31, + ACTIONS(6460), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -504834,67 +508950,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [199610] = 5, + [199478] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5318), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5931), 8, + ACTIONS(5635), 1, + anon_sym_RBRACK, + ACTIONS(7847), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(7849), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7853), 1, anon_sym_PIPE, + ACTIONS(7855), 1, + anon_sym_CARET, + ACTIONS(7859), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(7865), 1, anon_sym_AMP_STAR, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(5929), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(7871), 1, + anon_sym_QMARK, + ACTIONS(7873), 1, + anon_sym_AMP_AMP, + ACTIONS(7875), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7877), 1, sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, + ACTIONS(7883), 1, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_SEMI, + ACTIONS(7963), 1, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, + STATE(5309), 1, + sym_heredoc_body, + STATE(5320), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7857), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7863), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5631), 3, + sym__start_of_brace_block, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(7851), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7861), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [199664] = 6, + ACTIONS(7879), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7881), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [199574] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7919), 1, + ACTIONS(7963), 1, anon_sym_COMMA, + STATE(5310), 1, + sym_heredoc_body, + STATE(5320), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5319), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5713), 8, + ACTIONS(5635), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -504903,7 +509042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 29, + ACTIONS(5631), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -504916,8 +509055,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -504930,18 +509067,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [199720] = 5, + [199632] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5320), 1, + ACTIONS(7963), 1, + anon_sym_COMMA, + STATE(5311), 1, sym_heredoc_body, + STATE(5321), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4647), 9, + ACTIONS(5635), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -504950,10 +509093,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4649), 30, + ACTIONS(5631), 28, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -504964,11 +509106,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -504980,17 +509118,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [199774] = 5, + anon_sym_do, + [199690] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5321), 1, + STATE(5312), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4651), 9, + ACTIONS(6458), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -504999,10 +509139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4653), 30, + ACTIONS(6456), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -505013,11 +509153,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -505031,15 +509169,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [199828] = 5, + anon_sym_do, + anon_sym_then, + [199744] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5322), 1, + STATE(5313), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6036), 8, + ACTIONS(5973), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -505048,7 +509188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6034), 31, + ACTIONS(5971), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -505080,15 +509220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [199882] = 5, + [199798] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5323), 1, + STATE(5314), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6040), 8, + ACTIONS(6279), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -505097,7 +509237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6038), 31, + ACTIONS(6277), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -505129,15 +509269,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [199936] = 5, + [199852] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5324), 1, + STATE(5315), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6044), 8, + ACTIONS(5861), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -505146,7 +509286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6042), 31, + ACTIONS(5859), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -505178,15 +509318,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [199990] = 5, + [199906] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5325), 1, + STATE(5316), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6060), 8, + ACTIONS(5893), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -505195,7 +509335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6058), 31, + ACTIONS(5891), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -505227,15 +509367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [200044] = 5, + [199960] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5326), 1, + STATE(5317), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6110), 8, + ACTIONS(5989), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -505244,7 +509384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6108), 31, + ACTIONS(5987), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -505276,15 +509416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [200098] = 5, + [200014] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5327), 1, + STATE(5318), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6138), 8, + ACTIONS(6183), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -505293,7 +509433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6136), 31, + ACTIONS(6181), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -505325,15 +509465,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [200152] = 5, + [200068] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5328), 1, + STATE(5319), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6164), 8, + ACTIONS(6207), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -505342,7 +509482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6162), 31, + ACTIONS(6205), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -505374,15 +509514,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [200206] = 5, + [200122] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5329), 1, + ACTIONS(7965), 1, + anon_sym_COMMA, + STATE(5320), 1, sym_heredoc_body, + STATE(5321), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6168), 8, + ACTIONS(5641), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -505391,8 +509536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6166), 31, - sym__line_break, + ACTIONS(5637), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -505405,8 +509549,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -505419,19 +509561,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [200260] = 5, + [200180] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5330), 1, - sym_heredoc_body, + ACTIONS(7967), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4615), 9, + STATE(5321), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5699), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -505440,10 +509586,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4617), 30, + ACTIONS(5694), 28, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -505454,11 +509599,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -505470,17 +509611,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [200314] = 5, + anon_sym_do, + [200236] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5331), 1, + STATE(5322), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5770), 8, + ACTIONS(5559), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -505489,9 +509632,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5768), 31, + ACTIONS(5557), 31, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -505503,6 +509645,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -505516,20 +509659,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_then, - [200368] = 5, + [200290] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5332), 1, + ACTIONS(7970), 1, + anon_sym_EQ, + STATE(5323), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5782), 8, + ACTIONS(5763), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -505538,8 +509684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5780), 31, - sym__line_break, + ACTIONS(5761), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -505552,7 +509697,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -505566,19 +509710,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [200422] = 5, + [200346] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5333), 1, + STATE(5324), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5786), 8, + ACTIONS(5837), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -505587,7 +509731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5784), 31, + ACTIONS(5835), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -505619,15 +509763,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [200476] = 5, + [200400] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5334), 1, + STATE(5325), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5790), 8, + ACTIONS(6227), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -505636,7 +509780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5788), 31, + ACTIONS(6225), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -505668,15 +509812,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [200530] = 5, + [200454] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5335), 1, + STATE(5326), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5794), 8, + ACTIONS(6271), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -505685,7 +509829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5792), 31, + ACTIONS(6269), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -505717,15 +509861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [200584] = 5, + [200508] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5336), 1, + STATE(5327), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5798), 8, + ACTIONS(6275), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -505734,7 +509878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5796), 31, + ACTIONS(6273), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -505766,15 +509910,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [200638] = 5, + [200562] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5337), 1, + STATE(5328), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5806), 8, + ACTIONS(5685), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -505783,8 +509928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5804), 31, - sym__line_break, + ACTIONS(5683), 30, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -505797,7 +509941,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -505810,20 +509953,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [200692] = 5, + [200616] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5338), 1, + ACTIONS(7891), 1, + anon_sym_DOT_DOT, + ACTIONS(7893), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7897), 1, + anon_sym_PIPE, + ACTIONS(7899), 1, + anon_sym_CARET, + ACTIONS(7903), 1, + anon_sym_EQ_EQ, + ACTIONS(7909), 1, + anon_sym_AMP_STAR, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7915), 1, + anon_sym_QMARK, + ACTIONS(7917), 1, + anon_sym_AMP_AMP, + ACTIONS(7919), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7921), 1, + sym__start_of_index_operator, + ACTIONS(7927), 1, + sym_binary_ampersand, + ACTIONS(7972), 1, + anon_sym_COMMA, + STATE(5329), 1, + sym_heredoc_body, + STATE(5386), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7901), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7907), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7911), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7895), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5587), 4, + sym__start_of_brace_block, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_do, + ACTIONS(7905), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7923), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7925), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [200710] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7528), 1, + anon_sym_COLON, + STATE(5330), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5814), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -505832,8 +510047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5812), 31, - sym__line_break, + ACTIONS(135), 30, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -505846,8 +510060,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -505863,16 +510078,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [200746] = 5, + [200766] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5339), 1, + ACTIONS(7972), 1, + anon_sym_COMMA, + STATE(5331), 1, sym_heredoc_body, + STATE(5386), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5822), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -505881,8 +510099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5820), 31, - sym__line_break, + ACTIONS(5587), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -505895,8 +510112,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -505912,16 +510129,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [200800] = 5, + [200824] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5340), 1, + ACTIONS(1045), 1, + sym__start_of_brace_block, + ACTIONS(7937), 1, + anon_sym_do, + STATE(5332), 1, sym_heredoc_body, + STATE(6874), 1, + sym_do_end_block, + STATE(6876), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5830), 8, + ACTIONS(5570), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -505930,10 +510154,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5828), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5568), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -505944,7 +510167,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -505960,66 +510182,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [200854] = 5, + [200886] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5341), 1, + ACTIONS(6063), 1, + anon_sym_DOT_DOT, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7376), 1, + anon_sym_PIPE, + ACTIONS(7378), 1, + anon_sym_CARET, + ACTIONS(7382), 1, + anon_sym_EQ_EQ, + ACTIONS(7388), 1, + anon_sym_AMP_STAR, + ACTIONS(7394), 1, + anon_sym_AMP_AMP, + ACTIONS(7396), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, + sym_binary_ampersand, + STATE(5333), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5842), 8, - anon_sym_DOT_DOT, + ACTIONS(7380), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7386), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7390), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7374), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5840), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7384), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7408), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6061), 8, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + anon_sym_end, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [200908] = 5, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [200972] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5342), 1, + STATE(5334), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(5645), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -506028,8 +510265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5868), 31, - sym__line_break, + ACTIONS(5643), 30, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -506042,7 +510278,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -506055,69 +510290,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [200962] = 5, + [201026] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5343), 1, + ACTIONS(5981), 1, + anon_sym_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_PIPE, + ACTIONS(7654), 1, + anon_sym_CARET, + ACTIONS(7658), 1, + anon_sym_EQ_EQ, + ACTIONS(7664), 1, + anon_sym_AMP_STAR, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7672), 1, + anon_sym_AMP_AMP, + ACTIONS(7674), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7676), 1, + sym__start_of_index_operator, + ACTIONS(7682), 1, + sym_binary_ampersand, + STATE(5335), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5903), 8, - anon_sym_DOT_DOT, + ACTIONS(7656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7662), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7666), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7650), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5901), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7660), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7680), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5979), 8, + sym__line_break, + sym__start_of_brace_block, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201016] = 5, + [201112] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5344), 1, + STATE(5336), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5907), 8, + ACTIONS(6307), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -506126,7 +510378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5905), 31, + ACTIONS(6305), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -506158,15 +510410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201070] = 5, + [201166] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5345), 1, + STATE(5337), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5911), 8, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -506175,7 +510427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5909), 31, + ACTIONS(6317), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -506207,15 +510459,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201124] = 5, + [201220] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5346), 1, + STATE(5338), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5915), 8, + ACTIONS(5783), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -506224,7 +510476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5913), 31, + ACTIONS(5781), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -506256,15 +510508,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201178] = 5, + [201274] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5347), 1, + ACTIONS(1045), 1, + sym__start_of_brace_block, + ACTIONS(7937), 1, + anon_sym_do, + STATE(5339), 1, sym_heredoc_body, + STATE(6910), 1, + sym_do_end_block, + STATE(6911), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5968), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -506273,10 +510533,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5966), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5545), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -506287,7 +510546,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -506303,17 +510561,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [201232] = 5, + [201336] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5348), 1, + ACTIONS(1045), 1, + sym__start_of_brace_block, + ACTIONS(7937), 1, + anon_sym_do, + STATE(5340), 1, sym_heredoc_body, + STATE(6912), 1, + sym_do_end_block, + STATE(6913), 1, + sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5972), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -506322,10 +510586,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5970), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(5545), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -506336,7 +510599,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -506352,17 +510614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [201286] = 5, + [201398] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5349), 1, + STATE(5341), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6028), 8, + ACTIONS(5777), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -506371,7 +510631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6026), 31, + ACTIONS(5775), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -506403,15 +510663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201340] = 5, + [201452] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5350), 1, + STATE(5342), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6076), 8, + ACTIONS(5853), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -506420,7 +510680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6074), 31, + ACTIONS(5851), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -506452,15 +510712,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201394] = 5, + [201506] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5351), 1, + STATE(5343), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6086), 8, + ACTIONS(5857), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -506469,7 +510729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6084), 31, + ACTIONS(5855), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -506501,15 +510761,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201448] = 5, + [201560] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5352), 1, + STATE(5344), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6098), 8, + ACTIONS(5909), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -506518,7 +510778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6096), 31, + ACTIONS(5907), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -506550,15 +510810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201502] = 5, + [201614] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5353), 1, + STATE(5345), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6102), 8, + ACTIONS(5574), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -506567,9 +510827,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6100), 31, + ACTIONS(5572), 31, sym__line_break, - sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -506581,6 +510840,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -506594,20 +510854,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, anon_sym_then, - [201556] = 5, + [201668] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5354), 1, + STATE(5346), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6122), 8, + ACTIONS(5969), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -506616,7 +510876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6120), 31, + ACTIONS(5967), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -506648,15 +510908,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201610] = 5, + [201722] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5355), 1, + STATE(5347), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6130), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -506665,7 +510925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6128), 31, + ACTIONS(5995), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -506697,15 +510957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201664] = 5, + [201776] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5356), 1, + STATE(5348), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6142), 8, + ACTIONS(4638), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -506714,10 +510974,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6140), 31, - sym__line_break, + anon_sym_EQ, + ACTIONS(4640), 30, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -506728,9 +510989,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -506745,16 +511006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [201718] = 5, + [201830] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5357), 1, + STATE(5349), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6150), 8, + ACTIONS(6013), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -506763,7 +511023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6148), 31, + ACTIONS(6011), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -506795,15 +511055,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201772] = 5, + [201884] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5358), 1, + STATE(5350), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(6059), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -506812,7 +511072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6419), 31, + ACTIONS(6057), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -506844,15 +511104,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201826] = 5, + [201938] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5359), 1, + STATE(5351), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6184), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -506861,7 +511121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6182), 31, + ACTIONS(135), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -506893,15 +511153,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201880] = 5, + [201992] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5360), 1, + STATE(5352), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6188), 8, + ACTIONS(5849), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -506910,7 +511170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6186), 31, + ACTIONS(5847), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -506942,15 +511202,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201934] = 5, + [202046] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5361), 1, + STATE(5353), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6196), 8, + ACTIONS(5865), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -506959,7 +511219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6194), 31, + ACTIONS(5863), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -506991,15 +511251,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [201988] = 5, + [202100] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5362), 1, + STATE(5354), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6200), 8, + ACTIONS(6303), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -507008,7 +511268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6198), 31, + ACTIONS(6301), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -507040,15 +511300,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202042] = 5, + [202154] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5363), 1, + STATE(5355), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6224), 8, + ACTIONS(5943), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -507057,7 +511317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6222), 31, + ACTIONS(5941), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -507089,15 +511349,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202096] = 5, + [202208] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5364), 1, + STATE(5356), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6234), 8, + ACTIONS(5993), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -507106,7 +511366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6232), 31, + ACTIONS(5991), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -507138,64 +511398,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202150] = 5, + [202262] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5365), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6246), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(6244), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(7676), 1, sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [202204] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5366), 1, + STATE(5357), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6250), 8, + ACTIONS(6001), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -507203,11 +511418,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6248), 31, + ACTIONS(5999), 30, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -507236,211 +511449,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202258] = 5, + [202320] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5367), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6296), 8, + ACTIONS(6063), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(7652), 1, anon_sym_PIPE, + ACTIONS(7654), 1, + anon_sym_CARET, + ACTIONS(7658), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(7664), 1, anon_sym_AMP_STAR, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(6294), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, + ACTIONS(7672), 1, anon_sym_AMP_AMP, + ACTIONS(7674), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [202312] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5368), 1, + ACTIONS(7676), 1, + sym__start_of_index_operator, + ACTIONS(7682), 1, + sym_binary_ampersand, + STATE(5358), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6324), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6322), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, + ACTIONS(7656), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7662), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(7666), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [202366] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5369), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6348), 8, - anon_sym_DOT_DOT, + ACTIONS(7650), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6346), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, + ACTIONS(7660), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [202420] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5370), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6352), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6350), 31, - sym__line_break, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7680), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6061), 8, + sym__line_break, + sym__start_of_brace_block, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202474] = 5, + [202406] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5371), 1, + STATE(5359), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6368), 8, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -507449,7 +511531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6366), 31, + ACTIONS(5983), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -507481,15 +511563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202528] = 5, + [202460] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5372), 1, + STATE(5360), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6400), 8, + ACTIONS(6029), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -507498,7 +511580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6398), 31, + ACTIONS(6027), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -507530,15 +511612,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202582] = 5, + [202514] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5373), 1, + STATE(5361), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5738), 8, + ACTIONS(6033), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -507547,7 +511629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5736), 31, + ACTIONS(6031), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -507579,15 +511661,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202636] = 5, + [202568] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5374), 1, + STATE(5362), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5742), 8, + ACTIONS(6086), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -507596,7 +511678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5740), 31, + ACTIONS(6084), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -507628,15 +511710,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202690] = 5, + [202622] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5375), 1, + STATE(5363), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5746), 8, + ACTIONS(6096), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -507645,7 +511727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5744), 31, + ACTIONS(6094), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -507677,15 +511759,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202744] = 5, + [202676] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5376), 1, + STATE(5364), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5750), 8, + ACTIONS(6110), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -507694,7 +511776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5748), 31, + ACTIONS(6108), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -507726,15 +511808,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202798] = 5, + [202730] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5377), 1, + STATE(5365), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5754), 8, + ACTIONS(6144), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -507743,7 +511825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5752), 31, + ACTIONS(6142), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -507775,15 +511857,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202852] = 5, + [202784] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5378), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7676), 1, + sym__start_of_index_operator, + STATE(5366), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4671), 9, + ACTIONS(6152), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -507791,11 +511877,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4673), 30, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6150), 30, + sym__line_break, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -507806,11 +511890,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -507824,15 +511906,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [202906] = 5, + anon_sym_do, + anon_sym_then, + [202842] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5379), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7676), 1, + sym__start_of_index_operator, + STATE(5367), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5758), 8, + ACTIONS(6156), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -507840,11 +511928,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5756), 31, + ACTIONS(6154), 30, sym__line_break, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -507873,20 +511959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [202960] = 7, + [202900] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7917), 1, - anon_sym_COMMA, - STATE(5380), 1, + STATE(5368), 1, sym_heredoc_body, - STATE(5387), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 9, - anon_sym_RBRACK, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -507895,7 +511976,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 28, + ACTIONS(6345), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -507908,6 +511990,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -507920,19 +512004,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [203018] = 5, + anon_sym_then, + [202954] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5381), 1, + ACTIONS(1823), 1, + anon_sym_COLON, + ACTIONS(7532), 1, + anon_sym_COLON_COLON, + STATE(4862), 1, + aux_sym_constant_repeat1, + STATE(5369), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5762), 8, + ACTIONS(4584), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -507941,10 +512031,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5760), 31, - sym__line_break, - sym__start_of_brace_block, + ACTIONS(4586), 28, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -507955,7 +512044,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -507968,95 +512056,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [203072] = 26, + [203014] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5627), 1, - anon_sym_RBRACK, - ACTIONS(7847), 1, + ACTIONS(2750), 1, + sym__string_literal_start, + ACTIONS(7974), 1, + anon_sym_COLON, + STATE(5370), 1, + sym_heredoc_body, + STATE(5601), 1, + aux_sym_chained_string_repeat1, + STATE(6330), 1, + sym_string, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(157), 8, anon_sym_DOT_DOT, - ACTIONS(7849), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7853), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7855), 1, - anon_sym_CARET, - ACTIONS(7859), 1, anon_sym_EQ_EQ, - ACTIONS(7865), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(7871), 1, - anon_sym_QMARK, - ACTIONS(7873), 1, - anon_sym_AMP_AMP, - ACTIONS(7875), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7877), 1, + ACTIONS(135), 27, sym__start_of_index_operator, - ACTIONS(7883), 1, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - ACTIONS(7922), 1, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, - STATE(5382), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [203076] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5371), 1, sym_heredoc_body, - STATE(5389), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7857), 2, + ACTIONS(6223), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6221), 31, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7863), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7867), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(5585), 3, - sym__start_of_brace_block, - anon_sym_RBRACK_QMARK, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - ACTIONS(7851), 3, + anon_sym_then, + [203130] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5372), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6251), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7861), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6249), 31, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7879), 4, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_then, + [203184] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5373), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5570), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5568), 31, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7881), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [203168] = 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_then, + [203238] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7922), 1, - anon_sym_COMMA, - STATE(5383), 1, + STATE(5374), 1, sym_heredoc_body, - STATE(5389), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 9, - anon_sym_RBRACK, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -508065,7 +512277,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 28, + ACTIONS(5785), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -508078,6 +512291,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -508090,19 +512305,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [203226] = 5, + anon_sym_then, + [203292] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5384), 1, + STATE(5375), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5766), 8, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -508111,7 +512326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5764), 31, + ACTIONS(5785), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -508143,15 +512358,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [203280] = 5, + [203346] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5385), 1, + STATE(5376), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5774), 8, + ACTIONS(5809), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -508160,7 +512375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5772), 31, + ACTIONS(5807), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -508192,15 +512407,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [203334] = 5, + [203400] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5386), 1, + STATE(5377), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5778), 8, + ACTIONS(5813), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -508209,7 +512424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5776), 31, + ACTIONS(5811), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -508241,120 +512456,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [203388] = 7, + [203454] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7922), 1, - anon_sym_COMMA, - STATE(5387), 1, - sym_heredoc_body, - STATE(5390), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5627), 9, - anon_sym_RBRACK, + ACTIONS(7891), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(7893), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7897), 1, anon_sym_PIPE, + ACTIONS(7899), 1, + anon_sym_CARET, + ACTIONS(7903), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(7909), 1, anon_sym_AMP_STAR, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(5585), 28, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7915), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(7917), 1, anon_sym_AMP_AMP, + ACTIONS(7919), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - [203446] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5388), 1, + ACTIONS(7921), 1, + sym__start_of_index_operator, + ACTIONS(7927), 1, + sym_binary_ampersand, + ACTIONS(7976), 1, + anon_sym_COMMA, + STATE(5146), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5378), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4623), 9, - anon_sym_DOT_DOT, + ACTIONS(7901), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7907), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7911), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7895), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4625), 30, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(5631), 4, + sym__start_of_brace_block, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_do, + ACTIONS(7905), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7923), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7925), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [203500] = 7, + [203548] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7924), 1, - anon_sym_COMMA, - STATE(5389), 1, + STATE(5379), 1, sym_heredoc_body, - STATE(5390), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 9, - anon_sym_RBRACK, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -508363,7 +512542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 28, + ACTIONS(5545), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -508376,6 +512556,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -508388,23 +512570,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [203558] = 6, + anon_sym_then, + [203602] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7926), 1, - anon_sym_COMMA, + STATE(5380), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5390), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5713), 9, - anon_sym_RBRACK, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -508413,7 +512591,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 28, + ACTIONS(5545), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -508426,6 +512605,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -508438,22 +512619,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [203614] = 6, + anon_sym_then, + [203656] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7929), 1, - anon_sym_EQ, - STATE(5391), 1, + STATE(5381), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 9, - anon_sym_RBRACK, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -508462,7 +512640,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 29, + ACTIONS(5871), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -508475,6 +512654,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -508488,90 +512668,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [203670] = 21, + anon_sym_then, + [203710] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5923), 1, + ACTIONS(7646), 1, anon_sym_DOT_DOT, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7355), 1, + ACTIONS(7648), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(7654), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(7658), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(7664), 1, anon_sym_AMP_STAR, - ACTIONS(7373), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7670), 1, + anon_sym_QMARK, + ACTIONS(7672), 1, anon_sym_AMP_AMP, - ACTIONS(7375), 1, + ACTIONS(7674), 1, anon_sym_PIPE_PIPE, - ACTIONS(7383), 1, + ACTIONS(7676), 1, sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(7682), 1, sym_binary_ampersand, - STATE(5392), 1, + STATE(5382), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7656), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, + ACTIONS(7662), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(7666), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(7650), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(7660), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7680), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5921), 8, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_end, - anon_sym_QMARK, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [203756] = 8, + ACTIONS(5779), 6, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_then, + [203800] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, - sym__start_of_brace_block, - STATE(5393), 1, + ACTIONS(7976), 1, + anon_sym_COMMA, + STATE(5146), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5383), 1, sym_heredoc_body, - STATE(5965), 1, - sym_do_end_block, - STATE(5966), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -508580,9 +512760,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 28, + ACTIONS(5631), 29, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -508593,7 +512773,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -508609,21 +512790,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [203816] = 8, + [203858] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, - sym__start_of_brace_block, - STATE(5394), 1, + STATE(5384), 1, sym_heredoc_body, - STATE(5986), 1, - sym_do_end_block, - STATE(5987), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -508632,9 +512807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 28, + ACTIONS(5871), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -508645,6 +512821,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -508661,21 +512838,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [203876] = 8, + anon_sym_then, + [203912] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, - sym__start_of_brace_block, - STATE(5395), 1, + STATE(5385), 1, sym_heredoc_body, - STATE(5988), 1, - sym_do_end_block, - STATE(5989), 1, - sym_brace_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -508684,9 +512856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 28, + ACTIONS(5875), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -508697,6 +512870,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -508713,80 +512887,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [203936] = 21, + anon_sym_then, + [203966] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5941), 1, - anon_sym_DOT_DOT, - ACTIONS(7597), 1, - anon_sym_PIPE, - ACTIONS(7599), 1, - anon_sym_CARET, - ACTIONS(7603), 1, - anon_sym_EQ_EQ, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7617), 1, - anon_sym_AMP_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - STATE(5396), 1, + ACTIONS(7976), 1, + anon_sym_COMMA, + STATE(5150), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5386), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7601), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, + ACTIONS(5635), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7605), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7623), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5631), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7625), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5939), 8, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - anon_sym_then, - [204022] = 5, + [204024] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5397), 1, + STATE(5387), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 9, + ACTIONS(5885), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -508795,9 +512956,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4595), 30, + ACTIONS(5883), 31, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -508812,7 +512973,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -508826,83 +512986,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [204076] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7591), 1, - anon_sym_DOT_DOT, - ACTIONS(7593), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7597), 1, - anon_sym_PIPE, - ACTIONS(7599), 1, - anon_sym_CARET, - ACTIONS(7603), 1, - anon_sym_EQ_EQ, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7615), 1, - anon_sym_QMARK, - ACTIONS(7617), 1, - anon_sym_AMP_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - STATE(5398), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7601), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7605), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7623), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7625), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6010), 6, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_do, anon_sym_then, - [204166] = 5, + [204078] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5399), 1, + STATE(5388), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6012), 8, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -508911,7 +513005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6010), 31, + ACTIONS(5741), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -508943,177 +513037,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204220] = 23, + [204132] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7591), 1, - anon_sym_DOT_DOT, - ACTIONS(7593), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7597), 1, - anon_sym_PIPE, - ACTIONS(7599), 1, - anon_sym_CARET, - ACTIONS(7603), 1, - anon_sym_EQ_EQ, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7615), 1, - anon_sym_QMARK, - ACTIONS(7617), 1, - anon_sym_AMP_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - STATE(5400), 1, + STATE(5389), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7601), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, + ACTIONS(5897), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7605), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7623), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5895), 31, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7625), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6030), 6, - sym__line_break, - sym__start_of_brace_block, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_do, - anon_sym_then, - [204310] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7591), 1, - anon_sym_DOT_DOT, - ACTIONS(7593), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7597), 1, - anon_sym_PIPE, - ACTIONS(7599), 1, anon_sym_CARET, - ACTIONS(7603), 1, - anon_sym_EQ_EQ, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7615), 1, - anon_sym_QMARK, - ACTIONS(7617), 1, - anon_sym_AMP_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - STATE(5401), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7601), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7607), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7605), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7623), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7625), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6032), 6, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204400] = 10, + [204186] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7621), 1, - sym__start_of_index_operator, - STATE(5402), 1, + STATE(5390), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7625), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(5901), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 24, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5899), 31, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -509126,27 +513129,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204464] = 8, + [204240] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7621), 1, - sym__start_of_index_operator, - STATE(5403), 1, + STATE(5391), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -509154,14 +513151,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 28, + anon_sym_DOT, + ACTIONS(5903), 31, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -509178,27 +513178,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204524] = 8, + [204294] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7621), 1, - sym__start_of_index_operator, - STATE(5404), 1, + STATE(5392), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -509206,14 +513200,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 28, + anon_sym_DOT, + ACTIONS(5747), 31, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -509230,288 +513227,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204584] = 12, + [204348] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7621), 1, - sym__start_of_index_operator, - STATE(5405), 1, + STATE(5393), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7601), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7623), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7625), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6064), 6, + ACTIONS(5921), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6062), 18, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5919), 31, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204652] = 21, + [204402] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6068), 1, - anon_sym_DOT_DOT, - ACTIONS(7597), 1, - anon_sym_PIPE, - ACTIONS(7599), 1, - anon_sym_CARET, - ACTIONS(7603), 1, - anon_sym_EQ_EQ, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7617), 1, - anon_sym_AMP_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - STATE(5406), 1, + STATE(5394), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7601), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, + ACTIONS(5927), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7605), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7623), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5925), 31, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7625), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6066), 8, - sym__line_break, - sym__start_of_brace_block, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_do, - anon_sym_then, - [204738] = 17, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7597), 1, - anon_sym_PIPE, - ACTIONS(7599), 1, anon_sym_CARET, - ACTIONS(7603), 1, - anon_sym_EQ_EQ, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - STATE(5407), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7601), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7605), 4, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7623), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7625), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6070), 12, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204816] = 13, + [204456] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - STATE(5408), 1, + STATE(5395), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7601), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7623), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7625), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6082), 6, + ACTIONS(5931), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6080), 17, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5929), 31, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204886] = 11, + [204510] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7621), 1, - sym__start_of_index_operator, - STATE(5409), 1, + STATE(5396), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7623), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7625), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6090), 6, + ACTIONS(5935), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6088), 20, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5933), 31, sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -509524,272 +513423,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [204952] = 15, + [204564] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7597), 1, - anon_sym_PIPE, - ACTIONS(7599), 1, - anon_sym_CARET, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - STATE(5410), 1, + STATE(5397), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7601), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7623), 4, + ACTIONS(5939), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5937), 31, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7625), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6094), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6092), 16, - sym__line_break, - sym__start_of_brace_block, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [205026] = 19, + [204618] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, - anon_sym_DOT_DOT, - ACTIONS(7597), 1, - anon_sym_PIPE, - ACTIONS(7599), 1, - anon_sym_CARET, - ACTIONS(7603), 1, - anon_sym_EQ_EQ, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - STATE(5411), 1, + STATE(5398), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7601), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, + ACTIONS(5947), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7605), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7623), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5945), 31, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7625), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 10, - sym__line_break, - sym__start_of_brace_block, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - anon_sym_then, - [205108] = 20, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6118), 1, - anon_sym_DOT_DOT, - ACTIONS(7597), 1, - anon_sym_PIPE, - ACTIONS(7599), 1, anon_sym_CARET, - ACTIONS(7603), 1, - anon_sym_EQ_EQ, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7617), 1, - anon_sym_AMP_AMP, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - STATE(5412), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7601), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7607), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7605), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7623), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7625), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6116), 9, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [205192] = 21, + [204672] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6242), 1, + ACTIONS(7646), 1, anon_sym_DOT_DOT, - ACTIONS(7597), 1, + ACTIONS(7648), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, anon_sym_PIPE, - ACTIONS(7599), 1, + ACTIONS(7654), 1, anon_sym_CARET, - ACTIONS(7603), 1, + ACTIONS(7658), 1, anon_sym_EQ_EQ, - ACTIONS(7609), 1, + ACTIONS(7664), 1, anon_sym_AMP_STAR, - ACTIONS(7613), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7617), 1, + ACTIONS(7670), 1, + anon_sym_QMARK, + ACTIONS(7672), 1, anon_sym_AMP_AMP, - ACTIONS(7619), 1, + ACTIONS(7674), 1, anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, + ACTIONS(7676), 1, sym__start_of_index_operator, - ACTIONS(7627), 1, + ACTIONS(7682), 1, sym_binary_ampersand, - STATE(5413), 1, + STATE(5399), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7601), 2, + ACTIONS(7656), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7607), 2, + ACTIONS(7662), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, + ACTIONS(7666), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, + ACTIONS(7650), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7605), 4, + ACTIONS(7660), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7623), 4, + ACTIONS(7678), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7625), 4, + ACTIONS(7680), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6240), 8, + ACTIONS(5825), 6, sym__line_break, sym__start_of_brace_block, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, anon_sym_do, anon_sym_then, - [205278] = 5, + [204762] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5414), 1, + STATE(5400), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5581), 9, - anon_sym_RBRACK, + ACTIONS(6051), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -509798,7 +513611,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5579), 30, + ACTIONS(6049), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -509811,6 +513625,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -509823,22 +513638,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [205332] = 5, + anon_sym_then, + [204816] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5415), 1, + STATE(5401), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5654), 9, - anon_sym_RBRACK, + ACTIONS(6075), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -509847,7 +513660,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5652), 30, + ACTIONS(6073), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -509860,6 +513674,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -509872,21 +513687,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [205386] = 5, + anon_sym_then, + [204870] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5416), 1, + STATE(5402), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4663), 9, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -509895,10 +513709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4665), 30, + ACTIONS(6098), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -509909,11 +513723,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -509927,15 +513739,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [205440] = 5, + anon_sym_do, + anon_sym_then, + [204924] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5417), 1, + STATE(5403), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4675), 9, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -509944,10 +513758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4677), 30, + ACTIONS(6098), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -509958,11 +513772,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -509976,15 +513788,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [205494] = 5, + anon_sym_do, + anon_sym_then, + [204978] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5418), 1, + STATE(5404), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4679), 9, + ACTIONS(6106), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -509993,10 +513807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4681), 30, + ACTIONS(6104), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -510007,11 +513821,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -510025,15 +513837,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [205548] = 5, + anon_sym_do, + anon_sym_then, + [205032] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5419), 1, + STATE(5405), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6008), 8, + ACTIONS(6114), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -510042,7 +513856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6006), 31, + ACTIONS(6112), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -510074,82 +513888,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [205602] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7591), 1, - anon_sym_DOT_DOT, - ACTIONS(7593), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7597), 1, - anon_sym_PIPE, - ACTIONS(7599), 1, - anon_sym_CARET, - ACTIONS(7603), 1, - anon_sym_EQ_EQ, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7615), 1, - anon_sym_QMARK, - ACTIONS(7617), 1, - anon_sym_AMP_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - STATE(5420), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7601), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7605), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7623), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7625), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6256), 6, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - anon_sym_then, - [205692] = 5, + [205086] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5421), 1, + STATE(5406), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4631), 9, + ACTIONS(6118), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -510158,10 +513905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4633), 30, + ACTIONS(6116), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -510172,11 +513919,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -510190,82 +513935,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [205746] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7591), 1, - anon_sym_DOT_DOT, - ACTIONS(7593), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7597), 1, - anon_sym_PIPE, - ACTIONS(7599), 1, - anon_sym_CARET, - ACTIONS(7603), 1, - anon_sym_EQ_EQ, - ACTIONS(7609), 1, - anon_sym_AMP_STAR, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7615), 1, - anon_sym_QMARK, - ACTIONS(7617), 1, - anon_sym_AMP_AMP, - ACTIONS(7619), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7621), 1, - sym__start_of_index_operator, - ACTIONS(7627), 1, - sym_binary_ampersand, - STATE(5422), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7601), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7607), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7611), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7595), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7605), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7623), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7625), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6230), 6, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_do, anon_sym_then, - [205836] = 5, + [205140] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5423), 1, + STATE(5407), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 9, + ACTIONS(6122), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -510274,11 +513954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4595), 30, + ACTIONS(6120), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -510289,9 +513968,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -510306,37 +513985,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [205890] = 11, + anon_sym_then, + [205194] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7631), 1, - anon_sym_LBRACK, - ACTIONS(7633), 1, - anon_sym_STAR, - ACTIONS(7637), 1, - anon_sym_DOT, - ACTIONS(7639), 1, - anon_sym_QMARK, - ACTIONS(7820), 1, - anon_sym_PIPE, - STATE(5137), 1, - aux_sym_union_type_repeat1, - STATE(5424), 1, + STATE(5408), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4683), 7, + ACTIONS(6126), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_EQ, - ACTIONS(4685), 26, + anon_sym_DOT, + ACTIONS(6124), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -510347,6 +514017,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -510359,23 +514030,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [205956] = 8, + anon_sym_do, + anon_sym_then, + [205248] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(7652), 1, - anon_sym_DASH_GT, - STATE(5425), 1, + STATE(5409), 1, sym_heredoc_body, - STATE(9969), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(6130), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -510384,9 +514052,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 27, + ACTIONS(6128), 31, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -510399,6 +514067,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -510413,15 +514082,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [206016] = 5, + anon_sym_do, + anon_sym_then, + [205302] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5426), 1, + STATE(5410), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5846), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -510430,7 +514101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5844), 31, + ACTIONS(6189), 31, sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, @@ -510462,23 +514133,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_do, anon_sym_then, - [206070] = 8, + [205356] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7877), 1, - sym__start_of_index_operator, - STATE(5427), 1, + STATE(5411), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7867), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 8, - anon_sym_RBRACK, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -510486,17 +514149,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 26, + anon_sym_DOT, + ACTIONS(6189), 31, + sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -510508,21 +514176,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [206129] = 5, + anon_sym_then, + [205410] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5428), 1, + STATE(5412), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5754), 9, - anon_sym_RBRACK, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -510531,7 +514199,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5752), 29, + ACTIONS(6189), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -510544,6 +514213,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -510557,21 +514227,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [206182] = 6, + anon_sym_then, + [205464] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7931), 1, - anon_sym_of, - STATE(5429), 1, + STATE(5413), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5734), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -510580,8 +514248,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5730), 29, + ACTIONS(6189), 31, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -510609,17 +514278,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_then, - [206237] = 5, + [205518] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5430), 1, + STATE(5414), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6238), 9, - anon_sym_RBRACK, + ACTIONS(6219), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -510628,7 +514297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6236), 29, + ACTIONS(6217), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -510641,6 +514311,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -510654,23 +514325,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [206290] = 7, + anon_sym_then, + [205572] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(7805), 1, - sym__start_of_index_operator, - STATE(5431), 1, + STATE(5415), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6000), 7, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -510678,8 +514345,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5998), 29, + anon_sym_DOT, + ACTIONS(6229), 31, + sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -510690,9 +514360,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -510708,17 +514377,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [206347] = 6, + anon_sym_then, + [205626] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7933), 1, - anon_sym_of, - STATE(5432), 1, + STATE(5416), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5719), 8, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -510727,8 +514395,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5715), 29, + ACTIONS(6233), 31, sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -510756,20 +514425,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_do, anon_sym_then, - [206402] = 7, + [205680] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(7805), 1, - sym__start_of_index_operator, - STATE(5433), 1, + STATE(5417), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6004), 7, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -510777,8 +514443,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6002), 29, + anon_sym_DOT, + ACTIONS(6237), 31, + sym__line_break, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -510789,9 +514458,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -510807,16 +514475,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [206459] = 5, + anon_sym_then, + [205734] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5434), 1, + STATE(5418), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6254), 9, - anon_sym_RBRACK, + ACTIONS(6243), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -510825,7 +514493,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6252), 29, + ACTIONS(6241), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -510838,6 +514507,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -510851,20 +514521,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [206512] = 5, + anon_sym_then, + [205788] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5435), 1, + STATE(5419), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6260), 9, - anon_sym_RBRACK, + ACTIONS(6247), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -510873,7 +514542,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6258), 29, + ACTIONS(6245), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -510886,6 +514556,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -510899,91 +514570,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [206565] = 25, + anon_sym_then, + [205842] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7092), 1, + STATE(5420), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6255), 8, anon_sym_DOT_DOT, - ACTIONS(7094), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7100), 1, - anon_sym_CARET, - ACTIONS(7104), 1, anon_sym_EQ_EQ, - ACTIONS(7110), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7114), 1, anon_sym_DOT, - ACTIONS(7116), 1, - anon_sym_QMARK, - ACTIONS(7118), 1, - anon_sym_AMP_AMP, - ACTIONS(7120), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, + ACTIONS(6253), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(7128), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - ACTIONS(7935), 1, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, - STATE(5436), 1, - sym_heredoc_body, - STATE(9264), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7102), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7108), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(5570), 3, - sym__start_of_brace_block, - anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - ACTIONS(7096), 3, + anon_sym_then, + [205896] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5421), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6267), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7106), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6265), 31, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [206658] = 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_then, + [205950] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7937), 1, - anon_sym_COMMA, - STATE(5437), 1, + STATE(5422), 1, sym_heredoc_body, - STATE(5440), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(6283), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -510992,7 +514689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 28, + ACTIONS(6281), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -511005,6 +514703,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -511019,89 +514719,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [206715] = 25, + anon_sym_then, + [206004] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7092), 1, + STATE(5423), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6287), 8, anon_sym_DOT_DOT, - ACTIONS(7094), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7100), 1, - anon_sym_CARET, - ACTIONS(7104), 1, anon_sym_EQ_EQ, - ACTIONS(7110), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7114), 1, anon_sym_DOT, - ACTIONS(7116), 1, - anon_sym_QMARK, - ACTIONS(7118), 1, - anon_sym_AMP_AMP, - ACTIONS(7120), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, + ACTIONS(6285), 31, + sym__line_break, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(7128), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - ACTIONS(7939), 1, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, - STATE(5438), 1, - sym_heredoc_body, - STATE(9281), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7102), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7108), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(5585), 3, - sym__start_of_brace_block, - anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - ACTIONS(7096), 3, + anon_sym_then, + [206058] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5424), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6311), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7106), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6309), 31, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [206808] = 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_then, + [206112] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7941), 1, - anon_sym_COMMA, - STATE(5439), 1, + STATE(5425), 1, sym_heredoc_body, - STATE(5441), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6363), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -511110,7 +514836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 28, + ACTIONS(6361), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -511123,6 +514850,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -511137,21 +514866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [206865] = 7, + anon_sym_then, + [206166] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7941), 1, - anon_sym_COMMA, - STATE(5440), 1, + STATE(5426), 1, sym_heredoc_body, - STATE(5558), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -511160,7 +514885,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 28, + ACTIONS(6329), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -511173,6 +514899,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -511187,21 +514915,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [206922] = 7, + anon_sym_then, + [206220] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7943), 1, - anon_sym_COMMA, - STATE(5441), 1, + STATE(5427), 1, sym_heredoc_body, - STATE(5558), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -511210,7 +514934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 28, + ACTIONS(6333), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -511223,6 +514948,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -511237,18 +514964,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [206979] = 5, + anon_sym_then, + [206274] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5442), 1, + STATE(5428), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 9, - anon_sym_RBRACK, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -511257,7 +514983,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 29, + ACTIONS(6337), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -511270,6 +514997,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -511283,20 +515011,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [207032] = 5, + anon_sym_then, + [206328] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5443), 1, + STATE(5429), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5850), 9, - anon_sym_RBRACK, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -511305,7 +515032,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5848), 29, + ACTIONS(6341), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -511318,6 +515046,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -511331,23 +515060,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [207085] = 7, + anon_sym_then, + [206382] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7945), 1, - anon_sym_COMMA, - STATE(5444), 1, + STATE(5430), 1, sym_heredoc_body, - STATE(5474), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6454), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -511356,10 +515081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 28, + ACTIONS(6452), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -511370,6 +515095,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -511385,16 +515112,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [207142] = 5, + anon_sym_then, + [206436] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5445), 1, + STATE(5431), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6272), 9, - anon_sym_RBRACK, + ACTIONS(6466), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -511403,7 +515130,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6270), 29, + ACTIONS(6464), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -511416,6 +515144,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -511429,20 +515158,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [207195] = 5, + anon_sym_then, + [206490] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5446), 1, + STATE(5432), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6276), 9, - anon_sym_RBRACK, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -511451,7 +515179,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6274), 29, + ACTIONS(6349), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -511464,6 +515193,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -511477,20 +515207,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [207248] = 5, + anon_sym_then, + [206544] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5447), 1, + STATE(5433), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5887), 9, - anon_sym_RBRACK, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -511499,7 +515228,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5885), 29, + ACTIONS(6353), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -511512,6 +515242,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -511525,20 +515256,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [207301] = 5, + anon_sym_then, + [206598] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5448), 1, + STATE(5434), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6280), 9, - anon_sym_RBRACK, + ACTIONS(6367), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -511547,7 +515277,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6278), 29, + ACTIONS(6365), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -511560,6 +515291,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -511573,20 +515305,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [207354] = 5, + anon_sym_then, + [206652] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5449), 1, + STATE(5435), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6284), 9, - anon_sym_RBRACK, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -511595,7 +515326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6282), 29, + ACTIONS(6369), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -511608,6 +515340,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -511621,20 +515354,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [207407] = 5, + anon_sym_then, + [206706] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5450), 1, + ACTIONS(7978), 1, + anon_sym_EQ, + STATE(5436), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6288), 9, - anon_sym_RBRACK, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -511643,7 +515377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6286), 29, + ACTIONS(5761), 30, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -511656,7 +515390,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -511669,23 +515405,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [207460] = 7, + [206762] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7947), 1, - anon_sym_COMMA, - STATE(5451), 1, + STATE(5437), 1, sym_heredoc_body, - STATE(5474), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(6379), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -511694,10 +515425,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 28, + ACTIONS(6377), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -511708,6 +515439,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -511723,218 +515456,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [207517] = 25, + anon_sym_then, + [206816] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7937), 1, - anon_sym_COMMA, - ACTIONS(7949), 1, - anon_sym_DOT_DOT, - ACTIONS(7951), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7955), 1, - anon_sym_PIPE, - ACTIONS(7957), 1, - anon_sym_CARET, - ACTIONS(7961), 1, - anon_sym_EQ_EQ, - ACTIONS(7967), 1, - anon_sym_AMP_STAR, - ACTIONS(7971), 1, - anon_sym_QMARK, - ACTIONS(7973), 1, - anon_sym_AMP_AMP, - ACTIONS(7975), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, - sym_binary_ampersand, - STATE(5440), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5452), 1, + STATE(5438), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7965), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5570), 3, - sym__start_of_brace_block, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(7953), 3, + ACTIONS(6387), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7963), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6385), 31, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [207610] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7941), 1, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(7949), 1, - anon_sym_DOT_DOT, - ACTIONS(7951), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7955), 1, - anon_sym_PIPE, - ACTIONS(7957), 1, anon_sym_CARET, - ACTIONS(7961), 1, - anon_sym_EQ_EQ, - ACTIONS(7967), 1, - anon_sym_AMP_STAR, - ACTIONS(7971), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7973), 1, anon_sym_AMP_AMP, - ACTIONS(7975), 1, anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, - sym_binary_ampersand, - STATE(5441), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5453), 1, + anon_sym_do, + anon_sym_then, + [206870] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5439), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7965), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5585), 3, - sym__start_of_brace_block, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(7953), 3, + ACTIONS(6391), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7963), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6389), 31, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [207703] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7775), 1, - anon_sym_DOT_DOT, - ACTIONS(7777), 1, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7781), 1, - anon_sym_PIPE, - ACTIONS(7783), 1, anon_sym_CARET, - ACTIONS(7787), 1, - anon_sym_EQ_EQ, - ACTIONS(7793), 1, - anon_sym_AMP_STAR, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(7799), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7801), 1, anon_sym_AMP_AMP, - ACTIONS(7803), 1, anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, - sym__start_of_index_operator, - ACTIONS(7811), 1, - sym_binary_ampersand, - STATE(5454), 1, + anon_sym_do, + anon_sym_then, + [206924] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5440), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7791), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, + ACTIONS(6395), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7789), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6393), 31, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6358), 5, - sym__start_of_brace_block, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - [207792] = 5, + anon_sym_then, + [206978] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5455), 1, + STATE(5441), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 9, - anon_sym_RBRACK, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -511943,7 +515621,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 29, + ACTIONS(6397), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -511956,6 +515635,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -511969,20 +515649,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [207845] = 5, + anon_sym_then, + [207032] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5456), 1, + STATE(5442), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 9, - anon_sym_RBRACK, + ACTIONS(6410), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -511991,7 +515670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 29, + ACTIONS(6408), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -512004,6 +515684,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -512017,20 +515698,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [207898] = 5, + anon_sym_then, + [207086] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5457), 1, + STATE(5443), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6328), 9, - anon_sym_RBRACK, + ACTIONS(6414), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -512039,7 +515719,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6326), 29, + ACTIONS(6412), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -512052,6 +515733,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -512065,20 +515747,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [207951] = 5, + anon_sym_then, + [207140] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5458), 1, + STATE(5444), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6332), 9, - anon_sym_RBRACK, + ACTIONS(6418), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -512087,7 +515768,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6330), 29, + ACTIONS(6416), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -512100,6 +515782,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -512113,20 +515796,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [208004] = 5, + anon_sym_then, + [207194] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5459), 1, + STATE(5445), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6336), 9, - anon_sym_RBRACK, + ACTIONS(6422), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -512135,7 +515817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6334), 29, + ACTIONS(6420), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -512148,6 +515831,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -512161,20 +515845,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [208057] = 5, + anon_sym_then, + [207248] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5460), 1, + STATE(5446), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6340), 9, - anon_sym_RBRACK, + ACTIONS(6426), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -512183,7 +515866,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6338), 29, + ACTIONS(6424), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -512196,6 +515880,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -512209,20 +515894,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [208110] = 5, + anon_sym_then, + [207302] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5461), 1, + STATE(5447), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6344), 9, - anon_sym_RBRACK, + ACTIONS(6430), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -512231,7 +515915,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6342), 29, + ACTIONS(6428), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -512244,6 +515929,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -512257,154 +515943,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [208163] = 23, + anon_sym_then, + [207356] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7775), 1, - anon_sym_DOT_DOT, - ACTIONS(7777), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7781), 1, - anon_sym_PIPE, - ACTIONS(7783), 1, - anon_sym_CARET, - ACTIONS(7787), 1, - anon_sym_EQ_EQ, - ACTIONS(7793), 1, - anon_sym_AMP_STAR, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(7799), 1, - anon_sym_QMARK, - ACTIONS(7801), 1, - anon_sym_AMP_AMP, - ACTIONS(7803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, - sym__start_of_index_operator, - ACTIONS(7811), 1, - sym_binary_ampersand, - STATE(5462), 1, + STATE(5448), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7791), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, + ACTIONS(6434), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7789), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6432), 31, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6364), 5, - sym__start_of_brace_block, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_do, - [208252] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7983), 1, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(7985), 1, - anon_sym_DOT_DOT, - ACTIONS(7987), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7991), 1, - anon_sym_PIPE, - ACTIONS(7993), 1, anon_sym_CARET, - ACTIONS(7997), 1, - anon_sym_EQ_EQ, - ACTIONS(8003), 1, - anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8009), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8011), 1, anon_sym_AMP_AMP, - ACTIONS(8013), 1, anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, - sym__start_of_index_operator, - ACTIONS(8021), 1, - sym_binary_ampersand, - STATE(5444), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5463), 1, + anon_sym_do, + anon_sym_then, + [207410] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5449), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8001), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5570), 3, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_do, - ACTIONS(7989), 3, + ACTIONS(6438), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7999), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8017), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6436), 31, + sym__line_break, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8019), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [208345] = 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + anon_sym_then, + [207464] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5464), 1, + STATE(5450), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 9, - anon_sym_RBRACK, + ACTIONS(5965), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -512413,7 +516062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 29, + ACTIONS(5963), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -512426,6 +516076,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -512439,20 +516090,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [208398] = 5, + anon_sym_then, + [207518] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5465), 1, + STATE(5451), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 9, - anon_sym_RBRACK, + ACTIONS(6005), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -512461,7 +516111,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 29, + ACTIONS(6003), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -512474,6 +516125,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -512487,20 +516139,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [208451] = 5, + anon_sym_then, + [207572] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5466), 1, + STATE(5452), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 9, - anon_sym_RBRACK, + ACTIONS(5801), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -512509,7 +516160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 29, + ACTIONS(5799), 31, + sym__line_break, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -512522,6 +516174,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -512535,20 +516188,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [208504] = 5, + anon_sym_then, + [207626] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5467), 1, + STATE(5453), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 9, - anon_sym_RBRACK, + ACTIONS(4696), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -512557,9 +516209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 29, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4698), 30, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -512570,8 +516223,11 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -512583,19 +516239,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [208557] = 5, + [207680] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5468), 1, + STATE(5454), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 9, + ACTIONS(6434), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -512605,7 +516259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6360), 29, + ACTIONS(6432), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -512635,154 +516289,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [208610] = 25, + [207733] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7945), 1, - anon_sym_COMMA, - ACTIONS(7985), 1, - anon_sym_DOT_DOT, - ACTIONS(7987), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7991), 1, - anon_sym_PIPE, - ACTIONS(7993), 1, - anon_sym_CARET, - ACTIONS(7997), 1, - anon_sym_EQ_EQ, - ACTIONS(8003), 1, - anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8009), 1, - anon_sym_QMARK, - ACTIONS(8011), 1, - anon_sym_AMP_AMP, - ACTIONS(8013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, - sym__start_of_index_operator, - ACTIONS(8021), 1, - sym_binary_ampersand, - STATE(5451), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5469), 1, + STATE(5455), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8001), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5585), 3, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_do, - ACTIONS(7989), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7999), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8017), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8019), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [208703] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7847), 1, - anon_sym_DOT_DOT, - ACTIONS(7849), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7853), 1, - anon_sym_PIPE, - ACTIONS(7855), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_EQ_EQ, - ACTIONS(7865), 1, - anon_sym_AMP_STAR, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7871), 1, - anon_sym_QMARK, - ACTIONS(7873), 1, - anon_sym_AMP_AMP, - ACTIONS(7875), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7877), 1, - sym__start_of_index_operator, - ACTIONS(7883), 1, - sym_binary_ampersand, - ACTIONS(8023), 1, + ACTIONS(6371), 9, anon_sym_RBRACK, - STATE(5470), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7857), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7863), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7867), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7851), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6358), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(7861), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7879), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7881), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [208794] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8025), 1, - anon_sym_COMMA, - STATE(5471), 1, - sym_heredoc_body, - STATE(5474), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5566), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -512791,10 +516307,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 28, + ACTIONS(6369), 29, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -512805,6 +516320,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -512817,86 +516333,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [208851] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7847), 1, - anon_sym_DOT_DOT, - ACTIONS(7849), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7853), 1, - anon_sym_PIPE, - ACTIONS(7855), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_EQ_EQ, - ACTIONS(7865), 1, - anon_sym_AMP_STAR, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7871), 1, - anon_sym_QMARK, - ACTIONS(7873), 1, - anon_sym_AMP_AMP, - ACTIONS(7875), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7877), 1, - sym__start_of_index_operator, - ACTIONS(7883), 1, - sym_binary_ampersand, - ACTIONS(8027), 1, - anon_sym_RBRACK, - STATE(5472), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7857), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7863), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7867), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7851), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6364), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(7861), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7879), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7881), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [208942] = 5, + [207786] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5473), 1, + ACTIONS(7980), 1, + anon_sym_of, + STATE(5456), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6372), 9, - anon_sym_RBRACK, + ACTIONS(5725), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -512905,9 +516356,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6370), 29, + ACTIONS(5721), 29, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -512931,22 +516383,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [208995] = 6, + [207841] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8029), 1, - anon_sym_COMMA, + ACTIONS(3131), 1, + sym__string_literal_start, + STATE(3931), 1, + sym_string, + STATE(5457), 1, + sym_heredoc_body, + STATE(5459), 1, + aux_sym_chained_string_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5474), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5713), 8, + ACTIONS(5541), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -512955,10 +516409,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 28, - sym__start_of_brace_block, + ACTIONS(5539), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -512969,6 +516421,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -512983,16 +516436,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [209050] = 5, + anon_sym_COLON2, + [207900] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5475), 1, + STATE(5458), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6376), 9, + ACTIONS(5873), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -513002,7 +516455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6374), 29, + ACTIONS(5871), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -513032,16 +516485,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [209103] = 5, + [207953] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5476), 1, - sym_heredoc_body, + ACTIONS(7982), 1, + sym__string_literal_start, + STATE(3931), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6380), 9, - anon_sym_RBRACK, + STATE(5459), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5534), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -513050,8 +516507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6378), 29, - sym__start_of_brace_block, + ACTIONS(5532), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -513076,20 +516532,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [209156] = 5, + anon_sym_COLON2, + [208010] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5477), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7921), 1, + sym__start_of_index_operator, + STATE(5460), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6384), 9, - anon_sym_RBRACK, + ACTIONS(6001), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -513097,10 +516555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6382), 29, + ACTIONS(5999), 29, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -513111,7 +516567,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -513124,116 +516582,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [209209] = 5, + [208067] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5478), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6020), 9, - anon_sym_RBRACK, + ACTIONS(6063), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(7897), 1, anon_sym_PIPE, + ACTIONS(7899), 1, + anon_sym_CARET, + ACTIONS(7903), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(7909), 1, anon_sym_AMP_STAR, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(6018), 29, - sym__start_of_brace_block, + ACTIONS(7917), 1, + anon_sym_AMP_AMP, + ACTIONS(7919), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7921), 1, sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, + ACTIONS(7927), 1, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, + STATE(5461), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7901), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7907), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(7911), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [209262] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5479), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6388), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7895), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6386), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7905), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7923), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7925), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6061), 7, + sym__start_of_brace_block, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, - [209315] = 5, + [208152] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5480), 1, + ACTIONS(7985), 1, + anon_sym_of, + STATE(5462), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6392), 9, - anon_sym_RBRACK, + ACTIONS(5757), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -513242,8 +516668,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6390), 29, - sym__start_of_brace_block, + ACTIONS(5753), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -513255,6 +516681,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -513268,20 +516695,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [209368] = 5, + anon_sym_then, + [208207] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5481), 1, + ACTIONS(7987), 1, + anon_sym_of, + STATE(5463), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6396), 9, - anon_sym_RBRACK, + ACTIONS(5733), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -513290,8 +516717,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6394), 29, - sym__start_of_brace_block, + ACTIONS(5729), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -513303,6 +516730,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -513316,133 +516744,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [209421] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8032), 1, - sym_identifier, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(8042), 1, - sym_identifier_method_call, - ACTIONS(8044), 1, - sym_self, - STATE(5482), 1, - sym_heredoc_body, - STATE(7757), 1, - sym__operator_token, - STATE(11346), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8034), 10, - anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, - anon_sym_AMP_STAR, - ACTIONS(8036), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_LBRACK_RBRACK_QMARK, - anon_sym_LBRACK_RBRACK_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_PLUS, - anon_sym_AMP_DASH, - anon_sym_AMP_STAR_STAR, - [209488] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7076), 1, - anon_sym_typeof, - ACTIONS(7078), 1, - sym__constant_segment, - ACTIONS(7080), 1, - anon_sym_COLON_COLON, - ACTIONS(7084), 1, - sym__start_of_tuple_type, - ACTIONS(7086), 1, - sym__start_of_named_tuple_type, - ACTIONS(7224), 1, - anon_sym_LPAREN, - ACTIONS(7226), 1, - anon_sym_DASH_GT, - STATE(5483), 1, - sym_heredoc_body, - STATE(7662), 1, - sym_constant, - STATE(7739), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7082), 2, - sym_self, - sym_underscore_type, - STATE(7736), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4409), 15, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_forall, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [209561] = 5, + anon_sym_then, + [208262] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5484), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7921), 1, + sym__start_of_index_operator, + STATE(5464), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6410), 9, - anon_sym_RBRACK, + ACTIONS(6152), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -513450,10 +516767,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6408), 29, + ACTIONS(6150), 29, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -513464,7 +516779,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -513477,19 +516794,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [209614] = 5, + [208319] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5485), 1, + ACTIONS(7989), 1, + anon_sym_of, + STATE(5465), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5648), 8, + ACTIONS(5651), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -513498,7 +516816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5646), 30, + ACTIONS(5647), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -513511,7 +516829,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -513529,16 +516846,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [209667] = 5, + [208374] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5486), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7921), 1, + sym__start_of_index_operator, + STATE(5466), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 9, - anon_sym_RBRACK, + ACTIONS(6156), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -513546,10 +516866,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6415), 29, + ACTIONS(6154), 29, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -513560,7 +516878,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -513573,19 +516893,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [209720] = 5, + [208431] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5487), 1, + STATE(5467), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6160), 9, + ACTIONS(6019), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -513595,7 +516914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6158), 29, + ACTIONS(6017), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -513625,15 +516944,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [209773] = 5, + [208484] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5488), 1, + STATE(5468), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6172), 9, + ACTIONS(5873), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -513643,7 +516962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6170), 29, + ACTIONS(5871), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -513673,15 +516992,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [209826] = 5, + [208537] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5489), 1, + STATE(5469), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6176), 9, + ACTIONS(5877), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -513691,7 +517010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6174), 29, + ACTIONS(5875), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -513721,137 +517040,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [209879] = 15, + [208590] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7076), 1, - anon_sym_typeof, - ACTIONS(7078), 1, - sym__constant_segment, - ACTIONS(7080), 1, - anon_sym_COLON_COLON, - ACTIONS(7084), 1, - sym__start_of_tuple_type, - ACTIONS(7086), 1, - sym__start_of_named_tuple_type, - ACTIONS(7224), 1, - anon_sym_LPAREN, - ACTIONS(7226), 1, - anon_sym_DASH_GT, - STATE(5490), 1, - sym_heredoc_body, - STATE(7662), 1, - sym_constant, - STATE(7745), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7082), 2, - sym_self, - sym_underscore_type, - STATE(7736), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4431), 15, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_forall, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [209952] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6242), 1, + ACTIONS(7891), 1, anon_sym_DOT_DOT, - ACTIONS(7781), 1, + ACTIONS(7893), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7897), 1, anon_sym_PIPE, - ACTIONS(7783), 1, + ACTIONS(7899), 1, anon_sym_CARET, - ACTIONS(7787), 1, + ACTIONS(7903), 1, anon_sym_EQ_EQ, - ACTIONS(7793), 1, + ACTIONS(7909), 1, anon_sym_AMP_STAR, - ACTIONS(7797), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7801), 1, + ACTIONS(7915), 1, + anon_sym_QMARK, + ACTIONS(7917), 1, anon_sym_AMP_AMP, - ACTIONS(7803), 1, + ACTIONS(7919), 1, anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, + ACTIONS(7921), 1, sym__start_of_index_operator, - ACTIONS(7811), 1, + ACTIONS(7927), 1, sym_binary_ampersand, - STATE(5491), 1, + STATE(5470), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, + ACTIONS(7901), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7791), 2, + ACTIONS(7907), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, + ACTIONS(7911), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, + ACTIONS(7895), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7789), 4, + ACTIONS(7905), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + ACTIONS(7923), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, + ACTIONS(7925), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6240), 7, + ACTIONS(5694), 5, sym__start_of_brace_block, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, anon_sym_do, - [210037] = 5, + [208679] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5492), 1, + STATE(5471), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6180), 9, + ACTIONS(5885), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -513861,7 +517124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6178), 29, + ACTIONS(5883), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -513891,15 +517154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [210090] = 5, + [208732] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5493), 1, + STATE(5472), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6208), 9, + ACTIONS(5743), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -513909,7 +517172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6206), 29, + ACTIONS(5741), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -513939,16 +517202,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [210143] = 5, + [208785] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5494), 1, + STATE(5473), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6220), 9, - anon_sym_RBRACK, + ACTIONS(5708), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -513957,8 +517219,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6218), 29, - sym__start_of_brace_block, + ACTIONS(5706), 30, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -513970,6 +517232,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + sym__string_literal_start, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -513983,20 +517247,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [210196] = 5, + anon_sym_then, + [208838] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5495), 1, + ACTIONS(7991), 1, + sym_regex_modifier, + STATE(5474), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6228), 9, - anon_sym_RBRACK, + ACTIONS(5769), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -514005,9 +517269,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6226), 29, + ACTIONS(5767), 29, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -514031,19 +517296,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [210249] = 5, + [208893] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5496), 1, + STATE(5475), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6264), 9, + ACTIONS(5897), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -514053,7 +517317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6262), 29, + ACTIONS(5895), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -514083,15 +517347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [210302] = 5, + [208946] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5497), 1, + STATE(5476), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6300), 9, + ACTIONS(5901), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -514101,7 +517365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6298), 29, + ACTIONS(5899), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -514131,15 +517395,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [210355] = 5, + [208999] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5498), 1, + STATE(5477), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6312), 9, + ACTIONS(5905), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -514149,7 +517413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6310), 29, + ACTIONS(5903), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -514179,15 +517443,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [210408] = 5, + [209052] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5499), 1, + STATE(5478), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5802), 9, + ACTIONS(5749), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -514197,7 +517461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5800), 29, + ACTIONS(5747), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -514227,82 +517491,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [210461] = 23, + [209105] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7775), 1, + ACTIONS(7113), 1, anon_sym_DOT_DOT, - ACTIONS(7777), 1, + ACTIONS(7115), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7781), 1, + ACTIONS(7119), 1, anon_sym_PIPE, - ACTIONS(7783), 1, + ACTIONS(7121), 1, anon_sym_CARET, - ACTIONS(7787), 1, + ACTIONS(7125), 1, anon_sym_EQ_EQ, - ACTIONS(7793), 1, + ACTIONS(7131), 1, anon_sym_AMP_STAR, - ACTIONS(7797), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7799), 1, + ACTIONS(7137), 1, anon_sym_QMARK, - ACTIONS(7801), 1, + ACTIONS(7139), 1, anon_sym_AMP_AMP, - ACTIONS(7803), 1, + ACTIONS(7141), 1, anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, + ACTIONS(7143), 1, sym__start_of_index_operator, - ACTIONS(7811), 1, + ACTIONS(7149), 1, sym_binary_ampersand, - STATE(5500), 1, + ACTIONS(7993), 1, + anon_sym_COMMA, + STATE(5479), 1, sym_heredoc_body, + STATE(9320), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, + ACTIONS(7123), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7791), 2, + ACTIONS(7129), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, + ACTIONS(7133), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, + ACTIONS(5587), 3, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_do, + ACTIONS(7117), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7789), 4, + ACTIONS(7127), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, + ACTIONS(7147), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5708), 5, - sym__start_of_brace_block, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_do, - [210550] = 5, + [209198] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5501), 1, + ACTIONS(7995), 1, + anon_sym_COMMA, + STATE(5480), 1, sym_heredoc_body, + STATE(5483), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5826), 9, - anon_sym_RBRACK, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -514311,7 +517580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5824), 29, + ACTIONS(5587), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -514324,7 +517593,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -514337,25 +517605,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [210603] = 8, + [209255] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2701), 1, - sym__string_literal_start, - STATE(5502), 1, + ACTIONS(7113), 1, + anon_sym_DOT_DOT, + ACTIONS(7115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7119), 1, + anon_sym_PIPE, + ACTIONS(7121), 1, + anon_sym_CARET, + ACTIONS(7125), 1, + anon_sym_EQ_EQ, + ACTIONS(7131), 1, + anon_sym_AMP_STAR, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, + anon_sym_AMP_AMP, + ACTIONS(7141), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7149), 1, + sym_binary_ampersand, + ACTIONS(7997), 1, + anon_sym_COMMA, + STATE(5481), 1, sym_heredoc_body, - STATE(5562), 1, - aux_sym_chained_string_repeat1, - STATE(6309), 1, - sym_string, + STATE(9259), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7123), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7129), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5631), 3, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_do, + ACTIONS(7117), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7127), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7145), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7147), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [209348] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7999), 1, + anon_sym_COMMA, + STATE(5482), 1, + sym_heredoc_body, + STATE(5484), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5490), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -514364,9 +517698,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5488), 27, + ACTIONS(5631), 28, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -514377,7 +517711,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -514392,16 +517725,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [210662] = 5, + anon_sym_COLON2, + anon_sym_do, + [209405] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5503), 1, + ACTIONS(7999), 1, + anon_sym_COMMA, + STATE(5483), 1, sym_heredoc_body, + STATE(5708), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 9, - anon_sym_RBRACK, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -514410,7 +517748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5856), 29, + ACTIONS(5631), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -514423,7 +517761,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -514436,20 +517773,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [210715] = 5, + [209462] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5504), 1, + ACTIONS(8001), 1, + anon_sym_COMMA, + STATE(5484), 1, sym_heredoc_body, + STATE(5708), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5862), 9, - anon_sym_RBRACK, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -514458,7 +517798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5860), 29, + ACTIONS(5637), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -514471,7 +517811,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -514484,33 +517823,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [210768] = 12, + [209519] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, + ACTIONS(8003), 1, + sym_identifier, + ACTIONS(8009), 1, sym__constant_segment, - ACTIONS(8040), 1, + ACTIONS(8011), 1, anon_sym_COLON_COLON, - ACTIONS(8046), 1, - sym_identifier, - ACTIONS(8052), 1, + ACTIONS(8013), 1, sym_identifier_method_call, - ACTIONS(8054), 1, + ACTIONS(8015), 1, sym_self, - STATE(2032), 1, - sym__operator_token, - STATE(5505), 1, + STATE(5485), 1, sym_heredoc_body, - STATE(11910), 1, + STATE(7797), 1, + sym__operator_token, + STATE(11712), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8048), 10, + ACTIONS(8005), 10, anon_sym_LT, anon_sym_STAR, anon_sym_SLASH2, @@ -514521,7 +517860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_RBRACK, anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(8050), 21, + ACTIONS(8007), 21, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH_SLASH, @@ -514543,15 +517882,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_PLUS, anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [210835] = 5, + [209586] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5506), 1, + STATE(5486), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5866), 9, + ACTIONS(5921), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -514561,7 +517900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5864), 29, + ACTIONS(5919), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -514591,21 +517930,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [210888] = 8, + [209639] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(8056), 1, - anon_sym_DASH_GT, - STATE(5507), 1, + STATE(5487), 1, sym_heredoc_body, - STATE(10255), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(5927), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -514614,10 +517948,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 26, + ACTIONS(5925), 29, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -514628,6 +517961,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -514640,17 +517974,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [210947] = 5, + anon_sym_do, + [209692] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5508), 1, + STATE(5488), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 10, + ACTIONS(5931), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -514660,8 +517996,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4595), 28, + ACTIONS(5929), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -514675,7 +518011,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -514690,74 +518025,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [211000] = 15, + anon_sym_do, + [209745] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8058), 1, - anon_sym_LPAREN, - ACTIONS(8060), 1, - anon_sym_DASH_GT, - ACTIONS(8063), 1, - anon_sym_typeof, - ACTIONS(8065), 1, - sym__constant_segment, - ACTIONS(8067), 1, - anon_sym_COLON_COLON, - ACTIONS(8071), 1, - sym__start_of_tuple_type, - ACTIONS(8073), 1, - sym__start_of_named_tuple_type, - STATE(5509), 1, + STATE(5489), 1, sym_heredoc_body, - STATE(7836), 1, - sym_constant, - STATE(7841), 1, - sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8069), 2, - sym_self, - sym_underscore_type, - STATE(7855), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4325), 15, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_end, - anon_sym_STAR, + ACTIONS(6251), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_forall, + ACTIONS(6249), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [211073] = 5, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [209798] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5510), 1, + ACTIONS(2750), 1, + sym__string_literal_start, + STATE(5490), 1, sym_heredoc_body, + STATE(5601), 1, + aux_sym_chained_string_repeat1, + STATE(6330), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5899), 9, - anon_sym_RBRACK, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -514766,9 +518097,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5897), 29, - sym__start_of_brace_block, + ACTIONS(135), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -514792,19 +518123,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [211126] = 5, + [209857] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5511), 1, + STATE(5491), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5919), 9, + ACTIONS(5935), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -514814,7 +518143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5917), 29, + ACTIONS(5933), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -514844,15 +518173,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [211179] = 5, + [209910] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5512), 1, + STATE(5492), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5927), 9, + ACTIONS(5939), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -514862,7 +518191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5925), 29, + ACTIONS(5937), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -514892,132 +518221,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [211232] = 15, + [209963] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8058), 1, - anon_sym_LPAREN, - ACTIONS(8063), 1, - anon_sym_typeof, - ACTIONS(8065), 1, - sym__constant_segment, - ACTIONS(8067), 1, - anon_sym_COLON_COLON, - ACTIONS(8071), 1, - sym__start_of_tuple_type, - ACTIONS(8073), 1, - sym__start_of_named_tuple_type, - ACTIONS(8075), 1, - anon_sym_DASH_GT, - STATE(5513), 1, + STATE(5493), 1, sym_heredoc_body, - STATE(7836), 1, - sym_constant, - STATE(7849), 1, - sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8069), 2, - sym_self, - sym_underscore_type, - STATE(7855), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4353), 15, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_end, - anon_sym_STAR, + ACTIONS(5947), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - [211305] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8058), 1, - anon_sym_LPAREN, - ACTIONS(8063), 1, - anon_sym_typeof, - ACTIONS(8065), 1, - sym__constant_segment, - ACTIONS(8067), 1, - anon_sym_COLON_COLON, - ACTIONS(8071), 1, - sym__start_of_tuple_type, - ACTIONS(8073), 1, - sym__start_of_named_tuple_type, - ACTIONS(8078), 1, - anon_sym_DASH_GT, - STATE(5514), 1, - sym_heredoc_body, - STATE(7836), 1, - sym_constant, - STATE(7838), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8069), 2, - sym_self, - sym_underscore_type, - STATE(7855), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4375), 15, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(5945), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [211378] = 5, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [210016] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5515), 1, + ACTIONS(8017), 1, + anon_sym_of, + STATE(5494), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5931), 9, - anon_sym_RBRACK, + ACTIONS(5733), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -515026,9 +518288,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5929), 29, + ACTIONS(5729), 29, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -515052,19 +518315,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [211431] = 5, + [210071] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5516), 1, + STATE(5495), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6164), 9, + ACTIONS(6051), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -515074,7 +518336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6162), 29, + ACTIONS(6049), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -515104,17 +518366,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [211484] = 6, + [210124] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7325), 1, - anon_sym_LPAREN2, - STATE(5517), 1, + STATE(5496), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6375), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -515123,10 +518384,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 29, + ACTIONS(6373), 29, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -515150,20 +518410,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [211539] = 6, + [210177] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8081), 1, - anon_sym_EQ, - STATE(5518), 1, + STATE(5497), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, + ACTIONS(6102), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -515172,7 +518432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 29, + ACTIONS(6092), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -515198,25 +518458,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [211594] = 8, + [210230] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2701), 1, - sym__string_literal_start, - STATE(5502), 1, - aux_sym_chained_string_repeat1, - STATE(5519), 1, + ACTIONS(8019), 1, + sym_regex_modifier, + STATE(5498), 1, sym_heredoc_body, - STATE(6309), 1, - sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -515225,9 +518481,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 27, + ACTIONS(5747), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -515238,6 +518494,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -515253,63 +518510,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [211653] = 5, + anon_sym_then, + [210285] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5520), 1, + ACTIONS(8021), 1, + anon_sym_LPAREN, + ACTIONS(8023), 1, + anon_sym_DASH_GT, + ACTIONS(8026), 1, + anon_sym_typeof, + ACTIONS(8028), 1, + sym__constant_segment, + ACTIONS(8030), 1, + anon_sym_COLON_COLON, + ACTIONS(8034), 1, + sym__start_of_tuple_type, + ACTIONS(8036), 1, + sym__start_of_named_tuple_type, + STATE(5499), 1, sym_heredoc_body, + STATE(7868), 1, + sym__type, + STATE(7870), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5654), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5652), 30, + ACTIONS(8032), 2, + sym_self, + sym_underscore_type, + STATE(7900), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4412), 15, sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_COLON, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [211706] = 5, + [210358] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5521), 1, + STATE(5500), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 9, + ACTIONS(6075), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -515319,7 +518587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 29, + ACTIONS(6073), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -515349,15 +518617,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [211759] = 5, + [210411] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5522), 1, + STATE(5501), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5770), 9, + ACTIONS(6291), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -515367,7 +518635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5768), 29, + ACTIONS(6289), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -515397,16 +518665,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [211812] = 5, + [210464] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5523), 1, + ACTIONS(8038), 1, + anon_sym_of, + STATE(5502), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5891), 9, - anon_sym_RBRACK, + ACTIONS(5757), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -515415,9 +518684,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5889), 29, + ACTIONS(5753), 29, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -515441,199 +518711,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [211865] = 7, + [210519] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7877), 1, + ACTIONS(7143), 1, sym__start_of_index_operator, - STATE(5524), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5895), 8, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5893), 28, - sym__start_of_brace_block, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, + ACTIONS(7995), 1, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [211922] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7775), 1, + ACTIONS(8040), 1, anon_sym_DOT_DOT, - ACTIONS(7777), 1, + ACTIONS(8042), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7781), 1, + ACTIONS(8046), 1, anon_sym_PIPE, - ACTIONS(7783), 1, + ACTIONS(8048), 1, anon_sym_CARET, - ACTIONS(7787), 1, + ACTIONS(8052), 1, anon_sym_EQ_EQ, - ACTIONS(7793), 1, + ACTIONS(8058), 1, anon_sym_AMP_STAR, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(7799), 1, + ACTIONS(8062), 1, anon_sym_QMARK, - ACTIONS(7801), 1, + ACTIONS(8064), 1, anon_sym_AMP_AMP, - ACTIONS(7803), 1, + ACTIONS(8066), 1, anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, - sym__start_of_index_operator, - ACTIONS(7811), 1, + ACTIONS(8072), 1, sym_binary_ampersand, - STATE(5525), 1, + STATE(5483), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5503), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, + ACTIONS(8050), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7791), 2, + ACTIONS(8056), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, + ACTIONS(8060), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, + ACTIONS(5587), 3, + sym__start_of_brace_block, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8044), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7789), 4, + ACTIONS(8054), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, + ACTIONS(8070), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6256), 5, - sym__start_of_brace_block, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_do, - [212011] = 21, + [210612] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7853), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(7999), 1, + anon_sym_COMMA, + ACTIONS(8040), 1, + anon_sym_DOT_DOT, + ACTIONS(8042), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8046), 1, anon_sym_PIPE, - ACTIONS(7855), 1, + ACTIONS(8048), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(8052), 1, anon_sym_EQ_EQ, - ACTIONS(7865), 1, + ACTIONS(8058), 1, anon_sym_AMP_STAR, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7873), 1, + ACTIONS(8062), 1, + anon_sym_QMARK, + ACTIONS(8064), 1, anon_sym_AMP_AMP, - ACTIONS(7875), 1, + ACTIONS(8066), 1, anon_sym_PIPE_PIPE, - ACTIONS(7877), 1, - sym__start_of_index_operator, - ACTIONS(7883), 1, + ACTIONS(8072), 1, sym_binary_ampersand, - STATE(5526), 1, + STATE(5484), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5504), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5923), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7857), 2, + ACTIONS(8050), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7863), 2, + ACTIONS(8056), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7867), 2, + ACTIONS(8060), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7851), 3, + ACTIONS(5631), 3, + sym__start_of_brace_block, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8044), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7861), 4, + ACTIONS(8054), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7879), 4, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7881), 4, + ACTIONS(8070), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5921), 6, + [210705] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5505), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6100), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6098), 29, sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - [212096] = 5, + [210758] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5527), 1, + STATE(5506), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5782), 9, + ACTIONS(6100), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -515643,7 +518916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5780), 29, + ACTIONS(6098), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -515673,15 +518946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [212149] = 5, + [210811] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5528), 1, + STATE(5507), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5854), 9, + ACTIONS(6106), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -515691,7 +518964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5852), 29, + ACTIONS(6104), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -515721,18 +518994,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [212202] = 6, + [210864] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8083), 1, - anon_sym_COMMA, + STATE(5508), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5529), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5713), 8, + ACTIONS(6114), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -515741,8 +519012,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 28, - sym__line_break, + ACTIONS(6112), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -515754,7 +519025,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -515767,18 +519038,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [212257] = 5, + anon_sym_do, + [210917] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5530), 1, + STATE(5509), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5935), 9, + ACTIONS(6283), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -515788,7 +519060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5933), 29, + ACTIONS(6281), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -515818,70 +519090,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [212310] = 12, + [210970] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(8086), 1, - sym_identifier, - ACTIONS(8092), 1, - sym_identifier_method_call, - ACTIONS(8094), 1, - sym_self, - STATE(5531), 1, + STATE(5510), 1, sym_heredoc_body, - STATE(7903), 1, - sym__operator_token, - STATE(11355), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8088), 10, + ACTIONS(6118), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(8090), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(6116), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_GT_GT, anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, - anon_sym_LBRACK_RBRACK_QMARK, - anon_sym_LBRACK_RBRACK_EQ, - anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_PLUS, - anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [212377] = 5, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [211023] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5532), 1, + STATE(5511), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 9, + ACTIONS(6122), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -515891,7 +519156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 29, + ACTIONS(6120), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -515921,15 +519186,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [212430] = 5, + [211076] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5533), 1, + STATE(5512), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 9, + ACTIONS(6331), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -515939,7 +519204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 29, + ACTIONS(6329), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -515969,15 +519234,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [212483] = 5, + [211129] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5534), 1, + STATE(5513), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 9, + ACTIONS(6335), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -515987,7 +519252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 29, + ACTIONS(6333), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -516017,21 +519282,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [212536] = 8, + [211182] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, + STATE(5514), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6339), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6337), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, - ACTIONS(8056), 1, - anon_sym_DASH_GT, - STATE(5535), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [211235] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5515), 1, sym_heredoc_body, - STATE(10255), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(6343), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -516040,10 +519348,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 26, + ACTIONS(6341), 29, + sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -516054,6 +519361,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -516066,17 +519374,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [212595] = 5, + anon_sym_do, + [211288] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5536), 1, + STATE(5516), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6134), 9, + ACTIONS(5553), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -516086,7 +519396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6132), 29, + ACTIONS(5551), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -516116,19 +519426,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [212648] = 7, + [211341] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8096), 1, + STATE(5517), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6462), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6460), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, - STATE(5537), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [211394] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5518), 1, sym_heredoc_body, - STATE(5649), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(6126), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -516137,10 +519492,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 28, + ACTIONS(6124), 29, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -516151,6 +519505,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -516163,18 +519518,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [212705] = 5, + [211447] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5538), 1, + STATE(5519), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5945), 9, + ACTIONS(6446), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -516184,7 +519540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5943), 29, + ACTIONS(6444), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -516214,15 +519570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [212758] = 5, + [211500] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5539), 1, + STATE(5520), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 9, + ACTIONS(6351), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -516232,7 +519588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5955), 29, + ACTIONS(6349), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -516262,9 +519618,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [212811] = 24, + [211553] = 24, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5699), 1, + anon_sym_RBRACK, ACTIONS(7847), 1, anon_sym_DOT_DOT, ACTIONS(7849), 1, @@ -516289,9 +519647,7 @@ static const uint16_t ts_small_parse_table[] = { sym__start_of_index_operator, ACTIONS(7883), 1, sym_binary_ampersand, - ACTIONS(8098), 1, - anon_sym_RBRACK, - STATE(5540), 1, + STATE(5521), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -516309,7 +519665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6144), 4, + ACTIONS(5694), 4, sym__start_of_brace_block, anon_sym_COMMA, anon_sym_RBRACK_QMARK, @@ -516329,15 +519685,15 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [212902] = 5, + [211644] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5541), 1, + STATE(5522), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5786), 9, + ACTIONS(5699), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -516347,7 +519703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5784), 29, + ACTIONS(5694), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -516377,81 +519733,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [212955] = 23, + [211697] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7775), 1, + STATE(5523), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6355), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7777), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7781), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7783), 1, - anon_sym_CARET, - ACTIONS(7787), 1, anon_sym_EQ_EQ, - ACTIONS(7793), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7797), 1, anon_sym_DOT, - ACTIONS(7799), 1, - anon_sym_QMARK, - ACTIONS(7801), 1, - anon_sym_AMP_AMP, - ACTIONS(7803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, + ACTIONS(6353), 29, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(7811), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - STATE(5542), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7785), 2, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7791), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [211750] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5524), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6130), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7789), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6128), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6230), 5, - sym__start_of_brace_block, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - [213044] = 5, + [211803] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5543), 1, + STATE(5525), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5790), 9, + ACTIONS(6191), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -516461,7 +519847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5788), 29, + ACTIONS(6189), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -516491,15 +519877,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213097] = 5, + [211856] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5544), 1, + STATE(5526), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5794), 9, + ACTIONS(6191), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -516509,7 +519895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5792), 29, + ACTIONS(6189), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -516539,147 +519925,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213150] = 23, + [211909] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7775), 1, + STATE(5527), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5685), 8, anon_sym_DOT_DOT, - ACTIONS(7777), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7781), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7783), 1, - anon_sym_CARET, - ACTIONS(7787), 1, anon_sym_EQ_EQ, - ACTIONS(7793), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7797), 1, anon_sym_DOT, - ACTIONS(7799), 1, - anon_sym_QMARK, - ACTIONS(7801), 1, - anon_sym_AMP_AMP, - ACTIONS(7803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, + ACTIONS(5683), 30, + sym__line_break, sym__start_of_index_operator, - ACTIONS(7811), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - STATE(5545), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7785), 2, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7791), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [211962] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5528), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6191), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7789), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6189), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6144), 5, - sym__start_of_brace_block, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_do, - [213239] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7775), 1, - anon_sym_DOT_DOT, - ACTIONS(7777), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7781), 1, - anon_sym_PIPE, - ACTIONS(7783), 1, anon_sym_CARET, - ACTIONS(7787), 1, - anon_sym_EQ_EQ, - ACTIONS(7793), 1, - anon_sym_AMP_STAR, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(7799), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7801), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(7803), 1, anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, - sym__start_of_index_operator, - ACTIONS(7811), 1, - sym_binary_ampersand, - STATE(5546), 1, + anon_sym_do, + [212015] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5529), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7791), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, + ACTIONS(5837), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7789), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5835), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6152), 5, - sym__start_of_brace_block, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - [213328] = 5, + [212068] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5547), 1, + STATE(5530), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5976), 9, + ACTIONS(6059), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -516689,7 +520087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5974), 29, + ACTIONS(6057), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -516719,15 +520117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213381] = 5, + [212121] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5548), 1, + STATE(5531), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5980), 9, + ACTIONS(6470), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -516737,7 +520135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5978), 29, + ACTIONS(6468), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -516767,15 +520165,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213434] = 5, + [212174] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5549), 1, + STATE(5532), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5798), 9, + ACTIONS(6383), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -516785,7 +520183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5796), 29, + ACTIONS(6381), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -516815,82 +520213,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213487] = 24, + [212227] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7847), 1, + STATE(5533), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6450), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7849), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7853), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7855), 1, - anon_sym_CARET, - ACTIONS(7859), 1, anon_sym_EQ_EQ, - ACTIONS(7865), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(7871), 1, - anon_sym_QMARK, - ACTIONS(7873), 1, - anon_sym_AMP_AMP, - ACTIONS(7875), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7877), 1, + ACTIONS(6448), 29, + sym__start_of_brace_block, sym__start_of_index_operator, - ACTIONS(7883), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - ACTIONS(8100), 1, - anon_sym_RBRACK, - STATE(5550), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7857), 2, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7863), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7867), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7851), 3, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [212280] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5534), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5805), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6152), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5803), 29, sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(7861), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7879), 4, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7881), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [213578] = 5, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [212333] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5551), 1, + STATE(5535), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6016), 9, + ACTIONS(5783), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -516900,7 +520327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6014), 29, + ACTIONS(5781), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -516930,15 +520357,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213631] = 5, + [212386] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5552), 1, + STATE(5536), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5806), 9, + ACTIONS(5845), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -516948,7 +520375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5804), 29, + ACTIONS(5843), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -516978,15 +520405,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213684] = 5, + [212439] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5553), 1, + STATE(5537), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6126), 9, + ACTIONS(6179), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -516996,7 +520423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6124), 29, + ACTIONS(6177), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -517026,15 +520453,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213737] = 5, + [212492] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5554), 1, + STATE(5538), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5814), 9, + ACTIONS(6211), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -517044,7 +520471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5812), 29, + ACTIONS(6209), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -517074,15 +520501,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213790] = 5, + [212545] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5555), 1, + STATE(5539), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5984), 9, + ACTIONS(6191), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -517092,7 +520519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5982), 29, + ACTIONS(6189), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -517122,15 +520549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213843] = 5, + [212598] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5556), 1, + STATE(5540), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5822), 9, + ACTIONS(6219), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -517140,7 +520567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5820), 29, + ACTIONS(6217), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -517170,15 +520597,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213896] = 5, + [212651] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5557), 1, + STATE(5541), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5996), 9, + ACTIONS(5833), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -517188,7 +520615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5994), 29, + ACTIONS(5831), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -517218,18 +520645,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [213949] = 6, + [212704] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8102), 1, - anon_sym_COMMA, + STATE(5542), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5558), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5713), 8, + ACTIONS(5841), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -517238,7 +520663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 28, + ACTIONS(5839), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -517251,6 +520676,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -517263,23 +520689,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [214004] = 7, + [212757] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7877), 1, - sym__start_of_index_operator, - STATE(5559), 1, + STATE(5543), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6000), 8, + ACTIONS(5889), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -517288,8 +520710,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5998), 28, + anon_sym_DOT, + ACTIONS(5887), 29, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -517317,70 +520741,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [214061] = 12, + [212810] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(8105), 1, - sym_identifier, - ACTIONS(8111), 1, - sym_identifier_method_call, - ACTIONS(8113), 1, - sym_self, - STATE(5560), 1, - sym_heredoc_body, - STATE(8074), 1, - sym__operator_token, - STATE(11206), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8107), 10, - anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, - anon_sym_AMP_STAR, - ACTIONS(8109), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_LBRACK_RBRACK_QMARK, - anon_sym_LBRACK_RBRACK_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_PLUS, - anon_sym_AMP_DASH, - anon_sym_AMP_STAR_STAR, - [214128] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5561), 1, + STATE(5544), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5830), 9, + ACTIONS(5913), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -517390,7 +520759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5828), 29, + ACTIONS(5911), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -517420,133 +520789,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [214181] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8115), 1, - sym__string_literal_start, - STATE(6309), 1, - sym_string, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(5562), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5499), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5497), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [214238] = 21, + [212863] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5941), 1, - anon_sym_DOT_DOT, - ACTIONS(7781), 1, - anon_sym_PIPE, - ACTIONS(7783), 1, - anon_sym_CARET, - ACTIONS(7787), 1, - anon_sym_EQ_EQ, - ACTIONS(7793), 1, - anon_sym_AMP_STAR, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(7801), 1, - anon_sym_AMP_AMP, - ACTIONS(7803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, - sym__start_of_index_operator, - ACTIONS(7811), 1, - sym_binary_ampersand, - STATE(5563), 1, + ACTIONS(7099), 1, + anon_sym_typeof, + ACTIONS(7101), 1, + sym__constant_segment, + ACTIONS(7103), 1, + anon_sym_COLON_COLON, + ACTIONS(7107), 1, + sym__start_of_tuple_type, + ACTIONS(7109), 1, + sym__start_of_named_tuple_type, + ACTIONS(7273), 1, + anon_sym_LPAREN, + ACTIONS(7275), 1, + anon_sym_DASH_GT, + STATE(5545), 1, sym_heredoc_body, + STATE(7692), 1, + sym_constant, + STATE(7781), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7791), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7789), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7807), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7809), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5939), 7, - sym__start_of_brace_block, + ACTIONS(7105), 2, + sym_self, + sym_underscore_type, + STATE(7763), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4446), 15, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_do, - [214323] = 7, + anon_sym_end, + anon_sym_forall, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [212936] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7877), 1, - sym__start_of_index_operator, - STATE(5564), 1, + STATE(5546), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6004), 8, + ACTIONS(5951), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -517555,8 +520864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6002), 28, + anon_sym_DOT, + ACTIONS(5949), 29, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -517584,15 +520895,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [214380] = 5, + [212989] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5565), 1, + STATE(5547), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5842), 9, + ACTIONS(6347), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -517602,7 +520913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5840), 29, + ACTIONS(6345), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -517632,15 +520943,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [214433] = 5, + [213042] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5566), 1, + STATE(5548), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 9, + ACTIONS(5959), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -517650,7 +520961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5872), 29, + ACTIONS(5957), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -517680,15 +520991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [214486] = 5, + [213095] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5567), 1, + STATE(5549), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 9, + ACTIONS(6009), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -517698,7 +521009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 29, + ACTIONS(6007), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -517728,15 +521039,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [214539] = 5, + [213148] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5568), 1, + STATE(5550), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 9, + ACTIONS(5829), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -517746,7 +521057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 29, + ACTIONS(5827), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -517776,15 +521087,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [214592] = 5, + [213201] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5569), 1, + STATE(5551), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6122), 9, + ACTIONS(6175), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -517794,7 +521105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6120), 29, + ACTIONS(6173), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -517824,15 +521135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [214645] = 5, + [213254] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5570), 1, + STATE(5552), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 9, + ACTIONS(4638), 10, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -517842,8 +521153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 29, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4640), 28, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -517857,6 +521168,7 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -517871,16 +521183,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [214698] = 5, + [213307] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5571), 1, + STATE(5553), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 9, + ACTIONS(6458), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -517890,7 +521201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5868), 29, + ACTIONS(6456), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -517920,15 +521231,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [214751] = 5, + [213360] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5572), 1, + STATE(5554), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 9, + ACTIONS(5973), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -517938,7 +521249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 29, + ACTIONS(5971), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -517968,15 +521279,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [214804] = 5, + [213413] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5573), 1, + STATE(5555), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6024), 9, + ACTIONS(6279), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -517986,7 +521297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6022), 29, + ACTIONS(6277), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -518016,15 +521327,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [214857] = 5, + [213466] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5574), 1, + STATE(5556), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6292), 9, + ACTIONS(5861), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -518034,7 +521345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6290), 29, + ACTIONS(5859), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -518064,15 +521375,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [214910] = 5, + [213519] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5575), 1, + STATE(5557), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6212), 9, + ACTIONS(5893), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -518082,7 +521393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6210), 29, + ACTIONS(5891), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -518112,15 +521423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [214963] = 5, + [213572] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5576), 1, + STATE(5558), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6308), 9, + ACTIONS(5989), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -518130,7 +521441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6306), 29, + ACTIONS(5987), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -518160,15 +521471,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [215016] = 5, + [213625] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5577), 1, + STATE(5559), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6008), 9, + ACTIONS(6227), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -518178,7 +521489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6006), 29, + ACTIONS(6225), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -518208,15 +521519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [215069] = 5, + [213678] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5578), 1, + STATE(5560), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6012), 9, + ACTIONS(6271), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -518226,7 +521537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6010), 29, + ACTIONS(6269), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -518256,15 +521567,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [215122] = 5, + [213731] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5579), 1, + STATE(5561), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5581), 8, + ACTIONS(6275), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -518273,8 +521585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5579), 30, - sym__line_break, + ACTIONS(6273), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -518286,7 +521598,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -518299,20 +521610,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [215175] = 5, + anon_sym_do, + [213784] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5580), 1, + STATE(5562), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6216), 9, + ACTIONS(6307), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -518322,7 +521633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6214), 29, + ACTIONS(6305), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -518352,15 +521663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [215228] = 5, + [213837] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5581), 1, + STATE(5563), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6316), 9, + ACTIONS(6319), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -518370,7 +521681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6314), 29, + ACTIONS(6317), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -518400,15 +521711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [215281] = 5, + [213890] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5582), 1, + STATE(5564), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 9, + ACTIONS(5777), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -518418,7 +521729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 29, + ACTIONS(5775), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -518448,15 +521759,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [215334] = 5, + [213943] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5583), 1, + STATE(5565), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6304), 9, + ACTIONS(5857), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -518466,7 +521777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6302), 29, + ACTIONS(5855), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -518496,15 +521807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [215387] = 5, + [213996] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5584), 1, + STATE(5566), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5903), 9, + ACTIONS(5909), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -518514,7 +521825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5901), 29, + ACTIONS(5907), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -518544,21 +521855,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [215440] = 8, + [214049] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3072), 1, - sym__string_literal_start, - STATE(3839), 1, - sym_string, - STATE(5585), 1, + STATE(5567), 1, sym_heredoc_body, - STATE(5645), 1, - aux_sym_chained_string_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5969), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -518567,7 +521873,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 27, + ACTIONS(5967), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -518592,22 +521899,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [215499] = 7, + anon_sym_do, + [214102] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7983), 1, - anon_sym_COMMA, - STATE(5444), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5586), 1, + STATE(5568), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(5997), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -518616,10 +521921,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 28, + ACTIONS(5995), 29, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -518630,6 +521934,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -518642,18 +521947,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [215556] = 5, + [214155] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5587), 1, + STATE(5569), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6404), 9, + ACTIONS(6013), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -518663,7 +521969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6402), 29, + ACTIONS(6011), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -518693,112 +521999,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [215609] = 6, + [214208] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8118), 1, - sym_regex_modifier, - STATE(5588), 1, + ACTIONS(7847), 1, + anon_sym_DOT_DOT, + ACTIONS(7849), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7853), 1, + anon_sym_PIPE, + ACTIONS(7855), 1, + anon_sym_CARET, + ACTIONS(7859), 1, + anon_sym_EQ_EQ, + ACTIONS(7865), 1, + anon_sym_AMP_STAR, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7871), 1, + anon_sym_QMARK, + ACTIONS(7873), 1, + anon_sym_AMP_AMP, + ACTIONS(7875), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7877), 1, + sym__start_of_index_operator, + ACTIONS(7883), 1, + sym_binary_ampersand, + ACTIONS(8074), 1, + anon_sym_RBRACK, + STATE(5570), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, - anon_sym_DOT_DOT, + ACTIONS(7857), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7863), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7851), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5662), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(5923), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(7861), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7879), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7881), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + [214299] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7847), 1, + anon_sym_DOT_DOT, + ACTIONS(7849), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7853), 1, + anon_sym_PIPE, + ACTIONS(7855), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7859), 1, + anon_sym_EQ_EQ, + ACTIONS(7865), 1, + anon_sym_AMP_STAR, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7871), 1, anon_sym_QMARK, + ACTIONS(7873), 1, anon_sym_AMP_AMP, + ACTIONS(7875), 1, anon_sym_PIPE_PIPE, - anon_sym_then, - [215664] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5589), 1, + ACTIONS(7877), 1, + sym__start_of_index_operator, + ACTIONS(7883), 1, + sym_binary_ampersand, + ACTIONS(8076), 1, + anon_sym_RBRACK, + STATE(5571), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5810), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7857), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7863), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7851), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5808), 29, + ACTIONS(5773), 4, sym__start_of_brace_block, - sym__start_of_index_operator, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(7861), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7879), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7881), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [215717] = 5, + [214390] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5590), 1, + STATE(5572), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5818), 9, + ACTIONS(6231), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -518808,7 +522151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5816), 29, + ACTIONS(6229), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -518838,15 +522181,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [215770] = 5, + [214443] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5591), 1, + STATE(5573), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5846), 9, + ACTIONS(6235), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -518856,7 +522199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5844), 29, + ACTIONS(6233), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -518886,15 +522229,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [215823] = 5, + [214496] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5592), 1, + STATE(5574), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 9, + ACTIONS(6239), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -518904,7 +522247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5947), 29, + ACTIONS(6237), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -518934,15 +522277,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [215876] = 5, + [214549] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5593), 1, + STATE(5575), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5907), 9, + ACTIONS(6243), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -518952,7 +522295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5905), 29, + ACTIONS(6241), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -518982,65 +522325,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [215929] = 5, + [214602] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5594), 1, + ACTIONS(7853), 1, + anon_sym_PIPE, + ACTIONS(7855), 1, + anon_sym_CARET, + ACTIONS(7859), 1, + anon_sym_EQ_EQ, + ACTIONS(7865), 1, + anon_sym_AMP_STAR, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7873), 1, + anon_sym_AMP_AMP, + ACTIONS(7875), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7877), 1, + sym__start_of_index_operator, + ACTIONS(7883), 1, + sym_binary_ampersand, + STATE(5576), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5512), 9, + ACTIONS(5977), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, + ACTIONS(7857), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7863), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7851), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5510), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7861), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7879), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7881), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5975), 6, + sym__start_of_brace_block, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, - [215982] = 6, + [214687] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8120), 1, - sym_regex_modifier, - STATE(5595), 1, + STATE(5577), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5633), 8, + ACTIONS(6247), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -519049,10 +522407,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5631), 29, + ACTIONS(6245), 29, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -519076,18 +522433,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [216037] = 5, + [214740] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5596), 1, + STATE(5578), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6192), 9, + ACTIONS(6255), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -519097,7 +522455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6190), 29, + ACTIONS(6253), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -519127,17 +522485,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [216090] = 6, + [214793] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8122), 1, - anon_sym_EQ, - STATE(5597), 1, + STATE(5579), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, + ACTIONS(6267), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -519146,10 +522503,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 29, + ACTIONS(6265), 29, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -519173,19 +522529,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [216145] = 5, + [214846] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5598), 1, + ACTIONS(8078), 1, + sym_regex_modifier, + STATE(5580), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5915), 9, - anon_sym_RBRACK, + ACTIONS(5662), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -519194,8 +522552,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5913), 29, - sym__start_of_brace_block, + ACTIONS(5660), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -519207,6 +522565,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -519220,20 +522579,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [216198] = 5, + anon_sym_then, + [214901] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5599), 1, + ACTIONS(8080), 1, + anon_sym_of, + STATE(5581), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5834), 9, - anon_sym_RBRACK, + ACTIONS(5714), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -519242,9 +522601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5832), 29, + ACTIONS(5710), 29, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -519268,20 +522628,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [216251] = 5, + [214956] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5600), 1, + ACTIONS(6102), 1, + anon_sym_RBRACK, + ACTIONS(7847), 1, + anon_sym_DOT_DOT, + ACTIONS(7849), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7853), 1, + anon_sym_PIPE, + ACTIONS(7855), 1, + anon_sym_CARET, + ACTIONS(7859), 1, + anon_sym_EQ_EQ, + ACTIONS(7865), 1, + anon_sym_AMP_STAR, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7871), 1, + anon_sym_QMARK, + ACTIONS(7873), 1, + anon_sym_AMP_AMP, + ACTIONS(7875), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7877), 1, + sym__start_of_index_operator, + ACTIONS(7883), 1, + sym_binary_ampersand, + STATE(5582), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5953), 9, - anon_sym_RBRACK, + ACTIONS(7857), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7863), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7851), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6092), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(7861), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7879), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7881), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [215047] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8082), 1, + anon_sym_EQ, + STATE(5583), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -519290,9 +522717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5951), 29, + ACTIONS(5761), 29, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -519316,15 +522744,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [216304] = 24, + [215102] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5713), 1, - anon_sym_RBRACK, ACTIONS(7847), 1, anon_sym_DOT_DOT, ACTIONS(7849), 1, @@ -519349,7 +522774,9 @@ static const uint16_t ts_small_parse_table[] = { sym__start_of_index_operator, ACTIONS(7883), 1, sym_binary_ampersand, - STATE(5601), 1, + ACTIONS(8084), 1, + anon_sym_RBRACK, + STATE(5584), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -519367,7 +522794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5708), 4, + ACTIONS(6193), 4, sym__start_of_brace_block, anon_sym_COMMA, anon_sym_RBRACK_QMARK, @@ -519387,63 +522814,96 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [216395] = 5, + [215193] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5602), 1, + ACTIONS(7847), 1, + anon_sym_DOT_DOT, + ACTIONS(7849), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7853), 1, + anon_sym_PIPE, + ACTIONS(7855), 1, + anon_sym_CARET, + ACTIONS(7859), 1, + anon_sym_EQ_EQ, + ACTIONS(7865), 1, + anon_sym_AMP_STAR, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7871), 1, + anon_sym_QMARK, + ACTIONS(7873), 1, + anon_sym_AMP_AMP, + ACTIONS(7875), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7877), 1, + sym__start_of_index_operator, + ACTIONS(7883), 1, + sym_binary_ampersand, + ACTIONS(8086), 1, + anon_sym_RBRACK, + STATE(5585), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5713), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7857), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7863), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7851), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5708), 29, + ACTIONS(6203), 4, sym__start_of_brace_block, - sym__start_of_index_operator, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(7861), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7879), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7881), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [216448] = 5, + [215284] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5603), 1, + ACTIONS(7865), 1, + anon_sym_AMP_STAR, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7877), 1, + sym__start_of_index_operator, + STATE(5586), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5961), 9, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7881), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6259), 7, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -519451,21 +522911,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5959), 29, + ACTIONS(6257), 22, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -519477,21 +522929,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [216501] = 5, + [215347] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5604), 1, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7877), 1, + sym__start_of_index_operator, + STATE(5587), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6130), 9, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6295), 8, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -519500,16 +522958,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6128), 29, + ACTIONS(6293), 26, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -519525,23 +522980,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [216554] = 6, + [215406] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8124), 1, - sym_regex_modifier, - STATE(5605), 1, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7877), 1, + sym__start_of_index_operator, + STATE(5588), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5679), 8, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -519549,17 +523009,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5677), 29, + ACTIONS(6313), 26, sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -519575,131 +523031,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [216609] = 5, + [215465] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5606), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6142), 9, - anon_sym_RBRACK, + ACTIONS(7113), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(7115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7119), 1, anon_sym_PIPE, + ACTIONS(7121), 1, + anon_sym_CARET, + ACTIONS(7125), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(7131), 1, anon_sym_AMP_STAR, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(6140), 29, - sym__start_of_brace_block, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, + anon_sym_AMP_AMP, + ACTIONS(7141), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7143), 1, sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, + ACTIONS(7149), 1, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, + ACTIONS(8088), 1, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, + STATE(5589), 1, + sym_heredoc_body, + STATE(9279), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7123), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7129), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7133), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5587), 3, + sym__start_of_brace_block, + anon_sym_RBRACE, + anon_sym_do, + ACTIONS(7117), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7127), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [216662] = 20, + ACTIONS(7145), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7147), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [215558] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6118), 1, + ACTIONS(7113), 1, anon_sym_DOT_DOT, - ACTIONS(7781), 1, + ACTIONS(7115), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7119), 1, anon_sym_PIPE, - ACTIONS(7783), 1, + ACTIONS(7121), 1, anon_sym_CARET, - ACTIONS(7787), 1, + ACTIONS(7125), 1, anon_sym_EQ_EQ, - ACTIONS(7793), 1, + ACTIONS(7131), 1, anon_sym_AMP_STAR, - ACTIONS(7797), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7801), 1, + ACTIONS(7137), 1, + anon_sym_QMARK, + ACTIONS(7139), 1, anon_sym_AMP_AMP, - ACTIONS(7805), 1, + ACTIONS(7141), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7143), 1, sym__start_of_index_operator, - ACTIONS(7811), 1, + ACTIONS(7149), 1, sym_binary_ampersand, - STATE(5607), 1, + ACTIONS(8090), 1, + anon_sym_COMMA, + STATE(5590), 1, sym_heredoc_body, + STATE(9280), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, + ACTIONS(7123), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7791), 2, + ACTIONS(7129), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, + ACTIONS(7133), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, + ACTIONS(5631), 3, + sym__start_of_brace_block, + anon_sym_RBRACE, + anon_sym_do, + ACTIONS(7117), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7789), 4, + ACTIONS(7127), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + ACTIONS(7145), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, + ACTIONS(7147), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6116), 8, - sym__start_of_brace_block, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_do, - [216745] = 5, + [215651] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5608), 1, + ACTIONS(7865), 1, + anon_sym_AMP_STAR, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7877), 1, + sym__start_of_index_operator, + STATE(5591), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6036), 9, + ACTIONS(7857), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7879), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7881), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6327), 7, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -519707,261 +523210,451 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6034), 29, + ACTIONS(6325), 16, sym__start_of_brace_block, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [216798] = 25, + [215718] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7985), 1, - anon_sym_DOT_DOT, - ACTIONS(7987), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7991), 1, + ACTIONS(7853), 1, anon_sym_PIPE, - ACTIONS(7993), 1, + ACTIONS(7855), 1, anon_sym_CARET, - ACTIONS(7997), 1, + ACTIONS(7859), 1, anon_sym_EQ_EQ, - ACTIONS(8003), 1, + ACTIONS(7865), 1, anon_sym_AMP_STAR, - ACTIONS(8007), 1, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(8009), 1, - anon_sym_QMARK, - ACTIONS(8011), 1, + ACTIONS(7873), 1, anon_sym_AMP_AMP, - ACTIONS(8013), 1, + ACTIONS(7875), 1, anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, + ACTIONS(7877), 1, sym__start_of_index_operator, - ACTIONS(8021), 1, + ACTIONS(7883), 1, sym_binary_ampersand, - ACTIONS(8096), 1, - anon_sym_COMMA, - STATE(5609), 1, + STATE(5592), 1, sym_heredoc_body, - STATE(5649), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, + ACTIONS(6442), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7857), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8001), 2, + ACTIONS(7863), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, + ACTIONS(7867), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5570), 3, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_do, - ACTIONS(7989), 3, + ACTIONS(7851), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7999), 4, + ACTIONS(7861), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8017), 4, + ACTIONS(7879), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8019), 4, + ACTIONS(7881), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [216891] = 5, + ACTIONS(6440), 6, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_do, + [215803] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5610), 1, + ACTIONS(7853), 1, + anon_sym_PIPE, + ACTIONS(7855), 1, + anon_sym_CARET, + ACTIONS(7859), 1, + anon_sym_EQ_EQ, + ACTIONS(7865), 1, + anon_sym_AMP_STAR, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7877), 1, + sym__start_of_index_operator, + ACTIONS(7883), 1, + sym_binary_ampersand, + STATE(5593), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6040), 9, + ACTIONS(7857), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7861), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7879), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7881), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5817), 5, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, + ACTIONS(5815), 10, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [215880] = 13, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7865), 1, anon_sym_AMP_STAR, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(6038), 29, - sym__start_of_brace_block, + ACTIONS(7877), 1, sym__start_of_index_operator, + ACTIONS(7883), 1, + sym_binary_ampersand, + STATE(5594), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7857), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7879), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7881), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6263), 7, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6261), 15, + sym__start_of_brace_block, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [216944] = 6, + [215949] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7574), 1, - anon_sym_COLON, - STATE(5611), 1, + ACTIONS(7865), 1, + anon_sym_AMP_STAR, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7877), 1, + sym__start_of_index_operator, + STATE(5595), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7879), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7881), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5869), 7, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, + ACTIONS(5867), 18, + sym__start_of_brace_block, + sym_binary_ampersand, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [216014] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7853), 1, + anon_sym_PIPE, + ACTIONS(7855), 1, + anon_sym_CARET, + ACTIONS(7865), 1, anon_sym_AMP_STAR, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(133), 29, - sym__start_of_brace_block, + ACTIONS(7877), 1, sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7883), 1, + sym_binary_ampersand, + STATE(5596), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7857), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7879), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7881), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6134), 6, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6132), 14, + sym__start_of_brace_block, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [216999] = 5, + [216087] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5612), 1, + ACTIONS(7853), 1, + anon_sym_PIPE, + ACTIONS(7855), 1, + anon_sym_CARET, + ACTIONS(7859), 1, + anon_sym_EQ_EQ, + ACTIONS(7865), 1, + anon_sym_AMP_STAR, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7877), 1, + sym__start_of_index_operator, + ACTIONS(7883), 1, + sym_binary_ampersand, + STATE(5597), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6044), 9, + ACTIONS(6047), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, + ACTIONS(7857), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7863), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7851), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6042), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7861), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7879), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7881), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6045), 8, + sym__start_of_brace_block, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [216168] = 20, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7853), 1, + anon_sym_PIPE, + ACTIONS(7855), 1, anon_sym_CARET, + ACTIONS(7859), 1, + anon_sym_EQ_EQ, + ACTIONS(7865), 1, + anon_sym_AMP_STAR, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7873), 1, + anon_sym_AMP_AMP, + ACTIONS(7877), 1, + sym__start_of_index_operator, + ACTIONS(7883), 1, + sym_binary_ampersand, + STATE(5598), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6215), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(7857), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7863), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7851), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7861), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7879), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7881), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6213), 7, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [217052] = 5, + [216251] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5613), 1, + ACTIONS(7577), 1, + anon_sym_COLON, + STATE(5599), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6060), 9, - anon_sym_RBRACK, + ACTIONS(157), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -519970,7 +523663,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6058), 29, + anon_sym_COLON2, + ACTIONS(135), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -519996,20 +523690,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [217105] = 5, + [216306] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5614), 1, + ACTIONS(7099), 1, + anon_sym_typeof, + ACTIONS(7101), 1, + sym__constant_segment, + ACTIONS(7103), 1, + anon_sym_COLON_COLON, + ACTIONS(7107), 1, + sym__start_of_tuple_type, + ACTIONS(7109), 1, + sym__start_of_named_tuple_type, + ACTIONS(7273), 1, + anon_sym_LPAREN, + ACTIONS(7275), 1, + anon_sym_DASH_GT, + STATE(5600), 1, sym_heredoc_body, + STATE(7692), 1, + sym_constant, + STATE(7786), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6110), 9, - anon_sym_RBRACK, + ACTIONS(7105), 2, + sym_self, + sym_underscore_type, + STATE(7763), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4468), 15, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_forall, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [216379] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(2750), 1, + sym__string_literal_start, + STATE(5601), 1, + sym_heredoc_body, + STATE(5698), 1, + aux_sym_chained_string_repeat1, + STATE(6330), 1, + sym_string, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5541), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -520018,9 +523774,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6108), 29, - sym__start_of_brace_block, + ACTIONS(5539), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -520044,71 +523800,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [217158] = 5, + [216438] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5615), 1, + ACTIONS(7853), 1, + anon_sym_PIPE, + ACTIONS(7855), 1, + anon_sym_CARET, + ACTIONS(7859), 1, + anon_sym_EQ_EQ, + ACTIONS(7865), 1, + anon_sym_AMP_STAR, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7873), 1, + anon_sym_AMP_AMP, + ACTIONS(7875), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7877), 1, + sym__start_of_index_operator, + ACTIONS(7883), 1, + sym_binary_ampersand, + STATE(5602), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6138), 9, + ACTIONS(5981), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, + ACTIONS(7857), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7863), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7851), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6136), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7861), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7879), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7881), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5979), 6, + sym__start_of_brace_block, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, - [217211] = 7, + [216523] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7945), 1, - anon_sym_COMMA, - STATE(5451), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5616), 1, + STATE(5603), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6287), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -520117,10 +523884,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 28, + ACTIONS(6285), 29, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -520131,6 +523897,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -520143,18 +523910,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [217268] = 5, + [216576] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5617), 1, + STATE(5604), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 9, + ACTIONS(6311), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -520164,7 +523932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5878), 29, + ACTIONS(6309), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -520194,16 +523962,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [217321] = 5, + [216629] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5618), 1, + ACTIONS(7847), 1, + anon_sym_DOT_DOT, + ACTIONS(7849), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7853), 1, + anon_sym_PIPE, + ACTIONS(7855), 1, + anon_sym_CARET, + ACTIONS(7859), 1, + anon_sym_EQ_EQ, + ACTIONS(7865), 1, + anon_sym_AMP_STAR, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7871), 1, + anon_sym_QMARK, + ACTIONS(7873), 1, + anon_sym_AMP_AMP, + ACTIONS(7875), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7877), 1, + sym__start_of_index_operator, + ACTIONS(7883), 1, + sym_binary_ampersand, + ACTIONS(8092), 1, + anon_sym_RBRACK, + STATE(5605), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6168), 9, - anon_sym_RBRACK, + ACTIONS(7857), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7863), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7851), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5779), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(7861), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7879), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7881), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [216720] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8094), 1, + anon_sym_of, + STATE(5606), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5651), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -520212,9 +524048,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6166), 29, + ACTIONS(5647), 29, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -520238,67 +524075,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [217374] = 5, + [216775] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5619), 1, + ACTIONS(7847), 1, + anon_sym_DOT_DOT, + ACTIONS(7849), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7853), 1, + anon_sym_PIPE, + ACTIONS(7855), 1, + anon_sym_CARET, + ACTIONS(7859), 1, + anon_sym_EQ_EQ, + ACTIONS(7865), 1, + anon_sym_AMP_STAR, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7871), 1, + anon_sym_QMARK, + ACTIONS(7873), 1, + anon_sym_AMP_AMP, + ACTIONS(7875), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7877), 1, + sym__start_of_index_operator, + ACTIONS(7883), 1, + sym_binary_ampersand, + ACTIONS(8096), 1, + anon_sym_RBRACK, + STATE(5607), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6156), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7857), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7863), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7851), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6154), 29, + ACTIONS(5825), 4, sym__start_of_brace_block, - sym__start_of_index_operator, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(7861), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7879), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7881), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + [216866] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8021), 1, + anon_sym_LPAREN, + ACTIONS(8026), 1, + anon_sym_typeof, + ACTIONS(8028), 1, + sym__constant_segment, + ACTIONS(8030), 1, + anon_sym_COLON_COLON, + ACTIONS(8034), 1, + sym__start_of_tuple_type, + ACTIONS(8036), 1, + sym__start_of_named_tuple_type, + ACTIONS(8098), 1, + anon_sym_DASH_GT, + STATE(5608), 1, + sym_heredoc_body, + STATE(7870), 1, + sym_constant, + STATE(7874), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8032), 2, + sym_self, + sym_underscore_type, + STATE(7900), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4390), 15, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + [216939] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(8101), 1, + sym_identifier, + ACTIONS(8107), 1, + sym_identifier_method_call, + ACTIONS(8109), 1, + sym_self, + STATE(5609), 1, + sym_heredoc_body, + STATE(7937), 1, + sym__operator_token, + STATE(11018), 1, + sym_constant, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8103), 10, + anon_sym_LT, + anon_sym_STAR, + anon_sym_SLASH2, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(8105), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_GT_GT, anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, + anon_sym_LBRACK_RBRACK_QMARK, + anon_sym_LBRACK_RBRACK_EQ, + anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [217427] = 5, + [217006] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5620), 1, + STATE(5610), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5911), 9, + ACTIONS(157), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -520308,7 +524276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5909), 29, + ACTIONS(135), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -520338,15 +524306,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [217480] = 5, + [217059] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5621), 1, + STATE(5611), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5968), 9, + ACTIONS(5865), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -520356,7 +524324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5966), 29, + ACTIONS(5863), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -520386,15 +524354,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [217533] = 5, + [217112] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5622), 1, + STATE(5612), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5972), 9, + ACTIONS(5559), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -520404,8 +524372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5970), 29, - sym__start_of_brace_block, + ACTIONS(5557), 29, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -520417,6 +524384,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + sym__string_literal_start, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -520429,21 +524397,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [217586] = 5, + [217165] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5623), 1, + ACTIONS(8111), 1, + anon_sym_of, + STATE(5613), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6028), 9, - anon_sym_RBRACK, + ACTIONS(5739), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -520452,9 +524421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6026), 29, + ACTIONS(5735), 29, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -520478,20 +524448,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [217639] = 5, + [217220] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5624), 1, + STATE(5614), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6150), 9, - anon_sym_RBRACK, + ACTIONS(5645), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -520500,8 +524468,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6148), 29, - sym__start_of_brace_block, + ACTIONS(5643), 30, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -520513,6 +524481,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -520525,156 +524494,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [217692] = 25, + anon_sym_then, + [217273] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7092), 1, - anon_sym_DOT_DOT, - ACTIONS(7094), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, + ACTIONS(8021), 1, + anon_sym_LPAREN, + ACTIONS(8026), 1, + anon_sym_typeof, + ACTIONS(8028), 1, + sym__constant_segment, + ACTIONS(8030), 1, + anon_sym_COLON_COLON, + ACTIONS(8034), 1, + sym__start_of_tuple_type, + ACTIONS(8036), 1, + sym__start_of_named_tuple_type, + ACTIONS(8113), 1, + anon_sym_DASH_GT, + STATE(5615), 1, + sym_heredoc_body, + STATE(7870), 1, + sym_constant, + STATE(7877), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8032), 2, + sym_self, + sym_underscore_type, + STATE(7900), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4362), 15, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_end, + anon_sym_STAR, anon_sym_PIPE, - ACTIONS(7100), 1, - anon_sym_CARET, - ACTIONS(7104), 1, - anon_sym_EQ_EQ, - ACTIONS(7110), 1, - anon_sym_AMP_STAR, - ACTIONS(7114), 1, anon_sym_DOT, - ACTIONS(7116), 1, + anon_sym_forall, anon_sym_QMARK, - ACTIONS(7118), 1, - anon_sym_AMP_AMP, - ACTIONS(7120), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7128), 1, - sym_binary_ampersand, - ACTIONS(8126), 1, - anon_sym_COMMA, - STATE(5625), 1, + [217346] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5616), 1, sym_heredoc_body, - STATE(9212), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7108), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5570), 3, - sym__start_of_brace_block, - anon_sym_RBRACE, - anon_sym_do, - ACTIONS(7096), 3, + ACTIONS(5645), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7106), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5643), 30, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [217785] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7092), 1, - anon_sym_DOT_DOT, - ACTIONS(7094), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7098), 1, - anon_sym_PIPE, - ACTIONS(7100), 1, anon_sym_CARET, - ACTIONS(7104), 1, - anon_sym_EQ_EQ, - ACTIONS(7110), 1, - anon_sym_AMP_STAR, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7116), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(7118), 1, anon_sym_AMP_AMP, - ACTIONS(7120), 1, anon_sym_PIPE_PIPE, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7128), 1, - sym_binary_ampersand, - ACTIONS(8128), 1, - anon_sym_COMMA, - STATE(5626), 1, + anon_sym_do, + [217399] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5617), 1, sym_heredoc_body, - STATE(9215), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7102), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7108), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7112), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5585), 3, - sym__start_of_brace_block, - anon_sym_RBRACE, - anon_sym_do, - ACTIONS(7096), 3, + ACTIONS(5574), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7106), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7124), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5572), 29, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7126), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [217878] = 5, + sym__string_literal_start, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [217452] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5627), 1, + STATE(5618), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5648), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -520683,7 +524670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5646), 30, + anon_sym_EQ, + ACTIONS(4785), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -520697,7 +524685,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -520714,16 +524701,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [217931] = 5, + [217505] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5628), 1, + STATE(5619), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6076), 9, - anon_sym_RBRACK, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -520732,8 +524718,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6074), 29, - sym__start_of_brace_block, + anon_sym_EQ, + ACTIONS(4785), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -520745,6 +524732,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -520758,85 +524746,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [217984] = 23, + anon_sym_then, + [217558] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7775), 1, + ACTIONS(7891), 1, anon_sym_DOT_DOT, - ACTIONS(7777), 1, + ACTIONS(7893), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7781), 1, + ACTIONS(7897), 1, anon_sym_PIPE, - ACTIONS(7783), 1, + ACTIONS(7899), 1, anon_sym_CARET, - ACTIONS(7787), 1, + ACTIONS(7903), 1, anon_sym_EQ_EQ, - ACTIONS(7793), 1, + ACTIONS(7909), 1, anon_sym_AMP_STAR, - ACTIONS(7797), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7799), 1, + ACTIONS(7915), 1, anon_sym_QMARK, - ACTIONS(7801), 1, + ACTIONS(7917), 1, anon_sym_AMP_AMP, - ACTIONS(7803), 1, + ACTIONS(7919), 1, anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, + ACTIONS(7921), 1, sym__start_of_index_operator, - ACTIONS(7811), 1, + ACTIONS(7927), 1, sym_binary_ampersand, - STATE(5629), 1, + STATE(5620), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, + ACTIONS(7901), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7791), 2, + ACTIONS(7907), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, + ACTIONS(7911), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, + ACTIONS(7895), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7789), 4, + ACTIONS(7905), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + ACTIONS(7923), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, + ACTIONS(7925), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6010), 5, + ACTIONS(5779), 5, sym__start_of_brace_block, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_do, - [218073] = 5, + [217647] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5630), 1, + STATE(5621), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 9, + ACTIONS(6379), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -520846,7 +524833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6419), 29, + ACTIONS(6377), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -520876,17 +524863,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [218126] = 6, + [217700] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8130), 1, - anon_sym_of, - STATE(5631), 1, + STATE(5622), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5660), 8, + ACTIONS(6387), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -520895,10 +524881,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5656), 29, + ACTIONS(6385), 29, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -520922,18 +524907,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [218181] = 5, + [217753] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5632), 1, + STATE(5623), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6086), 9, + ACTIONS(6391), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -520943,7 +524929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6084), 29, + ACTIONS(6389), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -520973,15 +524959,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [218234] = 5, + [217806] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5633), 1, + STATE(5624), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5838), 9, + ACTIONS(6395), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -520991,7 +524977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5836), 29, + ACTIONS(6393), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -521021,17 +525007,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [218287] = 6, + [217859] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7582), 1, - anon_sym_COLON, - STATE(5634), 1, + STATE(5625), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 9, + ACTIONS(6399), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -521040,8 +525025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_COLON2, - ACTIONS(133), 28, + ACTIONS(6397), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -521067,70 +525051,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [218342] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8132), 1, - anon_sym_COMMA, - STATE(5471), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5635), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5627), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5585), 28, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [218399] = 6, + [217912] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8134), 1, - sym_regex_modifier, - STATE(5636), 1, + ACTIONS(7548), 1, + anon_sym_LPAREN2, + STATE(5626), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -521139,7 +525074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 29, + ACTIONS(135), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -521169,15 +525104,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [218454] = 5, + [217967] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5637), 1, + STATE(5627), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6098), 9, + ACTIONS(6410), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -521187,7 +525122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6096), 29, + ACTIONS(6408), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -521217,17 +525152,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [218507] = 6, + [218020] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8136), 1, - sym_regex_modifier, - STATE(5638), 1, + STATE(5628), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(6414), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -521236,10 +525170,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 29, + ACTIONS(6412), 29, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -521263,20 +525196,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [218562] = 6, + [218073] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8138), 1, - anon_sym_of, - STATE(5639), 1, + STATE(5629), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5702), 8, + ACTIONS(6418), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -521285,10 +525218,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5698), 29, + ACTIONS(6416), 29, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -521312,18 +525244,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [218617] = 5, + [218126] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5640), 1, + STATE(5630), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6102), 9, + ACTIONS(6422), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -521333,7 +525266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6100), 29, + ACTIONS(6420), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -521363,15 +525296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [218670] = 5, + [218179] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5641), 1, + STATE(5631), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6268), 9, + ACTIONS(6426), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -521381,7 +525314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6266), 29, + ACTIONS(6424), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -521411,15 +525344,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [218723] = 5, + [218232] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5642), 1, + STATE(5632), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6196), 9, + ACTIONS(6430), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -521429,7 +525362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6194), 29, + ACTIONS(6428), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -521459,15 +525392,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [218776] = 5, + [218285] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5643), 1, + ACTIONS(3131), 1, + sym__string_literal_start, + STATE(3931), 1, + sym_string, + STATE(5457), 1, + aux_sym_chained_string_repeat1, + STATE(5633), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -521476,9 +525415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 29, - sym__line_break, + ACTIONS(135), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -521490,7 +525427,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -521506,20 +525442,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [218829] = 7, + anon_sym_COLON2, + [218344] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(7805), 1, - sym__start_of_index_operator, - STATE(5644), 1, + STATE(5634), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5895), 7, + ACTIONS(6367), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -521527,8 +525460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5893), 29, + anon_sym_DOT, + ACTIONS(6365), 29, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -521539,9 +525474,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -521554,24 +525487,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [218886] = 8, + [218397] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3072), 1, - sym__string_literal_start, - STATE(3839), 1, - sym_string, - STATE(5645), 1, + STATE(5635), 1, sym_heredoc_body, - STATE(5650), 1, - aux_sym_chained_string_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5490), 8, + ACTIONS(6303), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -521580,7 +525509,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5488), 27, + ACTIONS(6301), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -521605,18 +525535,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [218945] = 5, + anon_sym_do, + [218450] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5646), 1, + STATE(5636), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6184), 9, + ACTIONS(5965), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -521626,7 +525557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6182), 29, + ACTIONS(5963), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -521656,83 +525587,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [218998] = 25, + [218503] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7985), 1, - anon_sym_DOT_DOT, - ACTIONS(7987), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7991), 1, - anon_sym_PIPE, - ACTIONS(7993), 1, - anon_sym_CARET, - ACTIONS(7997), 1, - anon_sym_EQ_EQ, - ACTIONS(8003), 1, - anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8009), 1, - anon_sym_QMARK, - ACTIONS(8011), 1, - anon_sym_AMP_AMP, - ACTIONS(8013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, - sym__start_of_index_operator, - ACTIONS(8021), 1, - sym_binary_ampersand, - ACTIONS(8132), 1, - anon_sym_COMMA, - STATE(5471), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5647), 1, + STATE(5637), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8001), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5585), 3, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_do, - ACTIONS(7989), 3, + ACTIONS(6005), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7999), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8017), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6003), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8019), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [219091] = 5, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [218556] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5648), 1, + STATE(5638), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6224), 9, + ACTIONS(5801), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -521742,7 +525653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6222), 29, + ACTIONS(5799), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -521772,19 +525683,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [219144] = 7, + [218609] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8132), 1, - anon_sym_COMMA, - STATE(5474), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5649), 1, + STATE(5639), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5917), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -521793,10 +525701,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 28, + ACTIONS(5915), 29, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -521807,6 +525714,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -521819,23 +525727,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [219201] = 7, + [218662] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8140), 1, - sym__string_literal_start, - STATE(3839), 1, - sym_string, + STATE(5640), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5650), 2, - sym_heredoc_body, - aux_sym_chained_string_repeat1, - ACTIONS(5499), 8, + ACTIONS(5955), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -521844,7 +525749,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5497), 27, + ACTIONS(5953), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -521869,18 +525775,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [219258] = 5, + anon_sym_do, + [218715] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5651), 1, + STATE(5641), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6188), 9, + ACTIONS(6197), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -521890,7 +525797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6186), 29, + ACTIONS(6195), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -521920,16 +525827,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [219311] = 5, + [218768] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5652), 1, + ACTIONS(8116), 1, + sym_regex_modifier, + STATE(5642), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6200), 9, - anon_sym_RBRACK, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -521938,9 +525846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6198), 29, + ACTIONS(5741), 29, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -521964,20 +525873,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [219364] = 5, + [218823] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5653), 1, + ACTIONS(7891), 1, + anon_sym_DOT_DOT, + ACTIONS(7893), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7897), 1, + anon_sym_PIPE, + ACTIONS(7899), 1, + anon_sym_CARET, + ACTIONS(7903), 1, + anon_sym_EQ_EQ, + ACTIONS(7909), 1, + anon_sym_AMP_STAR, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7915), 1, + anon_sym_QMARK, + ACTIONS(7917), 1, + anon_sym_AMP_AMP, + ACTIONS(7919), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7921), 1, + sym__start_of_index_operator, + ACTIONS(7927), 1, + sym_binary_ampersand, + STATE(5643), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6348), 9, - anon_sym_RBRACK, + ACTIONS(7901), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7907), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7911), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7895), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7905), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7923), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7925), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6025), 5, + sym__start_of_brace_block, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_do, + [218912] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7891), 1, + anon_sym_DOT_DOT, + ACTIONS(7893), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7897), 1, + anon_sym_PIPE, + ACTIONS(7899), 1, + anon_sym_CARET, + ACTIONS(7903), 1, + anon_sym_EQ_EQ, + ACTIONS(7909), 1, + anon_sym_AMP_STAR, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7915), 1, + anon_sym_QMARK, + ACTIONS(7917), 1, + anon_sym_AMP_AMP, + ACTIONS(7919), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7921), 1, + sym__start_of_index_operator, + ACTIONS(7927), 1, + sym_binary_ampersand, + STATE(5644), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7901), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7907), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7911), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7895), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7905), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7923), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7925), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6039), 5, + sym__start_of_brace_block, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_do, + [219001] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8118), 1, + anon_sym_COMMA, + STATE(5645), 1, + sym_heredoc_body, + STATE(5704), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -521986,9 +526029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6346), 29, + ACTIONS(5587), 28, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -521999,7 +526043,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -522012,19 +526055,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [219417] = 5, + [219058] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5654), 1, + STATE(5646), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6352), 9, + ACTIONS(6164), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -522034,7 +526076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6350), 29, + ACTIONS(6162), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -522064,283 +526106,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [219470] = 23, + [219111] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7775), 1, + ACTIONS(8118), 1, + anon_sym_COMMA, + ACTIONS(8120), 1, anon_sym_DOT_DOT, - ACTIONS(7777), 1, + ACTIONS(8122), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7781), 1, + ACTIONS(8126), 1, anon_sym_PIPE, - ACTIONS(7783), 1, + ACTIONS(8128), 1, anon_sym_CARET, - ACTIONS(7787), 1, + ACTIONS(8132), 1, anon_sym_EQ_EQ, - ACTIONS(7793), 1, + ACTIONS(8138), 1, anon_sym_AMP_STAR, - ACTIONS(7797), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7799), 1, + ACTIONS(8144), 1, anon_sym_QMARK, - ACTIONS(7801), 1, + ACTIONS(8146), 1, anon_sym_AMP_AMP, - ACTIONS(7803), 1, + ACTIONS(8148), 1, anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, + ACTIONS(8150), 1, sym__start_of_index_operator, - ACTIONS(7811), 1, + ACTIONS(8156), 1, sym_binary_ampersand, - STATE(5655), 1, + STATE(5647), 1, sym_heredoc_body, + STATE(5704), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, + ACTIONS(8130), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7791), 2, + ACTIONS(8136), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, + ACTIONS(8140), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, + ACTIONS(5587), 3, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_do, + ACTIONS(8124), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7789), 4, + ACTIONS(8134), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, + ACTIONS(8154), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6030), 5, - sym__start_of_brace_block, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_do, - [219559] = 23, + [219204] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7775), 1, - anon_sym_DOT_DOT, - ACTIONS(7777), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7781), 1, - anon_sym_PIPE, - ACTIONS(7783), 1, - anon_sym_CARET, - ACTIONS(7787), 1, - anon_sym_EQ_EQ, - ACTIONS(7793), 1, - anon_sym_AMP_STAR, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(7799), 1, - anon_sym_QMARK, - ACTIONS(7801), 1, - anon_sym_AMP_AMP, - ACTIONS(7803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, - sym__start_of_index_operator, - ACTIONS(7811), 1, - sym_binary_ampersand, - STATE(5656), 1, + ACTIONS(7575), 1, + anon_sym_COLON, + STATE(5648), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7791), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, + ACTIONS(157), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7789), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(135), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6032), 5, - sym__start_of_brace_block, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_do, - [219648] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5923), 1, - anon_sym_DOT_DOT, - ACTIONS(7781), 1, - anon_sym_PIPE, - ACTIONS(7783), 1, + anon_sym_DOT_DOT_DOT, anon_sym_CARET, - ACTIONS(7787), 1, - anon_sym_EQ_EQ, - ACTIONS(7793), 1, - anon_sym_AMP_STAR, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(7801), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, anon_sym_AMP_AMP, - ACTIONS(7803), 1, anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, - sym__start_of_index_operator, - ACTIONS(7811), 1, - sym_binary_ampersand, - STATE(5657), 1, + anon_sym_then, + [219259] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8158), 1, + sym_regex_modifier, + STATE(5649), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7791), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, + ACTIONS(5662), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7789), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5660), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5921), 7, - sym__start_of_brace_block, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_do, - [219733] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7949), 1, - anon_sym_DOT_DOT, - ACTIONS(7951), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7955), 1, - anon_sym_PIPE, - ACTIONS(7957), 1, anon_sym_CARET, - ACTIONS(7961), 1, - anon_sym_EQ_EQ, - ACTIONS(7967), 1, - anon_sym_AMP_STAR, - ACTIONS(7971), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7973), 1, anon_sym_AMP_AMP, - ACTIONS(7975), 1, anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, - sym_binary_ampersand, - ACTIONS(8143), 1, - anon_sym_COMMA, - STATE(5658), 1, + anon_sym_do, + [219314] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5650), 1, sym_heredoc_body, - STATE(5679), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7965), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5570), 3, - sym__start_of_brace_block, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(7953), 3, + ACTIONS(5993), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7963), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5991), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [219826] = 7, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [219367] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8143), 1, - anon_sym_COMMA, - STATE(5659), 1, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7877), 1, + sym__start_of_index_operator, + STATE(5651), 1, sym_heredoc_body, - STATE(5679), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(6001), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -522348,10 +526341,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5570), 28, + ACTIONS(5999), 28, sym__start_of_brace_block, - sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -522362,6 +526353,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -522374,91 +526366,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [219883] = 25, + [219424] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7949), 1, + ACTIONS(8120), 1, anon_sym_DOT_DOT, - ACTIONS(7951), 1, + ACTIONS(8122), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7955), 1, + ACTIONS(8126), 1, anon_sym_PIPE, - ACTIONS(7957), 1, + ACTIONS(8128), 1, anon_sym_CARET, - ACTIONS(7961), 1, + ACTIONS(8132), 1, anon_sym_EQ_EQ, - ACTIONS(7967), 1, + ACTIONS(8138), 1, anon_sym_AMP_STAR, - ACTIONS(7971), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8144), 1, anon_sym_QMARK, - ACTIONS(7973), 1, + ACTIONS(8146), 1, anon_sym_AMP_AMP, - ACTIONS(7975), 1, + ACTIONS(8148), 1, anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, + ACTIONS(8150), 1, + sym__start_of_index_operator, + ACTIONS(8156), 1, sym_binary_ampersand, - ACTIONS(8145), 1, + ACTIONS(8160), 1, anon_sym_COMMA, - STATE(5660), 1, + STATE(5652), 1, sym_heredoc_body, - STATE(5683), 1, + STATE(5755), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, + ACTIONS(8130), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7965), 2, + ACTIONS(8136), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, + ACTIONS(8140), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5585), 3, + ACTIONS(5631), 3, sym__start_of_brace_block, - anon_sym_COLON2, + sym__end_of_with_expression, anon_sym_do, - ACTIONS(7953), 3, + ACTIONS(8124), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7963), 4, + ACTIONS(8134), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, + ACTIONS(8154), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [219976] = 7, + [219517] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8145), 1, - anon_sym_COMMA, - STATE(5661), 1, + ACTIONS(8162), 1, + anon_sym_of, + STATE(5653), 1, sym_heredoc_body, - STATE(5683), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5739), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -522467,8 +526457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 28, - sym__start_of_brace_block, + ACTIONS(5735), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -522480,6 +526470,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -522494,18 +526486,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - [220033] = 5, + anon_sym_then, + [219572] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5662), 1, + ACTIONS(8164), 1, + anon_sym_of, + STATE(5654), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6234), 9, - anon_sym_RBRACK, + ACTIONS(5725), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -522514,8 +526506,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6232), 29, - sym__start_of_brace_block, + ACTIONS(5721), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -522527,6 +526519,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -522540,20 +526533,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [220086] = 5, + anon_sym_then, + [219627] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5663), 1, + ACTIONS(8166), 1, + anon_sym_EQ, + STATE(5655), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6246), 9, - anon_sym_RBRACK, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -522562,8 +526555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6244), 29, - sym__start_of_brace_block, + ACTIONS(5761), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -522575,6 +526568,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -522588,21 +526582,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [220139] = 6, + anon_sym_then, + [219682] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8147), 1, + ACTIONS(8168), 1, anon_sym_of, - STATE(5664), 1, + STATE(5656), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5728), 8, + ACTIONS(5714), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -522611,10 +526604,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5724), 29, - sym__start_of_brace_block, + ACTIONS(5710), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -522625,6 +526617,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -522640,16 +526633,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [220194] = 5, + anon_sym_then, + [219737] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5665), 1, + STATE(5657), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6250), 9, + ACTIONS(5821), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -522659,7 +526652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6248), 29, + ACTIONS(5819), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -522689,16 +526682,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [220247] = 5, + [219790] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5666), 1, + ACTIONS(7891), 1, + anon_sym_DOT_DOT, + ACTIONS(7893), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7897), 1, + anon_sym_PIPE, + ACTIONS(7899), 1, + anon_sym_CARET, + ACTIONS(7903), 1, + anon_sym_EQ_EQ, + ACTIONS(7909), 1, + anon_sym_AMP_STAR, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7915), 1, + anon_sym_QMARK, + ACTIONS(7917), 1, + anon_sym_AMP_AMP, + ACTIONS(7919), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7921), 1, + sym__start_of_index_operator, + ACTIONS(7927), 1, + sym_binary_ampersand, + ACTIONS(8170), 1, + anon_sym_COMMA, + STATE(5658), 1, sym_heredoc_body, + STATE(5662), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6296), 9, - anon_sym_RBRACK, + ACTIONS(7901), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7907), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7911), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5587), 3, + sym__start_of_brace_block, + anon_sym_EQ_GT, + anon_sym_do, + ACTIONS(7895), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7905), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7923), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7925), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [219883] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8170), 1, + anon_sym_COMMA, + STATE(5659), 1, + sym_heredoc_body, + STATE(5662), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -522707,7 +526771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6294), 29, + ACTIONS(5587), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -522720,7 +526784,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -522733,21 +526797,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [220300] = 6, + [219940] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8149), 1, - anon_sym_of, - STATE(5667), 1, + ACTIONS(7891), 1, + anon_sym_DOT_DOT, + ACTIONS(7893), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7897), 1, + anon_sym_PIPE, + ACTIONS(7899), 1, + anon_sym_CARET, + ACTIONS(7903), 1, + anon_sym_EQ_EQ, + ACTIONS(7909), 1, + anon_sym_AMP_STAR, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7915), 1, + anon_sym_QMARK, + ACTIONS(7917), 1, + anon_sym_AMP_AMP, + ACTIONS(7919), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7921), 1, + sym__start_of_index_operator, + ACTIONS(7927), 1, + sym_binary_ampersand, + ACTIONS(8172), 1, + anon_sym_COMMA, + STATE(5660), 1, + sym_heredoc_body, + STATE(5663), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7901), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7907), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7911), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5631), 3, + sym__start_of_brace_block, + anon_sym_EQ_GT, + anon_sym_do, + ACTIONS(7895), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7905), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7923), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7925), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [220033] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8172), 1, + anon_sym_COMMA, + STATE(5661), 1, sym_heredoc_body, + STATE(5663), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5734), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -522756,10 +526889,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5730), 29, + ACTIONS(5631), 28, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -522770,7 +526902,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -522786,16 +526918,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [220355] = 5, + [220090] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5668), 1, + ACTIONS(8172), 1, + anon_sym_COMMA, + STATE(5150), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5662), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6324), 9, - anon_sym_RBRACK, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -522804,7 +526939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6322), 29, + ACTIONS(5631), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -522817,7 +526952,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -522830,20 +526965,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [220408] = 5, + [220147] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5669), 1, + ACTIONS(8174), 1, + anon_sym_COMMA, + STATE(5150), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5663), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6368), 9, - anon_sym_RBRACK, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -522852,7 +526989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6366), 29, + ACTIONS(5637), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -522865,7 +527002,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -522878,68 +527015,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [220461] = 5, + [220204] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5670), 1, + ACTIONS(7853), 1, + anon_sym_PIPE, + ACTIONS(7855), 1, + anon_sym_CARET, + ACTIONS(7859), 1, + anon_sym_EQ_EQ, + ACTIONS(7865), 1, + anon_sym_AMP_STAR, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7873), 1, + anon_sym_AMP_AMP, + ACTIONS(7875), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7877), 1, + sym__start_of_index_operator, + ACTIONS(7883), 1, + sym_binary_ampersand, + STATE(5664), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6400), 9, + ACTIONS(6063), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, + ACTIONS(7857), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7863), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7851), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6398), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, + ACTIONS(7861), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7879), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7881), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6061), 6, + sym__start_of_brace_block, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, - [220514] = 5, + [220289] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5671), 1, + ACTIONS(7630), 1, + anon_sym_COLON, + STATE(5665), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5738), 9, - anon_sym_RBRACK, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -522948,9 +527101,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5736), 29, + ACTIONS(135), 29, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -522974,20 +527128,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [220567] = 5, + [220344] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5672), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7800), 1, + anon_sym_DOT_DOT, + ACTIONS(7802), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_CARET, + ACTIONS(7812), 1, + anon_sym_EQ_EQ, + ACTIONS(7818), 1, + anon_sym_AMP_STAR, + ACTIONS(7822), 1, + anon_sym_QMARK, + ACTIONS(7824), 1, + anon_sym_AMP_AMP, + ACTIONS(7826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(7836), 1, + sym_binary_ampersand, + ACTIONS(8176), 1, + anon_sym_COMMA, + STATE(5666), 1, sym_heredoc_body, + STATE(5670), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5742), 9, - anon_sym_RBRACK, + ACTIONS(7810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7816), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5587), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_then, + ACTIONS(7804), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7814), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7832), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7834), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [220437] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8176), 1, + anon_sym_COMMA, + STATE(5667), 1, + sym_heredoc_body, + STATE(5670), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -522996,8 +527220,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5740), 29, - sym__start_of_brace_block, + ACTIONS(5587), 28, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -523009,7 +527233,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -523022,20 +527246,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [220620] = 5, + anon_sym_then, + [220494] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5673), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7800), 1, + anon_sym_DOT_DOT, + ACTIONS(7802), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_CARET, + ACTIONS(7812), 1, + anon_sym_EQ_EQ, + ACTIONS(7818), 1, + anon_sym_AMP_STAR, + ACTIONS(7822), 1, + anon_sym_QMARK, + ACTIONS(7824), 1, + anon_sym_AMP_AMP, + ACTIONS(7826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(7836), 1, + sym_binary_ampersand, + ACTIONS(8178), 1, + anon_sym_COMMA, + STATE(5668), 1, sym_heredoc_body, + STATE(5671), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5746), 9, - anon_sym_RBRACK, + ACTIONS(7810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7816), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5631), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_then, + ACTIONS(7804), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7814), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7832), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7834), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [220587] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8178), 1, + anon_sym_COMMA, + STATE(5669), 1, + sym_heredoc_body, + STATE(5671), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -523044,8 +527338,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5744), 29, - sym__start_of_brace_block, + ACTIONS(5631), 28, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -523057,7 +527351,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -523070,20 +527364,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [220673] = 5, + anon_sym_then, + [220644] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5674), 1, + ACTIONS(8178), 1, + anon_sym_COMMA, + STATE(5670), 1, sym_heredoc_body, + STATE(5750), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5750), 9, - anon_sym_RBRACK, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -523092,8 +527388,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5748), 29, - sym__start_of_brace_block, + ACTIONS(5631), 28, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -523105,7 +527401,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -523118,20 +527414,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [220726] = 5, + anon_sym_then, + [220701] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5675), 1, + ACTIONS(8180), 1, + anon_sym_COMMA, + STATE(5671), 1, sym_heredoc_body, + STATE(5750), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5758), 9, - anon_sym_RBRACK, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -523140,8 +527438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5756), 29, - sym__start_of_brace_block, + ACTIONS(5637), 28, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -523153,7 +527451,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -523166,20 +527464,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [220779] = 5, + anon_sym_then, + [220758] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5676), 1, + ACTIONS(8182), 1, + sym_regex_modifier, + STATE(5672), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5762), 9, - anon_sym_RBRACK, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -523188,8 +527486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5760), 29, - sym__start_of_brace_block, + ACTIONS(5741), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -523201,6 +527499,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -523214,20 +527513,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [220832] = 5, + anon_sym_then, + [220813] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5677), 1, + STATE(5673), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5766), 9, - anon_sym_RBRACK, + ACTIONS(5708), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -523236,9 +527533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5764), 29, + ACTIONS(5706), 30, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -523249,6 +527547,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + sym__string_literal_start, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -523262,20 +527561,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [220885] = 5, + [220866] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5678), 1, + STATE(5674), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5774), 9, - anon_sym_RBRACK, + ACTIONS(5685), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -523284,9 +527581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5772), 29, + ACTIONS(5683), 30, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -523309,24 +527607,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [220938] = 7, + [220919] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8145), 1, + ACTIONS(7891), 1, + anon_sym_DOT_DOT, + ACTIONS(7893), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7897), 1, + anon_sym_PIPE, + ACTIONS(7899), 1, + anon_sym_CARET, + ACTIONS(7903), 1, + anon_sym_EQ_EQ, + ACTIONS(7909), 1, + anon_sym_AMP_STAR, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7915), 1, + anon_sym_QMARK, + ACTIONS(7917), 1, + anon_sym_AMP_AMP, + ACTIONS(7919), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7921), 1, + sym__start_of_index_operator, + ACTIONS(7927), 1, + sym_binary_ampersand, + STATE(5675), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7901), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7907), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7911), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7895), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7905), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7923), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7925), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5825), 5, + sym__start_of_brace_block, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(5558), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5679), 1, + anon_sym_EQ_GT, + anon_sym_do, + [221008] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5676), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6363), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -523335,7 +527696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 28, + ACTIONS(6361), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -523348,6 +527709,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -523360,19 +527722,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [220995] = 5, + [221061] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5680), 1, + STATE(5677), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5778), 9, + ACTIONS(6454), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -523382,7 +527744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5776), 29, + ACTIONS(6452), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -523412,17 +527774,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [221048] = 6, + [221114] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8151), 1, - anon_sym_of, - STATE(5681), 1, + ACTIONS(8184), 1, + anon_sym_COMMA, + STATE(5678), 1, sym_heredoc_body, + STATE(5680), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5690), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -523431,7 +527795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5686), 29, + ACTIONS(5587), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -523445,7 +527809,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -523461,17 +527824,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [221103] = 6, + [221171] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8153), 1, - anon_sym_of, - STATE(5682), 1, + ACTIONS(8186), 1, + anon_sym_COMMA, + STATE(5679), 1, sym_heredoc_body, + STATE(5681), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5719), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -523480,7 +527845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5715), 29, + ACTIONS(5631), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -523494,7 +527859,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -523510,19 +527874,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [221158] = 7, + [221228] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8155), 1, + ACTIONS(8186), 1, anon_sym_COMMA, - STATE(5558), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5683), 1, + STATE(5680), 1, sym_heredoc_body, + STATE(5758), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -523531,9 +527895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 28, + ACTIONS(5631), 28, sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -523558,111 +527923,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [221215] = 21, + [221285] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7853), 1, - anon_sym_PIPE, - ACTIONS(7855), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_EQ_EQ, - ACTIONS(7865), 1, - anon_sym_AMP_STAR, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7873), 1, - anon_sym_AMP_AMP, - ACTIONS(7875), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7877), 1, - sym__start_of_index_operator, - ACTIONS(7883), 1, - sym_binary_ampersand, - STATE(5684), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5941), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7857), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7863), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7867), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7851), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7861), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7879), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7881), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(5939), 6, - sym__start_of_brace_block, + ACTIONS(8188), 1, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_do, - [221300] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7793), 1, - anon_sym_AMP_STAR, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(7805), 1, - sym__start_of_index_operator, - STATE(5685), 1, + STATE(5681), 1, sym_heredoc_body, + STATE(5758), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7795), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7809), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 23, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5637), 28, sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -523673,160 +527969,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [221363] = 24, + [221342] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6012), 1, - anon_sym_RBRACK, - ACTIONS(7847), 1, + ACTIONS(8120), 1, anon_sym_DOT_DOT, - ACTIONS(7849), 1, + ACTIONS(8122), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7853), 1, + ACTIONS(8126), 1, anon_sym_PIPE, - ACTIONS(7855), 1, + ACTIONS(8128), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(8132), 1, anon_sym_EQ_EQ, - ACTIONS(7865), 1, + ACTIONS(8138), 1, anon_sym_AMP_STAR, - ACTIONS(7869), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7871), 1, + ACTIONS(8144), 1, anon_sym_QMARK, - ACTIONS(7873), 1, + ACTIONS(8146), 1, anon_sym_AMP_AMP, - ACTIONS(7875), 1, + ACTIONS(8148), 1, anon_sym_PIPE_PIPE, - ACTIONS(7877), 1, + ACTIONS(8150), 1, sym__start_of_index_operator, - ACTIONS(7883), 1, + ACTIONS(8156), 1, sym_binary_ampersand, - STATE(5686), 1, + ACTIONS(8184), 1, + anon_sym_COMMA, + STATE(5680), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5682), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7857), 2, + ACTIONS(8130), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7863), 2, + ACTIONS(8136), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7867), 2, + ACTIONS(8140), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7851), 3, + ACTIONS(5587), 3, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_do, + ACTIONS(8124), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6010), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(7861), 4, + ACTIONS(8134), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7879), 4, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7881), 4, + ACTIONS(8154), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [221454] = 24, + [221435] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7847), 1, + ACTIONS(8120), 1, anon_sym_DOT_DOT, - ACTIONS(7849), 1, + ACTIONS(8122), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7853), 1, + ACTIONS(8126), 1, anon_sym_PIPE, - ACTIONS(7855), 1, + ACTIONS(8128), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(8132), 1, anon_sym_EQ_EQ, - ACTIONS(7865), 1, + ACTIONS(8138), 1, anon_sym_AMP_STAR, - ACTIONS(7869), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7871), 1, + ACTIONS(8144), 1, anon_sym_QMARK, - ACTIONS(7873), 1, + ACTIONS(8146), 1, anon_sym_AMP_AMP, - ACTIONS(7875), 1, + ACTIONS(8148), 1, anon_sym_PIPE_PIPE, - ACTIONS(7877), 1, + ACTIONS(8150), 1, sym__start_of_index_operator, - ACTIONS(7883), 1, + ACTIONS(8156), 1, sym_binary_ampersand, - ACTIONS(8157), 1, - anon_sym_RBRACK, - STATE(5687), 1, + ACTIONS(8186), 1, + anon_sym_COMMA, + STATE(5681), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5683), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7857), 2, + ACTIONS(8130), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7863), 2, + ACTIONS(8136), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7867), 2, + ACTIONS(8140), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7851), 3, + ACTIONS(5631), 3, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_do, + ACTIONS(8124), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6030), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(7861), 4, + ACTIONS(8134), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7879), 4, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7881), 4, + ACTIONS(8154), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [221545] = 8, + [221528] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(7805), 1, - sym__start_of_index_operator, - STATE(5688), 1, + STATE(5684), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7795), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(6466), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -523834,20 +528127,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 27, + anon_sym_DOT, + ACTIONS(6464), 29, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -523858,100 +528152,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [221604] = 24, + [221581] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7847), 1, + ACTIONS(5977), 1, anon_sym_DOT_DOT, - ACTIONS(7849), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7853), 1, + ACTIONS(7897), 1, anon_sym_PIPE, - ACTIONS(7855), 1, + ACTIONS(7899), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7903), 1, anon_sym_EQ_EQ, - ACTIONS(7865), 1, + ACTIONS(7909), 1, anon_sym_AMP_STAR, - ACTIONS(7869), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7871), 1, - anon_sym_QMARK, - ACTIONS(7873), 1, + ACTIONS(7917), 1, anon_sym_AMP_AMP, - ACTIONS(7875), 1, + ACTIONS(7919), 1, anon_sym_PIPE_PIPE, - ACTIONS(7877), 1, + ACTIONS(7921), 1, sym__start_of_index_operator, - ACTIONS(7883), 1, + ACTIONS(7927), 1, sym_binary_ampersand, - ACTIONS(8159), 1, - anon_sym_RBRACK, - STATE(5689), 1, + STATE(5685), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7857), 2, + ACTIONS(7901), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7863), 2, + ACTIONS(7907), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7867), 2, + ACTIONS(7911), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7851), 3, + ACTIONS(7895), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6032), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(7861), 4, + ACTIONS(7905), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7879), 4, + ACTIONS(7923), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7881), 4, + ACTIONS(7925), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [221695] = 10, + ACTIONS(5975), 7, + sym__start_of_brace_block, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_do, + [221666] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7865), 1, - anon_sym_AMP_STAR, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7877), 1, - sym__start_of_index_operator, - STATE(5690), 1, + STATE(5686), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7867), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7881), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 7, + ACTIONS(6406), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -523959,13 +528238,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 22, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6404), 29, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -523977,27 +528264,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [221758] = 8, + [221719] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7877), 1, - sym__start_of_index_operator, - STATE(5691), 1, + STATE(5687), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7867), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 8, + ACTIONS(6201), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -524006,13 +528287,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 26, + anon_sym_DOT, + ACTIONS(6199), 29, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -524028,27 +528312,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [221817] = 8, + [221772] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(7805), 1, - sym__start_of_index_operator, - STATE(5692), 1, + STATE(5688), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7795), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(6323), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -524056,20 +528335,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 27, + anon_sym_DOT, + ACTIONS(6321), 29, sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -524080,76 +528360,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [221876] = 12, + [221825] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7793), 1, - anon_sym_AMP_STAR, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(7805), 1, - sym__start_of_index_operator, - STATE(5693), 1, + STATE(5689), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7795), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7807), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7809), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6064), 6, + ACTIONS(5881), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6062), 17, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5879), 29, sym__start_of_brace_block, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - anon_sym_RBRACE, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [221943] = 6, + [221878] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8161), 1, - anon_sym_of, - STATE(5694), 1, + STATE(5690), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5660), 8, + ACTIONS(6023), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -524158,8 +528432,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5656), 29, - sym__line_break, + ACTIONS(6021), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -524171,7 +528445,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -524185,20 +528458,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [221998] = 6, + anon_sym_do, + [221931] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8163), 1, - anon_sym_of, - STATE(5695), 1, + STATE(5691), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5728), 8, + ACTIONS(6037), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -524207,8 +528480,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5724), 29, - sym__line_break, + ACTIONS(6035), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -524220,7 +528493,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -524234,20 +528506,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [222053] = 6, + anon_sym_do, + [221984] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8165), 1, - anon_sym_EQ, - STATE(5696), 1, + STATE(5692), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, + ACTIONS(6055), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -524256,8 +528528,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 29, - sym__line_break, + ACTIONS(6053), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -524269,7 +528541,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -524283,20 +528554,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [222108] = 6, + anon_sym_do, + [222037] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8167), 1, - anon_sym_of, - STATE(5697), 1, + STATE(5693), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5690), 8, + ACTIONS(6071), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -524305,8 +528576,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5686), 29, - sym__line_break, + ACTIONS(6069), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -524318,7 +528589,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -524332,90 +528602,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [222163] = 25, + anon_sym_do, + [222090] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7775), 1, - anon_sym_DOT_DOT, - ACTIONS(7777), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7781), 1, - anon_sym_PIPE, - ACTIONS(7783), 1, - anon_sym_CARET, - ACTIONS(7787), 1, - anon_sym_EQ_EQ, - ACTIONS(7793), 1, - anon_sym_AMP_STAR, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(7799), 1, - anon_sym_QMARK, - ACTIONS(7801), 1, - anon_sym_AMP_AMP, - ACTIONS(7803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, - sym__start_of_index_operator, - ACTIONS(7811), 1, - sym_binary_ampersand, - ACTIONS(8169), 1, - anon_sym_COMMA, - STATE(5698), 1, + STATE(5694), 1, sym_heredoc_body, - STATE(5702), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7791), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5570), 3, - sym__start_of_brace_block, - anon_sym_EQ_GT, - anon_sym_do, - ACTIONS(7779), 3, + ACTIONS(6160), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7789), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6158), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [222256] = 7, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [222143] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8169), 1, - anon_sym_COMMA, - STATE(5699), 1, + STATE(5695), 1, sym_heredoc_body, - STATE(5702), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(6171), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -524424,7 +528672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 28, + ACTIONS(6169), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -524437,7 +528685,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -524450,90 +528698,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [222313] = 25, + [222196] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7775), 1, - anon_sym_DOT_DOT, - ACTIONS(7777), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7781), 1, - anon_sym_PIPE, - ACTIONS(7783), 1, - anon_sym_CARET, - ACTIONS(7787), 1, - anon_sym_EQ_EQ, - ACTIONS(7793), 1, - anon_sym_AMP_STAR, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(7799), 1, - anon_sym_QMARK, - ACTIONS(7801), 1, - anon_sym_AMP_AMP, - ACTIONS(7803), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, - sym__start_of_index_operator, - ACTIONS(7811), 1, - sym_binary_ampersand, - ACTIONS(8171), 1, - anon_sym_COMMA, - STATE(5700), 1, + STATE(5696), 1, sym_heredoc_body, - STATE(5703), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7791), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5585), 3, - sym__start_of_brace_block, - anon_sym_EQ_GT, - anon_sym_do, - ACTIONS(7779), 3, + ACTIONS(6187), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7789), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6185), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [222406] = 7, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [222249] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8171), 1, - anon_sym_COMMA, - STATE(5701), 1, + STATE(5697), 1, sym_heredoc_body, - STATE(5703), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6359), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -524542,7 +528768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 28, + ACTIONS(6357), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -524555,7 +528781,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -524568,22 +528794,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [222463] = 7, + [222302] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8171), 1, - anon_sym_COMMA, - STATE(5319), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5702), 1, - sym_heredoc_body, + ACTIONS(8190), 1, + sym__string_literal_start, + STATE(6330), 1, + sym_string, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + STATE(5698), 2, + sym_heredoc_body, + aux_sym_chained_string_repeat1, + ACTIONS(5534), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -524592,9 +528820,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 28, - sym__start_of_brace_block, + ACTIONS(5532), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -524605,7 +528833,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -524620,20 +528848,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [222520] = 7, + [222359] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8173), 1, - anon_sym_COMMA, - STATE(5319), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5703), 1, + ACTIONS(8193), 1, + sym_regex_modifier, + STATE(5699), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(5769), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -524642,8 +528867,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 28, - sym__start_of_brace_block, + ACTIONS(5767), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -524655,7 +528880,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -524670,152 +528896,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [222577] = 21, + anon_sym_then, + [222414] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6068), 1, + ACTIONS(7891), 1, anon_sym_DOT_DOT, - ACTIONS(7781), 1, + ACTIONS(7893), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7897), 1, anon_sym_PIPE, - ACTIONS(7783), 1, + ACTIONS(7899), 1, anon_sym_CARET, - ACTIONS(7787), 1, + ACTIONS(7903), 1, anon_sym_EQ_EQ, - ACTIONS(7793), 1, + ACTIONS(7909), 1, anon_sym_AMP_STAR, - ACTIONS(7797), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7801), 1, + ACTIONS(7915), 1, + anon_sym_QMARK, + ACTIONS(7917), 1, anon_sym_AMP_AMP, - ACTIONS(7803), 1, + ACTIONS(7919), 1, anon_sym_PIPE_PIPE, - ACTIONS(7805), 1, + ACTIONS(7921), 1, sym__start_of_index_operator, - ACTIONS(7811), 1, + ACTIONS(7927), 1, sym_binary_ampersand, - STATE(5704), 1, + STATE(5700), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, + ACTIONS(7901), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7791), 2, + ACTIONS(7907), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, + ACTIONS(7911), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, + ACTIONS(7895), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7789), 4, + ACTIONS(7905), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + ACTIONS(7923), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, + ACTIONS(7925), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6066), 7, + ACTIONS(5923), 5, sym__start_of_brace_block, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, anon_sym_do, - [222662] = 25, + [222503] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7735), 1, + ACTIONS(7891), 1, anon_sym_DOT_DOT, - ACTIONS(7737), 1, + ACTIONS(7893), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7741), 1, + ACTIONS(7897), 1, anon_sym_PIPE, - ACTIONS(7743), 1, + ACTIONS(7899), 1, anon_sym_CARET, - ACTIONS(7747), 1, + ACTIONS(7903), 1, anon_sym_EQ_EQ, - ACTIONS(7753), 1, + ACTIONS(7909), 1, anon_sym_AMP_STAR, - ACTIONS(7757), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7915), 1, anon_sym_QMARK, - ACTIONS(7759), 1, + ACTIONS(7917), 1, anon_sym_AMP_AMP, - ACTIONS(7761), 1, + ACTIONS(7919), 1, anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, + ACTIONS(7921), 1, sym__start_of_index_operator, - ACTIONS(7771), 1, + ACTIONS(7927), 1, sym_binary_ampersand, - ACTIONS(8175), 1, - anon_sym_COMMA, - STATE(5705), 1, + STATE(5701), 1, sym_heredoc_body, - STATE(5709), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7745), 2, + ACTIONS(7901), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7751), 2, + ACTIONS(7907), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, + ACTIONS(7911), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5570), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_then, - ACTIONS(7739), 3, + ACTIONS(7895), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7749), 4, + ACTIONS(7905), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7767), 4, + ACTIONS(7923), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7769), 4, + ACTIONS(7925), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [222755] = 7, + ACTIONS(6092), 5, + sym__start_of_brace_block, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_do, + [222592] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8175), 1, + ACTIONS(8160), 1, anon_sym_COMMA, - STATE(5706), 1, + STATE(5702), 1, sym_heredoc_body, - STATE(5709), 1, + STATE(5755), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -524824,9 +529050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 28, - sym__line_break, + ACTIONS(5631), 28, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -524837,7 +529064,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -524852,88 +529078,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [222812] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7735), 1, - anon_sym_DOT_DOT, - ACTIONS(7737), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7741), 1, - anon_sym_PIPE, - ACTIONS(7743), 1, - anon_sym_CARET, - ACTIONS(7747), 1, - anon_sym_EQ_EQ, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7757), 1, - anon_sym_QMARK, - ACTIONS(7759), 1, - anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(7771), 1, - sym_binary_ampersand, - ACTIONS(8177), 1, - anon_sym_COMMA, - STATE(5707), 1, - sym_heredoc_body, - STATE(5710), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7745), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7751), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5585), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_then, - ACTIONS(7739), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7749), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7767), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7769), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [222905] = 7, + anon_sym_do, + [222649] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8177), 1, + ACTIONS(8195), 1, anon_sym_COMMA, - STATE(5708), 1, + STATE(5703), 1, sym_heredoc_body, - STATE(5710), 1, + STATE(5716), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -524942,9 +529100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 28, - sym__line_break, + ACTIONS(5587), 28, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -524955,7 +529114,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -524970,20 +529128,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [222962] = 7, + anon_sym_do, + [222706] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8177), 1, + ACTIONS(8160), 1, anon_sym_COMMA, - STATE(5529), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5709), 1, + STATE(5704), 1, sym_heredoc_body, + STATE(5758), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -524992,9 +529150,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 28, - sym__line_break, + ACTIONS(5631), 28, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -525005,7 +529164,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -525020,391 +529178,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [223019] = 7, + anon_sym_do, + [222763] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8179), 1, - anon_sym_COMMA, - STATE(5529), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5710), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5566), 8, + ACTIONS(7891), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(7893), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7897), 1, anon_sym_PIPE, + ACTIONS(7899), 1, + anon_sym_CARET, + ACTIONS(7903), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(7909), 1, anon_sym_AMP_STAR, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(5562), 28, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7915), 1, anon_sym_QMARK, + ACTIONS(7917), 1, anon_sym_AMP_AMP, + ACTIONS(7919), 1, anon_sym_PIPE_PIPE, - anon_sym_then, - [223076] = 17, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7781), 1, - anon_sym_PIPE, - ACTIONS(7783), 1, - anon_sym_CARET, - ACTIONS(7787), 1, - anon_sym_EQ_EQ, - ACTIONS(7793), 1, - anon_sym_AMP_STAR, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(7805), 1, + ACTIONS(7921), 1, sym__start_of_index_operator, - ACTIONS(7811), 1, + ACTIONS(7927), 1, sym_binary_ampersand, - STATE(5711), 1, + STATE(5705), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, + ACTIONS(7901), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7795), 2, + ACTIONS(7907), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7911), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, - anon_sym_DOT_DOT, + ACTIONS(7895), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7789), 4, + ACTIONS(7905), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + ACTIONS(7923), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, + ACTIONS(7925), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6070), 11, + ACTIONS(5773), 5, sym__start_of_brace_block, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, - [223153] = 12, + [222852] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7865), 1, - anon_sym_AMP_STAR, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7877), 1, - sym__start_of_index_operator, - STATE(5712), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7857), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7867), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7879), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7881), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6064), 7, - anon_sym_RBRACK, + ACTIONS(7891), 1, anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6062), 16, - sym__start_of_brace_block, - sym_binary_ampersand, - anon_sym_COMMA, + ACTIONS(7893), 1, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [223220] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7853), 1, + ACTIONS(7897), 1, anon_sym_PIPE, - ACTIONS(7855), 1, + ACTIONS(7899), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7903), 1, anon_sym_EQ_EQ, - ACTIONS(7865), 1, + ACTIONS(7909), 1, anon_sym_AMP_STAR, - ACTIONS(7869), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7873), 1, + ACTIONS(7915), 1, + anon_sym_QMARK, + ACTIONS(7917), 1, anon_sym_AMP_AMP, - ACTIONS(7875), 1, + ACTIONS(7919), 1, anon_sym_PIPE_PIPE, - ACTIONS(7877), 1, + ACTIONS(7921), 1, sym__start_of_index_operator, - ACTIONS(7883), 1, + ACTIONS(7927), 1, sym_binary_ampersand, - STATE(5713), 1, + STATE(5706), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6068), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7857), 2, + ACTIONS(7901), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7863), 2, + ACTIONS(7907), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7867), 2, + ACTIONS(7911), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7851), 3, + ACTIONS(7895), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7861), 4, + ACTIONS(7905), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7879), 4, + ACTIONS(7923), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7881), 4, + ACTIONS(7925), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6066), 6, + ACTIONS(6193), 5, sym__start_of_brace_block, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + anon_sym_EQ_GT, anon_sym_do, - [223305] = 17, + [222941] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7853), 1, + ACTIONS(7891), 1, + anon_sym_DOT_DOT, + ACTIONS(7893), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7897), 1, anon_sym_PIPE, - ACTIONS(7855), 1, + ACTIONS(7899), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(7903), 1, anon_sym_EQ_EQ, - ACTIONS(7865), 1, + ACTIONS(7909), 1, anon_sym_AMP_STAR, - ACTIONS(7869), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7877), 1, + ACTIONS(7915), 1, + anon_sym_QMARK, + ACTIONS(7917), 1, + anon_sym_AMP_AMP, + ACTIONS(7919), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7921), 1, sym__start_of_index_operator, - ACTIONS(7883), 1, + ACTIONS(7927), 1, sym_binary_ampersand, - STATE(5714), 1, + STATE(5707), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7857), 2, + ACTIONS(7901), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7867), 2, + ACTIONS(7907), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7911), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7861), 4, + ACTIONS(7895), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7905), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7879), 4, + ACTIONS(7923), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7881), 4, + ACTIONS(7925), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6072), 5, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6070), 10, + ACTIONS(6203), 5, sym__start_of_brace_block, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_GT, anon_sym_do, - [223382] = 13, + [223030] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7865), 1, - anon_sym_AMP_STAR, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7877), 1, - sym__start_of_index_operator, - ACTIONS(7883), 1, - sym_binary_ampersand, - STATE(5715), 1, - sym_heredoc_body, + ACTIONS(8197), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7857), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7867), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7879), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7881), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6082), 7, - anon_sym_RBRACK, + STATE(5708), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6080), 15, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [223451] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7865), 1, anon_sym_AMP_STAR, - ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(7877), 1, + ACTIONS(5694), 28, + sym__start_of_brace_block, sym__start_of_index_operator, - STATE(5716), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7867), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7879), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7881), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6090), 7, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6088), 18, - sym__start_of_brace_block, - sym_binary_ampersand, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -525415,271 +529420,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [223516] = 15, + [223085] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7853), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8040), 1, + anon_sym_DOT_DOT, + ACTIONS(8042), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8046), 1, anon_sym_PIPE, - ACTIONS(7855), 1, + ACTIONS(8048), 1, anon_sym_CARET, - ACTIONS(7865), 1, + ACTIONS(8052), 1, + anon_sym_EQ_EQ, + ACTIONS(8058), 1, anon_sym_AMP_STAR, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7877), 1, - sym__start_of_index_operator, - ACTIONS(7883), 1, + ACTIONS(8062), 1, + anon_sym_QMARK, + ACTIONS(8064), 1, + anon_sym_AMP_AMP, + ACTIONS(8066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8072), 1, sym_binary_ampersand, - STATE(5717), 1, + ACTIONS(8200), 1, + anon_sym_COMMA, + STATE(5709), 1, sym_heredoc_body, + STATE(5713), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7857), 2, + ACTIONS(8050), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7867), 2, + ACTIONS(8056), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8060), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7879), 4, + ACTIONS(5587), 3, + sym__start_of_brace_block, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8044), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8054), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7881), 4, + ACTIONS(8070), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6094), 6, - anon_sym_RBRACK, + [223178] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8200), 1, + anon_sym_COMMA, + STATE(5710), 1, + sym_heredoc_body, + STATE(5713), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6092), 14, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5587), 28, sym__start_of_brace_block, - anon_sym_COMMA, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [223589] = 19, + [223235] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7853), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8040), 1, + anon_sym_DOT_DOT, + ACTIONS(8042), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8046), 1, anon_sym_PIPE, - ACTIONS(7855), 1, + ACTIONS(8048), 1, anon_sym_CARET, - ACTIONS(7859), 1, + ACTIONS(8052), 1, anon_sym_EQ_EQ, - ACTIONS(7865), 1, + ACTIONS(8058), 1, anon_sym_AMP_STAR, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7877), 1, - sym__start_of_index_operator, - ACTIONS(7883), 1, + ACTIONS(8062), 1, + anon_sym_QMARK, + ACTIONS(8064), 1, + anon_sym_AMP_AMP, + ACTIONS(8066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8072), 1, sym_binary_ampersand, - STATE(5718), 1, + ACTIONS(8202), 1, + anon_sym_COMMA, + STATE(5711), 1, sym_heredoc_body, + STATE(5714), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6114), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(7857), 2, + ACTIONS(8050), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7863), 2, + ACTIONS(8056), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7867), 2, + ACTIONS(8060), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7851), 3, + ACTIONS(5631), 3, + sym__start_of_brace_block, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8044), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7861), 4, + ACTIONS(8054), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7879), 4, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7881), 4, + ACTIONS(8070), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 8, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [223670] = 20, + [223328] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7853), 1, - anon_sym_PIPE, - ACTIONS(7855), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_EQ_EQ, - ACTIONS(7865), 1, - anon_sym_AMP_STAR, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7873), 1, - anon_sym_AMP_AMP, - ACTIONS(7877), 1, - sym__start_of_index_operator, - ACTIONS(7883), 1, - sym_binary_ampersand, - STATE(5719), 1, + ACTIONS(8202), 1, + anon_sym_COMMA, + STATE(5712), 1, sym_heredoc_body, + STATE(5714), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6118), 2, - anon_sym_RBRACK, + ACTIONS(5635), 8, anon_sym_DOT_DOT, - ACTIONS(7857), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7863), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7867), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7851), 3, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7861), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7879), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5631), 28, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7881), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6116), 7, - sym__start_of_brace_block, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [223753] = 21, + [223385] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7853), 1, - anon_sym_PIPE, - ACTIONS(7855), 1, - anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_EQ_EQ, - ACTIONS(7865), 1, - anon_sym_AMP_STAR, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7873), 1, - anon_sym_AMP_AMP, - ACTIONS(7875), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7877), 1, - sym__start_of_index_operator, - ACTIONS(7883), 1, - sym_binary_ampersand, - STATE(5720), 1, + ACTIONS(8202), 1, + anon_sym_COMMA, + STATE(5708), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5713), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6242), 2, - anon_sym_RBRACK, + ACTIONS(5635), 8, anon_sym_DOT_DOT, - ACTIONS(7857), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7863), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7867), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7851), 3, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7861), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7879), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5631), 28, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7881), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6240), 6, - sym__start_of_brace_block, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [223838] = 7, + [223442] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8181), 1, + ACTIONS(8204), 1, anon_sym_COMMA, - STATE(5721), 1, - sym_heredoc_body, - STATE(5723), 1, + STATE(5708), 1, aux_sym_argument_list_no_parens_repeat1, + STATE(5714), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -525688,10 +529733,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 28, + ACTIONS(5637), 28, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -525716,20 +529760,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [223895] = 7, + [223499] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8183), 1, + ACTIONS(8206), 1, anon_sym_COMMA, - STATE(5722), 1, + STATE(5715), 1, sym_heredoc_body, - STATE(5724), 1, + STATE(5721), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -525738,7 +529783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 28, + ACTIONS(5631), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -525767,19 +529812,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [223952] = 7, + [223556] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8183), 1, + ACTIONS(8206), 1, anon_sym_COMMA, - STATE(5474), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5723), 1, + STATE(5716), 1, sym_heredoc_body, + STATE(5758), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -525788,7 +529833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 28, + ACTIONS(5631), 28, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -525817,19 +529862,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [224009] = 7, + [223613] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8185), 1, - anon_sym_COMMA, - STATE(5474), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5724), 1, + STATE(5717), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(5985), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -525838,10 +529880,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 28, + ACTIONS(5983), 29, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -525852,6 +529893,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -525864,325 +529906,305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [224066] = 25, + [223666] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7985), 1, - anon_sym_DOT_DOT, - ACTIONS(7987), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7991), 1, - anon_sym_PIPE, - ACTIONS(7993), 1, - anon_sym_CARET, - ACTIONS(7997), 1, - anon_sym_EQ_EQ, - ACTIONS(8003), 1, - anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, ACTIONS(8009), 1, - anon_sym_QMARK, + sym__constant_segment, ACTIONS(8011), 1, - anon_sym_AMP_AMP, - ACTIONS(8013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, - sym__start_of_index_operator, - ACTIONS(8021), 1, - sym_binary_ampersand, - ACTIONS(8181), 1, - anon_sym_COMMA, - STATE(5723), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5725), 1, + anon_sym_COLON_COLON, + ACTIONS(8208), 1, + sym_identifier, + ACTIONS(8214), 1, + sym_identifier_method_call, + ACTIONS(8216), 1, + sym_self, + STATE(5718), 1, sym_heredoc_body, + STATE(8118), 1, + sym__operator_token, + STATE(11530), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, + ACTIONS(8210), 10, + anon_sym_LT, + anon_sym_STAR, + anon_sym_SLASH2, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(8212), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8001), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_LBRACK_RBRACK_QMARK, + anon_sym_LBRACK_RBRACK_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - ACTIONS(5570), 3, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_do, - ACTIONS(7989), 3, + [223733] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5719), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6029), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7999), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8017), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6027), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8019), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [224159] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7985), 1, - anon_sym_DOT_DOT, - ACTIONS(7987), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7991), 1, - anon_sym_PIPE, - ACTIONS(7993), 1, anon_sym_CARET, - ACTIONS(7997), 1, - anon_sym_EQ_EQ, - ACTIONS(8003), 1, - anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8009), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8011), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8013), 1, anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, - sym__start_of_index_operator, - ACTIONS(8021), 1, - sym_binary_ampersand, - ACTIONS(8183), 1, - anon_sym_COMMA, - STATE(5724), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5726), 1, + anon_sym_do, + [223786] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5720), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8001), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5585), 3, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_do, - ACTIONS(7989), 3, + ACTIONS(6033), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7999), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8017), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6031), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8019), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [224252] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7847), 1, - anon_sym_DOT_DOT, - ACTIONS(7849), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7853), 1, - anon_sym_PIPE, - ACTIONS(7855), 1, anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_EQ_EQ, - ACTIONS(7865), 1, - anon_sym_AMP_STAR, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7871), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7873), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(7875), 1, anon_sym_PIPE_PIPE, - ACTIONS(7877), 1, - sym__start_of_index_operator, - ACTIONS(7883), 1, - sym_binary_ampersand, - ACTIONS(8187), 1, - anon_sym_RBRACK, - STATE(5727), 1, + anon_sym_do, + [223839] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8218), 1, + anon_sym_COMMA, + STATE(5721), 1, sym_heredoc_body, + STATE(5758), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7857), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7863), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7867), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7851), 3, + ACTIONS(5641), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6256), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5637), 28, sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(7861), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7879), 4, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7881), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [224343] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7847), 1, - anon_sym_DOT_DOT, - ACTIONS(7849), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7853), 1, - anon_sym_PIPE, - ACTIONS(7855), 1, anon_sym_CARET, - ACTIONS(7859), 1, - anon_sym_EQ_EQ, - ACTIONS(7865), 1, - anon_sym_AMP_STAR, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(7871), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7873), 1, anon_sym_AMP_AMP, - ACTIONS(7875), 1, anon_sym_PIPE_PIPE, - ACTIONS(7877), 1, + anon_sym_do, + [223896] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7909), 1, + anon_sym_AMP_STAR, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7921), 1, sym__start_of_index_operator, - ACTIONS(7883), 1, - sym_binary_ampersand, - ACTIONS(8189), 1, - anon_sym_RBRACK, - STATE(5728), 1, + STATE(5722), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7857), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7863), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7867), 2, + ACTIONS(7911), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7851), 3, + ACTIONS(7925), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6259), 6, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6230), 4, + ACTIONS(6257), 23, sym__start_of_brace_block, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym_binary_ampersand, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - anon_sym_do, - ACTIONS(7861), 4, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7879), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7881), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [224434] = 13, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [223959] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7793), 1, - anon_sym_AMP_STAR, - ACTIONS(7797), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7805), 1, + ACTIONS(7921), 1, sym__start_of_index_operator, - ACTIONS(7811), 1, - sym_binary_ampersand, - STATE(5729), 1, + STATE(5723), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7795), 2, + ACTIONS(7911), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7807), 4, + ACTIONS(6295), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6293), 27, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, sym__binary_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6082), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6080), 16, - sym__start_of_brace_block, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -526193,16 +530215,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [224503] = 5, + [224018] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5730), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7921), 1, + sym__start_of_index_operator, + STATE(5724), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5520), 9, - anon_sym_RBRACK, + ACTIONS(7911), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -526210,21 +530238,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5518), 29, - sym__start_of_index_operator, + ACTIONS(6313), 27, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -526235,47 +530262,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [224556] = 11, + anon_sym_do, + [224077] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7793), 1, + ACTIONS(7909), 1, anon_sym_AMP_STAR, - ACTIONS(7797), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7805), 1, + ACTIONS(7921), 1, sym__start_of_index_operator, - STATE(5731), 1, + STATE(5725), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7795), 2, + ACTIONS(7901), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7911), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7807), 4, + ACTIONS(7923), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, + ACTIONS(7925), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6090), 6, + ACTIONS(6327), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6088), 19, + ACTIONS(6325), 17, sym__start_of_brace_block, sym_binary_ampersand, anon_sym_RBRACE, @@ -526283,8 +530311,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, @@ -526295,136 +530321,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [224621] = 5, + [224144] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5732), 1, + ACTIONS(6442), 1, + anon_sym_DOT_DOT, + ACTIONS(7897), 1, + anon_sym_PIPE, + ACTIONS(7899), 1, + anon_sym_CARET, + ACTIONS(7903), 1, + anon_sym_EQ_EQ, + ACTIONS(7909), 1, + anon_sym_AMP_STAR, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7917), 1, + anon_sym_AMP_AMP, + ACTIONS(7919), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7921), 1, + sym__start_of_index_operator, + ACTIONS(7927), 1, + sym_binary_ampersand, + STATE(5726), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5536), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7901), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7907), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7911), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7895), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5534), 29, - sym__start_of_index_operator, + ACTIONS(7905), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7923), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7925), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, + ACTIONS(6440), 7, + sym__start_of_brace_block, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_do, + [224229] = 17, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7897), 1, + anon_sym_PIPE, + ACTIONS(7899), 1, anon_sym_CARET, + ACTIONS(7903), 1, + anon_sym_EQ_EQ, + ACTIONS(7909), 1, + anon_sym_AMP_STAR, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7921), 1, + sym__start_of_index_operator, + ACTIONS(7927), 1, + sym_binary_ampersand, + STATE(5727), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7901), 2, anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(7911), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5817), 4, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7905), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_COLON, + ACTIONS(7923), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7925), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5815), 11, + sym__start_of_brace_block, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [224674] = 6, + anon_sym_do, + [224306] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7587), 1, - anon_sym_COLON, - STATE(5733), 1, + ACTIONS(7909), 1, + anon_sym_AMP_STAR, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7921), 1, + sym__start_of_index_operator, + ACTIONS(7927), 1, + sym_binary_ampersand, + STATE(5728), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(133), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7901), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7911), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7923), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7925), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + ACTIONS(6263), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6261), 16, + sym__start_of_brace_block, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [224729] = 5, + anon_sym_do, + [224375] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5734), 1, + ACTIONS(7909), 1, + anon_sym_AMP_STAR, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7921), 1, + sym__start_of_index_operator, + STATE(5729), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7911), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7923), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7925), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5869), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5867), 19, + sym__start_of_brace_block, + sym_binary_ampersand, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -526435,54 +530551,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [224782] = 15, + [224440] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7781), 1, + ACTIONS(7897), 1, anon_sym_PIPE, - ACTIONS(7783), 1, + ACTIONS(7899), 1, anon_sym_CARET, - ACTIONS(7793), 1, + ACTIONS(7909), 1, anon_sym_AMP_STAR, - ACTIONS(7797), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7805), 1, + ACTIONS(7921), 1, sym__start_of_index_operator, - ACTIONS(7811), 1, + ACTIONS(7927), 1, sym_binary_ampersand, - STATE(5735), 1, + STATE(5730), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, + ACTIONS(7901), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7795), 2, + ACTIONS(7911), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7807), 4, + ACTIONS(7923), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, + ACTIONS(7925), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6094), 5, + ACTIONS(6134), 5, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6092), 15, + ACTIONS(6132), 15, sym__start_of_brace_block, anon_sym_RBRACE, anon_sym_COMMA, @@ -526498,87 +530613,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [224855] = 25, + [224513] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7949), 1, + ACTIONS(6047), 1, anon_sym_DOT_DOT, - ACTIONS(7951), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7955), 1, + ACTIONS(7897), 1, anon_sym_PIPE, - ACTIONS(7957), 1, + ACTIONS(7899), 1, anon_sym_CARET, - ACTIONS(7961), 1, + ACTIONS(7903), 1, anon_sym_EQ_EQ, - ACTIONS(7967), 1, + ACTIONS(7909), 1, anon_sym_AMP_STAR, - ACTIONS(7971), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7921), 1, + sym__start_of_index_operator, + ACTIONS(7927), 1, + sym_binary_ampersand, + STATE(5731), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7901), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7907), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7911), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7895), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7905), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7923), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7925), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6045), 9, + sym__start_of_brace_block, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - ACTIONS(7973), 1, anon_sym_AMP_AMP, - ACTIONS(7975), 1, anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, + anon_sym_do, + [224594] = 20, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6215), 1, + anon_sym_DOT_DOT, + ACTIONS(7897), 1, + anon_sym_PIPE, + ACTIONS(7899), 1, + anon_sym_CARET, + ACTIONS(7903), 1, + anon_sym_EQ_EQ, + ACTIONS(7909), 1, + anon_sym_AMP_STAR, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7917), 1, + anon_sym_AMP_AMP, + ACTIONS(7921), 1, + sym__start_of_index_operator, + ACTIONS(7927), 1, sym_binary_ampersand, - ACTIONS(8191), 1, - anon_sym_COMMA, - STATE(5736), 1, + STATE(5732), 1, sym_heredoc_body, - STATE(5740), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, + ACTIONS(7901), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7965), 2, + ACTIONS(7907), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, + ACTIONS(7911), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5570), 3, - sym__start_of_brace_block, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(7953), 3, + ACTIONS(7895), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7963), 4, + ACTIONS(7905), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + ACTIONS(7923), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, + ACTIONS(7925), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [224948] = 7, + ACTIONS(6213), 8, + sym__start_of_brace_block, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_do, + [224677] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8191), 1, - anon_sym_COMMA, - STATE(5737), 1, + STATE(5733), 1, sym_heredoc_body, - STATE(5740), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(6043), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -526587,7 +530756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 28, + ACTIONS(6041), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -526600,6 +530769,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -526612,91 +530782,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [225005] = 25, + [224730] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7949), 1, - anon_sym_DOT_DOT, - ACTIONS(7951), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7955), 1, - anon_sym_PIPE, - ACTIONS(7957), 1, - anon_sym_CARET, - ACTIONS(7961), 1, - anon_sym_EQ_EQ, - ACTIONS(7967), 1, - anon_sym_AMP_STAR, - ACTIONS(7971), 1, - anon_sym_QMARK, - ACTIONS(7973), 1, - anon_sym_AMP_AMP, - ACTIONS(7975), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, - sym_binary_ampersand, - ACTIONS(8193), 1, - anon_sym_COMMA, - STATE(5738), 1, + STATE(5734), 1, sym_heredoc_body, - STATE(5741), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7965), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5585), 3, - sym__start_of_brace_block, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(7953), 3, + ACTIONS(6067), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7963), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6065), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [225098] = 7, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [224783] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_COMMA, - STATE(5739), 1, + STATE(5735), 1, sym_heredoc_body, - STATE(5741), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6079), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -526705,7 +530852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 28, + ACTIONS(6077), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -526718,6 +530865,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -526730,23 +530878,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [225155] = 7, + [224836] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8193), 1, - anon_sym_COMMA, - STATE(5558), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5740), 1, + STATE(5736), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6090), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -526755,7 +530900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 28, + ACTIONS(6088), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -526768,6 +530913,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -526780,23 +530926,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [225212] = 7, + [224889] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8195), 1, - anon_sym_COMMA, - STATE(5558), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5741), 1, + STATE(5737), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(6138), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -526805,7 +530948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 28, + ACTIONS(6136), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, @@ -526818,6 +530961,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -526830,19 +530974,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [225269] = 5, + [224942] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5742), 1, + STATE(5738), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5581), 8, + ACTIONS(6148), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -526851,10 +530996,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5579), 30, + ACTIONS(6146), 29, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -526877,22 +531021,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [225322] = 6, + [224995] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7495), 1, - anon_sym_LPAREN2, - STATE(5743), 1, + STATE(5739), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6086), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -526901,8 +531044,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 29, - sym__line_break, + ACTIONS(6084), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -526914,7 +531057,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -526928,20 +531070,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [225377] = 6, + anon_sym_do, + [225048] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8197), 1, - anon_sym_of, - STATE(5744), 1, + STATE(5740), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5702), 8, + ACTIONS(6299), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -526950,8 +531092,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5698), 29, - sym__line_break, + ACTIONS(6297), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -526963,7 +531105,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -526977,18 +531118,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [225432] = 5, + anon_sym_do, + [225101] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5745), 1, + STATE(5741), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5654), 8, + ACTIONS(6096), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -526997,10 +531140,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5652), 30, + ACTIONS(6094), 29, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -527023,22 +531165,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [225485] = 6, + [225154] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8199), 1, - sym_regex_modifier, - STATE(5746), 1, + STATE(5742), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5633), 8, + ACTIONS(6110), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -527047,8 +531188,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5631), 29, - sym__line_break, + ACTIONS(6108), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -527060,7 +531201,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -527074,20 +531214,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [225540] = 6, + anon_sym_do, + [225207] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8201), 1, - sym_regex_modifier, - STATE(5747), 1, + STATE(5743), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5679), 8, + ACTIONS(6144), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -527096,8 +531236,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5677), 29, - sym__line_break, + ACTIONS(6142), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -527109,7 +531249,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -527123,82 +531262,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [225595] = 19, + anon_sym_do, + [225260] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, - anon_sym_DOT_DOT, - ACTIONS(7781), 1, - anon_sym_PIPE, - ACTIONS(7783), 1, - anon_sym_CARET, - ACTIONS(7787), 1, - anon_sym_EQ_EQ, - ACTIONS(7793), 1, - anon_sym_AMP_STAR, - ACTIONS(7797), 1, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(7805), 1, + ACTIONS(7877), 1, sym__start_of_index_operator, - ACTIONS(7811), 1, - sym_binary_ampersand, - STATE(5748), 1, + STATE(5744), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7785), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7791), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7795), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7779), 3, + ACTIONS(6152), 8, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7789), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7807), 4, + anon_sym_AMP_STAR, + ACTIONS(6150), 28, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7809), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 9, - sym__start_of_brace_block, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [225676] = 6, + [225317] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8203), 1, - sym_regex_modifier, - STATE(5749), 1, + STATE(5745), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(6183), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -527207,8 +531334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 29, - sym__line_break, + ACTIONS(6181), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -527220,7 +531347,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -527234,18 +531360,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [225731] = 5, + anon_sym_do, + [225370] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5750), 1, + STATE(5746), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6246), 8, + ACTIONS(6207), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -527254,8 +531382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6244), 29, - sym__line_break, + ACTIONS(6205), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -527267,7 +531395,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -527281,141 +531408,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [225783] = 13, + anon_sym_do, + [225423] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8003), 1, - anon_sym_AMP_STAR, - ACTIONS(8007), 1, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(8015), 1, + ACTIONS(7877), 1, sym__start_of_index_operator, - ACTIONS(8021), 1, - sym_binary_ampersand, - STATE(5751), 1, + STATE(5747), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8005), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8017), 4, + ACTIONS(6156), 8, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6154), 28, + sym__start_of_brace_block, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8019), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6082), 6, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [225480] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5748), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5853), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6080), 15, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5851), 29, sym__start_of_brace_block, - sym__end_of_with_expression, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [225851] = 26, + [225533] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8205), 1, - anon_sym_RBRACE, - ACTIONS(8207), 1, - anon_sym_COMMA, - ACTIONS(8209), 1, - anon_sym_EQ_GT, - ACTIONS(8211), 1, + ACTIONS(8120), 1, anon_sym_DOT_DOT, - ACTIONS(8213), 1, + ACTIONS(8122), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, + ACTIONS(8126), 1, anon_sym_PIPE, - ACTIONS(8219), 1, + ACTIONS(8128), 1, anon_sym_CARET, - ACTIONS(8223), 1, + ACTIONS(8132), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(8138), 1, anon_sym_AMP_STAR, - ACTIONS(8233), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8144), 1, anon_sym_QMARK, - ACTIONS(8235), 1, + ACTIONS(8146), 1, anon_sym_AMP_AMP, - ACTIONS(8237), 1, + ACTIONS(8148), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, + ACTIONS(8150), 1, sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(8156), 1, sym_binary_ampersand, - STATE(5752), 1, + ACTIONS(8195), 1, + anon_sym_COMMA, + STATE(5716), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5749), 1, sym_heredoc_body, - STATE(9674), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(8130), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, + ACTIONS(8136), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(8140), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, + ACTIONS(5587), 3, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_do, + ACTIONS(8124), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(8134), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(8154), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [225945] = 5, + [225626] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5753), 1, - sym_heredoc_body, + ACTIONS(8220), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + STATE(5750), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -527424,7 +531598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 29, + ACTIONS(5694), 28, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -527438,7 +531612,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -527454,84 +531627,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [225997] = 27, + [225681] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8251), 1, - anon_sym_RPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - STATE(5754), 1, + ACTIONS(8120), 1, + anon_sym_DOT_DOT, + ACTIONS(8122), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8126), 1, + anon_sym_PIPE, + ACTIONS(8128), 1, + anon_sym_CARET, + ACTIONS(8132), 1, + anon_sym_EQ_EQ, + ACTIONS(8138), 1, + anon_sym_AMP_STAR, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8144), 1, + anon_sym_QMARK, + ACTIONS(8146), 1, + anon_sym_AMP_AMP, + ACTIONS(8148), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8150), 1, + sym__start_of_index_operator, + ACTIONS(8156), 1, + sym_binary_ampersand, + ACTIONS(8206), 1, + anon_sym_COMMA, + STATE(5721), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5751), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(11637), 1, - sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [226093] = 5, + ACTIONS(8130), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8136), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5631), 3, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_do, + ACTIONS(8124), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8134), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8152), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8154), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [225774] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5755), 1, + STATE(5752), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6156), 8, + ACTIONS(6223), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -527540,10 +531713,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6154), 29, + ACTIONS(6221), 29, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -527567,47 +531739,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [226145] = 11, + [225827] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8003), 1, - anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8015), 1, - sym__start_of_index_operator, - STATE(5756), 1, + ACTIONS(8223), 1, + anon_sym_EQ, + STATE(5753), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8005), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8017), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8019), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6090), 6, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6088), 18, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5761), 29, sym__start_of_brace_block, - sym__end_of_with_expression, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -527619,76 +531786,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [226209] = 15, + [225882] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7991), 1, - anon_sym_PIPE, - ACTIONS(7993), 1, - anon_sym_CARET, - ACTIONS(8003), 1, - anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8015), 1, - sym__start_of_index_operator, - ACTIONS(8021), 1, - sym_binary_ampersand, - STATE(5757), 1, + STATE(5754), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8005), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8017), 4, + ACTIONS(5849), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5847), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8019), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6094), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6092), 14, - sym__start_of_brace_block, - sym__end_of_with_expression, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [226281] = 5, + [225935] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5758), 1, + ACTIONS(8225), 1, + anon_sym_COMMA, + STATE(5755), 1, sym_heredoc_body, + STATE(5758), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6122), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -527697,9 +531861,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6120), 29, - sym__line_break, + ACTIONS(5637), 28, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -527710,8 +531875,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -527726,85 +531889,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [226333] = 27, + anon_sym_do, + [225992] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(8275), 1, - anon_sym_RPAREN, - STATE(5759), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(11094), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [226429] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5760), 1, + ACTIONS(8227), 1, + sym_regex_modifier, + STATE(5756), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5961), 8, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -527813,9 +531909,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5959), 29, - sym__line_break, + ACTIONS(5747), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -527826,7 +531923,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -527842,142 +531938,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [226481] = 19, + anon_sym_do, + [226047] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, - anon_sym_DOT_DOT, - ACTIONS(7991), 1, - anon_sym_PIPE, - ACTIONS(7993), 1, - anon_sym_CARET, - ACTIONS(7997), 1, - anon_sym_EQ_EQ, - ACTIONS(8003), 1, - anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8015), 1, - sym__start_of_index_operator, - ACTIONS(8021), 1, - sym_binary_ampersand, - STATE(5761), 1, + STATE(5757), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8001), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7989), 3, + ACTIONS(5570), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7999), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8017), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5568), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8019), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 8, - sym__start_of_brace_block, - sym__end_of_with_expression, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [226561] = 20, + [226100] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6118), 1, - anon_sym_DOT_DOT, - ACTIONS(7991), 1, - anon_sym_PIPE, - ACTIONS(7993), 1, - anon_sym_CARET, - ACTIONS(7997), 1, - anon_sym_EQ_EQ, - ACTIONS(8003), 1, - anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8011), 1, - anon_sym_AMP_AMP, - ACTIONS(8015), 1, - sym__start_of_index_operator, - ACTIONS(8021), 1, - sym_binary_ampersand, - STATE(5762), 1, - sym_heredoc_body, + ACTIONS(8229), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8001), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7989), 3, + STATE(5758), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5699), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7999), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8017), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5694), 28, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8019), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6116), 7, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [226643] = 6, + [226155] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8277), 1, - anon_sym_COMMA, + STATE(5759), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5763), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5713), 8, + ACTIONS(5787), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -527986,7 +532054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 27, + ACTIONS(5785), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -527998,8 +532067,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -528012,17 +532080,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [226697] = 5, + anon_sym_do, + [226208] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5764), 1, + STATE(5760), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5786), 8, + ACTIONS(5787), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -528031,8 +532102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5784), 29, - sym__line_break, + ACTIONS(5785), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -528044,7 +532115,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -528058,20 +532128,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [226749] = 6, + anon_sym_do, + [226261] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8280), 1, - anon_sym_of, - STATE(5765), 1, + STATE(5761), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5690), 9, + ACTIONS(5943), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -528081,7 +532150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5686), 27, + ACTIONS(5941), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -528109,17 +532179,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [226803] = 6, + anon_sym_do, + [226314] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8282), 1, - anon_sym_of, - STATE(5766), 1, + STATE(5762), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5719), 9, + ACTIONS(5809), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -528129,7 +532198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5715), 27, + ACTIONS(5807), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -528157,155 +532227,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [226857] = 27, + anon_sym_do, + [226367] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(8232), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(8284), 1, - anon_sym_RPAREN, - STATE(5767), 1, + STATE(5763), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(11445), 1, - sym_type_instance_param_list, + STATE(10256), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [226953] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7735), 1, + ACTIONS(4783), 9, anon_sym_DOT_DOT, - ACTIONS(7737), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7741), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7743), 1, - anon_sym_CARET, - ACTIONS(7747), 1, anon_sym_EQ_EQ, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7757), 1, - anon_sym_QMARK, - ACTIONS(7759), 1, - anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(7771), 1, - sym_binary_ampersand, - ACTIONS(8286), 1, - anon_sym_COMMA, - STATE(5768), 1, - sym_heredoc_body, - STATE(5888), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5585), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(7745), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7751), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7749), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7767), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + anon_sym_EQ, + ACTIONS(4785), 26, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7769), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [227045] = 7, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [226426] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8286), 1, - anon_sym_COMMA, - STATE(5769), 1, + STATE(5764), 1, sym_heredoc_body, - STATE(5888), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5813), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -528314,8 +532297,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 27, - sym__line_break, + ACTIONS(5811), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -528327,7 +532310,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -528340,131 +532323,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [227101] = 25, + anon_sym_do, + [226479] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8211), 1, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8040), 1, anon_sym_DOT_DOT, - ACTIONS(8213), 1, + ACTIONS(8042), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, + ACTIONS(8046), 1, anon_sym_PIPE, - ACTIONS(8219), 1, + ACTIONS(8048), 1, anon_sym_CARET, - ACTIONS(8223), 1, + ACTIONS(8052), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(8058), 1, anon_sym_AMP_STAR, - ACTIONS(8233), 1, + ACTIONS(8062), 1, anon_sym_QMARK, - ACTIONS(8235), 1, + ACTIONS(8064), 1, anon_sym_AMP_AMP, - ACTIONS(8237), 1, + ACTIONS(8066), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(8072), 1, sym_binary_ampersand, - ACTIONS(8288), 1, + ACTIONS(8234), 1, anon_sym_COMMA, - STATE(5770), 1, + STATE(5765), 1, sym_heredoc_body, - STATE(6106), 1, + STATE(5769), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5570), 2, - anon_sym_RBRACE, - anon_sym_EQ_GT, - ACTIONS(8221), 2, + ACTIONS(8050), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, + ACTIONS(8056), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(8060), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, + ACTIONS(5587), 3, + sym__start_of_brace_block, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8044), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(8054), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(8070), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [227193] = 5, + [226572] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5771), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6356), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6354), 29, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_SEMI, + ACTIONS(8234), 1, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [227245] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5772), 1, + STATE(5766), 1, sym_heredoc_body, + STATE(5769), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -528473,8 +532416,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 29, - sym__line_break, + ACTIONS(5587), 28, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -528486,8 +532429,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -528502,154 +532443,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [227297] = 26, + anon_sym_COLON2, + anon_sym_do, + [226629] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8209), 1, - anon_sym_EQ_GT, - ACTIONS(8211), 1, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8040), 1, anon_sym_DOT_DOT, - ACTIONS(8213), 1, + ACTIONS(8042), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, + ACTIONS(8046), 1, anon_sym_PIPE, - ACTIONS(8219), 1, + ACTIONS(8048), 1, anon_sym_CARET, - ACTIONS(8223), 1, + ACTIONS(8052), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(8058), 1, anon_sym_AMP_STAR, - ACTIONS(8233), 1, + ACTIONS(8062), 1, anon_sym_QMARK, - ACTIONS(8235), 1, + ACTIONS(8064), 1, anon_sym_AMP_AMP, - ACTIONS(8237), 1, + ACTIONS(8066), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(8072), 1, sym_binary_ampersand, - ACTIONS(8290), 1, - anon_sym_RBRACE, - ACTIONS(8292), 1, + ACTIONS(8236), 1, anon_sym_COMMA, - STATE(5773), 1, + STATE(5767), 1, sym_heredoc_body, - STATE(9735), 1, - aux_sym_array_repeat1, + STATE(5770), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(8050), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, + ACTIONS(8056), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(8060), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, + ACTIONS(5631), 3, + sym__start_of_brace_block, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8044), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(8054), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(8070), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [227391] = 27, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(8294), 1, - anon_sym_RPAREN, - STATE(5774), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(11662), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [227487] = 5, + [226722] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5775), 1, + ACTIONS(8236), 1, + anon_sym_COMMA, + STATE(5768), 1, sym_heredoc_body, + STATE(5770), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5654), 9, - anon_sym_RBRACK, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -528658,7 +532534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5652), 28, + ACTIONS(5631), 28, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -528670,7 +532547,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -528682,20 +532558,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [227539] = 5, + anon_sym_COLON2, + anon_sym_do, + [226779] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5776), 1, + ACTIONS(8236), 1, + anon_sym_COMMA, + STATE(5708), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5769), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6156), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -528704,8 +532584,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6154), 29, - sym__line_break, + ACTIONS(5631), 28, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -528717,8 +532597,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -528733,16 +532611,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [227591] = 5, + anon_sym_COLON2, + anon_sym_do, + [226836] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5777), 1, + ACTIONS(8238), 1, + anon_sym_COMMA, + STATE(5708), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(5770), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -528751,8 +532634,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6360), 29, - sym__line_break, + ACTIONS(5637), 28, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -528764,8 +532647,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -528780,16 +532661,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [227643] = 5, + anon_sym_COLON2, + anon_sym_do, + [226893] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5778), 1, + ACTIONS(7515), 1, + anon_sym_LPAREN2, + STATE(5771), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6304), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -528798,7 +532682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6302), 29, + ACTIONS(135), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -528828,15 +532712,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [227695] = 5, + [226948] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5779), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(8240), 1, + sym_identifier, + ACTIONS(8246), 1, + sym_identifier_method_call, + ACTIONS(8248), 1, + sym_self, + STATE(2031), 1, + sym__operator_token, + STATE(5772), 1, + sym_heredoc_body, + STATE(11014), 1, + sym_constant, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8242), 10, + anon_sym_LT, + anon_sym_STAR, + anon_sym_SLASH2, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(8244), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_LBRACK_RBRACK_QMARK, + anon_sym_LBRACK_RBRACK_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, + anon_sym_AMP_STAR_STAR, + [227015] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5773), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5838), 8, + ACTIONS(5547), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -528845,8 +532785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5836), 29, - sym__line_break, + ACTIONS(5545), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -528858,7 +532798,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -528872,156 +532811,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [227747] = 27, + anon_sym_do, + [227068] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(8296), 1, - anon_sym_RPAREN, - STATE(5780), 1, + ACTIONS(5981), 1, + anon_sym_DOT_DOT, + ACTIONS(7897), 1, + anon_sym_PIPE, + ACTIONS(7899), 1, + anon_sym_CARET, + ACTIONS(7903), 1, + anon_sym_EQ_EQ, + ACTIONS(7909), 1, + anon_sym_AMP_STAR, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(7917), 1, + anon_sym_AMP_AMP, + ACTIONS(7919), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7921), 1, + sym__start_of_index_operator, + ACTIONS(7927), 1, + sym_binary_ampersand, + STATE(5774), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(10513), 1, - sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [227843] = 27, + ACTIONS(7901), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7907), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7911), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7895), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7905), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7923), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7925), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5979), 7, + sym__start_of_brace_block, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_do, + [227153] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(8232), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(8298), 1, - anon_sym_RPAREN, - STATE(5781), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(11947), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [227939] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5782), 1, + STATE(5775), 1, sym_heredoc_body, + STATE(10256), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5790), 8, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -529030,9 +532902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5788), 29, - sym__line_break, + anon_sym_EQ, + ACTIONS(4785), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -529043,8 +532916,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -529059,63 +532930,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [227991] = 5, + [227212] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5783), 1, + ACTIONS(7847), 1, + anon_sym_DOT_DOT, + ACTIONS(7849), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7853), 1, + anon_sym_PIPE, + ACTIONS(7855), 1, + anon_sym_CARET, + ACTIONS(7859), 1, + anon_sym_EQ_EQ, + ACTIONS(7865), 1, + anon_sym_AMP_STAR, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7871), 1, + anon_sym_QMARK, + ACTIONS(7873), 1, + anon_sym_AMP_AMP, + ACTIONS(7875), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7877), 1, + sym__start_of_index_operator, + ACTIONS(7883), 1, + sym_binary_ampersand, + ACTIONS(8250), 1, + anon_sym_RBRACK, + STATE(5776), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6372), 8, - anon_sym_DOT_DOT, + ACTIONS(7857), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7863), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7851), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6370), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6025), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(7861), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7879), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7881), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + [227303] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7847), 1, + anon_sym_DOT_DOT, + ACTIONS(7849), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7853), 1, + anon_sym_PIPE, + ACTIONS(7855), 1, anon_sym_CARET, + ACTIONS(7859), 1, + anon_sym_EQ_EQ, + ACTIONS(7865), 1, + anon_sym_AMP_STAR, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(7871), 1, + anon_sym_QMARK, + ACTIONS(7873), 1, + anon_sym_AMP_AMP, + ACTIONS(7875), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7877), 1, + sym__start_of_index_operator, + ACTIONS(7883), 1, + sym_binary_ampersand, + ACTIONS(8252), 1, + anon_sym_RBRACK, + STATE(5777), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7857), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7863), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7867), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7851), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6039), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + anon_sym_do, + ACTIONS(7861), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [228043] = 5, + ACTIONS(7879), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7881), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [227394] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5784), 1, + STATE(5778), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6268), 8, + ACTIONS(5547), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -529124,10 +533082,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6266), 29, + ACTIONS(5545), 29, sym__start_of_brace_block, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -529151,18 +533108,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [228095] = 5, + [227447] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5785), 1, + STATE(5779), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6376), 8, + ACTIONS(6438), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -529171,8 +533130,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6374), 29, - sym__line_break, + ACTIONS(6436), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -529184,7 +533143,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -529198,18 +533156,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [228147] = 5, + anon_sym_do, + [227500] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5786), 1, + STATE(5780), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6380), 8, + ACTIONS(6126), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -529218,9 +533177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6378), 29, - sym__line_break, + ACTIONS(6124), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -529231,7 +533191,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -529247,85 +533206,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [228199] = 27, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(8300), 1, - anon_sym_RPAREN, - STATE(5787), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(10567), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [228295] = 5, + anon_sym_do, + [227552] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5788), 1, + STATE(5781), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6384), 8, + ACTIONS(5927), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -529334,7 +533224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6382), 29, + ACTIONS(5925), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -529364,110 +533254,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [228347] = 5, + [227604] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5789), 1, + ACTIONS(8120), 1, + anon_sym_DOT_DOT, + ACTIONS(8122), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8126), 1, + anon_sym_PIPE, + ACTIONS(8128), 1, + anon_sym_CARET, + ACTIONS(8132), 1, + anon_sym_EQ_EQ, + ACTIONS(8138), 1, + anon_sym_AMP_STAR, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8144), 1, + anon_sym_QMARK, + ACTIONS(8146), 1, + anon_sym_AMP_AMP, + ACTIONS(8148), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8150), 1, + sym__start_of_index_operator, + ACTIONS(8156), 1, + sym_binary_ampersand, + STATE(5782), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5794), 8, - anon_sym_DOT_DOT, + ACTIONS(8130), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8136), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8124), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5792), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6193), 4, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(8134), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8154), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [228399] = 27, + [227692] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8258), 1, + anon_sym_RPAREN, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8257), 1, + ACTIONS(8264), 1, anon_sym_typeof, - ACTIONS(8259), 1, + ACTIONS(8266), 1, sym__constant_segment, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8263), 1, + ACTIONS(8270), 1, sym_identifier_method_call, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(8302), 1, - anon_sym_RPAREN, - STATE(5790), 1, + STATE(5783), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9587), 1, + STATE(9669), 1, sym__splattable_type, - STATE(10226), 1, + STATE(10318), 1, sym_named_type, - STATE(10492), 1, + STATE(10535), 1, sym__bare_type, - STATE(10647), 1, + STATE(11024), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8265), 2, + ACTIONS(8272), 2, sym_self, sym_underscore_type, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -529480,15 +533388,15 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [228495] = 5, + [227788] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5791), 1, + STATE(5784), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6308), 8, + ACTIONS(5559), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -529497,9 +533405,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6306), 29, - sym__line_break, + ACTIONS(5557), 29, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -529510,7 +533418,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + sym__string_literal_start, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -529523,70 +533431,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [228547] = 5, + [227840] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5792), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5842), 8, + ACTIONS(8120), 1, anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8122), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8126), 1, + anon_sym_PIPE, + ACTIONS(8128), 1, + anon_sym_CARET, + ACTIONS(8132), 1, + anon_sym_EQ_EQ, + ACTIONS(8138), 1, anon_sym_AMP_STAR, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(5840), 29, - sym__line_break, + ACTIONS(8144), 1, + anon_sym_QMARK, + ACTIONS(8146), 1, + anon_sym_AMP_AMP, + ACTIONS(8148), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8150), 1, sym__start_of_index_operator, + ACTIONS(8156), 1, + sym_binary_ampersand, + STATE(5785), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8130), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8136), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8124), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6039), 4, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(8134), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8154), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + [227928] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8120), 1, + anon_sym_DOT_DOT, + ACTIONS(8122), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8126), 1, + anon_sym_PIPE, + ACTIONS(8128), 1, anon_sym_CARET, + ACTIONS(8132), 1, + anon_sym_EQ_EQ, + ACTIONS(8138), 1, + anon_sym_AMP_STAR, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8144), 1, + anon_sym_QMARK, + ACTIONS(8146), 1, + anon_sym_AMP_AMP, + ACTIONS(8148), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8150), 1, + sym__start_of_index_operator, + ACTIONS(8156), 1, + sym_binary_ampersand, + STATE(5786), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8130), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8136), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8124), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6203), 4, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(8134), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [228599] = 7, + ACTIONS(8152), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8154), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [228016] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8286), 1, - anon_sym_COMMA, - STATE(5529), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5793), 1, + STATE(5787), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6096), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -529595,9 +533582,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 27, - sym__line_break, + ACTIONS(6094), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -529608,7 +533596,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -529623,15 +533611,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [228655] = 5, + anon_sym_do, + [228068] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5794), 1, + STATE(5788), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6388), 8, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -529640,7 +533629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6386), 29, + ACTIONS(5871), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -529670,15 +533659,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [228707] = 5, + [228120] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5795), 1, + STATE(5789), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6392), 8, + ACTIONS(6110), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -529687,9 +533676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6390), 29, - sym__line_break, + ACTIONS(6108), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -529700,7 +533690,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -529716,21 +533705,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [228759] = 7, + anon_sym_do, + [228172] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8304), 1, - anon_sym_COMMA, - STATE(5796), 1, + STATE(5790), 1, sym_heredoc_body, - STATE(5799), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 9, - anon_sym_RBRACK, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -529739,7 +533723,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 26, + ACTIONS(5875), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -529751,6 +533736,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -529763,23 +533750,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [228815] = 7, + anon_sym_then, + [228224] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8282), 1, + anon_sym_RBRACE, + ACTIONS(8284), 1, + anon_sym_COMMA, + ACTIONS(8286), 1, + anon_sym_EQ_GT, + ACTIONS(8288), 1, + anon_sym_DOT_DOT, + ACTIONS(8290), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, + anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8310), 1, + anon_sym_QMARK, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8314), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, + STATE(5791), 1, + sym_heredoc_body, + STATE(10217), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8298), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8304), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8292), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8318), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8320), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [228318] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8304), 1, + ACTIONS(5981), 1, + anon_sym_DOT_DOT, + ACTIONS(8126), 1, + anon_sym_PIPE, + ACTIONS(8128), 1, + anon_sym_CARET, + ACTIONS(8132), 1, + anon_sym_EQ_EQ, + ACTIONS(8138), 1, + anon_sym_AMP_STAR, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8146), 1, + anon_sym_AMP_AMP, + ACTIONS(8148), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8150), 1, + sym__start_of_index_operator, + ACTIONS(8156), 1, + sym_binary_ampersand, + STATE(5792), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8130), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8136), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8124), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8134), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8152), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8154), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5979), 6, + sym__start_of_brace_block, + sym__end_of_with_expression, anon_sym_COMMA, - STATE(5797), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_do, + [228402] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5793), 1, sym_heredoc_body, - STATE(5800), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 9, - anon_sym_RBRACK, + ACTIONS(6363), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -529788,7 +533901,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 26, + ACTIONS(6361), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -529800,6 +533914,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -529812,18 +533928,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [228871] = 5, + anon_sym_then, + [228454] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5798), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_typeof, + ACTIONS(8266), 1, + sym__constant_segment, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8324), 1, + anon_sym_RPAREN, + STATE(5794), 1, + sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(11527), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8272), 2, + sym_self, + sym_underscore_type, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [228550] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5795), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6220), 8, + ACTIONS(5947), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -529832,7 +534017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6218), 29, + ACTIONS(5945), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -529862,20 +534047,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [228923] = 7, + [228602] = 25, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8288), 1, + anon_sym_DOT_DOT, + ACTIONS(8290), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, + anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8310), 1, + anon_sym_QMARK, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8314), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, + ACTIONS(8326), 1, anon_sym_COMMA, - STATE(5799), 1, + STATE(5796), 1, sym_heredoc_body, - STATE(5800), 1, + STATE(6054), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 9, - anon_sym_RBRACK, + ACTIONS(5587), 2, + anon_sym_RBRACE, + anon_sym_EQ_GT, + ACTIONS(8298), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8304), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8292), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8318), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8320), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [228694] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5797), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5829), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -529884,8 +534131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 26, + ACTIONS(5827), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -529896,6 +534145,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -529908,42 +534158,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [228979] = 6, + anon_sym_do, + [228746] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8308), 1, - anon_sym_COMMA, + ACTIONS(8138), 1, + anon_sym_AMP_STAR, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8150), 1, + sym__start_of_index_operator, + STATE(5798), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5800), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5713), 9, - anon_sym_RBRACK, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8154), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6259), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5708), 26, - sym__start_of_index_operator, + ACTIONS(6257), 22, + sym__start_of_brace_block, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -529954,89 +534209,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [229033] = 27, + anon_sym_do, + [228808] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(8311), 1, - anon_sym_RPAREN, - STATE(5801), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8150), 1, + sym__start_of_index_operator, + STATE(5799), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(10700), 1, - sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [229129] = 5, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6295), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(6293), 26, + sym__start_of_brace_block, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [228866] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5802), 1, + STATE(5800), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6396), 8, + ACTIONS(6144), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -530045,9 +534280,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6394), 29, - sym__line_break, + ACTIONS(6142), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -530058,7 +534294,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -530074,16 +534309,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [229181] = 5, + anon_sym_do, + [228918] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5803), 1, + ACTIONS(8328), 1, + anon_sym_of, + STATE(5801), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(5725), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -530092,8 +534330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5868), 29, - sym__line_break, + ACTIONS(5721), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -530105,7 +534342,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -530119,18 +534355,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [229233] = 5, + [228972] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5804), 1, + STATE(5802), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6404), 8, + ACTIONS(6075), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -530139,9 +534375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6402), 29, - sym__line_break, + ACTIONS(6073), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -530152,7 +534389,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -530168,16 +534404,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [229285] = 5, + anon_sym_do, + [229024] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5805), 1, + STATE(5803), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6410), 8, + ACTIONS(6454), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -530186,7 +534422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6408), 29, + ACTIONS(6452), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -530216,15 +534452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [229337] = 5, + [229076] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5806), 1, + STATE(5804), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5742), 8, + ACTIONS(6466), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -530233,7 +534469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5740), 29, + ACTIONS(6464), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -530263,84 +534499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [229389] = 27, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(8313), 1, - anon_sym_RPAREN, - STATE(5807), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(10750), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [229485] = 5, + [229128] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5808), 1, + STATE(5805), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6268), 8, + ACTIONS(6406), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -530349,7 +534516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6266), 29, + ACTIONS(6404), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -530379,218 +534546,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [229537] = 27, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(8315), 1, - anon_sym_RPAREN, - STATE(5809), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(10805), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [229633] = 23, + [229180] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7949), 1, + ACTIONS(7800), 1, anon_sym_DOT_DOT, - ACTIONS(7951), 1, + ACTIONS(7802), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7955), 1, + ACTIONS(7806), 1, anon_sym_PIPE, - ACTIONS(7957), 1, + ACTIONS(7808), 1, anon_sym_CARET, - ACTIONS(7961), 1, + ACTIONS(7812), 1, anon_sym_EQ_EQ, - ACTIONS(7967), 1, + ACTIONS(7818), 1, anon_sym_AMP_STAR, - ACTIONS(7971), 1, + ACTIONS(7822), 1, anon_sym_QMARK, - ACTIONS(7973), 1, + ACTIONS(7824), 1, anon_sym_AMP_AMP, - ACTIONS(7975), 1, + ACTIONS(7826), 1, anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(7836), 1, sym_binary_ampersand, - STATE(5810), 1, + ACTIONS(8330), 1, + anon_sym_COMMA, + STATE(5806), 1, sym_heredoc_body, + STATE(6002), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, + ACTIONS(5587), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(7810), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7965), 2, + ACTIONS(7816), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, + ACTIONS(7820), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7953), 3, + ACTIONS(7804), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6144), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(7963), 4, + ACTIONS(7814), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + ACTIONS(7832), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, + ACTIONS(7834), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [229721] = 27, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(8317), 1, - anon_sym_RPAREN, - STATE(5811), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(10858), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [229817] = 5, + [229272] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5812), 1, + STATE(5807), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6016), 8, + ACTIONS(5885), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -530599,7 +534630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6014), 29, + ACTIONS(5883), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -530629,193 +534660,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [229869] = 23, + [229324] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7949), 1, + ACTIONS(8286), 1, + anon_sym_EQ_GT, + ACTIONS(8288), 1, anon_sym_DOT_DOT, - ACTIONS(7951), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7955), 1, + ACTIONS(8294), 1, anon_sym_PIPE, - ACTIONS(7957), 1, + ACTIONS(8296), 1, anon_sym_CARET, - ACTIONS(7961), 1, + ACTIONS(8300), 1, anon_sym_EQ_EQ, - ACTIONS(7967), 1, + ACTIONS(8306), 1, anon_sym_AMP_STAR, - ACTIONS(7971), 1, + ACTIONS(8310), 1, anon_sym_QMARK, - ACTIONS(7973), 1, + ACTIONS(8312), 1, anon_sym_AMP_AMP, - ACTIONS(7975), 1, + ACTIONS(8314), 1, anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, sym_binary_ampersand, - STATE(5813), 1, + ACTIONS(8332), 1, + anon_sym_RBRACE, + ACTIONS(8334), 1, + anon_sym_COMMA, + STATE(5808), 1, sym_heredoc_body, + STATE(10433), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7965), 2, + ACTIONS(8304), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, + ACTIONS(8308), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7953), 3, + ACTIONS(8292), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6152), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(7963), 4, + ACTIONS(8302), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, + ACTIONS(8320), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [229957] = 23, + [229418] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7949), 1, - anon_sym_DOT_DOT, - ACTIONS(7951), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7955), 1, - anon_sym_PIPE, - ACTIONS(7957), 1, - anon_sym_CARET, - ACTIONS(7961), 1, - anon_sym_EQ_EQ, - ACTIONS(7967), 1, - anon_sym_AMP_STAR, - ACTIONS(7971), 1, - anon_sym_QMARK, - ACTIONS(7973), 1, - anon_sym_AMP_AMP, - ACTIONS(7975), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, - sym_binary_ampersand, - STATE(5814), 1, + ACTIONS(8330), 1, + anon_sym_COMMA, + STATE(5809), 1, sym_heredoc_body, + STATE(6002), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7965), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7953), 3, + ACTIONS(5629), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6256), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(7963), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5587), 27, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [230045] = 27, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [229474] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8257), 1, + ACTIONS(8264), 1, anon_sym_typeof, - ACTIONS(8259), 1, + ACTIONS(8266), 1, sym__constant_segment, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8263), 1, + ACTIONS(8270), 1, sym_identifier_method_call, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(8319), 1, + ACTIONS(8336), 1, anon_sym_RPAREN, - STATE(5815), 1, + STATE(5810), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9587), 1, + STATE(9669), 1, sym__splattable_type, - STATE(10226), 1, + STATE(10318), 1, sym_named_type, - STATE(10492), 1, + STATE(10535), 1, sym__bare_type, - STATE(10929), 1, + STATE(11401), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8265), 2, + ACTIONS(8272), 2, sym_self, sym_underscore_type, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -530828,80 +534846,86 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [230141] = 23, + [229570] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(7735), 1, + ACTIONS(8338), 1, + anon_sym_COMMA, + ACTIONS(8340), 1, + anon_sym_RBRACK, + ACTIONS(8342), 1, anon_sym_DOT_DOT, - ACTIONS(7737), 1, + ACTIONS(8344), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7741), 1, + ACTIONS(8348), 1, anon_sym_PIPE, - ACTIONS(7743), 1, + ACTIONS(8350), 1, anon_sym_CARET, - ACTIONS(7747), 1, + ACTIONS(8354), 1, anon_sym_EQ_EQ, - ACTIONS(7753), 1, + ACTIONS(8360), 1, anon_sym_AMP_STAR, - ACTIONS(7757), 1, + ACTIONS(8364), 1, anon_sym_QMARK, - ACTIONS(7759), 1, + ACTIONS(8366), 1, + anon_sym_RBRACK_QMARK, + ACTIONS(8368), 1, anon_sym_AMP_AMP, - ACTIONS(7761), 1, + ACTIONS(8370), 1, anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, + ACTIONS(8372), 1, sym__start_of_index_operator, - ACTIONS(7771), 1, + ACTIONS(8378), 1, sym_binary_ampersand, - STATE(5816), 1, + STATE(5811), 1, sym_heredoc_body, + STATE(9463), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7745), 2, + ACTIONS(8352), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7751), 2, + ACTIONS(8358), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, + ACTIONS(8346), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6358), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - ACTIONS(7749), 4, + ACTIONS(8356), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7767), 4, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7769), 4, + ACTIONS(8376), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [230229] = 5, + [229664] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5817), 1, + ACTIONS(8380), 1, + anon_sym_of, + STATE(5812), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5798), 8, + ACTIONS(5733), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -530910,8 +534934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5796), 29, - sym__line_break, + ACTIONS(5729), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -530923,7 +534946,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -530937,148 +534959,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [230281] = 23, + [229718] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7949), 1, - anon_sym_DOT_DOT, - ACTIONS(7951), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7955), 1, - anon_sym_PIPE, - ACTIONS(7957), 1, - anon_sym_CARET, - ACTIONS(7961), 1, - anon_sym_EQ_EQ, - ACTIONS(7967), 1, - anon_sym_AMP_STAR, - ACTIONS(7971), 1, - anon_sym_QMARK, - ACTIONS(7973), 1, - anon_sym_AMP_AMP, - ACTIONS(7975), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, - sym_binary_ampersand, - STATE(5818), 1, + STATE(5813), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7965), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7953), 3, + ACTIONS(5849), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6358), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(7963), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5847), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [230369] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7949), 1, - anon_sym_DOT_DOT, - ACTIONS(7951), 1, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7955), 1, - anon_sym_PIPE, - ACTIONS(7957), 1, anon_sym_CARET, - ACTIONS(7961), 1, - anon_sym_EQ_EQ, - ACTIONS(7967), 1, - anon_sym_AMP_STAR, - ACTIONS(7971), 1, - anon_sym_QMARK, - ACTIONS(7973), 1, - anon_sym_AMP_AMP, - ACTIONS(7975), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, - sym_binary_ampersand, - STATE(5819), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7959), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7965), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7953), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6364), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(7963), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7977), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7979), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [230457] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [229770] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5820), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8150), 1, + sym__start_of_index_operator, + STATE(5814), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5806), 8, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -531086,21 +535032,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5804), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6313), 26, + sym__start_of_brace_block, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -531112,150 +535055,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [230509] = 23, + anon_sym_do, + [229828] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(8138), 1, + anon_sym_AMP_STAR, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7122), 1, + ACTIONS(8150), 1, sym__start_of_index_operator, - ACTIONS(7949), 1, - anon_sym_DOT_DOT, - ACTIONS(7951), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7955), 1, - anon_sym_PIPE, - ACTIONS(7957), 1, - anon_sym_CARET, - ACTIONS(7961), 1, - anon_sym_EQ_EQ, - ACTIONS(7967), 1, - anon_sym_AMP_STAR, - ACTIONS(7971), 1, - anon_sym_QMARK, - ACTIONS(7973), 1, - anon_sym_AMP_AMP, - ACTIONS(7975), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, - sym_binary_ampersand, - STATE(5821), 1, + STATE(5815), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, + ACTIONS(8130), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7965), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, + ACTIONS(8140), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7953), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5708), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(7963), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, + ACTIONS(8154), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [230597] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7735), 1, + ACTIONS(6327), 6, anon_sym_DOT_DOT, - ACTIONS(7737), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7741), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7743), 1, - anon_sym_CARET, - ACTIONS(7747), 1, anon_sym_EQ_EQ, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7757), 1, - anon_sym_QMARK, - ACTIONS(7759), 1, - anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(7771), 1, - sym_binary_ampersand, - STATE(5822), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7745), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7751), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6364), 4, - sym__line_break, - anon_sym_SEMI, + ACTIONS(6325), 16, + sym__start_of_brace_block, + sym__end_of_with_expression, + sym_binary_ampersand, anon_sym_COMMA, - anon_sym_then, - ACTIONS(7749), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7767), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7769), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [230685] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [229894] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5823), 1, + STATE(5816), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5903), 8, + ACTIONS(6379), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -531264,7 +535130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5901), 29, + ACTIONS(6377), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -531294,15 +535160,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [230737] = 5, + [229946] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5824), 1, + STATE(5817), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5907), 8, + ACTIONS(5931), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -531311,7 +535177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5905), 29, + ACTIONS(5929), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -531341,15 +535207,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [230789] = 5, + [229998] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5825), 1, + STATE(5818), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6130), 8, + ACTIONS(5865), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -531358,7 +535224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6128), 29, + ACTIONS(5863), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -531388,78 +535254,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [230841] = 21, + [230050] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5923), 1, + ACTIONS(6442), 1, anon_sym_DOT_DOT, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7955), 1, + ACTIONS(8126), 1, anon_sym_PIPE, - ACTIONS(7957), 1, + ACTIONS(8128), 1, anon_sym_CARET, - ACTIONS(7961), 1, + ACTIONS(8132), 1, anon_sym_EQ_EQ, - ACTIONS(7967), 1, + ACTIONS(8138), 1, anon_sym_AMP_STAR, - ACTIONS(7973), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8146), 1, anon_sym_AMP_AMP, - ACTIONS(7975), 1, + ACTIONS(8148), 1, anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, + ACTIONS(8150), 1, + sym__start_of_index_operator, + ACTIONS(8156), 1, sym_binary_ampersand, - STATE(5826), 1, + STATE(5819), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, + ACTIONS(8130), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7965), 2, + ACTIONS(8136), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, + ACTIONS(8140), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7953), 3, + ACTIONS(8124), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7963), 4, + ACTIONS(8134), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, + ACTIONS(8154), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5921), 6, + ACTIONS(6440), 6, sym__start_of_brace_block, + sym__end_of_with_expression, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - anon_sym_COLON2, anon_sym_do, - [230925] = 5, + [230134] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5827), 1, + STATE(5820), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -531468,7 +535334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 29, + ACTIONS(6385), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -531498,254 +535364,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [230977] = 5, + [230186] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5828), 1, + ACTIONS(8126), 1, + anon_sym_PIPE, + ACTIONS(8128), 1, + anon_sym_CARET, + ACTIONS(8132), 1, + anon_sym_EQ_EQ, + ACTIONS(8138), 1, + anon_sym_AMP_STAR, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8150), 1, + sym__start_of_index_operator, + ACTIONS(8156), 1, + sym_binary_ampersand, + STATE(5821), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6142), 8, + ACTIONS(8130), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5817), 4, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6140), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(8134), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8154), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + ACTIONS(5815), 10, + sym__start_of_brace_block, + sym__end_of_with_expression, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [231029] = 6, + anon_sym_do, + [230262] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7710), 1, - anon_sym_COLON, - STATE(5829), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(155), 8, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8286), 1, + anon_sym_EQ_GT, + ACTIONS(8288), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(8290), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8294), 1, anon_sym_PIPE, + ACTIONS(8296), 1, + anon_sym_CARET, + ACTIONS(8300), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8306), 1, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(133), 28, + ACTIONS(8310), 1, + anon_sym_QMARK, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8314), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8316), 1, sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, + ACTIONS(8322), 1, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, + ACTIONS(8382), 1, anon_sym_RBRACE, + ACTIONS(8384), 1, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, + STATE(5822), 1, + sym_heredoc_body, + STATE(9802), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8304), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(8308), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [231083] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5830), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6150), 8, - anon_sym_DOT_DOT, + ACTIONS(8292), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6148), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8320), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [231135] = 5, + [230356] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5831), 1, + ACTIONS(8138), 1, + anon_sym_AMP_STAR, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8150), 1, + sym__start_of_index_operator, + ACTIONS(8156), 1, + sym_binary_ampersand, + STATE(5823), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5814), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5812), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(8130), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8154), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [231187] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5832), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5911), 8, + ACTIONS(6263), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5909), 29, - sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_SEMI, + ACTIONS(6261), 15, + sym__start_of_brace_block, + sym__end_of_with_expression, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [231239] = 6, + anon_sym_do, + [230424] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8321), 1, - sym_regex_modifier, - STATE(5833), 1, + STATE(5824), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5633), 9, - anon_sym_RBRACK, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -531754,7 +535563,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5631), 27, + ACTIONS(6389), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -531766,6 +535576,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -531779,156 +535590,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [231293] = 26, + anon_sym_then, + [230476] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8209), 1, - anon_sym_EQ_GT, - ACTIONS(8211), 1, - anon_sym_DOT_DOT, - ACTIONS(8213), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, - anon_sym_PIPE, - ACTIONS(8219), 1, - anon_sym_CARET, - ACTIONS(8223), 1, - anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(8138), 1, anon_sym_AMP_STAR, - ACTIONS(8233), 1, - anon_sym_QMARK, - ACTIONS(8235), 1, - anon_sym_AMP_AMP, - ACTIONS(8237), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8150), 1, sym__start_of_index_operator, - ACTIONS(8245), 1, - sym_binary_ampersand, - ACTIONS(8323), 1, - anon_sym_RBRACE, - ACTIONS(8325), 1, - anon_sym_COMMA, - STATE(5834), 1, + STATE(5825), 1, sym_heredoc_body, - STATE(10109), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(8140), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8225), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8241), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8243), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [231387] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5835), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5915), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5913), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8154), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [231439] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8327), 1, - sym_regex_modifier, - STATE(5836), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5679), 9, - anon_sym_RBRACK, + ACTIONS(5869), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5677), 27, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, + ACTIONS(5867), 18, + sym__start_of_brace_block, + sym__end_of_with_expression, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -531940,68 +535642,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [231493] = 27, + anon_sym_do, + [230540] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8257), 1, + ACTIONS(8264), 1, anon_sym_typeof, - ACTIONS(8259), 1, + ACTIONS(8266), 1, sym__constant_segment, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8263), 1, + ACTIONS(8270), 1, sym_identifier_method_call, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(8329), 1, + ACTIONS(8386), 1, anon_sym_RPAREN, - STATE(5837), 1, + STATE(5826), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9587), 1, + STATE(9669), 1, sym__splattable_type, - STATE(10226), 1, + STATE(10318), 1, sym_named_type, - STATE(10492), 1, + STATE(10535), 1, sym__bare_type, - STATE(11436), 1, + STATE(10612), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8265), 2, + ACTIONS(8272), 2, sym_self, sym_underscore_type, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -532014,15 +535715,15 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [231589] = 5, + [230636] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5838), 1, + STATE(5827), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5822), 8, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -532031,7 +535732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5820), 29, + ACTIONS(6393), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -532061,62 +535762,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [231641] = 5, + [230688] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5839), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6417), 8, - anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(8126), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8128), 1, + anon_sym_CARET, + ACTIONS(8138), 1, anon_sym_AMP_STAR, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(6415), 29, - sym__line_break, + ACTIONS(8150), 1, sym__start_of_index_operator, + ACTIONS(8156), 1, + sym_binary_ampersand, + STATE(5828), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8130), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8154), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + ACTIONS(6134), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6132), 14, + sym__start_of_brace_block, + sym__end_of_with_expression, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [231693] = 5, + anon_sym_do, + [230760] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5840), 1, + STATE(5829), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5968), 8, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -532125,7 +535836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5966), 29, + ACTIONS(6199), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -532155,15 +535866,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [231745] = 5, + [230812] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5841), 1, + ACTIONS(7718), 1, + anon_sym_COLON, + STATE(5830), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5512), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -532172,10 +535885,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 29, - sym__start_of_brace_block, + ACTIONS(135), 28, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -532186,7 +535897,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -532201,16 +535914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [231797] = 5, + [230866] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5842), 1, + STATE(5831), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6024), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -532219,9 +535931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6022), 29, - sym__line_break, + ACTIONS(6098), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -532232,7 +535945,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -532248,16 +535960,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [231849] = 5, + anon_sym_do, + [230918] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5843), 1, + STATE(5832), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6228), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -532266,9 +535978,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6226), 29, - sym__line_break, + ACTIONS(6098), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -532279,7 +535992,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -532295,16 +536007,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [231901] = 5, + anon_sym_do, + [230970] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5844), 1, + STATE(5833), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(6106), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -532313,7 +536025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 29, + ACTIONS(6104), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -532343,15 +536055,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [231953] = 5, + [231022] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5845), 1, + STATE(5834), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5850), 8, + ACTIONS(5783), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -532360,7 +536072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5848), 29, + ACTIONS(5781), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -532390,15 +536102,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [232005] = 5, + [231074] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5846), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8286), 1, + anon_sym_EQ_GT, + ACTIONS(8288), 1, + anon_sym_DOT_DOT, + ACTIONS(8290), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, + anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8310), 1, + anon_sym_QMARK, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8314), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, + ACTIONS(8388), 1, + anon_sym_RBRACE, + ACTIONS(8390), 1, + anon_sym_COMMA, + STATE(5835), 1, + sym_heredoc_body, + STATE(10200), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8298), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8304), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8292), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8318), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8320), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [231168] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5836), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5854), 8, + ACTIONS(6114), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -532407,7 +536187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5852), 29, + ACTIONS(6112), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -532437,15 +536217,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [232057] = 5, + [231220] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5847), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_typeof, + ACTIONS(8266), 1, + sym__constant_segment, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8392), 1, + anon_sym_RPAREN, + STATE(5837), 1, sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(11275), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6192), 8, + ACTIONS(8272), 2, + sym_self, + sym_underscore_type, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [231316] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5838), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -532454,10 +536303,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6190), 29, - sym__start_of_brace_block, + ACTIONS(6321), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -532468,6 +536316,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -532483,16 +536332,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [232109] = 5, + anon_sym_then, + [231368] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5848), 1, + STATE(5839), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6126), 8, + ACTIONS(6118), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -532501,9 +536350,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6124), 29, - sym__line_break, + ACTIONS(6116), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -532514,7 +536364,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -532530,16 +536379,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [232161] = 5, + anon_sym_do, + [231420] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5849), 1, + STATE(5840), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(6051), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -532548,7 +536397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 29, + ACTIONS(6049), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -532578,83 +536427,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [232213] = 26, + [231472] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8209), 1, - anon_sym_EQ_GT, - ACTIONS(8211), 1, - anon_sym_DOT_DOT, - ACTIONS(8213), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, - anon_sym_PIPE, - ACTIONS(8219), 1, - anon_sym_CARET, - ACTIONS(8223), 1, - anon_sym_EQ_EQ, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8233), 1, - anon_sym_QMARK, - ACTIONS(8235), 1, - anon_sym_AMP_AMP, - ACTIONS(8237), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, - sym_binary_ampersand, - ACTIONS(8331), 1, - anon_sym_RBRACE, - ACTIONS(8333), 1, + ACTIONS(8326), 1, anon_sym_COMMA, - STATE(5850), 1, - sym_heredoc_body, - STATE(10000), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8225), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8241), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8243), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [232307] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5851), 1, + STATE(5841), 1, sym_heredoc_body, + STATE(6054), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6238), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -532663,8 +536448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6236), 29, - sym__line_break, + ACTIONS(5587), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -532676,8 +536460,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -532692,16 +536476,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [232359] = 5, + [231528] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5852), 1, + STATE(5842), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(6122), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -532710,7 +536493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5872), 29, + ACTIONS(6120), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -532740,15 +536523,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [232411] = 5, + [231580] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5853), 1, + STATE(5843), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5972), 8, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -532757,7 +536540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5970), 29, + ACTIONS(6397), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -532787,15 +536570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [232463] = 5, + [231632] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5854), 1, + STATE(5844), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5826), 8, + ACTIONS(5935), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -532804,7 +536587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5824), 29, + ACTIONS(5933), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -532834,15 +536617,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [232515] = 5, + [231684] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5855), 1, + STATE(5845), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6028), 8, + ACTIONS(6130), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -532851,9 +536634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6026), 29, - sym__line_break, + ACTIONS(6128), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -532864,7 +536648,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -532880,16 +536663,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [232567] = 5, + anon_sym_do, + [231736] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5856), 1, + STATE(5846), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5887), 8, + ACTIONS(5574), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -532898,8 +536681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5885), 29, - sym__start_of_brace_block, + ACTIONS(5572), 29, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -532912,6 +536694,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + sym__string_literal_start, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -532924,19 +536707,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [232619] = 5, + [231788] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5857), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_typeof, + ACTIONS(8266), 1, + sym__constant_segment, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8394), 1, + anon_sym_RPAREN, + STATE(5847), 1, sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(11702), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5891), 8, + ACTIONS(8272), 2, + sym_self, + sym_underscore_type, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [231884] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5848), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6410), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -532945,10 +536797,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5889), 29, - sym__start_of_brace_block, + ACTIONS(6408), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -532959,6 +536810,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -532974,20 +536826,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [232671] = 7, + anon_sym_then, + [231936] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8015), 1, - sym__start_of_index_operator, - STATE(5858), 1, + ACTIONS(8396), 1, + anon_sym_of, + STATE(5849), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5895), 7, + ACTIONS(5714), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -532995,9 +536846,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5893), 28, - sym__start_of_brace_block, - sym__end_of_with_expression, + anon_sym_DOT, + ACTIONS(5710), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -533021,88 +536872,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [232727] = 27, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(8335), 1, - anon_sym_RPAREN, - STATE(5859), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(11276), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [232823] = 5, + [231990] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5860), 1, + STATE(5850), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 10, - anon_sym_RBRACK, + ACTIONS(5881), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -533111,8 +536892,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 27, + ACTIONS(5879), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -533124,6 +536905,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -533137,81 +536919,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [232875] = 21, + anon_sym_then, + [232042] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5923), 1, - anon_sym_DOT_DOT, - ACTIONS(7991), 1, - anon_sym_PIPE, - ACTIONS(7993), 1, - anon_sym_CARET, - ACTIONS(7997), 1, - anon_sym_EQ_EQ, - ACTIONS(8003), 1, - anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8011), 1, - anon_sym_AMP_AMP, - ACTIONS(8013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, - sym__start_of_index_operator, - ACTIONS(8021), 1, - sym_binary_ampersand, - STATE(5861), 1, + STATE(5851), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8001), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7989), 3, + ACTIONS(6023), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7999), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8017), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6021), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8019), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5921), 6, - sym__start_of_brace_block, - sym__end_of_with_expression, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_do, - [232959] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [232094] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5862), 1, + STATE(5852), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5746), 8, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -533220,7 +536986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5744), 29, + ACTIONS(6035), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -533250,15 +537016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [233011] = 5, + [232146] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5863), 1, + STATE(5853), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(6055), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -533267,7 +537033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5856), 29, + ACTIONS(6053), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -533297,148 +537063,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [233063] = 26, + [232198] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8337), 1, - anon_sym_COMMA, - ACTIONS(8339), 1, - anon_sym_RBRACK, - ACTIONS(8341), 1, + ACTIONS(8120), 1, anon_sym_DOT_DOT, - ACTIONS(8343), 1, + ACTIONS(8122), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8347), 1, + ACTIONS(8126), 1, anon_sym_PIPE, - ACTIONS(8349), 1, + ACTIONS(8128), 1, anon_sym_CARET, - ACTIONS(8353), 1, + ACTIONS(8132), 1, anon_sym_EQ_EQ, - ACTIONS(8359), 1, + ACTIONS(8138), 1, anon_sym_AMP_STAR, - ACTIONS(8363), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8144), 1, anon_sym_QMARK, - ACTIONS(8365), 1, - anon_sym_RBRACK_QMARK, - ACTIONS(8367), 1, + ACTIONS(8146), 1, anon_sym_AMP_AMP, - ACTIONS(8369), 1, + ACTIONS(8148), 1, anon_sym_PIPE_PIPE, - ACTIONS(8371), 1, + ACTIONS(8150), 1, sym__start_of_index_operator, - ACTIONS(8377), 1, + ACTIONS(8156), 1, sym_binary_ampersand, - STATE(5864), 1, + STATE(5854), 1, sym_heredoc_body, - STATE(9382), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8351), 2, + ACTIONS(8130), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8357), 2, + ACTIONS(8136), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, + ACTIONS(8140), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8345), 3, + ACTIONS(8124), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8355), 4, + ACTIONS(5779), 4, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(8134), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8373), 4, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, + ACTIONS(8154), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [233157] = 23, + [232286] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7735), 1, - anon_sym_DOT_DOT, - ACTIONS(7737), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7741), 1, - anon_sym_PIPE, - ACTIONS(7743), 1, - anon_sym_CARET, - ACTIONS(7747), 1, - anon_sym_EQ_EQ, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7757), 1, - anon_sym_QMARK, - ACTIONS(7759), 1, - anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(7771), 1, - sym_binary_ampersand, - STATE(5865), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_typeof, + ACTIONS(8266), 1, + sym__constant_segment, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8398), 1, + anon_sym_RPAREN, + STATE(5855), 1, sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(12061), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7745), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7751), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7749), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7767), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7769), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(8379), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [233245] = 5, + ACTIONS(8272), 2, + sym_self, + sym_underscore_type, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [232382] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5866), 1, + ACTIONS(8400), 1, + anon_sym_of, + STATE(5856), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5750), 8, + ACTIONS(5651), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -533447,8 +537217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5748), 29, - sym__line_break, + ACTIONS(5647), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -533460,7 +537229,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -533474,18 +537242,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [233297] = 5, + [232436] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5867), 1, + STATE(5857), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(5685), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -533494,8 +537263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 29, - sym__line_break, + ACTIONS(5683), 28, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -533507,7 +537275,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -533520,19 +537287,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [233349] = 5, + [232488] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5868), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_typeof, + ACTIONS(8266), 1, + sym__constant_segment, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8402), 1, + anon_sym_RPAREN, + STATE(5858), 1, + sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(10668), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8272), 2, + sym_self, + sym_underscore_type, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [232584] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8404), 1, + anon_sym_EQ, + STATE(5859), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6328), 8, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -533541,8 +537380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6326), 29, - sym__line_break, + ACTIONS(5761), 28, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -533554,8 +537392,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -533570,63 +537409,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [233401] = 5, + [232638] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5869), 1, + ACTIONS(6047), 1, + anon_sym_DOT_DOT, + ACTIONS(8126), 1, + anon_sym_PIPE, + ACTIONS(8128), 1, + anon_sym_CARET, + ACTIONS(8132), 1, + anon_sym_EQ_EQ, + ACTIONS(8138), 1, + anon_sym_AMP_STAR, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8150), 1, + sym__start_of_index_operator, + ACTIONS(8156), 1, + sym_binary_ampersand, + STATE(5860), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5935), 8, - anon_sym_DOT_DOT, + ACTIONS(8130), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8136), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8124), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5933), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8134), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8154), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6045), 8, + sym__start_of_brace_block, + sym__end_of_with_expression, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [233453] = 5, + [232718] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5870), 1, + STATE(5861), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5945), 8, + ACTIONS(6071), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -533635,10 +537487,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5943), 29, - sym__start_of_brace_block, + ACTIONS(6069), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -533649,6 +537500,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -533664,63 +537516,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [233505] = 5, + anon_sym_then, + [232770] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5871), 1, + ACTIONS(6215), 1, + anon_sym_DOT_DOT, + ACTIONS(8126), 1, + anon_sym_PIPE, + ACTIONS(8128), 1, + anon_sym_CARET, + ACTIONS(8132), 1, + anon_sym_EQ_EQ, + ACTIONS(8138), 1, + anon_sym_AMP_STAR, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8146), 1, + anon_sym_AMP_AMP, + ACTIONS(8150), 1, + sym__start_of_index_operator, + ACTIONS(8156), 1, + sym_binary_ampersand, + STATE(5862), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, - anon_sym_DOT_DOT, + ACTIONS(8130), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8136), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8124), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5955), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8134), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8154), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6213), 7, + sym__start_of_brace_block, + sym__end_of_with_expression, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [233557] = 5, + [232852] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5872), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_typeof, + ACTIONS(8266), 1, + sym__constant_segment, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8406), 1, + anon_sym_RPAREN, + STATE(5863), 1, + sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(10755), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8272), 2, + sym_self, + sym_underscore_type, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [232948] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5864), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5754), 8, + ACTIONS(6160), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -533729,7 +537665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5752), 29, + ACTIONS(6158), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -533759,15 +537695,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [233609] = 5, + [233000] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5873), 1, + STATE(5865), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5810), 8, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -533776,7 +537712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5808), 29, + ACTIONS(5741), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -533806,15 +537742,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [233661] = 5, + [233052] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5874), 1, + STATE(5866), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6332), 8, + ACTIONS(6462), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -533823,7 +537759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6330), 29, + ACTIONS(6460), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -533853,16 +537789,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [233713] = 5, + [233104] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5875), 1, + STATE(5867), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5648), 9, - anon_sym_RBRACK, + ACTIONS(6414), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -533871,7 +537806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5646), 28, + ACTIONS(6412), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -533883,7 +537819,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -533897,18 +537833,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [233765] = 5, + anon_sym_then, + [233156] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5876), 1, + ACTIONS(8408), 1, + anon_sym_COMMA, + STATE(5868), 1, sym_heredoc_body, + STATE(5899), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(5629), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -533917,8 +537858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6419), 29, - sym__line_break, + ACTIONS(5587), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -533930,8 +537870,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -533944,18 +537882,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [233817] = 5, + [233212] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5877), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_typeof, + ACTIONS(8266), 1, + sym__constant_segment, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8410), 1, + anon_sym_RPAREN, + STATE(5869), 1, + sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(10820), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8272), 2, + sym_self, + sym_underscore_type, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [233308] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5870), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5818), 8, + ACTIONS(6171), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -533964,7 +537971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5816), 29, + ACTIONS(6169), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -533994,15 +538001,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [233869] = 5, + [233360] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5878), 1, + STATE(5871), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5976), 8, + ACTIONS(6187), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -534011,10 +538018,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5974), 29, - sym__start_of_brace_block, + ACTIONS(6185), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -534025,6 +538031,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -534040,16 +538047,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [233921] = 5, + anon_sym_then, + [233412] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5879), 1, + STATE(5872), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5980), 8, + ACTIONS(6211), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -534058,10 +538065,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5978), 29, - sym__start_of_brace_block, + ACTIONS(6209), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -534072,6 +538078,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -534087,16 +538094,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [233973] = 5, + anon_sym_then, + [233464] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5880), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_typeof, + ACTIONS(8266), 1, + sym__constant_segment, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8412), 1, + anon_sym_RPAREN, + STATE(5873), 1, + sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(10859), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8272), 2, + sym_self, + sym_underscore_type, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [233560] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5874), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5984), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -534105,10 +538181,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5982), 29, - sym__start_of_brace_block, + ACTIONS(6357), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -534119,6 +538194,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -534134,16 +538210,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [234025] = 5, + anon_sym_then, + [233612] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5881), 1, + STATE(5875), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5996), 8, + ACTIONS(5833), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -534152,10 +538228,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5994), 29, - sym__start_of_brace_block, + ACTIONS(5831), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -534166,6 +538241,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -534181,20 +538257,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [234077] = 7, + anon_sym_then, + [233664] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8015), 1, - sym__start_of_index_operator, - STATE(5882), 1, + STATE(5876), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6000), 7, + ACTIONS(6418), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -534202,9 +538274,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5998), 28, - sym__start_of_brace_block, - sym__end_of_with_expression, + anon_sym_DOT, + ACTIONS(6416), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -534215,6 +538288,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -534230,20 +538304,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [234133] = 7, + anon_sym_then, + [233716] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8015), 1, - sym__start_of_index_operator, - STATE(5883), 1, + STATE(5877), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6004), 7, + ACTIONS(5841), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -534251,9 +538321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6002), 28, - sym__start_of_brace_block, - sym__end_of_with_expression, + anon_sym_DOT, + ACTIONS(5839), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -534264,6 +538335,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -534279,16 +538351,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [234189] = 5, + anon_sym_then, + [233768] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5884), 1, + STATE(5878), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6336), 8, + ACTIONS(5889), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -534297,7 +538369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6334), 29, + ACTIONS(5887), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -534327,15 +538399,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [234241] = 5, + [233820] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5885), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_typeof, + ACTIONS(8266), 1, + sym__constant_segment, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8414), 1, + anon_sym_RPAREN, + STATE(5879), 1, + sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(10904), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8272), 2, + sym_self, + sym_underscore_type, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [233916] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5880), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6254), 8, + ACTIONS(5913), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -534344,7 +538485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6252), 29, + ACTIONS(5911), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -534374,15 +538515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [234293] = 5, + [233968] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5886), 1, + STATE(5881), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6260), 8, + ACTIONS(5951), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -534391,7 +538532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6258), 29, + ACTIONS(5949), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -534421,15 +538562,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [234345] = 5, + [234020] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5887), 1, + STATE(5882), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(5897), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -534438,7 +538579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 29, + ACTIONS(5895), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -534468,19 +538609,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [234397] = 7, + [234072] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8381), 1, - anon_sym_COMMA, - STATE(5529), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5888), 1, + STATE(5883), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(5959), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -534489,7 +538626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 27, + ACTIONS(5957), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -534503,6 +538640,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -534517,15 +538655,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [234453] = 5, + anon_sym_then, + [234124] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5889), 1, + STATE(5884), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6340), 8, + ACTIONS(6009), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -534534,7 +538673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6338), 29, + ACTIONS(6007), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -534564,15 +538703,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [234505] = 5, + [234176] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5890), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_typeof, + ACTIONS(8266), 1, + sym__constant_segment, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8416), 1, + anon_sym_RPAREN, + STATE(5885), 1, + sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(10952), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8272), 2, + sym_self, + sym_underscore_type, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [234272] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5886), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6344), 8, + ACTIONS(5645), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -534581,8 +538790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6342), 29, - sym__line_break, + ACTIONS(5643), 28, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -534594,7 +538802,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -534607,40 +538814,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [234557] = 15, + [234324] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8063), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, anon_sym_typeof, - ACTIONS(8065), 1, + ACTIONS(8266), 1, sym__constant_segment, - ACTIONS(8067), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8071), 1, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8073), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(8383), 1, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8418), 1, + anon_sym_RPAREN, + STATE(5887), 1, + sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(10999), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8272), 2, + sym_self, + sym_underscore_type, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [234420] = 27, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8385), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - STATE(5891), 1, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_typeof, + ACTIONS(8266), 1, + sym__constant_segment, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8420), 1, + anon_sym_RPAREN, + STATE(5888), 1, sym_heredoc_body, - STATE(7836), 1, - sym_constant, - STATE(7872), 1, + STATE(8161), 1, sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(11047), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8069), 2, + ACTIONS(8272), 2, sym_self, sym_underscore_type, - STATE(7855), 12, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -534653,30 +538957,19 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - ACTIONS(4325), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - [234629] = 5, + [234516] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5892), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8150), 1, + sym__start_of_index_operator, + STATE(5889), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5834), 8, + ACTIONS(6152), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -534684,10 +538977,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5832), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6150), 28, + sym__start_of_brace_block, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -534698,7 +538990,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -534714,16 +539005,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [234681] = 5, + anon_sym_do, + [234572] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5893), 1, + STATE(5890), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6304), 8, + ACTIONS(6422), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -534732,10 +539023,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6302), 29, - sym__start_of_brace_block, + ACTIONS(6420), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -534746,6 +539036,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -534761,84 +539052,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [234733] = 26, + anon_sym_then, + [234624] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8209), 1, - anon_sym_EQ_GT, - ACTIONS(8211), 1, - anon_sym_DOT_DOT, - ACTIONS(8213), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, - anon_sym_PIPE, - ACTIONS(8219), 1, - anon_sym_CARET, - ACTIONS(8223), 1, - anon_sym_EQ_EQ, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8233), 1, - anon_sym_QMARK, - ACTIONS(8235), 1, - anon_sym_AMP_AMP, - ACTIONS(8237), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, - sym_binary_ampersand, - ACTIONS(8387), 1, - anon_sym_RBRACE, - ACTIONS(8389), 1, - anon_sym_COMMA, - STATE(5894), 1, + STATE(5891), 1, sym_heredoc_body, - STATE(10117), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, + ACTIONS(6426), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6424), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [234827] = 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [234676] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5895), 1, + STATE(5892), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5846), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -534847,9 +539117,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5844), 29, - sym__line_break, + ACTIONS(6189), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -534860,7 +539131,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -534876,73 +539146,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [234879] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8063), 1, - anon_sym_typeof, - ACTIONS(8065), 1, - sym__constant_segment, - ACTIONS(8067), 1, - anon_sym_COLON_COLON, - ACTIONS(8071), 1, - sym__start_of_tuple_type, - ACTIONS(8073), 1, - sym__start_of_named_tuple_type, - ACTIONS(8383), 1, - anon_sym_LPAREN, - ACTIONS(8385), 1, - anon_sym_DASH_GT, - STATE(5896), 1, - sym_heredoc_body, - STATE(7836), 1, - sym_constant, - STATE(7892), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8069), 2, - sym_self, - sym_underscore_type, - STATE(7855), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4353), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - [234951] = 5, + anon_sym_do, + [234728] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5897), 1, + STATE(5893), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6020), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -534951,7 +539164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6018), 29, + ACTIONS(6189), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -534981,15 +539194,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [235003] = 5, + [234780] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5898), 1, + STATE(5894), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6024), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -534998,7 +539211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6022), 29, + ACTIONS(6345), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -535028,206 +539241,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [235055] = 27, + [234832] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(8391), 1, - anon_sym_RPAREN, - STATE(5899), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(10765), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [235151] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8063), 1, - anon_sym_typeof, - ACTIONS(8065), 1, - sym__constant_segment, - ACTIONS(8067), 1, - anon_sym_COLON_COLON, - ACTIONS(8071), 1, - sym__start_of_tuple_type, - ACTIONS(8073), 1, - sym__start_of_named_tuple_type, - ACTIONS(8383), 1, - anon_sym_LPAREN, - ACTIONS(8385), 1, - anon_sym_DASH_GT, - STATE(5900), 1, + STATE(5895), 1, sym_heredoc_body, - STATE(7836), 1, - sym_constant, - STATE(7893), 1, - sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8069), 2, - sym_self, - sym_underscore_type, - STATE(7855), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - ACTIONS(4375), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - [235223] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7949), 1, + ACTIONS(5909), 8, anon_sym_DOT_DOT, - ACTIONS(7951), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7955), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7957), 1, - anon_sym_CARET, - ACTIONS(7961), 1, anon_sym_EQ_EQ, - ACTIONS(7967), 1, - anon_sym_AMP_STAR, - ACTIONS(7971), 1, - anon_sym_QMARK, - ACTIONS(7973), 1, - anon_sym_AMP_AMP, - ACTIONS(7975), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, - sym_binary_ampersand, - STATE(5901), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7959), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7965), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7953), 3, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6230), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5907), 29, sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(7963), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [235311] = 5, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [234884] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5902), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8150), 1, + sym__start_of_index_operator, + STATE(5896), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6098), 8, + ACTIONS(6156), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -535235,10 +539308,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6096), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6154), 28, + sym__start_of_brace_block, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -535249,7 +539321,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -535265,16 +539336,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [235363] = 5, + anon_sym_do, + [234940] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5903), 1, + STATE(5897), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(6019), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -535283,7 +539354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 29, + ACTIONS(6017), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -535313,15 +539384,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [235415] = 5, + [234992] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5904), 1, + ACTIONS(8422), 1, + anon_sym_COMMA, + STATE(5898), 1, sym_heredoc_body, + STATE(5909), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6272), 8, + ACTIONS(5635), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -535330,8 +539406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6270), 29, - sym__line_break, + ACTIONS(5631), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -535343,8 +539418,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -535357,18 +539430,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [235467] = 5, + [235048] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5905), 1, + ACTIONS(8422), 1, + anon_sym_COMMA, + STATE(5899), 1, sym_heredoc_body, + STATE(5910), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6276), 8, + ACTIONS(5635), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -535377,8 +539455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6274), 29, - sym__line_break, + ACTIONS(5631), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -535390,8 +539467,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -535404,18 +539479,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [235519] = 5, + [235104] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5906), 1, + STATE(5900), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6280), 8, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -535424,7 +539499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6278), 29, + ACTIONS(6041), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -535454,15 +539529,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [235571] = 5, + [235156] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5907), 1, + STATE(5901), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5862), 8, + ACTIONS(6067), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -535471,7 +539546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5860), 29, + ACTIONS(6065), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -535501,18 +539576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [235623] = 6, + [235208] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8393), 1, - anon_sym_of, - STATE(5908), 1, + STATE(5902), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5660), 9, - anon_sym_RBRACK, + ACTIONS(6079), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -535521,7 +539593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5656), 27, + ACTIONS(6077), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -535533,6 +539606,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -535546,18 +539620,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [235677] = 5, + anon_sym_then, + [235260] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5909), 1, + STATE(5903), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5866), 8, + ACTIONS(6090), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -535566,7 +539640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5864), 29, + ACTIONS(6088), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -535596,80 +539670,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [235729] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7735), 1, - anon_sym_DOT_DOT, - ACTIONS(7737), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7741), 1, - anon_sym_PIPE, - ACTIONS(7743), 1, - anon_sym_CARET, - ACTIONS(7747), 1, - anon_sym_EQ_EQ, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7757), 1, - anon_sym_QMARK, - ACTIONS(7759), 1, - anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(7771), 1, - sym_binary_ampersand, - STATE(5910), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7745), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7751), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5708), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - ACTIONS(7749), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7767), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7769), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [235817] = 5, + [235312] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5911), 1, + STATE(5904), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -535678,7 +539687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 29, + ACTIONS(6189), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -535708,15 +539717,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [235869] = 5, + [235364] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5912), 1, + STATE(5905), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -535725,7 +539734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 29, + ACTIONS(6189), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -535755,15 +539764,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [235921] = 5, + [235416] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5913), 1, + STATE(5906), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(6219), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -535772,7 +539781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 29, + ACTIONS(6217), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -535802,15 +539811,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [235973] = 5, + [235468] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5914), 1, + STATE(5907), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6134), 8, + ACTIONS(6430), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -535819,10 +539828,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6132), 29, - sym__start_of_brace_block, + ACTIONS(6428), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -535833,6 +539841,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -535848,16 +539857,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [236025] = 5, + anon_sym_then, + [235520] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5915), 1, + STATE(5908), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5713), 8, + ACTIONS(6138), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -535866,7 +539875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 29, + ACTIONS(6136), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -535896,83 +539905,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [236077] = 26, + [235572] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8209), 1, - anon_sym_EQ_GT, - ACTIONS(8211), 1, - anon_sym_DOT_DOT, - ACTIONS(8213), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, - anon_sym_PIPE, - ACTIONS(8219), 1, - anon_sym_CARET, - ACTIONS(8223), 1, - anon_sym_EQ_EQ, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8233), 1, - anon_sym_QMARK, - ACTIONS(8235), 1, - anon_sym_AMP_AMP, - ACTIONS(8237), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, - sym_binary_ampersand, - ACTIONS(8395), 1, - anon_sym_RBRACE, - ACTIONS(8397), 1, + ACTIONS(8424), 1, anon_sym_COMMA, - STATE(5916), 1, - sym_heredoc_body, - STATE(9751), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8225), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8241), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8243), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [236171] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5917), 1, + STATE(5909), 1, sym_heredoc_body, + STATE(5910), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5830), 8, + ACTIONS(5641), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -535981,8 +539927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5828), 29, - sym__line_break, + ACTIONS(5637), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -535994,8 +539939,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -536008,86 +539951,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [236223] = 26, + [235628] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8209), 1, - anon_sym_EQ_GT, - ACTIONS(8211), 1, - anon_sym_DOT_DOT, - ACTIONS(8213), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, - anon_sym_PIPE, - ACTIONS(8219), 1, - anon_sym_CARET, - ACTIONS(8223), 1, - anon_sym_EQ_EQ, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8233), 1, - anon_sym_QMARK, - ACTIONS(8235), 1, - anon_sym_AMP_AMP, - ACTIONS(8237), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, - sym_binary_ampersand, - ACTIONS(8399), 1, - anon_sym_RBRACE, - ACTIONS(8401), 1, + ACTIONS(8426), 1, anon_sym_COMMA, - STATE(5918), 1, - sym_heredoc_body, - STATE(9731), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8225), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8241), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8243), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [236317] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5919), 1, + STATE(5910), 2, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5949), 8, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5699), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -536096,8 +539975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5947), 29, - sym__line_break, + ACTIONS(5694), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -536109,8 +539987,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -536123,18 +539999,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [236369] = 5, + [235682] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5920), 1, + STATE(5911), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(6148), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -536143,10 +540019,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 29, - sym__start_of_brace_block, + ACTIONS(6146), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -536157,6 +540032,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -536172,16 +540048,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [236421] = 5, + anon_sym_then, + [235734] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5921), 1, + STATE(5912), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(5989), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -536190,9 +540066,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 29, - sym__line_break, + ACTIONS(5987), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -536203,7 +540080,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -536219,16 +540095,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [236473] = 5, + anon_sym_do, + [235786] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5922), 1, + STATE(5913), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(5969), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -536237,7 +540113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 29, + ACTIONS(5967), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -536267,15 +540143,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [236525] = 5, + [235838] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5923), 1, + STATE(5914), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -536284,7 +540160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 29, + ACTIONS(5995), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -536314,15 +540190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [236577] = 5, + [235890] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5924), 1, + STATE(5915), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(6175), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -536331,10 +540207,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 29, - sym__start_of_brace_block, + ACTIONS(6173), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -536345,6 +540220,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -536360,16 +540236,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [236629] = 5, + anon_sym_then, + [235942] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5925), 1, + STATE(5916), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6212), 8, + ACTIONS(6299), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -536378,10 +540254,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6210), 29, - sym__start_of_brace_block, + ACTIONS(6297), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -536392,6 +540267,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -536407,85 +540283,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [236681] = 27, + anon_sym_then, + [235994] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(8403), 1, - anon_sym_RPAREN, - STATE(5926), 1, + ACTIONS(8120), 1, + anon_sym_DOT_DOT, + ACTIONS(8122), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8126), 1, + anon_sym_PIPE, + ACTIONS(8128), 1, + anon_sym_CARET, + ACTIONS(8132), 1, + anon_sym_EQ_EQ, + ACTIONS(8138), 1, + anon_sym_AMP_STAR, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8144), 1, + anon_sym_QMARK, + ACTIONS(8146), 1, + anon_sym_AMP_AMP, + ACTIONS(8148), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8150), 1, + sym__start_of_index_operator, + ACTIONS(8156), 1, + sym_binary_ampersand, + STATE(5917), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(11364), 1, - sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [236777] = 5, + ACTIONS(8130), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8136), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8124), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5825), 4, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(8134), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8152), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8154), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [236082] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5927), 1, + STATE(5918), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6216), 8, + ACTIONS(6223), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -536494,10 +540366,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6214), 29, - sym__start_of_brace_block, + ACTIONS(6221), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -536508,6 +540379,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -536523,88 +540395,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [236829] = 27, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(8405), 1, - anon_sym_RPAREN, - STATE(5928), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(11625), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [236925] = 6, + anon_sym_then, + [236134] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8407), 1, - sym_regex_modifier, - STATE(5929), 1, + STATE(5919), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 9, - anon_sym_RBRACK, + ACTIONS(6434), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -536613,7 +540413,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 27, + ACTIONS(6432), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -536625,6 +540426,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -536638,21 +540440,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [236979] = 6, + anon_sym_then, + [236186] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8409), 1, - sym_regex_modifier, - STATE(5930), 1, + STATE(5920), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 9, - anon_sym_RBRACK, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -536661,7 +540460,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 27, + ACTIONS(6229), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -536673,6 +540473,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -536686,21 +540487,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [237033] = 6, + anon_sym_then, + [236238] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8411), 1, - anon_sym_of, - STATE(5931), 1, + STATE(5921), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5702), 9, - anon_sym_RBRACK, + ACTIONS(6458), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -536709,7 +540507,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5698), 27, + ACTIONS(6456), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -536721,6 +540520,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -536734,18 +540534,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [237087] = 5, + anon_sym_then, + [236290] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5932), 1, + STATE(5922), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(5973), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -536754,10 +540554,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 29, - sym__start_of_brace_block, + ACTIONS(5971), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -536768,6 +540567,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -536783,16 +540583,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [237139] = 5, + anon_sym_then, + [236342] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5933), 1, + STATE(5923), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5899), 8, + ACTIONS(6279), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -536801,7 +540601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5897), 29, + ACTIONS(6277), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -536831,15 +540631,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [237191] = 5, + [236394] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5934), 1, + STATE(5924), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6400), 8, + ACTIONS(5861), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -536848,7 +540648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6398), 29, + ACTIONS(5859), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -536878,15 +540678,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [237243] = 5, + [236446] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5935), 1, + STATE(5925), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6238), 8, + ACTIONS(5893), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -536895,10 +540695,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6236), 29, - sym__start_of_brace_block, + ACTIONS(5891), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -536909,6 +540708,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -536924,16 +540724,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [237295] = 5, + anon_sym_then, + [236498] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5936), 1, + STATE(5926), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6254), 8, + ACTIONS(5989), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -536942,10 +540742,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6252), 29, - sym__start_of_brace_block, + ACTIONS(5987), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -536956,6 +540755,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -536971,63 +540771,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [237347] = 5, + anon_sym_then, + [236550] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5937), 1, + ACTIONS(5977), 1, + anon_sym_DOT_DOT, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_CARET, + ACTIONS(7812), 1, + anon_sym_EQ_EQ, + ACTIONS(7818), 1, + anon_sym_AMP_STAR, + ACTIONS(7824), 1, + anon_sym_AMP_AMP, + ACTIONS(7826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(7836), 1, + sym_binary_ampersand, + STATE(5927), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6260), 8, - anon_sym_DOT_DOT, + ACTIONS(7810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7816), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7804), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6258), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7814), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7832), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7834), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5975), 6, + sym__line_break, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [237399] = 5, + anon_sym_then, + [236634] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5938), 1, + STATE(5928), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -537036,7 +540852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 29, + ACTIONS(6229), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -537066,100 +540882,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [237451] = 21, + [236686] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5941), 1, - anon_sym_DOT_DOT, - ACTIONS(7613), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7741), 1, + ACTIONS(7800), 1, + anon_sym_DOT_DOT, + ACTIONS(7802), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7806), 1, anon_sym_PIPE, - ACTIONS(7743), 1, + ACTIONS(7808), 1, anon_sym_CARET, - ACTIONS(7747), 1, + ACTIONS(7812), 1, anon_sym_EQ_EQ, - ACTIONS(7753), 1, + ACTIONS(7818), 1, anon_sym_AMP_STAR, - ACTIONS(7759), 1, + ACTIONS(7822), 1, + anon_sym_QMARK, + ACTIONS(7824), 1, anon_sym_AMP_AMP, - ACTIONS(7761), 1, + ACTIONS(7826), 1, anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7771), 1, + ACTIONS(7836), 1, sym_binary_ampersand, - STATE(5939), 1, + STATE(5929), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7745), 2, + ACTIONS(7810), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7751), 2, + ACTIONS(7816), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, + ACTIONS(7820), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, + ACTIONS(7804), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7749), 4, + ACTIONS(6092), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + ACTIONS(7814), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7767), 4, + ACTIONS(7832), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7769), 4, + ACTIONS(7834), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5939), 6, + [236774] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7800), 1, + anon_sym_DOT_DOT, + ACTIONS(7802), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_CARET, + ACTIONS(7812), 1, + anon_sym_EQ_EQ, + ACTIONS(7818), 1, + anon_sym_AMP_STAR, + ACTIONS(7822), 1, + anon_sym_QMARK, + ACTIONS(7824), 1, + anon_sym_AMP_AMP, + ACTIONS(7826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(7836), 1, + sym_binary_ampersand, + STATE(5930), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7816), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7804), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6193), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_then, + ACTIONS(7814), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7832), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7834), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [236862] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7800), 1, + anon_sym_DOT_DOT, + ACTIONS(7802), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_CARET, + ACTIONS(7812), 1, + anon_sym_EQ_EQ, + ACTIONS(7818), 1, + anon_sym_AMP_STAR, + ACTIONS(7822), 1, anon_sym_QMARK, + ACTIONS(7824), 1, + anon_sym_AMP_AMP, + ACTIONS(7826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(7836), 1, + sym_binary_ampersand, + STATE(5931), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7816), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7804), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6203), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_then, - [237535] = 5, + ACTIONS(7814), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7832), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7834), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [236950] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5940), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7818), 1, + anon_sym_AMP_STAR, + ACTIONS(7830), 1, + sym__start_of_index_operator, + STATE(5932), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6272), 8, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7834), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6259), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6270), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6257), 22, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -537171,20 +541125,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [237587] = 5, + anon_sym_then, + [237012] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5941), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + STATE(5933), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6276), 8, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6295), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -537192,21 +541152,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6274), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6293), 26, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -537218,20 +541175,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [237639] = 5, + anon_sym_then, + [237070] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5942), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + STATE(5934), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6280), 8, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -537239,21 +541202,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6278), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6313), 26, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -537265,67 +541225,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [237691] = 5, + anon_sym_then, + [237128] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5943), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7818), 1, + anon_sym_AMP_STAR, + ACTIONS(7830), 1, + sym__start_of_index_operator, + STATE(5935), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6284), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6282), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7832), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7834), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6327), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6325), 16, + sym__line_break, + sym_binary_ampersand, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [237743] = 5, + anon_sym_then, + [237194] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5944), 1, + STATE(5936), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6288), 8, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -537334,7 +541300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6286), 29, + ACTIONS(6233), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -537364,84 +541330,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [237795] = 5, + [237246] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5945), 1, + ACTIONS(6442), 1, + anon_sym_DOT_DOT, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_CARET, + ACTIONS(7812), 1, + anon_sym_EQ_EQ, + ACTIONS(7818), 1, + anon_sym_AMP_STAR, + ACTIONS(7824), 1, + anon_sym_AMP_AMP, + ACTIONS(7826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(7836), 1, + sym_binary_ampersand, + STATE(5937), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5758), 8, - anon_sym_DOT_DOT, + ACTIONS(7810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7816), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7804), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5756), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7814), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7832), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7834), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6440), 6, + sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_then, + [237330] = 17, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, anon_sym_CARET, + ACTIONS(7812), 1, + anon_sym_EQ_EQ, + ACTIONS(7818), 1, + anon_sym_AMP_STAR, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(7836), 1, + sym_binary_ampersand, + STATE(5938), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7810), 2, anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5817), 4, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7814), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7832), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7834), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5815), 10, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [237847] = 5, + [237406] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5946), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7818), 1, + anon_sym_AMP_STAR, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(7836), 1, + sym_binary_ampersand, + STATE(5939), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6292), 8, + ACTIONS(7810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7832), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7834), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6263), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, + ACTIONS(6261), 15, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [237474] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(6290), 29, - sym__start_of_brace_block, + ACTIONS(7818), 1, + anon_sym_AMP_STAR, + ACTIONS(7830), 1, sym__start_of_index_operator, - sym__end_of_with_expression, + STATE(5940), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7832), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7834), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5869), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5867), 18, + sym__line_break, + sym_binary_ampersand, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -537453,132 +541556,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [237899] = 5, + anon_sym_then, + [237538] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5947), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_CARET, + ACTIONS(7818), 1, + anon_sym_AMP_STAR, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(7836), 1, + sym_binary_ampersand, + STATE(5941), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6104), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7832), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7834), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6134), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6132), 14, + sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [237951] = 23, + [237610] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7735), 1, + ACTIONS(6047), 1, anon_sym_DOT_DOT, - ACTIONS(7737), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7741), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7806), 1, anon_sym_PIPE, - ACTIONS(7743), 1, + ACTIONS(7808), 1, anon_sym_CARET, - ACTIONS(7747), 1, + ACTIONS(7812), 1, anon_sym_EQ_EQ, - ACTIONS(7753), 1, + ACTIONS(7818), 1, anon_sym_AMP_STAR, - ACTIONS(7757), 1, - anon_sym_QMARK, - ACTIONS(7759), 1, - anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7771), 1, + ACTIONS(7836), 1, sym_binary_ampersand, - STATE(5948), 1, + STATE(5942), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7745), 2, + ACTIONS(7810), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7751), 2, + ACTIONS(7816), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, + ACTIONS(7820), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, + ACTIONS(7804), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6010), 4, + ACTIONS(7814), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7832), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7834), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6045), 8, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_then, - ACTIONS(7749), 4, + [237690] = 20, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6215), 1, + anon_sym_DOT_DOT, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_CARET, + ACTIONS(7812), 1, + anon_sym_EQ_EQ, + ACTIONS(7818), 1, + anon_sym_AMP_STAR, + ACTIONS(7824), 1, + anon_sym_AMP_AMP, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(7836), 1, + sym_binary_ampersand, + STATE(5943), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7816), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7804), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7814), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7767), 4, + ACTIONS(7832), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7769), 4, + ACTIONS(7834), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [238039] = 5, + ACTIONS(6213), 7, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_then, + [237772] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5949), 1, + STATE(5944), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6312), 8, + ACTIONS(6013), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -537587,9 +541757,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6310), 29, - sym__line_break, + ACTIONS(6011), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -537600,7 +541771,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -537616,146 +541786,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [238091] = 23, + anon_sym_do, + [237824] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7735), 1, + ACTIONS(5981), 1, anon_sym_DOT_DOT, - ACTIONS(7737), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7741), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7806), 1, anon_sym_PIPE, - ACTIONS(7743), 1, + ACTIONS(7808), 1, anon_sym_CARET, - ACTIONS(7747), 1, + ACTIONS(7812), 1, anon_sym_EQ_EQ, - ACTIONS(7753), 1, + ACTIONS(7818), 1, anon_sym_AMP_STAR, - ACTIONS(7757), 1, - anon_sym_QMARK, - ACTIONS(7759), 1, + ACTIONS(7824), 1, anon_sym_AMP_AMP, - ACTIONS(7761), 1, + ACTIONS(7826), 1, anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7771), 1, + ACTIONS(7836), 1, sym_binary_ampersand, - STATE(5950), 1, + STATE(5945), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7745), 2, + ACTIONS(7810), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7751), 2, + ACTIONS(7816), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, + ACTIONS(7820), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, + ACTIONS(7804), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6030), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - ACTIONS(7749), 4, + ACTIONS(7814), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7767), 4, + ACTIONS(7832), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7769), 4, + ACTIONS(7834), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [238179] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7735), 1, - anon_sym_DOT_DOT, - ACTIONS(7737), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7741), 1, - anon_sym_PIPE, - ACTIONS(7743), 1, - anon_sym_CARET, - ACTIONS(7747), 1, - anon_sym_EQ_EQ, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7757), 1, - anon_sym_QMARK, - ACTIONS(7759), 1, - anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(7771), 1, - sym_binary_ampersand, - STATE(5951), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7745), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7751), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6032), 4, + ACTIONS(5979), 6, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, anon_sym_then, - ACTIONS(7749), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7767), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7769), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [238267] = 5, + [237908] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5952), 1, + STATE(5946), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6308), 8, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -537764,10 +541867,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6306), 29, - sym__start_of_brace_block, + ACTIONS(6233), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -537778,6 +541880,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -537793,173 +541896,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [238319] = 23, + anon_sym_then, + [237960] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7985), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7800), 1, anon_sym_DOT_DOT, - ACTIONS(7987), 1, + ACTIONS(7802), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7991), 1, + ACTIONS(7806), 1, anon_sym_PIPE, - ACTIONS(7993), 1, + ACTIONS(7808), 1, anon_sym_CARET, - ACTIONS(7997), 1, + ACTIONS(7812), 1, anon_sym_EQ_EQ, - ACTIONS(8003), 1, + ACTIONS(7818), 1, anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8009), 1, + ACTIONS(7822), 1, anon_sym_QMARK, - ACTIONS(8011), 1, + ACTIONS(7824), 1, anon_sym_AMP_AMP, - ACTIONS(8013), 1, + ACTIONS(7826), 1, anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(8021), 1, + ACTIONS(7836), 1, sym_binary_ampersand, - STATE(5953), 1, + STATE(5947), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, + ACTIONS(7810), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8001), 2, + ACTIONS(7816), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, + ACTIONS(7820), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7989), 3, + ACTIONS(7804), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6144), 4, - sym__start_of_brace_block, - sym__end_of_with_expression, + ACTIONS(5779), 4, + sym__line_break, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_do, - ACTIONS(7999), 4, + anon_sym_then, + ACTIONS(7814), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8017), 4, + ACTIONS(7832), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8019), 4, + ACTIONS(7834), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [238407] = 23, + [238048] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7985), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7800), 1, anon_sym_DOT_DOT, - ACTIONS(7987), 1, + ACTIONS(7802), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7991), 1, + ACTIONS(7806), 1, anon_sym_PIPE, - ACTIONS(7993), 1, + ACTIONS(7808), 1, anon_sym_CARET, - ACTIONS(7997), 1, + ACTIONS(7812), 1, anon_sym_EQ_EQ, - ACTIONS(8003), 1, + ACTIONS(7818), 1, anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8009), 1, + ACTIONS(7822), 1, anon_sym_QMARK, - ACTIONS(8011), 1, + ACTIONS(7824), 1, anon_sym_AMP_AMP, - ACTIONS(8013), 1, + ACTIONS(7826), 1, anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(8021), 1, + ACTIONS(7836), 1, sym_binary_ampersand, - STATE(5954), 1, + STATE(5948), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, + ACTIONS(7810), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8001), 2, + ACTIONS(7816), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, + ACTIONS(7820), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7989), 3, + ACTIONS(7804), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6152), 4, - sym__start_of_brace_block, - sym__end_of_with_expression, + ACTIONS(5825), 4, + sym__line_break, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_do, - ACTIONS(7999), 4, + anon_sym_then, + ACTIONS(7814), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8017), 4, + ACTIONS(7832), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8019), 4, + ACTIONS(7834), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [238495] = 10, + [238136] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7765), 1, - sym__start_of_index_operator, - STATE(5955), 1, + STATE(5949), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7769), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(6183), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 22, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6181), 29, sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -537972,26 +542069,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [238557] = 8, + [238188] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - STATE(5956), 1, + STATE(5950), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -537999,18 +542090,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 26, - sym__line_break, + anon_sym_DOT, + ACTIONS(6237), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -538022,26 +542116,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [238615] = 8, + anon_sym_do, + [238240] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - STATE(5957), 1, + STATE(5951), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(6243), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -538049,18 +542137,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 26, - sym__line_break, + anon_sym_DOT, + ACTIONS(6241), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -538072,19 +542163,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [238673] = 5, + anon_sym_do, + [238292] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5958), 1, + STATE(5952), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6316), 8, + ACTIONS(6207), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -538093,10 +542185,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6314), 29, - sym__start_of_brace_block, + ACTIONS(6205), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -538107,6 +542198,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -538122,16 +542214,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [238725] = 5, + anon_sym_then, + [238344] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5959), 1, + STATE(5953), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6284), 8, + ACTIONS(5943), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -538140,9 +542232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6282), 29, - sym__line_break, + ACTIONS(5941), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -538153,7 +542246,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -538169,20 +542261,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [238777] = 7, + anon_sym_do, + [238396] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8288), 1, - anon_sym_COMMA, - STATE(5960), 1, + STATE(5954), 1, sym_heredoc_body, - STATE(6106), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(5993), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -538191,8 +542279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 27, + ACTIONS(5991), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -538203,8 +542293,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -538219,132 +542308,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [238833] = 12, + anon_sym_do, + [238448] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7765), 1, + ACTIONS(8150), 1, sym__start_of_index_operator, - STATE(5961), 1, + STATE(5955), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7745), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7767), 4, + ACTIONS(6001), 7, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + ACTIONS(5999), 28, + sym__start_of_brace_block, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7769), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6064), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6062), 16, - sym__line_break, - sym_binary_ampersand, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [238899] = 21, + anon_sym_do, + [238504] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6242), 1, + STATE(5956), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4783), 10, + anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(7991), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7993), 1, - anon_sym_CARET, - ACTIONS(7997), 1, anon_sym_EQ_EQ, - ACTIONS(8003), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8007), 1, anon_sym_DOT, - ACTIONS(8011), 1, - anon_sym_AMP_AMP, - ACTIONS(8013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, + anon_sym_EQ, + ACTIONS(4785), 27, sym__start_of_index_operator, - ACTIONS(8021), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - STATE(5962), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7995), 2, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8001), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(7989), 3, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [238556] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(5957), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6183), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7999), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8017), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6181), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8019), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6240), 6, - sym__start_of_brace_block, - sym__end_of_with_expression, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - [238983] = 5, + [238608] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5963), 1, + STATE(5958), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5919), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -538353,9 +542469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5917), 29, - sym__line_break, + ACTIONS(5545), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -538366,7 +542483,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -538382,79 +542498,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [239035] = 21, + anon_sym_do, + [238660] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6068), 1, + ACTIONS(5977), 1, anon_sym_DOT_DOT, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7741), 1, + ACTIONS(8126), 1, anon_sym_PIPE, - ACTIONS(7743), 1, + ACTIONS(8128), 1, anon_sym_CARET, - ACTIONS(7747), 1, + ACTIONS(8132), 1, anon_sym_EQ_EQ, - ACTIONS(7753), 1, + ACTIONS(8138), 1, anon_sym_AMP_STAR, - ACTIONS(7759), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8146), 1, anon_sym_AMP_AMP, - ACTIONS(7761), 1, + ACTIONS(8148), 1, anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, + ACTIONS(8150), 1, sym__start_of_index_operator, - ACTIONS(7771), 1, + ACTIONS(8156), 1, sym_binary_ampersand, - STATE(5964), 1, + STATE(5959), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7745), 2, + ACTIONS(8130), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7751), 2, + ACTIONS(8136), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, + ACTIONS(8140), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, + ACTIONS(8124), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7749), 4, + ACTIONS(8134), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7767), 4, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7769), 4, + ACTIONS(8154), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6066), 6, - sym__line_break, - anon_sym_SEMI, + ACTIONS(5975), 6, + sym__start_of_brace_block, + sym__end_of_with_expression, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - anon_sym_then, - [239119] = 5, + anon_sym_do, + [238744] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5965), 1, + STATE(5960), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -538463,7 +542579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 29, + ACTIONS(5545), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -538493,15 +542609,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [239171] = 5, + [238796] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5966), 1, + STATE(5961), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(6227), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -538510,10 +542626,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 29, - sym__start_of_brace_block, + ACTIONS(6225), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -538524,6 +542639,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -538539,16 +542655,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [239223] = 5, + anon_sym_then, + [238848] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5967), 1, + STATE(5962), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6328), 8, + ACTIONS(6271), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -538557,10 +542673,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6326), 29, - sym__start_of_brace_block, + ACTIONS(6269), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -538571,6 +542686,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -538586,16 +542702,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [239275] = 5, + anon_sym_then, + [238900] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5968), 1, + STATE(5963), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6332), 8, + ACTIONS(6275), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -538604,10 +542720,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6330), 29, - sym__start_of_brace_block, + ACTIONS(6273), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -538618,6 +542733,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -538633,16 +542749,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [239327] = 5, + anon_sym_then, + [238952] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5969), 1, + STATE(5964), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6336), 8, + ACTIONS(6307), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -538651,10 +542767,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6334), 29, - sym__start_of_brace_block, + ACTIONS(6305), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -538665,6 +542780,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -538680,16 +542796,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [239379] = 5, + anon_sym_then, + [239004] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5970), 1, + STATE(5965), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6340), 8, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -538698,10 +542814,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6338), 29, - sym__start_of_brace_block, + ACTIONS(6317), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -538712,6 +542827,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -538727,16 +542843,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [239431] = 5, + anon_sym_then, + [239056] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5971), 1, + STATE(5966), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6344), 8, + ACTIONS(5777), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -538745,10 +542861,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6342), 29, - sym__start_of_brace_block, + ACTIONS(5775), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -538759,6 +542874,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -538774,158 +542890,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [239483] = 17, + anon_sym_then, + [239108] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7741), 1, - anon_sym_PIPE, - ACTIONS(7743), 1, - anon_sym_CARET, - ACTIONS(7747), 1, - anon_sym_EQ_EQ, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(7771), 1, - sym_binary_ampersand, - STATE(5972), 1, + STATE(5967), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7745), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, + ACTIONS(5853), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7749), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7767), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5851), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7769), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6070), 10, - sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [239559] = 13, + [239160] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(7771), 1, - sym_binary_ampersand, - STATE(5973), 1, + STATE(5968), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7745), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7767), 4, + ACTIONS(5857), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5855), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7769), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6082), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6080), 15, - sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [239627] = 11, + [239212] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7765), 1, - sym__start_of_index_operator, - STATE(5974), 1, + STATE(5969), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7767), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7769), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6090), 6, + ACTIONS(5909), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6088), 18, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5907), 29, sym__line_break, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -538938,199 +543027,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [239691] = 15, + [239264] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7741), 1, - anon_sym_PIPE, - ACTIONS(7743), 1, - anon_sym_CARET, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(7771), 1, - sym_binary_ampersand, - STATE(5975), 1, + STATE(5970), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7745), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7767), 4, + ACTIONS(5969), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5967), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7769), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6094), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6092), 14, - sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [239763] = 19, + [239316] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, - anon_sym_DOT_DOT, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7741), 1, - anon_sym_PIPE, - ACTIONS(7743), 1, - anon_sym_CARET, - ACTIONS(7747), 1, - anon_sym_EQ_EQ, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(7771), 1, - sym_binary_ampersand, - STATE(5976), 1, + STATE(5971), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7745), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7751), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, + ACTIONS(5861), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7749), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7767), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5859), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7769), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 8, - sym__line_break, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [239843] = 20, + anon_sym_do, + [239368] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6118), 1, - anon_sym_DOT_DOT, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7741), 1, - anon_sym_PIPE, - ACTIONS(7743), 1, - anon_sym_CARET, - ACTIONS(7747), 1, - anon_sym_EQ_EQ, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7759), 1, - anon_sym_AMP_AMP, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(7771), 1, - sym_binary_ampersand, - STATE(5977), 1, + STATE(5972), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7745), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7751), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, + ACTIONS(5997), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7749), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7767), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5995), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7769), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6116), 7, - sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [239925] = 5, + [239420] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5978), 1, + STATE(5973), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5927), 8, + ACTIONS(6013), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -539139,7 +543190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5925), 29, + ACTIONS(6011), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -539169,146 +543220,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [239977] = 26, + [239472] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5585), 1, - anon_sym_RBRACK_QMARK, - ACTIONS(5627), 1, - anon_sym_RBRACK, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8304), 1, - anon_sym_COMMA, - ACTIONS(8341), 1, - anon_sym_DOT_DOT, - ACTIONS(8343), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8347), 1, - anon_sym_PIPE, - ACTIONS(8349), 1, - anon_sym_CARET, - ACTIONS(8353), 1, - anon_sym_EQ_EQ, - ACTIONS(8359), 1, - anon_sym_AMP_STAR, - ACTIONS(8363), 1, - anon_sym_QMARK, - ACTIONS(8367), 1, - anon_sym_AMP_AMP, - ACTIONS(8369), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, - sym_binary_ampersand, - STATE(5799), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(5979), 1, + STATE(5974), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8351), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8357), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8345), 3, + ACTIONS(6227), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8355), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8373), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6225), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [240071] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6242), 1, - anon_sym_DOT_DOT, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7741), 1, - anon_sym_PIPE, - ACTIONS(7743), 1, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_CARET, - ACTIONS(7747), 1, - anon_sym_EQ_EQ, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7759), 1, - anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(7771), 1, - sym_binary_ampersand, - STATE(5980), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7745), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7751), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7749), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7767), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7769), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6240), 6, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_then, - [240155] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [239524] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5981), 1, + STATE(5975), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6160), 8, + ACTIONS(6271), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -539317,9 +543284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6158), 29, - sym__line_break, + ACTIONS(6269), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -539330,7 +543298,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -539346,16 +543313,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [240207] = 5, + anon_sym_do, + [239576] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5982), 1, + STATE(5976), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6216), 8, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -539364,7 +543331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6214), 29, + ACTIONS(5983), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -539394,15 +543361,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [240259] = 5, + [239628] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5983), 1, + STATE(5977), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(6247), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -539411,9 +543378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 29, - sym__line_break, + ACTIONS(6245), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -539424,7 +543392,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -539440,16 +543407,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [240311] = 5, + anon_sym_do, + [239680] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5984), 1, + STATE(5978), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5762), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -539458,7 +543425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5760), 29, + ACTIONS(6249), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -539488,83 +543455,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [240363] = 26, + [239732] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8209), 1, - anon_sym_EQ_GT, - ACTIONS(8211), 1, - anon_sym_DOT_DOT, - ACTIONS(8213), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, - anon_sym_PIPE, - ACTIONS(8219), 1, - anon_sym_CARET, - ACTIONS(8223), 1, - anon_sym_EQ_EQ, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8233), 1, - anon_sym_QMARK, - ACTIONS(8235), 1, - anon_sym_AMP_AMP, - ACTIONS(8237), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, - sym_binary_ampersand, - ACTIONS(8413), 1, - anon_sym_RBRACE, - ACTIONS(8415), 1, - anon_sym_COMMA, - STATE(5985), 1, + STATE(5979), 1, sym_heredoc_body, - STATE(9834), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, + ACTIONS(6239), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6237), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [240457] = 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [239784] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5986), 1, + STATE(5980), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6243), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -539573,10 +543519,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 29, - sym__start_of_brace_block, + ACTIONS(6241), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -539587,6 +543532,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -539602,16 +543548,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [240509] = 5, + anon_sym_then, + [239836] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5987), 1, + STATE(5981), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6255), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -539620,7 +543566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 29, + ACTIONS(6253), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -539650,15 +543596,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [240561] = 5, + [239888] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5988), 1, + STATE(5982), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -539667,7 +543613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 29, + ACTIONS(5871), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -539697,15 +543643,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [240613] = 5, + [239940] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5989), 1, + STATE(5983), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6267), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -539714,7 +543660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 29, + ACTIONS(6265), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -539744,15 +543690,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [240665] = 5, + [239992] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5990), 1, + STATE(5984), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(6283), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -539761,7 +543707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6360), 29, + ACTIONS(6281), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -539791,145 +543737,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [240717] = 23, + [240044] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7735), 1, - anon_sym_DOT_DOT, - ACTIONS(7737), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7741), 1, - anon_sym_PIPE, - ACTIONS(7743), 1, - anon_sym_CARET, - ACTIONS(7747), 1, - anon_sym_EQ_EQ, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7757), 1, - anon_sym_QMARK, - ACTIONS(7759), 1, - anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(7771), 1, - sym_binary_ampersand, - STATE(5991), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7745), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7751), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6256), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - ACTIONS(7749), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7767), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7769), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [240805] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7735), 1, - anon_sym_DOT_DOT, - ACTIONS(7737), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7741), 1, - anon_sym_PIPE, - ACTIONS(7743), 1, - anon_sym_CARET, - ACTIONS(7747), 1, - anon_sym_EQ_EQ, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7757), 1, - anon_sym_QMARK, - ACTIONS(7759), 1, - anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(7771), 1, - sym_binary_ampersand, - STATE(5992), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7745), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7751), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6230), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - ACTIONS(7749), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7767), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7769), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [240893] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(5993), 1, + STATE(5985), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5931), 8, + ACTIONS(6287), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -539938,9 +543754,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5929), 29, - sym__line_break, + ACTIONS(6285), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -539951,7 +543768,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -539967,16 +543783,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [240945] = 5, + anon_sym_do, + [240096] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5994), 1, + STATE(5986), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6372), 8, + ACTIONS(6179), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -539985,7 +543801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6370), 29, + ACTIONS(6177), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -540015,109 +543831,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [240997] = 5, + [240148] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5995), 1, + ACTIONS(6063), 1, + anon_sym_DOT_DOT, + ACTIONS(8126), 1, + anon_sym_PIPE, + ACTIONS(8128), 1, + anon_sym_CARET, + ACTIONS(8132), 1, + anon_sym_EQ_EQ, + ACTIONS(8138), 1, + anon_sym_AMP_STAR, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8146), 1, + anon_sym_AMP_AMP, + ACTIONS(8148), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8150), 1, + sym__start_of_index_operator, + ACTIONS(8156), 1, + sym_binary_ampersand, + STATE(5987), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6376), 8, - anon_sym_DOT_DOT, + ACTIONS(8130), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8136), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8124), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6374), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8134), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8154), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6061), 6, + sym__start_of_brace_block, + sym__end_of_with_expression, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_do, - [241049] = 5, + [240232] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5996), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8286), 1, + anon_sym_EQ_GT, + ACTIONS(8288), 1, + anon_sym_DOT_DOT, + ACTIONS(8290), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, + anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8310), 1, + anon_sym_QMARK, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8314), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, + ACTIONS(8388), 1, + anon_sym_RBRACE, + ACTIONS(8429), 1, + anon_sym_COMMA, + STATE(5988), 1, sym_heredoc_body, + STATE(10093), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6380), 8, - anon_sym_DOT_DOT, + ACTIONS(8298), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8304), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8292), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6378), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8320), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [241101] = 5, + [240326] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5997), 1, + STATE(5989), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6384), 8, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -540126,7 +543979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6382), 29, + ACTIONS(6309), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -540156,15 +544009,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [241153] = 5, + [240378] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5998), 1, + STATE(5990), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6388), 8, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -540173,7 +544026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6386), 29, + ACTIONS(5871), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -540203,15 +544056,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [241205] = 5, + [240430] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(5999), 1, + STATE(5991), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6392), 8, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -540220,7 +544073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6390), 29, + ACTIONS(5875), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -540250,15 +544103,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [241257] = 5, + [240482] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6000), 1, + STATE(5992), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6396), 8, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -540267,7 +544120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6394), 29, + ACTIONS(6329), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -540297,15 +544150,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [241309] = 5, + [240534] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6001), 1, + STATE(5993), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6102), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -540314,9 +544167,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6100), 29, - sym__line_break, + ACTIONS(6333), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -540327,7 +544181,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -540343,16 +544196,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [241361] = 5, + anon_sym_do, + [240586] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6002), 1, + STATE(5994), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6404), 8, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -540361,7 +544214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6402), 29, + ACTIONS(6337), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -540391,15 +544244,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [241413] = 5, + [240638] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6003), 1, + STATE(5995), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6410), 8, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -540408,7 +544261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6408), 29, + ACTIONS(6341), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -540438,240 +544291,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [241465] = 23, + [240690] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7985), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7800), 1, anon_sym_DOT_DOT, - ACTIONS(7987), 1, + ACTIONS(7802), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7991), 1, + ACTIONS(7806), 1, anon_sym_PIPE, - ACTIONS(7993), 1, + ACTIONS(7808), 1, anon_sym_CARET, - ACTIONS(7997), 1, + ACTIONS(7812), 1, anon_sym_EQ_EQ, - ACTIONS(8003), 1, + ACTIONS(7818), 1, anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8009), 1, + ACTIONS(7822), 1, anon_sym_QMARK, - ACTIONS(8011), 1, + ACTIONS(7824), 1, anon_sym_AMP_AMP, - ACTIONS(8013), 1, + ACTIONS(7826), 1, anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(8021), 1, + ACTIONS(7836), 1, sym_binary_ampersand, - STATE(6004), 1, + STATE(5996), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, + ACTIONS(7810), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8001), 2, + ACTIONS(7816), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, + ACTIONS(7820), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7989), 3, + ACTIONS(7804), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6358), 4, - sym__start_of_brace_block, - sym__end_of_with_expression, + ACTIONS(6025), 4, + sym__line_break, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_do, - ACTIONS(7999), 4, + anon_sym_then, + ACTIONS(7814), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8017), 4, + ACTIONS(7832), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8019), 4, + ACTIONS(7834), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [241553] = 23, + [240778] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7985), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7800), 1, anon_sym_DOT_DOT, - ACTIONS(7987), 1, + ACTIONS(7802), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7991), 1, + ACTIONS(7806), 1, anon_sym_PIPE, - ACTIONS(7993), 1, + ACTIONS(7808), 1, anon_sym_CARET, - ACTIONS(7997), 1, + ACTIONS(7812), 1, anon_sym_EQ_EQ, - ACTIONS(8003), 1, + ACTIONS(7818), 1, anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8009), 1, + ACTIONS(7822), 1, anon_sym_QMARK, - ACTIONS(8011), 1, + ACTIONS(7824), 1, anon_sym_AMP_AMP, - ACTIONS(8013), 1, + ACTIONS(7826), 1, anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(8021), 1, + ACTIONS(7836), 1, sym_binary_ampersand, - STATE(6005), 1, + STATE(5997), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, + ACTIONS(7810), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8001), 2, + ACTIONS(7816), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, + ACTIONS(7820), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7989), 3, + ACTIONS(7804), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6364), 4, - sym__start_of_brace_block, - sym__end_of_with_expression, + ACTIONS(6039), 4, + sym__line_break, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_do, - ACTIONS(7999), 4, + anon_sym_then, + ACTIONS(7814), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8017), 4, + ACTIONS(7832), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8019), 4, + ACTIONS(7834), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [241641] = 5, + [240866] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6006), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6417), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6415), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [241693] = 27, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8257), 1, + ACTIONS(8264), 1, anon_sym_typeof, - ACTIONS(8259), 1, + ACTIONS(8266), 1, sym__constant_segment, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8263), 1, + ACTIONS(8270), 1, sym_identifier_method_call, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(8417), 1, + ACTIONS(8431), 1, anon_sym_RPAREN, - STATE(6007), 1, + STATE(5998), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9587), 1, + STATE(9669), 1, sym__splattable_type, - STATE(10226), 1, + STATE(10318), 1, sym_named_type, - STATE(10492), 1, + STATE(10535), 1, sym__bare_type, - STATE(10568), 1, + STATE(11161), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8265), 2, + ACTIONS(8272), 2, sym_self, sym_underscore_type, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -540684,15 +544490,86 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [241789] = 5, + [240962] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6008), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7800), 1, + anon_sym_DOT_DOT, + ACTIONS(7802), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_CARET, + ACTIONS(7812), 1, + anon_sym_EQ_EQ, + ACTIONS(7818), 1, + anon_sym_AMP_STAR, + ACTIONS(7822), 1, + anon_sym_QMARK, + ACTIONS(7824), 1, + anon_sym_AMP_AMP, + ACTIONS(7826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(7836), 1, + sym_binary_ampersand, + ACTIONS(8433), 1, + anon_sym_COMMA, + STATE(5999), 1, + sym_heredoc_body, + STATE(6064), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5631), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(7810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7816), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7804), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7814), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7832), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7834), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [241054] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8433), 1, + anon_sym_COMMA, + STATE(6000), 1, sym_heredoc_body, + STATE(6064), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6264), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -540701,7 +544578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6262), 29, + ACTIONS(5631), 27, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -540715,7 +544592,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -540730,16 +544606,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [241841] = 5, + [241110] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6009), 1, + STATE(6001), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5766), 8, + ACTIONS(6291), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -540748,7 +544623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5764), 29, + ACTIONS(6289), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -540778,15 +544653,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [241893] = 5, + [241162] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6010), 1, + ACTIONS(8433), 1, + anon_sym_COMMA, + STATE(5750), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(6002), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5810), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -540795,10 +544674,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5808), 29, - sym__start_of_brace_block, + ACTIONS(5631), 27, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -540809,7 +544687,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -540824,16 +544702,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [241945] = 5, + [241218] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6011), 1, + STATE(6003), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5818), 8, + ACTIONS(6223), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -540842,7 +544719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5816), 29, + ACTIONS(6221), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -540872,15 +544749,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [241997] = 5, + [241270] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6012), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + STATE(6004), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(8435), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + [241358] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6005), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5846), 8, + ACTIONS(6275), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -540889,7 +544831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5844), 29, + ACTIONS(6273), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -540919,15 +544861,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [242049] = 5, + [241410] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6013), 1, + STATE(6006), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(6029), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -540936,10 +544878,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5947), 29, - sym__start_of_brace_block, + ACTIONS(6027), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -540950,6 +544891,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -540965,16 +544907,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [242101] = 5, + anon_sym_then, + [241462] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6014), 1, + STATE(6007), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5536), 8, + ACTIONS(6033), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -540983,9 +544925,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5534), 29, + ACTIONS(6031), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -540996,7 +544938,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -541009,19 +544951,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [242153] = 5, + anon_sym_then, + [241514] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6015), 1, + STATE(6008), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5774), 8, + ACTIONS(5885), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -541030,9 +544972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5772), 29, - sym__line_break, + ACTIONS(5883), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -541043,7 +544986,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -541059,84 +545001,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [242205] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8209), 1, - anon_sym_EQ_GT, - ACTIONS(8211), 1, - anon_sym_DOT_DOT, - ACTIONS(8213), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, - anon_sym_PIPE, - ACTIONS(8219), 1, - anon_sym_CARET, - ACTIONS(8223), 1, - anon_sym_EQ_EQ, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8233), 1, - anon_sym_QMARK, - ACTIONS(8235), 1, - anon_sym_AMP_AMP, - ACTIONS(8237), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, - sym_binary_ampersand, - ACTIONS(8419), 1, - anon_sym_RBRACE, - ACTIONS(8421), 1, - anon_sym_COMMA, - STATE(6016), 1, - sym_heredoc_body, - STATE(9939), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8225), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8241), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8243), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [242299] = 5, + anon_sym_do, + [241566] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6017), 1, + STATE(6009), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5838), 8, + ACTIONS(6247), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -541145,10 +545019,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5836), 29, - sym__start_of_brace_block, + ACTIONS(6245), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -541159,6 +545032,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -541174,16 +545048,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [242351] = 5, + anon_sym_then, + [241618] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6018), 1, + STATE(6010), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6368), 8, + ACTIONS(6102), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -541192,7 +545066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6366), 29, + ACTIONS(6092), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -541222,15 +545096,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [242403] = 5, + [241670] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6019), 1, + STATE(6011), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5953), 8, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -541239,7 +545113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5951), 29, + ACTIONS(5741), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -541269,80 +545143,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [242455] = 23, + [241722] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7985), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8288), 1, anon_sym_DOT_DOT, - ACTIONS(7987), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7991), 1, + ACTIONS(8294), 1, anon_sym_PIPE, - ACTIONS(7993), 1, + ACTIONS(8296), 1, anon_sym_CARET, - ACTIONS(7997), 1, + ACTIONS(8300), 1, anon_sym_EQ_EQ, - ACTIONS(8003), 1, + ACTIONS(8306), 1, anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8009), 1, + ACTIONS(8310), 1, anon_sym_QMARK, - ACTIONS(8011), 1, + ACTIONS(8312), 1, anon_sym_AMP_AMP, - ACTIONS(8013), 1, + ACTIONS(8314), 1, anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(8021), 1, + ACTIONS(8322), 1, sym_binary_ampersand, - STATE(6020), 1, + ACTIONS(8437), 1, + anon_sym_COMMA, + STATE(6012), 1, sym_heredoc_body, + STATE(6149), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, + ACTIONS(5631), 2, + anon_sym_RBRACE, + anon_sym_EQ_GT, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8001), 2, + ACTIONS(8304), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, + ACTIONS(8308), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7989), 3, + ACTIONS(8292), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5708), 4, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(7999), 4, + ACTIONS(8302), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8017), 4, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8019), 4, + ACTIONS(8320), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [242543] = 5, + [241814] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6021), 1, + ACTIONS(8437), 1, + anon_sym_COMMA, + STATE(6013), 1, sym_heredoc_body, + STATE(6149), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5961), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -541351,10 +545231,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5959), 29, - sym__start_of_brace_block, + ACTIONS(5631), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -541365,7 +545243,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -541380,16 +545259,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [242595] = 5, + [241870] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6022), 1, + STATE(6014), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6016), 8, + ACTIONS(6075), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -541398,10 +545276,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6014), 29, - sym__start_of_brace_block, + ACTIONS(6073), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -541412,6 +545289,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -541427,16 +545305,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [242647] = 5, + anon_sym_then, + [241922] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6023), 1, + STATE(6015), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6126), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -541445,7 +545323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6124), 29, + ACTIONS(6349), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -541475,84 +545353,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [242699] = 27, + [241974] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(8423), 1, - anon_sym_RPAREN, - STATE(6024), 1, + ACTIONS(8120), 1, + anon_sym_DOT_DOT, + ACTIONS(8122), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8126), 1, + anon_sym_PIPE, + ACTIONS(8128), 1, + anon_sym_CARET, + ACTIONS(8132), 1, + anon_sym_EQ_EQ, + ACTIONS(8138), 1, + anon_sym_AMP_STAR, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8144), 1, + anon_sym_QMARK, + ACTIONS(8146), 1, + anon_sym_AMP_AMP, + ACTIONS(8148), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8150), 1, + sym__start_of_index_operator, + ACTIONS(8156), 1, + sym_binary_ampersand, + STATE(6016), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(11555), 1, - sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [242795] = 5, + ACTIONS(8130), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8136), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8124), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5694), 4, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(8134), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8152), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8154), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [242062] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6025), 1, + STATE(6017), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6160), 8, + ACTIONS(6255), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -541561,10 +545435,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6158), 29, - sym__start_of_brace_block, + ACTIONS(6253), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -541575,6 +545448,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -541590,63 +545464,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [242847] = 5, + anon_sym_then, + [242114] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6026), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7800), 1, + anon_sym_DOT_DOT, + ACTIONS(7802), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_CARET, + ACTIONS(7812), 1, + anon_sym_EQ_EQ, + ACTIONS(7818), 1, + anon_sym_AMP_STAR, + ACTIONS(7822), 1, + anon_sym_QMARK, + ACTIONS(7824), 1, + anon_sym_AMP_AMP, + ACTIONS(7826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(7836), 1, + sym_binary_ampersand, + STATE(6018), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6172), 8, - anon_sym_DOT_DOT, + ACTIONS(7810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7816), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7804), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6170), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(5923), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + ACTIONS(7814), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7832), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7834), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [242202] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7800), 1, + anon_sym_DOT_DOT, + ACTIONS(7802), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, anon_sym_CARET, + ACTIONS(7812), 1, + anon_sym_EQ_EQ, + ACTIONS(7818), 1, + anon_sym_AMP_STAR, + ACTIONS(7822), 1, + anon_sym_QMARK, + ACTIONS(7824), 1, + anon_sym_AMP_AMP, + ACTIONS(7826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(7836), 1, + sym_binary_ampersand, + STATE(6019), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7810), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7816), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7804), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5773), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + ACTIONS(7814), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [242899] = 5, + ACTIONS(7832), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7834), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [242290] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6027), 1, + STATE(6020), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6176), 8, + ACTIONS(6267), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -541655,10 +545612,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6174), 29, - sym__start_of_brace_block, + ACTIONS(6265), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -541669,6 +545625,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -541684,16 +545641,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [242951] = 5, + anon_sym_then, + [242342] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6028), 1, + STATE(6021), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6180), 8, + ACTIONS(5897), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -541702,7 +545659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6178), 29, + ACTIONS(5895), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -541732,15 +545689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [243003] = 5, + [242394] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6029), 1, + STATE(6022), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6208), 8, + ACTIONS(5901), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -541749,7 +545706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6206), 29, + ACTIONS(5899), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -541779,15 +545736,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [243055] = 5, + [242446] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6030), 1, + STATE(6023), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6220), 8, + ACTIONS(6307), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -541796,7 +545753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6218), 29, + ACTIONS(6305), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -541826,15 +545783,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [243107] = 5, + [242498] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6031), 1, + STATE(6024), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6228), 8, + ACTIONS(6283), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -541843,10 +545800,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6226), 29, - sym__start_of_brace_block, + ACTIONS(6281), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -541857,6 +545813,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -541872,16 +545829,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [243159] = 5, + anon_sym_then, + [242550] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6032), 1, + STATE(6025), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6264), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -541890,7 +545847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6262), 29, + ACTIONS(6353), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -541920,15 +545877,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [243211] = 5, + [242602] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6033), 1, + STATE(6026), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6300), 8, + ACTIONS(6287), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -541937,10 +545894,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6298), 29, - sym__start_of_brace_block, + ACTIONS(6285), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -541951,6 +545907,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -541966,16 +545923,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [243263] = 5, + anon_sym_then, + [242654] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6034), 1, + STATE(6027), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6312), 8, + ACTIONS(6311), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -541984,10 +545941,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6310), 29, - sym__start_of_brace_block, + ACTIONS(6309), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -541998,6 +545954,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -542013,16 +545970,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [243315] = 5, + anon_sym_then, + [242706] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6035), 1, + ACTIONS(7632), 1, + anon_sym_LPAREN2, + STATE(6028), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5802), 8, + ACTIONS(157), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -542031,10 +545991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5800), 29, - sym__start_of_brace_block, + ACTIONS(135), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -542058,128 +546016,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [243367] = 21, + [242760] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5941), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8040), 1, anon_sym_DOT_DOT, - ACTIONS(7991), 1, + ACTIONS(8042), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8046), 1, anon_sym_PIPE, - ACTIONS(7993), 1, + ACTIONS(8048), 1, anon_sym_CARET, - ACTIONS(7997), 1, + ACTIONS(8052), 1, anon_sym_EQ_EQ, - ACTIONS(8003), 1, + ACTIONS(8058), 1, anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8011), 1, + ACTIONS(8062), 1, + anon_sym_QMARK, + ACTIONS(8064), 1, anon_sym_AMP_AMP, - ACTIONS(8013), 1, + ACTIONS(8066), 1, anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, - sym__start_of_index_operator, - ACTIONS(8021), 1, + ACTIONS(8072), 1, sym_binary_ampersand, - STATE(6036), 1, + STATE(6029), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, + ACTIONS(8050), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8001), 2, + ACTIONS(8056), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, + ACTIONS(8060), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7989), 3, + ACTIONS(8044), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7999), 4, + ACTIONS(6025), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8054), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8017), 4, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8019), 4, + ACTIONS(8070), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5939), 6, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_do, - [243451] = 5, + [242848] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6037), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8040), 1, + anon_sym_DOT_DOT, + ACTIONS(8042), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8046), 1, + anon_sym_PIPE, + ACTIONS(8048), 1, + anon_sym_CARET, + ACTIONS(8052), 1, + anon_sym_EQ_EQ, + ACTIONS(8058), 1, + anon_sym_AMP_STAR, + ACTIONS(8062), 1, + anon_sym_QMARK, + ACTIONS(8064), 1, + anon_sym_AMP_AMP, + ACTIONS(8066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8072), 1, + sym_binary_ampersand, + STATE(6030), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6076), 8, - anon_sym_DOT_DOT, + ACTIONS(8050), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8056), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8060), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8044), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6074), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(6039), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8054), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8070), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [243503] = 5, + [242936] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6038), 1, + STATE(6031), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6184), 8, + ACTIONS(6367), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -542188,9 +546166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6182), 29, - sym__line_break, + ACTIONS(6365), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -542201,7 +546180,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -542217,16 +546195,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [243555] = 5, + anon_sym_do, + [242988] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6039), 1, + STATE(6032), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5826), 8, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -542235,7 +546213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5824), 29, + ACTIONS(6369), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -542265,109 +546243,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [243607] = 5, + [243040] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6040), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8040), 1, + anon_sym_DOT_DOT, + ACTIONS(8042), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8046), 1, + anon_sym_PIPE, + ACTIONS(8048), 1, + anon_sym_CARET, + ACTIONS(8052), 1, + anon_sym_EQ_EQ, + ACTIONS(8058), 1, + anon_sym_AMP_STAR, + ACTIONS(8062), 1, + anon_sym_QMARK, + ACTIONS(8064), 1, + anon_sym_AMP_AMP, + ACTIONS(8066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8072), 1, + sym_binary_ampersand, + STATE(6033), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, - anon_sym_DOT_DOT, + ACTIONS(8050), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8056), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8060), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8044), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6104), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(5923), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8054), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8070), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, + [243128] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8040), 1, + anon_sym_DOT_DOT, + ACTIONS(8042), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8046), 1, + anon_sym_PIPE, + ACTIONS(8048), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(8052), 1, + anon_sym_EQ_EQ, + ACTIONS(8058), 1, + anon_sym_AMP_STAR, + ACTIONS(8062), 1, anon_sym_QMARK, + ACTIONS(8064), 1, anon_sym_AMP_AMP, + ACTIONS(8066), 1, anon_sym_PIPE_PIPE, - anon_sym_then, - [243659] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6041), 1, + ACTIONS(8072), 1, + sym_binary_ampersand, + STATE(6034), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, - anon_sym_DOT_DOT, + ACTIONS(8050), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8056), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8060), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8044), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5856), 29, + ACTIONS(5773), 4, sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8054), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8070), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [243711] = 5, + [243216] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6042), 1, + ACTIONS(8439), 1, + sym_regex_modifier, + STATE(6035), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5862), 8, + ACTIONS(5769), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -542376,10 +546393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5860), 29, - sym__start_of_brace_block, + ACTIONS(5767), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -542403,112 +546418,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [243763] = 5, + [243270] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6043), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5866), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(5864), 29, - sym__start_of_brace_block, + ACTIONS(7143), 1, sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, + ACTIONS(8040), 1, + anon_sym_DOT_DOT, + ACTIONS(8042), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8046), 1, + anon_sym_PIPE, + ACTIONS(8048), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(8052), 1, + anon_sym_EQ_EQ, + ACTIONS(8058), 1, + anon_sym_AMP_STAR, + ACTIONS(8062), 1, anon_sym_QMARK, + ACTIONS(8064), 1, anon_sym_AMP_AMP, + ACTIONS(8066), 1, anon_sym_PIPE_PIPE, - anon_sym_do, - [243815] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6044), 1, + ACTIONS(8072), 1, + sym_binary_ampersand, + STATE(6036), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5899), 8, - anon_sym_DOT_DOT, + ACTIONS(8050), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8056), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8060), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8044), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5897), 29, + ACTIONS(5694), 4, sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8054), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8070), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [243867] = 5, + [243358] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6045), 1, + STATE(6037), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5919), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -542517,7 +546503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5917), 29, + ACTIONS(6249), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -542547,15 +546533,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [243919] = 5, + [243410] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6046), 1, + STATE(6038), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5927), 8, + ACTIONS(6207), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -542564,7 +546550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5925), 29, + ACTIONS(6205), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -542594,110 +546580,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [243971] = 6, + [243462] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7722), 1, - anon_sym_COLON, - STATE(6047), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(155), 9, - anon_sym_RBRACK, + ACTIONS(6063), 1, anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(133), 27, + ACTIONS(7143), 1, sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + ACTIONS(8046), 1, + anon_sym_PIPE, + ACTIONS(8048), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(8052), 1, + anon_sym_EQ_EQ, + ACTIONS(8058), 1, + anon_sym_AMP_STAR, + ACTIONS(8064), 1, anon_sym_AMP_AMP, + ACTIONS(8066), 1, anon_sym_PIPE_PIPE, - [244025] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6048), 1, + ACTIONS(8072), 1, + sym_binary_ampersand, + STATE(6039), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5931), 8, - anon_sym_DOT_DOT, + ACTIONS(8050), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8056), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8060), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8044), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5929), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8054), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8070), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6061), 6, + sym__start_of_brace_block, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [244077] = 5, + [243546] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6049), 1, + ACTIONS(8441), 1, + sym_regex_modifier, + STATE(6040), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6036), 8, + ACTIONS(5662), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -542706,8 +546663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6034), 29, - sym__line_break, + ACTIONS(5660), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -542719,7 +546675,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -542733,83 +546688,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [244129] = 23, + [243600] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8286), 1, + anon_sym_EQ_GT, + ACTIONS(8288), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8294), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8296), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8300), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8306), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8310), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8312), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8314), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, sym_binary_ampersand, - STATE(6050), 1, + ACTIONS(8443), 1, + anon_sym_RBRACE, + ACTIONS(8445), 1, + anon_sym_COMMA, + STATE(6041), 1, sym_heredoc_body, + STATE(10252), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8304), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8308), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8292), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8302), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8320), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(8425), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - [244217] = 5, + [243694] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6051), 1, + STATE(6042), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6188), 8, + ACTIONS(6379), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -542818,9 +546776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6186), 29, - sym__line_break, + ACTIONS(6377), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -542831,7 +546790,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -542847,16 +546805,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [244269] = 5, + anon_sym_do, + [243746] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6052), 1, + STATE(6043), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6040), 8, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -542865,9 +546823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6038), 29, - sym__line_break, + ACTIONS(6385), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -542878,7 +546837,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -542894,16 +546852,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [244321] = 5, + anon_sym_do, + [243798] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6053), 1, + STATE(6044), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6196), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -542912,9 +546870,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6194), 29, - sym__line_break, + ACTIONS(6389), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -542925,7 +546884,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -542941,16 +546899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [244373] = 5, + anon_sym_do, + [243850] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6054), 1, + STATE(6045), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6044), 8, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -542959,9 +546917,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6042), 29, - sym__line_break, + ACTIONS(6393), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -542972,7 +546931,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -542988,16 +546946,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [244425] = 5, + anon_sym_do, + [243902] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6055), 1, + STATE(6046), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6134), 8, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -543006,9 +546964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6132), 29, - sym__line_break, + ACTIONS(6397), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -543019,7 +546978,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -543035,16 +546993,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [244477] = 5, + anon_sym_do, + [243954] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6056), 1, + STATE(6047), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5778), 8, + ACTIONS(6410), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -543053,9 +547011,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5776), 29, - sym__line_break, + ACTIONS(6408), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -543066,7 +547025,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -543082,16 +547040,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [244529] = 5, + anon_sym_do, + [244006] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6057), 1, + STATE(6048), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6060), 8, + ACTIONS(6414), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -543100,9 +547058,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6058), 29, - sym__line_break, + ACTIONS(6412), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -543113,7 +547072,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -543129,16 +547087,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [244581] = 5, + anon_sym_do, + [244058] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6058), 1, + STATE(6049), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6036), 8, + ACTIONS(6418), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -543147,7 +547105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6034), 29, + ACTIONS(6416), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -543177,15 +547135,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [244633] = 5, + [244110] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6059), 1, + STATE(6050), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6040), 8, + ACTIONS(6422), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -543194,7 +547152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6038), 29, + ACTIONS(6420), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -543224,15 +547182,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [244685] = 5, + [244162] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6060), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_typeof, + ACTIONS(8266), 1, + sym__constant_segment, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8447), 1, + anon_sym_RPAREN, + STATE(6051), 1, sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(11591), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6044), 8, + ACTIONS(8272), 2, + sym_self, + sym_underscore_type, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [244258] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6052), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6426), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -543241,7 +547268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6042), 29, + ACTIONS(6424), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -543271,62 +547298,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [244737] = 5, + [244310] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6061), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7800), 1, + anon_sym_DOT_DOT, + ACTIONS(7802), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7806), 1, + anon_sym_PIPE, + ACTIONS(7808), 1, + anon_sym_CARET, + ACTIONS(7812), 1, + anon_sym_EQ_EQ, + ACTIONS(7818), 1, + anon_sym_AMP_STAR, + ACTIONS(7822), 1, + anon_sym_QMARK, + ACTIONS(7824), 1, + anon_sym_AMP_AMP, + ACTIONS(7826), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(7836), 1, + sym_binary_ampersand, + STATE(6053), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6008), 8, - anon_sym_DOT_DOT, + ACTIONS(7810), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7816), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7820), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7804), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6006), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(7814), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7832), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7834), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(8449), 4, + sym__line_break, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_then, - [244789] = 5, + [244398] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6062), 1, + ACTIONS(8437), 1, + anon_sym_COMMA, + STATE(6054), 1, sym_heredoc_body, + STATE(6161), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6060), 8, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -543335,10 +547384,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6058), 29, - sym__start_of_brace_block, + ACTIONS(5631), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -543349,7 +547396,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -543364,16 +547412,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [244841] = 5, + [244454] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6063), 1, + STATE(6055), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6110), 8, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -543382,7 +547429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6108), 29, + ACTIONS(6329), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -543412,15 +547459,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [244893] = 5, + [244506] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6064), 1, + STATE(6056), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6110), 8, + ACTIONS(6430), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -543429,7 +547476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6108), 29, + ACTIONS(6428), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -543459,15 +547506,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [244945] = 5, + [244558] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6065), 1, + STATE(6057), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6138), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -543476,10 +547523,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6136), 29, - sym__start_of_brace_block, + ACTIONS(6333), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -543490,6 +547536,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -543505,16 +547552,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [244997] = 5, + anon_sym_then, + [244610] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6066), 1, + STATE(6058), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6164), 8, + ACTIONS(6434), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -543523,7 +547570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6162), 29, + ACTIONS(6432), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -543553,15 +547600,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [245049] = 5, + [244662] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6067), 1, + STATE(6059), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6012), 8, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -543570,9 +547617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6010), 29, - sym__line_break, + ACTIONS(6317), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -543583,7 +547631,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -543599,16 +547646,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [245101] = 5, + anon_sym_do, + [244714] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6068), 1, + STATE(6060), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6168), 8, + ACTIONS(6303), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -543617,10 +547664,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6166), 29, - sym__start_of_brace_block, + ACTIONS(6301), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -543631,6 +547677,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -543646,419 +547693,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [245153] = 26, + anon_sym_then, + [244766] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8209), 1, - anon_sym_EQ_GT, - ACTIONS(8211), 1, - anon_sym_DOT_DOT, - ACTIONS(8213), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, - anon_sym_PIPE, - ACTIONS(8219), 1, - anon_sym_CARET, - ACTIONS(8223), 1, - anon_sym_EQ_EQ, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8233), 1, - anon_sym_QMARK, - ACTIONS(8235), 1, - anon_sym_AMP_AMP, - ACTIONS(8237), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, - sym_binary_ampersand, - ACTIONS(8290), 1, - anon_sym_RBRACE, - ACTIONS(8427), 1, - anon_sym_COMMA, - STATE(6069), 1, + STATE(6061), 1, sym_heredoc_body, - STATE(10066), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8225), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8241), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8243), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [245247] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5923), 1, + ACTIONS(5893), 8, anon_sym_DOT_DOT, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7741), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(7743), 1, - anon_sym_CARET, - ACTIONS(7747), 1, anon_sym_EQ_EQ, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7759), 1, - anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(7771), 1, - sym_binary_ampersand, - STATE(6070), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7745), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7751), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, - anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7749), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7767), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5891), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7769), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5921), 6, - sym__line_break, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_then, - [245331] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5570), 1, - anon_sym_RBRACK_QMARK, - ACTIONS(5574), 1, - anon_sym_RBRACK, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8341), 1, - anon_sym_DOT_DOT, - ACTIONS(8343), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8347), 1, - anon_sym_PIPE, - ACTIONS(8349), 1, anon_sym_CARET, - ACTIONS(8353), 1, - anon_sym_EQ_EQ, - ACTIONS(8359), 1, - anon_sym_AMP_STAR, - ACTIONS(8363), 1, - anon_sym_QMARK, - ACTIONS(8367), 1, - anon_sym_AMP_AMP, - ACTIONS(8369), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, - sym_binary_ampersand, - ACTIONS(8429), 1, - anon_sym_COMMA, - STATE(5797), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6071), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8351), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8357), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8345), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8355), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8373), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8375), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [245425] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8209), 1, - anon_sym_EQ_GT, - ACTIONS(8211), 1, - anon_sym_DOT_DOT, - ACTIONS(8213), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, - anon_sym_PIPE, - ACTIONS(8219), 1, - anon_sym_CARET, - ACTIONS(8223), 1, - anon_sym_EQ_EQ, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8233), 1, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8235), 1, anon_sym_AMP_AMP, - ACTIONS(8237), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, - sym_binary_ampersand, - ACTIONS(8431), 1, - anon_sym_RBRACE, - ACTIONS(8433), 1, - anon_sym_COMMA, - STATE(6072), 1, + anon_sym_do, + [244818] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7762), 1, + anon_sym_COLON, + STATE(6062), 1, sym_heredoc_body, - STATE(10021), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, + ACTIONS(157), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(135), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [245519] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8211), 1, - anon_sym_DOT_DOT, - ACTIONS(8213), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, - anon_sym_PIPE, - ACTIONS(8219), 1, anon_sym_CARET, - ACTIONS(8223), 1, - anon_sym_EQ_EQ, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8233), 1, - anon_sym_QMARK, - ACTIONS(8235), 1, - anon_sym_AMP_AMP, - ACTIONS(8237), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, - sym_binary_ampersand, - ACTIONS(8435), 1, - anon_sym_COMMA, - STATE(6073), 1, - sym_heredoc_body, - STATE(6113), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5585), 2, - anon_sym_RBRACE, - anon_sym_EQ_GT, - ACTIONS(8221), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8225), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8243), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [245611] = 27, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(8437), 1, - anon_sym_RPAREN, - STATE(6074), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(11063), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [245707] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [244872] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6075), 1, + STATE(6063), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5770), 8, + ACTIONS(6438), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -544067,7 +547806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5768), 29, + ACTIONS(6436), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -544097,15 +547836,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [245759] = 5, + [244924] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6076), 1, + ACTIONS(8451), 1, + anon_sym_COMMA, + STATE(5750), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(6064), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5782), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -544114,10 +547857,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5780), 29, - sym__start_of_brace_block, + ACTIONS(5637), 27, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -544128,7 +547870,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -544143,16 +547885,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [245811] = 5, + [244980] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6077), 1, + STATE(6065), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5786), 8, + ACTIONS(5965), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -544161,7 +547902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5784), 29, + ACTIONS(5963), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -544191,15 +547932,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [245863] = 5, + [245032] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6078), 1, + STATE(6066), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5790), 8, + ACTIONS(6446), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -544208,10 +547949,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5788), 29, - sym__start_of_brace_block, + ACTIONS(6444), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -544222,6 +547962,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -544237,81 +547978,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [245915] = 23, + anon_sym_then, + [245084] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7735), 1, + ACTIONS(7800), 1, anon_sym_DOT_DOT, - ACTIONS(7737), 1, + ACTIONS(7802), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7741), 1, + ACTIONS(7806), 1, anon_sym_PIPE, - ACTIONS(7743), 1, + ACTIONS(7808), 1, anon_sym_CARET, - ACTIONS(7747), 1, + ACTIONS(7812), 1, anon_sym_EQ_EQ, - ACTIONS(7753), 1, + ACTIONS(7818), 1, anon_sym_AMP_STAR, - ACTIONS(7757), 1, + ACTIONS(7822), 1, anon_sym_QMARK, - ACTIONS(7759), 1, + ACTIONS(7824), 1, anon_sym_AMP_AMP, - ACTIONS(7761), 1, + ACTIONS(7826), 1, anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7771), 1, + ACTIONS(7836), 1, sym_binary_ampersand, - STATE(6079), 1, + STATE(6067), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7745), 2, + ACTIONS(7810), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7751), 2, + ACTIONS(7816), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, + ACTIONS(7820), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, + ACTIONS(7804), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6144), 4, + ACTIONS(5694), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - ACTIONS(7749), 4, + ACTIONS(7814), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7767), 4, + ACTIONS(7832), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7769), 4, + ACTIONS(7834), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [246003] = 5, + [245172] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6080), 1, + STATE(6068), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6138), 8, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -544320,7 +548061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6136), 29, + ACTIONS(5694), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -544350,80 +548091,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [246055] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7735), 1, - anon_sym_DOT_DOT, - ACTIONS(7737), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7741), 1, - anon_sym_PIPE, - ACTIONS(7743), 1, - anon_sym_CARET, - ACTIONS(7747), 1, - anon_sym_EQ_EQ, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7757), 1, - anon_sym_QMARK, - ACTIONS(7759), 1, - anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(7771), 1, - sym_binary_ampersand, - STATE(6081), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7745), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7751), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6152), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - ACTIONS(7749), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7767), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7769), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [246143] = 5, + [245224] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6082), 1, + STATE(6069), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4593), 9, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -544432,8 +548108,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4595), 28, + ACTIONS(5903), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -544448,7 +548124,6 @@ static const uint16_t ts_small_parse_table[] = { sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -544462,19 +548137,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [246195] = 7, + anon_sym_do, + [245276] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8435), 1, - anon_sym_COMMA, - STATE(6083), 1, + STATE(6070), 1, sym_heredoc_body, - STATE(6113), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -544483,7 +548155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 27, + ACTIONS(6337), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -544495,8 +548168,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -544511,16 +548184,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [246251] = 5, + anon_sym_then, + [245328] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6084), 1, + STATE(6071), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5581), 9, - anon_sym_RBRACK, + ACTIONS(5965), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -544529,7 +548202,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5579), 28, + ACTIONS(5963), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -544541,6 +548215,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -544553,20 +548228,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [246303] = 5, + anon_sym_then, + [245380] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6085), 1, + STATE(6072), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6316), 8, + ACTIONS(6005), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -544575,7 +548249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6314), 29, + ACTIONS(6003), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -544605,15 +548279,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [246355] = 5, + [245432] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6086), 1, + ACTIONS(5587), 1, + anon_sym_RBRACK_QMARK, + ACTIONS(5629), 1, + anon_sym_RBRACK, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(8342), 1, + anon_sym_DOT_DOT, + ACTIONS(8344), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8348), 1, + anon_sym_PIPE, + ACTIONS(8350), 1, + anon_sym_CARET, + ACTIONS(8354), 1, + anon_sym_EQ_EQ, + ACTIONS(8360), 1, + anon_sym_AMP_STAR, + ACTIONS(8364), 1, + anon_sym_QMARK, + ACTIONS(8368), 1, + anon_sym_AMP_AMP, + ACTIONS(8370), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8372), 1, + sym__start_of_index_operator, + ACTIONS(8378), 1, + sym_binary_ampersand, + ACTIONS(8408), 1, + anon_sym_COMMA, + STATE(5899), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(6073), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8352), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8358), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8362), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8346), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8356), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8374), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8376), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [245526] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6074), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5794), 8, + ACTIONS(6343), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -544622,10 +548364,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5792), 29, - sym__start_of_brace_block, + ACTIONS(6341), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -544636,6 +548377,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -544651,16 +548393,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [246407] = 5, + anon_sym_then, + [245578] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6087), 1, + STATE(6075), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5798), 8, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -544669,7 +548411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5796), 29, + ACTIONS(5983), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -544699,15 +548441,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [246459] = 5, + [245630] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6088), 1, + STATE(6076), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5806), 8, + ACTIONS(5943), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -544716,10 +548458,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5804), 29, - sym__start_of_brace_block, + ACTIONS(5941), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -544730,6 +548471,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -544745,16 +548487,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [246511] = 5, + anon_sym_then, + [245682] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6089), 1, + STATE(6077), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5814), 8, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -544763,7 +548505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5812), 29, + ACTIONS(5747), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -544793,62 +548535,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [246563] = 5, + [245734] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6090), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8286), 1, + anon_sym_EQ_GT, + ACTIONS(8288), 1, + anon_sym_DOT_DOT, + ACTIONS(8290), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, + anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8310), 1, + anon_sym_QMARK, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8314), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, + ACTIONS(8453), 1, + anon_sym_RBRACE, + ACTIONS(8455), 1, + anon_sym_COMMA, + STATE(6078), 1, sym_heredoc_body, + STATE(10344), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5822), 8, - anon_sym_DOT_DOT, + ACTIONS(8298), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8304), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8292), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5820), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8320), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [246615] = 5, + [245828] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6091), 1, + STATE(6079), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5830), 8, + ACTIONS(6005), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -544857,7 +548620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5828), 29, + ACTIONS(6003), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -544887,15 +548650,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [246667] = 5, + [245880] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6092), 1, + STATE(6080), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5802), 8, + ACTIONS(5801), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -544904,9 +548667,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5800), 29, - sym__line_break, + ACTIONS(5799), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -544917,7 +548681,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -544933,16 +548696,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [246719] = 5, + anon_sym_do, + [245932] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6093), 1, + STATE(6081), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6212), 8, + ACTIONS(5917), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -544951,9 +548714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6210), 29, - sym__line_break, + ACTIONS(5915), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -544964,7 +548728,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -544980,16 +548743,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [246771] = 5, + anon_sym_do, + [245984] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6094), 1, + STATE(6082), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5512), 8, + ACTIONS(5570), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -544998,7 +548761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 29, + ACTIONS(5568), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -545028,15 +548791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [246823] = 5, + [246036] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6095), 1, + STATE(6083), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5834), 8, + ACTIONS(5955), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -545045,7 +548808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5832), 29, + ACTIONS(5953), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -545075,15 +548838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [246875] = 5, + [246088] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6096), 1, + STATE(6084), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6008), 8, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -545092,10 +548855,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6006), 29, - sym__start_of_brace_block, + ACTIONS(5785), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -545106,6 +548868,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -545121,16 +548884,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [246927] = 5, + anon_sym_then, + [246140] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6097), 1, + STATE(6085), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5713), 8, + ACTIONS(5801), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -545139,10 +548902,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 29, - sym__start_of_brace_block, + ACTIONS(5799), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -545153,6 +548915,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -545168,149 +548931,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [246979] = 26, + anon_sym_then, + [246192] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8209), 1, - anon_sym_EQ_GT, - ACTIONS(8211), 1, - anon_sym_DOT_DOT, - ACTIONS(8213), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, - anon_sym_PIPE, - ACTIONS(8219), 1, - anon_sym_CARET, - ACTIONS(8223), 1, - anon_sym_EQ_EQ, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8233), 1, - anon_sym_QMARK, - ACTIONS(8235), 1, - anon_sym_AMP_AMP, - ACTIONS(8237), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, - sym_binary_ampersand, - ACTIONS(8439), 1, - anon_sym_RBRACE, - ACTIONS(8441), 1, - anon_sym_COMMA, - STATE(6098), 1, + STATE(6086), 1, sym_heredoc_body, - STATE(10116), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, + ACTIONS(5917), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5915), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [247073] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7985), 1, - anon_sym_DOT_DOT, - ACTIONS(7987), 1, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7991), 1, - anon_sym_PIPE, - ACTIONS(7993), 1, anon_sym_CARET, - ACTIONS(7997), 1, - anon_sym_EQ_EQ, - ACTIONS(8003), 1, - anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8009), 1, - anon_sym_QMARK, - ACTIONS(8011), 1, - anon_sym_AMP_AMP, - ACTIONS(8013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, - sym__start_of_index_operator, - ACTIONS(8021), 1, - sym_binary_ampersand, - STATE(6099), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7995), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8001), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7989), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6010), 4, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(7999), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8017), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8019), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [247161] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [246244] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6100), 1, + STATE(6087), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6192), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -545319,7 +548996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6190), 29, + ACTIONS(6098), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -545349,15 +549026,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [247213] = 5, + [246296] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6101), 1, + STATE(6088), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5842), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -545366,10 +549043,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5840), 29, - sym__start_of_brace_block, + ACTIONS(6098), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -545380,6 +549056,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -545395,16 +549072,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [247265] = 5, + anon_sym_then, + [246348] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6102), 1, + STATE(6089), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6164), 8, + ACTIONS(6106), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -545413,7 +549090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6162), 29, + ACTIONS(6104), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -545443,84 +549120,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [247317] = 27, + [246400] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(8443), 1, - anon_sym_RPAREN, - STATE(6103), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(11311), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [247413] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6104), 1, + STATE(6090), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6020), 8, + ACTIONS(6114), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -545529,7 +549137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6018), 29, + ACTIONS(6112), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -545559,66 +549167,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [247465] = 5, + [246452] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6105), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_typeof, + ACTIONS(8266), 1, + sym__constant_segment, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8457), 1, + anon_sym_RPAREN, + STATE(6091), 1, sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(11919), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5868), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [247517] = 7, + ACTIONS(8272), 2, + sym_self, + sym_underscore_type, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [246548] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8435), 1, - anon_sym_COMMA, - STATE(5763), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6106), 1, + STATE(6092), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6118), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -545627,7 +549253,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 27, + ACTIONS(6116), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -545639,8 +549266,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -545655,15 +549282,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [247573] = 5, + anon_sym_then, + [246600] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6107), 1, + STATE(6093), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5903), 8, + ACTIONS(6122), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -545672,10 +549300,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5901), 29, - sym__start_of_brace_block, + ACTIONS(6120), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -545686,6 +549313,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -545701,16 +549329,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [247625] = 5, + anon_sym_then, + [246652] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6108), 1, + STATE(6094), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5907), 8, + ACTIONS(6126), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -545719,10 +549347,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5905), 29, - sym__start_of_brace_block, + ACTIONS(6124), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -545733,6 +549360,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -545748,16 +549376,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [247677] = 5, + anon_sym_then, + [246704] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6109), 1, + STATE(6095), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5911), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -545766,10 +549394,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5909), 29, - sym__start_of_brace_block, + ACTIONS(5545), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -545780,6 +549407,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -545795,16 +549423,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [247729] = 5, + anon_sym_then, + [246756] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6110), 1, + STATE(6096), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6086), 8, + ACTIONS(6130), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -545813,7 +549441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6084), 29, + ACTIONS(6128), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -545843,18 +549471,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [247781] = 6, + [246808] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8445), 1, - anon_sym_EQ, - STATE(6111), 1, + STATE(6097), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 9, - anon_sym_RBRACK, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -545863,8 +549488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 27, + ACTIONS(6195), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -545888,18 +549515,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [247835] = 5, + anon_sym_do, + [246860] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6112), 1, + STATE(6098), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5915), 8, + ACTIONS(6086), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -545908,10 +549535,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5913), 29, - sym__start_of_brace_block, + ACTIONS(6084), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -545922,6 +549548,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -545937,20 +549564,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [247887] = 7, + anon_sym_then, + [246912] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8447), 1, - anon_sym_COMMA, - STATE(5763), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6113), 1, + STATE(6099), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(6164), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -545959,8 +549582,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 27, + ACTIONS(6162), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -545971,8 +549596,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -545987,15 +549611,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [247943] = 5, + anon_sym_do, + [246964] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6114), 1, + STATE(6100), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(5955), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -546004,7 +549629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5878), 29, + ACTIONS(5953), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -546034,83 +549659,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [247995] = 26, + [247016] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8209), 1, - anon_sym_EQ_GT, - ACTIONS(8211), 1, - anon_sym_DOT_DOT, - ACTIONS(8213), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, - anon_sym_PIPE, - ACTIONS(8219), 1, - anon_sym_CARET, - ACTIONS(8223), 1, - anon_sym_EQ_EQ, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8233), 1, - anon_sym_QMARK, - ACTIONS(8235), 1, - anon_sym_AMP_AMP, - ACTIONS(8237), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, - sym_binary_ampersand, - ACTIONS(8449), 1, - anon_sym_RBRACE, - ACTIONS(8451), 1, - anon_sym_COMMA, - STATE(6115), 1, - sym_heredoc_body, - STATE(10232), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8225), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8241), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8243), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [248089] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6116), 1, + STATE(6101), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6168), 8, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -546119,7 +549676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6166), 29, + ACTIONS(6195), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -546149,15 +549706,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [248141] = 5, + [247068] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6117), 1, + STATE(6102), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(6164), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -546166,7 +549723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 29, + ACTIONS(6162), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -546196,84 +549753,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [248193] = 27, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(8453), 1, - anon_sym_RPAREN, - STATE(6118), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(11588), 1, - sym_type_instance_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [248289] = 5, + [247120] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6119), 1, + STATE(6103), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6288), 8, + ACTIONS(5837), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -546282,7 +549770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6286), 29, + ACTIONS(5835), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -546312,15 +549800,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [248341] = 5, + [247172] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6120), 1, + STATE(6104), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5738), 8, + ACTIONS(5837), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -546329,9 +549817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5736), 29, - sym__line_break, + ACTIONS(5835), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -546342,7 +549831,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -546358,63 +549846,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [248393] = 5, + anon_sym_do, + [247224] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6121), 1, + ACTIONS(5977), 1, + anon_sym_DOT_DOT, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8046), 1, + anon_sym_PIPE, + ACTIONS(8048), 1, + anon_sym_CARET, + ACTIONS(8052), 1, + anon_sym_EQ_EQ, + ACTIONS(8058), 1, + anon_sym_AMP_STAR, + ACTIONS(8064), 1, + anon_sym_AMP_AMP, + ACTIONS(8066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8072), 1, + sym_binary_ampersand, + STATE(6105), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5953), 8, - anon_sym_DOT_DOT, + ACTIONS(8050), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8056), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8060), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8044), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5951), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(8054), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8070), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + ACTIONS(5975), 6, + sym__start_of_brace_block, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [248445] = 5, + anon_sym_COLON2, + anon_sym_do, + [247308] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6122), 1, + STATE(6106), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6292), 8, + ACTIONS(6059), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -546423,7 +549927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6290), 29, + ACTIONS(6057), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -546453,15 +549957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [248497] = 5, + [247360] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6123), 1, + STATE(6107), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5968), 8, + ACTIONS(6059), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -546470,7 +549974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5966), 29, + ACTIONS(6057), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -546500,15 +550004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [248549] = 5, + [247412] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6124), 1, + STATE(6108), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5972), 8, + ACTIONS(6470), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -546517,7 +550021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5970), 29, + ACTIONS(6468), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -546547,15 +550051,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [248601] = 5, + [247464] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6125), 1, + STATE(6109), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6028), 8, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -546564,7 +550068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6026), 29, + ACTIONS(6381), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -546594,15 +550098,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [248653] = 5, + [247516] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6126), 1, + STATE(6110), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6076), 8, + ACTIONS(6450), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -546611,7 +550115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6074), 29, + ACTIONS(6448), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -546641,15 +550145,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [248705] = 5, + [247568] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6127), 1, + STATE(6111), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6086), 8, + ACTIONS(6470), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -546658,10 +550162,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6084), 29, - sym__start_of_brace_block, + ACTIONS(6468), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -546672,6 +550175,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -546687,16 +550191,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [248757] = 5, + anon_sym_then, + [247620] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6128), 1, + STATE(6112), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6098), 8, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -546705,10 +550209,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6096), 29, - sym__start_of_brace_block, + ACTIONS(6381), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -546719,6 +550222,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -546734,16 +550238,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [248809] = 5, + anon_sym_then, + [247672] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6129), 1, + STATE(6113), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6102), 8, + ACTIONS(5805), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -546752,7 +550256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6100), 29, + ACTIONS(5803), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -546782,195 +550286,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [248861] = 23, + [247724] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7985), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8040), 1, anon_sym_DOT_DOT, - ACTIONS(7987), 1, + ACTIONS(8042), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7991), 1, + ACTIONS(8046), 1, anon_sym_PIPE, - ACTIONS(7993), 1, + ACTIONS(8048), 1, anon_sym_CARET, - ACTIONS(7997), 1, + ACTIONS(8052), 1, anon_sym_EQ_EQ, - ACTIONS(8003), 1, + ACTIONS(8058), 1, anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8009), 1, + ACTIONS(8062), 1, anon_sym_QMARK, - ACTIONS(8011), 1, + ACTIONS(8064), 1, anon_sym_AMP_AMP, - ACTIONS(8013), 1, + ACTIONS(8066), 1, anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, - sym__start_of_index_operator, - ACTIONS(8021), 1, + ACTIONS(8072), 1, sym_binary_ampersand, - STATE(6130), 1, + STATE(6114), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, + ACTIONS(8050), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8001), 2, + ACTIONS(8056), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, + ACTIONS(8060), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7989), 3, + ACTIONS(8044), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6030), 4, + ACTIONS(6092), 4, sym__start_of_brace_block, - sym__end_of_with_expression, anon_sym_COMMA, + anon_sym_COLON2, anon_sym_do, - ACTIONS(7999), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8017), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8019), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [248949] = 26, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8209), 1, - anon_sym_EQ_GT, - ACTIONS(8211), 1, - anon_sym_DOT_DOT, - ACTIONS(8213), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, - anon_sym_PIPE, - ACTIONS(8219), 1, - anon_sym_CARET, - ACTIONS(8223), 1, - anon_sym_EQ_EQ, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8233), 1, - anon_sym_QMARK, - ACTIONS(8235), 1, - anon_sym_AMP_AMP, - ACTIONS(8237), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, - sym_binary_ampersand, - ACTIONS(8455), 1, - anon_sym_RBRACE, - ACTIONS(8457), 1, - anon_sym_COMMA, - STATE(6131), 1, - sym_heredoc_body, - STATE(10358), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(8054), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8243), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [249043] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6132), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6172), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6170), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8070), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [249095] = 5, + [247812] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6133), 1, + STATE(6115), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5520), 8, + ACTIONS(5821), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -546979,7 +550368,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5518), 29, + ACTIONS(5819), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -546992,7 +550382,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -547005,19 +550394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [249147] = 5, + anon_sym_do, + [247864] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6134), 1, + STATE(6116), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6300), 8, + ACTIONS(5993), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -547026,7 +550415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6298), 29, + ACTIONS(5991), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -547056,15 +550445,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [249199] = 5, + [247916] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6135), 1, + STATE(6117), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6200), 8, + ACTIONS(5845), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -547073,9 +550462,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6198), 29, - sym__line_break, + ACTIONS(5843), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -547086,7 +550476,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -547102,83 +550491,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [249251] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7735), 1, - anon_sym_DOT_DOT, - ACTIONS(7737), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7741), 1, - anon_sym_PIPE, - ACTIONS(7743), 1, - anon_sym_CARET, - ACTIONS(7747), 1, - anon_sym_EQ_EQ, - ACTIONS(7753), 1, - anon_sym_AMP_STAR, - ACTIONS(7757), 1, - anon_sym_QMARK, - ACTIONS(7759), 1, - anon_sym_AMP_AMP, - ACTIONS(7761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(7771), 1, - sym_binary_ampersand, - ACTIONS(8459), 1, - anon_sym_COMMA, - STATE(5793), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6136), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5570), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(7745), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7751), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7755), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7739), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7749), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7767), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7769), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [249343] = 5, + anon_sym_do, + [247968] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6137), 1, + STATE(6118), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6224), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -547187,7 +550509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6222), 29, + ACTIONS(5545), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -547217,212 +550539,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [249395] = 5, + [248020] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6138), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6122), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(6120), 29, - sym__start_of_brace_block, + ACTIONS(7143), 1, sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [249447] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5941), 1, + ACTIONS(8040), 1, anon_sym_DOT_DOT, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7955), 1, + ACTIONS(8042), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8046), 1, anon_sym_PIPE, - ACTIONS(7957), 1, + ACTIONS(8048), 1, anon_sym_CARET, - ACTIONS(7961), 1, + ACTIONS(8052), 1, anon_sym_EQ_EQ, - ACTIONS(7967), 1, + ACTIONS(8058), 1, anon_sym_AMP_STAR, - ACTIONS(7973), 1, + ACTIONS(8062), 1, + anon_sym_QMARK, + ACTIONS(8064), 1, anon_sym_AMP_AMP, - ACTIONS(7975), 1, + ACTIONS(8066), 1, anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, + ACTIONS(8072), 1, sym_binary_ampersand, - STATE(6139), 1, + STATE(6119), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, + ACTIONS(8050), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7965), 2, + ACTIONS(8056), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, + ACTIONS(8060), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7953), 3, + ACTIONS(8044), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7963), 4, + ACTIONS(6193), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8054), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, + ACTIONS(8070), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5939), 6, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_COLON2, - anon_sym_do, - [249531] = 23, + [248108] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7985), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8040), 1, anon_sym_DOT_DOT, - ACTIONS(7987), 1, + ACTIONS(8042), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7991), 1, + ACTIONS(8046), 1, anon_sym_PIPE, - ACTIONS(7993), 1, + ACTIONS(8048), 1, anon_sym_CARET, - ACTIONS(7997), 1, + ACTIONS(8052), 1, anon_sym_EQ_EQ, - ACTIONS(8003), 1, + ACTIONS(8058), 1, anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8009), 1, + ACTIONS(8062), 1, anon_sym_QMARK, - ACTIONS(8011), 1, + ACTIONS(8064), 1, anon_sym_AMP_AMP, - ACTIONS(8013), 1, + ACTIONS(8066), 1, anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, - sym__start_of_index_operator, - ACTIONS(8021), 1, + ACTIONS(8072), 1, sym_binary_ampersand, - STATE(6140), 1, + STATE(6120), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, + ACTIONS(8050), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8001), 2, + ACTIONS(8056), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, + ACTIONS(8060), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7989), 3, + ACTIONS(8044), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6032), 4, + ACTIONS(6203), 4, sym__start_of_brace_block, - sym__end_of_with_expression, anon_sym_COMMA, + anon_sym_COLON2, anon_sym_do, - ACTIONS(7999), 4, + ACTIONS(8054), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8017), 4, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8019), 4, + ACTIONS(8070), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [249619] = 5, + [248196] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6141), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8058), 1, + anon_sym_AMP_STAR, + STATE(6121), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6130), 8, + ACTIONS(8060), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8070), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6259), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6128), 29, + ACTIONS(6257), 22, sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -547434,20 +550716,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [249671] = 5, + [248258] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6142), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + STATE(6122), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6142), 8, + ACTIONS(8060), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6295), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -547455,17 +550744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6140), 29, + ACTIONS(6293), 26, sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -547481,20 +550766,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [249723] = 5, + [248316] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6143), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + STATE(6123), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6150), 8, + ACTIONS(8060), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -547502,17 +550794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6148), 29, + ACTIONS(6313), 26, sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -547528,20 +550816,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [249775] = 5, + [248374] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6144), 1, + STATE(6124), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(5783), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -547550,10 +550838,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6419), 29, - sym__start_of_brace_block, + ACTIONS(5781), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -547564,6 +550851,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -547579,63 +550867,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [249827] = 5, + anon_sym_then, + [248426] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6145), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8058), 1, + anon_sym_AMP_STAR, + STATE(6125), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6184), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6182), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8050), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8060), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8070), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6327), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6325), 16, + sym__start_of_brace_block, + sym_binary_ampersand, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [249879] = 5, + [248492] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6146), 1, + STATE(6126), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6188), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -547644,7 +550939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6186), 29, + ACTIONS(135), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -547674,85 +550969,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [249931] = 6, + [248544] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8461), 1, - anon_sym_of, - STATE(6147), 1, + ACTIONS(6442), 1, + anon_sym_DOT_DOT, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8046), 1, + anon_sym_PIPE, + ACTIONS(8048), 1, + anon_sym_CARET, + ACTIONS(8052), 1, + anon_sym_EQ_EQ, + ACTIONS(8058), 1, + anon_sym_AMP_STAR, + ACTIONS(8064), 1, + anon_sym_AMP_AMP, + ACTIONS(8066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8072), 1, + sym_binary_ampersand, + STATE(6127), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5728), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(8050), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8056), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8060), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8044), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5724), 27, - sym__start_of_index_operator, + ACTIONS(8054), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8070), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6440), 6, + sym__start_of_brace_block, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_COLON2, + anon_sym_do, + [248628] = 17, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8046), 1, + anon_sym_PIPE, + ACTIONS(8048), 1, anon_sym_CARET, + ACTIONS(8052), 1, + anon_sym_EQ_EQ, + ACTIONS(8058), 1, + anon_sym_AMP_STAR, + ACTIONS(8072), 1, + sym_binary_ampersand, + STATE(6128), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8050), 2, anon_sym_GT_GT, anon_sym_LT_LT, + ACTIONS(8060), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5817), 4, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8054), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(8068), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8070), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5815), 10, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [249985] = 5, + anon_sym_COLON2, + anon_sym_do, + [248704] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6148), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8058), 1, + anon_sym_AMP_STAR, + ACTIONS(8072), 1, + sym_binary_ampersand, + STATE(6129), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6196), 8, + ACTIONS(8050), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8060), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8068), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8070), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6263), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6194), 29, + ACTIONS(6261), 15, sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, + [248772] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8058), 1, + anon_sym_AMP_STAR, + STATE(6130), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8060), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8070), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5869), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5867), 18, + sym__start_of_brace_block, + sym_binary_ampersand, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -547764,116 +551194,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [250037] = 5, + [248836] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6149), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8046), 1, + anon_sym_PIPE, + ACTIONS(8048), 1, + anon_sym_CARET, + ACTIONS(8058), 1, + anon_sym_AMP_STAR, + ACTIONS(8072), 1, + sym_binary_ampersand, + STATE(6131), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6200), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6198), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8050), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8060), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8070), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6134), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6132), 14, + sym__start_of_brace_block, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [250089] = 7, + [248908] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8429), 1, - anon_sym_COMMA, - STATE(5797), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6150), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_typeof, + ACTIONS(8266), 1, + sym__constant_segment, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8459), 1, + anon_sym_RPAREN, + STATE(6132), 1, sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(11716), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 9, - anon_sym_RBRACK, + ACTIONS(8272), 2, + sym_self, + sym_underscore_type, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [249004] = 19, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(6047), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8046), 1, anon_sym_PIPE, + ACTIONS(8048), 1, + anon_sym_CARET, + ACTIONS(8052), 1, anon_sym_EQ_EQ, + ACTIONS(8058), 1, + anon_sym_AMP_STAR, + ACTIONS(8072), 1, + sym_binary_ampersand, + STATE(6133), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8050), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8056), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8060), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8044), 3, + anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5570), 26, - sym__start_of_index_operator, + ACTIONS(8054), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8070), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6045), 8, + sym__start_of_brace_block, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [250145] = 5, + anon_sym_COLON2, + anon_sym_do, + [249084] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6151), 1, + STATE(6134), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6234), 8, + ACTIONS(6450), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -547882,7 +551403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6232), 29, + ACTIONS(6448), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -547912,15 +551433,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [250197] = 5, + [249136] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6152), 1, + STATE(6135), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6224), 8, + ACTIONS(5921), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -547929,7 +551450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6222), 29, + ACTIONS(5919), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -547959,62 +551480,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [250249] = 5, + [249188] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6153), 1, + ACTIONS(6215), 1, + anon_sym_DOT_DOT, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8046), 1, + anon_sym_PIPE, + ACTIONS(8048), 1, + anon_sym_CARET, + ACTIONS(8052), 1, + anon_sym_EQ_EQ, + ACTIONS(8058), 1, + anon_sym_AMP_STAR, + ACTIONS(8064), 1, + anon_sym_AMP_AMP, + ACTIONS(8072), 1, + sym_binary_ampersand, + STATE(6136), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6234), 8, - anon_sym_DOT_DOT, + ACTIONS(8050), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8056), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8060), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8044), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6232), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8054), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8070), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6213), 7, + sym__start_of_brace_block, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + anon_sym_do, + [249270] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8286), 1, + anon_sym_EQ_GT, + ACTIONS(8288), 1, + anon_sym_DOT_DOT, + ACTIONS(8290), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8310), 1, + anon_sym_QMARK, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8314), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, + ACTIONS(8461), 1, + anon_sym_RBRACE, + ACTIONS(8463), 1, + anon_sym_COMMA, + STATE(6137), 1, + sym_heredoc_body, + STATE(9760), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8304), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8292), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [250301] = 5, + ACTIONS(8318), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8320), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [249364] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6154), 1, + STATE(6138), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6246), 8, + ACTIONS(5849), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548023,7 +551627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6244), 29, + ACTIONS(5847), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -548053,15 +551657,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [250353] = 5, + [249416] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6155), 1, + STATE(6139), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6250), 8, + ACTIONS(5865), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548070,7 +551674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6248), 29, + ACTIONS(5863), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -548100,15 +551704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [250405] = 5, + [249468] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6156), 1, + STATE(6140), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6296), 8, + ACTIONS(5927), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548117,7 +551721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6294), 29, + ACTIONS(5925), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -548147,15 +551751,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [250457] = 5, + [249520] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6157), 1, + STATE(6141), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6324), 8, + ACTIONS(5901), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548164,10 +551768,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6322), 29, - sym__start_of_brace_block, + ACTIONS(5899), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -548178,6 +551781,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -548193,16 +551797,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [250509] = 5, + anon_sym_then, + [249572] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6158), 1, + STATE(6142), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6348), 8, + ACTIONS(6363), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548211,7 +551815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6346), 29, + ACTIONS(6361), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -548241,15 +551845,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [250561] = 5, + [249624] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6159), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_typeof, + ACTIONS(8266), 1, + sym__constant_segment, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8465), 1, + anon_sym_RPAREN, + STATE(6143), 1, + sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(11066), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8272), 2, + sym_self, + sym_underscore_type, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [249720] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6144), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6352), 8, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548258,10 +551931,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6350), 29, - sym__start_of_brace_block, + ACTIONS(5871), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -548272,6 +551944,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -548287,16 +551960,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [250613] = 5, + anon_sym_then, + [249772] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6160), 1, + STATE(6145), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6368), 8, + ACTIONS(6029), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548305,7 +551978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6366), 29, + ACTIONS(6027), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -548335,15 +552008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [250665] = 5, + [249824] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6161), 1, + STATE(6146), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6400), 8, + ACTIONS(6096), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548352,10 +552025,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6398), 29, - sym__start_of_brace_block, + ACTIONS(6094), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -548366,6 +552038,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -548381,16 +552054,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [250717] = 5, + anon_sym_then, + [249876] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6162), 1, + STATE(6147), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5738), 8, + ACTIONS(6179), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548399,10 +552072,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5736), 29, - sym__start_of_brace_block, + ACTIONS(6177), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -548413,6 +552085,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -548428,16 +552101,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [250769] = 5, + anon_sym_then, + [249928] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6163), 1, + STATE(6148), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5742), 8, + ACTIONS(6454), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548446,7 +552119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5740), 29, + ACTIONS(6452), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -548476,15 +552149,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [250821] = 5, + [249980] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6164), 1, + ACTIONS(8467), 1, + anon_sym_COMMA, + STATE(6149), 1, sym_heredoc_body, + STATE(6161), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548493,10 +552170,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5878), 29, - sym__start_of_brace_block, + ACTIONS(5637), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -548507,7 +552182,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -548522,16 +552198,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [250873] = 5, + [250036] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6165), 1, + STATE(6150), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5746), 8, + ACTIONS(6110), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548540,10 +552215,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5744), 29, - sym__start_of_brace_block, + ACTIONS(6108), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -548554,6 +552228,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -548569,16 +552244,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [250925] = 5, + anon_sym_then, + [250088] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6166), 1, + STATE(6151), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5750), 8, + ACTIONS(6466), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548587,7 +552262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5748), 29, + ACTIONS(6464), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -548617,15 +552292,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [250977] = 5, + [250140] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6167), 1, + STATE(6152), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6352), 8, + ACTIONS(6406), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548634,9 +552309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6350), 29, - sym__line_break, + ACTIONS(6404), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -548647,7 +552323,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -548663,67 +552338,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [251029] = 5, + anon_sym_do, + [250192] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6168), 1, + ACTIONS(5981), 1, + anon_sym_DOT_DOT, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7143), 1, + sym__start_of_index_operator, + ACTIONS(8046), 1, + anon_sym_PIPE, + ACTIONS(8048), 1, + anon_sym_CARET, + ACTIONS(8052), 1, + anon_sym_EQ_EQ, + ACTIONS(8058), 1, + anon_sym_AMP_STAR, + ACTIONS(8064), 1, + anon_sym_AMP_AMP, + ACTIONS(8066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8072), 1, + sym_binary_ampersand, + STATE(6153), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5754), 8, - anon_sym_DOT_DOT, + ACTIONS(8050), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8056), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8060), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8044), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5752), 29, - sym__start_of_brace_block, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8054), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8070), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5979), 6, + sym__start_of_brace_block, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COLON2, anon_sym_do, - [251081] = 7, + [250276] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8459), 1, - anon_sym_COMMA, - STATE(5793), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6169), 1, + STATE(6154), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548732,7 +552419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 27, + ACTIONS(6349), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -548746,6 +552433,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_double_slash, sym__modulo_operator, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -548760,15 +552448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [251137] = 5, + anon_sym_then, + [250328] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6170), 1, + STATE(6155), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5758), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548777,10 +552466,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5756), 29, - sym__start_of_brace_block, + ACTIONS(6189), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -548791,6 +552479,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -548806,16 +552495,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [251189] = 5, + anon_sym_then, + [250380] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6171), 1, + STATE(6156), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5762), 8, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548824,7 +552513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5760), 29, + ACTIONS(6199), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -548854,15 +552543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [251241] = 5, + [250432] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6172), 1, + STATE(6157), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5766), 8, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548871,7 +552560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5764), 29, + ACTIONS(6321), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -548901,15 +552590,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [251293] = 5, + [250484] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6173), 1, + STATE(6158), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5774), 8, + ACTIONS(6375), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548918,10 +552607,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5772), 29, - sym__start_of_brace_block, + ACTIONS(6373), 29, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -548932,6 +552620,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -548947,16 +552636,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [251345] = 5, + anon_sym_then, + [250536] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6174), 1, + STATE(6159), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5778), 8, + ACTIONS(5570), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -548965,7 +552654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5776), 29, + ACTIONS(5568), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -548995,15 +552684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [251397] = 5, + [250588] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6175), 1, + STATE(6160), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6250), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -549012,7 +552701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6248), 29, + ACTIONS(6353), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -549042,84 +552731,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [251449] = 27, + [250640] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8257), 1, - anon_sym_typeof, - ACTIONS(8259), 1, - sym__constant_segment, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8263), 1, - sym_identifier_method_call, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(8463), 1, - anon_sym_RPAREN, - STATE(6176), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9587), 1, - sym__splattable_type, - STATE(10226), 1, - sym_named_type, - STATE(10492), 1, - sym__bare_type, - STATE(11141), 1, - sym_type_instance_param_list, + ACTIONS(8469), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8265), 2, - sym_self, - sym_underscore_type, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [251545] = 5, + STATE(6161), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5699), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5694), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [250694] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6177), 1, + STATE(6162), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6176), 8, + ACTIONS(5708), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -549128,8 +552797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6174), 29, - sym__line_break, + ACTIONS(5706), 28, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -549141,7 +552809,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + sym__string_literal_start, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -549155,21 +552823,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [251597] = 6, + [250746] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8465), 1, - anon_sym_of, - STATE(6178), 1, + STATE(6163), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5734), 9, - anon_sym_RBRACK, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -549178,7 +552843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5730), 27, + ACTIONS(6189), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -549190,6 +552856,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -549203,130 +552870,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [251651] = 23, + anon_sym_then, + [250798] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7949), 1, + ACTIONS(6063), 1, anon_sym_DOT_DOT, - ACTIONS(7951), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7955), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7806), 1, anon_sym_PIPE, - ACTIONS(7957), 1, + ACTIONS(7808), 1, anon_sym_CARET, - ACTIONS(7961), 1, + ACTIONS(7812), 1, anon_sym_EQ_EQ, - ACTIONS(7967), 1, + ACTIONS(7818), 1, anon_sym_AMP_STAR, - ACTIONS(7971), 1, - anon_sym_QMARK, - ACTIONS(7973), 1, + ACTIONS(7824), 1, anon_sym_AMP_AMP, - ACTIONS(7975), 1, + ACTIONS(7826), 1, anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(7836), 1, sym_binary_ampersand, - STATE(6179), 1, + STATE(6164), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, + ACTIONS(7810), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7965), 2, + ACTIONS(7816), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, + ACTIONS(7820), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7953), 3, + ACTIONS(7804), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6010), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(7963), 4, + ACTIONS(7814), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + ACTIONS(7832), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, + ACTIONS(7834), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [251739] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6180), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6180), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6178), 29, + ACTIONS(6061), 6, sym__line_break, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_then, - [251791] = 5, + [250882] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6181), 1, + STATE(6165), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6208), 8, + ACTIONS(4638), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -549335,9 +552953,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6206), 29, - sym__line_break, + anon_sym_EQ, + ACTIONS(4640), 28, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -549348,9 +552967,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, @@ -549364,84 +552983,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [251843] = 23, + [250934] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7122), 1, + ACTIONS(7143), 1, sym__start_of_index_operator, - ACTIONS(7949), 1, + ACTIONS(8040), 1, anon_sym_DOT_DOT, - ACTIONS(7951), 1, + ACTIONS(8042), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7955), 1, + ACTIONS(8046), 1, anon_sym_PIPE, - ACTIONS(7957), 1, + ACTIONS(8048), 1, anon_sym_CARET, - ACTIONS(7961), 1, + ACTIONS(8052), 1, anon_sym_EQ_EQ, - ACTIONS(7967), 1, + ACTIONS(8058), 1, anon_sym_AMP_STAR, - ACTIONS(7971), 1, + ACTIONS(8062), 1, anon_sym_QMARK, - ACTIONS(7973), 1, + ACTIONS(8064), 1, anon_sym_AMP_AMP, - ACTIONS(7975), 1, + ACTIONS(8066), 1, anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, + ACTIONS(8072), 1, sym_binary_ampersand, - STATE(6182), 1, + STATE(6166), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, + ACTIONS(8050), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7965), 2, + ACTIONS(8056), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, + ACTIONS(8060), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7953), 3, + ACTIONS(8044), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6030), 4, + ACTIONS(5779), 4, sym__start_of_brace_block, anon_sym_COMMA, anon_sym_COLON2, anon_sym_do, - ACTIONS(7963), 4, + ACTIONS(8054), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, + ACTIONS(8070), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [251931] = 6, + [251022] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7509), 1, - anon_sym_LPAREN2, - STATE(6183), 1, + STATE(6167), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 9, - anon_sym_RBRACK, + ACTIONS(5777), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -549450,8 +553065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 27, + ACTIONS(5775), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -549475,85 +553092,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [251985] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7985), 1, - anon_sym_DOT_DOT, - ACTIONS(7987), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7991), 1, - anon_sym_PIPE, - ACTIONS(7993), 1, - anon_sym_CARET, - ACTIONS(7997), 1, - anon_sym_EQ_EQ, - ACTIONS(8003), 1, - anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8009), 1, - anon_sym_QMARK, - ACTIONS(8011), 1, anon_sym_AMP_AMP, - ACTIONS(8013), 1, anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, - sym__start_of_index_operator, - ACTIONS(8021), 1, - sym_binary_ampersand, - STATE(6184), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7995), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8001), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7989), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6230), 4, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_COMMA, anon_sym_do, - ACTIONS(7999), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8017), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8019), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [252073] = 6, + [251074] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8467), 1, - anon_sym_EQ, - STATE(6185), 1, + STATE(6168), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -549562,7 +553112,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 28, + ACTIONS(6189), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -549574,9 +553125,8 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -549591,15 +553141,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [252127] = 5, + anon_sym_then, + [251126] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6186), 1, + STATE(6169), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5770), 8, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -549608,7 +553159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5768), 29, + ACTIONS(6189), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -549638,83 +553189,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [252179] = 26, + [251178] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(8209), 1, + ACTIONS(8286), 1, anon_sym_EQ_GT, - ACTIONS(8211), 1, + ACTIONS(8288), 1, anon_sym_DOT_DOT, - ACTIONS(8213), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, + ACTIONS(8294), 1, anon_sym_PIPE, - ACTIONS(8219), 1, + ACTIONS(8296), 1, anon_sym_CARET, - ACTIONS(8223), 1, + ACTIONS(8300), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(8306), 1, anon_sym_AMP_STAR, - ACTIONS(8233), 1, + ACTIONS(8310), 1, anon_sym_QMARK, - ACTIONS(8235), 1, + ACTIONS(8312), 1, anon_sym_AMP_AMP, - ACTIONS(8237), 1, + ACTIONS(8314), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(8322), 1, sym_binary_ampersand, - ACTIONS(8469), 1, + ACTIONS(8472), 1, anon_sym_RBRACE, - ACTIONS(8471), 1, + ACTIONS(8474), 1, anon_sym_COMMA, - STATE(6187), 1, + STATE(6170), 1, sym_heredoc_body, - STATE(10105), 1, + STATE(9836), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, + ACTIONS(8304), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(8308), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, + ACTIONS(8292), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(8302), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(8320), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [252273] = 5, + [251272] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6188), 1, + STATE(6171), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5782), 8, + ACTIONS(5881), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -549723,9 +553274,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5780), 29, - sym__line_break, + ACTIONS(5879), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -549736,7 +553288,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -549752,108 +553303,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [252325] = 23, + anon_sym_do, + [251324] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7949), 1, - anon_sym_DOT_DOT, - ACTIONS(7951), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7955), 1, - anon_sym_PIPE, - ACTIONS(7957), 1, - anon_sym_CARET, - ACTIONS(7961), 1, - anon_sym_EQ_EQ, - ACTIONS(7967), 1, - anon_sym_AMP_STAR, - ACTIONS(7971), 1, - anon_sym_QMARK, - ACTIONS(7973), 1, - anon_sym_AMP_AMP, - ACTIONS(7975), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, - sym_binary_ampersand, - STATE(6189), 1, + STATE(6172), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7965), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7953), 3, + ACTIONS(6023), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6032), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6021), 29, sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_COLON2, - anon_sym_do, - ACTIONS(7963), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [252413] = 10, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [251376] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7967), 1, - anon_sym_AMP_STAR, - STATE(6190), 1, + STATE(6173), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7979), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 22, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6035), 29, sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -549865,27 +553393,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [252475] = 8, + [251428] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7122), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - STATE(6191), 1, + STATE(6174), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(6001), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -549893,17 +553418,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 26, - sym__start_of_brace_block, + ACTIONS(5999), 28, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -549915,27 +553442,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - [252533] = 8, + anon_sym_then, + [251484] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - STATE(6192), 1, + ACTIONS(8476), 1, + anon_sym_of, + STATE(6175), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(5739), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -549943,13 +553466,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 26, - sym__start_of_brace_block, + anon_sym_DOT, + ACTIONS(5735), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -549965,20 +553490,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - [252591] = 5, + [251538] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6193), 1, + STATE(6176), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -549987,7 +553512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 29, + ACTIONS(5937), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -550017,274 +553542,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [252643] = 12, + [251590] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7967), 1, - anon_sym_AMP_STAR, - STATE(6194), 1, + STATE(6177), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7977), 4, + ACTIONS(5805), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5803), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6064), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6062), 16, - sym__start_of_brace_block, - sym_binary_ampersand, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - [252709] = 21, + anon_sym_then, + [251642] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6068), 1, - anon_sym_DOT_DOT, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7955), 1, - anon_sym_PIPE, - ACTIONS(7957), 1, - anon_sym_CARET, - ACTIONS(7961), 1, - anon_sym_EQ_EQ, - ACTIONS(7967), 1, - anon_sym_AMP_STAR, - ACTIONS(7973), 1, - anon_sym_AMP_AMP, - ACTIONS(7975), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, - sym_binary_ampersand, - STATE(6195), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_typeof, + ACTIONS(8266), 1, + sym__constant_segment, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8478), 1, + anon_sym_RPAREN, + STATE(6178), 1, sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(10902), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7965), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7953), 3, + ACTIONS(8272), 2, + sym_self, + sym_underscore_type, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [251738] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6179), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5553), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7963), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5551), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6066), 6, - sym__start_of_brace_block, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_COLON2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_do, - [252793] = 17, + [251790] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7122), 1, + ACTIONS(7143), 1, sym__start_of_index_operator, - ACTIONS(7955), 1, + ACTIONS(8040), 1, + anon_sym_DOT_DOT, + ACTIONS(8042), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8046), 1, anon_sym_PIPE, - ACTIONS(7957), 1, + ACTIONS(8048), 1, anon_sym_CARET, - ACTIONS(7961), 1, + ACTIONS(8052), 1, anon_sym_EQ_EQ, - ACTIONS(7967), 1, + ACTIONS(8058), 1, anon_sym_AMP_STAR, - ACTIONS(7981), 1, + ACTIONS(8062), 1, + anon_sym_QMARK, + ACTIONS(8064), 1, + anon_sym_AMP_AMP, + ACTIONS(8066), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8072), 1, sym_binary_ampersand, - STATE(6196), 1, + STATE(6180), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, + ACTIONS(8050), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7969), 2, + ACTIONS(8056), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8060), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, - anon_sym_DOT_DOT, + ACTIONS(8044), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7963), 4, + ACTIONS(5825), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_COLON2, + anon_sym_do, + ACTIONS(8054), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + ACTIONS(8068), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, + ACTIONS(8070), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6070), 10, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - [252869] = 13, + [251878] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7967), 1, - anon_sym_AMP_STAR, - ACTIONS(7981), 1, - sym_binary_ampersand, - STATE(6197), 1, + STATE(6181), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7977), 4, + ACTIONS(6055), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6053), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6082), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6080), 15, - sym__start_of_brace_block, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [252937] = 11, + [251930] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7967), 1, - anon_sym_AMP_STAR, - STATE(6198), 1, + STATE(6182), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7977), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7979), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6090), 6, + ACTIONS(6462), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6088), 18, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6460), 29, sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -550296,77 +553859,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [253001] = 15, + [251982] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7955), 1, - anon_sym_PIPE, - ACTIONS(7957), 1, - anon_sym_CARET, - ACTIONS(7967), 1, - anon_sym_AMP_STAR, - ACTIONS(7981), 1, - sym_binary_ampersand, - STATE(6199), 1, + STATE(6183), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7977), 4, + ACTIONS(6071), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6069), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6094), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6092), 14, - sym__start_of_brace_block, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [253073] = 5, + [252034] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6200), 1, + STATE(6184), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5829), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -550375,7 +553928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 29, + ACTIONS(5827), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -550405,15 +553958,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [253125] = 5, + [252086] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6201), 1, + STATE(6185), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5850), 8, + ACTIONS(6160), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -550422,9 +553975,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5848), 29, - sym__line_break, + ACTIONS(6158), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -550435,7 +553989,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -550451,16 +554004,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [253177] = 5, + anon_sym_do, + [252138] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6202), 1, + STATE(6186), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5854), 8, + ACTIONS(5821), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -550469,7 +554022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5852), 29, + ACTIONS(5819), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -550499,15 +554052,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [253229] = 5, + [252190] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6203), 1, + STATE(6187), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(5931), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -550516,9 +554069,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5872), 29, - sym__line_break, + ACTIONS(5929), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -550529,7 +554083,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -550545,232 +554098,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [253281] = 19, + anon_sym_do, + [252242] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, - anon_sym_DOT_DOT, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7955), 1, - anon_sym_PIPE, - ACTIONS(7957), 1, - anon_sym_CARET, - ACTIONS(7961), 1, - anon_sym_EQ_EQ, - ACTIONS(7967), 1, - anon_sym_AMP_STAR, - ACTIONS(7981), 1, - sym_binary_ampersand, - STATE(6204), 1, + STATE(6188), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7959), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7965), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7953), 3, + ACTIONS(5935), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7963), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7977), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5933), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7979), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 8, - sym__start_of_brace_block, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - anon_sym_do, - [253361] = 20, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6118), 1, - anon_sym_DOT_DOT, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7955), 1, - anon_sym_PIPE, - ACTIONS(7957), 1, anon_sym_CARET, - ACTIONS(7961), 1, - anon_sym_EQ_EQ, - ACTIONS(7967), 1, - anon_sym_AMP_STAR, - ACTIONS(7973), 1, - anon_sym_AMP_AMP, - ACTIONS(7981), 1, - sym_binary_ampersand, - STATE(6205), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7959), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7965), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7953), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7963), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7977), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7979), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6116), 7, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, anon_sym_do, - [253443] = 23, + [252294] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7985), 1, + ACTIONS(5631), 1, + anon_sym_RBRACK_QMARK, + ACTIONS(5635), 1, + anon_sym_RBRACK, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(8342), 1, anon_sym_DOT_DOT, - ACTIONS(7987), 1, + ACTIONS(8344), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7991), 1, + ACTIONS(8348), 1, anon_sym_PIPE, - ACTIONS(7993), 1, + ACTIONS(8350), 1, anon_sym_CARET, - ACTIONS(7997), 1, + ACTIONS(8354), 1, anon_sym_EQ_EQ, - ACTIONS(8003), 1, + ACTIONS(8360), 1, anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8009), 1, + ACTIONS(8364), 1, anon_sym_QMARK, - ACTIONS(8011), 1, + ACTIONS(8368), 1, anon_sym_AMP_AMP, - ACTIONS(8013), 1, + ACTIONS(8370), 1, anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, + ACTIONS(8372), 1, sym__start_of_index_operator, - ACTIONS(8021), 1, + ACTIONS(8378), 1, sym_binary_ampersand, - STATE(6206), 1, + ACTIONS(8422), 1, + anon_sym_COMMA, + STATE(5909), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(6189), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, + ACTIONS(8352), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8001), 2, + ACTIONS(8358), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7989), 3, + ACTIONS(8346), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6256), 4, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_do, - ACTIONS(7999), 4, + ACTIONS(8356), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8017), 4, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8019), 4, + ACTIONS(8376), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [253531] = 10, + [252388] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8003), 1, - anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8015), 1, - sym__start_of_index_operator, - STATE(6207), 1, + STATE(6190), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8005), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8019), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 22, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5785), 29, sym__start_of_brace_block, + sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -550782,19 +554256,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [253593] = 5, + [252440] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6208), 1, + STATE(6191), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5887), 8, + ACTIONS(5939), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -550803,9 +554278,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5885), 29, - sym__line_break, + ACTIONS(5937), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -550816,7 +554292,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -550832,16 +554307,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [253645] = 5, + anon_sym_do, + [252492] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6209), 1, + STATE(6192), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6296), 8, + ACTIONS(6171), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -550850,9 +554325,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6294), 29, - sym__line_break, + ACTIONS(6169), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -550863,7 +554339,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -550879,16 +554354,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [253697] = 5, + anon_sym_do, + [252544] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6210), 1, + STATE(6193), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5891), 8, + ACTIONS(6187), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -550897,9 +554372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5889), 29, - sym__line_break, + ACTIONS(6185), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -550910,7 +554386,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -550926,20 +554401,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [253749] = 7, + anon_sym_do, + [252596] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - STATE(6211), 1, + STATE(6194), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5895), 7, + ACTIONS(6211), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -550947,8 +554418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5893), 28, - sym__line_break, + anon_sym_DOT, + ACTIONS(6209), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -550959,7 +554433,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -550975,23 +554448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [253805] = 8, + anon_sym_do, + [252648] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8015), 1, - sym__start_of_index_operator, - STATE(6212), 1, + STATE(6195), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8005), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -550999,14 +554465,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 26, + anon_sym_DOT, + ACTIONS(6357), 29, sym__start_of_brace_block, + sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -551022,26 +554491,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [253863] = 8, + [252700] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8015), 1, - sym__start_of_index_operator, - STATE(6213), 1, + STATE(6196), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8005), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -551049,18 +554512,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 26, - sym__start_of_brace_block, - sym__end_of_with_expression, + anon_sym_DOT, + ACTIONS(5785), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -551072,73 +554538,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [253921] = 12, + anon_sym_then, + [252752] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8003), 1, - anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8015), 1, - sym__start_of_index_operator, - STATE(6214), 1, + STATE(6197), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8005), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8017), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8019), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6064), 6, + ACTIONS(5833), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6062), 16, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5831), 29, sym__start_of_brace_block, + sym__start_of_index_operator, sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [253987] = 5, + [252804] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6215), 1, + STATE(6198), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5935), 8, + ACTIONS(5841), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -551147,9 +554607,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5933), 29, - sym__line_break, + ACTIONS(5839), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -551160,7 +554621,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -551176,16 +554636,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [254039] = 5, + anon_sym_do, + [252856] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6216), 1, + STATE(6199), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5945), 8, + ACTIONS(5889), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -551194,9 +554654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5943), 29, - sym__line_break, + ACTIONS(5887), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -551207,7 +554668,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -551223,16 +554683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [254091] = 5, + anon_sym_do, + [252908] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6217), 1, + ACTIONS(8480), 1, + sym_regex_modifier, + STATE(6200), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(5743), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -551241,8 +554704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5955), 29, - sym__line_break, + ACTIONS(5741), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -551254,7 +554716,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -551268,18 +554729,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [254143] = 5, + [252962] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6218), 1, + STATE(6201), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(5913), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -551288,9 +554749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 29, - sym__line_break, + ACTIONS(5911), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -551301,7 +554763,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -551317,16 +554778,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [254195] = 5, + anon_sym_do, + [253014] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6219), 1, + STATE(6202), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5976), 8, + ACTIONS(5951), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -551335,9 +554796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5974), 29, - sym__line_break, + ACTIONS(5949), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -551348,7 +554810,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -551364,16 +554825,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [254247] = 5, + anon_sym_do, + [253066] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6220), 1, + STATE(6203), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5980), 8, + ACTIONS(5853), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -551382,9 +554843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5978), 29, - sym__line_break, + ACTIONS(5851), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -551395,7 +554857,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -551411,16 +554872,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [254299] = 5, + anon_sym_do, + [253118] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6221), 1, + STATE(6204), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5984), 8, + ACTIONS(6303), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -551429,9 +554890,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5982), 29, - sym__line_break, + ACTIONS(6301), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -551442,7 +554904,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -551458,16 +554919,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [254351] = 5, + anon_sym_do, + [253170] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6222), 1, + STATE(6205), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5996), 8, + ACTIONS(5809), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -551476,7 +554937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5994), 29, + ACTIONS(5807), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -551506,19 +554967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [254403] = 7, + [253222] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - STATE(6223), 1, + STATE(6206), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6000), 7, + ACTIONS(5959), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -551526,8 +554983,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5998), 28, - sym__line_break, + anon_sym_DOT, + ACTIONS(5957), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -551538,7 +554998,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -551554,83 +555013,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [254459] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6068), 1, - anon_sym_DOT_DOT, - ACTIONS(7991), 1, - anon_sym_PIPE, - ACTIONS(7993), 1, - anon_sym_CARET, - ACTIONS(7997), 1, - anon_sym_EQ_EQ, - ACTIONS(8003), 1, - anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8011), 1, - anon_sym_AMP_AMP, - ACTIONS(8013), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8015), 1, - sym__start_of_index_operator, - ACTIONS(8021), 1, - sym_binary_ampersand, - STATE(6224), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7995), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8001), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8005), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7989), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7999), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8017), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8019), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6066), 6, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, anon_sym_do, - [254543] = 7, + [253274] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - STATE(6225), 1, + STATE(6207), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6004), 7, + ACTIONS(5947), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -551638,8 +555030,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6002), 28, - sym__line_break, + anon_sym_DOT, + ACTIONS(5945), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -551650,7 +555045,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -551666,16 +555060,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [254599] = 5, + anon_sym_do, + [253326] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6226), 1, + STATE(6208), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6324), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -551684,7 +555078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6322), 29, + ACTIONS(135), 29, sym__line_break, sym__start_of_index_operator, sym_binary_plus, @@ -551714,121 +555108,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_then, - [254651] = 17, + [253378] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7991), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8286), 1, + anon_sym_EQ_GT, + ACTIONS(8288), 1, + anon_sym_DOT_DOT, + ACTIONS(8290), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8294), 1, anon_sym_PIPE, - ACTIONS(7993), 1, + ACTIONS(8296), 1, anon_sym_CARET, - ACTIONS(7997), 1, + ACTIONS(8300), 1, anon_sym_EQ_EQ, - ACTIONS(8003), 1, + ACTIONS(8306), 1, anon_sym_AMP_STAR, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8015), 1, + ACTIONS(8310), 1, + anon_sym_QMARK, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8314), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(8021), 1, + ACTIONS(8322), 1, sym_binary_ampersand, - STATE(6227), 1, + ACTIONS(8482), 1, + anon_sym_RBRACE, + ACTIONS(8484), 1, + anon_sym_COMMA, + STATE(6209), 1, sym_heredoc_body, + STATE(10014), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7995), 2, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8005), 2, + ACTIONS(8304), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, - anon_sym_DOT_DOT, + ACTIONS(8292), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7999), 4, + ACTIONS(8302), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8017), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8019), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6070), 10, - sym__start_of_brace_block, - sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_do, - [254727] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6228), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6348), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6346), 29, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8320), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_then, - [254779] = 5, + [253472] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6229), 1, + STATE(6210), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6012), 8, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -551837,7 +555193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6010), 29, + ACTIONS(5785), 29, sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, @@ -551867,126 +555223,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_do, - [254831] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6242), 1, - anon_sym_DOT_DOT, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - sym__start_of_index_operator, - ACTIONS(7955), 1, - anon_sym_PIPE, - ACTIONS(7957), 1, - anon_sym_CARET, - ACTIONS(7961), 1, - anon_sym_EQ_EQ, - ACTIONS(7967), 1, - anon_sym_AMP_STAR, - ACTIONS(7973), 1, - anon_sym_AMP_AMP, - ACTIONS(7975), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7981), 1, - sym_binary_ampersand, - STATE(6230), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7959), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7965), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7969), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7953), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7963), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7977), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7979), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6240), 6, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_COLON2, - anon_sym_do, - [254915] = 27, + [253524] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8257), 1, + ACTIONS(8264), 1, anon_sym_typeof, - ACTIONS(8259), 1, + ACTIONS(8266), 1, sym__constant_segment, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8263), 1, + ACTIONS(8270), 1, sym_identifier_method_call, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(8473), 1, + ACTIONS(8486), 1, anon_sym_RPAREN, - STATE(6231), 1, + STATE(6211), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9587), 1, + STATE(9669), 1, sym__splattable_type, - STATE(10226), 1, + STATE(10318), 1, sym_named_type, - STATE(10492), 1, + STATE(10535), 1, sym__bare_type, - STATE(10829), 1, + STATE(11287), 1, sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8265), 2, + ACTIONS(8272), 2, sym_self, sym_underscore_type, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -551999,16 +555292,15 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [255011] = 5, + [253620] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6232), 1, + STATE(6212), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6134), 9, - anon_sym_RBRACK, + ACTIONS(5809), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -552017,8 +555309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6132), 27, + ACTIONS(5807), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -552042,86 +555336,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [255062] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5585), 1, - anon_sym_COLON2, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(8475), 1, - anon_sym_COMMA, - ACTIONS(8477), 1, - anon_sym_DOT_DOT, - ACTIONS(8479), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8483), 1, - anon_sym_PIPE, - ACTIONS(8485), 1, - anon_sym_CARET, - ACTIONS(8489), 1, - anon_sym_EQ_EQ, - ACTIONS(8495), 1, - anon_sym_AMP_STAR, - ACTIONS(8499), 1, - anon_sym_QMARK, - ACTIONS(8501), 1, anon_sym_AMP_AMP, - ACTIONS(8503), 1, anon_sym_PIPE_PIPE, - ACTIONS(8509), 1, - sym_binary_ampersand, - STATE(6233), 1, - sym_heredoc_body, - STATE(6622), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8487), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8493), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8491), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8505), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8507), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [255153] = 6, + anon_sym_do, + [253672] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8511), 1, - sym_regex_modifier, - STATE(6234), 1, + STATE(6213), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5679), 8, + ACTIONS(6009), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -552130,7 +555356,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5677), 27, + ACTIONS(6007), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -552158,16 +555385,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [255206] = 5, + anon_sym_do, + [253724] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6235), 1, + STATE(6214), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 9, - anon_sym_RBRACK, + ACTIONS(6019), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -552176,8 +555403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 27, + ACTIONS(6017), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -552201,19 +555430,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [255257] = 5, + anon_sym_do, + [253776] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6236), 1, + STATE(6215), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 9, - anon_sym_RBRACK, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -552222,8 +555450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 27, + ACTIONS(6041), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -552247,216 +555477,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [255308] = 25, + anon_sym_do, + [253828] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, - anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8513), 1, - anon_sym_RPAREN, - ACTIONS(8515), 1, - anon_sym_COMMA, - STATE(6237), 1, + STATE(6216), 1, sym_heredoc_body, - STATE(9764), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(6067), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6065), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [255399] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7444), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8517), 1, - anon_sym_RPAREN, - ACTIONS(8519), 1, - anon_sym_COMMA, - STATE(6238), 1, + anon_sym_do, + [253880] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6217), 1, sym_heredoc_body, - STATE(9811), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(6033), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6031), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [255490] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, - anon_sym_QMARK, - ACTIONS(8545), 1, - anon_sym_AMP_AMP, - ACTIONS(8547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(230), 1, - sym__terminator, - STATE(6239), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8551), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [255579] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [253932] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6240), 1, + STATE(6218), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 9, - anon_sym_RBRACK, + ACTIONS(6291), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -552465,8 +555591,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 27, + ACTIONS(6289), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -552490,18 +555618,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [255630] = 5, + anon_sym_do, + [253984] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6241), 1, + ACTIONS(8488), 1, + sym_regex_modifier, + STATE(6219), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 9, + ACTIONS(5749), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -552511,7 +555641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 27, + ACTIONS(5747), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -552539,16 +555669,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [255681] = 5, + [254038] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6242), 1, + STATE(6220), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6212), 9, - anon_sym_RBRACK, + ACTIONS(6079), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -552557,8 +555686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6210), 27, + ACTIONS(6077), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -552582,19 +555713,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [255732] = 5, + anon_sym_do, + [254090] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6243), 1, + STATE(6221), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6216), 9, - anon_sym_RBRACK, + ACTIONS(6090), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -552603,8 +555733,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6214), 27, + ACTIONS(6088), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -552628,19 +555760,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [255783] = 5, + anon_sym_do, + [254142] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6244), 1, + STATE(6222), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 9, - anon_sym_RBRACK, + ACTIONS(5845), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -552649,7 +555780,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 27, + ACTIONS(5843), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -552661,6 +555793,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -552674,84 +555807,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [255834] = 24, + anon_sym_then, + [254194] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(8286), 1, + anon_sym_EQ_GT, + ACTIONS(8288), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8294), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8296), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8300), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8306), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(8310), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(8312), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(8314), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, sym_binary_ampersand, - STATE(223), 1, - sym__terminator, - STATE(6245), 1, + ACTIONS(8490), 1, + anon_sym_RBRACE, + ACTIONS(8492), 1, + anon_sym_COMMA, + STATE(6223), 1, sym_heredoc_body, + STATE(10211), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(8304), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8308), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(8292), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(8302), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8320), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [255923] = 5, + [254288] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6246), 1, + STATE(6224), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6238), 9, - anon_sym_RBRACK, + ACTIONS(5857), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -552760,8 +555895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6236), 27, + ACTIONS(5855), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -552785,19 +555922,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [255974] = 5, + anon_sym_do, + [254340] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6247), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_typeof, + ACTIONS(8266), 1, + sym__constant_segment, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8494), 1, + anon_sym_RPAREN, + STATE(6225), 1, sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(10968), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6254), 9, - anon_sym_RBRACK, + ACTIONS(8272), 2, + sym_self, + sym_underscore_type, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [254436] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6226), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -552806,7 +556011,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6252), 27, + ACTIONS(6345), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -552818,6 +556024,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -552831,19 +556038,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [256025] = 5, + anon_sym_then, + [254488] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6248), 1, + STATE(6227), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6260), 9, - anon_sym_RBRACK, + ACTIONS(6138), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -552852,8 +556058,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6258), 27, + ACTIONS(6136), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -552877,19 +556085,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [256076] = 5, + anon_sym_do, + [254540] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6249), 1, + STATE(6228), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 9, - anon_sym_RBRACK, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -552898,7 +556105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 27, + ACTIONS(5551), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -552910,6 +556118,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -552923,65 +556132,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [256127] = 5, + anon_sym_then, + [254592] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6250), 1, + ACTIONS(8026), 1, + anon_sym_typeof, + ACTIONS(8028), 1, + sym__constant_segment, + ACTIONS(8030), 1, + anon_sym_COLON_COLON, + ACTIONS(8034), 1, + sym__start_of_tuple_type, + ACTIONS(8036), 1, + sym__start_of_named_tuple_type, + ACTIONS(8496), 1, + anon_sym_LPAREN, + ACTIONS(8498), 1, + anon_sym_DASH_GT, + STATE(6229), 1, sym_heredoc_body, + STATE(7870), 1, + sym_constant, + STATE(7944), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6272), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(8032), 2, + sym_self, + sym_underscore_type, + STATE(7900), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4412), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_end, + anon_sym_STAR, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6270), 27, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + anon_sym_forall, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [256178] = 5, + [254664] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6251), 1, + STATE(6230), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6276), 9, - anon_sym_RBRACK, + ACTIONS(6148), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -552990,8 +556209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6274), 27, + ACTIONS(6146), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -553015,65 +556236,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [256229] = 5, + anon_sym_do, + [254716] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6252), 1, + ACTIONS(8026), 1, + anon_sym_typeof, + ACTIONS(8028), 1, + sym__constant_segment, + ACTIONS(8030), 1, + anon_sym_COLON_COLON, + ACTIONS(8034), 1, + sym__start_of_tuple_type, + ACTIONS(8036), 1, + sym__start_of_named_tuple_type, + ACTIONS(8496), 1, + anon_sym_LPAREN, + ACTIONS(8498), 1, + anon_sym_DASH_GT, + STATE(6231), 1, sym_heredoc_body, + STATE(7870), 1, + sym_constant, + STATE(7914), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6280), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(8032), 2, + sym_self, + sym_underscore_type, + STATE(7900), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4390), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_end, + anon_sym_STAR, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6278), 27, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + anon_sym_forall, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [256280] = 5, + [254788] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6253), 1, + STATE(6232), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6284), 9, - anon_sym_RBRACK, + ACTIONS(6175), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -553082,8 +556313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6282), 27, + ACTIONS(6173), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -553107,19 +556340,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [256331] = 5, + anon_sym_do, + [254840] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6254), 1, + STATE(6233), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6288), 9, - anon_sym_RBRACK, + ACTIONS(6299), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -553128,8 +556360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6286), 27, + ACTIONS(6297), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -553153,85 +556387,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [256382] = 24, + anon_sym_do, + [254892] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, - anon_sym_QMARK, - ACTIONS(8545), 1, - anon_sym_AMP_AMP, - ACTIONS(8547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(275), 1, - sym__terminator, - STATE(6255), 1, + ACTIONS(8026), 1, + anon_sym_typeof, + ACTIONS(8028), 1, + sym__constant_segment, + ACTIONS(8030), 1, + anon_sym_COLON_COLON, + ACTIONS(8034), 1, + sym__start_of_tuple_type, + ACTIONS(8036), 1, + sym__start_of_named_tuple_type, + ACTIONS(8496), 1, + anon_sym_LPAREN, + ACTIONS(8498), 1, + anon_sym_DASH_GT, + STATE(6234), 1, sym_heredoc_body, + STATE(7870), 1, + sym_constant, + STATE(7915), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, + ACTIONS(8032), 2, + sym_self, + sym_underscore_type, + STATE(7900), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + ACTIONS(4362), 14, sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8551), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [256471] = 6, + anon_sym_LBRACK, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + [254964] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8555), 1, + ACTIONS(8500), 1, anon_sym_of, - STATE(6256), 1, + STATE(6235), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5734), 8, + ACTIONS(5757), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -553240,8 +556467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5730), 27, - sym__line_break, + ACTIONS(5753), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -553253,7 +556479,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -553266,18 +556492,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [256524] = 5, + [255018] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6257), 1, + STATE(6236), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 9, - anon_sym_RBRACK, + ACTIONS(6219), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -553286,7 +556512,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 27, + ACTIONS(6217), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -553298,6 +556525,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -553311,19 +556539,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [256575] = 5, + anon_sym_then, + [255070] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6258), 1, + STATE(6237), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 9, - anon_sym_RBRACK, + ACTIONS(5813), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -553332,7 +556559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 27, + ACTIONS(5811), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -553344,6 +556572,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -553357,111 +556586,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [256626] = 5, + anon_sym_then, + [255122] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6259), 1, + ACTIONS(8120), 1, + anon_sym_DOT_DOT, + ACTIONS(8122), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8126), 1, + anon_sym_PIPE, + ACTIONS(8128), 1, + anon_sym_CARET, + ACTIONS(8132), 1, + anon_sym_EQ_EQ, + ACTIONS(8138), 1, + anon_sym_AMP_STAR, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8144), 1, + anon_sym_QMARK, + ACTIONS(8146), 1, + anon_sym_AMP_AMP, + ACTIONS(8148), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8150), 1, + sym__start_of_index_operator, + ACTIONS(8156), 1, + sym_binary_ampersand, + STATE(6238), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6328), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(8130), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8136), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8124), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6326), 27, - sym__start_of_index_operator, + ACTIONS(5923), 4, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(8134), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8154), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [255210] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8120), 1, + anon_sym_DOT_DOT, + ACTIONS(8122), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8126), 1, + anon_sym_PIPE, + ACTIONS(8128), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(8132), 1, + anon_sym_EQ_EQ, + ACTIONS(8138), 1, + anon_sym_AMP_STAR, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8144), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(8146), 1, anon_sym_AMP_AMP, + ACTIONS(8148), 1, anon_sym_PIPE_PIPE, - [256677] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6260), 1, + ACTIONS(8150), 1, + sym__start_of_index_operator, + ACTIONS(8156), 1, + sym_binary_ampersand, + STATE(6239), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6332), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(8130), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8136), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8124), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6330), 27, - sym__start_of_index_operator, + ACTIONS(5773), 4, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(8134), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8154), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [255298] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8286), 1, + anon_sym_EQ_GT, + ACTIONS(8288), 1, + anon_sym_DOT_DOT, + ACTIONS(8290), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8310), 1, + anon_sym_QMARK, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8314), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, + ACTIONS(8502), 1, + anon_sym_RBRACE, + ACTIONS(8504), 1, + anon_sym_COMMA, + STATE(6240), 1, + sym_heredoc_body, + STATE(9834), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8304), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8292), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [256728] = 5, + ACTIONS(8318), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8320), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [255392] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6261), 1, + STATE(6241), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6336), 9, - anon_sym_RBRACK, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -553470,7 +556804,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6334), 27, + ACTIONS(5903), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -553482,6 +556817,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -553495,19 +556831,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [256779] = 5, + anon_sym_then, + [255444] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6262), 1, + STATE(6242), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6340), 9, - anon_sym_RBRACK, + ACTIONS(6375), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -553516,8 +556851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6338), 27, + ACTIONS(6373), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -553541,66 +556878,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [256830] = 6, + anon_sym_do, + [255496] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8557), 1, - anon_sym_of, - STATE(6263), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5702), 8, + ACTIONS(8120), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(8122), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8126), 1, anon_sym_PIPE, + ACTIONS(8128), 1, + anon_sym_CARET, + ACTIONS(8132), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(8138), 1, anon_sym_AMP_STAR, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(5698), 27, - sym__line_break, + ACTIONS(8144), 1, + anon_sym_QMARK, + ACTIONS(8146), 1, + anon_sym_AMP_AMP, + ACTIONS(8148), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8150), 1, sym__start_of_index_operator, + ACTIONS(8156), 1, + sym_binary_ampersand, + STATE(6243), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8130), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8136), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8124), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6092), 4, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(8134), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8152), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8154), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + [255584] = 27, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_typeof, + ACTIONS(8266), 1, + sym__constant_segment, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8506), 1, + anon_sym_RPAREN, + STATE(6244), 1, + sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(11989), 1, + sym_type_instance_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8272), 2, + sym_self, + sym_underscore_type, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [255680] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8286), 1, + anon_sym_EQ_GT, + ACTIONS(8288), 1, + anon_sym_DOT_DOT, + ACTIONS(8290), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8310), 1, + anon_sym_QMARK, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8314), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, + ACTIONS(8508), 1, + anon_sym_RBRACE, + ACTIONS(8510), 1, + anon_sym_COMMA, + STATE(6245), 1, + sym_heredoc_body, + STATE(10203), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8304), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8292), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(8318), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8320), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [255774] = 26, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8286), 1, + anon_sym_EQ_GT, + ACTIONS(8288), 1, + anon_sym_DOT_DOT, + ACTIONS(8290), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, + anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8310), 1, anon_sym_QMARK, + ACTIONS(8312), 1, anon_sym_AMP_AMP, + ACTIONS(8314), 1, anon_sym_PIPE_PIPE, - [256883] = 5, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, + ACTIONS(8512), 1, + anon_sym_RBRACE, + ACTIONS(8514), 1, + anon_sym_COMMA, + STATE(6246), 1, + sym_heredoc_body, + STATE(9843), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8298), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8304), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8292), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8318), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8320), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [255868] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6264), 1, + STATE(6247), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 9, - anon_sym_RBRACK, + ACTIONS(5813), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -553609,8 +557168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 27, + ACTIONS(5811), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -553634,19 +557195,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [256934] = 5, + anon_sym_do, + [255920] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6265), 1, + STATE(6248), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 9, - anon_sym_RBRACK, + ACTIONS(6144), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -553655,7 +557215,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 27, + ACTIONS(6142), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -553667,6 +557228,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -553680,19 +557242,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [256985] = 5, + anon_sym_then, + [255972] = 27, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6266), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8264), 1, + anon_sym_typeof, + ACTIONS(8266), 1, + sym__constant_segment, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8270), 1, + sym_identifier_method_call, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(8516), 1, + anon_sym_RPAREN, + STATE(6249), 1, sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9669), 1, + sym__splattable_type, + STATE(10318), 1, + sym_named_type, + STATE(10535), 1, + sym__bare_type, + STATE(12048), 1, + sym_type_instance_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 9, - anon_sym_RBRACK, + ACTIONS(8272), 2, + sym_self, + sym_underscore_type, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [256068] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + STATE(6250), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6152), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -553700,9 +557334,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6354), 27, - sym__start_of_index_operator, + ACTIONS(6150), 28, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -553713,6 +557346,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -553726,19 +557360,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257036] = 5, + anon_sym_then, + [256124] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6267), 1, + STATE(6251), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 9, - anon_sym_RBRACK, + ACTIONS(6446), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -553747,8 +557380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 27, + ACTIONS(6444), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -553772,19 +557407,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257087] = 5, + anon_sym_do, + [256176] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6268), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + STATE(6252), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 9, - anon_sym_RBRACK, + ACTIONS(6156), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -553792,9 +557430,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6360), 27, - sym__start_of_index_operator, + ACTIONS(6154), 28, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -553805,6 +557442,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -553818,149 +557456,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257138] = 24, + anon_sym_then, + [256232] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8023), 1, - anon_sym_RBRACK, - ACTIONS(8341), 1, - anon_sym_DOT_DOT, - ACTIONS(8343), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8347), 1, - anon_sym_PIPE, - ACTIONS(8349), 1, - anon_sym_CARET, - ACTIONS(8353), 1, - anon_sym_EQ_EQ, - ACTIONS(8359), 1, - anon_sym_AMP_STAR, - ACTIONS(8363), 1, - anon_sym_QMARK, - ACTIONS(8367), 1, - anon_sym_AMP_AMP, - ACTIONS(8369), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, - sym_binary_ampersand, - STATE(6269), 1, + STATE(6253), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6358), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8351), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8357), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8345), 3, + ACTIONS(5699), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8355), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8373), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5694), 29, + sym__start_of_brace_block, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [257227] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8027), 1, - anon_sym_RBRACK, - ACTIONS(8341), 1, - anon_sym_DOT_DOT, - ACTIONS(8343), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8347), 1, - anon_sym_PIPE, - ACTIONS(8349), 1, anon_sym_CARET, - ACTIONS(8353), 1, - anon_sym_EQ_EQ, - ACTIONS(8359), 1, - anon_sym_AMP_STAR, - ACTIONS(8363), 1, - anon_sym_QMARK, - ACTIONS(8367), 1, - anon_sym_AMP_AMP, - ACTIONS(8369), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, - sym_binary_ampersand, - STATE(6270), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6364), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8351), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8357), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8345), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8355), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8373), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8375), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [257316] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_do, + [256284] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6271), 1, + STATE(6254), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6372), 9, - anon_sym_RBRACK, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -553969,7 +557523,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6370), 27, + ACTIONS(5747), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -553981,6 +557536,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -553994,19 +557550,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257367] = 5, + anon_sym_then, + [256336] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6272), 1, + STATE(6255), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6376), 9, - anon_sym_RBRACK, + ACTIONS(6367), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -554015,7 +557570,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6374), 27, + ACTIONS(6365), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -554027,6 +557583,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -554040,18 +557597,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257418] = 5, + anon_sym_then, + [256388] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6273), 1, + STATE(6256), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5654), 8, + ACTIONS(6102), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -554060,7 +557617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5652), 28, + ACTIONS(6092), 29, + sym__start_of_brace_block, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -554085,20 +557643,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257469] = 5, + anon_sym_do, + [256440] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6274), 1, + STATE(6257), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6380), 9, - anon_sym_RBRACK, + ACTIONS(6086), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -554107,8 +557664,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6378), 27, + ACTIONS(6084), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -554132,19 +557691,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257520] = 5, + anon_sym_do, + [256492] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6275), 1, + STATE(6258), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6384), 9, - anon_sym_RBRACK, + ACTIONS(5921), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -554153,7 +557711,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6382), 27, + ACTIONS(5919), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -554165,6 +557724,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -554178,19 +557738,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257571] = 5, + anon_sym_then, + [256544] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6276), 1, + STATE(6259), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6388), 9, - anon_sym_RBRACK, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -554199,7 +557758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6386), 27, + ACTIONS(6369), 29, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -554211,6 +557771,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -554224,19 +557785,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257622] = 5, + anon_sym_then, + [256596] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6277), 1, + STATE(6260), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6392), 9, - anon_sym_RBRACK, + ACTIONS(6051), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -554245,8 +557805,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6390), 27, + ACTIONS(6049), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -554270,19 +557832,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257673] = 5, + anon_sym_do, + [256648] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6278), 1, + STATE(6261), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6396), 9, - anon_sym_RBRACK, + ACTIONS(6458), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -554291,8 +557852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6394), 27, + ACTIONS(6456), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -554316,19 +557879,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257724] = 5, + anon_sym_do, + [256700] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6279), 1, + ACTIONS(8120), 1, + anon_sym_DOT_DOT, + ACTIONS(8122), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8126), 1, + anon_sym_PIPE, + ACTIONS(8128), 1, + anon_sym_CARET, + ACTIONS(8132), 1, + anon_sym_EQ_EQ, + ACTIONS(8138), 1, + anon_sym_AMP_STAR, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8144), 1, + anon_sym_QMARK, + ACTIONS(8146), 1, + anon_sym_AMP_AMP, + ACTIONS(8148), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8150), 1, + sym__start_of_index_operator, + ACTIONS(8156), 1, + sym_binary_ampersand, + STATE(6262), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6410), 9, - anon_sym_RBRACK, + ACTIONS(8130), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8136), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8140), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8124), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6025), 4, + sym__start_of_brace_block, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(8134), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8152), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8154), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [256788] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6263), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5973), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -554337,8 +557964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6408), 27, + ACTIONS(5971), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -554362,19 +557991,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257775] = 5, + anon_sym_do, + [256840] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6280), 1, + STATE(6264), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 9, - anon_sym_RBRACK, + ACTIONS(6279), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -554383,8 +558011,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6415), 27, + ACTIONS(6277), 29, + sym__start_of_brace_block, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -554408,148 +558038,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [257826] = 24, + anon_sym_do, + [256892] = 26, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(8286), 1, + anon_sym_EQ_GT, + ACTIONS(8288), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8294), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8296), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8300), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8306), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(8310), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(8312), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(8314), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, sym_binary_ampersand, - STATE(487), 1, - sym__terminator, - STATE(6281), 1, + ACTIONS(8518), 1, + anon_sym_RBRACE, + ACTIONS(8520), 1, + anon_sym_COMMA, + STATE(6265), 1, sym_heredoc_body, + STATE(10045), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(8304), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8308), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(8292), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(8302), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8320), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [257915] = 24, + [256986] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(8522), 1, + anon_sym_EQ, + STATE(6266), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5763), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(8523), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_DOT, + ACTIONS(5761), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(489), 1, - sym__terminator, - STATE(6282), 1, + [257040] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6267), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(6438), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6436), 29, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [258004] = 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [257092] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6283), 1, + STATE(6268), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6160), 9, + ACTIONS(6148), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -554559,7 +558222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6158), 27, + ACTIONS(6146), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -554587,15 +558250,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [258055] = 5, + [257143] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6284), 1, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(8372), 1, + sym__start_of_index_operator, + STATE(6269), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6172), 9, + ACTIONS(6156), 8, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -554604,9 +558271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6170), 27, - sym__start_of_index_operator, + ACTIONS(6154), 26, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -554633,16 +558298,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [258106] = 5, + [257198] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6285), 1, - sym_heredoc_body, + ACTIONS(8524), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6176), 9, - anon_sym_RBRACK, + STATE(6270), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -554651,8 +558318,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6174), 27, + ACTIONS(5694), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -554663,7 +558331,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -554676,84 +558343,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [258157] = 25, + [257251] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(8559), 1, + ACTIONS(8527), 1, anon_sym_COMMA, - ACTIONS(8561), 1, + ACTIONS(8529), 1, anon_sym_RBRACK, - STATE(6286), 1, + STATE(6271), 1, sym_heredoc_body, - STATE(9916), 1, + STATE(9937), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [258248] = 5, + [257342] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6287), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8531), 1, + anon_sym_RPAREN, + ACTIONS(8533), 1, + anon_sym_COMMA, + STATE(6272), 1, + sym_heredoc_body, + STATE(9939), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [257433] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6273), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6180), 9, + ACTIONS(6164), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -554763,7 +558495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6178), 27, + ACTIONS(6162), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -554791,15 +558523,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [258299] = 5, + [257484] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6288), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8535), 1, + anon_sym_RPAREN, + ACTIONS(8537), 1, + anon_sym_COMMA, + STATE(6274), 1, + sym_heredoc_body, + STATE(10101), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [257575] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6275), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6208), 9, + ACTIONS(6100), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -554809,7 +558607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6206), 27, + ACTIONS(6098), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -554837,368 +558635,451 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [258350] = 25, + [257626] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(8563), 1, + ACTIONS(8539), 1, anon_sym_RPAREN, - ACTIONS(8565), 1, + ACTIONS(8541), 1, anon_sym_COMMA, - STATE(6289), 1, + STATE(6276), 1, sym_heredoc_body, - STATE(9859), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10201), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [258441] = 25, + [257717] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + STATE(6277), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6311), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(6309), 27, sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [257768] = 21, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(8348), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8350), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8354), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8360), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8368), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8370), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8372), 1, + sym__start_of_index_operator, + ACTIONS(8378), 1, sym_binary_ampersand, - ACTIONS(8567), 1, - anon_sym_RPAREN, - ACTIONS(8569), 1, - anon_sym_COMMA, - STATE(6290), 1, + STATE(6278), 1, sym_heredoc_body, - STATE(9867), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(5981), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8352), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8358), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8346), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(5979), 4, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + ACTIONS(8356), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8376), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [258532] = 23, + [257851] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(8211), 1, + ACTIONS(8288), 1, anon_sym_DOT_DOT, - ACTIONS(8213), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, + ACTIONS(8294), 1, anon_sym_PIPE, - ACTIONS(8219), 1, + ACTIONS(8296), 1, anon_sym_CARET, - ACTIONS(8223), 1, + ACTIONS(8300), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(8306), 1, anon_sym_AMP_STAR, - ACTIONS(8233), 1, + ACTIONS(8310), 1, anon_sym_QMARK, - ACTIONS(8235), 1, + ACTIONS(8312), 1, anon_sym_AMP_AMP, - ACTIONS(8237), 1, + ACTIONS(8314), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(8322), 1, sym_binary_ampersand, - STATE(6291), 1, + STATE(6279), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, + ACTIONS(8304), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(8308), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6358), 3, + ACTIONS(5923), 3, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ_GT, - ACTIONS(8215), 3, + ACTIONS(8292), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(8302), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(8320), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [258619] = 23, + [257938] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(8211), 1, + ACTIONS(8288), 1, anon_sym_DOT_DOT, - ACTIONS(8213), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, + ACTIONS(8294), 1, anon_sym_PIPE, - ACTIONS(8219), 1, + ACTIONS(8296), 1, anon_sym_CARET, - ACTIONS(8223), 1, + ACTIONS(8300), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(8306), 1, anon_sym_AMP_STAR, - ACTIONS(8233), 1, + ACTIONS(8310), 1, anon_sym_QMARK, - ACTIONS(8235), 1, + ACTIONS(8312), 1, anon_sym_AMP_AMP, - ACTIONS(8237), 1, + ACTIONS(8314), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(8322), 1, sym_binary_ampersand, - STATE(6292), 1, + STATE(6280), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, + ACTIONS(8304), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(8308), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6364), 3, + ACTIONS(5773), 3, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ_GT, - ACTIONS(8215), 3, + ACTIONS(8292), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(8302), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(8320), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [258706] = 5, + [258025] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6293), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8543), 1, + anon_sym_RPAREN, + ACTIONS(8545), 1, + anon_sym_COMMA, + STATE(6281), 1, sym_heredoc_body, + STATE(10285), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6220), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6218), 27, - sym__start_of_index_operator, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [258116] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(7463), 1, anon_sym_AMP_AMP, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - [258757] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6294), 1, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8547), 1, + anon_sym_RPAREN, + ACTIONS(8549), 1, + anon_sym_COMMA, + STATE(6282), 1, sym_heredoc_body, + STATE(10287), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6228), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6226), 27, - sym__start_of_index_operator, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [258808] = 5, + [258207] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6295), 1, + ACTIONS(8551), 1, + anon_sym_of, + STATE(6283), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6264), 9, - anon_sym_RBRACK, + ACTIONS(5757), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -555207,7 +559088,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6262), 27, + ACTIONS(5753), 27, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -555219,7 +559101,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -555232,65 +559114,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [258859] = 5, + [258260] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6296), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8553), 1, + anon_sym_RPAREN, + ACTIONS(8555), 1, + anon_sym_COMMA, + STATE(6284), 1, sym_heredoc_body, + STATE(10218), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6300), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6298), 27, - sym__start_of_index_operator, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [258910] = 5, + [258351] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6297), 1, + STATE(6285), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6312), 9, - anon_sym_RBRACK, + ACTIONS(5685), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -555299,8 +559199,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6310), 27, + ACTIONS(5683), 28, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -555323,19 +559224,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [258961] = 5, + [258402] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6298), 1, + STATE(6286), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5802), 9, + ACTIONS(6130), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -555345,7 +559246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5800), 27, + ACTIONS(6128), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -555373,81 +559274,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259012] = 24, + [258453] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8341), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8343), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8347), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8349), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8353), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8359), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8363), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8367), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8369), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(8573), 1, + ACTIONS(8557), 1, + anon_sym_COMMA, + ACTIONS(8559), 1, anon_sym_RBRACK, - STATE(6299), 1, + STATE(6287), 1, sym_heredoc_body, + STATE(9950), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8351), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8357), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8571), 2, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [258544] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8561), 1, + anon_sym_RPAREN, + ACTIONS(8563), 1, anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8345), 3, + STATE(6288), 1, + sym_heredoc_body, + STATE(10268), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8355), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8373), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [259101] = 5, + [258635] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6300), 1, + ACTIONS(8565), 1, + anon_sym_of, + STATE(6289), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5826), 9, - anon_sym_RBRACK, + ACTIONS(5714), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -555456,7 +559425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5824), 27, + ACTIONS(5710), 27, + sym__line_break, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -555468,7 +559438,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -555481,64 +559451,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259152] = 5, + [258688] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6301), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8567), 1, + anon_sym_COMMA, + ACTIONS(8569), 1, + anon_sym_RBRACK, + STATE(6290), 1, sym_heredoc_body, + STATE(9954), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5856), 27, - sym__start_of_index_operator, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [258779] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8543), 1, + anon_sym_RPAREN, + ACTIONS(8571), 1, + anon_sym_COMMA, + STATE(6291), 1, + sym_heredoc_body, + STATE(9956), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [258870] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(7463), 1, anon_sym_AMP_AMP, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - [259203] = 5, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8573), 1, + anon_sym_COMMA, + ACTIONS(8575), 1, + anon_sym_RBRACK, + STATE(6292), 1, + sym_heredoc_body, + STATE(9813), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [258961] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6302), 1, + STATE(6293), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5862), 9, + ACTIONS(5833), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -555548,7 +559669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5860), 27, + ACTIONS(5831), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -555576,15 +559697,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259254] = 5, + [259012] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6303), 1, + STATE(6294), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5866), 9, + ACTIONS(5841), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -555594,7 +559715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5864), 27, + ACTIONS(5839), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -555622,127 +559743,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259305] = 25, + [259063] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(8575), 1, - anon_sym_COMMA, ACTIONS(8577), 1, + anon_sym_COMMA, + ACTIONS(8579), 1, anon_sym_RBRACK, - STATE(6304), 1, + STATE(6295), 1, sym_heredoc_body, - STATE(10319), 1, + STATE(9958), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [259396] = 5, + [259154] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6305), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8581), 1, + anon_sym_RPAREN, + ACTIONS(8583), 1, + anon_sym_COMMA, + STATE(6296), 1, sym_heredoc_body, + STATE(10271), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5899), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5897), 27, - sym__start_of_index_operator, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [259245] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8585), 1, + anon_sym_RPAREN, + ACTIONS(8587), 1, + anon_sym_COMMA, + STATE(6297), 1, + sym_heredoc_body, + STATE(9960), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [259447] = 5, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [259336] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6306), 1, + STATE(6298), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5919), 9, + ACTIONS(6191), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -555752,7 +559959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5917), 27, + ACTIONS(6189), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -555780,15 +559987,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259498] = 5, + [259387] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6307), 1, + STATE(6299), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5927), 9, + ACTIONS(6466), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -555798,7 +560005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5925), 27, + ACTIONS(6464), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -555826,16 +560033,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259549] = 5, + [259438] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6308), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8316), 1, + sym__start_of_index_operator, + STATE(6300), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5931), 9, - anon_sym_RBRACK, + ACTIONS(6152), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -555843,9 +560053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5929), 27, - sym__start_of_index_operator, + ACTIONS(6150), 27, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -555856,7 +560064,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -555869,18 +560079,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259600] = 5, + [259493] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6309), 1, + STATE(6301), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5648), 8, + ACTIONS(6406), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -555889,9 +560099,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5646), 28, + ACTIONS(6404), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -555902,7 +560111,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -555916,192 +560124,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259651] = 23, + [259544] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8211), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8213), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8219), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8223), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8233), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8235), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8237), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(6310), 1, + ACTIONS(8589), 1, + anon_sym_RPAREN, + ACTIONS(8591), 1, + anon_sym_COMMA, + STATE(6302), 1, sym_heredoc_body, + STATE(9964), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6144), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(8215), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [259738] = 23, + [259635] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8211), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8213), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8219), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8223), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8233), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8235), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8237), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(6311), 1, + ACTIONS(8593), 1, + anon_sym_RPAREN, + ACTIONS(8595), 1, + anon_sym_COMMA, + STATE(6303), 1, sym_heredoc_body, + STATE(9967), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6152), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(8215), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [259825] = 6, + [259726] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7841), 1, - anon_sym_COLON, - STATE(6312), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8597), 1, + anon_sym_COMMA, + ACTIONS(8599), 1, + anon_sym_RBRACK, + STATE(6304), 1, sym_heredoc_body, + STATE(9969), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 9, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - anon_sym_COLON2, - ACTIONS(133), 26, - sym__start_of_index_operator, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [259878] = 5, + [259817] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6313), 1, + STATE(6305), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6164), 9, + ACTIONS(5889), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -556111,7 +560343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6162), 27, + ACTIONS(5887), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -556139,62 +560371,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [259929] = 6, + [259868] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8579), 1, - sym_regex_modifier, - STATE(6314), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8601), 1, + anon_sym_RPAREN, + ACTIONS(8603), 1, + anon_sym_COMMA, + STATE(6306), 1, sym_heredoc_body, + STATE(10262), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5662), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [259959] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8561), 1, + anon_sym_RPAREN, + ACTIONS(8605), 1, + anon_sym_COMMA, + STATE(6307), 1, + sym_heredoc_body, + STATE(9972), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [259982] = 5, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [260050] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6315), 1, + STATE(6308), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5770), 9, + ACTIONS(6251), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -556204,7 +560521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5768), 27, + ACTIONS(6249), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -556232,16 +560549,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [260033] = 5, + [260101] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6316), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8316), 1, + sym__start_of_index_operator, + STATE(6309), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5782), 9, - anon_sym_RBRACK, + ACTIONS(6156), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -556249,9 +560569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5780), 27, - sym__start_of_index_operator, + ACTIONS(6154), 27, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -556262,7 +560580,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -556275,64 +560595,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [260084] = 5, + [260156] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6317), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8607), 1, + anon_sym_RPAREN, + ACTIONS(8609), 1, + anon_sym_COMMA, + STATE(6310), 1, sym_heredoc_body, + STATE(9975), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5786), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5784), 27, - sym__start_of_index_operator, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [260135] = 5, + [260247] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6318), 1, + STATE(6311), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5790), 9, + ACTIONS(5913), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -556342,7 +560681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5788), 27, + ACTIONS(5911), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -556370,15 +560709,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [260186] = 5, + [260298] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6319), 1, + STATE(6312), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5794), 9, + ACTIONS(5951), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -556388,7 +560727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5792), 27, + ACTIONS(5949), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -556416,61 +560755,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [260237] = 5, + [260349] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6320), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8611), 1, + anon_sym_COMMA, + ACTIONS(8613), 1, + anon_sym_RBRACK, + STATE(6313), 1, sym_heredoc_body, + STATE(10361), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5798), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5796), 27, - sym__start_of_index_operator, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [260288] = 5, + [260440] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6321), 1, + STATE(6314), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5806), 9, + ACTIONS(6347), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -556480,7 +560839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5804), 27, + ACTIONS(6345), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -556508,15 +560867,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [260339] = 5, + [260491] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6322), 1, + STATE(6315), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5814), 9, + ACTIONS(5959), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -556526,7 +560885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5812), 27, + ACTIONS(5957), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -556554,61 +560913,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [260390] = 5, + [260542] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6323), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, + anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(233), 1, + sym__terminator, + STATE(6316), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5822), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8631), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8619), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5820), 27, - sym__start_of_index_operator, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8645), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [260631] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(271), 1, + sym__terminator, + STATE(6317), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8619), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [260441] = 5, + ACTIONS(8643), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8645), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [260720] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6324), 1, + STATE(6318), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5830), 9, + ACTIONS(6009), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -556618,7 +561061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5828), 27, + ACTIONS(6007), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -556646,127 +561089,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [260492] = 5, + [260771] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6325), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, + anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(424), 1, + sym__terminator, + STATE(6319), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5842), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8631), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8619), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5840), 27, - sym__start_of_index_operator, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8645), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [260543] = 25, + [260860] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5570), 1, - anon_sym_COLON2, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(8477), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(8479), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8483), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(8485), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(8489), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(8495), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(8499), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(8501), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(8503), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(8509), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8581), 1, - anon_sym_COMMA, - STATE(6326), 1, + STATE(425), 1, + sym__terminator, + STATE(6320), 1, sym_heredoc_body, - STATE(6347), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8487), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8493), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8491), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [260634] = 5, + [260949] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6327), 1, + STATE(6321), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 9, + ACTIONS(5829), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -556776,7 +561237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5868), 27, + ACTIONS(5827), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -556804,15 +561265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [260685] = 5, + [261000] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6328), 1, + STATE(6322), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5903), 9, + ACTIONS(6191), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -556822,7 +561283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5901), 27, + ACTIONS(6189), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -556850,15 +561311,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [260736] = 5, + [261051] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6329), 1, + STATE(6323), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5907), 9, + ACTIONS(6201), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -556868,7 +561329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5905), 27, + ACTIONS(6199), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -556896,15 +561357,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [260787] = 5, + [261102] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6330), 1, + STATE(6324), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5915), 9, + ACTIONS(6175), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -556914,7 +561375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5913), 27, + ACTIONS(6173), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -556942,17 +561403,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [260838] = 6, + [261153] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8583), 1, - sym_regex_modifier, - STATE(6331), 1, + ACTIONS(8649), 1, + anon_sym_COMMA, + STATE(6325), 1, sym_heredoc_body, + STATE(6473), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -556961,7 +561424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 27, + ACTIONS(5587), 26, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -556974,7 +561437,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -556989,324 +561451,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [260891] = 25, + [261208] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8585), 1, - anon_sym_COMMA, - ACTIONS(8587), 1, - anon_sym_RBRACK, - STATE(6332), 1, + STATE(244), 1, + sym__terminator, + STATE(6326), 1, sym_heredoc_body, - STATE(9775), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [260982] = 7, + [261297] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(8239), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - STATE(6333), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5895), 7, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5893), 27, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [261037] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5923), 1, - anon_sym_DOT_DOT, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8217), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(8219), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(8223), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(8235), 1, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(8237), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - STATE(6334), 1, + STATE(286), 1, + sym__terminator, + STATE(6327), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5921), 5, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - [261120] = 25, + [261386] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8589), 1, - anon_sym_RPAREN, - ACTIONS(8591), 1, - anon_sym_COMMA, - STATE(6335), 1, + STATE(439), 1, + sym__terminator, + STATE(6328), 1, sym_heredoc_body, - STATE(9893), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [261211] = 25, + [261475] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8593), 1, - anon_sym_RPAREN, - ACTIONS(8595), 1, - anon_sym_COMMA, - STATE(6336), 1, + STATE(440), 1, + sym__terminator, + STATE(6329), 1, sym_heredoc_body, - STATE(9895), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [261302] = 5, + [261564] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6337), 1, + STATE(6330), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6130), 9, - anon_sym_RBRACK, + ACTIONS(5708), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -557315,8 +561728,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6128), 27, + ACTIONS(5706), 28, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -557327,6 +561741,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + sym__string_literal_start, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -557340,22 +561755,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [261353] = 7, + [261615] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8239), 1, - sym__start_of_index_operator, - STATE(6338), 1, + STATE(6331), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6000), 7, + ACTIONS(6223), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -557363,7 +561774,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5998), 27, + anon_sym_DOT, + ACTIONS(6221), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -557374,9 +561787,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -557389,65 +561800,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [261408] = 7, + [261666] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8239), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - STATE(6339), 1, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8651), 1, + anon_sym_RPAREN, + ACTIONS(8653), 1, + anon_sym_COMMA, + STATE(6332), 1, sym_heredoc_body, + STATE(10066), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6004), 7, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6002), 27, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, + [261757] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(438), 1, + sym__terminator, + STATE(6333), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8619), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [261463] = 5, + ACTIONS(8643), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8645), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [261846] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6340), 1, + STATE(6334), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6142), 9, + ACTIONS(6019), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -557457,7 +561952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6140), 27, + ACTIONS(6017), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -557485,107 +561980,340 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [261514] = 5, + [261897] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6341), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, + anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(238), 1, + sym__terminator, + STATE(6335), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6150), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8631), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8619), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6148), 27, - sym__start_of_index_operator, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8645), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [261986] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, anon_sym_CARET, - anon_sym_GT_GT, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(272), 1, + sym__terminator, + STATE(6336), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, + anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8619), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(8643), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8645), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [262075] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(8096), 1, + anon_sym_RBRACK, + ACTIONS(8342), 1, + anon_sym_DOT_DOT, + ACTIONS(8344), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8348), 1, + anon_sym_PIPE, + ACTIONS(8350), 1, + anon_sym_CARET, + ACTIONS(8354), 1, + anon_sym_EQ_EQ, + ACTIONS(8360), 1, + anon_sym_AMP_STAR, + ACTIONS(8364), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(8368), 1, anon_sym_AMP_AMP, + ACTIONS(8370), 1, anon_sym_PIPE_PIPE, - [261565] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6342), 1, + ACTIONS(8372), 1, + sym__start_of_index_operator, + ACTIONS(8378), 1, + sym_binary_ampersand, + STATE(6337), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(5825), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8352), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8358), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8362), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8346), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6419), 27, - sym__start_of_index_operator, + ACTIONS(8356), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8376), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [262164] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(443), 1, + sym__terminator, + STATE(6338), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8619), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(8643), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8645), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [262253] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, + anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(8639), 1, anon_sym_AMP_AMP, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - [261616] = 5, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(444), 1, + sym__terminator, + STATE(6339), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8631), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8619), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8643), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8645), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [262342] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6343), 1, + STATE(6340), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6184), 9, + ACTIONS(6191), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -557595,7 +562323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6182), 27, + ACTIONS(6189), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -557623,15 +562351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [261667] = 5, + [262393] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6344), 1, + STATE(6341), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6188), 9, + ACTIONS(6458), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -557641,7 +562369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6186), 27, + ACTIONS(6456), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -557669,19 +562397,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [261718] = 7, + [262444] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8581), 1, - anon_sym_COMMA, - STATE(6345), 1, + STATE(6342), 1, sym_heredoc_body, - STATE(6347), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(5973), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -557690,7 +562415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 26, + ACTIONS(5971), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -557702,6 +562427,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -557714,22 +562440,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [261773] = 7, + [262495] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8597), 1, - anon_sym_COMMA, - STATE(6346), 1, + STATE(6343), 1, sym_heredoc_body, - STATE(6348), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6279), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -557738,7 +562461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 26, + ACTIONS(6277), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -557750,6 +562473,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -557762,22 +562486,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [261828] = 7, + [262546] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8597), 1, - anon_sym_COMMA, - STATE(6347), 1, + STATE(6344), 1, sym_heredoc_body, - STATE(6349), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5861), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -557786,7 +562507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 26, + ACTIONS(5859), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -557798,6 +562519,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -557810,22 +562532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [261883] = 7, + [262597] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8599), 1, - anon_sym_COMMA, - STATE(6348), 1, + STATE(6345), 1, sym_heredoc_body, - STATE(6349), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(6323), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -557834,7 +562553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 26, + ACTIONS(6321), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -557846,6 +562565,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -557858,66 +562578,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [261938] = 6, + [262648] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8601), 1, - anon_sym_COMMA, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, + anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(222), 1, + sym__terminator, + STATE(6346), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6349), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5713), 8, - anon_sym_DOT_DOT, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8631), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8619), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8643), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8645), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [262737] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(5708), 26, + ACTIONS(7830), 1, sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, + anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(294), 1, + sym__terminator, + STATE(6347), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8631), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8619), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8645), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + [262826] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(449), 1, + sym__terminator, + STATE(6348), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8619), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(8643), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8645), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [262915] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, + anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, anon_sym_QMARK, + ACTIONS(8639), 1, anon_sym_AMP_AMP, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [261991] = 5, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(450), 1, + sym__terminator, + STATE(6349), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8631), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8619), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8643), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8645), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [263004] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(8655), 1, + anon_sym_of, STATE(6350), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6200), 9, - anon_sym_RBRACK, + ACTIONS(5757), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -557926,8 +562860,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6198), 27, + ACTIONS(5753), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -557951,10 +562886,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [262042] = 5, + [263057] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(6351), 1, @@ -557962,7 +562896,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6348), 9, + ACTIONS(5893), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -557972,7 +562906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6346), 27, + ACTIONS(5891), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -558000,7 +562934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [262093] = 5, + [263108] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(6352), 1, @@ -558008,7 +562942,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6352), 9, + ACTIONS(5881), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -558018,7 +562952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6350), 27, + ACTIONS(5879), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -558046,17 +562980,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [262144] = 6, + [263159] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8604), 1, - anon_sym_of, STATE(6353), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5690), 8, + ACTIONS(5989), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -558065,8 +562998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5686), 27, - sym__line_break, + ACTIONS(5987), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -558078,7 +563010,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -558091,83 +563023,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [262197] = 25, + [263210] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, - anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8606), 1, - anon_sym_COMMA, - ACTIONS(8608), 1, - anon_sym_RBRACK, STATE(6354), 1, sym_heredoc_body, - STATE(10119), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7450), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [262288] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6355), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5754), 9, + ACTIONS(6023), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -558177,7 +563044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5752), 27, + ACTIONS(6021), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -558205,279 +563072,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [262339] = 25, + [263261] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8610), 1, - anon_sym_RPAREN, - ACTIONS(8612), 1, - anon_sym_COMMA, - STATE(6356), 1, + STATE(224), 1, + sym__terminator, + STATE(6355), 1, sym_heredoc_body, - STATE(10212), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [262430] = 25, + [263350] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8614), 1, - anon_sym_RPAREN, - ACTIONS(8616), 1, - anon_sym_COMMA, - STATE(6357), 1, + STATE(278), 1, + sym__terminator, + STATE(6356), 1, sym_heredoc_body, - STATE(10213), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [262521] = 25, + [263439] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8618), 1, - anon_sym_RPAREN, - ACTIONS(8620), 1, - anon_sym_COMMA, - STATE(6358), 1, + STATE(455), 1, + sym__terminator, + STATE(6357), 1, sym_heredoc_body, - STATE(9875), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [262612] = 25, + [263528] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8622), 1, - anon_sym_COMMA, - ACTIONS(8624), 1, - anon_sym_RBRACK, - STATE(6359), 1, + STATE(456), 1, + sym__terminator, + STATE(6358), 1, sym_heredoc_body, - STATE(10147), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [262703] = 5, + [263617] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6360), 1, + STATE(6359), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5850), 9, + ACTIONS(5570), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -558487,7 +563350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5848), 27, + ACTIONS(5568), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -558515,551 +563378,454 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [262754] = 21, + [263668] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5941), 1, - anon_sym_DOT_DOT, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8217), 1, - anon_sym_PIPE, - ACTIONS(8219), 1, - anon_sym_CARET, - ACTIONS(8223), 1, - anon_sym_EQ_EQ, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8235), 1, - anon_sym_AMP_AMP, - ACTIONS(8237), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, - sym_binary_ampersand, - STATE(6361), 1, + STATE(6360), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, + ACTIONS(5787), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5785), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(5939), 5, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [262837] = 25, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [263719] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(8626), 1, + ACTIONS(8657), 1, anon_sym_RPAREN, - ACTIONS(8628), 1, + ACTIONS(8659), 1, anon_sym_COMMA, - STATE(6362), 1, + STATE(6361), 1, sym_heredoc_body, - STATE(9701), 1, + STATE(10406), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [262928] = 25, + [263810] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(8630), 1, + ACTIONS(8661), 1, anon_sym_RPAREN, - ACTIONS(8632), 1, + ACTIONS(8663), 1, anon_sym_COMMA, - STATE(6363), 1, + STATE(6362), 1, sym_heredoc_body, - STATE(9702), 1, + STATE(10431), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [263019] = 6, + [263901] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8634), 1, - anon_sym_of, - STATE(6364), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5719), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(5715), 27, - sym__line_break, + ACTIONS(7830), 1, sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_SEMI, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, anon_sym_QMARK, + ACTIONS(8639), 1, anon_sym_AMP_AMP, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - [263072] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6365), 1, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(225), 1, + sym__terminator, + STATE(6363), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5887), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5885), 27, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(8635), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [263123] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8636), 1, - anon_sym_EQ, - STATE(6366), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5670), 8, - anon_sym_DOT_DOT, + ACTIONS(8619), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5668), 27, - sym__line_break, - sym__start_of_index_operator, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8645), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [263176] = 25, + [263990] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8638), 1, - anon_sym_COMMA, - ACTIONS(8640), 1, - anon_sym_RBRACK, - STATE(6367), 1, + STATE(291), 1, + sym__terminator, + STATE(6364), 1, sym_heredoc_body, - STATE(10146), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [263267] = 25, + [264079] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8642), 1, - anon_sym_RPAREN, - ACTIONS(8644), 1, - anon_sym_COMMA, - STATE(6368), 1, + STATE(461), 1, + sym__terminator, + STATE(6365), 1, sym_heredoc_body, - STATE(10329), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [263358] = 25, + [264168] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8646), 1, - anon_sym_RPAREN, - ACTIONS(8648), 1, - anon_sym_COMMA, - STATE(6369), 1, + STATE(462), 1, + sym__terminator, + STATE(6366), 1, sym_heredoc_body, - STATE(10332), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [263449] = 7, + [264257] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8650), 1, - anon_sym_COMMA, - STATE(6370), 1, + STATE(6367), 1, sym_heredoc_body, - STATE(6394), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(6037), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -559068,9 +563834,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 26, + ACTIONS(6035), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -559081,6 +563846,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -559093,568 +563859,702 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [263504] = 25, + [264308] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8652), 1, - anon_sym_COMMA, - ACTIONS(8654), 1, - anon_sym_RBRACK, - STATE(6371), 1, + STATE(226), 1, + sym__terminator, + STATE(6368), 1, sym_heredoc_body, - STATE(9755), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [263595] = 23, + [264397] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(8211), 1, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(8213), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(8219), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(8223), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(8233), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(8235), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(8237), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - STATE(6372), 1, + STATE(274), 1, + sym__terminator, + STATE(6369), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6010), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(8215), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [263682] = 25, + [264486] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + STATE(6370), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6055), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(6053), 27, sym__start_of_index_operator, - ACTIONS(7420), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [264537] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8656), 1, - anon_sym_RPAREN, - ACTIONS(8658), 1, - anon_sym_COMMA, - STATE(6373), 1, + STATE(465), 1, + sym__terminator, + STATE(6371), 1, sym_heredoc_body, - STATE(9787), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [263773] = 25, + [264626] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8660), 1, - anon_sym_RPAREN, - ACTIONS(8662), 1, - anon_sym_COMMA, - STATE(6374), 1, + STATE(466), 1, + sym__terminator, + STATE(6372), 1, sym_heredoc_body, - STATE(9788), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8643), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8645), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [264715] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8665), 1, + sym_regex_modifier, + STATE(6373), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5743), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5741), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [264768] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8667), 1, + anon_sym_of, + STATE(6374), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5651), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5647), 27, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [263864] = 23, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [264821] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8211), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8213), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8219), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8223), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8233), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8235), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8237), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(7471), 1, sym_binary_ampersand, + ACTIONS(8669), 1, + anon_sym_RPAREN, + ACTIONS(8671), 1, + anon_sym_COMMA, STATE(6375), 1, sym_heredoc_body, + STATE(10322), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6030), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(8215), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [263951] = 23, + [264912] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8211), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8213), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8219), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8223), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8233), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8235), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8237), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(7471), 1, sym_binary_ampersand, + ACTIONS(8673), 1, + anon_sym_RPAREN, + ACTIONS(8675), 1, + anon_sym_COMMA, STATE(6376), 1, sym_heredoc_body, + STATE(9949), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6032), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(8215), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [264038] = 25, + [265003] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8664), 1, - anon_sym_COMMA, - ACTIONS(8666), 1, - anon_sym_RBRACK, + STATE(220), 1, + sym__terminator, STATE(6377), 1, sym_heredoc_body, - STATE(9842), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [264129] = 25, + [265092] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8365), 1, - anon_sym_RBRACK, - ACTIONS(8668), 1, - anon_sym_COMMA, + STATE(279), 1, + sym__terminator, STATE(6378), 1, sym_heredoc_body, - STATE(10352), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [264220] = 10, + [265181] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8239), 1, - sym__start_of_index_operator, STATE(6379), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8231), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8243), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(6191), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 21, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6189), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - anon_sym_RBRACE, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -559665,74 +564565,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [264281] = 8, + [265232] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(8239), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, + anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(470), 1, + sym__terminator, STATE(6380), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8231), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8631), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, - anon_sym_DOT_DOT, + ACTIONS(8619), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6050), 25, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8645), 4, sym__binary_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, + [265321] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(471), 1, + sym__terminator, + STATE(6381), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8619), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [264338] = 8, + ACTIONS(8643), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8645), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [265410] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8239), 1, - sym__start_of_index_operator, - STATE(6381), 1, + ACTIONS(8677), 1, + sym_regex_modifier, + STATE(6382), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8231), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(5749), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -559740,19 +564718,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 25, + anon_sym_DOT, + ACTIONS(5747), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -559763,724 +564743,604 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [264395] = 12, + [265463] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8239), 1, - sym__start_of_index_operator, - STATE(6382), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8231), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8241), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8243), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6064), 6, + ACTIONS(8288), 1, anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6062), 15, - sym_binary_ampersand, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, + ACTIONS(8290), 1, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [264460] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6068), 1, - anon_sym_DOT_DOT, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8217), 1, + ACTIONS(8294), 1, anon_sym_PIPE, - ACTIONS(8219), 1, + ACTIONS(8296), 1, anon_sym_CARET, - ACTIONS(8223), 1, + ACTIONS(8300), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(8306), 1, anon_sym_AMP_STAR, - ACTIONS(8235), 1, + ACTIONS(8310), 1, + anon_sym_QMARK, + ACTIONS(8312), 1, anon_sym_AMP_AMP, - ACTIONS(8237), 1, + ACTIONS(8314), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(8322), 1, sym_binary_ampersand, STATE(6383), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, + ACTIONS(8304), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(8308), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, + ACTIONS(5779), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(8292), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(8302), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(8320), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6066), 5, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - [264543] = 17, + [265550] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(8217), 1, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(8219), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(8223), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, sym_binary_ampersand, + STATE(230), 1, + sym__terminator, STATE(6384), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8231), 2, + ACTIONS(8631), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, - anon_sym_DOT_DOT, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6070), 9, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [264618] = 13, + [265639] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8239), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, + anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, sym_binary_ampersand, + STATE(284), 1, + sym__terminator, STATE(6385), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8231), 2, + ACTIONS(8631), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8241), 4, + ACTIONS(8619), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6082), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6080), 14, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [264685] = 25, + [265728] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8670), 1, - anon_sym_RPAREN, - ACTIONS(8672), 1, - anon_sym_COMMA, + STATE(474), 1, + sym__terminator, STATE(6386), 1, sym_heredoc_body, - STATE(9861), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [264776] = 25, + [265817] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8674), 1, - anon_sym_RPAREN, - ACTIONS(8676), 1, - anon_sym_COMMA, + STATE(475), 1, + sym__terminator, STATE(6387), 1, sym_heredoc_body, - STATE(9862), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [264867] = 11, + [265906] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8239), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - STATE(6388), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8231), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8241), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8243), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6090), 6, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6088), 17, - sym_binary_ampersand, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, anon_sym_QMARK, + ACTIONS(8639), 1, anon_sym_AMP_AMP, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - [264930] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8217), 1, - anon_sym_PIPE, - ACTIONS(8219), 1, - anon_sym_CARET, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - STATE(6389), 1, + STATE(231), 1, + sym__terminator, + STATE(6388), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8231), 2, + ACTIONS(8631), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8241), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8243), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6094), 5, - anon_sym_DOT_DOT, + ACTIONS(8619), 3, anon_sym_LT, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6092), 13, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, + ACTIONS(8629), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [265001] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8678), 1, - anon_sym_COMMA, - STATE(6390), 1, - sym_heredoc_body, - STATE(6402), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5627), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5585), 26, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8645), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [265056] = 19, + [265995] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, - anon_sym_DOT_DOT, - ACTIONS(7797), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(8217), 1, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(8219), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(8223), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, sym_binary_ampersand, - STATE(6391), 1, + STATE(289), 1, + sym__terminator, + STATE(6389), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 7, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [265135] = 20, + [266084] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6118), 1, - anon_sym_DOT_DOT, - ACTIONS(7797), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(8217), 1, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(8219), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(8223), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(8235), 1, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, sym_binary_ampersand, - STATE(6392), 1, + STATE(478), 1, + sym__terminator, + STATE(6390), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6116), 6, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - [265216] = 25, + [266173] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8680), 1, - anon_sym_COMMA, - ACTIONS(8682), 1, - anon_sym_RBRACK, - STATE(6393), 1, + STATE(479), 1, + sym__terminator, + STATE(6391), 1, sym_heredoc_body, - STATE(9668), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [265307] = 7, + [266262] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8678), 1, - anon_sym_COMMA, - STATE(6394), 1, + STATE(6392), 1, sym_heredoc_body, - STATE(6405), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6071), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -560489,9 +565349,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 26, + ACTIONS(6069), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -560502,6 +565361,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -560514,479 +565374,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [265362] = 25, + [266313] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, - anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8684), 1, - anon_sym_RPAREN, - ACTIONS(8686), 1, - anon_sym_COMMA, - STATE(6395), 1, + STATE(6393), 1, sym_heredoc_body, - STATE(9973), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(6160), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6158), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [265453] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8688), 1, - anon_sym_RPAREN, - ACTIONS(8690), 1, - anon_sym_COMMA, - STATE(6396), 1, - sym_heredoc_body, - STATE(9974), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7430), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7450), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [265544] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8347), 1, - anon_sym_PIPE, - ACTIONS(8349), 1, - anon_sym_CARET, - ACTIONS(8353), 1, - anon_sym_EQ_EQ, - ACTIONS(8359), 1, - anon_sym_AMP_STAR, - ACTIONS(8367), 1, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8369), 1, anon_sym_PIPE_PIPE, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, - sym_binary_ampersand, - STATE(6397), 1, + [266364] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6394), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5941), 2, + ACTIONS(6219), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(8351), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8357), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8345), 3, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5939), 4, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - ACTIONS(8355), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8373), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6217), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [265627] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7444), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(7446), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8692), 1, - anon_sym_COMMA, - ACTIONS(8694), 1, - anon_sym_RBRACK, - STATE(6398), 1, + [266415] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6395), 1, sym_heredoc_body, - STATE(10031), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(6379), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6377), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [265718] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8696), 1, - anon_sym_RPAREN, - ACTIONS(8698), 1, - anon_sym_COMMA, - STATE(6399), 1, - sym_heredoc_body, - STATE(10058), 1, - aux_sym_annotation_argument_list_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7430), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7450), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [265809] = 25, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [266466] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8700), 1, - anon_sym_RPAREN, - ACTIONS(8702), 1, - anon_sym_COMMA, - STATE(6400), 1, + STATE(234), 1, + sym__terminator, + STATE(6396), 1, sym_heredoc_body, - STATE(10060), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [265900] = 25, + [266555] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8704), 1, - anon_sym_COMMA, - ACTIONS(8706), 1, - anon_sym_RBRACK, - STATE(6401), 1, + STATE(270), 1, + sym__terminator, + STATE(6397), 1, sym_heredoc_body, - STATE(10124), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [265991] = 7, + [266644] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8708), 1, - anon_sym_COMMA, - STATE(6402), 1, + STATE(6398), 1, sym_heredoc_body, - STATE(6405), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(6171), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -560995,9 +565663,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 26, + ACTIONS(6169), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -561008,6 +565675,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -561020,152 +565688,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [266046] = 25, + [266695] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8710), 1, - anon_sym_RPAREN, - ACTIONS(8712), 1, - anon_sym_COMMA, - STATE(6403), 1, + STATE(483), 1, + sym__terminator, + STATE(6399), 1, sym_heredoc_body, - STATE(10168), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [266137] = 25, + [266784] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8714), 1, - anon_sym_RPAREN, - ACTIONS(8716), 1, - anon_sym_COMMA, - STATE(6404), 1, + STATE(484), 1, + sym__terminator, + STATE(6400), 1, sym_heredoc_body, - STATE(10169), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [266228] = 6, + [266873] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8718), 1, - anon_sym_COMMA, + STATE(6401), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6405), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5713), 8, + ACTIONS(6187), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -561174,9 +565839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 26, + ACTIONS(6185), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -561187,6 +565851,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -561199,687 +565864,556 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [266281] = 24, + [266924] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6012), 1, - anon_sym_RBRACK, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8341), 1, - anon_sym_DOT_DOT, - ACTIONS(8343), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8347), 1, - anon_sym_PIPE, - ACTIONS(8349), 1, - anon_sym_CARET, - ACTIONS(8353), 1, - anon_sym_EQ_EQ, - ACTIONS(8359), 1, - anon_sym_AMP_STAR, - ACTIONS(8363), 1, - anon_sym_QMARK, - ACTIONS(8367), 1, - anon_sym_AMP_AMP, - ACTIONS(8369), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, - sym_binary_ampersand, - STATE(6406), 1, + STATE(6402), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6010), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8351), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8357), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8345), 3, + ACTIONS(6359), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8355), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8373), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6357), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [266370] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7444), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(7446), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8721), 1, - anon_sym_COMMA, - ACTIONS(8723), 1, - anon_sym_RBRACK, - STATE(6407), 1, + [266975] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6403), 1, sym_heredoc_body, - STATE(10238), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(6387), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6385), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [266461] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7444), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(7446), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8725), 1, - anon_sym_RPAREN, - ACTIONS(8727), 1, - anon_sym_COMMA, - STATE(6408), 1, + [267026] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8679), 1, + anon_sym_of, + STATE(6404), 1, sym_heredoc_body, - STATE(10261), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(5733), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5729), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [266552] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7444), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8729), 1, - anon_sym_RPAREN, - ACTIONS(8731), 1, - anon_sym_COMMA, - STATE(6409), 1, + [267079] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6405), 1, sym_heredoc_body, - STATE(10264), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(6391), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6389), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [266643] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7444), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(7446), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8733), 1, - anon_sym_COMMA, - ACTIONS(8735), 1, - anon_sym_RBRACK, - STATE(6410), 1, + [267130] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6406), 1, sym_heredoc_body, - STATE(10364), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(6227), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6225), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [266734] = 24, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [267181] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(8157), 1, - anon_sym_RBRACK, - ACTIONS(8341), 1, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(8343), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8347), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(8349), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(8353), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(8359), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(8363), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(8367), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(8369), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - STATE(6411), 1, + STATE(236), 1, + sym__terminator, + STATE(6407), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6030), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8351), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8357), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8345), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8355), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8373), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [266823] = 24, + [267270] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(8159), 1, - anon_sym_RBRACK, - ACTIONS(8341), 1, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(8343), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8347), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(8349), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(8353), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(8359), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(8363), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(8367), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(8369), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - STATE(6412), 1, + STATE(269), 1, + sym__terminator, + STATE(6408), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6032), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8351), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8357), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8345), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8355), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8373), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [266912] = 25, + [267359] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, - anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8737), 1, - anon_sym_RPAREN, - ACTIONS(8739), 1, - anon_sym_COMMA, - STATE(6413), 1, + ACTIONS(8681), 1, + anon_sym_of, + STATE(6409), 1, sym_heredoc_body, - STATE(10348), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(5651), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5647), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [267003] = 25, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [267412] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8741), 1, - anon_sym_RPAREN, - ACTIONS(8743), 1, - anon_sym_COMMA, - STATE(6414), 1, + STATE(488), 1, + sym__terminator, + STATE(6410), 1, sym_heredoc_body, - STATE(10350), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [267094] = 24, + [267501] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(8098), 1, - anon_sym_RBRACK, - ACTIONS(8341), 1, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(8343), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8347), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(8349), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(8353), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(8359), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(8363), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(8367), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(8369), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - STATE(6415), 1, + STATE(489), 1, + sym__terminator, + STATE(6411), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6144), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8351), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8357), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8345), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8355), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8373), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [267183] = 10, + [267590] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8359), 1, - anon_sym_AMP_STAR, - ACTIONS(8371), 1, - sym__start_of_index_operator, - STATE(6416), 1, + STATE(6412), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8361), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8375), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 7, + ACTIONS(6271), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -561887,12 +566421,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 20, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6269), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -561904,26 +566446,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [267244] = 8, + [267641] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8371), 1, - sym__start_of_index_operator, - STATE(6417), 1, + STATE(6413), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8361), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 8, + ACTIONS(6275), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -561932,12 +566468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 24, + anon_sym_DOT, + ACTIONS(6273), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -561953,26 +566492,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [267301] = 8, + [267692] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8371), 1, - sym__start_of_index_operator, - STATE(6418), 1, + STATE(6414), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8361), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 8, + ACTIONS(6395), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -561981,12 +566514,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 24, + anon_sym_DOT, + ACTIONS(6393), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -562002,330 +566538,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [267358] = 12, + [267743] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8359), 1, - anon_sym_AMP_STAR, - ACTIONS(8371), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - STATE(6419), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8351), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8361), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8373), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8375), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6064), 7, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6062), 14, - sym_binary_ampersand, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [267423] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8100), 1, - anon_sym_RBRACK, - ACTIONS(8341), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8343), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8347), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8349), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8353), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8359), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8363), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8367), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8369), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(6420), 1, + ACTIONS(8683), 1, + anon_sym_RPAREN, + ACTIONS(8685), 1, + anon_sym_COMMA, + STATE(6415), 1, sym_heredoc_body, + STATE(10360), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6152), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8351), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8357), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8345), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8355), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8373), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [267512] = 21, + [267834] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8347), 1, - anon_sym_PIPE, - ACTIONS(8349), 1, - anon_sym_CARET, - ACTIONS(8353), 1, - anon_sym_EQ_EQ, - ACTIONS(8359), 1, - anon_sym_AMP_STAR, - ACTIONS(8367), 1, - anon_sym_AMP_AMP, - ACTIONS(8369), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, - sym_binary_ampersand, - STATE(6421), 1, + STATE(6416), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6068), 2, + ACTIONS(6307), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(8351), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8357), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8345), 3, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6066), 4, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - ACTIONS(8355), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8373), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6305), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [267595] = 17, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8347), 1, - anon_sym_PIPE, - ACTIONS(8349), 1, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_CARET, - ACTIONS(8353), 1, - anon_sym_EQ_EQ, - ACTIONS(8359), 1, - anon_sym_AMP_STAR, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, - sym_binary_ampersand, - STATE(6422), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8351), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8361), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8355), 4, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8373), 4, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [267885] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6417), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6319), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6317), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6072), 5, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6070), 8, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [267670] = 13, + [267936] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8359), 1, - anon_sym_AMP_STAR, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, - sym_binary_ampersand, - STATE(6423), 1, + STATE(6418), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8351), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8361), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8373), 4, + ACTIONS(5777), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5775), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6082), 7, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6080), 13, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [267737] = 11, + [267987] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8359), 1, - anon_sym_AMP_STAR, - ACTIONS(8371), 1, - sym__start_of_index_operator, - STATE(6424), 1, + STATE(6419), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8361), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8373), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8375), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6090), 7, + ACTIONS(6399), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -562333,8 +566763,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6088), 16, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6397), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -562346,722 +566788,541 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [267800] = 15, + [268038] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8347), 1, - anon_sym_PIPE, - ACTIONS(8349), 1, - anon_sym_CARET, - ACTIONS(8359), 1, - anon_sym_AMP_STAR, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, - sym_binary_ampersand, - STATE(6425), 1, + STATE(6420), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8351), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8361), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8373), 4, + ACTIONS(5857), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5855), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6094), 6, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6092), 12, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [267871] = 25, + [268089] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, - anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8745), 1, - anon_sym_COMMA, - ACTIONS(8747), 1, - anon_sym_RBRACK, - STATE(6426), 1, + STATE(6421), 1, sym_heredoc_body, - STATE(9686), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(5787), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5785), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [267962] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6242), 1, - anon_sym_DOT_DOT, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8217), 1, - anon_sym_PIPE, - ACTIONS(8219), 1, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_CARET, - ACTIONS(8223), 1, - anon_sym_EQ_EQ, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8235), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8237), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, - sym_binary_ampersand, - STATE(6427), 1, + [268140] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6422), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, + ACTIONS(5809), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5807), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6240), 5, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - [268045] = 19, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [268191] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8347), 1, - anon_sym_PIPE, - ACTIONS(8349), 1, - anon_sym_CARET, - ACTIONS(8353), 1, - anon_sym_EQ_EQ, - ACTIONS(8359), 1, - anon_sym_AMP_STAR, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, - sym_binary_ampersand, - STATE(6428), 1, + STATE(6423), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6114), 2, + ACTIONS(5909), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(8351), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8357), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8345), 3, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8355), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8373), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5907), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 6, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [268124] = 20, + [268242] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8347), 1, - anon_sym_PIPE, - ACTIONS(8349), 1, - anon_sym_CARET, - ACTIONS(8353), 1, - anon_sym_EQ_EQ, - ACTIONS(8359), 1, - anon_sym_AMP_STAR, - ACTIONS(8367), 1, - anon_sym_AMP_AMP, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, - sym_binary_ampersand, - STATE(6429), 1, + STATE(6424), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6118), 2, + ACTIONS(5969), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(8351), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8357), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8345), 3, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8355), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8373), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5967), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6116), 5, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [268205] = 25, + [268293] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, - anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8749), 1, - anon_sym_RPAREN, - ACTIONS(8751), 1, - anon_sym_COMMA, - STATE(6430), 1, + STATE(6425), 1, sym_heredoc_body, - STATE(9718), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(5997), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5995), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [268296] = 25, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [268344] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(8753), 1, + ACTIONS(8687), 1, anon_sym_RPAREN, - ACTIONS(8755), 1, + ACTIONS(8689), 1, anon_sym_COMMA, - STATE(6431), 1, + STATE(6426), 1, sym_heredoc_body, - STATE(9721), 1, + STATE(10167), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [268387] = 25, + [268435] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, - anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8757), 1, - anon_sym_RPAREN, - ACTIONS(8759), 1, - anon_sym_COMMA, - STATE(6432), 1, + STATE(6427), 1, sym_heredoc_body, - STATE(9807), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(6013), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6011), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [268478] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8761), 1, - anon_sym_RPAREN, - ACTIONS(8763), 1, - anon_sym_COMMA, - STATE(6433), 1, - sym_heredoc_body, - STATE(9816), 1, - aux_sym_array_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7430), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7450), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [268569] = 25, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [268486] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(8765), 1, + ACTIONS(8691), 1, anon_sym_RPAREN, - ACTIONS(8767), 1, + ACTIONS(8693), 1, anon_sym_COMMA, - STATE(6434), 1, + STATE(6428), 1, sym_heredoc_body, - STATE(9946), 1, + STATE(9878), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [268660] = 25, + [268577] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(8769), 1, + ACTIONS(8695), 1, anon_sym_RPAREN, - ACTIONS(8771), 1, + ACTIONS(8697), 1, anon_sym_COMMA, - STATE(6435), 1, + STATE(6429), 1, sym_heredoc_body, - STATE(9962), 1, + STATE(9883), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [268751] = 6, + [268668] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8773), 1, - anon_sym_of, - STATE(6436), 1, + STATE(6430), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5660), 8, + ACTIONS(6410), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -563070,8 +567331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5656), 27, - sym__line_break, + ACTIONS(6408), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -563083,7 +567343,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -563096,478 +567356,400 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [268804] = 25, + [268719] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, - anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8775), 1, - anon_sym_RPAREN, - ACTIONS(8777), 1, - anon_sym_COMMA, - STATE(6437), 1, + STATE(6431), 1, sym_heredoc_body, - STATE(10044), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(6106), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6104), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [268895] = 25, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [268770] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(5587), 1, + anon_sym_COLON2, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8699), 1, + anon_sym_COMMA, + ACTIONS(8701), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8703), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8707), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8709), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8713), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8723), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8725), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8727), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8733), 1, sym_binary_ampersand, - ACTIONS(8779), 1, - anon_sym_RPAREN, - ACTIONS(8781), 1, - anon_sym_COMMA, - STATE(6438), 1, + STATE(6432), 1, sym_heredoc_body, - STATE(10090), 1, - aux_sym_array_repeat1, + STATE(6599), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(8711), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8705), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8715), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [268986] = 25, + [268861] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, - anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8783), 1, - anon_sym_RPAREN, - ACTIONS(8785), 1, - anon_sym_COMMA, - STATE(6439), 1, + ACTIONS(8735), 1, + anon_sym_of, + STATE(6433), 1, sym_heredoc_body, - STATE(10140), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(5725), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5721), 27, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [269077] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7444), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8787), 1, - anon_sym_RPAREN, - ACTIONS(8789), 1, - anon_sym_COMMA, - STATE(6440), 1, + [268914] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6434), 1, sym_heredoc_body, - STATE(10159), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(5813), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5811), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [269168] = 25, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [268965] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(8791), 1, + ACTIONS(8737), 1, anon_sym_RPAREN, - ACTIONS(8793), 1, + ACTIONS(8739), 1, anon_sym_COMMA, - STATE(6441), 1, + STATE(6435), 1, sym_heredoc_body, - STATE(10208), 1, + STATE(10387), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [269259] = 24, + [269056] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5713), 1, - anon_sym_RBRACK, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8341), 1, - anon_sym_DOT_DOT, - ACTIONS(8343), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8347), 1, - anon_sym_PIPE, - ACTIONS(8349), 1, - anon_sym_CARET, - ACTIONS(8353), 1, - anon_sym_EQ_EQ, - ACTIONS(8359), 1, - anon_sym_AMP_STAR, - ACTIONS(8363), 1, - anon_sym_QMARK, - ACTIONS(8367), 1, - anon_sym_AMP_AMP, - ACTIONS(8369), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, - sym_binary_ampersand, - STATE(6442), 1, + STATE(6436), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8351), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8357), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8345), 3, + ACTIONS(5821), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8355), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8373), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5819), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [269348] = 25, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [269107] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8074), 1, + anon_sym_RBRACK, + ACTIONS(8342), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8344), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8348), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8350), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8354), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8360), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8364), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8368), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8370), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8372), 1, + sym__start_of_index_operator, + ACTIONS(8378), 1, sym_binary_ampersand, - ACTIONS(8795), 1, - anon_sym_RPAREN, - ACTIONS(8797), 1, - anon_sym_COMMA, - STATE(6443), 1, + STATE(6437), 1, sym_heredoc_body, - STATE(10249), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(5923), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8352), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8358), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8346), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8356), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8376), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [269439] = 5, + [269196] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6444), 1, + STATE(6438), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6016), 9, + ACTIONS(5947), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -563577,7 +567759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6014), 27, + ACTIONS(5945), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -563605,15 +567787,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [269490] = 5, + [269247] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6445), 1, + STATE(6439), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6126), 9, + ACTIONS(6114), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -563623,7 +567805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6124), 27, + ACTIONS(6112), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -563651,149 +567833,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [269541] = 25, + [269298] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(8799), 1, - anon_sym_RPAREN, - ACTIONS(8801), 1, + ACTIONS(8741), 1, anon_sym_COMMA, - STATE(6446), 1, + ACTIONS(8743), 1, + anon_sym_RBRACK, + STATE(6440), 1, sym_heredoc_body, - STATE(10303), 1, + STATE(9806), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [269632] = 25, + [269389] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5570), 1, - sym__end_of_with_expression, - ACTIONS(8007), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8650), 1, - anon_sym_COMMA, - ACTIONS(8803), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8805), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8809), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8811), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8815), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8821), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8825), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8827), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8829), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(8837), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(6394), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6447), 1, + ACTIONS(8745), 1, + anon_sym_RPAREN, + ACTIONS(8747), 1, + anon_sym_COMMA, + STATE(6441), 1, sym_heredoc_body, + STATE(10407), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8813), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8819), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8817), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8833), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8835), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [269723] = 6, + [269480] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7911), 1, - anon_sym_COLON, - STATE(6448), 1, + ACTIONS(8749), 1, + anon_sym_EQ, + STATE(6442), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -563802,9 +567984,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 27, + ACTIONS(5761), 27, + sym__line_break, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -563815,7 +567997,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -563830,713 +568012,864 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [269776] = 25, + [269533] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(8839), 1, + ACTIONS(8751), 1, anon_sym_RPAREN, - ACTIONS(8841), 1, + ACTIONS(8753), 1, anon_sym_COMMA, - STATE(6449), 1, + STATE(6443), 1, sym_heredoc_body, - STATE(10325), 1, + STATE(10420), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [269867] = 25, + [269624] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8843), 1, - anon_sym_RPAREN, - ACTIONS(8845), 1, - anon_sym_COMMA, - STATE(6450), 1, + STATE(460), 1, + sym__terminator, + STATE(6444), 1, sym_heredoc_body, - STATE(10339), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [269958] = 24, + [269713] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(8076), 1, + anon_sym_RBRACK, + ACTIONS(8342), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(8344), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8348), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8350), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8354), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8360), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(8364), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(8368), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(8370), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(8372), 1, + sym__start_of_index_operator, + ACTIONS(8378), 1, sym_binary_ampersand, - STATE(235), 1, - sym__terminator, - STATE(6451), 1, + STATE(6445), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(5773), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8352), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(8358), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(8346), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(8356), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8376), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [270047] = 24, + [269802] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7765), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - STATE(283), 1, + STATE(232), 1, sym__terminator, - STATE(6452), 1, + STATE(6446), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, + ACTIONS(7796), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [270136] = 24, + [269891] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, - anon_sym_QMARK, - ACTIONS(8545), 1, - anon_sym_AMP_AMP, - ACTIONS(8547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(477), 1, - sym__terminator, - STATE(6453), 1, + STATE(6447), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(6118), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6116), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [270225] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(467), 1, - sym__terminator, - STATE(6454), 1, + [269942] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6448), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(6414), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6412), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [269993] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6449), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6418), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6416), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [270314] = 21, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [270044] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8347), 1, + STATE(6450), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6231), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8349), 1, - anon_sym_CARET, - ACTIONS(8353), 1, anon_sym_EQ_EQ, - ACTIONS(8359), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8367), 1, - anon_sym_AMP_AMP, - ACTIONS(8369), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8371), 1, + anon_sym_DOT, + ACTIONS(6229), 27, sym__start_of_index_operator, - ACTIONS(8377), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - STATE(6455), 1, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [270095] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6451), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6242), 2, + ACTIONS(6422), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(8351), 2, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6420), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8357), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(8345), 3, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [270146] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6452), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6051), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6240), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6049), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - ACTIONS(8355), 4, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8373), 4, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [270197] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6453), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6426), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6424), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [270397] = 25, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [270248] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5585), 1, + ACTIONS(5587), 1, sym__end_of_with_expression, - ACTIONS(8007), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8678), 1, + ACTIONS(8649), 1, anon_sym_COMMA, - ACTIONS(8803), 1, + ACTIONS(8755), 1, anon_sym_DOT_DOT, - ACTIONS(8805), 1, + ACTIONS(8757), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8809), 1, + ACTIONS(8761), 1, anon_sym_PIPE, - ACTIONS(8811), 1, + ACTIONS(8763), 1, anon_sym_CARET, - ACTIONS(8815), 1, + ACTIONS(8767), 1, anon_sym_EQ_EQ, - ACTIONS(8821), 1, + ACTIONS(8773), 1, anon_sym_AMP_STAR, - ACTIONS(8825), 1, + ACTIONS(8777), 1, anon_sym_QMARK, - ACTIONS(8827), 1, + ACTIONS(8779), 1, anon_sym_AMP_AMP, - ACTIONS(8829), 1, + ACTIONS(8781), 1, anon_sym_PIPE_PIPE, - ACTIONS(8831), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(8837), 1, + ACTIONS(8789), 1, sym_binary_ampersand, - STATE(6402), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6456), 1, + STATE(6454), 1, sym_heredoc_body, + STATE(6473), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8813), 2, + ACTIONS(8765), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8819), 2, + ACTIONS(8771), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, + ACTIONS(8775), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, + ACTIONS(8759), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8817), 4, + ACTIONS(8769), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8833), 4, + ACTIONS(8785), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8835), 4, + ACTIONS(8787), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [270488] = 24, + [270339] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8187), 1, - anon_sym_RBRACK, - ACTIONS(8341), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8343), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8347), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8349), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8353), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8359), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8363), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8367), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8369), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(6457), 1, + ACTIONS(8585), 1, + anon_sym_RPAREN, + ACTIONS(8791), 1, + anon_sym_COMMA, + STATE(6455), 1, sym_heredoc_body, + STATE(10351), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6256), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8351), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8357), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8345), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8355), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8373), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [270577] = 5, + [270430] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6458), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8793), 1, + anon_sym_COMMA, + ACTIONS(8795), 1, + anon_sym_RBRACK, + STATE(6456), 1, sym_heredoc_body, + STATE(10236), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6122), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6120), 27, - sym__start_of_index_operator, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [270628] = 24, + [270521] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8189), 1, - anon_sym_RBRACK, - ACTIONS(8341), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8343), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8347), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8349), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8353), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8359), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8363), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8367), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8369), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(6459), 1, + ACTIONS(8797), 1, + anon_sym_RPAREN, + ACTIONS(8799), 1, + anon_sym_COMMA, + STATE(6457), 1, sym_heredoc_body, + STATE(10356), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6230), 2, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - ACTIONS(8351), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8357), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8345), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8355), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8373), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [270717] = 6, + [270612] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8847), 1, - anon_sym_of, - STATE(6460), 1, + ACTIONS(7974), 1, + anon_sym_COLON, + STATE(6458), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5702), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -564545,7 +568878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5698), 27, + ACTIONS(135), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -564573,17 +568906,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [270770] = 6, + [270665] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8849), 1, - anon_sym_of, - STATE(6461), 1, + ACTIONS(7747), 1, + anon_sym_LPAREN2, + STATE(6459), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5734), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -564592,7 +568925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5730), 27, + ACTIONS(135), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -564620,15 +568953,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [270823] = 5, + [270718] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6462), 1, + STATE(6460), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6024), 9, + ACTIONS(6430), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -564638,7 +568971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6022), 27, + ACTIONS(6428), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -564666,17 +568999,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [270874] = 6, + [270769] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8851), 1, - anon_sym_of, - STATE(6463), 1, + STATE(6461), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5719), 8, + ACTIONS(6043), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -564685,9 +569017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5715), 27, + ACTIONS(6041), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -564711,64 +569042,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [270927] = 5, + [270820] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6464), 1, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(8348), 1, + anon_sym_PIPE, + ACTIONS(8350), 1, + anon_sym_CARET, + ACTIONS(8354), 1, + anon_sym_EQ_EQ, + ACTIONS(8360), 1, + anon_sym_AMP_STAR, + ACTIONS(8368), 1, + anon_sym_AMP_AMP, + ACTIONS(8370), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8372), 1, + sym__start_of_index_operator, + ACTIONS(8378), 1, + sym_binary_ampersand, + STATE(6462), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6292), 9, + ACTIONS(5977), 2, anon_sym_RBRACK, anon_sym_DOT_DOT, + ACTIONS(8352), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8358), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8362), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8346), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6290), 27, - sym__start_of_index_operator, + ACTIONS(5975), 4, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + ACTIONS(8356), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8376), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [270903] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8288), 1, + anon_sym_DOT_DOT, + ACTIONS(8290), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8310), 1, + anon_sym_QMARK, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8314), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, + STATE(6463), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8304), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5694), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(8292), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [270978] = 5, + ACTIONS(8318), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8320), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [270990] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6465), 1, + ACTIONS(8801), 1, + anon_sym_COMMA, + STATE(6464), 1, sym_heredoc_body, + STATE(6644), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6308), 9, - anon_sym_RBRACK, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -564777,8 +569192,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6306), 27, + ACTIONS(5631), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -564789,7 +569205,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -564802,18 +569217,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [271029] = 5, + [271045] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6466), 1, + STATE(6465), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6008), 9, + ACTIONS(6235), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -564823,7 +569237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6006), 27, + ACTIONS(6233), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -564851,15 +569265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [271080] = 5, + [271096] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6467), 1, + STATE(6466), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6012), 9, + ACTIONS(6375), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -564869,7 +569283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6010), 27, + ACTIONS(6373), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -564897,81 +569311,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [271131] = 25, + [271147] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5585), 1, - anon_sym_COLON2, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(8477), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(8479), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8483), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(8485), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(8489), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(8495), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(8499), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(8501), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(8503), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(8509), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - ACTIONS(8597), 1, - anon_sym_COMMA, - STATE(6348), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6468), 1, + STATE(223), 1, + sym__terminator, + STATE(6467), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8487), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8493), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8491), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [271222] = 5, + [271236] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6469), 1, + STATE(6468), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6316), 9, + ACTIONS(6067), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -564981,7 +569394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6314), 27, + ACTIONS(6065), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -565009,125 +569422,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [271273] = 5, + [271287] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6470), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6304), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(6302), 27, + ACTIONS(7830), 1, sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [271324] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8211), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(8213), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(8219), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(8223), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(8233), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(8235), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(8237), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - STATE(6471), 1, + STATE(276), 1, + sym__terminator, + STATE(6469), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6256), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(8215), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [271411] = 5, + [271376] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6472), 1, + STATE(6470), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6404), 9, + ACTIONS(6079), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -565137,7 +569505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6402), 27, + ACTIONS(6077), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -565165,15 +569533,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [271462] = 5, + [271427] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6473), 1, + STATE(6471), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5810), 9, + ACTIONS(6102), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -565183,7 +569551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5808), 27, + ACTIONS(6092), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -565211,16 +569579,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [271513] = 5, + [271478] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6474), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8803), 1, + anon_sym_COMMA, + ACTIONS(8805), 1, + anon_sym_RBRACK, + STATE(6472), 1, sym_heredoc_body, + STATE(10102), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5818), 9, - anon_sym_RBRACK, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [271569] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8801), 1, + anon_sym_COMMA, + STATE(6270), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(6473), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -565229,8 +569666,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5816), 27, + ACTIONS(5631), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -565241,7 +569679,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -565254,19 +569691,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [271564] = 5, + [271624] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5587), 1, + anon_sym_EQ_GT, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8288), 1, + anon_sym_DOT_DOT, + ACTIONS(8290), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, + anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8310), 1, + anon_sym_QMARK, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8314), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, + ACTIONS(8807), 1, + anon_sym_COMMA, + STATE(6474), 1, + sym_heredoc_body, + STATE(6479), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8298), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8304), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8292), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8318), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8320), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [271715] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(8807), 1, + anon_sym_COMMA, STATE(6475), 1, sym_heredoc_body, + STATE(6479), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5846), 9, - anon_sym_RBRACK, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -565275,7 +569780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5844), 27, + ACTIONS(5587), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -565287,7 +569792,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -565300,10 +569805,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [271615] = 5, + [271770] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(6476), 1, @@ -565311,8 +569815,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 9, - anon_sym_RBRACK, + ACTIONS(4783), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -565321,8 +569824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5947), 27, + anon_sym_EQ, + ACTIONS(4785), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -565346,65 +569851,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [271666] = 5, + [271821] = 25, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5631), 1, + anon_sym_EQ_GT, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8288), 1, + anon_sym_DOT_DOT, + ACTIONS(8290), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, + anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8310), 1, + anon_sym_QMARK, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8314), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, + ACTIONS(8809), 1, + anon_sym_COMMA, STATE(6477), 1, sym_heredoc_body, + STATE(6481), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5512), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(8298), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8304), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8292), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5510), 27, - sym__start_of_index_operator, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8320), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [271717] = 5, + [271912] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(8809), 1, + anon_sym_COMMA, STATE(6478), 1, sym_heredoc_body, + STATE(6481), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6192), 9, - anon_sym_RBRACK, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -565413,7 +569940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6190), 27, + ACTIONS(5631), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -565425,7 +569952,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -565438,19 +569965,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [271768] = 5, + [271967] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(8809), 1, + anon_sym_COMMA, + STATE(6161), 1, + aux_sym_argument_list_no_parens_repeat1, STATE(6479), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5834), 9, - anon_sym_RBRACK, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -565459,7 +569988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5832), 27, + ACTIONS(5631), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -565471,7 +570000,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -565484,10 +570013,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [271819] = 5, + [272022] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(6480), 1, @@ -565495,7 +570023,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5953), 9, + ACTIONS(5547), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -565505,7 +570033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5951), 27, + ACTIONS(5545), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -565533,16 +570061,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [271870] = 5, + [272073] = 7, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(8811), 1, + anon_sym_COMMA, + STATE(6161), 1, + aux_sym_argument_list_no_parens_repeat1, STATE(6481), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5713), 9, - anon_sym_RBRACK, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -565551,7 +570082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5708), 27, + ACTIONS(5637), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -565563,7 +570094,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -565576,10 +570107,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [271921] = 5, + [272128] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(6482), 1, @@ -565587,7 +570117,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5961), 9, + ACTIONS(6090), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -565597,7 +570127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5959), 27, + ACTIONS(6088), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -565625,7 +570155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [271972] = 5, + [272179] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(6483), 1, @@ -565633,7 +570163,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4743), 9, + ACTIONS(5547), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -565642,10 +570173,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - anon_sym_EQ, - ACTIONS(4745), 27, + ACTIONS(5545), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -565669,55 +570198,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [272023] = 5, + [272230] = 24, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(8250), 1, + anon_sym_RBRACK, + ACTIONS(8342), 1, + anon_sym_DOT_DOT, + ACTIONS(8344), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8348), 1, + anon_sym_PIPE, + ACTIONS(8350), 1, + anon_sym_CARET, + ACTIONS(8354), 1, + anon_sym_EQ_EQ, + ACTIONS(8360), 1, + anon_sym_AMP_STAR, + ACTIONS(8364), 1, + anon_sym_QMARK, + ACTIONS(8368), 1, + anon_sym_AMP_AMP, + ACTIONS(8370), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8372), 1, + sym__start_of_index_operator, + ACTIONS(8378), 1, + sym_binary_ampersand, STATE(6484), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6036), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(6025), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8352), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8358), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8362), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8346), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6034), 27, - sym__start_of_index_operator, + ACTIONS(8356), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8376), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [272074] = 5, + [272319] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(6485), 1, @@ -565725,7 +570274,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6040), 9, + ACTIONS(5873), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -565735,7 +570284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6038), 27, + ACTIONS(5871), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -565763,53 +570312,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [272125] = 5, + [272370] = 23, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8288), 1, + anon_sym_DOT_DOT, + ACTIONS(8290), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, + anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8310), 1, + anon_sym_QMARK, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8314), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, STATE(6486), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6044), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(8298), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8304), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5825), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(8292), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6042), 27, - sym__start_of_index_operator, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8320), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [272176] = 5, + [272457] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(6487), 1, @@ -565817,7 +570384,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6060), 9, + ACTIONS(6138), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -565827,7 +570394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6058), 27, + ACTIONS(6136), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -565855,7 +570422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [272227] = 5, + [272508] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(6488), 1, @@ -565863,7 +570430,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6110), 9, + ACTIONS(5873), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -565873,7 +570440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6108), 27, + ACTIONS(5871), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -565901,7 +570468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [272278] = 5, + [272559] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(6489), 1, @@ -565909,7 +570476,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6138), 9, + ACTIONS(5877), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -565919,7 +570486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6136), 27, + ACTIONS(5875), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -565947,16 +570514,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [272329] = 5, + [272610] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(8813), 1, + anon_sym_of, STATE(6490), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 9, - anon_sym_RBRACK, + ACTIONS(5739), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -565965,8 +570533,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5878), 27, + ACTIONS(5735), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -565990,10 +570559,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [272380] = 5, + [272663] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(6491), 1, @@ -566001,7 +570569,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6168), 9, + ACTIONS(6197), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -566011,7 +570579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6166), 27, + ACTIONS(6195), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -566039,53 +570607,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [272431] = 5, + [272714] = 25, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8815), 1, + anon_sym_RPAREN, + ACTIONS(8817), 1, + anon_sym_COMMA, STATE(6492), 1, sym_heredoc_body, + STATE(10048), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6156), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6154), 27, - sym__start_of_index_operator, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [272482] = 5, + [272805] = 5, ACTIONS(7), 1, sym__heredoc_body_start, STATE(6493), 1, @@ -566093,7 +570681,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5911), 9, + ACTIONS(6299), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -566103,7 +570691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5909), 27, + ACTIONS(6297), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -566131,16 +570719,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [272533] = 5, + [272856] = 6, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(8819), 1, + anon_sym_of, STATE(6494), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5968), 9, - anon_sym_RBRACK, + ACTIONS(5725), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -566149,8 +570738,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5966), 27, + ACTIONS(5721), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -566174,65 +570764,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [272584] = 5, + [272909] = 21, ACTIONS(7), 1, sym__heredoc_body_start, + ACTIONS(5981), 1, + anon_sym_DOT_DOT, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, + anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8314), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, STATE(6495), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5972), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(8298), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8304), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8292), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5970), 27, - sym__start_of_index_operator, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8320), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5979), 5, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + [272992] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(8252), 1, + anon_sym_RBRACK, + ACTIONS(8342), 1, + anon_sym_DOT_DOT, + ACTIONS(8344), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8348), 1, + anon_sym_PIPE, + ACTIONS(8350), 1, anon_sym_CARET, + ACTIONS(8354), 1, + anon_sym_EQ_EQ, + ACTIONS(8360), 1, + anon_sym_AMP_STAR, + ACTIONS(8364), 1, + anon_sym_QMARK, + ACTIONS(8368), 1, + anon_sym_AMP_AMP, + ACTIONS(8370), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8372), 1, + sym__start_of_index_operator, + ACTIONS(8378), 1, + sym_binary_ampersand, + STATE(6496), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6039), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8352), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8358), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8362), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8346), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8356), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [272635] = 5, + ACTIONS(8374), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8376), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [273081] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6496), 1, + ACTIONS(8821), 1, + anon_sym_of, + STATE(6497), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6028), 9, - anon_sym_RBRACK, + ACTIONS(5714), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -566241,8 +570912,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6026), 27, + ACTIONS(5710), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -566266,18 +570938,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [272686] = 5, + [273134] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6497), 1, + STATE(6498), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6076), 9, + ACTIONS(6434), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -566287,7 +570958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6074), 27, + ACTIONS(6432), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -566315,15 +570986,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [272737] = 5, + [273185] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6498), 1, + STATE(6499), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6086), 9, + ACTIONS(6075), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -566333,7 +571004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6084), 27, + ACTIONS(6073), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -566361,61 +571032,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [272788] = 5, + [273236] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6499), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8823), 1, + anon_sym_COMMA, + ACTIONS(8825), 1, + anon_sym_RBRACK, + STATE(6500), 1, sym_heredoc_body, + STATE(9865), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5838), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5836), 27, - sym__start_of_index_operator, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [272839] = 5, + [273327] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6500), 1, + STATE(6501), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6098), 9, + ACTIONS(6291), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -566425,7 +571116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6096), 27, + ACTIONS(6289), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -566453,107 +571144,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [272890] = 5, + [273378] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6501), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, + anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(404), 1, + sym__terminator, + STATE(6502), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6102), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8631), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8619), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6100), 27, - sym__start_of_index_operator, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8645), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [273467] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(8639), 1, anon_sym_AMP_AMP, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - [272941] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6502), 1, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(405), 1, + sym__terminator, + STATE(6503), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6268), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8631), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8619), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6266), 27, - sym__start_of_index_operator, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8645), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [272992] = 5, + [273556] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6503), 1, + STATE(6504), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6196), 9, + ACTIONS(5885), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -566563,7 +571292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6194), 27, + ACTIONS(5883), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -566591,62 +571320,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [273043] = 5, + [273607] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6504), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8607), 1, + anon_sym_RPAREN, + ACTIONS(8827), 1, + anon_sym_COMMA, + STATE(6505), 1, sym_heredoc_body, + STATE(10000), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6224), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6222), 27, - sym__start_of_index_operator, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [273698] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8288), 1, + anon_sym_DOT_DOT, + ACTIONS(8290), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8310), 1, + anon_sym_QMARK, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8314), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, + STATE(6506), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8304), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6025), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(8292), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [273094] = 5, + ACTIONS(8318), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8320), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [273785] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6505), 1, + ACTIONS(7843), 1, + anon_sym_COLON, + STATE(6507), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6234), 9, - anon_sym_RBRACK, + ACTIONS(157), 9, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -566655,7 +571469,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6232), 27, + anon_sym_COLON2, + ACTIONS(135), 26, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -566680,65 +571495,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [273145] = 5, + [273838] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6506), 1, + ACTIONS(5977), 1, + anon_sym_DOT_DOT, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, + anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8314), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, + STATE(6508), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6246), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(8298), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8304), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8292), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6244), 27, - sym__start_of_index_operator, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8320), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5975), 5, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [273196] = 5, + [273921] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6507), 1, + ACTIONS(8829), 1, + anon_sym_EQ, + STATE(6509), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6250), 9, - anon_sym_RBRACK, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -566747,8 +571578,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6248), 27, + ACTIONS(5761), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -566772,64 +571604,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [273247] = 5, + [273974] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6508), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8831), 1, + anon_sym_RPAREN, + ACTIONS(8833), 1, + anon_sym_COMMA, + STATE(6510), 1, sym_heredoc_body, + STATE(10003), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6296), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6294), 27, - sym__start_of_index_operator, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [274065] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8531), 1, + anon_sym_RPAREN, + ACTIONS(8835), 1, + anon_sym_COMMA, + STATE(6511), 1, + sym_heredoc_body, + STATE(9893), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [273298] = 5, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [274156] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6509), 1, + STATE(6512), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6324), 9, + ACTIONS(6283), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -566839,7 +571756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6322), 27, + ACTIONS(6281), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -566867,61 +571784,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [273349] = 5, + [274207] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6510), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8288), 1, + anon_sym_DOT_DOT, + ACTIONS(8290), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, + anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8310), 1, + anon_sym_QMARK, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8314), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, + STATE(6513), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6368), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(8298), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8304), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6039), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(8292), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6366), 27, - sym__start_of_index_operator, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8320), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [273400] = 5, + [274294] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6511), 1, + STATE(6514), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6400), 9, + ACTIONS(6183), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -566931,7 +571866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6398), 27, + ACTIONS(6181), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -566959,62 +571894,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [273451] = 5, + [274345] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6512), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8837), 1, + anon_sym_RPAREN, + ACTIONS(8839), 1, + anon_sym_COMMA, + STATE(6515), 1, sym_heredoc_body, + STATE(10082), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5738), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5736), 27, - sym__start_of_index_operator, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [273502] = 5, + [274436] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6513), 1, + STATE(6516), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5742), 9, - anon_sym_RBRACK, + ACTIONS(5559), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -567023,7 +571977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5740), 27, + ACTIONS(5557), 28, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -567035,6 +571989,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + sym__string_literal_start, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -567048,64 +572003,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [273553] = 5, + anon_sym_COLON2, + [274487] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6514), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8841), 1, + anon_sym_RPAREN, + ACTIONS(8843), 1, + anon_sym_COMMA, + STATE(6517), 1, sym_heredoc_body, + STATE(10085), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5746), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5744), 27, - sym__start_of_index_operator, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [273604] = 5, + [274578] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6515), 1, + STATE(6518), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5750), 9, + ACTIONS(6239), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -567115,7 +572090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5748), 27, + ACTIONS(6237), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -567143,16 +572118,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [273655] = 5, + [274629] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6516), 1, + ACTIONS(8845), 1, + anon_sym_COMMA, + STATE(6519), 1, sym_heredoc_body, + STATE(6522), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5758), 9, - anon_sym_RBRACK, + ACTIONS(5629), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -567161,8 +572139,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5756), 27, + ACTIONS(5587), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -567173,7 +572152,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -567186,18 +572164,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [273706] = 5, + [274684] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6517), 1, + STATE(6520), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5762), 9, + ACTIONS(6207), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -567207,7 +572184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5760), 27, + ACTIONS(6205), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -567235,16 +572212,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [273757] = 5, + [274735] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6518), 1, + ACTIONS(8847), 1, + anon_sym_COMMA, + STATE(6521), 1, sym_heredoc_body, + STATE(6523), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5766), 9, - anon_sym_RBRACK, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -567253,8 +572233,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5764), 27, + ACTIONS(5631), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -567265,7 +572246,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -567278,19 +572258,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [273808] = 5, + [274790] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6519), 1, + ACTIONS(8847), 1, + anon_sym_COMMA, + STATE(6270), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(6522), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5774), 9, - anon_sym_RBRACK, + ACTIONS(5635), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -567299,8 +572281,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5772), 27, + ACTIONS(5631), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -567311,7 +572294,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -567324,19 +572306,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [273859] = 5, + [274845] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6520), 1, + ACTIONS(8849), 1, + anon_sym_COMMA, + STATE(6270), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(6523), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5778), 9, - anon_sym_RBRACK, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -567345,8 +572329,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5776), 27, + ACTIONS(5637), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -567357,7 +572342,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -567370,4194 +572354,4882 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [273910] = 25, + [274900] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, + ACTIONS(8851), 1, + anon_sym_RPAREN, ACTIONS(8853), 1, anon_sym_COMMA, - ACTIONS(8855), 1, - anon_sym_RBRACK, - STATE(6521), 1, + STATE(6524), 1, sym_heredoc_body, - STATE(9870), 1, + STATE(9894), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [274001] = 25, + [274991] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(5587), 1, + sym__end_of_with_expression, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8755), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8757), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8761), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8763), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8767), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8773), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8777), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8779), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8781), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(8789), 1, sym_binary_ampersand, - ACTIONS(8563), 1, - anon_sym_RPAREN, - ACTIONS(8857), 1, + ACTIONS(8845), 1, anon_sym_COMMA, STATE(6522), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(6525), 1, sym_heredoc_body, - STATE(9873), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(8765), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8771), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8775), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8759), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8769), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8785), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8787), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [274092] = 25, + [275082] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, - anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8859), 1, - anon_sym_COMMA, - ACTIONS(8861), 1, - anon_sym_RBRACK, - STATE(6523), 1, + STATE(6526), 1, sym_heredoc_body, - STATE(9881), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(5853), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5851), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [274183] = 25, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [275133] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(5631), 1, + sym__end_of_with_expression, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8755), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8757), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8761), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8763), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8767), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8773), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8777), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8779), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8781), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(8789), 1, sym_binary_ampersand, - ACTIONS(8863), 1, + ACTIONS(8847), 1, anon_sym_COMMA, - ACTIONS(8865), 1, - anon_sym_RBRACK, - STATE(6524), 1, + STATE(6523), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(6527), 1, sym_heredoc_body, - STATE(9883), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(8765), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8771), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8775), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8759), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8769), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8785), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8787), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [274274] = 25, + [275224] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(6102), 1, + anon_sym_RBRACK, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8342), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8344), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8348), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8350), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8354), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8360), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8364), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8368), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8370), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8372), 1, + sym__start_of_index_operator, + ACTIONS(8378), 1, sym_binary_ampersand, - ACTIONS(8610), 1, - anon_sym_RPAREN, - ACTIONS(8867), 1, - anon_sym_COMMA, - STATE(6525), 1, + STATE(6528), 1, sym_heredoc_body, - STATE(9886), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(6092), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8352), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8358), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(8346), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8356), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8376), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [274365] = 25, + [275313] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, - anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8869), 1, - anon_sym_COMMA, - ACTIONS(8871), 1, - anon_sym_RBRACK, - STATE(6526), 1, + ACTIONS(8855), 1, + anon_sym_of, + STATE(6529), 1, sym_heredoc_body, - STATE(9889), 1, - aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(5739), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5735), 27, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [274456] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7444), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8642), 1, - anon_sym_RPAREN, - ACTIONS(8873), 1, - anon_sym_COMMA, - STATE(6527), 1, + [275366] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6530), 1, sym_heredoc_body, - STATE(9891), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(5849), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5847), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [274547] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7444), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(7446), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8670), 1, - anon_sym_RPAREN, - ACTIONS(8875), 1, - anon_sym_COMMA, - STATE(6528), 1, + [275417] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8857), 1, + sym_regex_modifier, + STATE(6531), 1, sym_heredoc_body, - STATE(9897), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(5769), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5767), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [274638] = 25, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(7444), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - ACTIONS(8696), 1, - anon_sym_RPAREN, - ACTIONS(8877), 1, - anon_sym_COMMA, - STATE(6529), 1, + [275470] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6532), 1, sym_heredoc_body, - STATE(9899), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(7436), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(5574), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5572), 28, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [274729] = 25, + sym__string_literal_start, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + [275521] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(8879), 1, + ACTIONS(8859), 1, anon_sym_COMMA, - ACTIONS(8881), 1, + ACTIONS(8861), 1, anon_sym_RBRACK, - STATE(6530), 1, + STATE(6533), 1, sym_heredoc_body, - STATE(9902), 1, + STATE(10099), 1, aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [274820] = 25, + [275612] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(8725), 1, + ACTIONS(8863), 1, anon_sym_RPAREN, - ACTIONS(8883), 1, + ACTIONS(8865), 1, anon_sym_COMMA, - STATE(6531), 1, + STATE(6534), 1, sym_heredoc_body, - STATE(9905), 1, + STATE(10150), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [274911] = 25, + [275703] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(8749), 1, + ACTIONS(8867), 1, anon_sym_RPAREN, - ACTIONS(8885), 1, + ACTIONS(8869), 1, anon_sym_COMMA, - STATE(6532), 1, + STATE(6535), 1, sym_heredoc_body, - STATE(9907), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10151), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [275002] = 24, + [275794] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(8342), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(8344), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8348), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8350), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8354), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8360), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(8364), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(8368), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(8370), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(8372), 1, + sym__start_of_index_operator, + ACTIONS(8378), 1, sym_binary_ampersand, - STATE(241), 1, - sym__terminator, - STATE(6533), 1, + ACTIONS(8873), 1, + anon_sym_RBRACK, + STATE(6536), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(8352), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(8358), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(8871), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8346), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(8356), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8376), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [275091] = 24, + [275883] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, + STATE(6537), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6331), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_DOT, + ACTIONS(6329), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(280), 1, - sym__terminator, - STATE(6534), 1, + [275934] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6538), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(6335), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6333), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [275985] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6539), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5743), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5741), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [276036] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6540), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6339), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6337), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [275180] = 24, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [276087] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + STATE(6541), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6343), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(7765), 1, + ACTIONS(6341), 27, sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [276138] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6542), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(157), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_DOT, + ACTIONS(135), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(424), 1, - sym__terminator, - STATE(6535), 1, + [276189] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6543), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(5865), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5863), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [276240] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6544), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6122), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6120), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [276291] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6545), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6243), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6241), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [275269] = 24, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [276342] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + STATE(6546), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5553), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(7765), 1, + ACTIONS(5551), 27, sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [276393] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6547), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6462), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_DOT, + ACTIONS(6460), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + [276444] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6548), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6247), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6245), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - STATE(430), 1, - sym__terminator, - STATE(6536), 1, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [276495] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6549), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(6446), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6444), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [276546] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6550), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6351), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6349), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [276597] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6551), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5699), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5694), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [276648] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6552), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6355), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6353), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [275358] = 24, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [276699] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7765), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(248), 1, - sym__terminator, - STATE(6537), 1, + ACTIONS(8875), 1, + anon_sym_COMMA, + ACTIONS(8877), 1, + anon_sym_RBRACK, + STATE(6553), 1, sym_heredoc_body, + STATE(9924), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [275447] = 24, + [276790] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(8084), 1, + anon_sym_RBRACK, + ACTIONS(8342), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(8344), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8348), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8350), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8354), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8360), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(8364), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(8368), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(8370), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(8372), 1, + sym__start_of_index_operator, + ACTIONS(8378), 1, sym_binary_ampersand, - STATE(291), 1, - sym__terminator, - STATE(6538), 1, + STATE(6554), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(6193), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8352), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(8358), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(8346), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(8356), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8376), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [275536] = 24, + [276879] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(8086), 1, + anon_sym_RBRACK, + ACTIONS(8342), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(8344), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8348), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8350), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8354), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8360), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(8364), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(8368), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(8370), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(8372), 1, + sym__start_of_index_operator, + ACTIONS(8378), 1, sym_binary_ampersand, - STATE(485), 1, - sym__terminator, - STATE(6539), 1, + STATE(6555), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(6203), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8352), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(8358), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(8346), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(8356), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8376), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [275625] = 24, + [276968] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, + STATE(6556), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5645), 8, anon_sym_DOT_DOT, - ACTIONS(8523), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_DOT, + ACTIONS(5643), 28, + sym__start_of_index_operator, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(8545), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(488), 1, - sym__terminator, - STATE(6540), 1, + [277019] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6557), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(6255), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6253), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [277070] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8879), 1, + anon_sym_of, + STATE(6558), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5733), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5729), 27, + sym__line_break, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [275714] = 24, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [277123] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7765), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(221), 1, - sym__terminator, - STATE(6541), 1, + ACTIONS(8881), 1, + anon_sym_COMMA, + ACTIONS(8883), 1, + anon_sym_RBRACK, + STATE(6559), 1, sym_heredoc_body, + STATE(10228), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [275803] = 24, + [277214] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, + STATE(6560), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5897), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(8523), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_DOT, + ACTIONS(5895), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(272), 1, - sym__terminator, - STATE(6542), 1, + [277265] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6561), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(6303), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6301), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [277316] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6562), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5901), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5899), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [277367] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6563), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6438), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6436), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [275892] = 24, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [277418] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(8288), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8294), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8296), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8300), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8306), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(8310), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(8312), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(8314), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, sym_binary_ampersand, - STATE(497), 1, - sym__terminator, - STATE(6543), 1, + STATE(6564), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(8304), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8308), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(6092), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(8292), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(8302), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8318), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8320), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [277505] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6565), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5905), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5903), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [275981] = 24, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [277556] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + STATE(6566), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5943), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(7765), 1, + ACTIONS(5941), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [277607] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6567), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5749), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5747), 27, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [277658] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(500), 1, - sym__terminator, - STATE(6544), 1, + ACTIONS(8589), 1, + anon_sym_RPAREN, + ACTIONS(8885), 1, + anon_sym_COMMA, + STATE(6568), 1, sym_heredoc_body, + STATE(9803), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [276070] = 24, + [277749] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(5631), 1, + sym__end_of_with_expression, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(8755), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(8757), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8761), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8763), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8767), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8773), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(8777), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(8779), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(8781), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(8789), 1, sym_binary_ampersand, - STATE(222), 1, - sym__terminator, - STATE(6545), 1, + ACTIONS(8801), 1, + anon_sym_COMMA, + STATE(6569), 1, sym_heredoc_body, + STATE(6644), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(8765), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(8771), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8775), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(8759), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(8769), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8785), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8787), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [276159] = 24, + [277840] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7765), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(281), 1, - sym__terminator, - STATE(6546), 1, + ACTIONS(8887), 1, + anon_sym_RPAREN, + ACTIONS(8889), 1, + anon_sym_COMMA, + STATE(6570), 1, sym_heredoc_body, + STATE(9805), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [276248] = 24, + [277931] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, - anon_sym_QMARK, - ACTIONS(8545), 1, - anon_sym_AMP_AMP, - ACTIONS(8547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(409), 1, - sym__terminator, - STATE(6547), 1, + ACTIONS(8891), 1, + sym_regex_modifier, + STATE(6571), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(5662), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5660), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [276337] = 24, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [277984] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7765), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(410), 1, - sym__terminator, - STATE(6548), 1, + ACTIONS(8893), 1, + anon_sym_RPAREN, + ACTIONS(8895), 1, + anon_sym_COMMA, + STATE(6572), 1, sym_heredoc_body, + STATE(10067), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [276426] = 24, + [278075] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7765), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(224), 1, - sym__terminator, - STATE(6549), 1, + ACTIONS(8897), 1, + anon_sym_RPAREN, + ACTIONS(8899), 1, + anon_sym_COMMA, + STATE(6573), 1, sym_heredoc_body, + STATE(10069), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [276515] = 24, + [278166] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, - anon_sym_QMARK, - ACTIONS(8545), 1, - anon_sym_AMP_AMP, - ACTIONS(8547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(269), 1, - sym__terminator, - STATE(6550), 1, + ACTIONS(8901), 1, + anon_sym_EQ, + STATE(6574), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(5763), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5761), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [276604] = 24, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + [278219] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(5587), 1, + anon_sym_COLON2, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7765), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(8701), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(8703), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8707), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8709), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8713), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(8723), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(8725), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(8727), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(8733), 1, sym_binary_ampersand, - STATE(418), 1, - sym__terminator, - STATE(6551), 1, + ACTIONS(8903), 1, + anon_sym_COMMA, + STATE(6575), 1, sym_heredoc_body, + STATE(6582), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(8711), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(8717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(8705), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(8715), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [276693] = 24, + [278310] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(8092), 1, + anon_sym_RBRACK, + ACTIONS(8342), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(8344), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8348), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8350), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8354), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8360), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(8364), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(8368), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(8370), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(8372), 1, + sym__start_of_index_operator, + ACTIONS(8378), 1, sym_binary_ampersand, - STATE(419), 1, - sym__terminator, - STATE(6552), 1, + STATE(6576), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(5779), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8352), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(8358), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(8346), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(8356), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8376), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [276782] = 24, + [278399] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8360), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, - anon_sym_QMARK, - ACTIONS(8545), 1, - anon_sym_AMP_AMP, - ACTIONS(8547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(227), 1, - sym__terminator, - STATE(6553), 1, + ACTIONS(8372), 1, + sym__start_of_index_operator, + STATE(6577), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(8376), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6259), 7, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(6257), 20, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym_binary_ampersand, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [278460] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6578), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6267), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6265), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [276871] = 24, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [278511] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7765), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(274), 1, - sym__terminator, - STATE(6554), 1, + ACTIONS(8905), 1, + anon_sym_COMMA, + ACTIONS(8907), 1, + anon_sym_RBRACK, + STATE(6579), 1, sym_heredoc_body, + STATE(10209), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [276960] = 24, + [278602] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(8903), 1, + anon_sym_COMMA, + STATE(6580), 1, + sym_heredoc_body, + STATE(6582), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5629), 8, anon_sym_DOT_DOT, - ACTIONS(8523), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_DOT, + ACTIONS(5587), 26, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(425), 1, - sym__terminator, - STATE(6555), 1, + anon_sym_COLON2, + [278657] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8909), 1, + anon_sym_COMMA, + STATE(6581), 1, sym_heredoc_body, + STATE(6583), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(5635), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5631), 26, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [277049] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(426), 1, - sym__terminator, - STATE(6556), 1, + anon_sym_COLON2, + [278712] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8909), 1, + anon_sym_COMMA, + STATE(6582), 1, sym_heredoc_body, + STATE(6602), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(5635), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5631), 26, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + [278767] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8911), 1, + anon_sym_COMMA, + STATE(6583), 1, + sym_heredoc_body, + STATE(6602), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5641), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5637), 26, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [277138] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(229), 1, - sym__terminator, - STATE(6557), 1, + anon_sym_COLON2, + [278822] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(8372), 1, + sym__start_of_index_operator, + STATE(6584), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(6295), 8, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + ACTIONS(6293), 24, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [277227] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(288), 1, - sym__terminator, - STATE(6558), 1, + [278879] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(8372), 1, + sym__start_of_index_operator, + STATE(6585), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(6315), 8, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + ACTIONS(6313), 24, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [277316] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(432), 1, - sym__terminator, - STATE(6559), 1, + [278936] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(8360), 1, + anon_sym_AMP_STAR, + ACTIONS(8372), 1, + sym__start_of_index_operator, + STATE(6586), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(8352), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(8374), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8376), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6327), 7, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(6325), 14, + sym_binary_ampersand, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [279001] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8699), 1, + anon_sym_COMMA, + STATE(6587), 1, + sym_heredoc_body, + STATE(6599), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5629), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5587), 26, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [277405] = 24, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + [279056] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(8288), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8294), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8296), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8300), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8306), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(8310), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(8312), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(8314), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, sym_binary_ampersand, - STATE(433), 1, - sym__terminator, - STATE(6560), 1, + STATE(6588), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(8304), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8308), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(6193), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(8292), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(8302), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8320), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [277494] = 24, + [279143] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(8288), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(8290), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8294), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8296), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8300), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8306), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(8310), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(8312), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(8314), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, sym_binary_ampersand, - STATE(232), 1, - sym__terminator, - STATE(6561), 1, + STATE(6589), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(8304), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8308), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(6203), 3, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(8292), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(8302), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8320), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [277583] = 24, + [279230] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8348), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8350), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8354), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8360), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, - anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(8368), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(8370), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(8372), 1, + sym__start_of_index_operator, + ACTIONS(8378), 1, sym_binary_ampersand, - STATE(294), 1, - sym__terminator, - STATE(6562), 1, + STATE(6590), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(6442), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8352), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(8358), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(8346), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(6440), 4, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + ACTIONS(8356), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8376), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [277672] = 24, + [279313] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8348), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8350), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8354), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8360), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, - anon_sym_QMARK, - ACTIONS(8545), 1, - anon_sym_AMP_AMP, - ACTIONS(8547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(8372), 1, + sym__start_of_index_operator, + ACTIONS(8378), 1, sym_binary_ampersand, - STATE(439), 1, - sym__terminator, - STATE(6563), 1, + STATE(6591), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(8352), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(8356), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8376), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [277761] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(5817), 5, + anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5815), 8, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + [279388] = 13, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(8360), 1, + anon_sym_AMP_STAR, + ACTIONS(8372), 1, + sym__start_of_index_operator, + ACTIONS(8378), 1, sym_binary_ampersand, - STATE(440), 1, - sym__terminator, - STATE(6564), 1, + STATE(6592), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(8352), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(8374), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8376), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6263), 7, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(6261), 13, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [279455] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(8360), 1, + anon_sym_AMP_STAR, + ACTIONS(8372), 1, + sym__start_of_index_operator, + STATE(6593), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8362), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8376), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [277850] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8211), 1, + ACTIONS(5869), 7, + anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(8213), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8219), 1, - anon_sym_CARET, - ACTIONS(8223), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8233), 1, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5867), 16, + sym_binary_ampersand, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_QMARK, - ACTIONS(8235), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8237), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, + [279518] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(8348), 1, + anon_sym_PIPE, + ACTIONS(8350), 1, + anon_sym_CARET, + ACTIONS(8360), 1, + anon_sym_AMP_STAR, + ACTIONS(8372), 1, sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(8378), 1, sym_binary_ampersand, - STATE(6565), 1, + STATE(6594), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(8352), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6230), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(8215), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8225), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(8376), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [277937] = 24, + ACTIONS(6134), 6, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6132), 12, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [279589] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8348), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8350), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8354), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8360), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, - anon_sym_QMARK, - ACTIONS(8545), 1, - anon_sym_AMP_AMP, - ACTIONS(8547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(234), 1, - sym__terminator, - STATE(6566), 1, + ACTIONS(8372), 1, + sym__start_of_index_operator, + ACTIONS(8378), 1, + sym_binary_ampersand, + STATE(6595), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(6047), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8352), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(8358), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(8346), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(8356), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8376), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [278026] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(6045), 6, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(277), 1, - sym__terminator, - STATE(6567), 1, + [279668] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8913), 1, + anon_sym_COMMA, + STATE(6596), 1, sym_heredoc_body, + STATE(6601), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(5635), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5631), 26, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [278115] = 24, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + [279723] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7765), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(445), 1, - sym__terminator, - STATE(6568), 1, + ACTIONS(8915), 1, + anon_sym_COMMA, + ACTIONS(8917), 1, + anon_sym_RBRACK, + STATE(6597), 1, sym_heredoc_body, + STATE(10233), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [278204] = 24, + [279814] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8348), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8350), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8354), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8360), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, - anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(8368), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(8372), 1, + sym__start_of_index_operator, + ACTIONS(8378), 1, sym_binary_ampersand, - STATE(446), 1, - sym__terminator, - STATE(6569), 1, + STATE(6598), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(6215), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8352), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(8358), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(8346), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(8356), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8376), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [278293] = 24, + ACTIONS(6213), 5, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_PIPE_PIPE, + [279895] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(8913), 1, + anon_sym_COMMA, + STATE(6599), 1, + sym_heredoc_body, + STATE(6602), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5635), 8, anon_sym_DOT_DOT, - ACTIONS(8523), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_DOT, + ACTIONS(5631), 26, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(236), 1, - sym__terminator, - STATE(6570), 1, + anon_sym_COLON2, + [279950] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6600), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(5921), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5919), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [278382] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(285), 1, - sym__terminator, - STATE(6571), 1, + [280001] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8919), 1, + anon_sym_COMMA, + STATE(6601), 1, sym_heredoc_body, + STATE(6602), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(5641), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5637), 26, + sym__start_of_index_operator, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + [280056] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8921), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(6602), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5699), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5694), 26, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [278471] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(453), 1, - sym__terminator, - STATE(6572), 1, + anon_sym_COLON2, + [280109] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6603), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(5965), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5963), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [278560] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(454), 1, - sym__terminator, - STATE(6573), 1, + [280160] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6604), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(5927), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5925), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [278649] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(237), 1, - sym__terminator, - STATE(6574), 1, + [280211] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6605), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(6126), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6124), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [278738] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(270), 1, - sym__terminator, - STATE(6575), 1, + [280262] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6606), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(5931), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5929), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [278827] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(460), 1, - sym__terminator, - STATE(6576), 1, + [280313] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6607), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(5935), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5933), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [278916] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(461), 1, - sym__terminator, - STATE(6577), 1, + [280364] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6608), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(6363), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6361), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [279005] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8211), 1, - anon_sym_DOT_DOT, - ACTIONS(8213), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, - anon_sym_PIPE, - ACTIONS(8219), 1, anon_sym_CARET, - ACTIONS(8223), 1, - anon_sym_EQ_EQ, - ACTIONS(8229), 1, - anon_sym_AMP_STAR, - ACTIONS(8233), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8235), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8237), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, - sym_binary_ampersand, - STATE(6578), 1, + [280415] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6609), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(5708), 3, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(8215), 3, + ACTIONS(6100), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6098), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [279092] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(239), 1, - sym__terminator, - STATE(6579), 1, + [280466] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6610), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(5939), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5937), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [279181] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(273), 1, - sym__terminator, - STATE(6580), 1, + [280517] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6611), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(5993), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5991), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [279270] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(469), 1, - sym__terminator, - STATE(6581), 1, + [280568] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6612), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(6287), 9, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6285), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [279359] = 24, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(470), 1, - sym__terminator, - STATE(6582), 1, + [280619] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(8372), 1, + sym__start_of_index_operator, + STATE(6613), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(6001), 8, + anon_sym_RBRACK, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + ACTIONS(5999), 26, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [279448] = 25, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [280674] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(8887), 1, + ACTIONS(8924), 1, + anon_sym_RPAREN, + ACTIONS(8926), 1, anon_sym_COMMA, - ACTIONS(8889), 1, - anon_sym_RBRACK, - STATE(6583), 1, + STATE(6614), 1, sym_heredoc_body, - STATE(10176), 1, - aux_sym_array_repeat1, + STATE(9759), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [279539] = 25, + [280765] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5570), 1, - anon_sym_EQ_GT, - ACTIONS(7797), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8211), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8213), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8219), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8223), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8233), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8235), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8237), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(8891), 1, + ACTIONS(8928), 1, + anon_sym_RPAREN, + ACTIONS(8930), 1, anon_sym_COMMA, - STATE(6584), 1, + STATE(6615), 1, sym_heredoc_body, - STATE(6588), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(9761), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [279630] = 7, + [280856] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8891), 1, - anon_sym_COMMA, - STATE(6585), 1, + STATE(6616), 1, sym_heredoc_body, - STATE(6588), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(6005), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -571566,7 +577238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 26, + ACTIONS(6003), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -571578,7 +577250,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -571591,87 +577263,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [279685] = 25, + [280907] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5585), 1, - anon_sym_EQ_GT, - ACTIONS(7797), 1, + ACTIONS(7869), 1, anon_sym_DOT, - ACTIONS(8211), 1, - anon_sym_DOT_DOT, - ACTIONS(8213), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8217), 1, + ACTIONS(8348), 1, anon_sym_PIPE, - ACTIONS(8219), 1, + ACTIONS(8350), 1, anon_sym_CARET, - ACTIONS(8223), 1, + ACTIONS(8354), 1, anon_sym_EQ_EQ, - ACTIONS(8229), 1, + ACTIONS(8360), 1, anon_sym_AMP_STAR, - ACTIONS(8233), 1, - anon_sym_QMARK, - ACTIONS(8235), 1, + ACTIONS(8368), 1, anon_sym_AMP_AMP, - ACTIONS(8237), 1, + ACTIONS(8370), 1, anon_sym_PIPE_PIPE, - ACTIONS(8239), 1, + ACTIONS(8372), 1, sym__start_of_index_operator, - ACTIONS(8245), 1, + ACTIONS(8378), 1, sym_binary_ampersand, - ACTIONS(8893), 1, - anon_sym_COMMA, - STATE(6586), 1, + STATE(6617), 1, sym_heredoc_body, - STATE(6589), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8221), 2, + ACTIONS(6063), 2, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(8352), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8227), 2, + ACTIONS(8358), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8231), 2, + ACTIONS(8362), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8215), 3, + ACTIONS(8346), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8225), 4, + ACTIONS(6061), 4, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_RBRACK_QMARK, + ACTIONS(8356), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8241), 4, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8243), 4, + ACTIONS(8376), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [279776] = 7, + [280990] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8893), 1, - anon_sym_COMMA, - STATE(6587), 1, + STATE(6618), 1, sym_heredoc_body, - STATE(6589), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(5837), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -571680,7 +577346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 26, + ACTIONS(5835), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -571692,55 +577358,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [279831] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8893), 1, anon_sym_COMMA, - STATE(5763), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6588), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5627), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5585), 26, - sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -571753,21 +577371,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [279886] = 7, + [281041] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8895), 1, - anon_sym_COMMA, - STATE(5763), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6589), 1, + STATE(6619), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(6059), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -571776,7 +577392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5562), 26, + ACTIONS(6057), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -571788,7 +577404,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -571801,17 +577417,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [279941] = 5, + [281092] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6590), 1, + STATE(6620), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 9, + ACTIONS(6470), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -571821,7 +577438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 27, + ACTIONS(6468), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -571849,17 +577466,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [279992] = 6, + [281143] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8897), 1, - anon_sym_of, - STATE(6591), 1, + STATE(6621), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5660), 8, + ACTIONS(6383), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -571868,9 +577484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5656), 27, + ACTIONS(6381), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -571894,19 +577509,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [280045] = 6, + [281194] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8899), 1, - anon_sym_of, - STATE(6592), 1, + STATE(6622), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5728), 8, + ACTIONS(6450), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -571915,9 +577530,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5724), 27, + ACTIONS(6448), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -571941,19 +577555,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [280098] = 6, + [281245] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8901), 1, - anon_sym_of, - STATE(6593), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8932), 1, + anon_sym_COMMA, + ACTIONS(8934), 1, + anon_sym_RBRACK, + STATE(6623), 1, + sym_heredoc_body, + STATE(9840), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [281336] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6624), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5690), 8, + ACTIONS(5805), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -571962,9 +577642,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5686), 27, + ACTIONS(5803), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -571988,17 +577667,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [280151] = 5, + [281387] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6594), 1, + STATE(6625), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5854), 9, + ACTIONS(5985), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -572008,7 +577688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5852), 27, + ACTIONS(5983), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -572036,17 +577716,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [280202] = 6, + [281438] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8903), 1, - anon_sym_EQ, - STATE(6595), 1, + STATE(6626), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, + ACTIONS(5783), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -572055,9 +577734,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 27, + ACTIONS(5781), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -572081,21 +577759,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [280255] = 7, + [281489] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8905), 1, - anon_sym_COMMA, - STATE(6596), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8316), 1, + sym__start_of_index_operator, + STATE(6627), 1, sym_heredoc_body, - STATE(6598), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(6001), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -572103,10 +577782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5570), 26, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(5999), 27, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -572117,6 +577793,9 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -572131,19 +577810,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [280310] = 7, + [281544] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8907), 1, - anon_sym_COMMA, - STATE(6597), 1, + STATE(6628), 1, sym_heredoc_body, - STATE(6599), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6029), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -572152,9 +577828,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 26, + ACTIONS(6027), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -572165,6 +577840,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -572177,42 +577853,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [280365] = 7, + [281595] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8907), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8366), 1, + anon_sym_RBRACK, + ACTIONS(8936), 1, anon_sym_COMMA, - STATE(6405), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6598), 1, + STATE(6629), 1, sym_heredoc_body, + STATE(10027), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5585), 26, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [281686] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8316), 1, + sym__start_of_index_operator, + STATE(6630), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8308), 2, sym__binary_double_star, - sym_binary_ampersand, + anon_sym_AMP_STAR_STAR, + ACTIONS(8320), 4, + sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6259), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6257), 21, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym_binary_ampersand, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -572223,23 +577970,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [280420] = 7, + [281747] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8909), 1, - anon_sym_COMMA, - STATE(6405), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6599), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8316), 1, + sym__start_of_index_operator, + STATE(6631), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6295), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -572247,20 +577996,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5562), 26, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6293), 25, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -572271,151 +578019,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [280475] = 25, + [281804] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5570), 1, - sym__end_of_with_expression, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8803), 1, + ACTIONS(6063), 1, anon_sym_DOT_DOT, - ACTIONS(8805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8809), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8294), 1, anon_sym_PIPE, - ACTIONS(8811), 1, + ACTIONS(8296), 1, anon_sym_CARET, - ACTIONS(8815), 1, + ACTIONS(8300), 1, anon_sym_EQ_EQ, - ACTIONS(8821), 1, + ACTIONS(8306), 1, anon_sym_AMP_STAR, - ACTIONS(8825), 1, - anon_sym_QMARK, - ACTIONS(8827), 1, + ACTIONS(8312), 1, anon_sym_AMP_AMP, - ACTIONS(8829), 1, + ACTIONS(8314), 1, anon_sym_PIPE_PIPE, - ACTIONS(8831), 1, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(8837), 1, + ACTIONS(8322), 1, sym_binary_ampersand, - ACTIONS(8905), 1, - anon_sym_COMMA, - STATE(6598), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6600), 1, + STATE(6632), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8813), 2, + ACTIONS(8298), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8819), 2, + ACTIONS(8304), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, + ACTIONS(8308), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, + ACTIONS(8292), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8817), 4, + ACTIONS(8302), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8833), 4, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8835), 4, + ACTIONS(8320), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [280566] = 25, + ACTIONS(6061), 5, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + [281887] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5585), 1, - sym__end_of_with_expression, - ACTIONS(8007), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8803), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8805), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8809), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8811), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8815), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8821), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8825), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8827), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8829), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(8837), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(8907), 1, + ACTIONS(8938), 1, anon_sym_COMMA, - STATE(6599), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6601), 1, + ACTIONS(8940), 1, + anon_sym_RBRACK, + STATE(6633), 1, sym_heredoc_body, + STATE(9854), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8813), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8819), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8817), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8833), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8835), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [280657] = 5, + [281978] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6602), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8316), 1, + sym__start_of_index_operator, + STATE(6634), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5581), 8, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -572423,21 +578173,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5579), 28, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6313), 25, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -572448,66 +578196,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [280708] = 5, + [282035] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6603), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8316), 1, + sym__start_of_index_operator, + STATE(6635), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5872), 27, - sym__start_of_index_operator, + ACTIONS(8298), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8320), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6327), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6325), 15, + sym_binary_ampersand, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [280759] = 5, + [282100] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6604), 1, + STATE(6636), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5891), 9, + ACTIONS(6033), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -572517,7 +578270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5889), 27, + ACTIONS(6031), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -572545,19 +578298,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [280810] = 7, + [282151] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, - anon_sym_DOT, - ACTIONS(8371), 1, - sym__start_of_index_operator, - STATE(6605), 1, + STATE(6637), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5895), 8, + ACTIONS(5845), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -572566,7 +578315,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5893), 26, + anon_sym_DOT, + ACTIONS(5843), 27, + sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -572593,123 +578344,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [280865] = 21, + [282202] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8347), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8349), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8353), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8359), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8367), 1, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8369), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8371), 1, - sym__start_of_index_operator, - ACTIONS(8377), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(6606), 1, + ACTIONS(8942), 1, + anon_sym_RPAREN, + ACTIONS(8944), 1, + anon_sym_COMMA, + STATE(6638), 1, sym_heredoc_body, + STATE(10096), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5923), 2, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(8351), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8357), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8361), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8345), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5921), 4, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - ACTIONS(8355), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8373), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8375), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [280948] = 5, + [282293] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6607), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8946), 1, + anon_sym_COMMA, + ACTIONS(8948), 1, + anon_sym_RBRACK, + STATE(6639), 1, sym_heredoc_body, + STATE(10260), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5935), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5933), 27, - sym__start_of_index_operator, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [280999] = 5, + [282384] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6608), 1, + STATE(6640), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5945), 9, + ACTIONS(6086), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -572719,7 +578494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5943), 27, + ACTIONS(6084), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -572747,15 +578522,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [281050] = 5, + [282435] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6609), 1, + STATE(6641), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 9, + ACTIONS(6096), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -572765,7 +578540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5955), 27, + ACTIONS(6094), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -572793,15 +578568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [281101] = 5, + [282486] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6610), 1, + STATE(6642), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5976), 9, + ACTIONS(6454), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -572811,7 +578586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5974), 27, + ACTIONS(6452), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -572839,15 +578614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [281152] = 5, + [282537] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6611), 1, + STATE(6643), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5980), 9, + ACTIONS(6179), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -572857,7 +578632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5978), 27, + ACTIONS(6177), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -572885,16 +578660,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [281203] = 5, + [282588] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6612), 1, + ACTIONS(8950), 1, + anon_sym_COMMA, + STATE(6270), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(6644), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5984), 9, - anon_sym_RBRACK, + ACTIONS(5641), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -572903,8 +578681,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5982), 27, + ACTIONS(5637), 26, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -572915,7 +578694,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -572928,324 +578706,521 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [281254] = 5, + [282643] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6613), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, + anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(249), 1, + sym__terminator, + STATE(6645), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5996), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8631), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8619), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5994), 27, - sym__start_of_index_operator, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8645), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [282732] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8952), 1, + anon_sym_RPAREN, + ACTIONS(8954), 1, + anon_sym_COMMA, + STATE(6646), 1, + sym_heredoc_body, + STATE(10032), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [281305] = 7, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [282823] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, + ACTIONS(6442), 1, + anon_sym_DOT_DOT, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(8371), 1, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, + anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8314), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8316), 1, sym__start_of_index_operator, - STATE(6614), 1, + ACTIONS(8322), 1, + sym_binary_ampersand, + STATE(6647), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6000), 8, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(8298), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8304), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8292), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(5998), 26, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8320), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6440), 5, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [281360] = 7, + [282906] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7869), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(8371), 1, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, + anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8316), 1, sym__start_of_index_operator, - STATE(6615), 1, + ACTIONS(8322), 1, + sym_binary_ampersand, + STATE(6648), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6004), 8, - anon_sym_RBRACK, + ACTIONS(8298), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5817), 4, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6002), 26, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8320), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5815), 9, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [281415] = 6, + [282981] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7718), 1, - anon_sym_LPAREN2, - STATE(6616), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8593), 1, + anon_sym_RPAREN, + ACTIONS(8956), 1, + anon_sym_COMMA, + STATE(6649), 1, sym_heredoc_body, + STATE(9932), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(133), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [283072] = 25, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8958), 1, + anon_sym_RPAREN, + ACTIONS(8960), 1, + anon_sym_COMMA, + STATE(6650), 1, + sym_heredoc_body, + STATE(9933), 1, + aux_sym_array_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [281468] = 6, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [283163] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8911), 1, - anon_sym_EQ, - STATE(6617), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, + STATE(6651), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5668), 27, - sym__start_of_index_operator, + ACTIONS(8298), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8320), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6263), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6261), 14, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [281521] = 25, + [283230] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5570), 1, - anon_sym_COLON2, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8477), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8479), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8483), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8485), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8489), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8495), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8499), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8501), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8503), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8509), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(8913), 1, + ACTIONS(8962), 1, + anon_sym_RPAREN, + ACTIONS(8964), 1, anon_sym_COMMA, - STATE(6618), 1, + STATE(6652), 1, sym_heredoc_body, - STATE(6621), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(10180), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8487), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8493), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8491), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [281612] = 7, + [283321] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8913), 1, - anon_sym_COMMA, - STATE(6619), 1, + STATE(6653), 1, sym_heredoc_body, - STATE(6621), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5574), 8, + ACTIONS(5801), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -573254,7 +579229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5570), 26, + ACTIONS(5799), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -573266,6 +579241,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -573278,22 +579254,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [281667] = 7, + [283372] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8475), 1, - anon_sym_COMMA, - STATE(6620), 1, + STATE(6654), 1, sym_heredoc_body, - STATE(6622), 1, - aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, + ACTIONS(6110), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -573302,7 +579275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5585), 26, + ACTIONS(6108), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -573314,6 +579287,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -573326,90 +579300,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [281722] = 7, + [283423] = 24, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8475), 1, - anon_sym_COMMA, - STATE(6349), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6621), 1, + ACTIONS(5699), 1, + anon_sym_RBRACK, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(8342), 1, + anon_sym_DOT_DOT, + ACTIONS(8344), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8348), 1, + anon_sym_PIPE, + ACTIONS(8350), 1, + anon_sym_CARET, + ACTIONS(8354), 1, + anon_sym_EQ_EQ, + ACTIONS(8360), 1, + anon_sym_AMP_STAR, + ACTIONS(8364), 1, + anon_sym_QMARK, + ACTIONS(8368), 1, + anon_sym_AMP_AMP, + ACTIONS(8370), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8372), 1, + sym__start_of_index_operator, + ACTIONS(8378), 1, + sym_binary_ampersand, + STATE(6655), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5627), 8, - anon_sym_DOT_DOT, + ACTIONS(5694), 2, + anon_sym_COMMA, + anon_sym_RBRACK_QMARK, + ACTIONS(8352), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8358), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8362), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8346), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5585), 26, - sym__start_of_index_operator, + ACTIONS(8356), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8374), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8376), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [281777] = 7, + [283512] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8915), 1, - anon_sym_COMMA, - STATE(6349), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(6622), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8316), 1, + sym__start_of_index_operator, + STATE(6656), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5566), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5562), 26, - sym__start_of_index_operator, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8320), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5869), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5867), 17, + sym_binary_ampersand, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -573420,159 +579417,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [281832] = 5, + [283575] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6623), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, + anon_sym_CARET, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, + STATE(6657), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6020), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6018), 27, - sym__start_of_index_operator, + ACTIONS(8298), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8320), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6134), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6132), 13, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [281883] = 6, + [283646] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8917), 1, - sym_regex_modifier, - STATE(6624), 1, + ACTIONS(6047), 1, + anon_sym_DOT_DOT, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, + anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, + STATE(6658), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5633), 8, - anon_sym_DOT_DOT, + ACTIONS(8298), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8304), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8292), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5631), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8320), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6045), 7, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [281936] = 5, + [283725] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6625), 1, + ACTIONS(6215), 1, + anon_sym_DOT_DOT, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8294), 1, + anon_sym_PIPE, + ACTIONS(8296), 1, + anon_sym_CARET, + ACTIONS(8300), 1, + anon_sym_EQ_EQ, + ACTIONS(8306), 1, + anon_sym_AMP_STAR, + ACTIONS(8312), 1, + anon_sym_AMP_AMP, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(8322), 1, + sym_binary_ampersand, + STATE(6659), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(8298), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8304), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8308), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8292), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5528), 27, - sym__start_of_index_operator, + ACTIONS(8302), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8318), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8320), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6213), 6, + anon_sym_RBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [281987] = 5, + [283806] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6626), 1, + STATE(6660), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 9, + ACTIONS(6211), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -573582,7 +579615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 27, + ACTIONS(6209), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -573610,15 +579643,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [282038] = 5, + [283857] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6627), 1, + STATE(6661), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 9, + ACTIONS(5917), 9, anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, @@ -573628,7 +579661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 27, + ACTIONS(5915), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -573656,17 +579689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [282089] = 6, + [283908] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8919), 1, - anon_sym_of, - STATE(6628), 1, + STATE(6662), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5728), 8, + ACTIONS(6144), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -573675,8 +579707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5724), 27, - sym__line_break, + ACTIONS(6142), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -573688,7 +579719,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -573701,17 +579732,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [282142] = 5, + [283959] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6629), 1, + STATE(6663), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5520), 8, + ACTIONS(6367), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -573720,7 +579753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5518), 28, + ACTIONS(6365), 27, sym__start_of_index_operator, sym_binary_plus, sym_binary_minus, @@ -573732,7 +579765,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - sym__string_literal_start, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -573746,155 +579778,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [282193] = 5, + [284010] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6630), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5536), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, + ACTIONS(5631), 1, + anon_sym_COLON2, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(5534), 28, + ACTIONS(7404), 1, sym__start_of_index_operator, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - sym__string_literal_start, - anon_sym_COMMA, + ACTIONS(8701), 1, + anon_sym_DOT_DOT, + ACTIONS(8703), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8707), 1, + anon_sym_PIPE, + ACTIONS(8709), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(8713), 1, + anon_sym_EQ_EQ, + ACTIONS(8719), 1, + anon_sym_AMP_STAR, + ACTIONS(8723), 1, anon_sym_QMARK, + ACTIONS(8725), 1, anon_sym_AMP_AMP, + ACTIONS(8727), 1, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [282244] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6631), 1, + ACTIONS(8733), 1, + sym_binary_ampersand, + ACTIONS(8909), 1, + anon_sym_COMMA, + STATE(6583), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(6664), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6344), 9, - anon_sym_RBRACK, - anon_sym_DOT_DOT, + ACTIONS(8711), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8717), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8721), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8705), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6342), 27, - sym__start_of_index_operator, + ACTIONS(8715), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8731), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [284101] = 24, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, anon_sym_QMARK, - anon_sym_RBRACK_QMARK, + ACTIONS(8639), 1, anon_sym_AMP_AMP, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - [282295] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6632), 1, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(275), 1, + sym__terminator, + STATE(6665), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5984), 8, - anon_sym_DOT_DOT, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8631), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8619), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5982), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8645), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [282345] = 5, + [284190] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6633), 1, + STATE(6666), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5862), 8, + ACTIONS(6371), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -573903,9 +579930,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5860), 27, + ACTIONS(6369), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -573929,17 +579955,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [282395] = 5, + [284241] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6634), 1, + STATE(6667), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6216), 8, + ACTIONS(5955), 9, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -573948,9 +579976,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6214), 27, + ACTIONS(5953), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -573974,111 +580001,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [282445] = 9, + [284292] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8921), 1, - sym_identifier, - ACTIONS(8923), 1, - anon_sym_LBRACK, - ACTIONS(8929), 1, - sym_identifier_method_call, - STATE(1982), 1, - sym__operator_token, - STATE(6635), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + ACTIONS(8966), 1, + anon_sym_COMMA, + ACTIONS(8968), 1, + anon_sym_RBRACK, + STATE(6668), 1, sym_heredoc_body, + STATE(10056), 1, + aux_sym_array_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8925), 10, - anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, - anon_sym_AMP_STAR, - ACTIONS(8927), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR_STAR, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_LBRACK_RBRACK_QMARK, - anon_sym_LBRACK_RBRACK_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_PLUS, - anon_sym_AMP_DASH, + ACTIONS(7459), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - [282503] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6636), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5866), 8, - anon_sym_DOT_DOT, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5864), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [282553] = 5, + [284383] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6637), 1, + ACTIONS(7869), 1, + anon_sym_DOT, + ACTIONS(8372), 1, + sym__start_of_index_operator, + STATE(6669), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6152), 8, + anon_sym_RBRACK, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -574086,10 +580091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6354), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6150), 26, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -574113,143 +580115,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_RBRACK_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [282603] = 23, + [284438] = 25, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(5631), 1, + anon_sym_COLON2, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8701), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8703), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8707), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8709), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8713), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8723), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8725), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8727), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8733), 1, sym_binary_ampersand, - STATE(6638), 1, + ACTIONS(8913), 1, + anon_sym_COMMA, + STATE(6601), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(6670), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(8711), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8931), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7424), 3, + ACTIONS(8705), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8715), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [282689] = 23, + [284529] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(8477), 1, - anon_sym_DOT_DOT, - ACTIONS(8479), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8483), 1, + ACTIONS(8761), 1, anon_sym_PIPE, - ACTIONS(8485), 1, + ACTIONS(8763), 1, anon_sym_CARET, - ACTIONS(8489), 1, - anon_sym_EQ_EQ, - ACTIONS(8495), 1, + ACTIONS(8773), 1, anon_sym_AMP_STAR, - ACTIONS(8499), 1, - anon_sym_QMARK, - ACTIONS(8501), 1, - anon_sym_AMP_AMP, - ACTIONS(8503), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8509), 1, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(8789), 1, sym_binary_ampersand, - STATE(6639), 1, + STATE(6671), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 2, - anon_sym_COMMA, - anon_sym_COLON2, - ACTIONS(8487), 2, + ACTIONS(8765), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8493), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, + ACTIONS(8775), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, + ACTIONS(8785), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8787), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6134), 5, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8491), 4, + ACTIONS(6132), 12, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [284599] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6672), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6243), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6241), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [282775] = 5, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [284649] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6640), 1, + STATE(6673), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5834), 8, + ACTIONS(6351), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -574258,7 +580301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5832), 27, + ACTIONS(6349), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -574286,15 +580329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [282825] = 5, + [284699] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6641), 1, + STATE(6674), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(5845), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -574303,7 +580346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 27, + ACTIONS(5843), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -574331,66 +580374,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [282875] = 11, + [284749] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(6047), 1, + anon_sym_DOT_DOT, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7765), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(8539), 1, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, + anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - STATE(6642), 1, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(6675), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8541), 2, + ACTIONS(8625), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8631), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8549), 4, + ACTIONS(8619), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6090), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6088), 16, + ACTIONS(6045), 6, sym__line_break, - sym_binary_ampersand, anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [282937] = 5, + [284827] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6643), 1, + STATE(6676), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5899), 8, + ACTIONS(6418), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -574399,7 +580450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5897), 27, + ACTIONS(6416), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -574427,37 +580478,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [282987] = 5, + [284877] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6644), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(8701), 1, + anon_sym_DOT_DOT, + ACTIONS(8703), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8707), 1, + anon_sym_PIPE, + ACTIONS(8709), 1, + anon_sym_CARET, + ACTIONS(8713), 1, + anon_sym_EQ_EQ, + ACTIONS(8719), 1, + anon_sym_AMP_STAR, + ACTIONS(8723), 1, + anon_sym_QMARK, + ACTIONS(8725), 1, + anon_sym_AMP_AMP, + ACTIONS(8727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8733), 1, + sym_binary_ampersand, + STATE(6677), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5713), 8, - anon_sym_DOT_DOT, + ACTIONS(5694), 2, + anon_sym_COMMA, + anon_sym_COLON2, + ACTIONS(8711), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8717), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8721), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8705), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, + ACTIONS(8715), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8729), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8731), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [284963] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(5708), 27, + ACTIONS(7830), 1, sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + STATE(6678), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8645), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + ACTIONS(5869), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5867), 16, + sym__line_break, + sym_binary_ampersand, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -574468,74 +580589,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [283037] = 15, + [285025] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7765), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8527), 1, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8539), 1, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8553), 1, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(6645), 1, + STATE(6679), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8531), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8541), 2, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8549), 4, + ACTIONS(8970), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6094), 5, - anon_sym_DOT_DOT, + [285111] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8972), 1, + sym_identifier, + ACTIONS(8974), 1, + anon_sym_LBRACK, + ACTIONS(8980), 1, + sym_identifier_method_call, + STATE(1986), 1, + sym__operator_token, + STATE(6680), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8976), 10, anon_sym_LT, + anon_sym_STAR, + anon_sym_SLASH2, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6092), 12, - sym__line_break, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(8978), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, + anon_sym_LBRACK_RBRACK_QMARK, + anon_sym_LBRACK_RBRACK_EQ, + anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [283107] = 5, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, + anon_sym_AMP_STAR_STAR, + [285169] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6646), 1, + STATE(6681), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5919), 8, + ACTIONS(6422), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -574544,7 +580721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5917), 27, + ACTIONS(6420), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -574572,15 +580749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [283157] = 5, + [285219] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6647), 1, + STATE(6682), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5927), 8, + ACTIONS(5783), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -574589,7 +580766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5925), 27, + ACTIONS(5781), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -574617,17 +580794,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [283207] = 6, + [285269] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8933), 1, - anon_sym_of, - STATE(6648), 1, + STATE(6683), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5719), 8, + ACTIONS(6255), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -574636,7 +580811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5715), 26, + ACTIONS(6253), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -574649,6 +580824,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -574663,15 +580839,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [283259] = 5, + [285319] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6649), 1, + STATE(6684), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5931), 8, + ACTIONS(6363), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -574680,7 +580856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5929), 27, + ACTIONS(6361), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -574708,15 +580884,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [283309] = 5, + [285369] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6650), 1, + STATE(6685), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5664), 8, + ACTIONS(6454), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -574725,7 +580901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5662), 27, + ACTIONS(6452), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -574753,15 +580929,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [283359] = 5, + [285419] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6651), 1, + STATE(6686), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6308), 8, + ACTIONS(6466), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -574770,7 +580946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6306), 27, + ACTIONS(6464), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -574798,78 +580974,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [283409] = 23, + [285469] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(6652), 1, + STATE(6687), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8935), 2, - anon_sym_RBRACE, + ACTIONS(8982), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [283495] = 5, + [285555] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6653), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + STATE(6688), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8984), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [285641] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6689), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(6406), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -574878,7 +581117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 27, + ACTIONS(6404), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -574906,19 +581145,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [283545] = 7, + [285691] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8831), 1, - sym__start_of_index_operator, - STATE(6654), 1, + STATE(6690), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6000), 7, + ACTIONS(6201), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -574926,7 +581161,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5998), 26, + anon_sym_DOT, + ACTIONS(6199), 27, + sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, @@ -574953,125 +581190,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [283599] = 21, + [285741] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6242), 1, + ACTIONS(6215), 1, anon_sym_DOT_DOT, - ACTIONS(7613), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7765), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(8527), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(8545), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - STATE(6655), 1, + STATE(6691), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8531), 2, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6240), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(8535), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [283681] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8937), 1, - sym_identifier, - ACTIONS(8939), 1, - anon_sym_LBRACK, - ACTIONS(8945), 1, - sym_identifier_method_call, - STATE(1968), 1, - sym__operator_token, - STATE(6656), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8941), 10, - anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, - anon_sym_AMP_STAR, - ACTIONS(8943), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_LBRACK_RBRACK_QMARK, - anon_sym_LBRACK_RBRACK_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_PLUS, - anon_sym_AMP_DASH, - anon_sym_AMP_STAR_STAR, - [283739] = 5, + ACTIONS(6213), 5, + sym__line_break, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + [285821] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6657), 1, + STATE(6692), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5530), 8, + ACTIONS(6323), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -575080,7 +581267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5528), 27, + ACTIONS(6321), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -575108,15 +581295,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [283789] = 5, + [285871] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6658), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + STATE(6693), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8986), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [285957] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6694), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6020), 8, + ACTIONS(5881), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -575125,7 +581375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6018), 27, + ACTIONS(5879), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -575153,15 +581403,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [283839] = 5, + [286007] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6659), 1, + ACTIONS(8988), 1, + anon_sym_of, + STATE(6695), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6036), 8, + ACTIONS(5733), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -575170,7 +581422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6034), 27, + ACTIONS(5729), 26, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -575183,7 +581435,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -575198,15 +581449,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [283889] = 5, + [286059] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6660), 1, + STATE(6696), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6362), 8, + ACTIONS(6023), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -575215,7 +581466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6360), 27, + ACTIONS(6021), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -575243,15 +581494,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [283939] = 5, + [286109] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6661), 1, + STATE(6697), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6040), 8, + ACTIONS(6426), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -575260,7 +581511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6038), 27, + ACTIONS(6424), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -575288,60 +581539,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [283989] = 5, + [286159] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6662), 1, + ACTIONS(8990), 1, + sym_identifier, + ACTIONS(8992), 1, + anon_sym_LBRACK, + ACTIONS(8998), 1, + sym_identifier_method_call, + STATE(1950), 1, + sym__operator_token, + STATE(6698), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6044), 8, - anon_sym_DOT_DOT, + ACTIONS(8994), 10, anon_sym_LT, - anon_sym_PIPE, + anon_sym_STAR, + anon_sym_SLASH2, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6042), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + ACTIONS(8996), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_GT_GT, anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, + anon_sym_LBRACK_RBRACK_QMARK, + anon_sym_LBRACK_RBRACK_EQ, + anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [284039] = 5, + [286217] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6663), 1, + STATE(6699), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6060), 8, + ACTIONS(6037), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -575350,7 +581605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6058), 27, + ACTIONS(6035), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -575378,17 +581633,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [284089] = 6, + [286267] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8947), 1, - anon_sym_of, - STATE(6664), 1, + STATE(6700), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5728), 8, + ACTIONS(6347), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -575397,7 +581650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5724), 26, + ACTIONS(6345), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -575410,6 +581663,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -575424,64 +581678,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [284141] = 9, + [286317] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8949), 1, - sym_identifier, - ACTIONS(8951), 1, - anon_sym_LBRACK, - ACTIONS(8957), 1, - sym_identifier_method_call, - STATE(1961), 1, - sym__operator_token, - STATE(6665), 1, + ACTIONS(6063), 1, + anon_sym_DOT_DOT, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, + anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(6701), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8953), 10, - anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, - anon_sym_AMP_STAR, - ACTIONS(8955), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR_STAR, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8619), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6061), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, - anon_sym_LBRACK_RBRACK_QMARK, - anon_sym_LBRACK_RBRACK_EQ, - anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_PLUS, - anon_sym_AMP_DASH, - anon_sym_AMP_STAR_STAR, - [284199] = 5, + ACTIONS(8643), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8645), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [286399] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6666), 1, + STATE(6702), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6156), 8, + ACTIONS(6430), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -575490,7 +581756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6154), 27, + ACTIONS(6428), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -575518,15 +581784,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [284249] = 5, + [286449] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6667), 1, + STATE(6703), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6008), 8, + ACTIONS(6055), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -575535,7 +581801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6006), 27, + ACTIONS(6053), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -575563,15 +581829,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [284299] = 5, + [286499] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6668), 1, + STATE(6704), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, + ACTIONS(6434), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -575580,7 +581846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6104), 27, + ACTIONS(6432), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -575608,189 +581874,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [284349] = 5, + [286549] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6669), 1, + ACTIONS(5977), 1, + anon_sym_DOT_DOT, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8761), 1, + anon_sym_PIPE, + ACTIONS(8763), 1, + anon_sym_CARET, + ACTIONS(8767), 1, + anon_sym_EQ_EQ, + ACTIONS(8773), 1, + anon_sym_AMP_STAR, + ACTIONS(8779), 1, + anon_sym_AMP_AMP, + ACTIONS(8781), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(8789), 1, + sym_binary_ampersand, + STATE(6705), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6106), 8, - anon_sym_DOT_DOT, + ACTIONS(8765), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8771), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8775), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8759), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6104), 27, - sym__start_of_index_operator, + ACTIONS(5975), 4, sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(8769), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8785), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8787), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [286631] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8755), 1, + anon_sym_DOT_DOT, + ACTIONS(8757), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8761), 1, + anon_sym_PIPE, + ACTIONS(8763), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(8767), 1, + anon_sym_EQ_EQ, + ACTIONS(8773), 1, + anon_sym_AMP_STAR, + ACTIONS(8777), 1, anon_sym_QMARK, + ACTIONS(8779), 1, anon_sym_AMP_AMP, + ACTIONS(8781), 1, anon_sym_PIPE_PIPE, - [284399] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6670), 1, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(8789), 1, + sym_binary_ampersand, + STATE(6706), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6012), 8, - anon_sym_DOT_DOT, + ACTIONS(6092), 2, + sym__end_of_with_expression, + anon_sym_COMMA, + ACTIONS(8765), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8771), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8775), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8759), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6010), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8769), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8785), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8787), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [286717] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8755), 1, + anon_sym_DOT_DOT, + ACTIONS(8757), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8761), 1, + anon_sym_PIPE, + ACTIONS(8763), 1, anon_sym_CARET, + ACTIONS(8767), 1, + anon_sym_EQ_EQ, + ACTIONS(8773), 1, + anon_sym_AMP_STAR, + ACTIONS(8777), 1, + anon_sym_QMARK, + ACTIONS(8779), 1, + anon_sym_AMP_AMP, + ACTIONS(8781), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(8789), 1, + sym_binary_ampersand, + STATE(6707), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6193), 2, + sym__end_of_with_expression, + anon_sym_COMMA, + ACTIONS(8765), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8771), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8775), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8759), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8769), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [284449] = 23, + ACTIONS(8785), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8787), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [286803] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, + ACTIONS(8755), 1, anon_sym_DOT_DOT, - ACTIONS(8523), 1, + ACTIONS(8757), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8761), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8763), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8767), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8773), 1, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + ACTIONS(8777), 1, anon_sym_QMARK, - ACTIONS(8545), 1, + ACTIONS(8779), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, + ACTIONS(8781), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(8789), 1, sym_binary_ampersand, - STATE(6671), 1, + STATE(6708), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6010), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, + ACTIONS(6203), 2, + sym__end_of_with_expression, + anon_sym_COMMA, + ACTIONS(8765), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(8771), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8775), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(8759), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(8769), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8785), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8787), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [284535] = 5, + [286889] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6672), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8773), 1, + anon_sym_AMP_STAR, + ACTIONS(8783), 1, + sym__start_of_index_operator, + STATE(6709), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6024), 8, + ACTIONS(8775), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8787), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6259), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6022), 27, - sym__start_of_index_operator, + ACTIONS(6257), 20, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -575802,19 +582171,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [284585] = 5, + [286949] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6673), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8783), 1, + sym__start_of_index_operator, + STATE(6710), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6110), 8, + ACTIONS(8775), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6295), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -575822,16 +582197,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6108), 27, - sym__start_of_index_operator, + ACTIONS(6293), 24, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -575847,19 +582219,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [284635] = 5, + [287005] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6674), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8783), 1, + sym__start_of_index_operator, + STATE(6711), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6316), 8, + ACTIONS(8775), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -575867,16 +582245,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6314), 27, - sym__start_of_index_operator, + ACTIONS(6313), 24, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -575892,477 +582267,474 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [284685] = 5, + [287061] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6675), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8773), 1, + anon_sym_AMP_STAR, + ACTIONS(8783), 1, + sym__start_of_index_operator, + STATE(6712), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6138), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6136), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8765), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8775), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8785), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8787), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(6327), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6325), 14, + sym__end_of_with_expression, + sym_binary_ampersand, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [284735] = 23, + [287125] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(6676), 1, + STATE(6713), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8959), 2, + ACTIONS(9000), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(7424), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [284821] = 23, + [287211] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(6442), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8761), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8763), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8767), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8773), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8779), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8781), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(8789), 1, sym_binary_ampersand, - STATE(6677), 1, + STATE(6714), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(8765), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8771), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8775), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8961), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7424), 3, + ACTIONS(8759), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(6440), 4, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(8769), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8785), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8787), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [284907] = 9, + [287293] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8963), 1, - sym_identifier, - ACTIONS(8965), 1, - anon_sym_LBRACK, - ACTIONS(8971), 1, - sym_identifier_method_call, - STATE(1953), 1, - sym__operator_token, - STATE(6678), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8761), 1, + anon_sym_PIPE, + ACTIONS(8763), 1, + anon_sym_CARET, + ACTIONS(8767), 1, + anon_sym_EQ_EQ, + ACTIONS(8773), 1, + anon_sym_AMP_STAR, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(8789), 1, + sym_binary_ampersand, + STATE(6715), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8967), 10, + ACTIONS(8765), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8775), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5817), 4, + anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, - anon_sym_AMP_STAR, - ACTIONS(8969), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_GT_GT, - anon_sym_LT_LT, + ACTIONS(8769), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, - anon_sym_LBRACK_RBRACK_QMARK, - anon_sym_LBRACK_RBRACK_EQ, - anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_PLUS, - anon_sym_AMP_DASH, - anon_sym_AMP_STAR_STAR, - [284965] = 9, + ACTIONS(8785), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8787), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5815), 8, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [287367] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8951), 1, - anon_sym_LBRACK, - ACTIONS(8957), 1, - sym_identifier_method_call, - ACTIONS(8973), 1, - sym_identifier, - STATE(1961), 1, - sym__operator_token, - STATE(6679), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8773), 1, + anon_sym_AMP_STAR, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(8789), 1, + sym_binary_ampersand, + STATE(6716), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8953), 10, + ACTIONS(8765), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8775), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8785), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8787), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6263), 6, + anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, - anon_sym_AMP_STAR, - ACTIONS(8955), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(6261), 13, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, - anon_sym_LBRACK_RBRACK_QMARK, - anon_sym_LBRACK_RBRACK_EQ, - anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_PLUS, - anon_sym_AMP_DASH, - anon_sym_AMP_STAR_STAR, - [285023] = 23, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [287433] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(8477), 1, - anon_sym_DOT_DOT, - ACTIONS(8479), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8483), 1, - anon_sym_PIPE, - ACTIONS(8485), 1, - anon_sym_CARET, - ACTIONS(8489), 1, - anon_sym_EQ_EQ, - ACTIONS(8495), 1, + ACTIONS(8773), 1, anon_sym_AMP_STAR, - ACTIONS(8499), 1, - anon_sym_QMARK, - ACTIONS(8501), 1, - anon_sym_AMP_AMP, - ACTIONS(8503), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8509), 1, - sym_binary_ampersand, - STATE(6680), 1, + ACTIONS(8783), 1, + sym__start_of_index_operator, + STATE(6717), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6144), 2, - anon_sym_COMMA, - anon_sym_COLON2, - ACTIONS(8487), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8493), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, + ACTIONS(8775), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8491), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + ACTIONS(8785), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8787), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [285109] = 23, + ACTIONS(5869), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5867), 16, + sym__end_of_with_expression, + sym_binary_ampersand, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [287495] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(8477), 1, + ACTIONS(6047), 1, anon_sym_DOT_DOT, - ACTIONS(8479), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8483), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8761), 1, anon_sym_PIPE, - ACTIONS(8485), 1, + ACTIONS(8763), 1, anon_sym_CARET, - ACTIONS(8489), 1, + ACTIONS(8767), 1, anon_sym_EQ_EQ, - ACTIONS(8495), 1, + ACTIONS(8773), 1, anon_sym_AMP_STAR, - ACTIONS(8499), 1, - anon_sym_QMARK, - ACTIONS(8501), 1, - anon_sym_AMP_AMP, - ACTIONS(8503), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8509), 1, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(8789), 1, sym_binary_ampersand, - STATE(6681), 1, + STATE(6718), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6152), 2, - anon_sym_COMMA, - anon_sym_COLON2, - ACTIONS(8487), 2, + ACTIONS(8765), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8493), 2, + ACTIONS(8771), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, + ACTIONS(8775), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, + ACTIONS(8759), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8491), 4, + ACTIONS(8769), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + ACTIONS(8785), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8787), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [285195] = 23, + ACTIONS(6045), 6, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [287573] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(6215), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8761), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8763), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8767), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8773), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8779), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(8789), 1, sym_binary_ampersand, - STATE(6682), 1, + STATE(6719), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(8765), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8771), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8775), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8975), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7424), 3, + ACTIONS(8759), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8769), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8785), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8787), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [285281] = 5, + ACTIONS(6213), 5, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + [287653] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6683), 1, + STATE(6720), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6134), 8, + ACTIONS(5685), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -576371,9 +582743,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6132), 27, + ACTIONS(5683), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -576399,15 +582770,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [285331] = 5, + anon_sym_COLON2, + [287703] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6684), 1, + ACTIONS(5981), 1, + anon_sym_DOT_DOT, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8761), 1, + anon_sym_PIPE, + ACTIONS(8763), 1, + anon_sym_CARET, + ACTIONS(8767), 1, + anon_sym_EQ_EQ, + ACTIONS(8773), 1, + anon_sym_AMP_STAR, + ACTIONS(8779), 1, + anon_sym_AMP_AMP, + ACTIONS(8781), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(8789), 1, + sym_binary_ampersand, + STATE(6721), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8765), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8771), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8775), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8759), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5979), 4, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(8769), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8785), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8787), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [287785] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6722), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6320), 8, + ACTIONS(157), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -576416,7 +582849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6318), 27, + ACTIONS(135), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -576444,190 +582877,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [285381] = 23, + [287835] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8755), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8757), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8761), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8763), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8767), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8773), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8777), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8779), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8781), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(8789), 1, sym_binary_ampersand, - STATE(6685), 1, + STATE(6723), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(5779), 2, + sym__end_of_with_expression, + anon_sym_COMMA, + ACTIONS(8765), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8771), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8775), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8977), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7424), 3, + ACTIONS(8759), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8769), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8785), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8787), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [285467] = 23, + [287921] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8755), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8757), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8761), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8763), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8767), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8773), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8777), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8779), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8781), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(8789), 1, sym_binary_ampersand, - STATE(6686), 1, + STATE(6724), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(5825), 2, + sym__end_of_with_expression, + anon_sym_COMMA, + ACTIONS(8765), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8771), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8775), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8979), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7424), 3, + ACTIONS(8759), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8769), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8785), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8787), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [285553] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8981), 1, - sym_identifier, - ACTIONS(8983), 1, - anon_sym_LBRACK, - ACTIONS(8989), 1, - sym_identifier_method_call, - STATE(1985), 1, - sym__operator_token, - STATE(6687), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8985), 10, - anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, - anon_sym_AMP_STAR, - ACTIONS(8987), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_LBRACK_RBRACK_QMARK, - anon_sym_LBRACK_RBRACK_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_PLUS, - anon_sym_AMP_DASH, - anon_sym_AMP_STAR_STAR, - [285611] = 5, + [288007] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6688), 1, + STATE(6725), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6268), 8, + ACTIONS(5849), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -576636,7 +583020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6266), 27, + ACTIONS(5847), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -576664,15 +583048,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [285661] = 5, + [288057] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6689), 1, + STATE(6726), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5957), 8, + ACTIONS(5865), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -576681,7 +583065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5955), 27, + ACTIONS(5863), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -576709,150 +583093,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [285711] = 5, + [288107] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6690), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6238), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(6236), 27, + ACTIONS(7404), 1, sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, anon_sym_QMARK, + ACTIONS(7463), 1, anon_sym_AMP_AMP, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - [285761] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6691), 1, + ACTIONS(7471), 1, + sym_binary_ampersand, + STATE(6727), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5945), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5943), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(7459), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [285811] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6692), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6320), 8, - anon_sym_DOT_DOT, + ACTIONS(8871), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6318), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [285861] = 5, + [288193] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6693), 1, + STATE(6728), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6164), 8, + ACTIONS(6303), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -576861,7 +583173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6162), 27, + ACTIONS(6301), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -576889,60 +583201,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [285911] = 5, + [288243] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6694), 1, + ACTIONS(9002), 1, + sym_identifier, + ACTIONS(9004), 1, + anon_sym_LBRACK, + ACTIONS(9010), 1, + sym_identifier_method_call, + STATE(1960), 1, + sym__operator_token, + STATE(6729), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5880), 8, - anon_sym_DOT_DOT, + ACTIONS(9006), 10, anon_sym_LT, - anon_sym_PIPE, + anon_sym_STAR, + anon_sym_SLASH2, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5878), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + ACTIONS(9008), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_GT_GT, anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, + anon_sym_LBRACK_RBRACK_QMARK, + anon_sym_LBRACK_RBRACK_EQ, + anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [285961] = 5, + [288301] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6695), 1, + STATE(6730), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6168), 8, + ACTIONS(5645), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -576951,9 +583267,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6166), 27, + ACTIONS(5643), 27, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -576979,15 +583294,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [286011] = 5, + anon_sym_COLON2, + [288351] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6696), 1, + STATE(6731), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5581), 8, + ACTIONS(6291), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -576996,8 +583312,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5579), 27, + ACTIONS(6289), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -577023,16 +583340,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [286061] = 5, + [288401] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6697), 1, + STATE(6732), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5770), 8, + ACTIONS(6331), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -577041,7 +583357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5768), 27, + ACTIONS(6329), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -577069,15 +583385,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [286111] = 5, + [288451] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6698), 1, + STATE(6733), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5782), 8, + ACTIONS(5943), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -577086,7 +583402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5780), 27, + ACTIONS(5941), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -577114,15 +583430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [286161] = 5, + [288501] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6699), 1, + STATE(6734), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5786), 8, + ACTIONS(6071), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -577131,7 +583447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5784), 27, + ACTIONS(6069), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -577159,15 +583475,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [286211] = 5, + [288551] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6700), 1, + STATE(6735), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5790), 8, + ACTIONS(6335), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -577176,7 +583492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5788), 27, + ACTIONS(6333), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -577204,15 +583520,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [286261] = 5, + [288601] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6701), 1, + ACTIONS(9012), 1, + anon_sym_EQ, + STATE(6736), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5794), 8, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -577221,9 +583539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5792), 27, + ACTIONS(5761), 26, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -577234,7 +583551,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -577249,15 +583565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [286311] = 5, + anon_sym_COLON2, + [288653] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6702), 1, + STATE(6737), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5798), 8, + ACTIONS(5993), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -577266,7 +583583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5796), 27, + ACTIONS(5991), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -577294,15 +583611,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [286361] = 5, + [288703] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6703), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8783), 1, + sym__start_of_index_operator, + STATE(6738), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5806), 8, + ACTIONS(6001), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -577310,9 +583631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5804), 27, - sym__start_of_index_operator, + ACTIONS(5999), 26, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, @@ -577339,15 +583658,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [286411] = 5, + [288757] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6704), 1, + STATE(6739), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5814), 8, + ACTIONS(6160), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -577356,7 +583675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5812), 27, + ACTIONS(6158), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -577384,15 +583703,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [286461] = 5, + [288807] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6705), 1, + STATE(6740), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5822), 8, + ACTIONS(6171), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -577401,7 +583720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5820), 27, + ACTIONS(6169), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -577429,15 +583748,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [286511] = 5, + [288857] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6706), 1, + STATE(6741), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5830), 8, + ACTIONS(6187), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -577446,7 +583765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5828), 27, + ACTIONS(6185), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -577474,15 +583793,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [286561] = 5, + [288907] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6707), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, + anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(6742), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6092), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8631), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8619), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8643), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8645), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [288993] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6743), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5842), 8, + ACTIONS(6211), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -577491,7 +583873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5840), 27, + ACTIONS(6209), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -577519,15 +583901,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [286611] = 5, + [289043] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6708), 1, + STATE(6744), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5870), 8, + ACTIONS(6359), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -577536,7 +583918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5868), 27, + ACTIONS(6357), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -577564,60 +583946,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [286661] = 5, + [289093] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6709), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, + anon_sym_CARET, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(6745), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5903), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5901), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8625), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8645), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + ACTIONS(6134), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6132), 12, + sym__line_break, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [286711] = 5, + [289163] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6710), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + STATE(6746), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5907), 8, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8871), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [289249] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6747), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5985), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -577626,7 +584081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5905), 27, + ACTIONS(5983), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -577654,60 +584109,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [286761] = 5, + [289299] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6711), 1, + ACTIONS(9004), 1, + anon_sym_LBRACK, + ACTIONS(9010), 1, + sym_identifier_method_call, + ACTIONS(9014), 1, + sym_identifier, + STATE(1960), 1, + sym__operator_token, + STATE(6748), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5654), 8, - anon_sym_DOT_DOT, + ACTIONS(9006), 10, anon_sym_LT, - anon_sym_PIPE, + anon_sym_STAR, + anon_sym_SLASH2, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, anon_sym_AMP_STAR, + ACTIONS(9008), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_LBRACK_RBRACK_QMARK, + anon_sym_LBRACK_RBRACK_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, + anon_sym_AMP_STAR_STAR, + [289357] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(5652), 27, + ACTIONS(8755), 1, + anon_sym_DOT_DOT, + ACTIONS(8757), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8761), 1, + anon_sym_PIPE, + ACTIONS(8763), 1, + anon_sym_CARET, + ACTIONS(8767), 1, + anon_sym_EQ_EQ, + ACTIONS(8773), 1, + anon_sym_AMP_STAR, + ACTIONS(8777), 1, + anon_sym_QMARK, + ACTIONS(8779), 1, + anon_sym_AMP_AMP, + ACTIONS(8781), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8783), 1, sym__start_of_index_operator, + ACTIONS(8789), 1, + sym_binary_ampersand, + STATE(6749), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5923), 2, + sym__end_of_with_expression, + anon_sym_COMMA, + ACTIONS(8765), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8771), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8775), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8759), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8769), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8785), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8787), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + [289443] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8755), 1, + anon_sym_DOT_DOT, + ACTIONS(8757), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8761), 1, + anon_sym_PIPE, + ACTIONS(8763), 1, anon_sym_CARET, + ACTIONS(8767), 1, + anon_sym_EQ_EQ, + ACTIONS(8773), 1, + anon_sym_AMP_STAR, + ACTIONS(8777), 1, + anon_sym_QMARK, + ACTIONS(8779), 1, + anon_sym_AMP_AMP, + ACTIONS(8781), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(8789), 1, + sym_binary_ampersand, + STATE(6750), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5773), 2, + sym__end_of_with_expression, + anon_sym_COMMA, + ACTIONS(8765), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8771), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + ACTIONS(8775), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8759), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8769), 4, + anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [286811] = 5, + ACTIONS(8785), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8787), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [289529] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6712), 1, + STATE(6751), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5911), 8, + ACTIONS(6029), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -577716,7 +584301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5909), 27, + ACTIONS(6027), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -577744,15 +584329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [286861] = 5, + [289579] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6713), 1, + STATE(6752), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5915), 8, + ACTIONS(6355), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -577761,7 +584346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5913), 27, + ACTIONS(6353), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -577789,78 +584374,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [286911] = 23, + [289629] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, - anon_sym_QMARK, - ACTIONS(8545), 1, - anon_sym_AMP_AMP, - ACTIONS(8547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(6714), 1, + STATE(6753), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6256), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(5833), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5831), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [286997] = 5, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [289679] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6715), 1, + STATE(6754), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6328), 8, + ACTIONS(6033), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -577869,7 +584436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6326), 27, + ACTIONS(6031), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -577897,15 +584464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287047] = 5, + [289729] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6716), 1, + STATE(6755), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5968), 8, + ACTIONS(6086), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -577914,7 +584481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5966), 27, + ACTIONS(6084), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -577942,15 +584509,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287097] = 5, + [289779] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6717), 1, + STATE(6756), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6332), 8, + ACTIONS(6096), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -577959,7 +584526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6330), 27, + ACTIONS(6094), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -577987,15 +584554,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287147] = 5, + [289829] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6718), 1, + STATE(6757), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5972), 8, + ACTIONS(5841), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -578004,7 +584571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5970), 27, + ACTIONS(5839), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -578032,15 +584599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287197] = 5, + [289879] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6719), 1, + STATE(6758), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6028), 8, + ACTIONS(5889), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -578049,7 +584616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6026), 27, + ACTIONS(5887), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -578077,15 +584644,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287247] = 5, + [289929] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6720), 1, + STATE(6759), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6076), 8, + ACTIONS(5913), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -578094,7 +584661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6074), 27, + ACTIONS(5911), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -578122,141 +584689,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287297] = 23, + [289979] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, + STATE(6760), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5951), 8, anon_sym_DOT_DOT, - ACTIONS(8523), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_DOT, + ACTIONS(5949), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(6721), 1, + [290029] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6761), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6030), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(6110), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6108), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [287383] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, - ACTIONS(8545), 1, anon_sym_AMP_AMP, - ACTIONS(8547), 1, anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(6722), 1, + [290079] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6762), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6032), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(5959), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5957), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [287469] = 5, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [290129] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6723), 1, + STATE(6763), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6336), 8, + ACTIONS(6009), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -578265,7 +584841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6334), 27, + ACTIONS(6007), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -578293,15 +584869,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287519] = 5, + [290179] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6724), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(6764), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6340), 8, + ACTIONS(8625), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8643), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8645), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6263), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6261), 13, + sym__line_break, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [290245] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6765), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6019), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -578310,7 +584939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6338), 27, + ACTIONS(6017), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -578338,15 +584967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287569] = 5, + [290295] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6725), 1, + STATE(6766), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6086), 8, + ACTIONS(6339), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -578355,7 +584984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6084), 27, + ACTIONS(6337), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -578383,15 +585012,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287619] = 5, + [290345] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6726), 1, + STATE(6767), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6372), 8, + ACTIONS(6043), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -578400,7 +585029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6370), 27, + ACTIONS(6041), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -578428,60 +585057,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287669] = 5, + [290395] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6727), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(8701), 1, + anon_sym_DOT_DOT, + ACTIONS(8703), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8707), 1, + anon_sym_PIPE, + ACTIONS(8709), 1, + anon_sym_CARET, + ACTIONS(8713), 1, + anon_sym_EQ_EQ, + ACTIONS(8719), 1, + anon_sym_AMP_STAR, + ACTIONS(8723), 1, + anon_sym_QMARK, + ACTIONS(8725), 1, + anon_sym_AMP_AMP, + ACTIONS(8727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8733), 1, + sym_binary_ampersand, + STATE(6768), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6254), 8, - anon_sym_DOT_DOT, + ACTIONS(6025), 2, + anon_sym_COMMA, + anon_sym_COLON2, + ACTIONS(8711), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8717), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8721), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8705), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6252), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8715), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8731), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + [290481] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9016), 1, + sym_identifier, + ACTIONS(9018), 1, + anon_sym_LBRACK, + ACTIONS(9024), 1, + sym_identifier_method_call, + STATE(1966), 1, + sym__operator_token, + STATE(6769), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9020), 10, + anon_sym_LT, + anon_sym_STAR, + anon_sym_SLASH2, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(9022), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_GT_GT, anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, + anon_sym_LBRACK_RBRACK_QMARK, + anon_sym_LBRACK_RBRACK_EQ, + anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [287719] = 5, + [290539] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6728), 1, + STATE(6770), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6344), 8, + ACTIONS(6144), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -578490,7 +585186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6342), 27, + ACTIONS(6142), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -578518,15 +585214,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287769] = 5, + [290589] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6729), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8783), 1, + sym__start_of_index_operator, + STATE(6771), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6260), 8, + ACTIONS(6152), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -578534,9 +585234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6258), 27, - sym__start_of_index_operator, + ACTIONS(6150), 26, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, @@ -578563,15 +585261,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287819] = 5, + [290643] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6730), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8783), 1, + sym__start_of_index_operator, + STATE(6772), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6376), 8, + ACTIONS(6156), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -578579,9 +585281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6374), 27, - sym__start_of_index_operator, + ACTIONS(6154), 26, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, @@ -578608,60 +585308,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287869] = 5, + [290697] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6731), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(8701), 1, + anon_sym_DOT_DOT, + ACTIONS(8703), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8707), 1, + anon_sym_PIPE, + ACTIONS(8709), 1, + anon_sym_CARET, + ACTIONS(8713), 1, + anon_sym_EQ_EQ, + ACTIONS(8719), 1, + anon_sym_AMP_STAR, + ACTIONS(8723), 1, + anon_sym_QMARK, + ACTIONS(8725), 1, + anon_sym_AMP_AMP, + ACTIONS(8727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8733), 1, + sym_binary_ampersand, + STATE(6773), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6380), 8, - anon_sym_DOT_DOT, + ACTIONS(6039), 2, + anon_sym_COMMA, + anon_sym_COLON2, + ACTIONS(8711), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8717), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8721), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8705), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6378), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8715), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8731), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [287919] = 5, + [290783] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6732), 1, + STATE(6774), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6384), 8, + ACTIONS(6067), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -578670,7 +585388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6382), 27, + ACTIONS(6065), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -578698,15 +585416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [287969] = 5, + [290833] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6733), 1, + STATE(6775), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6388), 8, + ACTIONS(6079), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -578715,7 +585433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6386), 27, + ACTIONS(6077), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -578743,64 +585461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [288019] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8965), 1, - anon_sym_LBRACK, - ACTIONS(8971), 1, - sym_identifier_method_call, - ACTIONS(8991), 1, - sym_identifier, - STATE(1953), 1, - sym__operator_token, - STATE(6734), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8967), 10, - anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, - anon_sym_AMP_STAR, - ACTIONS(8969), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_LBRACK_RBRACK_QMARK, - anon_sym_LBRACK_RBRACK_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_PLUS, - anon_sym_AMP_DASH, - anon_sym_AMP_STAR_STAR, - [288077] = 5, + [290883] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6735), 1, + STATE(6776), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5838), 8, + ACTIONS(6446), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -578809,7 +585478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5836), 27, + ACTIONS(6444), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -578837,15 +585506,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [288127] = 5, + [290933] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6736), 1, + STATE(6777), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6098), 8, + ACTIONS(6090), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -578854,7 +585523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6096), 27, + ACTIONS(6088), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -578882,60 +585551,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [288177] = 5, + [290983] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6737), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, + anon_sym_PIPE, + ACTIONS(7447), 1, + anon_sym_CARET, + ACTIONS(7451), 1, + anon_sym_EQ_EQ, + ACTIONS(7457), 1, + anon_sym_AMP_STAR, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7471), 1, + sym_binary_ampersand, + STATE(6778), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6102), 8, - anon_sym_DOT_DOT, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(9026), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(7443), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6100), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(7469), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [288227] = 5, + [291069] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6738), 1, + STATE(6779), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5694), 8, + ACTIONS(5699), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -578944,7 +585631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5692), 27, + ACTIONS(5694), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -578972,15 +585659,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [288277] = 5, + [291119] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6739), 1, + STATE(6780), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6392), 8, + ACTIONS(6138), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -578989,7 +585676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6390), 27, + ACTIONS(6136), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -579017,78 +585704,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [288327] = 23, + [291169] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(5981), 1, + anon_sym_DOT_DOT, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - STATE(6740), 1, + STATE(6781), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8993), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(5979), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [288413] = 5, + [291251] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6741), 1, + STATE(6782), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5976), 8, + ACTIONS(6148), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -579097,7 +585782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5974), 27, + ACTIONS(6146), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -579125,15 +585810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [288463] = 5, + [291301] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6742), 1, + STATE(6783), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6122), 8, + ACTIONS(6175), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -579142,7 +585827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6120), 27, + ACTIONS(6173), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -579170,15 +585855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [288513] = 5, + [291351] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6743), 1, + STATE(6784), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6272), 8, + ACTIONS(6223), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -579187,7 +585872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6270), 27, + ACTIONS(6221), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -579215,15 +585900,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [288563] = 5, + [291401] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6744), 1, + STATE(6785), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6276), 8, + ACTIONS(6251), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -579232,7 +585917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6274), 27, + ACTIONS(6249), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -579260,15 +585945,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [288613] = 5, + [291451] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6745), 1, + STATE(6786), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6280), 8, + ACTIONS(6299), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -579277,7 +585962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6278), 27, + ACTIONS(6297), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -579305,123 +585990,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [288663] = 9, + [291501] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8995), 1, - sym_identifier, - ACTIONS(8997), 1, - anon_sym_LBRACK, - ACTIONS(9003), 1, - sym_identifier_method_call, - STATE(1977), 1, - sym__operator_token, - STATE(6746), 1, + STATE(6787), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8999), 10, + ACTIONS(5570), 8, + anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(9001), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(5568), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_GT_GT, anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, - anon_sym_LBRACK_RBRACK_QMARK, - anon_sym_LBRACK_RBRACK_EQ, - anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_PLUS, - anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [288721] = 19, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [291551] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, - anon_sym_DOT_DOT, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(6747), 1, + STATE(6788), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(5787), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5785), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 6, - sym__line_break, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [288799] = 5, + [291601] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6748), 1, + STATE(6789), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6284), 8, + ACTIONS(5787), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -579430,7 +586097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6282), 27, + ACTIONS(5785), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -579458,230 +586125,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [288849] = 21, + [291651] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5941), 1, + STATE(6790), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5809), 8, anon_sym_DOT_DOT, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8527), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8545), 1, - anon_sym_AMP_AMP, - ACTIONS(8547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, + anon_sym_DOT, + ACTIONS(5807), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - STATE(6749), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8531), 2, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [291701] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6791), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5813), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5939), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5811), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [288931] = 20, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [291751] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6118), 1, - anon_sym_DOT_DOT, - ACTIONS(7613), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7765), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(8527), 1, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(8545), 1, + ACTIONS(8637), 1, + anon_sym_QMARK, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(8553), 1, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, sym_binary_ampersand, - STATE(6750), 1, + STATE(6792), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8531), 2, + ACTIONS(6193), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8537), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6116), 5, - sym__line_break, - anon_sym_SEMI, + [291837] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, + anon_sym_DOT_DOT, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, + anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8637), 1, anon_sym_QMARK, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - [289011] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9005), 1, - sym_identifier, - ACTIONS(9007), 1, - anon_sym_LBRACK, - ACTIONS(9013), 1, - sym_identifier_method_call, - STATE(1958), 1, - sym__operator_token, - STATE(6751), 1, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(6793), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9009), 10, - anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, - anon_sym_AMP_STAR, - ACTIONS(9011), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR_STAR, + ACTIONS(6203), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_LBRACK_RBRACK_QMARK, - anon_sym_LBRACK_RBRACK_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_PLUS, - anon_sym_AMP_DASH, + ACTIONS(8635), 2, + sym__binary_double_star, anon_sym_AMP_STAR_STAR, - [289069] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6752), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6396), 8, - anon_sym_DOT_DOT, + ACTIONS(8619), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6394), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(8645), 4, sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [289119] = 5, + [291923] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6753), 1, + STATE(6794), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6130), 8, + ACTIONS(6438), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -579690,7 +586358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6128), 27, + ACTIONS(6436), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -579718,15 +586386,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289169] = 5, + [291973] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6754), 1, + STATE(6795), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6142), 8, + ACTIONS(6458), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -579735,7 +586403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6140), 27, + ACTIONS(6456), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -579763,15 +586431,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289219] = 5, + [292023] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6755), 1, + STATE(6796), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6150), 8, + ACTIONS(5973), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -579780,7 +586448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6148), 27, + ACTIONS(5971), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -579808,15 +586476,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289269] = 5, + [292073] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6756), 1, + STATE(6797), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6288), 8, + ACTIONS(6279), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -579825,7 +586493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6286), 27, + ACTIONS(6277), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -579853,19 +586521,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289319] = 7, + [292123] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8831), 1, - sym__start_of_index_operator, - STATE(6757), 1, + STATE(6798), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6004), 7, + ACTIONS(5861), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -579873,7 +586537,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6002), 26, + anon_sym_DOT, + ACTIONS(5859), 27, + sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, @@ -579900,15 +586566,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289373] = 5, + [292173] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6758), 1, + STATE(6799), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6421), 8, + ACTIONS(5893), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -579917,7 +586583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6419), 27, + ACTIONS(5891), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -579945,15 +586611,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289423] = 5, + [292223] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6759), 1, + STATE(6800), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5980), 8, + ACTIONS(5989), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -579962,7 +586628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5978), 27, + ACTIONS(5987), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -579990,61 +586656,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289473] = 6, + [292273] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9015), 1, - anon_sym_of, - STATE(6760), 1, + ACTIONS(9028), 1, + sym_identifier, + ACTIONS(9030), 1, + anon_sym_LBRACK, + ACTIONS(9036), 1, + sym_identifier_method_call, + STATE(1980), 1, + sym__operator_token, + STATE(6801), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5702), 8, - anon_sym_DOT_DOT, + ACTIONS(9032), 10, anon_sym_LT, - anon_sym_PIPE, + anon_sym_STAR, + anon_sym_SLASH2, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5698), 26, - sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_DOT_DOT_DOT, + ACTIONS(9034), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_GT_GT, anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, + anon_sym_LBRACK_RBRACK_QMARK, + anon_sym_LBRACK_RBRACK_EQ, + anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [289525] = 5, + [292331] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6761), 1, + STATE(6802), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6184), 8, + ACTIONS(6183), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -580053,7 +586722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6182), 27, + ACTIONS(6181), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -580081,15 +586750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289575] = 5, + [292381] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6762), 1, + STATE(6803), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6292), 8, + ACTIONS(6207), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -580098,7 +586767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6290), 27, + ACTIONS(6205), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -580126,17 +586795,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289625] = 6, + [292431] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9017), 1, - anon_sym_of, - STATE(6763), 1, + STATE(6804), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5734), 8, + ACTIONS(6227), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -580145,7 +586812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5730), 26, + ACTIONS(6225), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -580158,6 +586825,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -580172,15 +586840,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289677] = 5, + [292481] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6764), 1, + STATE(6805), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6404), 8, + ACTIONS(6375), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -580189,7 +586857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6402), 27, + ACTIONS(6373), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -580217,15 +586885,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289727] = 5, + [292531] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6765), 1, + ACTIONS(9038), 1, + sym_identifier, + ACTIONS(9040), 1, + anon_sym_LBRACK, + ACTIONS(9046), 1, + sym_identifier_method_call, + STATE(1979), 1, + sym__operator_token, + STATE(6806), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6410), 8, + ACTIONS(9042), 10, + anon_sym_LT, + anon_sym_STAR, + anon_sym_SLASH2, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(9044), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_LBRACK_RBRACK_QMARK, + anon_sym_LBRACK_RBRACK_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, + anon_sym_AMP_STAR_STAR, + [292589] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6807), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6275), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -580234,7 +586951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6408), 27, + ACTIONS(6273), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -580262,141 +586979,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289777] = 23, + [292639] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8803), 1, - anon_sym_DOT_DOT, - ACTIONS(8805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8809), 1, - anon_sym_PIPE, - ACTIONS(8811), 1, - anon_sym_CARET, - ACTIONS(8815), 1, - anon_sym_EQ_EQ, - ACTIONS(8821), 1, - anon_sym_AMP_STAR, - ACTIONS(8825), 1, - anon_sym_QMARK, - ACTIONS(8827), 1, - anon_sym_AMP_AMP, - ACTIONS(8829), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(8837), 1, - sym_binary_ampersand, - STATE(6766), 1, + STATE(6808), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6144), 2, - sym__end_of_with_expression, - anon_sym_COMMA, - ACTIONS(8813), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8819), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, + ACTIONS(6343), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8817), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8833), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6341), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8835), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [289863] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8803), 1, - anon_sym_DOT_DOT, - ACTIONS(8805), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8809), 1, - anon_sym_PIPE, - ACTIONS(8811), 1, anon_sym_CARET, - ACTIONS(8815), 1, - anon_sym_EQ_EQ, - ACTIONS(8821), 1, - anon_sym_AMP_STAR, - ACTIONS(8825), 1, - anon_sym_QMARK, - ACTIONS(8827), 1, - anon_sym_AMP_AMP, - ACTIONS(8829), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(8837), 1, - sym_binary_ampersand, - STATE(6767), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6152), 2, - sym__end_of_with_expression, - anon_sym_COMMA, - ACTIONS(8813), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8819), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8817), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8833), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8835), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [289949] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [292689] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6768), 1, + STATE(6809), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6417), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -580405,7 +587041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6415), 27, + ACTIONS(5545), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -580433,64 +587069,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [289999] = 9, + [292739] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8957), 1, - sym_identifier_method_call, - ACTIONS(9019), 1, - sym_identifier, - ACTIONS(9021), 1, - anon_sym_LBRACK, - STATE(1961), 1, - sym__operator_token, - STATE(6769), 1, + STATE(6810), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8953), 10, + ACTIONS(6179), 8, + anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(8955), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + anon_sym_DOT, + ACTIONS(6177), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_GT_GT, anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, - anon_sym_LBRACK_RBRACK_QMARK, - anon_sym_LBRACK_RBRACK_EQ, - anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_PLUS, - anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - [290057] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [292789] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6770), 1, + STATE(6811), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6188), 8, + ACTIONS(5547), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -580499,7 +587131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6186), 27, + ACTIONS(5545), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -580527,15 +587159,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290107] = 5, + [292839] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6771), 1, + STATE(6812), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6196), 8, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -580544,7 +587176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6194), 27, + ACTIONS(5871), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -580572,141 +587204,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290157] = 23, + [292889] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, - anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - STATE(6772), 1, + ACTIONS(8992), 1, + anon_sym_LBRACK, + ACTIONS(8998), 1, + sym_identifier_method_call, + ACTIONS(9048), 1, + sym_identifier, + STATE(1950), 1, + sym__operator_token, + STATE(6813), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(8994), 10, + anon_sym_LT, + anon_sym_STAR, + anon_sym_SLASH2, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(8996), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_LBRACK_RBRACK_QMARK, + anon_sym_LBRACK_RBRACK_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - ACTIONS(9023), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(7424), 3, + [292947] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6814), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6307), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6305), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [290243] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - STATE(6773), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7430), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8571), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(7424), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7450), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [290329] = 5, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [292997] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6774), 1, + STATE(6815), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6200), 8, + ACTIONS(5873), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -580715,7 +587315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6198), 27, + ACTIONS(5871), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -580743,15 +587343,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290379] = 5, + [293047] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6775), 1, + ACTIONS(9018), 1, + anon_sym_LBRACK, + ACTIONS(9024), 1, + sym_identifier_method_call, + ACTIONS(9050), 1, + sym_identifier, + STATE(1966), 1, + sym__operator_token, + STATE(6816), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5935), 8, + ACTIONS(9020), 10, + anon_sym_LT, + anon_sym_STAR, + anon_sym_SLASH2, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(9022), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_LBRACK_RBRACK_QMARK, + anon_sym_LBRACK_RBRACK_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, + anon_sym_AMP_STAR_STAR, + [293105] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6817), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6319), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -580760,7 +587409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5933), 27, + ACTIONS(6317), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -580788,15 +587437,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290429] = 5, + [293155] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6776), 1, + STATE(6818), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6356), 8, + ACTIONS(5777), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -580805,7 +587454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6354), 27, + ACTIONS(5775), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -580833,15 +587482,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290479] = 5, + [293205] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6777), 1, + STATE(6819), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5810), 8, + ACTIONS(5853), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -580850,7 +587499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5808), 27, + ACTIONS(5851), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -580878,43 +587527,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290529] = 10, + [293255] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - STATE(6778), 1, + STATE(6820), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8551), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(5877), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 20, - sym__line_break, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5875), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - anon_sym_SEMI, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -580925,25 +587568,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290589] = 8, + [293305] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - STATE(6779), 1, + ACTIONS(9052), 1, + anon_sym_of, + STATE(6821), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(5739), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -580951,18 +587590,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 24, - sym__line_break, + anon_sym_DOT, + ACTIONS(5735), 26, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -580973,18 +587614,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290645] = 5, + [293357] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6780), 1, + STATE(6822), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5818), 8, + ACTIONS(5857), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -580993,7 +587635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5816), 27, + ACTIONS(5855), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -581021,15 +587663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290695] = 5, + [293407] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6781), 1, + STATE(6823), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5846), 8, + ACTIONS(5885), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -581038,7 +587680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5844), 27, + ACTIONS(5883), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -581066,15 +587708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290745] = 5, + [293457] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6782), 1, + STATE(6824), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5949), 8, + ACTIONS(5743), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -581083,7 +587725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5947), 27, + ACTIONS(5741), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -581111,85 +587753,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290795] = 23, + [293507] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8477), 1, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8479), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8483), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8485), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8489), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8495), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8499), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8501), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8503), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8509), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(6783), 1, + STATE(6825), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7449), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(7455), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(7459), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(9054), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(7443), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(7453), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(7467), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(7469), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [293593] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(8701), 1, + anon_sym_DOT_DOT, + ACTIONS(8703), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8707), 1, + anon_sym_PIPE, + ACTIONS(8709), 1, + anon_sym_CARET, + ACTIONS(8713), 1, + anon_sym_EQ_EQ, + ACTIONS(8719), 1, + anon_sym_AMP_STAR, + ACTIONS(8723), 1, + anon_sym_QMARK, + ACTIONS(8725), 1, + anon_sym_AMP_AMP, + ACTIONS(8727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8733), 1, + sym_binary_ampersand, + STATE(6826), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6358), 2, + ACTIONS(5923), 2, anon_sym_COMMA, anon_sym_COLON2, - ACTIONS(8487), 2, + ACTIONS(8711), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8493), 2, + ACTIONS(8717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, + ACTIONS(8705), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8491), 4, + ACTIONS(8715), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [290881] = 8, + [293679] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7765), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - STATE(6784), 1, + ACTIONS(8701), 1, + anon_sym_DOT_DOT, + ACTIONS(8703), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8707), 1, + anon_sym_PIPE, + ACTIONS(8709), 1, + anon_sym_CARET, + ACTIONS(8713), 1, + anon_sym_EQ_EQ, + ACTIONS(8719), 1, + anon_sym_AMP_STAR, + ACTIONS(8723), 1, + anon_sym_QMARK, + ACTIONS(8725), 1, + anon_sym_AMP_AMP, + ACTIONS(8727), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8733), 1, + sym_binary_ampersand, + STATE(6827), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8541), 2, + ACTIONS(5773), 2, + anon_sym_COMMA, + anon_sym_COLON2, + ACTIONS(8711), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8717), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(8705), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8715), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8729), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8731), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + [293765] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6828), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5829), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -581197,18 +587958,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 24, - sym__line_break, + anon_sym_DOT, + ACTIONS(5827), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -581219,18 +587983,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290937] = 5, + [293815] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6785), 1, + STATE(6829), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5512), 8, + ACTIONS(5897), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -581239,7 +588004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5510), 27, + ACTIONS(5895), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -581267,15 +588032,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [290987] = 5, + [293865] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6786), 1, + STATE(6830), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6224), 8, + ACTIONS(5909), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -581284,7 +588049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6222), 27, + ACTIONS(5907), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -581312,15 +588077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291037] = 5, + [293915] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6787), 1, + STATE(6831), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6234), 8, + ACTIONS(5901), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -581329,7 +588094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6232), 27, + ACTIONS(5899), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -581357,15 +588122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291087] = 5, + [293965] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6788), 1, + STATE(6832), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6192), 8, + ACTIONS(5905), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -581374,7 +588139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6190), 27, + ACTIONS(5903), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -581402,193 +588167,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291137] = 23, + [294015] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8521), 1, - anon_sym_DOT_DOT, - ACTIONS(8523), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8543), 1, - anon_sym_QMARK, - ACTIONS(8545), 1, - anon_sym_AMP_AMP, - ACTIONS(8547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(6789), 1, + STATE(6833), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6230), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(5749), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8551), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [291223] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, + anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(7765), 1, + ACTIONS(5747), 27, sym__start_of_index_operator, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - STATE(6790), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8549), 4, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6064), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6062), 14, - sym__line_break, - sym_binary_ampersand, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291287] = 23, + [294065] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(8477), 1, - anon_sym_DOT_DOT, - ACTIONS(8479), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8483), 1, - anon_sym_PIPE, - ACTIONS(8485), 1, - anon_sym_CARET, - ACTIONS(8489), 1, - anon_sym_EQ_EQ, - ACTIONS(8495), 1, - anon_sym_AMP_STAR, - ACTIONS(8499), 1, - anon_sym_QMARK, - ACTIONS(8501), 1, - anon_sym_AMP_AMP, - ACTIONS(8503), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8509), 1, - sym_binary_ampersand, - STATE(6791), 1, + STATE(6834), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6364), 2, - anon_sym_COMMA, - anon_sym_COLON2, - ACTIONS(8487), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8493), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, + ACTIONS(5921), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8491), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5919), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [291373] = 5, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [294115] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6792), 1, + STATE(6835), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6304), 8, + ACTIONS(5927), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -581597,7 +588274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6302), 27, + ACTIONS(5925), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -581625,15 +588302,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291423] = 5, + [294165] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6793), 1, + STATE(6836), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5953), 8, + ACTIONS(5931), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -581642,7 +588319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5951), 27, + ACTIONS(5929), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -581670,15 +588347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291473] = 5, + [294215] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6794), 1, + STATE(6837), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5996), 8, + ACTIONS(5935), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -581687,7 +588364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5994), 27, + ACTIONS(5933), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -581715,76 +588392,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291523] = 21, + [294265] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6068), 1, - anon_sym_DOT_DOT, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8545), 1, - anon_sym_AMP_AMP, - ACTIONS(8547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(6795), 1, + STATE(6838), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(5939), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6066), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5937), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [291605] = 5, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [294315] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6796), 1, + ACTIONS(9056), 1, + anon_sym_of, + STATE(6839), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5961), 8, + ACTIONS(5757), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -581793,7 +588456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5959), 27, + ACTIONS(5753), 26, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -581806,7 +588469,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -581821,15 +588483,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291655] = 5, + [294367] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6797), 1, + STATE(6840), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6246), 8, + ACTIONS(5947), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -581838,7 +588500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6244), 27, + ACTIONS(5945), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -581866,15 +588528,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291705] = 5, + [294417] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6798), 1, + STATE(6841), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6250), 8, + ACTIONS(5969), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -581883,7 +588545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6248), 27, + ACTIONS(5967), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -581911,15 +588573,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291755] = 5, + [294467] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6799), 1, + STATE(6842), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6296), 8, + ACTIONS(5997), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -581928,7 +588590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6294), 27, + ACTIONS(5995), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -581956,15 +588618,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291805] = 5, + [294517] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6800), 1, + STATE(6843), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6324), 8, + ACTIONS(6013), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -581973,7 +588635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6322), 27, + ACTIONS(6011), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -582001,60 +588663,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291855] = 5, + [294567] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6801), 1, + ACTIONS(9058), 1, + sym_identifier, + ACTIONS(9060), 1, + anon_sym_LBRACK, + ACTIONS(9066), 1, + sym_identifier_method_call, + STATE(1963), 1, + sym__operator_token, + STATE(6844), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6348), 8, - anon_sym_DOT_DOT, + ACTIONS(9062), 10, anon_sym_LT, - anon_sym_PIPE, + anon_sym_STAR, + anon_sym_SLASH2, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(6346), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + ACTIONS(9064), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_GT_GT, anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, + anon_sym_LBRACK_RBRACK_QMARK, + anon_sym_LBRACK_RBRACK_EQ, + anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [291905] = 5, + [294625] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6802), 1, + STATE(6845), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6352), 8, + ACTIONS(6367), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -582063,7 +588729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6350), 27, + ACTIONS(6365), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -582091,15 +588757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [291955] = 5, + [294675] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6803), 1, + STATE(6846), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6368), 8, + ACTIONS(6247), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -582108,7 +588774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6366), 27, + ACTIONS(6245), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -582136,15 +588802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [292005] = 5, + [294725] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6804), 1, + STATE(6847), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6400), 8, + ACTIONS(6371), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -582153,7 +588819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6398), 27, + ACTIONS(6369), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -582181,15 +588847,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [292055] = 5, + [294775] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6805), 1, + STATE(6848), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5738), 8, + ACTIONS(6379), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -582198,7 +588864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5736), 27, + ACTIONS(6377), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -582226,15 +588892,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [292105] = 5, + [294825] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6806), 1, + ACTIONS(9068), 1, + anon_sym_of, + STATE(6849), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5742), 8, + ACTIONS(5714), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -582243,7 +588911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5740), 27, + ACTIONS(5710), 26, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -582256,7 +588924,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -582271,15 +588938,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [292155] = 5, + [294877] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6807), 1, + STATE(6850), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5746), 8, + ACTIONS(5965), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -582288,7 +588955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5744), 27, + ACTIONS(5963), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -582316,15 +588983,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [292205] = 5, + [294927] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6808), 1, + STATE(6851), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6016), 8, + ACTIONS(6005), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -582333,7 +589000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6014), 27, + ACTIONS(6003), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -582361,15 +589028,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [292255] = 5, + [294977] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6809), 1, + STATE(6852), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5750), 8, + ACTIONS(6051), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -582378,7 +589045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5748), 27, + ACTIONS(6049), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -582406,15 +589073,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [292305] = 5, + [295027] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6810), 1, + STATE(6853), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(155), 8, + ACTIONS(5801), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -582423,7 +589090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(133), 27, + ACTIONS(5799), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -582451,82 +589118,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [292355] = 5, + [295077] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6811), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + STATE(6854), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5754), 8, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5752), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, + ACTIONS(8635), 2, sym__binary_double_star, - sym_binary_ampersand, + anon_sym_AMP_STAR_STAR, + ACTIONS(8645), 4, + sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [292405] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(6812), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5758), 8, + ACTIONS(6259), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5756), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6257), 20, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -582537,19 +589165,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [292455] = 5, + [295137] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6813), 1, + ACTIONS(9070), 1, + anon_sym_EQ, + STATE(6855), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5762), 8, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -582558,9 +589187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5760), 27, + ACTIONS(5761), 26, sym__start_of_index_operator, - sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -582571,7 +589199,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -582586,15 +589214,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [292505] = 5, + [295189] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6814), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + STATE(6856), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5766), 8, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6295), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -582602,21 +589237,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5764), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6293), 24, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -582627,19 +589259,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [292555] = 5, + [295245] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6815), 1, + STATE(6857), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5774), 8, + ACTIONS(5917), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -582648,7 +589279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5772), 27, + ACTIONS(5915), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -582676,17 +589307,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [292605] = 6, + [295295] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9025), 1, - anon_sym_EQ, - STATE(6816), 1, + STATE(6858), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, + ACTIONS(5955), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -582695,8 +589324,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 26, + ACTIONS(5953), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -582707,7 +589337,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_EQ_GT, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -582722,15 +589352,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [292657] = 5, + [295345] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6817), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + STATE(6859), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5850), 8, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -582738,21 +589375,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5848), 27, - sym__start_of_index_operator, - sym__end_of_with_expression, + ACTIONS(6313), 24, + sym__line_break, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, - sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -582763,19 +589397,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [292707] = 5, + [295401] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6818), 1, + STATE(6860), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6126), 8, + ACTIONS(6102), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -582784,7 +589417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6124), 27, + ACTIONS(6092), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -582812,78 +589445,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [292757] = 23, + [295451] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8803), 1, + ACTIONS(6063), 1, anon_sym_DOT_DOT, - ACTIONS(8805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8809), 1, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8761), 1, anon_sym_PIPE, - ACTIONS(8811), 1, + ACTIONS(8763), 1, anon_sym_CARET, - ACTIONS(8815), 1, + ACTIONS(8767), 1, anon_sym_EQ_EQ, - ACTIONS(8821), 1, + ACTIONS(8773), 1, anon_sym_AMP_STAR, - ACTIONS(8825), 1, - anon_sym_QMARK, - ACTIONS(8827), 1, + ACTIONS(8779), 1, anon_sym_AMP_AMP, - ACTIONS(8829), 1, + ACTIONS(8781), 1, anon_sym_PIPE_PIPE, - ACTIONS(8831), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(8837), 1, + ACTIONS(8789), 1, sym_binary_ampersand, - STATE(6819), 1, + STATE(6861), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 2, - sym__end_of_with_expression, - anon_sym_COMMA, - ACTIONS(8813), 2, + ACTIONS(8765), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8819), 2, + ACTIONS(8771), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, + ACTIONS(8775), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, + ACTIONS(8759), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8817), 4, + ACTIONS(6061), 4, + sym__end_of_with_expression, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(8769), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8833), 4, + ACTIONS(8785), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8835), 4, + ACTIONS(8787), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [292843] = 5, + [295533] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6820), 1, + STATE(6862), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6160), 8, + ACTIONS(6283), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -582892,7 +589523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6158), 27, + ACTIONS(6281), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -582920,15 +589551,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [292893] = 5, + [295583] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6821), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + STATE(6863), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8625), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(8643), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8645), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6327), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6325), 14, + sym__line_break, + sym_binary_ampersand, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [295647] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6864), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6172), 8, + ACTIONS(6197), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -582937,7 +589620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6170), 27, + ACTIONS(6195), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -582965,15 +589648,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [292943] = 5, + [295697] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6822), 1, + ACTIONS(9072), 1, + anon_sym_of, + STATE(6865), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6176), 8, + ACTIONS(5651), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -582982,7 +589667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6174), 27, + ACTIONS(5647), 26, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -582995,7 +589680,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -583010,15 +589694,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [292993] = 5, + [295749] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6823), 1, + STATE(6866), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6180), 8, + ACTIONS(6387), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -583027,7 +589711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6178), 27, + ACTIONS(6385), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -583055,15 +589739,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [293043] = 5, + [295799] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6824), 1, + STATE(6867), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5854), 8, + ACTIONS(6164), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -583072,7 +589756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5852), 27, + ACTIONS(6162), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -583100,15 +589784,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [293093] = 5, + [295849] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6825), 1, + STATE(6868), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6208), 8, + ACTIONS(6391), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -583117,7 +589801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6206), 27, + ACTIONS(6389), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -583145,78 +589829,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [293143] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(5923), 1, - anon_sym_DOT_DOT, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8809), 1, - anon_sym_PIPE, - ACTIONS(8811), 1, - anon_sym_CARET, - ACTIONS(8815), 1, - anon_sym_EQ_EQ, - ACTIONS(8821), 1, - anon_sym_AMP_STAR, - ACTIONS(8827), 1, - anon_sym_AMP_AMP, - ACTIONS(8829), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(8837), 1, - sym_binary_ampersand, - STATE(6826), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8813), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8819), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(5921), 4, - sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(8817), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8833), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8835), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [293225] = 6, + [295899] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9027), 1, - anon_sym_EQ, - STATE(6827), 1, + STATE(6869), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, + ACTIONS(6395), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -583225,7 +589846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 26, + ACTIONS(6393), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -583238,6 +589859,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -583252,15 +589874,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [293277] = 5, + [295949] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6828), 1, + STATE(6870), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5778), 8, + ACTIONS(6075), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -583269,7 +589891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5776), 27, + ACTIONS(6073), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -583297,15 +589919,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [293327] = 5, + [295999] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6829), 1, + STATE(6871), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6220), 8, + ACTIONS(6399), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -583314,7 +589936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6218), 27, + ACTIONS(6397), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -583342,76 +589964,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [293377] = 21, + [296049] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5941), 1, - anon_sym_DOT_DOT, - ACTIONS(8007), 1, + ACTIONS(9066), 1, + sym_identifier_method_call, + ACTIONS(9074), 1, + sym_identifier, + ACTIONS(9076), 1, + anon_sym_LBRACK, + STATE(1963), 1, + sym__operator_token, + STATE(6872), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9062), 10, + anon_sym_LT, + anon_sym_STAR, + anon_sym_SLASH2, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(9064), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_LBRACK_RBRACK_QMARK, + anon_sym_LBRACK_RBRACK_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, + anon_sym_AMP_STAR_STAR, + [296107] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8809), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8811), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8815), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8821), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8827), 1, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8829), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(8837), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(6830), 1, + STATE(6873), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8813), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8819), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, + ACTIONS(9078), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5939), 4, - sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(8817), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8833), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8835), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [293459] = 5, + [296193] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6831), 1, + STATE(6874), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6228), 8, + ACTIONS(6100), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -583420,7 +590093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6226), 27, + ACTIONS(6098), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -583448,231 +590121,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [293509] = 23, + [296243] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(8803), 1, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(8805), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8809), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(8811), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(8815), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(8821), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(8825), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(8827), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(8829), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(8837), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - STATE(6832), 1, + STATE(6875), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6010), 2, - sym__end_of_with_expression, - anon_sym_COMMA, - ACTIONS(8813), 2, + ACTIONS(5779), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8819), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8817), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8833), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8835), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [293595] = 23, + [296329] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8803), 1, - anon_sym_DOT_DOT, - ACTIONS(8805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8809), 1, - anon_sym_PIPE, - ACTIONS(8811), 1, - anon_sym_CARET, - ACTIONS(8815), 1, - anon_sym_EQ_EQ, - ACTIONS(8821), 1, - anon_sym_AMP_STAR, - ACTIONS(8825), 1, - anon_sym_QMARK, - ACTIONS(8827), 1, - anon_sym_AMP_AMP, - ACTIONS(8829), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(8837), 1, - sym_binary_ampersand, - STATE(6833), 1, + STATE(6876), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6030), 2, - sym__end_of_with_expression, - anon_sym_COMMA, - ACTIONS(8813), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8819), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, + ACTIONS(6100), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8817), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8833), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6098), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8835), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [293681] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8803), 1, - anon_sym_DOT_DOT, - ACTIONS(8805), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(8809), 1, - anon_sym_PIPE, - ACTIONS(8811), 1, anon_sym_CARET, - ACTIONS(8815), 1, - anon_sym_EQ_EQ, - ACTIONS(8821), 1, - anon_sym_AMP_STAR, - ACTIONS(8825), 1, - anon_sym_QMARK, - ACTIONS(8827), 1, - anon_sym_AMP_AMP, - ACTIONS(8829), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(8837), 1, - sym_binary_ampersand, - STATE(6834), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6032), 2, - sym__end_of_with_expression, - anon_sym_COMMA, - ACTIONS(8813), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8819), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8817), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8833), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8835), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [293767] = 10, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [296379] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8821), 1, - anon_sym_AMP_STAR, - ACTIONS(8831), 1, - sym__start_of_index_operator, - STATE(6835), 1, + STATE(6877), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8823), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8835), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(6106), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 20, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6104), 27, + sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -583684,25 +590270,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [293827] = 8, + [296429] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8831), 1, - sym__start_of_index_operator, - STATE(6836), 1, + STATE(6878), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8823), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(6114), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -583710,13 +590290,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 24, + anon_sym_DOT, + ACTIONS(6112), 27, + sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -583732,25 +590315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [293883] = 8, + [296479] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8831), 1, - sym__start_of_index_operator, - STATE(6837), 1, + STATE(6879), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8823), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(6118), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -583758,13 +590335,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 24, + anon_sym_DOT, + ACTIONS(6116), 27, + sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, @@ -583780,70 +590360,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [293939] = 12, + [296529] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8821), 1, - anon_sym_AMP_STAR, - ACTIONS(8831), 1, - sym__start_of_index_operator, - STATE(6838), 1, + STATE(6880), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8813), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8823), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8833), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8835), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6064), 6, + ACTIONS(6122), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6062), 14, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6120), 27, + sym__start_of_index_operator, sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [294003] = 5, + [296579] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6839), 1, + STATE(6881), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6264), 8, + ACTIONS(6126), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -583852,7 +590426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6262), 27, + ACTIONS(6124), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -583880,76 +590454,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [294053] = 21, + [296629] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6068), 1, - anon_sym_DOT_DOT, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8809), 1, - anon_sym_PIPE, - ACTIONS(8811), 1, - anon_sym_CARET, - ACTIONS(8815), 1, - anon_sym_EQ_EQ, - ACTIONS(8821), 1, - anon_sym_AMP_STAR, - ACTIONS(8827), 1, - anon_sym_AMP_AMP, - ACTIONS(8829), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(8837), 1, - sym_binary_ampersand, - STATE(6840), 1, + STATE(6882), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8813), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8819), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, + ACTIONS(6130), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6066), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6128), 27, + sym__start_of_index_operator, sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(8817), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8833), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8835), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [294135] = 5, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [296679] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6841), 1, + STATE(6883), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5874), 8, + ACTIONS(5553), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -583958,7 +590516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5872), 27, + ACTIONS(5551), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -583986,153 +590544,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [294185] = 17, + [296729] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8809), 1, - anon_sym_PIPE, - ACTIONS(8811), 1, - anon_sym_CARET, - ACTIONS(8815), 1, - anon_sym_EQ_EQ, - ACTIONS(8821), 1, - anon_sym_AMP_STAR, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(8837), 1, - sym_binary_ampersand, - STATE(6842), 1, + STATE(6884), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8813), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8823), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, + ACTIONS(6462), 8, anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8817), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8833), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6460), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8835), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6070), 8, - sym__end_of_with_expression, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [294259] = 13, + [296779] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8821), 1, - anon_sym_AMP_STAR, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(8837), 1, - sym_binary_ampersand, - STATE(6843), 1, + STATE(6885), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8813), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8823), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8833), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8835), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6082), 6, + ACTIONS(6267), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6080), 13, - sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [294325] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8821), 1, anon_sym_AMP_STAR, - ACTIONS(8831), 1, + anon_sym_DOT, + ACTIONS(6265), 27, sym__start_of_index_operator, - STATE(6844), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8823), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8833), 4, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8835), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6090), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6088), 16, - sym__end_of_with_expression, - sym_binary_ampersand, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -584144,463 +590630,502 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [294387] = 15, + [296829] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8809), 1, - anon_sym_PIPE, - ACTIONS(8811), 1, - anon_sym_CARET, - ACTIONS(8821), 1, - anon_sym_AMP_STAR, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(8837), 1, - sym_binary_ampersand, - STATE(6845), 1, + STATE(6886), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8813), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8823), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8833), 4, + ACTIONS(6410), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6408), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8835), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6094), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6092), 12, - sym__end_of_with_expression, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [294457] = 19, + [296879] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, + ACTIONS(6442), 1, anon_sym_DOT_DOT, - ACTIONS(8007), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(8809), 1, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(8811), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(8815), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(8821), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(8837), 1, + ACTIONS(8639), 1, + anon_sym_AMP_AMP, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, sym_binary_ampersand, - STATE(6846), 1, + STATE(6887), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8813), 2, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8819), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8817), 4, + ACTIONS(6440), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8833), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8835), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 6, - sym__end_of_with_expression, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [294535] = 20, + [296961] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6118), 1, + ACTIONS(5977), 1, anon_sym_DOT_DOT, - ACTIONS(8007), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(8809), 1, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(8811), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(8815), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(8821), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(8827), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(8837), 1, + ACTIONS(8641), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8647), 1, sym_binary_ampersand, - STATE(6847), 1, + STATE(6888), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8813), 2, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8819), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8817), 4, + ACTIONS(5975), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8833), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8835), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6116), 5, + [297043] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6889), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6287), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6285), 27, + sym__start_of_index_operator, sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [294615] = 21, + [297093] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5941), 1, + ACTIONS(5977), 1, anon_sym_DOT_DOT, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8483), 1, + ACTIONS(8707), 1, anon_sym_PIPE, - ACTIONS(8485), 1, + ACTIONS(8709), 1, anon_sym_CARET, - ACTIONS(8489), 1, + ACTIONS(8713), 1, anon_sym_EQ_EQ, - ACTIONS(8495), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - ACTIONS(8501), 1, + ACTIONS(8725), 1, anon_sym_AMP_AMP, - ACTIONS(8503), 1, + ACTIONS(8727), 1, anon_sym_PIPE_PIPE, - ACTIONS(8509), 1, + ACTIONS(8733), 1, sym_binary_ampersand, - STATE(6848), 1, + STATE(6890), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8487), 2, + ACTIONS(8711), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8493), 2, + ACTIONS(8717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, + ACTIONS(8705), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5939), 4, + ACTIONS(5975), 4, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_COLON2, - ACTIONS(8491), 4, + ACTIONS(8715), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [294697] = 23, + [297175] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8477), 1, + ACTIONS(8701), 1, anon_sym_DOT_DOT, - ACTIONS(8479), 1, + ACTIONS(8703), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8483), 1, + ACTIONS(8707), 1, anon_sym_PIPE, - ACTIONS(8485), 1, + ACTIONS(8709), 1, anon_sym_CARET, - ACTIONS(8489), 1, + ACTIONS(8713), 1, anon_sym_EQ_EQ, - ACTIONS(8495), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - ACTIONS(8499), 1, + ACTIONS(8723), 1, anon_sym_QMARK, - ACTIONS(8501), 1, + ACTIONS(8725), 1, anon_sym_AMP_AMP, - ACTIONS(8503), 1, + ACTIONS(8727), 1, anon_sym_PIPE_PIPE, - ACTIONS(8509), 1, + ACTIONS(8733), 1, sym_binary_ampersand, - STATE(6849), 1, + STATE(6891), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6010), 2, + ACTIONS(6092), 2, anon_sym_COMMA, anon_sym_COLON2, - ACTIONS(8487), 2, + ACTIONS(8711), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8493), 2, + ACTIONS(8717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, + ACTIONS(8705), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8491), 4, + ACTIONS(8715), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [294783] = 23, + [297261] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8477), 1, + ACTIONS(8701), 1, anon_sym_DOT_DOT, - ACTIONS(8479), 1, + ACTIONS(8703), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8483), 1, + ACTIONS(8707), 1, anon_sym_PIPE, - ACTIONS(8485), 1, + ACTIONS(8709), 1, anon_sym_CARET, - ACTIONS(8489), 1, + ACTIONS(8713), 1, anon_sym_EQ_EQ, - ACTIONS(8495), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - ACTIONS(8499), 1, + ACTIONS(8723), 1, anon_sym_QMARK, - ACTIONS(8501), 1, + ACTIONS(8725), 1, anon_sym_AMP_AMP, - ACTIONS(8503), 1, + ACTIONS(8727), 1, anon_sym_PIPE_PIPE, - ACTIONS(8509), 1, + ACTIONS(8733), 1, sym_binary_ampersand, - STATE(6850), 1, + STATE(6892), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6030), 2, + ACTIONS(6193), 2, anon_sym_COMMA, anon_sym_COLON2, - ACTIONS(8487), 2, + ACTIONS(8711), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8493), 2, + ACTIONS(8717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, + ACTIONS(8705), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8491), 4, + ACTIONS(8715), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [294869] = 23, + [297347] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8477), 1, + ACTIONS(8701), 1, anon_sym_DOT_DOT, - ACTIONS(8479), 1, + ACTIONS(8703), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8483), 1, + ACTIONS(8707), 1, anon_sym_PIPE, - ACTIONS(8485), 1, + ACTIONS(8709), 1, anon_sym_CARET, - ACTIONS(8489), 1, + ACTIONS(8713), 1, anon_sym_EQ_EQ, - ACTIONS(8495), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - ACTIONS(8499), 1, + ACTIONS(8723), 1, anon_sym_QMARK, - ACTIONS(8501), 1, + ACTIONS(8725), 1, anon_sym_AMP_AMP, - ACTIONS(8503), 1, + ACTIONS(8727), 1, anon_sym_PIPE_PIPE, - ACTIONS(8509), 1, + ACTIONS(8733), 1, sym_binary_ampersand, - STATE(6851), 1, + STATE(6893), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6032), 2, + ACTIONS(6203), 2, anon_sym_COMMA, anon_sym_COLON2, - ACTIONS(8487), 2, + ACTIONS(8711), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8493), 2, + ACTIONS(8717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, + ACTIONS(8705), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8491), 4, + ACTIONS(8715), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [294955] = 10, + [297433] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8495), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - STATE(6852), 1, + STATE(6894), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8497), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8507), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(6259), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 20, + ACTIONS(6257), 20, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -584621,22 +591146,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - [295015] = 8, + [297493] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - STATE(6853), 1, + STATE(6895), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8497), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(6295), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -584644,7 +591169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 24, + ACTIONS(6293), 24, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -584669,22 +591194,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - [295071] = 8, + [297549] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - STATE(6854), 1, + STATE(6896), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8497), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -584692,7 +591217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6054), 24, + ACTIONS(6313), 24, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -584717,44 +591242,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - [295127] = 12, + [297605] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8495), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - STATE(6855), 1, + STATE(6897), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8487), 2, + ACTIONS(8711), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8497), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8505), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6064), 6, + ACTIONS(6327), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6062), 14, + ACTIONS(6325), 14, sym_binary_ampersand, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -584769,116 +591294,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - [295191] = 21, + [297669] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6068), 1, + ACTIONS(6442), 1, anon_sym_DOT_DOT, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8483), 1, + ACTIONS(8707), 1, anon_sym_PIPE, - ACTIONS(8485), 1, + ACTIONS(8709), 1, anon_sym_CARET, - ACTIONS(8489), 1, + ACTIONS(8713), 1, anon_sym_EQ_EQ, - ACTIONS(8495), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - ACTIONS(8501), 1, + ACTIONS(8725), 1, anon_sym_AMP_AMP, - ACTIONS(8503), 1, + ACTIONS(8727), 1, anon_sym_PIPE_PIPE, - ACTIONS(8509), 1, + ACTIONS(8733), 1, sym_binary_ampersand, - STATE(6856), 1, + STATE(6898), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8487), 2, + ACTIONS(8711), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8493), 2, + ACTIONS(8717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, + ACTIONS(8705), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6066), 4, + ACTIONS(6440), 4, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_COLON2, - ACTIONS(8491), 4, + ACTIONS(8715), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [295273] = 17, + [297751] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8483), 1, + ACTIONS(8707), 1, anon_sym_PIPE, - ACTIONS(8485), 1, + ACTIONS(8709), 1, anon_sym_CARET, - ACTIONS(8489), 1, + ACTIONS(8713), 1, anon_sym_EQ_EQ, - ACTIONS(8495), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - ACTIONS(8509), 1, + ACTIONS(8733), 1, sym_binary_ampersand, - STATE(6857), 1, + STATE(6899), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8487), 2, + ACTIONS(8711), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8497), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, + ACTIONS(5817), 4, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8491), 4, + ACTIONS(8715), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6070), 8, + ACTIONS(5815), 8, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_GT_EQ, @@ -584887,46 +591412,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - [295347] = 13, + [297825] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8495), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - ACTIONS(8509), 1, + ACTIONS(8733), 1, sym_binary_ampersand, - STATE(6858), 1, + STATE(6900), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8487), 2, + ACTIONS(8711), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8497), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8505), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6082), 6, + ACTIONS(6263), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6080), 13, + ACTIONS(6261), 13, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, @@ -584940,41 +591465,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - [295413] = 11, + [297891] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8495), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - STATE(6859), 1, + STATE(6901), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8497), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8505), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6090), 6, + ACTIONS(5869), 6, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6088), 16, + ACTIONS(5867), 16, sym_binary_ampersand, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, @@ -584991,49 +591516,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - [295475] = 15, + [297953] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8483), 1, + ACTIONS(8707), 1, anon_sym_PIPE, - ACTIONS(8485), 1, + ACTIONS(8709), 1, anon_sym_CARET, - ACTIONS(8495), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - ACTIONS(8509), 1, + ACTIONS(8733), 1, sym_binary_ampersand, - STATE(6860), 1, + STATE(6902), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8487), 2, + ACTIONS(8711), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8497), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8505), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6094), 5, + ACTIONS(6134), 5, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6092), 12, + ACTIONS(6132), 12, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_BANG_EQ, @@ -585046,195 +591571,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - [295545] = 19, + [298023] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, + ACTIONS(6047), 1, anon_sym_DOT_DOT, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8483), 1, + ACTIONS(8707), 1, anon_sym_PIPE, - ACTIONS(8485), 1, + ACTIONS(8709), 1, anon_sym_CARET, - ACTIONS(8489), 1, + ACTIONS(8713), 1, anon_sym_EQ_EQ, - ACTIONS(8495), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - ACTIONS(8509), 1, + ACTIONS(8733), 1, sym_binary_ampersand, - STATE(6861), 1, + STATE(6903), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8487), 2, + ACTIONS(8711), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8493), 2, + ACTIONS(8717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, + ACTIONS(8705), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8491), 4, + ACTIONS(8715), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 6, + ACTIONS(6045), 6, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_COLON2, - [295623] = 20, + [298101] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6118), 1, + ACTIONS(6215), 1, anon_sym_DOT_DOT, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8483), 1, + ACTIONS(8707), 1, anon_sym_PIPE, - ACTIONS(8485), 1, + ACTIONS(8709), 1, anon_sym_CARET, - ACTIONS(8489), 1, + ACTIONS(8713), 1, anon_sym_EQ_EQ, - ACTIONS(8495), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - ACTIONS(8501), 1, + ACTIONS(8725), 1, anon_sym_AMP_AMP, - ACTIONS(8509), 1, + ACTIONS(8733), 1, sym_binary_ampersand, - STATE(6862), 1, + STATE(6904), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8487), 2, + ACTIONS(8711), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8493), 2, + ACTIONS(8717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, + ACTIONS(8705), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8491), 4, + ACTIONS(8715), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6116), 5, + ACTIONS(6213), 5, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_PIPE_PIPE, anon_sym_COLON2, - [295703] = 21, + [298181] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6242), 1, + ACTIONS(5981), 1, anon_sym_DOT_DOT, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8483), 1, + ACTIONS(8707), 1, anon_sym_PIPE, - ACTIONS(8485), 1, + ACTIONS(8709), 1, anon_sym_CARET, - ACTIONS(8489), 1, + ACTIONS(8713), 1, anon_sym_EQ_EQ, - ACTIONS(8495), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - ACTIONS(8501), 1, + ACTIONS(8725), 1, anon_sym_AMP_AMP, - ACTIONS(8503), 1, + ACTIONS(8727), 1, anon_sym_PIPE_PIPE, - ACTIONS(8509), 1, + ACTIONS(8733), 1, sym_binary_ampersand, - STATE(6863), 1, + STATE(6905), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8487), 2, + ACTIONS(8711), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8493), 2, + ACTIONS(8717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, + ACTIONS(8705), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6240), 4, + ACTIONS(5979), 4, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_COLON2, - ACTIONS(8491), 4, + ACTIONS(8715), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [295785] = 5, + [298263] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6864), 1, + STATE(6906), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6300), 8, + ACTIONS(5837), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -585243,7 +591768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6298), 27, + ACTIONS(5835), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -585271,141 +591796,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [295835] = 23, + [298313] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8477), 1, + ACTIONS(8701), 1, anon_sym_DOT_DOT, - ACTIONS(8479), 1, + ACTIONS(8703), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8483), 1, + ACTIONS(8707), 1, anon_sym_PIPE, - ACTIONS(8485), 1, + ACTIONS(8709), 1, anon_sym_CARET, - ACTIONS(8489), 1, + ACTIONS(8713), 1, anon_sym_EQ_EQ, - ACTIONS(8495), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - ACTIONS(8499), 1, + ACTIONS(8723), 1, anon_sym_QMARK, - ACTIONS(8501), 1, + ACTIONS(8725), 1, anon_sym_AMP_AMP, - ACTIONS(8503), 1, + ACTIONS(8727), 1, anon_sym_PIPE_PIPE, - ACTIONS(8509), 1, + ACTIONS(8733), 1, sym_binary_ampersand, - STATE(6865), 1, + STATE(6907), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6256), 2, + ACTIONS(5779), 2, anon_sym_COMMA, anon_sym_COLON2, - ACTIONS(8487), 2, + ACTIONS(8711), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8493), 2, + ACTIONS(8717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, + ACTIONS(8705), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8491), 4, + ACTIONS(8715), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [295921] = 23, + [298399] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8477), 1, + ACTIONS(8701), 1, anon_sym_DOT_DOT, - ACTIONS(8479), 1, + ACTIONS(8703), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8483), 1, + ACTIONS(8707), 1, anon_sym_PIPE, - ACTIONS(8485), 1, + ACTIONS(8709), 1, anon_sym_CARET, - ACTIONS(8489), 1, + ACTIONS(8713), 1, anon_sym_EQ_EQ, - ACTIONS(8495), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - ACTIONS(8499), 1, + ACTIONS(8723), 1, anon_sym_QMARK, - ACTIONS(8501), 1, + ACTIONS(8725), 1, anon_sym_AMP_AMP, - ACTIONS(8503), 1, + ACTIONS(8727), 1, anon_sym_PIPE_PIPE, - ACTIONS(8509), 1, + ACTIONS(8733), 1, sym_binary_ampersand, - STATE(6866), 1, + STATE(6908), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6230), 2, + ACTIONS(5825), 2, anon_sym_COMMA, anon_sym_COLON2, - ACTIONS(8487), 2, + ACTIONS(8711), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8493), 2, + ACTIONS(8717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, + ACTIONS(8705), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8491), 4, + ACTIONS(8715), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [296007] = 5, + [298485] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6867), 1, + ACTIONS(7668), 1, + anon_sym_DOT, + ACTIONS(7830), 1, + sym__start_of_index_operator, + ACTIONS(8621), 1, + anon_sym_PIPE, + ACTIONS(8623), 1, + anon_sym_CARET, + ACTIONS(8627), 1, + anon_sym_EQ_EQ, + ACTIONS(8633), 1, + anon_sym_AMP_STAR, + ACTIONS(8647), 1, + sym_binary_ampersand, + STATE(6909), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6312), 8, + ACTIONS(8625), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(8635), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(5817), 4, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8629), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8643), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(8645), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5815), 8, + sym__line_break, + anon_sym_SEMI, + anon_sym_DOT_DOT_DOT, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [298559] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6910), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6191), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -585414,7 +591996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6310), 27, + ACTIONS(6189), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -585442,76 +592024,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [296057] = 21, + [298609] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6242), 1, + STATE(6911), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6191), 8, anon_sym_DOT_DOT, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8809), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(8811), 1, - anon_sym_CARET, - ACTIONS(8815), 1, anon_sym_EQ_EQ, - ACTIONS(8821), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(8827), 1, - anon_sym_AMP_AMP, - ACTIONS(8829), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8831), 1, + anon_sym_DOT, + ACTIONS(6189), 27, sym__start_of_index_operator, - ACTIONS(8837), 1, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, sym_binary_ampersand, - STATE(6868), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8813), 2, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8819), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [298659] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6912), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6191), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6240), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6189), 27, + sym__start_of_index_operator, sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(8817), 4, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8833), 4, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [298709] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(6913), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6191), 8, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6189), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8835), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [296139] = 5, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [298759] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6869), 1, + STATE(6914), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(6219), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -585520,7 +592176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 27, + ACTIONS(6217), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -585548,188 +592204,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [296189] = 17, + [298809] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7613), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8527), 1, + ACTIONS(8755), 1, + anon_sym_DOT_DOT, + ACTIONS(8757), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8761), 1, anon_sym_PIPE, - ACTIONS(8529), 1, + ACTIONS(8763), 1, anon_sym_CARET, - ACTIONS(8533), 1, + ACTIONS(8767), 1, anon_sym_EQ_EQ, - ACTIONS(8539), 1, + ACTIONS(8773), 1, anon_sym_AMP_STAR, - ACTIONS(8553), 1, + ACTIONS(8777), 1, + anon_sym_QMARK, + ACTIONS(8779), 1, + anon_sym_AMP_AMP, + ACTIONS(8781), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(8789), 1, sym_binary_ampersand, - STATE(6870), 1, + STATE(6915), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8531), 2, + ACTIONS(6025), 2, + sym__end_of_with_expression, + anon_sym_COMMA, + ACTIONS(8765), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8541), 2, + ACTIONS(8771), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8775), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, - anon_sym_DOT_DOT, + ACTIONS(8759), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8535), 4, + ACTIONS(8769), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + ACTIONS(8785), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8787), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6070), 8, - sym__line_break, - anon_sym_SEMI, + [298895] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8755), 1, + anon_sym_DOT_DOT, + ACTIONS(8757), 1, anon_sym_DOT_DOT_DOT, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, + ACTIONS(8761), 1, + anon_sym_PIPE, + ACTIONS(8763), 1, + anon_sym_CARET, + ACTIONS(8767), 1, + anon_sym_EQ_EQ, + ACTIONS(8773), 1, + anon_sym_AMP_STAR, + ACTIONS(8777), 1, anon_sym_QMARK, + ACTIONS(8779), 1, anon_sym_AMP_AMP, + ACTIONS(8781), 1, anon_sym_PIPE_PIPE, - [296263] = 13, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8553), 1, + ACTIONS(8789), 1, sym_binary_ampersand, - STATE(6871), 1, + STATE(6916), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8531), 2, + ACTIONS(6039), 2, + sym__end_of_with_expression, + anon_sym_COMMA, + ACTIONS(8765), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8541), 2, + ACTIONS(8771), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(8775), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8549), 4, + ACTIONS(8759), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(8769), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(8785), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, + ACTIONS(8787), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6082), 6, + [298981] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9080), 1, + anon_sym_of, + STATE(6917), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5725), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6080), 13, - sym__line_break, - anon_sym_SEMI, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(5721), 26, + sym__start_of_index_operator, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_DOT_DOT_DOT, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_STAR_STAR, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [296329] = 23, + [299033] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8803), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(8805), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8809), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8811), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8815), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8821), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8825), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(8827), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8829), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(8837), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(6872), 1, + STATE(6918), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6256), 2, - sym__end_of_with_expression, - anon_sym_COMMA, - ACTIONS(8813), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8819), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, + ACTIONS(9082), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8817), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8833), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8835), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [296415] = 5, + [299119] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6873), 1, + ACTIONS(9084), 1, + anon_sym_EQ, + STATE(6919), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5887), 8, + ACTIONS(5763), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -585738,7 +592458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5885), 27, + ACTIONS(5761), 26, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -585751,7 +592471,6 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -585766,78 +592485,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [296465] = 23, + [299171] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8803), 1, + ACTIONS(6063), 1, anon_sym_DOT_DOT, - ACTIONS(8805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8809), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(8707), 1, anon_sym_PIPE, - ACTIONS(8811), 1, + ACTIONS(8709), 1, anon_sym_CARET, - ACTIONS(8815), 1, + ACTIONS(8713), 1, anon_sym_EQ_EQ, - ACTIONS(8821), 1, + ACTIONS(8719), 1, anon_sym_AMP_STAR, - ACTIONS(8825), 1, - anon_sym_QMARK, - ACTIONS(8827), 1, + ACTIONS(8725), 1, anon_sym_AMP_AMP, - ACTIONS(8829), 1, + ACTIONS(8727), 1, anon_sym_PIPE_PIPE, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(8837), 1, + ACTIONS(8733), 1, sym_binary_ampersand, - STATE(6874), 1, + STATE(6920), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6230), 2, - sym__end_of_with_expression, - anon_sym_COMMA, - ACTIONS(8813), 2, + ACTIONS(8711), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8819), 2, + ACTIONS(8717), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, + ACTIONS(8721), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, + ACTIONS(8705), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8817), 4, + ACTIONS(6061), 4, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_COLON2, + ACTIONS(8715), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8833), 4, + ACTIONS(8729), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8835), 4, + ACTIONS(8731), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [296551] = 5, + [299253] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6875), 1, + STATE(6921), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5802), 8, + ACTIONS(6059), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -585846,7 +592563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5800), 27, + ACTIONS(6057), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -585874,15 +592591,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [296601] = 5, + [299303] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6876), 1, + STATE(6922), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5891), 8, + ACTIONS(6470), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -585891,7 +592608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5889), 27, + ACTIONS(6468), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -585919,125 +592636,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [296651] = 21, + [299353] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5923), 1, - anon_sym_DOT_DOT, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(8483), 1, + ACTIONS(7439), 1, + anon_sym_DOT_DOT, + ACTIONS(7441), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(8485), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(8489), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(8495), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(8501), 1, + ACTIONS(7461), 1, + anon_sym_QMARK, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(8503), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(8509), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - STATE(6877), 1, + STATE(6923), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8487), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8493), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8497), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8481), 3, + ACTIONS(9086), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5921), 4, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_COLON2, - ACTIONS(8491), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8505), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8507), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [296733] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9007), 1, - anon_sym_LBRACK, - ACTIONS(9013), 1, - sym_identifier_method_call, - ACTIONS(9029), 1, - sym_identifier, - STATE(1958), 1, - sym__operator_token, - STATE(6878), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9009), 10, - anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, - anon_sym_AMP_STAR, - ACTIONS(9011), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_LBRACK_RBRACK_QMARK, - anon_sym_LBRACK_RBRACK_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_PLUS, - anon_sym_AMP_DASH, - anon_sym_AMP_STAR_STAR, - [296791] = 5, + [299439] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6879), 1, + STATE(6924), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5526), 8, + ACTIONS(6414), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -586046,7 +592716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5524), 27, + ACTIONS(6412), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -586074,15 +592744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [296841] = 5, + [299489] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6880), 1, + STATE(6925), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(6383), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -586091,7 +592761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 27, + ACTIONS(6381), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -586119,15 +592789,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [296891] = 5, + [299539] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6881), 1, + STATE(6926), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6204), 8, + ACTIONS(6231), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -586136,7 +592806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6202), 27, + ACTIONS(6229), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -586164,19 +592834,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [296941] = 7, + [299589] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8831), 1, - sym__start_of_index_operator, - STATE(6882), 1, + STATE(6927), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5895), 7, + ACTIONS(6450), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -586184,7 +592850,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(5893), 26, + anon_sym_DOT, + ACTIONS(6448), 27, + sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, @@ -586211,15 +592879,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [296995] = 5, + [299639] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6883), 1, + STATE(6928), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6212), 8, + ACTIONS(6235), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -586228,7 +592896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(6210), 27, + ACTIONS(6233), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -586256,127 +592924,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [297045] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8939), 1, - anon_sym_LBRACK, - ACTIONS(8945), 1, - sym_identifier_method_call, - ACTIONS(9031), 1, - sym_identifier, - STATE(1968), 1, - sym__operator_token, - STATE(6884), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8941), 10, - anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, - anon_sym_AMP_STAR, - ACTIONS(8943), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_LBRACK_RBRACK_QMARK, - anon_sym_LBRACK_RBRACK_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_PLUS, - anon_sym_AMP_DASH, - anon_sym_AMP_STAR_STAR, - [297103] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8803), 1, - anon_sym_DOT_DOT, - ACTIONS(8805), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8809), 1, - anon_sym_PIPE, - ACTIONS(8811), 1, - anon_sym_CARET, - ACTIONS(8815), 1, - anon_sym_EQ_EQ, - ACTIONS(8821), 1, - anon_sym_AMP_STAR, - ACTIONS(8825), 1, - anon_sym_QMARK, - ACTIONS(8827), 1, - anon_sym_AMP_AMP, - ACTIONS(8829), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(8837), 1, - sym_binary_ampersand, - STATE(6885), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6358), 2, - sym__end_of_with_expression, - anon_sym_COMMA, - ACTIONS(8813), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8819), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(8817), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8833), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(8835), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [297189] = 5, + [299689] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6886), 1, + STATE(6929), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5826), 8, + ACTIONS(5805), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -586385,7 +592941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5824), 27, + ACTIONS(5803), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -586413,61 +592969,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [297239] = 6, + [299739] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9033), 1, - anon_sym_of, - STATE(6887), 1, + ACTIONS(9066), 1, + sym_identifier_method_call, + ACTIONS(9076), 1, + anon_sym_LBRACK, + ACTIONS(9088), 1, + sym_identifier, + STATE(1963), 1, + sym__operator_token, + STATE(6930), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5690), 8, - anon_sym_DOT_DOT, + ACTIONS(9062), 10, anon_sym_LT, - anon_sym_PIPE, + anon_sym_STAR, + anon_sym_SLASH2, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, anon_sym_AMP_STAR, - anon_sym_DOT, - ACTIONS(5686), 26, - sym__start_of_index_operator, - sym__end_of_with_expression, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym__binary_double_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_DOT_DOT_DOT, + ACTIONS(9064), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_GT_GT, anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, + anon_sym_LBRACK_RBRACK_QMARK, + anon_sym_LBRACK_RBRACK_EQ, + anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [297291] = 5, + [299797] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(6888), 1, + STATE(6931), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5858), 8, + ACTIONS(6239), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -586476,7 +593035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5856), 27, + ACTIONS(6237), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -586504,267 +593063,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [297341] = 23, + [299847] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8803), 1, + ACTIONS(8755), 1, anon_sym_DOT_DOT, - ACTIONS(8805), 1, + ACTIONS(8757), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8809), 1, + ACTIONS(8761), 1, anon_sym_PIPE, - ACTIONS(8811), 1, + ACTIONS(8763), 1, anon_sym_CARET, - ACTIONS(8815), 1, + ACTIONS(8767), 1, anon_sym_EQ_EQ, - ACTIONS(8821), 1, + ACTIONS(8773), 1, anon_sym_AMP_STAR, - ACTIONS(8825), 1, + ACTIONS(8777), 1, anon_sym_QMARK, - ACTIONS(8827), 1, + ACTIONS(8779), 1, anon_sym_AMP_AMP, - ACTIONS(8829), 1, + ACTIONS(8781), 1, anon_sym_PIPE_PIPE, - ACTIONS(8831), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(8837), 1, + ACTIONS(8789), 1, sym_binary_ampersand, - STATE(6889), 1, + STATE(6932), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6364), 2, + ACTIONS(5694), 2, sym__end_of_with_expression, anon_sym_COMMA, - ACTIONS(8813), 2, + ACTIONS(8765), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(8819), 2, + ACTIONS(8771), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(8823), 2, + ACTIONS(8775), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8807), 3, + ACTIONS(8759), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(8817), 4, + ACTIONS(8769), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(8833), 4, + ACTIONS(8785), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8835), 4, + ACTIONS(8787), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [297427] = 21, + [299933] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5923), 1, - anon_sym_DOT_DOT, - ACTIONS(7613), 1, - anon_sym_DOT, - ACTIONS(7765), 1, - sym__start_of_index_operator, - ACTIONS(8527), 1, - anon_sym_PIPE, - ACTIONS(8529), 1, - anon_sym_CARET, - ACTIONS(8533), 1, - anon_sym_EQ_EQ, - ACTIONS(8539), 1, - anon_sym_AMP_STAR, - ACTIONS(8545), 1, - anon_sym_AMP_AMP, - ACTIONS(8547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(8553), 1, - sym_binary_ampersand, - STATE(6890), 1, + STATE(6933), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8531), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(8537), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(8541), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(8525), 3, + ACTIONS(6311), 8, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(5921), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(8535), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(8549), 4, + anon_sym_AMP_STAR, + anon_sym_DOT, + ACTIONS(6309), 27, + sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(8551), 4, sym__binary_star, + sym__binary_double_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [297509] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7420), 1, - anon_sym_DOT_DOT, - ACTIONS(7422), 1, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, - anon_sym_PIPE, - ACTIONS(7428), 1, anon_sym_CARET, - ACTIONS(7432), 1, - anon_sym_EQ_EQ, - ACTIONS(7438), 1, - anon_sym_AMP_STAR, - ACTIONS(7442), 1, - anon_sym_QMARK, - ACTIONS(7444), 1, - anon_sym_AMP_AMP, - ACTIONS(7446), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, - sym_binary_ampersand, - STATE(6891), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7430), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(9035), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7424), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7434), 4, - anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(7450), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [297595] = 23, + anon_sym_AMP_STAR_STAR, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [299983] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7668), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7830), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(8615), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(8617), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(8621), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(8623), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(8627), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(8633), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(8637), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(8639), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(8641), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(8647), 1, sym_binary_ampersand, - STATE(6892), 1, + STATE(6934), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(5825), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(8625), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(8631), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(8635), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(8571), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(7424), 3, + ACTIONS(8619), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(8629), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(8643), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(8645), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [297681] = 6, + [300069] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9037), 1, - anon_sym_of, - STATE(6893), 1, + STATE(6935), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5660), 8, + ACTIONS(5821), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -586773,7 +593251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5656), 26, + ACTIONS(5819), 27, sym__start_of_index_operator, sym__end_of_with_expression, sym_binary_plus, @@ -586786,6 +593264,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -586800,17 +593279,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [297733] = 6, + [300119] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9039), 1, - anon_sym_EQ, - STATE(6894), 1, + STATE(6936), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5670), 8, + ACTIONS(6271), 8, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -586819,8 +593296,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_STAR, anon_sym_DOT, - ACTIONS(5668), 26, + ACTIONS(6269), 27, sym__start_of_index_operator, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -586831,6 +593309,7 @@ static const uint16_t ts_small_parse_table[] = { sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -586845,6673 +593324,6663 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [297785] = 23, + [300169] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6230), 1, - sym__end_of_with_expression, - ACTIONS(8007), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(9041), 1, + ACTIONS(7368), 1, anon_sym_DOT_DOT, - ACTIONS(9043), 1, + ACTIONS(7370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(7376), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(7378), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(7382), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(7388), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, + ACTIONS(7392), 1, anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(7394), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(7396), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, sym_binary_ampersand, - STATE(6895), 1, + ACTIONS(9090), 1, + anon_sym_RBRACE, + STATE(6937), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(7386), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(7390), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(7374), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(7384), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(7408), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [297870] = 12, + [300254] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(5779), 1, + anon_sym_EQ_GT, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(9059), 1, - anon_sym_AMP_STAR, - STATE(6896), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9051), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(9061), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(9069), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(9071), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6064), 6, + ACTIONS(9092), 1, anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6062), 13, - sym__end_of_with_expression, - sym_binary_ampersand, + ACTIONS(9094), 1, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [297933] = 21, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6068), 1, - anon_sym_DOT_DOT, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(9047), 1, + ACTIONS(9098), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9100), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9104), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9110), 1, anon_sym_AMP_STAR, - ACTIONS(9065), 1, + ACTIONS(9114), 1, + anon_sym_QMARK, + ACTIONS(9116), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9118), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, + ACTIONS(9124), 1, sym_binary_ampersand, - STATE(6897), 1, + STATE(6938), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9102), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9108), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9112), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6066), 3, - sym__end_of_with_expression, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(9045), 3, + ACTIONS(9096), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9106), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9120), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9122), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [298014] = 17, + [300339] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9047), 1, + ACTIONS(9126), 1, + anon_sym_DOT_DOT, + ACTIONS(9128), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9073), 1, + ACTIONS(9148), 1, + anon_sym_QMARK, + ACTIONS(9150), 1, + anon_sym_AMP_AMP, + ACTIONS(9152), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9154), 1, + anon_sym_COLON2, + ACTIONS(9160), 1, sym_binary_ampersand, - STATE(6898), 1, + STATE(6939), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9061), 2, + ACTIONS(9142), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, - anon_sym_DOT_DOT, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6070), 7, - sym__end_of_with_expression, - anon_sym_DOT_DOT_DOT, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [298087] = 13, + [300424] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(6047), 1, + anon_sym_DOT_DOT, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9059), 1, + ACTIONS(9164), 1, + anon_sym_PIPE, + ACTIONS(9166), 1, + anon_sym_CARET, + ACTIONS(9170), 1, + anon_sym_EQ_EQ, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9073), 1, + ACTIONS(9184), 1, sym_binary_ampersand, - STATE(6899), 1, + STATE(6940), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9061), 2, + ACTIONS(9174), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9069), 4, + ACTIONS(9162), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(9172), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6082), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6080), 12, + ACTIONS(6045), 5, sym__end_of_with_expression, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [298152] = 23, + [300501] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(6215), 1, + anon_sym_DOT_DOT, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, - anon_sym_DOT_DOT, - ACTIONS(9077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, - anon_sym_QMARK, - ACTIONS(9099), 1, - anon_sym_AMP_AMP, - ACTIONS(9101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9103), 1, - anon_sym_COLON2, - ACTIONS(9109), 1, + ACTIONS(9184), 1, sym_binary_ampersand, - STATE(6900), 1, + ACTIONS(9186), 1, + anon_sym_AMP_AMP, + STATE(6941), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(6213), 4, + sym__end_of_with_expression, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(9107), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [298237] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(9059), 1, - anon_sym_AMP_STAR, - STATE(6901), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9061), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(9069), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6090), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6088), 15, - sym__end_of_with_expression, - sym_binary_ampersand, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [298298] = 23, + [300580] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8286), 1, + anon_sym_EQ_GT, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, + ACTIONS(9092), 1, anon_sym_DOT_DOT, - ACTIONS(9077), 1, + ACTIONS(9094), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9098), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9100), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9104), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9110), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, + ACTIONS(9114), 1, anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9116), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9118), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, + ACTIONS(9124), 1, sym_binary_ampersand, - ACTIONS(9111), 1, - anon_sym_COLON2, - STATE(6902), 1, + STATE(6942), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9102), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9108), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9112), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9096), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9106), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9120), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9122), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [298383] = 15, + [300665] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9047), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9059), 1, + ACTIONS(9170), 1, + anon_sym_EQ_EQ, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9073), 1, + ACTIONS(9184), 1, sym_binary_ampersand, - STATE(6903), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9051), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(9061), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(9069), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(9071), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6094), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6092), 11, - sym__end_of_with_expression, - anon_sym_DOT_DOT_DOT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [298452] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(9075), 1, + ACTIONS(9188), 1, anon_sym_DOT_DOT, - ACTIONS(9077), 1, + ACTIONS(9190), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, - anon_sym_PIPE, - ACTIONS(9083), 1, - anon_sym_CARET, - ACTIONS(9087), 1, - anon_sym_EQ_EQ, - ACTIONS(9093), 1, - anon_sym_AMP_STAR, - ACTIONS(9097), 1, + ACTIONS(9192), 1, anon_sym_QMARK, - ACTIONS(9099), 1, - anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, - sym_binary_ampersand, - ACTIONS(9113), 1, - anon_sym_COLON2, - STATE(6904), 1, + ACTIONS(9196), 1, + sym__end_of_with_expression, + STATE(6943), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [298537] = 19, + [300750] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, - anon_sym_DOT_DOT, - ACTIONS(8007), 1, + ACTIONS(5825), 1, + anon_sym_EQ_GT, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(9047), 1, + ACTIONS(9092), 1, + anon_sym_DOT_DOT, + ACTIONS(9094), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9098), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9100), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9104), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9110), 1, anon_sym_AMP_STAR, - ACTIONS(9073), 1, + ACTIONS(9114), 1, + anon_sym_QMARK, + ACTIONS(9116), 1, + anon_sym_AMP_AMP, + ACTIONS(9118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9124), 1, sym_binary_ampersand, - STATE(6905), 1, + STATE(6944), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9102), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9108), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9112), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9096), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9106), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9120), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9122), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 5, - sym__end_of_with_expression, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [298614] = 20, + [300835] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6118), 1, - anon_sym_DOT_DOT, - ACTIONS(8007), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9047), 1, + ACTIONS(9126), 1, + anon_sym_DOT_DOT, + ACTIONS(9128), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9065), 1, + ACTIONS(9148), 1, + anon_sym_QMARK, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9073), 1, + ACTIONS(9152), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9160), 1, sym_binary_ampersand, - STATE(6906), 1, + ACTIONS(9198), 1, + anon_sym_COLON2, + STATE(6945), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6116), 4, - sym__end_of_with_expression, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - ACTIONS(9055), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [298693] = 23, + [300920] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, - anon_sym_DOT_DOT, - ACTIONS(9077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, - anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, - sym_binary_ampersand, - ACTIONS(9115), 1, - anon_sym_COLON2, - STATE(6907), 1, + ACTIONS(9200), 1, + sym__end_of_with_expression, + STATE(6946), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [298778] = 23, + [301005] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - ACTIONS(9077), 1, + ACTIONS(9128), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, + ACTIONS(9148), 1, anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - ACTIONS(9117), 1, + ACTIONS(9202), 1, anon_sym_COLON2, - STATE(6908), 1, + STATE(6947), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [298863] = 23, + [301090] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, - anon_sym_DOT_DOT, - ACTIONS(9077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, - anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, - sym_binary_ampersand, - ACTIONS(9119), 1, - anon_sym_COLON2, - STATE(6909), 1, + ACTIONS(9204), 1, + sym__end_of_with_expression, + STATE(6948), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [298948] = 23, + [301175] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7347), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - ACTIONS(7349), 1, + ACTIONS(9128), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(7371), 1, + ACTIONS(9148), 1, anon_sym_QMARK, - ACTIONS(7373), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(7375), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - ACTIONS(9121), 1, - anon_sym_RBRACE, - STATE(6910), 1, + ACTIONS(9206), 1, + anon_sym_COLON2, + STATE(6949), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [299033] = 21, + [301260] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6242), 1, - anon_sym_DOT_DOT, - ACTIONS(8007), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9047), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9065), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, - sym_binary_ampersand, - STATE(6911), 1, + ACTIONS(9208), 1, + sym__end_of_with_expression, + STATE(6950), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6240), 3, - sym__end_of_with_expression, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(9045), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [299114] = 23, + [301345] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7347), 1, - anon_sym_DOT_DOT, - ACTIONS(7349), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(7371), 1, - anon_sym_QMARK, - ACTIONS(7373), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(7375), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7389), 1, - sym_binary_ampersand, - ACTIONS(9123), 1, - anon_sym_RBRACE, - STATE(6912), 1, + ACTIONS(9210), 1, + sym__end_of_with_expression, + STATE(6951), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [299199] = 23, + [301430] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, - anon_sym_DOT_DOT, - ACTIONS(9077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, - anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, - sym_binary_ampersand, - ACTIONS(9125), 1, - anon_sym_COLON2, - STATE(6913), 1, + ACTIONS(9212), 1, + sym__end_of_with_expression, + STATE(6952), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [299284] = 23, + [301515] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(9041), 1, + ACTIONS(7368), 1, anon_sym_DOT_DOT, - ACTIONS(9043), 1, + ACTIONS(7370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(7376), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(7378), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(7382), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(7388), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, + ACTIONS(7392), 1, anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(7394), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(7396), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, sym_binary_ampersand, - ACTIONS(9127), 1, - sym__end_of_with_expression, - STATE(6914), 1, + ACTIONS(9214), 1, + anon_sym_RBRACE, + STATE(6953), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(7386), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(7390), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(7374), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(7384), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(7408), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [299369] = 21, + [301600] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5941), 1, - anon_sym_DOT_DOT, - ACTIONS(7797), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8239), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9131), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9133), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9137), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9143), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9147), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9149), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9155), 1, - sym_binary_ampersand, - STATE(6915), 1, + ACTIONS(9216), 1, + sym__end_of_with_expression, + STATE(6954), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9135), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9141), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9145), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5939), 3, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(9129), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9139), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9151), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9153), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [299450] = 23, + [301685] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6010), 1, - anon_sym_EQ_GT, - ACTIONS(7797), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8239), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9131), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9133), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9137), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9143), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9147), 1, - anon_sym_AMP_AMP, - ACTIONS(9149), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9155), 1, + ACTIONS(9184), 1, sym_binary_ampersand, - ACTIONS(9157), 1, + ACTIONS(9186), 1, + anon_sym_AMP_AMP, + ACTIONS(9188), 1, anon_sym_DOT_DOT, - ACTIONS(9159), 1, + ACTIONS(9190), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9161), 1, + ACTIONS(9192), 1, anon_sym_QMARK, - STATE(6916), 1, + ACTIONS(9194), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9218), 1, + sym__end_of_with_expression, + STATE(6955), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9135), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9141), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9145), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9129), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9139), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9151), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9153), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [299535] = 23, + [301770] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6030), 1, - anon_sym_EQ_GT, - ACTIONS(7797), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8239), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9131), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9133), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9137), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9143), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9147), 1, - anon_sym_AMP_AMP, - ACTIONS(9149), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9155), 1, + ACTIONS(9184), 1, sym_binary_ampersand, - ACTIONS(9157), 1, + ACTIONS(9186), 1, + anon_sym_AMP_AMP, + ACTIONS(9188), 1, anon_sym_DOT_DOT, - ACTIONS(9159), 1, + ACTIONS(9190), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9161), 1, + ACTIONS(9192), 1, anon_sym_QMARK, - STATE(6917), 1, + ACTIONS(9194), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9220), 1, + sym__end_of_with_expression, + STATE(6956), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9135), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9141), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9145), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9129), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9139), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9151), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9153), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [299620] = 23, + [301855] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6032), 1, - anon_sym_EQ_GT, - ACTIONS(7797), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8239), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9131), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9133), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9137), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9143), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9147), 1, - anon_sym_AMP_AMP, - ACTIONS(9149), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9155), 1, + ACTIONS(9184), 1, sym_binary_ampersand, - ACTIONS(9157), 1, + ACTIONS(9186), 1, + anon_sym_AMP_AMP, + ACTIONS(9188), 1, anon_sym_DOT_DOT, - ACTIONS(9159), 1, + ACTIONS(9190), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9161), 1, + ACTIONS(9192), 1, anon_sym_QMARK, - STATE(6918), 1, + ACTIONS(9194), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9222), 1, + sym__end_of_with_expression, + STATE(6957), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9135), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9141), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9145), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9129), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9139), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9151), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9153), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [299705] = 10, + [301940] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(5825), 1, + sym__end_of_with_expression, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8239), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9143), 1, - anon_sym_AMP_STAR, - STATE(6919), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9145), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(9153), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, - anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(9164), 1, anon_sym_PIPE, + ACTIONS(9166), 1, + anon_sym_CARET, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6046), 19, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, + ACTIONS(9176), 1, + anon_sym_AMP_STAR, + ACTIONS(9184), 1, sym_binary_ampersand, - anon_sym_EQ_GT, + ACTIONS(9186), 1, + anon_sym_AMP_AMP, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(9192), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - [299764] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8239), 1, - sym__start_of_index_operator, - STATE(6920), 1, + STATE(6958), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9145), 2, + ACTIONS(9168), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9174), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, - anon_sym_DOT_DOT, + ACTIONS(9162), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6050), 23, + ACTIONS(9172), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(9182), 4, sym__binary_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [299819] = 8, + [302025] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8239), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - STATE(6921), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9145), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(9128), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9132), 1, anon_sym_PIPE, + ACTIONS(9134), 1, + anon_sym_CARET, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(6054), 23, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(9148), 1, anon_sym_QMARK, + ACTIONS(9150), 1, anon_sym_AMP_AMP, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - [299874] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(9143), 1, - anon_sym_AMP_STAR, - STATE(6922), 1, + ACTIONS(9160), 1, + sym_binary_ampersand, + ACTIONS(9224), 1, + anon_sym_COLON2, + STATE(6959), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9135), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9145), 2, + ACTIONS(9142), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9151), 4, + ACTIONS(9130), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(9140), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9153), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6064), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6062), 13, - sym_binary_ampersand, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [299937] = 21, + [302110] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6068), 1, + ACTIONS(6063), 1, anon_sym_DOT_DOT, - ACTIONS(7797), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8239), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9131), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9133), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9137), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9143), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9147), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9149), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9155), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - STATE(6923), 1, + STATE(6960), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9135), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9141), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9145), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6066), 3, - anon_sym_EQ_GT, + ACTIONS(6061), 3, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - ACTIONS(9129), 3, + anon_sym_COLON2, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9139), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9151), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9153), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [300018] = 17, + [302191] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(6215), 1, + anon_sym_DOT_DOT, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8239), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9131), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9133), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9137), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9143), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9155), 1, + ACTIONS(9150), 1, + anon_sym_AMP_AMP, + ACTIONS(9160), 1, sym_binary_ampersand, - STATE(6924), 1, + STATE(6961), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9135), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9145), 2, + ACTIONS(9142), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, - anon_sym_DOT_DOT, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9139), 4, + ACTIONS(6213), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9151), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9153), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6070), 7, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [300091] = 13, + [302270] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8239), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9143), 1, + ACTIONS(9126), 1, + anon_sym_DOT_DOT, + ACTIONS(9128), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9132), 1, + anon_sym_PIPE, + ACTIONS(9134), 1, + anon_sym_CARET, + ACTIONS(9138), 1, + anon_sym_EQ_EQ, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9155), 1, + ACTIONS(9148), 1, + anon_sym_QMARK, + ACTIONS(9150), 1, + anon_sym_AMP_AMP, + ACTIONS(9152), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9160), 1, sym_binary_ampersand, - STATE(6925), 1, + ACTIONS(9226), 1, + anon_sym_COLON2, + STATE(6962), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9135), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9145), 2, + ACTIONS(9142), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9151), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(9153), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6082), 6, - anon_sym_DOT_DOT, + ACTIONS(9130), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6080), 12, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, + ACTIONS(9140), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [300156] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7797), 1, - anon_sym_DOT, - ACTIONS(8239), 1, - sym__start_of_index_operator, - ACTIONS(9143), 1, - anon_sym_AMP_STAR, - STATE(6926), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9145), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(9151), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9153), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6090), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6088), 15, - sym_binary_ampersand, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [300217] = 15, + [302355] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8239), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9131), 1, + ACTIONS(9126), 1, + anon_sym_DOT_DOT, + ACTIONS(9128), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9133), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9143), 1, + ACTIONS(9138), 1, + anon_sym_EQ_EQ, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9155), 1, + ACTIONS(9148), 1, + anon_sym_QMARK, + ACTIONS(9150), 1, + anon_sym_AMP_AMP, + ACTIONS(9152), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9160), 1, sym_binary_ampersand, - STATE(6927), 1, + ACTIONS(9228), 1, + anon_sym_COLON2, + STATE(6963), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9135), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9145), 2, + ACTIONS(9142), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9151), 4, + ACTIONS(9130), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(9140), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9153), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6094), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6092), 11, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [300286] = 19, + [302440] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, + ACTIONS(6063), 1, anon_sym_DOT_DOT, - ACTIONS(7797), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(8239), 1, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(9131), 1, + ACTIONS(9098), 1, anon_sym_PIPE, - ACTIONS(9133), 1, + ACTIONS(9100), 1, anon_sym_CARET, - ACTIONS(9137), 1, + ACTIONS(9104), 1, anon_sym_EQ_EQ, - ACTIONS(9143), 1, + ACTIONS(9110), 1, anon_sym_AMP_STAR, - ACTIONS(9155), 1, + ACTIONS(9116), 1, + anon_sym_AMP_AMP, + ACTIONS(9118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9124), 1, sym_binary_ampersand, - STATE(6928), 1, + STATE(6964), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9135), 2, + ACTIONS(9102), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9141), 2, + ACTIONS(9108), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9145), 2, + ACTIONS(9112), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9129), 3, + ACTIONS(6061), 3, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(9096), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9139), 4, + ACTIONS(9106), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9151), 4, + ACTIONS(9120), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9153), 4, + ACTIONS(9122), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 5, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [300363] = 20, + [302521] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6118), 1, - anon_sym_DOT_DOT, - ACTIONS(7797), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8239), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9131), 1, + ACTIONS(9126), 1, + anon_sym_DOT_DOT, + ACTIONS(9128), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9133), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9137), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9143), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9147), 1, + ACTIONS(9148), 1, + anon_sym_QMARK, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9155), 1, + ACTIONS(9152), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9160), 1, sym_binary_ampersand, - STATE(6929), 1, + ACTIONS(9230), 1, + anon_sym_COLON2, + STATE(6965), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9135), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9141), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9145), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9129), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6116), 4, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - ACTIONS(9139), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9151), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9153), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [300442] = 21, + [302606] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6242), 1, + ACTIONS(6063), 1, anon_sym_DOT_DOT, - ACTIONS(7797), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8239), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9131), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9133), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9137), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9143), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9147), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9149), 1, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9155), 1, - sym_binary_ampersand, - STATE(6930), 1, + STATE(6966), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9135), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9141), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9145), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6240), 3, - anon_sym_EQ_GT, + ACTIONS(6061), 3, + sym__end_of_with_expression, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - ACTIONS(9129), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9139), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9151), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9153), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [300523] = 23, + [302687] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6256), 1, - anon_sym_EQ_GT, - ACTIONS(7797), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8239), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9131), 1, + ACTIONS(9126), 1, + anon_sym_DOT_DOT, + ACTIONS(9128), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9133), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9137), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9143), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9147), 1, + ACTIONS(9148), 1, + anon_sym_QMARK, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9149), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9155), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - ACTIONS(9157), 1, - anon_sym_DOT_DOT, - ACTIONS(9159), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9161), 1, - anon_sym_QMARK, - STATE(6931), 1, + ACTIONS(9232), 1, + anon_sym_COLON2, + STATE(6967), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9135), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9141), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9145), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9129), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9139), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9151), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9153), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [300608] = 23, + [302772] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6230), 1, - anon_sym_EQ_GT, - ACTIONS(7797), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8239), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9131), 1, + ACTIONS(9126), 1, + anon_sym_DOT_DOT, + ACTIONS(9128), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9133), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9137), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9143), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9147), 1, + ACTIONS(9148), 1, + anon_sym_QMARK, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9149), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9155), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - ACTIONS(9157), 1, - anon_sym_DOT_DOT, - ACTIONS(9159), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9161), 1, - anon_sym_QMARK, - STATE(6932), 1, + ACTIONS(9234), 1, + anon_sym_COLON2, + STATE(6968), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9135), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9141), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9145), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9129), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9139), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9151), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9153), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [300693] = 21, + [302857] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7689), 1, + anon_sym_typeof, + ACTIONS(7691), 1, + sym__constant_segment, + ACTIONS(7693), 1, + anon_sym_COLON_COLON, + ACTIONS(7697), 1, + sym__start_of_tuple_type, + ACTIONS(7699), 1, + sym__start_of_named_tuple_type, + ACTIONS(7792), 1, + anon_sym_LPAREN, + ACTIONS(7794), 1, + anon_sym_DASH_GT, + STATE(6969), 1, + sym_heredoc_body, + STATE(7803), 1, + sym_constant, + STATE(7887), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7695), 2, + sym_self, + sym_underscore_type, + ACTIONS(4446), 11, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_forall, + anon_sym_else, + STATE(7865), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [302926] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5923), 1, + ACTIONS(5981), 1, anon_sym_DOT_DOT, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9081), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9099), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - STATE(6933), 1, + STATE(6970), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5921), 3, + ACTIONS(5979), 3, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, anon_sym_COLON2, - ACTIONS(9079), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [300774] = 23, + [303007] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7347), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - ACTIONS(7349), 1, + ACTIONS(9128), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(7371), 1, + ACTIONS(9148), 1, anon_sym_QMARK, - ACTIONS(7373), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(7375), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - ACTIONS(9163), 1, - anon_sym_RBRACE, - STATE(6934), 1, + ACTIONS(9236), 1, + anon_sym_COLON2, + STATE(6971), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [300859] = 23, + [303092] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(9075), 1, + ACTIONS(7368), 1, anon_sym_DOT_DOT, - ACTIONS(9077), 1, + ACTIONS(7370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(7376), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(7378), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(7382), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(7388), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, + ACTIONS(7392), 1, anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(7394), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(7396), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, sym_binary_ampersand, - ACTIONS(9165), 1, - anon_sym_COLON2, - STATE(6935), 1, + ACTIONS(9238), 1, + anon_sym_RBRACE, + STATE(6972), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(7386), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(7390), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(7374), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(7384), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(7408), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [300944] = 21, + [303177] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5941), 1, - anon_sym_DOT_DOT, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9081), 1, + ACTIONS(9126), 1, + anon_sym_DOT_DOT, + ACTIONS(9128), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9099), 1, + ACTIONS(9148), 1, + anon_sym_QMARK, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - STATE(6936), 1, + ACTIONS(9240), 1, + anon_sym_COLON2, + STATE(6973), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5939), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_COLON2, - ACTIONS(9079), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [301025] = 23, + [303262] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(6614), 1, + anon_sym_COMMA, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7347), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7439), 1, anon_sym_DOT_DOT, - ACTIONS(7349), 1, + ACTIONS(7441), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, + ACTIONS(7445), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(7447), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(7451), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(7457), 1, anon_sym_AMP_STAR, - ACTIONS(7371), 1, + ACTIONS(7461), 1, anon_sym_QMARK, - ACTIONS(7373), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7375), 1, + ACTIONS(7465), 1, anon_sym_PIPE_PIPE, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(7471), 1, sym_binary_ampersand, - ACTIONS(9167), 1, - anon_sym_RBRACE, - STATE(6937), 1, + STATE(6974), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7449), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, + ACTIONS(7455), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(7459), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(7443), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(7453), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(7467), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7469), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [301110] = 23, + [303347] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6580), 1, - anon_sym_COMMA, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7420), 1, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - ACTIONS(7422), 1, + ACTIONS(9128), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7426), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(7428), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(7432), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(7438), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(7442), 1, + ACTIONS(9148), 1, anon_sym_QMARK, - ACTIONS(7444), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(7446), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(7452), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - STATE(6938), 1, + ACTIONS(9242), 1, + anon_sym_COLON2, + STATE(6975), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7430), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7436), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7440), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7424), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7434), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7448), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7450), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [301195] = 23, + [303432] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(5977), 1, + anon_sym_DOT_DOT, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, - anon_sym_DOT_DOT, - ACTIONS(9077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9098), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9100), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9104), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9110), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, - anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9116), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9118), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, + ACTIONS(9124), 1, sym_binary_ampersand, - ACTIONS(9169), 1, - anon_sym_COLON2, - STATE(6939), 1, + STATE(6976), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9102), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9108), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9112), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(5975), 3, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(9096), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9106), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9120), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9122), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [301280] = 23, + [303513] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6010), 1, - anon_sym_COLON2, - ACTIONS(7114), 1, + ACTIONS(6092), 1, + anon_sym_EQ_GT, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, + ACTIONS(9092), 1, anon_sym_DOT_DOT, - ACTIONS(9077), 1, + ACTIONS(9094), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9098), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9100), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9104), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9110), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, + ACTIONS(9114), 1, anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9116), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9118), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, + ACTIONS(9124), 1, sym_binary_ampersand, - STATE(6940), 1, + STATE(6977), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9102), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9108), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9112), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9096), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9106), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9120), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9122), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [301365] = 23, + [303598] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6030), 1, + ACTIONS(5779), 1, anon_sym_COLON2, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - ACTIONS(9077), 1, + ACTIONS(9128), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, + ACTIONS(9148), 1, anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - STATE(6941), 1, + STATE(6978), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [301450] = 23, + [303683] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6032), 1, - anon_sym_COLON2, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - ACTIONS(9077), 1, + ACTIONS(9128), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, + ACTIONS(9148), 1, anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - STATE(6942), 1, + ACTIONS(9244), 1, + anon_sym_COLON2, + STATE(6979), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [301535] = 10, + [303768] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(6193), 1, + anon_sym_EQ_GT, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(9093), 1, - anon_sym_AMP_STAR, - STATE(6943), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9095), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(9107), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(9092), 1, anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6046), 19, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym_binary_ampersand, + ACTIONS(9094), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(9098), 1, + anon_sym_PIPE, + ACTIONS(9100), 1, anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(9104), 1, + anon_sym_EQ_EQ, + ACTIONS(9110), 1, + anon_sym_AMP_STAR, + ACTIONS(9114), 1, anon_sym_QMARK, + ACTIONS(9116), 1, anon_sym_AMP_AMP, + ACTIONS(9118), 1, anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [301594] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - STATE(6944), 1, + ACTIONS(9124), 1, + sym_binary_ampersand, + STATE(6980), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9095), 2, + ACTIONS(9102), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9108), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(9112), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, - anon_sym_DOT_DOT, + ACTIONS(9096), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6050), 23, + ACTIONS(9106), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(9120), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(9122), 4, sym__binary_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [301649] = 8, + [303853] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - STATE(6945), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9095), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - anon_sym_LT, + ACTIONS(9128), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9132), 1, anon_sym_PIPE, + ACTIONS(9134), 1, + anon_sym_CARET, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(6054), 23, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - sym__binary_star, - sym_binary_ampersand, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, + ACTIONS(9148), 1, anon_sym_QMARK, + ACTIONS(9150), 1, anon_sym_AMP_AMP, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, + ACTIONS(9160), 1, + sym_binary_ampersand, + ACTIONS(9246), 1, anon_sym_COLON2, - [301704] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(9093), 1, - anon_sym_AMP_STAR, - STATE(6946), 1, + STATE(6981), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9095), 2, + ACTIONS(9142), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9105), 4, + ACTIONS(9130), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(9140), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6064), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6062), 13, - sym_binary_ampersand, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [301767] = 21, + [303938] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6068), 1, - anon_sym_DOT_DOT, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(9081), 1, + ACTIONS(7368), 1, + anon_sym_DOT_DOT, + ACTIONS(7370), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7376), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(7378), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(7382), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(7388), 1, anon_sym_AMP_STAR, - ACTIONS(9099), 1, + ACTIONS(7392), 1, + anon_sym_QMARK, + ACTIONS(7394), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(7396), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, sym_binary_ampersand, - STATE(6947), 1, + ACTIONS(9248), 1, + anon_sym_RBRACE, + STATE(6982), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(7386), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(7390), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6066), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_COLON2, - ACTIONS(9079), 3, + ACTIONS(7374), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(7384), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(7408), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [301848] = 17, + [304023] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9081), 1, + ACTIONS(9126), 1, + anon_sym_DOT_DOT, + ACTIONS(9128), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9109), 1, + ACTIONS(9148), 1, + anon_sym_QMARK, + ACTIONS(9150), 1, + anon_sym_AMP_AMP, + ACTIONS(9152), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9160), 1, sym_binary_ampersand, - STATE(6948), 1, + ACTIONS(9250), 1, + anon_sym_COLON2, + STATE(6983), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9095), 2, + ACTIONS(9142), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6072), 4, - anon_sym_DOT_DOT, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6070), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [301921] = 13, + [304108] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(6092), 1, + sym__end_of_with_expression, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9093), 1, + ACTIONS(9164), 1, + anon_sym_PIPE, + ACTIONS(9166), 1, + anon_sym_CARET, + ACTIONS(9170), 1, + anon_sym_EQ_EQ, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9109), 1, + ACTIONS(9184), 1, sym_binary_ampersand, - STATE(6949), 1, + ACTIONS(9186), 1, + anon_sym_AMP_AMP, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, + anon_sym_PIPE_PIPE, + STATE(6984), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9095), 2, + ACTIONS(9174), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9105), 4, - sym_binary_plus, - sym_binary_minus, - sym_binary_wrapping_plus, - sym_binary_wrapping_minus, - ACTIONS(9107), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6082), 6, - anon_sym_DOT_DOT, + ACTIONS(9162), 3, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6080), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, + ACTIONS(9172), 4, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [301986] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(9093), 1, - anon_sym_AMP_STAR, - STATE(6950), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9095), 2, - sym__binary_double_star, - anon_sym_AMP_STAR_STAR, - ACTIONS(9105), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6090), 6, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6088), 15, - sym_binary_ampersand, - anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [302047] = 15, + [304193] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(6203), 1, + anon_sym_EQ_GT, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(9081), 1, + ACTIONS(9092), 1, + anon_sym_DOT_DOT, + ACTIONS(9094), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9098), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9100), 1, anon_sym_CARET, - ACTIONS(9093), 1, + ACTIONS(9104), 1, + anon_sym_EQ_EQ, + ACTIONS(9110), 1, anon_sym_AMP_STAR, - ACTIONS(9109), 1, + ACTIONS(9114), 1, + anon_sym_QMARK, + ACTIONS(9116), 1, + anon_sym_AMP_AMP, + ACTIONS(9118), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9124), 1, sym_binary_ampersand, - STATE(6951), 1, + STATE(6985), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9102), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9095), 2, + ACTIONS(9108), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + ACTIONS(9112), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9105), 4, + ACTIONS(9096), 3, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(9106), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(9120), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9122), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6094), 5, - anon_sym_DOT_DOT, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(6092), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [302116] = 19, + [304278] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6114), 1, - anon_sym_DOT_DOT, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9081), 1, + ACTIONS(9126), 1, + anon_sym_DOT_DOT, + ACTIONS(9128), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9109), 1, + ACTIONS(9148), 1, + anon_sym_QMARK, + ACTIONS(9150), 1, + anon_sym_AMP_AMP, + ACTIONS(9152), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9160), 1, sym_binary_ampersand, - STATE(6952), 1, + ACTIONS(9252), 1, + anon_sym_COLON2, + STATE(6986), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - ACTIONS(6112), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - [302193] = 20, + [304363] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6118), 1, - anon_sym_DOT_DOT, - ACTIONS(7114), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9081), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9099), 1, - anon_sym_AMP_AMP, - ACTIONS(9109), 1, + ACTIONS(9184), 1, sym_binary_ampersand, - STATE(6953), 1, + ACTIONS(9186), 1, + anon_sym_AMP_AMP, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9254), 1, + sym__end_of_with_expression, + STATE(6987), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6116), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_PIPE_PIPE, - anon_sym_COLON2, - ACTIONS(9089), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [302272] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7677), 1, - anon_sym_typeof, - ACTIONS(7679), 1, - sym__constant_segment, - ACTIONS(7681), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - sym__start_of_tuple_type, - ACTIONS(7687), 1, - sym__start_of_named_tuple_type, - ACTIONS(7827), 1, - anon_sym_LPAREN, - ACTIONS(7829), 1, - anon_sym_DASH_GT, - STATE(6954), 1, - sym_heredoc_body, - STATE(7775), 1, - sym_constant, - STATE(7846), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7683), 2, - sym_self, - sym_underscore_type, - ACTIONS(4409), 11, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_forall, - anon_sym_else, - STATE(7815), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [302341] = 23, + [304448] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7347), 1, - anon_sym_DOT_DOT, - ACTIONS(7349), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(7361), 1, - anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(7371), 1, - anon_sym_QMARK, - ACTIONS(7373), 1, - anon_sym_AMP_AMP, - ACTIONS(7375), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - ACTIONS(9171), 1, - anon_sym_RBRACE, - STATE(6955), 1, + STATE(6988), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(7363), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [302426] = 23, + ACTIONS(6134), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6132), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + [304517] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6010), 1, - sym__end_of_with_expression, - ACTIONS(8007), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - ACTIONS(9043), 1, + ACTIONS(9128), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, + ACTIONS(9148), 1, anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - STATE(6956), 1, + ACTIONS(9256), 1, + anon_sym_COLON2, + STATE(6989), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [302511] = 23, + [304602] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(9075), 1, + ACTIONS(7368), 1, anon_sym_DOT_DOT, - ACTIONS(9077), 1, + ACTIONS(7370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(7376), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(7378), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(7382), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(7388), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, + ACTIONS(7392), 1, anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(7394), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(7396), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, sym_binary_ampersand, - ACTIONS(9173), 1, - anon_sym_COLON2, - STATE(6957), 1, + ACTIONS(9258), 1, + anon_sym_RBRACE, + STATE(6990), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(7386), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(7390), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(7374), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(7384), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(7408), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [302596] = 21, + [304687] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6242), 1, - anon_sym_DOT_DOT, - ACTIONS(7114), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9081), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9099), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, - sym_binary_ampersand, - STATE(6958), 1, + ACTIONS(9260), 1, + sym__end_of_with_expression, + STATE(6991), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6240), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_COLON2, - ACTIONS(9079), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [302677] = 15, + [304772] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7677), 1, - anon_sym_typeof, - ACTIONS(7679), 1, - sym__constant_segment, - ACTIONS(7681), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - sym__start_of_tuple_type, - ACTIONS(7687), 1, - sym__start_of_named_tuple_type, - ACTIONS(7827), 1, - anon_sym_LPAREN, - ACTIONS(7829), 1, - anon_sym_DASH_GT, - STATE(6959), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(9110), 1, + anon_sym_AMP_STAR, + STATE(6992), 1, sym_heredoc_body, - STATE(7775), 1, - sym_constant, - STATE(7825), 1, - sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7683), 2, - sym_self, - sym_underscore_type, - ACTIONS(4431), 11, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_forall, - anon_sym_else, - STATE(7815), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [302746] = 23, + ACTIONS(9112), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(9122), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6259), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6257), 19, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym_binary_ampersand, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [304831] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6256), 1, - anon_sym_COLON2, - ACTIONS(7114), 1, + ACTIONS(6193), 1, + sym__end_of_with_expression, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, - anon_sym_DOT_DOT, - ACTIONS(9077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, - anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, - sym_binary_ampersand, - STATE(6960), 1, + STATE(6993), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [302831] = 23, + [304916] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, - anon_sym_DOT, - ACTIONS(7347), 1, + ACTIONS(5981), 1, anon_sym_DOT_DOT, - ACTIONS(7349), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(9098), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(9100), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(9104), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(9110), 1, anon_sym_AMP_STAR, - ACTIONS(7371), 1, - anon_sym_QMARK, - ACTIONS(7373), 1, + ACTIONS(9116), 1, anon_sym_AMP_AMP, - ACTIONS(7375), 1, + ACTIONS(9118), 1, anon_sym_PIPE_PIPE, - ACTIONS(7383), 1, - sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(9124), 1, sym_binary_ampersand, - ACTIONS(9175), 1, - anon_sym_RBRACE, - STATE(6961), 1, + STATE(6994), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(9102), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, + ACTIONS(9108), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(9112), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(5979), 3, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(9096), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(9106), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(9120), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(9122), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [302916] = 23, + [304997] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - ACTIONS(9077), 1, + ACTIONS(9128), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, + ACTIONS(9148), 1, anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - ACTIONS(9177), 1, + ACTIONS(9262), 1, anon_sym_COLON2, - STATE(6962), 1, + STATE(6995), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303001] = 23, + [305082] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6230), 1, - anon_sym_COLON2, - ACTIONS(7114), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, - anon_sym_DOT_DOT, - ACTIONS(9077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, - anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, - sym_binary_ampersand, - STATE(6963), 1, + ACTIONS(9264), 1, + sym__end_of_with_expression, + STATE(6996), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303086] = 23, + [305167] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - ACTIONS(9043), 1, + ACTIONS(9128), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, + ACTIONS(9148), 1, anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - ACTIONS(9179), 1, - sym__end_of_with_expression, - STATE(6964), 1, + ACTIONS(9266), 1, + anon_sym_COLON2, + STATE(6997), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303171] = 8, + [305252] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9181), 1, - sym_identifier, - ACTIONS(9183), 1, - sym_identifier_method_call, - STATE(6965), 1, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8316), 1, + sym__start_of_index_operator, + STATE(6998), 1, sym_heredoc_body, - STATE(8081), 1, - sym__operator_token, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8107), 10, + ACTIONS(9112), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6295), 7, + anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, anon_sym_AMP_STAR, - ACTIONS(8109), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(6293), 23, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, anon_sym_CARET, - anon_sym_STAR_STAR, anon_sym_GT_GT, anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, - anon_sym_LBRACK_RBRACK_QMARK, - anon_sym_LBRACK_RBRACK_EQ, - anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_PLUS, - anon_sym_AMP_DASH, - anon_sym_AMP_STAR_STAR, - [303226] = 23, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [305307] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(6203), 1, + sym__end_of_with_expression, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, - anon_sym_DOT_DOT, - ACTIONS(9077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, - anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, - sym_binary_ampersand, - ACTIONS(9185), 1, - anon_sym_COLON2, - STATE(6966), 1, + STATE(6999), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303311] = 23, + [305392] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - ACTIONS(9077), 1, + ACTIONS(9128), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, + ACTIONS(9148), 1, anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - ACTIONS(9187), 1, + ACTIONS(9268), 1, anon_sym_COLON2, - STATE(6967), 1, + STATE(7000), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303396] = 23, + [305477] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(6047), 1, + anon_sym_DOT_DOT, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, - anon_sym_DOT_DOT, - ACTIONS(9077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, - anon_sym_QMARK, - ACTIONS(9099), 1, - anon_sym_AMP_AMP, - ACTIONS(9101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - ACTIONS(9189), 1, - anon_sym_COLON2, - STATE(6968), 1, + STATE(7001), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303481] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9191), 1, - sym_identifier, - ACTIONS(9193), 1, - sym_identifier_method_call, - STATE(6969), 1, - sym_heredoc_body, - STATE(7888), 1, - sym__operator_token, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8088), 10, - anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, - anon_sym_AMP_STAR, - ACTIONS(8090), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_LBRACK_RBRACK_QMARK, - anon_sym_LBRACK_RBRACK_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_PLUS, - anon_sym_AMP_DASH, - anon_sym_AMP_STAR_STAR, - [303536] = 23, + ACTIONS(6045), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + [305554] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, - anon_sym_DOT_DOT, - ACTIONS(9077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, - anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, - sym_binary_ampersand, - ACTIONS(9195), 1, - anon_sym_COLON2, - STATE(6970), 1, + ACTIONS(9270), 1, + sym__end_of_with_expression, + STATE(7002), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303621] = 23, + [305639] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, + STATE(7003), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9112), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, anon_sym_DOT_DOT, - ACTIONS(9077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(9083), 1, - anon_sym_CARET, - ACTIONS(9087), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(9097), 1, + ACTIONS(6313), 23, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_QMARK, - ACTIONS(9099), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, - sym_binary_ampersand, - ACTIONS(9197), 1, - anon_sym_COLON2, - STATE(6971), 1, + [305694] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(9110), 1, + anon_sym_AMP_STAR, + STATE(7004), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9102), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9112), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(9089), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9120), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9122), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303706] = 23, + ACTIONS(6327), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6325), 13, + sym_binary_ampersand, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [305757] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, - anon_sym_DOT_DOT, - ACTIONS(9077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, - anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, - sym_binary_ampersand, - ACTIONS(9199), 1, - anon_sym_COLON2, - STATE(6972), 1, + ACTIONS(9272), 1, + sym__end_of_with_expression, + STATE(7005), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303791] = 23, + [305842] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(5779), 1, + sym__end_of_with_expression, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, - anon_sym_DOT_DOT, - ACTIONS(9077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, - anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, - sym_binary_ampersand, - ACTIONS(9201), 1, - anon_sym_COLON2, - STATE(6973), 1, + STATE(7006), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303876] = 23, + [305927] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, - anon_sym_DOT_DOT, - ACTIONS(9043), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, - anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, - sym_binary_ampersand, - ACTIONS(9203), 1, + ACTIONS(9274), 1, sym__end_of_with_expression, - STATE(6974), 1, + STATE(7007), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [303961] = 23, + [306012] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, + ACTIONS(9176), 1, + anon_sym_AMP_STAR, + STATE(7008), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9178), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(9182), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6259), 6, anon_sym_DOT_DOT, - ACTIONS(9077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(9083), 1, - anon_sym_CARET, - ACTIONS(9087), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, - anon_sym_AMP_STAR, - ACTIONS(9097), 1, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6257), 19, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym_binary_ampersand, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_QMARK, - ACTIONS(9099), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, - sym_binary_ampersand, - ACTIONS(9205), 1, - anon_sym_COLON2, - STATE(6975), 1, + [306071] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8783), 1, + sym__start_of_index_operator, + STATE(7009), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(9091), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(6295), 7, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + anon_sym_AMP_STAR, + ACTIONS(6293), 23, + sym__end_of_with_expression, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, sym__binary_star, + sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [304046] = 23, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [306126] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7689), 1, + anon_sym_typeof, + ACTIONS(7691), 1, + sym__constant_segment, + ACTIONS(7693), 1, + anon_sym_COLON_COLON, + ACTIONS(7697), 1, + sym__start_of_tuple_type, + ACTIONS(7699), 1, + sym__start_of_named_tuple_type, + ACTIONS(7792), 1, + anon_sym_LPAREN, + ACTIONS(7794), 1, + anon_sym_DASH_GT, + STATE(7010), 1, + sym_heredoc_body, + STATE(7803), 1, + sym_constant, + STATE(7890), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7695), 2, + sym_self, + sym_underscore_type, + ACTIONS(4468), 11, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_forall, + anon_sym_else, + STATE(7865), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [306195] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(6442), 1, + anon_sym_DOT_DOT, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, - anon_sym_DOT_DOT, - ACTIONS(9043), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9098), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9100), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9104), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9110), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, - anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9116), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9118), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, + ACTIONS(9124), 1, sym_binary_ampersand, - ACTIONS(9207), 1, - sym__end_of_with_expression, - STATE(6976), 1, + STATE(7011), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9102), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9108), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9112), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(6440), 3, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(9096), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9106), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9120), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9122), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [304131] = 23, + [306276] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, - anon_sym_DOT_DOT, - ACTIONS(9043), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9098), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9100), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9104), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9110), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, - anon_sym_QMARK, - ACTIONS(9065), 1, - anon_sym_AMP_AMP, - ACTIONS(9067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, + ACTIONS(9124), 1, sym_binary_ampersand, - ACTIONS(9209), 1, - sym__end_of_with_expression, - STATE(6977), 1, + STATE(7012), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9102), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9112), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(5817), 4, + anon_sym_DOT_DOT, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9106), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9120), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9122), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [304216] = 23, + ACTIONS(5815), 7, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [306349] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, - anon_sym_DOT_DOT, - ACTIONS(9043), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, - anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, - sym_binary_ampersand, - ACTIONS(9211), 1, + ACTIONS(9276), 1, sym__end_of_with_expression, - STATE(6978), 1, + STATE(7013), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [304301] = 23, + [306434] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, + STATE(7014), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9178), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(6315), 7, anon_sym_DOT_DOT, - ACTIONS(9043), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(9049), 1, - anon_sym_CARET, - ACTIONS(9053), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + anon_sym_LT_EQ, + anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(9063), 1, + ACTIONS(6313), 23, + sym__end_of_with_expression, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + sym__binary_star, + sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_QMARK, - ACTIONS(9065), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, + [306489] = 13, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(9110), 1, + anon_sym_AMP_STAR, + ACTIONS(9124), 1, sym_binary_ampersand, - ACTIONS(9213), 1, - sym__end_of_with_expression, - STATE(6979), 1, + STATE(7015), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9102), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9112), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(9055), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9120), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9122), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [304386] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(6256), 1, - sym__end_of_with_expression, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(9041), 1, + ACTIONS(6263), 6, anon_sym_DOT_DOT, - ACTIONS(9043), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(9049), 1, - anon_sym_CARET, - ACTIONS(9053), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, - anon_sym_AMP_STAR, - ACTIONS(9063), 1, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6261), 12, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, anon_sym_QMARK, - ACTIONS(9065), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, - sym_binary_ampersand, - STATE(6980), 1, + [306554] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(9176), 1, + anon_sym_AMP_STAR, + STATE(7016), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9180), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(9182), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6327), 6, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(6325), 13, + sym__end_of_with_expression, + sym_binary_ampersand, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [306617] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(9110), 1, + anon_sym_AMP_STAR, + STATE(7017), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9112), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(9120), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9122), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [304471] = 23, + ACTIONS(5869), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5867), 15, + sym_binary_ampersand, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [306678] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - ACTIONS(9077), 1, + ACTIONS(9128), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, + ACTIONS(9148), 1, anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - ACTIONS(9215), 1, + ACTIONS(9278), 1, anon_sym_COLON2, - STATE(6981), 1, + STATE(7018), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [304556] = 23, + [306763] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - ACTIONS(9043), 1, + ACTIONS(9128), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, + ACTIONS(9148), 1, anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - ACTIONS(9217), 1, - sym__end_of_with_expression, - STATE(6982), 1, + ACTIONS(9280), 1, + anon_sym_COLON2, + STATE(7019), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [304641] = 23, + [306848] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, - anon_sym_DOT_DOT, - ACTIONS(9043), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, - anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, - sym_binary_ampersand, - ACTIONS(9219), 1, + ACTIONS(9282), 1, sym__end_of_with_expression, - STATE(6983), 1, + STATE(7020), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [304726] = 23, + [306933] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(5977), 1, + anon_sym_DOT_DOT, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, - anon_sym_DOT_DOT, - ACTIONS(9043), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, - anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, - sym_binary_ampersand, - ACTIONS(9221), 1, - sym__end_of_with_expression, - STATE(6984), 1, + STATE(7021), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(5975), 3, + sym__end_of_with_expression, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [304811] = 23, + [307014] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(6442), 1, + anon_sym_DOT_DOT, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, - anon_sym_DOT_DOT, - ACTIONS(9043), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, - anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, - sym_binary_ampersand, - ACTIONS(9223), 1, - sym__end_of_with_expression, - STATE(6985), 1, + STATE(7022), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(6440), 3, + sym__end_of_with_expression, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [304896] = 23, + [307095] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(5825), 1, + anon_sym_COLON2, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - ACTIONS(9043), 1, + ACTIONS(9128), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, + ACTIONS(9148), 1, anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - ACTIONS(9225), 1, - sym__end_of_with_expression, - STATE(6986), 1, + STATE(7023), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [304981] = 23, + [307180] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, - anon_sym_DOT_DOT, - ACTIONS(9077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, - anon_sym_QMARK, - ACTIONS(9099), 1, - anon_sym_AMP_AMP, - ACTIONS(9101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, + ACTIONS(9184), 1, sym_binary_ampersand, - ACTIONS(9227), 1, - anon_sym_COLON2, - STATE(6987), 1, + STATE(7024), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(5817), 4, + anon_sym_DOT_DOT, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305066] = 23, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(9041), 1, - anon_sym_DOT_DOT, - ACTIONS(9043), 1, + ACTIONS(5815), 7, + sym__end_of_with_expression, anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, - anon_sym_PIPE, - ACTIONS(9049), 1, - anon_sym_CARET, - ACTIONS(9053), 1, - anon_sym_EQ_EQ, - ACTIONS(9059), 1, - anon_sym_AMP_STAR, - ACTIONS(9063), 1, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_QMARK, - ACTIONS(9065), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, - sym_binary_ampersand, - ACTIONS(9229), 1, - sym__end_of_with_expression, - STATE(6988), 1, + [307253] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9284), 1, + sym_identifier, + ACTIONS(9286), 1, + sym_identifier_method_call, + STATE(7025), 1, sym_heredoc_body, + STATE(8107), 1, + sym__operator_token, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(8210), 10, + anon_sym_LT, + anon_sym_STAR, + anon_sym_SLASH2, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(8212), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_LBRACK_RBRACK_QMARK, + anon_sym_LBRACK_RBRACK_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, + anon_sym_AMP_STAR_STAR, + [307308] = 13, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(9176), 1, + anon_sym_AMP_STAR, + ACTIONS(9184), 1, + sym_binary_ampersand, + STATE(7026), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9168), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9180), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(9182), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6263), 6, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(6261), 12, + sym__end_of_with_expression, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [307373] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8142), 1, + anon_sym_DOT, + ACTIONS(8783), 1, + sym__start_of_index_operator, + ACTIONS(9176), 1, + anon_sym_AMP_STAR, + STATE(7027), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9178), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305151] = 23, + ACTIONS(5869), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5867), 15, + sym__end_of_with_expression, + sym_binary_ampersand, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [307434] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - ACTIONS(9043), 1, + ACTIONS(9128), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, + ACTIONS(9148), 1, anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - ACTIONS(9231), 1, - sym__end_of_with_expression, - STATE(6989), 1, + ACTIONS(9288), 1, + anon_sym_COLON2, + STATE(7028), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305236] = 23, + [307519] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, - anon_sym_DOT_DOT, - ACTIONS(9043), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, - anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, - sym_binary_ampersand, - ACTIONS(9233), 1, + ACTIONS(9290), 1, sym__end_of_with_expression, - STATE(6990), 1, + STATE(7029), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305321] = 23, + [307604] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, - anon_sym_DOT_DOT, - ACTIONS(9043), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, - anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, - sym_binary_ampersand, - ACTIONS(9235), 1, + ACTIONS(9292), 1, sym__end_of_with_expression, - STATE(6991), 1, + STATE(7030), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305406] = 23, + [307689] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(5977), 1, + anon_sym_DOT_DOT, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, - anon_sym_DOT_DOT, - ACTIONS(9043), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, - anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - ACTIONS(9237), 1, - sym__end_of_with_expression, - STATE(6992), 1, + STATE(7031), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(5975), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_COLON2, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305491] = 23, + [307770] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, - anon_sym_DOT_DOT, - ACTIONS(9043), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9053), 1, - anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, - anon_sym_QMARK, - ACTIONS(9065), 1, - anon_sym_AMP_AMP, - ACTIONS(9067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, + ACTIONS(9184), 1, sym_binary_ampersand, - ACTIONS(9239), 1, - sym__end_of_with_expression, - STATE(6993), 1, + STATE(7032), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(9055), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305576] = 23, + ACTIONS(6134), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6132), 11, + sym__end_of_with_expression, + anon_sym_DOT_DOT_DOT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [307839] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, - anon_sym_DOT_DOT, - ACTIONS(9043), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, - anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, - sym_binary_ampersand, - ACTIONS(9241), 1, + ACTIONS(9294), 1, sym__end_of_with_expression, - STATE(6994), 1, + STATE(7033), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305661] = 23, + [307924] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, - anon_sym_DOT, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(9041), 1, - anon_sym_DOT_DOT, - ACTIONS(9043), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, - anon_sym_PIPE, - ACTIONS(9049), 1, - anon_sym_CARET, - ACTIONS(9053), 1, - anon_sym_EQ_EQ, - ACTIONS(9059), 1, - anon_sym_AMP_STAR, - ACTIONS(9063), 1, - anon_sym_QMARK, - ACTIONS(9065), 1, - anon_sym_AMP_AMP, - ACTIONS(9067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, - sym_binary_ampersand, - ACTIONS(9243), 1, - sym__end_of_with_expression, - STATE(6995), 1, + ACTIONS(9296), 1, + sym_identifier, + ACTIONS(9298), 1, + sym_identifier_method_call, + STATE(7034), 1, sym_heredoc_body, + STATE(7806), 1, + sym__operator_token, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(8005), 10, + anon_sym_LT, + anon_sym_STAR, + anon_sym_SLASH2, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(8007), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR_STAR, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, - sym__binary_double_star, + anon_sym_EQ_EQ_EQ, + anon_sym_LBRACK_RBRACK_QMARK, + anon_sym_LBRACK_RBRACK_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + [307979] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9300), 1, + sym_identifier, + ACTIONS(9302), 1, + sym_identifier_method_call, + STATE(7035), 1, + sym_heredoc_body, + STATE(7936), 1, + sym__operator_token, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8103), 10, anon_sym_LT, + anon_sym_STAR, + anon_sym_SLASH2, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(8105), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, + anon_sym_LBRACK_RBRACK_QMARK, + anon_sym_LBRACK_RBRACK_EQ, + anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, + anon_sym_AMP_STAR_STAR, + [308034] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7913), 1, + anon_sym_DOT, + ACTIONS(8316), 1, + sym__start_of_index_operator, + ACTIONS(9098), 1, + anon_sym_PIPE, + ACTIONS(9100), 1, + anon_sym_CARET, + ACTIONS(9110), 1, + anon_sym_AMP_STAR, + ACTIONS(9124), 1, + sym_binary_ampersand, + STATE(7036), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9102), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9112), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(9120), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9122), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305746] = 23, + ACTIONS(6134), 5, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6132), 11, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [308103] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, - sym__start_of_index_operator, - ACTIONS(9041), 1, + ACTIONS(7368), 1, anon_sym_DOT_DOT, - ACTIONS(9043), 1, + ACTIONS(7370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(7376), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(7378), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(7382), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(7388), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, + ACTIONS(7392), 1, anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(7394), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(7396), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(7410), 1, sym_binary_ampersand, - ACTIONS(9245), 1, - sym__end_of_with_expression, - STATE(6996), 1, + ACTIONS(9304), 1, + anon_sym_RBRACE, + STATE(7037), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(7386), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(7390), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(7374), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(7384), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(7408), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305831] = 23, + [308188] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(6092), 1, + anon_sym_COLON2, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - ACTIONS(9043), 1, + ACTIONS(9128), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, + ACTIONS(9148), 1, anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - ACTIONS(9247), 1, - sym__end_of_with_expression, - STATE(6997), 1, + STATE(7038), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [305916] = 23, + [308273] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, - anon_sym_DOT_DOT, - ACTIONS(9077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, - anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, - sym_binary_ampersand, - ACTIONS(9249), 1, - anon_sym_COLON2, - STATE(6998), 1, + ACTIONS(9306), 1, + sym__end_of_with_expression, + STATE(7039), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306001] = 21, + [308358] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5923), 1, + ACTIONS(5981), 1, anon_sym_DOT_DOT, - ACTIONS(7797), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8239), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9131), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9133), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9137), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9143), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9147), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9149), 1, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9155), 1, - sym_binary_ampersand, - STATE(6999), 1, + STATE(7040), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9135), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9141), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9145), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5921), 3, - anon_sym_EQ_GT, + ACTIONS(5979), 3, + sym__end_of_with_expression, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - ACTIONS(9129), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9139), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9151), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9153), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306082] = 23, + [308439] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7797), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8209), 1, - anon_sym_EQ_GT, - ACTIONS(8239), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9131), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9133), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9137), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9143), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9147), 1, - anon_sym_AMP_AMP, - ACTIONS(9149), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9155), 1, + ACTIONS(9184), 1, sym_binary_ampersand, - ACTIONS(9157), 1, + ACTIONS(9186), 1, + anon_sym_AMP_AMP, + ACTIONS(9188), 1, anon_sym_DOT_DOT, - ACTIONS(9159), 1, + ACTIONS(9190), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9161), 1, + ACTIONS(9192), 1, anon_sym_QMARK, - STATE(7000), 1, + ACTIONS(9194), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9308), 1, + sym__end_of_with_expression, + STATE(7041), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9135), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9141), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9145), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9129), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9139), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9151), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9153), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306167] = 23, + [308524] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(6047), 1, + anon_sym_DOT_DOT, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, - anon_sym_DOT_DOT, - ACTIONS(9077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9098), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9100), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9104), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9110), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, - anon_sym_QMARK, - ACTIONS(9099), 1, - anon_sym_AMP_AMP, - ACTIONS(9101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, + ACTIONS(9124), 1, sym_binary_ampersand, - ACTIONS(9251), 1, - anon_sym_COLON2, - STATE(7001), 1, + STATE(7042), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9102), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9108), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9112), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9096), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9106), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9120), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9122), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306252] = 23, + ACTIONS(6045), 5, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [308601] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6030), 1, - sym__end_of_with_expression, - ACTIONS(8007), 1, + ACTIONS(9310), 1, + sym_identifier, + ACTIONS(9312), 1, + sym_identifier_method_call, + STATE(2029), 1, + sym__operator_token, + STATE(7043), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8242), 10, + anon_sym_LT, + anon_sym_STAR, + anon_sym_SLASH2, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_LBRACK_RBRACK, + anon_sym_BANG, + anon_sym_AMP_STAR, + ACTIONS(8244), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_STAR_STAR, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_LBRACK_RBRACK_QMARK, + anon_sym_LBRACK_RBRACK_EQ, + anon_sym_TILDE, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_AMP_PLUS, + anon_sym_AMP_DASH, + anon_sym_AMP_STAR_STAR, + [308656] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - ACTIONS(9043), 1, + ACTIONS(9128), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, + ACTIONS(9148), 1, anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - STATE(7002), 1, + ACTIONS(9314), 1, + anon_sym_COLON2, + STATE(7044), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306337] = 23, + [308741] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6032), 1, - sym__end_of_with_expression, - ACTIONS(8007), 1, + ACTIONS(6193), 1, + anon_sym_COLON2, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - ACTIONS(9043), 1, + ACTIONS(9128), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, + ACTIONS(9148), 1, anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - STATE(7003), 1, + STATE(7045), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306422] = 23, + [308826] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(6203), 1, + anon_sym_COLON2, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - ACTIONS(9077), 1, + ACTIONS(9128), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, + ACTIONS(9148), 1, anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - ACTIONS(9253), 1, - anon_sym_COLON2, - STATE(7004), 1, + STATE(7046), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306507] = 23, + [308911] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, - anon_sym_DOT_DOT, - ACTIONS(9043), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, - anon_sym_PIPE, - ACTIONS(9049), 1, - anon_sym_CARET, - ACTIONS(9053), 1, - anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, - anon_sym_QMARK, - ACTIONS(9065), 1, - anon_sym_AMP_AMP, - ACTIONS(9067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, - sym_binary_ampersand, - ACTIONS(9255), 1, - sym__end_of_with_expression, - STATE(7005), 1, + STATE(7047), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, - anon_sym_GT_GT, - anon_sym_LT_LT, - ACTIONS(9057), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9158), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6259), 6, + anon_sym_DOT_DOT, anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(6257), 19, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - [306592] = 23, + sym_binary_ampersand, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + [308970] = 20, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(6215), 1, + anon_sym_DOT_DOT, + ACTIONS(7913), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(8316), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, - anon_sym_DOT_DOT, - ACTIONS(9077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, + ACTIONS(9098), 1, anon_sym_PIPE, - ACTIONS(9083), 1, + ACTIONS(9100), 1, anon_sym_CARET, - ACTIONS(9087), 1, + ACTIONS(9104), 1, anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9110), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, - anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9116), 1, anon_sym_AMP_AMP, - ACTIONS(9101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, + ACTIONS(9124), 1, sym_binary_ampersand, - ACTIONS(9257), 1, - anon_sym_COLON2, - STATE(7006), 1, + STATE(7048), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9102), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, + ACTIONS(9108), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9112), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, + ACTIONS(9096), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9089), 4, + ACTIONS(6213), 4, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_PIPE_PIPE, + ACTIONS(9106), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9120), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9122), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306677] = 10, + [309049] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9059), 1, - anon_sym_AMP_STAR, - STATE(7007), 1, + STATE(7049), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9061), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9071), 4, - sym__binary_star, - sym__binary_slash, - sym__binary_double_slash, - sym__modulo_operator, - ACTIONS(6048), 6, + ACTIONS(6295), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(6046), 19, - sym__end_of_with_expression, + anon_sym_AMP_STAR, + ACTIONS(6293), 23, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + sym__binary_star, sym_binary_ampersand, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, anon_sym_DOT_DOT_DOT, anon_sym_CARET, anon_sym_GT_GT, @@ -593525,22 +599994,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [306736] = 8, + anon_sym_COLON2, + [309104] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - STATE(7008), 1, + STATE(7050), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9061), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6052), 7, + ACTIONS(6315), 7, anon_sym_DOT_DOT, anon_sym_LT, anon_sym_PIPE, @@ -593548,8 +600018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT, anon_sym_AMP_STAR, - ACTIONS(6050), 23, - sym__end_of_with_expression, + ACTIONS(6313), 23, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, @@ -593572,605 +600041,666 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [306791] = 23, + anon_sym_COLON2, + [309159] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7114), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9075), 1, - anon_sym_DOT_DOT, - ACTIONS(9077), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9081), 1, - anon_sym_PIPE, - ACTIONS(9083), 1, - anon_sym_CARET, - ACTIONS(9087), 1, - anon_sym_EQ_EQ, - ACTIONS(9093), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9097), 1, - anon_sym_QMARK, - ACTIONS(9099), 1, - anon_sym_AMP_AMP, - ACTIONS(9101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9109), 1, - sym_binary_ampersand, - ACTIONS(9259), 1, - anon_sym_COLON2, - STATE(7009), 1, + STATE(7051), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9085), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9091), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - ACTIONS(9095), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9079), 3, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - ACTIONS(9089), 4, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - ACTIONS(9105), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9107), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306876] = 23, + ACTIONS(6327), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(6325), 13, + sym_binary_ampersand, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + [309222] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, - anon_sym_DOT_DOT, - ACTIONS(9043), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, - anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, - sym_binary_ampersand, - ACTIONS(9261), 1, + ACTIONS(9316), 1, sym__end_of_with_expression, - STATE(7010), 1, + STATE(7052), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [306961] = 23, + [309307] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, - anon_sym_DOT_DOT, - ACTIONS(9043), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, - anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, - sym_binary_ampersand, - ACTIONS(9263), 1, + ACTIONS(9318), 1, sym__end_of_with_expression, - STATE(7011), 1, + STATE(7053), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [307046] = 21, + [309392] = 21, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5923), 1, + ACTIONS(6442), 1, anon_sym_DOT_DOT, - ACTIONS(8007), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9047), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9065), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - STATE(7012), 1, + STATE(7054), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5921), 3, - sym__end_of_with_expression, + ACTIONS(6440), 3, anon_sym_DOT_DOT_DOT, anon_sym_QMARK, - ACTIONS(9045), 3, + anon_sym_COLON2, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [307127] = 8, + [309473] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - STATE(7013), 1, + ACTIONS(9132), 1, + anon_sym_PIPE, + ACTIONS(9134), 1, + anon_sym_CARET, + ACTIONS(9138), 1, + anon_sym_EQ_EQ, + ACTIONS(9144), 1, + anon_sym_AMP_STAR, + ACTIONS(9160), 1, + sym_binary_ampersand, + STATE(7055), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9061), 2, + ACTIONS(9136), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(6056), 7, + ACTIONS(5817), 4, anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_AMP_STAR, - ACTIONS(6054), 23, - sym__end_of_with_expression, + ACTIONS(9140), 4, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, + ACTIONS(9158), 4, sym__binary_star, - sym_binary_ampersand, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, + ACTIONS(5815), 7, anon_sym_DOT_DOT_DOT, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [307182] = 8, + anon_sym_COLON2, + [309546] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9265), 1, - sym_identifier, - ACTIONS(9267), 1, - sym_identifier_method_call, - STATE(2033), 1, - sym__operator_token, - STATE(7014), 1, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(9144), 1, + anon_sym_AMP_STAR, + ACTIONS(9160), 1, + sym_binary_ampersand, + STATE(7056), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8048), 10, + ACTIONS(9136), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(9146), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(9156), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(9158), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(6263), 6, + anon_sym_DOT_DOT, anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT_EQ, anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, - anon_sym_AMP_STAR, - ACTIONS(8050), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(6261), 12, + anon_sym_DOT_DOT_DOT, anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_GT_GT, - anon_sym_LT_LT, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, anon_sym_EQ_EQ_EQ, - anon_sym_LBRACK_RBRACK_QMARK, - anon_sym_LBRACK_RBRACK_EQ, - anon_sym_TILDE, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - anon_sym_AMP_PLUS, - anon_sym_AMP_DASH, - anon_sym_AMP_STAR_STAR, - [307237] = 21, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + [309611] = 23, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5941), 1, - anon_sym_DOT_DOT, - ACTIONS(8007), 1, + ACTIONS(8142), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(8783), 1, sym__start_of_index_operator, - ACTIONS(9047), 1, + ACTIONS(9164), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9166), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9170), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9176), 1, anon_sym_AMP_STAR, - ACTIONS(9065), 1, + ACTIONS(9184), 1, + sym_binary_ampersand, + ACTIONS(9186), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9188), 1, + anon_sym_DOT_DOT, + ACTIONS(9190), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9192), 1, + anon_sym_QMARK, + ACTIONS(9194), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, - sym_binary_ampersand, - STATE(7015), 1, + ACTIONS(9320), 1, + sym__end_of_with_expression, + STATE(7057), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9168), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9174), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9178), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(5939), 3, - sym__end_of_with_expression, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - ACTIONS(9045), 3, + ACTIONS(9162), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9172), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9180), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9182), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [307318] = 23, + [309696] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8007), 1, + ACTIONS(7135), 1, anon_sym_DOT, - ACTIONS(8831), 1, + ACTIONS(7404), 1, + sym__start_of_index_operator, + ACTIONS(9144), 1, + anon_sym_AMP_STAR, + STATE(7058), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9146), 2, + sym__binary_double_star, + anon_sym_AMP_STAR_STAR, + ACTIONS(9156), 4, + sym_binary_plus, + sym_binary_minus, + sym_binary_wrapping_plus, + sym_binary_wrapping_minus, + ACTIONS(9158), 4, + sym__binary_star, + sym__binary_slash, + sym__binary_double_slash, + sym__modulo_operator, + ACTIONS(5869), 6, + anon_sym_DOT_DOT, + anon_sym_LT, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT, + ACTIONS(5867), 15, + sym_binary_ampersand, + anon_sym_DOT_DOT_DOT, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ_GT, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_TILDE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_COLON2, + [309757] = 23, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7135), 1, + anon_sym_DOT, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(9041), 1, + ACTIONS(9126), 1, anon_sym_DOT_DOT, - ACTIONS(9043), 1, + ACTIONS(9128), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(9047), 1, + ACTIONS(9132), 1, anon_sym_PIPE, - ACTIONS(9049), 1, + ACTIONS(9134), 1, anon_sym_CARET, - ACTIONS(9053), 1, + ACTIONS(9138), 1, anon_sym_EQ_EQ, - ACTIONS(9059), 1, + ACTIONS(9144), 1, anon_sym_AMP_STAR, - ACTIONS(9063), 1, + ACTIONS(9148), 1, anon_sym_QMARK, - ACTIONS(9065), 1, + ACTIONS(9150), 1, anon_sym_AMP_AMP, - ACTIONS(9067), 1, + ACTIONS(9152), 1, anon_sym_PIPE_PIPE, - ACTIONS(9073), 1, + ACTIONS(9160), 1, sym_binary_ampersand, - ACTIONS(9269), 1, - sym__end_of_with_expression, - STATE(7016), 1, + ACTIONS(9322), 1, + anon_sym_COLON2, + STATE(7059), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9051), 2, + ACTIONS(9136), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(9057), 2, + ACTIONS(9142), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(9061), 2, + ACTIONS(9146), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(9045), 3, + ACTIONS(9130), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(9055), 4, + ACTIONS(9140), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(9069), 4, + ACTIONS(9156), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(9071), 4, + ACTIONS(9158), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [307403] = 8, + [309842] = 22, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9271), 1, - sym_identifier, - ACTIONS(9273), 1, - sym_identifier_method_call, - STATE(7017), 1, - sym_heredoc_body, - STATE(7761), 1, - sym__operator_token, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8034), 10, - anon_sym_LT, - anon_sym_STAR, - anon_sym_SLASH2, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_LBRACK_RBRACK, - anon_sym_BANG, - anon_sym_AMP_STAR, - ACTIONS(8036), 21, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_STAR_STAR, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ_GT, - anon_sym_EQ_EQ_EQ, - anon_sym_LBRACK_RBRACK_QMARK, - anon_sym_LBRACK_RBRACK_EQ, - anon_sym_TILDE, - anon_sym_BANG_TILDE, - anon_sym_EQ_TILDE, - anon_sym_AMP_PLUS, - anon_sym_AMP_DASH, - anon_sym_AMP_STAR_STAR, - [307458] = 22, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7347), 1, + ACTIONS(7368), 1, anon_sym_DOT_DOT, - ACTIONS(7349), 1, + ACTIONS(7370), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7355), 1, + ACTIONS(7376), 1, anon_sym_PIPE, - ACTIONS(7357), 1, + ACTIONS(7378), 1, anon_sym_CARET, - ACTIONS(7361), 1, + ACTIONS(7382), 1, anon_sym_EQ_EQ, - ACTIONS(7367), 1, + ACTIONS(7388), 1, anon_sym_AMP_STAR, - ACTIONS(7371), 1, + ACTIONS(7392), 1, anon_sym_QMARK, - ACTIONS(7373), 1, + ACTIONS(7394), 1, anon_sym_AMP_AMP, - ACTIONS(7375), 1, + ACTIONS(7396), 1, anon_sym_PIPE_PIPE, - ACTIONS(7383), 1, + ACTIONS(7404), 1, sym__start_of_index_operator, - ACTIONS(7389), 1, + ACTIONS(7410), 1, sym_binary_ampersand, - ACTIONS(9275), 1, + ACTIONS(9324), 1, anon_sym_DOT, - STATE(7018), 1, + STATE(7060), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7359), 2, + ACTIONS(7380), 2, anon_sym_GT_GT, anon_sym_LT_LT, - ACTIONS(7365), 2, + ACTIONS(7386), 2, anon_sym_GT_EQ, anon_sym_LT_EQ_GT, - ACTIONS(7369), 2, + ACTIONS(7390), 2, sym__binary_double_star, anon_sym_AMP_STAR_STAR, - ACTIONS(7353), 3, + ACTIONS(7374), 3, anon_sym_LT, anon_sym_LT_EQ, anon_sym_GT, - ACTIONS(7363), 4, + ACTIONS(7384), 4, anon_sym_BANG_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_TILDE, anon_sym_EQ_TILDE, - ACTIONS(7385), 4, + ACTIONS(7406), 4, sym_binary_plus, sym_binary_minus, sym_binary_wrapping_plus, sym_binary_wrapping_minus, - ACTIONS(7387), 4, + ACTIONS(7408), 4, sym__binary_star, sym__binary_slash, sym__binary_double_slash, sym__modulo_operator, - [307540] = 15, + [309924] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9326), 1, + anon_sym_DASH_GT, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7061), 1, + sym_heredoc_body, + STATE(8168), 1, + sym__type, + STATE(8180), 1, + sym_constant, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9333), 2, + sym_self, + sym_underscore_type, + ACTIONS(4412), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [309991] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8063), 1, + ACTIONS(8026), 1, anon_sym_typeof, - ACTIONS(8065), 1, + ACTIONS(8028), 1, sym__constant_segment, - ACTIONS(8067), 1, + ACTIONS(8030), 1, anon_sym_COLON_COLON, - ACTIONS(8071), 1, + ACTIONS(8034), 1, sym__start_of_tuple_type, - ACTIONS(8073), 1, + ACTIONS(8036), 1, sym__start_of_named_tuple_type, - ACTIONS(8383), 1, + ACTIONS(8496), 1, anon_sym_LPAREN, - ACTIONS(8385), 1, + ACTIONS(8498), 1, anon_sym_DASH_GT, - STATE(7019), 1, + STATE(7062), 1, sym_heredoc_body, - STATE(7836), 1, + STATE(7870), 1, sym_constant, - STATE(7885), 1, + STATE(7916), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8069), 2, + ACTIONS(8032), 2, sym_self, sym_underscore_type, - ACTIONS(4409), 9, + ACTIONS(4468), 9, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -594180,7 +600710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_forall, - STATE(7855), 12, + STATE(7900), 12, sym_typeof, sym_class_type, sym_union_type, @@ -594193,36 +600723,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [307607] = 15, + [310058] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7020), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + STATE(7063), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8228), 1, + STATE(8284), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - ACTIONS(4353), 9, + ACTIONS(4362), 9, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, @@ -594232,7 +600762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -594245,36 +600775,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [307674] = 15, + [310125] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9287), 1, + ACTIONS(9339), 1, anon_sym_DASH_GT, - STATE(7021), 1, + STATE(7064), 1, sym_heredoc_body, - STATE(8115), 1, + STATE(8178), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - ACTIONS(4375), 9, + ACTIONS(4362), 9, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, @@ -594284,7 +600814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -594297,36 +600827,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [307741] = 15, + [310192] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7022), 1, + ACTIONS(9342), 1, + anon_sym_DASH_GT, + STATE(7065), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8291), 1, + STATE(8173), 1, sym__type, + STATE(8180), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - ACTIONS(4375), 9, + ACTIONS(4390), 9, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, @@ -594336,7 +600866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -594349,36 +600879,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [307808] = 15, + [310259] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7023), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + STATE(7066), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8314), 1, + STATE(8245), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - ACTIONS(4325), 9, + ACTIONS(4390), 9, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, @@ -594388,7 +600918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -594401,36 +600931,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [307875] = 15, + [310326] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8063), 1, + ACTIONS(8026), 1, anon_sym_typeof, - ACTIONS(8065), 1, + ACTIONS(8028), 1, sym__constant_segment, - ACTIONS(8067), 1, + ACTIONS(8030), 1, anon_sym_COLON_COLON, - ACTIONS(8071), 1, + ACTIONS(8034), 1, sym__start_of_tuple_type, - ACTIONS(8073), 1, + ACTIONS(8036), 1, sym__start_of_named_tuple_type, - ACTIONS(8383), 1, + ACTIONS(8496), 1, anon_sym_LPAREN, - ACTIONS(8385), 1, + ACTIONS(8498), 1, anon_sym_DASH_GT, - STATE(7024), 1, + STATE(7067), 1, sym_heredoc_body, - STATE(7836), 1, + STATE(7870), 1, sym_constant, - STATE(7896), 1, + STATE(7939), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8069), 2, + ACTIONS(8032), 2, sym_self, sym_underscore_type, - ACTIONS(4431), 9, + ACTIONS(4446), 9, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -594440,7 +600970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_forall, - STATE(7855), 12, + STATE(7900), 12, sym_typeof, sym_class_type, sym_union_type, @@ -594453,105 +600983,53 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [307942] = 15, + [310393] = 22, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - ACTIONS(9290), 1, - anon_sym_DASH_GT, - STATE(7025), 1, - sym_heredoc_body, - STATE(8116), 1, - sym__type, - STATE(8134), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9285), 2, - sym_self, - sym_underscore_type, - ACTIONS(4353), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [308009] = 22, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9293), 1, + ACTIONS(9345), 1, sym_identifier, - ACTIONS(9295), 1, + ACTIONS(9347), 1, anon_sym_LPAREN, - ACTIONS(9297), 1, + ACTIONS(9349), 1, anon_sym_DASH_GT, - ACTIONS(9299), 1, + ACTIONS(9351), 1, anon_sym_STAR, - ACTIONS(9301), 1, + ACTIONS(9353), 1, anon_sym_typeof, - ACTIONS(9303), 1, + ACTIONS(9355), 1, sym__constant_segment, - ACTIONS(9305), 1, + ACTIONS(9357), 1, anon_sym_COLON_COLON, - ACTIONS(9309), 1, + ACTIONS(9361), 1, sym__start_of_tuple_type, - ACTIONS(9311), 1, + ACTIONS(9363), 1, sym__start_of_named_tuple_type, - STATE(284), 1, + STATE(293), 1, sym__terminator, - STATE(7026), 1, + STATE(7068), 1, sym_heredoc_body, - STATE(8195), 1, - sym__type, - STATE(8312), 1, + STATE(8287), 1, sym_constant, - STATE(9208), 1, + STATE(8293), 1, + sym__type, + STATE(9292), 1, sym__splattable_type, - STATE(9469), 1, + STATE(9435), 1, sym_splat_type, - STATE(10229), 1, + STATE(9917), 1, sym__bare_type, - STATE(10412), 1, + STATE(10521), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1409), 2, + ACTIONS(1429), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(9307), 2, + ACTIONS(9359), 2, sym_self, sym_underscore_type, - STATE(8437), 12, + STATE(8534), 12, sym_typeof, sym_class_type, sym_union_type, @@ -594564,36 +601042,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [308090] = 15, + [310474] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9313), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, anon_sym_DASH_GT, - STATE(7027), 1, + STATE(7069), 1, sym_heredoc_body, - STATE(8121), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, + STATE(8342), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - ACTIONS(4325), 9, + ACTIONS(4412), 9, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, @@ -594603,7 +601081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -594616,45 +601094,45 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [308157] = 15, + [310541] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(9365), 1, anon_sym_LPAREN, - ACTIONS(9318), 1, + ACTIONS(9367), 1, anon_sym_DASH_GT, - ACTIONS(9321), 1, + ACTIONS(9369), 1, anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(9371), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(9373), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(9377), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(9379), 1, sym__start_of_named_tuple_type, - STATE(7028), 1, + STATE(7070), 1, sym_heredoc_body, - STATE(8192), 1, + STATE(8251), 1, sym_constant, - STATE(8229), 1, + STATE(8460), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9375), 2, sym_self, sym_underscore_type, - ACTIONS(4353), 8, - sym__start_of_brace_block, + ACTIONS(4412), 8, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, + anon_sym_EQ, anon_sym_QMARK, - anon_sym_do, - STATE(8390), 12, + STATE(8523), 12, sym_typeof, sym_class_type, sym_union_type, @@ -594667,36 +601145,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [308223] = 15, + [310607] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9295), 1, + ACTIONS(9347), 1, anon_sym_LPAREN, - ACTIONS(9303), 1, + ACTIONS(9355), 1, sym__constant_segment, - ACTIONS(9305), 1, + ACTIONS(9357), 1, anon_sym_COLON_COLON, - ACTIONS(9309), 1, + ACTIONS(9361), 1, sym__start_of_tuple_type, - ACTIONS(9311), 1, + ACTIONS(9363), 1, sym__start_of_named_tuple_type, - ACTIONS(9333), 1, + ACTIONS(9381), 1, anon_sym_DASH_GT, - ACTIONS(9336), 1, + ACTIONS(9384), 1, anon_sym_typeof, - STATE(7029), 1, + STATE(7071), 1, sym_heredoc_body, - STATE(8178), 1, + STATE(8244), 1, sym__type, - STATE(8312), 1, + STATE(8287), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9338), 2, + ACTIONS(9386), 2, sym_self, sym_underscore_type, - ACTIONS(4375), 8, + ACTIONS(4362), 8, sym__line_break, anon_sym_SEMI, anon_sym_LBRACK, @@ -594705,7 +601183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - STATE(8437), 12, + STATE(8534), 12, sym_typeof, sym_class_type, sym_union_type, @@ -594718,36 +601196,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [308289] = 15, + [310673] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(9390), 1, + anon_sym_DASH_GT, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(9395), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9340), 1, - anon_sym_DASH_GT, - STATE(7030), 1, + STATE(7072), 1, sym_heredoc_body, - STATE(8160), 1, + STATE(8281), 1, sym__type, - STATE(8192), 1, + STATE(8299), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - ACTIONS(4375), 8, + ACTIONS(4362), 8, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, @@ -594756,7 +601234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK, anon_sym_do, - STATE(8390), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -594769,36 +601247,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [308355] = 15, + [310739] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9343), 1, + ACTIONS(9365), 1, anon_sym_LPAREN, - ACTIONS(9345), 1, + ACTIONS(9367), 1, anon_sym_DASH_GT, - ACTIONS(9348), 1, + ACTIONS(9369), 1, anon_sym_typeof, - ACTIONS(9350), 1, + ACTIONS(9371), 1, sym__constant_segment, - ACTIONS(9352), 1, + ACTIONS(9373), 1, anon_sym_COLON_COLON, - ACTIONS(9356), 1, + ACTIONS(9377), 1, sym__start_of_tuple_type, - ACTIONS(9358), 1, + ACTIONS(9379), 1, sym__start_of_named_tuple_type, - STATE(7031), 1, + STATE(7073), 1, sym_heredoc_body, - STATE(8143), 1, + STATE(8251), 1, sym_constant, - STATE(8234), 1, + STATE(8458), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9354), 2, + ACTIONS(9375), 2, sym_self, sym_underscore_type, - ACTIONS(4353), 8, + ACTIONS(4362), 8, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COMMA, @@ -594807,7 +601285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ, anon_sym_QMARK, - STATE(8458), 12, + STATE(8523), 12, sym_typeof, sym_class_type, sym_union_type, @@ -594820,45 +601298,45 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [308421] = 15, + [310805] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(9365), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(9367), 1, + anon_sym_DASH_GT, + ACTIONS(9369), 1, anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(9371), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(9373), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(9377), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(9379), 1, sym__start_of_named_tuple_type, - ACTIONS(9360), 1, - anon_sym_DASH_GT, - STATE(7032), 1, + STATE(7074), 1, sym_heredoc_body, - STATE(8192), 1, + STATE(8251), 1, sym_constant, - STATE(8225), 1, + STATE(8535), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9375), 2, sym_self, sym_underscore_type, - ACTIONS(4325), 8, - sym__start_of_brace_block, + ACTIONS(4390), 8, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, + anon_sym_EQ, anon_sym_QMARK, - anon_sym_do, - STATE(8390), 12, + STATE(8523), 12, sym_typeof, sym_class_type, sym_union_type, @@ -594871,36 +601349,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [308487] = 15, + [310871] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9348), 1, + ACTIONS(9369), 1, anon_sym_typeof, - ACTIONS(9350), 1, + ACTIONS(9371), 1, sym__constant_segment, - ACTIONS(9352), 1, + ACTIONS(9373), 1, anon_sym_COLON_COLON, - ACTIONS(9356), 1, + ACTIONS(9377), 1, sym__start_of_tuple_type, - ACTIONS(9358), 1, + ACTIONS(9379), 1, sym__start_of_named_tuple_type, - ACTIONS(9363), 1, + ACTIONS(9405), 1, anon_sym_LPAREN, - ACTIONS(9365), 1, + ACTIONS(9407), 1, anon_sym_DASH_GT, - STATE(7033), 1, + STATE(7075), 1, sym_heredoc_body, - STATE(8143), 1, + STATE(8251), 1, sym_constant, - STATE(8342), 1, + STATE(8278), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9354), 2, + ACTIONS(9375), 2, sym_self, sym_underscore_type, - ACTIONS(4325), 8, + ACTIONS(4412), 8, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COMMA, @@ -594909,7 +601387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ, anon_sym_QMARK, - STATE(8458), 12, + STATE(8523), 12, sym_typeof, sym_class_type, sym_union_type, @@ -594922,36 +601400,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [308553] = 15, + [310937] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9348), 1, + ACTIONS(9369), 1, anon_sym_typeof, - ACTIONS(9350), 1, + ACTIONS(9371), 1, sym__constant_segment, - ACTIONS(9352), 1, + ACTIONS(9373), 1, anon_sym_COLON_COLON, - ACTIONS(9356), 1, + ACTIONS(9377), 1, sym__start_of_tuple_type, - ACTIONS(9358), 1, + ACTIONS(9379), 1, sym__start_of_named_tuple_type, - ACTIONS(9363), 1, + ACTIONS(9405), 1, anon_sym_LPAREN, - ACTIONS(9365), 1, + ACTIONS(9410), 1, anon_sym_DASH_GT, - STATE(7034), 1, + STATE(7076), 1, sym_heredoc_body, - STATE(8143), 1, + STATE(8251), 1, sym_constant, - STATE(8325), 1, + STATE(8290), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9354), 2, + ACTIONS(9375), 2, sym_self, sym_underscore_type, - ACTIONS(4353), 8, + ACTIONS(4362), 8, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COMMA, @@ -594960,7 +601438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ, anon_sym_QMARK, - STATE(8458), 12, + STATE(8523), 12, sym_typeof, sym_class_type, sym_union_type, @@ -594973,36 +601451,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [308619] = 15, + [311003] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9295), 1, + ACTIONS(9347), 1, anon_sym_LPAREN, - ACTIONS(9303), 1, + ACTIONS(9355), 1, sym__constant_segment, - ACTIONS(9305), 1, + ACTIONS(9357), 1, anon_sym_COLON_COLON, - ACTIONS(9309), 1, + ACTIONS(9361), 1, sym__start_of_tuple_type, - ACTIONS(9311), 1, + ACTIONS(9363), 1, sym__start_of_named_tuple_type, - ACTIONS(9336), 1, + ACTIONS(9384), 1, anon_sym_typeof, - ACTIONS(9367), 1, + ACTIONS(9413), 1, anon_sym_DASH_GT, - STATE(7035), 1, + STATE(7077), 1, sym_heredoc_body, - STATE(8312), 1, - sym_constant, - STATE(8315), 1, + STATE(8223), 1, sym__type, + STATE(8287), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9338), 2, + ACTIONS(9386), 2, sym_self, sym_underscore_type, - ACTIONS(4325), 8, + ACTIONS(4390), 8, sym__line_break, anon_sym_SEMI, anon_sym_LBRACK, @@ -595011,7 +601489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - STATE(8437), 12, + STATE(8534), 12, sym_typeof, sym_class_type, sym_union_type, @@ -595024,36 +601502,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [308685] = 15, + [311069] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9295), 1, + ACTIONS(9347), 1, anon_sym_LPAREN, - ACTIONS(9303), 1, + ACTIONS(9355), 1, sym__constant_segment, - ACTIONS(9305), 1, + ACTIONS(9357), 1, anon_sym_COLON_COLON, - ACTIONS(9309), 1, + ACTIONS(9361), 1, sym__start_of_tuple_type, - ACTIONS(9311), 1, + ACTIONS(9363), 1, sym__start_of_named_tuple_type, - ACTIONS(9336), 1, + ACTIONS(9384), 1, anon_sym_typeof, - ACTIONS(9370), 1, + ACTIONS(9416), 1, anon_sym_DASH_GT, - STATE(7036), 1, + STATE(7078), 1, sym_heredoc_body, - STATE(8146), 1, - sym__type, - STATE(8312), 1, + STATE(8287), 1, sym_constant, + STATE(8363), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9338), 2, + ACTIONS(9386), 2, sym_self, sym_underscore_type, - ACTIONS(4353), 8, + ACTIONS(4412), 8, sym__line_break, anon_sym_SEMI, anon_sym_LBRACK, @@ -595062,7 +601540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - STATE(8437), 12, + STATE(8534), 12, sym_typeof, sym_class_type, sym_union_type, @@ -595075,45 +601553,45 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [308751] = 15, + [311135] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9343), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(9348), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(9350), 1, + ACTIONS(9395), 1, sym__constant_segment, - ACTIONS(9352), 1, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(9356), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(9358), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9373), 1, + ACTIONS(9419), 1, anon_sym_DASH_GT, - STATE(7037), 1, + STATE(7079), 1, sym_heredoc_body, - STATE(8143), 1, + STATE(8299), 1, sym_constant, - STATE(8151), 1, + STATE(8307), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9354), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - ACTIONS(4325), 8, - anon_sym_RPAREN, + ACTIONS(4390), 8, + sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, - anon_sym_EQ, anon_sym_QMARK, - STATE(8458), 12, + anon_sym_do, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -595126,45 +601604,45 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [308817] = 15, + [311201] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9348), 1, + ACTIONS(9388), 1, + anon_sym_LPAREN, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(9350), 1, + ACTIONS(9395), 1, sym__constant_segment, - ACTIONS(9352), 1, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(9356), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(9358), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9363), 1, - anon_sym_LPAREN, - ACTIONS(9365), 1, + ACTIONS(9422), 1, anon_sym_DASH_GT, - STATE(7038), 1, + STATE(7080), 1, sym_heredoc_body, - STATE(8143), 1, - sym_constant, - STATE(8331), 1, + STATE(8241), 1, sym__type, + STATE(8299), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9354), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - ACTIONS(4375), 8, - anon_sym_RPAREN, + ACTIONS(4412), 8, + sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, - anon_sym_EQ, anon_sym_QMARK, - STATE(8458), 12, + anon_sym_do, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -595177,36 +601655,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [308883] = 15, + [311267] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9343), 1, - anon_sym_LPAREN, - ACTIONS(9348), 1, + ACTIONS(9369), 1, anon_sym_typeof, - ACTIONS(9350), 1, + ACTIONS(9371), 1, sym__constant_segment, - ACTIONS(9352), 1, + ACTIONS(9373), 1, anon_sym_COLON_COLON, - ACTIONS(9356), 1, + ACTIONS(9377), 1, sym__start_of_tuple_type, - ACTIONS(9358), 1, + ACTIONS(9379), 1, sym__start_of_named_tuple_type, - ACTIONS(9376), 1, + ACTIONS(9405), 1, + anon_sym_LPAREN, + ACTIONS(9425), 1, anon_sym_DASH_GT, - STATE(7039), 1, + STATE(7081), 1, sym_heredoc_body, - STATE(8143), 1, + STATE(8251), 1, sym_constant, - STATE(8238), 1, + STATE(8288), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9354), 2, + ACTIONS(9375), 2, sym_self, sym_underscore_type, - ACTIONS(4375), 8, + ACTIONS(4390), 8, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COMMA, @@ -595215,7 +601693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ, anon_sym_QMARK, - STATE(8458), 12, + STATE(8523), 12, sym_typeof, sym_class_type, sym_union_type, @@ -595228,44 +601706,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [308949] = 15, + [311333] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9303), 1, + ACTIONS(9393), 1, + anon_sym_typeof, + ACTIONS(9395), 1, sym__constant_segment, - ACTIONS(9305), 1, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(9309), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(9311), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9336), 1, - anon_sym_typeof, - ACTIONS(9379), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - ACTIONS(9381), 1, + ACTIONS(9430), 1, anon_sym_DASH_GT, - STATE(7040), 1, + STATE(7082), 1, sym_heredoc_body, - STATE(8312), 1, + STATE(8299), 1, sym_constant, - STATE(8683), 1, + STATE(8836), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9338), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - ACTIONS(4353), 7, - sym__line_break, - anon_sym_SEMI, + ACTIONS(4390), 7, + sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - STATE(8437), 12, + anon_sym_do, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -595278,44 +601756,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [309014] = 15, + [311398] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9303), 1, + ACTIONS(9393), 1, + anon_sym_typeof, + ACTIONS(9395), 1, sym__constant_segment, - ACTIONS(9305), 1, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(9309), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(9311), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9336), 1, - anon_sym_typeof, - ACTIONS(9379), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - ACTIONS(9381), 1, + ACTIONS(9430), 1, anon_sym_DASH_GT, - STATE(7041), 1, + STATE(7083), 1, sym_heredoc_body, - STATE(8312), 1, + STATE(8299), 1, sym_constant, - STATE(8701), 1, + STATE(8930), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9338), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - ACTIONS(4375), 7, - sym__line_break, - anon_sym_SEMI, + ACTIONS(4362), 7, + sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - STATE(8437), 12, + anon_sym_do, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -595328,36 +601806,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [309079] = 15, + [311463] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9321), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(9395), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9383), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - ACTIONS(9385), 1, + ACTIONS(9430), 1, anon_sym_DASH_GT, - STATE(7042), 1, + STATE(7084), 1, sym_heredoc_body, - STATE(8192), 1, + STATE(8299), 1, sym_constant, - STATE(8686), 1, + STATE(8547), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - ACTIONS(4325), 7, + ACTIONS(4412), 7, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_STAR, @@ -595365,7 +601843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK, anon_sym_do, - STATE(8390), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -595378,36 +601856,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [309144] = 15, + [311528] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9303), 1, + ACTIONS(9355), 1, sym__constant_segment, - ACTIONS(9305), 1, + ACTIONS(9357), 1, anon_sym_COLON_COLON, - ACTIONS(9309), 1, + ACTIONS(9361), 1, sym__start_of_tuple_type, - ACTIONS(9311), 1, + ACTIONS(9363), 1, sym__start_of_named_tuple_type, - ACTIONS(9336), 1, + ACTIONS(9384), 1, anon_sym_typeof, - ACTIONS(9379), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9381), 1, + ACTIONS(9434), 1, anon_sym_DASH_GT, - STATE(7043), 1, + STATE(7085), 1, sym_heredoc_body, - STATE(8312), 1, + STATE(8287), 1, sym_constant, - STATE(8572), 1, + STATE(8614), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9338), 2, + ACTIONS(9386), 2, sym_self, sym_underscore_type, - ACTIONS(4325), 7, + ACTIONS(4390), 7, sym__line_break, anon_sym_SEMI, anon_sym_LBRACK, @@ -595415,7 +601893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - STATE(8437), 12, + STATE(8534), 12, sym_typeof, sym_class_type, sym_union_type, @@ -595428,44 +601906,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [309209] = 15, + [311593] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(9355), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(9357), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(9361), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(9363), 1, sym__start_of_named_tuple_type, - ACTIONS(9383), 1, + ACTIONS(9384), 1, + anon_sym_typeof, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9385), 1, + ACTIONS(9434), 1, anon_sym_DASH_GT, - STATE(7044), 1, + STATE(7086), 1, sym_heredoc_body, - STATE(8192), 1, + STATE(8287), 1, sym_constant, - STATE(8782), 1, + STATE(8756), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9386), 2, sym_self, sym_underscore_type, - ACTIONS(4375), 7, - sym__start_of_brace_block, + ACTIONS(4362), 7, + sym__line_break, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - anon_sym_do, - STATE(8390), 12, + STATE(8534), 12, sym_typeof, sym_class_type, sym_union_type, @@ -595478,44 +601956,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [309274] = 15, + [311658] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(9355), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(9357), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(9361), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(9363), 1, sym__start_of_named_tuple_type, - ACTIONS(9383), 1, + ACTIONS(9384), 1, + anon_sym_typeof, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9385), 1, + ACTIONS(9434), 1, anon_sym_DASH_GT, - STATE(7045), 1, + STATE(7087), 1, sym_heredoc_body, - STATE(8192), 1, + STATE(8287), 1, sym_constant, - STATE(8655), 1, + STATE(8593), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9386), 2, sym_self, sym_underscore_type, - ACTIONS(4353), 7, - sym__start_of_brace_block, + ACTIONS(4412), 7, + sym__line_break, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - anon_sym_do, - STATE(8390), 12, + STATE(8534), 12, sym_typeof, sym_class_type, sym_union_type, @@ -595528,46 +602006,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [309339] = 19, + [311723] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1675), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2965), 1, + sym__constant_segment, + ACTIONS(5194), 1, + anon_sym_LPAREN, + ACTIONS(5199), 1, + anon_sym_typeof, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7046), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9436), 1, + anon_sym_DASH_GT, + ACTIONS(9438), 1, + anon_sym_STAR, + STATE(3180), 1, sym_constant, - STATE(9205), 1, + STATE(3182), 1, + sym__type, + STATE(3459), 1, + sym__splattable_type, + STATE(3845), 1, sym_splat_type, - STATE(9358), 1, + STATE(4301), 1, sym_proc_type, - STATE(9614), 1, - sym__splattable_type, - STATE(10463), 1, + STATE(4332), 1, sym__bare_type, + STATE(7088), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -595580,46 +602058,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [309410] = 19, + [311794] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7047), 1, + STATE(7089), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9213), 1, - sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11871), 1, + STATE(9651), 1, + sym__splattable_type, + STATE(10520), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -595632,46 +602110,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [309481] = 19, + [311865] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, - anon_sym_COLON_COLON, - ACTIONS(2942), 1, - sym__constant_segment, - ACTIONS(5161), 1, + ACTIONS(9369), 1, anon_sym_typeof, - ACTIONS(5165), 1, + ACTIONS(9371), 1, + sym__constant_segment, + ACTIONS(9373), 1, + anon_sym_COLON_COLON, + ACTIONS(9377), 1, sym__start_of_tuple_type, - ACTIONS(5167), 1, + ACTIONS(9379), 1, sym__start_of_named_tuple_type, - ACTIONS(5169), 1, + ACTIONS(9405), 1, anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(9440), 1, anon_sym_DASH_GT, - ACTIONS(9389), 1, + ACTIONS(9442), 1, anon_sym_STAR, - STATE(3026), 1, + STATE(7090), 1, + sym_heredoc_body, + STATE(8251), 1, sym_constant, - STATE(3027), 1, + STATE(8256), 1, sym__type, - STATE(3426), 1, + STATE(9353), 1, sym__splattable_type, - STATE(3716), 1, + STATE(9434), 1, sym_splat_type, - STATE(4055), 1, + STATE(10191), 1, sym_proc_type, - STATE(4516), 1, + STATE(10357), 1, sym__bare_type, - STATE(7048), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(9375), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(8523), 12, sym_typeof, sym_class_type, sym_union_type, @@ -595684,46 +602162,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [309552] = 19, + [311936] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5205), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5210), 1, - anon_sym_typeof, - ACTIONS(5212), 1, - sym__constant_segment, - ACTIONS(5214), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(5218), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(5220), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9391), 1, - anon_sym_DASH_GT, - ACTIONS(9393), 1, - anon_sym_STAR, - STATE(3273), 1, - sym_constant, - STATE(3274), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7091), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(3988), 1, - sym__splattable_type, - STATE(4189), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(4582), 1, + STATE(9365), 1, + sym__splattable_type, + STATE(9493), 1, sym_proc_type, - STATE(6894), 1, + STATE(10501), 1, sym__bare_type, - STATE(7049), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5216), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(3524), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -595736,46 +602214,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [309623] = 19, + [312007] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7672), 1, + ACTIONS(1675), 1, + anon_sym_COLON_COLON, + ACTIONS(2965), 1, + sym__constant_segment, + ACTIONS(5194), 1, anon_sym_LPAREN, - ACTIONS(7677), 1, + ACTIONS(5199), 1, anon_sym_typeof, - ACTIONS(7679), 1, - sym__constant_segment, - ACTIONS(7681), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(7687), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(9395), 1, + ACTIONS(9436), 1, anon_sym_DASH_GT, - ACTIONS(9397), 1, + ACTIONS(9438), 1, anon_sym_STAR, - STATE(7050), 1, - sym_heredoc_body, - STATE(7767), 1, - sym__type, - STATE(7775), 1, + STATE(3180), 1, sym_constant, - STATE(8059), 1, + STATE(3182), 1, + sym__type, + STATE(3459), 1, sym__splattable_type, - STATE(8075), 1, + STATE(3845), 1, sym_splat_type, - STATE(8082), 1, - sym__bare_type, - STATE(8103), 1, + STATE(4301), 1, sym_proc_type, + STATE(4589), 1, + sym__bare_type, + STATE(7092), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7683), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(7815), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -595788,46 +602266,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [309694] = 19, + [312078] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7051), 1, + STATE(7093), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9213), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10413), 1, + STATE(11792), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -595840,98 +602318,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [309765] = 19, + [312149] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4347), 1, - sym__start_of_tuple_type, - ACTIONS(4349), 1, - sym__start_of_named_tuple_type, - ACTIONS(9399), 1, + ACTIONS(9347), 1, anon_sym_LPAREN, - ACTIONS(9401), 1, + ACTIONS(9349), 1, anon_sym_DASH_GT, - ACTIONS(9403), 1, + ACTIONS(9351), 1, anon_sym_STAR, - ACTIONS(9405), 1, - anon_sym_typeof, - ACTIONS(9407), 1, + ACTIONS(9355), 1, sym__constant_segment, - ACTIONS(9409), 1, + ACTIONS(9357), 1, anon_sym_COLON_COLON, - STATE(2004), 1, - sym__type, - STATE(2006), 1, - sym_constant, - STATE(2040), 1, - sym__splattable_type, - STATE(2043), 1, - sym__bare_type, - STATE(2051), 1, - sym_splat_type, - STATE(2063), 1, - sym_proc_type, - STATE(7052), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9411), 2, - sym_self, - sym_underscore_type, - STATE(2012), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [309836] = 19, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7672), 1, - anon_sym_LPAREN, - ACTIONS(7677), 1, - anon_sym_typeof, - ACTIONS(7679), 1, - sym__constant_segment, - ACTIONS(7681), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, + ACTIONS(9361), 1, sym__start_of_tuple_type, - ACTIONS(7687), 1, + ACTIONS(9363), 1, sym__start_of_named_tuple_type, - ACTIONS(9395), 1, - anon_sym_DASH_GT, - ACTIONS(9397), 1, - anon_sym_STAR, - STATE(7053), 1, + ACTIONS(9384), 1, + anon_sym_typeof, + STATE(7094), 1, sym_heredoc_body, - STATE(7767), 1, - sym__type, - STATE(7775), 1, + STATE(8287), 1, sym_constant, - STATE(8059), 1, + STATE(8293), 1, + sym__type, + STATE(9292), 1, sym__splattable_type, - STATE(8075), 1, + STATE(9435), 1, sym_splat_type, - STATE(8080), 1, + STATE(10098), 1, sym__bare_type, - STATE(8103), 1, + STATE(10521), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7683), 2, + ACTIONS(9386), 2, sym_self, sym_underscore_type, - STATE(7815), 12, + STATE(8534), 12, sym_typeof, sym_class_type, sym_union_type, @@ -595944,98 +602370,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [309907] = 19, + [312220] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7672), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(7677), 1, - anon_sym_typeof, - ACTIONS(7679), 1, - sym__constant_segment, - ACTIONS(7681), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, - sym__start_of_tuple_type, - ACTIONS(7687), 1, - sym__start_of_named_tuple_type, - ACTIONS(9395), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9397), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(7054), 1, - sym_heredoc_body, - STATE(7767), 1, - sym__type, - STATE(7775), 1, - sym_constant, - STATE(8059), 1, - sym__splattable_type, - STATE(8069), 1, - sym__bare_type, - STATE(8075), 1, - sym_splat_type, - STATE(8103), 1, - sym_proc_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7683), 2, - sym_self, - sym_underscore_type, - STATE(7815), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [309978] = 19, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7672), 1, - anon_sym_LPAREN, - ACTIONS(7677), 1, - anon_sym_typeof, - ACTIONS(7679), 1, - sym__constant_segment, - ACTIONS(7681), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(7685), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(7687), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9395), 1, - anon_sym_DASH_GT, - ACTIONS(9397), 1, - anon_sym_STAR, - STATE(7055), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7095), 1, sym_heredoc_body, - STATE(7767), 1, + STATE(8161), 1, sym__type, - STATE(7775), 1, + STATE(8180), 1, sym_constant, - STATE(8059), 1, + STATE(9274), 1, sym__splattable_type, - STATE(8066), 1, - sym__bare_type, - STATE(8075), 1, + STATE(9288), 1, sym_splat_type, - STATE(8103), 1, + STATE(9493), 1, sym_proc_type, + STATE(12009), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7683), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(7815), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -596048,46 +602422,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [310049] = 19, + [312291] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, - anon_sym_DASH_GT, - ACTIONS(9415), 1, - anon_sym_STAR, - STATE(7056), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7096), 1, sym_heredoc_body, - STATE(8159), 1, + STATE(8161), 1, sym__type, - STATE(8192), 1, + STATE(8180), 1, sym_constant, - STATE(9244), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9376), 1, - sym__bare_type, - STATE(9588), 1, + STATE(9288), 1, sym_splat_type, - STATE(10410), 1, + STATE(9493), 1, sym_proc_type, + STATE(12016), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -596100,46 +602474,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [310120] = 19, + [312362] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5205), 1, + ACTIONS(1579), 1, + anon_sym_COLON_COLON, + ACTIONS(2608), 1, + sym__constant_segment, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5210), 1, + ACTIONS(5252), 1, anon_sym_typeof, - ACTIONS(5212), 1, - sym__constant_segment, - ACTIONS(5214), 1, - anon_sym_COLON_COLON, - ACTIONS(5218), 1, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(5220), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(9391), 1, + ACTIONS(9444), 1, anon_sym_DASH_GT, - ACTIONS(9393), 1, + ACTIONS(9446), 1, anon_sym_STAR, - STATE(3273), 1, + STATE(3191), 1, sym_constant, - STATE(3274), 1, + STATE(3192), 1, sym__type, - STATE(3719), 1, + STATE(3621), 1, sym__splattable_type, - STATE(4189), 1, + STATE(3850), 1, sym_splat_type, - STATE(4582), 1, + STATE(4528), 1, sym_proc_type, - STATE(6617), 1, + STATE(4608), 1, sym__bare_type, - STATE(7057), 1, + STATE(7097), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5216), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(3524), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -596152,46 +602526,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [310191] = 19, + [312433] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7071), 1, + ACTIONS(1017), 1, + anon_sym_COLON_COLON, + ACTIONS(3051), 1, + sym__constant_segment, + ACTIONS(5325), 1, anon_sym_LPAREN, - ACTIONS(7076), 1, + ACTIONS(5330), 1, anon_sym_typeof, - ACTIONS(7078), 1, - sym__constant_segment, - ACTIONS(7080), 1, - anon_sym_COLON_COLON, - ACTIONS(7084), 1, + ACTIONS(5334), 1, sym__start_of_tuple_type, - ACTIONS(7086), 1, + ACTIONS(5336), 1, sym__start_of_named_tuple_type, - ACTIONS(9417), 1, + ACTIONS(9448), 1, anon_sym_DASH_GT, - ACTIONS(9419), 1, + ACTIONS(9450), 1, anon_sym_STAR, - STATE(7058), 1, - sym_heredoc_body, - STATE(7662), 1, - sym_constant, - STATE(7687), 1, + STATE(4769), 1, sym__type, - STATE(7792), 1, + STATE(4893), 1, + sym_constant, + STATE(5117), 1, sym__splattable_type, - STATE(7833), 1, + STATE(5348), 1, sym_splat_type, - STATE(7901), 1, - sym_proc_type, - STATE(7975), 1, + STATE(5583), 1, sym__bare_type, + STATE(5618), 1, + sym_proc_type, + STATE(7098), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7082), 2, + ACTIONS(5332), 2, sym_self, sym_underscore_type, - STATE(7736), 12, + STATE(5015), 12, sym_typeof, sym_class_type, sym_union_type, @@ -596204,46 +602578,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [310262] = 19, + [312504] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, + ACTIONS(1579), 1, anon_sym_COLON_COLON, - ACTIONS(3038), 1, + ACTIONS(2608), 1, sym__constant_segment, - ACTIONS(5292), 1, + ACTIONS(5247), 1, + anon_sym_LPAREN, + ACTIONS(5252), 1, anon_sym_typeof, - ACTIONS(5296), 1, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(5298), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(5300), 1, - anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(9444), 1, anon_sym_DASH_GT, - ACTIONS(9423), 1, + ACTIONS(9446), 1, anon_sym_STAR, - STATE(4834), 1, + STATE(3191), 1, sym_constant, - STATE(4835), 1, + STATE(3192), 1, sym__type, - STATE(5397), 1, - sym_splat_type, - STATE(5425), 1, + STATE(3621), 1, sym__splattable_type, - STATE(5643), 1, + STATE(3850), 1, + sym_splat_type, + STATE(4528), 1, sym_proc_type, - STATE(5978), 1, + STATE(4701), 1, sym__bare_type, - STATE(7059), 1, + STATE(7099), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -596256,46 +602630,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [310333] = 19, + [312575] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(85), 1, + ACTIONS(1579), 1, anon_sym_COLON_COLON, - ACTIONS(4993), 1, + ACTIONS(2608), 1, + sym__constant_segment, + ACTIONS(5247), 1, + anon_sym_LPAREN, + ACTIONS(5252), 1, anon_sym_typeof, - ACTIONS(4997), 1, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(4999), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(5023), 1, - anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(9444), 1, anon_sym_DASH_GT, - ACTIONS(9427), 1, + ACTIONS(9446), 1, anon_sym_STAR, - STATE(2391), 1, + STATE(3191), 1, sym_constant, - STATE(2394), 1, + STATE(3192), 1, sym__type, - STATE(2478), 1, + STATE(3621), 1, sym__splattable_type, - STATE(2636), 1, + STATE(3850), 1, sym_splat_type, - STATE(2826), 1, + STATE(4528), 1, sym_proc_type, - STATE(2882), 1, + STATE(4753), 1, sym__bare_type, - STATE(7060), 1, + STATE(7100), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -596308,46 +602682,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [310404] = 19, + [312646] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, + ACTIONS(1579), 1, anon_sym_COLON_COLON, - ACTIONS(1397), 1, + ACTIONS(2608), 1, sym__constant_segment, - ACTIONS(5097), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5102), 1, + ACTIONS(5252), 1, anon_sym_typeof, - ACTIONS(5106), 1, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(5108), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(9429), 1, + ACTIONS(9444), 1, anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(9446), 1, anon_sym_STAR, - STATE(2786), 1, - sym__type, - STATE(2865), 1, + STATE(3191), 1, sym_constant, - STATE(3229), 1, + STATE(3192), 1, + sym__type, + STATE(3621), 1, sym__splattable_type, - STATE(3360), 1, + STATE(3850), 1, sym_splat_type, - STATE(3590), 1, + STATE(4528), 1, sym_proc_type, - STATE(4099), 1, + STATE(4756), 1, sym__bare_type, - STATE(7061), 1, + STATE(7101), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -596360,46 +602734,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [310475] = 19, + [312717] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, + ACTIONS(1579), 1, anon_sym_COLON_COLON, - ACTIONS(3108), 1, + ACTIONS(2608), 1, sym__constant_segment, - ACTIONS(5365), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5370), 1, + ACTIONS(5252), 1, anon_sym_typeof, - ACTIONS(5374), 1, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(5376), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(9433), 1, + ACTIONS(9444), 1, anon_sym_DASH_GT, - ACTIONS(9435), 1, + ACTIONS(9446), 1, anon_sym_STAR, - STATE(5097), 1, + STATE(3191), 1, sym_constant, - STATE(5107), 1, + STATE(3192), 1, sym__type, - STATE(5535), 1, + STATE(3621), 1, sym__splattable_type, - STATE(6082), 1, + STATE(3850), 1, sym_splat_type, - STATE(6483), 1, + STATE(4528), 1, sym_proc_type, - STATE(6827), 1, + STATE(4774), 1, sym__bare_type, - STATE(7062), 1, + STATE(7102), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -596412,46 +602786,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [310546] = 19, + [312788] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9343), 1, + ACTIONS(1579), 1, + anon_sym_COLON_COLON, + ACTIONS(2608), 1, + sym__constant_segment, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(9348), 1, + ACTIONS(5252), 1, anon_sym_typeof, - ACTIONS(9350), 1, - sym__constant_segment, - ACTIONS(9352), 1, - anon_sym_COLON_COLON, - ACTIONS(9356), 1, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(9358), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(9437), 1, + ACTIONS(9444), 1, anon_sym_DASH_GT, - ACTIONS(9439), 1, + ACTIONS(9446), 1, anon_sym_STAR, - STATE(7063), 1, - sym_heredoc_body, - STATE(8143), 1, + STATE(3191), 1, sym_constant, - STATE(8145), 1, + STATE(3192), 1, sym__type, - STATE(9295), 1, + STATE(3621), 1, sym__splattable_type, - STATE(9326), 1, + STATE(3850), 1, sym_splat_type, - STATE(9669), 1, - sym__bare_type, - STATE(10366), 1, + STATE(4528), 1, sym_proc_type, + STATE(4775), 1, + sym__bare_type, + STATE(7103), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9354), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(8458), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -596464,46 +602838,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [310617] = 19, + [312859] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, + ACTIONS(1579), 1, anon_sym_COLON_COLON, - ACTIONS(1397), 1, + ACTIONS(2608), 1, sym__constant_segment, - ACTIONS(5097), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5102), 1, + ACTIONS(5252), 1, anon_sym_typeof, - ACTIONS(5106), 1, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(5108), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(9429), 1, + ACTIONS(9444), 1, anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(9446), 1, anon_sym_STAR, - STATE(2786), 1, - sym__type, - STATE(2865), 1, + STATE(3191), 1, sym_constant, - STATE(3229), 1, + STATE(3192), 1, + sym__type, + STATE(3621), 1, sym__splattable_type, - STATE(3360), 1, + STATE(3850), 1, sym_splat_type, - STATE(3590), 1, + STATE(4528), 1, sym_proc_type, - STATE(4201), 1, + STATE(4790), 1, sym__bare_type, - STATE(7064), 1, + STATE(7104), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -596516,46 +602890,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [310688] = 19, + [312930] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7672), 1, + ACTIONS(1579), 1, + anon_sym_COLON_COLON, + ACTIONS(2608), 1, + sym__constant_segment, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(7677), 1, + ACTIONS(5252), 1, anon_sym_typeof, - ACTIONS(7679), 1, - sym__constant_segment, - ACTIONS(7681), 1, - anon_sym_COLON_COLON, - ACTIONS(7685), 1, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(7687), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(9395), 1, + ACTIONS(9444), 1, anon_sym_DASH_GT, - ACTIONS(9397), 1, + ACTIONS(9446), 1, anon_sym_STAR, - STATE(7065), 1, - sym_heredoc_body, - STATE(7767), 1, - sym__type, - STATE(7775), 1, + STATE(3191), 1, sym_constant, - STATE(8059), 1, + STATE(3192), 1, + sym__type, + STATE(3621), 1, sym__splattable_type, - STATE(8075), 1, + STATE(3850), 1, sym_splat_type, - STATE(8103), 1, + STATE(4528), 1, sym_proc_type, - STATE(8163), 1, + STATE(4802), 1, sym__bare_type, + STATE(7105), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7683), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(7815), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -596568,46 +602942,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [310759] = 19, + [313001] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, + ACTIONS(1017), 1, anon_sym_COLON_COLON, - ACTIONS(1397), 1, + ACTIONS(3051), 1, sym__constant_segment, - ACTIONS(5097), 1, + ACTIONS(5325), 1, anon_sym_LPAREN, - ACTIONS(5102), 1, + ACTIONS(5330), 1, anon_sym_typeof, - ACTIONS(5106), 1, + ACTIONS(5334), 1, sym__start_of_tuple_type, - ACTIONS(5108), 1, + ACTIONS(5336), 1, sym__start_of_named_tuple_type, - ACTIONS(9429), 1, + ACTIONS(9448), 1, anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(9450), 1, anon_sym_STAR, - STATE(2786), 1, + STATE(4769), 1, sym__type, - STATE(2865), 1, + STATE(4893), 1, sym_constant, - STATE(3229), 1, + STATE(5117), 1, sym__splattable_type, - STATE(3360), 1, + STATE(5348), 1, sym_splat_type, - STATE(3590), 1, + STATE(5618), 1, sym_proc_type, - STATE(4082), 1, + STATE(5983), 1, sym__bare_type, - STATE(7066), 1, + STATE(7106), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(5332), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(5015), 12, sym_typeof, sym_class_type, sym_union_type, @@ -596620,46 +602994,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [310830] = 19, + [313072] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(1397), 1, + ACTIONS(1417), 1, sym__constant_segment, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5102), 1, + ACTIONS(5137), 1, anon_sym_typeof, - ACTIONS(5106), 1, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(5108), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(9429), 1, + ACTIONS(5180), 1, + anon_sym_LPAREN, + ACTIONS(9452), 1, anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(9454), 1, anon_sym_STAR, - STATE(2786), 1, - sym__type, - STATE(2865), 1, + STATE(2784), 1, sym_constant, - STATE(3229), 1, + STATE(2785), 1, + sym__type, + STATE(3188), 1, sym__splattable_type, - STATE(3360), 1, + STATE(3423), 1, sym_splat_type, - STATE(3590), 1, + STATE(3844), 1, sym_proc_type, - STATE(4122), 1, + STATE(4254), 1, sym__bare_type, - STATE(7067), 1, + STATE(7107), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -596672,46 +603046,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [310901] = 19, + [313143] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, + ACTIONS(719), 1, anon_sym_COLON_COLON, - ACTIONS(1397), 1, + ACTIONS(3013), 1, sym__constant_segment, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5102), 1, + ACTIONS(5281), 1, anon_sym_typeof, - ACTIONS(5106), 1, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(5108), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(9429), 1, + ACTIONS(5289), 1, + anon_sym_LPAREN, + ACTIONS(9456), 1, anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(9458), 1, anon_sym_STAR, - STATE(2786), 1, - sym__type, - STATE(2865), 1, + STATE(4258), 1, sym_constant, - STATE(3229), 1, + STATE(4259), 1, + sym__type, + STATE(4892), 1, sym__splattable_type, - STATE(3360), 1, + STATE(4915), 1, sym_splat_type, - STATE(3590), 1, + STATE(5066), 1, sym_proc_type, - STATE(4130), 1, + STATE(5095), 1, sym__bare_type, - STATE(7068), 1, + STATE(7108), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(4483), 12, sym_typeof, sym_class_type, sym_union_type, @@ -596724,46 +603098,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [310972] = 19, + [313214] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, + ACTIONS(1017), 1, anon_sym_COLON_COLON, - ACTIONS(1397), 1, + ACTIONS(3051), 1, sym__constant_segment, - ACTIONS(5097), 1, + ACTIONS(5325), 1, anon_sym_LPAREN, - ACTIONS(5102), 1, + ACTIONS(5330), 1, anon_sym_typeof, - ACTIONS(5106), 1, + ACTIONS(5334), 1, sym__start_of_tuple_type, - ACTIONS(5108), 1, + ACTIONS(5336), 1, sym__start_of_named_tuple_type, - ACTIONS(9429), 1, + ACTIONS(9448), 1, anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(9450), 1, anon_sym_STAR, - STATE(2786), 1, + STATE(4769), 1, sym__type, - STATE(2865), 1, + STATE(4893), 1, sym_constant, - STATE(3229), 1, + STATE(5117), 1, sym__splattable_type, - STATE(3360), 1, + STATE(5348), 1, sym_splat_type, - STATE(3590), 1, + STATE(5618), 1, sym_proc_type, - STATE(4131), 1, + STATE(6097), 1, sym__bare_type, - STATE(7069), 1, + STATE(7109), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(5332), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(5015), 12, sym_typeof, sym_class_type, sym_union_type, @@ -596776,46 +603150,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311043] = 19, + [313285] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, + ACTIONS(1017), 1, anon_sym_COLON_COLON, - ACTIONS(1397), 1, + ACTIONS(3051), 1, sym__constant_segment, - ACTIONS(5097), 1, + ACTIONS(5325), 1, anon_sym_LPAREN, - ACTIONS(5102), 1, + ACTIONS(5330), 1, anon_sym_typeof, - ACTIONS(5106), 1, + ACTIONS(5334), 1, sym__start_of_tuple_type, - ACTIONS(5108), 1, + ACTIONS(5336), 1, sym__start_of_named_tuple_type, - ACTIONS(9429), 1, + ACTIONS(9448), 1, anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(9450), 1, anon_sym_STAR, - STATE(2786), 1, + STATE(4769), 1, sym__type, - STATE(2865), 1, + STATE(4893), 1, sym_constant, - STATE(3229), 1, + STATE(5117), 1, sym__splattable_type, - STATE(3360), 1, + STATE(5348), 1, sym_splat_type, - STATE(3590), 1, + STATE(5618), 1, sym_proc_type, - STATE(4111), 1, + STATE(6183), 1, sym__bare_type, - STATE(7070), 1, + STATE(7110), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(5332), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(5015), 12, sym_typeof, sym_class_type, sym_union_type, @@ -596828,46 +603202,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311114] = 19, + [313356] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, + ACTIONS(1017), 1, anon_sym_COLON_COLON, - ACTIONS(3038), 1, + ACTIONS(3051), 1, sym__constant_segment, - ACTIONS(5292), 1, + ACTIONS(5325), 1, + anon_sym_LPAREN, + ACTIONS(5330), 1, anon_sym_typeof, - ACTIONS(5296), 1, + ACTIONS(5334), 1, sym__start_of_tuple_type, - ACTIONS(5298), 1, + ACTIONS(5336), 1, sym__start_of_named_tuple_type, - ACTIONS(5300), 1, - anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(9448), 1, anon_sym_DASH_GT, - ACTIONS(9423), 1, + ACTIONS(9450), 1, anon_sym_STAR, - STATE(4834), 1, - sym_constant, - STATE(4835), 1, + STATE(4769), 1, sym__type, - STATE(5397), 1, - sym_splat_type, - STATE(5425), 1, + STATE(4893), 1, + sym_constant, + STATE(5117), 1, sym__splattable_type, - STATE(5643), 1, + STATE(5348), 1, + sym_splat_type, + STATE(5618), 1, sym_proc_type, - STATE(6167), 1, + STATE(6193), 1, sym__bare_type, - STATE(7071), 1, + STATE(7111), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(5332), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(5015), 12, sym_typeof, sym_class_type, sym_union_type, @@ -596880,46 +603254,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311185] = 19, + [313427] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, + ACTIONS(1017), 1, anon_sym_COLON_COLON, - ACTIONS(1397), 1, + ACTIONS(3051), 1, sym__constant_segment, - ACTIONS(5097), 1, + ACTIONS(5325), 1, anon_sym_LPAREN, - ACTIONS(5102), 1, + ACTIONS(5330), 1, anon_sym_typeof, - ACTIONS(5106), 1, + ACTIONS(5334), 1, sym__start_of_tuple_type, - ACTIONS(5108), 1, + ACTIONS(5336), 1, sym__start_of_named_tuple_type, - ACTIONS(9429), 1, + ACTIONS(9448), 1, anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(9450), 1, anon_sym_STAR, - STATE(2786), 1, + STATE(4769), 1, sym__type, - STATE(2865), 1, + STATE(4893), 1, sym_constant, - STATE(3229), 1, + STATE(5117), 1, sym__splattable_type, - STATE(3360), 1, + STATE(5348), 1, sym_splat_type, - STATE(3590), 1, + STATE(5618), 1, sym_proc_type, - STATE(3998), 1, + STATE(6227), 1, sym__bare_type, - STATE(7072), 1, + STATE(7112), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(5332), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(5015), 12, sym_typeof, sym_class_type, sym_union_type, @@ -596932,46 +603306,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311256] = 19, + [313498] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, + ACTIONS(1017), 1, anon_sym_COLON_COLON, - ACTIONS(2537), 1, + ACTIONS(3051), 1, sym__constant_segment, - ACTIONS(5186), 1, + ACTIONS(5325), 1, anon_sym_LPAREN, - ACTIONS(5191), 1, + ACTIONS(5330), 1, anon_sym_typeof, - ACTIONS(5195), 1, + ACTIONS(5334), 1, sym__start_of_tuple_type, - ACTIONS(5197), 1, + ACTIONS(5336), 1, sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(9448), 1, anon_sym_DASH_GT, - ACTIONS(9443), 1, + ACTIONS(9450), 1, anon_sym_STAR, - STATE(3256), 1, - sym_constant, - STATE(3258), 1, + STATE(4769), 1, sym__type, - STATE(3635), 1, + STATE(4893), 1, + sym_constant, + STATE(5117), 1, sym__splattable_type, - STATE(4118), 1, + STATE(5348), 1, sym_splat_type, - STATE(4342), 1, + STATE(5618), 1, sym_proc_type, - STATE(4563), 1, + STATE(6230), 1, sym__bare_type, - STATE(7073), 1, + STATE(7113), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(5332), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(5015), 12, sym_typeof, sym_class_type, sym_union_type, @@ -596984,46 +603358,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311327] = 19, + [313569] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(85), 1, + ACTIONS(1017), 1, anon_sym_COLON_COLON, - ACTIONS(4993), 1, + ACTIONS(3051), 1, + sym__constant_segment, + ACTIONS(5325), 1, + anon_sym_LPAREN, + ACTIONS(5330), 1, anon_sym_typeof, - ACTIONS(4997), 1, + ACTIONS(5334), 1, sym__start_of_tuple_type, - ACTIONS(4999), 1, + ACTIONS(5336), 1, sym__start_of_named_tuple_type, - ACTIONS(5023), 1, - anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(9448), 1, anon_sym_DASH_GT, - ACTIONS(9427), 1, + ACTIONS(9450), 1, anon_sym_STAR, - STATE(2391), 1, - sym_constant, - STATE(2394), 1, + STATE(4769), 1, sym__type, - STATE(2478), 1, + STATE(4893), 1, + sym_constant, + STATE(5117), 1, sym__splattable_type, - STATE(2636), 1, + STATE(5348), 1, sym_splat_type, - STATE(2826), 1, + STATE(5618), 1, sym_proc_type, - STATE(2999), 1, + STATE(6038), 1, sym__bare_type, - STATE(7074), 1, + STATE(7114), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(5332), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(5015), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597036,46 +603410,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311398] = 19, + [313640] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(85), 1, + ACTIONS(1017), 1, anon_sym_COLON_COLON, - ACTIONS(4993), 1, + ACTIONS(3051), 1, + sym__constant_segment, + ACTIONS(5325), 1, + anon_sym_LPAREN, + ACTIONS(5330), 1, anon_sym_typeof, - ACTIONS(4997), 1, + ACTIONS(5334), 1, sym__start_of_tuple_type, - ACTIONS(4999), 1, + ACTIONS(5336), 1, sym__start_of_named_tuple_type, - ACTIONS(5023), 1, - anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(9448), 1, anon_sym_DASH_GT, - ACTIONS(9427), 1, + ACTIONS(9450), 1, anon_sym_STAR, - STATE(2391), 1, - sym_constant, - STATE(2394), 1, + STATE(4769), 1, sym__type, - STATE(2478), 1, + STATE(4893), 1, + sym_constant, + STATE(5117), 1, sym__splattable_type, - STATE(2636), 1, + STATE(5348), 1, sym_splat_type, - STATE(2826), 1, + STATE(5618), 1, sym_proc_type, - STATE(3002), 1, + STATE(6203), 1, sym__bare_type, - STATE(7075), 1, + STATE(7115), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(5332), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(5015), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597088,46 +603462,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311469] = 19, + [313711] = 19, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(83), 1, sym__constant_segment, ACTIONS(85), 1, anon_sym_COLON_COLON, - ACTIONS(4993), 1, + ACTIONS(5056), 1, anon_sym_typeof, - ACTIONS(4997), 1, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(4999), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(5023), 1, + ACTIONS(5064), 1, anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(9460), 1, anon_sym_DASH_GT, - ACTIONS(9427), 1, + ACTIONS(9462), 1, anon_sym_STAR, - STATE(2391), 1, - sym_constant, STATE(2394), 1, + sym_constant, + STATE(2395), 1, sym__type, - STATE(2531), 1, + STATE(2538), 1, sym__splattable_type, - STATE(2636), 1, + STATE(2608), 1, sym_splat_type, - STATE(2826), 1, + STATE(2818), 1, sym_proc_type, - STATE(2882), 1, + STATE(3053), 1, sym__bare_type, - STATE(7076), 1, + STATE(7116), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597140,46 +603514,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311540] = 19, + [313782] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8058), 1, - anon_sym_LPAREN, - ACTIONS(8063), 1, - anon_sym_typeof, - ACTIONS(8065), 1, - sym__constant_segment, - ACTIONS(8067), 1, + ACTIONS(719), 1, anon_sym_COLON_COLON, - ACTIONS(8071), 1, + ACTIONS(3013), 1, + sym__constant_segment, + ACTIONS(5281), 1, + anon_sym_typeof, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(8073), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(9445), 1, + ACTIONS(5289), 1, + anon_sym_LPAREN, + ACTIONS(9456), 1, anon_sym_DASH_GT, - ACTIONS(9447), 1, + ACTIONS(9458), 1, anon_sym_STAR, - STATE(7077), 1, - sym_heredoc_body, - STATE(7836), 1, + STATE(4258), 1, sym_constant, - STATE(7839), 1, + STATE(4259), 1, sym__type, - STATE(8086), 1, + STATE(4892), 1, sym__splattable_type, - STATE(8118), 1, + STATE(4915), 1, sym_splat_type, - STATE(8135), 1, - sym__bare_type, - STATE(8442), 1, + STATE(5066), 1, sym_proc_type, + STATE(5170), 1, + sym__bare_type, + STATE(7117), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8069), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(7855), 12, + STATE(4483), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597192,46 +603566,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311611] = 19, + [313853] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, - anon_sym_COLON_COLON, - ACTIONS(3038), 1, - sym__constant_segment, - ACTIONS(5292), 1, + ACTIONS(7094), 1, + anon_sym_LPAREN, + ACTIONS(7099), 1, anon_sym_typeof, - ACTIONS(5296), 1, + ACTIONS(7101), 1, + sym__constant_segment, + ACTIONS(7103), 1, + anon_sym_COLON_COLON, + ACTIONS(7107), 1, sym__start_of_tuple_type, - ACTIONS(5298), 1, + ACTIONS(7109), 1, sym__start_of_named_tuple_type, - ACTIONS(5300), 1, - anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(9464), 1, anon_sym_DASH_GT, - ACTIONS(9423), 1, + ACTIONS(9466), 1, anon_sym_STAR, - STATE(4834), 1, + STATE(7118), 1, + sym_heredoc_body, + STATE(7692), 1, sym_constant, - STATE(4835), 1, + STATE(7723), 1, sym__type, - STATE(5397), 1, - sym_splat_type, - STATE(5425), 1, + STATE(7827), 1, sym__splattable_type, - STATE(5643), 1, + STATE(7879), 1, + sym_splat_type, + STATE(7946), 1, sym_proc_type, - STATE(6366), 1, + STATE(8044), 1, sym__bare_type, - STATE(7078), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(7105), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(7763), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597244,46 +603618,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311682] = 19, + [313924] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(9393), 1, + anon_sym_typeof, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7079), 1, + ACTIONS(9468), 1, + anon_sym_DASH_GT, + ACTIONS(9470), 1, + anon_sym_STAR, + STATE(7119), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8299), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(9358), 1, - sym_proc_type, - STATE(10690), 1, + STATE(9396), 1, sym__bare_type, + STATE(9404), 1, + sym_splat_type, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597296,46 +603670,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311753] = 19, + [313995] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8058), 1, + ACTIONS(1675), 1, + anon_sym_COLON_COLON, + ACTIONS(2965), 1, + sym__constant_segment, + ACTIONS(5194), 1, anon_sym_LPAREN, - ACTIONS(8063), 1, + ACTIONS(5199), 1, anon_sym_typeof, - ACTIONS(8065), 1, - sym__constant_segment, - ACTIONS(8067), 1, - anon_sym_COLON_COLON, - ACTIONS(8071), 1, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(8073), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(9445), 1, + ACTIONS(9436), 1, anon_sym_DASH_GT, - ACTIONS(9447), 1, + ACTIONS(9438), 1, anon_sym_STAR, - STATE(7080), 1, - sym_heredoc_body, - STATE(7836), 1, + STATE(3180), 1, sym_constant, - STATE(7839), 1, + STATE(3182), 1, sym__type, - STATE(8086), 1, + STATE(3459), 1, sym__splattable_type, - STATE(8107), 1, - sym__bare_type, - STATE(8118), 1, + STATE(3845), 1, sym_splat_type, - STATE(8442), 1, + STATE(4301), 1, sym_proc_type, + STATE(4548), 1, + sym__bare_type, + STATE(7120), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8069), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(7855), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597348,46 +603722,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311824] = 19, + [314066] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8058), 1, - anon_sym_LPAREN, - ACTIONS(8063), 1, - anon_sym_typeof, - ACTIONS(8065), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(8067), 1, + ACTIONS(85), 1, anon_sym_COLON_COLON, - ACTIONS(8071), 1, + ACTIONS(5056), 1, + anon_sym_typeof, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(8073), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(9445), 1, + ACTIONS(5064), 1, + anon_sym_LPAREN, + ACTIONS(9460), 1, anon_sym_DASH_GT, - ACTIONS(9447), 1, + ACTIONS(9462), 1, anon_sym_STAR, - STATE(7081), 1, - sym_heredoc_body, - STATE(7836), 1, + STATE(2394), 1, sym_constant, - STATE(7839), 1, + STATE(2395), 1, sym__type, - STATE(8086), 1, + STATE(2538), 1, sym__splattable_type, - STATE(8118), 1, + STATE(2608), 1, sym_splat_type, - STATE(8136), 1, - sym__bare_type, - STATE(8442), 1, + STATE(2818), 1, sym_proc_type, + STATE(3075), 1, + sym__bare_type, + STATE(7121), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8069), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(7855), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597400,46 +603774,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311895] = 19, + [314137] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8058), 1, + ACTIONS(2710), 1, + anon_sym_COLON_COLON, + ACTIONS(3141), 1, + sym__constant_segment, + ACTIONS(5402), 1, anon_sym_LPAREN, - ACTIONS(8063), 1, + ACTIONS(5407), 1, anon_sym_typeof, - ACTIONS(8065), 1, - sym__constant_segment, - ACTIONS(8067), 1, - anon_sym_COLON_COLON, - ACTIONS(8071), 1, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(8073), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(9445), 1, + ACTIONS(9472), 1, anon_sym_DASH_GT, - ACTIONS(9447), 1, + ACTIONS(9474), 1, anon_sym_STAR, - STATE(7082), 1, - sym_heredoc_body, - STATE(7836), 1, + STATE(5101), 1, sym_constant, - STATE(7839), 1, + STATE(5115), 1, sym__type, - STATE(8086), 1, + STATE(5775), 1, sym__splattable_type, - STATE(8106), 1, - sym__bare_type, - STATE(8118), 1, + STATE(6165), 1, sym_splat_type, - STATE(8442), 1, + STATE(6476), 1, sym_proc_type, + STATE(6819), 1, + sym__bare_type, + STATE(7122), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8069), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(7855), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597452,46 +603826,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [311966] = 19, + [314208] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8058), 1, - anon_sym_LPAREN, - ACTIONS(8063), 1, - anon_sym_typeof, - ACTIONS(8065), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(8067), 1, + ACTIONS(85), 1, anon_sym_COLON_COLON, - ACTIONS(8071), 1, + ACTIONS(5056), 1, + anon_sym_typeof, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(8073), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(9445), 1, + ACTIONS(5064), 1, + anon_sym_LPAREN, + ACTIONS(9460), 1, anon_sym_DASH_GT, - ACTIONS(9447), 1, + ACTIONS(9462), 1, anon_sym_STAR, - STATE(7083), 1, - sym_heredoc_body, - STATE(7836), 1, + STATE(2394), 1, sym_constant, - STATE(7839), 1, + STATE(2395), 1, sym__type, - STATE(8086), 1, + STATE(2541), 1, sym__splattable_type, - STATE(8118), 1, + STATE(2608), 1, sym_splat_type, - STATE(8127), 1, - sym__bare_type, - STATE(8442), 1, + STATE(2818), 1, sym_proc_type, + STATE(3134), 1, + sym__bare_type, + STATE(7123), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8069), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(7855), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597504,46 +603878,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312037] = 19, + [314279] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8058), 1, - anon_sym_LPAREN, - ACTIONS(8063), 1, - anon_sym_typeof, - ACTIONS(8065), 1, - sym__constant_segment, - ACTIONS(8067), 1, + ACTIONS(719), 1, anon_sym_COLON_COLON, - ACTIONS(8071), 1, + ACTIONS(3013), 1, + sym__constant_segment, + ACTIONS(5281), 1, + anon_sym_typeof, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(8073), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(9445), 1, + ACTIONS(5289), 1, + anon_sym_LPAREN, + ACTIONS(9456), 1, anon_sym_DASH_GT, - ACTIONS(9447), 1, + ACTIONS(9458), 1, anon_sym_STAR, - STATE(7084), 1, - sym_heredoc_body, - STATE(7836), 1, + STATE(4258), 1, sym_constant, - STATE(7839), 1, + STATE(4259), 1, sym__type, - STATE(8086), 1, + STATE(4892), 1, sym__splattable_type, - STATE(8118), 1, + STATE(4915), 1, sym_splat_type, - STATE(8130), 1, - sym__bare_type, - STATE(8442), 1, + STATE(5066), 1, sym_proc_type, + STATE(5157), 1, + sym__bare_type, + STATE(7124), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8069), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(7855), 12, + STATE(4483), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597556,46 +603930,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312108] = 19, + [314350] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(567), 1, + ACTIONS(719), 1, anon_sym_COLON_COLON, - ACTIONS(2904), 1, + ACTIONS(3013), 1, sym__constant_segment, - ACTIONS(5061), 1, - anon_sym_LPAREN, - ACTIONS(5066), 1, + ACTIONS(5281), 1, anon_sym_typeof, - ACTIONS(5070), 1, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(5072), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(9449), 1, + ACTIONS(5289), 1, + anon_sym_LPAREN, + ACTIONS(9456), 1, anon_sym_DASH_GT, - ACTIONS(9451), 1, + ACTIONS(9458), 1, anon_sym_STAR, - STATE(2676), 1, + STATE(4258), 1, sym_constant, - STATE(2677), 1, + STATE(4259), 1, sym__type, - STATE(3143), 1, + STATE(4892), 1, sym__splattable_type, - STATE(3216), 1, + STATE(4915), 1, sym_splat_type, - STATE(3398), 1, + STATE(5066), 1, sym_proc_type, - STATE(3685), 1, + STATE(5163), 1, sym__bare_type, - STATE(7085), 1, + STATE(7125), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5068), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(2791), 12, + STATE(4483), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597608,46 +603982,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312179] = 19, + [314421] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(85), 1, + ACTIONS(719), 1, anon_sym_COLON_COLON, - ACTIONS(4993), 1, + ACTIONS(3013), 1, + sym__constant_segment, + ACTIONS(5281), 1, anon_sym_typeof, - ACTIONS(4997), 1, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(4999), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(5023), 1, + ACTIONS(5289), 1, anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(9456), 1, anon_sym_DASH_GT, - ACTIONS(9427), 1, + ACTIONS(9458), 1, anon_sym_STAR, - STATE(2391), 1, + STATE(4258), 1, sym_constant, - STATE(2394), 1, + STATE(4259), 1, sym__type, - STATE(2531), 1, + STATE(4892), 1, sym__splattable_type, - STATE(2636), 1, + STATE(4915), 1, sym_splat_type, - STATE(2826), 1, + STATE(5066), 1, sym_proc_type, - STATE(3151), 1, + STATE(5273), 1, sym__bare_type, - STATE(7086), 1, + STATE(7126), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(4483), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597660,46 +604034,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312250] = 19, + [314492] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7071), 1, - anon_sym_LPAREN, - ACTIONS(7076), 1, - anon_sym_typeof, - ACTIONS(7078), 1, - sym__constant_segment, - ACTIONS(7080), 1, + ACTIONS(719), 1, anon_sym_COLON_COLON, - ACTIONS(7084), 1, + ACTIONS(3013), 1, + sym__constant_segment, + ACTIONS(5281), 1, + anon_sym_typeof, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(7086), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(9417), 1, + ACTIONS(5289), 1, + anon_sym_LPAREN, + ACTIONS(9456), 1, anon_sym_DASH_GT, - ACTIONS(9419), 1, + ACTIONS(9458), 1, anon_sym_STAR, - STATE(7087), 1, - sym_heredoc_body, - STATE(7662), 1, + STATE(4258), 1, sym_constant, - STATE(7687), 1, + STATE(4259), 1, sym__type, - STATE(7792), 1, + STATE(4892), 1, sym__splattable_type, - STATE(7831), 1, - sym__bare_type, - STATE(7833), 1, + STATE(4915), 1, sym_splat_type, - STATE(7901), 1, + STATE(5066), 1, sym_proc_type, + STATE(5282), 1, + sym__bare_type, + STATE(7127), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7082), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(7736), 12, + STATE(4483), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597712,46 +604086,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312321] = 19, + [314563] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(179), 1, - anon_sym_COLON_COLON, - ACTIONS(2042), 1, - sym__constant_segment, - ACTIONS(4953), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(4958), 1, - anon_sym_typeof, - ACTIONS(4962), 1, - sym__start_of_tuple_type, - ACTIONS(4964), 1, - sym__start_of_named_tuple_type, - ACTIONS(9453), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9455), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2341), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7128), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2346), 1, + STATE(8180), 1, sym_constant, - STATE(2410), 1, - sym__splattable_type, - STATE(2455), 1, + STATE(9288), 1, sym_splat_type, - STATE(2493), 1, + STATE(9365), 1, + sym__splattable_type, + STATE(9493), 1, sym_proc_type, - STATE(2519), 1, + STATE(10258), 1, sym__bare_type, - STATE(7088), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4960), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2367), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597764,46 +604138,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312392] = 19, + [314634] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(567), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(2904), 1, + ACTIONS(2067), 1, sym__constant_segment, - ACTIONS(5061), 1, - anon_sym_LPAREN, - ACTIONS(5066), 1, + ACTIONS(4997), 1, anon_sym_typeof, - ACTIONS(5070), 1, + ACTIONS(5001), 1, sym__start_of_tuple_type, - ACTIONS(5072), 1, + ACTIONS(5003), 1, sym__start_of_named_tuple_type, - ACTIONS(9449), 1, + ACTIONS(5013), 1, + anon_sym_LPAREN, + ACTIONS(9476), 1, anon_sym_DASH_GT, - ACTIONS(9451), 1, + ACTIONS(9478), 1, anon_sym_STAR, - STATE(2676), 1, - sym_constant, - STATE(2677), 1, + STATE(2333), 1, sym__type, - STATE(3143), 1, + STATE(2351), 1, + sym_constant, + STATE(2391), 1, sym__splattable_type, - STATE(3216), 1, + STATE(2440), 1, sym_splat_type, - STATE(3398), 1, + STATE(2536), 1, sym_proc_type, - STATE(3764), 1, + STATE(2709), 1, sym__bare_type, - STATE(7089), 1, + STATE(7129), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5068), 2, + ACTIONS(4999), 2, sym_self, sym_underscore_type, - STATE(2791), 12, + STATE(2379), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597816,46 +604190,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312463] = 19, + [314705] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(567), 1, - anon_sym_COLON_COLON, - ACTIONS(2904), 1, - sym__constant_segment, - ACTIONS(5061), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(5066), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5070), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5072), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9449), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9451), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(2676), 1, + STATE(7130), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(2677), 1, + STATE(8353), 1, sym__type, - STATE(3143), 1, + STATE(9390), 1, sym__splattable_type, - STATE(3216), 1, + STATE(9404), 1, sym_splat_type, - STATE(3398), 1, - sym_proc_type, - STATE(3835), 1, + STATE(9592), 1, sym__bare_type, - STATE(7090), 1, - sym_heredoc_body, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5068), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(2791), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597868,46 +604242,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312534] = 19, + [314776] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(567), 1, + ACTIONS(719), 1, anon_sym_COLON_COLON, - ACTIONS(2904), 1, + ACTIONS(3013), 1, sym__constant_segment, - ACTIONS(5061), 1, - anon_sym_LPAREN, - ACTIONS(5066), 1, + ACTIONS(5281), 1, anon_sym_typeof, - ACTIONS(5070), 1, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(5072), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(9449), 1, + ACTIONS(5289), 1, + anon_sym_LPAREN, + ACTIONS(9456), 1, anon_sym_DASH_GT, - ACTIONS(9451), 1, + ACTIONS(9458), 1, anon_sym_STAR, - STATE(2676), 1, + STATE(4258), 1, sym_constant, - STATE(2677), 1, + STATE(4259), 1, sym__type, - STATE(3143), 1, + STATE(4892), 1, sym__splattable_type, - STATE(3216), 1, + STATE(4915), 1, sym_splat_type, - STATE(3398), 1, + STATE(5066), 1, sym_proc_type, - STATE(3738), 1, + STATE(5319), 1, sym__bare_type, - STATE(7091), 1, + STATE(7131), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5068), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(2791), 12, + STATE(4483), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597920,46 +604294,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312605] = 19, + [314847] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(445), 1, - anon_sym_COLON_COLON, - ACTIONS(2890), 1, - sym__constant_segment, - ACTIONS(5084), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5089), 1, - anon_sym_typeof, - ACTIONS(5093), 1, - sym__start_of_tuple_type, - ACTIONS(5095), 1, - sym__start_of_named_tuple_type, - ACTIONS(9457), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9459), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2803), 1, - sym_constant, - STATE(2804), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7132), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(3251), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(3572), 1, + STATE(9288), 1, sym_splat_type, - STATE(3759), 1, - sym__bare_type, - STATE(3815), 1, + STATE(9493), 1, sym_proc_type, - STATE(7092), 1, - sym_heredoc_body, + STATE(11126), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5091), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(3166), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -597972,46 +604346,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312676] = 19, + [314918] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, - anon_sym_COLON_COLON, - ACTIONS(3038), 1, - sym__constant_segment, - ACTIONS(5292), 1, - anon_sym_typeof, - ACTIONS(5296), 1, - sym__start_of_tuple_type, - ACTIONS(5298), 1, - sym__start_of_named_tuple_type, - ACTIONS(5300), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9423), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(4834), 1, - sym_constant, - STATE(4835), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7133), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5397), 1, - sym_splat_type, - STATE(5425), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(5643), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(6038), 1, + STATE(11127), 1, sym__bare_type, - STATE(7093), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -598024,46 +604398,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312747] = 19, + [314989] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(567), 1, + ACTIONS(1675), 1, anon_sym_COLON_COLON, - ACTIONS(2904), 1, + ACTIONS(2965), 1, sym__constant_segment, - ACTIONS(5061), 1, + ACTIONS(5194), 1, anon_sym_LPAREN, - ACTIONS(5066), 1, + ACTIONS(5199), 1, anon_sym_typeof, - ACTIONS(5070), 1, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(5072), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(9449), 1, + ACTIONS(9436), 1, anon_sym_DASH_GT, - ACTIONS(9451), 1, + ACTIONS(9438), 1, anon_sym_STAR, - STATE(2676), 1, + STATE(3180), 1, sym_constant, - STATE(2677), 1, + STATE(3182), 1, sym__type, - STATE(3143), 1, + STATE(3843), 1, sym__splattable_type, - STATE(3216), 1, + STATE(3845), 1, sym_splat_type, - STATE(3398), 1, + STATE(4301), 1, sym_proc_type, - STATE(3820), 1, + STATE(4589), 1, sym__bare_type, - STATE(7094), 1, + STATE(7134), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5068), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(2791), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -598076,46 +604450,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312818] = 19, + [315060] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, - anon_sym_COLON_COLON, - ACTIONS(3108), 1, - sym__constant_segment, - ACTIONS(5365), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5370), 1, - anon_sym_typeof, - ACTIONS(5374), 1, - sym__start_of_tuple_type, - ACTIONS(5376), 1, - sym__start_of_named_tuple_type, - ACTIONS(9433), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9435), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(5097), 1, - sym_constant, - STATE(5107), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7135), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5535), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(6082), 1, + STATE(9288), 1, sym_splat_type, - STATE(6483), 1, + STATE(9493), 1, sym_proc_type, - STATE(6707), 1, + STATE(11162), 1, sym__bare_type, - STATE(7095), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -598128,46 +604502,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312889] = 19, + [315131] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(567), 1, - anon_sym_COLON_COLON, - ACTIONS(2904), 1, - sym__constant_segment, - ACTIONS(5061), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5066), 1, - anon_sym_typeof, - ACTIONS(5070), 1, - sym__start_of_tuple_type, - ACTIONS(5072), 1, - sym__start_of_named_tuple_type, - ACTIONS(9449), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9451), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2676), 1, - sym_constant, - STATE(2677), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7136), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(3143), 1, - sym__splattable_type, - STATE(3216), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(3398), 1, + STATE(9493), 1, sym_proc_type, - STATE(3821), 1, + STATE(9677), 1, + sym__splattable_type, + STATE(10482), 1, sym__bare_type, - STATE(7096), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5068), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2791), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -598180,46 +604554,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [312960] = 19, + [315202] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(567), 1, - anon_sym_COLON_COLON, - ACTIONS(2904), 1, - sym__constant_segment, - ACTIONS(5061), 1, - anon_sym_LPAREN, - ACTIONS(5066), 1, - anon_sym_typeof, - ACTIONS(5070), 1, + ACTIONS(4508), 1, sym__start_of_tuple_type, - ACTIONS(5072), 1, + ACTIONS(4510), 1, sym__start_of_named_tuple_type, - ACTIONS(9449), 1, + ACTIONS(9480), 1, + anon_sym_LPAREN, + ACTIONS(9482), 1, anon_sym_DASH_GT, - ACTIONS(9451), 1, + ACTIONS(9484), 1, anon_sym_STAR, - STATE(2676), 1, + ACTIONS(9486), 1, + anon_sym_typeof, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(429), 1, + sym__bare_type, + STATE(2064), 1, sym_constant, - STATE(2677), 1, + STATE(2066), 1, sym__type, - STATE(3143), 1, + STATE(2126), 1, sym__splattable_type, - STATE(3216), 1, + STATE(2132), 1, sym_splat_type, - STATE(3398), 1, + STATE(2142), 1, sym_proc_type, - STATE(3625), 1, - sym__bare_type, - STATE(7097), 1, + STATE(7137), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5068), 2, + ACTIONS(9492), 2, sym_self, sym_underscore_type, - STATE(2791), 12, + STATE(2081), 12, sym_typeof, sym_class_type, sym_union_type, @@ -598232,46 +604606,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313031] = 19, + [315273] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(567), 1, - anon_sym_COLON_COLON, - ACTIONS(2904), 1, - sym__constant_segment, - ACTIONS(5061), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5066), 1, - anon_sym_typeof, - ACTIONS(5070), 1, - sym__start_of_tuple_type, - ACTIONS(5072), 1, - sym__start_of_named_tuple_type, - ACTIONS(9449), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9451), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2676), 1, - sym_constant, - STATE(2677), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7138), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(3143), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(3216), 1, + STATE(9288), 1, sym_splat_type, - STATE(3398), 1, + STATE(9493), 1, sym_proc_type, - STATE(3654), 1, + STATE(11260), 1, sym__bare_type, - STATE(7098), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5068), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2791), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -598284,46 +604658,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313102] = 19, + [315344] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7071), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(7076), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(7078), 1, + ACTIONS(9395), 1, sym__constant_segment, - ACTIONS(7080), 1, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(7084), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(7086), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9417), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9419), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(7099), 1, + STATE(7139), 1, sym_heredoc_body, - STATE(7662), 1, + STATE(8299), 1, sym_constant, - STATE(7687), 1, + STATE(8353), 1, sym__type, - STATE(7792), 1, + STATE(9390), 1, sym__splattable_type, - STATE(7832), 1, - sym__bare_type, - STATE(7833), 1, + STATE(9404), 1, sym_splat_type, - STATE(7901), 1, + STATE(9602), 1, + sym__bare_type, + STATE(10472), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7082), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(7736), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -598336,46 +604710,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313173] = 19, + [315415] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(831), 1, - anon_sym_COLON_COLON, - ACTIONS(2996), 1, - sym__constant_segment, - ACTIONS(5269), 1, - anon_sym_typeof, - ACTIONS(5273), 1, - sym__start_of_tuple_type, - ACTIONS(5275), 1, - sym__start_of_named_tuple_type, - ACTIONS(5277), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9461), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9463), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(4347), 1, - sym_constant, - STATE(4348), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7140), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(4933), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(5079), 1, + STATE(9288), 1, sym_splat_type, - STATE(5129), 1, + STATE(9493), 1, sym_proc_type, - STATE(5391), 1, + STATE(11327), 1, sym__bare_type, - STATE(7100), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5271), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(4663), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -598388,46 +604762,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313244] = 19, + [315486] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, + ACTIONS(9388), 1, + anon_sym_LPAREN, + ACTIONS(9393), 1, + anon_sym_typeof, + ACTIONS(9395), 1, sym__constant_segment, - ACTIONS(85), 1, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(4993), 1, - anon_sym_typeof, - ACTIONS(4997), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(4999), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(5023), 1, - anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9427), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(2391), 1, + STATE(7141), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(2394), 1, + STATE(8353), 1, sym__type, - STATE(2478), 1, + STATE(9390), 1, sym__splattable_type, - STATE(2636), 1, + STATE(9404), 1, sym_splat_type, - STATE(2826), 1, - sym_proc_type, - STATE(3062), 1, + STATE(9611), 1, sym__bare_type, - STATE(7101), 1, - sym_heredoc_body, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -598440,46 +604814,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313315] = 19, + [315557] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(85), 1, - anon_sym_COLON_COLON, - ACTIONS(4993), 1, - anon_sym_typeof, - ACTIONS(4997), 1, - sym__start_of_tuple_type, - ACTIONS(4999), 1, - sym__start_of_named_tuple_type, - ACTIONS(5023), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9427), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2391), 1, - sym_constant, - STATE(2394), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7142), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2478), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(2636), 1, + STATE(9288), 1, sym_splat_type, - STATE(2826), 1, + STATE(9493), 1, sym_proc_type, - STATE(3063), 1, + STATE(11362), 1, sym__bare_type, - STATE(7102), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -598492,46 +604866,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313386] = 19, + [315628] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, + ACTIONS(719), 1, anon_sym_COLON_COLON, - ACTIONS(3038), 1, + ACTIONS(3013), 1, sym__constant_segment, - ACTIONS(5292), 1, + ACTIONS(5281), 1, anon_sym_typeof, - ACTIONS(5296), 1, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(5298), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(5300), 1, + ACTIONS(5289), 1, anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(9456), 1, anon_sym_DASH_GT, - ACTIONS(9423), 1, + ACTIONS(9458), 1, anon_sym_STAR, - STATE(4834), 1, + STATE(4258), 1, sym_constant, - STATE(4835), 1, + STATE(4259), 1, sym__type, - STATE(5397), 1, - sym_splat_type, - STATE(5425), 1, + STATE(4892), 1, sym__splattable_type, - STATE(5643), 1, + STATE(4915), 1, + sym_splat_type, + STATE(5066), 1, sym_proc_type, - STATE(5824), 1, + STATE(5342), 1, sym__bare_type, - STATE(7103), 1, + STATE(7143), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(4483), 12, sym_typeof, sym_class_type, sym_union_type, @@ -598544,46 +604918,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313457] = 19, + [315699] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9343), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(9348), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(9350), 1, + ACTIONS(9395), 1, sym__constant_segment, - ACTIONS(9352), 1, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(9356), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(9358), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9437), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9439), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(7104), 1, + STATE(7144), 1, sym_heredoc_body, - STATE(8143), 1, + STATE(8299), 1, sym_constant, - STATE(8145), 1, + STATE(8353), 1, sym__type, - STATE(9295), 1, + STATE(9390), 1, sym__splattable_type, - STATE(9326), 1, + STATE(9404), 1, sym_splat_type, - STATE(10083), 1, + STATE(9658), 1, sym__bare_type, - STATE(10366), 1, + STATE(10472), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9354), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8458), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -598596,46 +604970,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313528] = 19, + [315770] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7071), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(7076), 1, - anon_sym_typeof, - ACTIONS(7078), 1, - sym__constant_segment, - ACTIONS(7080), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(7084), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(7086), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9417), 1, - anon_sym_DASH_GT, - ACTIONS(9419), 1, - anon_sym_STAR, - STATE(7105), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7145), 1, sym_heredoc_body, - STATE(7662), 1, - sym_constant, - STATE(7687), 1, + STATE(8161), 1, sym__type, - STATE(7792), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(7833), 1, + STATE(9288), 1, sym_splat_type, - STATE(7844), 1, - sym__bare_type, - STATE(7901), 1, + STATE(9493), 1, sym_proc_type, + STATE(11574), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7082), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(7736), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -598648,46 +605022,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313599] = 19, + [315841] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5205), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5210), 1, - anon_sym_typeof, - ACTIONS(5212), 1, - sym__constant_segment, - ACTIONS(5214), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(5218), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(5220), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9391), 1, - anon_sym_DASH_GT, - ACTIONS(9393), 1, - anon_sym_STAR, - STATE(3273), 1, - sym_constant, - STATE(3274), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7146), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(3719), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(4189), 1, + STATE(9288), 1, sym_splat_type, - STATE(4582), 1, + STATE(9493), 1, sym_proc_type, - STATE(4651), 1, + STATE(11575), 1, sym__bare_type, - STATE(7106), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5216), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(3524), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -598700,46 +605074,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313670] = 19, + [315912] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, + ACTIONS(2133), 1, anon_sym_COLON_COLON, - ACTIONS(2942), 1, + ACTIONS(3067), 1, sym__constant_segment, - ACTIONS(5161), 1, + ACTIONS(5344), 1, + anon_sym_LPAREN, + ACTIONS(5349), 1, anon_sym_typeof, - ACTIONS(5165), 1, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(5167), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - ACTIONS(5169), 1, - anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(9494), 1, anon_sym_DASH_GT, - ACTIONS(9389), 1, + ACTIONS(9496), 1, anon_sym_STAR, - STATE(3026), 1, + STATE(4791), 1, sym_constant, - STATE(3027), 1, + STATE(4793), 1, sym__type, - STATE(3426), 1, + STATE(5224), 1, sym__splattable_type, - STATE(3716), 1, + STATE(5234), 1, sym_splat_type, - STATE(4055), 1, + STATE(5619), 1, sym_proc_type, - STATE(4452), 1, + STATE(6442), 1, sym__bare_type, - STATE(7107), 1, + STATE(7147), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -598752,46 +605126,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313741] = 19, + [315983] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, - anon_sym_COLON_COLON, - ACTIONS(3108), 1, - sym__constant_segment, - ACTIONS(5365), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5370), 1, - anon_sym_typeof, - ACTIONS(5374), 1, - sym__start_of_tuple_type, - ACTIONS(5376), 1, - sym__start_of_named_tuple_type, - ACTIONS(9433), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9435), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(5097), 1, - sym_constant, - STATE(5107), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7148), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5535), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(6082), 1, + STATE(9288), 1, sym_splat_type, - STATE(6483), 1, + STATE(9493), 1, sym_proc_type, - STATE(6710), 1, + STATE(11592), 1, sym__bare_type, - STATE(7108), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -598804,46 +605178,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313812] = 19, + [316054] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5113), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5118), 1, - anon_sym_typeof, - ACTIONS(5120), 1, - sym__constant_segment, - ACTIONS(5122), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(5126), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(5128), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9465), 1, - anon_sym_DASH_GT, - ACTIONS(9467), 1, - anon_sym_STAR, - STATE(2834), 1, - sym_constant, - STATE(2847), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7149), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(3298), 1, - sym__splattable_type, - STATE(3446), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(3623), 1, + STATE(9493), 1, sym_proc_type, - STATE(5518), 1, + STATE(9679), 1, + sym__splattable_type, + STATE(10494), 1, sym__bare_type, - STATE(7109), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5124), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(3092), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -598856,46 +605230,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313883] = 19, + [316125] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(85), 1, + ACTIONS(2312), 1, anon_sym_COLON_COLON, - ACTIONS(4993), 1, + ACTIONS(3083), 1, + sym__constant_segment, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(4997), 1, + ACTIONS(5385), 1, sym__start_of_tuple_type, - ACTIONS(4999), 1, + ACTIONS(5387), 1, sym__start_of_named_tuple_type, - ACTIONS(5023), 1, + ACTIONS(5389), 1, anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(9498), 1, anon_sym_DASH_GT, - ACTIONS(9427), 1, + ACTIONS(9500), 1, anon_sym_STAR, - STATE(2391), 1, + STATE(5014), 1, sym_constant, - STATE(2394), 1, + STATE(5021), 1, sym__type, - STATE(2478), 1, + STATE(5167), 1, sym__splattable_type, - STATE(2636), 1, + STATE(5552), 1, sym_splat_type, - STATE(2826), 1, + STATE(5956), 1, sym_proc_type, - STATE(3119), 1, + STATE(6578), 1, sym__bare_type, - STATE(7110), 1, + STATE(7150), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(5383), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(5099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -598908,46 +605282,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [313954] = 19, + [316196] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(85), 1, - anon_sym_COLON_COLON, - ACTIONS(4993), 1, - anon_sym_typeof, - ACTIONS(4997), 1, - sym__start_of_tuple_type, - ACTIONS(4999), 1, - sym__start_of_named_tuple_type, - ACTIONS(5023), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9427), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2391), 1, - sym_constant, - STATE(2394), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7151), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2531), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(2636), 1, + STATE(9288), 1, sym_splat_type, - STATE(2826), 1, + STATE(9493), 1, sym_proc_type, - STATE(3025), 1, + STATE(11629), 1, sym__bare_type, - STATE(7111), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -598960,46 +605334,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314025] = 19, + [316267] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(709), 1, - anon_sym_COLON_COLON, - ACTIONS(2982), 1, - sym__constant_segment, - ACTIONS(5240), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(5245), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5249), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5251), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9469), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9471), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(4227), 1, + STATE(7152), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(4234), 1, + STATE(8353), 1, sym__type, - STATE(4657), 1, + STATE(9390), 1, sym__splattable_type, - STATE(4994), 1, + STATE(9404), 1, sym_splat_type, - STATE(5069), 1, - sym_proc_type, - STATE(5265), 1, + STATE(9662), 1, sym__bare_type, - STATE(7112), 1, - sym_heredoc_body, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5247), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(4328), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -599012,46 +605386,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314096] = 19, + [316338] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, - anon_sym_COLON_COLON, - ACTIONS(1397), 1, - sym__constant_segment, - ACTIONS(5097), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5102), 1, - anon_sym_typeof, - ACTIONS(5106), 1, - sym__start_of_tuple_type, - ACTIONS(5108), 1, - sym__start_of_named_tuple_type, - ACTIONS(9429), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2786), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7153), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2865), 1, + STATE(8180), 1, sym_constant, - STATE(3229), 1, + STATE(9274), 1, sym__splattable_type, - STATE(3360), 1, + STATE(9288), 1, sym_splat_type, - STATE(3590), 1, + STATE(9493), 1, sym_proc_type, - STATE(3894), 1, + STATE(11661), 1, sym__bare_type, - STATE(7113), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -599064,46 +605438,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314167] = 19, + [316409] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(709), 1, - anon_sym_COLON_COLON, - ACTIONS(2982), 1, - sym__constant_segment, - ACTIONS(5240), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(5245), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5249), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5251), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9469), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9471), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(4227), 1, + STATE(7154), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(4234), 1, + STATE(8353), 1, sym__type, - STATE(4657), 1, + STATE(9390), 1, sym__splattable_type, - STATE(4994), 1, + STATE(9404), 1, sym_splat_type, - STATE(5069), 1, - sym_proc_type, - STATE(5317), 1, + STATE(9663), 1, sym__bare_type, - STATE(7114), 1, - sym_heredoc_body, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5247), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(4328), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -599116,46 +605490,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314238] = 19, + [316480] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7071), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(7076), 1, - anon_sym_typeof, - ACTIONS(7078), 1, - sym__constant_segment, - ACTIONS(7080), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(7084), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(7086), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9417), 1, - anon_sym_DASH_GT, - ACTIONS(9419), 1, - anon_sym_STAR, - STATE(7115), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7155), 1, sym_heredoc_body, - STATE(7662), 1, - sym_constant, - STATE(7687), 1, + STATE(8161), 1, sym__type, - STATE(7792), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(7833), 1, + STATE(9288), 1, sym_splat_type, - STATE(7847), 1, - sym__bare_type, - STATE(7901), 1, + STATE(9493), 1, sym_proc_type, + STATE(11676), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7082), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(7736), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -599168,46 +605542,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314309] = 19, + [316551] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(709), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(2982), 1, + ACTIONS(1417), 1, sym__constant_segment, - ACTIONS(5240), 1, - anon_sym_LPAREN, - ACTIONS(5245), 1, + ACTIONS(5137), 1, anon_sym_typeof, - ACTIONS(5249), 1, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(5251), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(9469), 1, + ACTIONS(5180), 1, + anon_sym_LPAREN, + ACTIONS(9452), 1, anon_sym_DASH_GT, - ACTIONS(9471), 1, + ACTIONS(9454), 1, anon_sym_STAR, - STATE(4227), 1, + STATE(2784), 1, sym_constant, - STATE(4234), 1, + STATE(2785), 1, sym__type, - STATE(4657), 1, + STATE(3200), 1, sym__splattable_type, - STATE(4994), 1, + STATE(3423), 1, sym_splat_type, - STATE(5069), 1, - sym_proc_type, - STATE(5341), 1, + STATE(3829), 1, sym__bare_type, - STATE(7116), 1, + STATE(3844), 1, + sym_proc_type, + STATE(7156), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5247), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(4328), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -599220,46 +605594,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314380] = 19, + [316622] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, + ACTIONS(2312), 1, anon_sym_COLON_COLON, - ACTIONS(2942), 1, + ACTIONS(3083), 1, sym__constant_segment, - ACTIONS(5161), 1, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5165), 1, + ACTIONS(5385), 1, sym__start_of_tuple_type, - ACTIONS(5167), 1, + ACTIONS(5387), 1, sym__start_of_named_tuple_type, - ACTIONS(5169), 1, + ACTIONS(5389), 1, anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(9498), 1, anon_sym_DASH_GT, - ACTIONS(9389), 1, + ACTIONS(9500), 1, anon_sym_STAR, - STATE(3026), 1, + STATE(5014), 1, sym_constant, - STATE(3027), 1, + STATE(5021), 1, sym__type, - STATE(3426), 1, + STATE(5167), 1, sym__splattable_type, - STATE(3716), 1, + STATE(5552), 1, sym_splat_type, - STATE(4055), 1, + STATE(5956), 1, sym_proc_type, - STATE(4544), 1, + STATE(6491), 1, sym__bare_type, - STATE(7117), 1, + STATE(7157), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(5383), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(5099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -599272,46 +605646,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314451] = 19, + [316693] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(709), 1, - anon_sym_COLON_COLON, - ACTIONS(2982), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(5240), 1, - anon_sym_LPAREN, - ACTIONS(5245), 1, + ACTIONS(85), 1, + anon_sym_COLON_COLON, + ACTIONS(5056), 1, anon_sym_typeof, - ACTIONS(5249), 1, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(5251), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(9469), 1, + ACTIONS(5064), 1, + anon_sym_LPAREN, + ACTIONS(9460), 1, anon_sym_DASH_GT, - ACTIONS(9471), 1, + ACTIONS(9462), 1, anon_sym_STAR, - STATE(4227), 1, + STATE(2394), 1, sym_constant, - STATE(4234), 1, + STATE(2395), 1, sym__type, - STATE(4657), 1, + STATE(2541), 1, sym__splattable_type, - STATE(4994), 1, + STATE(2608), 1, sym_splat_type, - STATE(5069), 1, + STATE(2818), 1, sym_proc_type, - STATE(5344), 1, + STATE(3099), 1, sym__bare_type, - STATE(7118), 1, + STATE(7158), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5247), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(4328), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -599324,46 +605698,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314522] = 19, + [316764] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(709), 1, + ACTIONS(2312), 1, anon_sym_COLON_COLON, - ACTIONS(2982), 1, + ACTIONS(3083), 1, sym__constant_segment, - ACTIONS(5240), 1, - anon_sym_LPAREN, - ACTIONS(5245), 1, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5249), 1, + ACTIONS(5385), 1, sym__start_of_tuple_type, - ACTIONS(5251), 1, + ACTIONS(5387), 1, sym__start_of_named_tuple_type, - ACTIONS(9469), 1, + ACTIONS(5389), 1, + anon_sym_LPAREN, + ACTIONS(9498), 1, anon_sym_DASH_GT, - ACTIONS(9471), 1, + ACTIONS(9500), 1, anon_sym_STAR, - STATE(4227), 1, + STATE(5014), 1, sym_constant, - STATE(4234), 1, + STATE(5021), 1, sym__type, - STATE(4657), 1, + STATE(5167), 1, sym__splattable_type, - STATE(4994), 1, + STATE(5552), 1, sym_splat_type, - STATE(5069), 1, + STATE(5956), 1, sym_proc_type, - STATE(5359), 1, + STATE(6392), 1, sym__bare_type, - STATE(7119), 1, + STATE(7159), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5247), 2, + ACTIONS(5383), 2, sym_self, sym_underscore_type, - STATE(4328), 12, + STATE(5099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -599376,46 +605750,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314593] = 19, + [316835] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(709), 1, + ACTIONS(2312), 1, anon_sym_COLON_COLON, - ACTIONS(2982), 1, + ACTIONS(3083), 1, sym__constant_segment, - ACTIONS(5240), 1, - anon_sym_LPAREN, - ACTIONS(5245), 1, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5249), 1, + ACTIONS(5385), 1, sym__start_of_tuple_type, - ACTIONS(5251), 1, + ACTIONS(5387), 1, sym__start_of_named_tuple_type, - ACTIONS(9469), 1, + ACTIONS(5389), 1, + anon_sym_LPAREN, + ACTIONS(9498), 1, anon_sym_DASH_GT, - ACTIONS(9471), 1, + ACTIONS(9500), 1, anon_sym_STAR, - STATE(4227), 1, + STATE(5014), 1, sym_constant, - STATE(4234), 1, + STATE(5021), 1, sym__type, - STATE(4657), 1, + STATE(5167), 1, sym__splattable_type, - STATE(4994), 1, + STATE(5552), 1, sym_splat_type, - STATE(5069), 1, + STATE(5956), 1, sym_proc_type, - STATE(5360), 1, + STATE(6401), 1, sym__bare_type, - STATE(7120), 1, + STATE(7160), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5247), 2, + ACTIONS(5383), 2, sym_self, sym_underscore_type, - STATE(4328), 12, + STATE(5099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -599428,46 +605802,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314664] = 19, + [316906] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(709), 1, + ACTIONS(2312), 1, anon_sym_COLON_COLON, - ACTIONS(2982), 1, + ACTIONS(3083), 1, sym__constant_segment, - ACTIONS(5240), 1, - anon_sym_LPAREN, - ACTIONS(5245), 1, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5249), 1, + ACTIONS(5385), 1, sym__start_of_tuple_type, - ACTIONS(5251), 1, + ACTIONS(5387), 1, sym__start_of_named_tuple_type, - ACTIONS(9469), 1, + ACTIONS(5389), 1, + anon_sym_LPAREN, + ACTIONS(9498), 1, anon_sym_DASH_GT, - ACTIONS(9471), 1, + ACTIONS(9500), 1, anon_sym_STAR, - STATE(4227), 1, + STATE(5014), 1, sym_constant, - STATE(4234), 1, + STATE(5021), 1, sym__type, - STATE(4657), 1, + STATE(5167), 1, sym__splattable_type, - STATE(4994), 1, + STATE(5552), 1, sym_splat_type, - STATE(5069), 1, + STATE(5956), 1, sym_proc_type, - STATE(5370), 1, + STATE(6487), 1, sym__bare_type, - STATE(7121), 1, + STATE(7161), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5247), 2, + ACTIONS(5383), 2, sym_self, sym_underscore_type, - STATE(4328), 12, + STATE(5099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -599480,46 +605854,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314735] = 19, + [316977] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(709), 1, - anon_sym_COLON_COLON, - ACTIONS(2982), 1, - sym__constant_segment, - ACTIONS(5240), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(5245), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5249), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5251), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9469), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9471), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(4227), 1, + STATE(7162), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(4234), 1, + STATE(8353), 1, sym__type, - STATE(4657), 1, + STATE(9390), 1, sym__splattable_type, - STATE(4994), 1, + STATE(9404), 1, sym_splat_type, - STATE(5069), 1, - sym_proc_type, - STATE(5377), 1, + STATE(9685), 1, sym__bare_type, - STATE(7122), 1, - sym_heredoc_body, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5247), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(4328), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -599532,46 +605906,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314806] = 19, + [317048] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(2312), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3083), 1, + sym__constant_segment, + ACTIONS(5381), 1, + anon_sym_typeof, + ACTIONS(5385), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5387), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7123), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5389), 1, + anon_sym_LPAREN, + ACTIONS(9498), 1, + anon_sym_DASH_GT, + ACTIONS(9500), 1, + anon_sym_STAR, + STATE(5014), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9213), 1, + STATE(5021), 1, + sym__type, + STATE(5167), 1, sym__splattable_type, - STATE(9358), 1, + STATE(5552), 1, + sym_splat_type, + STATE(5956), 1, sym_proc_type, - STATE(9684), 1, + STATE(6268), 1, sym__bare_type, + STATE(7163), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5383), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(5099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -599584,46 +605958,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314877] = 19, + [317119] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(85), 1, - anon_sym_COLON_COLON, - ACTIONS(4993), 1, - anon_sym_typeof, - ACTIONS(4997), 1, - sym__start_of_tuple_type, - ACTIONS(4999), 1, - sym__start_of_named_tuple_type, - ACTIONS(5023), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9427), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2391), 1, - sym_constant, - STATE(2394), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7164), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2478), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(2636), 1, + STATE(9288), 1, sym_splat_type, - STATE(2826), 1, + STATE(9493), 1, sym_proc_type, - STATE(3151), 1, + STATE(11869), 1, sym__bare_type, - STATE(7124), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -599636,46 +606010,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [314948] = 19, + [317190] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7071), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(7076), 1, - anon_sym_typeof, - ACTIONS(7078), 1, - sym__constant_segment, - ACTIONS(7080), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(7084), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(7086), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9417), 1, - anon_sym_DASH_GT, - ACTIONS(9419), 1, - anon_sym_STAR, - STATE(7125), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7165), 1, sym_heredoc_body, - STATE(7662), 1, - sym_constant, - STATE(7687), 1, + STATE(8161), 1, sym__type, - STATE(7792), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(7833), 1, + STATE(9288), 1, sym_splat_type, - STATE(7848), 1, - sym__bare_type, - STATE(7901), 1, + STATE(9493), 1, sym_proc_type, + STATE(11870), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7082), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(7736), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -599688,46 +606062,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315019] = 19, + [317261] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(85), 1, + ACTIONS(2312), 1, anon_sym_COLON_COLON, - ACTIONS(4993), 1, + ACTIONS(3083), 1, + sym__constant_segment, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(4997), 1, + ACTIONS(5385), 1, sym__start_of_tuple_type, - ACTIONS(4999), 1, + ACTIONS(5387), 1, sym__start_of_named_tuple_type, - ACTIONS(5023), 1, + ACTIONS(5389), 1, anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(9498), 1, anon_sym_DASH_GT, - ACTIONS(9427), 1, + ACTIONS(9500), 1, anon_sym_STAR, - STATE(2391), 1, + STATE(5014), 1, sym_constant, - STATE(2394), 1, + STATE(5021), 1, sym__type, - STATE(2531), 1, + STATE(5167), 1, sym__splattable_type, - STATE(2636), 1, + STATE(5552), 1, sym_splat_type, - STATE(2826), 1, + STATE(5956), 1, sym_proc_type, - STATE(3062), 1, + STATE(6520), 1, sym__bare_type, - STATE(7126), 1, + STATE(7166), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(5383), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(5099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -599740,46 +606114,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315090] = 19, + [317332] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, + ACTIONS(2312), 1, anon_sym_COLON_COLON, - ACTIONS(2942), 1, + ACTIONS(3083), 1, sym__constant_segment, - ACTIONS(5161), 1, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5165), 1, + ACTIONS(5385), 1, sym__start_of_tuple_type, - ACTIONS(5167), 1, + ACTIONS(5387), 1, sym__start_of_named_tuple_type, - ACTIONS(5169), 1, + ACTIONS(5389), 1, anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(9498), 1, anon_sym_DASH_GT, - ACTIONS(9389), 1, + ACTIONS(9500), 1, anon_sym_STAR, - STATE(3026), 1, + STATE(5014), 1, sym_constant, - STATE(3027), 1, + STATE(5021), 1, sym__type, - STATE(3716), 1, - sym_splat_type, - STATE(3830), 1, + STATE(5167), 1, sym__splattable_type, - STATE(4055), 1, + STATE(5552), 1, + sym_splat_type, + STATE(5956), 1, sym_proc_type, - STATE(4452), 1, + STATE(6526), 1, sym__bare_type, - STATE(7127), 1, + STATE(7167), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(5383), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(5099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -599792,46 +606166,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315161] = 19, + [317403] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, - anon_sym_COLON_COLON, - ACTIONS(2942), 1, - sym__constant_segment, - ACTIONS(5161), 1, - anon_sym_typeof, - ACTIONS(5165), 1, - sym__start_of_tuple_type, - ACTIONS(5167), 1, - sym__start_of_named_tuple_type, - ACTIONS(5169), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9389), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(3026), 1, - sym_constant, - STATE(3027), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7168), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(3716), 1, - sym_splat_type, - STATE(3830), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(4055), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(6816), 1, + STATE(11920), 1, sym__bare_type, - STATE(7128), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -599844,46 +606218,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315232] = 19, + [317474] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4347), 1, - sym__start_of_tuple_type, - ACTIONS(4349), 1, - sym__start_of_named_tuple_type, - ACTIONS(9399), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9401), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9403), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(9405), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9407), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9409), 1, - anon_sym_COLON_COLON, - STATE(2004), 1, + STATE(7169), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2006), 1, + STATE(8180), 1, sym_constant, - STATE(2040), 1, - sym__splattable_type, - STATE(2046), 1, - sym__bare_type, - STATE(2051), 1, + STATE(9288), 1, sym_splat_type, - STATE(2063), 1, + STATE(9493), 1, sym_proc_type, - STATE(7129), 1, - sym_heredoc_body, + STATE(9686), 1, + sym__splattable_type, + STATE(10576), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9411), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2012), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -599896,46 +606270,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315303] = 19, + [317545] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, + ACTIONS(1675), 1, anon_sym_COLON_COLON, - ACTIONS(3108), 1, + ACTIONS(2965), 1, sym__constant_segment, - ACTIONS(5365), 1, + ACTIONS(5194), 1, anon_sym_LPAREN, - ACTIONS(5370), 1, + ACTIONS(5199), 1, anon_sym_typeof, - ACTIONS(5374), 1, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(5376), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(9433), 1, + ACTIONS(9436), 1, anon_sym_DASH_GT, - ACTIONS(9435), 1, + ACTIONS(9438), 1, anon_sym_STAR, - STATE(5097), 1, + STATE(3180), 1, sym_constant, - STATE(5107), 1, + STATE(3182), 1, sym__type, - STATE(5507), 1, + STATE(3843), 1, sym__splattable_type, - STATE(6082), 1, + STATE(3845), 1, sym_splat_type, - STATE(6483), 1, + STATE(4301), 1, sym_proc_type, - STATE(6752), 1, + STATE(6855), 1, sym__bare_type, - STATE(7130), 1, + STATE(7170), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -599948,46 +606322,98 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315374] = 19, + [317616] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(2942), 1, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(5161), 1, + STATE(7171), 1, + sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, + sym__splattable_type, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(12044), 1, + sym__bare_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9333), 2, + sym_self, + sym_underscore_type, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [317687] = 19, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9388), 1, + anon_sym_LPAREN, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5165), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5167), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(5169), 1, - anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9389), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(3026), 1, + STATE(7172), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(3027), 1, + STATE(8353), 1, sym__type, - STATE(3716), 1, - sym_splat_type, - STATE(3830), 1, + STATE(9390), 1, sym__splattable_type, - STATE(4055), 1, - sym_proc_type, - STATE(4486), 1, + STATE(9404), 1, + sym_splat_type, + STATE(9736), 1, sym__bare_type, - STATE(7131), 1, - sym_heredoc_body, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600000,46 +606426,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315445] = 19, + [317758] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, - anon_sym_COLON_COLON, - ACTIONS(2942), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(5161), 1, + ACTIONS(85), 1, + anon_sym_COLON_COLON, + ACTIONS(5056), 1, anon_sym_typeof, - ACTIONS(5165), 1, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(5167), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(5169), 1, + ACTIONS(5064), 1, anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(9460), 1, anon_sym_DASH_GT, - ACTIONS(9389), 1, + ACTIONS(9462), 1, anon_sym_STAR, - STATE(3026), 1, + STATE(2394), 1, sym_constant, - STATE(3027), 1, + STATE(2395), 1, sym__type, - STATE(3716), 1, - sym_splat_type, - STATE(3830), 1, + STATE(2541), 1, sym__splattable_type, - STATE(4055), 1, + STATE(2608), 1, + sym_splat_type, + STATE(2818), 1, sym_proc_type, - STATE(4513), 1, + STATE(3075), 1, sym__bare_type, - STATE(7132), 1, + STATE(7173), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600052,46 +606478,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315516] = 19, + [317829] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(567), 1, - anon_sym_COLON_COLON, - ACTIONS(2904), 1, - sym__constant_segment, - ACTIONS(5061), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5066), 1, - anon_sym_typeof, - ACTIONS(5070), 1, - sym__start_of_tuple_type, - ACTIONS(5072), 1, - sym__start_of_named_tuple_type, - ACTIONS(9449), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9451), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2676), 1, - sym_constant, - STATE(2677), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7174), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(3143), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(3216), 1, + STATE(9288), 1, sym_splat_type, - STATE(3398), 1, + STATE(9493), 1, sym_proc_type, - STATE(5297), 1, + STATE(11344), 1, sym__bare_type, - STATE(7133), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5068), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2791), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600104,46 +606530,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315587] = 19, + [317900] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, - anon_sym_COLON_COLON, - ACTIONS(3108), 1, - sym__constant_segment, - ACTIONS(5365), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(5370), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5374), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5376), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9433), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9435), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(5097), 1, + STATE(7175), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(5107), 1, + STATE(8353), 1, sym__type, - STATE(5507), 1, + STATE(9390), 1, sym__splattable_type, - STATE(6082), 1, + STATE(9404), 1, sym_splat_type, - STATE(6483), 1, - sym_proc_type, - STATE(6647), 1, + STATE(9561), 1, sym__bare_type, - STATE(7134), 1, - sym_heredoc_body, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600156,46 +606582,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315658] = 19, + [317971] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, - anon_sym_COLON_COLON, - ACTIONS(2942), 1, - sym__constant_segment, - ACTIONS(5161), 1, - anon_sym_typeof, - ACTIONS(5165), 1, - sym__start_of_tuple_type, - ACTIONS(5167), 1, - sym__start_of_named_tuple_type, - ACTIONS(5169), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9389), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(3026), 1, - sym_constant, - STATE(3027), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7176), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(3716), 1, - sym_splat_type, - STATE(3830), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(4055), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(4516), 1, + STATE(10984), 1, sym__bare_type, - STATE(7135), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600208,46 +606634,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315729] = 19, + [318042] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, - anon_sym_COLON_COLON, - ACTIONS(3108), 1, - sym__constant_segment, - ACTIONS(5365), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(5370), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5374), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5376), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9433), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9435), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(5097), 1, + STATE(7177), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(5107), 1, + STATE(8353), 1, sym__type, - STATE(5507), 1, + STATE(9390), 1, sym__splattable_type, - STATE(6082), 1, + STATE(9404), 1, sym_splat_type, - STATE(6483), 1, - sym_proc_type, - STATE(6707), 1, + STATE(9485), 1, sym__bare_type, - STATE(7136), 1, - sym_heredoc_body, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600260,46 +606686,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315800] = 19, + [318113] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, - anon_sym_COLON_COLON, - ACTIONS(3108), 1, - sym__constant_segment, - ACTIONS(5365), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5370), 1, - anon_sym_typeof, - ACTIONS(5374), 1, - sym__start_of_tuple_type, - ACTIONS(5376), 1, - sym__start_of_named_tuple_type, - ACTIONS(9433), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9435), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(5097), 1, - sym_constant, - STATE(5107), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7178), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5507), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(6082), 1, + STATE(9288), 1, sym_splat_type, - STATE(6483), 1, + STATE(9493), 1, sym_proc_type, - STATE(6710), 1, + STATE(10587), 1, sym__bare_type, - STATE(7137), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600312,46 +606738,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315871] = 19, + [318184] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, - anon_sym_COLON_COLON, - ACTIONS(3108), 1, - sym__constant_segment, - ACTIONS(5365), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5370), 1, - anon_sym_typeof, - ACTIONS(5374), 1, - sym__start_of_tuple_type, - ACTIONS(5376), 1, - sym__start_of_named_tuple_type, - ACTIONS(9433), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9435), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(5097), 1, - sym_constant, - STATE(5107), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7179), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5507), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(6082), 1, + STATE(9288), 1, sym_splat_type, - STATE(6483), 1, + STATE(9493), 1, sym_proc_type, - STATE(6761), 1, + STATE(10671), 1, sym__bare_type, - STATE(7138), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600364,46 +606790,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [315942] = 19, + [318255] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, - anon_sym_COLON_COLON, - ACTIONS(2942), 1, - sym__constant_segment, - ACTIONS(5161), 1, - anon_sym_typeof, - ACTIONS(5165), 1, - sym__start_of_tuple_type, - ACTIONS(5167), 1, - sym__start_of_named_tuple_type, - ACTIONS(5169), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9389), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(3026), 1, - sym_constant, - STATE(3027), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7180), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(3426), 1, - sym__splattable_type, - STATE(3716), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(4055), 1, + STATE(9433), 1, + sym__splattable_type, + STATE(9493), 1, sym_proc_type, - STATE(4545), 1, + STATE(10537), 1, sym__bare_type, - STATE(7139), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600416,46 +606842,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316013] = 19, + [318326] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, - anon_sym_COLON_COLON, - ACTIONS(3108), 1, - sym__constant_segment, - ACTIONS(5365), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5370), 1, - anon_sym_typeof, - ACTIONS(5374), 1, - sym__start_of_tuple_type, - ACTIONS(5376), 1, - sym__start_of_named_tuple_type, - ACTIONS(9433), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9435), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(5097), 1, - sym_constant, - STATE(5107), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7181), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5507), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(6082), 1, + STATE(9288), 1, sym_splat_type, - STATE(6483), 1, + STATE(9493), 1, sym_proc_type, - STATE(6770), 1, + STATE(11235), 1, sym__bare_type, - STATE(7140), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600468,46 +606894,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316084] = 19, + [318397] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, - anon_sym_COLON_COLON, - ACTIONS(3108), 1, - sym__constant_segment, - ACTIONS(5365), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5370), 1, - anon_sym_typeof, - ACTIONS(5374), 1, - sym__start_of_tuple_type, - ACTIONS(5376), 1, - sym__start_of_named_tuple_type, - ACTIONS(9433), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9435), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(5097), 1, - sym_constant, - STATE(5107), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7182), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5507), 1, - sym__splattable_type, - STATE(6082), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(6483), 1, + STATE(9493), 1, sym_proc_type, - STATE(6802), 1, + STATE(9688), 1, + sym__splattable_type, + STATE(10509), 1, sym__bare_type, - STATE(7141), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600520,46 +606946,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316155] = 19, + [318468] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, - anon_sym_COLON_COLON, - ACTIONS(3108), 1, - sym__constant_segment, - ACTIONS(5365), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5370), 1, - anon_sym_typeof, - ACTIONS(5374), 1, - sym__start_of_tuple_type, - ACTIONS(5376), 1, - sym__start_of_named_tuple_type, - ACTIONS(9433), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9435), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(5097), 1, - sym_constant, - STATE(5107), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7183), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5507), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(6082), 1, + STATE(9288), 1, sym_splat_type, - STATE(6483), 1, + STATE(9493), 1, sym_proc_type, - STATE(6811), 1, + STATE(11640), 1, sym__bare_type, - STATE(7142), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600572,46 +606998,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316226] = 19, + [318539] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, - anon_sym_COLON_COLON, - ACTIONS(2942), 1, - sym__constant_segment, - ACTIONS(5161), 1, + ACTIONS(9388), 1, + anon_sym_LPAREN, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5165), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5167), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(5169), 1, - anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9389), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(3026), 1, + STATE(7184), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(3027), 1, + STATE(8353), 1, sym__type, - STATE(3716), 1, - sym_splat_type, - STATE(3830), 1, + STATE(9390), 1, sym__splattable_type, - STATE(4055), 1, - sym_proc_type, - STATE(4544), 1, + STATE(9401), 1, sym__bare_type, - STATE(7143), 1, - sym_heredoc_body, + STATE(9404), 1, + sym_splat_type, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600624,46 +607050,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316297] = 19, + [318610] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, - anon_sym_COLON_COLON, - ACTIONS(2942), 1, - sym__constant_segment, - ACTIONS(5161), 1, - anon_sym_typeof, - ACTIONS(5165), 1, - sym__start_of_tuple_type, - ACTIONS(5167), 1, - sym__start_of_named_tuple_type, - ACTIONS(5169), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9389), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(3026), 1, - sym_constant, - STATE(3027), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7185), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(3716), 1, - sym_splat_type, - STATE(3830), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(4055), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(4545), 1, + STATE(11049), 1, sym__bare_type, - STATE(7144), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600676,46 +607102,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316368] = 19, + [318681] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, - anon_sym_COLON_COLON, - ACTIONS(2942), 1, - sym__constant_segment, - ACTIONS(5161), 1, + ACTIONS(9388), 1, + anon_sym_LPAREN, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5165), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5167), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(5169), 1, - anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9389), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(3026), 1, + STATE(7186), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(3027), 1, + STATE(8353), 1, sym__type, - STATE(3716), 1, - sym_splat_type, - STATE(3830), 1, + STATE(9390), 1, sym__splattable_type, - STATE(4055), 1, - sym_proc_type, - STATE(4567), 1, + STATE(9404), 1, + sym_splat_type, + STATE(9418), 1, sym__bare_type, - STATE(7145), 1, - sym_heredoc_body, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600728,46 +607154,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316439] = 19, + [318752] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, - anon_sym_COLON_COLON, - ACTIONS(2942), 1, - sym__constant_segment, - ACTIONS(5161), 1, - anon_sym_typeof, - ACTIONS(5165), 1, - sym__start_of_tuple_type, - ACTIONS(5167), 1, - sym__start_of_named_tuple_type, - ACTIONS(5169), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9389), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(3026), 1, - sym_constant, - STATE(3027), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7187), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(3716), 1, - sym_splat_type, - STATE(3830), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(4055), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(4574), 1, + STATE(11769), 1, sym__bare_type, - STATE(7146), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600780,46 +607206,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316510] = 19, + [318823] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7071), 1, + ACTIONS(7094), 1, anon_sym_LPAREN, - ACTIONS(7076), 1, + ACTIONS(7099), 1, anon_sym_typeof, - ACTIONS(7078), 1, + ACTIONS(7101), 1, sym__constant_segment, - ACTIONS(7080), 1, + ACTIONS(7103), 1, anon_sym_COLON_COLON, - ACTIONS(7084), 1, + ACTIONS(7107), 1, sym__start_of_tuple_type, - ACTIONS(7086), 1, + ACTIONS(7109), 1, sym__start_of_named_tuple_type, - ACTIONS(9417), 1, + ACTIONS(9464), 1, anon_sym_DASH_GT, - ACTIONS(9419), 1, + ACTIONS(9466), 1, anon_sym_STAR, - STATE(7147), 1, + STATE(7188), 1, sym_heredoc_body, - STATE(7662), 1, + STATE(7692), 1, sym_constant, - STATE(7687), 1, + STATE(7723), 1, sym__type, - STATE(7792), 1, + STATE(7827), 1, sym__splattable_type, - STATE(7833), 1, + STATE(7879), 1, sym_splat_type, - STATE(7901), 1, - sym_proc_type, - STATE(8001), 1, + STATE(7888), 1, sym__bare_type, + STATE(7946), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7082), 2, + ACTIONS(7105), 2, sym_self, sym_underscore_type, - STATE(7736), 12, + STATE(7763), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600832,46 +607258,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316581] = 19, + [318894] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, - anon_sym_COLON_COLON, - ACTIONS(3038), 1, - sym__constant_segment, - ACTIONS(5292), 1, - anon_sym_typeof, - ACTIONS(5296), 1, + ACTIONS(4384), 1, sym__start_of_tuple_type, - ACTIONS(5298), 1, + ACTIONS(4386), 1, sym__start_of_named_tuple_type, - ACTIONS(5300), 1, + ACTIONS(9502), 1, anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(9504), 1, anon_sym_DASH_GT, - ACTIONS(9423), 1, + ACTIONS(9506), 1, anon_sym_STAR, - STATE(4834), 1, - sym_constant, - STATE(4835), 1, + ACTIONS(9508), 1, + anon_sym_typeof, + ACTIONS(9510), 1, + sym__constant_segment, + ACTIONS(9512), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, sym__type, - STATE(5039), 1, + STATE(2008), 1, + sym_constant, + STATE(2036), 1, + sym__bare_type, + STATE(2042), 1, sym__splattable_type, - STATE(5397), 1, + STATE(2055), 1, sym_splat_type, - STATE(5643), 1, + STATE(2073), 1, sym_proc_type, - STATE(5802), 1, - sym__bare_type, - STATE(7148), 1, + STATE(7189), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(9514), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(2024), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600884,46 +607310,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316652] = 19, + [318965] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, - anon_sym_COLON_COLON, - ACTIONS(3038), 1, - sym__constant_segment, - ACTIONS(5292), 1, - anon_sym_typeof, - ACTIONS(5296), 1, + ACTIONS(4508), 1, sym__start_of_tuple_type, - ACTIONS(5298), 1, + ACTIONS(4510), 1, sym__start_of_named_tuple_type, - ACTIONS(5300), 1, + ACTIONS(9480), 1, anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(9482), 1, anon_sym_DASH_GT, - ACTIONS(9423), 1, + ACTIONS(9484), 1, anon_sym_STAR, - STATE(4834), 1, + ACTIONS(9486), 1, + anon_sym_typeof, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(421), 1, + sym__bare_type, + STATE(2064), 1, sym_constant, - STATE(4835), 1, + STATE(2066), 1, sym__type, - STATE(5039), 1, + STATE(2126), 1, sym__splattable_type, - STATE(5397), 1, + STATE(2132), 1, sym_splat_type, - STATE(5643), 1, + STATE(2142), 1, sym_proc_type, - STATE(5696), 1, - sym__bare_type, - STATE(7149), 1, + STATE(7190), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(9492), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(2081), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600936,46 +607362,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316723] = 19, + [319036] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, - anon_sym_COLON_COLON, - ACTIONS(2942), 1, - sym__constant_segment, - ACTIONS(5161), 1, + ACTIONS(9388), 1, + anon_sym_LPAREN, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5165), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5167), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(5169), 1, - anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9389), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(3026), 1, + STATE(7191), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(3027), 1, + STATE(8353), 1, sym__type, - STATE(3426), 1, + STATE(9390), 1, sym__splattable_type, - STATE(3716), 1, + STATE(9404), 1, sym_splat_type, - STATE(4055), 1, - sym_proc_type, - STATE(6185), 1, + STATE(9501), 1, sym__bare_type, - STATE(7150), 1, - sym_heredoc_body, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -600988,46 +607414,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316794] = 19, + [319107] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(3020), 1, - sym__constant_segment, - ACTIONS(5305), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_typeof, - ACTIONS(5314), 1, - sym__start_of_tuple_type, - ACTIONS(5316), 1, - sym__start_of_named_tuple_type, - ACTIONS(9473), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9475), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(4652), 1, - sym_constant, - STATE(4653), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7192), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5040), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(5423), 1, + STATE(9288), 1, sym_splat_type, - STATE(5734), 1, + STATE(9493), 1, sym_proc_type, - STATE(6000), 1, + STATE(10767), 1, sym__bare_type, - STATE(7151), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5312), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(5003), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -601040,46 +607466,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316865] = 19, + [319178] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, - anon_sym_COLON_COLON, - ACTIONS(3108), 1, - sym__constant_segment, - ACTIONS(5365), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5370), 1, - anon_sym_typeof, - ACTIONS(5374), 1, - sym__start_of_tuple_type, - ACTIONS(5376), 1, - sym__start_of_named_tuple_type, - ACTIONS(9433), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9435), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(5097), 1, - sym_constant, - STATE(5107), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7193), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5535), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(6082), 1, + STATE(9288), 1, sym_splat_type, - STATE(6483), 1, + STATE(9493), 1, sym_proc_type, - STATE(6761), 1, + STATE(10785), 1, sym__bare_type, - STATE(7152), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -601092,46 +607518,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [316936] = 19, + [319249] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(709), 1, - anon_sym_COLON_COLON, - ACTIONS(2982), 1, - sym__constant_segment, - ACTIONS(5240), 1, - anon_sym_LPAREN, - ACTIONS(5245), 1, - anon_sym_typeof, - ACTIONS(5249), 1, + ACTIONS(4384), 1, sym__start_of_tuple_type, - ACTIONS(5251), 1, + ACTIONS(4386), 1, sym__start_of_named_tuple_type, - ACTIONS(9469), 1, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9504), 1, anon_sym_DASH_GT, - ACTIONS(9471), 1, + ACTIONS(9506), 1, anon_sym_STAR, - STATE(4227), 1, - sym_constant, - STATE(4234), 1, + ACTIONS(9508), 1, + anon_sym_typeof, + ACTIONS(9510), 1, + sym__constant_segment, + ACTIONS(9512), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, sym__type, - STATE(4657), 1, + STATE(2008), 1, + sym_constant, + STATE(2042), 1, sym__splattable_type, - STATE(4994), 1, - sym_splat_type, - STATE(5057), 1, + STATE(2043), 1, sym__bare_type, - STATE(5069), 1, + STATE(2055), 1, + sym_splat_type, + STATE(2073), 1, sym_proc_type, - STATE(7153), 1, + STATE(7194), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5247), 2, + ACTIONS(9514), 2, sym_self, sym_underscore_type, - STATE(4328), 12, + STATE(2024), 12, sym_typeof, sym_class_type, sym_union_type, @@ -601144,46 +607570,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317007] = 19, + [319320] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(3020), 1, - sym__constant_segment, - ACTIONS(5305), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_typeof, - ACTIONS(5314), 1, - sym__start_of_tuple_type, - ACTIONS(5316), 1, - sym__start_of_named_tuple_type, - ACTIONS(9473), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9475), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(4652), 1, - sym_constant, - STATE(4653), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7195), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5040), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(5423), 1, + STATE(9288), 1, sym_splat_type, - STATE(5734), 1, + STATE(9493), 1, sym_proc_type, - STATE(6046), 1, + STATE(10906), 1, sym__bare_type, - STATE(7154), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5312), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(5003), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -601196,46 +607622,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317078] = 19, + [319391] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(3020), 1, - sym__constant_segment, - ACTIONS(5305), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_typeof, - ACTIONS(5314), 1, - sym__start_of_tuple_type, - ACTIONS(5316), 1, - sym__start_of_named_tuple_type, - ACTIONS(9473), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9475), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(4652), 1, - sym_constant, - STATE(4653), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7196), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5040), 1, - sym__splattable_type, - STATE(5423), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(5734), 1, + STATE(9394), 1, + sym__splattable_type, + STATE(9493), 1, sym_proc_type, - STATE(6101), 1, + STATE(10541), 1, sym__bare_type, - STATE(7155), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5312), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(5003), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -601248,46 +607674,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317149] = 19, + [319462] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, - anon_sym_COLON_COLON, - ACTIONS(3108), 1, - sym__constant_segment, - ACTIONS(5365), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5370), 1, - anon_sym_typeof, - ACTIONS(5374), 1, - sym__start_of_tuple_type, - ACTIONS(5376), 1, - sym__start_of_named_tuple_type, - ACTIONS(9433), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9435), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(5097), 1, - sym_constant, - STATE(5107), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7197), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5535), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(6082), 1, + STATE(9288), 1, sym_splat_type, - STATE(6483), 1, + STATE(9493), 1, sym_proc_type, - STATE(6770), 1, + STATE(11193), 1, sym__bare_type, - STATE(7156), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -601300,46 +607726,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317220] = 19, + [319533] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(3020), 1, - sym__constant_segment, - ACTIONS(5305), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5314), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5316), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9473), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9475), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(4652), 1, + STATE(7198), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(4653), 1, + STATE(8353), 1, sym__type, - STATE(5040), 1, + STATE(9390), 1, sym__splattable_type, - STATE(5423), 1, + STATE(9404), 1, sym_splat_type, - STATE(5734), 1, - sym_proc_type, - STATE(6108), 1, + STATE(9600), 1, sym__bare_type, - STATE(7157), 1, - sym_heredoc_body, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5312), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(5003), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -601352,46 +607778,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317291] = 19, + [319604] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(3020), 1, - sym__constant_segment, - ACTIONS(5305), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_typeof, - ACTIONS(5314), 1, - sym__start_of_tuple_type, - ACTIONS(5316), 1, - sym__start_of_named_tuple_type, - ACTIONS(9473), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9475), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(4652), 1, - sym_constant, - STATE(4653), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7199), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5040), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(5423), 1, + STATE(9288), 1, sym_splat_type, - STATE(5734), 1, + STATE(9493), 1, sym_proc_type, - STATE(6145), 1, + STATE(11336), 1, sym__bare_type, - STATE(7158), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5312), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(5003), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -601404,46 +607830,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317362] = 19, + [319675] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(3020), 1, - sym__constant_segment, - ACTIONS(5305), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5314), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5316), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9473), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9475), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(4652), 1, + STATE(7200), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(4653), 1, + STATE(8353), 1, sym__type, - STATE(5040), 1, + STATE(9390), 1, sym__splattable_type, - STATE(5423), 1, + STATE(9404), 1, sym_splat_type, - STATE(5734), 1, - sym_proc_type, - STATE(6146), 1, + STATE(9615), 1, sym__bare_type, - STATE(7159), 1, - sym_heredoc_body, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5312), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(5003), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -601456,46 +607882,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317433] = 19, + [319746] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(3020), 1, - sym__constant_segment, - ACTIONS(5305), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_typeof, - ACTIONS(5314), 1, - sym__start_of_tuple_type, - ACTIONS(5316), 1, - sym__start_of_named_tuple_type, - ACTIONS(9473), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9475), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(4652), 1, - sym_constant, - STATE(4653), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7201), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5040), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(5423), 1, + STATE(9288), 1, sym_splat_type, - STATE(5734), 1, + STATE(9493), 1, sym_proc_type, - STATE(6159), 1, + STATE(11438), 1, sym__bare_type, - STATE(7160), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5312), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(5003), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -601508,46 +607934,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317504] = 19, + [319817] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(3020), 1, - sym__constant_segment, - ACTIONS(5305), 1, + ACTIONS(7684), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(7689), 1, anon_sym_typeof, - ACTIONS(5314), 1, + ACTIONS(7691), 1, + sym__constant_segment, + ACTIONS(7693), 1, + anon_sym_COLON_COLON, + ACTIONS(7697), 1, sym__start_of_tuple_type, - ACTIONS(5316), 1, + ACTIONS(7699), 1, sym__start_of_named_tuple_type, - ACTIONS(9473), 1, + ACTIONS(9516), 1, anon_sym_DASH_GT, - ACTIONS(9475), 1, + ACTIONS(9518), 1, anon_sym_STAR, - STATE(4652), 1, + STATE(7202), 1, + sym_heredoc_body, + STATE(7803), 1, sym_constant, - STATE(4653), 1, + STATE(7805), 1, sym__type, - STATE(5040), 1, + STATE(7983), 1, sym__splattable_type, - STATE(5423), 1, + STATE(8115), 1, sym_splat_type, - STATE(5734), 1, - sym_proc_type, - STATE(6168), 1, + STATE(8116), 1, sym__bare_type, - STATE(7161), 1, - sym_heredoc_body, + STATE(8157), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5312), 2, + ACTIONS(7695), 2, sym_self, sym_underscore_type, - STATE(5003), 12, + STATE(7865), 12, sym_typeof, sym_class_type, sym_union_type, @@ -601560,46 +607986,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317575] = 19, + [319888] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, - anon_sym_COLON_COLON, - ACTIONS(3038), 1, - sym__constant_segment, - ACTIONS(5292), 1, + ACTIONS(9369), 1, anon_sym_typeof, - ACTIONS(5296), 1, + ACTIONS(9371), 1, + sym__constant_segment, + ACTIONS(9373), 1, + anon_sym_COLON_COLON, + ACTIONS(9377), 1, sym__start_of_tuple_type, - ACTIONS(5298), 1, + ACTIONS(9379), 1, sym__start_of_named_tuple_type, - ACTIONS(5300), 1, + ACTIONS(9405), 1, anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(9440), 1, anon_sym_DASH_GT, - ACTIONS(9423), 1, + ACTIONS(9442), 1, anon_sym_STAR, - STATE(4834), 1, + STATE(7203), 1, + sym_heredoc_body, + STATE(8251), 1, sym_constant, - STATE(4835), 1, + STATE(8256), 1, sym__type, - STATE(5397), 1, - sym_splat_type, - STATE(5425), 1, + STATE(9353), 1, sym__splattable_type, - STATE(5643), 1, - sym_proc_type, - STATE(5792), 1, + STATE(9434), 1, + sym_splat_type, + STATE(10030), 1, sym__bare_type, - STATE(7162), 1, - sym_heredoc_body, + STATE(10191), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(9375), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(8523), 12, sym_typeof, sym_class_type, sym_union_type, @@ -601612,46 +608038,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317646] = 19, + [319959] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, - anon_sym_COLON_COLON, - ACTIONS(3108), 1, - sym__constant_segment, - ACTIONS(5365), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(5370), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5374), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5376), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9433), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9435), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(5097), 1, + STATE(7204), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(5107), 1, + STATE(8353), 1, sym__type, - STATE(5535), 1, + STATE(9390), 1, sym__splattable_type, - STATE(6082), 1, + STATE(9400), 1, + sym__bare_type, + STATE(9404), 1, sym_splat_type, - STATE(6483), 1, + STATE(10472), 1, sym_proc_type, - STATE(6752), 1, - sym__bare_type, - STATE(7163), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -601664,46 +608090,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317717] = 19, + [320030] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, - anon_sym_COLON_COLON, - ACTIONS(3038), 1, - sym__constant_segment, - ACTIONS(5292), 1, - anon_sym_typeof, - ACTIONS(5296), 1, - sym__start_of_tuple_type, - ACTIONS(5298), 1, - sym__start_of_named_tuple_type, - ACTIONS(5300), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9423), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(4834), 1, - sym_constant, - STATE(4835), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7205), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5039), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(5397), 1, + STATE(9288), 1, sym_splat_type, - STATE(5643), 1, + STATE(9493), 1, sym_proc_type, - STATE(5978), 1, + STATE(10714), 1, sym__bare_type, - STATE(7164), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -601716,46 +608142,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317788] = 19, + [320101] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7165), 1, + STATE(7206), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10520), 1, + STATE(10782), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -601768,46 +608194,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317859] = 19, + [320172] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, - anon_sym_COLON_COLON, - ACTIONS(3038), 1, - sym__constant_segment, - ACTIONS(5292), 1, + ACTIONS(8021), 1, + anon_sym_LPAREN, + ACTIONS(8026), 1, anon_sym_typeof, - ACTIONS(5296), 1, + ACTIONS(8028), 1, + sym__constant_segment, + ACTIONS(8030), 1, + anon_sym_COLON_COLON, + ACTIONS(8034), 1, sym__start_of_tuple_type, - ACTIONS(5298), 1, + ACTIONS(8036), 1, sym__start_of_named_tuple_type, - ACTIONS(5300), 1, - anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(9520), 1, anon_sym_DASH_GT, - ACTIONS(9423), 1, + ACTIONS(9522), 1, anon_sym_STAR, - STATE(4834), 1, + STATE(7207), 1, + sym_heredoc_body, + STATE(7870), 1, sym_constant, - STATE(4835), 1, + STATE(7872), 1, sym__type, - STATE(5039), 1, + STATE(8135), 1, sym__splattable_type, - STATE(5397), 1, + STATE(8165), 1, sym_splat_type, - STATE(5643), 1, + STATE(8441), 1, sym_proc_type, - STATE(5792), 1, + STATE(8640), 1, sym__bare_type, - STATE(7166), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(8032), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(7900), 12, sym_typeof, sym_class_type, sym_union_type, @@ -601820,46 +608246,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [317930] = 19, + [320243] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, - anon_sym_COLON_COLON, - ACTIONS(3038), 1, - sym__constant_segment, - ACTIONS(5292), 1, - anon_sym_typeof, - ACTIONS(5296), 1, - sym__start_of_tuple_type, - ACTIONS(5298), 1, - sym__start_of_named_tuple_type, - ACTIONS(5300), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9423), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(4834), 1, - sym_constant, - STATE(4835), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7208), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5039), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(5397), 1, + STATE(9288), 1, sym_splat_type, - STATE(5643), 1, + STATE(9493), 1, sym_proc_type, - STATE(5824), 1, + STATE(11294), 1, sym__bare_type, - STATE(7167), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -601872,46 +608298,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318001] = 19, + [320314] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, - anon_sym_COLON_COLON, - ACTIONS(3038), 1, - sym__constant_segment, - ACTIONS(5292), 1, - anon_sym_typeof, - ACTIONS(5296), 1, - sym__start_of_tuple_type, - ACTIONS(5298), 1, - sym__start_of_named_tuple_type, - ACTIONS(5300), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9423), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(4834), 1, - sym_constant, - STATE(4835), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7209), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5039), 1, - sym__splattable_type, - STATE(5397), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(5643), 1, + STATE(9493), 1, sym_proc_type, - STATE(6038), 1, + STATE(9689), 1, + sym__splattable_type, + STATE(10496), 1, sym__bare_type, - STATE(7168), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -601924,46 +608350,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318072] = 19, + [320385] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, - anon_sym_COLON_COLON, - ACTIONS(3038), 1, - sym__constant_segment, - ACTIONS(5292), 1, - anon_sym_typeof, - ACTIONS(5296), 1, - sym__start_of_tuple_type, - ACTIONS(5298), 1, - sym__start_of_named_tuple_type, - ACTIONS(5300), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9423), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(4834), 1, - sym_constant, - STATE(4835), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7210), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5039), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(5397), 1, + STATE(9288), 1, sym_splat_type, - STATE(5643), 1, + STATE(9493), 1, sym_proc_type, - STATE(6051), 1, + STATE(10590), 1, sym__bare_type, - STATE(7169), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -601976,46 +608402,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318143] = 19, + [320456] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(831), 1, - anon_sym_COLON_COLON, - ACTIONS(2996), 1, - sym__constant_segment, - ACTIONS(5269), 1, + ACTIONS(9388), 1, + anon_sym_LPAREN, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5273), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5275), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(9461), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9463), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(4347), 1, + STATE(7211), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(4348), 1, + STATE(8353), 1, sym__type, - STATE(4933), 1, + STATE(9390), 1, sym__splattable_type, - STATE(5079), 1, + STATE(9404), 1, sym_splat_type, - STATE(5129), 1, - sym_proc_type, - STATE(5481), 1, + STATE(9413), 1, sym__bare_type, - STATE(7170), 1, - sym_heredoc_body, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5271), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(4663), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -602028,46 +608454,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318214] = 19, + [320527] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, - anon_sym_COLON_COLON, - ACTIONS(3038), 1, - sym__constant_segment, - ACTIONS(5292), 1, - anon_sym_typeof, - ACTIONS(5296), 1, - sym__start_of_tuple_type, - ACTIONS(5298), 1, - sym__start_of_named_tuple_type, - ACTIONS(5300), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9423), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(4834), 1, - sym_constant, - STATE(4835), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7212), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5039), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(5397), 1, + STATE(9288), 1, sym_splat_type, - STATE(5643), 1, + STATE(9493), 1, sym_proc_type, - STATE(6167), 1, + STATE(11713), 1, sym__bare_type, - STATE(7171), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -602080,46 +608506,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318285] = 19, + [320598] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, - anon_sym_COLON_COLON, - ACTIONS(3038), 1, - sym__constant_segment, - ACTIONS(5292), 1, - anon_sym_typeof, - ACTIONS(5296), 1, - sym__start_of_tuple_type, - ACTIONS(5298), 1, - sym__start_of_named_tuple_type, - ACTIONS(5300), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9423), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(4834), 1, - sym_constant, - STATE(4835), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7213), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5039), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(5397), 1, + STATE(9288), 1, sym_splat_type, - STATE(5643), 1, + STATE(9493), 1, sym_proc_type, - STATE(5872), 1, + STATE(11012), 1, sym__bare_type, - STATE(7172), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -602132,46 +608558,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318356] = 19, + [320669] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(9395), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(7173), 1, + STATE(7214), 1, sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(8299), 1, sym_constant, - STATE(9244), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(9455), 1, - sym__bare_type, - STATE(9588), 1, + STATE(9404), 1, sym_splat_type, - STATE(10410), 1, + STATE(9416), 1, + sym__bare_type, + STATE(10472), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -602184,46 +608610,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318427] = 19, + [320740] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7174), 1, + STATE(7215), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(11917), 1, + STATE(11065), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -602236,46 +608662,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318498] = 19, + [320811] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(9393), 1, + anon_sym_typeof, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7175), 1, + ACTIONS(9468), 1, + anon_sym_DASH_GT, + ACTIONS(9470), 1, + anon_sym_STAR, + STATE(7216), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8299), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(9358), 1, - sym_proc_type, - STATE(11918), 1, + STATE(9404), 1, + sym_splat_type, + STATE(9436), 1, sym__bare_type, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -602288,46 +608714,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318569] = 19, + [320882] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(179), 1, - anon_sym_COLON_COLON, - ACTIONS(2042), 1, - sym__constant_segment, - ACTIONS(4953), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(4958), 1, - anon_sym_typeof, - ACTIONS(4962), 1, - sym__start_of_tuple_type, - ACTIONS(4964), 1, - sym__start_of_named_tuple_type, - ACTIONS(9453), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9455), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2341), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7217), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2346), 1, + STATE(8180), 1, sym_constant, - STATE(2410), 1, - sym__splattable_type, - STATE(2455), 1, + STATE(9288), 1, sym_splat_type, - STATE(2493), 1, + STATE(9365), 1, + sym__splattable_type, + STATE(9493), 1, sym_proc_type, - STATE(2766), 1, + STATE(10543), 1, sym__bare_type, - STATE(7176), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4960), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2367), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -602340,46 +608766,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318640] = 19, + [320953] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7177), 1, + STATE(7218), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10514), 1, + STATE(10849), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -602392,46 +608818,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318711] = 19, + [321024] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7178), 1, + STATE(7219), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9274), 1, + sym__splattable_type, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9604), 1, - sym__splattable_type, - STATE(10403), 1, + STATE(10870), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -602444,46 +608870,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318782] = 19, + [321095] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4471), 1, + ACTIONS(5223), 1, + anon_sym_typeof, + ACTIONS(5225), 1, + sym__constant_segment, + ACTIONS(5227), 1, + anon_sym_COLON_COLON, + ACTIONS(5231), 1, sym__start_of_tuple_type, - ACTIONS(4473), 1, + ACTIONS(5233), 1, sym__start_of_named_tuple_type, - ACTIONS(9477), 1, + ACTIONS(5239), 1, anon_sym_LPAREN, - ACTIONS(9479), 1, + ACTIONS(9524), 1, anon_sym_DASH_GT, - ACTIONS(9481), 1, + ACTIONS(9526), 1, anon_sym_STAR, - ACTIONS(9483), 1, - anon_sym_typeof, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(457), 1, - sym__bare_type, - STATE(2059), 1, - sym__type, - STATE(2077), 1, + STATE(3316), 1, sym_constant, - STATE(2128), 1, + STATE(3319), 1, + sym__type, + STATE(3922), 1, sym__splattable_type, - STATE(2136), 1, + STATE(4094), 1, sym_splat_type, - STATE(2154), 1, + STATE(4339), 1, sym_proc_type, - STATE(7179), 1, + STATE(5047), 1, + sym__bare_type, + STATE(7220), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9489), 2, + ACTIONS(5229), 2, sym_self, sym_underscore_type, - STATE(2095), 12, + STATE(3579), 12, sym_typeof, sym_class_type, sym_union_type, @@ -602496,46 +608922,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318853] = 19, + [321166] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7180), 1, + STATE(7221), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10716), 1, + STATE(10658), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -602548,46 +608974,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318924] = 19, + [321237] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, - anon_sym_DASH_GT, - ACTIONS(9415), 1, - anon_sym_STAR, - STATE(7181), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7222), 1, sym_heredoc_body, - STATE(8159), 1, + STATE(8161), 1, sym__type, - STATE(8192), 1, + STATE(8180), 1, sym_constant, - STATE(9244), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9485), 1, - sym__bare_type, - STATE(9588), 1, + STATE(9288), 1, sym_splat_type, - STATE(10410), 1, + STATE(9493), 1, sym_proc_type, + STATE(11306), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -602600,46 +609026,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [318995] = 19, + [321308] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7182), 1, + STATE(7223), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10841), 1, + STATE(10971), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -602652,46 +609078,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319066] = 19, + [321379] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, - anon_sym_DASH_GT, - ACTIONS(9415), 1, - anon_sym_STAR, - STATE(7183), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7224), 1, sym_heredoc_body, - STATE(8159), 1, + STATE(8161), 1, sym__type, - STATE(8192), 1, + STATE(8180), 1, sym_constant, - STATE(9244), 1, - sym__splattable_type, - STATE(9502), 1, - sym__bare_type, - STATE(9588), 1, + STATE(9288), 1, sym_splat_type, - STATE(10410), 1, + STATE(9493), 1, sym_proc_type, + STATE(9693), 1, + sym__splattable_type, + STATE(10558), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -602704,46 +609130,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319137] = 19, + [321450] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7184), 1, + STATE(7225), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10943), 1, + STATE(11369), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -602756,46 +609182,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319208] = 19, + [321521] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, - anon_sym_COLON_COLON, - ACTIONS(1397), 1, - sym__constant_segment, - ACTIONS(5097), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(5102), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5106), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5108), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9429), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(2786), 1, - sym__type, - STATE(2865), 1, + STATE(7226), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(3284), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(3360), 1, + STATE(9404), 1, sym_splat_type, - STATE(3590), 1, - sym_proc_type, - STATE(4099), 1, + STATE(9448), 1, sym__bare_type, - STATE(7185), 1, - sym_heredoc_body, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -602808,46 +609234,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319279] = 19, + [321592] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, - anon_sym_DASH_GT, - ACTIONS(9415), 1, - anon_sym_STAR, - STATE(7186), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7227), 1, sym_heredoc_body, - STATE(8159), 1, + STATE(8161), 1, sym__type, - STATE(8192), 1, + STATE(8180), 1, sym_constant, - STATE(9244), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9549), 1, - sym__bare_type, - STATE(9588), 1, + STATE(9288), 1, sym_splat_type, - STATE(10410), 1, + STATE(9493), 1, sym_proc_type, + STATE(11493), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -602860,46 +609286,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319350] = 19, + [321663] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(9393), 1, + anon_sym_typeof, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7187), 1, + ACTIONS(9468), 1, + anon_sym_DASH_GT, + ACTIONS(9470), 1, + anon_sym_STAR, + STATE(7228), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8299), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(9358), 1, - sym_proc_type, - STATE(11320), 1, + STATE(9404), 1, + sym_splat_type, + STATE(9462), 1, sym__bare_type, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -602912,46 +609338,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319421] = 19, + [321734] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7188), 1, + STATE(7229), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(11323), 1, + STATE(11531), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -602964,46 +609390,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319492] = 19, + [321805] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5113), 1, - anon_sym_LPAREN, - ACTIONS(5118), 1, - anon_sym_typeof, - ACTIONS(5120), 1, - sym__constant_segment, - ACTIONS(5122), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(5126), 1, + ACTIONS(2067), 1, + sym__constant_segment, + ACTIONS(4997), 1, + anon_sym_typeof, + ACTIONS(5001), 1, sym__start_of_tuple_type, - ACTIONS(5128), 1, + ACTIONS(5003), 1, sym__start_of_named_tuple_type, - ACTIONS(9465), 1, + ACTIONS(5013), 1, + anon_sym_LPAREN, + ACTIONS(9476), 1, anon_sym_DASH_GT, - ACTIONS(9467), 1, + ACTIONS(9478), 1, anon_sym_STAR, - STATE(2834), 1, - sym_constant, - STATE(2847), 1, + STATE(2333), 1, sym__type, - STATE(3298), 1, + STATE(2351), 1, + sym_constant, + STATE(2391), 1, sym__splattable_type, - STATE(3446), 1, + STATE(2440), 1, sym_splat_type, - STATE(3623), 1, + STATE(2536), 1, sym_proc_type, - STATE(4165), 1, + STATE(2688), 1, sym__bare_type, - STATE(7189), 1, + STATE(7230), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5124), 2, + ACTIONS(4999), 2, sym_self, sym_underscore_type, - STATE(3092), 12, + STATE(2379), 12, sym_typeof, sym_class_type, sym_union_type, @@ -603016,46 +609442,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319563] = 19, + [321876] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, - anon_sym_COLON_COLON, - ACTIONS(1397), 1, - sym__constant_segment, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5102), 1, - anon_sym_typeof, - ACTIONS(5106), 1, + ACTIONS(4384), 1, sym__start_of_tuple_type, - ACTIONS(5108), 1, + ACTIONS(4386), 1, sym__start_of_named_tuple_type, - ACTIONS(9429), 1, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9504), 1, anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(9506), 1, anon_sym_STAR, - STATE(2786), 1, + ACTIONS(9508), 1, + anon_sym_typeof, + ACTIONS(9510), 1, + sym__constant_segment, + ACTIONS(9512), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, sym__type, - STATE(2865), 1, + STATE(2008), 1, sym_constant, - STATE(3284), 1, + STATE(2039), 1, + sym__bare_type, + STATE(2042), 1, sym__splattable_type, - STATE(3360), 1, + STATE(2055), 1, sym_splat_type, - STATE(3590), 1, + STATE(2073), 1, sym_proc_type, - STATE(4201), 1, - sym__bare_type, - STATE(7190), 1, + STATE(7231), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(9514), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(2024), 12, sym_typeof, sym_class_type, sym_union_type, @@ -603068,46 +609494,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319634] = 19, + [321947] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(9393), 1, + anon_sym_typeof, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7191), 1, + ACTIONS(9468), 1, + anon_sym_DASH_GT, + ACTIONS(9470), 1, + anon_sym_STAR, + STATE(7232), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8299), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(9358), 1, - sym_proc_type, - STATE(11440), 1, + STATE(9404), 1, + sym_splat_type, + STATE(9494), 1, sym__bare_type, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -603120,46 +609546,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319705] = 19, + [322018] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7192), 1, + STATE(7233), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9274), 1, + sym__splattable_type, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9605), 1, - sym__splattable_type, - STATE(10408), 1, + STATE(10711), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -603172,46 +609598,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319776] = 19, + [322089] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7193), 1, + STATE(7234), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(11524), 1, + STATE(11949), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -603224,46 +609650,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319847] = 19, + [322160] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, - anon_sym_DASH_GT, - ACTIONS(9415), 1, - anon_sym_STAR, - STATE(7194), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7235), 1, sym_heredoc_body, - STATE(8159), 1, + STATE(8161), 1, sym__type, - STATE(8192), 1, + STATE(8180), 1, sym_constant, - STATE(9244), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9588), 1, + STATE(9288), 1, sym_splat_type, - STATE(9594), 1, - sym__bare_type, - STATE(10410), 1, + STATE(9493), 1, sym_proc_type, + STATE(11953), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -603276,46 +609702,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319918] = 19, + [322231] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8021), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8026), 1, + anon_sym_typeof, + ACTIONS(8028), 1, + sym__constant_segment, + ACTIONS(8030), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8034), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8036), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7195), 1, + ACTIONS(9520), 1, + anon_sym_DASH_GT, + ACTIONS(9522), 1, + anon_sym_STAR, + STATE(7236), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(7870), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(7872), 1, + sym__type, + STATE(8135), 1, sym__splattable_type, - STATE(9358), 1, + STATE(8165), 1, + sym_splat_type, + STATE(8441), 1, sym_proc_type, - STATE(11587), 1, + STATE(8784), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(8032), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(7900), 12, sym_typeof, sym_class_type, sym_union_type, @@ -603328,46 +609754,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [319989] = 19, + [322302] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(1675), 1, + anon_sym_COLON_COLON, + ACTIONS(2965), 1, + sym__constant_segment, + ACTIONS(5194), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(5199), 1, anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, - anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(9436), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9438), 1, anon_sym_STAR, - STATE(7196), 1, - sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(3180), 1, sym_constant, - STATE(9244), 1, + STATE(3182), 1, + sym__type, + STATE(3843), 1, sym__splattable_type, - STATE(9588), 1, + STATE(3845), 1, sym_splat_type, - STATE(9600), 1, - sym__bare_type, - STATE(10410), 1, + STATE(4301), 1, sym_proc_type, + STATE(4332), 1, + sym__bare_type, + STATE(7237), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -603380,46 +609806,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320060] = 19, + [322373] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7197), 1, + STATE(7238), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(11679), 1, + STATE(12063), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -603432,46 +609858,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320131] = 19, + [322444] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, - anon_sym_COLON_COLON, - ACTIONS(1397), 1, - sym__constant_segment, - ACTIONS(5097), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5102), 1, - anon_sym_typeof, - ACTIONS(5106), 1, - sym__start_of_tuple_type, - ACTIONS(5108), 1, - sym__start_of_named_tuple_type, - ACTIONS(9429), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2786), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7239), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2865), 1, + STATE(8180), 1, sym_constant, - STATE(3284), 1, - sym__splattable_type, - STATE(3360), 1, + STATE(9288), 1, sym_splat_type, - STATE(3590), 1, + STATE(9493), 1, sym_proc_type, - STATE(4082), 1, + STATE(9695), 1, + sym__splattable_type, + STATE(10481), 1, sym__bare_type, - STATE(7198), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -603484,46 +609910,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320202] = 19, + [322515] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, - anon_sym_COLON_COLON, - ACTIONS(1397), 1, - sym__constant_segment, - ACTIONS(5097), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5102), 1, - anon_sym_typeof, - ACTIONS(5106), 1, - sym__start_of_tuple_type, - ACTIONS(5108), 1, - sym__start_of_named_tuple_type, - ACTIONS(9429), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2786), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7240), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2865), 1, + STATE(8180), 1, sym_constant, - STATE(3284), 1, + STATE(9274), 1, sym__splattable_type, - STATE(3360), 1, + STATE(9288), 1, sym_splat_type, - STATE(3590), 1, + STATE(9493), 1, sym_proc_type, - STATE(4122), 1, + STATE(10723), 1, sym__bare_type, - STATE(7199), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -603536,46 +609962,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320273] = 19, + [322586] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, - anon_sym_COLON_COLON, - ACTIONS(1397), 1, - sym__constant_segment, - ACTIONS(5097), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(5102), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5106), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5108), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9429), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(2786), 1, - sym__type, - STATE(2865), 1, + STATE(7241), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(3284), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(3360), 1, + STATE(9404), 1, sym_splat_type, - STATE(3590), 1, - sym_proc_type, - STATE(4130), 1, + STATE(9520), 1, sym__bare_type, - STATE(7200), 1, - sym_heredoc_body, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -603588,46 +610014,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320344] = 19, + [322657] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(9395), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(7201), 1, + STATE(7242), 1, sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(8299), 1, sym_constant, - STATE(9244), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(9332), 1, - sym__bare_type, - STATE(9588), 1, + STATE(9404), 1, sym_splat_type, - STATE(10410), 1, + STATE(9514), 1, + sym__bare_type, + STATE(10472), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -603640,46 +610066,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320415] = 19, + [322728] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7202), 1, + STATE(7243), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10826), 1, + STATE(10776), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -603692,46 +610118,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320486] = 19, + [322799] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(9393), 1, + anon_sym_typeof, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7203), 1, + ACTIONS(9468), 1, + anon_sym_DASH_GT, + ACTIONS(9470), 1, + anon_sym_STAR, + STATE(7244), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8299), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(9358), 1, - sym_proc_type, - STATE(10874), 1, + STATE(9404), 1, + sym_splat_type, + STATE(9525), 1, sym__bare_type, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -603744,46 +610170,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320557] = 19, + [322870] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, - anon_sym_COLON_COLON, - ACTIONS(1397), 1, - sym__constant_segment, - ACTIONS(5097), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5102), 1, - anon_sym_typeof, - ACTIONS(5106), 1, - sym__start_of_tuple_type, - ACTIONS(5108), 1, - sym__start_of_named_tuple_type, - ACTIONS(9429), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2786), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7245), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2865), 1, + STATE(8180), 1, sym_constant, - STATE(3284), 1, + STATE(9274), 1, sym__splattable_type, - STATE(3360), 1, + STATE(9288), 1, sym_splat_type, - STATE(3590), 1, + STATE(9493), 1, sym_proc_type, - STATE(4131), 1, + STATE(10801), 1, sym__bare_type, - STATE(7204), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -603796,46 +610222,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320628] = 19, + [322941] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, + ACTIONS(1579), 1, anon_sym_COLON_COLON, - ACTIONS(1397), 1, + ACTIONS(2608), 1, sym__constant_segment, - ACTIONS(5097), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5102), 1, + ACTIONS(5252), 1, anon_sym_typeof, - ACTIONS(5106), 1, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(5108), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(9429), 1, + ACTIONS(9444), 1, anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(9446), 1, anon_sym_STAR, - STATE(2786), 1, - sym__type, - STATE(2865), 1, + STATE(3191), 1, sym_constant, - STATE(3284), 1, + STATE(3192), 1, + sym__type, + STATE(3623), 1, sym__splattable_type, - STATE(3360), 1, + STATE(3850), 1, sym_splat_type, - STATE(3590), 1, + STATE(4528), 1, sym_proc_type, - STATE(4111), 1, + STATE(4608), 1, sym__bare_type, - STATE(7205), 1, + STATE(7246), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -603848,46 +610274,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320699] = 19, + [323012] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, + ACTIONS(317), 1, anon_sym_COLON_COLON, - ACTIONS(1397), 1, + ACTIONS(2776), 1, sym__constant_segment, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5102), 1, + ACTIONS(5079), 1, anon_sym_typeof, - ACTIONS(5106), 1, + ACTIONS(5083), 1, sym__start_of_tuple_type, - ACTIONS(5108), 1, + ACTIONS(5085), 1, sym__start_of_named_tuple_type, - ACTIONS(9429), 1, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(9528), 1, anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(9530), 1, anon_sym_STAR, - STATE(2786), 1, - sym__type, - STATE(2865), 1, + STATE(2522), 1, sym_constant, - STATE(3284), 1, + STATE(2524), 1, + sym__type, + STATE(2835), 1, sym__splattable_type, - STATE(3360), 1, + STATE(2976), 1, sym_splat_type, - STATE(3590), 1, + STATE(3190), 1, sym_proc_type, - STATE(3998), 1, + STATE(3257), 1, sym__bare_type, - STATE(7206), 1, + STATE(7247), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(5081), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(2692), 12, sym_typeof, sym_class_type, sym_union_type, @@ -603900,46 +610326,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320770] = 19, + [323083] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, + ACTIONS(1579), 1, anon_sym_COLON_COLON, - ACTIONS(3038), 1, + ACTIONS(2608), 1, sym__constant_segment, - ACTIONS(5292), 1, + ACTIONS(5247), 1, + anon_sym_LPAREN, + ACTIONS(5252), 1, anon_sym_typeof, - ACTIONS(5296), 1, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(5298), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(5300), 1, - anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(9444), 1, anon_sym_DASH_GT, - ACTIONS(9423), 1, + ACTIONS(9446), 1, anon_sym_STAR, - STATE(4834), 1, + STATE(3191), 1, sym_constant, - STATE(4835), 1, + STATE(3192), 1, sym__type, - STATE(5397), 1, - sym_splat_type, - STATE(5425), 1, + STATE(3623), 1, sym__splattable_type, - STATE(5643), 1, + STATE(3850), 1, + sym_splat_type, + STATE(4528), 1, sym_proc_type, - STATE(5872), 1, + STATE(4701), 1, sym__bare_type, - STATE(7207), 1, + STATE(7248), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -603952,46 +610378,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320841] = 19, + [323154] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1579), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2608), 1, + sym__constant_segment, + ACTIONS(5247), 1, + anon_sym_LPAREN, + ACTIONS(5252), 1, + anon_sym_typeof, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7208), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9444), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_STAR, + STATE(3191), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(3192), 1, + sym__type, + STATE(3623), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3850), 1, + sym_splat_type, + STATE(4528), 1, sym_proc_type, - STATE(11319), 1, + STATE(4753), 1, sym__bare_type, + STATE(7249), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604004,46 +610430,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320912] = 19, + [323225] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(9393), 1, + anon_sym_typeof, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7209), 1, + ACTIONS(9468), 1, + anon_sym_DASH_GT, + ACTIONS(9470), 1, + anon_sym_STAR, + STATE(7250), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8299), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9608), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(10417), 1, + STATE(9404), 1, + sym_splat_type, + STATE(9578), 1, sym__bare_type, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604056,46 +610482,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [320983] = 19, + [323296] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7210), 1, + STATE(7251), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10705), 1, + STATE(10606), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604108,46 +610534,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321054] = 19, + [323367] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, - anon_sym_DASH_GT, - ACTIONS(9415), 1, - anon_sym_STAR, - STATE(7211), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7252), 1, sym_heredoc_body, - STATE(8159), 1, + STATE(8161), 1, sym__type, - STATE(8192), 1, + STATE(8180), 1, sym_constant, - STATE(9244), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9345), 1, - sym__bare_type, - STATE(9588), 1, + STATE(9288), 1, sym_splat_type, - STATE(10410), 1, + STATE(9493), 1, sym_proc_type, + STATE(10982), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604160,46 +610586,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321125] = 19, + [323438] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7212), 1, + STATE(7253), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10890), 1, + STATE(10985), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604212,46 +610638,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321196] = 19, + [323509] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(1579), 1, + anon_sym_COLON_COLON, + ACTIONS(2608), 1, + sym__constant_segment, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(5252), 1, anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, - anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(9444), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9446), 1, anon_sym_STAR, - STATE(7213), 1, - sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(3191), 1, sym_constant, - STATE(9244), 1, + STATE(3192), 1, + sym__type, + STATE(3623), 1, sym__splattable_type, - STATE(9347), 1, - sym__bare_type, - STATE(9588), 1, + STATE(3850), 1, sym_splat_type, - STATE(10410), 1, + STATE(4528), 1, sym_proc_type, + STATE(4756), 1, + sym__bare_type, + STATE(7254), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604264,46 +610690,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321267] = 19, + [323580] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1579), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2608), 1, + sym__constant_segment, + ACTIONS(5247), 1, + anon_sym_LPAREN, + ACTIONS(5252), 1, + anon_sym_typeof, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7214), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9444), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_STAR, + STATE(3191), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(3192), 1, + sym__type, + STATE(3623), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3850), 1, + sym_splat_type, + STATE(4528), 1, sym_proc_type, - STATE(11254), 1, + STATE(4774), 1, sym__bare_type, + STATE(7255), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604316,46 +610742,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321338] = 19, + [323651] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, - anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(2067), 1, + sym__constant_segment, + ACTIONS(4997), 1, + anon_sym_typeof, + ACTIONS(5001), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(5003), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(5013), 1, + anon_sym_LPAREN, + ACTIONS(9476), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9478), 1, anon_sym_STAR, - STATE(7215), 1, - sym_heredoc_body, - STATE(8159), 1, + STATE(2333), 1, sym__type, - STATE(8192), 1, + STATE(2351), 1, sym_constant, - STATE(9244), 1, + STATE(2391), 1, sym__splattable_type, - STATE(9534), 1, - sym__bare_type, - STATE(9588), 1, + STATE(2440), 1, sym_splat_type, - STATE(10410), 1, + STATE(2536), 1, sym_proc_type, + STATE(2640), 1, + sym__bare_type, + STATE(7256), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(4999), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(2379), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604368,46 +610794,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321409] = 19, + [323722] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, - anon_sym_DASH_GT, - ACTIONS(9415), 1, - anon_sym_STAR, - STATE(7216), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7257), 1, sym_heredoc_body, - STATE(8159), 1, + STATE(8161), 1, sym__type, - STATE(8192), 1, + STATE(8180), 1, sym_constant, - STATE(9244), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9364), 1, - sym__bare_type, - STATE(9588), 1, + STATE(9288), 1, sym_splat_type, - STATE(10410), 1, + STATE(9493), 1, sym_proc_type, + STATE(10685), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604420,46 +610846,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321480] = 19, + [323793] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7672), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(7677), 1, - anon_sym_typeof, - ACTIONS(7679), 1, - sym__constant_segment, - ACTIONS(7681), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(7685), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(7687), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9395), 1, - anon_sym_DASH_GT, - ACTIONS(9397), 1, - anon_sym_STAR, - STATE(7217), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7258), 1, sym_heredoc_body, - STATE(7767), 1, + STATE(8161), 1, sym__type, - STATE(7775), 1, + STATE(8180), 1, sym_constant, - STATE(8059), 1, + STATE(9274), 1, sym__splattable_type, - STATE(8065), 1, - sym__bare_type, - STATE(8075), 1, + STATE(9288), 1, sym_splat_type, - STATE(8103), 1, + STATE(9493), 1, sym_proc_type, + STATE(11025), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7683), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(7815), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604472,46 +610898,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321551] = 19, + [323864] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7218), 1, + STATE(7259), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9243), 1, - sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11180), 1, + STATE(9697), 1, + sym__splattable_type, + STATE(10502), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604524,46 +610950,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321622] = 19, + [323935] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7219), 1, + STATE(7260), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10683), 1, + STATE(11092), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604576,46 +611002,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321693] = 19, + [324006] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(9393), 1, + anon_sym_typeof, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7220), 1, + ACTIONS(9468), 1, + anon_sym_DASH_GT, + ACTIONS(9470), 1, + anon_sym_STAR, + STATE(7261), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8299), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(9358), 1, - sym_proc_type, - STATE(10687), 1, + STATE(9404), 1, + sym_splat_type, + STATE(9593), 1, sym__bare_type, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604628,46 +611054,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321764] = 19, + [324077] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(85), 1, - anon_sym_COLON_COLON, - ACTIONS(4993), 1, - anon_sym_typeof, - ACTIONS(4997), 1, - sym__start_of_tuple_type, - ACTIONS(4999), 1, - sym__start_of_named_tuple_type, - ACTIONS(5023), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9427), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2391), 1, - sym_constant, - STATE(2394), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7262), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2531), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(2636), 1, + STATE(9288), 1, sym_splat_type, - STATE(2826), 1, + STATE(9493), 1, sym_proc_type, - STATE(3063), 1, + STATE(11145), 1, sym__bare_type, - STATE(7221), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604680,46 +611106,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321835] = 19, + [324148] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5205), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(5210), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5212), 1, + ACTIONS(9395), 1, sym__constant_segment, - ACTIONS(5214), 1, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(5218), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5220), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9391), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9393), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(3273), 1, + STATE(7263), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(3274), 1, + STATE(8353), 1, sym__type, - STATE(3988), 1, + STATE(9390), 1, sym__splattable_type, - STATE(4189), 1, + STATE(9404), 1, sym_splat_type, - STATE(4582), 1, - sym_proc_type, - STATE(5070), 1, + STATE(9597), 1, sym__bare_type, - STATE(7222), 1, - sym_heredoc_body, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5216), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(3524), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604732,46 +611158,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321906] = 19, + [324219] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7223), 1, + STATE(7264), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9274), 1, + sym__splattable_type, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9508), 1, - sym__splattable_type, - STATE(10486), 1, + STATE(11178), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604784,46 +611210,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [321977] = 19, + [324290] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2067), 1, + sym__constant_segment, + ACTIONS(4997), 1, + anon_sym_typeof, + ACTIONS(5001), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5003), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7224), 1, - sym_heredoc_body, - STATE(8109), 1, + ACTIONS(5013), 1, + anon_sym_LPAREN, + ACTIONS(9476), 1, + anon_sym_DASH_GT, + ACTIONS(9478), 1, + anon_sym_STAR, + STATE(2333), 1, sym__type, - STATE(8134), 1, + STATE(2351), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2391), 1, sym__splattable_type, - STATE(9358), 1, + STATE(2440), 1, + sym_splat_type, + STATE(2536), 1, sym_proc_type, - STATE(10767), 1, + STATE(2682), 1, sym__bare_type, + STATE(7265), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(4999), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2379), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604836,46 +611262,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322048] = 19, + [324361] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3141), 1, + sym__constant_segment, + ACTIONS(5402), 1, + anon_sym_LPAREN, + ACTIONS(5407), 1, + anon_sym_typeof, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7225), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9472), 1, + anon_sym_DASH_GT, + ACTIONS(9474), 1, + anon_sym_STAR, + STATE(5101), 1, sym_constant, - STATE(9205), 1, + STATE(5115), 1, + sym__type, + STATE(5775), 1, + sym__splattable_type, + STATE(6165), 1, sym_splat_type, - STATE(9358), 1, + STATE(6476), 1, sym_proc_type, - STATE(9610), 1, - sym__splattable_type, - STATE(10430), 1, + STATE(6885), 1, sym__bare_type, + STATE(7266), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604888,46 +611314,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322119] = 19, + [324432] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1579), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2608), 1, + sym__constant_segment, + ACTIONS(5247), 1, + anon_sym_LPAREN, + ACTIONS(5252), 1, + anon_sym_typeof, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7226), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9444), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_STAR, + STATE(3191), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(3192), 1, + sym__type, + STATE(3623), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3850), 1, + sym_splat_type, + STATE(4528), 1, sym_proc_type, - STATE(11081), 1, + STATE(4775), 1, sym__bare_type, + STATE(7267), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604940,46 +611366,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322190] = 19, + [324503] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(1579), 1, + anon_sym_COLON_COLON, + ACTIONS(2608), 1, + sym__constant_segment, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(5252), 1, anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, - anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(9444), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9446), 1, anon_sym_STAR, - STATE(7227), 1, - sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(3191), 1, sym_constant, - STATE(9244), 1, + STATE(3192), 1, + sym__type, + STATE(3623), 1, sym__splattable_type, - STATE(9381), 1, - sym__bare_type, - STATE(9588), 1, + STATE(3850), 1, sym_splat_type, - STATE(10410), 1, + STATE(4528), 1, sym_proc_type, + STATE(4790), 1, + sym__bare_type, + STATE(7268), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -604992,46 +611418,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322261] = 19, + [324574] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(179), 1, - anon_sym_COLON_COLON, - ACTIONS(2042), 1, - sym__constant_segment, - ACTIONS(4953), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(4958), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(4962), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(4964), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9453), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9455), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(2341), 1, - sym__type, - STATE(2346), 1, + STATE(7269), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(2410), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(2455), 1, + STATE(9404), 1, sym_splat_type, - STATE(2493), 1, - sym_proc_type, - STATE(2599), 1, + STATE(9648), 1, sym__bare_type, - STATE(7228), 1, - sym_heredoc_body, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4960), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(2367), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -605044,46 +611470,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322332] = 19, + [324645] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3141), 1, + sym__constant_segment, + ACTIONS(5402), 1, + anon_sym_LPAREN, + ACTIONS(5407), 1, + anon_sym_typeof, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7229), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9472), 1, + anon_sym_DASH_GT, + ACTIONS(9474), 1, + anon_sym_STAR, + STATE(5101), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(5115), 1, + sym__type, + STATE(5775), 1, sym__splattable_type, - STATE(9358), 1, + STATE(6165), 1, + sym_splat_type, + STATE(6476), 1, sym_proc_type, - STATE(11182), 1, + STATE(6780), 1, sym__bare_type, + STATE(7270), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -605096,46 +611522,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322403] = 19, + [324716] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(2710), 1, + anon_sym_COLON_COLON, + ACTIONS(3141), 1, + sym__constant_segment, + ACTIONS(5402), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(5407), 1, anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, - anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(9472), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9474), 1, anon_sym_STAR, - STATE(7230), 1, - sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(5101), 1, sym_constant, - STATE(9244), 1, + STATE(5115), 1, + sym__type, + STATE(5763), 1, sym__splattable_type, - STATE(9386), 1, - sym__bare_type, - STATE(9588), 1, + STATE(6165), 1, sym_splat_type, - STATE(10410), 1, + STATE(6476), 1, sym_proc_type, + STATE(6885), 1, + sym__bare_type, + STATE(7271), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -605148,46 +611574,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322474] = 19, + [324787] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7231), 1, + STATE(7272), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(11213), 1, + STATE(11498), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -605200,46 +611626,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322545] = 19, + [324858] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9343), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9348), 1, - anon_sym_typeof, - ACTIONS(9350), 1, - sym__constant_segment, - ACTIONS(9352), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9356), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9358), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9437), 1, - anon_sym_DASH_GT, - ACTIONS(9439), 1, - anon_sym_STAR, - STATE(7232), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7273), 1, sym_heredoc_body, - STATE(8143), 1, - sym_constant, - STATE(8145), 1, + STATE(8161), 1, sym__type, - STATE(9295), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(9326), 1, + STATE(9288), 1, sym_splat_type, - STATE(10121), 1, - sym__bare_type, - STATE(10366), 1, + STATE(9493), 1, sym_proc_type, + STATE(11499), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9354), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8458), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -605252,46 +611678,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322616] = 19, + [324929] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(1579), 1, + anon_sym_COLON_COLON, + ACTIONS(2608), 1, + sym__constant_segment, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(5252), 1, anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, - anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(9444), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9446), 1, anon_sym_STAR, - STATE(7233), 1, - sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(3191), 1, sym_constant, - STATE(9244), 1, + STATE(3192), 1, + sym__type, + STATE(3623), 1, sym__splattable_type, - STATE(9451), 1, - sym__bare_type, - STATE(9588), 1, + STATE(3850), 1, sym_splat_type, - STATE(10410), 1, + STATE(4528), 1, sym_proc_type, + STATE(4802), 1, + sym__bare_type, + STATE(7274), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -605304,46 +611730,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322687] = 19, + [325000] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2067), 1, + sym__constant_segment, + ACTIONS(4997), 1, + anon_sym_typeof, + ACTIONS(5001), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5003), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7234), 1, - sym_heredoc_body, - STATE(8109), 1, + ACTIONS(5013), 1, + anon_sym_LPAREN, + ACTIONS(9476), 1, + anon_sym_DASH_GT, + ACTIONS(9478), 1, + anon_sym_STAR, + STATE(2333), 1, sym__type, - STATE(8134), 1, + STATE(2351), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2391), 1, sym__splattable_type, - STATE(9358), 1, + STATE(2440), 1, + sym_splat_type, + STATE(2536), 1, sym_proc_type, - STATE(11593), 1, + STATE(2662), 1, sym__bare_type, + STATE(7275), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(4999), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2379), 12, sym_typeof, sym_class_type, sym_union_type, @@ -605356,46 +611782,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322758] = 19, + [325071] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7235), 1, + STATE(7276), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(11595), 1, + STATE(11528), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -605408,46 +611834,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322829] = 19, + [325142] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7236), 1, + STATE(7277), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9243), 1, - sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11630), 1, + STATE(9701), 1, + sym__splattable_type, + STATE(10464), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -605460,46 +611886,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322900] = 19, + [325213] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7237), 1, + STATE(7278), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9274), 1, + sym__splattable_type, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9612), 1, - sym__splattable_type, - STATE(10397), 1, + STATE(11632), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -605512,46 +611938,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [322971] = 19, + [325284] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(9393), 1, + anon_sym_typeof, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7238), 1, + ACTIONS(9468), 1, + anon_sym_DASH_GT, + ACTIONS(9470), 1, + anon_sym_STAR, + STATE(7279), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8299), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(9358), 1, - sym_proc_type, - STATE(11719), 1, + STATE(9404), 1, + sym_splat_type, + STATE(9661), 1, sym__bare_type, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -605564,46 +611990,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323042] = 19, + [325355] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, - anon_sym_DASH_GT, - ACTIONS(9415), 1, - anon_sym_STAR, - STATE(7239), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7280), 1, sym_heredoc_body, - STATE(8159), 1, + STATE(8161), 1, sym__type, - STATE(8192), 1, + STATE(8180), 1, sym_constant, - STATE(9244), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9458), 1, - sym__bare_type, - STATE(9588), 1, + STATE(9288), 1, sym_splat_type, - STATE(10410), 1, + STATE(9493), 1, sym_proc_type, + STATE(11802), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -605616,46 +612042,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323113] = 19, + [325426] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7240), 1, + STATE(7281), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(11806), 1, + STATE(11696), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -605668,46 +612094,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323184] = 19, + [325497] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(9395), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(7241), 1, + STATE(7282), 1, sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(8299), 1, sym_constant, - STATE(9244), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(9460), 1, - sym__bare_type, - STATE(9588), 1, + STATE(9404), 1, sym_splat_type, - STATE(10410), 1, + STATE(9666), 1, + sym__bare_type, + STATE(10472), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -605720,46 +612146,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323255] = 19, + [325568] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7242), 1, + STATE(7283), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(11841), 1, + STATE(11727), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -605772,46 +612198,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323326] = 19, + [325639] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2067), 1, + sym__constant_segment, + ACTIONS(4997), 1, + anon_sym_typeof, + ACTIONS(5001), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5003), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7243), 1, - sym_heredoc_body, - STATE(8109), 1, + ACTIONS(5013), 1, + anon_sym_LPAREN, + ACTIONS(9476), 1, + anon_sym_DASH_GT, + ACTIONS(9478), 1, + anon_sym_STAR, + STATE(2333), 1, sym__type, - STATE(8134), 1, + STATE(2351), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9213), 1, + STATE(2391), 1, sym__splattable_type, - STATE(9358), 1, + STATE(2440), 1, + sym_splat_type, + STATE(2536), 1, sym_proc_type, - STATE(10406), 1, + STATE(2667), 1, sym__bare_type, + STATE(7284), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(4999), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2379), 12, sym_typeof, sym_class_type, sym_union_type, @@ -605824,46 +612250,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323397] = 19, + [325710] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, - anon_sym_COLON_COLON, - ACTIONS(3108), 1, - sym__constant_segment, - ACTIONS(5365), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(5370), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5374), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5376), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9433), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9435), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(5097), 1, + STATE(7285), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(5107), 1, + STATE(8353), 1, sym__type, - STATE(5535), 1, + STATE(9390), 1, sym__splattable_type, - STATE(6082), 1, + STATE(9395), 1, + sym__bare_type, + STATE(9404), 1, sym_splat_type, - STATE(6483), 1, + STATE(10472), 1, sym_proc_type, - STATE(6802), 1, - sym__bare_type, - STATE(7244), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -605876,46 +612302,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323468] = 19, + [325781] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2272), 1, - anon_sym_COLON_COLON, - ACTIONS(3052), 1, - sym__constant_segment, - ACTIONS(5340), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5345), 1, - anon_sym_typeof, - ACTIONS(5349), 1, - sym__start_of_tuple_type, - ACTIONS(5351), 1, - sym__start_of_named_tuple_type, - ACTIONS(9491), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9493), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(4886), 1, - sym_constant, - STATE(4888), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7286), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5136), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(5508), 1, + STATE(9288), 1, sym_splat_type, - STATE(5860), 1, + STATE(9493), 1, sym_proc_type, - STATE(6111), 1, + STATE(11322), 1, sym__bare_type, - STATE(7245), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5347), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(5055), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -605928,46 +612354,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323539] = 19, + [325852] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(179), 1, - anon_sym_COLON_COLON, - ACTIONS(2042), 1, - sym__constant_segment, - ACTIONS(4953), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(4958), 1, - anon_sym_typeof, - ACTIONS(4962), 1, - sym__start_of_tuple_type, - ACTIONS(4964), 1, - sym__start_of_named_tuple_type, - ACTIONS(9453), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9455), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2341), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7287), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2346), 1, + STATE(8180), 1, sym_constant, - STATE(2410), 1, + STATE(9274), 1, sym__splattable_type, - STATE(2455), 1, + STATE(9288), 1, sym_splat_type, - STATE(2493), 1, + STATE(9493), 1, sym_proc_type, - STATE(2570), 1, + STATE(11329), 1, sym__bare_type, - STATE(7246), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4960), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2367), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -605980,46 +612406,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323610] = 19, + [325923] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, - anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(85), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(5056), 1, + anon_sym_typeof, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(5064), 1, + anon_sym_LPAREN, + ACTIONS(9460), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9462), 1, anon_sym_STAR, - STATE(7247), 1, - sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(2394), 1, sym_constant, - STATE(9244), 1, + STATE(2395), 1, + sym__type, + STATE(2541), 1, sym__splattable_type, - STATE(9470), 1, - sym__bare_type, - STATE(9588), 1, + STATE(2608), 1, sym_splat_type, - STATE(10410), 1, + STATE(2818), 1, sym_proc_type, + STATE(2970), 1, + sym__bare_type, + STATE(7288), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -606032,46 +612458,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323681] = 19, + [325994] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(7094), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(7099), 1, + anon_sym_typeof, + ACTIONS(7101), 1, + sym__constant_segment, + ACTIONS(7103), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(7107), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(7109), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7248), 1, + ACTIONS(9464), 1, + anon_sym_DASH_GT, + ACTIONS(9466), 1, + anon_sym_STAR, + STATE(7289), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(7692), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(7723), 1, + sym__type, + STATE(7827), 1, sym__splattable_type, - STATE(9358), 1, + STATE(7879), 1, + sym_splat_type, + STATE(7946), 1, sym_proc_type, - STATE(10552), 1, + STATE(8010), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(7105), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(7763), 12, sym_typeof, sym_class_type, sym_union_type, @@ -606084,46 +612510,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323752] = 19, + [326065] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7249), 1, + STATE(7290), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10553), 1, + STATE(11616), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -606136,46 +612562,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323823] = 19, + [326136] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7250), 1, + STATE(7291), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9243), 1, - sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(10569), 1, + STATE(9702), 1, + sym__splattable_type, + STATE(10508), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -606188,46 +612614,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323894] = 19, + [326207] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7251), 1, + STATE(7292), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10608), 1, + STATE(11546), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -606240,46 +612666,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [323965] = 19, + [326278] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(9395), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(7252), 1, + STATE(7293), 1, sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(8299), 1, sym_constant, - STATE(9244), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(9472), 1, + STATE(9402), 1, sym__bare_type, - STATE(9588), 1, + STATE(9404), 1, sym_splat_type, - STATE(10410), 1, + STATE(10472), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -606292,46 +612718,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324036] = 19, + [326349] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7253), 1, + STATE(7294), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10639), 1, + STATE(10594), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -606344,46 +612770,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324107] = 19, + [326420] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(9395), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(7254), 1, + STATE(7295), 1, sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(8299), 1, sym_constant, - STATE(9244), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(9473), 1, + STATE(9403), 1, sym__bare_type, - STATE(9588), 1, + STATE(9404), 1, sym_splat_type, - STATE(10410), 1, + STATE(10472), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -606396,46 +612822,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324178] = 19, + [326491] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7255), 1, + STATE(7296), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10654), 1, + STATE(10764), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -606448,46 +612874,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324249] = 19, + [326562] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2067), 1, + sym__constant_segment, + ACTIONS(4997), 1, + anon_sym_typeof, + ACTIONS(5001), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5003), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7256), 1, - sym_heredoc_body, - STATE(8109), 1, + ACTIONS(5013), 1, + anon_sym_LPAREN, + ACTIONS(9476), 1, + anon_sym_DASH_GT, + ACTIONS(9478), 1, + anon_sym_STAR, + STATE(2333), 1, sym__type, - STATE(8134), 1, + STATE(2351), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9213), 1, + STATE(2391), 1, sym__splattable_type, - STATE(9358), 1, + STATE(2440), 1, + sym_splat_type, + STATE(2536), 1, sym_proc_type, - STATE(9762), 1, + STATE(2694), 1, sym__bare_type, + STATE(7297), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(4999), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2379), 12, sym_typeof, sym_class_type, sym_union_type, @@ -606500,46 +612926,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324320] = 19, + [326633] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(313), 1, - anon_sym_COLON_COLON, - ACTIONS(2739), 1, - sym__constant_segment, - ACTIONS(5042), 1, + ACTIONS(7684), 1, + anon_sym_LPAREN, + ACTIONS(7689), 1, anon_sym_typeof, - ACTIONS(5046), 1, + ACTIONS(7691), 1, + sym__constant_segment, + ACTIONS(7693), 1, + anon_sym_COLON_COLON, + ACTIONS(7697), 1, sym__start_of_tuple_type, - ACTIONS(5048), 1, + ACTIONS(7699), 1, sym__start_of_named_tuple_type, - ACTIONS(5050), 1, - anon_sym_LPAREN, - ACTIONS(9495), 1, + ACTIONS(9516), 1, anon_sym_DASH_GT, - ACTIONS(9497), 1, + ACTIONS(9518), 1, anon_sym_STAR, - STATE(2488), 1, + STATE(7298), 1, + sym_heredoc_body, + STATE(7803), 1, sym_constant, - STATE(2489), 1, + STATE(7805), 1, sym__type, - STATE(2800), 1, + STATE(7983), 1, sym__splattable_type, - STATE(3139), 1, + STATE(8115), 1, sym_splat_type, - STATE(3246), 1, - sym_proc_type, - STATE(3570), 1, + STATE(8121), 1, sym__bare_type, - STATE(7257), 1, - sym_heredoc_body, + STATE(8157), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5044), 2, + ACTIONS(7695), 2, sym_self, sym_underscore_type, - STATE(2592), 12, + STATE(7865), 12, sym_typeof, sym_class_type, sym_union_type, @@ -606552,46 +612978,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324391] = 19, + [326704] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(9395), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(7258), 1, + STATE(7299), 1, sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(8299), 1, sym_constant, - STATE(9244), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(9498), 1, - sym__bare_type, - STATE(9588), 1, + STATE(9404), 1, sym_splat_type, - STATE(10410), 1, + STATE(9411), 1, + sym__bare_type, + STATE(10472), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -606604,46 +613030,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324462] = 19, + [326775] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8058), 1, - anon_sym_LPAREN, - ACTIONS(8063), 1, - anon_sym_typeof, - ACTIONS(8065), 1, - sym__constant_segment, - ACTIONS(8067), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(8071), 1, + ACTIONS(2067), 1, + sym__constant_segment, + ACTIONS(4997), 1, + anon_sym_typeof, + ACTIONS(5001), 1, sym__start_of_tuple_type, - ACTIONS(8073), 1, + ACTIONS(5003), 1, sym__start_of_named_tuple_type, - ACTIONS(9445), 1, + ACTIONS(5013), 1, + anon_sym_LPAREN, + ACTIONS(9476), 1, anon_sym_DASH_GT, - ACTIONS(9447), 1, + ACTIONS(9478), 1, anon_sym_STAR, - STATE(7259), 1, - sym_heredoc_body, - STATE(7836), 1, - sym_constant, - STATE(7839), 1, + STATE(2333), 1, sym__type, - STATE(8086), 1, + STATE(2351), 1, + sym_constant, + STATE(2391), 1, sym__splattable_type, - STATE(8118), 1, + STATE(2440), 1, sym_splat_type, - STATE(8442), 1, + STATE(2536), 1, sym_proc_type, - STATE(8877), 1, + STATE(2570), 1, sym__bare_type, + STATE(7300), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8069), 2, + ACTIONS(4999), 2, sym_self, sym_underscore_type, - STATE(7855), 12, + STATE(2379), 12, sym_typeof, sym_class_type, sym_union_type, @@ -606656,46 +613082,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324533] = 19, + [326846] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7260), 1, + STATE(7301), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10810), 1, + STATE(12011), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -606708,46 +613134,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324604] = 19, + [326917] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7261), 1, + STATE(7302), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10811), 1, + STATE(12015), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -606760,46 +613186,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324675] = 19, + [326988] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, - anon_sym_COLON_COLON, - ACTIONS(3108), 1, - sym__constant_segment, - ACTIONS(5365), 1, + ACTIONS(7684), 1, anon_sym_LPAREN, - ACTIONS(5370), 1, + ACTIONS(7689), 1, anon_sym_typeof, - ACTIONS(5374), 1, + ACTIONS(7691), 1, + sym__constant_segment, + ACTIONS(7693), 1, + anon_sym_COLON_COLON, + ACTIONS(7697), 1, sym__start_of_tuple_type, - ACTIONS(5376), 1, + ACTIONS(7699), 1, sym__start_of_named_tuple_type, - ACTIONS(9433), 1, + ACTIONS(9516), 1, anon_sym_DASH_GT, - ACTIONS(9435), 1, + ACTIONS(9518), 1, anon_sym_STAR, - STATE(5097), 1, + STATE(7303), 1, + sym_heredoc_body, + STATE(7803), 1, sym_constant, - STATE(5107), 1, + STATE(7805), 1, sym__type, - STATE(5507), 1, + STATE(7983), 1, sym__splattable_type, - STATE(6082), 1, + STATE(8115), 1, sym_splat_type, - STATE(6483), 1, - sym_proc_type, - STATE(6595), 1, + STATE(8122), 1, sym__bare_type, - STATE(7262), 1, - sym_heredoc_body, + STATE(8157), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(7695), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(7865), 12, sym_typeof, sym_class_type, sym_union_type, @@ -606812,46 +613238,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324746] = 19, + [327059] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(313), 1, - anon_sym_COLON_COLON, - ACTIONS(2739), 1, - sym__constant_segment, - ACTIONS(5042), 1, - anon_sym_typeof, - ACTIONS(5046), 1, - sym__start_of_tuple_type, - ACTIONS(5048), 1, - sym__start_of_named_tuple_type, - ACTIONS(5050), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9495), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9497), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2488), 1, - sym_constant, - STATE(2489), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7304), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2800), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(3139), 1, + STATE(9288), 1, sym_splat_type, - STATE(3246), 1, + STATE(9493), 1, sym_proc_type, - STATE(3362), 1, + STATE(10632), 1, sym__bare_type, - STATE(7263), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5044), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2592), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -606864,46 +613290,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324817] = 19, + [327130] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7264), 1, + STATE(7305), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9243), 1, - sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(10830), 1, + STATE(9704), 1, + sym__splattable_type, + STATE(10567), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -606916,46 +613342,98 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324888] = 19, + [327201] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7265), 1, + STATE(7306), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9274), 1, + sym__splattable_type, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9616), 1, + STATE(10816), 1, + sym__bare_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9333), 2, + sym_self, + sym_underscore_type, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [327272] = 19, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9388), 1, + anon_sym_LPAREN, + ACTIONS(9393), 1, + anon_sym_typeof, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, + sym__start_of_tuple_type, + ACTIONS(9403), 1, + sym__start_of_named_tuple_type, + ACTIONS(9468), 1, + anon_sym_DASH_GT, + ACTIONS(9470), 1, + anon_sym_STAR, + STATE(7307), 1, + sym_heredoc_body, + STATE(8299), 1, + sym_constant, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(10437), 1, + STATE(9404), 1, + sym_splat_type, + STATE(9414), 1, sym__bare_type, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -606968,46 +613446,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [324959] = 19, + [327343] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7266), 1, + STATE(7308), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10872), 1, + STATE(10894), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -607020,46 +613498,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325030] = 19, + [327414] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(9395), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(7267), 1, + STATE(7309), 1, sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(8299), 1, sym_constant, - STATE(9244), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(9504), 1, - sym__bare_type, - STATE(9588), 1, + STATE(9404), 1, sym_splat_type, - STATE(10410), 1, + STATE(9415), 1, + sym__bare_type, + STATE(10472), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -607072,46 +613550,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325101] = 19, + [327485] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7268), 1, + STATE(7310), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10900), 1, + STATE(10938), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -607124,46 +613602,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325172] = 19, + [327556] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, - anon_sym_DASH_GT, - ACTIONS(9415), 1, - anon_sym_STAR, - STATE(7269), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7311), 1, sym_heredoc_body, - STATE(8159), 1, + STATE(8161), 1, sym__type, - STATE(8192), 1, + STATE(8180), 1, sym_constant, - STATE(9244), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9505), 1, - sym__bare_type, - STATE(9588), 1, + STATE(9288), 1, sym_splat_type, - STATE(10410), 1, + STATE(9493), 1, sym_proc_type, + STATE(11263), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -607176,46 +613654,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325243] = 19, + [327627] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7270), 1, + STATE(7312), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10919), 1, + STATE(11266), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -607228,46 +613706,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325314] = 19, + [327698] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(313), 1, - anon_sym_COLON_COLON, - ACTIONS(2739), 1, - sym__constant_segment, - ACTIONS(5042), 1, - anon_sym_typeof, - ACTIONS(5046), 1, - sym__start_of_tuple_type, - ACTIONS(5048), 1, - sym__start_of_named_tuple_type, - ACTIONS(5050), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9495), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9497), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2488), 1, - sym_constant, - STATE(2489), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7313), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2800), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(3139), 1, + STATE(9288), 1, sym_splat_type, - STATE(3246), 1, + STATE(9493), 1, sym_proc_type, - STATE(3430), 1, + STATE(11280), 1, sym__bare_type, - STATE(7271), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5044), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2592), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -607280,46 +613758,98 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325385] = 19, + [327769] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(313), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, - sym__constant_segment, - ACTIONS(5042), 1, - anon_sym_typeof, - ACTIONS(5046), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(5048), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(5050), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7314), 1, + sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(9705), 1, + sym__splattable_type, + STATE(10471), 1, + sym__bare_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9333), 2, + sym_self, + sym_underscore_type, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [327840] = 19, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9495), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9497), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2488), 1, - sym_constant, - STATE(2489), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7315), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2800), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(3139), 1, + STATE(9288), 1, sym_splat_type, - STATE(3246), 1, + STATE(9493), 1, sym_proc_type, - STATE(3433), 1, + STATE(11349), 1, sym__bare_type, - STATE(7272), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5044), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2592), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -607332,46 +613862,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325456] = 19, + [327911] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(313), 1, - anon_sym_COLON_COLON, - ACTIONS(2739), 1, - sym__constant_segment, - ACTIONS(5042), 1, - anon_sym_typeof, - ACTIONS(5046), 1, - sym__start_of_tuple_type, - ACTIONS(5048), 1, - sym__start_of_named_tuple_type, - ACTIONS(5050), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9495), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9497), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2488), 1, - sym_constant, - STATE(2489), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7316), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2800), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(3139), 1, + STATE(9288), 1, sym_splat_type, - STATE(3246), 1, + STATE(9493), 1, sym_proc_type, - STATE(3478), 1, + STATE(11449), 1, sym__bare_type, - STATE(7273), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5044), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2592), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -607384,46 +613914,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325527] = 19, + [327982] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(313), 1, - anon_sym_COLON_COLON, - ACTIONS(2739), 1, - sym__constant_segment, - ACTIONS(5042), 1, - anon_sym_typeof, - ACTIONS(5046), 1, - sym__start_of_tuple_type, - ACTIONS(5048), 1, - sym__start_of_named_tuple_type, - ACTIONS(5050), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9495), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9497), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2488), 1, - sym_constant, - STATE(2489), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7317), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2800), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(3139), 1, + STATE(9288), 1, sym_splat_type, - STATE(3246), 1, + STATE(9493), 1, sym_proc_type, - STATE(3482), 1, + STATE(11514), 1, sym__bare_type, - STATE(7274), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5044), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2592), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -607436,46 +613966,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325598] = 19, + [328053] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, - anon_sym_DASH_GT, - ACTIONS(9415), 1, - anon_sym_STAR, - STATE(7275), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7318), 1, sym_heredoc_body, - STATE(8159), 1, + STATE(8161), 1, sym__type, - STATE(8192), 1, + STATE(8180), 1, sym_constant, - STATE(9244), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9522), 1, - sym__bare_type, - STATE(9588), 1, + STATE(9288), 1, sym_splat_type, - STATE(10410), 1, + STATE(9493), 1, sym_proc_type, + STATE(11703), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -607488,46 +614018,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325669] = 19, + [328124] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, - anon_sym_COLON_COLON, - ACTIONS(3038), 1, - sym__constant_segment, - ACTIONS(5292), 1, - anon_sym_typeof, - ACTIONS(5296), 1, - sym__start_of_tuple_type, - ACTIONS(5298), 1, - sym__start_of_named_tuple_type, - ACTIONS(5300), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9423), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(4834), 1, - sym_constant, - STATE(4835), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7319), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(5397), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(5425), 1, - sym__splattable_type, - STATE(5643), 1, + STATE(9493), 1, sym_proc_type, - STATE(6051), 1, + STATE(9706), 1, + sym__splattable_type, + STATE(10526), 1, sym__bare_type, - STATE(7276), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -607540,46 +614070,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325740] = 19, + [328195] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(313), 1, - anon_sym_COLON_COLON, - ACTIONS(2739), 1, - sym__constant_segment, - ACTIONS(5042), 1, - anon_sym_typeof, - ACTIONS(5046), 1, - sym__start_of_tuple_type, - ACTIONS(5048), 1, - sym__start_of_named_tuple_type, - ACTIONS(5050), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9495), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9497), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2488), 1, - sym_constant, - STATE(2489), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7320), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2800), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(3139), 1, + STATE(9288), 1, sym_splat_type, - STATE(3246), 1, + STATE(9493), 1, sym_proc_type, - STATE(3575), 1, + STATE(11759), 1, sym__bare_type, - STATE(7277), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5044), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2592), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -607592,46 +614122,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325811] = 19, + [328266] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7278), 1, + STATE(7321), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(11038), 1, + STATE(11823), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -607644,46 +614174,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325882] = 19, + [328337] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7279), 1, + STATE(7322), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(11039), 1, + STATE(11912), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -607696,46 +614226,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [325953] = 19, + [328408] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(313), 1, + ACTIONS(1675), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(2965), 1, sym__constant_segment, - ACTIONS(5042), 1, + ACTIONS(5194), 1, + anon_sym_LPAREN, + ACTIONS(5199), 1, anon_sym_typeof, - ACTIONS(5046), 1, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(5048), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(5050), 1, - anon_sym_LPAREN, - ACTIONS(9495), 1, + ACTIONS(9436), 1, anon_sym_DASH_GT, - ACTIONS(9497), 1, + ACTIONS(9438), 1, anon_sym_STAR, - STATE(2488), 1, + STATE(3180), 1, sym_constant, - STATE(2489), 1, + STATE(3182), 1, sym__type, - STATE(2800), 1, + STATE(3459), 1, sym__splattable_type, - STATE(3139), 1, + STATE(3845), 1, sym_splat_type, - STATE(3246), 1, + STATE(4301), 1, sym_proc_type, - STATE(3318), 1, + STATE(4598), 1, sym__bare_type, - STATE(7280), 1, + STATE(7323), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5044), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(2592), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -607748,46 +614278,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326024] = 19, + [328479] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(575), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2935), 1, + sym__constant_segment, + ACTIONS(5098), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_typeof, + ACTIONS(5107), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5109), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7281), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9532), 1, + anon_sym_DASH_GT, + ACTIONS(9534), 1, + anon_sym_STAR, + STATE(2604), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2626), 1, + sym__type, + STATE(2980), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3278), 1, + sym_splat_type, + STATE(3456), 1, sym_proc_type, - STATE(11065), 1, + STATE(5436), 1, sym__bare_type, + STATE(7324), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5105), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2790), 12, sym_typeof, sym_class_type, sym_union_type, @@ -607800,46 +614330,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326095] = 19, + [328550] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7282), 1, + STATE(7325), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9274), 1, + sym__splattable_type, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9617), 1, - sym__splattable_type, - STATE(10378), 1, + STATE(10579), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -607852,46 +614382,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326166] = 19, + [328621] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7283), 1, + STATE(7326), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9243), 1, - sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11110), 1, + STATE(9707), 1, + sym__splattable_type, + STATE(10549), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -607904,46 +614434,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326237] = 19, + [328692] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, - anon_sym_DASH_GT, - ACTIONS(9415), 1, - anon_sym_STAR, - STATE(7284), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7327), 1, sym_heredoc_body, - STATE(8159), 1, + STATE(8161), 1, sym__type, - STATE(8192), 1, + STATE(8180), 1, sym_constant, - STATE(9244), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9528), 1, - sym__bare_type, - STATE(9588), 1, + STATE(9288), 1, sym_splat_type, - STATE(10410), 1, + STATE(9493), 1, sym_proc_type, + STATE(10603), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -607956,46 +614486,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326308] = 19, + [328763] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7285), 1, + STATE(7328), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(11139), 1, + STATE(10618), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608008,46 +614538,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326379] = 19, + [328834] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, - anon_sym_DASH_GT, - ACTIONS(9415), 1, - anon_sym_STAR, - STATE(7286), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7329), 1, sym_heredoc_body, - STATE(8159), 1, + STATE(8161), 1, sym__type, - STATE(8192), 1, + STATE(8180), 1, sym_constant, - STATE(9244), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9532), 1, - sym__bare_type, - STATE(9588), 1, + STATE(9288), 1, sym_splat_type, - STATE(10410), 1, + STATE(9493), 1, sym_proc_type, + STATE(10627), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608060,46 +614590,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326450] = 19, + [328905] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7287), 1, + STATE(7330), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(11157), 1, + STATE(10670), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608112,46 +614642,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326521] = 19, + [328976] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(179), 1, - anon_sym_COLON_COLON, - ACTIONS(2042), 1, - sym__constant_segment, - ACTIONS(4953), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(4958), 1, - anon_sym_typeof, - ACTIONS(4962), 1, - sym__start_of_tuple_type, - ACTIONS(4964), 1, - sym__start_of_named_tuple_type, - ACTIONS(9453), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9455), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2341), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7331), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2346), 1, + STATE(8180), 1, sym_constant, - STATE(2410), 1, - sym__splattable_type, - STATE(2455), 1, + STATE(9288), 1, sym_splat_type, - STATE(2493), 1, + STATE(9493), 1, sym_proc_type, - STATE(2594), 1, + STATE(9709), 1, + sym__splattable_type, + STATE(10483), 1, sym__bare_type, - STATE(7288), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4960), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2367), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608164,46 +614694,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326592] = 19, + [329047] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, - anon_sym_DASH_GT, - ACTIONS(9415), 1, - anon_sym_STAR, - STATE(7289), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7332), 1, sym_heredoc_body, - STATE(8159), 1, + STATE(8161), 1, sym__type, - STATE(8192), 1, + STATE(8180), 1, sym_constant, - STATE(9244), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9551), 1, - sym__bare_type, - STATE(9588), 1, + STATE(9288), 1, sym_splat_type, - STATE(10410), 1, + STATE(9493), 1, sym_proc_type, + STATE(10701), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608216,46 +614746,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326663] = 19, + [329118] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7290), 1, + STATE(7333), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(11279), 1, + STATE(10724), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608268,46 +614798,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326734] = 19, + [329189] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7291), 1, + STATE(7334), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(11282), 1, + STATE(10733), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608320,46 +614850,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326805] = 19, + [329260] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(179), 1, - anon_sym_COLON_COLON, - ACTIONS(2042), 1, - sym__constant_segment, - ACTIONS(4953), 1, + ACTIONS(7684), 1, anon_sym_LPAREN, - ACTIONS(4958), 1, + ACTIONS(7689), 1, anon_sym_typeof, - ACTIONS(4962), 1, + ACTIONS(7691), 1, + sym__constant_segment, + ACTIONS(7693), 1, + anon_sym_COLON_COLON, + ACTIONS(7697), 1, sym__start_of_tuple_type, - ACTIONS(4964), 1, + ACTIONS(7699), 1, sym__start_of_named_tuple_type, - ACTIONS(9453), 1, + ACTIONS(9516), 1, anon_sym_DASH_GT, - ACTIONS(9455), 1, + ACTIONS(9518), 1, anon_sym_STAR, - STATE(2341), 1, - sym__type, - STATE(2346), 1, + STATE(7335), 1, + sym_heredoc_body, + STATE(7803), 1, sym_constant, - STATE(2410), 1, + STATE(7805), 1, + sym__type, + STATE(7983), 1, sym__splattable_type, - STATE(2455), 1, + STATE(8115), 1, sym_splat_type, - STATE(2493), 1, - sym_proc_type, - STATE(2694), 1, + STATE(8124), 1, sym__bare_type, - STATE(7292), 1, - sym_heredoc_body, + STATE(8157), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4960), 2, + ACTIONS(7695), 2, sym_self, sym_underscore_type, - STATE(2367), 12, + STATE(7865), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608372,46 +614902,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326876] = 19, + [329331] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(179), 1, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(2042), 1, + ACTIONS(3141), 1, sym__constant_segment, - ACTIONS(4953), 1, + ACTIONS(5402), 1, anon_sym_LPAREN, - ACTIONS(4958), 1, + ACTIONS(5407), 1, anon_sym_typeof, - ACTIONS(4962), 1, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(4964), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(9453), 1, + ACTIONS(9472), 1, anon_sym_DASH_GT, - ACTIONS(9455), 1, + ACTIONS(9474), 1, anon_sym_STAR, - STATE(2341), 1, - sym__type, - STATE(2346), 1, + STATE(5101), 1, sym_constant, - STATE(2410), 1, + STATE(5115), 1, + sym__type, + STATE(5775), 1, sym__splattable_type, - STATE(2455), 1, + STATE(6165), 1, sym_splat_type, - STATE(2493), 1, + STATE(6476), 1, sym_proc_type, - STATE(2696), 1, + STATE(6782), 1, sym__bare_type, - STATE(7293), 1, + STATE(7336), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4960), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(2367), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608424,46 +614954,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [326947] = 19, + [329402] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1675), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2965), 1, + sym__constant_segment, + ACTIONS(5194), 1, + anon_sym_LPAREN, + ACTIONS(5199), 1, + anon_sym_typeof, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7294), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9436), 1, + anon_sym_DASH_GT, + ACTIONS(9438), 1, + anon_sym_STAR, + STATE(3180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(3182), 1, + sym__type, + STATE(3459), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3845), 1, + sym_splat_type, + STATE(4301), 1, sym_proc_type, - STATE(11314), 1, + STATE(4601), 1, sym__bare_type, + STATE(7337), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608476,46 +615006,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327018] = 19, + [329473] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7295), 1, + STATE(7338), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9274), 1, + sym__splattable_type, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9621), 1, - sym__splattable_type, - STATE(10452), 1, + STATE(10758), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608528,46 +615058,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327089] = 19, + [329544] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7296), 1, + STATE(7339), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9243), 1, - sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11393), 1, + STATE(9710), 1, + sym__splattable_type, + STATE(10506), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608580,46 +615110,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327160] = 19, + [329615] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, - anon_sym_DASH_GT, - ACTIONS(9415), 1, - anon_sym_STAR, - STATE(7297), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7340), 1, sym_heredoc_body, - STATE(8159), 1, + STATE(8161), 1, sym__type, - STATE(8192), 1, + STATE(8180), 1, sym_constant, - STATE(9244), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9582), 1, - sym__bare_type, - STATE(9588), 1, + STATE(9288), 1, sym_splat_type, - STATE(10410), 1, + STATE(9493), 1, sym_proc_type, + STATE(10780), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608632,46 +615162,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327231] = 19, + [329686] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7298), 1, + STATE(7341), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(11425), 1, + STATE(10791), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608684,46 +615214,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327302] = 19, + [329757] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, - anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, - anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(4508), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(4510), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(9480), 1, + anon_sym_LPAREN, + ACTIONS(9482), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9484), 1, anon_sym_STAR, - STATE(7299), 1, - sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + ACTIONS(9486), 1, + anon_sym_typeof, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(409), 1, + sym__bare_type, + STATE(2064), 1, sym_constant, - STATE(9244), 1, + STATE(2066), 1, + sym__type, + STATE(2126), 1, sym__splattable_type, - STATE(9586), 1, - sym__bare_type, - STATE(9588), 1, + STATE(2132), 1, sym_splat_type, - STATE(10410), 1, + STATE(2142), 1, sym_proc_type, + STATE(7342), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9492), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(2081), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608736,46 +615266,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327373] = 19, + [329828] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(1417), 1, + sym__constant_segment, + ACTIONS(5137), 1, + anon_sym_typeof, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7300), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5180), 1, + anon_sym_LPAREN, + ACTIONS(9452), 1, + anon_sym_DASH_GT, + ACTIONS(9454), 1, + anon_sym_STAR, + STATE(2784), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2785), 1, + sym__type, + STATE(3200), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3423), 1, + sym_splat_type, + STATE(3844), 1, sym_proc_type, - STATE(11447), 1, + STATE(4029), 1, sym__bare_type, + STATE(7343), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608788,46 +615318,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327444] = 19, + [329899] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(179), 1, + ACTIONS(451), 1, anon_sym_COLON_COLON, - ACTIONS(2042), 1, + ACTIONS(2921), 1, sym__constant_segment, - ACTIONS(4953), 1, - anon_sym_LPAREN, - ACTIONS(4958), 1, + ACTIONS(5125), 1, anon_sym_typeof, - ACTIONS(4962), 1, + ACTIONS(5129), 1, sym__start_of_tuple_type, - ACTIONS(4964), 1, + ACTIONS(5131), 1, sym__start_of_named_tuple_type, - ACTIONS(9453), 1, + ACTIONS(5165), 1, + anon_sym_LPAREN, + ACTIONS(9536), 1, anon_sym_DASH_GT, - ACTIONS(9455), 1, + ACTIONS(9538), 1, anon_sym_STAR, - STATE(2341), 1, - sym__type, - STATE(2346), 1, + STATE(2829), 1, sym_constant, - STATE(2410), 1, + STATE(2875), 1, + sym__type, + STATE(3209), 1, sym__splattable_type, - STATE(2455), 1, + STATE(3413), 1, sym_splat_type, - STATE(2493), 1, + STATE(3615), 1, sym_proc_type, - STATE(2751), 1, + STATE(4001), 1, sym__bare_type, - STATE(7301), 1, + STATE(7344), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4960), 2, + ACTIONS(5127), 2, sym_self, sym_underscore_type, - STATE(2367), 12, + STATE(2993), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608840,46 +615370,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327515] = 19, + [329970] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(179), 1, + ACTIONS(1579), 1, anon_sym_COLON_COLON, - ACTIONS(2042), 1, + ACTIONS(2608), 1, sym__constant_segment, - ACTIONS(4953), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(4958), 1, + ACTIONS(5252), 1, anon_sym_typeof, - ACTIONS(4962), 1, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(4964), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(9453), 1, + ACTIONS(9444), 1, anon_sym_DASH_GT, - ACTIONS(9455), 1, + ACTIONS(9446), 1, anon_sym_STAR, - STATE(2341), 1, - sym__type, - STATE(2346), 1, + STATE(3191), 1, sym_constant, - STATE(2410), 1, + STATE(3192), 1, + sym__type, + STATE(3621), 1, sym__splattable_type, - STATE(2455), 1, + STATE(3850), 1, sym_splat_type, - STATE(2493), 1, + STATE(4528), 1, sym_proc_type, - STATE(2548), 1, + STATE(4843), 1, sym__bare_type, - STATE(7302), 1, + STATE(7345), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4960), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(2367), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608892,46 +615422,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327586] = 19, + [330041] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, - anon_sym_DASH_GT, - ACTIONS(9415), 1, - anon_sym_STAR, - STATE(7303), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7346), 1, sym_heredoc_body, - STATE(8159), 1, + STATE(8161), 1, sym__type, - STATE(8192), 1, + STATE(8180), 1, sym_constant, - STATE(9244), 1, - sym__splattable_type, - STATE(9588), 1, + STATE(9288), 1, sym_splat_type, - STATE(9597), 1, - sym__bare_type, - STATE(10410), 1, + STATE(9493), 1, sym_proc_type, + STATE(9712), 1, + sym__splattable_type, + STATE(10562), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608944,46 +615474,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327657] = 19, + [330112] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(5145), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(5150), 1, + anon_sym_typeof, + ACTIONS(5152), 1, + sym__constant_segment, + ACTIONS(5154), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(5158), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5160), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7304), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9540), 1, + anon_sym_DASH_GT, + ACTIONS(9542), 1, + anon_sym_STAR, + STATE(2804), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2805), 1, + sym__type, + STATE(3198), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3524), 1, + sym_splat_type, + STATE(3608), 1, sym_proc_type, - STATE(11569), 1, + STATE(4300), 1, sym__bare_type, + STATE(7347), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5156), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2943), 12, sym_typeof, sym_class_type, sym_union_type, @@ -608996,46 +615526,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327728] = 19, + [330183] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(451), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2921), 1, + sym__constant_segment, + ACTIONS(5125), 1, + anon_sym_typeof, + ACTIONS(5129), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5131), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7305), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5165), 1, + anon_sym_LPAREN, + ACTIONS(9536), 1, + anon_sym_DASH_GT, + ACTIONS(9538), 1, + anon_sym_STAR, + STATE(2829), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2875), 1, + sym__type, + STATE(3209), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3413), 1, + sym_splat_type, + STATE(3615), 1, sym_proc_type, - STATE(11589), 1, + STATE(4177), 1, sym__bare_type, + STATE(7348), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5127), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2993), 12, sym_typeof, sym_class_type, sym_union_type, @@ -609048,46 +615578,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327799] = 19, + [330254] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(451), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2921), 1, + sym__constant_segment, + ACTIONS(5125), 1, + anon_sym_typeof, + ACTIONS(5129), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5131), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7306), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5165), 1, + anon_sym_LPAREN, + ACTIONS(9536), 1, + anon_sym_DASH_GT, + ACTIONS(9538), 1, + anon_sym_STAR, + STATE(2829), 1, sym_constant, - STATE(9205), 1, + STATE(2875), 1, + sym__type, + STATE(3209), 1, + sym__splattable_type, + STATE(3413), 1, sym_splat_type, - STATE(9358), 1, + STATE(3615), 1, sym_proc_type, - STATE(9627), 1, - sym__splattable_type, - STATE(10479), 1, + STATE(4240), 1, sym__bare_type, + STATE(7349), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5127), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2993), 12, sym_typeof, sym_class_type, sym_union_type, @@ -609100,46 +615630,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327870] = 19, + [330325] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7307), 1, + STATE(7350), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9243), 1, - sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11650), 1, + STATE(9713), 1, + sym__splattable_type, + STATE(10536), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -609152,46 +615682,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [327941] = 19, + [330396] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, - anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(1417), 1, + sym__constant_segment, + ACTIONS(5137), 1, + anon_sym_typeof, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(5180), 1, + anon_sym_LPAREN, + ACTIONS(9452), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9454), 1, anon_sym_STAR, - STATE(7308), 1, - sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(2784), 1, sym_constant, - STATE(9244), 1, + STATE(2785), 1, + sym__type, + STATE(3200), 1, sym__splattable_type, - STATE(9588), 1, + STATE(3423), 1, sym_splat_type, - STATE(9602), 1, - sym__bare_type, - STATE(10410), 1, + STATE(3844), 1, sym_proc_type, + STATE(4064), 1, + sym__bare_type, + STATE(7351), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -609204,46 +615734,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328012] = 19, + [330467] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(451), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2921), 1, + sym__constant_segment, + ACTIONS(5125), 1, + anon_sym_typeof, + ACTIONS(5129), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5131), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7309), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5165), 1, + anon_sym_LPAREN, + ACTIONS(9536), 1, + anon_sym_DASH_GT, + ACTIONS(9538), 1, + anon_sym_STAR, + STATE(2829), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2875), 1, + sym__type, + STATE(3209), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3413), 1, + sym_splat_type, + STATE(3615), 1, sym_proc_type, - STATE(11686), 1, + STATE(4243), 1, sym__bare_type, + STATE(7352), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5127), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2993), 12, sym_typeof, sym_class_type, sym_union_type, @@ -609256,46 +615786,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328083] = 19, + [330538] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, - anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(451), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(2921), 1, + sym__constant_segment, + ACTIONS(5125), 1, + anon_sym_typeof, + ACTIONS(5129), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(5131), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(5165), 1, + anon_sym_LPAREN, + ACTIONS(9536), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9538), 1, anon_sym_STAR, - STATE(7310), 1, - sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(2829), 1, sym_constant, - STATE(9244), 1, + STATE(2875), 1, + sym__type, + STATE(3209), 1, sym__splattable_type, - STATE(9588), 1, + STATE(3413), 1, sym_splat_type, - STATE(9603), 1, - sym__bare_type, - STATE(10410), 1, + STATE(3615), 1, sym_proc_type, + STATE(4251), 1, + sym__bare_type, + STATE(7353), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(5127), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(2993), 12, sym_typeof, sym_class_type, sym_union_type, @@ -609308,46 +615838,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328154] = 19, + [330609] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7311), 1, + STATE(7354), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9243), 1, - sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11705), 1, + STATE(9714), 1, + sym__splattable_type, + STATE(10480), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -609360,46 +615890,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328225] = 19, + [330680] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, - anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(451), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(2921), 1, + sym__constant_segment, + ACTIONS(5125), 1, + anon_sym_typeof, + ACTIONS(5129), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(5131), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(5165), 1, + anon_sym_LPAREN, + ACTIONS(9536), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9538), 1, anon_sym_STAR, - STATE(7312), 1, - sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(2829), 1, sym_constant, - STATE(9244), 1, + STATE(2875), 1, + sym__type, + STATE(3209), 1, sym__splattable_type, - STATE(9588), 1, + STATE(3413), 1, sym_splat_type, - STATE(9664), 1, - sym__bare_type, - STATE(10410), 1, + STATE(3615), 1, sym_proc_type, + STATE(4252), 1, + sym__bare_type, + STATE(7355), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(5127), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(2993), 12, sym_typeof, sym_class_type, sym_union_type, @@ -609412,46 +615942,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328296] = 19, + [330751] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(451), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2921), 1, + sym__constant_segment, + ACTIONS(5125), 1, + anon_sym_typeof, + ACTIONS(5129), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5131), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7313), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5165), 1, + anon_sym_LPAREN, + ACTIONS(9536), 1, + anon_sym_DASH_GT, + ACTIONS(9538), 1, + anon_sym_STAR, + STATE(2829), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2875), 1, + sym__type, + STATE(3209), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3413), 1, + sym_splat_type, + STATE(3615), 1, sym_proc_type, - STATE(11960), 1, + STATE(4261), 1, sym__bare_type, + STATE(7356), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5127), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2993), 12, sym_typeof, sym_class_type, sym_union_type, @@ -609464,46 +615994,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328367] = 19, + [330822] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7314), 1, + STATE(7357), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9243), 1, - sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11961), 1, + STATE(9715), 1, + sym__splattable_type, + STATE(10510), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -609516,98 +616046,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328438] = 19, + [330893] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(85), 1, + ACTIONS(451), 1, anon_sym_COLON_COLON, - ACTIONS(4993), 1, + ACTIONS(2921), 1, + sym__constant_segment, + ACTIONS(5125), 1, anon_sym_typeof, - ACTIONS(4997), 1, + ACTIONS(5129), 1, sym__start_of_tuple_type, - ACTIONS(4999), 1, + ACTIONS(5131), 1, sym__start_of_named_tuple_type, - ACTIONS(5023), 1, + ACTIONS(5165), 1, anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(9536), 1, anon_sym_DASH_GT, - ACTIONS(9427), 1, + ACTIONS(9538), 1, anon_sym_STAR, - STATE(2391), 1, + STATE(2829), 1, sym_constant, - STATE(2394), 1, + STATE(2875), 1, sym__type, - STATE(2478), 1, + STATE(3209), 1, sym__splattable_type, - STATE(2636), 1, + STATE(3413), 1, sym_splat_type, - STATE(2826), 1, + STATE(3615), 1, sym_proc_type, - STATE(3059), 1, + STATE(4267), 1, sym__bare_type, - STATE(7315), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4995), 2, - sym_self, - sym_underscore_type, - STATE(2434), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [328509] = 19, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7316), 1, + STATE(7358), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, - sym__splattable_type, - STATE(9358), 1, - sym_proc_type, - STATE(11203), 1, - sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5127), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2993), 12, sym_typeof, sym_class_type, sym_union_type, @@ -609620,46 +616098,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328580] = 19, + [330964] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7317), 1, + STATE(7359), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9629), 1, + STATE(9724), 1, sym__splattable_type, - STATE(10432), 1, + STATE(10530), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -609672,46 +616150,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328651] = 19, + [331035] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7318), 1, + STATE(7360), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9243), 1, - sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(10809), 1, + STATE(9725), 1, + sym__splattable_type, + STATE(10547), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -609724,46 +616202,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328722] = 19, + [331106] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(7684), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(7689), 1, anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(7691), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(7693), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(7697), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(7699), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(9516), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9518), 1, anon_sym_STAR, - STATE(7319), 1, + STATE(7361), 1, sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(7803), 1, sym_constant, - STATE(9244), 1, + STATE(7805), 1, + sym__type, + STATE(7983), 1, sym__splattable_type, - STATE(9327), 1, + STATE(8111), 1, sym__bare_type, - STATE(9588), 1, + STATE(8115), 1, sym_splat_type, - STATE(10410), 1, + STATE(8157), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(7695), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(7865), 12, sym_typeof, sym_class_type, sym_union_type, @@ -609776,46 +616254,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328793] = 19, + [331177] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(7684), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(7689), 1, + anon_sym_typeof, + ACTIONS(7691), 1, + sym__constant_segment, + ACTIONS(7693), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(7697), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(7699), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7320), 1, + ACTIONS(9516), 1, + anon_sym_DASH_GT, + ACTIONS(9518), 1, + anon_sym_STAR, + STATE(7362), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(7803), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(7805), 1, + sym__type, + STATE(7983), 1, sym__splattable_type, - STATE(9358), 1, + STATE(8112), 1, + sym__bare_type, + STATE(8115), 1, + sym_splat_type, + STATE(8157), 1, sym_proc_type, - STATE(11438), 1, - sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(7695), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(7865), 12, sym_typeof, sym_class_type, sym_union_type, @@ -609828,46 +616306,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328864] = 19, + [331248] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, - anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(1417), 1, + sym__constant_segment, + ACTIONS(5137), 1, + anon_sym_typeof, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(5180), 1, + anon_sym_LPAREN, + ACTIONS(9452), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9454), 1, anon_sym_STAR, - STATE(7321), 1, - sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(2784), 1, sym_constant, - STATE(9244), 1, + STATE(2785), 1, + sym__type, + STATE(3200), 1, sym__splattable_type, - STATE(9329), 1, - sym__bare_type, - STATE(9588), 1, + STATE(3423), 1, sym_splat_type, - STATE(10410), 1, + STATE(3844), 1, sym_proc_type, + STATE(4086), 1, + sym__bare_type, + STATE(7363), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -609880,46 +616358,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [328935] = 19, + [331319] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(1417), 1, + sym__constant_segment, + ACTIONS(5137), 1, + anon_sym_typeof, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7322), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5180), 1, + anon_sym_LPAREN, + ACTIONS(9452), 1, + anon_sym_DASH_GT, + ACTIONS(9454), 1, + anon_sym_STAR, + STATE(2784), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2785), 1, + sym__type, + STATE(3200), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3423), 1, + sym_splat_type, + STATE(3844), 1, sym_proc_type, - STATE(11618), 1, + STATE(4089), 1, sym__bare_type, + STATE(7364), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -609932,46 +616410,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329006] = 19, + [331390] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(2537), 1, + ACTIONS(3141), 1, sym__constant_segment, - ACTIONS(5186), 1, + ACTIONS(5402), 1, anon_sym_LPAREN, - ACTIONS(5191), 1, + ACTIONS(5407), 1, anon_sym_typeof, - ACTIONS(5195), 1, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(5197), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(9472), 1, anon_sym_DASH_GT, - ACTIONS(9443), 1, + ACTIONS(9474), 1, anon_sym_STAR, - STATE(3256), 1, + STATE(5101), 1, sym_constant, - STATE(3258), 1, + STATE(5115), 1, sym__type, - STATE(3769), 1, + STATE(5763), 1, sym__splattable_type, - STATE(4118), 1, + STATE(6165), 1, sym_splat_type, - STATE(4342), 1, + STATE(6476), 1, sym_proc_type, - STATE(4783), 1, + STATE(6864), 1, sym__bare_type, - STATE(7323), 1, + STATE(7365), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -609984,46 +616462,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329077] = 19, + [331461] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1003), 1, + ACTIONS(2133), 1, anon_sym_COLON_COLON, - ACTIONS(3020), 1, + ACTIONS(3067), 1, sym__constant_segment, - ACTIONS(5305), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(5349), 1, anon_sym_typeof, - ACTIONS(5314), 1, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(5316), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - ACTIONS(9473), 1, + ACTIONS(9494), 1, anon_sym_DASH_GT, - ACTIONS(9475), 1, + ACTIONS(9496), 1, anon_sym_STAR, - STATE(4652), 1, + STATE(4791), 1, sym_constant, - STATE(4653), 1, + STATE(4793), 1, sym__type, - STATE(5040), 1, + STATE(5224), 1, sym__splattable_type, - STATE(5423), 1, + STATE(5234), 1, sym_splat_type, - STATE(5597), 1, - sym__bare_type, - STATE(5734), 1, + STATE(5619), 1, sym_proc_type, - STATE(7324), 1, + STATE(5861), 1, + sym__bare_type, + STATE(7366), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5312), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(5003), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -610036,46 +616514,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329148] = 19, + [331532] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, - anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(85), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(5056), 1, + anon_sym_typeof, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(5064), 1, + anon_sym_LPAREN, + ACTIONS(9460), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9462), 1, anon_sym_STAR, - STATE(7325), 1, - sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(2394), 1, sym_constant, - STATE(9244), 1, + STATE(2395), 1, + sym__type, + STATE(2541), 1, sym__splattable_type, - STATE(9341), 1, - sym__bare_type, - STATE(9588), 1, + STATE(2608), 1, sym_splat_type, - STATE(10410), 1, + STATE(2818), 1, sym_proc_type, + STATE(2979), 1, + sym__bare_type, + STATE(7367), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -610088,46 +616566,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329219] = 19, + [331603] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3141), 1, + sym__constant_segment, + ACTIONS(5402), 1, + anon_sym_LPAREN, + ACTIONS(5407), 1, + anon_sym_typeof, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7326), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9472), 1, + anon_sym_DASH_GT, + ACTIONS(9474), 1, + anon_sym_STAR, + STATE(5101), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(5115), 1, + sym__type, + STATE(5775), 1, sym__splattable_type, - STATE(9358), 1, + STATE(6165), 1, + sym_splat_type, + STATE(6476), 1, sym_proc_type, - STATE(11499), 1, + STATE(6864), 1, sym__bare_type, + STATE(7368), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -610140,46 +616618,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329290] = 19, + [331674] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(1417), 1, + sym__constant_segment, + ACTIONS(5137), 1, + anon_sym_typeof, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7327), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5180), 1, + anon_sym_LPAREN, + ACTIONS(9452), 1, + anon_sym_DASH_GT, + ACTIONS(9454), 1, + anon_sym_STAR, + STATE(2784), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2785), 1, + sym__type, + STATE(3200), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3423), 1, + sym_splat_type, + STATE(3844), 1, sym_proc_type, - STATE(11502), 1, + STATE(4115), 1, sym__bare_type, + STATE(7369), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -610192,46 +616670,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329361] = 19, + [331745] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, + ACTIONS(1675), 1, anon_sym_COLON_COLON, - ACTIONS(2537), 1, + ACTIONS(2965), 1, sym__constant_segment, - ACTIONS(5186), 1, + ACTIONS(5194), 1, anon_sym_LPAREN, - ACTIONS(5191), 1, + ACTIONS(5199), 1, anon_sym_typeof, - ACTIONS(5195), 1, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(5197), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(9436), 1, anon_sym_DASH_GT, - ACTIONS(9443), 1, + ACTIONS(9438), 1, anon_sym_STAR, - STATE(3256), 1, + STATE(3180), 1, sym_constant, - STATE(3258), 1, + STATE(3182), 1, sym__type, - STATE(3769), 1, + STATE(3459), 1, sym__splattable_type, - STATE(4118), 1, + STATE(3845), 1, sym_splat_type, - STATE(4342), 1, + STATE(4301), 1, sym_proc_type, - STATE(4848), 1, + STATE(4433), 1, sym__bare_type, - STATE(7328), 1, + STATE(7370), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -610244,46 +616722,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329432] = 19, + [331816] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, - anon_sym_COLON_COLON, - ACTIONS(2537), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5191), 1, + ACTIONS(85), 1, + anon_sym_COLON_COLON, + ACTIONS(5056), 1, anon_sym_typeof, - ACTIONS(5195), 1, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(5197), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(5064), 1, + anon_sym_LPAREN, + ACTIONS(9460), 1, anon_sym_DASH_GT, - ACTIONS(9443), 1, + ACTIONS(9462), 1, anon_sym_STAR, - STATE(3256), 1, + STATE(2394), 1, sym_constant, - STATE(3258), 1, + STATE(2395), 1, sym__type, - STATE(3769), 1, + STATE(2538), 1, sym__splattable_type, - STATE(4118), 1, + STATE(2608), 1, sym_splat_type, - STATE(4342), 1, + STATE(2818), 1, sym_proc_type, - STATE(4875), 1, + STATE(3099), 1, sym__bare_type, - STATE(7329), 1, + STATE(7371), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -610296,46 +616774,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329503] = 19, + [331887] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7330), 1, + STATE(7372), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(11653), 1, + STATE(11422), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -610348,46 +616826,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329574] = 19, + [331958] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(1417), 1, + sym__constant_segment, + ACTIONS(5137), 1, + anon_sym_typeof, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7331), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5180), 1, + anon_sym_LPAREN, + ACTIONS(9452), 1, + anon_sym_DASH_GT, + ACTIONS(9454), 1, + anon_sym_STAR, + STATE(2784), 1, sym_constant, - STATE(9205), 1, + STATE(2785), 1, + sym__type, + STATE(3188), 1, + sym__splattable_type, + STATE(3423), 1, sym_splat_type, - STATE(9358), 1, + STATE(3844), 1, sym_proc_type, - STATE(9631), 1, - sym__splattable_type, - STATE(10428), 1, + STATE(4029), 1, sym__bare_type, + STATE(7373), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -610400,46 +616878,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329645] = 19, + [332029] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7332), 1, + STATE(7374), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9243), 1, + STATE(9365), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(10575), 1, + STATE(10532), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -610452,46 +616930,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329716] = 19, + [332100] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, - anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(1417), 1, + sym__constant_segment, + ACTIONS(5137), 1, + anon_sym_typeof, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(5180), 1, + anon_sym_LPAREN, + ACTIONS(9452), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9454), 1, anon_sym_STAR, - STATE(7333), 1, - sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(2784), 1, sym_constant, - STATE(9244), 1, + STATE(2785), 1, + sym__type, + STATE(3200), 1, sym__splattable_type, - STATE(9343), 1, - sym__bare_type, - STATE(9588), 1, + STATE(3423), 1, sym_splat_type, - STATE(10410), 1, + STATE(3844), 1, sym_proc_type, + STATE(4116), 1, + sym__bare_type, + STATE(7375), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -610504,46 +616982,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329787] = 19, + [332171] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7334), 1, + STATE(7376), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10677), 1, + STATE(11453), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -610556,46 +617034,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329858] = 19, + [332242] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, - anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(85), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(5056), 1, + anon_sym_typeof, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(5064), 1, + anon_sym_LPAREN, + ACTIONS(9460), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9462), 1, anon_sym_STAR, - STATE(7335), 1, - sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(2394), 1, sym_constant, - STATE(9244), 1, + STATE(2395), 1, + sym__type, + STATE(2541), 1, sym__splattable_type, - STATE(9344), 1, - sym__bare_type, - STATE(9588), 1, + STATE(2608), 1, sym_splat_type, - STATE(10410), 1, + STATE(2818), 1, sym_proc_type, + STATE(3053), 1, + sym__bare_type, + STATE(7377), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -610608,46 +617086,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [329929] = 19, + [332313] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(1417), 1, + sym__constant_segment, + ACTIONS(5137), 1, + anon_sym_typeof, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7336), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5180), 1, + anon_sym_LPAREN, + ACTIONS(9452), 1, + anon_sym_DASH_GT, + ACTIONS(9454), 1, + anon_sym_STAR, + STATE(2784), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2785), 1, + sym__type, + STATE(3200), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3423), 1, + sym_splat_type, + STATE(3844), 1, sym_proc_type, - STATE(10723), 1, + STATE(4131), 1, sym__bare_type, + STATE(7378), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -610660,46 +617138,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330000] = 19, + [332384] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7337), 1, + STATE(7379), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10963), 1, + STATE(11480), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -610712,46 +617190,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330071] = 19, + [332455] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7338), 1, + STATE(7380), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(11082), 1, + STATE(11485), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -610764,46 +617242,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330142] = 19, + [332526] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(1417), 1, + sym__constant_segment, + ACTIONS(5137), 1, + anon_sym_typeof, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7339), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5180), 1, + anon_sym_LPAREN, + ACTIONS(9452), 1, + anon_sym_DASH_GT, + ACTIONS(9454), 1, + anon_sym_STAR, + STATE(2784), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2785), 1, + sym__type, + STATE(3200), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3423), 1, + sym_splat_type, + STATE(3844), 1, sym_proc_type, - STATE(11095), 1, + STATE(4140), 1, sym__bare_type, + STATE(7381), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -610816,46 +617294,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330213] = 19, + [332597] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3141), 1, + sym__constant_segment, + ACTIONS(5402), 1, + anon_sym_LPAREN, + ACTIONS(5407), 1, + anon_sym_typeof, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7340), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9472), 1, + anon_sym_DASH_GT, + ACTIONS(9474), 1, + anon_sym_STAR, + STATE(5101), 1, sym_constant, - STATE(9205), 1, + STATE(5115), 1, + sym__type, + STATE(5763), 1, + sym__splattable_type, + STATE(6165), 1, sym_splat_type, - STATE(9358), 1, + STATE(6476), 1, sym_proc_type, - STATE(9632), 1, - sym__splattable_type, - STATE(10496), 1, + STATE(6734), 1, sym__bare_type, + STATE(7382), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -610868,46 +617346,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330284] = 19, + [332668] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3141), 1, + sym__constant_segment, + ACTIONS(5402), 1, + anon_sym_LPAREN, + ACTIONS(5407), 1, + anon_sym_typeof, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7341), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9472), 1, + anon_sym_DASH_GT, + ACTIONS(9474), 1, + anon_sym_STAR, + STATE(5101), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(5115), 1, + sym__type, + STATE(5775), 1, sym__splattable_type, - STATE(9358), 1, + STATE(6165), 1, + sym_splat_type, + STATE(6476), 1, sym_proc_type, - STATE(11162), 1, + STATE(6919), 1, sym__bare_type, + STATE(7383), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -610920,46 +617398,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330355] = 19, + [332739] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1675), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2965), 1, + sym__constant_segment, + ACTIONS(5194), 1, + anon_sym_LPAREN, + ACTIONS(5199), 1, + anon_sym_typeof, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7342), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9436), 1, + anon_sym_DASH_GT, + ACTIONS(9438), 1, + anon_sym_STAR, + STATE(3180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(3182), 1, + sym__type, + STATE(3459), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3845), 1, + sym_splat_type, + STATE(4301), 1, sym_proc_type, - STATE(11262), 1, + STATE(5859), 1, sym__bare_type, + STATE(7384), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -610972,46 +617450,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330426] = 19, + [332810] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3141), 1, + sym__constant_segment, + ACTIONS(5402), 1, + anon_sym_LPAREN, + ACTIONS(5407), 1, + anon_sym_typeof, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7343), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9472), 1, + anon_sym_DASH_GT, + ACTIONS(9474), 1, + anon_sym_STAR, + STATE(5101), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(5115), 1, + sym__type, + STATE(5763), 1, sym__splattable_type, - STATE(9358), 1, + STATE(6165), 1, + sym_splat_type, + STATE(6476), 1, sym_proc_type, - STATE(11299), 1, + STATE(6741), 1, sym__bare_type, + STATE(7385), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -611024,46 +617502,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330497] = 19, + [332881] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(831), 1, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(2996), 1, + ACTIONS(3141), 1, sym__constant_segment, - ACTIONS(5269), 1, + ACTIONS(5402), 1, + anon_sym_LPAREN, + ACTIONS(5407), 1, anon_sym_typeof, - ACTIONS(5273), 1, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(5275), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(9461), 1, + ACTIONS(9472), 1, anon_sym_DASH_GT, - ACTIONS(9463), 1, + ACTIONS(9474), 1, anon_sym_STAR, - STATE(4347), 1, + STATE(5101), 1, sym_constant, - STATE(4348), 1, + STATE(5115), 1, sym__type, - STATE(4933), 1, + STATE(5763), 1, sym__splattable_type, - STATE(5079), 1, + STATE(6165), 1, sym_splat_type, - STATE(5129), 1, + STATE(6476), 1, sym_proc_type, - STATE(5512), 1, + STATE(6780), 1, sym__bare_type, - STATE(7344), 1, + STATE(7386), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5271), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(4663), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -611076,46 +617554,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330568] = 19, + [332952] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7071), 1, + ACTIONS(7094), 1, anon_sym_LPAREN, - ACTIONS(7076), 1, + ACTIONS(7099), 1, anon_sym_typeof, - ACTIONS(7078), 1, + ACTIONS(7101), 1, sym__constant_segment, - ACTIONS(7080), 1, + ACTIONS(7103), 1, anon_sym_COLON_COLON, - ACTIONS(7084), 1, + ACTIONS(7107), 1, sym__start_of_tuple_type, - ACTIONS(7086), 1, + ACTIONS(7109), 1, sym__start_of_named_tuple_type, - ACTIONS(9417), 1, + ACTIONS(9464), 1, anon_sym_DASH_GT, - ACTIONS(9419), 1, + ACTIONS(9466), 1, anon_sym_STAR, - STATE(7345), 1, + STATE(7387), 1, sym_heredoc_body, - STATE(7662), 1, + STATE(7692), 1, sym_constant, - STATE(7687), 1, + STATE(7723), 1, sym__type, - STATE(7792), 1, + STATE(7827), 1, sym__splattable_type, - STATE(7833), 1, - sym_splat_type, - STATE(7845), 1, + STATE(7875), 1, sym__bare_type, - STATE(7901), 1, + STATE(7879), 1, + sym_splat_type, + STATE(7946), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7082), 2, + ACTIONS(7105), 2, sym_self, sym_underscore_type, - STATE(7736), 12, + STATE(7763), 12, sym_typeof, sym_class_type, sym_union_type, @@ -611128,46 +617606,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330639] = 19, + [333023] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(1417), 1, + sym__constant_segment, + ACTIONS(5137), 1, + anon_sym_typeof, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7346), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5180), 1, + anon_sym_LPAREN, + ACTIONS(9452), 1, + anon_sym_DASH_GT, + ACTIONS(9454), 1, + anon_sym_STAR, + STATE(2784), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2785), 1, + sym__type, + STATE(3188), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3423), 1, + sym_splat_type, + STATE(3844), 1, sym_proc_type, - STATE(11450), 1, + STATE(4064), 1, sym__bare_type, + STATE(7388), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -611180,46 +617658,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330710] = 19, + [333094] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3141), 1, + sym__constant_segment, + ACTIONS(5402), 1, + anon_sym_LPAREN, + ACTIONS(5407), 1, + anon_sym_typeof, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7347), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9472), 1, + anon_sym_DASH_GT, + ACTIONS(9474), 1, + anon_sym_STAR, + STATE(5101), 1, sym_constant, - STATE(9205), 1, + STATE(5115), 1, + sym__type, + STATE(5763), 1, + sym__splattable_type, + STATE(6165), 1, sym_splat_type, - STATE(9358), 1, + STATE(6476), 1, sym_proc_type, - STATE(9633), 1, - sym__splattable_type, - STATE(10448), 1, + STATE(6782), 1, sym__bare_type, + STATE(7389), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -611232,46 +617710,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330781] = 19, + [333165] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3141), 1, + sym__constant_segment, + ACTIONS(5402), 1, + anon_sym_LPAREN, + ACTIONS(5407), 1, + anon_sym_typeof, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7348), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9472), 1, + anon_sym_DASH_GT, + ACTIONS(9474), 1, + anon_sym_STAR, + STATE(5101), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(5115), 1, + sym__type, + STATE(5763), 1, sym__splattable_type, - STATE(9358), 1, + STATE(6165), 1, + sym_splat_type, + STATE(6476), 1, sym_proc_type, - STATE(11492), 1, + STATE(6803), 1, sym__bare_type, + STATE(7390), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -611284,46 +617762,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330852] = 19, + [333236] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(1417), 1, + sym__constant_segment, + ACTIONS(5137), 1, + anon_sym_typeof, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7349), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5180), 1, + anon_sym_LPAREN, + ACTIONS(9452), 1, + anon_sym_DASH_GT, + ACTIONS(9454), 1, + anon_sym_STAR, + STATE(2784), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2785), 1, + sym__type, + STATE(3188), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3423), 1, + sym_splat_type, + STATE(3844), 1, sym_proc_type, - STATE(11536), 1, + STATE(4086), 1, sym__bare_type, + STATE(7391), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -611336,46 +617814,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330923] = 19, + [333307] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7350), 1, + STATE(7392), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9243), 1, + STATE(9365), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11559), 1, + STATE(12028), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -611388,46 +617866,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [330994] = 19, + [333378] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(1417), 1, + sym__constant_segment, + ACTIONS(5137), 1, + anon_sym_typeof, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7351), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5180), 1, + anon_sym_LPAREN, + ACTIONS(9452), 1, + anon_sym_DASH_GT, + ACTIONS(9454), 1, + anon_sym_STAR, + STATE(2784), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9213), 1, + STATE(2785), 1, + sym__type, + STATE(3188), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3423), 1, + sym_splat_type, + STATE(3844), 1, sym_proc_type, - STATE(10411), 1, + STATE(4089), 1, sym__bare_type, + STATE(7393), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -611440,46 +617918,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331065] = 19, + [333449] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(893), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3033), 1, + sym__constant_segment, + ACTIONS(5306), 1, + anon_sym_typeof, + ACTIONS(5310), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5312), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7352), 1, - sym_heredoc_body, - STATE(8109), 1, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(9544), 1, + anon_sym_DASH_GT, + ACTIONS(9546), 1, + anon_sym_STAR, + STATE(4306), 1, sym__type, - STATE(8134), 1, + STATE(4464), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(5043), 1, sym__splattable_type, - STATE(9358), 1, + STATE(5045), 1, + sym_splat_type, + STATE(5160), 1, sym_proc_type, - STATE(11666), 1, + STATE(5579), 1, sym__bare_type, + STATE(7394), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5308), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(4646), 12, sym_typeof, sym_class_type, sym_union_type, @@ -611492,46 +617970,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331136] = 19, + [333520] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(2312), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3083), 1, + sym__constant_segment, + ACTIONS(5381), 1, + anon_sym_typeof, + ACTIONS(5385), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5387), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7353), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5389), 1, + anon_sym_LPAREN, + ACTIONS(9498), 1, + anon_sym_DASH_GT, + ACTIONS(9500), 1, + anon_sym_STAR, + STATE(5014), 1, sym_constant, - STATE(9205), 1, + STATE(5021), 1, + sym__type, + STATE(5167), 1, + sym__splattable_type, + STATE(5552), 1, sym_splat_type, - STATE(9358), 1, + STATE(5956), 1, sym_proc_type, - STATE(9634), 1, - sym__splattable_type, - STATE(10459), 1, + STATE(6266), 1, sym__bare_type, + STATE(7395), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5383), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(5099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -611544,46 +618022,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331207] = 19, + [333591] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(893), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3033), 1, + sym__constant_segment, + ACTIONS(5306), 1, + anon_sym_typeof, + ACTIONS(5310), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5312), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7354), 1, - sym_heredoc_body, - STATE(8109), 1, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(9544), 1, + anon_sym_DASH_GT, + ACTIONS(9546), 1, + anon_sym_STAR, + STATE(4306), 1, sym__type, - STATE(8134), 1, + STATE(4464), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(5043), 1, sym__splattable_type, - STATE(9358), 1, + STATE(5045), 1, + sym_splat_type, + STATE(5160), 1, sym_proc_type, - STATE(11759), 1, + STATE(5641), 1, sym__bare_type, + STATE(7396), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5308), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(4646), 12, sym_typeof, sym_class_type, sym_union_type, @@ -611596,46 +618074,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331278] = 19, + [333662] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3141), 1, + sym__constant_segment, + ACTIONS(5402), 1, + anon_sym_LPAREN, + ACTIONS(5407), 1, + anon_sym_typeof, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7355), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9472), 1, + anon_sym_DASH_GT, + ACTIONS(9474), 1, + anon_sym_STAR, + STATE(5101), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(5115), 1, + sym__type, + STATE(5763), 1, sym__splattable_type, - STATE(9358), 1, + STATE(6165), 1, + sym_splat_type, + STATE(6476), 1, sym_proc_type, - STATE(11823), 1, + STATE(6819), 1, sym__bare_type, + STATE(7397), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -611648,46 +618126,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331349] = 19, + [333733] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(893), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3033), 1, + sym__constant_segment, + ACTIONS(5306), 1, + anon_sym_typeof, + ACTIONS(5310), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5312), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7356), 1, - sym_heredoc_body, - STATE(8109), 1, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(9544), 1, + anon_sym_DASH_GT, + ACTIONS(9546), 1, + anon_sym_STAR, + STATE(4306), 1, sym__type, - STATE(8134), 1, + STATE(4464), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(5043), 1, sym__splattable_type, - STATE(9358), 1, + STATE(5045), 1, + sym_splat_type, + STATE(5160), 1, sym_proc_type, - STATE(11879), 1, + STATE(5693), 1, sym__bare_type, + STATE(7398), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5308), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(4646), 12, sym_typeof, sym_class_type, sym_union_type, @@ -611700,46 +618178,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331420] = 19, + [333804] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, + ACTIONS(893), 1, anon_sym_COLON_COLON, - ACTIONS(2942), 1, + ACTIONS(3033), 1, sym__constant_segment, - ACTIONS(5161), 1, + ACTIONS(5306), 1, anon_sym_typeof, - ACTIONS(5165), 1, + ACTIONS(5310), 1, sym__start_of_tuple_type, - ACTIONS(5167), 1, + ACTIONS(5312), 1, sym__start_of_named_tuple_type, - ACTIONS(5169), 1, + ACTIONS(5314), 1, anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(9544), 1, anon_sym_DASH_GT, - ACTIONS(9389), 1, + ACTIONS(9546), 1, anon_sym_STAR, - STATE(3026), 1, - sym_constant, - STATE(3027), 1, + STATE(4306), 1, sym__type, - STATE(3426), 1, + STATE(4464), 1, + sym_constant, + STATE(5043), 1, sym__splattable_type, - STATE(3716), 1, + STATE(5045), 1, sym_splat_type, - STATE(4055), 1, + STATE(5160), 1, sym_proc_type, - STATE(4567), 1, + STATE(5696), 1, sym__bare_type, - STATE(7357), 1, + STATE(7399), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(5308), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(4646), 12, sym_typeof, sym_class_type, sym_union_type, @@ -611752,46 +618230,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331491] = 19, + [333875] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, - anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(893), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(3033), 1, + sym__constant_segment, + ACTIONS(5306), 1, + anon_sym_typeof, + ACTIONS(5310), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(5312), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(9544), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9546), 1, anon_sym_STAR, - STATE(7358), 1, - sym_heredoc_body, - STATE(8159), 1, + STATE(4306), 1, sym__type, - STATE(8192), 1, + STATE(4464), 1, sym_constant, - STATE(9244), 1, + STATE(5043), 1, sym__splattable_type, - STATE(9350), 1, - sym__bare_type, - STATE(9588), 1, + STATE(5045), 1, sym_splat_type, - STATE(10410), 1, + STATE(5160), 1, sym_proc_type, + STATE(5737), 1, + sym__bare_type, + STATE(7400), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(5308), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(4646), 12, sym_typeof, sym_class_type, sym_union_type, @@ -611804,46 +618282,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331562] = 19, + [333946] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(893), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3033), 1, + sym__constant_segment, + ACTIONS(5306), 1, + anon_sym_typeof, + ACTIONS(5310), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5312), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7359), 1, - sym_heredoc_body, - STATE(8109), 1, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(9544), 1, + anon_sym_DASH_GT, + ACTIONS(9546), 1, + anon_sym_STAR, + STATE(4306), 1, sym__type, - STATE(8134), 1, + STATE(4464), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(5043), 1, sym__splattable_type, - STATE(9358), 1, + STATE(5045), 1, + sym_splat_type, + STATE(5160), 1, sym_proc_type, - STATE(11950), 1, + STATE(5738), 1, sym__bare_type, + STATE(7401), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5308), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(4646), 12, sym_typeof, sym_class_type, sym_union_type, @@ -611856,46 +618334,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331633] = 19, + [334017] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7360), 1, + STATE(7402), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9636), 1, + STATE(9365), 1, sym__splattable_type, - STATE(10449), 1, + STATE(9493), 1, + sym_proc_type, + STATE(10523), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -611908,46 +618386,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331704] = 19, + [334088] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(893), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3033), 1, + sym__constant_segment, + ACTIONS(5306), 1, + anon_sym_typeof, + ACTIONS(5310), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5312), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7361), 1, - sym_heredoc_body, - STATE(8109), 1, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(9544), 1, + anon_sym_DASH_GT, + ACTIONS(9546), 1, + anon_sym_STAR, + STATE(4306), 1, sym__type, - STATE(8134), 1, + STATE(4464), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(5043), 1, sym__splattable_type, - STATE(9358), 1, + STATE(5045), 1, + sym_splat_type, + STATE(5160), 1, sym_proc_type, - STATE(10519), 1, + STATE(5746), 1, sym__bare_type, + STATE(7403), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5308), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(4646), 12, sym_typeof, sym_class_type, sym_union_type, @@ -611960,46 +618438,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331775] = 19, + [334159] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(893), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3033), 1, + sym__constant_segment, + ACTIONS(5306), 1, + anon_sym_typeof, + ACTIONS(5310), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5312), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7362), 1, - sym_heredoc_body, - STATE(8109), 1, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(9544), 1, + anon_sym_DASH_GT, + ACTIONS(9546), 1, + anon_sym_STAR, + STATE(4306), 1, sym__type, - STATE(8134), 1, + STATE(4464), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(5043), 1, sym__splattable_type, - STATE(9358), 1, + STATE(5045), 1, + sym_splat_type, + STATE(5160), 1, sym_proc_type, - STATE(10533), 1, + STATE(5748), 1, sym__bare_type, + STATE(7404), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5308), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(4646), 12, sym_typeof, sym_class_type, sym_union_type, @@ -612012,46 +618490,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331846] = 19, + [334230] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(1417), 1, + sym__constant_segment, + ACTIONS(5137), 1, + anon_sym_typeof, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7363), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5180), 1, + anon_sym_LPAREN, + ACTIONS(9452), 1, + anon_sym_DASH_GT, + ACTIONS(9454), 1, + anon_sym_STAR, + STATE(2784), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2785), 1, + sym__type, + STATE(3188), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3423), 1, + sym_splat_type, + STATE(3844), 1, sym_proc_type, - STATE(10537), 1, + STATE(4115), 1, sym__bare_type, + STATE(7405), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -612064,46 +618542,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331917] = 19, + [334301] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(2537), 1, + ACTIONS(1417), 1, sym__constant_segment, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5191), 1, + ACTIONS(5137), 1, anon_sym_typeof, - ACTIONS(5195), 1, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(5197), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(5180), 1, + anon_sym_LPAREN, + ACTIONS(9452), 1, anon_sym_DASH_GT, - ACTIONS(9443), 1, + ACTIONS(9454), 1, anon_sym_STAR, - STATE(3256), 1, + STATE(2784), 1, sym_constant, - STATE(3258), 1, + STATE(2785), 1, sym__type, - STATE(3769), 1, + STATE(3188), 1, sym__splattable_type, - STATE(4118), 1, + STATE(3423), 1, sym_splat_type, - STATE(4342), 1, + STATE(3844), 1, sym_proc_type, - STATE(4732), 1, + STATE(4116), 1, sym__bare_type, - STATE(7364), 1, + STATE(7406), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -612116,46 +618594,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [331988] = 19, + [334372] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(831), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(2996), 1, + ACTIONS(1417), 1, sym__constant_segment, - ACTIONS(5269), 1, + ACTIONS(5137), 1, anon_sym_typeof, - ACTIONS(5273), 1, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(5275), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(5277), 1, + ACTIONS(5180), 1, anon_sym_LPAREN, - ACTIONS(9461), 1, + ACTIONS(9452), 1, anon_sym_DASH_GT, - ACTIONS(9463), 1, + ACTIONS(9454), 1, anon_sym_STAR, - STATE(4347), 1, + STATE(2784), 1, sym_constant, - STATE(4348), 1, + STATE(2785), 1, sym__type, - STATE(4933), 1, + STATE(3188), 1, sym__splattable_type, - STATE(5079), 1, + STATE(3423), 1, sym_splat_type, - STATE(5129), 1, + STATE(3844), 1, sym_proc_type, - STATE(5565), 1, + STATE(4131), 1, sym__bare_type, - STATE(7365), 1, + STATE(7407), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5271), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(4663), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -612168,46 +618646,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332059] = 19, + [334443] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(2537), 1, + ACTIONS(1417), 1, sym__constant_segment, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5191), 1, + ACTIONS(5137), 1, anon_sym_typeof, - ACTIONS(5195), 1, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(5197), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(5180), 1, + anon_sym_LPAREN, + ACTIONS(9452), 1, anon_sym_DASH_GT, - ACTIONS(9443), 1, + ACTIONS(9454), 1, anon_sym_STAR, - STATE(3256), 1, + STATE(2784), 1, sym_constant, - STATE(3258), 1, + STATE(2785), 1, sym__type, - STATE(3769), 1, + STATE(3188), 1, sym__splattable_type, - STATE(4118), 1, + STATE(3423), 1, sym_splat_type, - STATE(4342), 1, + STATE(3844), 1, sym_proc_type, - STATE(4600), 1, + STATE(4140), 1, sym__bare_type, - STATE(7366), 1, + STATE(7408), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -612220,46 +618698,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332130] = 19, + [334514] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(2537), 1, + ACTIONS(3141), 1, sym__constant_segment, - ACTIONS(5186), 1, + ACTIONS(5402), 1, anon_sym_LPAREN, - ACTIONS(5191), 1, + ACTIONS(5407), 1, anon_sym_typeof, - ACTIONS(5195), 1, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(5197), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(9472), 1, anon_sym_DASH_GT, - ACTIONS(9443), 1, + ACTIONS(9474), 1, anon_sym_STAR, - STATE(3256), 1, + STATE(5101), 1, sym_constant, - STATE(3258), 1, + STATE(5115), 1, sym__type, - STATE(3769), 1, + STATE(5775), 1, sym__splattable_type, - STATE(4118), 1, + STATE(6165), 1, sym_splat_type, - STATE(4342), 1, + STATE(6476), 1, sym_proc_type, - STATE(4601), 1, + STATE(6741), 1, sym__bare_type, - STATE(7367), 1, + STATE(7409), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -612272,46 +618750,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332201] = 19, + [334585] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(83), 1, + sym__constant_segment, + ACTIONS(85), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(5056), 1, + anon_sym_typeof, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7368), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5064), 1, + anon_sym_LPAREN, + ACTIONS(9460), 1, + anon_sym_DASH_GT, + ACTIONS(9462), 1, + anon_sym_STAR, + STATE(2394), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2395), 1, + sym__type, + STATE(2538), 1, sym__splattable_type, - STATE(9358), 1, + STATE(2608), 1, + sym_splat_type, + STATE(2818), 1, sym_proc_type, - STATE(10570), 1, + STATE(2869), 1, sym__bare_type, + STATE(7410), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -612324,46 +618802,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332272] = 19, + [334656] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7369), 1, + STATE(7411), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9274), 1, + sym__splattable_type, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9637), 1, - sym__splattable_type, - STATE(10414), 1, + STATE(11730), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -612376,46 +618854,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332343] = 19, + [334727] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(7684), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(7689), 1, + anon_sym_typeof, + ACTIONS(7691), 1, + sym__constant_segment, + ACTIONS(7693), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(7697), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(7699), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7370), 1, + ACTIONS(9516), 1, + anon_sym_DASH_GT, + ACTIONS(9518), 1, + anon_sym_STAR, + STATE(7412), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(7803), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(7805), 1, + sym__type, + STATE(7983), 1, sym__splattable_type, - STATE(9358), 1, + STATE(8115), 1, + sym_splat_type, + STATE(8157), 1, sym_proc_type, - STATE(10587), 1, + STATE(8226), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(7695), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(7865), 12, sym_typeof, sym_class_type, sym_union_type, @@ -612428,46 +618906,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332414] = 19, + [334798] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(5223), 1, + anon_sym_typeof, + ACTIONS(5225), 1, + sym__constant_segment, + ACTIONS(5227), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(5231), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5233), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7371), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5239), 1, + anon_sym_LPAREN, + ACTIONS(9524), 1, + anon_sym_DASH_GT, + ACTIONS(9526), 1, + anon_sym_STAR, + STATE(3316), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(3319), 1, + sym__type, + STATE(3922), 1, sym__splattable_type, - STATE(9358), 1, + STATE(4094), 1, + sym_splat_type, + STATE(4339), 1, sym_proc_type, - STATE(10611), 1, + STATE(6736), 1, sym__bare_type, + STATE(7413), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5229), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(3579), 12, sym_typeof, sym_class_type, sym_union_type, @@ -612480,46 +618958,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332485] = 19, + [334869] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(83), 1, + sym__constant_segment, + ACTIONS(85), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(5056), 1, + anon_sym_typeof, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7372), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5064), 1, + anon_sym_LPAREN, + ACTIONS(9460), 1, + anon_sym_DASH_GT, + ACTIONS(9462), 1, + anon_sym_STAR, + STATE(2394), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2395), 1, + sym__type, + STATE(2538), 1, sym__splattable_type, - STATE(9358), 1, + STATE(2608), 1, + sym_splat_type, + STATE(2818), 1, sym_proc_type, - STATE(10618), 1, + STATE(3054), 1, sym__bare_type, + STATE(7414), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -612532,46 +619010,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332556] = 19, + [334940] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1675), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2965), 1, + sym__constant_segment, + ACTIONS(5194), 1, + anon_sym_LPAREN, + ACTIONS(5199), 1, + anon_sym_typeof, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7373), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9436), 1, + anon_sym_DASH_GT, + ACTIONS(9438), 1, + anon_sym_STAR, + STATE(3180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(3182), 1, + sym__type, + STATE(3843), 1, sym__splattable_type, - STATE(9358), 1, + STATE(3845), 1, + sym_splat_type, + STATE(4301), 1, sym_proc_type, - STATE(10594), 1, + STATE(4548), 1, sym__bare_type, + STATE(7415), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -612584,46 +619062,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332627] = 19, + [335011] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1675), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2965), 1, + sym__constant_segment, + ACTIONS(5194), 1, + anon_sym_LPAREN, + ACTIONS(5199), 1, + anon_sym_typeof, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7374), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9436), 1, + anon_sym_DASH_GT, + ACTIONS(9438), 1, + anon_sym_STAR, + STATE(3180), 1, sym_constant, - STATE(9205), 1, + STATE(3182), 1, + sym__type, + STATE(3843), 1, + sym__splattable_type, + STATE(3845), 1, sym_splat_type, - STATE(9358), 1, + STATE(4301), 1, sym_proc_type, - STATE(9639), 1, - sym__splattable_type, - STATE(10444), 1, + STATE(4552), 1, sym__bare_type, + STATE(7416), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -612636,46 +619114,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332698] = 19, + [335082] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7375), 1, + STATE(7417), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(10602), 1, + STATE(10819), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -612688,46 +619166,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332769] = 19, + [335153] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7376), 1, + STATE(7418), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9274), 1, + sym__splattable_type, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9640), 1, - sym__splattable_type, - STATE(10491), 1, + STATE(10695), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -612740,46 +619218,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332840] = 19, + [335224] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1675), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2965), 1, + sym__constant_segment, + ACTIONS(5194), 1, + anon_sym_LPAREN, + ACTIONS(5199), 1, + anon_sym_typeof, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7377), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9436), 1, + anon_sym_DASH_GT, + ACTIONS(9438), 1, + anon_sym_STAR, + STATE(3180), 1, sym_constant, - STATE(9205), 1, + STATE(3182), 1, + sym__type, + STATE(3843), 1, + sym__splattable_type, + STATE(3845), 1, sym_splat_type, - STATE(9358), 1, + STATE(4301), 1, sym_proc_type, - STATE(9641), 1, - sym__splattable_type, - STATE(10467), 1, + STATE(4598), 1, sym__bare_type, + STATE(7419), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -612792,46 +619270,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332911] = 19, + [335295] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1579), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2608), 1, + sym__constant_segment, + ACTIONS(5247), 1, + anon_sym_LPAREN, + ACTIONS(5252), 1, + anon_sym_typeof, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7378), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9444), 1, + anon_sym_DASH_GT, + ACTIONS(9446), 1, + anon_sym_STAR, + STATE(3191), 1, sym_constant, - STATE(9205), 1, + STATE(3192), 1, + sym__type, + STATE(3623), 1, + sym__splattable_type, + STATE(3850), 1, sym_splat_type, - STATE(9358), 1, + STATE(4528), 1, sym_proc_type, - STATE(9642), 1, - sym__splattable_type, - STATE(10419), 1, + STATE(4586), 1, sym__bare_type, + STATE(7420), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -612844,46 +619322,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [332982] = 19, + [335366] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7379), 1, + STATE(7421), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9651), 1, + STATE(9365), 1, sym__splattable_type, - STATE(10506), 1, + STATE(9493), 1, + sym_proc_type, + STATE(10525), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -612896,46 +619374,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333053] = 19, + [335437] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(5223), 1, + anon_sym_typeof, + ACTIONS(5225), 1, + sym__constant_segment, + ACTIONS(5227), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(5231), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5233), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7380), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5239), 1, + anon_sym_LPAREN, + ACTIONS(9524), 1, + anon_sym_DASH_GT, + ACTIONS(9526), 1, + anon_sym_STAR, + STATE(3316), 1, sym_constant, - STATE(9205), 1, + STATE(3319), 1, + sym__type, + STATE(3611), 1, + sym__splattable_type, + STATE(4094), 1, sym_splat_type, - STATE(9358), 1, + STATE(4339), 1, sym_proc_type, - STATE(9652), 1, - sym__splattable_type, - STATE(10465), 1, + STATE(4613), 1, sym__bare_type, + STATE(7422), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5229), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(3579), 12, sym_typeof, sym_class_type, sym_union_type, @@ -612948,46 +619426,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333124] = 19, + [335508] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, - anon_sym_COLON_COLON, - ACTIONS(2537), 1, - sym__constant_segment, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5191), 1, - anon_sym_typeof, - ACTIONS(5195), 1, + ACTIONS(4384), 1, sym__start_of_tuple_type, - ACTIONS(5197), 1, + ACTIONS(4386), 1, sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9504), 1, anon_sym_DASH_GT, - ACTIONS(9443), 1, + ACTIONS(9506), 1, anon_sym_STAR, - STATE(3256), 1, - sym_constant, - STATE(3258), 1, + ACTIONS(9508), 1, + anon_sym_typeof, + ACTIONS(9510), 1, + sym__constant_segment, + ACTIONS(9512), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, sym__type, - STATE(3769), 1, + STATE(2008), 1, + sym_constant, + STATE(2042), 1, sym__splattable_type, - STATE(4118), 1, + STATE(2048), 1, + sym__bare_type, + STATE(2055), 1, sym_splat_type, - STATE(4342), 1, + STATE(2073), 1, sym_proc_type, - STATE(4611), 1, - sym__bare_type, - STATE(7381), 1, + STATE(7423), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(9514), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(2024), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613000,46 +619478,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333195] = 19, + [335579] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, + ACTIONS(1675), 1, anon_sym_COLON_COLON, - ACTIONS(2537), 1, + ACTIONS(2965), 1, sym__constant_segment, - ACTIONS(5186), 1, + ACTIONS(5194), 1, anon_sym_LPAREN, - ACTIONS(5191), 1, + ACTIONS(5199), 1, anon_sym_typeof, - ACTIONS(5195), 1, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(5197), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(9436), 1, anon_sym_DASH_GT, - ACTIONS(9443), 1, + ACTIONS(9438), 1, anon_sym_STAR, - STATE(3256), 1, + STATE(3180), 1, sym_constant, - STATE(3258), 1, + STATE(3182), 1, sym__type, - STATE(3769), 1, + STATE(3843), 1, sym__splattable_type, - STATE(4118), 1, + STATE(3845), 1, sym_splat_type, - STATE(4342), 1, + STATE(4301), 1, sym_proc_type, - STATE(4618), 1, + STATE(4601), 1, sym__bare_type, - STATE(7382), 1, + STATE(7424), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613052,46 +619530,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333266] = 19, + [335650] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, + ACTIONS(1675), 1, anon_sym_COLON_COLON, - ACTIONS(3108), 1, + ACTIONS(2965), 1, sym__constant_segment, - ACTIONS(5365), 1, + ACTIONS(5194), 1, anon_sym_LPAREN, - ACTIONS(5370), 1, + ACTIONS(5199), 1, anon_sym_typeof, - ACTIONS(5374), 1, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(5376), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(9433), 1, + ACTIONS(9436), 1, anon_sym_DASH_GT, - ACTIONS(9435), 1, + ACTIONS(9438), 1, anon_sym_STAR, - STATE(5097), 1, + STATE(3180), 1, sym_constant, - STATE(5107), 1, + STATE(3182), 1, sym__type, - STATE(5535), 1, + STATE(3459), 1, sym__splattable_type, - STATE(6082), 1, + STATE(3845), 1, sym_splat_type, - STATE(6483), 1, + STATE(4301), 1, sym_proc_type, - STATE(6811), 1, + STATE(4552), 1, sym__bare_type, - STATE(7383), 1, + STATE(7425), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613104,46 +619582,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333337] = 19, + [335721] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(831), 1, + ACTIONS(1675), 1, anon_sym_COLON_COLON, - ACTIONS(2996), 1, + ACTIONS(2965), 1, sym__constant_segment, - ACTIONS(5269), 1, + ACTIONS(5194), 1, + anon_sym_LPAREN, + ACTIONS(5199), 1, anon_sym_typeof, - ACTIONS(5273), 1, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(5275), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(9461), 1, + ACTIONS(9436), 1, anon_sym_DASH_GT, - ACTIONS(9463), 1, + ACTIONS(9438), 1, anon_sym_STAR, - STATE(4347), 1, + STATE(3180), 1, sym_constant, - STATE(4348), 1, + STATE(3182), 1, sym__type, - STATE(4933), 1, + STATE(3843), 1, sym__splattable_type, - STATE(5079), 1, + STATE(3845), 1, sym_splat_type, - STATE(5129), 1, + STATE(4301), 1, sym_proc_type, - STATE(5593), 1, + STATE(4438), 1, sym__bare_type, - STATE(7384), 1, + STATE(7426), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5271), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(4663), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613156,46 +619634,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333408] = 19, + [335792] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8021), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8026), 1, + anon_sym_typeof, + ACTIONS(8028), 1, + sym__constant_segment, + ACTIONS(8030), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8034), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8036), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7385), 1, + ACTIONS(9520), 1, + anon_sym_DASH_GT, + ACTIONS(9522), 1, + anon_sym_STAR, + STATE(7427), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(7870), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(7872), 1, + sym__type, + STATE(8135), 1, sym__splattable_type, - STATE(9358), 1, - sym_proc_type, - STATE(11405), 1, + STATE(8158), 1, sym__bare_type, + STATE(8165), 1, + sym_splat_type, + STATE(8441), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(8032), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(7900), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613208,46 +619686,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333479] = 19, + [335863] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, - anon_sym_COLON_COLON, - ACTIONS(2942), 1, - sym__constant_segment, - ACTIONS(5161), 1, + ACTIONS(9388), 1, + anon_sym_LPAREN, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5165), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5167), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(5169), 1, - anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - ACTIONS(9389), 1, + ACTIONS(9470), 1, anon_sym_STAR, - STATE(3026), 1, + STATE(7428), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(3027), 1, + STATE(8353), 1, sym__type, - STATE(3426), 1, + STATE(9390), 1, sym__splattable_type, - STATE(3716), 1, + STATE(9404), 1, sym_splat_type, - STATE(4055), 1, - sym_proc_type, - STATE(4486), 1, + STATE(9687), 1, sym__bare_type, - STATE(7386), 1, - sym_heredoc_body, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613260,46 +619738,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333550] = 19, + [335934] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(83), 1, + sym__constant_segment, + ACTIONS(85), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(5056), 1, + anon_sym_typeof, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7387), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5064), 1, + anon_sym_LPAREN, + ACTIONS(9460), 1, + anon_sym_DASH_GT, + ACTIONS(9462), 1, + anon_sym_STAR, + STATE(2394), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2395), 1, + sym__type, + STATE(2538), 1, sym__splattable_type, - STATE(9358), 1, + STATE(2608), 1, + sym_splat_type, + STATE(2818), 1, sym_proc_type, - STATE(11246), 1, + STATE(3094), 1, sym__bare_type, + STATE(7429), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613312,46 +619790,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333621] = 19, + [336005] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(451), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2921), 1, + sym__constant_segment, + ACTIONS(5125), 1, + anon_sym_typeof, + ACTIONS(5129), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5131), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7388), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5165), 1, + anon_sym_LPAREN, + ACTIONS(9536), 1, + anon_sym_DASH_GT, + ACTIONS(9538), 1, + anon_sym_STAR, + STATE(2829), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9213), 1, + STATE(2875), 1, + sym__type, + STATE(3209), 1, sym__splattable_type, - STATE(9358), 1, - sym_proc_type, - STATE(10477), 1, + STATE(3413), 1, + sym_splat_type, + STATE(3602), 1, sym__bare_type, + STATE(3615), 1, + sym_proc_type, + STATE(7430), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5127), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2993), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613364,46 +619842,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333692] = 19, + [336076] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(2133), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3067), 1, + sym__constant_segment, + ACTIONS(5344), 1, + anon_sym_LPAREN, + ACTIONS(5349), 1, + anon_sym_typeof, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7389), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9494), 1, + anon_sym_DASH_GT, + ACTIONS(9496), 1, + anon_sym_STAR, + STATE(4791), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(4793), 1, + sym__type, + STATE(5224), 1, sym__splattable_type, - STATE(9358), 1, + STATE(5234), 1, + sym_splat_type, + STATE(5619), 1, sym_proc_type, - STATE(11270), 1, + STATE(6101), 1, sym__bare_type, + STATE(7431), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613416,46 +619894,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333763] = 19, + [336147] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8058), 1, + ACTIONS(1675), 1, + anon_sym_COLON_COLON, + ACTIONS(2965), 1, + sym__constant_segment, + ACTIONS(5194), 1, anon_sym_LPAREN, - ACTIONS(8063), 1, + ACTIONS(5199), 1, anon_sym_typeof, - ACTIONS(8065), 1, - sym__constant_segment, - ACTIONS(8067), 1, - anon_sym_COLON_COLON, - ACTIONS(8071), 1, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(8073), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(9445), 1, + ACTIONS(9436), 1, anon_sym_DASH_GT, - ACTIONS(9447), 1, + ACTIONS(9438), 1, anon_sym_STAR, - STATE(7390), 1, - sym_heredoc_body, - STATE(7836), 1, + STATE(3180), 1, sym_constant, - STATE(7839), 1, + STATE(3182), 1, sym__type, - STATE(8086), 1, + STATE(3843), 1, sym__splattable_type, - STATE(8118), 1, + STATE(3845), 1, sym_splat_type, - STATE(8442), 1, + STATE(4301), 1, sym_proc_type, - STATE(8533), 1, + STATE(4433), 1, sym__bare_type, + STATE(7432), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8069), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(7855), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613468,46 +619946,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333834] = 19, + [336218] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(7094), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(7099), 1, + anon_sym_typeof, + ACTIONS(7101), 1, + sym__constant_segment, + ACTIONS(7103), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(7107), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(7109), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7391), 1, + ACTIONS(9464), 1, + anon_sym_DASH_GT, + ACTIONS(9466), 1, + anon_sym_STAR, + STATE(7433), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(7692), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(7723), 1, + sym__type, + STATE(7827), 1, sym__splattable_type, - STATE(9358), 1, - sym_proc_type, - STATE(11298), 1, + STATE(7878), 1, sym__bare_type, + STATE(7879), 1, + sym_splat_type, + STATE(7946), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(7105), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(7763), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613520,46 +619998,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333905] = 19, + [336289] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(4384), 1, + sym__start_of_tuple_type, + ACTIONS(4386), 1, + sym__start_of_named_tuple_type, + ACTIONS(9502), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(9504), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(9506), 1, anon_sym_STAR, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9508), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9510), 1, sym__constant_segment, - STATE(7392), 1, - sym_heredoc_body, - STATE(8109), 1, + ACTIONS(9512), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, sym__type, - STATE(8134), 1, + STATE(2008), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2042), 1, sym__splattable_type, - STATE(9358), 1, - sym_proc_type, - STATE(11302), 1, + STATE(2049), 1, sym__bare_type, + STATE(2055), 1, + sym_splat_type, + STATE(2073), 1, + sym_proc_type, + STATE(7434), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9514), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2024), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613572,46 +620050,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [333976] = 19, + [336360] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(83), 1, + sym__constant_segment, + ACTIONS(85), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(5056), 1, + anon_sym_typeof, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7393), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5064), 1, + anon_sym_LPAREN, + ACTIONS(9460), 1, + anon_sym_DASH_GT, + ACTIONS(9462), 1, + anon_sym_STAR, + STATE(2394), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2395), 1, + sym__type, + STATE(2541), 1, sym__splattable_type, - STATE(9358), 1, + STATE(2608), 1, + sym_splat_type, + STATE(2818), 1, sym_proc_type, - STATE(11382), 1, + STATE(3067), 1, sym__bare_type, + STATE(7435), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613624,46 +620102,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334047] = 19, + [336431] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(2133), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3067), 1, + sym__constant_segment, + ACTIONS(5344), 1, + anon_sym_LPAREN, + ACTIONS(5349), 1, + anon_sym_typeof, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7394), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9494), 1, + anon_sym_DASH_GT, + ACTIONS(9496), 1, + anon_sym_STAR, + STATE(4791), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(4793), 1, + sym__type, + STATE(5046), 1, sym__splattable_type, - STATE(9358), 1, + STATE(5234), 1, + sym_splat_type, + STATE(5619), 1, sym_proc_type, - STATE(11549), 1, + STATE(6020), 1, sym__bare_type, + STATE(7436), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613676,46 +620154,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334118] = 19, + [336502] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4347), 1, - sym__start_of_tuple_type, - ACTIONS(4349), 1, - sym__start_of_named_tuple_type, - ACTIONS(9399), 1, + ACTIONS(7684), 1, anon_sym_LPAREN, - ACTIONS(9401), 1, - anon_sym_DASH_GT, - ACTIONS(9403), 1, - anon_sym_STAR, - ACTIONS(9405), 1, + ACTIONS(7689), 1, anon_sym_typeof, - ACTIONS(9407), 1, + ACTIONS(7691), 1, sym__constant_segment, - ACTIONS(9409), 1, + ACTIONS(7693), 1, anon_sym_COLON_COLON, - STATE(2004), 1, - sym__type, - STATE(2006), 1, + ACTIONS(7697), 1, + sym__start_of_tuple_type, + ACTIONS(7699), 1, + sym__start_of_named_tuple_type, + ACTIONS(9516), 1, + anon_sym_DASH_GT, + ACTIONS(9518), 1, + anon_sym_STAR, + STATE(7437), 1, + sym_heredoc_body, + STATE(7803), 1, sym_constant, - STATE(2038), 1, - sym__bare_type, - STATE(2040), 1, + STATE(7805), 1, + sym__type, + STATE(7983), 1, sym__splattable_type, - STATE(2051), 1, + STATE(8115), 1, sym_splat_type, - STATE(2063), 1, + STATE(8157), 1, sym_proc_type, - STATE(7395), 1, - sym_heredoc_body, + STATE(8267), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9411), 2, + ACTIONS(7695), 2, sym_self, sym_underscore_type, - STATE(2012), 12, + STATE(7865), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613728,46 +620206,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334189] = 19, + [336573] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(9393), 1, + anon_sym_typeof, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7396), 1, + ACTIONS(9468), 1, + anon_sym_DASH_GT, + ACTIONS(9470), 1, + anon_sym_STAR, + STATE(7438), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8299), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9213), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(9358), 1, - sym_proc_type, - STATE(10420), 1, + STATE(9404), 1, + sym_splat_type, + STATE(9508), 1, sym__bare_type, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613780,46 +620258,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334260] = 19, + [336644] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(317), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2776), 1, + sym__constant_segment, + ACTIONS(5079), 1, + anon_sym_typeof, + ACTIONS(5083), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5085), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7397), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(9528), 1, + anon_sym_DASH_GT, + ACTIONS(9530), 1, + anon_sym_STAR, + STATE(2522), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2524), 1, + sym__type, + STATE(2835), 1, sym__splattable_type, - STATE(9358), 1, + STATE(2976), 1, + sym_splat_type, + STATE(3190), 1, sym_proc_type, - STATE(10612), 1, + STATE(3430), 1, sym__bare_type, + STATE(7439), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5081), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2692), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613832,46 +620310,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334331] = 19, + [336715] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3141), 1, + sym__constant_segment, + ACTIONS(5402), 1, + anon_sym_LPAREN, + ACTIONS(5407), 1, + anon_sym_typeof, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7398), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9472), 1, + anon_sym_DASH_GT, + ACTIONS(9474), 1, + anon_sym_STAR, + STATE(5101), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9584), 1, + STATE(5115), 1, + sym__type, + STATE(5763), 1, sym__splattable_type, - STATE(10429), 1, + STATE(6165), 1, + sym_splat_type, + STATE(6476), 1, + sym_proc_type, + STATE(6509), 1, sym__bare_type, + STATE(7440), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613884,46 +620362,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334402] = 19, + [336786] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2272), 1, + ACTIONS(893), 1, anon_sym_COLON_COLON, - ACTIONS(3052), 1, + ACTIONS(3033), 1, sym__constant_segment, - ACTIONS(5340), 1, - anon_sym_LPAREN, - ACTIONS(5345), 1, + ACTIONS(5306), 1, anon_sym_typeof, - ACTIONS(5349), 1, + ACTIONS(5310), 1, sym__start_of_tuple_type, - ACTIONS(5351), 1, + ACTIONS(5312), 1, sym__start_of_named_tuple_type, - ACTIONS(9491), 1, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(9544), 1, anon_sym_DASH_GT, - ACTIONS(9493), 1, + ACTIONS(9546), 1, anon_sym_STAR, - STATE(4886), 1, - sym_constant, - STATE(4888), 1, + STATE(4306), 1, sym__type, - STATE(5136), 1, + STATE(4464), 1, + sym_constant, + STATE(5043), 1, sym__splattable_type, - STATE(5508), 1, + STATE(5045), 1, sym_splat_type, - STATE(5860), 1, + STATE(5160), 1, sym_proc_type, - STATE(6278), 1, + STATE(5323), 1, sym__bare_type, - STATE(7399), 1, + STATE(7441), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5347), 2, + ACTIONS(5308), 2, sym_self, sym_underscore_type, - STATE(5055), 12, + STATE(4646), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613936,46 +620414,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334473] = 19, + [336857] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, + ACTIONS(317), 1, anon_sym_COLON_COLON, - ACTIONS(1397), 1, + ACTIONS(2776), 1, sym__constant_segment, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5102), 1, + ACTIONS(5079), 1, anon_sym_typeof, - ACTIONS(5106), 1, + ACTIONS(5083), 1, sym__start_of_tuple_type, - ACTIONS(5108), 1, + ACTIONS(5085), 1, sym__start_of_named_tuple_type, - ACTIONS(9429), 1, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(9528), 1, anon_sym_DASH_GT, - ACTIONS(9431), 1, + ACTIONS(9530), 1, anon_sym_STAR, - STATE(2786), 1, - sym__type, - STATE(2865), 1, + STATE(2522), 1, sym_constant, - STATE(3284), 1, + STATE(2524), 1, + sym__type, + STATE(2835), 1, sym__splattable_type, - STATE(3360), 1, + STATE(2976), 1, sym_splat_type, - STATE(3590), 1, + STATE(3190), 1, sym_proc_type, - STATE(3731), 1, + STATE(3497), 1, sym__bare_type, - STATE(7400), 1, + STATE(7442), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(5081), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(2692), 12, sym_typeof, sym_class_type, sym_union_type, @@ -613988,46 +620466,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334544] = 19, + [336928] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2272), 1, + ACTIONS(719), 1, anon_sym_COLON_COLON, - ACTIONS(3052), 1, + ACTIONS(3013), 1, sym__constant_segment, - ACTIONS(5340), 1, - anon_sym_LPAREN, - ACTIONS(5345), 1, + ACTIONS(5281), 1, anon_sym_typeof, - ACTIONS(5349), 1, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(5351), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(9491), 1, + ACTIONS(5289), 1, + anon_sym_LPAREN, + ACTIONS(9456), 1, anon_sym_DASH_GT, - ACTIONS(9493), 1, + ACTIONS(9458), 1, anon_sym_STAR, - STATE(4886), 1, + STATE(4258), 1, sym_constant, - STATE(4888), 1, + STATE(4259), 1, sym__type, - STATE(5136), 1, + STATE(4892), 1, sym__splattable_type, - STATE(5508), 1, + STATE(4915), 1, sym_splat_type, - STATE(5860), 1, + STATE(5066), 1, sym_proc_type, - STATE(6307), 1, + STATE(5421), 1, sym__bare_type, - STATE(7401), 1, + STATE(7443), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5347), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(5055), 12, + STATE(4483), 12, sym_typeof, sym_class_type, sym_union_type, @@ -614040,46 +620518,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334615] = 19, + [336999] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2272), 1, + ACTIONS(317), 1, anon_sym_COLON_COLON, - ACTIONS(3052), 1, + ACTIONS(2776), 1, sym__constant_segment, - ACTIONS(5340), 1, - anon_sym_LPAREN, - ACTIONS(5345), 1, + ACTIONS(5079), 1, anon_sym_typeof, - ACTIONS(5349), 1, + ACTIONS(5083), 1, sym__start_of_tuple_type, - ACTIONS(5351), 1, + ACTIONS(5085), 1, sym__start_of_named_tuple_type, - ACTIONS(9491), 1, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(9528), 1, anon_sym_DASH_GT, - ACTIONS(9493), 1, + ACTIONS(9530), 1, anon_sym_STAR, - STATE(4886), 1, + STATE(2522), 1, sym_constant, - STATE(4888), 1, + STATE(2524), 1, sym__type, - STATE(5136), 1, + STATE(2835), 1, sym__splattable_type, - STATE(5508), 1, + STATE(2976), 1, sym_splat_type, - STATE(5860), 1, + STATE(3190), 1, sym_proc_type, - STATE(6325), 1, + STATE(3432), 1, sym__bare_type, - STATE(7402), 1, + STATE(7444), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5347), 2, + ACTIONS(5081), 2, sym_self, sym_underscore_type, - STATE(5055), 12, + STATE(2692), 12, sym_typeof, sym_class_type, sym_union_type, @@ -614092,46 +620570,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334686] = 19, + [337070] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2272), 1, + ACTIONS(317), 1, anon_sym_COLON_COLON, - ACTIONS(3052), 1, + ACTIONS(2776), 1, sym__constant_segment, - ACTIONS(5340), 1, - anon_sym_LPAREN, - ACTIONS(5345), 1, + ACTIONS(5079), 1, anon_sym_typeof, - ACTIONS(5349), 1, + ACTIONS(5083), 1, sym__start_of_tuple_type, - ACTIONS(5351), 1, + ACTIONS(5085), 1, sym__start_of_named_tuple_type, - ACTIONS(9491), 1, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(9528), 1, anon_sym_DASH_GT, - ACTIONS(9493), 1, + ACTIONS(9530), 1, anon_sym_STAR, - STATE(4886), 1, + STATE(2522), 1, sym_constant, - STATE(4888), 1, + STATE(2524), 1, sym__type, - STATE(5136), 1, + STATE(2835), 1, sym__splattable_type, - STATE(5508), 1, + STATE(2976), 1, sym_splat_type, - STATE(5860), 1, + STATE(3190), 1, sym_proc_type, - STATE(6329), 1, + STATE(3484), 1, sym__bare_type, - STATE(7403), 1, + STATE(7445), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5347), 2, + ACTIONS(5081), 2, sym_self, sym_underscore_type, - STATE(5055), 12, + STATE(2692), 12, sym_typeof, sym_class_type, sym_union_type, @@ -614144,46 +620622,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334757] = 19, + [337141] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2272), 1, + ACTIONS(317), 1, anon_sym_COLON_COLON, - ACTIONS(3052), 1, + ACTIONS(2776), 1, sym__constant_segment, - ACTIONS(5340), 1, - anon_sym_LPAREN, - ACTIONS(5345), 1, + ACTIONS(5079), 1, anon_sym_typeof, - ACTIONS(5349), 1, + ACTIONS(5083), 1, sym__start_of_tuple_type, - ACTIONS(5351), 1, + ACTIONS(5085), 1, sym__start_of_named_tuple_type, - ACTIONS(9491), 1, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(9528), 1, anon_sym_DASH_GT, - ACTIONS(9493), 1, + ACTIONS(9530), 1, anon_sym_STAR, - STATE(4886), 1, + STATE(2522), 1, sym_constant, - STATE(4888), 1, + STATE(2524), 1, sym__type, - STATE(5136), 1, + STATE(2835), 1, sym__splattable_type, - STATE(5508), 1, + STATE(2976), 1, sym_splat_type, - STATE(5860), 1, + STATE(3190), 1, sym_proc_type, - STATE(6343), 1, + STATE(3414), 1, sym__bare_type, - STATE(7404), 1, + STATE(7446), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5347), 2, + ACTIONS(5081), 2, sym_self, sym_underscore_type, - STATE(5055), 12, + STATE(2692), 12, sym_typeof, sym_class_type, sym_union_type, @@ -614196,46 +620674,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334828] = 19, + [337212] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2272), 1, + ACTIONS(317), 1, anon_sym_COLON_COLON, - ACTIONS(3052), 1, + ACTIONS(2776), 1, sym__constant_segment, - ACTIONS(5340), 1, - anon_sym_LPAREN, - ACTIONS(5345), 1, + ACTIONS(5079), 1, anon_sym_typeof, - ACTIONS(5349), 1, + ACTIONS(5083), 1, sym__start_of_tuple_type, - ACTIONS(5351), 1, + ACTIONS(5085), 1, sym__start_of_named_tuple_type, - ACTIONS(9491), 1, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(9528), 1, anon_sym_DASH_GT, - ACTIONS(9493), 1, + ACTIONS(9530), 1, anon_sym_STAR, - STATE(4886), 1, + STATE(2522), 1, sym_constant, - STATE(4888), 1, + STATE(2524), 1, sym__type, - STATE(5136), 1, + STATE(2835), 1, sym__splattable_type, - STATE(5508), 1, + STATE(2976), 1, sym_splat_type, - STATE(5860), 1, + STATE(3190), 1, sym_proc_type, - STATE(6344), 1, + STATE(3417), 1, sym__bare_type, - STATE(7405), 1, + STATE(7447), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5347), 2, + ACTIONS(5081), 2, sym_self, sym_underscore_type, - STATE(5055), 12, + STATE(2692), 12, sym_typeof, sym_class_type, sym_union_type, @@ -614248,46 +620726,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334899] = 19, + [337283] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2272), 1, + ACTIONS(2133), 1, anon_sym_COLON_COLON, - ACTIONS(3052), 1, + ACTIONS(3067), 1, sym__constant_segment, - ACTIONS(5340), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - ACTIONS(5345), 1, - anon_sym_typeof, ACTIONS(5349), 1, + anon_sym_typeof, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(5351), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - ACTIONS(9491), 1, + ACTIONS(9494), 1, anon_sym_DASH_GT, - ACTIONS(9493), 1, + ACTIONS(9496), 1, anon_sym_STAR, - STATE(4886), 1, + STATE(4791), 1, sym_constant, - STATE(4888), 1, + STATE(4793), 1, sym__type, - STATE(5136), 1, + STATE(5224), 1, sym__splattable_type, - STATE(5508), 1, + STATE(5234), 1, sym_splat_type, - STATE(5860), 1, + STATE(5619), 1, sym_proc_type, - STATE(6352), 1, + STATE(5908), 1, sym__bare_type, - STATE(7406), 1, + STATE(7448), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5347), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(5055), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -614300,46 +620778,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [334970] = 19, + [337354] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2272), 1, + ACTIONS(317), 1, anon_sym_COLON_COLON, - ACTIONS(3052), 1, + ACTIONS(2776), 1, sym__constant_segment, - ACTIONS(5340), 1, - anon_sym_LPAREN, - ACTIONS(5345), 1, + ACTIONS(5079), 1, anon_sym_typeof, - ACTIONS(5349), 1, + ACTIONS(5083), 1, sym__start_of_tuple_type, - ACTIONS(5351), 1, + ACTIONS(5085), 1, sym__start_of_named_tuple_type, - ACTIONS(9491), 1, + ACTIONS(5087), 1, + anon_sym_LPAREN, + ACTIONS(9528), 1, anon_sym_DASH_GT, - ACTIONS(9493), 1, + ACTIONS(9530), 1, anon_sym_STAR, - STATE(4886), 1, + STATE(2522), 1, sym_constant, - STATE(4888), 1, + STATE(2524), 1, sym__type, - STATE(5136), 1, + STATE(2835), 1, sym__splattable_type, - STATE(5508), 1, + STATE(2976), 1, sym_splat_type, - STATE(5860), 1, + STATE(3190), 1, sym_proc_type, - STATE(6355), 1, + STATE(3451), 1, sym__bare_type, - STATE(7407), 1, + STATE(7449), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5347), 2, + ACTIONS(5081), 2, sym_self, sym_underscore_type, - STATE(5055), 12, + STATE(2692), 12, sym_typeof, sym_class_type, sym_union_type, @@ -614352,46 +620830,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335041] = 19, + [337425] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4471), 1, + ACTIONS(317), 1, + anon_sym_COLON_COLON, + ACTIONS(2776), 1, + sym__constant_segment, + ACTIONS(5079), 1, + anon_sym_typeof, + ACTIONS(5083), 1, sym__start_of_tuple_type, - ACTIONS(4473), 1, + ACTIONS(5085), 1, sym__start_of_named_tuple_type, - ACTIONS(9477), 1, + ACTIONS(5087), 1, anon_sym_LPAREN, - ACTIONS(9479), 1, + ACTIONS(9528), 1, anon_sym_DASH_GT, - ACTIONS(9481), 1, + ACTIONS(9530), 1, anon_sym_STAR, - ACTIONS(9483), 1, - anon_sym_typeof, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(443), 1, - sym__bare_type, - STATE(2059), 1, - sym__type, - STATE(2077), 1, + STATE(2522), 1, sym_constant, - STATE(2128), 1, + STATE(2524), 1, + sym__type, + STATE(2835), 1, sym__splattable_type, - STATE(2136), 1, + STATE(2976), 1, sym_splat_type, - STATE(2154), 1, + STATE(3190), 1, sym_proc_type, - STATE(7408), 1, + STATE(3516), 1, + sym__bare_type, + STATE(7450), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9489), 2, + ACTIONS(5081), 2, sym_self, sym_underscore_type, - STATE(2095), 12, + STATE(2692), 12, sym_typeof, sym_class_type, sym_union_type, @@ -614404,46 +620882,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335112] = 19, + [337496] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8021), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8026), 1, + anon_sym_typeof, + ACTIONS(8028), 1, + sym__constant_segment, + ACTIONS(8030), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8034), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8036), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7409), 1, + ACTIONS(9520), 1, + anon_sym_DASH_GT, + ACTIONS(9522), 1, + anon_sym_STAR, + STATE(7451), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(7870), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(7872), 1, + sym__type, + STATE(8135), 1, sym__splattable_type, - STATE(9358), 1, - sym_proc_type, - STATE(10877), 1, + STATE(8165), 1, + sym_splat_type, + STATE(8177), 1, sym__bare_type, + STATE(8441), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(8032), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(7900), 12, sym_typeof, sym_class_type, sym_union_type, @@ -614456,46 +620934,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335183] = 19, + [337567] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(8021), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(8026), 1, anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(8028), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(8030), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(8034), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(8036), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(9520), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9522), 1, anon_sym_STAR, - STATE(7410), 1, + STATE(7452), 1, sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(7870), 1, sym_constant, - STATE(9244), 1, + STATE(7872), 1, + sym__type, + STATE(8135), 1, sym__splattable_type, - STATE(9510), 1, + STATE(8148), 1, sym__bare_type, - STATE(9588), 1, + STATE(8165), 1, sym_splat_type, - STATE(10410), 1, + STATE(8441), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(8032), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(7900), 12, sym_typeof, sym_class_type, sym_union_type, @@ -614508,46 +620986,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335254] = 19, + [337638] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4347), 1, - sym__start_of_tuple_type, - ACTIONS(4349), 1, - sym__start_of_named_tuple_type, - ACTIONS(9399), 1, + ACTIONS(5145), 1, anon_sym_LPAREN, - ACTIONS(9401), 1, - anon_sym_DASH_GT, - ACTIONS(9403), 1, - anon_sym_STAR, - ACTIONS(9405), 1, + ACTIONS(5150), 1, anon_sym_typeof, - ACTIONS(9407), 1, + ACTIONS(5152), 1, sym__constant_segment, - ACTIONS(9409), 1, + ACTIONS(5154), 1, anon_sym_COLON_COLON, - STATE(2004), 1, - sym__type, - STATE(2006), 1, + ACTIONS(5158), 1, + sym__start_of_tuple_type, + ACTIONS(5160), 1, + sym__start_of_named_tuple_type, + ACTIONS(9540), 1, + anon_sym_DASH_GT, + ACTIONS(9542), 1, + anon_sym_STAR, + STATE(2804), 1, sym_constant, - STATE(2037), 1, - sym__bare_type, - STATE(2040), 1, + STATE(2805), 1, + sym__type, + STATE(3198), 1, sym__splattable_type, - STATE(2051), 1, + STATE(3524), 1, sym_splat_type, - STATE(2063), 1, + STATE(3608), 1, sym_proc_type, - STATE(7411), 1, + STATE(5753), 1, + sym__bare_type, + STATE(7453), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9411), 2, + ACTIONS(5156), 2, sym_self, sym_underscore_type, - STATE(2012), 12, + STATE(2943), 12, sym_typeof, sym_class_type, sym_union_type, @@ -614560,46 +621038,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335325] = 19, + [337709] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8021), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8026), 1, + anon_sym_typeof, + ACTIONS(8028), 1, + sym__constant_segment, + ACTIONS(8030), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8034), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8036), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7412), 1, + ACTIONS(9520), 1, + anon_sym_DASH_GT, + ACTIONS(9522), 1, + anon_sym_STAR, + STATE(7454), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(7870), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9213), 1, + STATE(7872), 1, + sym__type, + STATE(8135), 1, sym__splattable_type, - STATE(9358), 1, - sym_proc_type, - STATE(10431), 1, + STATE(8160), 1, sym__bare_type, + STATE(8165), 1, + sym_splat_type, + STATE(8441), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(8032), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(7900), 12, sym_typeof, sym_class_type, sym_union_type, @@ -614612,46 +621090,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335396] = 19, + [337780] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8021), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8026), 1, + anon_sym_typeof, + ACTIONS(8028), 1, + sym__constant_segment, + ACTIONS(8030), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8034), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8036), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7413), 1, + ACTIONS(9520), 1, + anon_sym_DASH_GT, + ACTIONS(9522), 1, + anon_sym_STAR, + STATE(7455), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(7870), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(7872), 1, + sym__type, + STATE(8135), 1, sym__splattable_type, - STATE(9358), 1, - sym_proc_type, - STATE(11616), 1, + STATE(8163), 1, sym__bare_type, + STATE(8165), 1, + sym_splat_type, + STATE(8441), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(8032), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(7900), 12, sym_typeof, sym_class_type, sym_union_type, @@ -614664,46 +621142,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335467] = 19, + [337851] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, - anon_sym_COLON_COLON, - ACTIONS(3108), 1, - sym__constant_segment, - ACTIONS(5365), 1, + ACTIONS(8021), 1, anon_sym_LPAREN, - ACTIONS(5370), 1, + ACTIONS(8026), 1, anon_sym_typeof, - ACTIONS(5374), 1, + ACTIONS(8028), 1, + sym__constant_segment, + ACTIONS(8030), 1, + anon_sym_COLON_COLON, + ACTIONS(8034), 1, sym__start_of_tuple_type, - ACTIONS(5376), 1, + ACTIONS(8036), 1, sym__start_of_named_tuple_type, - ACTIONS(9433), 1, + ACTIONS(9520), 1, anon_sym_DASH_GT, - ACTIONS(9435), 1, + ACTIONS(9522), 1, anon_sym_STAR, - STATE(5097), 1, + STATE(7456), 1, + sym_heredoc_body, + STATE(7870), 1, sym_constant, - STATE(5107), 1, + STATE(7872), 1, sym__type, - STATE(5535), 1, + STATE(8135), 1, sym__splattable_type, - STATE(6082), 1, + STATE(8165), 1, sym_splat_type, - STATE(6483), 1, - sym_proc_type, - STATE(6647), 1, + STATE(8170), 1, sym__bare_type, - STATE(7414), 1, - sym_heredoc_body, + STATE(8441), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(8032), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(7900), 12, sym_typeof, sym_class_type, sym_union_type, @@ -614716,46 +621194,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335538] = 19, + [337922] = 19, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(83), 1, sym__constant_segment, ACTIONS(85), 1, anon_sym_COLON_COLON, - ACTIONS(4993), 1, + ACTIONS(5056), 1, anon_sym_typeof, - ACTIONS(4997), 1, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(4999), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(5023), 1, + ACTIONS(5064), 1, anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(9460), 1, anon_sym_DASH_GT, - ACTIONS(9427), 1, + ACTIONS(9462), 1, anon_sym_STAR, - STATE(2391), 1, - sym_constant, STATE(2394), 1, + sym_constant, + STATE(2395), 1, sym__type, - STATE(2531), 1, + STATE(2541), 1, sym__splattable_type, - STATE(2636), 1, + STATE(2608), 1, sym_splat_type, - STATE(2826), 1, + STATE(2818), 1, sym_proc_type, - STATE(2999), 1, + STATE(3094), 1, sym__bare_type, - STATE(7415), 1, + STATE(7457), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -614768,46 +621246,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335609] = 19, + [337993] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(2133), 1, + anon_sym_COLON_COLON, + ACTIONS(3067), 1, + sym__constant_segment, + ACTIONS(5344), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(5349), 1, anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, - anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(9494), 1, anon_sym_DASH_GT, - ACTIONS(9415), 1, + ACTIONS(9496), 1, anon_sym_STAR, - STATE(7416), 1, - sym_heredoc_body, - STATE(8159), 1, - sym__type, - STATE(8192), 1, + STATE(4791), 1, sym_constant, - STATE(9244), 1, + STATE(4793), 1, + sym__type, + STATE(5224), 1, sym__splattable_type, - STATE(9517), 1, - sym__bare_type, - STATE(9588), 1, + STATE(5234), 1, sym_splat_type, - STATE(10410), 1, + STATE(5619), 1, sym_proc_type, + STATE(5911), 1, + sym__bare_type, + STATE(7458), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -614820,98 +621298,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335680] = 19, + [338064] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(83), 1, + sym__constant_segment, + ACTIONS(85), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(5056), 1, + anon_sym_typeof, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7417), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, - sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, - sym__splattable_type, - STATE(9358), 1, - sym_proc_type, - STATE(11754), 1, - sym__bare_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9285), 2, - sym_self, - sym_underscore_type, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [335751] = 19, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(5064), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(9460), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(9462), 1, anon_sym_STAR, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7418), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(2394), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9243), 1, + STATE(2395), 1, + sym__type, + STATE(2541), 1, sym__splattable_type, - STATE(9358), 1, + STATE(2608), 1, + sym_splat_type, + STATE(2818), 1, sym_proc_type, - STATE(11565), 1, + STATE(3054), 1, sym__bare_type, + STATE(7459), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -614924,46 +621350,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335822] = 19, + [338135] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, + ACTIONS(2133), 1, anon_sym_COLON_COLON, - ACTIONS(2537), 1, + ACTIONS(3067), 1, sym__constant_segment, - ACTIONS(5186), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - ACTIONS(5191), 1, + ACTIONS(5349), 1, anon_sym_typeof, - ACTIONS(5195), 1, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(5197), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(9494), 1, anon_sym_DASH_GT, - ACTIONS(9443), 1, + ACTIONS(9496), 1, anon_sym_STAR, - STATE(3256), 1, + STATE(4791), 1, sym_constant, - STATE(3258), 1, + STATE(4793), 1, sym__type, - STATE(3635), 1, + STATE(5224), 1, sym__splattable_type, - STATE(4118), 1, + STATE(5234), 1, sym_splat_type, - STATE(4342), 1, + STATE(5619), 1, sym_proc_type, - STATE(4783), 1, + STATE(5952), 1, sym__bare_type, - STATE(7419), 1, + STATE(7460), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -614976,46 +621402,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335893] = 19, + [338206] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(313), 1, + ACTIONS(575), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(2935), 1, sym__constant_segment, - ACTIONS(5042), 1, + ACTIONS(5098), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, anon_sym_typeof, - ACTIONS(5046), 1, + ACTIONS(5107), 1, sym__start_of_tuple_type, - ACTIONS(5048), 1, + ACTIONS(5109), 1, sym__start_of_named_tuple_type, - ACTIONS(5050), 1, - anon_sym_LPAREN, - ACTIONS(9495), 1, + ACTIONS(9532), 1, anon_sym_DASH_GT, - ACTIONS(9497), 1, + ACTIONS(9534), 1, anon_sym_STAR, - STATE(2488), 1, + STATE(2604), 1, sym_constant, - STATE(2489), 1, + STATE(2626), 1, sym__type, - STATE(2800), 1, + STATE(2980), 1, sym__splattable_type, - STATE(3139), 1, + STATE(3278), 1, sym_splat_type, - STATE(3208), 1, - sym__bare_type, - STATE(3246), 1, + STATE(3456), 1, sym_proc_type, - STATE(7420), 1, + STATE(3730), 1, + sym__bare_type, + STATE(7461), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5044), 2, + ACTIONS(5105), 2, sym_self, sym_underscore_type, - STATE(2592), 12, + STATE(2790), 12, sym_typeof, sym_class_type, sym_union_type, @@ -615028,46 +621454,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [335964] = 19, + [338277] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, + ACTIONS(2133), 1, anon_sym_COLON_COLON, - ACTIONS(2537), 1, + ACTIONS(3067), 1, sym__constant_segment, - ACTIONS(5186), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - ACTIONS(5191), 1, + ACTIONS(5349), 1, anon_sym_typeof, - ACTIONS(5195), 1, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(5197), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(9494), 1, anon_sym_DASH_GT, - ACTIONS(9443), 1, + ACTIONS(9496), 1, anon_sym_STAR, - STATE(3256), 1, + STATE(4791), 1, sym_constant, - STATE(3258), 1, + STATE(4793), 1, sym__type, - STATE(3635), 1, + STATE(5046), 1, sym__splattable_type, - STATE(4118), 1, + STATE(5234), 1, sym_splat_type, - STATE(4342), 1, + STATE(5619), 1, sym_proc_type, - STATE(4848), 1, + STATE(5655), 1, sym__bare_type, - STATE(7421), 1, + STATE(7462), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -615080,46 +621506,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336035] = 19, + [338348] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(2537), 1, + ACTIONS(2067), 1, sym__constant_segment, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5191), 1, + ACTIONS(4997), 1, anon_sym_typeof, - ACTIONS(5195), 1, + ACTIONS(5001), 1, sym__start_of_tuple_type, - ACTIONS(5197), 1, + ACTIONS(5003), 1, sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(5013), 1, + anon_sym_LPAREN, + ACTIONS(9476), 1, anon_sym_DASH_GT, - ACTIONS(9443), 1, + ACTIONS(9478), 1, anon_sym_STAR, - STATE(3256), 1, - sym_constant, - STATE(3258), 1, + STATE(2333), 1, sym__type, - STATE(3635), 1, + STATE(2351), 1, + sym_constant, + STATE(2391), 1, sym__splattable_type, - STATE(4118), 1, + STATE(2440), 1, sym_splat_type, - STATE(4342), 1, + STATE(2536), 1, sym_proc_type, - STATE(4875), 1, + STATE(2539), 1, sym__bare_type, - STATE(7422), 1, + STATE(7463), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(4999), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(2379), 12, sym_typeof, sym_class_type, sym_union_type, @@ -615132,46 +621558,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336106] = 19, + [338419] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, + ACTIONS(575), 1, anon_sym_COLON_COLON, - ACTIONS(2537), 1, + ACTIONS(2935), 1, sym__constant_segment, - ACTIONS(5186), 1, + ACTIONS(5098), 1, anon_sym_LPAREN, - ACTIONS(5191), 1, + ACTIONS(5103), 1, anon_sym_typeof, - ACTIONS(5195), 1, + ACTIONS(5107), 1, sym__start_of_tuple_type, - ACTIONS(5197), 1, + ACTIONS(5109), 1, sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(9532), 1, anon_sym_DASH_GT, - ACTIONS(9443), 1, + ACTIONS(9534), 1, anon_sym_STAR, - STATE(3256), 1, + STATE(2604), 1, sym_constant, - STATE(3258), 1, + STATE(2626), 1, sym__type, - STATE(3635), 1, + STATE(2980), 1, sym__splattable_type, - STATE(4118), 1, + STATE(3278), 1, sym_splat_type, - STATE(4342), 1, + STATE(3456), 1, sym_proc_type, - STATE(4732), 1, + STATE(3761), 1, sym__bare_type, - STATE(7423), 1, + STATE(7464), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(5105), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(2790), 12, sym_typeof, sym_class_type, sym_union_type, @@ -615184,46 +621610,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336177] = 19, + [338490] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, - anon_sym_COLON_COLON, - ACTIONS(2537), 1, - sym__constant_segment, - ACTIONS(5186), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5191), 1, - anon_sym_typeof, - ACTIONS(5195), 1, - sym__start_of_tuple_type, - ACTIONS(5197), 1, - sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9443), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(3256), 1, - sym_constant, - STATE(3258), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7465), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(3635), 1, - sym__splattable_type, - STATE(4118), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(4342), 1, + STATE(9493), 1, sym_proc_type, - STATE(4600), 1, + STATE(9683), 1, + sym__splattable_type, + STATE(10533), 1, sym__bare_type, - STATE(7424), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -615236,46 +621662,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336248] = 19, + [338561] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, + ACTIONS(575), 1, anon_sym_COLON_COLON, - ACTIONS(2537), 1, + ACTIONS(2935), 1, sym__constant_segment, - ACTIONS(5186), 1, + ACTIONS(5098), 1, anon_sym_LPAREN, - ACTIONS(5191), 1, + ACTIONS(5103), 1, anon_sym_typeof, - ACTIONS(5195), 1, + ACTIONS(5107), 1, sym__start_of_tuple_type, - ACTIONS(5197), 1, + ACTIONS(5109), 1, sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(9532), 1, anon_sym_DASH_GT, - ACTIONS(9443), 1, + ACTIONS(9534), 1, anon_sym_STAR, - STATE(3256), 1, + STATE(2604), 1, sym_constant, - STATE(3258), 1, + STATE(2626), 1, sym__type, - STATE(3635), 1, + STATE(2980), 1, sym__splattable_type, - STATE(4118), 1, + STATE(3278), 1, sym_splat_type, - STATE(4342), 1, + STATE(3456), 1, sym_proc_type, - STATE(4601), 1, + STATE(3782), 1, sym__bare_type, - STATE(7425), 1, + STATE(7466), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(5105), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(2790), 12, sym_typeof, sym_class_type, sym_union_type, @@ -615288,46 +621714,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336319] = 19, + [338632] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, - anon_sym_COLON_COLON, - ACTIONS(2537), 1, - sym__constant_segment, - ACTIONS(5186), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5191), 1, - anon_sym_typeof, - ACTIONS(5195), 1, - sym__start_of_tuple_type, - ACTIONS(5197), 1, - sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9443), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(3256), 1, - sym_constant, - STATE(3258), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7467), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(3635), 1, - sym__splattable_type, - STATE(4118), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(4342), 1, + STATE(9493), 1, sym_proc_type, - STATE(4611), 1, + STATE(9703), 1, + sym__splattable_type, + STATE(10540), 1, sym__bare_type, - STATE(7426), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -615340,46 +621766,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336390] = 19, + [338703] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, + ACTIONS(575), 1, anon_sym_COLON_COLON, - ACTIONS(2537), 1, + ACTIONS(2935), 1, sym__constant_segment, - ACTIONS(5186), 1, + ACTIONS(5098), 1, anon_sym_LPAREN, - ACTIONS(5191), 1, + ACTIONS(5103), 1, anon_sym_typeof, - ACTIONS(5195), 1, + ACTIONS(5107), 1, sym__start_of_tuple_type, - ACTIONS(5197), 1, + ACTIONS(5109), 1, sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(9532), 1, anon_sym_DASH_GT, - ACTIONS(9443), 1, + ACTIONS(9534), 1, anon_sym_STAR, - STATE(3256), 1, + STATE(2604), 1, sym_constant, - STATE(3258), 1, + STATE(2626), 1, sym__type, - STATE(3635), 1, + STATE(2980), 1, sym__splattable_type, - STATE(4118), 1, + STATE(3278), 1, sym_splat_type, - STATE(4342), 1, + STATE(3456), 1, sym_proc_type, - STATE(4618), 1, + STATE(3785), 1, sym__bare_type, - STATE(7427), 1, + STATE(7468), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(5105), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(2790), 12, sym_typeof, sym_class_type, sym_union_type, @@ -615392,46 +621818,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336461] = 19, + [338774] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7428), 1, + STATE(7469), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9243), 1, - sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11827), 1, + STATE(9708), 1, + sym__splattable_type, + STATE(10550), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -615444,46 +621870,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336532] = 19, + [338845] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7429), 1, + STATE(7470), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9243), 1, - sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11146), 1, + STATE(9711), 1, + sym__splattable_type, + STATE(10555), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -615496,46 +621922,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336603] = 19, + [338916] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7430), 1, + STATE(7471), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9213), 1, - sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11873), 1, + STATE(9716), 1, + sym__splattable_type, + STATE(10556), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -615548,46 +621974,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336674] = 19, + [338987] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, - anon_sym_DASH_GT, - ACTIONS(9415), 1, - anon_sym_STAR, - STATE(7431), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7472), 1, sym_heredoc_body, - STATE(8159), 1, + STATE(8161), 1, sym__type, - STATE(8192), 1, + STATE(8180), 1, sym_constant, - STATE(9244), 1, - sym__splattable_type, - STATE(9535), 1, - sym__bare_type, - STATE(9588), 1, + STATE(9288), 1, sym_splat_type, - STATE(10410), 1, + STATE(9493), 1, sym_proc_type, + STATE(9717), 1, + sym__splattable_type, + STATE(10557), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -615600,46 +622026,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336745] = 19, + [339058] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7432), 1, + STATE(7473), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9243), 1, - sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11249), 1, + STATE(9718), 1, + sym__splattable_type, + STATE(10559), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -615652,46 +622078,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336816] = 19, + [339129] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4347), 1, + ACTIONS(575), 1, + anon_sym_COLON_COLON, + ACTIONS(2935), 1, + sym__constant_segment, + ACTIONS(5098), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_typeof, + ACTIONS(5107), 1, sym__start_of_tuple_type, - ACTIONS(4349), 1, + ACTIONS(5109), 1, sym__start_of_named_tuple_type, - ACTIONS(9399), 1, - anon_sym_LPAREN, - ACTIONS(9401), 1, + ACTIONS(9532), 1, anon_sym_DASH_GT, - ACTIONS(9403), 1, + ACTIONS(9534), 1, anon_sym_STAR, - ACTIONS(9405), 1, - anon_sym_typeof, - ACTIONS(9407), 1, - sym__constant_segment, - ACTIONS(9409), 1, - anon_sym_COLON_COLON, - STATE(2004), 1, - sym__type, - STATE(2006), 1, + STATE(2604), 1, sym_constant, - STATE(2040), 1, + STATE(2626), 1, + sym__type, + STATE(2980), 1, sym__splattable_type, - STATE(2048), 1, - sym__bare_type, - STATE(2051), 1, + STATE(3278), 1, sym_splat_type, - STATE(2063), 1, + STATE(3456), 1, sym_proc_type, - STATE(7433), 1, + STATE(3801), 1, + sym__bare_type, + STATE(7474), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9411), 2, + ACTIONS(5105), 2, sym_self, sym_underscore_type, - STATE(2012), 12, + STATE(2790), 12, sym_typeof, sym_class_type, sym_union_type, @@ -615704,46 +622130,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336887] = 19, + [339200] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4471), 1, - sym__start_of_tuple_type, - ACTIONS(4473), 1, - sym__start_of_named_tuple_type, - ACTIONS(9477), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9479), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9481), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(9483), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9485), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(494), 1, - sym__bare_type, - STATE(2059), 1, + STATE(7475), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2077), 1, + STATE(8180), 1, sym_constant, - STATE(2128), 1, - sym__splattable_type, - STATE(2136), 1, + STATE(9288), 1, sym_splat_type, - STATE(2154), 1, + STATE(9493), 1, sym_proc_type, - STATE(7434), 1, - sym_heredoc_body, + STATE(9719), 1, + sym__splattable_type, + STATE(10563), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9489), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2095), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -615756,46 +622182,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [336958] = 19, + [339271] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(85), 1, - anon_sym_COLON_COLON, - ACTIONS(4993), 1, - anon_sym_typeof, - ACTIONS(4997), 1, - sym__start_of_tuple_type, - ACTIONS(4999), 1, - sym__start_of_named_tuple_type, - ACTIONS(5023), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9427), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2391), 1, - sym_constant, - STATE(2394), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7476), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2531), 1, - sym__splattable_type, - STATE(2636), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(2826), 1, + STATE(9493), 1, sym_proc_type, - STATE(3002), 1, + STATE(9720), 1, + sym__splattable_type, + STATE(10564), 1, sym__bare_type, - STATE(7435), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -615808,46 +622234,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337029] = 19, + [339342] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, - anon_sym_COLON_COLON, - ACTIONS(2942), 1, - sym__constant_segment, - ACTIONS(5161), 1, - anon_sym_typeof, - ACTIONS(5165), 1, - sym__start_of_tuple_type, - ACTIONS(5167), 1, - sym__start_of_named_tuple_type, - ACTIONS(5169), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9389), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(3026), 1, - sym_constant, - STATE(3027), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7477), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(3426), 1, - sym__splattable_type, - STATE(3716), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(4055), 1, + STATE(9493), 1, sym_proc_type, - STATE(4574), 1, + STATE(9721), 1, + sym__splattable_type, + STATE(10565), 1, sym__bare_type, - STATE(7436), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -615860,46 +622286,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337100] = 19, + [339413] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(85), 1, - anon_sym_COLON_COLON, - ACTIONS(4993), 1, - anon_sym_typeof, - ACTIONS(4997), 1, - sym__start_of_tuple_type, - ACTIONS(4999), 1, - sym__start_of_named_tuple_type, - ACTIONS(5023), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9427), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2391), 1, - sym_constant, - STATE(2394), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7478), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2478), 1, - sym__splattable_type, - STATE(2636), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(2820), 1, - sym__bare_type, - STATE(2826), 1, + STATE(9493), 1, sym_proc_type, - STATE(7437), 1, - sym_heredoc_body, + STATE(9722), 1, + sym__splattable_type, + STATE(10566), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -615912,46 +622338,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337171] = 19, + [339484] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7672), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(7677), 1, - anon_sym_typeof, - ACTIONS(7679), 1, - sym__constant_segment, - ACTIONS(7681), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(7685), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(7687), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9395), 1, - anon_sym_DASH_GT, - ACTIONS(9397), 1, - anon_sym_STAR, - STATE(7438), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7479), 1, sym_heredoc_body, - STATE(7767), 1, + STATE(8161), 1, sym__type, - STATE(7775), 1, + STATE(8180), 1, sym_constant, - STATE(8059), 1, - sym__splattable_type, - STATE(8075), 1, + STATE(9288), 1, sym_splat_type, - STATE(8103), 1, + STATE(9493), 1, sym_proc_type, - STATE(8319), 1, + STATE(9723), 1, + sym__splattable_type, + STATE(10568), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7683), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(7815), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -615964,46 +622390,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337242] = 19, + [339555] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9343), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9348), 1, - anon_sym_typeof, - ACTIONS(9350), 1, - sym__constant_segment, - ACTIONS(9352), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9356), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9358), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9437), 1, - anon_sym_DASH_GT, - ACTIONS(9439), 1, - anon_sym_STAR, - STATE(7439), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7480), 1, sym_heredoc_body, - STATE(8143), 1, - sym_constant, - STATE(8145), 1, + STATE(8161), 1, sym__type, - STATE(9295), 1, - sym__splattable_type, - STATE(9326), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(10217), 1, - sym__bare_type, - STATE(10366), 1, + STATE(9493), 1, sym_proc_type, + STATE(9726), 1, + sym__splattable_type, + STATE(10569), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9354), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8458), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -616016,46 +622442,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337313] = 19, + [339626] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7672), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(7677), 1, - anon_sym_typeof, - ACTIONS(7679), 1, - sym__constant_segment, - ACTIONS(7681), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(7685), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(7687), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9395), 1, - anon_sym_DASH_GT, - ACTIONS(9397), 1, - anon_sym_STAR, - STATE(7440), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7481), 1, sym_heredoc_body, - STATE(7767), 1, + STATE(8161), 1, sym__type, - STATE(7775), 1, + STATE(8180), 1, sym_constant, - STATE(8059), 1, - sym__splattable_type, - STATE(8068), 1, - sym__bare_type, - STATE(8075), 1, + STATE(9288), 1, sym_splat_type, - STATE(8103), 1, + STATE(9493), 1, sym_proc_type, + STATE(9727), 1, + sym__splattable_type, + STATE(10570), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7683), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(7815), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -616068,46 +622494,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337384] = 19, + [339697] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(831), 1, - anon_sym_COLON_COLON, - ACTIONS(2996), 1, - sym__constant_segment, - ACTIONS(5269), 1, - anon_sym_typeof, - ACTIONS(5273), 1, - sym__start_of_tuple_type, - ACTIONS(5275), 1, - sym__start_of_named_tuple_type, - ACTIONS(5277), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9461), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9463), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(4347), 1, - sym_constant, - STATE(4348), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7482), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(4933), 1, - sym__splattable_type, - STATE(5079), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(5129), 1, + STATE(9493), 1, sym_proc_type, - STATE(5646), 1, + STATE(9728), 1, + sym__splattable_type, + STATE(10571), 1, sym__bare_type, - STATE(7441), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5271), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(4663), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -616120,46 +622546,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337455] = 19, + [339768] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(831), 1, + ACTIONS(575), 1, anon_sym_COLON_COLON, - ACTIONS(2996), 1, + ACTIONS(2935), 1, sym__constant_segment, - ACTIONS(5269), 1, + ACTIONS(5098), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, anon_sym_typeof, - ACTIONS(5273), 1, + ACTIONS(5107), 1, sym__start_of_tuple_type, - ACTIONS(5275), 1, + ACTIONS(5109), 1, sym__start_of_named_tuple_type, - ACTIONS(5277), 1, - anon_sym_LPAREN, - ACTIONS(9461), 1, + ACTIONS(9532), 1, anon_sym_DASH_GT, - ACTIONS(9463), 1, + ACTIONS(9534), 1, anon_sym_STAR, - STATE(4347), 1, + STATE(2604), 1, sym_constant, - STATE(4348), 1, + STATE(2626), 1, sym__type, - STATE(4933), 1, + STATE(2980), 1, sym__splattable_type, - STATE(5079), 1, + STATE(3278), 1, sym_splat_type, - STATE(5129), 1, + STATE(3456), 1, sym_proc_type, - STATE(5651), 1, + STATE(3802), 1, sym__bare_type, - STATE(7442), 1, + STATE(7483), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5271), 2, + ACTIONS(5105), 2, sym_self, sym_underscore_type, - STATE(4663), 12, + STATE(2790), 12, sym_typeof, sym_class_type, sym_union_type, @@ -616172,46 +622598,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337526] = 19, + [339839] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7443), 1, + STATE(7484), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9606), 1, + STATE(9729), 1, sym__splattable_type, - STATE(10475), 1, + STATE(10572), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -616224,46 +622650,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337597] = 19, + [339910] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7444), 1, + STATE(7485), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9630), 1, + STATE(9730), 1, sym__splattable_type, - STATE(10485), 1, + STATE(10574), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -616276,46 +622702,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337668] = 19, + [339981] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7445), 1, + STATE(7486), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9635), 1, + STATE(9731), 1, sym__splattable_type, - STATE(10495), 1, + STATE(10575), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -616328,46 +622754,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337739] = 19, + [340052] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7446), 1, + STATE(7487), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9638), 1, + STATE(9732), 1, sym__splattable_type, - STATE(10500), 1, + STATE(10516), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -616380,46 +622806,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337810] = 19, + [340123] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(831), 1, - anon_sym_COLON_COLON, - ACTIONS(2996), 1, - sym__constant_segment, - ACTIONS(5269), 1, - anon_sym_typeof, - ACTIONS(5273), 1, - sym__start_of_tuple_type, - ACTIONS(5275), 1, - sym__start_of_named_tuple_type, - ACTIONS(5277), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9461), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9463), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(4347), 1, - sym_constant, - STATE(4348), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7488), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(4933), 1, - sym__splattable_type, - STATE(5079), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(5129), 1, + STATE(9493), 1, sym_proc_type, - STATE(5654), 1, + STATE(9733), 1, + sym__splattable_type, + STATE(10517), 1, sym__bare_type, - STATE(7447), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5271), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(4663), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -616432,46 +622858,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337881] = 19, + [340194] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7448), 1, + STATE(7489), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9643), 1, + STATE(9734), 1, sym__splattable_type, - STATE(10501), 1, + STATE(10446), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -616484,46 +622910,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [337952] = 19, + [340265] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7449), 1, + STATE(7490), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(9644), 1, + STATE(9735), 1, sym__splattable_type, - STATE(10502), 1, + STATE(10447), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -616536,46 +622962,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338023] = 19, + [340336] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(575), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2935), 1, + sym__constant_segment, + ACTIONS(5098), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_typeof, + ACTIONS(5107), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5109), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7450), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9532), 1, + anon_sym_DASH_GT, + ACTIONS(9534), 1, + anon_sym_STAR, + STATE(2604), 1, sym_constant, - STATE(9205), 1, + STATE(2626), 1, + sym__type, + STATE(2980), 1, + sym__splattable_type, + STATE(3278), 1, sym_splat_type, - STATE(9358), 1, + STATE(3456), 1, sym_proc_type, - STATE(9645), 1, - sym__splattable_type, - STATE(10503), 1, + STATE(3812), 1, sym__bare_type, + STATE(7491), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5105), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2790), 12, sym_typeof, sym_class_type, sym_union_type, @@ -616588,46 +623014,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338094] = 19, + [340407] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(575), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2935), 1, + sym__constant_segment, + ACTIONS(5098), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, + anon_sym_typeof, + ACTIONS(5107), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5109), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7451), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9532), 1, + anon_sym_DASH_GT, + ACTIONS(9534), 1, + anon_sym_STAR, + STATE(2604), 1, sym_constant, - STATE(9205), 1, + STATE(2626), 1, + sym__type, + STATE(2980), 1, + sym__splattable_type, + STATE(3278), 1, sym_splat_type, - STATE(9358), 1, + STATE(3456), 1, sym_proc_type, - STATE(9646), 1, - sym__splattable_type, - STATE(10446), 1, + STATE(3819), 1, sym__bare_type, + STATE(7492), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5105), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2790), 12, sym_typeof, sym_class_type, sym_union_type, @@ -616640,46 +623066,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338165] = 19, + [340478] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(5223), 1, + anon_sym_typeof, + ACTIONS(5225), 1, + sym__constant_segment, + ACTIONS(5227), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(5231), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5233), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7452), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5239), 1, + anon_sym_LPAREN, + ACTIONS(9524), 1, + anon_sym_DASH_GT, + ACTIONS(9526), 1, + anon_sym_STAR, + STATE(3316), 1, sym_constant, - STATE(9205), 1, + STATE(3319), 1, + sym__type, + STATE(3611), 1, + sym__splattable_type, + STATE(4094), 1, sym_splat_type, - STATE(9358), 1, + STATE(4339), 1, sym_proc_type, - STATE(9647), 1, - sym__splattable_type, - STATE(10447), 1, + STATE(6574), 1, sym__bare_type, + STATE(7493), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5229), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(3579), 12, sym_typeof, sym_class_type, sym_union_type, @@ -616692,46 +623118,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338236] = 19, + [340549] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(2133), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3067), 1, + sym__constant_segment, + ACTIONS(5344), 1, + anon_sym_LPAREN, + ACTIONS(5349), 1, + anon_sym_typeof, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7453), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9494), 1, + anon_sym_DASH_GT, + ACTIONS(9496), 1, + anon_sym_STAR, + STATE(4791), 1, sym_constant, - STATE(9205), 1, + STATE(4793), 1, + sym__type, + STATE(5046), 1, + sym__splattable_type, + STATE(5234), 1, sym_splat_type, - STATE(9358), 1, + STATE(5619), 1, sym_proc_type, - STATE(9648), 1, - sym__splattable_type, - STATE(10376), 1, + STATE(6101), 1, sym__bare_type, + STATE(7494), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -616744,46 +623170,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338307] = 19, + [340620] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(83), 1, + sym__constant_segment, + ACTIONS(85), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(5056), 1, + anon_sym_typeof, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7454), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5064), 1, + anon_sym_LPAREN, + ACTIONS(9460), 1, + anon_sym_DASH_GT, + ACTIONS(9462), 1, + anon_sym_STAR, + STATE(2394), 1, sym_constant, - STATE(9205), 1, + STATE(2395), 1, + sym__type, + STATE(2538), 1, + sym__splattable_type, + STATE(2608), 1, sym_splat_type, - STATE(9358), 1, + STATE(2818), 1, sym_proc_type, - STATE(9649), 1, - sym__splattable_type, - STATE(10377), 1, + STATE(2970), 1, sym__bare_type, + STATE(7495), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -616796,46 +623222,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338378] = 19, + [340691] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(83), 1, + sym__constant_segment, + ACTIONS(85), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(5056), 1, + anon_sym_typeof, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7455), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5064), 1, + anon_sym_LPAREN, + ACTIONS(9460), 1, + anon_sym_DASH_GT, + ACTIONS(9462), 1, + anon_sym_STAR, + STATE(2394), 1, sym_constant, - STATE(9205), 1, + STATE(2395), 1, + sym__type, + STATE(2538), 1, + sym__splattable_type, + STATE(2608), 1, sym_splat_type, - STATE(9358), 1, + STATE(2818), 1, sym_proc_type, - STATE(9650), 1, - sym__splattable_type, - STATE(10379), 1, + STATE(2979), 1, sym__bare_type, + STATE(7496), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -616848,46 +623274,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338449] = 19, + [340762] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(831), 1, - anon_sym_COLON_COLON, - ACTIONS(2996), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(5269), 1, + ACTIONS(85), 1, + anon_sym_COLON_COLON, + ACTIONS(5056), 1, anon_sym_typeof, - ACTIONS(5273), 1, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(5275), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(5277), 1, + ACTIONS(5064), 1, anon_sym_LPAREN, - ACTIONS(9461), 1, + ACTIONS(9460), 1, anon_sym_DASH_GT, - ACTIONS(9463), 1, + ACTIONS(9462), 1, anon_sym_STAR, - STATE(4347), 1, + STATE(2394), 1, sym_constant, - STATE(4348), 1, + STATE(2395), 1, sym__type, - STATE(4933), 1, + STATE(2538), 1, sym__splattable_type, - STATE(5079), 1, + STATE(2608), 1, sym_splat_type, - STATE(5129), 1, + STATE(2818), 1, sym_proc_type, - STATE(5428), 1, + STATE(3067), 1, sym__bare_type, - STATE(7456), 1, + STATE(7497), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5271), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(4663), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -616900,46 +623326,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338520] = 19, + [340833] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(2133), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3067), 1, + sym__constant_segment, + ACTIONS(5344), 1, + anon_sym_LPAREN, + ACTIONS(5349), 1, + anon_sym_typeof, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7457), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9494), 1, + anon_sym_DASH_GT, + ACTIONS(9496), 1, + anon_sym_STAR, + STATE(4791), 1, sym_constant, - STATE(9205), 1, + STATE(4793), 1, + sym__type, + STATE(5224), 1, + sym__splattable_type, + STATE(5234), 1, sym_splat_type, - STATE(9358), 1, + STATE(5619), 1, sym_proc_type, - STATE(9653), 1, - sym__splattable_type, - STATE(10380), 1, + STATE(5967), 1, sym__bare_type, + STATE(7498), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -616952,46 +623378,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338591] = 19, + [340904] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7458), 1, + STATE(7499), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9654), 1, + STATE(9365), 1, sym__splattable_type, - STATE(10381), 1, + STATE(9493), 1, + sym_proc_type, + STATE(10474), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617004,46 +623430,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338662] = 19, + [340975] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(9393), 1, + anon_sym_typeof, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7459), 1, + ACTIONS(9468), 1, + anon_sym_DASH_GT, + ACTIONS(9470), 1, + anon_sym_STAR, + STATE(7500), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8299), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9655), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(10382), 1, + STATE(9404), 1, + sym_splat_type, + STATE(9507), 1, sym__bare_type, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617056,46 +623482,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338733] = 19, + [341046] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(1675), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2965), 1, + sym__constant_segment, + ACTIONS(5194), 1, + anon_sym_LPAREN, + ACTIONS(5199), 1, + anon_sym_typeof, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7460), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9436), 1, + anon_sym_DASH_GT, + ACTIONS(9438), 1, + anon_sym_STAR, + STATE(3180), 1, sym_constant, - STATE(9205), 1, + STATE(3182), 1, + sym__type, + STATE(3459), 1, + sym__splattable_type, + STATE(3845), 1, sym_splat_type, - STATE(9358), 1, + STATE(4301), 1, sym_proc_type, - STATE(9656), 1, - sym__splattable_type, - STATE(10383), 1, + STATE(4438), 1, sym__bare_type, + STATE(7501), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617108,46 +623534,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338804] = 19, + [341117] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7461), 1, + STATE(7502), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9657), 1, + STATE(9365), 1, sym__splattable_type, - STATE(10384), 1, + STATE(9493), 1, + sym_proc_type, + STATE(10259), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617160,46 +623586,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338875] = 19, + [341188] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(2133), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3067), 1, + sym__constant_segment, + ACTIONS(5344), 1, + anon_sym_LPAREN, + ACTIONS(5349), 1, + anon_sym_typeof, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7462), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9494), 1, + anon_sym_DASH_GT, + ACTIONS(9496), 1, + anon_sym_STAR, + STATE(4791), 1, sym_constant, - STATE(9205), 1, + STATE(4793), 1, + sym__type, + STATE(5046), 1, + sym__splattable_type, + STATE(5234), 1, sym_splat_type, - STATE(9358), 1, + STATE(5619), 1, sym_proc_type, - STATE(9658), 1, - sym__splattable_type, - STATE(10385), 1, + STATE(5861), 1, sym__bare_type, + STATE(7503), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617212,46 +623638,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [338946] = 19, + [341259] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(9369), 1, + anon_sym_typeof, + ACTIONS(9371), 1, + sym__constant_segment, + ACTIONS(9373), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(9377), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(9379), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7463), 1, + ACTIONS(9405), 1, + anon_sym_LPAREN, + ACTIONS(9440), 1, + anon_sym_DASH_GT, + ACTIONS(9442), 1, + anon_sym_STAR, + STATE(7504), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8251), 1, sym_constant, - STATE(9205), 1, + STATE(8256), 1, + sym__type, + STATE(9353), 1, + sym__splattable_type, + STATE(9434), 1, sym_splat_type, - STATE(9358), 1, + STATE(10191), 1, sym_proc_type, - STATE(9659), 1, - sym__splattable_type, - STATE(10386), 1, + STATE(10404), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9375), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8523), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617264,46 +623690,98 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339017] = 19, + [341330] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(9369), 1, + anon_sym_typeof, + ACTIONS(9371), 1, + sym__constant_segment, + ACTIONS(9373), 1, + anon_sym_COLON_COLON, + ACTIONS(9377), 1, + sym__start_of_tuple_type, + ACTIONS(9379), 1, + sym__start_of_named_tuple_type, + ACTIONS(9405), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(9440), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(9442), 1, anon_sym_STAR, - ACTIONS(8261), 1, + STATE(7505), 1, + sym_heredoc_body, + STATE(8251), 1, + sym_constant, + STATE(8256), 1, + sym__type, + STATE(9353), 1, + sym__splattable_type, + STATE(9434), 1, + sym_splat_type, + STATE(9899), 1, + sym__bare_type, + STATE(10191), 1, + sym_proc_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9375), 2, + sym_self, + sym_underscore_type, + STATE(8523), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [341401] = 19, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(2133), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3067), 1, + sym__constant_segment, + ACTIONS(5344), 1, + anon_sym_LPAREN, + ACTIONS(5349), 1, + anon_sym_typeof, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7464), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9494), 1, + anon_sym_DASH_GT, + ACTIONS(9496), 1, + anon_sym_STAR, + STATE(4791), 1, sym_constant, - STATE(9205), 1, + STATE(4793), 1, + sym__type, + STATE(5224), 1, + sym__splattable_type, + STATE(5234), 1, sym_splat_type, - STATE(9358), 1, + STATE(5619), 1, sym_proc_type, - STATE(9660), 1, - sym__splattable_type, - STATE(10387), 1, + STATE(6020), 1, sym__bare_type, + STATE(7506), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617316,46 +623794,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339088] = 19, + [341472] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(9393), 1, + anon_sym_typeof, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7465), 1, + ACTIONS(9468), 1, + anon_sym_DASH_GT, + ACTIONS(9470), 1, + anon_sym_STAR, + STATE(7507), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8299), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9661), 1, + STATE(8353), 1, + sym__type, + STATE(9390), 1, sym__splattable_type, - STATE(10388), 1, + STATE(9404), 1, + sym_splat_type, + STATE(9489), 1, sym__bare_type, + STATE(10472), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617368,46 +623846,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339159] = 19, + [341543] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(2133), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3067), 1, + sym__constant_segment, + ACTIONS(5344), 1, + anon_sym_LPAREN, + ACTIONS(5349), 1, + anon_sym_typeof, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7466), 1, - sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + ACTIONS(9494), 1, + anon_sym_DASH_GT, + ACTIONS(9496), 1, + anon_sym_STAR, + STATE(4791), 1, sym_constant, - STATE(9205), 1, + STATE(4793), 1, + sym__type, + STATE(5046), 1, + sym__splattable_type, + STATE(5234), 1, sym_splat_type, - STATE(9358), 1, + STATE(5619), 1, sym_proc_type, - STATE(9662), 1, - sym__splattable_type, - STATE(10389), 1, + STATE(5871), 1, sym__bare_type, + STATE(7508), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617420,46 +623898,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339230] = 19, + [341614] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9295), 1, + ACTIONS(7094), 1, anon_sym_LPAREN, - ACTIONS(9297), 1, - anon_sym_DASH_GT, - ACTIONS(9299), 1, - anon_sym_STAR, - ACTIONS(9303), 1, + ACTIONS(7099), 1, + anon_sym_typeof, + ACTIONS(7101), 1, sym__constant_segment, - ACTIONS(9305), 1, + ACTIONS(7103), 1, anon_sym_COLON_COLON, - ACTIONS(9309), 1, + ACTIONS(7107), 1, sym__start_of_tuple_type, - ACTIONS(9311), 1, + ACTIONS(7109), 1, sym__start_of_named_tuple_type, - ACTIONS(9336), 1, - anon_sym_typeof, - STATE(7467), 1, + ACTIONS(9464), 1, + anon_sym_DASH_GT, + ACTIONS(9466), 1, + anon_sym_STAR, + STATE(7509), 1, sym_heredoc_body, - STATE(8195), 1, - sym__type, - STATE(8312), 1, + STATE(7692), 1, sym_constant, - STATE(9208), 1, + STATE(7723), 1, + sym__type, + STATE(7827), 1, sym__splattable_type, - STATE(9469), 1, + STATE(7879), 1, sym_splat_type, - STATE(10360), 1, + STATE(7881), 1, sym__bare_type, - STATE(10412), 1, + STATE(7946), 1, sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9338), 2, + ACTIONS(7105), 2, sym_self, sym_underscore_type, - STATE(8437), 12, + STATE(7763), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617472,46 +623950,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339301] = 19, + [341685] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, - anon_sym_COLON_COLON, - ACTIONS(3038), 1, - sym__constant_segment, - ACTIONS(5292), 1, + ACTIONS(7094), 1, + anon_sym_LPAREN, + ACTIONS(7099), 1, anon_sym_typeof, - ACTIONS(5296), 1, + ACTIONS(7101), 1, + sym__constant_segment, + ACTIONS(7103), 1, + anon_sym_COLON_COLON, + ACTIONS(7107), 1, sym__start_of_tuple_type, - ACTIONS(5298), 1, + ACTIONS(7109), 1, sym__start_of_named_tuple_type, - ACTIONS(5300), 1, - anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(9464), 1, anon_sym_DASH_GT, - ACTIONS(9423), 1, + ACTIONS(9466), 1, anon_sym_STAR, - STATE(4834), 1, + STATE(7510), 1, + sym_heredoc_body, + STATE(7692), 1, sym_constant, - STATE(4835), 1, + STATE(7723), 1, sym__type, - STATE(5397), 1, - sym_splat_type, - STATE(5425), 1, + STATE(7827), 1, sym__splattable_type, - STATE(5643), 1, - sym_proc_type, - STATE(5802), 1, + STATE(7873), 1, sym__bare_type, - STATE(7468), 1, - sym_heredoc_body, + STATE(7879), 1, + sym_splat_type, + STATE(7946), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(7105), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(7763), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617524,46 +624002,98 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339372] = 19, + [341756] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(445), 1, - anon_sym_COLON_COLON, - ACTIONS(2890), 1, - sym__constant_segment, - ACTIONS(5084), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5089), 1, - anon_sym_typeof, - ACTIONS(5093), 1, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(5095), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9457), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7511), 1, + sym_heredoc_body, + STATE(8161), 1, + sym__type, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, + sym__splattable_type, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, + sym_proc_type, + STATE(11862), 1, + sym__bare_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9333), 2, + sym_self, + sym_underscore_type, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [341827] = 19, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9459), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2803), 1, - sym_constant, - STATE(2804), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7512), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(3251), 1, + STATE(8180), 1, + sym_constant, + STATE(9274), 1, sym__splattable_type, - STATE(3572), 1, + STATE(9288), 1, sym_splat_type, - STATE(3815), 1, + STATE(9493), 1, sym_proc_type, - STATE(4154), 1, + STATE(11863), 1, sym__bare_type, - STATE(7469), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5091), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(3166), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617576,46 +624106,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339443] = 19, + [341898] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(2537), 1, + ACTIONS(3141), 1, sym__constant_segment, - ACTIONS(5186), 1, + ACTIONS(5402), 1, anon_sym_LPAREN, - ACTIONS(5191), 1, + ACTIONS(5407), 1, anon_sym_typeof, - ACTIONS(5195), 1, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(5197), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(9472), 1, anon_sym_DASH_GT, - ACTIONS(9443), 1, + ACTIONS(9474), 1, anon_sym_STAR, - STATE(3256), 1, + STATE(5101), 1, sym_constant, - STATE(3258), 1, + STATE(5115), 1, sym__type, - STATE(3769), 1, + STATE(5775), 1, sym__splattable_type, - STATE(4118), 1, + STATE(6165), 1, sym_splat_type, - STATE(4342), 1, + STATE(6476), 1, sym_proc_type, - STATE(4646), 1, + STATE(6734), 1, sym__bare_type, - STATE(7470), 1, + STATE(7513), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617628,46 +624158,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339514] = 19, + [341969] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(445), 1, - anon_sym_COLON_COLON, - ACTIONS(2890), 1, - sym__constant_segment, - ACTIONS(5084), 1, + ACTIONS(7094), 1, anon_sym_LPAREN, - ACTIONS(5089), 1, + ACTIONS(7099), 1, anon_sym_typeof, - ACTIONS(5093), 1, + ACTIONS(7101), 1, + sym__constant_segment, + ACTIONS(7103), 1, + anon_sym_COLON_COLON, + ACTIONS(7107), 1, sym__start_of_tuple_type, - ACTIONS(5095), 1, + ACTIONS(7109), 1, sym__start_of_named_tuple_type, - ACTIONS(9457), 1, + ACTIONS(9464), 1, anon_sym_DASH_GT, - ACTIONS(9459), 1, + ACTIONS(9466), 1, anon_sym_STAR, - STATE(2803), 1, + STATE(7514), 1, + sym_heredoc_body, + STATE(7692), 1, sym_constant, - STATE(2804), 1, + STATE(7723), 1, sym__type, - STATE(3251), 1, + STATE(7827), 1, sym__splattable_type, - STATE(3572), 1, + STATE(7879), 1, sym_splat_type, - STATE(3815), 1, - sym_proc_type, - STATE(4141), 1, + STATE(7891), 1, sym__bare_type, - STATE(7471), 1, - sym_heredoc_body, + STATE(7946), 1, + sym_proc_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5091), 2, + ACTIONS(7105), 2, sym_self, sym_underscore_type, - STATE(3166), 12, + STATE(7763), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617680,46 +624210,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339585] = 19, + [342040] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(445), 1, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(2890), 1, + ACTIONS(3141), 1, sym__constant_segment, - ACTIONS(5084), 1, + ACTIONS(5402), 1, anon_sym_LPAREN, - ACTIONS(5089), 1, + ACTIONS(5407), 1, anon_sym_typeof, - ACTIONS(5093), 1, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(5095), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(9457), 1, + ACTIONS(9472), 1, anon_sym_DASH_GT, - ACTIONS(9459), 1, + ACTIONS(9474), 1, anon_sym_STAR, - STATE(2803), 1, + STATE(5101), 1, sym_constant, - STATE(2804), 1, + STATE(5115), 1, sym__type, - STATE(3251), 1, + STATE(5775), 1, sym__splattable_type, - STATE(3572), 1, + STATE(6165), 1, sym_splat_type, - STATE(3815), 1, + STATE(6476), 1, sym_proc_type, - STATE(3905), 1, + STATE(6803), 1, sym__bare_type, - STATE(7472), 1, + STATE(7515), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5091), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(3166), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617732,46 +624262,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339656] = 19, + [342111] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(85), 1, - anon_sym_COLON_COLON, - ACTIONS(4993), 1, - anon_sym_typeof, - ACTIONS(4997), 1, - sym__start_of_tuple_type, - ACTIONS(4999), 1, - sym__start_of_named_tuple_type, - ACTIONS(5023), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9427), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2391), 1, - sym_constant, - STATE(2394), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7516), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2531), 1, - sym__splattable_type, - STATE(2636), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(2826), 1, + STATE(9365), 1, + sym__splattable_type, + STATE(9493), 1, sym_proc_type, - STATE(3059), 1, + STATE(11501), 1, sym__bare_type, - STATE(7473), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617784,46 +624314,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339727] = 19, + [342182] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(445), 1, + ACTIONS(2133), 1, anon_sym_COLON_COLON, - ACTIONS(2890), 1, + ACTIONS(3067), 1, sym__constant_segment, - ACTIONS(5084), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - ACTIONS(5089), 1, + ACTIONS(5349), 1, anon_sym_typeof, - ACTIONS(5093), 1, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(5095), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - ACTIONS(9457), 1, + ACTIONS(9494), 1, anon_sym_DASH_GT, - ACTIONS(9459), 1, + ACTIONS(9496), 1, anon_sym_STAR, - STATE(2803), 1, + STATE(4791), 1, sym_constant, - STATE(2804), 1, + STATE(4793), 1, sym__type, - STATE(3251), 1, + STATE(5046), 1, sym__splattable_type, - STATE(3572), 1, + STATE(5234), 1, sym_splat_type, - STATE(3815), 1, + STATE(5619), 1, sym_proc_type, - STATE(3910), 1, + STATE(5908), 1, sym__bare_type, - STATE(7474), 1, + STATE(7517), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5091), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(3166), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617836,46 +624366,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339798] = 19, + [342253] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4347), 1, - sym__start_of_tuple_type, - ACTIONS(4349), 1, - sym__start_of_named_tuple_type, - ACTIONS(9399), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9401), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9403), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(9405), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9407), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9409), 1, - anon_sym_COLON_COLON, - STATE(2004), 1, + STATE(7518), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2006), 1, + STATE(8180), 1, sym_constant, - STATE(2035), 1, - sym__bare_type, - STATE(2040), 1, - sym__splattable_type, - STATE(2051), 1, + STATE(9288), 1, sym_splat_type, - STATE(2063), 1, + STATE(9493), 1, sym_proc_type, - STATE(7475), 1, - sym_heredoc_body, + STATE(9700), 1, + sym__splattable_type, + STATE(10546), 1, + sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9411), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2012), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617888,46 +624418,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339869] = 19, + [342324] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(445), 1, + ACTIONS(2133), 1, anon_sym_COLON_COLON, - ACTIONS(2890), 1, + ACTIONS(3067), 1, sym__constant_segment, - ACTIONS(5084), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - ACTIONS(5089), 1, + ACTIONS(5349), 1, anon_sym_typeof, - ACTIONS(5093), 1, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(5095), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - ACTIONS(9457), 1, + ACTIONS(9494), 1, anon_sym_DASH_GT, - ACTIONS(9459), 1, + ACTIONS(9496), 1, anon_sym_STAR, - STATE(2803), 1, + STATE(4791), 1, sym_constant, - STATE(2804), 1, + STATE(4793), 1, sym__type, - STATE(3251), 1, + STATE(5224), 1, sym__splattable_type, - STATE(3572), 1, + STATE(5234), 1, sym_splat_type, - STATE(3815), 1, + STATE(5619), 1, sym_proc_type, - STATE(3950), 1, + STATE(5871), 1, sym__bare_type, - STATE(7476), 1, + STATE(7519), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5091), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(3166), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617940,46 +624470,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [339940] = 19, + [342395] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(445), 1, + ACTIONS(2133), 1, anon_sym_COLON_COLON, - ACTIONS(2890), 1, + ACTIONS(3067), 1, sym__constant_segment, - ACTIONS(5084), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - ACTIONS(5089), 1, + ACTIONS(5349), 1, anon_sym_typeof, - ACTIONS(5093), 1, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(5095), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - ACTIONS(9457), 1, + ACTIONS(9494), 1, anon_sym_DASH_GT, - ACTIONS(9459), 1, + ACTIONS(9496), 1, anon_sym_STAR, - STATE(2803), 1, + STATE(4791), 1, sym_constant, - STATE(2804), 1, + STATE(4793), 1, sym__type, - STATE(3251), 1, + STATE(5046), 1, sym__splattable_type, - STATE(3572), 1, + STATE(5234), 1, sym_splat_type, - STATE(3815), 1, + STATE(5619), 1, sym_proc_type, - STATE(3957), 1, + STATE(5911), 1, sym__bare_type, - STATE(7477), 1, + STATE(7520), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5091), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(3166), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -617992,46 +624522,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340011] = 19, + [342466] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(445), 1, + ACTIONS(2133), 1, anon_sym_COLON_COLON, - ACTIONS(2890), 1, + ACTIONS(3067), 1, sym__constant_segment, - ACTIONS(5084), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - ACTIONS(5089), 1, + ACTIONS(5349), 1, anon_sym_typeof, - ACTIONS(5093), 1, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(5095), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - ACTIONS(9457), 1, + ACTIONS(9494), 1, anon_sym_DASH_GT, - ACTIONS(9459), 1, + ACTIONS(9496), 1, anon_sym_STAR, - STATE(2803), 1, + STATE(4791), 1, sym_constant, - STATE(2804), 1, + STATE(4793), 1, sym__type, - STATE(3251), 1, + STATE(5046), 1, sym__splattable_type, - STATE(3572), 1, + STATE(5234), 1, sym_splat_type, - STATE(3815), 1, + STATE(5619), 1, sym_proc_type, - STATE(3973), 1, + STATE(5952), 1, sym__bare_type, - STATE(7478), 1, + STATE(7521), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5091), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(3166), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -618044,46 +624574,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340082] = 19, + [342537] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, + ACTIONS(2133), 1, anon_sym_COLON_COLON, - ACTIONS(2942), 1, + ACTIONS(3067), 1, sym__constant_segment, - ACTIONS(5161), 1, + ACTIONS(5344), 1, + anon_sym_LPAREN, + ACTIONS(5349), 1, anon_sym_typeof, - ACTIONS(5165), 1, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(5167), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - ACTIONS(5169), 1, - anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(9494), 1, anon_sym_DASH_GT, - ACTIONS(9389), 1, + ACTIONS(9496), 1, anon_sym_STAR, - STATE(3026), 1, + STATE(4791), 1, sym_constant, - STATE(3027), 1, + STATE(4793), 1, sym__type, - STATE(3426), 1, + STATE(5046), 1, sym__splattable_type, - STATE(3716), 1, + STATE(5234), 1, sym_splat_type, - STATE(4055), 1, + STATE(5619), 1, sym_proc_type, - STATE(4513), 1, + STATE(5967), 1, sym__bare_type, - STATE(7479), 1, + STATE(7522), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -618096,46 +624626,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340153] = 19, + [342608] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(85), 1, - anon_sym_COLON_COLON, - ACTIONS(4993), 1, - anon_sym_typeof, - ACTIONS(4997), 1, - sym__start_of_tuple_type, - ACTIONS(4999), 1, - sym__start_of_named_tuple_type, - ACTIONS(5023), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9427), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2391), 1, - sym_constant, - STATE(2394), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7523), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(2531), 1, - sym__splattable_type, - STATE(2636), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(2826), 1, + STATE(9365), 1, + sym__splattable_type, + STATE(9493), 1, sym_proc_type, - STATE(3119), 1, + STATE(11805), 1, sym__bare_type, - STATE(7480), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -618148,46 +624678,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340224] = 19, + [342679] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7481), 1, + STATE(7524), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9213), 1, + STATE(9365), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11404), 1, + STATE(11819), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -618200,46 +624730,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340295] = 19, + [342750] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7482), 1, + STATE(7525), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9358), 1, - sym_proc_type, - STATE(9625), 1, + STATE(9365), 1, sym__splattable_type, - STATE(10490), 1, + STATE(9493), 1, + sym_proc_type, + STATE(11833), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -618252,46 +624782,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340366] = 19, + [342821] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(445), 1, - anon_sym_COLON_COLON, - ACTIONS(2890), 1, - sym__constant_segment, - ACTIONS(5084), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(5089), 1, - anon_sym_typeof, - ACTIONS(5093), 1, - sym__start_of_tuple_type, - ACTIONS(5095), 1, - sym__start_of_named_tuple_type, - ACTIONS(9457), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9459), 1, + ACTIONS(8262), 1, anon_sym_STAR, - STATE(2803), 1, - sym_constant, - STATE(2804), 1, + ACTIONS(8268), 1, + anon_sym_COLON_COLON, + ACTIONS(8274), 1, + sym__start_of_tuple_type, + ACTIONS(8276), 1, + sym__start_of_named_tuple_type, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7526), 1, + sym_heredoc_body, + STATE(8161), 1, sym__type, - STATE(3251), 1, - sym__splattable_type, - STATE(3572), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(3815), 1, + STATE(9365), 1, + sym__splattable_type, + STATE(9493), 1, sym_proc_type, - STATE(3975), 1, + STATE(11847), 1, sym__bare_type, - STATE(7483), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5091), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(3166), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -618304,46 +624834,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340437] = 19, + [342892] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7484), 1, + STATE(7527), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9213), 1, + STATE(9365), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11708), 1, + STATE(11861), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -618356,46 +624886,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340508] = 19, + [342963] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7485), 1, + STATE(7528), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9213), 1, + STATE(9365), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11722), 1, + STATE(11875), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -618408,46 +624938,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340579] = 19, + [343034] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7486), 1, + STATE(7529), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9213), 1, + STATE(9365), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11736), 1, + STATE(11889), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -618460,46 +624990,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340650] = 19, + [343105] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7487), 1, + STATE(7530), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9213), 1, + STATE(9365), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11750), 1, + STATE(11903), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -618512,46 +625042,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340721] = 19, + [343176] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7488), 1, + STATE(7531), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9213), 1, + STATE(9365), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11764), 1, + STATE(11917), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -618564,46 +625094,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340792] = 19, + [343247] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7489), 1, + STATE(7532), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9213), 1, + STATE(9365), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11778), 1, + STATE(11931), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -618616,46 +625146,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340863] = 19, + [343318] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7490), 1, + STATE(7533), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9213), 1, + STATE(9365), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11791), 1, + STATE(11945), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -618668,46 +625198,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [340934] = 19, + [343389] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7491), 1, + STATE(7534), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9213), 1, + STATE(9365), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11805), 1, + STATE(11959), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -618720,46 +625250,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341005] = 19, + [343460] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7492), 1, + STATE(7535), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9213), 1, + STATE(9365), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9493), 1, sym_proc_type, - STATE(11819), 1, + STATE(11969), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -618772,46 +625302,98 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341076] = 19, + [343531] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7493), 1, + STATE(7536), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9213), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(11833), 1, + STATE(11993), 1, + sym__bare_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9333), 2, + sym_self, + sym_underscore_type, + STATE(8289), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [343602] = 19, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(4384), 1, + sym__start_of_tuple_type, + ACTIONS(4386), 1, + sym__start_of_named_tuple_type, + ACTIONS(9502), 1, + anon_sym_LPAREN, + ACTIONS(9504), 1, + anon_sym_DASH_GT, + ACTIONS(9506), 1, + anon_sym_STAR, + ACTIONS(9508), 1, + anon_sym_typeof, + ACTIONS(9510), 1, + sym__constant_segment, + ACTIONS(9512), 1, + anon_sym_COLON_COLON, + STATE(2006), 1, + sym__type, + STATE(2008), 1, + sym_constant, + STATE(2037), 1, sym__bare_type, + STATE(2042), 1, + sym__splattable_type, + STATE(2055), 1, + sym_splat_type, + STATE(2073), 1, + sym_proc_type, + STATE(7537), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9514), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2024), 12, sym_typeof, sym_class_type, sym_union_type, @@ -618824,46 +625406,46 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341147] = 19, + [343673] = 19, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7494), 1, + STATE(7538), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9213), 1, + STATE(9274), 1, sym__splattable_type, - STATE(9358), 1, + STATE(9288), 1, + sym_splat_type, + STATE(9493), 1, sym_proc_type, - STATE(11847), 1, + STATE(10799), 1, sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -618876,46 +625458,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341218] = 19, + [343744] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7495), 1, + ACTIONS(9548), 1, + anon_sym_RPAREN, + STATE(7539), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9213), 1, + STATE(9516), 1, sym__splattable_type, - STATE(9358), 1, - sym_proc_type, - STATE(11861), 1, - sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -618928,46 +625508,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341289] = 19, + [343812] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7496), 1, + ACTIONS(9550), 1, + anon_sym_RPAREN, + STATE(7540), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9243), 1, + STATE(9516), 1, sym__splattable_type, - STATE(9358), 1, - sym_proc_type, - STATE(11570), 1, - sym__bare_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -618980,44 +625558,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341360] = 18, + [343880] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9499), 1, - anon_sym_RBRACE, - ACTIONS(9501), 1, - anon_sym_STAR, - STATE(7497), 1, + ACTIONS(9552), 1, + anon_sym_RPAREN, + STATE(7541), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -619030,44 +625608,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341428] = 18, + [343948] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9503), 1, - anon_sym_RBRACE, - STATE(7498), 1, + ACTIONS(9554), 1, + anon_sym_RPAREN, + STATE(7542), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -619080,44 +625658,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341496] = 18, + [344016] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9505), 1, - anon_sym_RBRACE, - STATE(7499), 1, + ACTIONS(9556), 1, + anon_sym_RPAREN, + STATE(7543), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -619130,44 +625708,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341564] = 18, + [344084] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9507), 1, - anon_sym_RBRACE, - STATE(7500), 1, + ACTIONS(9558), 1, + anon_sym_RPAREN, + STATE(7544), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -619180,44 +625758,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341632] = 18, + [344152] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9509), 1, - anon_sym_RBRACE, - STATE(7501), 1, + ACTIONS(9560), 1, + anon_sym_RPAREN, + STATE(7545), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -619230,44 +625808,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341700] = 18, + [344220] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9511), 1, + ACTIONS(9562), 1, anon_sym_RPAREN, - STATE(7502), 1, + STATE(7546), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -619280,44 +625858,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341768] = 18, + [344288] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9513), 1, + ACTIONS(9564), 1, anon_sym_RPAREN, - STATE(7503), 1, + STATE(7547), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -619330,44 +625908,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341836] = 18, + [344356] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9515), 1, - anon_sym_RBRACE, - STATE(7504), 1, + ACTIONS(9566), 1, + anon_sym_RPAREN, + STATE(7548), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -619380,44 +625958,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341904] = 18, + [344424] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9517), 1, - anon_sym_RBRACE, - STATE(7505), 1, + ACTIONS(9568), 1, + anon_sym_RPAREN, + STATE(7549), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -619430,44 +626008,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [341972] = 18, + [344492] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9519), 1, + ACTIONS(9570), 1, anon_sym_RPAREN, - STATE(7506), 1, + STATE(7550), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -619480,44 +626058,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342040] = 18, + [344560] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9521), 1, - anon_sym_RBRACE, - STATE(7507), 1, + ACTIONS(9572), 1, + anon_sym_RPAREN, + STATE(7551), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -619530,44 +626108,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342108] = 18, + [344628] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9523), 1, + ACTIONS(9574), 1, anon_sym_RPAREN, - STATE(7508), 1, + STATE(7552), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -619580,94 +626158,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342176] = 18, + [344696] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(9277), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(9279), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(9525), 1, - anon_sym_RBRACE, - STATE(7509), 1, - sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, - sym__type, - STATE(9205), 1, - sym_splat_type, - STATE(9429), 1, - sym__splattable_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9285), 2, - sym_self, - sym_underscore_type, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [342244] = 18, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9527), 1, - anon_sym_RBRACE, - STATE(7510), 1, + ACTIONS(9576), 1, + anon_sym_RPAREN, + STATE(7553), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -619680,44 +626208,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342312] = 18, + [344764] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9529), 1, + ACTIONS(9578), 1, anon_sym_RPAREN, - STATE(7511), 1, + STATE(7554), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -619730,44 +626258,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342380] = 18, + [344832] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9531), 1, - anon_sym_RBRACE, - STATE(7512), 1, + ACTIONS(9580), 1, + anon_sym_RPAREN, + STATE(7555), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -619780,44 +626308,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342448] = 18, + [344900] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9533), 1, + ACTIONS(9582), 1, anon_sym_RPAREN, - STATE(7513), 1, + STATE(7556), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -619830,44 +626358,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342516] = 18, + [344968] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9535), 1, - anon_sym_RBRACE, - STATE(7514), 1, + ACTIONS(9584), 1, + anon_sym_RPAREN, + STATE(7557), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -619880,44 +626408,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342584] = 18, + [345036] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9537), 1, + ACTIONS(9586), 1, anon_sym_RPAREN, - STATE(7515), 1, + STATE(7558), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -619930,44 +626458,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342652] = 18, + [345104] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9539), 1, - anon_sym_RBRACE, - STATE(7516), 1, + ACTIONS(9588), 1, + anon_sym_RPAREN, + STATE(7559), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -619980,44 +626508,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342720] = 18, + [345172] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9541), 1, + ACTIONS(9590), 1, anon_sym_RPAREN, - STATE(7517), 1, + STATE(7560), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620030,44 +626558,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342788] = 18, + [345240] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9543), 1, - anon_sym_RBRACE, - STATE(7518), 1, + ACTIONS(9592), 1, + anon_sym_RPAREN, + STATE(7561), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620080,44 +626608,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342856] = 18, + [345308] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9545), 1, + ACTIONS(9594), 1, anon_sym_RPAREN, - STATE(7519), 1, + STATE(7562), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620130,44 +626658,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342924] = 18, + [345376] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9547), 1, - anon_sym_RBRACE, - STATE(7520), 1, + ACTIONS(9596), 1, + anon_sym_RPAREN, + STATE(7563), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620180,44 +626708,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [342992] = 18, + [345444] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9549), 1, - anon_sym_RBRACE, - STATE(7521), 1, + ACTIONS(9598), 1, + anon_sym_RPAREN, + STATE(7564), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620230,44 +626758,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343060] = 18, + [345512] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9551), 1, + ACTIONS(9600), 1, anon_sym_RPAREN, - STATE(7522), 1, + STATE(7565), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620280,44 +626808,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343128] = 18, + [345580] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9553), 1, + ACTIONS(9602), 1, anon_sym_RPAREN, - STATE(7523), 1, + STATE(7566), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620330,44 +626858,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343196] = 18, + [345648] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9555), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9604), 1, anon_sym_RBRACE, - STATE(7524), 1, + ACTIONS(9606), 1, + anon_sym_STAR, + STATE(7567), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620380,44 +626908,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343264] = 18, + [345716] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9557), 1, + ACTIONS(9608), 1, anon_sym_RPAREN, - STATE(7525), 1, + STATE(7568), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620430,44 +626958,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343332] = 18, + [345784] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9559), 1, + ACTIONS(9610), 1, anon_sym_RPAREN, - STATE(7526), 1, + STATE(7569), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620480,44 +627008,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343400] = 18, + [345852] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9561), 1, - anon_sym_RPAREN, - STATE(7527), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9612), 1, + anon_sym_RBRACE, + STATE(7570), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620530,44 +627058,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343468] = 18, + [345920] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9563), 1, - anon_sym_RPAREN, - STATE(7528), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9614), 1, + anon_sym_RBRACE, + STATE(7571), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620580,44 +627108,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343536] = 18, + [345988] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9565), 1, - anon_sym_RPAREN, - STATE(7529), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9616), 1, + anon_sym_RBRACE, + STATE(7572), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620630,44 +627158,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343604] = 18, + [346056] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9567), 1, - anon_sym_RPAREN, - STATE(7530), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9618), 1, + anon_sym_RBRACE, + STATE(7573), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620680,44 +627208,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343672] = 18, + [346124] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9569), 1, - anon_sym_RPAREN, - STATE(7531), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9620), 1, + anon_sym_RBRACE, + STATE(7574), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620730,44 +627258,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343740] = 18, + [346192] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9571), 1, + ACTIONS(9622), 1, anon_sym_RPAREN, - STATE(7532), 1, + STATE(7575), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620780,44 +627308,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343808] = 18, + [346260] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9573), 1, - anon_sym_RPAREN, - STATE(7533), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9624), 1, + anon_sym_RBRACE, + STATE(7576), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620830,44 +627358,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343876] = 18, + [346328] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9575), 1, - anon_sym_RPAREN, - STATE(7534), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9626), 1, + anon_sym_RBRACE, + STATE(7577), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620880,44 +627408,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [343944] = 18, + [346396] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9577), 1, + ACTIONS(9628), 1, anon_sym_RPAREN, - STATE(7535), 1, + STATE(7578), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620930,44 +627458,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344012] = 18, + [346464] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9579), 1, - anon_sym_RPAREN, - STATE(7536), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9630), 1, + anon_sym_RBRACE, + STATE(7579), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -620980,44 +627508,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344080] = 18, + [346532] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9581), 1, - anon_sym_RPAREN, - STATE(7537), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9632), 1, + anon_sym_RBRACE, + STATE(7580), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -621030,44 +627558,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344148] = 18, + [346600] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9583), 1, - anon_sym_RPAREN, - STATE(7538), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9634), 1, + anon_sym_RBRACE, + STATE(7581), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -621080,44 +627608,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344216] = 18, + [346668] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9585), 1, + ACTIONS(9636), 1, anon_sym_RPAREN, - STATE(7539), 1, + STATE(7582), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -621130,44 +627658,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344284] = 18, + [346736] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9587), 1, - anon_sym_RPAREN, - STATE(7540), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9638), 1, + anon_sym_RBRACE, + STATE(7583), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -621180,44 +627708,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344352] = 18, + [346804] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9589), 1, - anon_sym_RPAREN, - STATE(7541), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9640), 1, + anon_sym_RBRACE, + STATE(7584), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -621230,44 +627758,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344420] = 18, + [346872] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9591), 1, + ACTIONS(9642), 1, anon_sym_RPAREN, - STATE(7542), 1, + STATE(7585), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -621280,44 +627808,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344488] = 18, + [346940] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9593), 1, - anon_sym_RPAREN, - STATE(7543), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9644), 1, + anon_sym_RBRACE, + STATE(7586), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -621330,44 +627858,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344556] = 18, + [347008] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9595), 1, - anon_sym_RPAREN, - STATE(7544), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9646), 1, + anon_sym_RBRACE, + STATE(7587), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -621380,44 +627908,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344624] = 18, + [347076] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9597), 1, - anon_sym_RPAREN, - STATE(7545), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9648), 1, + anon_sym_RBRACE, + STATE(7588), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -621430,44 +627958,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344692] = 18, + [347144] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9599), 1, - anon_sym_RPAREN, - STATE(7546), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9650), 1, + anon_sym_RBRACE, + STATE(7589), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -621480,44 +628008,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344760] = 18, + [347212] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9601), 1, - anon_sym_RPAREN, - STATE(7547), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9652), 1, + anon_sym_RBRACE, + STATE(7590), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -621530,44 +628058,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344828] = 18, + [347280] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9603), 1, + ACTIONS(9654), 1, anon_sym_RPAREN, - STATE(7548), 1, + STATE(7591), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -621580,44 +628108,41 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344896] = 18, + [347348] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9605), 1, - anon_sym_RPAREN, - STATE(7549), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + STATE(7592), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, - sym_splat_type, - STATE(9429), 1, - sym__splattable_type, + STATE(8255), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + ACTIONS(4446), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -621630,44 +628155,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [344964] = 18, + [347410] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9607), 1, - anon_sym_RPAREN, - STATE(7550), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9656), 1, + anon_sym_RBRACE, + STATE(7593), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -621680,44 +628205,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345032] = 18, + [347478] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9609), 1, + ACTIONS(9658), 1, anon_sym_RPAREN, - STATE(7551), 1, + STATE(7594), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -621730,44 +628255,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345100] = 18, + [347546] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9611), 1, + ACTIONS(9660), 1, anon_sym_RBRACE, - STATE(7552), 1, + STATE(7595), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -621780,44 +628305,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345168] = 18, + [347614] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9613), 1, + ACTIONS(9662), 1, anon_sym_RBRACE, - STATE(7553), 1, + STATE(7596), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -621830,44 +628355,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345236] = 18, + [347682] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9615), 1, + ACTIONS(9664), 1, anon_sym_RBRACE, - STATE(7554), 1, + STATE(7597), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -621880,44 +628405,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345304] = 18, + [347750] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9617), 1, - anon_sym_RBRACE, - STATE(7555), 1, + ACTIONS(9666), 1, + anon_sym_RPAREN, + STATE(7598), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -621930,91 +628455,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345372] = 15, + [347818] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7556), 1, - sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8242), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9285), 2, - sym_self, - sym_underscore_type, - ACTIONS(4409), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - STATE(8196), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [345434] = 18, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(9335), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(9337), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - ACTIONS(9619), 1, - anon_sym_RPAREN, - STATE(7557), 1, + ACTIONS(9668), 1, + anon_sym_RBRACE, + STATE(7599), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622027,44 +628505,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345502] = 18, + [347886] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9621), 1, + ACTIONS(9670), 1, anon_sym_RBRACE, - STATE(7558), 1, + STATE(7600), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622077,44 +628555,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345570] = 18, + [347954] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9623), 1, - anon_sym_RBRACE, - STATE(7559), 1, + ACTIONS(9672), 1, + anon_sym_RPAREN, + STATE(7601), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622127,44 +628605,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345638] = 18, + [348022] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9625), 1, + ACTIONS(9674), 1, anon_sym_RBRACE, - STATE(7560), 1, + STATE(7602), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622177,44 +628655,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345706] = 18, + [348090] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9627), 1, + ACTIONS(9676), 1, anon_sym_RBRACE, - STATE(7561), 1, + STATE(7603), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622227,44 +628705,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345774] = 18, + [348158] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9629), 1, - anon_sym_RBRACE, - STATE(7562), 1, + ACTIONS(9678), 1, + anon_sym_RPAREN, + STATE(7604), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622277,44 +628755,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345842] = 18, + [348226] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9631), 1, + ACTIONS(9680), 1, anon_sym_RBRACE, - STATE(7563), 1, + STATE(7605), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622327,44 +628805,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345910] = 18, + [348294] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9633), 1, - anon_sym_RPAREN, - STATE(7564), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9682), 1, + anon_sym_RBRACE, + STATE(7606), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622377,44 +628855,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [345978] = 18, + [348362] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9635), 1, + ACTIONS(9684), 1, anon_sym_RBRACE, - STATE(7565), 1, + STATE(7607), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622427,44 +628905,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346046] = 18, + [348430] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9637), 1, + ACTIONS(9686), 1, anon_sym_RBRACE, - STATE(7566), 1, + STATE(7608), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622477,44 +628955,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346114] = 18, + [348498] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9639), 1, - anon_sym_RBRACE, - STATE(7567), 1, + ACTIONS(9688), 1, + anon_sym_RPAREN, + STATE(7609), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622527,44 +629005,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346182] = 18, + [348566] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9641), 1, - anon_sym_RBRACE, - STATE(7568), 1, + ACTIONS(9690), 1, + anon_sym_RPAREN, + STATE(7610), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622577,44 +629055,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346250] = 18, + [348634] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9643), 1, + ACTIONS(9692), 1, anon_sym_RBRACE, - STATE(7569), 1, + STATE(7611), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622627,44 +629105,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346318] = 18, + [348702] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9645), 1, - anon_sym_RPAREN, - STATE(7570), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9694), 1, + anon_sym_RBRACE, + STATE(7612), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622677,44 +629155,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346386] = 18, + [348770] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9647), 1, + ACTIONS(9696), 1, anon_sym_RBRACE, - STATE(7571), 1, + STATE(7613), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622727,44 +629205,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346454] = 18, + [348838] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9649), 1, - anon_sym_RPAREN, - STATE(7572), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9698), 1, + anon_sym_RBRACE, + STATE(7614), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622777,44 +629255,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346522] = 18, + [348906] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9651), 1, + ACTIONS(9700), 1, anon_sym_RBRACE, - STATE(7573), 1, + STATE(7615), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622827,44 +629305,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346590] = 18, + [348974] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9653), 1, + ACTIONS(9702), 1, anon_sym_RBRACE, - STATE(7574), 1, + STATE(7616), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622877,44 +629355,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346658] = 18, + [349042] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9655), 1, + ACTIONS(9704), 1, anon_sym_RBRACE, - STATE(7575), 1, + STATE(7617), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622927,44 +629405,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346726] = 18, + [349110] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9657), 1, - anon_sym_RBRACE, - STATE(7576), 1, + ACTIONS(9706), 1, + anon_sym_RPAREN, + STATE(7618), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -622977,44 +629455,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346794] = 18, + [349178] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9659), 1, + ACTIONS(9708), 1, anon_sym_RBRACE, - STATE(7577), 1, + STATE(7619), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623027,44 +629505,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346862] = 18, + [349246] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9661), 1, + ACTIONS(9710), 1, anon_sym_RBRACE, - STATE(7578), 1, + STATE(7620), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623077,41 +629555,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346930] = 15, + [349314] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7579), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9712), 1, + anon_sym_RBRACE, + STATE(7621), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8251), 1, + STATE(8575), 1, sym__type, + STATE(9288), 1, + sym_splat_type, + STATE(9516), 1, + sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - ACTIONS(4431), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623124,44 +629605,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [346992] = 18, + [349382] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9663), 1, - anon_sym_RPAREN, - STATE(7580), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9714), 1, + anon_sym_RBRACE, + STATE(7622), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623174,44 +629655,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347060] = 18, + [349450] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9665), 1, + ACTIONS(9716), 1, anon_sym_RBRACE, - STATE(7581), 1, + STATE(7623), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623224,44 +629705,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347128] = 18, + [349518] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9667), 1, + ACTIONS(9718), 1, anon_sym_RBRACE, - STATE(7582), 1, + STATE(7624), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623274,44 +629755,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347196] = 18, + [349586] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9669), 1, + ACTIONS(9720), 1, anon_sym_RPAREN, - STATE(7583), 1, + STATE(7625), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623324,44 +629805,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347264] = 18, + [349654] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9671), 1, - anon_sym_RBRACE, - STATE(7584), 1, + ACTIONS(9722), 1, + anon_sym_RPAREN, + STATE(7626), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623374,44 +629855,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347332] = 18, + [349722] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9673), 1, + ACTIONS(9724), 1, anon_sym_RBRACE, - STATE(7585), 1, + STATE(7627), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623424,44 +629905,41 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347400] = 18, + [349790] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9675), 1, - anon_sym_RBRACE, - STATE(7586), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + STATE(7628), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8328), 1, sym__type, - STATE(9205), 1, - sym_splat_type, - STATE(9429), 1, - sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + ACTIONS(4468), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623474,44 +629952,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347468] = 18, + [349852] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9677), 1, - anon_sym_RPAREN, - STATE(7587), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9726), 1, + anon_sym_RBRACE, + STATE(7629), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623524,44 +630002,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347536] = 18, + [349920] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9679), 1, + ACTIONS(9728), 1, anon_sym_RBRACE, - STATE(7588), 1, + STATE(7630), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623574,44 +630052,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347604] = 18, + [349988] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9681), 1, + ACTIONS(9730), 1, anon_sym_RPAREN, - STATE(7589), 1, + STATE(7631), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623624,44 +630102,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347672] = 18, + [350056] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9683), 1, + ACTIONS(9732), 1, anon_sym_RBRACE, - STATE(7590), 1, + STATE(7632), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623674,44 +630152,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347740] = 18, + [350124] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9685), 1, + ACTIONS(9734), 1, anon_sym_RBRACE, - STATE(7591), 1, + STATE(7633), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623724,44 +630202,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347808] = 18, + [350192] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9687), 1, + ACTIONS(9736), 1, anon_sym_RPAREN, - STATE(7592), 1, + STATE(7634), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623774,44 +630252,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347876] = 18, + [350260] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9689), 1, - anon_sym_RBRACE, - STATE(7593), 1, + ACTIONS(9738), 1, + anon_sym_RPAREN, + STATE(7635), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623824,44 +630302,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [347944] = 18, + [350328] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - ACTIONS(9691), 1, + ACTIONS(9740), 1, anon_sym_RBRACE, - STATE(7594), 1, + STATE(7636), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623874,44 +630352,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348012] = 18, + [350396] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(8256), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, + ACTIONS(8260), 1, anon_sym_DASH_GT, - ACTIONS(8255), 1, + ACTIONS(8262), 1, anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9693), 1, + ACTIONS(9742), 1, anon_sym_RPAREN, - STATE(7595), 1, + STATE(7637), 1, sym_heredoc_body, - STATE(8109), 1, + STATE(8161), 1, sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623924,44 +630402,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348080] = 18, + [350464] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - ACTIONS(9695), 1, - anon_sym_RBRACE, - STATE(7596), 1, + ACTIONS(9744), 1, + anon_sym_RPAREN, + STATE(7638), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -623974,44 +630452,44 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348148] = 18, + [350532] = 18, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9697), 1, - anon_sym_RPAREN, - STATE(7597), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + ACTIONS(9746), 1, + anon_sym_RBRACE, + STATE(7639), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624024,42 +630502,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348216] = 17, + [350600] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7598), 1, + STATE(7640), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9782), 1, + STATE(9910), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624072,42 +630550,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348281] = 17, + [350665] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7599), 1, + STATE(7641), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9961), 1, + STATE(10055), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624120,42 +630598,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348346] = 17, + [350730] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7600), 1, + STATE(7642), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9839), 1, + STATE(10280), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624168,42 +630646,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348411] = 17, + [350795] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7601), 1, + STATE(7643), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9925), 1, + STATE(10029), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624216,42 +630694,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348476] = 17, + [350860] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7602), 1, + STATE(7644), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(10239), 1, + STATE(9965), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624264,42 +630742,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348541] = 17, + [350925] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8255), 1, - anon_sym_STAR, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - STATE(7603), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, + anon_sym_STAR, + STATE(7645), 1, sym_heredoc_body, - STATE(8109), 1, - sym__type, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(9205), 1, + STATE(8575), 1, + sym__type, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(10400), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624312,42 +630790,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348606] = 17, + [350990] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7604), 1, + STATE(7646), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9855), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624360,40 +630838,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348671] = 15, + [351055] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9348), 1, - anon_sym_typeof, - ACTIONS(9350), 1, - sym__constant_segment, - ACTIONS(9352), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9356), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9358), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9363), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + ACTIONS(9335), 1, anon_sym_LPAREN, - ACTIONS(9365), 1, + ACTIONS(9337), 1, anon_sym_DASH_GT, - STATE(7605), 1, + ACTIONS(9606), 1, + anon_sym_STAR, + STATE(7647), 1, sym_heredoc_body, - STATE(8143), 1, + STATE(8180), 1, sym_constant, - STATE(8337), 1, + STATE(8575), 1, sym__type, + STATE(9288), 1, + sym_splat_type, + STATE(10276), 1, + sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9354), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - ACTIONS(4409), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - STATE(8458), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624406,42 +630886,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348732] = 17, + [351120] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7606), 1, + STATE(7648), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(10129), 1, + STATE(9788), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624454,42 +630934,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348797] = 17, + [351185] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7607), 1, + STATE(7649), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9766), 1, + STATE(9862), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624502,42 +630982,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348862] = 17, + [351250] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7608), 1, + STATE(7650), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(10155), 1, + STATE(10253), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624550,42 +631030,40 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348927] = 17, + [351315] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(9277), 1, + ACTIONS(9365), 1, anon_sym_LPAREN, - ACTIONS(9279), 1, + ACTIONS(9367), 1, anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9369), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9371), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - STATE(7609), 1, + ACTIONS(9373), 1, + anon_sym_COLON_COLON, + ACTIONS(9377), 1, + sym__start_of_tuple_type, + ACTIONS(9379), 1, + sym__start_of_named_tuple_type, + STATE(7651), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8251), 1, sym_constant, - STATE(8868), 1, + STATE(8506), 1, sym__type, - STATE(9205), 1, - sym_splat_type, - STATE(10294), 1, - sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9375), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + ACTIONS(4446), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + STATE(8523), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624598,42 +631076,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [348992] = 17, + [351376] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7610), 1, + STATE(7652), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(10298), 1, + STATE(9992), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624646,42 +631124,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349057] = 17, + [351441] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7611), 1, + STATE(7653), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9705), 1, + STATE(10052), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624694,42 +631172,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349122] = 17, + [351506] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7612), 1, + STATE(7654), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(10320), 1, + STATE(10168), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624742,40 +631220,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349187] = 15, + [351571] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9348), 1, - anon_sym_typeof, - ACTIONS(9350), 1, - sym__constant_segment, - ACTIONS(9352), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(9356), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(9358), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9363), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + ACTIONS(9335), 1, anon_sym_LPAREN, - ACTIONS(9365), 1, + ACTIONS(9337), 1, anon_sym_DASH_GT, - STATE(7613), 1, + ACTIONS(9606), 1, + anon_sym_STAR, + STATE(7655), 1, sym_heredoc_body, - STATE(8143), 1, + STATE(8180), 1, sym_constant, - STATE(8352), 1, + STATE(8575), 1, sym__type, + STATE(9288), 1, + sym_splat_type, + STATE(10423), 1, + sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9354), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - ACTIONS(4431), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - STATE(8458), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624788,42 +631268,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349248] = 17, + [351636] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7614), 1, + STATE(7656), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9429), 1, + STATE(10416), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624836,42 +631316,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349313] = 17, + [351701] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7615), 1, + STATE(7657), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9967), 1, + STATE(10196), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624884,42 +631364,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349378] = 17, + [351766] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7616), 1, + STATE(7658), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(10253), 1, + STATE(10388), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624932,42 +631412,40 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349443] = 17, + [351831] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, - anon_sym_COLON_COLON, - ACTIONS(8267), 1, - sym__start_of_tuple_type, - ACTIONS(8269), 1, - sym__start_of_named_tuple_type, - ACTIONS(9277), 1, + ACTIONS(9365), 1, anon_sym_LPAREN, - ACTIONS(9279), 1, + ACTIONS(9367), 1, anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9369), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9371), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - STATE(7617), 1, + ACTIONS(9373), 1, + anon_sym_COLON_COLON, + ACTIONS(9377), 1, + sym__start_of_tuple_type, + ACTIONS(9379), 1, + sym__start_of_named_tuple_type, + STATE(7659), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8251), 1, sym_constant, - STATE(8868), 1, + STATE(8521), 1, sym__type, - STATE(9205), 1, - sym_splat_type, - STATE(10203), 1, - sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9375), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + ACTIONS(4468), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + STATE(8523), 12, sym_typeof, sym_class_type, sym_union_type, @@ -624980,42 +631458,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349508] = 17, + [351892] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8262), 1, + anon_sym_STAR, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, - anon_sym_STAR, - STATE(7618), 1, + STATE(7660), 1, sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8868), 1, + STATE(8161), 1, sym__type, - STATE(9205), 1, + STATE(8180), 1, + sym_constant, + STATE(9288), 1, sym_splat_type, - STATE(9777), 1, + STATE(9516), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625028,42 +631506,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349573] = 17, + [351957] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7619), 1, + STATE(7661), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(10336), 1, + STATE(10131), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625076,42 +631554,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349638] = 17, + [352022] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7620), 1, + STATE(7662), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(10025), 1, + STATE(10213), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625124,42 +631602,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349703] = 17, + [352087] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7621), 1, + STATE(7663), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(10151), 1, + STATE(10244), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625172,42 +631650,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349768] = 17, + [352152] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7622), 1, + STATE(7664), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(9681), 1, + STATE(10305), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625220,42 +631698,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349833] = 17, + [352217] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7623), 1, + STATE(7665), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(10148), 1, + STATE(10352), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625268,42 +631746,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349898] = 17, + [352282] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7624), 1, + STATE(7666), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(10081), 1, + STATE(9876), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625316,42 +631794,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [349963] = 17, + [352347] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7625), 1, + STATE(7667), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(10177), 1, + STATE(10380), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625364,42 +631842,42 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350028] = 17, + [352412] = 17, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, - anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(9329), 1, anon_sym_typeof, - ACTIONS(9283), 1, + ACTIONS(9331), 1, sym__constant_segment, - ACTIONS(9501), 1, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, + anon_sym_DASH_GT, + ACTIONS(9606), 1, anon_sym_STAR, - STATE(7626), 1, + STATE(7668), 1, sym_heredoc_body, - STATE(8134), 1, + STATE(8180), 1, sym_constant, - STATE(8868), 1, + STATE(8575), 1, sym__type, - STATE(9205), 1, + STATE(9288), 1, sym_splat_type, - STATE(10049), 1, + STATE(10087), 1, sym__splattable_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625412,19 +631890,18 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350093] = 6, + [352477] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, + ACTIONS(9748), 1, anon_sym_COLON_COLON, - STATE(7627), 1, - sym_heredoc_body, - STATE(7633), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4549), 23, + STATE(7669), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4600), 23, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -625448,39 +631925,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [350135] = 15, + [352517] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9321), 1, - anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(9355), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(9357), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(9361), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(9363), 1, sym__start_of_named_tuple_type, - ACTIONS(9383), 1, + ACTIONS(9384), 1, + anon_sym_typeof, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9385), 1, + ACTIONS(9434), 1, anon_sym_DASH_GT, - STATE(7628), 1, + STATE(7670), 1, sym_heredoc_body, - STATE(8192), 1, + STATE(8287), 1, sym_constant, - STATE(8595), 1, + STATE(8766), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4409), 2, - sym__start_of_brace_block, - anon_sym_do, - ACTIONS(9327), 2, + ACTIONS(4468), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(9386), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8534), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625493,39 +631970,39 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350195] = 15, + [352577] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9321), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(9395), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9383), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - ACTIONS(9385), 1, + ACTIONS(9430), 1, anon_sym_DASH_GT, - STATE(7629), 1, + STATE(7671), 1, sym_heredoc_body, - STATE(8192), 1, + STATE(8299), 1, sym_constant, - STATE(8861), 1, + STATE(8566), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4431), 2, + ACTIONS(4446), 2, sym__start_of_brace_block, anon_sym_do, - ACTIONS(9327), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625538,39 +632015,39 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350255] = 15, + [352637] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9303), 1, + ACTIONS(9355), 1, sym__constant_segment, - ACTIONS(9305), 1, + ACTIONS(9357), 1, anon_sym_COLON_COLON, - ACTIONS(9309), 1, + ACTIONS(9361), 1, sym__start_of_tuple_type, - ACTIONS(9311), 1, + ACTIONS(9363), 1, sym__start_of_named_tuple_type, - ACTIONS(9336), 1, + ACTIONS(9384), 1, anon_sym_typeof, - ACTIONS(9379), 1, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(9381), 1, + ACTIONS(9434), 1, anon_sym_DASH_GT, - STATE(7630), 1, + STATE(7672), 1, sym_heredoc_body, - STATE(8312), 1, + STATE(8287), 1, sym_constant, - STATE(8679), 1, + STATE(8736), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4409), 2, + ACTIONS(4446), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(9338), 2, + ACTIONS(9386), 2, sym_self, sym_underscore_type, - STATE(8437), 12, + STATE(8534), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625583,18 +632060,64 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350315] = 5, + [352697] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9701), 1, + ACTIONS(9393), 1, + anon_sym_typeof, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, anon_sym_COLON_COLON, + ACTIONS(9401), 1, + sym__start_of_tuple_type, + ACTIONS(9403), 1, + sym__start_of_named_tuple_type, + ACTIONS(9428), 1, + anon_sym_LPAREN, + ACTIONS(9430), 1, + anon_sym_DASH_GT, + STATE(7673), 1, + sym_heredoc_body, + STATE(8299), 1, + sym_constant, + STATE(8917), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7631), 2, + ACTIONS(4468), 2, + sym__start_of_brace_block, + anon_sym_do, + ACTIONS(9399), 2, + sym_self, + sym_underscore_type, + STATE(8453), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [352757] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9751), 1, + anon_sym_COLON_COLON, + STATE(7674), 1, sym_heredoc_body, + STATE(7676), 1, aux_sym_constant_repeat1, - ACTIONS(4563), 23, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4586), 23, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -625618,19 +632141,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [350355] = 6, + [352799] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, + ACTIONS(9751), 1, anon_sym_COLON_COLON, - STATE(7631), 1, + STATE(7669), 1, aux_sym_constant_repeat1, - STATE(7632), 1, + STATE(7675), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4559), 23, + ACTIONS(4592), 23, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -625654,19 +632177,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [350397] = 6, + [352841] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, + ACTIONS(9751), 1, anon_sym_COLON_COLON, - STATE(7631), 1, + STATE(7669), 1, aux_sym_constant_repeat1, - STATE(7633), 1, + STATE(7676), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4555), 23, + ACTIONS(4596), 23, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -625690,19 +632213,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [350439] = 6, + [352883] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9699), 1, + ACTIONS(9751), 1, anon_sym_COLON_COLON, - STATE(7632), 1, + STATE(7675), 1, aux_sym_constant_repeat1, - STATE(7634), 1, + STATE(7677), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4555), 23, + ACTIONS(4596), 23, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -625726,60 +632249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [350481] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9303), 1, - sym__constant_segment, - ACTIONS(9305), 1, - anon_sym_COLON_COLON, - ACTIONS(9309), 1, - sym__start_of_tuple_type, - ACTIONS(9311), 1, - sym__start_of_named_tuple_type, - ACTIONS(9336), 1, - anon_sym_typeof, - ACTIONS(9379), 1, - anon_sym_LPAREN, - ACTIONS(9381), 1, - anon_sym_DASH_GT, - STATE(7635), 1, - sym_heredoc_body, - STATE(8312), 1, - sym_constant, - STATE(8799), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4431), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(9338), 2, - sym_self, - sym_underscore_type, - STATE(8437), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [350541] = 4, + [352925] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7636), 1, + STATE(7678), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4563), 24, + ACTIONS(4600), 24, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -625804,116 +632282,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [350578] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9704), 1, - anon_sym_LBRACK, - ACTIONS(9706), 1, - anon_sym_STAR, - ACTIONS(9708), 1, - anon_sym_PIPE, - ACTIONS(9710), 1, - anon_sym_DOT, - ACTIONS(9712), 1, - anon_sym_QMARK, - STATE(7637), 1, - sym_heredoc_body, - STATE(7717), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4609), 17, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_forall, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [350626] = 14, + [352962] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(1397), 1, + ACTIONS(2067), 1, sym__constant_segment, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5102), 1, + ACTIONS(4997), 1, anon_sym_typeof, - ACTIONS(5106), 1, + ACTIONS(5001), 1, sym__start_of_tuple_type, - ACTIONS(5108), 1, + ACTIONS(5003), 1, sym__start_of_named_tuple_type, - ACTIONS(9429), 1, - anon_sym_DASH_GT, - STATE(2837), 1, - sym__type, - STATE(2865), 1, - sym_constant, - STATE(7638), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5104), 2, - sym_self, - sym_underscore_type, - STATE(2978), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [350682] = 14, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1491), 1, - anon_sym_COLON_COLON, - ACTIONS(2537), 1, - sym__constant_segment, - ACTIONS(5186), 1, + ACTIONS(5013), 1, anon_sym_LPAREN, - ACTIONS(5191), 1, - anon_sym_typeof, - ACTIONS(5195), 1, - sym__start_of_tuple_type, - ACTIONS(5197), 1, - sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(9476), 1, anon_sym_DASH_GT, - STATE(3256), 1, + STATE(2351), 1, sym_constant, - STATE(3270), 1, + STATE(2354), 1, sym__type, - STATE(7639), 1, + STATE(7679), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(4999), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(2379), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625926,36 +632324,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350738] = 14, + [353018] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(567), 1, - anon_sym_COLON_COLON, - ACTIONS(2904), 1, - sym__constant_segment, - ACTIONS(5066), 1, - anon_sym_typeof, - ACTIONS(5070), 1, + ACTIONS(4384), 1, sym__start_of_tuple_type, - ACTIONS(5072), 1, + ACTIONS(4386), 1, sym__start_of_named_tuple_type, - ACTIONS(5074), 1, + ACTIONS(9502), 1, anon_sym_LPAREN, - ACTIONS(5076), 1, + ACTIONS(9504), 1, anon_sym_DASH_GT, - STATE(2676), 1, - sym_constant, - STATE(2777), 1, + ACTIONS(9508), 1, + anon_sym_typeof, + ACTIONS(9510), 1, + sym__constant_segment, + ACTIONS(9512), 1, + anon_sym_COLON_COLON, + STATE(2001), 1, sym__type, - STATE(7640), 1, + STATE(2008), 1, + sym_constant, + STATE(7680), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5068), 2, + ACTIONS(9514), 2, sym_self, sym_underscore_type, - STATE(2791), 12, + STATE(2024), 12, sym_typeof, sym_class_type, sym_union_type, @@ -625968,120 +632366,107 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350794] = 14, + [353074] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, - anon_sym_COLON_COLON, - ACTIONS(2537), 1, - sym__constant_segment, - ACTIONS(5191), 1, - anon_sym_typeof, - ACTIONS(5195), 1, - sym__start_of_tuple_type, - ACTIONS(5197), 1, - sym__start_of_named_tuple_type, - ACTIONS(5232), 1, - anon_sym_LPAREN, - ACTIONS(5234), 1, - anon_sym_DASH_GT, - STATE(3256), 1, - sym_constant, - STATE(3530), 1, - sym__type, - STATE(7641), 1, - sym_heredoc_body, + ACTIONS(9753), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, - sym_self, - sym_underscore_type, - STATE(3515), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [350850] = 14, + STATE(7681), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4629), 21, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [353112] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(3020), 1, - sym__constant_segment, - ACTIONS(5305), 1, - anon_sym_LPAREN, - ACTIONS(5310), 1, - anon_sym_typeof, - ACTIONS(5314), 1, - sym__start_of_tuple_type, - ACTIONS(5316), 1, - sym__start_of_named_tuple_type, - ACTIONS(9473), 1, - anon_sym_DASH_GT, - STATE(4652), 1, - sym_constant, - STATE(4655), 1, - sym__type, - STATE(7642), 1, + ACTIONS(9756), 1, + anon_sym_LBRACK, + ACTIONS(9758), 1, + anon_sym_STAR, + ACTIONS(9760), 1, + anon_sym_PIPE, + ACTIONS(9762), 1, + anon_sym_DOT, + ACTIONS(9764), 1, + anon_sym_QMARK, + STATE(7682), 1, sym_heredoc_body, + STATE(7741), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5312), 2, - sym_self, - sym_underscore_type, - STATE(5003), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [350906] = 14, + ACTIONS(4607), 17, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_forall, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [353160] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(313), 1, - anon_sym_COLON_COLON, - ACTIONS(2739), 1, - sym__constant_segment, - ACTIONS(5042), 1, + ACTIONS(5145), 1, + anon_sym_LPAREN, + ACTIONS(5150), 1, anon_sym_typeof, - ACTIONS(5046), 1, + ACTIONS(5152), 1, + sym__constant_segment, + ACTIONS(5154), 1, + anon_sym_COLON_COLON, + ACTIONS(5158), 1, sym__start_of_tuple_type, - ACTIONS(5048), 1, + ACTIONS(5160), 1, sym__start_of_named_tuple_type, - ACTIONS(5050), 1, - anon_sym_LPAREN, - ACTIONS(9495), 1, + ACTIONS(9540), 1, anon_sym_DASH_GT, - STATE(2488), 1, + STATE(2804), 1, sym_constant, - STATE(2516), 1, + STATE(2810), 1, sym__type, - STATE(7643), 1, + STATE(7683), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5044), 2, + ACTIONS(5156), 2, sym_self, sym_underscore_type, - STATE(2592), 12, + STATE(2943), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626094,36 +632479,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [350962] = 14, + [353216] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(179), 1, + ACTIONS(893), 1, anon_sym_COLON_COLON, - ACTIONS(2042), 1, + ACTIONS(3033), 1, sym__constant_segment, - ACTIONS(4958), 1, + ACTIONS(5306), 1, anon_sym_typeof, - ACTIONS(4962), 1, + ACTIONS(5310), 1, sym__start_of_tuple_type, - ACTIONS(4964), 1, + ACTIONS(5312), 1, sym__start_of_named_tuple_type, - ACTIONS(4972), 1, + ACTIONS(5314), 1, anon_sym_LPAREN, - ACTIONS(4974), 1, + ACTIONS(9544), 1, anon_sym_DASH_GT, - STATE(2346), 1, + STATE(4464), 1, sym_constant, - STATE(2360), 1, + STATE(4495), 1, sym__type, - STATE(7644), 1, + STATE(7684), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4960), 2, + ACTIONS(5308), 2, sym_self, sym_underscore_type, - STATE(2367), 12, + STATE(4646), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626136,36 +632521,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351018] = 14, + [353272] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, + ACTIONS(719), 1, anon_sym_COLON_COLON, - ACTIONS(1397), 1, + ACTIONS(3013), 1, sym__constant_segment, - ACTIONS(5102), 1, + ACTIONS(5277), 1, + anon_sym_LPAREN, + ACTIONS(5279), 1, + anon_sym_DASH_GT, + ACTIONS(5281), 1, anon_sym_typeof, - ACTIONS(5106), 1, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(5108), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(5140), 1, - anon_sym_LPAREN, - ACTIONS(5142), 1, - anon_sym_DASH_GT, - STATE(2865), 1, + STATE(4258), 1, sym_constant, - STATE(2924), 1, + STATE(4591), 1, sym__type, - STATE(7645), 1, + STATE(7685), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(4483), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626178,36 +632563,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351074] = 14, + [353328] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(445), 1, + ACTIONS(2133), 1, anon_sym_COLON_COLON, - ACTIONS(2890), 1, + ACTIONS(3067), 1, sym__constant_segment, - ACTIONS(5084), 1, - anon_sym_LPAREN, - ACTIONS(5089), 1, + ACTIONS(5349), 1, anon_sym_typeof, - ACTIONS(5093), 1, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(5095), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - ACTIONS(9457), 1, + ACTIONS(5359), 1, + anon_sym_LPAREN, + ACTIONS(5361), 1, anon_sym_DASH_GT, - STATE(2803), 1, + STATE(4791), 1, sym_constant, - STATE(2841), 1, + STATE(4971), 1, sym__type, - STATE(7646), 1, + STATE(7686), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5091), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(3166), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626220,78 +632605,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351130] = 14, + [353384] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9348), 1, - anon_sym_typeof, - ACTIONS(9350), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(9352), 1, - anon_sym_COLON_COLON, - ACTIONS(9356), 1, - sym__start_of_tuple_type, - ACTIONS(9358), 1, - sym__start_of_named_tuple_type, - ACTIONS(9363), 1, - anon_sym_LPAREN, - ACTIONS(9365), 1, - anon_sym_DASH_GT, - STATE(7647), 1, - sym_heredoc_body, - STATE(8143), 1, - sym_constant, - STATE(8343), 1, - sym__type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9354), 2, - sym_self, - sym_underscore_type, - STATE(8458), 12, - sym_typeof, - sym_class_type, - sym_union_type, - sym__parenthesized_type, - sym_no_args_proc_type, - sym_parenthesized_proc_type, - sym_tuple_type, - sym_named_tuple_type, - sym_generic_instance_type, - sym_nilable_type, - sym_pointer_type, - sym_static_array_type, - [351186] = 14, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(709), 1, + ACTIONS(85), 1, anon_sym_COLON_COLON, - ACTIONS(2982), 1, - sym__constant_segment, - ACTIONS(5245), 1, + ACTIONS(5052), 1, + anon_sym_LPAREN, + ACTIONS(5054), 1, + anon_sym_DASH_GT, + ACTIONS(5056), 1, anon_sym_typeof, - ACTIONS(5249), 1, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(5251), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(5259), 1, - anon_sym_LPAREN, - ACTIONS(5261), 1, - anon_sym_DASH_GT, - STATE(4227), 1, + STATE(2394), 1, sym_constant, - STATE(4564), 1, + STATE(2425), 1, sym__type, - STATE(7648), 1, + STATE(7687), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5247), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(4328), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626304,36 +632647,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351242] = 14, + [353440] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8063), 1, + ACTIONS(5145), 1, + anon_sym_LPAREN, + ACTIONS(5150), 1, anon_sym_typeof, - ACTIONS(8065), 1, + ACTIONS(5152), 1, sym__constant_segment, - ACTIONS(8067), 1, + ACTIONS(5154), 1, anon_sym_COLON_COLON, - ACTIONS(8071), 1, + ACTIONS(5158), 1, sym__start_of_tuple_type, - ACTIONS(8073), 1, + ACTIONS(5160), 1, sym__start_of_named_tuple_type, - ACTIONS(8383), 1, - anon_sym_LPAREN, - ACTIONS(8385), 1, + ACTIONS(9540), 1, anon_sym_DASH_GT, - STATE(7649), 1, - sym_heredoc_body, - STATE(7836), 1, + STATE(2804), 1, sym_constant, - STATE(7884), 1, + STATE(2808), 1, sym__type, + STATE(7688), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8069), 2, + ACTIONS(5156), 2, sym_self, sym_underscore_type, - STATE(7855), 12, + STATE(2943), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626346,36 +632689,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351298] = 14, + [353496] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(3020), 1, - sym__constant_segment, - ACTIONS(5305), 1, + ACTIONS(5219), 1, anon_sym_LPAREN, - ACTIONS(5310), 1, + ACTIONS(5221), 1, + anon_sym_DASH_GT, + ACTIONS(5223), 1, anon_sym_typeof, - ACTIONS(5314), 1, + ACTIONS(5225), 1, + sym__constant_segment, + ACTIONS(5227), 1, + anon_sym_COLON_COLON, + ACTIONS(5231), 1, sym__start_of_tuple_type, - ACTIONS(5316), 1, + ACTIONS(5233), 1, sym__start_of_named_tuple_type, - ACTIONS(9473), 1, - anon_sym_DASH_GT, - STATE(4652), 1, + STATE(3316), 1, sym_constant, - STATE(4656), 1, + STATE(3396), 1, sym__type, - STATE(7650), 1, + STATE(7689), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5312), 2, + ACTIONS(5229), 2, sym_self, sym_underscore_type, - STATE(5003), 12, + STATE(3579), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626388,36 +632731,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351354] = 14, + [353552] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9343), 1, + ACTIONS(181), 1, + anon_sym_COLON_COLON, + ACTIONS(2067), 1, + sym__constant_segment, + ACTIONS(4993), 1, anon_sym_LPAREN, - ACTIONS(9348), 1, + ACTIONS(4995), 1, + anon_sym_DASH_GT, + ACTIONS(4997), 1, anon_sym_typeof, - ACTIONS(9350), 1, - sym__constant_segment, - ACTIONS(9352), 1, - anon_sym_COLON_COLON, - ACTIONS(9356), 1, + ACTIONS(5001), 1, sym__start_of_tuple_type, - ACTIONS(9358), 1, + ACTIONS(5003), 1, sym__start_of_named_tuple_type, - ACTIONS(9437), 1, - anon_sym_DASH_GT, - STATE(7651), 1, - sym_heredoc_body, - STATE(8143), 1, + STATE(2351), 1, sym_constant, - STATE(8162), 1, + STATE(2384), 1, sym__type, + STATE(7690), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9354), 2, + ACTIONS(4999), 2, sym_self, sym_underscore_type, - STATE(8458), 12, + STATE(2379), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626430,36 +632773,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351410] = 14, + [353608] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1491), 1, - anon_sym_COLON_COLON, - ACTIONS(2537), 1, - sym__constant_segment, - ACTIONS(5186), 1, - anon_sym_LPAREN, - ACTIONS(5191), 1, + ACTIONS(7099), 1, anon_sym_typeof, - ACTIONS(5195), 1, + ACTIONS(7101), 1, + sym__constant_segment, + ACTIONS(7103), 1, + anon_sym_COLON_COLON, + ACTIONS(7107), 1, sym__start_of_tuple_type, - ACTIONS(5197), 1, + ACTIONS(7109), 1, sym__start_of_named_tuple_type, - ACTIONS(9441), 1, + ACTIONS(7273), 1, + anon_sym_LPAREN, + ACTIONS(7275), 1, anon_sym_DASH_GT, - STATE(3256), 1, + STATE(7691), 1, + sym_heredoc_body, + STATE(7692), 1, sym_constant, - STATE(3275), 1, + STATE(7779), 1, sym__type, - STATE(7652), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5193), 2, + ACTIONS(7105), 2, sym_self, sym_underscore_type, - STATE(3515), 12, + STATE(7763), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626472,18 +632815,17 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351466] = 5, + [353664] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9714), 1, - anon_sym_PIPE, + ACTIONS(9766), 1, + anon_sym_LPAREN2, + STATE(7692), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7653), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4588), 21, + ACTIONS(4644), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -626498,6 +632840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, + anon_sym_PIPE, anon_sym_DOT, anon_sym_forall, anon_sym_QMARK, @@ -626505,36 +632848,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [351504] = 14, + [353702] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, + ACTIONS(2312), 1, anon_sym_COLON_COLON, - ACTIONS(3108), 1, + ACTIONS(3083), 1, sym__constant_segment, - ACTIONS(5365), 1, - anon_sym_LPAREN, - ACTIONS(5370), 1, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5374), 1, + ACTIONS(5385), 1, sym__start_of_tuple_type, - ACTIONS(5376), 1, + ACTIONS(5387), 1, sym__start_of_named_tuple_type, - ACTIONS(9433), 1, + ACTIONS(5389), 1, + anon_sym_LPAREN, + ACTIONS(9498), 1, anon_sym_DASH_GT, - STATE(5083), 1, + STATE(4910), 1, sym__type, - STATE(5097), 1, + STATE(5014), 1, sym_constant, - STATE(7654), 1, + STATE(7693), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(5383), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(5099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626547,36 +632890,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351560] = 14, + [353758] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(3038), 1, + ACTIONS(3141), 1, sym__constant_segment, - ACTIONS(5288), 1, + ACTIONS(5402), 1, anon_sym_LPAREN, - ACTIONS(5290), 1, - anon_sym_DASH_GT, - ACTIONS(5292), 1, + ACTIONS(5407), 1, anon_sym_typeof, - ACTIONS(5296), 1, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(5298), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - STATE(4834), 1, + ACTIONS(9472), 1, + anon_sym_DASH_GT, + STATE(5101), 1, sym_constant, - STATE(4963), 1, + STATE(5132), 1, sym__type, - STATE(7655), 1, + STATE(7694), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626589,36 +632932,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351616] = 14, + [353814] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, - anon_sym_COLON_COLON, - ACTIONS(3038), 1, - sym__constant_segment, - ACTIONS(5292), 1, + ACTIONS(5150), 1, anon_sym_typeof, - ACTIONS(5296), 1, + ACTIONS(5152), 1, + sym__constant_segment, + ACTIONS(5154), 1, + anon_sym_COLON_COLON, + ACTIONS(5158), 1, sym__start_of_tuple_type, - ACTIONS(5298), 1, + ACTIONS(5160), 1, sym__start_of_named_tuple_type, - ACTIONS(5300), 1, + ACTIONS(5170), 1, anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(5172), 1, anon_sym_DASH_GT, - STATE(4834), 1, + STATE(2804), 1, sym_constant, - STATE(4851), 1, + STATE(3181), 1, sym__type, - STATE(7656), 1, + STATE(7695), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(5156), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(2943), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626631,36 +632974,78 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351672] = 14, + [353870] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4347), 1, + ACTIONS(9369), 1, + anon_sym_typeof, + ACTIONS(9371), 1, + sym__constant_segment, + ACTIONS(9373), 1, + anon_sym_COLON_COLON, + ACTIONS(9377), 1, sym__start_of_tuple_type, - ACTIONS(4349), 1, + ACTIONS(9379), 1, sym__start_of_named_tuple_type, - ACTIONS(9399), 1, + ACTIONS(9405), 1, anon_sym_LPAREN, - ACTIONS(9401), 1, + ACTIONS(9440), 1, anon_sym_DASH_GT, - ACTIONS(9405), 1, - anon_sym_typeof, - ACTIONS(9407), 1, - sym__constant_segment, - ACTIONS(9409), 1, + STATE(7696), 1, + sym_heredoc_body, + STATE(8251), 1, + sym_constant, + STATE(8286), 1, + sym__type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9375), 2, + sym_self, + sym_underscore_type, + STATE(8523), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [353926] = 14, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - STATE(2006), 1, + ACTIONS(3141), 1, + sym__constant_segment, + ACTIONS(5407), 1, + anon_sym_typeof, + ACTIONS(5411), 1, + sym__start_of_tuple_type, + ACTIONS(5413), 1, + sym__start_of_named_tuple_type, + ACTIONS(5417), 1, + anon_sym_LPAREN, + ACTIONS(5419), 1, + anon_sym_DASH_GT, + STATE(5101), 1, sym_constant, - STATE(2009), 1, + STATE(5191), 1, sym__type, - STATE(7657), 1, + STATE(7697), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9411), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(2012), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626673,36 +633058,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351728] = 14, + [353982] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5205), 1, - anon_sym_LPAREN, - ACTIONS(5210), 1, - anon_sym_typeof, - ACTIONS(5212), 1, - sym__constant_segment, - ACTIONS(5214), 1, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(5218), 1, + ACTIONS(1417), 1, + sym__constant_segment, + ACTIONS(5137), 1, + anon_sym_typeof, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(5220), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(9391), 1, + ACTIONS(5180), 1, + anon_sym_LPAREN, + ACTIONS(9452), 1, anon_sym_DASH_GT, - STATE(3239), 1, - sym__type, - STATE(3273), 1, + STATE(2784), 1, sym_constant, - STATE(7658), 1, + STATE(2788), 1, + sym__type, + STATE(7698), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5216), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(3524), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626715,17 +633100,27 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351784] = 5, + [354038] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7659), 1, + ACTIONS(9756), 1, + anon_sym_LBRACK, + ACTIONS(9758), 1, + anon_sym_STAR, + ACTIONS(9760), 1, + anon_sym_PIPE, + ACTIONS(9762), 1, + anon_sym_DOT, + ACTIONS(9764), 1, + anon_sym_QMARK, + STATE(7699), 1, sym_heredoc_body, - STATE(7717), 1, + STATE(7741), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4588), 22, + ACTIONS(4650), 17, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -626735,49 +633130,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_end, + anon_sym_forall, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [354086] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9756), 1, + anon_sym_LBRACK, + ACTIONS(9758), 1, anon_sym_STAR, + ACTIONS(9760), 1, anon_sym_PIPE, + ACTIONS(9762), 1, anon_sym_DOT, - anon_sym_forall, + ACTIONS(9764), 1, anon_sym_QMARK, + STATE(7700), 1, + sym_heredoc_body, + STATE(7741), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4621), 17, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_forall, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [351822] = 14, + [354134] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, - anon_sym_COLON_COLON, - ACTIONS(3108), 1, + ACTIONS(9355), 1, sym__constant_segment, - ACTIONS(5370), 1, - anon_sym_typeof, - ACTIONS(5374), 1, + ACTIONS(9357), 1, + anon_sym_COLON_COLON, + ACTIONS(9361), 1, sym__start_of_tuple_type, - ACTIONS(5376), 1, + ACTIONS(9363), 1, sym__start_of_named_tuple_type, - ACTIONS(5378), 1, + ACTIONS(9384), 1, + anon_sym_typeof, + ACTIONS(9432), 1, anon_sym_LPAREN, - ACTIONS(5380), 1, + ACTIONS(9434), 1, anon_sym_DASH_GT, - STATE(5097), 1, + STATE(7701), 1, + sym_heredoc_body, + STATE(8287), 1, sym_constant, - STATE(5174), 1, + STATE(8597), 1, sym__type, - STATE(7660), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(9386), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(8534), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626790,36 +633218,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351878] = 14, + [354190] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(1675), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(2965), 1, + sym__constant_segment, + ACTIONS(5194), 1, + anon_sym_LPAREN, + ACTIONS(5199), 1, + anon_sym_typeof, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, - anon_sym_LPAREN, - ACTIONS(9279), 1, + ACTIONS(9436), 1, anon_sym_DASH_GT, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7661), 1, - sym_heredoc_body, - STATE(8134), 1, - sym_constant, - STATE(8142), 1, + STATE(2878), 1, sym__type, + STATE(3180), 1, + sym_constant, + STATE(7702), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626832,69 +633260,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [351934] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9717), 1, - anon_sym_LPAREN2, - STATE(7662), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4599), 22, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [351972] = 14, + [354246] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(7094), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(7099), 1, anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(7101), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(7103), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(7107), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(7109), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, + ACTIONS(9464), 1, anon_sym_DASH_GT, - STATE(7663), 1, - sym_heredoc_body, - STATE(8192), 1, + STATE(7692), 1, sym_constant, - STATE(8194), 1, + STATE(7700), 1, sym__type, + STATE(7703), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(7105), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(7763), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626907,36 +633302,78 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352028] = 14, + [354302] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8058), 1, + ACTIONS(4384), 1, + sym__start_of_tuple_type, + ACTIONS(4386), 1, + sym__start_of_named_tuple_type, + ACTIONS(9502), 1, anon_sym_LPAREN, - ACTIONS(8063), 1, + ACTIONS(9504), 1, + anon_sym_DASH_GT, + ACTIONS(9508), 1, anon_sym_typeof, - ACTIONS(8065), 1, + ACTIONS(9510), 1, sym__constant_segment, - ACTIONS(8067), 1, + ACTIONS(9512), 1, + anon_sym_COLON_COLON, + STATE(2007), 1, + sym__type, + STATE(2008), 1, + sym_constant, + STATE(7704), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9514), 2, + sym_self, + sym_underscore_type, + STATE(2024), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [354358] = 14, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1017), 1, anon_sym_COLON_COLON, - ACTIONS(8071), 1, + ACTIONS(3051), 1, + sym__constant_segment, + ACTIONS(5330), 1, + anon_sym_typeof, + ACTIONS(5334), 1, sym__start_of_tuple_type, - ACTIONS(8073), 1, + ACTIONS(5336), 1, sym__start_of_named_tuple_type, - ACTIONS(9445), 1, + ACTIONS(5338), 1, + anon_sym_LPAREN, + ACTIONS(5340), 1, anon_sym_DASH_GT, - STATE(7664), 1, - sym_heredoc_body, - STATE(7836), 1, + STATE(4893), 1, sym_constant, - STATE(7842), 1, + STATE(5017), 1, sym__type, + STATE(7705), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8069), 2, + ACTIONS(5332), 2, sym_self, sym_underscore_type, - STATE(7855), 12, + STATE(5015), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626949,36 +633386,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352084] = 14, + [354414] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8058), 1, + ACTIONS(1675), 1, + anon_sym_COLON_COLON, + ACTIONS(2965), 1, + sym__constant_segment, + ACTIONS(5194), 1, anon_sym_LPAREN, - ACTIONS(8063), 1, + ACTIONS(5199), 1, anon_sym_typeof, - ACTIONS(8065), 1, - sym__constant_segment, - ACTIONS(8067), 1, - anon_sym_COLON_COLON, - ACTIONS(8071), 1, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(8073), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(9445), 1, + ACTIONS(9436), 1, anon_sym_DASH_GT, - STATE(7665), 1, - sym_heredoc_body, - STATE(7830), 1, + STATE(3044), 1, sym__type, - STATE(7836), 1, + STATE(3180), 1, sym_constant, + STATE(7706), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8069), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(7855), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -626991,36 +633428,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352140] = 14, + [354470] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(831), 1, - anon_sym_COLON_COLON, - ACTIONS(2996), 1, - sym__constant_segment, - ACTIONS(5269), 1, - anon_sym_typeof, - ACTIONS(5273), 1, + ACTIONS(4508), 1, sym__start_of_tuple_type, - ACTIONS(5275), 1, + ACTIONS(4510), 1, sym__start_of_named_tuple_type, - ACTIONS(5277), 1, + ACTIONS(9480), 1, anon_sym_LPAREN, - ACTIONS(9461), 1, + ACTIONS(9482), 1, anon_sym_DASH_GT, - STATE(4347), 1, + ACTIONS(9486), 1, + anon_sym_typeof, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(2064), 1, sym_constant, - STATE(4352), 1, + STATE(2076), 1, sym__type, - STATE(7666), 1, + STATE(7707), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5271), 2, + ACTIONS(9492), 2, sym_self, sym_underscore_type, - STATE(4663), 12, + STATE(2081), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627033,36 +633470,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352196] = 14, + [354526] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7677), 1, - anon_sym_typeof, - ACTIONS(7679), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(7681), 1, + ACTIONS(85), 1, anon_sym_COLON_COLON, - ACTIONS(7685), 1, + ACTIONS(5056), 1, + anon_sym_typeof, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(7687), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(7827), 1, + ACTIONS(5064), 1, anon_sym_LPAREN, - ACTIONS(7829), 1, + ACTIONS(9460), 1, anon_sym_DASH_GT, - STATE(7667), 1, - sym_heredoc_body, - STATE(7775), 1, + STATE(2394), 1, sym_constant, - STATE(7843), 1, + STATE(2409), 1, sym__type, + STATE(7708), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7683), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(7815), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627075,36 +633512,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352252] = 14, + [354582] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9343), 1, + ACTIONS(8021), 1, anon_sym_LPAREN, - ACTIONS(9348), 1, + ACTIONS(8026), 1, anon_sym_typeof, - ACTIONS(9350), 1, + ACTIONS(8028), 1, sym__constant_segment, - ACTIONS(9352), 1, + ACTIONS(8030), 1, anon_sym_COLON_COLON, - ACTIONS(9356), 1, + ACTIONS(8034), 1, sym__start_of_tuple_type, - ACTIONS(9358), 1, + ACTIONS(8036), 1, sym__start_of_named_tuple_type, - ACTIONS(9437), 1, + ACTIONS(9520), 1, anon_sym_DASH_GT, - STATE(7668), 1, + STATE(7709), 1, sym_heredoc_body, - STATE(8143), 1, + STATE(7870), 1, sym_constant, - STATE(8152), 1, + STATE(7889), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9354), 2, + ACTIONS(8032), 2, sym_self, sym_underscore_type, - STATE(8458), 12, + STATE(7900), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627117,36 +633554,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352308] = 14, + [354638] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5210), 1, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5212), 1, + ACTIONS(9395), 1, sym__constant_segment, - ACTIONS(5214), 1, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(5218), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5220), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(5222), 1, + ACTIONS(9428), 1, anon_sym_LPAREN, - ACTIONS(5224), 1, + ACTIONS(9430), 1, anon_sym_DASH_GT, - STATE(3273), 1, + STATE(7710), 1, + sym_heredoc_body, + STATE(8299), 1, sym_constant, - STATE(3412), 1, + STATE(8555), 1, sym__type, - STATE(7669), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5216), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(3524), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627159,36 +633596,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352364] = 14, + [354694] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, + ACTIONS(317), 1, anon_sym_COLON_COLON, - ACTIONS(2942), 1, + ACTIONS(2776), 1, sym__constant_segment, - ACTIONS(5157), 1, + ACTIONS(5075), 1, anon_sym_LPAREN, - ACTIONS(5159), 1, + ACTIONS(5077), 1, anon_sym_DASH_GT, - ACTIONS(5161), 1, + ACTIONS(5079), 1, anon_sym_typeof, - ACTIONS(5165), 1, + ACTIONS(5083), 1, sym__start_of_tuple_type, - ACTIONS(5167), 1, + ACTIONS(5085), 1, sym__start_of_named_tuple_type, - STATE(3026), 1, + STATE(2522), 1, sym_constant, - STATE(3308), 1, + STATE(2664), 1, sym__type, - STATE(7670), 1, + STATE(7711), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(5081), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(2692), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627201,36 +633638,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352420] = 14, + [354750] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4471), 1, - sym__start_of_tuple_type, - ACTIONS(4473), 1, - sym__start_of_named_tuple_type, - ACTIONS(9477), 1, + ACTIONS(8021), 1, anon_sym_LPAREN, - ACTIONS(9479), 1, - anon_sym_DASH_GT, - ACTIONS(9483), 1, + ACTIONS(8026), 1, anon_sym_typeof, - ACTIONS(9485), 1, + ACTIONS(8028), 1, sym__constant_segment, - ACTIONS(9487), 1, + ACTIONS(8030), 1, anon_sym_COLON_COLON, - STATE(2073), 1, - sym__type, - STATE(2077), 1, - sym_constant, - STATE(7671), 1, + ACTIONS(8034), 1, + sym__start_of_tuple_type, + ACTIONS(8036), 1, + sym__start_of_named_tuple_type, + ACTIONS(9520), 1, + anon_sym_DASH_GT, + STATE(7712), 1, sym_heredoc_body, + STATE(7870), 1, + sym_constant, + STATE(7876), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9489), 2, + ACTIONS(8032), 2, sym_self, sym_underscore_type, - STATE(2095), 12, + STATE(7900), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627243,36 +633680,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352476] = 14, + [354806] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(313), 1, + ACTIONS(575), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(2935), 1, sym__constant_segment, - ACTIONS(5038), 1, + ACTIONS(5098), 1, anon_sym_LPAREN, - ACTIONS(5040), 1, - anon_sym_DASH_GT, - ACTIONS(5042), 1, + ACTIONS(5103), 1, anon_sym_typeof, - ACTIONS(5046), 1, + ACTIONS(5107), 1, sym__start_of_tuple_type, - ACTIONS(5048), 1, + ACTIONS(5109), 1, sym__start_of_named_tuple_type, - STATE(2488), 1, + ACTIONS(9532), 1, + anon_sym_DASH_GT, + STATE(2604), 1, sym_constant, - STATE(2710), 1, + STATE(2660), 1, sym__type, - STATE(7672), 1, + STATE(7713), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5044), 2, + ACTIONS(5105), 2, sym_self, sym_underscore_type, - STATE(2592), 12, + STATE(2790), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627285,36 +633722,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352532] = 14, + [354862] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(85), 1, + ACTIONS(575), 1, anon_sym_COLON_COLON, - ACTIONS(4993), 1, + ACTIONS(2935), 1, + sym__constant_segment, + ACTIONS(5098), 1, + anon_sym_LPAREN, + ACTIONS(5103), 1, anon_sym_typeof, - ACTIONS(4997), 1, + ACTIONS(5107), 1, sym__start_of_tuple_type, - ACTIONS(4999), 1, + ACTIONS(5109), 1, sym__start_of_named_tuple_type, - ACTIONS(5023), 1, - anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(9532), 1, anon_sym_DASH_GT, - STATE(2391), 1, + STATE(2604), 1, sym_constant, - STATE(2409), 1, + STATE(2689), 1, sym__type, - STATE(7673), 1, + STATE(7714), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(5105), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(2790), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627327,36 +633764,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352588] = 14, + [354918] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9295), 1, - anon_sym_LPAREN, - ACTIONS(9297), 1, - anon_sym_DASH_GT, - ACTIONS(9303), 1, - sym__constant_segment, - ACTIONS(9305), 1, + ACTIONS(2710), 1, anon_sym_COLON_COLON, - ACTIONS(9309), 1, + ACTIONS(3141), 1, + sym__constant_segment, + ACTIONS(5402), 1, + anon_sym_LPAREN, + ACTIONS(5407), 1, + anon_sym_typeof, + ACTIONS(5411), 1, sym__start_of_tuple_type, - ACTIONS(9311), 1, + ACTIONS(5413), 1, sym__start_of_named_tuple_type, - ACTIONS(9336), 1, - anon_sym_typeof, - STATE(7674), 1, - sym_heredoc_body, - STATE(8184), 1, - sym__type, - STATE(8312), 1, + ACTIONS(9472), 1, + anon_sym_DASH_GT, + STATE(5101), 1, sym_constant, + STATE(5128), 1, + sym__type, + STATE(7715), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9338), 2, + ACTIONS(5409), 2, sym_self, sym_underscore_type, - STATE(8437), 12, + STATE(5166), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627369,36 +633806,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352644] = 14, + [354974] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(85), 1, - anon_sym_COLON_COLON, - ACTIONS(4989), 1, + ACTIONS(9347), 1, anon_sym_LPAREN, - ACTIONS(4991), 1, + ACTIONS(9349), 1, anon_sym_DASH_GT, - ACTIONS(4993), 1, - anon_sym_typeof, - ACTIONS(4997), 1, + ACTIONS(9355), 1, + sym__constant_segment, + ACTIONS(9357), 1, + anon_sym_COLON_COLON, + ACTIONS(9361), 1, sym__start_of_tuple_type, - ACTIONS(4999), 1, + ACTIONS(9363), 1, sym__start_of_named_tuple_type, - STATE(2391), 1, - sym_constant, - STATE(2443), 1, - sym__type, - STATE(7675), 1, + ACTIONS(9384), 1, + anon_sym_typeof, + STATE(7716), 1, sym_heredoc_body, + STATE(8192), 1, + sym__type, + STATE(8287), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(9386), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(8534), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627411,36 +633848,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352700] = 14, + [355030] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1299), 1, + ACTIONS(1579), 1, anon_sym_COLON_COLON, - ACTIONS(1397), 1, + ACTIONS(2608), 1, sym__constant_segment, - ACTIONS(5097), 1, - anon_sym_LPAREN, - ACTIONS(5102), 1, + ACTIONS(5252), 1, anon_sym_typeof, - ACTIONS(5106), 1, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(5108), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(9429), 1, + ACTIONS(5263), 1, + anon_sym_LPAREN, + ACTIONS(5265), 1, anon_sym_DASH_GT, - STATE(2794), 1, - sym__type, - STATE(2865), 1, + STATE(3191), 1, sym_constant, - STATE(7676), 1, + STATE(3584), 1, + sym__type, + STATE(7717), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5104), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(2978), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627453,36 +633890,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352756] = 14, + [355086] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5118), 1, - anon_sym_typeof, - ACTIONS(5120), 1, - sym__constant_segment, - ACTIONS(5122), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(5126), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(5128), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(5150), 1, - anon_sym_LPAREN, - ACTIONS(5152), 1, - anon_sym_DASH_GT, - STATE(2834), 1, - sym_constant, - STATE(3149), 1, - sym__type, - STATE(7677), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7718), 1, sym_heredoc_body, + STATE(8154), 1, + sym__type, + STATE(8180), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5124), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(3092), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627495,36 +633932,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352812] = 14, + [355142] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(567), 1, + ACTIONS(1579), 1, anon_sym_COLON_COLON, - ACTIONS(2904), 1, + ACTIONS(2608), 1, sym__constant_segment, - ACTIONS(5061), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5066), 1, + ACTIONS(5252), 1, anon_sym_typeof, - ACTIONS(5070), 1, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(5072), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(9449), 1, + ACTIONS(9444), 1, anon_sym_DASH_GT, - STATE(2676), 1, + STATE(3191), 1, sym_constant, - STATE(2744), 1, + STATE(3194), 1, sym__type, - STATE(7678), 1, + STATE(7719), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5068), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(2791), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627537,36 +633974,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352868] = 14, + [355198] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(709), 1, - anon_sym_COLON_COLON, - ACTIONS(2982), 1, - sym__constant_segment, - ACTIONS(5240), 1, - anon_sym_LPAREN, - ACTIONS(5245), 1, + ACTIONS(9369), 1, anon_sym_typeof, - ACTIONS(5249), 1, + ACTIONS(9371), 1, + sym__constant_segment, + ACTIONS(9373), 1, + anon_sym_COLON_COLON, + ACTIONS(9377), 1, sym__start_of_tuple_type, - ACTIONS(5251), 1, + ACTIONS(9379), 1, sym__start_of_named_tuple_type, - ACTIONS(9469), 1, + ACTIONS(9405), 1, + anon_sym_LPAREN, + ACTIONS(9440), 1, anon_sym_DASH_GT, - STATE(3845), 1, - sym__type, - STATE(4227), 1, - sym_constant, - STATE(7679), 1, + STATE(7720), 1, sym_heredoc_body, + STATE(8251), 1, + sym_constant, + STATE(8364), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5247), 2, + ACTIONS(9375), 2, sym_self, sym_underscore_type, - STATE(4328), 12, + STATE(8523), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627579,36 +634016,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352924] = 14, + [355254] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7071), 1, - anon_sym_LPAREN, - ACTIONS(7076), 1, + ACTIONS(5223), 1, anon_sym_typeof, - ACTIONS(7078), 1, + ACTIONS(5225), 1, sym__constant_segment, - ACTIONS(7080), 1, + ACTIONS(5227), 1, anon_sym_COLON_COLON, - ACTIONS(7084), 1, + ACTIONS(5231), 1, sym__start_of_tuple_type, - ACTIONS(7086), 1, + ACTIONS(5233), 1, sym__start_of_named_tuple_type, - ACTIONS(9417), 1, + ACTIONS(5239), 1, + anon_sym_LPAREN, + ACTIONS(9524), 1, anon_sym_DASH_GT, - STATE(7662), 1, + STATE(3304), 1, + sym__type, + STATE(3316), 1, sym_constant, - STATE(7680), 1, + STATE(7721), 1, sym_heredoc_body, - STATE(7705), 1, - sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7082), 2, + ACTIONS(5229), 2, sym_self, sym_underscore_type, - STATE(7736), 12, + STATE(3579), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627621,36 +634058,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [352980] = 14, + [355310] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(445), 1, - anon_sym_COLON_COLON, - ACTIONS(2890), 1, - sym__constant_segment, - ACTIONS(5084), 1, - anon_sym_LPAREN, - ACTIONS(5089), 1, + ACTIONS(8026), 1, anon_sym_typeof, - ACTIONS(5093), 1, + ACTIONS(8028), 1, + sym__constant_segment, + ACTIONS(8030), 1, + anon_sym_COLON_COLON, + ACTIONS(8034), 1, sym__start_of_tuple_type, - ACTIONS(5095), 1, + ACTIONS(8036), 1, sym__start_of_named_tuple_type, - ACTIONS(9457), 1, + ACTIONS(8496), 1, + anon_sym_LPAREN, + ACTIONS(8498), 1, anon_sym_DASH_GT, - STATE(2803), 1, + STATE(7722), 1, + sym_heredoc_body, + STATE(7870), 1, sym_constant, - STATE(2856), 1, + STATE(7917), 1, sym__type, - STATE(7681), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5091), 2, + ACTIONS(8032), 2, sym_self, sym_underscore_type, - STATE(3166), 12, + STATE(7900), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627663,36 +634100,74 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353036] = 14, + [355366] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4471), 1, - sym__start_of_tuple_type, - ACTIONS(4473), 1, - sym__start_of_named_tuple_type, - ACTIONS(9477), 1, - anon_sym_LPAREN, - ACTIONS(9479), 1, + ACTIONS(9756), 1, + anon_sym_LBRACK, + ACTIONS(9758), 1, + anon_sym_STAR, + ACTIONS(9760), 1, + anon_sym_PIPE, + ACTIONS(9762), 1, + anon_sym_DOT, + ACTIONS(9764), 1, + anon_sym_QMARK, + STATE(7723), 1, + sym_heredoc_body, + STATE(7741), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4640), 17, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_DASH_GT, - ACTIONS(9483), 1, + anon_sym_end, + anon_sym_forall, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [355414] = 14, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(5223), 1, anon_sym_typeof, - ACTIONS(9485), 1, + ACTIONS(5225), 1, sym__constant_segment, - ACTIONS(9487), 1, + ACTIONS(5227), 1, anon_sym_COLON_COLON, - STATE(2061), 1, + ACTIONS(5231), 1, + sym__start_of_tuple_type, + ACTIONS(5233), 1, + sym__start_of_named_tuple_type, + ACTIONS(5239), 1, + anon_sym_LPAREN, + ACTIONS(9524), 1, + anon_sym_DASH_GT, + STATE(3270), 1, sym__type, - STATE(2077), 1, + STATE(3316), 1, sym_constant, - STATE(7682), 1, + STATE(7724), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9489), 2, + ACTIONS(5229), 2, sym_self, sym_underscore_type, - STATE(2095), 12, + STATE(3579), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627705,36 +634180,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353092] = 14, + [355470] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(709), 1, - anon_sym_COLON_COLON, - ACTIONS(2982), 1, + ACTIONS(83), 1, sym__constant_segment, - ACTIONS(5240), 1, - anon_sym_LPAREN, - ACTIONS(5245), 1, + ACTIONS(85), 1, + anon_sym_COLON_COLON, + ACTIONS(5056), 1, anon_sym_typeof, - ACTIONS(5249), 1, + ACTIONS(5060), 1, sym__start_of_tuple_type, - ACTIONS(5251), 1, + ACTIONS(5062), 1, sym__start_of_named_tuple_type, - ACTIONS(9469), 1, + ACTIONS(5064), 1, + anon_sym_LPAREN, + ACTIONS(9460), 1, anon_sym_DASH_GT, - STATE(3861), 1, - sym__type, - STATE(4227), 1, + STATE(2394), 1, sym_constant, - STATE(7683), 1, + STATE(2413), 1, + sym__type, + STATE(7725), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5247), 2, + ACTIONS(5058), 2, sym_self, sym_underscore_type, - STATE(4328), 12, + STATE(2476), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627747,36 +634222,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353148] = 14, + [355526] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, + ACTIONS(181), 1, anon_sym_COLON_COLON, - ACTIONS(2942), 1, + ACTIONS(2067), 1, sym__constant_segment, - ACTIONS(5161), 1, + ACTIONS(4997), 1, anon_sym_typeof, - ACTIONS(5165), 1, + ACTIONS(5001), 1, sym__start_of_tuple_type, - ACTIONS(5167), 1, + ACTIONS(5003), 1, sym__start_of_named_tuple_type, - ACTIONS(5169), 1, + ACTIONS(5013), 1, anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(9476), 1, anon_sym_DASH_GT, - STATE(3026), 1, - sym_constant, - STATE(3034), 1, + STATE(2336), 1, sym__type, - STATE(7684), 1, + STATE(2351), 1, + sym_constant, + STATE(7726), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(4999), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(2379), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627789,36 +634264,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353204] = 14, + [355582] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2272), 1, + ACTIONS(1579), 1, anon_sym_COLON_COLON, - ACTIONS(3052), 1, + ACTIONS(2608), 1, sym__constant_segment, - ACTIONS(5340), 1, + ACTIONS(5247), 1, anon_sym_LPAREN, - ACTIONS(5345), 1, + ACTIONS(5252), 1, anon_sym_typeof, - ACTIONS(5349), 1, + ACTIONS(5256), 1, sym__start_of_tuple_type, - ACTIONS(5351), 1, + ACTIONS(5258), 1, sym__start_of_named_tuple_type, - ACTIONS(9491), 1, + ACTIONS(9444), 1, anon_sym_DASH_GT, - STATE(4886), 1, + STATE(3191), 1, sym_constant, - STATE(4893), 1, + STATE(3195), 1, sym__type, - STATE(7685), 1, + STATE(7727), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5347), 2, + ACTIONS(5254), 2, sym_self, sym_underscore_type, - STATE(5055), 12, + STATE(3587), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627831,36 +634306,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353260] = 14, + [355638] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7672), 1, + ACTIONS(9347), 1, anon_sym_LPAREN, - ACTIONS(7677), 1, - anon_sym_typeof, - ACTIONS(7679), 1, + ACTIONS(9349), 1, + anon_sym_DASH_GT, + ACTIONS(9355), 1, sym__constant_segment, - ACTIONS(7681), 1, + ACTIONS(9357), 1, anon_sym_COLON_COLON, - ACTIONS(7685), 1, + ACTIONS(9361), 1, sym__start_of_tuple_type, - ACTIONS(7687), 1, + ACTIONS(9363), 1, sym__start_of_named_tuple_type, - ACTIONS(9395), 1, - anon_sym_DASH_GT, - STATE(7686), 1, + ACTIONS(9384), 1, + anon_sym_typeof, + STATE(7728), 1, sym_heredoc_body, - STATE(7768), 1, + STATE(8185), 1, sym__type, - STATE(7775), 1, + STATE(8287), 1, sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7683), 2, + ACTIONS(9386), 2, sym_self, sym_underscore_type, - STATE(7815), 12, + STATE(8534), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627873,74 +634348,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353316] = 10, + [355694] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9704), 1, - anon_sym_LBRACK, - ACTIONS(9706), 1, - anon_sym_STAR, - ACTIONS(9708), 1, - anon_sym_PIPE, - ACTIONS(9710), 1, - anon_sym_DOT, - ACTIONS(9712), 1, - anon_sym_QMARK, - STATE(7687), 1, - sym_heredoc_body, - STATE(7717), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4595), 17, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(2312), 1, + anon_sym_COLON_COLON, + ACTIONS(3083), 1, + sym__constant_segment, + ACTIONS(5377), 1, + anon_sym_LPAREN, + ACTIONS(5379), 1, anon_sym_DASH_GT, - anon_sym_end, - anon_sym_forall, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [353364] = 14, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9321), 1, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(9323), 1, - sym__constant_segment, - ACTIONS(9325), 1, - anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(5385), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(5387), 1, sym__start_of_named_tuple_type, - ACTIONS(9383), 1, - anon_sym_LPAREN, - ACTIONS(9385), 1, - anon_sym_DASH_GT, - STATE(7688), 1, - sym_heredoc_body, - STATE(8192), 1, + STATE(5014), 1, sym_constant, - STATE(8731), 1, + STATE(5106), 1, sym__type, + STATE(7729), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(5383), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(5099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627953,36 +634390,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353420] = 14, + [355750] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9295), 1, - anon_sym_LPAREN, - ACTIONS(9297), 1, - anon_sym_DASH_GT, - ACTIONS(9303), 1, - sym__constant_segment, - ACTIONS(9305), 1, + ACTIONS(719), 1, anon_sym_COLON_COLON, - ACTIONS(9309), 1, + ACTIONS(3013), 1, + sym__constant_segment, + ACTIONS(5281), 1, + anon_sym_typeof, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(9311), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(9336), 1, - anon_sym_typeof, - STATE(7689), 1, - sym_heredoc_body, - STATE(8181), 1, - sym__type, - STATE(8312), 1, + ACTIONS(5289), 1, + anon_sym_LPAREN, + ACTIONS(9456), 1, + anon_sym_DASH_GT, + STATE(4258), 1, sym_constant, + STATE(4279), 1, + sym__type, + STATE(7730), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9338), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(8437), 12, + STATE(4483), 12, sym_typeof, sym_class_type, sym_union_type, @@ -627995,36 +634432,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353476] = 14, + [355806] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5205), 1, - anon_sym_LPAREN, - ACTIONS(5210), 1, - anon_sym_typeof, - ACTIONS(5212), 1, - sym__constant_segment, - ACTIONS(5214), 1, + ACTIONS(719), 1, anon_sym_COLON_COLON, - ACTIONS(5218), 1, + ACTIONS(3013), 1, + sym__constant_segment, + ACTIONS(5281), 1, + anon_sym_typeof, + ACTIONS(5285), 1, sym__start_of_tuple_type, - ACTIONS(5220), 1, + ACTIONS(5287), 1, sym__start_of_named_tuple_type, - ACTIONS(9391), 1, + ACTIONS(5289), 1, + anon_sym_LPAREN, + ACTIONS(9456), 1, anon_sym_DASH_GT, - STATE(3273), 1, + STATE(4258), 1, sym_constant, - STATE(3301), 1, + STATE(4281), 1, sym__type, - STATE(7690), 1, + STATE(7731), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5216), 2, + ACTIONS(5283), 2, sym_self, sym_underscore_type, - STATE(3524), 12, + STATE(4483), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628037,36 +634474,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353532] = 14, + [355862] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7672), 1, + ACTIONS(4508), 1, + sym__start_of_tuple_type, + ACTIONS(4510), 1, + sym__start_of_named_tuple_type, + ACTIONS(9480), 1, anon_sym_LPAREN, - ACTIONS(7677), 1, + ACTIONS(9482), 1, + anon_sym_DASH_GT, + ACTIONS(9486), 1, anon_sym_typeof, - ACTIONS(7679), 1, + ACTIONS(9488), 1, sym__constant_segment, - ACTIONS(7681), 1, + ACTIONS(9490), 1, anon_sym_COLON_COLON, - ACTIONS(7685), 1, - sym__start_of_tuple_type, - ACTIONS(7687), 1, - sym__start_of_named_tuple_type, - ACTIONS(9395), 1, - anon_sym_DASH_GT, - STATE(7691), 1, - sym_heredoc_body, - STATE(7770), 1, + STATE(2058), 1, sym__type, - STATE(7775), 1, + STATE(2064), 1, sym_constant, + STATE(7732), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7683), 2, + ACTIONS(9492), 2, sym_self, sym_underscore_type, - STATE(7815), 12, + STATE(2081), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628079,36 +634516,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353588] = 14, + [355918] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(179), 1, + ACTIONS(451), 1, anon_sym_COLON_COLON, - ACTIONS(2042), 1, + ACTIONS(2921), 1, sym__constant_segment, - ACTIONS(4953), 1, + ACTIONS(5121), 1, anon_sym_LPAREN, - ACTIONS(4958), 1, + ACTIONS(5123), 1, + anon_sym_DASH_GT, + ACTIONS(5125), 1, anon_sym_typeof, - ACTIONS(4962), 1, + ACTIONS(5129), 1, sym__start_of_tuple_type, - ACTIONS(4964), 1, + ACTIONS(5131), 1, sym__start_of_named_tuple_type, - ACTIONS(9453), 1, - anon_sym_DASH_GT, - STATE(2336), 1, - sym__type, - STATE(2346), 1, + STATE(2829), 1, sym_constant, - STATE(7692), 1, + STATE(3183), 1, + sym__type, + STATE(7733), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4960), 2, + ACTIONS(5127), 2, sym_self, sym_underscore_type, - STATE(2367), 12, + STATE(2993), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628121,36 +634558,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353644] = 14, + [355974] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9303), 1, - sym__constant_segment, - ACTIONS(9305), 1, + ACTIONS(451), 1, anon_sym_COLON_COLON, - ACTIONS(9309), 1, + ACTIONS(2921), 1, + sym__constant_segment, + ACTIONS(5125), 1, + anon_sym_typeof, + ACTIONS(5129), 1, sym__start_of_tuple_type, - ACTIONS(9311), 1, + ACTIONS(5131), 1, sym__start_of_named_tuple_type, - ACTIONS(9336), 1, - anon_sym_typeof, - ACTIONS(9379), 1, + ACTIONS(5165), 1, anon_sym_LPAREN, - ACTIONS(9381), 1, + ACTIONS(9536), 1, anon_sym_DASH_GT, - STATE(7693), 1, - sym_heredoc_body, - STATE(8312), 1, + STATE(2829), 1, sym_constant, - STATE(8578), 1, + STATE(2832), 1, sym__type, + STATE(7734), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9338), 2, + ACTIONS(5127), 2, sym_self, sym_underscore_type, - STATE(8437), 12, + STATE(2993), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628163,36 +634600,69 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353700] = 14, + [356030] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7076), 1, - anon_sym_typeof, - ACTIONS(7078), 1, - sym__constant_segment, - ACTIONS(7080), 1, + STATE(7735), 1, + sym_heredoc_body, + STATE(7741), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4629), 22, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [356068] = 14, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1315), 1, anon_sym_COLON_COLON, - ACTIONS(7084), 1, + ACTIONS(1417), 1, + sym__constant_segment, + ACTIONS(5137), 1, + anon_sym_typeof, + ACTIONS(5141), 1, sym__start_of_tuple_type, - ACTIONS(7086), 1, + ACTIONS(5143), 1, sym__start_of_named_tuple_type, - ACTIONS(7224), 1, + ACTIONS(5180), 1, anon_sym_LPAREN, - ACTIONS(7226), 1, + ACTIONS(9452), 1, anon_sym_DASH_GT, - STATE(7662), 1, + STATE(2784), 1, sym_constant, - STATE(7694), 1, - sym_heredoc_body, - STATE(7746), 1, + STATE(2787), 1, sym__type, + STATE(7736), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7082), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(7736), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628205,36 +634675,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353756] = 14, + [356124] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2663), 1, + ACTIONS(893), 1, anon_sym_COLON_COLON, - ACTIONS(3108), 1, + ACTIONS(3033), 1, sym__constant_segment, - ACTIONS(5365), 1, + ACTIONS(5302), 1, anon_sym_LPAREN, - ACTIONS(5370), 1, + ACTIONS(5304), 1, + anon_sym_DASH_GT, + ACTIONS(5306), 1, anon_sym_typeof, - ACTIONS(5374), 1, + ACTIONS(5310), 1, sym__start_of_tuple_type, - ACTIONS(5376), 1, + ACTIONS(5312), 1, sym__start_of_named_tuple_type, - ACTIONS(9433), 1, - anon_sym_DASH_GT, - STATE(5029), 1, - sym__type, - STATE(5097), 1, + STATE(4464), 1, sym_constant, - STATE(7695), 1, + STATE(4894), 1, + sym__type, + STATE(7737), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5372), 2, + ACTIONS(5308), 2, sym_self, sym_underscore_type, - STATE(5199), 12, + STATE(4646), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628247,36 +634717,74 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353812] = 14, + [356180] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(567), 1, - anon_sym_COLON_COLON, - ACTIONS(2904), 1, - sym__constant_segment, - ACTIONS(5061), 1, + ACTIONS(9756), 1, + anon_sym_LBRACK, + ACTIONS(9758), 1, + anon_sym_STAR, + ACTIONS(9760), 1, + anon_sym_PIPE, + ACTIONS(9762), 1, + anon_sym_DOT, + ACTIONS(9764), 1, + anon_sym_QMARK, + STATE(7738), 1, + sym_heredoc_body, + STATE(7741), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4625), 17, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_forall, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [356228] = 14, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7684), 1, anon_sym_LPAREN, - ACTIONS(5066), 1, + ACTIONS(7689), 1, anon_sym_typeof, - ACTIONS(5070), 1, + ACTIONS(7691), 1, + sym__constant_segment, + ACTIONS(7693), 1, + anon_sym_COLON_COLON, + ACTIONS(7697), 1, sym__start_of_tuple_type, - ACTIONS(5072), 1, + ACTIONS(7699), 1, sym__start_of_named_tuple_type, - ACTIONS(9449), 1, + ACTIONS(9516), 1, anon_sym_DASH_GT, - STATE(2676), 1, + STATE(7739), 1, + sym_heredoc_body, + STATE(7803), 1, sym_constant, - STATE(2692), 1, + STATE(7804), 1, sym__type, - STATE(7696), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5068), 2, + ACTIONS(7695), 2, sym_self, sym_underscore_type, - STATE(2791), 12, + STATE(7865), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628289,36 +634797,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353868] = 14, + [356284] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(445), 1, - anon_sym_COLON_COLON, - ACTIONS(2890), 1, - sym__constant_segment, - ACTIONS(5089), 1, + ACTIONS(7094), 1, + anon_sym_LPAREN, + ACTIONS(7099), 1, anon_sym_typeof, - ACTIONS(5093), 1, + ACTIONS(7101), 1, + sym__constant_segment, + ACTIONS(7103), 1, + anon_sym_COLON_COLON, + ACTIONS(7107), 1, sym__start_of_tuple_type, - ACTIONS(5095), 1, + ACTIONS(7109), 1, sym__start_of_named_tuple_type, - ACTIONS(5136), 1, - anon_sym_LPAREN, - ACTIONS(5138), 1, + ACTIONS(9464), 1, anon_sym_DASH_GT, - STATE(2803), 1, + STATE(7692), 1, sym_constant, - STATE(3150), 1, + STATE(7735), 1, sym__type, - STATE(7697), 1, + STATE(7740), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5091), 2, + ACTIONS(7105), 2, sym_self, sym_underscore_type, - STATE(3166), 12, + STATE(7763), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628331,27 +634839,19 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [353924] = 10, + [356340] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9704), 1, - anon_sym_LBRACK, - ACTIONS(9706), 1, - anon_sym_STAR, - ACTIONS(9708), 1, + ACTIONS(9760), 1, anon_sym_PIPE, - ACTIONS(9710), 1, - anon_sym_DOT, - ACTIONS(9712), 1, - anon_sym_QMARK, - STATE(7698), 1, - sym_heredoc_body, - STATE(7717), 1, + STATE(7681), 1, aux_sym_union_type_repeat1, + STATE(7741), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4605), 17, + ACTIONS(4636), 21, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -628361,44 +634861,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, + anon_sym_DOT, anon_sym_forall, + anon_sym_QMARK, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [353972] = 14, + [356380] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9316), 1, + ACTIONS(9365), 1, anon_sym_LPAREN, - ACTIONS(9321), 1, + ACTIONS(9367), 1, + anon_sym_DASH_GT, + ACTIONS(9369), 1, anon_sym_typeof, - ACTIONS(9323), 1, + ACTIONS(9371), 1, sym__constant_segment, - ACTIONS(9325), 1, + ACTIONS(9373), 1, anon_sym_COLON_COLON, - ACTIONS(9329), 1, + ACTIONS(9377), 1, sym__start_of_tuple_type, - ACTIONS(9331), 1, + ACTIONS(9379), 1, sym__start_of_named_tuple_type, - ACTIONS(9413), 1, - anon_sym_DASH_GT, - STATE(7699), 1, + STATE(7742), 1, sym_heredoc_body, - STATE(8192), 1, + STATE(8251), 1, sym_constant, - STATE(8253), 1, + STATE(8461), 1, sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9327), 2, + ACTIONS(9375), 2, sym_self, sym_underscore_type, - STATE(8390), 12, + STATE(8523), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628411,36 +634915,78 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354028] = 14, + [356436] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8261), 1, + ACTIONS(1017), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3051), 1, + sym__constant_segment, + ACTIONS(5325), 1, + anon_sym_LPAREN, + ACTIONS(5330), 1, + anon_sym_typeof, + ACTIONS(5334), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5336), 1, sym__start_of_named_tuple_type, - ACTIONS(9277), 1, + ACTIONS(9448), 1, + anon_sym_DASH_GT, + STATE(4833), 1, + sym__type, + STATE(4893), 1, + sym_constant, + STATE(7743), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5332), 2, + sym_self, + sym_underscore_type, + STATE(5015), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [356492] = 14, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1315), 1, + anon_sym_COLON_COLON, + ACTIONS(1417), 1, + sym__constant_segment, + ACTIONS(5133), 1, anon_sym_LPAREN, - ACTIONS(9279), 1, + ACTIONS(5135), 1, anon_sym_DASH_GT, - ACTIONS(9281), 1, + ACTIONS(5137), 1, anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7700), 1, - sym_heredoc_body, - STATE(8134), 1, + ACTIONS(5141), 1, + sym__start_of_tuple_type, + ACTIONS(5143), 1, + sym__start_of_named_tuple_type, + STATE(2784), 1, sym_constant, - STATE(8523), 1, + STATE(3077), 1, sym__type, + STATE(7744), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5139), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(2897), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628453,36 +634999,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354084] = 14, + [356548] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1003), 1, + ACTIONS(1017), 1, anon_sym_COLON_COLON, - ACTIONS(3020), 1, + ACTIONS(3051), 1, sym__constant_segment, - ACTIONS(5310), 1, + ACTIONS(5325), 1, + anon_sym_LPAREN, + ACTIONS(5330), 1, anon_sym_typeof, - ACTIONS(5314), 1, + ACTIONS(5334), 1, sym__start_of_tuple_type, - ACTIONS(5316), 1, + ACTIONS(5336), 1, sym__start_of_named_tuple_type, - ACTIONS(5325), 1, - anon_sym_LPAREN, - ACTIONS(5327), 1, + ACTIONS(9448), 1, anon_sym_DASH_GT, - STATE(4652), 1, - sym_constant, - STATE(5000), 1, + STATE(4614), 1, sym__type, - STATE(7701), 1, + STATE(4893), 1, + sym_constant, + STATE(7745), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5312), 2, + ACTIONS(5332), 2, sym_self, sym_underscore_type, - STATE(5003), 12, + STATE(5015), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628495,36 +635041,78 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354140] = 14, + [356604] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(831), 1, + ACTIONS(451), 1, anon_sym_COLON_COLON, - ACTIONS(2996), 1, + ACTIONS(2921), 1, sym__constant_segment, - ACTIONS(5269), 1, + ACTIONS(5125), 1, anon_sym_typeof, - ACTIONS(5273), 1, + ACTIONS(5129), 1, sym__start_of_tuple_type, - ACTIONS(5275), 1, + ACTIONS(5131), 1, sym__start_of_named_tuple_type, - ACTIONS(5277), 1, + ACTIONS(5165), 1, anon_sym_LPAREN, - ACTIONS(9461), 1, + ACTIONS(9536), 1, anon_sym_DASH_GT, - STATE(4347), 1, + STATE(2829), 1, sym_constant, - STATE(4353), 1, + STATE(2833), 1, + sym__type, + STATE(7746), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5127), 2, + sym_self, + sym_underscore_type, + STATE(2993), 12, + sym_typeof, + sym_class_type, + sym_union_type, + sym__parenthesized_type, + sym_no_args_proc_type, + sym_parenthesized_proc_type, + sym_tuple_type, + sym_named_tuple_type, + sym_generic_instance_type, + sym_nilable_type, + sym_pointer_type, + sym_static_array_type, + [356660] = 14, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(2133), 1, + anon_sym_COLON_COLON, + ACTIONS(3067), 1, + sym__constant_segment, + ACTIONS(5344), 1, + anon_sym_LPAREN, + ACTIONS(5349), 1, + anon_sym_typeof, + ACTIONS(5353), 1, + sym__start_of_tuple_type, + ACTIONS(5355), 1, + sym__start_of_named_tuple_type, + ACTIONS(9494), 1, + anon_sym_DASH_GT, + STATE(4665), 1, sym__type, - STATE(7702), 1, + STATE(4791), 1, + sym_constant, + STATE(7747), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5271), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(4663), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628537,36 +635125,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354196] = 14, + [356716] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5113), 1, - anon_sym_LPAREN, - ACTIONS(5118), 1, - anon_sym_typeof, - ACTIONS(5120), 1, - sym__constant_segment, - ACTIONS(5122), 1, + ACTIONS(1675), 1, anon_sym_COLON_COLON, - ACTIONS(5126), 1, + ACTIONS(2965), 1, + sym__constant_segment, + ACTIONS(5199), 1, + anon_sym_typeof, + ACTIONS(5203), 1, sym__start_of_tuple_type, - ACTIONS(5128), 1, + ACTIONS(5205), 1, sym__start_of_named_tuple_type, - ACTIONS(9465), 1, + ACTIONS(5210), 1, + anon_sym_LPAREN, + ACTIONS(5212), 1, anon_sym_DASH_GT, - STATE(2807), 1, - sym__type, - STATE(2834), 1, + STATE(3180), 1, sym_constant, - STATE(7703), 1, + STATE(3248), 1, + sym__type, + STATE(7748), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5124), 2, + ACTIONS(5201), 2, sym_self, sym_underscore_type, - STATE(3092), 12, + STATE(3315), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628579,36 +635167,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354252] = 14, + [356772] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5113), 1, + ACTIONS(7684), 1, anon_sym_LPAREN, - ACTIONS(5118), 1, + ACTIONS(7689), 1, anon_sym_typeof, - ACTIONS(5120), 1, + ACTIONS(7691), 1, sym__constant_segment, - ACTIONS(5122), 1, + ACTIONS(7693), 1, anon_sym_COLON_COLON, - ACTIONS(5126), 1, + ACTIONS(7697), 1, sym__start_of_tuple_type, - ACTIONS(5128), 1, + ACTIONS(7699), 1, sym__start_of_named_tuple_type, - ACTIONS(9465), 1, + ACTIONS(9516), 1, anon_sym_DASH_GT, - STATE(2778), 1, - sym__type, - STATE(2834), 1, - sym_constant, - STATE(7704), 1, + STATE(7749), 1, sym_heredoc_body, + STATE(7803), 1, + sym_constant, + STATE(7807), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5124), 2, + ACTIONS(7695), 2, sym_self, sym_underscore_type, - STATE(3092), 12, + STATE(7865), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628621,74 +635209,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354308] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9704), 1, - anon_sym_LBRACK, - ACTIONS(9706), 1, - anon_sym_STAR, - ACTIONS(9708), 1, - anon_sym_PIPE, - ACTIONS(9710), 1, - anon_sym_DOT, - ACTIONS(9712), 1, - anon_sym_QMARK, - STATE(7705), 1, - sym_heredoc_body, - STATE(7717), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4613), 17, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_forall, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [354356] = 14, + [356828] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(179), 1, + ACTIONS(575), 1, anon_sym_COLON_COLON, - ACTIONS(2042), 1, + ACTIONS(2935), 1, sym__constant_segment, - ACTIONS(4953), 1, - anon_sym_LPAREN, - ACTIONS(4958), 1, + ACTIONS(5103), 1, anon_sym_typeof, - ACTIONS(4962), 1, + ACTIONS(5107), 1, sym__start_of_tuple_type, - ACTIONS(4964), 1, + ACTIONS(5109), 1, sym__start_of_named_tuple_type, - ACTIONS(9453), 1, + ACTIONS(5117), 1, + anon_sym_LPAREN, + ACTIONS(5119), 1, anon_sym_DASH_GT, - STATE(2346), 1, + STATE(2604), 1, sym_constant, - STATE(2350), 1, + STATE(2870), 1, sym__type, - STATE(7706), 1, + STATE(7750), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4960), 2, + ACTIONS(5105), 2, sym_self, sym_underscore_type, - STATE(2367), 12, + STATE(2790), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628701,36 +635251,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354412] = 14, + [356884] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, + ACTIONS(9388), 1, anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8261), 1, + ACTIONS(9393), 1, + anon_sym_typeof, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7707), 1, + ACTIONS(9468), 1, + anon_sym_DASH_GT, + STATE(7751), 1, sym_heredoc_body, - STATE(8122), 1, - sym__type, - STATE(8134), 1, + STATE(8299), 1, sym_constant, + STATE(8319), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628743,36 +635293,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354468] = 14, + [356940] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(831), 1, + ACTIONS(2133), 1, anon_sym_COLON_COLON, - ACTIONS(2996), 1, + ACTIONS(3067), 1, sym__constant_segment, - ACTIONS(5265), 1, + ACTIONS(5344), 1, anon_sym_LPAREN, - ACTIONS(5267), 1, - anon_sym_DASH_GT, - ACTIONS(5269), 1, + ACTIONS(5349), 1, anon_sym_typeof, - ACTIONS(5273), 1, + ACTIONS(5353), 1, sym__start_of_tuple_type, - ACTIONS(5275), 1, + ACTIONS(5355), 1, sym__start_of_named_tuple_type, - STATE(4347), 1, + ACTIONS(9494), 1, + anon_sym_DASH_GT, + STATE(4791), 1, sym_constant, - STATE(4862), 1, + STATE(4839), 1, sym__type, - STATE(7708), 1, + STATE(7752), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5271), 2, + ACTIONS(5351), 2, sym_self, sym_underscore_type, - STATE(4663), 12, + STATE(5020), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628785,36 +635335,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354524] = 14, + [356996] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(83), 1, - sym__constant_segment, - ACTIONS(85), 1, + ACTIONS(317), 1, anon_sym_COLON_COLON, - ACTIONS(4993), 1, + ACTIONS(2776), 1, + sym__constant_segment, + ACTIONS(5079), 1, anon_sym_typeof, - ACTIONS(4997), 1, + ACTIONS(5083), 1, sym__start_of_tuple_type, - ACTIONS(4999), 1, + ACTIONS(5085), 1, sym__start_of_named_tuple_type, - ACTIONS(5023), 1, + ACTIONS(5087), 1, anon_sym_LPAREN, - ACTIONS(9425), 1, + ACTIONS(9528), 1, anon_sym_DASH_GT, - STATE(2391), 1, + STATE(2522), 1, sym_constant, - STATE(2420), 1, + STATE(2537), 1, sym__type, - STATE(7709), 1, + STATE(7753), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4995), 2, + ACTIONS(5081), 2, sym_self, sym_underscore_type, - STATE(2434), 12, + STATE(2692), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628827,36 +635377,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354580] = 14, + [357052] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(313), 1, + ACTIONS(2312), 1, anon_sym_COLON_COLON, - ACTIONS(2739), 1, + ACTIONS(3083), 1, sym__constant_segment, - ACTIONS(5042), 1, + ACTIONS(5381), 1, anon_sym_typeof, - ACTIONS(5046), 1, + ACTIONS(5385), 1, sym__start_of_tuple_type, - ACTIONS(5048), 1, + ACTIONS(5387), 1, sym__start_of_named_tuple_type, - ACTIONS(5050), 1, + ACTIONS(5389), 1, anon_sym_LPAREN, - ACTIONS(9495), 1, + ACTIONS(9498), 1, anon_sym_DASH_GT, - STATE(2488), 1, + STATE(5014), 1, sym_constant, - STATE(2511), 1, + STATE(5038), 1, sym__type, - STATE(7710), 1, + STATE(7754), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5044), 2, + ACTIONS(5383), 2, sym_self, sym_underscore_type, - STATE(2592), 12, + STATE(5099), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628869,36 +635419,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354636] = 14, + [357108] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2116), 1, - anon_sym_COLON_COLON, - ACTIONS(3038), 1, - sym__constant_segment, - ACTIONS(5292), 1, + ACTIONS(9388), 1, + anon_sym_LPAREN, + ACTIONS(9393), 1, anon_sym_typeof, - ACTIONS(5296), 1, + ACTIONS(9395), 1, + sym__constant_segment, + ACTIONS(9397), 1, + anon_sym_COLON_COLON, + ACTIONS(9401), 1, sym__start_of_tuple_type, - ACTIONS(5298), 1, + ACTIONS(9403), 1, sym__start_of_named_tuple_type, - ACTIONS(5300), 1, - anon_sym_LPAREN, - ACTIONS(9421), 1, + ACTIONS(9468), 1, anon_sym_DASH_GT, - STATE(4834), 1, - sym_constant, - STATE(4842), 1, - sym__type, - STATE(7711), 1, + STATE(7755), 1, sym_heredoc_body, + STATE(8283), 1, + sym__type, + STATE(8299), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5294), 2, + ACTIONS(9399), 2, sym_self, sym_underscore_type, - STATE(4968), 12, + STATE(8453), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628911,36 +635461,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354692] = 14, + [357164] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4347), 1, + ACTIONS(317), 1, + anon_sym_COLON_COLON, + ACTIONS(2776), 1, + sym__constant_segment, + ACTIONS(5079), 1, + anon_sym_typeof, + ACTIONS(5083), 1, sym__start_of_tuple_type, - ACTIONS(4349), 1, + ACTIONS(5085), 1, sym__start_of_named_tuple_type, - ACTIONS(9399), 1, + ACTIONS(5087), 1, anon_sym_LPAREN, - ACTIONS(9401), 1, + ACTIONS(9528), 1, anon_sym_DASH_GT, - ACTIONS(9405), 1, - anon_sym_typeof, - ACTIONS(9407), 1, - sym__constant_segment, - ACTIONS(9409), 1, - anon_sym_COLON_COLON, - STATE(2003), 1, - sym__type, - STATE(2006), 1, + STATE(2522), 1, sym_constant, - STATE(7712), 1, + STATE(2533), 1, + sym__type, + STATE(7756), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9411), 2, + ACTIONS(5081), 2, sym_self, sym_underscore_type, - STATE(2012), 12, + STATE(2692), 12, sym_typeof, sym_class_type, sym_union_type, @@ -628953,74 +635503,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354748] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9704), 1, - anon_sym_LBRACK, - ACTIONS(9706), 1, - anon_sym_STAR, - ACTIONS(9708), 1, - anon_sym_PIPE, - ACTIONS(9710), 1, - anon_sym_DOT, - ACTIONS(9712), 1, - anon_sym_QMARK, - STATE(7713), 1, - sym_heredoc_body, - STATE(7717), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4570), 17, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_forall, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [354796] = 14, + [357220] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7071), 1, - anon_sym_LPAREN, - ACTIONS(7076), 1, - anon_sym_typeof, - ACTIONS(7078), 1, - sym__constant_segment, - ACTIONS(7080), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(7084), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(7086), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9417), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, anon_sym_DASH_GT, - STATE(7659), 1, - sym__type, - STATE(7662), 1, - sym_constant, - STATE(7714), 1, + STATE(7757), 1, sym_heredoc_body, + STATE(8180), 1, + sym_constant, + STATE(8581), 1, + sym__type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7082), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(7736), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629033,36 +635545,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354852] = 14, + [357276] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2272), 1, + ACTIONS(8256), 1, + anon_sym_LPAREN, + ACTIONS(8260), 1, + anon_sym_DASH_GT, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(3052), 1, - sym__constant_segment, - ACTIONS(5345), 1, - anon_sym_typeof, - ACTIONS(5349), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(5351), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(5361), 1, - anon_sym_LPAREN, - ACTIONS(5363), 1, - anon_sym_DASH_GT, - STATE(4886), 1, - sym_constant, - STATE(5094), 1, - sym__type, - STATE(7715), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + STATE(7758), 1, sym_heredoc_body, + STATE(8169), 1, + sym__type, + STATE(8180), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5347), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(5055), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629075,36 +635587,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354908] = 14, + [357332] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8249), 1, - anon_sym_LPAREN, - ACTIONS(8253), 1, - anon_sym_DASH_GT, - ACTIONS(8261), 1, + ACTIONS(893), 1, anon_sym_COLON_COLON, - ACTIONS(8267), 1, + ACTIONS(3033), 1, + sym__constant_segment, + ACTIONS(5306), 1, + anon_sym_typeof, + ACTIONS(5310), 1, sym__start_of_tuple_type, - ACTIONS(8269), 1, + ACTIONS(5312), 1, sym__start_of_named_tuple_type, - ACTIONS(9281), 1, - anon_sym_typeof, - ACTIONS(9283), 1, - sym__constant_segment, - STATE(7716), 1, - sym_heredoc_body, - STATE(8105), 1, - sym__type, - STATE(8134), 1, + ACTIONS(5314), 1, + anon_sym_LPAREN, + ACTIONS(9544), 1, + anon_sym_DASH_GT, + STATE(4464), 1, sym_constant, + STATE(4485), 1, + sym__type, + STATE(7759), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9285), 2, + ACTIONS(5308), 2, sym_self, sym_underscore_type, - STATE(8196), 12, + STATE(4646), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629117,70 +635629,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [354964] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9708), 1, - anon_sym_PIPE, - STATE(7653), 1, - aux_sym_union_type_repeat1, - STATE(7717), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4584), 21, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [355004] = 14, + [357388] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1663), 1, - anon_sym_COLON_COLON, - ACTIONS(2942), 1, - sym__constant_segment, - ACTIONS(5161), 1, + ACTIONS(7689), 1, anon_sym_typeof, - ACTIONS(5165), 1, + ACTIONS(7691), 1, + sym__constant_segment, + ACTIONS(7693), 1, + anon_sym_COLON_COLON, + ACTIONS(7697), 1, sym__start_of_tuple_type, - ACTIONS(5167), 1, + ACTIONS(7699), 1, sym__start_of_named_tuple_type, - ACTIONS(5169), 1, + ACTIONS(7792), 1, anon_sym_LPAREN, - ACTIONS(9387), 1, + ACTIONS(7794), 1, anon_sym_DASH_GT, - STATE(3026), 1, + STATE(7760), 1, + sym_heredoc_body, + STATE(7803), 1, sym_constant, - STATE(3040), 1, + STATE(7883), 1, sym__type, - STATE(7718), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5163), 2, + ACTIONS(7695), 2, sym_self, sym_underscore_type, - STATE(3200), 12, + STATE(7865), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629193,36 +635671,36 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [355060] = 14, + [357444] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(2272), 1, + ACTIONS(8268), 1, anon_sym_COLON_COLON, - ACTIONS(3052), 1, - sym__constant_segment, - ACTIONS(5340), 1, - anon_sym_LPAREN, - ACTIONS(5345), 1, - anon_sym_typeof, - ACTIONS(5349), 1, + ACTIONS(8274), 1, sym__start_of_tuple_type, - ACTIONS(5351), 1, + ACTIONS(8276), 1, sym__start_of_named_tuple_type, - ACTIONS(9491), 1, + ACTIONS(9329), 1, + anon_sym_typeof, + ACTIONS(9331), 1, + sym__constant_segment, + ACTIONS(9335), 1, + anon_sym_LPAREN, + ACTIONS(9337), 1, anon_sym_DASH_GT, - STATE(4886), 1, + STATE(7761), 1, + sym_heredoc_body, + STATE(8180), 1, sym_constant, - STATE(4892), 1, + STATE(8347), 1, sym__type, - STATE(7719), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5347), 2, + ACTIONS(9333), 2, sym_self, sym_underscore_type, - STATE(5055), 12, + STATE(8289), 12, sym_typeof, sym_class_type, sym_union_type, @@ -629235,15 +635713,15 @@ static const uint16_t ts_small_parse_table[] = { sym_nilable_type, sym_pointer_type, sym_static_array_type, - [355116] = 4, + [357500] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7720), 1, + STATE(7762), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4673), 22, + ACTIONS(4690), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629266,15 +635744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355151] = 4, + [357535] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7721), 1, + STATE(7763), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4625), 22, + ACTIONS(4644), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629297,15 +635775,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355186] = 4, + [357570] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7722), 1, + STATE(7764), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4649), 22, + ACTIONS(4710), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629328,15 +635806,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355221] = 4, + [357605] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7723), 1, + STATE(7765), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4665), 22, + ACTIONS(4722), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629359,15 +635837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355256] = 4, + [357640] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7724), 1, + STATE(7766), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4657), 22, + ACTIONS(4706), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629390,15 +635868,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355291] = 4, + [357675] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7725), 1, + STATE(7767), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4661), 22, + ACTIONS(4678), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629421,15 +635899,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355326] = 4, + [357710] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7726), 1, + STATE(7768), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4681), 22, + ACTIONS(4682), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629452,15 +635930,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355361] = 4, + [357745] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7727), 1, + STATE(7769), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4677), 22, + ACTIONS(4658), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629483,15 +635961,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355396] = 4, + [357780] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7728), 1, + STATE(7770), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4621), 22, + ACTIONS(4674), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629514,15 +635992,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355431] = 4, + [357815] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7729), 1, + STATE(7771), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4637), 22, + ACTIONS(4714), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629545,15 +636023,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355466] = 4, + [357850] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7730), 1, + STATE(7772), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4617), 22, + ACTIONS(4698), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629576,15 +636054,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355501] = 4, + [357885] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7731), 1, + STATE(7773), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4669), 22, + ACTIONS(4662), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629607,15 +636085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355536] = 4, + [357920] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7732), 1, + STATE(7774), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4653), 22, + ACTIONS(4702), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629638,15 +636116,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355571] = 4, + [357955] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7733), 1, + STATE(7775), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4633), 22, + ACTIONS(4654), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629669,15 +636147,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355606] = 4, + [357990] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7734), 1, + STATE(7776), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4629), 22, + ACTIONS(4718), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629700,15 +636178,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355641] = 4, + [358025] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7735), 1, + STATE(7777), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4645), 22, + ACTIONS(4666), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629731,15 +636209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355676] = 4, + [358060] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7736), 1, + STATE(7778), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4599), 22, + ACTIONS(4694), 22, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629762,50 +636240,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355711] = 6, + [358095] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9719), 1, - anon_sym_COLON_COLON, - STATE(7737), 1, + STATE(7779), 1, sym_heredoc_body, - STATE(7741), 1, - aux_sym_constant_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4549), 19, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_else, - [355749] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9721), 1, - anon_sym_PIPE, + STATE(7788), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7738), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4588), 19, + ACTIONS(4629), 20, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629818,6 +636263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_end, anon_sym_STAR, + anon_sym_PIPE, anon_sym_DOT, anon_sym_forall, anon_sym_QMARK, @@ -629825,63 +636271,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355785] = 10, + [358131] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9704), 1, - anon_sym_LBRACK, - ACTIONS(9706), 1, - anon_sym_STAR, - ACTIONS(9710), 1, - anon_sym_DOT, - ACTIONS(9712), 1, - anon_sym_QMARK, - ACTIONS(9724), 1, - anon_sym_PIPE, - STATE(7739), 1, + ACTIONS(9768), 1, + anon_sym_COLON_COLON, + STATE(7780), 1, sym_heredoc_body, - STATE(7743), 1, - aux_sym_union_type_repeat1, + STATE(7789), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4685), 15, + ACTIONS(4596), 19, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, anon_sym_forall, - anon_sym_elsif, + anon_sym_LPAREN2, + anon_sym_QMARK, anon_sym_else, - anon_sym_when, - anon_sym_in, - [355831] = 10, + [358169] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9704), 1, + ACTIONS(9756), 1, anon_sym_LBRACK, - ACTIONS(9706), 1, + ACTIONS(9758), 1, anon_sym_STAR, - ACTIONS(9710), 1, + ACTIONS(9762), 1, anon_sym_DOT, - ACTIONS(9712), 1, + ACTIONS(9764), 1, anon_sym_QMARK, - ACTIONS(9724), 1, + ACTIONS(9770), 1, anon_sym_PIPE, - STATE(7740), 1, + STATE(7781), 1, sym_heredoc_body, - STATE(7743), 1, + STATE(7788), 1, aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4609), 15, + ACTIONS(4670), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629897,19 +636339,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [355877] = 6, + [358215] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9719), 1, + ACTIONS(9768), 1, anon_sym_COLON_COLON, - STATE(7741), 1, + STATE(7782), 1, sym_heredoc_body, - STATE(7749), 1, + STATE(7783), 1, aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4555), 19, + ACTIONS(4586), 19, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629929,19 +636371,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_else, - [355915] = 6, + [358253] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9719), 1, + ACTIONS(9768), 1, anon_sym_COLON_COLON, - STATE(7742), 1, + STATE(7783), 1, sym_heredoc_body, - STATE(7749), 1, + STATE(7784), 1, aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4559), 19, + ACTIONS(4596), 19, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -629961,59 +636403,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_else, - [355953] = 6, + [358291] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9724), 1, - anon_sym_PIPE, - STATE(7738), 1, - aux_sym_union_type_repeat1, - STATE(7743), 1, - sym_heredoc_body, + ACTIONS(9772), 1, + anon_sym_COLON_COLON, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4584), 19, + STATE(7784), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4600), 19, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, + anon_sym_PIPE, anon_sym_DOT, anon_sym_forall, + anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [355991] = 10, + [358327] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9704), 1, + ACTIONS(9756), 1, anon_sym_LBRACK, - ACTIONS(9706), 1, + ACTIONS(9758), 1, anon_sym_STAR, - ACTIONS(9710), 1, + ACTIONS(9762), 1, anon_sym_DOT, - ACTIONS(9712), 1, + ACTIONS(9764), 1, anon_sym_QMARK, - ACTIONS(9724), 1, + ACTIONS(9770), 1, anon_sym_PIPE, - STATE(7743), 1, - aux_sym_union_type_repeat1, - STATE(7744), 1, + STATE(7785), 1, sym_heredoc_body, + STATE(7788), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4605), 15, + ACTIONS(4625), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -630029,27 +636470,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [356037] = 10, + [358373] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9704), 1, + ACTIONS(9756), 1, anon_sym_LBRACK, - ACTIONS(9706), 1, + ACTIONS(9758), 1, anon_sym_STAR, - ACTIONS(9710), 1, + ACTIONS(9762), 1, anon_sym_DOT, - ACTIONS(9712), 1, + ACTIONS(9764), 1, anon_sym_QMARK, - ACTIONS(9724), 1, + ACTIONS(9770), 1, anon_sym_PIPE, - STATE(7743), 1, - aux_sym_union_type_repeat1, - STATE(7745), 1, + STATE(7786), 1, sym_heredoc_body, + STATE(7788), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4641), 15, + ACTIONS(4686), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -630065,17 +636506,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [356083] = 5, + [358419] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7743), 1, - aux_sym_union_type_repeat1, - STATE(7746), 1, + ACTIONS(9756), 1, + anon_sym_LBRACK, + ACTIONS(9758), 1, + anon_sym_STAR, + ACTIONS(9762), 1, + anon_sym_DOT, + ACTIONS(9764), 1, + anon_sym_QMARK, + ACTIONS(9770), 1, + anon_sym_PIPE, + STATE(7787), 1, sym_heredoc_body, + STATE(7788), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4588), 20, + ACTIONS(4607), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -630085,38 +636536,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, anon_sym_forall, - anon_sym_QMARK, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [356119] = 10, + [358465] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9704), 1, - anon_sym_LBRACK, - ACTIONS(9706), 1, - anon_sym_STAR, - ACTIONS(9710), 1, - anon_sym_DOT, - ACTIONS(9712), 1, - anon_sym_QMARK, - ACTIONS(9724), 1, + ACTIONS(9770), 1, anon_sym_PIPE, - STATE(7743), 1, - aux_sym_union_type_repeat1, - STATE(7747), 1, + STATE(7788), 1, sym_heredoc_body, + STATE(7790), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4570), 15, + ACTIONS(4636), 19, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -630126,25 +636564,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_end, + anon_sym_STAR, + anon_sym_DOT, anon_sym_forall, + anon_sym_QMARK, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [356165] = 6, + [358503] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9719), 1, + ACTIONS(9768), 1, anon_sym_COLON_COLON, - STATE(7742), 1, + STATE(7784), 1, aux_sym_constant_repeat1, - STATE(7748), 1, + STATE(7789), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4555), 19, + ACTIONS(4592), 19, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -630164,46 +636606,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_else, - [356203] = 5, + [358541] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9726), 1, - anon_sym_COLON_COLON, + ACTIONS(9775), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7749), 2, + STATE(7790), 2, sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4563), 19, + aux_sym_union_type_repeat1, + ACTIONS(4629), 19, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, - anon_sym_PIPE, anon_sym_DOT, anon_sym_forall, - anon_sym_LPAREN2, anon_sym_QMARK, + anon_sym_elsif, anon_sym_else, - [356239] = 4, + anon_sym_when, + anon_sym_in, + [358577] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7750), 1, + ACTIONS(9756), 1, + anon_sym_LBRACK, + ACTIONS(9758), 1, + anon_sym_STAR, + ACTIONS(9762), 1, + anon_sym_DOT, + ACTIONS(9764), 1, + anon_sym_QMARK, + ACTIONS(9770), 1, + anon_sym_PIPE, + STATE(7788), 1, + aux_sym_union_type_repeat1, + STATE(7791), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4650), 15, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_forall, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [358623] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(7792), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4563), 20, + ACTIONS(4600), 20, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -630224,19 +636702,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_else, - [356272] = 6, + [358656] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, + ACTIONS(263), 1, anon_sym_COMMA, - ACTIONS(9729), 1, + ACTIONS(9778), 1, anon_sym_EQ, - STATE(7751), 1, + STATE(7793), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(659), 17, + ACTIONS(669), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -630254,19 +636732,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [356308] = 6, + [358692] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9731), 1, + ACTIONS(9780), 1, anon_sym_COLON_COLON, - STATE(7752), 1, - sym_heredoc_body, - STATE(7760), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4555), 17, + STATE(7794), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4600), 17, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -630284,52 +636761,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_LPAREN2, anon_sym_QMARK, - [356344] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9733), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(7753), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4588), 17, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_else, - [356378] = 6, + [358726] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9736), 1, - anon_sym_PIPE, - STATE(7753), 1, - aux_sym_union_type_repeat1, - STATE(7754), 1, + ACTIONS(9783), 1, + anon_sym_COLON_COLON, + STATE(7794), 1, + aux_sym_constant_repeat1, + STATE(7795), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4584), 17, + ACTIONS(4592), 17, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -630339,61 +636786,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, + anon_sym_PIPE, anon_sym_DOT, anon_sym_forall, + anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_else, - [356414] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(259), 1, - anon_sym_COMMA, - ACTIONS(9738), 1, - anon_sym_EQ, - STATE(7755), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(263), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - [356450] = 10, + [358762] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9736), 1, - anon_sym_PIPE, - ACTIONS(9740), 1, + ACTIONS(9785), 1, anon_sym_LBRACK, - ACTIONS(9742), 1, + ACTIONS(9787), 1, anon_sym_STAR, - ACTIONS(9744), 1, + ACTIONS(9789), 1, + anon_sym_PIPE, + ACTIONS(9791), 1, anon_sym_DOT, - ACTIONS(9746), 1, + ACTIONS(9793), 1, anon_sym_QMARK, - STATE(7754), 1, - aux_sym_union_type_repeat1, - STATE(7756), 1, + STATE(7796), 1, sym_heredoc_body, + STATE(7814), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4605), 13, + ACTIONS(4650), 13, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -630407,28 +636825,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, anon_sym_forall, anon_sym_else, - [356494] = 10, + [358806] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9750), 1, + ACTIONS(9797), 1, anon_sym_LPAREN, - ACTIONS(9752), 1, + ACTIONS(9799), 1, aux_sym__base_method_def_token1, - ACTIONS(9754), 1, + ACTIONS(9801), 1, anon_sym_forall, - STATE(7757), 1, + STATE(7797), 1, sym_heredoc_body, - STATE(7876), 1, + STATE(7941), 1, sym_forall, - STATE(8037), 1, + STATE(8031), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + ACTIONS(9795), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4711), 12, + ACTIONS(4744), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, @@ -630441,19 +636859,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [356538] = 6, + [358850] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, + ACTIONS(263), 1, anon_sym_COMMA, - ACTIONS(9756), 1, + ACTIONS(9803), 1, anon_sym_EQ, - STATE(7758), 1, + STATE(7798), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(395), 17, + ACTIONS(669), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -630471,48 +636889,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [356574] = 5, + [358886] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9758), 1, - anon_sym_COLON_COLON, + ACTIONS(263), 1, + anon_sym_COMMA, + ACTIONS(9805), 1, + anon_sym_EQ, + STATE(7799), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7759), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4563), 17, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_LPAREN2, - anon_sym_QMARK, - [356608] = 6, + ACTIONS(267), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + [358922] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9731), 1, + ACTIONS(9783), 1, anon_sym_COLON_COLON, - STATE(7759), 1, + STATE(7794), 1, aux_sym_constant_repeat1, - STATE(7760), 1, + STATE(7800), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4559), 17, + ACTIONS(4596), 17, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -630530,53 +636949,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_LPAREN2, anon_sym_QMARK, - [356644] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9754), 1, - anon_sym_forall, - ACTIONS(9761), 1, - anon_sym_LPAREN, - ACTIONS(9763), 1, - aux_sym__base_method_def_token1, - STATE(7761), 1, - sym_heredoc_body, - STATE(7882), 1, - sym_forall, - STATE(8021), 1, - sym__terminator, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9748), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(4719), 12, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [356688] = 6, + [358958] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9731), 1, + ACTIONS(9783), 1, anon_sym_COLON_COLON, - STATE(7762), 1, - sym_heredoc_body, - STATE(7774), 1, + STATE(7795), 1, aux_sym_constant_repeat1, + STATE(7801), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4549), 17, + ACTIONS(4596), 17, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -630594,87 +636979,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_LPAREN2, anon_sym_QMARK, - [356724] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(259), 1, - anon_sym_COMMA, - ACTIONS(9765), 1, - anon_sym_EQ, - STATE(7763), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(649), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - [356760] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(259), 1, - anon_sym_COMMA, - ACTIONS(9767), 1, - anon_sym_EQ, - STATE(7764), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(659), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - [356796] = 10, + [358994] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9736), 1, - anon_sym_PIPE, - ACTIONS(9740), 1, + ACTIONS(9785), 1, anon_sym_LBRACK, - ACTIONS(9742), 1, + ACTIONS(9787), 1, anon_sym_STAR, - ACTIONS(9744), 1, + ACTIONS(9789), 1, + anon_sym_PIPE, + ACTIONS(9791), 1, anon_sym_DOT, - ACTIONS(9746), 1, + ACTIONS(9793), 1, anon_sym_QMARK, - STATE(7754), 1, - aux_sym_union_type_repeat1, - STATE(7765), 1, + STATE(7802), 1, sym_heredoc_body, + STATE(7814), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4609), 13, + ACTIONS(4625), 13, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -630688,57 +637013,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, anon_sym_forall, anon_sym_else, - [356840] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(259), 1, - anon_sym_COMMA, - ACTIONS(9769), 1, - anon_sym_EQ, - STATE(7766), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(659), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - [356876] = 10, + [359038] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9736), 1, - anon_sym_PIPE, - ACTIONS(9740), 1, - anon_sym_LBRACK, - ACTIONS(9742), 1, - anon_sym_STAR, - ACTIONS(9744), 1, - anon_sym_DOT, - ACTIONS(9746), 1, - anon_sym_QMARK, - STATE(7754), 1, - aux_sym_union_type_repeat1, - STATE(7767), 1, + ACTIONS(9807), 1, + anon_sym_LPAREN2, + STATE(7803), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4595), 13, + ACTIONS(4644), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -630747,32 +637032,37 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, anon_sym_forall, + anon_sym_QMARK, anon_sym_else, - [356920] = 10, + [359072] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9736), 1, - anon_sym_PIPE, - ACTIONS(9740), 1, + ACTIONS(9785), 1, anon_sym_LBRACK, - ACTIONS(9742), 1, + ACTIONS(9787), 1, anon_sym_STAR, - ACTIONS(9744), 1, + ACTIONS(9789), 1, + anon_sym_PIPE, + ACTIONS(9791), 1, anon_sym_DOT, - ACTIONS(9746), 1, + ACTIONS(9793), 1, anon_sym_QMARK, - STATE(7754), 1, - aux_sym_union_type_repeat1, - STATE(7768), 1, + STATE(7804), 1, sym_heredoc_body, + STATE(7814), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4613), 13, + ACTIONS(4621), 13, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -630786,27 +637076,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, anon_sym_forall, anon_sym_else, - [356964] = 10, + [359116] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9736), 1, - anon_sym_PIPE, - ACTIONS(9740), 1, + ACTIONS(9785), 1, anon_sym_LBRACK, - ACTIONS(9742), 1, + ACTIONS(9787), 1, anon_sym_STAR, - ACTIONS(9744), 1, + ACTIONS(9789), 1, + anon_sym_PIPE, + ACTIONS(9791), 1, anon_sym_DOT, - ACTIONS(9746), 1, + ACTIONS(9793), 1, anon_sym_QMARK, - STATE(7754), 1, - aux_sym_union_type_repeat1, - STATE(7769), 1, + STATE(7805), 1, sym_heredoc_body, + STATE(7814), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4570), 13, + ACTIONS(4640), 13, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -630820,107 +637110,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, anon_sym_forall, anon_sym_else, - [357008] = 5, + [359160] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7754), 1, - aux_sym_union_type_repeat1, - STATE(7770), 1, + ACTIONS(9801), 1, + anon_sym_forall, + ACTIONS(9809), 1, + anon_sym_LPAREN, + ACTIONS(9811), 1, + aux_sym__base_method_def_token1, + STATE(7806), 1, sym_heredoc_body, + STATE(7926), 1, + sym_forall, + STATE(8075), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4588), 18, + ACTIONS(9795), 2, sym__line_break, + anon_sym_SEMI, + ACTIONS(4728), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, + anon_sym_elsif, anon_sym_else, - [357042] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(7771), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(1139), 2, - anon_sym_COMMA, - anon_sym_EQ, - ACTIONS(659), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - [357076] = 6, + anon_sym_when, + anon_sym_in, + [359204] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1139), 1, - anon_sym_COMMA, - ACTIONS(9769), 1, - anon_sym_EQ, - STATE(7772), 1, + STATE(7807), 1, sym_heredoc_body, + STATE(7814), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(659), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - [357112] = 6, + ACTIONS(4629), 18, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_else, + [359238] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, + ACTIONS(263), 1, anon_sym_COMMA, - ACTIONS(9771), 1, + ACTIONS(9813), 1, anon_sym_EQ, - STATE(7773), 1, + STATE(7808), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(659), 17, + ACTIONS(669), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -630938,51 +637203,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [357148] = 6, + [359274] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9731), 1, - anon_sym_COLON_COLON, - STATE(7759), 1, - aux_sym_constant_repeat1, - STATE(7774), 1, + ACTIONS(9785), 1, + anon_sym_LBRACK, + ACTIONS(9787), 1, + anon_sym_STAR, + ACTIONS(9789), 1, + anon_sym_PIPE, + ACTIONS(9791), 1, + anon_sym_DOT, + ACTIONS(9793), 1, + anon_sym_QMARK, + STATE(7809), 1, sym_heredoc_body, + STATE(7814), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4555), 17, + ACTIONS(4607), 13, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, anon_sym_forall, - anon_sym_LPAREN2, - anon_sym_QMARK, - [357184] = 5, + anon_sym_else, + [359318] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9773), 1, - anon_sym_LPAREN2, - STATE(7775), 1, + ACTIONS(9783), 1, + anon_sym_COLON_COLON, + STATE(7800), 1, + aux_sym_constant_repeat1, + STATE(7810), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4599), 18, + ACTIONS(4586), 17, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -630995,19 +637265,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_forall, + anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_else, - [357218] = 5, + [359354] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9775), 1, + ACTIONS(263), 1, + anon_sym_COMMA, + ACTIONS(9815), 1, anon_sym_EQ, - STATE(7776), 1, + STATE(7811), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1123), 17, + ACTIONS(401), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -631025,17 +637297,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [357251] = 5, + [359390] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9777), 1, + ACTIONS(263), 1, + anon_sym_COMMA, + ACTIONS(9817), 1, anon_sym_EQ, - STATE(7777), 1, + STATE(7812), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1171), 17, + ACTIONS(669), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -631053,43 +637327,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [357284] = 5, + [359426] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9765), 1, - anon_sym_EQ, - STATE(7778), 1, - sym_heredoc_body, + ACTIONS(9819), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(649), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - [357317] = 4, + STATE(7813), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4629), 17, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_else, + [359460] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7779), 1, + ACTIONS(9789), 1, + anon_sym_PIPE, + STATE(7813), 1, + aux_sym_union_type_repeat1, + STATE(7814), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4669), 18, + ACTIONS(4636), 17, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -631103,22 +637382,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, - anon_sym_PIPE, anon_sym_DOT, anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [357348] = 5, + [359496] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9779), 1, + ACTIONS(1167), 1, + anon_sym_COMMA, + ACTIONS(9803), 1, anon_sym_EQ, - STATE(7780), 1, + STATE(7815), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(515), 17, + ACTIONS(669), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -631136,17 +637416,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [357381] = 5, + [359532] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9781), 1, + ACTIONS(263), 1, + anon_sym_COMMA, + ACTIONS(9822), 1, anon_sym_EQ, - STATE(7781), 1, + STATE(7816), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(951), 17, + ACTIONS(643), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -631164,17 +637446,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [357414] = 5, + [359568] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9738), 1, - anon_sym_EQ, - STATE(7782), 1, + STATE(7817), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(263), 17, + ACTIONS(1167), 2, + anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(669), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -631192,71 +637475,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [357447] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(7783), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4653), 18, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_else, - [357478] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(7784), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4617), 18, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_else, - [357509] = 5, + [359602] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9783), 1, + ACTIONS(9824), 1, anon_sym_EQ, - STATE(7785), 1, + STATE(7818), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(635), 17, + ACTIONS(905), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -631274,47 +637503,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [357542] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9754), 1, - anon_sym_forall, - ACTIONS(9785), 1, - aux_sym__base_method_def_token1, - STATE(7786), 1, - sym_heredoc_body, - STATE(7878), 1, - sym_forall, - STATE(7918), 1, - sym__terminator, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9748), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(4725), 12, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [357583] = 4, + [359635] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7787), 1, + STATE(7819), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4621), 18, + ACTIONS(4682), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -631333,15 +637530,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [357614] = 4, + [359666] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7788), 1, + STATE(7820), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4665), 18, + ACTIONS(4714), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -631360,15 +637557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [357645] = 4, + [359697] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7789), 1, + STATE(7821), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4677), 18, + ACTIONS(4674), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -631387,42 +637584,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [357676] = 4, + [359728] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7790), 1, + ACTIONS(9801), 1, + anon_sym_forall, + ACTIONS(9826), 1, + aux_sym__base_method_def_token1, + STATE(7822), 1, sym_heredoc_body, + STATE(7927), 1, + sym_forall, + STATE(8071), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4681), 18, + ACTIONS(9795), 2, sym__line_break, + anon_sym_SEMI, + ACTIONS(4756), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, + anon_sym_elsif, anon_sym_else, - [357707] = 4, + anon_sym_when, + anon_sym_in, + [359769] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7791), 1, + ACTIONS(9828), 1, + anon_sym_EQ, + STATE(7823), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(821), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + [359802] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9830), 1, + anon_sym_EQ, + STATE(7824), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(1029), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + [359835] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9832), 1, + anon_sym_EQ, + STATE(7825), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(1089), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + [359868] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(7826), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4633), 18, + ACTIONS(4710), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -631441,21 +637727,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [357738] = 7, + [359899] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, + ACTIONS(4787), 1, anon_sym_COMMA, - ACTIONS(9787), 1, + ACTIONS(9834), 1, anon_sym_DASH_GT, - STATE(7792), 1, + STATE(7827), 1, sym_heredoc_body, - STATE(9784), 1, + STATE(10061), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4745), 15, + ACTIONS(4785), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -631471,15 +637757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [357775] = 4, + [359936] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7793), 1, + STATE(7828), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4657), 18, + ACTIONS(4722), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -631498,15 +637784,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [357806] = 4, + [359967] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7794), 1, + STATE(7829), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4637), 18, + ACTIONS(4706), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -631525,42 +637811,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [357837] = 4, + [359998] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7795), 1, + ACTIONS(9815), 1, + anon_sym_EQ, + STATE(7830), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4645), 18, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - anon_sym_else, - [357868] = 4, + ACTIONS(401), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + [360031] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7796), 1, + ACTIONS(9836), 1, + anon_sym_EQ, + STATE(7831), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4629), 18, + ACTIONS(965), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + [360064] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9838), 1, + anon_sym_EQ, + STATE(7832), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(1187), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + [360097] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(7833), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4662), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -631579,15 +637922,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [357899] = 4, + [360128] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7797), 1, + STATE(7834), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4661), 18, + ACTIONS(4694), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -631606,17 +637949,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [357930] = 5, + [360159] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9789), 1, + ACTIONS(9840), 1, anon_sym_EQ, - STATE(7798), 1, + STATE(7835), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1161), 17, + ACTIONS(1139), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -631634,44 +637977,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [357963] = 4, + [360192] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7799), 1, + ACTIONS(9842), 1, + anon_sym_EQ, + STATE(7836), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4563), 18, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_COLON_COLON, - anon_sym_LPAREN2, - anon_sym_QMARK, - [357994] = 5, + ACTIONS(1157), 17, + anon_sym_PLUS_EQ, + anon_sym_AMP_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_AMP_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_AMP_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PIPE_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_AMP_AMP_EQ, + [360225] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9791), 1, + ACTIONS(9805), 1, anon_sym_EQ, - STATE(7800), 1, + STATE(7837), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(191), 17, + ACTIONS(267), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -631689,44 +638033,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [358027] = 4, + [360258] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7801), 1, + ACTIONS(9801), 1, + anon_sym_forall, + ACTIONS(9844), 1, + aux_sym__base_method_def_token1, + STATE(7838), 1, sym_heredoc_body, + STATE(7924), 1, + sym_forall, + STATE(8101), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4673), 18, + ACTIONS(9795), 2, sym__line_break, + anon_sym_SEMI, + ACTIONS(4736), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [360299] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9801), 1, anon_sym_forall, - anon_sym_QMARK, + ACTIONS(9846), 1, + aux_sym__base_method_def_token1, + STATE(7839), 1, + sym_heredoc_body, + STATE(7919), 1, + sym_forall, + STATE(8104), 1, + sym__terminator, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9795), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4750), 12, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_elsif, anon_sym_else, - [358058] = 5, + anon_sym_when, + anon_sym_in, + [360340] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9793), 1, + ACTIONS(9848), 1, anon_sym_EQ, - STATE(7802), 1, + STATE(7840), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(937), 17, + ACTIONS(463), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -631744,19 +638125,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [358091] = 4, + [360373] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7803), 1, + STATE(7841), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4625), 18, + ACTIONS(4600), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, @@ -631769,19 +638149,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_forall, + anon_sym_COLON_COLON, + anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_else, - [358122] = 5, + [360404] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9795), 1, + ACTIONS(9850), 1, anon_sym_EQ, - STATE(7804), 1, + STATE(7842), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(915), 17, + ACTIONS(329), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -631799,45 +638180,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [358155] = 5, + [360437] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9797), 1, - anon_sym_EQ, - STATE(7805), 1, + STATE(7843), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(247), 17, - anon_sym_PLUS_EQ, - anon_sym_AMP_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_AMP_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_AMP_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_SLASH_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PIPE_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_AMP_AMP_EQ, - [358188] = 5, + ACTIONS(4702), 18, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_else, + [360468] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9799), 1, + ACTIONS(9852), 1, anon_sym_EQ, - STATE(7806), 1, + STATE(7844), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(777), 17, + ACTIONS(843), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -631855,17 +638235,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [358221] = 5, + [360501] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9769), 1, + ACTIONS(9822), 1, anon_sym_EQ, - STATE(7807), 1, + STATE(7845), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(659), 17, + ACTIONS(643), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -631883,17 +638263,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [358254] = 5, + [360534] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9801), 1, + ACTIONS(9854), 1, anon_sym_EQ, - STATE(7808), 1, + STATE(7846), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1015), 17, + ACTIONS(1177), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -631911,17 +638291,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [358287] = 5, + [360567] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9803), 1, + ACTIONS(9856), 1, anon_sym_EQ, - STATE(7809), 1, + STATE(7847), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(325), 17, + ACTIONS(387), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -631939,17 +638319,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [358320] = 5, + [360600] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9805), 1, + ACTIONS(9803), 1, anon_sym_EQ, - STATE(7810), 1, + STATE(7848), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(457), 17, + ACTIONS(669), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -631967,17 +638347,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [358353] = 5, + [360633] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9807), 1, + ACTIONS(9858), 1, anon_sym_EQ, - STATE(7811), 1, + STATE(7849), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(721), 17, + ACTIONS(193), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -631995,17 +638375,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [358386] = 5, + [360666] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9809), 1, + ACTIONS(9860), 1, anon_sym_EQ, - STATE(7812), 1, + STATE(7850), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(579), 17, + ACTIONS(731), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -632023,17 +638403,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [358419] = 5, + [360699] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9811), 1, + ACTIONS(9862), 1, anon_sym_EQ, - STATE(7813), 1, + STATE(7851), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1073), 17, + ACTIONS(1147), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -632051,15 +638431,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [358452] = 4, + [360732] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7814), 1, + STATE(7852), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4649), 18, + ACTIONS(4690), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -632078,15 +638458,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [358483] = 4, + [360763] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7815), 1, + STATE(7853), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4599), 18, + ACTIONS(4678), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -632105,17 +638485,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [358514] = 5, + [360794] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9756), 1, + ACTIONS(9801), 1, + anon_sym_forall, + ACTIONS(9864), 1, + aux_sym__base_method_def_token1, + STATE(7854), 1, + sym_heredoc_body, + STATE(7942), 1, + sym_forall, + STATE(7952), 1, + sym__terminator, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9795), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4762), 12, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [360835] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9866), 1, anon_sym_EQ, - STATE(7816), 1, + STATE(7855), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(395), 17, + ACTIONS(253), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -632133,17 +638545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [358547] = 5, + [360868] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9813), 1, + ACTIONS(9868), 1, anon_sym_EQ, - STATE(7817), 1, + STATE(7856), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1151), 17, + ACTIONS(1119), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -632161,17 +638573,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [358580] = 5, + [360901] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9815), 1, + STATE(7857), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4718), 18, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_else, + [360932] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(7858), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4666), 18, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + anon_sym_else, + [360963] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9870), 1, anon_sym_EQ, - STATE(7818), 1, + STATE(7859), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1131), 17, + ACTIONS(523), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -632189,17 +638655,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [358613] = 5, + [360996] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9817), 1, + ACTIONS(9872), 1, anon_sym_EQ, - STATE(7819), 1, + STATE(7860), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(383), 17, + ACTIONS(657), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -632217,81 +638683,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [358646] = 9, + [361029] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9754), 1, - anon_sym_forall, - ACTIONS(9819), 1, - aux_sym__base_method_def_token1, - STATE(7820), 1, + STATE(7861), 1, sym_heredoc_body, - STATE(7877), 1, - sym_forall, - STATE(7923), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + ACTIONS(4654), 18, sym__line_break, - anon_sym_SEMI, - ACTIONS(4689), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_end, - anon_sym_elsif, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, anon_sym_else, - anon_sym_when, - anon_sym_in, - [358687] = 9, + [361060] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9754), 1, - anon_sym_forall, - ACTIONS(9821), 1, - aux_sym__base_method_def_token1, - STATE(7821), 1, + STATE(7862), 1, sym_heredoc_body, - STATE(7895), 1, - sym_forall, - STATE(7905), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + ACTIONS(4658), 18, sym__line_break, - anon_sym_SEMI, - ACTIONS(4703), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_end, - anon_sym_elsif, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, anon_sym_else, - anon_sym_when, - anon_sym_in, - [358728] = 5, + [361091] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9823), 1, + ACTIONS(9874), 1, anon_sym_EQ, - STATE(7822), 1, + STATE(7863), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1103), 17, + ACTIONS(587), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -632309,17 +638765,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [358761] = 5, + [361124] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9825), 1, + ACTIONS(9876), 1, anon_sym_EQ, - STATE(7823), 1, + STATE(7864), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(843), 17, + ACTIONS(791), 17, anon_sym_PLUS_EQ, anon_sym_AMP_PLUS_EQ, anon_sym_DASH_EQ, @@ -632337,59 +638793,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_AMP_AMP_EQ, - [358794] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9754), 1, - anon_sym_forall, - ACTIONS(9827), 1, - aux_sym__base_method_def_token1, - STATE(7824), 1, - sym_heredoc_body, - STATE(7887), 1, - sym_forall, - STATE(8026), 1, - sym__terminator, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9748), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(4697), 12, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [358835] = 10, + [361157] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9740), 1, - anon_sym_LBRACK, - ACTIONS(9742), 1, - anon_sym_STAR, - ACTIONS(9744), 1, - anon_sym_DOT, - ACTIONS(9746), 1, - anon_sym_QMARK, - ACTIONS(9829), 1, - anon_sym_PIPE, - STATE(7825), 1, + STATE(7865), 1, sym_heredoc_body, - STATE(7826), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4641), 11, + ACTIONS(4644), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -632398,22 +638810,25 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, anon_sym_forall, + anon_sym_QMARK, anon_sym_else, - [358877] = 6, + [361188] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9829), 1, - anon_sym_PIPE, - STATE(7826), 1, + STATE(7866), 1, sym_heredoc_body, - STATE(7827), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4584), 15, + ACTIONS(4698), 18, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -632423,24 +638838,36 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_end, anon_sym_STAR, + anon_sym_PIPE, anon_sym_DOT, anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [358911] = 5, + [361219] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9831), 1, + ACTIONS(9785), 1, + anon_sym_LBRACK, + ACTIONS(9787), 1, + anon_sym_STAR, + ACTIONS(9791), 1, + anon_sym_DOT, + ACTIONS(9793), 1, + anon_sym_QMARK, + ACTIONS(9878), 1, anon_sym_PIPE, + STATE(7867), 1, + sym_heredoc_body, + STATE(7884), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7827), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4588), 15, + ACTIONS(4607), 11, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -632449,88 +638876,80 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_end, - anon_sym_STAR, - anon_sym_DOT, anon_sym_forall, - anon_sym_QMARK, anon_sym_else, - [358943] = 10, + [361261] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9740), 1, + ACTIONS(9880), 1, anon_sym_LBRACK, - ACTIONS(9742), 1, + ACTIONS(9882), 1, anon_sym_STAR, - ACTIONS(9744), 1, + ACTIONS(9884), 1, + anon_sym_PIPE, + ACTIONS(9886), 1, anon_sym_DOT, - ACTIONS(9746), 1, + ACTIONS(9888), 1, anon_sym_QMARK, - ACTIONS(9829), 1, - anon_sym_PIPE, - STATE(7826), 1, - aux_sym_union_type_repeat1, - STATE(7828), 1, + STATE(7868), 1, sym_heredoc_body, + STATE(7869), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4609), 11, + ACTIONS(4650), 11, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_end, anon_sym_forall, - anon_sym_else, - [358985] = 10, + [361303] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9740), 1, - anon_sym_LBRACK, - ACTIONS(9742), 1, - anon_sym_STAR, - ACTIONS(9744), 1, - anon_sym_DOT, - ACTIONS(9746), 1, - anon_sym_QMARK, - ACTIONS(9829), 1, + ACTIONS(9884), 1, anon_sym_PIPE, - STATE(7826), 1, - aux_sym_union_type_repeat1, - STATE(7829), 1, + STATE(7869), 1, sym_heredoc_body, + STATE(7871), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4570), 11, + ACTIONS(4636), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, + anon_sym_DOT, anon_sym_forall, - anon_sym_else, - [359027] = 5, + anon_sym_QMARK, + [361337] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7830), 1, + ACTIONS(9890), 1, + anon_sym_LPAREN2, + STATE(7870), 1, sym_heredoc_body, - STATE(7834), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4588), 16, + ACTIONS(4644), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -632547,132 +638966,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_forall, anon_sym_QMARK, - [359059] = 8, + [361369] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9754), 1, - anon_sym_forall, - STATE(7831), 1, - sym_heredoc_body, - STATE(7879), 1, - sym_forall, - STATE(8016), 1, - sym__terminator, + ACTIONS(9892), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + STATE(7871), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4629), 15, sym__line_break, - anon_sym_SEMI, - ACTIONS(4735), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [359097] = 8, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + [361401] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9754), 1, - anon_sym_forall, - STATE(7832), 1, + ACTIONS(9880), 1, + anon_sym_LBRACK, + ACTIONS(9882), 1, + anon_sym_STAR, + ACTIONS(9884), 1, + anon_sym_PIPE, + ACTIONS(9886), 1, + anon_sym_DOT, + ACTIONS(9888), 1, + anon_sym_QMARK, + STATE(7869), 1, + aux_sym_union_type_repeat1, + STATE(7872), 1, sym_heredoc_body, - STATE(7889), 1, - sym_forall, - STATE(8027), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + ACTIONS(4640), 11, sym__line_break, - anon_sym_SEMI, - ACTIONS(4769), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [359135] = 4, + anon_sym_forall, + [361443] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7833), 1, + ACTIONS(9801), 1, + anon_sym_forall, + STATE(7873), 1, sym_heredoc_body, + STATE(7918), 1, + sym_forall, + STATE(8105), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4595), 17, + ACTIONS(9795), 2, sym__line_break, + anon_sym_SEMI, + ACTIONS(4771), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_forall, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [359165] = 6, + [361481] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9834), 1, - anon_sym_PIPE, - STATE(7834), 1, - sym_heredoc_body, - STATE(7835), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4584), 15, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(9880), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_end, + ACTIONS(9882), 1, anon_sym_STAR, + ACTIONS(9884), 1, + anon_sym_PIPE, + ACTIONS(9886), 1, anon_sym_DOT, - anon_sym_forall, + ACTIONS(9888), 1, anon_sym_QMARK, - [359199] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9836), 1, - anon_sym_PIPE, + STATE(7869), 1, + aux_sym_union_type_repeat1, + STATE(7874), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7835), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4588), 15, + ACTIONS(4625), 11, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -632680,94 +639083,88 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, - anon_sym_DOT, anon_sym_forall, - anon_sym_QMARK, - [359231] = 5, + [361523] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9839), 1, - anon_sym_LPAREN2, - STATE(7836), 1, + ACTIONS(9801), 1, + anon_sym_forall, + STATE(7875), 1, sym_heredoc_body, + STATE(7912), 1, + sym_forall, + STATE(8074), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4599), 16, + ACTIONS(9795), 2, sym__line_break, + anon_sym_SEMI, + ACTIONS(4794), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - [359263] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9740), 1, - anon_sym_LBRACK, - ACTIONS(9742), 1, - anon_sym_STAR, - ACTIONS(9744), 1, - anon_sym_DOT, - ACTIONS(9746), 1, - anon_sym_QMARK, - ACTIONS(9829), 1, - anon_sym_PIPE, - STATE(7826), 1, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [361561] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(7869), 1, aux_sym_union_type_repeat1, - STATE(7837), 1, + STATE(7876), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4605), 11, + ACTIONS(4629), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, anon_sym_forall, - anon_sym_else, - [359305] = 10, + anon_sym_QMARK, + [361593] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9834), 1, - anon_sym_PIPE, - ACTIONS(9841), 1, + ACTIONS(9880), 1, anon_sym_LBRACK, - ACTIONS(9843), 1, + ACTIONS(9882), 1, anon_sym_STAR, - ACTIONS(9845), 1, + ACTIONS(9884), 1, + anon_sym_PIPE, + ACTIONS(9886), 1, anon_sym_DOT, - ACTIONS(9847), 1, + ACTIONS(9888), 1, anon_sym_QMARK, - STATE(7834), 1, + STATE(7869), 1, aux_sym_union_type_repeat1, - STATE(7838), 1, + STATE(7877), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4570), 11, + ACTIONS(4607), 11, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -632779,47 +639176,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_end, anon_sym_forall, - [359347] = 10, + [361635] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9834), 1, - anon_sym_PIPE, - ACTIONS(9841), 1, - anon_sym_LBRACK, - ACTIONS(9843), 1, - anon_sym_STAR, - ACTIONS(9845), 1, - anon_sym_DOT, - ACTIONS(9847), 1, - anon_sym_QMARK, - STATE(7834), 1, - aux_sym_union_type_repeat1, - STATE(7839), 1, + ACTIONS(9801), 1, + anon_sym_forall, + STATE(7878), 1, sym_heredoc_body, + STATE(7925), 1, + sym_forall, + STATE(7950), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4595), 11, + ACTIONS(9795), 2, sym__line_break, + anon_sym_SEMI, + ACTIONS(4806), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_GT, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_forall, - [359389] = 4, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [361673] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7840), 1, + STATE(7879), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4303), 17, + ACTIONS(4640), 17, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -632827,91 +639222,115 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_end, - aux_sym__base_method_def_token1, anon_sym_forall, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [359419] = 10, + [361703] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9834), 1, - anon_sym_PIPE, - ACTIONS(9841), 1, + ACTIONS(9785), 1, anon_sym_LBRACK, - ACTIONS(9843), 1, + ACTIONS(9787), 1, anon_sym_STAR, - ACTIONS(9845), 1, + ACTIONS(9791), 1, anon_sym_DOT, - ACTIONS(9847), 1, + ACTIONS(9793), 1, anon_sym_QMARK, - STATE(7834), 1, - aux_sym_union_type_repeat1, - STATE(7841), 1, + ACTIONS(9878), 1, + anon_sym_PIPE, + STATE(7880), 1, sym_heredoc_body, + STATE(7884), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4605), 11, + ACTIONS(4650), 11, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_end, anon_sym_forall, - [359461] = 10, + anon_sym_else, + [361745] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9834), 1, - anon_sym_PIPE, - ACTIONS(9841), 1, - anon_sym_LBRACK, - ACTIONS(9843), 1, - anon_sym_STAR, - ACTIONS(9845), 1, - anon_sym_DOT, - ACTIONS(9847), 1, - anon_sym_QMARK, - STATE(7834), 1, - aux_sym_union_type_repeat1, - STATE(7842), 1, + ACTIONS(9801), 1, + anon_sym_forall, + STATE(7881), 1, + sym_heredoc_body, + STATE(7923), 1, + sym_forall, + STATE(7948), 1, + sym__terminator, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9795), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4810), 12, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [361783] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(7882), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4613), 11, + ACTIONS(4344), 17, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, + aux_sym__base_method_def_token1, anon_sym_forall, - [359503] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [361813] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7826), 1, - aux_sym_union_type_repeat1, - STATE(7843), 1, + STATE(7883), 1, sym_heredoc_body, + STATE(7884), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4588), 16, + ACTIONS(4629), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -632928,87 +639347,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_forall, anon_sym_QMARK, anon_sym_else, - [359535] = 8, + [361845] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9754), 1, - anon_sym_forall, - STATE(7844), 1, + ACTIONS(9878), 1, + anon_sym_PIPE, + STATE(7884), 1, sym_heredoc_body, - STATE(7891), 1, - sym_forall, - STATE(8035), 1, - sym__terminator, + STATE(7885), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + ACTIONS(4636), 15, sym__line_break, - anon_sym_SEMI, - ACTIONS(4739), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_end, - anon_sym_elsif, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, anon_sym_else, - anon_sym_when, - anon_sym_in, - [359573] = 8, + [361879] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9754), 1, - anon_sym_forall, - STATE(7845), 1, - sym_heredoc_body, - STATE(7898), 1, - sym_forall, - STATE(7997), 1, - sym__terminator, + ACTIONS(9895), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + STATE(7885), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4629), 15, sym__line_break, - anon_sym_SEMI, - ACTIONS(4731), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_end, - anon_sym_elsif, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, anon_sym_else, - anon_sym_when, - anon_sym_in, - [359611] = 10, + [361911] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9740), 1, + ACTIONS(9785), 1, anon_sym_LBRACK, - ACTIONS(9742), 1, + ACTIONS(9787), 1, anon_sym_STAR, - ACTIONS(9744), 1, + ACTIONS(9791), 1, anon_sym_DOT, - ACTIONS(9746), 1, + ACTIONS(9793), 1, anon_sym_QMARK, - ACTIONS(9829), 1, + ACTIONS(9878), 1, anon_sym_PIPE, - STATE(7826), 1, + STATE(7884), 1, aux_sym_union_type_repeat1, - STATE(7846), 1, + STATE(7886), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4685), 11, + ACTIONS(4625), 11, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633020,54 +639434,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, anon_sym_forall, anon_sym_else, - [359653] = 8, + [361953] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9754), 1, - anon_sym_forall, - STATE(7847), 1, + ACTIONS(9785), 1, + anon_sym_LBRACK, + ACTIONS(9787), 1, + anon_sym_STAR, + ACTIONS(9791), 1, + anon_sym_DOT, + ACTIONS(9793), 1, + anon_sym_QMARK, + ACTIONS(9878), 1, + anon_sym_PIPE, + STATE(7884), 1, + aux_sym_union_type_repeat1, + STATE(7887), 1, sym_heredoc_body, - STATE(7897), 1, - sym_forall, - STATE(8047), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + ACTIONS(4670), 11, sym__line_break, - anon_sym_SEMI, - ACTIONS(4754), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_end, - anon_sym_elsif, + anon_sym_forall, anon_sym_else, - anon_sym_when, - anon_sym_in, - [359691] = 8, + [361995] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9754), 1, + ACTIONS(9801), 1, anon_sym_forall, - STATE(7848), 1, + STATE(7888), 1, sym_heredoc_body, - STATE(7899), 1, + STATE(7945), 1, sym_forall, - STATE(8052), 1, + STATE(7959), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + ACTIONS(9795), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4761), 12, + ACTIONS(4781), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, @@ -633080,27 +639496,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [359729] = 10, + [362033] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9834), 1, - anon_sym_PIPE, - ACTIONS(9841), 1, + ACTIONS(9880), 1, anon_sym_LBRACK, - ACTIONS(9843), 1, + ACTIONS(9882), 1, anon_sym_STAR, - ACTIONS(9845), 1, + ACTIONS(9884), 1, + anon_sym_PIPE, + ACTIONS(9886), 1, anon_sym_DOT, - ACTIONS(9847), 1, + ACTIONS(9888), 1, anon_sym_QMARK, - STATE(7834), 1, + STATE(7869), 1, aux_sym_union_type_repeat1, - STATE(7849), 1, + STATE(7889), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4609), 11, + ACTIONS(4621), 11, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633112,90 +639528,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_end, anon_sym_forall, - [359771] = 4, + [362075] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7850), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4649), 16, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(9785), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_end, + ACTIONS(9787), 1, anon_sym_STAR, - anon_sym_PIPE, + ACTIONS(9791), 1, anon_sym_DOT, - anon_sym_forall, + ACTIONS(9793), 1, anon_sym_QMARK, - [359800] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(7851), 1, + ACTIONS(9878), 1, + anon_sym_PIPE, + STATE(7884), 1, + aux_sym_union_type_repeat1, + STATE(7890), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4657), 16, + ACTIONS(4686), 11, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, anon_sym_forall, - anon_sym_QMARK, - [359829] = 4, + anon_sym_else, + [362117] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7852), 1, + ACTIONS(9801), 1, + anon_sym_forall, + STATE(7891), 1, sym_heredoc_body, + STATE(7931), 1, + sym_forall, + STATE(7955), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4637), 16, + ACTIONS(9795), 2, sym__line_break, + anon_sym_SEMI, + ACTIONS(4775), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - [359858] = 4, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [362155] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7853), 1, + STATE(7892), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4625), 16, + ACTIONS(4718), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633212,15 +639615,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_forall, anon_sym_QMARK, - [359887] = 4, + [362184] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7854), 1, + STATE(7893), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4645), 16, + ACTIONS(4702), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633237,15 +639640,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_forall, anon_sym_QMARK, - [359916] = 4, + [362213] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7855), 1, + STATE(7894), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4599), 16, + ACTIONS(4690), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633262,15 +639665,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_forall, anon_sym_QMARK, - [359945] = 4, + [362242] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7856), 1, + STATE(7895), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4669), 16, + ACTIONS(4662), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633287,15 +639690,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_forall, anon_sym_QMARK, - [359974] = 4, + [362271] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7857), 1, + STATE(7896), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4629), 16, + ACTIONS(4678), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633312,15 +639715,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_forall, anon_sym_QMARK, - [360003] = 4, + [362300] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7858), 1, + STATE(7897), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4661), 16, + ACTIONS(4666), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633337,15 +639740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_forall, anon_sym_QMARK, - [360032] = 4, + [362329] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7859), 1, + STATE(7898), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4633), 16, + ACTIONS(4698), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633362,15 +639765,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_forall, anon_sym_QMARK, - [360061] = 4, + [362358] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7860), 1, + STATE(7899), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4665), 16, + ACTIONS(4658), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633387,15 +639790,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_forall, anon_sym_QMARK, - [360090] = 4, + [362387] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7861), 1, + STATE(7900), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4681), 16, + ACTIONS(4644), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633412,18 +639815,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_forall, anon_sym_QMARK, - [360119] = 5, + [362416] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9849), 1, + ACTIONS(9898), 1, anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7862), 2, + STATE(7901), 2, sym_heredoc_body, aux_sym_forall_repeat1, - ACTIONS(4783), 14, + ACTIONS(4814), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633438,19 +639841,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360150] = 6, + [362447] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9852), 1, + ACTIONS(9901), 1, anon_sym_COMMA, - STATE(7863), 1, + STATE(7902), 1, sym_heredoc_body, - STATE(7865), 1, + STATE(7908), 1, aux_sym_forall_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4790), 14, + ACTIONS(4827), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633465,15 +639868,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360183] = 4, + [362480] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7864), 1, + STATE(7903), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4653), 16, + ACTIONS(4714), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633490,42 +639893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_forall, anon_sym_QMARK, - [360212] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9852), 1, - anon_sym_COMMA, - STATE(7862), 1, - aux_sym_forall_repeat1, - STATE(7865), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4777), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [360245] = 4, + [362509] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7866), 1, + STATE(7904), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4617), 16, + ACTIONS(4722), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633542,15 +639918,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_forall, anon_sym_QMARK, - [360274] = 4, + [362538] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7867), 1, + STATE(7905), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4621), 16, + ACTIONS(4654), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633567,15 +639943,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_forall, anon_sym_QMARK, - [360303] = 4, + [362567] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7868), 1, + STATE(7906), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4677), 16, + ACTIONS(4682), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633592,15 +639968,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_forall, anon_sym_QMARK, - [360332] = 4, + [362596] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7869), 1, + STATE(7907), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4673), 16, + ACTIONS(4694), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633617,17 +639993,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_forall, anon_sym_QMARK, - [360361] = 5, + [362625] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9717), 1, - anon_sym_LPAREN2, - STATE(7870), 1, + ACTIONS(9901), 1, + anon_sym_COMMA, + STATE(7901), 1, + aux_sym_forall_repeat1, + STATE(7908), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9854), 14, + ACTIONS(4821), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633642,62 +640020,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360391] = 15, + [362658] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9856), 1, - sym_identifier, - ACTIONS(9858), 1, - anon_sym_RPAREN, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(9862), 1, - anon_sym_STAR, - ACTIONS(9864), 1, - anon_sym_AMP, - ACTIONS(9866), 1, - anon_sym_STAR_STAR, - STATE(7871), 1, + STATE(7909), 1, sym_heredoc_body, - STATE(8481), 1, - aux_sym_param_repeat1, - STATE(9058), 1, - sym_annotation, - STATE(11667), 1, - sym_param_list, - STATE(11858), 1, - sym_block_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - STATE(10322), 3, - sym_param, - sym_splat_param, - sym_double_splat_param, - [360441] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9841), 1, + ACTIONS(4710), 16, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(9843), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_end, anon_sym_STAR, - ACTIONS(9845), 1, + anon_sym_PIPE, anon_sym_DOT, - ACTIONS(9847), 1, + anon_sym_forall, anon_sym_QMARK, - ACTIONS(9870), 1, - anon_sym_PIPE, - STATE(7872), 1, + [362687] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(7910), 1, sym_heredoc_body, - STATE(7883), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4605), 9, + ACTIONS(4674), 16, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -633705,122 +640061,54 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, anon_sym_forall, - [360481] = 15, + anon_sym_QMARK, + [362716] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9856), 1, - sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(9862), 1, - anon_sym_STAR, - ACTIONS(9864), 1, - anon_sym_AMP, - ACTIONS(9866), 1, - anon_sym_STAR_STAR, - ACTIONS(9872), 1, - anon_sym_RPAREN, - STATE(7873), 1, + STATE(7911), 1, sym_heredoc_body, - STATE(8481), 1, - aux_sym_param_repeat1, - STATE(9058), 1, - sym_annotation, - STATE(10526), 1, - sym_param_list, - STATE(11858), 1, - sym_block_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - STATE(10322), 3, - sym_param, - sym_splat_param, - sym_double_splat_param, - [360531] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9876), 1, + ACTIONS(4706), 16, + sym__line_break, sym__modifier_if_keyword, - ACTIONS(9878), 1, sym__modifier_unless_keyword, - ACTIONS(9880), 1, sym__modifier_rescue_keyword, - ACTIONS(9882), 1, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - STATE(2036), 1, - sym__terminator, - STATE(7874), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7731), 2, - sym__line_break, anon_sym_SEMI, - ACTIONS(9874), 8, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [360571] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9856), 1, - sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(9862), 1, anon_sym_STAR, - ACTIONS(9864), 1, - anon_sym_AMP, - ACTIONS(9866), 1, - anon_sym_STAR_STAR, - ACTIONS(9884), 1, - anon_sym_RPAREN, - STATE(7875), 1, - sym_heredoc_body, - STATE(8481), 1, - aux_sym_param_repeat1, - STATE(9058), 1, - sym_annotation, - STATE(11488), 1, - sym_param_list, - STATE(11858), 1, - sym_block_param, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - STATE(10322), 3, - sym_param, - sym_splat_param, - sym_double_splat_param, - [360621] = 6, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + [362745] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7876), 1, + STATE(7912), 1, sym_heredoc_body, - STATE(8022), 1, + STATE(8102), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + ACTIONS(9795), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4798), 12, + ACTIONS(4857), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, @@ -633833,157 +640121,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360653] = 6, + [362777] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7877), 1, - sym_heredoc_body, - STATE(7916), 1, - sym__terminator, + ACTIONS(9903), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + STATE(7913), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4629), 13, sym__line_break, - anon_sym_SEMI, - ACTIONS(4836), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [360685] = 6, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + [362807] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7878), 1, + ACTIONS(9880), 1, + anon_sym_LBRACK, + ACTIONS(9882), 1, + anon_sym_STAR, + ACTIONS(9886), 1, + anon_sym_DOT, + ACTIONS(9888), 1, + anon_sym_QMARK, + ACTIONS(9906), 1, + anon_sym_PIPE, + STATE(7914), 1, sym_heredoc_body, - STATE(8023), 1, - sym__terminator, + STATE(7928), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + ACTIONS(4625), 9, sym__line_break, - anon_sym_SEMI, - ACTIONS(4816), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [360717] = 6, + anon_sym_forall, + [362847] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7879), 1, + ACTIONS(9880), 1, + anon_sym_LBRACK, + ACTIONS(9882), 1, + anon_sym_STAR, + ACTIONS(9886), 1, + anon_sym_DOT, + ACTIONS(9888), 1, + anon_sym_QMARK, + ACTIONS(9906), 1, + anon_sym_PIPE, + STATE(7915), 1, sym_heredoc_body, - STATE(8034), 1, - sym__terminator, + STATE(7928), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + ACTIONS(4607), 9, sym__line_break, - anon_sym_SEMI, - ACTIONS(4802), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [360749] = 15, + anon_sym_forall, + [362887] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9856), 1, - sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(9862), 1, + ACTIONS(9880), 1, + anon_sym_LBRACK, + ACTIONS(9882), 1, anon_sym_STAR, - ACTIONS(9864), 1, - anon_sym_AMP, - ACTIONS(9866), 1, - anon_sym_STAR_STAR, ACTIONS(9886), 1, - anon_sym_RPAREN, - STATE(7880), 1, + anon_sym_DOT, + ACTIONS(9888), 1, + anon_sym_QMARK, + ACTIONS(9906), 1, + anon_sym_PIPE, + STATE(7916), 1, sym_heredoc_body, - STATE(8481), 1, - aux_sym_param_repeat1, - STATE(9058), 1, - sym_annotation, - STATE(10936), 1, - sym_param_list, - STATE(11858), 1, - sym_block_param, + STATE(7928), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - STATE(10322), 3, - sym_param, - sym_splat_param, - sym_double_splat_param, - [360799] = 4, + ACTIONS(4686), 9, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_forall, + [362927] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7881), 1, + STATE(7917), 1, sym_heredoc_body, + STATE(7928), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4832), 15, + ACTIONS(4629), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [360827] = 6, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_forall, + anon_sym_QMARK, + [362957] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7882), 1, + STATE(7918), 1, sym_heredoc_body, - STATE(7935), 1, + STATE(7953), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + ACTIONS(9795), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4855), 12, + ACTIONS(4885), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, @@ -633996,136 +640287,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [360859] = 6, + [362989] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9870), 1, - anon_sym_PIPE, - STATE(7883), 1, + STATE(7919), 1, sym_heredoc_body, - STATE(7890), 1, - aux_sym_union_type_repeat1, + STATE(7951), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4584), 13, + ACTIONS(9795), 2, sym__line_break, + anon_sym_SEMI, + ACTIONS(4881), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - [360891] = 5, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [363021] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7883), 1, - aux_sym_union_type_repeat1, - STATE(7884), 1, + ACTIONS(9908), 1, + sym_identifier, + ACTIONS(9910), 1, + anon_sym_RPAREN, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(9914), 1, + anon_sym_STAR, + ACTIONS(9916), 1, + anon_sym_AMP, + ACTIONS(9918), 1, + anon_sym_STAR_STAR, + STATE(7920), 1, sym_heredoc_body, + STATE(8471), 1, + aux_sym_param_repeat1, + STATE(9074), 1, + sym_annotation, + STATE(11004), 1, + sym_block_param, + STATE(11613), 1, + sym_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4588), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - [360921] = 10, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + STATE(9766), 3, + sym_param, + sym_splat_param, + sym_double_splat_param, + [363071] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9841), 1, - anon_sym_LBRACK, - ACTIONS(9843), 1, + ACTIONS(9908), 1, + sym_identifier, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(9914), 1, anon_sym_STAR, - ACTIONS(9845), 1, - anon_sym_DOT, - ACTIONS(9847), 1, - anon_sym_QMARK, - ACTIONS(9870), 1, - anon_sym_PIPE, - STATE(7883), 1, - aux_sym_union_type_repeat1, - STATE(7885), 1, + ACTIONS(9916), 1, + anon_sym_AMP, + ACTIONS(9918), 1, + anon_sym_STAR_STAR, + ACTIONS(9922), 1, + anon_sym_RPAREN, + STATE(7921), 1, sym_heredoc_body, + STATE(8471), 1, + aux_sym_param_repeat1, + STATE(9074), 1, + sym_annotation, + STATE(10678), 1, + sym_param_list, + STATE(11004), 1, + sym_block_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4685), 9, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_forall, - [360961] = 15, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + STATE(9766), 3, + sym_param, + sym_splat_param, + sym_double_splat_param, + [363121] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9856), 1, + ACTIONS(9908), 1, sym_identifier, - ACTIONS(9860), 1, + ACTIONS(9912), 1, anon_sym_AT_LBRACK, - ACTIONS(9862), 1, + ACTIONS(9914), 1, anon_sym_STAR, - ACTIONS(9864), 1, + ACTIONS(9916), 1, anon_sym_AMP, - ACTIONS(9866), 1, + ACTIONS(9918), 1, anon_sym_STAR_STAR, - ACTIONS(9888), 1, + ACTIONS(9924), 1, anon_sym_RPAREN, - STATE(7886), 1, + STATE(7922), 1, sym_heredoc_body, - STATE(8481), 1, + STATE(8471), 1, aux_sym_param_repeat1, - STATE(9058), 1, + STATE(9074), 1, sym_annotation, - STATE(11230), 1, - sym_param_list, - STATE(11858), 1, + STATE(11004), 1, sym_block_param, + STATE(11225), 1, + sym_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9868), 2, + ACTIONS(9920), 2, sym_instance_var, sym_class_var, - STATE(10322), 3, + STATE(9766), 3, sym_param, sym_splat_param, sym_double_splat_param, - [361011] = 6, + [363171] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7887), 1, + STATE(7923), 1, sym_heredoc_body, - STATE(8040), 1, + STATE(7949), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + ACTIONS(9795), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4824), 12, + ACTIONS(4831), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, @@ -634138,50 +640444,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [361043] = 10, + [363203] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9892), 1, - anon_sym_LPAREN, - ACTIONS(9894), 1, - aux_sym__base_method_def_token1, - ACTIONS(9896), 1, - anon_sym_forall, - STATE(7888), 1, + STATE(7924), 1, sym_heredoc_body, - STATE(8104), 1, - sym_forall, - STATE(8173), 1, + STATE(8029), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(9795), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4719), 8, + ACTIONS(4865), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, + anon_sym_elsif, anon_sym_else, - [361083] = 6, + anon_sym_when, + anon_sym_in, + [363235] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7889), 1, + STATE(7925), 1, sym_heredoc_body, - STATE(8042), 1, + STATE(7954), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + ACTIONS(9795), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4828), 12, + ACTIONS(4873), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, @@ -634194,45 +640496,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [361115] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9898), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(7890), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4588), 13, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_end, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_forall, - anon_sym_QMARK, - [361145] = 6, + [363267] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7891), 1, + STATE(7926), 1, sym_heredoc_body, - STATE(8046), 1, + STATE(8103), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + ACTIONS(9795), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4794), 12, + ACTIONS(4877), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, @@ -634245,115 +640522,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [361177] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9841), 1, - anon_sym_LBRACK, - ACTIONS(9843), 1, - anon_sym_STAR, - ACTIONS(9845), 1, - anon_sym_DOT, - ACTIONS(9847), 1, - anon_sym_QMARK, - ACTIONS(9870), 1, - anon_sym_PIPE, - STATE(7883), 1, - aux_sym_union_type_repeat1, - STATE(7892), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4609), 9, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_forall, - [361217] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9841), 1, - anon_sym_LBRACK, - ACTIONS(9843), 1, - anon_sym_STAR, - ACTIONS(9845), 1, - anon_sym_DOT, - ACTIONS(9847), 1, - anon_sym_QMARK, - ACTIONS(9870), 1, - anon_sym_PIPE, - STATE(7883), 1, - aux_sym_union_type_repeat1, - STATE(7893), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4570), 9, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_forall, - [361257] = 15, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9856), 1, - sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(9862), 1, - anon_sym_STAR, - ACTIONS(9864), 1, - anon_sym_AMP, - ACTIONS(9866), 1, - anon_sym_STAR_STAR, - ACTIONS(9901), 1, - anon_sym_RPAREN, - STATE(7894), 1, - sym_heredoc_body, - STATE(8481), 1, - aux_sym_param_repeat1, - STATE(9058), 1, - sym_annotation, - STATE(10643), 1, - sym_param_list, - STATE(11858), 1, - sym_block_param, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - STATE(10322), 3, - sym_param, - sym_splat_param, - sym_double_splat_param, - [361307] = 6, + [363299] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7895), 1, + STATE(7927), 1, sym_heredoc_body, - STATE(8050), 1, + STATE(8100), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + ACTIONS(9795), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4820), 12, + ACTIONS(4845), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, @@ -634366,27 +640548,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [361339] = 10, + [363331] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9841), 1, - anon_sym_LBRACK, - ACTIONS(9843), 1, - anon_sym_STAR, - ACTIONS(9845), 1, - anon_sym_DOT, - ACTIONS(9847), 1, - anon_sym_QMARK, - ACTIONS(9870), 1, + ACTIONS(9906), 1, anon_sym_PIPE, - STATE(7883), 1, + STATE(7913), 1, aux_sym_union_type_repeat1, - STATE(7896), 1, + STATE(7928), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4641), 9, + ACTIONS(4636), 13, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -634394,27 +640568,30 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_end, + anon_sym_STAR, + anon_sym_DOT, anon_sym_forall, - [361379] = 6, + anon_sym_QMARK, + [363363] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7897), 1, + ACTIONS(9766), 1, + anon_sym_LPAREN2, + STATE(7929), 1, sym_heredoc_body, - STATE(8051), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + ACTIONS(9926), 14, sym__line_break, - anon_sym_SEMI, - ACTIONS(4840), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_end, @@ -634422,46 +640599,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [361411] = 6, + [363393] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7898), 1, + STATE(7930), 1, sym_heredoc_body, - STATE(7920), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + ACTIONS(4869), 15, sym__line_break, - anon_sym_SEMI, - ACTIONS(4847), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_end, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [361443] = 6, + [363421] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7899), 1, + STATE(7931), 1, sym_heredoc_body, - STATE(8054), 1, + STATE(7958), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9748), 2, + ACTIONS(9795), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4851), 12, + ACTIONS(4853), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, @@ -634474,24 +640649,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [361475] = 5, + [363453] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9717), 1, - anon_sym_LPAREN2, - STATE(7900), 1, + ACTIONS(9930), 1, + sym__modifier_if_keyword, + ACTIONS(9932), 1, + sym__modifier_unless_keyword, + ACTIONS(9934), 1, + sym__modifier_rescue_keyword, + ACTIONS(9936), 1, + sym__modifier_ensure_keyword, + STATE(2045), 1, + sym__terminator, + STATE(7932), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9903), 14, + ACTIONS(7796), 2, sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(9928), 8, + ts_builtin_sym_end, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_end, @@ -634499,87 +640679,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [361505] = 4, + [363493] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7901), 1, + ACTIONS(9908), 1, + sym_identifier, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(9914), 1, + anon_sym_STAR, + ACTIONS(9916), 1, + anon_sym_AMP, + ACTIONS(9918), 1, + anon_sym_STAR_STAR, + ACTIONS(9938), 1, + anon_sym_RPAREN, + STATE(7933), 1, sym_heredoc_body, + STATE(8471), 1, + aux_sym_param_repeat1, + STATE(9074), 1, + sym_annotation, + STATE(11004), 1, + sym_block_param, + STATE(11673), 1, + sym_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4745), 15, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + STATE(9766), 3, + sym_param, + sym_splat_param, + sym_double_splat_param, + [363543] = 15, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9908), 1, + sym_identifier, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(9914), 1, + anon_sym_STAR, + ACTIONS(9916), 1, + anon_sym_AMP, + ACTIONS(9918), 1, + anon_sym_STAR_STAR, + ACTIONS(9940), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_forall, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [361533] = 15, + STATE(7934), 1, + sym_heredoc_body, + STATE(8471), 1, + aux_sym_param_repeat1, + STATE(9074), 1, + sym_annotation, + STATE(11004), 1, + sym_block_param, + STATE(11353), 1, + sym_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + STATE(9766), 3, + sym_param, + sym_splat_param, + sym_double_splat_param, + [363593] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9856), 1, + ACTIONS(9908), 1, sym_identifier, - ACTIONS(9860), 1, + ACTIONS(9912), 1, anon_sym_AT_LBRACK, - ACTIONS(9862), 1, + ACTIONS(9914), 1, anon_sym_STAR, - ACTIONS(9864), 1, + ACTIONS(9916), 1, anon_sym_AMP, - ACTIONS(9866), 1, + ACTIONS(9918), 1, anon_sym_STAR_STAR, - ACTIONS(9905), 1, + ACTIONS(9942), 1, anon_sym_RPAREN, - STATE(7902), 1, + STATE(7935), 1, sym_heredoc_body, - STATE(8481), 1, + STATE(8471), 1, aux_sym_param_repeat1, - STATE(9058), 1, + STATE(9074), 1, sym_annotation, - STATE(11795), 1, + STATE(11002), 1, sym_param_list, - STATE(11858), 1, + STATE(11004), 1, sym_block_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9868), 2, + ACTIONS(9920), 2, sym_instance_var, sym_class_var, - STATE(10322), 3, + STATE(9766), 3, sym_param, sym_splat_param, sym_double_splat_param, - [361583] = 10, + [363643] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9946), 1, + anon_sym_LPAREN, + ACTIONS(9948), 1, + aux_sym__base_method_def_token1, + ACTIONS(9950), 1, + anon_sym_forall, + STATE(7936), 1, + sym_heredoc_body, + STATE(8182), 1, + sym_forall, + STATE(8227), 1, + sym__terminator, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9944), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4728), 8, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + anon_sym_else, + [363683] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9896), 1, + ACTIONS(9950), 1, anon_sym_forall, - ACTIONS(9907), 1, + ACTIONS(9952), 1, anon_sym_LPAREN, - ACTIONS(9909), 1, + ACTIONS(9954), 1, aux_sym__base_method_def_token1, - STATE(7903), 1, + STATE(7937), 1, sym_heredoc_body, - STATE(8133), 1, + STATE(8174), 1, sym_forall, - STATE(8245), 1, + STATE(8317), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(9944), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4711), 8, + ACTIONS(4744), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, @@ -634588,73 +640844,82 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_end, anon_sym_else, - [361623] = 15, + [363723] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9856), 1, + ACTIONS(9908), 1, sym_identifier, - ACTIONS(9860), 1, + ACTIONS(9912), 1, anon_sym_AT_LBRACK, - ACTIONS(9862), 1, + ACTIONS(9914), 1, anon_sym_STAR, - ACTIONS(9864), 1, + ACTIONS(9916), 1, anon_sym_AMP, - ACTIONS(9866), 1, + ACTIONS(9918), 1, anon_sym_STAR_STAR, - ACTIONS(9911), 1, + ACTIONS(9956), 1, anon_sym_RPAREN, - STATE(7904), 1, + STATE(7938), 1, sym_heredoc_body, - STATE(8481), 1, + STATE(8471), 1, aux_sym_param_repeat1, - STATE(9058), 1, + STATE(9074), 1, sym_annotation, - STATE(11788), 1, - sym_param_list, - STATE(11858), 1, + STATE(11004), 1, sym_block_param, + STATE(11423), 1, + sym_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9868), 2, + ACTIONS(9920), 2, sym_instance_var, sym_class_var, - STATE(10322), 3, + STATE(9766), 3, sym_param, sym_splat_param, sym_double_splat_param, - [361673] = 4, + [363773] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7905), 1, + ACTIONS(9880), 1, + anon_sym_LBRACK, + ACTIONS(9882), 1, + anon_sym_STAR, + ACTIONS(9886), 1, + anon_sym_DOT, + ACTIONS(9888), 1, + anon_sym_QMARK, + ACTIONS(9906), 1, + anon_sym_PIPE, + STATE(7928), 1, + aux_sym_union_type_repeat1, + STATE(7939), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4891), 14, + ACTIONS(4670), 9, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [361700] = 4, + anon_sym_forall, + [363813] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7906), 1, + ACTIONS(9766), 1, + anon_sym_LPAREN2, + STATE(7940), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9913), 14, + ACTIONS(9958), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -634669,22 +640934,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [361727] = 4, + [363843] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7907), 1, + STATE(7941), 1, sym_heredoc_body, + STATE(8050), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9915), 14, + ACTIONS(9795), 2, sym__line_break, + anon_sym_SEMI, + ACTIONS(4892), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_end, @@ -634692,22 +640960,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [361754] = 4, + [363875] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7908), 1, + STATE(7942), 1, sym_heredoc_body, + STATE(7956), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9917), 14, + ACTIONS(9795), 2, sym__line_break, + anon_sym_SEMI, + ACTIONS(4849), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__modifier_ensure_keyword, ts_builtin_sym_end, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_end, @@ -634715,66 +640986,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [361781] = 4, + [363907] = 15, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7909), 1, + ACTIONS(9908), 1, + sym_identifier, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(9914), 1, + anon_sym_STAR, + ACTIONS(9916), 1, + anon_sym_AMP, + ACTIONS(9918), 1, + anon_sym_STAR_STAR, + ACTIONS(9960), 1, + anon_sym_RPAREN, + STATE(7943), 1, + sym_heredoc_body, + STATE(8471), 1, + aux_sym_param_repeat1, + STATE(9074), 1, + sym_annotation, + STATE(11004), 1, + sym_block_param, + STATE(11808), 1, + sym_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + STATE(9766), 3, + sym_param, + sym_splat_param, + sym_double_splat_param, + [363957] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9880), 1, + anon_sym_LBRACK, + ACTIONS(9882), 1, + anon_sym_STAR, + ACTIONS(9886), 1, + anon_sym_DOT, + ACTIONS(9888), 1, + anon_sym_QMARK, + ACTIONS(9906), 1, + anon_sym_PIPE, + STATE(7928), 1, + aux_sym_union_type_repeat1, + STATE(7944), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9919), 14, + ACTIONS(4650), 9, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [361808] = 9, + anon_sym_forall, + [363997] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9896), 1, - anon_sym_forall, - ACTIONS(9921), 1, - aux_sym__base_method_def_token1, - STATE(7910), 1, + STATE(7945), 1, sym_heredoc_body, - STATE(8128), 1, - sym_forall, - STATE(8168), 1, + STATE(7960), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(9795), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4703), 8, + ACTIONS(4861), 12, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, + anon_sym_elsif, anon_sym_else, - [361845] = 4, + anon_sym_when, + anon_sym_in, + [364029] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7911), 1, + STATE(7946), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9923), 14, + ACTIONS(4785), 15, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -634785,19 +641096,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_end, + anon_sym_forall, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [361872] = 4, + [364057] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7912), 1, + STATE(7947), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9925), 14, + ACTIONS(9962), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -634812,43 +641124,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [361899] = 9, + [364084] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9896), 1, - anon_sym_forall, - ACTIONS(9927), 1, - aux_sym__base_method_def_token1, - STATE(7913), 1, + STATE(7948), 1, sym_heredoc_body, - STATE(8131), 1, - sym_forall, - STATE(8282), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(4896), 14, sym__line_break, - anon_sym_SEMI, - ACTIONS(4697), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, + anon_sym_elsif, anon_sym_else, - [361936] = 4, + anon_sym_when, + anon_sym_in, + [364111] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7914), 1, + STATE(7949), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9929), 14, + ACTIONS(4916), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -634863,15 +641170,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [361963] = 4, + [364138] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7915), 1, + STATE(7950), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9931), 14, + ACTIONS(4920), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -634886,15 +641193,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [361990] = 4, + [364165] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7916), 1, + STATE(7951), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4943), 14, + ACTIONS(4928), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -634909,15 +641216,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362017] = 4, + [364192] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7917), 1, + STATE(7952), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9933), 14, + ACTIONS(4932), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -634932,15 +641239,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362044] = 4, + [364219] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7918), 1, + STATE(7953), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4947), 14, + ACTIONS(4940), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -634955,15 +641262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362071] = 4, + [364246] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7919), 1, + STATE(7954), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9935), 14, + ACTIONS(4944), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -634978,15 +641285,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362098] = 4, + [364273] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7920), 1, + STATE(7955), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4903), 14, + ACTIONS(4948), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635001,46 +641308,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362125] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7921), 1, - sym_heredoc_body, - STATE(11781), 1, - sym__numeric_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [362168] = 4, + [364300] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7922), 1, + STATE(7956), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9947), 14, + ACTIONS(4956), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635055,15 +641331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362195] = 4, + [364327] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7923), 1, + STATE(7957), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4915), 14, + ACTIONS(9964), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635078,15 +641354,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362222] = 4, + [364354] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7924), 1, + STATE(7958), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9949), 14, + ACTIONS(4964), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635101,15 +641377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362249] = 4, + [364381] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7925), 1, + STATE(7959), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9951), 14, + ACTIONS(4968), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635124,15 +641400,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362276] = 4, + [364408] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7926), 1, + STATE(7960), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9953), 14, + ACTIONS(4972), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635147,46 +641423,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362303] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7927), 1, - sym_heredoc_body, - STATE(10735), 1, - sym__numeric_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [362346] = 4, + [364435] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7928), 1, + STATE(7961), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9955), 14, + ACTIONS(9966), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635201,15 +641446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362373] = 4, + [364462] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7929), 1, + STATE(7962), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9957), 14, + ACTIONS(9968), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635224,15 +641469,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362400] = 4, + [364489] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7930), 1, + STATE(7963), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9959), 14, + ACTIONS(9970), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635247,15 +641492,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362427] = 4, + [364516] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7931), 1, + STATE(7964), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9961), 14, + ACTIONS(9972), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635270,46 +641515,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362454] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7932), 1, - sym_heredoc_body, - STATE(11541), 1, - sym__numeric_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [362497] = 4, + [364543] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7933), 1, + STATE(7965), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9963), 14, + ACTIONS(9974), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635324,46 +641538,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362524] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7934), 1, - sym_heredoc_body, - STATE(10807), 1, - sym__numeric_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [362567] = 4, + [364570] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7935), 1, + STATE(7966), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4871), 14, + ACTIONS(9976), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635378,15 +641561,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362594] = 4, + [364597] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7936), 1, + STATE(7967), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9965), 14, + ACTIONS(9978), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635401,15 +641584,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362621] = 4, + [364624] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7937), 1, + STATE(7968), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9967), 14, + ACTIONS(9980), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635424,15 +641607,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362648] = 4, + [364651] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7938), 1, + STATE(7969), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9917), 14, + ACTIONS(9982), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635447,15 +641630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362675] = 4, + [364678] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7939), 1, + STATE(7970), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9969), 14, + ACTIONS(9984), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635470,46 +641653,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362702] = 12, + [364705] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7940), 1, + ACTIONS(9908), 1, + sym_identifier, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(9914), 1, + anon_sym_STAR, + ACTIONS(9916), 1, + anon_sym_AMP, + ACTIONS(9918), 1, + anon_sym_STAR_STAR, + ACTIONS(9986), 1, + anon_sym_RPAREN, + STATE(7971), 1, sym_heredoc_body, - STATE(11122), 1, - sym__numeric_type, + STATE(8471), 1, + aux_sym_param_repeat1, + STATE(9074), 1, + sym_annotation, + STATE(11742), 1, + sym_block_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [362745] = 4, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + STATE(10469), 3, + sym_param, + sym_splat_param, + sym_double_splat_param, + [364752] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7941), 1, + STATE(7972), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9971), 14, + ACTIONS(9972), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635524,15 +641709,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362772] = 4, + [364779] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7942), 1, + STATE(7973), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9973), 14, + ACTIONS(9974), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635547,55 +641732,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362799] = 12, + [364806] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7943), 1, + STATE(7974), 1, sym_heredoc_body, - STATE(11758), 1, - sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [362842] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9876), 1, + ACTIONS(9976), 14, + sym__line_break, sym__modifier_if_keyword, - ACTIONS(9878), 1, sym__modifier_unless_keyword, - ACTIONS(9880), 1, sym__modifier_rescue_keyword, - ACTIONS(9882), 1, sym__modifier_ensure_keyword, - STATE(7944), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9975), 10, - sym__line_break, ts_builtin_sym_end, anon_sym_SEMI, anon_sym_RPAREN, @@ -635605,15 +641755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362877] = 4, + [364833] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7945), 1, + STATE(7975), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9977), 14, + ACTIONS(9978), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635628,15 +641778,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362904] = 4, + [364860] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7946), 1, + STATE(7976), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9903), 14, + ACTIONS(9988), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635651,15 +641801,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362931] = 4, + [364887] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7947), 1, + STATE(7977), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9979), 14, + ACTIONS(9990), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635674,46 +641824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [362958] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7948), 1, - sym_heredoc_body, - STATE(10619), 1, - sym__numeric_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [363001] = 4, + [364914] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7949), 1, + STATE(7978), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9981), 14, + ACTIONS(9992), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635728,74 +641847,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [363028] = 9, + [364941] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9896), 1, - anon_sym_forall, - ACTIONS(9983), 1, - aux_sym__base_method_def_token1, - STATE(7950), 1, + STATE(7979), 1, sym_heredoc_body, - STATE(8117), 1, - sym_forall, - STATE(8304), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(9994), 14, sym__line_break, - anon_sym_SEMI, - ACTIONS(4725), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, + anon_sym_elsif, anon_sym_else, - [363065] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7951), 1, - sym_heredoc_body, - STATE(10884), 1, - sym__numeric_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [363108] = 4, + anon_sym_when, + anon_sym_in, + [364968] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7952), 1, + STATE(7980), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9985), 14, + ACTIONS(9996), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635810,98 +641893,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [363135] = 10, + [364995] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9876), 1, - sym__modifier_if_keyword, - ACTIONS(9878), 1, - sym__modifier_unless_keyword, - ACTIONS(9880), 1, - sym__modifier_rescue_keyword, - ACTIONS(9882), 1, - sym__modifier_ensure_keyword, - STATE(2036), 1, - sym__terminator, - STATE(7953), 1, + STATE(7981), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, + ACTIONS(9998), 14, sym__line_break, - anon_sym_SEMI, - ACTIONS(1988), 7, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_end, anon_sym_elsif, anon_sym_else, anon_sym_when, anon_sym_in, - [363174] = 12, + [365022] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, + ACTIONS(8009), 1, sym__constant_segment, - ACTIONS(8040), 1, + ACTIONS(8011), 1, anon_sym_COLON_COLON, - ACTIONS(9937), 1, + ACTIONS(10000), 1, aux_sym_integer_token2, - ACTIONS(9939), 1, + ACTIONS(10002), 1, anon_sym_sizeof, - ACTIONS(9941), 1, + ACTIONS(10004), 1, anon_sym_instance_sizeof, - ACTIONS(9943), 1, + ACTIONS(10006), 1, anon_sym_offsetof, - STATE(7954), 1, + STATE(7982), 1, sym_heredoc_body, - STATE(11123), 1, + STATE(10705), 1, sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, + ACTIONS(10008), 2, sym_unary_plus, sym_unary_minus, - STATE(11636), 5, + STATE(10704), 5, sym_integer, sym_sizeof, sym_instance_sizeof, sym_offsetof, sym_constant, - [363217] = 4, + [365065] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7955), 1, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(10010), 1, + anon_sym_DASH_GT, + STATE(7983), 1, sym_heredoc_body, + STATE(9994), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9987), 14, + ACTIONS(4785), 11, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_end, - anon_sym_elsif, + anon_sym_forall, anon_sym_else, - anon_sym_when, - anon_sym_in, - [363244] = 4, + [365098] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7956), 1, + STATE(7984), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9989), 14, + ACTIONS(9998), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635916,46 +641996,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [363271] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7957), 1, - sym_heredoc_body, - STATE(11406), 1, - sym__numeric_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [363314] = 4, + [365125] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7958), 1, + STATE(7985), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9991), 14, + ACTIONS(10012), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -635970,79 +642019,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [363341] = 12, + [365152] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7959), 1, + STATE(7986), 1, sym_heredoc_body, - STATE(11671), 1, - sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [363384] = 14, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9856), 1, - sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(9862), 1, - anon_sym_STAR, - ACTIONS(9864), 1, - anon_sym_AMP, - ACTIONS(9866), 1, - anon_sym_STAR_STAR, - ACTIONS(9993), 1, + ACTIONS(10014), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, anon_sym_RPAREN, - STATE(7960), 1, - sym_heredoc_body, - STATE(8481), 1, - aux_sym_param_repeat1, - STATE(9058), 1, - sym_annotation, - STATE(11608), 1, - sym_block_param, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - STATE(10470), 3, - sym_param, - sym_splat_param, - sym_double_splat_param, - [363431] = 4, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [365179] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7961), 1, + STATE(7987), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9995), 14, + ACTIONS(10016), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636057,15 +642065,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [363458] = 4, + [365206] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7962), 1, + STATE(7988), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9997), 14, + ACTIONS(10018), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636080,15 +642088,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [363485] = 4, + [365233] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7963), 1, + STATE(7989), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9999), 14, + ACTIONS(10020), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636103,15 +642111,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [363512] = 4, + [365260] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7964), 1, + STATE(7990), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10001), 14, + ACTIONS(10022), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636126,15 +642134,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [363539] = 4, + [365287] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7965), 1, + STATE(7991), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10003), 14, + ACTIONS(10024), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636149,46 +642157,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [363566] = 12, + [365314] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7966), 1, + ACTIONS(9950), 1, + anon_sym_forall, + ACTIONS(10026), 1, + aux_sym__base_method_def_token1, + STATE(7992), 1, sym_heredoc_body, - STATE(11100), 1, - sym__numeric_type, + STATE(8146), 1, + sym_forall, + STATE(8211), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [363609] = 4, + ACTIONS(9944), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4756), 8, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + anon_sym_else, + [365351] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7967), 1, + STATE(7993), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10005), 14, + ACTIONS(10028), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636203,46 +642208,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [363636] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7968), 1, - sym_heredoc_body, - STATE(10599), 1, - sym__numeric_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [363679] = 4, + [365378] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7969), 1, + STATE(7994), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10007), 14, + ACTIONS(10030), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636257,39 +642231,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [363706] = 5, + [365405] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10009), 1, - anon_sym_COLON_COLON, + STATE(7995), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(7970), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4563), 12, + ACTIONS(10032), 14, sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_then, - [363735] = 4, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [365432] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7971), 1, + STATE(7996), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10012), 14, + ACTIONS(10034), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636304,23 +642277,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [363762] = 8, + [365459] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9876), 1, + ACTIONS(9930), 1, sym__modifier_if_keyword, - ACTIONS(9878), 1, + ACTIONS(9932), 1, sym__modifier_unless_keyword, - ACTIONS(9880), 1, + ACTIONS(9934), 1, sym__modifier_rescue_keyword, - ACTIONS(9882), 1, + ACTIONS(9936), 1, sym__modifier_ensure_keyword, - STATE(7972), 1, + STATE(7997), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10014), 10, + ACTIONS(10036), 10, sym__line_break, ts_builtin_sym_end, anon_sym_SEMI, @@ -636331,15 +642304,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [363797] = 4, + [365494] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7973), 1, + STATE(7998), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6790), 14, + ACTIONS(10038), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636354,46 +642327,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [363824] = 12, + [365521] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7974), 1, + STATE(7999), 1, sym_heredoc_body, - STATE(11218), 1, - sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [363867] = 4, + ACTIONS(10040), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [365548] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7975), 1, + STATE(8000), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10016), 14, + ACTIONS(10042), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636408,15 +642373,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [363894] = 4, + [365575] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7976), 1, + STATE(8001), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10018), 14, + ACTIONS(10044), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636431,46 +642396,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [363921] = 12, + [365602] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7977), 1, + STATE(8002), 1, sym_heredoc_body, - STATE(11505), 1, - sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [363964] = 4, + ACTIONS(10028), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [365629] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7978), 1, + STATE(8003), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10020), 14, + ACTIONS(10030), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636485,46 +642442,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [363991] = 12, + [365656] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7979), 1, + STATE(8004), 1, sym_heredoc_body, - STATE(11803), 1, - sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [364034] = 4, + ACTIONS(10032), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [365683] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7980), 1, + STATE(8005), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9959), 14, + ACTIONS(10034), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636539,46 +642488,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364061] = 12, + [365710] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7981), 1, + ACTIONS(9950), 1, + anon_sym_forall, + ACTIONS(10046), 1, + aux_sym__base_method_def_token1, + STATE(8006), 1, sym_heredoc_body, - STATE(10528), 1, - sym__numeric_type, + STATE(8162), 1, + sym_forall, + STATE(8344), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [364104] = 4, + ACTIONS(9944), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4736), 8, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + anon_sym_else, + [365747] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7982), 1, + STATE(8007), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9961), 14, + ACTIONS(10048), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636593,15 +642539,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364131] = 4, + [365774] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7983), 1, + STATE(8008), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9965), 14, + ACTIONS(10050), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636616,15 +642562,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364158] = 4, + [365801] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7984), 1, + STATE(8009), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9967), 14, + ACTIONS(10052), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636639,15 +642585,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364185] = 4, + [365828] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7985), 1, + STATE(8010), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10022), 14, + ACTIONS(10054), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636662,71 +642608,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364212] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10024), 1, - anon_sym_COLON_COLON, - STATE(7970), 1, - aux_sym_constant_repeat1, - STATE(7986), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4559), 12, - sym__line_break, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_then, - [364243] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7987), 1, - sym_heredoc_body, - STATE(10598), 1, - sym__numeric_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [364286] = 4, + [365855] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7988), 1, + STATE(8011), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10026), 14, + ACTIONS(10056), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636741,108 +642631,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364313] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7989), 1, - sym_heredoc_body, - STATE(10679), 1, - sym__numeric_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [364356] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7990), 1, - sym_heredoc_body, - STATE(10722), 1, - sym__numeric_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [364399] = 12, + [365882] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7991), 1, + ACTIONS(9950), 1, + anon_sym_forall, + ACTIONS(10058), 1, + aux_sym__base_method_def_token1, + STATE(8012), 1, sym_heredoc_body, - STATE(10773), 1, - sym__numeric_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [364442] = 4, + STATE(8181), 1, + sym_forall, + STATE(8217), 1, + sym__terminator, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9944), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4750), 8, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + anon_sym_else, + [365919] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7992), 1, + STATE(8013), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10028), 14, + ACTIONS(10060), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636857,108 +642682,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364469] = 12, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7993), 1, - sym_heredoc_body, - STATE(10837), 1, - sym__numeric_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [364512] = 12, + [365946] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(9939), 1, - anon_sym_sizeof, - ACTIONS(9941), 1, - anon_sym_instance_sizeof, - ACTIONS(9943), 1, - anon_sym_offsetof, - STATE(7994), 1, + STATE(8014), 1, sym_heredoc_body, - STATE(10898), 1, - sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - STATE(11636), 5, - sym_integer, - sym_sizeof, - sym_instance_sizeof, - sym_offsetof, - sym_constant, - [364555] = 12, + ACTIONS(10062), 14, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [365973] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, + ACTIONS(8009), 1, sym__constant_segment, - ACTIONS(8040), 1, + ACTIONS(8011), 1, anon_sym_COLON_COLON, - ACTIONS(9937), 1, + ACTIONS(10000), 1, aux_sym_integer_token2, - ACTIONS(9939), 1, + ACTIONS(10002), 1, anon_sym_sizeof, - ACTIONS(9941), 1, + ACTIONS(10004), 1, anon_sym_instance_sizeof, - ACTIONS(9943), 1, + ACTIONS(10006), 1, anon_sym_offsetof, - STATE(7995), 1, + STATE(8015), 1, sym_heredoc_body, - STATE(10965), 1, + STATE(10617), 1, sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, + ACTIONS(10008), 2, sym_unary_plus, sym_unary_minus, - STATE(11636), 5, + STATE(10704), 5, sym_integer, sym_sizeof, sym_instance_sizeof, sym_offsetof, sym_constant, - [364598] = 4, + [366016] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7996), 1, + STATE(8016), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10030), 14, + ACTIONS(10064), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636973,15 +642759,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364625] = 4, + [366043] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7997), 1, + STATE(8017), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4951), 14, + ACTIONS(10066), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -636996,38 +642782,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364652] = 4, + [366070] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7998), 1, + ACTIONS(9950), 1, + anon_sym_forall, + ACTIONS(10068), 1, + aux_sym__base_method_def_token1, + STATE(8018), 1, sym_heredoc_body, + STATE(8151), 1, + sym_forall, + STATE(8240), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10032), 14, + ACTIONS(9944), 2, sym__line_break, + anon_sym_SEMI, + ACTIONS(4762), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_end, - anon_sym_elsif, anon_sym_else, - anon_sym_when, - anon_sym_in, - [364679] = 4, + [366107] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(7999), 1, + STATE(8019), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10034), 14, + ACTIONS(10070), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637042,15 +642833,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364706] = 4, + [366134] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8000), 1, + STATE(8020), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10036), 14, + ACTIONS(10072), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637065,15 +642856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364733] = 4, + [366161] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8001), 1, + STATE(8021), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10038), 14, + ACTIONS(10074), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637088,15 +642879,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364760] = 4, + [366188] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8002), 1, + STATE(8022), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10040), 14, + ACTIONS(10076), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637111,15 +642902,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364787] = 4, + [366215] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8003), 1, + STATE(8023), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10042), 14, + ACTIONS(10078), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637134,15 +642925,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364814] = 4, + [366242] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8004), 1, + STATE(8024), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10044), 14, + ACTIONS(10080), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637157,15 +642948,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364841] = 4, + [366269] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8005), 1, + STATE(8025), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10046), 14, + ACTIONS(10082), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637180,38 +642971,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364868] = 4, + [366296] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8006), 1, + ACTIONS(10084), 1, + anon_sym_COLON_COLON, + STATE(8026), 1, sym_heredoc_body, + STATE(8032), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10048), 14, + ACTIONS(4586), 12, sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [364895] = 4, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_then, + [366327] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8007), 1, + STATE(8027), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10050), 14, + ACTIONS(10052), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637226,15 +643019,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364922] = 4, + [366354] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8008), 1, + STATE(8028), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10052), 14, + ACTIONS(10056), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637249,15 +643042,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364949] = 4, + [366381] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8009), 1, + STATE(8029), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10054), 14, + ACTIONS(4900), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637272,15 +643065,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [364976] = 4, + [366408] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8010), 1, + STATE(8030), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10056), 14, + ACTIONS(6840), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637295,15 +643088,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365003] = 4, + [366435] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8011), 1, + STATE(8031), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10058), 14, + ACTIONS(4984), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637318,75 +643111,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365030] = 4, + [366462] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8012), 1, + ACTIONS(10084), 1, + anon_sym_COLON_COLON, + STATE(8032), 1, sym_heredoc_body, + STATE(8037), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10060), 14, + ACTIONS(4596), 12, sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [365057] = 14, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9856), 1, - sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(9862), 1, anon_sym_STAR, - ACTIONS(9864), 1, - anon_sym_AMP, - ACTIONS(9866), 1, - anon_sym_STAR_STAR, - ACTIONS(10062), 1, - anon_sym_RPAREN, - STATE(8013), 1, - sym_heredoc_body, - STATE(8481), 1, - aux_sym_param_repeat1, - STATE(9058), 1, - sym_annotation, - STATE(11052), 1, - sym_block_param, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - STATE(10470), 3, - sym_param, - sym_splat_param, - sym_double_splat_param, - [365104] = 6, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_then, + [366493] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10024), 1, + ACTIONS(10084), 1, anon_sym_COLON_COLON, - STATE(8014), 1, + STATE(8033), 1, sym_heredoc_body, - STATE(8036), 1, + STATE(8038), 1, aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4549), 12, + ACTIONS(4596), 12, sym__line_break, anon_sym_SEMI, anon_sym_LBRACK, @@ -637399,15 +643161,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_then, - [365135] = 4, + [366524] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8015), 1, + STATE(8034), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10064), 14, + ACTIONS(4800), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637422,15 +643184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365162] = 4, + [366551] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8016), 1, + STATE(8035), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4919), 14, + ACTIONS(10086), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637445,15 +643207,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365189] = 4, + [366578] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8017), 1, + STATE(8036), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10066), 14, + ACTIONS(10088), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637468,15 +643230,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365216] = 4, + [366605] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8018), 1, + ACTIONS(10090), 1, + anon_sym_COLON_COLON, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(8037), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4600), 12, + sym__line_break, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_then, + [366634] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10084), 1, + anon_sym_COLON_COLON, + STATE(8037), 1, + aux_sym_constant_repeat1, + STATE(8038), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4592), 12, + sym__line_break, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_end, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_then, + [366665] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8039), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9929), 14, + ACTIONS(10093), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637491,15 +643302,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365243] = 4, + [366692] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8019), 1, + STATE(8040), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10068), 14, + ACTIONS(10095), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637514,15 +643325,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365270] = 4, + [366719] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8020), 1, + STATE(8041), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10003), 14, + ACTIONS(10097), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637537,15 +643348,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365297] = 4, + [366746] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8021), 1, + STATE(8042), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4867), 14, + ACTIONS(10099), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637560,15 +643371,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365324] = 4, + [366773] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8022), 1, + STATE(8043), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4895), 14, + ACTIONS(10101), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637583,15 +643394,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365351] = 4, + [366800] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8023), 1, + STATE(8044), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4927), 14, + ACTIONS(10103), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637606,15 +643417,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365378] = 4, + [366827] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8024), 1, + STATE(8045), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10070), 14, + ACTIONS(10105), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637629,15 +643440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365405] = 4, + [366854] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8025), 1, + STATE(8046), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10072), 14, + ACTIONS(10107), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637652,15 +643463,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365432] = 4, + [366881] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8026), 1, + STATE(8047), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4939), 14, + ACTIONS(10109), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637675,15 +643486,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365459] = 4, + [366908] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8027), 1, + STATE(8048), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4863), 14, + ACTIONS(10111), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637698,15 +643509,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365486] = 4, + [366935] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8028), 1, + STATE(8049), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10074), 14, + ACTIONS(10113), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637721,15 +643532,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365513] = 4, + [366962] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8029), 1, + STATE(8050), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10040), 14, + ACTIONS(4908), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637744,15 +643555,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365540] = 4, + [366989] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8030), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8051), 1, sym_heredoc_body, + STATE(11276), 1, + sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10042), 14, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [367032] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8052), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10115), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637767,15 +643609,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365567] = 4, + [367059] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8031), 1, + STATE(8053), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10044), 14, + ACTIONS(10117), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637790,15 +643632,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365594] = 4, + [367086] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8032), 1, + STATE(8054), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5534), 14, + ACTIONS(10119), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637813,15 +643655,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365621] = 4, + [367113] = 14, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8033), 1, + ACTIONS(9908), 1, + sym_identifier, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(9914), 1, + anon_sym_STAR, + ACTIONS(9916), 1, + anon_sym_AMP, + ACTIONS(9918), 1, + anon_sym_STAR_STAR, + ACTIONS(10121), 1, + anon_sym_RPAREN, + STATE(8055), 1, + sym_heredoc_body, + STATE(8471), 1, + aux_sym_param_repeat1, + STATE(9074), 1, + sym_annotation, + STATE(10916), 1, + sym_block_param, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + STATE(10469), 3, + sym_param, + sym_splat_param, + sym_double_splat_param, + [367160] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8056), 1, + sym_heredoc_body, + STATE(11642), 1, + sym__numeric_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [367203] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8057), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10046), 14, + ACTIONS(10105), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637836,15 +643742,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365648] = 4, + [367230] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8034), 1, + STATE(8058), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4875), 14, + ACTIONS(10107), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637859,15 +643765,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365675] = 4, + [367257] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8035), 1, + STATE(8059), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4879), 14, + ACTIONS(10109), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637882,40 +643788,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365702] = 6, + [367284] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10024), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, anon_sym_COLON_COLON, - STATE(7970), 1, - aux_sym_constant_repeat1, - STATE(8036), 1, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8060), 1, sym_heredoc_body, + STATE(12053), 1, + sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4555), 12, - sym__line_break, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_then, - [365733] = 4, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [367327] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8037), 1, + STATE(8061), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4883), 14, + ACTIONS(10111), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637930,15 +643842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365760] = 4, + [367354] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8038), 1, + STATE(8062), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10076), 14, + ACTIONS(9962), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637953,15 +643865,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365787] = 4, + [367381] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8039), 1, + STATE(8063), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4771), 14, + ACTIONS(10113), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -637976,61 +643888,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365814] = 4, + [367408] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8040), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8064), 1, sym_heredoc_body, + STATE(11007), 1, + sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4887), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [365841] = 4, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [367451] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8041), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8065), 1, sym_heredoc_body, + STATE(11265), 1, + sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10078), 14, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__modifier_ensure_keyword, - ts_builtin_sym_end, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_elsif, - anon_sym_else, - anon_sym_when, - anon_sym_in, - [365868] = 4, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [367494] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8042), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8066), 1, + sym_heredoc_body, + STATE(10783), 1, + sym__numeric_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [367537] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8067), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4899), 14, + ACTIONS(9958), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638045,15 +644004,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365895] = 4, + [367564] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8043), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8068), 1, sym_heredoc_body, + STATE(11420), 1, + sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10048), 14, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [367607] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8069), 1, + sym_heredoc_body, + STATE(10741), 1, + sym__numeric_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [367650] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8070), 1, + sym_heredoc_body, + STATE(11110), 1, + sym__numeric_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [367693] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8071), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4924), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638068,15 +644120,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365922] = 4, + [367720] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8044), 1, + STATE(8072), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10080), 14, + ACTIONS(9926), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638091,15 +644143,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365949] = 4, + [367747] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8045), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8073), 1, sym_heredoc_body, + STATE(11650), 1, + sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10050), 14, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [367790] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8074), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4936), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638114,15 +644197,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [365976] = 4, + [367817] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8046), 1, + STATE(8075), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4907), 14, + ACTIONS(4976), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638137,15 +644220,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [366003] = 4, + [367844] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8047), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8076), 1, + sym_heredoc_body, + STATE(11709), 1, + sym__numeric_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [367887] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8077), 1, + sym_heredoc_body, + STATE(10837), 1, + sym__numeric_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [367930] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8078), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4911), 14, + ACTIONS(5557), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638160,46 +644305,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [366030] = 12, + [367957] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, + ACTIONS(8009), 1, sym__constant_segment, - ACTIONS(8040), 1, + ACTIONS(8011), 1, anon_sym_COLON_COLON, - ACTIONS(9937), 1, + ACTIONS(10000), 1, aux_sym_integer_token2, - ACTIONS(9939), 1, + ACTIONS(10002), 1, anon_sym_sizeof, - ACTIONS(9941), 1, + ACTIONS(10004), 1, anon_sym_instance_sizeof, - ACTIONS(9943), 1, + ACTIONS(10006), 1, anon_sym_offsetof, - STATE(8048), 1, + STATE(8079), 1, sym_heredoc_body, - STATE(10974), 1, + STATE(11404), 1, sym__numeric_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, + ACTIONS(10008), 2, sym_unary_plus, sym_unary_minus, - STATE(11636), 5, + STATE(10704), 5, sym_integer, sym_sizeof, sym_instance_sizeof, sym_offsetof, sym_constant, - [366073] = 4, + [368000] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8049), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8080), 1, + sym_heredoc_body, + STATE(11786), 1, + sym__numeric_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [368043] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8081), 1, + sym_heredoc_body, + STATE(10613), 1, + sym__numeric_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [368086] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8082), 1, + sym_heredoc_body, + STATE(10715), 1, + sym__numeric_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [368129] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8083), 1, + sym_heredoc_body, + STATE(10787), 1, + sym__numeric_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [368172] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8084), 1, + sym_heredoc_body, + STATE(10839), 1, + sym__numeric_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [368215] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8085), 1, + sym_heredoc_body, + STATE(10881), 1, + sym__numeric_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [368258] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8086), 1, + sym_heredoc_body, + STATE(10936), 1, + sym__numeric_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [368301] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8087), 1, + sym_heredoc_body, + STATE(10973), 1, + sym__numeric_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [368344] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8088), 1, + sym_heredoc_body, + STATE(11021), 1, + sym__numeric_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [368387] = 12, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(10002), 1, + anon_sym_sizeof, + ACTIONS(10004), 1, + anon_sym_instance_sizeof, + ACTIONS(10006), 1, + anon_sym_offsetof, + STATE(8089), 1, + sym_heredoc_body, + STATE(11067), 1, + sym__numeric_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + STATE(10704), 5, + sym_integer, + sym_sizeof, + sym_instance_sizeof, + sym_offsetof, + sym_constant, + [368430] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8090), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9933), 14, + ACTIONS(10123), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638214,15 +644669,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [366100] = 4, + [368457] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8050), 1, + STATE(8091), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4923), 14, + ACTIONS(10125), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638237,15 +644692,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [366127] = 4, + [368484] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8051), 1, + STATE(8092), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4931), 14, + ACTIONS(5572), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638260,15 +644715,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [366154] = 4, + [368511] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8052), 1, + STATE(8093), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4935), 14, + ACTIONS(10127), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638283,15 +644738,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [366181] = 4, + [368538] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8053), 1, + STATE(8094), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10082), 14, + ACTIONS(10129), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638306,15 +644761,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [366208] = 4, + [368565] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8054), 1, + STATE(8095), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 14, + ACTIONS(10131), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638329,15 +644784,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [366235] = 4, + [368592] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8055), 1, + STATE(8096), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5518), 14, + ACTIONS(10133), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638352,15 +644807,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [366262] = 4, + [368619] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8056), 1, + STATE(8097), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9854), 14, + ACTIONS(10135), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638375,15 +644830,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [366289] = 4, + [368646] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8057), 1, + STATE(8098), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10084), 14, + ACTIONS(10137), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638398,15 +644853,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [366316] = 4, + [368673] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8058), 1, + ACTIONS(9930), 1, + sym__modifier_if_keyword, + ACTIONS(9932), 1, + sym__modifier_unless_keyword, + ACTIONS(9934), 1, + sym__modifier_rescue_keyword, + ACTIONS(9936), 1, + sym__modifier_ensure_keyword, + STATE(8099), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10086), 14, + ACTIONS(10139), 10, + sym__line_break, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [368708] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8100), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4988), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638421,41 +644903,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [366343] = 7, + [368735] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(10088), 1, - anon_sym_DASH_GT, - STATE(8059), 1, + STATE(8101), 1, sym_heredoc_body, - STATE(9792), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4745), 11, + ACTIONS(4952), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + ts_builtin_sym_end, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, - anon_sym_forall, + anon_sym_elsif, anon_sym_else, - [366376] = 4, + anon_sym_when, + anon_sym_in, + [368762] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8060), 1, + STATE(8102), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10084), 14, + ACTIONS(4960), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638470,43 +644949,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [366403] = 9, + [368789] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9896), 1, - anon_sym_forall, - ACTIONS(10090), 1, - aux_sym__base_method_def_token1, - STATE(8061), 1, + STATE(8103), 1, sym_heredoc_body, - STATE(8138), 1, - sym_forall, - STATE(8158), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(4980), 14, sym__line_break, - anon_sym_SEMI, - ACTIONS(4689), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + ts_builtin_sym_end, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_end, + anon_sym_elsif, anon_sym_else, - [366440] = 4, + anon_sym_when, + anon_sym_in, + [368816] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8062), 1, + STATE(8104), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9981), 14, + ACTIONS(4904), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638521,15 +644995,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [366467] = 4, + [368843] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8063), 1, + STATE(8105), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9949), 14, + ACTIONS(4912), 14, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638544,123 +645018,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_when, anon_sym_in, - [366494] = 6, + [368870] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10024), 1, - anon_sym_COLON_COLON, - STATE(7986), 1, - aux_sym_constant_repeat1, - STATE(8064), 1, + ACTIONS(9930), 1, + sym__modifier_if_keyword, + ACTIONS(9932), 1, + sym__modifier_unless_keyword, + ACTIONS(9934), 1, + sym__modifier_rescue_keyword, + ACTIONS(9936), 1, + sym__modifier_ensure_keyword, + STATE(2045), 1, + sym__terminator, + STATE(8106), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4555), 12, + ACTIONS(7796), 2, sym__line_break, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, + ACTIONS(1827), 7, + ts_builtin_sym_end, + anon_sym_RBRACE, anon_sym_end, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_then, - [366525] = 8, + anon_sym_elsif, + anon_sym_else, + anon_sym_when, + anon_sym_in, + [368909] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9896), 1, + ACTIONS(10143), 1, + anon_sym_LPAREN, + ACTIONS(10145), 1, + aux_sym__base_method_def_token1, + ACTIONS(10147), 1, anon_sym_forall, - STATE(8065), 1, + STATE(8107), 1, sym_heredoc_body, - STATE(8119), 1, + STATE(8469), 1, sym_forall, - STATE(8172), 1, + STATE(8701), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(10141), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4731), 8, + ACTIONS(4728), 6, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_end, - anon_sym_else, - [366559] = 8, + [368947] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9896), 1, - anon_sym_forall, - STATE(8066), 1, + ACTIONS(3399), 1, + anon_sym_DOT, + ACTIONS(3403), 1, + sym_implicit_object_ivar, + ACTIONS(9355), 1, + sym__constant_segment, + ACTIONS(9357), 1, + anon_sym_COLON_COLON, + STATE(8108), 1, sym_heredoc_body, - STATE(8120), 1, - sym_forall, - STATE(8198), 1, - sym__terminator, + STATE(8993), 1, + sym_constant, + STATE(9500), 1, + sym_implicit_object_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(4761), 8, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_end, - anon_sym_else, - [366593] = 4, + ACTIONS(3401), 2, + sym_implicit_object_method_identifier, + sym_implicit_object_method_operator, + STATE(9204), 2, + sym_generic_instance_type, + sym_implicit_object_call, + ACTIONS(10149), 3, + sym_nil, + sym_true, + sym_false, + [368989] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8067), 1, + ACTIONS(10151), 1, + anon_sym_COLON_COLON, + STATE(8109), 1, sym_heredoc_body, + STATE(8113), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4563), 13, - sym__line_break, - anon_sym_SEMI, + ACTIONS(4596), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DASH_GT, - anon_sym_end, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, + anon_sym_LPAREN2, + anon_sym_QMARK, + [369019] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10151), 1, anon_sym_COLON_COLON, + STATE(8110), 1, + sym_heredoc_body, + STATE(8114), 1, + aux_sym_constant_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4596), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_then, - [366619] = 8, + [369049] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9896), 1, + ACTIONS(9950), 1, anon_sym_forall, - STATE(8068), 1, + STATE(8111), 1, sym_heredoc_body, - STATE(8113), 1, + STATE(8166), 1, sym_forall, - STATE(8270), 1, + STATE(8249), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(9944), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4735), 8, + ACTIONS(4775), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, @@ -638669,24 +645179,24 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_end, anon_sym_else, - [366653] = 8, + [369083] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9896), 1, + ACTIONS(9950), 1, anon_sym_forall, - STATE(8069), 1, + STATE(8112), 1, sym_heredoc_body, - STATE(8111), 1, + STATE(8152), 1, sym_forall, - STATE(8190), 1, + STATE(8260), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(9944), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4754), 8, + ACTIONS(4781), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, @@ -638695,19 +645205,18 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_end, anon_sym_else, - [366687] = 6, + [369117] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10092), 1, + ACTIONS(10153), 1, anon_sym_COLON_COLON, - STATE(8070), 1, - sym_heredoc_body, - STATE(8078), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4555), 11, + STATE(8113), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4600), 11, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, @@ -638719,45 +645228,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_LPAREN2, anon_sym_QMARK, - [366717] = 12, + [369145] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3382), 1, - anon_sym_DOT, - ACTIONS(3386), 1, - sym_implicit_object_ivar, - ACTIONS(9303), 1, - sym__constant_segment, - ACTIONS(9305), 1, + ACTIONS(10151), 1, anon_sym_COLON_COLON, - STATE(8071), 1, + STATE(8113), 1, + aux_sym_constant_repeat1, + STATE(8114), 1, sym_heredoc_body, - STATE(9204), 1, - sym_constant, - STATE(9412), 1, - sym_implicit_object_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(3384), 2, - sym_implicit_object_method_identifier, - sym_implicit_object_method_operator, - STATE(9324), 2, - sym_generic_instance_type, - sym_implicit_object_call, - ACTIONS(10094), 3, - sym_nil, - sym_true, - sym_false, - [366759] = 4, + ACTIONS(4592), 11, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_LPAREN2, + anon_sym_QMARK, + [369175] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8072), 1, + STATE(8115), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4303), 13, + ACTIONS(4640), 13, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638766,72 +645269,46 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_end, - aux_sym__base_method_def_token1, anon_sym_forall, anon_sym_else, - [366785] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10092), 1, - anon_sym_COLON_COLON, - STATE(8070), 1, - aux_sym_constant_repeat1, - STATE(8073), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4549), 11, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_LPAREN2, - anon_sym_QMARK, - [366815] = 10, + [369201] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10098), 1, - anon_sym_LPAREN, - ACTIONS(10100), 1, - aux_sym__base_method_def_token1, - ACTIONS(10102), 1, + ACTIONS(9950), 1, anon_sym_forall, - STATE(8074), 1, + STATE(8116), 1, sym_heredoc_body, - STATE(8405), 1, + STATE(8147), 1, sym_forall, - STATE(8682), 1, + STATE(8222), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, + ACTIONS(9944), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4711), 6, + ACTIONS(4794), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_end, - [366853] = 4, + anon_sym_else, + [369235] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8075), 1, + STATE(8117), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4595), 13, + ACTIONS(4344), 13, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -638840,101 +645317,156 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_LPAREN, anon_sym_end, + aux_sym__base_method_def_token1, anon_sym_forall, anon_sym_else, - [366879] = 6, + [369261] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10092), 1, - anon_sym_COLON_COLON, - STATE(8076), 1, + ACTIONS(10147), 1, + anon_sym_forall, + ACTIONS(10156), 1, + anon_sym_LPAREN, + ACTIONS(10158), 1, + aux_sym__base_method_def_token1, + STATE(8118), 1, sym_heredoc_body, - STATE(8079), 1, - aux_sym_constant_repeat1, + STATE(8438), 1, + sym_forall, + STATE(8577), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4555), 11, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(10141), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4744), 6, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + [369299] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8119), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4600), 13, + sym__line_break, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DASH_GT, + anon_sym_end, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_LPAREN2, anon_sym_QMARK, - [366909] = 12, + anon_sym_then, + [369325] = 12, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3382), 1, + ACTIONS(3399), 1, anon_sym_DOT, - ACTIONS(3386), 1, + ACTIONS(3403), 1, sym_implicit_object_ivar, - ACTIONS(9303), 1, + ACTIONS(9355), 1, sym__constant_segment, - ACTIONS(9305), 1, + ACTIONS(9357), 1, anon_sym_COLON_COLON, - STATE(8077), 1, + STATE(8120), 1, sym_heredoc_body, - STATE(8923), 1, + STATE(9297), 1, sym_constant, - STATE(9412), 1, + STATE(9500), 1, sym_implicit_object_index_operator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(3384), 2, + ACTIONS(3401), 2, sym_implicit_object_method_identifier, sym_implicit_object_method_operator, - STATE(9114), 2, + STATE(9657), 2, sym_generic_instance_type, sym_implicit_object_call, - ACTIONS(10104), 3, + ACTIONS(10160), 3, sym_nil, sym_true, sym_false, - [366951] = 5, + [369367] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10106), 1, - anon_sym_COLON_COLON, + ACTIONS(9950), 1, + anon_sym_forall, + STATE(8121), 1, + sym_heredoc_body, + STATE(8179), 1, + sym_forall, + STATE(8194), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8078), 2, + ACTIONS(9944), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4810), 8, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + anon_sym_else, + [369401] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9950), 1, + anon_sym_forall, + STATE(8122), 1, sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4563), 11, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_LPAREN2, - anon_sym_QMARK, - [366979] = 6, + STATE(8150), 1, + sym_forall, + STATE(8220), 1, + sym__terminator, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9944), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4771), 8, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + anon_sym_else, + [369435] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10092), 1, + ACTIONS(10151), 1, anon_sym_COLON_COLON, - STATE(8078), 1, + STATE(8109), 1, aux_sym_constant_repeat1, - STATE(8079), 1, + STATE(8123), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4559), 11, + ACTIONS(4586), 11, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, @@ -638946,24 +645478,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_LPAREN2, anon_sym_QMARK, - [367009] = 8, + [369465] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9896), 1, + ACTIONS(9950), 1, anon_sym_forall, - STATE(8080), 1, + STATE(8124), 1, sym_heredoc_body, - STATE(8112), 1, + STATE(8149), 1, sym_forall, - STATE(8166), 1, + STATE(8230), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(9944), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4739), 8, + ACTIONS(4806), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, @@ -638972,76 +645504,65 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_end, anon_sym_else, - [367043] = 10, + [369499] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10102), 1, - anon_sym_forall, - ACTIONS(10109), 1, - anon_sym_LPAREN, - ACTIONS(10111), 1, - aux_sym__base_method_def_token1, - STATE(8081), 1, + ACTIONS(10162), 1, + anon_sym_COLON_COLON, + STATE(8125), 1, sym_heredoc_body, - STATE(8377), 1, - sym_forall, - STATE(8803), 1, - sym__terminator, + STATE(8142), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(4719), 6, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_end, - [367081] = 8, + ACTIONS(4586), 10, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_do, + [369528] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9896), 1, - anon_sym_forall, - STATE(8082), 1, + ACTIONS(10164), 1, + anon_sym_COMMA, + STATE(8126), 1, sym_heredoc_body, - STATE(8123), 1, - sym_forall, - STATE(8283), 1, - sym__terminator, + STATE(8138), 1, + aux_sym_forall_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(4821), 10, sym__line_break, - anon_sym_SEMI, - ACTIONS(4769), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, anon_sym_else, - [367115] = 7, + [369557] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10092), 1, + ACTIONS(10166), 1, anon_sym_COLON_COLON, - ACTIONS(10113), 1, - anon_sym_COLON, - STATE(8070), 1, - aux_sym_constant_repeat1, - STATE(8083), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4549), 9, - anon_sym_RPAREN, + STATE(8127), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4600), 10, + sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, @@ -639050,19 +645571,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_LPAREN2, anon_sym_QMARK, - [367146] = 6, + anon_sym_do, + [369584] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10115), 1, + ACTIONS(10169), 1, anon_sym_COLON_COLON, - STATE(8084), 1, + STATE(8128), 1, sym_heredoc_body, - STATE(8085), 1, + STATE(8129), 1, aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4549), 10, + ACTIONS(4586), 10, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COMMA, @@ -639073,19 +645595,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LPAREN2, anon_sym_QMARK, - [367175] = 6, + [369613] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10115), 1, + ACTIONS(10169), 1, anon_sym_COLON_COLON, - STATE(8085), 1, + STATE(8129), 1, sym_heredoc_body, - STATE(8095), 1, + STATE(8131), 1, aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4555), 10, + ACTIONS(4596), 10, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COMMA, @@ -639096,43 +645618,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LPAREN2, anon_sym_QMARK, - [367204] = 7, + [369642] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(10117), 1, - anon_sym_DASH_GT, - STATE(8086), 1, + ACTIONS(10169), 1, + anon_sym_COLON_COLON, + STATE(8130), 1, sym_heredoc_body, - STATE(10247), 1, - aux_sym_proc_type_repeat1, + STATE(8133), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4745), 9, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_forall, - [367235] = 6, + ACTIONS(4596), 10, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN2, + anon_sym_QMARK, + [369671] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10115), 1, + ACTIONS(10171), 1, anon_sym_COLON_COLON, - STATE(8087), 1, - sym_heredoc_body, - STATE(8102), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4555), 10, + STATE(8131), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4600), 10, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COMMA, @@ -639143,135 +645663,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_LPAREN2, anon_sym_QMARK, - [367264] = 9, + [369698] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10102), 1, + ACTIONS(10147), 1, anon_sym_forall, - ACTIONS(10119), 1, + ACTIONS(10174), 1, aux_sym__base_method_def_token1, - STATE(8088), 1, + STATE(8132), 1, sym_heredoc_body, - STATE(8326), 1, + STATE(8487), 1, sym_forall, - STATE(8776), 1, + STATE(8765), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, + ACTIONS(10141), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4689), 6, + ACTIONS(4736), 6, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_end, - [367299] = 6, + [369733] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10121), 1, + ACTIONS(10169), 1, + anon_sym_COLON_COLON, + STATE(8131), 1, + aux_sym_constant_repeat1, + STATE(8133), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4592), 10, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_COMMA, - STATE(8089), 1, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_LPAREN2, + anon_sym_QMARK, + [369762] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10162), 1, + anon_sym_COLON_COLON, + STATE(8134), 1, sym_heredoc_body, - STATE(8090), 1, - aux_sym_forall_repeat1, + STATE(8139), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4790), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [367328] = 6, + ACTIONS(4596), 10, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_LPAREN2, + anon_sym_QMARK, + anon_sym_do, + [369791] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10121), 1, + ACTIONS(4787), 1, anon_sym_COMMA, - STATE(8090), 1, + ACTIONS(10176), 1, + anon_sym_DASH_GT, + STATE(8135), 1, sym_heredoc_body, - STATE(8093), 1, - aux_sym_forall_repeat1, + STATE(10358), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4777), 10, + ACTIONS(4785), 9, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - anon_sym_else, - [367357] = 6, + anon_sym_forall, + [369822] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10123), 1, - anon_sym_COLON_COLON, - STATE(8091), 1, + STATE(8136), 1, sym_heredoc_body, - STATE(8097), 1, - aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4549), 10, - sym__start_of_brace_block, + ACTIONS(4600), 12, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, + anon_sym_COLON_COLON, anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_do, - [367386] = 5, + [369847] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10125), 1, - anon_sym_COLON_COLON, + ACTIONS(10147), 1, + anon_sym_forall, + ACTIONS(10178), 1, + aux_sym__base_method_def_token1, + STATE(8137), 1, + sym_heredoc_body, + STATE(8502), 1, + sym_forall, + STATE(8835), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8092), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4563), 10, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_LPAREN2, - anon_sym_QMARK, - anon_sym_do, - [367413] = 5, + ACTIONS(10141), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4762), 6, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + [369882] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10128), 1, + ACTIONS(10180), 1, anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8093), 2, + STATE(8138), 2, sym_heredoc_body, aux_sym_forall_repeat1, - ACTIONS(4783), 10, + ACTIONS(4814), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -639282,19 +645828,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [367440] = 6, + [369909] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10123), 1, + ACTIONS(10162), 1, anon_sym_COLON_COLON, - STATE(8092), 1, + STATE(8127), 1, aux_sym_constant_repeat1, - STATE(8094), 1, + STATE(8139), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4559), 10, + ACTIONS(4592), 10, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, @@ -639305,67 +645851,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_do, - [367469] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10131), 1, - anon_sym_COLON_COLON, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(8095), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4563), 10, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN2, - anon_sym_QMARK, - [367496] = 9, + [369938] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10102), 1, + ACTIONS(10147), 1, anon_sym_forall, - ACTIONS(10134), 1, + ACTIONS(10183), 1, aux_sym__base_method_def_token1, - STATE(8096), 1, + STATE(8140), 1, sym_heredoc_body, - STATE(8466), 1, + STATE(8467), 1, sym_forall, - STATE(8505), 1, + STATE(8688), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, + ACTIONS(10141), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4725), 6, + ACTIONS(4756), 6, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + [369973] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10164), 1, + anon_sym_COMMA, + STATE(8126), 1, + aux_sym_forall_repeat1, + STATE(8141), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4827), 10, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - [367531] = 6, + anon_sym_else, + [370002] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10123), 1, + ACTIONS(10162), 1, anon_sym_COLON_COLON, - STATE(8092), 1, + STATE(8127), 1, aux_sym_constant_repeat1, - STATE(8097), 1, + STATE(8142), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4555), 10, + ACTIONS(4596), 10, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, @@ -639376,20 +645923,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_do, - [367560] = 6, + [370031] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10123), 1, + ACTIONS(10151), 1, anon_sym_COLON_COLON, - STATE(8094), 1, + ACTIONS(10185), 1, + anon_sym_COLON, + STATE(8109), 1, aux_sym_constant_repeat1, - STATE(8098), 1, + STATE(8143), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4555), 10, - sym__start_of_brace_block, + ACTIONS(4586), 9, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, @@ -639398,42 +645947,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_LPAREN2, anon_sym_QMARK, - anon_sym_do, - [367589] = 9, + [370062] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10102), 1, + ACTIONS(10147), 1, anon_sym_forall, - ACTIONS(10136), 1, + ACTIONS(10187), 1, aux_sym__base_method_def_token1, - STATE(8099), 1, + STATE(8144), 1, sym_heredoc_body, - STATE(8354), 1, + STATE(8496), 1, sym_forall, - STATE(8758), 1, + STATE(8818), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, + ACTIONS(10141), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4703), 6, + ACTIONS(4750), 6, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_end, - [367624] = 4, + [370097] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8100), 1, + ACTIONS(10189), 1, + anon_sym_PIPE, + STATE(8145), 1, sym_heredoc_body, + STATE(8155), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4563), 12, + ACTIONS(4636), 9, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, @@ -639441,94 +645993,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_DASH_GT, anon_sym_STAR, - anon_sym_PIPE, anon_sym_DOT, - anon_sym_COLON_COLON, - anon_sym_LPAREN2, anon_sym_QMARK, - [367649] = 9, + [370125] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10102), 1, - anon_sym_forall, - ACTIONS(10138), 1, - aux_sym__base_method_def_token1, - STATE(8101), 1, + STATE(8146), 1, sym_heredoc_body, - STATE(8329), 1, - sym_forall, - STATE(8728), 1, + STATE(8343), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, + ACTIONS(9944), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4697), 6, + ACTIONS(4845), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_end, - [367684] = 6, + anon_sym_else, + [370153] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10115), 1, - anon_sym_COLON_COLON, - STATE(8095), 1, - aux_sym_constant_repeat1, - STATE(8102), 1, + STATE(8147), 1, sym_heredoc_body, + STATE(8346), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4559), 10, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_LPAREN2, - anon_sym_QMARK, - [367713] = 4, + ACTIONS(9944), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4857), 8, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + anon_sym_else, + [370181] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8103), 1, + ACTIONS(10147), 1, + anon_sym_forall, + STATE(8148), 1, sym_heredoc_body, + STATE(8498), 1, + sym_forall, + STATE(8821), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4745), 11, + ACTIONS(10141), 2, sym__line_break, + anon_sym_SEMI, + ACTIONS(4771), 6, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - anon_sym_SEMI, anon_sym_end, - anon_sym_forall, - anon_sym_else, - [367737] = 6, + [370213] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8104), 1, + STATE(8149), 1, sym_heredoc_body, - STATE(8313), 1, + STATE(8248), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(9944), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4855), 8, + ACTIONS(4873), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, @@ -639537,84 +646085,81 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_end, anon_sym_else, - [367765] = 5, + [370241] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8105), 1, + STATE(8150), 1, sym_heredoc_body, - STATE(8126), 1, - aux_sym_union_type_repeat1, + STATE(8243), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4588), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [367791] = 8, + ACTIONS(9944), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4885), 8, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + anon_sym_else, + [370269] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10102), 1, - anon_sym_forall, - STATE(8106), 1, + STATE(8151), 1, sym_heredoc_body, - STATE(8351), 1, - sym_forall, - STATE(8753), 1, + STATE(8258), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, + ACTIONS(9944), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4739), 6, + ACTIONS(4849), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_end, - [367823] = 8, + anon_sym_else, + [370297] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10102), 1, - anon_sym_forall, - STATE(8107), 1, + STATE(8152), 1, sym_heredoc_body, - STATE(8491), 1, - sym_forall, - STATE(8719), 1, + STATE(8274), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, + ACTIONS(9944), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4735), 6, + ACTIONS(4861), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_end, - [367855] = 4, + anon_sym_else, + [370325] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8108), 1, + STATE(8153), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4563), 11, + ACTIONS(4600), 11, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COMMA, @@ -639626,234 +646171,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LPAREN2, anon_sym_QMARK, - [367879] = 10, + [370349] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10140), 1, + STATE(8145), 1, + aux_sym_union_type_repeat1, + STATE(8154), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4629), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(10142), 1, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_GT, anon_sym_STAR, - ACTIONS(10144), 1, anon_sym_PIPE, - ACTIONS(10146), 1, anon_sym_DOT, - ACTIONS(10148), 1, anon_sym_QMARK, - STATE(8109), 1, - sym_heredoc_body, - STATE(8126), 1, - aux_sym_union_type_repeat1, + [370375] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10191), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4595), 5, + STATE(8155), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4629), 9, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_DASH_GT, - [367915] = 10, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_QMARK, + [370401] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10150), 1, - sym__modifier_if_keyword, - ACTIONS(10152), 1, - sym__modifier_unless_keyword, - ACTIONS(10154), 1, - sym__modifier_rescue_keyword, - ACTIONS(10156), 1, - sym__modifier_ensure_keyword, - STATE(2106), 1, - sym__terminator, - STATE(8110), 1, + STATE(8156), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1409), 2, + ACTIONS(4344), 11, sym__line_break, - anon_sym_SEMI, - ACTIONS(9874), 4, - sym__regular_rescue_keyword, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_end, - anon_sym_else, - [367951] = 6, + aux_sym__base_method_def_token1, + anon_sym_forall, + [370425] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8111), 1, + STATE(8157), 1, sym_heredoc_body, - STATE(8197), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(4785), 11, sym__line_break, - anon_sym_SEMI, - ACTIONS(4840), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, + anon_sym_forall, anon_sym_else, - [367979] = 6, + [370449] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8112), 1, + ACTIONS(10147), 1, + anon_sym_forall, + STATE(8158), 1, sym_heredoc_body, - STATE(8189), 1, + STATE(8468), 1, + sym_forall, + STATE(8692), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(10141), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4794), 8, + ACTIONS(4794), 6, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_end, - anon_sym_else, - [368007] = 6, + [370481] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8113), 1, - sym_heredoc_body, - STATE(8165), 1, + ACTIONS(10194), 1, + sym__modifier_if_keyword, + ACTIONS(10196), 1, + sym__modifier_unless_keyword, + ACTIONS(10198), 1, + sym__modifier_rescue_keyword, + ACTIONS(10200), 1, + sym__modifier_ensure_keyword, + STATE(2119), 1, sym__terminator, + STATE(8159), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(1429), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4802), 8, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, + ACTIONS(9928), 4, sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, anon_sym_end, anon_sym_else, - [368035] = 11, + [370517] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9856), 1, - sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(9862), 1, - anon_sym_STAR, - ACTIONS(9866), 1, - anon_sym_STAR_STAR, - STATE(8114), 1, + ACTIONS(10147), 1, + anon_sym_forall, + STATE(8160), 1, sym_heredoc_body, - STATE(8510), 1, - aux_sym_param_repeat1, - STATE(9058), 1, - sym_annotation, + STATE(8501), 1, + sym_forall, + STATE(8831), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - STATE(10470), 3, - sym_param, - sym_splat_param, - sym_double_splat_param, - [368073] = 10, + ACTIONS(10141), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4806), 6, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + [370549] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10140), 1, + ACTIONS(10189), 1, + anon_sym_PIPE, + ACTIONS(10202), 1, anon_sym_LBRACK, - ACTIONS(10142), 1, + ACTIONS(10204), 1, anon_sym_STAR, - ACTIONS(10144), 1, - anon_sym_PIPE, - ACTIONS(10146), 1, + ACTIONS(10206), 1, anon_sym_DOT, - ACTIONS(10148), 1, + ACTIONS(10208), 1, anon_sym_QMARK, - STATE(8115), 1, - sym_heredoc_body, - STATE(8126), 1, + STATE(8145), 1, aux_sym_union_type_repeat1, + STATE(8161), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4570), 5, + ACTIONS(4640), 5, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_DASH_GT, - [368109] = 10, + [370585] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10140), 1, - anon_sym_LBRACK, - ACTIONS(10142), 1, - anon_sym_STAR, - ACTIONS(10144), 1, - anon_sym_PIPE, - ACTIONS(10146), 1, - anon_sym_DOT, - ACTIONS(10148), 1, - anon_sym_QMARK, - STATE(8116), 1, + STATE(8162), 1, sym_heredoc_body, - STATE(8126), 1, - aux_sym_union_type_repeat1, + STATE(8212), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4609), 5, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [368145] = 6, + ACTIONS(9944), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4865), 8, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + anon_sym_else, + [370613] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8117), 1, + ACTIONS(10147), 1, + anon_sym_forall, + STATE(8163), 1, sym_heredoc_body, - STATE(8281), 1, + STATE(8505), 1, + sym_forall, + STATE(8847), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(10141), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4816), 8, + ACTIONS(4775), 6, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + [370645] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8164), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4869), 11, + sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_end, anon_sym_else, - [368173] = 4, + [370669] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8118), 1, + STATE(8165), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4595), 11, + ACTIONS(4640), 11, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -639865,20 +646439,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_end, anon_sym_forall, - [368197] = 6, + [370693] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8119), 1, + STATE(8166), 1, sym_heredoc_body, - STATE(8308), 1, + STATE(8259), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(9944), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4847), 8, + ACTIONS(4853), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, @@ -639887,220 +646461,234 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_end, anon_sym_else, - [368225] = 6, + [370721] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8120), 1, + ACTIONS(9807), 1, + anon_sym_LPAREN2, + STATE(8167), 1, sym_heredoc_body, - STATE(8201), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(9958), 10, sym__line_break, - anon_sym_SEMI, - ACTIONS(4851), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, anon_sym_else, - [368253] = 10, + [370747] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10140), 1, + ACTIONS(10189), 1, + anon_sym_PIPE, + ACTIONS(10202), 1, anon_sym_LBRACK, - ACTIONS(10142), 1, + ACTIONS(10204), 1, anon_sym_STAR, - ACTIONS(10144), 1, - anon_sym_PIPE, - ACTIONS(10146), 1, + ACTIONS(10206), 1, anon_sym_DOT, - ACTIONS(10148), 1, + ACTIONS(10208), 1, anon_sym_QMARK, - STATE(8121), 1, - sym_heredoc_body, - STATE(8126), 1, + STATE(8145), 1, aux_sym_union_type_repeat1, + STATE(8168), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4605), 5, + ACTIONS(4650), 5, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_DASH_GT, - [368289] = 10, + [370783] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10140), 1, + ACTIONS(10189), 1, + anon_sym_PIPE, + ACTIONS(10202), 1, anon_sym_LBRACK, - ACTIONS(10142), 1, + ACTIONS(10204), 1, anon_sym_STAR, - ACTIONS(10144), 1, - anon_sym_PIPE, - ACTIONS(10146), 1, + ACTIONS(10206), 1, anon_sym_DOT, - ACTIONS(10148), 1, + ACTIONS(10208), 1, anon_sym_QMARK, - STATE(8122), 1, - sym_heredoc_body, - STATE(8126), 1, + STATE(8145), 1, aux_sym_union_type_repeat1, + STATE(8169), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4613), 5, + ACTIONS(4621), 5, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_DASH_GT, - [368325] = 6, + [370819] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8123), 1, + ACTIONS(10147), 1, + anon_sym_forall, + STATE(8170), 1, sym_heredoc_body, - STATE(8177), 1, + STATE(8507), 1, + sym_forall, + STATE(8855), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(10141), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4828), 8, + ACTIONS(4781), 6, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_end, - anon_sym_else, - [368353] = 4, + [370851] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8124), 1, + ACTIONS(9807), 1, + anon_sym_LPAREN2, + STATE(8171), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4303), 11, + ACTIONS(9926), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_end, - aux_sym__base_method_def_token1, - anon_sym_forall, - [368377] = 5, + anon_sym_else, + [370877] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9773), 1, - anon_sym_LPAREN2, - STATE(8125), 1, + ACTIONS(10194), 1, + sym__modifier_if_keyword, + ACTIONS(10196), 1, + sym__modifier_unless_keyword, + ACTIONS(10198), 1, + sym__modifier_rescue_keyword, + ACTIONS(10200), 1, + sym__modifier_ensure_keyword, + STATE(2119), 1, + sym__terminator, + STATE(8172), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9903), 10, + ACTIONS(1429), 2, sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, + anon_sym_SEMI, + ACTIONS(1827), 4, sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, anon_sym_end, anon_sym_else, - [368403] = 6, + [370913] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10144), 1, + ACTIONS(10189), 1, anon_sym_PIPE, - STATE(8126), 1, - sym_heredoc_body, - STATE(8140), 1, + ACTIONS(10202), 1, + anon_sym_LBRACK, + ACTIONS(10204), 1, + anon_sym_STAR, + ACTIONS(10206), 1, + anon_sym_DOT, + ACTIONS(10208), 1, + anon_sym_QMARK, + STATE(8145), 1, aux_sym_union_type_repeat1, + STATE(8173), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4584), 9, + ACTIONS(4625), 5, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_QMARK, - [368431] = 8, + [370949] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10102), 1, - anon_sym_forall, - STATE(8127), 1, + STATE(8174), 1, sym_heredoc_body, - STATE(8368), 1, - sym_forall, - STATE(8775), 1, + STATE(8247), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, + ACTIONS(9944), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4754), 6, + ACTIONS(4892), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_end, - [368463] = 6, + anon_sym_else, + [370977] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8128), 1, + ACTIONS(9908), 1, + sym_identifier, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(9914), 1, + anon_sym_STAR, + ACTIONS(9918), 1, + anon_sym_STAR_STAR, + STATE(8175), 1, sym_heredoc_body, - STATE(8193), 1, - sym__terminator, + STATE(8567), 1, + aux_sym_param_repeat1, + STATE(9074), 1, + sym_annotation, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(4820), 8, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_end, - anon_sym_else, - [368491] = 4, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + STATE(10469), 3, + sym_param, + sym_splat_param, + sym_double_splat_param, + [371015] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8129), 1, + STATE(8176), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4563), 11, + ACTIONS(4600), 11, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, @@ -640112,87 +646700,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_QMARK, anon_sym_do, - [368515] = 8, + [371039] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10102), 1, + ACTIONS(10147), 1, anon_sym_forall, - STATE(8130), 1, + STATE(8177), 1, sym_heredoc_body, - STATE(8372), 1, + STATE(8495), 1, sym_forall, - STATE(8780), 1, - sym__terminator, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10096), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(4761), 6, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_end, - [368547] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8131), 1, - sym_heredoc_body, - STATE(8141), 1, + STATE(8814), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(10141), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4824), 8, + ACTIONS(4810), 6, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_end, - anon_sym_else, - [368575] = 5, + [371071] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9773), 1, - anon_sym_LPAREN2, - STATE(8132), 1, + ACTIONS(10189), 1, + anon_sym_PIPE, + ACTIONS(10202), 1, + anon_sym_LBRACK, + ACTIONS(10204), 1, + anon_sym_STAR, + ACTIONS(10206), 1, + anon_sym_DOT, + ACTIONS(10208), 1, + anon_sym_QMARK, + STATE(8145), 1, + aux_sym_union_type_repeat1, + STATE(8178), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9854), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [368601] = 6, + ACTIONS(4607), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [371107] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8133), 1, + STATE(8179), 1, sym_heredoc_body, - STATE(8186), 1, + STATE(8229), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(9944), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4798), 8, + ACTIONS(4831), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, @@ -640201,17 +646772,17 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_end, anon_sym_else, - [368629] = 5, + [371135] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10158), 1, + ACTIONS(10210), 1, anon_sym_LPAREN2, - STATE(8134), 1, + STATE(8180), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4599), 10, + ACTIONS(4644), 10, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, @@ -640222,63 +646793,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - [368655] = 8, + [371161] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10102), 1, - anon_sym_forall, - STATE(8135), 1, + STATE(8181), 1, sym_heredoc_body, - STATE(8338), 1, - sym_forall, - STATE(8787), 1, + STATE(8239), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, + ACTIONS(9944), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4731), 6, + ACTIONS(4881), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_end, - [368687] = 8, + anon_sym_else, + [371189] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10102), 1, - anon_sym_forall, - STATE(8136), 1, + STATE(8182), 1, sym_heredoc_body, - STATE(8345), 1, - sym_forall, - STATE(8743), 1, + STATE(8184), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, + ACTIONS(9944), 2, sym__line_break, anon_sym_SEMI, - ACTIONS(4769), 6, + ACTIONS(4877), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_end, - [368719] = 4, + anon_sym_else, + [371217] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8137), 1, + STATE(8183), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4832), 11, + ACTIONS(9988), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -640287,87 +646854,80 @@ static const uint16_t ts_small_parse_table[] = { sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_COMMA, anon_sym_end, anon_sym_else, - [368743] = 6, + [371240] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8138), 1, + STATE(8184), 1, sym_heredoc_body, - STATE(8303), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9890), 2, + ACTIONS(4980), 10, sym__line_break, - anon_sym_SEMI, - ACTIONS(4836), 8, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, anon_sym_else, - [368771] = 10, + [371263] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10150), 1, - sym__modifier_if_keyword, - ACTIONS(10152), 1, - sym__modifier_unless_keyword, - ACTIONS(10154), 1, - sym__modifier_rescue_keyword, - ACTIONS(10156), 1, - sym__modifier_ensure_keyword, - STATE(2106), 1, - sym__terminator, - STATE(8139), 1, + ACTIONS(10212), 1, + anon_sym_LBRACK, + ACTIONS(10214), 1, + anon_sym_STAR, + ACTIONS(10216), 1, + anon_sym_PIPE, + ACTIONS(10218), 1, + anon_sym_DOT, + ACTIONS(10220), 1, + anon_sym_QMARK, + STATE(8185), 1, sym_heredoc_body, + STATE(8189), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1409), 2, + ACTIONS(4621), 4, sym__line_break, anon_sym_SEMI, - ACTIONS(1988), 4, - sym__regular_rescue_keyword, - sym__regular_ensure_keyword, - anon_sym_end, - anon_sym_else, - [368807] = 5, + anon_sym_COMMA, + anon_sym_DASH_GT, + [371298] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10160), 1, - anon_sym_PIPE, + STATE(8186), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8140), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4588), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(4694), 10, + sym__line_break, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DASH_GT, anon_sym_STAR, + anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - [368833] = 4, + anon_sym_then, + [371321] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8141), 1, + STATE(8187), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4887), 10, + ACTIONS(5557), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -640378,145 +646938,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [368856] = 5, + [371344] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8142), 1, + STATE(8188), 1, sym_heredoc_body, - STATE(8210), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4588), 9, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [368881] = 5, + ACTIONS(10082), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + [371367] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10163), 1, - anon_sym_LPAREN2, - STATE(8143), 1, + ACTIONS(10216), 1, + anon_sym_PIPE, + STATE(8189), 1, sym_heredoc_body, + STATE(8193), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4599), 9, - anon_sym_RPAREN, + ACTIONS(4636), 8, + sym__line_break, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_STAR, - anon_sym_PIPE, anon_sym_DOT, - anon_sym_EQ, anon_sym_QMARK, - [368906] = 6, + [371394] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10165), 1, - anon_sym_PIPE, - STATE(8144), 1, + STATE(8190), 1, sym_heredoc_body, - STATE(8318), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4584), 8, + ACTIONS(4678), 10, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DASH_GT, anon_sym_STAR, + anon_sym_PIPE, anon_sym_DOT, - anon_sym_EQ, anon_sym_QMARK, - [368933] = 10, + [371417] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10165), 1, - anon_sym_PIPE, - ACTIONS(10167), 1, - anon_sym_LBRACK, - ACTIONS(10169), 1, - anon_sym_STAR, - ACTIONS(10171), 1, - anon_sym_DOT, - ACTIONS(10173), 1, - anon_sym_QMARK, - STATE(8144), 1, - aux_sym_union_type_repeat1, - STATE(8145), 1, + STATE(8191), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4595), 4, + ACTIONS(4662), 10, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DASH_GT, - anon_sym_EQ, - [368968] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10175), 1, - anon_sym_LBRACK, - ACTIONS(10177), 1, anon_sym_STAR, - ACTIONS(10179), 1, anon_sym_PIPE, - ACTIONS(10181), 1, anon_sym_DOT, - ACTIONS(10183), 1, anon_sym_QMARK, - STATE(8146), 1, - sym_heredoc_body, - STATE(8305), 1, + [371440] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8189), 1, aux_sym_union_type_repeat1, + STATE(8192), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4609), 4, + ACTIONS(4629), 9, sym__line_break, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, - [369003] = 4, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + [371465] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8147), 1, - sym_heredoc_body, + ACTIONS(10222), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4621), 10, + STATE(8193), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4629), 8, sym__line_break, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_STAR, - anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - anon_sym_then, - [369026] = 4, + [371490] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8148), 1, + STATE(8194), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10036), 10, + ACTIONS(4896), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -640527,15 +647075,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369049] = 4, + [371513] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8149), 1, + STATE(8195), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9959), 10, + ACTIONS(10012), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -640546,86 +647094,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369072] = 6, + [371536] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10185), 1, - anon_sym_COMMA, - STATE(8150), 1, + STATE(8196), 1, sym_heredoc_body, - STATE(8247), 1, - aux_sym_forall_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4790), 8, + ACTIONS(10014), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [369099] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10165), 1, - anon_sym_PIPE, - ACTIONS(10167), 1, - anon_sym_LBRACK, - ACTIONS(10169), 1, - anon_sym_STAR, - ACTIONS(10171), 1, - anon_sym_DOT, - ACTIONS(10173), 1, - anon_sym_QMARK, - STATE(8144), 1, - aux_sym_union_type_repeat1, - STATE(8151), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4605), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_EQ, - [369134] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10165), 1, - anon_sym_PIPE, - ACTIONS(10167), 1, - anon_sym_LBRACK, - ACTIONS(10169), 1, - anon_sym_STAR, - ACTIONS(10171), 1, - anon_sym_DOT, - ACTIONS(10173), 1, - anon_sym_QMARK, - STATE(8144), 1, - aux_sym_union_type_repeat1, - STATE(8152), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4613), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_EQ, - [369169] = 4, + anon_sym_else, + [371559] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8153), 1, + STATE(8197), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9961), 10, + ACTIONS(10016), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -640636,15 +647132,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369192] = 4, + [371582] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8154), 1, + STATE(8198), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9965), 10, + ACTIONS(10022), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -640655,34 +647151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369215] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8155), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4673), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [369238] = 4, + [371605] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8156), 1, + STATE(8199), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9967), 10, + ACTIONS(10024), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -640693,15 +647170,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369261] = 4, + [371628] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8157), 1, + STATE(8200), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10005), 10, + ACTIONS(10028), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -640712,15 +647189,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369284] = 4, + [371651] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8158), 1, + STATE(8201), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4915), 10, + ACTIONS(10030), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -640731,65 +647208,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369307] = 10, + [371674] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10187), 1, - anon_sym_LBRACK, - ACTIONS(10189), 1, - anon_sym_STAR, - ACTIONS(10191), 1, - anon_sym_PIPE, - ACTIONS(10193), 1, - anon_sym_DOT, - ACTIONS(10195), 1, - anon_sym_QMARK, - STATE(8159), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10225), 1, + anon_sym_module, + ACTIONS(10227), 1, + anon_sym_abstract, + ACTIONS(10229), 1, + anon_sym_class, + ACTIONS(10231), 1, + anon_sym_struct, + ACTIONS(10233), 1, + anon_sym_def, + ACTIONS(10235), 1, + anon_sym_alias, + STATE(161), 1, + sym__base_method_def, + STATE(8202), 1, sym_heredoc_body, - STATE(8214), 1, - aux_sym_union_type_repeat1, + STATE(11005), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4595), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - [369342] = 10, + [371715] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10187), 1, - anon_sym_LBRACK, - ACTIONS(10189), 1, - anon_sym_STAR, - ACTIONS(10191), 1, - anon_sym_PIPE, - ACTIONS(10193), 1, - anon_sym_DOT, - ACTIONS(10195), 1, - anon_sym_QMARK, - STATE(8160), 1, + STATE(8203), 1, sym_heredoc_body, - STATE(8214), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4570), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - [369377] = 4, + ACTIONS(10032), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + [371738] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8161), 1, + STATE(8204), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10068), 10, + ACTIONS(10034), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -640800,54 +647274,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369400] = 5, + [371761] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8144), 1, - aux_sym_union_type_repeat1, - STATE(8162), 1, - sym_heredoc_body, + ACTIONS(10237), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4588), 9, + STATE(8205), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4629), 8, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_STAR, - anon_sym_PIPE, anon_sym_DOT, anon_sym_EQ, anon_sym_QMARK, - [369425] = 4, + [371786] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8163), 1, + ACTIONS(10194), 1, + sym__modifier_if_keyword, + ACTIONS(10196), 1, + sym__modifier_unless_keyword, + ACTIONS(10198), 1, + sym__modifier_rescue_keyword, + ACTIONS(10200), 1, + sym__modifier_ensure_keyword, + STATE(8206), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10038), 10, + ACTIONS(10036), 6, sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369448] = 4, + [371817] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8164), 1, + STATE(8207), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10040), 10, + ACTIONS(10038), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -640858,15 +647336,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369471] = 4, + [371840] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8165), 1, + STATE(8208), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4875), 10, + ACTIONS(10040), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -640877,15 +647355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369494] = 4, + [371863] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8166), 1, + STATE(8209), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4879), 10, + ACTIONS(10042), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -640896,15 +647374,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369517] = 4, + [371886] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8167), 1, + STATE(8210), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10042), 10, + ACTIONS(10044), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -640915,15 +647393,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369540] = 4, + [371909] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8168), 1, + STATE(8211), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4891), 10, + ACTIONS(4924), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -640934,15 +647412,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369563] = 4, + [371932] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8169), 1, + STATE(8212), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10044), 10, + ACTIONS(4900), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -640953,15 +647431,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369586] = 4, + [371955] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8170), 1, + STATE(8213), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10046), 10, + ACTIONS(10028), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -640972,15 +647450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369609] = 4, + [371978] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8171), 1, + STATE(8214), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10076), 10, + ACTIONS(10030), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -640991,15 +647469,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369632] = 4, + [372001] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8172), 1, + STATE(8215), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4951), 10, + ACTIONS(10032), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641010,15 +647488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369655] = 4, + [372024] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8173), 1, + STATE(8216), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4867), 10, + ACTIONS(10034), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641029,15 +647507,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369678] = 4, + [372047] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8174), 1, + STATE(8217), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10082), 10, + ACTIONS(4904), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641048,15 +647526,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369701] = 4, + [372070] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8175), 1, + ACTIONS(10240), 1, + anon_sym_PIPE, + STATE(8218), 1, + sym_heredoc_body, + STATE(8219), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4636), 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_QMARK, + [372097] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10242), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(8219), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4629), 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_QMARK, + [372122] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8220), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9997), 10, + ACTIONS(4912), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641067,34 +647586,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369724] = 4, + [372145] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8176), 1, + ACTIONS(10245), 1, + anon_sym_COMMA, + STATE(8221), 1, sym_heredoc_body, + STATE(8250), 1, + aux_sym_forall_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9999), 10, + ACTIONS(4827), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - anon_sym_else, - [369747] = 4, + [372172] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8177), 1, + STATE(8222), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4899), 10, + ACTIONS(4936), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641105,40 +647626,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369770] = 10, + [372195] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10175), 1, + ACTIONS(10212), 1, anon_sym_LBRACK, - ACTIONS(10177), 1, + ACTIONS(10214), 1, anon_sym_STAR, - ACTIONS(10179), 1, + ACTIONS(10216), 1, anon_sym_PIPE, - ACTIONS(10181), 1, + ACTIONS(10218), 1, anon_sym_DOT, - ACTIONS(10183), 1, + ACTIONS(10220), 1, anon_sym_QMARK, - STATE(8178), 1, - sym_heredoc_body, - STATE(8305), 1, + STATE(8189), 1, aux_sym_union_type_repeat1, + STATE(8223), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4570), 4, + ACTIONS(4625), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_DASH_GT, - [369805] = 4, + [372230] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8179), 1, + STATE(8224), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10001), 10, + ACTIONS(4800), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641149,63 +647670,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369828] = 8, + [372253] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10150), 1, - sym__modifier_if_keyword, - ACTIONS(10152), 1, - sym__modifier_unless_keyword, - ACTIONS(10154), 1, - sym__modifier_rescue_keyword, - ACTIONS(10156), 1, - sym__modifier_ensure_keyword, - STATE(8180), 1, + ACTIONS(10247), 1, + anon_sym_PIPE, + STATE(8205), 1, + aux_sym_union_type_repeat1, + STATE(8225), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10014), 6, - sym__line_break, - sym__regular_rescue_keyword, - sym__regular_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [369859] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10175), 1, + ACTIONS(4636), 8, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(10177), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_STAR, - ACTIONS(10179), 1, - anon_sym_PIPE, - ACTIONS(10181), 1, anon_sym_DOT, - ACTIONS(10183), 1, + anon_sym_EQ, anon_sym_QMARK, - STATE(8181), 1, - sym_heredoc_body, - STATE(8305), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4613), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_GT, - [369894] = 4, + [372280] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8182), 1, + STATE(8226), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5534), 10, + ACTIONS(10054), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641216,15 +647710,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369917] = 4, + [372303] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8183), 1, + STATE(8227), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5518), 10, + ACTIONS(4976), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641235,35 +647729,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369940] = 5, + [372326] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8184), 1, + STATE(8228), 1, sym_heredoc_body, - STATE(8305), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4588), 9, + ACTIONS(10088), 10, sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [369965] = 4, + anon_sym_end, + anon_sym_else, + [372349] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8185), 1, + STATE(8229), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9947), 10, + ACTIONS(4916), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641274,15 +647767,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [369988] = 4, + [372372] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8186), 1, + STATE(8230), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4895), 10, + ACTIONS(4920), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641293,15 +647786,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370011] = 4, + [372395] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8187), 1, + STATE(8231), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9963), 10, + ACTIONS(10070), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641312,15 +647805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370034] = 4, + [372418] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8188), 1, + STATE(8232), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9985), 10, + ACTIONS(10072), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641331,15 +647824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370057] = 4, + [372441] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8189), 1, + STATE(8233), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4907), 10, + ACTIONS(10074), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641350,15 +647843,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370080] = 4, + [372464] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8190), 1, + STATE(8234), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4911), 10, + ACTIONS(10076), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641369,15 +647862,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370103] = 4, + [372487] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8191), 1, + STATE(8235), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9989), 10, + ACTIONS(10078), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641388,35 +647881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370126] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10197), 1, - anon_sym_LPAREN2, - STATE(8192), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4599), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_do, - [370151] = 4, + [372510] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8193), 1, + STATE(8236), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4923), 10, + ACTIONS(10080), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641427,79 +647900,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370174] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8194), 1, - sym_heredoc_body, - STATE(8214), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4588), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_do, - [370199] = 10, + [372533] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10175), 1, - anon_sym_LBRACK, - ACTIONS(10177), 1, - anon_sym_STAR, - ACTIONS(10179), 1, - anon_sym_PIPE, - ACTIONS(10181), 1, - anon_sym_DOT, - ACTIONS(10183), 1, - anon_sym_QMARK, - STATE(8195), 1, + STATE(8237), 1, sym_heredoc_body, - STATE(8305), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4595), 4, + ACTIONS(10020), 10, sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_DASH_GT, - [370234] = 4, + anon_sym_end, + anon_sym_else, + [372556] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8196), 1, + STATE(8238), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4599), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(4706), 10, + sym__line_break, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - [370257] = 4, + anon_sym_then, + [372579] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8197), 1, + STATE(8239), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4931), 10, + ACTIONS(4928), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641510,15 +647957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370280] = 4, + [372602] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8198), 1, + STATE(8240), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4935), 10, + ACTIONS(4932), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641529,15 +647976,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370303] = 4, + [372625] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8199), 1, + ACTIONS(10249), 1, + anon_sym_LBRACK, + ACTIONS(10251), 1, + anon_sym_STAR, + ACTIONS(10253), 1, + anon_sym_PIPE, + ACTIONS(10255), 1, + anon_sym_DOT, + ACTIONS(10257), 1, + anon_sym_QMARK, + STATE(8241), 1, sym_heredoc_body, + STATE(8266), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10048), 10, + ACTIONS(4650), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + [372660] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8242), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5572), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641548,35 +648020,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370326] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10199), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(8200), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4588), 8, - sym__line_break, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_QMARK, - [370351] = 4, + [372683] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8201), 1, + STATE(8243), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 10, + ACTIONS(4940), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641587,63 +648039,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370374] = 5, + [372706] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10202), 1, + ACTIONS(10212), 1, + anon_sym_LBRACK, + ACTIONS(10214), 1, + anon_sym_STAR, + ACTIONS(10216), 1, anon_sym_PIPE, + ACTIONS(10218), 1, + anon_sym_DOT, + ACTIONS(10220), 1, + anon_sym_QMARK, + STATE(8189), 1, + aux_sym_union_type_repeat1, + STATE(8244), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8202), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4588), 8, - sym__start_of_brace_block, - anon_sym_LBRACK, + ACTIONS(4607), 4, + sym__line_break, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_DASH_GT, + [372741] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10202), 1, + anon_sym_LBRACK, + ACTIONS(10204), 1, anon_sym_STAR, + ACTIONS(10206), 1, anon_sym_DOT, + ACTIONS(10208), 1, anon_sym_QMARK, - anon_sym_do, - [370399] = 13, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(10205), 1, - anon_sym_module, - ACTIONS(10207), 1, - anon_sym_abstract, - ACTIONS(10209), 1, - anon_sym_class, - ACTIONS(10211), 1, - anon_sym_struct, - ACTIONS(10213), 1, - anon_sym_def, - ACTIONS(10215), 1, - anon_sym_alias, - STATE(186), 1, - sym__base_method_def, - STATE(8203), 1, + ACTIONS(10240), 1, + anon_sym_PIPE, + STATE(8218), 1, + aux_sym_union_type_repeat1, + STATE(8245), 1, sym_heredoc_body, - STATE(11098), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [370440] = 4, + ACTIONS(4625), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + [372776] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8204), 1, + STATE(8246), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10050), 10, + ACTIONS(10086), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641654,15 +648108,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370463] = 4, + [372799] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8205), 1, + STATE(8247), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10026), 10, + ACTIONS(4908), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641673,15 +648127,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370486] = 4, + [372822] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8206), 1, + STATE(8248), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10072), 10, + ACTIONS(4944), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641692,15 +648146,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370509] = 4, + [372845] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8207), 1, + STATE(8249), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9995), 10, + ACTIONS(4948), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641711,74 +648165,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370532] = 4, + [372868] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8208), 1, + ACTIONS(10245), 1, + anon_sym_COMMA, + STATE(8250), 1, sym_heredoc_body, + STATE(8285), 1, + aux_sym_forall_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10084), 10, + ACTIONS(4821), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, - sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - anon_sym_else, - [370555] = 4, + [372895] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8209), 1, + ACTIONS(10259), 1, + anon_sym_LPAREN2, + STATE(8251), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9981), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [370578] = 6, + ACTIONS(4644), 9, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_QMARK, + [372920] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10217), 1, - anon_sym_PIPE, - STATE(8210), 1, + STATE(8252), 1, sym_heredoc_body, - STATE(8317), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4584), 8, + ACTIONS(4666), 10, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_EQ_GT, + anon_sym_DASH_GT, anon_sym_STAR, + anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - [370605] = 4, + [372943] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8211), 1, + STATE(8253), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4649), 10, + ACTIONS(4654), 10, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, @@ -641789,83 +648244,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - [370628] = 13, + [372966] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(10213), 1, - anon_sym_def, - ACTIONS(10219), 1, - anon_sym_module, - ACTIONS(10221), 1, - anon_sym_abstract, - ACTIONS(10223), 1, - anon_sym_class, - ACTIONS(10225), 1, - anon_sym_struct, - ACTIONS(10227), 1, - anon_sym_alias, - STATE(164), 1, - sym__base_method_def, - STATE(8212), 1, + STATE(8254), 1, sym_heredoc_body, - STATE(11493), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [370669] = 4, + ACTIONS(4658), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + [372989] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8213), 1, + ACTIONS(10202), 1, + anon_sym_LBRACK, + ACTIONS(10204), 1, + anon_sym_STAR, + ACTIONS(10206), 1, + anon_sym_DOT, + ACTIONS(10208), 1, + anon_sym_QMARK, + ACTIONS(10240), 1, + anon_sym_PIPE, + STATE(8218), 1, + aux_sym_union_type_repeat1, + STATE(8255), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10034), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [370692] = 6, + ACTIONS(4670), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + [373024] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10191), 1, + ACTIONS(10247), 1, anon_sym_PIPE, - STATE(8202), 1, + ACTIONS(10261), 1, + anon_sym_LBRACK, + ACTIONS(10263), 1, + anon_sym_STAR, + ACTIONS(10265), 1, + anon_sym_DOT, + ACTIONS(10267), 1, + anon_sym_QMARK, + STATE(8225), 1, aux_sym_union_type_repeat1, - STATE(8214), 1, + STATE(8256), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4584), 8, - sym__start_of_brace_block, + ACTIONS(4640), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_EQ, + [373059] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8257), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4718), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DASH_GT, anon_sym_STAR, + anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - anon_sym_do, - [370719] = 4, + [373082] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8215), 1, + STATE(8258), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10052), 10, + ACTIONS(4956), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641876,15 +648351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370742] = 4, + [373105] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8216), 1, + STATE(8259), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10060), 10, + ACTIONS(4964), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641895,15 +648370,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370765] = 4, + [373128] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8217), 1, + STATE(8260), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10066), 10, + ACTIONS(4968), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641914,34 +648389,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370788] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8218), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4629), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [370811] = 4, + [373151] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8219), 1, + STATE(8261), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10056), 10, + ACTIONS(10093), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -641952,53 +648408,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370834] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8220), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4621), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [370857] = 4, + [373174] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8221), 1, + STATE(8262), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4661), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [370880] = 4, + ACTIONS(10095), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + [373197] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8222), 1, + STATE(8263), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10086), 10, + ACTIONS(10097), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642009,15 +648446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370903] = 4, + [373220] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8223), 1, + STATE(8264), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10058), 10, + ACTIONS(10099), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642028,15 +648465,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370926] = 4, + [373243] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8224), 1, + STATE(8265), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10070), 10, + ACTIONS(10101), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642047,40 +648484,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [370949] = 10, + [373266] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10187), 1, - anon_sym_LBRACK, - ACTIONS(10189), 1, - anon_sym_STAR, - ACTIONS(10191), 1, + ACTIONS(10253), 1, anon_sym_PIPE, - ACTIONS(10193), 1, - anon_sym_DOT, - ACTIONS(10195), 1, - anon_sym_QMARK, - STATE(8214), 1, - aux_sym_union_type_repeat1, - STATE(8225), 1, + STATE(8266), 1, sym_heredoc_body, + STATE(8320), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4605), 4, + ACTIONS(4636), 8, sym__start_of_brace_block, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_do, - [370984] = 4, + [373293] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8226), 1, + STATE(8267), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10084), 10, + ACTIONS(10103), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642091,15 +648524,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [371007] = 4, + [373316] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8227), 1, + STATE(8268), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10074), 10, + ACTIONS(10105), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642110,185 +648543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [371030] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10140), 1, - anon_sym_LBRACK, - ACTIONS(10142), 1, - anon_sym_STAR, - ACTIONS(10146), 1, - anon_sym_DOT, - ACTIONS(10148), 1, - anon_sym_QMARK, - ACTIONS(10217), 1, - anon_sym_PIPE, - STATE(8210), 1, - aux_sym_union_type_repeat1, - STATE(8228), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4609), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - [371065] = 10, + [373339] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10187), 1, - anon_sym_LBRACK, - ACTIONS(10189), 1, - anon_sym_STAR, - ACTIONS(10191), 1, - anon_sym_PIPE, - ACTIONS(10193), 1, - anon_sym_DOT, - ACTIONS(10195), 1, - anon_sym_QMARK, - STATE(8214), 1, - aux_sym_union_type_repeat1, - STATE(8229), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4609), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - [371100] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8230), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4653), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [371123] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8231), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4617), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [371146] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8232), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4665), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [371169] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8233), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4677), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [371192] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10165), 1, - anon_sym_PIPE, - ACTIONS(10167), 1, - anon_sym_LBRACK, - ACTIONS(10169), 1, - anon_sym_STAR, - ACTIONS(10171), 1, - anon_sym_DOT, - ACTIONS(10173), 1, - anon_sym_QMARK, - STATE(8144), 1, - aux_sym_union_type_repeat1, - STATE(8234), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4609), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_EQ, - [371227] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8235), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4681), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [371250] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8236), 1, + STATE(8269), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9913), 10, + ACTIONS(10107), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642299,15 +648562,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [371273] = 4, + [373362] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8237), 1, + STATE(8270), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10032), 10, + ACTIONS(10109), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642318,40 +648581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [371296] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10165), 1, - anon_sym_PIPE, - ACTIONS(10167), 1, - anon_sym_LBRACK, - ACTIONS(10169), 1, - anon_sym_STAR, - ACTIONS(10171), 1, - anon_sym_DOT, - ACTIONS(10173), 1, - anon_sym_QMARK, - STATE(8144), 1, - aux_sym_union_type_repeat1, - STATE(8238), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4570), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_EQ, - [371331] = 4, + [373385] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8239), 1, + STATE(8271), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9931), 10, + ACTIONS(10111), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642362,15 +648600,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [371354] = 4, + [373408] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8240), 1, + STATE(8272), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9973), 10, + ACTIONS(9962), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642381,15 +648619,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [371377] = 4, + [373431] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8241), 1, + STATE(8273), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10028), 10, + ACTIONS(10113), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642400,40 +648638,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [371400] = 10, + [373454] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10140), 1, - anon_sym_LBRACK, - ACTIONS(10142), 1, - anon_sym_STAR, - ACTIONS(10146), 1, - anon_sym_DOT, - ACTIONS(10148), 1, - anon_sym_QMARK, - ACTIONS(10217), 1, - anon_sym_PIPE, - STATE(8210), 1, - aux_sym_union_type_repeat1, - STATE(8242), 1, + STATE(8274), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4685), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - [371435] = 4, + ACTIONS(4972), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + [373477] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8243), 1, + STATE(8275), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9935), 10, + ACTIONS(10115), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642444,15 +648676,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [371458] = 4, + [373500] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8244), 1, + STATE(8276), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10054), 10, + ACTIONS(10117), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642463,15 +648695,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [371481] = 4, + [373523] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8245), 1, + STATE(8277), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4883), 10, + ACTIONS(10119), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642482,74 +648714,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [371504] = 4, + [373546] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8246), 1, + ACTIONS(10247), 1, + anon_sym_PIPE, + ACTIONS(10261), 1, + anon_sym_LBRACK, + ACTIONS(10263), 1, + anon_sym_STAR, + ACTIONS(10265), 1, + anon_sym_DOT, + ACTIONS(10267), 1, + anon_sym_QMARK, + STATE(8225), 1, + aux_sym_union_type_repeat1, + STATE(8278), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4657), 10, + ACTIONS(4650), 4, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [371527] = 6, + anon_sym_EQ, + [373581] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10185), 1, - anon_sym_COMMA, - STATE(8247), 1, + STATE(8279), 1, sym_heredoc_body, - STATE(8311), 1, - aux_sym_forall_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4777), 8, + ACTIONS(9998), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [371554] = 4, + anon_sym_else, + [373604] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8248), 1, + STATE(8280), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4637), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(9958), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + [373627] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10249), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, + ACTIONS(10251), 1, anon_sym_STAR, + ACTIONS(10253), 1, anon_sym_PIPE, + ACTIONS(10255), 1, anon_sym_DOT, + ACTIONS(10257), 1, anon_sym_QMARK, - [371577] = 4, + STATE(8266), 1, + aux_sym_union_type_repeat1, + STATE(8281), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4607), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + [373662] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8249), 1, + STATE(8282), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9915), 10, + ACTIONS(9926), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642560,103 +648821,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [371600] = 4, + [373685] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8250), 1, + ACTIONS(10249), 1, + anon_sym_LBRACK, + ACTIONS(10251), 1, + anon_sym_STAR, + ACTIONS(10253), 1, + anon_sym_PIPE, + ACTIONS(10255), 1, + anon_sym_DOT, + ACTIONS(10257), 1, + anon_sym_QMARK, + STATE(8266), 1, + aux_sym_union_type_repeat1, + STATE(8283), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9929), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [371623] = 10, + ACTIONS(4621), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + [373720] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10140), 1, + ACTIONS(10202), 1, anon_sym_LBRACK, - ACTIONS(10142), 1, + ACTIONS(10204), 1, anon_sym_STAR, - ACTIONS(10146), 1, + ACTIONS(10206), 1, anon_sym_DOT, - ACTIONS(10148), 1, + ACTIONS(10208), 1, anon_sym_QMARK, - ACTIONS(10217), 1, + ACTIONS(10240), 1, anon_sym_PIPE, - STATE(8210), 1, + STATE(8218), 1, aux_sym_union_type_repeat1, - STATE(8251), 1, + STATE(8284), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4641), 4, + ACTIONS(4607), 4, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ_GT, - [371658] = 4, + [373755] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8252), 1, + ACTIONS(10269), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(8285), 2, + sym_heredoc_body, + aux_sym_forall_repeat1, + ACTIONS(4814), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [373780] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8225), 1, + aux_sym_union_type_repeat1, + STATE(8286), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4645), 10, + ACTIONS(4629), 9, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, + anon_sym_EQ, anon_sym_QMARK, - [371681] = 10, + [373805] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10187), 1, + ACTIONS(10272), 1, + anon_sym_LPAREN2, + STATE(8287), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4644), 9, + sym__line_break, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(10189), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_STAR, - ACTIONS(10191), 1, anon_sym_PIPE, - ACTIONS(10193), 1, anon_sym_DOT, - ACTIONS(10195), 1, anon_sym_QMARK, - STATE(8214), 1, + [373830] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10247), 1, + anon_sym_PIPE, + ACTIONS(10261), 1, + anon_sym_LBRACK, + ACTIONS(10263), 1, + anon_sym_STAR, + ACTIONS(10265), 1, + anon_sym_DOT, + ACTIONS(10267), 1, + anon_sym_QMARK, + STATE(8225), 1, aux_sym_union_type_repeat1, - STATE(8253), 1, + STATE(8288), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4613), 4, - sym__start_of_brace_block, + ACTIONS(4625), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_GT, - anon_sym_do, - [371716] = 4, + anon_sym_EQ, + [373865] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8254), 1, + STATE(8289), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4633), 10, + ACTIONS(4644), 10, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, @@ -642667,34 +648975,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - [371739] = 4, + [373888] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8255), 1, + ACTIONS(10247), 1, + anon_sym_PIPE, + ACTIONS(10261), 1, + anon_sym_LBRACK, + ACTIONS(10263), 1, + anon_sym_STAR, + ACTIONS(10265), 1, + anon_sym_DOT, + ACTIONS(10267), 1, + anon_sym_QMARK, + STATE(8225), 1, + aux_sym_union_type_repeat1, + STATE(8290), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4669), 10, - sym__line_break, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(4607), 4, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_then, - [371762] = 4, + anon_sym_EQ, + [373923] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8256), 1, + STATE(8291), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9854), 10, + ACTIONS(10105), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642705,15 +649019,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [371785] = 4, + [373946] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8257), 1, + STATE(8292), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9981), 10, + ACTIONS(10107), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642724,34 +649038,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [371808] = 4, + [373969] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8258), 1, + ACTIONS(10212), 1, + anon_sym_LBRACK, + ACTIONS(10214), 1, + anon_sym_STAR, + ACTIONS(10216), 1, + anon_sym_PIPE, + ACTIONS(10218), 1, + anon_sym_DOT, + ACTIONS(10220), 1, + anon_sym_QMARK, + STATE(8189), 1, + aux_sym_union_type_repeat1, + STATE(8293), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9933), 10, + ACTIONS(4640), 4, sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [371831] = 4, + anon_sym_COMMA, + anon_sym_DASH_GT, + [374004] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8259), 1, + STATE(8294), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9949), 10, + ACTIONS(10109), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642762,34 +649082,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [371854] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8260), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4669), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [371877] = 4, + [374027] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8261), 1, + STATE(8295), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10030), 10, + ACTIONS(10111), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642800,15 +649101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [371900] = 4, + [374050] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8262), 1, + STATE(8296), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10078), 10, + ACTIONS(9962), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642819,15 +649120,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [371923] = 4, + [374073] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8263), 1, + STATE(8297), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10064), 10, + ACTIONS(10113), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642838,15 +649139,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [371946] = 4, + [374096] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8264), 1, + STATE(8298), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10003), 10, + ACTIONS(10048), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642857,34 +649158,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [371969] = 4, + [374119] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8265), 1, + ACTIONS(10274), 1, + anon_sym_LPAREN2, + STATE(8299), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10040), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [371992] = 4, + ACTIONS(4644), 9, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_do, + [374144] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8266), 1, + STATE(8300), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9917), 10, + ACTIONS(10050), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642895,15 +649197,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372015] = 4, + [374167] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8267), 1, + STATE(8301), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10080), 10, + ACTIONS(10052), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642914,38 +649216,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372038] = 8, + [374190] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10150), 1, - sym__modifier_if_keyword, - ACTIONS(10152), 1, - sym__modifier_unless_keyword, - ACTIONS(10154), 1, - sym__modifier_rescue_keyword, - ACTIONS(10156), 1, - sym__modifier_ensure_keyword, - STATE(8268), 1, + STATE(8302), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9975), 6, + ACTIONS(10056), 10, sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372069] = 4, + [374213] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8269), 1, + STATE(8303), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10007), 10, + ACTIONS(10060), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642956,15 +649254,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372092] = 4, + [374236] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8270), 1, + STATE(8304), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4919), 10, + ACTIONS(10062), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642975,15 +649273,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372115] = 4, + [374259] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8271), 1, + STATE(8305), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10012), 10, + ACTIONS(10064), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -642994,15 +649292,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372138] = 4, + [374282] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8272), 1, + STATE(8306), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10018), 10, + ACTIONS(10066), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643013,34 +649311,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372161] = 4, + [374305] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8273), 1, + ACTIONS(10249), 1, + anon_sym_LBRACK, + ACTIONS(10251), 1, + anon_sym_STAR, + ACTIONS(10253), 1, + anon_sym_PIPE, + ACTIONS(10255), 1, + anon_sym_DOT, + ACTIONS(10257), 1, + anon_sym_QMARK, + STATE(8266), 1, + aux_sym_union_type_repeat1, + STATE(8307), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10020), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [372184] = 4, + ACTIONS(4625), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + [374340] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8274), 1, + STATE(8308), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9953), 10, + ACTIONS(10052), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643051,15 +649355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372207] = 4, + [374363] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8275), 1, + STATE(8309), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9959), 10, + ACTIONS(10056), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643070,15 +649374,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372230] = 4, + [374386] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8276), 1, + STATE(8310), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4625), 10, + ACTIONS(4690), 10, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LBRACK, @@ -643089,15 +649393,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - [372253] = 4, + [374409] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8277), 1, + STATE(8311), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4706), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + [374432] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8312), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9929), 10, + ACTIONS(10129), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643108,15 +649431,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372276] = 4, + [374455] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8278), 1, + STATE(8313), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9933), 10, + ACTIONS(10131), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643127,15 +649450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372299] = 4, + [374478] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8279), 1, + STATE(8314), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9961), 10, + ACTIONS(10133), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643146,15 +649469,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372322] = 4, + [374501] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8280), 1, + STATE(8315), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9965), 10, + ACTIONS(10135), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643165,15 +649488,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372345] = 4, + [374524] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8281), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10233), 1, + anon_sym_def, + ACTIONS(10276), 1, + anon_sym_module, + ACTIONS(10278), 1, + anon_sym_abstract, + ACTIONS(10280), 1, + anon_sym_class, + ACTIONS(10282), 1, + anon_sym_struct, + ACTIONS(10284), 1, + anon_sym_alias, + STATE(155), 1, + sym__base_method_def, + STATE(8316), 1, + sym_heredoc_body, + STATE(11700), 1, + sym_constant, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [374565] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8317), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4927), 10, + ACTIONS(4984), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643184,15 +649535,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372368] = 4, + [374588] = 13, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8282), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(10233), 1, + anon_sym_def, + ACTIONS(10286), 1, + anon_sym_module, + ACTIONS(10288), 1, + anon_sym_abstract, + ACTIONS(10290), 1, + anon_sym_class, + ACTIONS(10292), 1, + anon_sym_struct, + ACTIONS(10294), 1, + anon_sym_alias, + STATE(158), 1, + sym__base_method_def, + STATE(8318), 1, + sym_heredoc_body, + STATE(10599), 1, + sym_constant, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [374629] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8266), 1, + aux_sym_union_type_repeat1, + STATE(8319), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4939), 10, + ACTIONS(4629), 9, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_do, + [374654] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10296), 1, + anon_sym_PIPE, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(8320), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4629), 8, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_do, + [374679] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8321), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10123), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643203,15 +649622,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372391] = 4, + [374702] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8283), 1, + STATE(8322), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4863), 10, + ACTIONS(10125), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643222,15 +649641,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372414] = 4, + [374725] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8284), 1, + STATE(8323), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10042), 10, + ACTIONS(10127), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643241,15 +649660,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372437] = 4, + [374748] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8285), 1, + STATE(8324), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10044), 10, + ACTIONS(10137), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643260,15 +649679,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372460] = 4, + [374771] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8286), 1, + ACTIONS(10194), 1, + sym__modifier_if_keyword, + ACTIONS(10196), 1, + sym__modifier_unless_keyword, + ACTIONS(10198), 1, + sym__modifier_rescue_keyword, + ACTIONS(10200), 1, + sym__modifier_ensure_keyword, + STATE(8325), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10139), 6, + sym__line_break, + sym__regular_rescue_keyword, + sym__regular_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + [374802] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8326), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4682), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + [374825] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8327), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4674), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + [374848] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10202), 1, + anon_sym_LBRACK, + ACTIONS(10204), 1, + anon_sym_STAR, + ACTIONS(10206), 1, + anon_sym_DOT, + ACTIONS(10208), 1, + anon_sym_QMARK, + ACTIONS(10240), 1, + anon_sym_PIPE, + STATE(8218), 1, + aux_sym_union_type_repeat1, + STATE(8328), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4686), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + [374883] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8329), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4710), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + [374906] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8330), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4698), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + [374929] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8331), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9967), 10, + ACTIONS(9964), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643279,15 +649822,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372483] = 4, + [374952] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8287), 1, + STATE(8332), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10003), 10, + ACTIONS(9966), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643298,15 +649841,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372506] = 4, + [374975] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8288), 1, + STATE(8333), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9955), 10, + ACTIONS(9968), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643317,15 +649860,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372529] = 4, + [374998] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8289), 1, + STATE(8334), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6790), 10, + ACTIONS(9970), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643336,15 +649879,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372552] = 4, + [375021] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8290), 1, + STATE(8335), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10046), 10, + ACTIONS(9972), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643355,40 +649898,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372575] = 10, + [375044] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10140), 1, - anon_sym_LBRACK, - ACTIONS(10142), 1, - anon_sym_STAR, - ACTIONS(10146), 1, - anon_sym_DOT, - ACTIONS(10148), 1, - anon_sym_QMARK, - ACTIONS(10217), 1, - anon_sym_PIPE, - STATE(8210), 1, - aux_sym_union_type_repeat1, - STATE(8291), 1, + STATE(8336), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4570), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - [372610] = 4, + ACTIONS(9974), 10, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + [375067] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8292), 1, + STATE(8337), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9949), 10, + ACTIONS(9976), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643399,15 +649936,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372633] = 4, + [375090] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8293), 1, + STATE(8338), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9917), 10, + ACTIONS(9978), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643418,15 +649955,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372656] = 4, + [375113] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8294), 1, + STATE(8339), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9923), 10, + ACTIONS(9980), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643437,15 +649974,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372679] = 4, + [375136] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8295), 1, + STATE(8340), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9971), 10, + ACTIONS(9982), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643456,15 +649993,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372702] = 4, + [375159] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8296), 1, + STATE(8341), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9925), 10, + ACTIONS(9984), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643475,15 +650012,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372725] = 4, + [375182] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8297), 1, + ACTIONS(10202), 1, + anon_sym_LBRACK, + ACTIONS(10204), 1, + anon_sym_STAR, + ACTIONS(10206), 1, + anon_sym_DOT, + ACTIONS(10208), 1, + anon_sym_QMARK, + ACTIONS(10240), 1, + anon_sym_PIPE, + STATE(8218), 1, + aux_sym_union_type_repeat1, + STATE(8342), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10048), 10, + ACTIONS(4650), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + [375217] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8343), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4988), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643494,15 +650056,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372748] = 4, + [375240] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8298), 1, + STATE(8344), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9977), 10, + ACTIONS(4952), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643513,15 +650075,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372771] = 4, + [375263] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8299), 1, + STATE(8345), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9979), 10, + ACTIONS(10018), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643532,15 +650094,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372794] = 4, + [375286] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8300), 1, + STATE(8346), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10050), 10, + ACTIONS(4960), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643551,15 +650113,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372817] = 4, + [375309] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8301), 1, + STATE(8218), 1, + aux_sym_union_type_repeat1, + STATE(8347), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4629), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + [375334] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8348), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9903), 10, + ACTIONS(9972), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643570,15 +650152,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372840] = 4, + [375357] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8302), 1, + STATE(8349), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9969), 10, + ACTIONS(9974), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643589,15 +650171,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372863] = 4, + [375380] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8303), 1, + STATE(8350), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4943), 10, + ACTIONS(9976), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643608,15 +650190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372886] = 4, + [375403] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8304), 1, + STATE(8351), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4947), 10, + ACTIONS(9978), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643627,36 +650209,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372909] = 6, + [375426] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8352), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4702), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + [375449] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10179), 1, + ACTIONS(10249), 1, + anon_sym_LBRACK, + ACTIONS(10251), 1, + anon_sym_STAR, + ACTIONS(10253), 1, anon_sym_PIPE, - STATE(8200), 1, + ACTIONS(10255), 1, + anon_sym_DOT, + ACTIONS(10257), 1, + anon_sym_QMARK, + STATE(8266), 1, aux_sym_union_type_repeat1, - STATE(8305), 1, + STATE(8353), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4584), 8, - sym__line_break, - anon_sym_SEMI, + ACTIONS(4640), 4, + sym__start_of_brace_block, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + [375484] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8354), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4714), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + [375507] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8355), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4722), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_DASH_GT, anon_sym_STAR, + anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - [372936] = 4, + [375530] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8306), 1, + STATE(8356), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4694), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + [375553] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8357), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9919), 10, + ACTIONS(9990), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643667,15 +650329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372959] = 4, + [375576] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8307), 1, + STATE(8358), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9957), 10, + ACTIONS(9992), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643686,15 +650348,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [372982] = 4, + [375599] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8308), 1, + STATE(8359), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4903), 10, + ACTIONS(9994), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643705,15 +650367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [373005] = 4, + [375622] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8309), 1, + STATE(8360), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9987), 10, + ACTIONS(9996), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -643724,561 +650386,613 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_end, anon_sym_else, - [373028] = 13, + [375645] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(10213), 1, - anon_sym_def, - ACTIONS(10229), 1, - anon_sym_module, - ACTIONS(10231), 1, - anon_sym_abstract, - ACTIONS(10233), 1, - anon_sym_class, - ACTIONS(10235), 1, - anon_sym_struct, - ACTIONS(10237), 1, - anon_sym_alias, - STATE(200), 1, - sym__base_method_def, - STATE(8310), 1, + STATE(8361), 1, sym_heredoc_body, - STATE(11332), 1, - sym_constant, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [373069] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10239), 1, - anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8311), 2, - sym_heredoc_body, - aux_sym_forall_repeat1, - ACTIONS(4783), 8, + ACTIONS(9998), 10, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, + sym__regular_rescue_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [373094] = 5, + anon_sym_else, + [375668] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10242), 1, - anon_sym_LPAREN2, - STATE(8312), 1, + STATE(8362), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4599), 9, + ACTIONS(6840), 10, sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__regular_rescue_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, anon_sym_SEMI, + anon_sym_end, + anon_sym_else, + [375691] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10212), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, + ACTIONS(10214), 1, anon_sym_STAR, + ACTIONS(10216), 1, anon_sym_PIPE, + ACTIONS(10218), 1, anon_sym_DOT, + ACTIONS(10220), 1, anon_sym_QMARK, - [373119] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8313), 1, + STATE(8189), 1, + aux_sym_union_type_repeat1, + STATE(8363), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4871), 10, + ACTIONS(4650), 4, sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [373142] = 10, + anon_sym_COMMA, + anon_sym_DASH_GT, + [375726] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10140), 1, + ACTIONS(10247), 1, + anon_sym_PIPE, + ACTIONS(10261), 1, anon_sym_LBRACK, - ACTIONS(10142), 1, + ACTIONS(10263), 1, anon_sym_STAR, - ACTIONS(10146), 1, + ACTIONS(10265), 1, anon_sym_DOT, - ACTIONS(10148), 1, + ACTIONS(10267), 1, anon_sym_QMARK, - ACTIONS(10217), 1, - anon_sym_PIPE, - STATE(8210), 1, + STATE(8225), 1, aux_sym_union_type_repeat1, - STATE(8314), 1, + STATE(8364), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4605), 4, + ACTIONS(4621), 4, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, - [373177] = 10, + anon_sym_DASH_GT, + anon_sym_EQ, + [375761] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10299), 1, + anon_sym_RPAREN, + STATE(8365), 1, + sym_heredoc_body, + STATE(10273), 1, + sym_named_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [375795] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10175), 1, + STATE(8366), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4690), 9, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(10177), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_STAR, - ACTIONS(10179), 1, anon_sym_PIPE, - ACTIONS(10181), 1, anon_sym_DOT, - ACTIONS(10183), 1, + anon_sym_EQ, anon_sym_QMARK, - STATE(8305), 1, - aux_sym_union_type_repeat1, - STATE(8315), 1, + [375817] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8367), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4605), 4, - sym__line_break, - anon_sym_SEMI, + ACTIONS(4706), 9, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, - [373212] = 4, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_QMARK, + [375839] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8316), 1, + STATE(8368), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9991), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [373235] = 5, + ACTIONS(4666), 9, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_QMARK, + [375861] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10244), 1, - anon_sym_PIPE, + STATE(8369), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8317), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4588), 8, + ACTIONS(4654), 9, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_DASH_GT, anon_sym_STAR, + anon_sym_PIPE, anon_sym_DOT, + anon_sym_EQ, anon_sym_QMARK, - [373260] = 5, + [375883] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10247), 1, - anon_sym_PIPE, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10301), 1, + anon_sym_RBRACE, + STATE(8370), 1, + sym_heredoc_body, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8318), 2, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [375917] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8371), 1, sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4588), 8, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4658), 9, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_STAR, + anon_sym_PIPE, anon_sym_DOT, anon_sym_EQ, anon_sym_QMARK, - [373285] = 4, + [375939] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8319), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10303), 1, + anon_sym_RBRACE, + STATE(8372), 1, sym_heredoc_body, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10016), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [373308] = 4, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [375973] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8320), 1, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10305), 1, + sym_identifier, + ACTIONS(10307), 1, + anon_sym_RBRACE, + STATE(8373), 1, sym_heredoc_body, + STATE(10453), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4771), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [373331] = 4, + ACTIONS(10309), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11360), 2, + sym_string, + sym_string_percent_literal, + [376007] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8374), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4718), 9, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_QMARK, + [376029] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8375), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4698), 9, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_QMARK, + [376051] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8321), 1, + STATE(8376), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10022), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [373354] = 4, + ACTIONS(4682), 9, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_QMARK, + [376073] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8322), 1, + STATE(8377), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9951), 10, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__regular_rescue_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_else, - [373377] = 10, + ACTIONS(4674), 9, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_QMARK, + [376095] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10250), 1, + ACTIONS(10311), 1, anon_sym_RBRACE, - STATE(8323), 1, + STATE(8378), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [373411] = 10, + [376129] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10252), 1, - anon_sym_RBRACE, - STATE(8324), 1, + STATE(8379), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [373445] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10167), 1, + ACTIONS(4710), 9, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(10169), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_STAR, - ACTIONS(10171), 1, + anon_sym_PIPE, anon_sym_DOT, - ACTIONS(10173), 1, + anon_sym_EQ, anon_sym_QMARK, - ACTIONS(10254), 1, - anon_sym_PIPE, - STATE(8325), 1, + [376151] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8380), 1, sym_heredoc_body, - STATE(8471), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4609), 3, + ACTIONS(4702), 9, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, anon_sym_EQ, - [373479] = 6, + anon_sym_QMARK, + [376173] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8326), 1, + STATE(8381), 1, sym_heredoc_body, - STATE(8501), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(4836), 6, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_end, - [373505] = 10, + ACTIONS(4714), 9, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_QMARK, + [376195] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10256), 1, + ACTIONS(10313), 1, anon_sym_RBRACE, - STATE(8327), 1, + STATE(8382), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [373539] = 10, + [376229] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8383), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4722), 9, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_QMARK, + [376251] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - ACTIONS(10260), 1, + ACTIONS(10315), 1, anon_sym_RBRACE, - STATE(8328), 1, + STATE(8384), 1, sym_heredoc_body, - STATE(10409), 1, - sym_named_expr, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [373573] = 6, + [376285] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8329), 1, + STATE(8385), 1, sym_heredoc_body, - STATE(8757), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, + ACTIONS(4682), 9, sym__line_break, anon_sym_SEMI, - ACTIONS(4824), 6, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_end, - [373599] = 10, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + [376307] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10264), 1, + ACTIONS(10317), 1, anon_sym_RBRACE, - STATE(8330), 1, + STATE(8386), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [373633] = 10, + [376341] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10167), 1, - anon_sym_LBRACK, - ACTIONS(10169), 1, - anon_sym_STAR, - ACTIONS(10171), 1, - anon_sym_DOT, - ACTIONS(10173), 1, - anon_sym_QMARK, - ACTIONS(10254), 1, - anon_sym_PIPE, - STATE(8331), 1, + STATE(8387), 1, sym_heredoc_body, - STATE(8471), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4570), 3, - anon_sym_RPAREN, + ACTIONS(4674), 9, + sym__line_break, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_EQ, - [373667] = 10, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + [376363] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10266), 1, + ACTIONS(10319), 1, anon_sym_RBRACE, - STATE(8332), 1, + STATE(8388), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [373701] = 10, + [376397] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10268), 1, + ACTIONS(10321), 1, anon_sym_RBRACE, - STATE(8333), 1, + STATE(8389), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [373735] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8334), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4621), 9, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_QMARK, - [373757] = 4, + [376431] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8335), 1, + STATE(8390), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4681), 9, + ACTIONS(4710), 9, sym__line_break, anon_sym_SEMI, anon_sym_LBRACK, @@ -644288,563 +651002,551 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - [373779] = 10, + [376453] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10270), 1, + ACTIONS(10323), 1, anon_sym_RBRACE, - STATE(8336), 1, + STATE(8391), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [373813] = 10, + [376487] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10167), 1, - anon_sym_LBRACK, - ACTIONS(10169), 1, - anon_sym_STAR, - ACTIONS(10171), 1, - anon_sym_DOT, - ACTIONS(10173), 1, - anon_sym_QMARK, - ACTIONS(10254), 1, - anon_sym_PIPE, - STATE(8337), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10325), 1, + anon_sym_RBRACE, + STATE(8392), 1, sym_heredoc_body, - STATE(8471), 1, - aux_sym_union_type_repeat1, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4685), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [373847] = 6, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [376521] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8338), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10327), 1, + anon_sym_RBRACE, + STATE(8393), 1, sym_heredoc_body, - STATE(8508), 1, - sym__terminator, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(4847), 6, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_end, - [373873] = 10, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [376555] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - ACTIONS(10272), 1, + ACTIONS(10329), 1, anon_sym_RBRACE, - STATE(8339), 1, + STATE(8394), 1, sym_heredoc_body, - STATE(10409), 1, - sym_named_expr, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [373907] = 10, + [376589] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10274), 1, + ACTIONS(10331), 1, anon_sym_RBRACE, - STATE(8340), 1, + STATE(8395), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [373941] = 10, + [376623] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(9681), 1, - anon_sym_RPAREN, - STATE(8341), 1, + ACTIONS(10333), 1, + anon_sym_RBRACE, + STATE(8396), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [373975] = 10, + [376657] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10167), 1, - anon_sym_LBRACK, - ACTIONS(10169), 1, - anon_sym_STAR, - ACTIONS(10171), 1, - anon_sym_DOT, - ACTIONS(10173), 1, - anon_sym_QMARK, - ACTIONS(10254), 1, - anon_sym_PIPE, - STATE(8342), 1, + ACTIONS(9908), 1, + sym_identifier, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(10335), 1, + anon_sym_RPAREN, + STATE(8397), 1, sym_heredoc_body, - STATE(8471), 1, - aux_sym_union_type_repeat1, + STATE(9074), 1, + sym_annotation, + STATE(9207), 1, + aux_sym_param_repeat1, + STATE(10148), 1, + sym_param, + STATE(11396), 1, + sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4605), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [374009] = 5, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + [376693] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8343), 1, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10305), 1, + sym_identifier, + ACTIONS(10337), 1, + anon_sym_RBRACE, + STATE(8398), 1, sym_heredoc_body, - STATE(8471), 1, - aux_sym_union_type_repeat1, + STATE(10453), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4588), 8, - anon_sym_RPAREN, + ACTIONS(10309), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11360), 2, + sym_string, + sym_string_percent_literal, + [376727] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8399), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4710), 9, + sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, - anon_sym_EQ, anon_sym_QMARK, - [374033] = 11, + anon_sym_do, + [376749] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9856), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(10276), 1, - anon_sym_RPAREN, - STATE(8344), 1, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10339), 1, + anon_sym_RBRACE, + STATE(8400), 1, sym_heredoc_body, - STATE(9058), 1, - sym_annotation, - STATE(9144), 1, - aux_sym_param_repeat1, - STATE(9955), 1, - sym_param, - STATE(10895), 1, - sym_proc_param_list, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - [374069] = 6, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [376783] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8345), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10341), 1, + anon_sym_RBRACE, + STATE(8401), 1, sym_heredoc_body, - STATE(8761), 1, - sym__terminator, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(4828), 6, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_end, - [374095] = 10, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [376817] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - ACTIONS(10278), 1, + ACTIONS(10343), 1, anon_sym_RBRACE, - STATE(8346), 1, + STATE(8402), 1, sym_heredoc_body, - STATE(10409), 1, - sym_named_expr, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [374129] = 4, + [376851] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8347), 1, + STATE(8403), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4665), 9, - anon_sym_RPAREN, + ACTIONS(4714), 9, + sym__line_break, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, - anon_sym_EQ, anon_sym_QMARK, - [374151] = 4, + [376873] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8348), 1, + STATE(8404), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4677), 9, - anon_sym_RPAREN, + ACTIONS(4722), 9, + sym__line_break, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, - anon_sym_EQ, anon_sym_QMARK, - [374173] = 10, + [376895] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - ACTIONS(10280), 1, + ACTIONS(10345), 1, anon_sym_RBRACE, - STATE(8349), 1, + STATE(8405), 1, sym_heredoc_body, - STATE(10409), 1, - sym_named_expr, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [374207] = 11, + [376929] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9856), 1, - sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(10282), 1, - anon_sym_RPAREN, - STATE(8350), 1, + STATE(8406), 1, sym_heredoc_body, - STATE(9058), 1, - sym_annotation, - STATE(9144), 1, - aux_sym_param_repeat1, - STATE(9955), 1, - sym_param, - STATE(10822), 1, - sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - [374243] = 6, + ACTIONS(4698), 9, + sym__line_break, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + [376951] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8351), 1, + STATE(8407), 1, sym_heredoc_body, - STATE(8767), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(4794), 6, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_end, - [374269] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10167), 1, + ACTIONS(4678), 9, + sym__start_of_brace_block, anon_sym_LBRACK, - ACTIONS(10169), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_STAR, - ACTIONS(10171), 1, + anon_sym_PIPE, anon_sym_DOT, - ACTIONS(10173), 1, anon_sym_QMARK, - ACTIONS(10254), 1, - anon_sym_PIPE, - STATE(8352), 1, + anon_sym_do, + [376973] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8408), 1, sym_heredoc_body, - STATE(8471), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4641), 3, - anon_sym_RPAREN, + ACTIONS(4662), 9, + sym__start_of_brace_block, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_EQ, - [374303] = 10, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_do, + [376995] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, + ACTIONS(10305), 1, sym_identifier, - ACTIONS(10284), 1, + ACTIONS(10347), 1, anon_sym_RBRACE, - STATE(8353), 1, + STATE(8409), 1, sym_heredoc_body, - STATE(10409), 1, + STATE(10453), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [374337] = 6, + [377029] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8354), 1, - sym_heredoc_body, - STATE(8777), 1, + ACTIONS(10351), 1, + sym__modifier_if_keyword, + ACTIONS(10353), 1, + sym__modifier_unless_keyword, + ACTIONS(10355), 1, + sym__modifier_rescue_keyword, + ACTIONS(10357), 1, + sym__modifier_ensure_keyword, + STATE(2130), 1, sym__terminator, + STATE(8410), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(4820), 6, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, + ACTIONS(1827), 2, sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, anon_sym_end, - [374363] = 10, + ACTIONS(10349), 2, + sym__line_break, + anon_sym_SEMI, + [377063] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10286), 1, + ACTIONS(10305), 1, + sym_identifier, + ACTIONS(10359), 1, anon_sym_RBRACE, - STATE(8355), 1, + STATE(8411), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, + STATE(10453), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [374397] = 10, + [377097] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10288), 1, + ACTIONS(10361), 1, anon_sym_RBRACE, - STATE(8356), 1, + STATE(8412), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [374431] = 10, + [377131] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10290), 1, - anon_sym_RBRACE, - STATE(8357), 1, + STATE(8413), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [374465] = 10, + ACTIONS(4702), 9, + sym__line_break, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + [377153] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10292), 1, + ACTIONS(10363), 1, anon_sym_RBRACE, - STATE(8358), 1, + STATE(8414), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [374499] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9856), 1, - sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(10294), 1, - anon_sym_RPAREN, - STATE(8359), 1, - sym_heredoc_body, - STATE(9058), 1, - sym_annotation, - STATE(9144), 1, - aux_sym_param_repeat1, - STATE(9955), 1, - sym_param, - STATE(11037), 1, - sym_proc_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - [374535] = 4, + [377187] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8360), 1, + STATE(8415), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4629), 9, - sym__line_break, - anon_sym_SEMI, + ACTIONS(4674), 9, + sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, @@ -644852,112 +651554,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - [374557] = 10, + anon_sym_do, + [377209] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, + ACTIONS(10305), 1, sym_identifier, - ACTIONS(10296), 1, + ACTIONS(10365), 1, anon_sym_RBRACE, - STATE(8361), 1, + STATE(8416), 1, sym_heredoc_body, - STATE(10409), 1, + STATE(10453), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11884), 2, - sym_string, - sym_string_percent_literal, - [374591] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10298), 1, - anon_sym_RBRACE, - STATE(8362), 1, - sym_heredoc_body, - STATE(10248), 1, - sym_named_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8263), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [374625] = 10, + [377243] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, + ACTIONS(10305), 1, sym_identifier, - ACTIONS(10300), 1, + ACTIONS(10367), 1, anon_sym_RBRACE, - STATE(8363), 1, + STATE(8417), 1, sym_heredoc_body, - STATE(10409), 1, + STATE(10453), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [374659] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9856), 1, - sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(10302), 1, - anon_sym_RPAREN, - STATE(8364), 1, - sym_heredoc_body, - STATE(9058), 1, - sym_annotation, - STATE(9144), 1, - aux_sym_param_repeat1, - STATE(9955), 1, - sym_param, - STATE(11072), 1, - sym_proc_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - [374695] = 4, + [377277] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8365), 1, + STATE(8418), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4673), 9, + ACTIONS(4694), 9, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, @@ -644967,17 +651621,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK, anon_sym_do, - [374717] = 4, + [377299] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8366), 1, + STATE(8419), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4661), 9, - sym__line_break, - anon_sym_SEMI, + ACTIONS(4682), 9, + sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, @@ -644985,403 +651638,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - [374739] = 10, + anon_sym_do, + [377321] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10304), 1, + ACTIONS(10305), 1, + sym_identifier, + ACTIONS(10369), 1, anon_sym_RBRACE, - STATE(8367), 1, + STATE(8420), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, + STATE(10453), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [374773] = 6, + [377355] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8368), 1, + ACTIONS(9908), 1, + sym_identifier, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(10371), 1, + anon_sym_RPAREN, + STATE(8421), 1, sym_heredoc_body, - STATE(8779), 1, - sym__terminator, + STATE(9074), 1, + sym_annotation, + STATE(9207), 1, + aux_sym_param_repeat1, + STATE(10148), 1, + sym_param, + STATE(10851), 1, + sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(4840), 6, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_end, - [374799] = 10, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + [377391] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10306), 1, + ACTIONS(10305), 1, + sym_identifier, + ACTIONS(10373), 1, anon_sym_RBRACE, - STATE(8369), 1, + STATE(8422), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, + STATE(10453), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [374833] = 10, + [377425] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10308), 1, + ACTIONS(10375), 1, anon_sym_RBRACE, - STATE(8370), 1, + STATE(8423), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [374867] = 10, + [377459] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10310), 1, + ACTIONS(10377), 1, anon_sym_RBRACE, - STATE(8371), 1, + STATE(8424), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [374901] = 6, + [377493] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8372), 1, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10305), 1, + sym_identifier, + ACTIONS(10379), 1, + anon_sym_RBRACE, + STATE(8425), 1, sym_heredoc_body, - STATE(8783), 1, - sym__terminator, + STATE(10453), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(4851), 6, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_end, - [374927] = 10, + ACTIONS(10309), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11360), 2, + sym_string, + sym_string_percent_literal, + [377527] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10312), 1, + ACTIONS(10305), 1, + sym_identifier, + ACTIONS(10381), 1, anon_sym_RBRACE, - STATE(8373), 1, + STATE(8426), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, + STATE(10453), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [374961] = 10, + [377561] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10314), 1, + ACTIONS(10305), 1, + sym_identifier, + ACTIONS(10383), 1, anon_sym_RBRACE, - STATE(8374), 1, + STATE(8427), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, + STATE(10453), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [374995] = 4, + [377595] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8375), 1, + STATE(8428), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4681), 9, - anon_sym_RPAREN, + ACTIONS(4706), 9, + sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, - anon_sym_EQ, anon_sym_QMARK, - [375017] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9856), 1, - sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(10316), 1, - anon_sym_RPAREN, - STATE(8376), 1, - sym_heredoc_body, - STATE(9058), 1, - sym_annotation, - STATE(9144), 1, - aux_sym_param_repeat1, - STATE(9955), 1, - sym_param, - STATE(11521), 1, - sym_proc_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - [375053] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8377), 1, - sym_heredoc_body, - STATE(8513), 1, - sym__terminator, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10096), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(4855), 6, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_end, - [375079] = 10, + anon_sym_do, + [377617] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10318), 1, + ACTIONS(10385), 1, anon_sym_RBRACE, - STATE(8378), 1, + STATE(8429), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [375113] = 10, + [377651] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10320), 1, - anon_sym_RBRACE, - STATE(8379), 1, + STATE(8430), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [375147] = 10, + ACTIONS(4666), 9, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_do, + [377673] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10322), 1, - anon_sym_RPAREN, - STATE(8380), 1, + ACTIONS(10387), 1, + anon_sym_RBRACE, + STATE(8431), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [375181] = 4, + [377707] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8381), 1, + STATE(8432), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4669), 9, - anon_sym_RPAREN, + ACTIONS(4654), 9, + sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, - anon_sym_EQ, anon_sym_QMARK, - [375203] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9856), 1, - sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(10324), 1, - anon_sym_RPAREN, - STATE(8382), 1, - sym_heredoc_body, - STATE(9058), 1, - sym_annotation, - STATE(9144), 1, - aux_sym_param_repeat1, - STATE(9955), 1, - sym_param, - STATE(11107), 1, - sym_proc_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - [375239] = 10, + anon_sym_do, + [377729] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10326), 1, + ACTIONS(10389), 1, anon_sym_RBRACE, - STATE(8383), 1, + STATE(8433), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [375273] = 4, + [377763] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8384), 1, + STATE(8434), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4625), 9, - sym__line_break, - anon_sym_SEMI, + ACTIONS(4658), 9, + sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, @@ -645389,15 +651975,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - [375295] = 4, + anon_sym_do, + [377785] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8385), 1, + STATE(8435), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4653), 9, + ACTIONS(4718), 9, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, @@ -645407,39 +651994,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK, anon_sym_do, - [375317] = 10, + [377807] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10328), 1, - anon_sym_RBRACE, - STATE(8386), 1, + STATE(8436), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [375351] = 4, + ACTIONS(4678), 9, + sym__line_break, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + [377829] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8387), 1, + STATE(8437), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4657), 9, + ACTIONS(4662), 9, sym__line_break, anon_sym_SEMI, anon_sym_LBRACK, @@ -645449,215 +652030,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - [375373] = 10, + [377851] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8438), 1, + sym_heredoc_body, + STATE(8638), 1, + sym__terminator, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10141), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4892), 6, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + [377877] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9890), 1, + anon_sym_LPAREN2, + STATE(8439), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9958), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [377901] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, + ACTIONS(10305), 1, sym_identifier, - ACTIONS(10330), 1, + ACTIONS(10391), 1, anon_sym_RBRACE, - STATE(8388), 1, + STATE(8440), 1, sym_heredoc_body, - STATE(10409), 1, + STATE(10453), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [375407] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9856), 1, - sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(10332), 1, - anon_sym_RPAREN, - STATE(8389), 1, - sym_heredoc_body, - STATE(9058), 1, - sym_annotation, - STATE(9144), 1, - aux_sym_param_repeat1, - STATE(9955), 1, - sym_param, - STATE(10931), 1, - sym_proc_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - [375443] = 4, + [377935] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8390), 1, + STATE(8441), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4599), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_do, - [375465] = 10, + ACTIONS(4785), 9, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + anon_sym_forall, + [377957] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, + ACTIONS(10305), 1, sym_identifier, - ACTIONS(10334), 1, + ACTIONS(10393), 1, anon_sym_RBRACE, - STATE(8391), 1, + STATE(8442), 1, sym_heredoc_body, - STATE(10409), 1, + STATE(10453), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [375499] = 10, + [377991] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9890), 1, + anon_sym_LPAREN2, + STATE(8443), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9926), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [378015] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10336), 1, + ACTIONS(10395), 1, anon_sym_RBRACE, - STATE(8392), 1, + STATE(8444), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [375533] = 11, + [378049] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9856), 1, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10305), 1, sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(10338), 1, - anon_sym_RPAREN, - STATE(8393), 1, - sym_heredoc_body, - STATE(9058), 1, - sym_annotation, - STATE(9144), 1, - aux_sym_param_repeat1, - STATE(9955), 1, - sym_param, - STATE(10859), 1, - sym_proc_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - [375569] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8394), 1, + ACTIONS(10397), 1, + anon_sym_RBRACE, + STATE(8445), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4629), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_do, - [375591] = 10, + STATE(10453), 1, + sym_named_expr, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10309), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11360), 2, + sym_string, + sym_string_percent_literal, + [378083] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10340), 1, + ACTIONS(10399), 1, anon_sym_RBRACE, - STATE(8395), 1, + STATE(8446), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [375625] = 4, + [378117] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8396), 1, + ACTIONS(9908), 1, + sym_identifier, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(10401), 1, + anon_sym_RPAREN, + STATE(8447), 1, sym_heredoc_body, + STATE(9074), 1, + sym_annotation, + STATE(9207), 1, + aux_sym_param_repeat1, + STATE(10148), 1, + sym_param, + STATE(10832), 1, + sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4625), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_do, - [375647] = 4, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + [378153] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8397), 1, + STATE(8448), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4677), 9, + ACTIONS(4690), 9, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, @@ -645667,105 +652269,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK, anon_sym_do, - [375669] = 10, + [378175] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - ACTIONS(10342), 1, + ACTIONS(10403), 1, anon_sym_RBRACE, - STATE(8398), 1, + STATE(8449), 1, sym_heredoc_body, - STATE(10409), 1, - sym_named_expr, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [375703] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8399), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4621), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_do, - [375725] = 10, + [378209] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10344), 1, + ACTIONS(10405), 1, anon_sym_RBRACE, - STATE(8400), 1, + STATE(8450), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [375759] = 10, + [378243] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(9908), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(10407), 1, + anon_sym_RPAREN, + STATE(8451), 1, + sym_heredoc_body, + STATE(9074), 1, + sym_annotation, + STATE(9207), 1, + aux_sym_param_repeat1, + STATE(10148), 1, + sym_param, + STATE(10883), 1, + sym_proc_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + [378279] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10346), 1, + ACTIONS(10305), 1, + sym_identifier, + ACTIONS(10409), 1, anon_sym_RBRACE, - STATE(8401), 1, + STATE(8452), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, + STATE(10453), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [375793] = 4, + [378313] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8402), 1, + STATE(8453), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4665), 9, + ACTIONS(4644), 9, sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, @@ -645775,523 +652384,520 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK, anon_sym_do, - [375815] = 11, + [378335] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9856), 1, + ACTIONS(9908), 1, sym_identifier, - ACTIONS(9860), 1, + ACTIONS(9912), 1, anon_sym_AT_LBRACK, - ACTIONS(10348), 1, + ACTIONS(10411), 1, anon_sym_RPAREN, - STATE(8403), 1, + STATE(8454), 1, sym_heredoc_body, - STATE(9058), 1, + STATE(9074), 1, sym_annotation, - STATE(9144), 1, + STATE(9207), 1, aux_sym_param_repeat1, - STATE(9955), 1, + STATE(10148), 1, sym_param, - STATE(11142), 1, + STATE(10919), 1, sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9868), 2, + ACTIONS(9920), 2, sym_instance_var, sym_class_var, - [375851] = 10, + [378371] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10350), 1, - anon_sym_RBRACE, - STATE(8404), 1, + ACTIONS(10413), 1, + anon_sym_PIPE, + STATE(8455), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, + STATE(8456), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [375885] = 6, + ACTIONS(4636), 7, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_QMARK, + [378397] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8405), 1, - sym_heredoc_body, - STATE(8610), 1, - sym__terminator, + ACTIONS(10415), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(4798), 6, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_end, - [375911] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8406), 1, + STATE(8456), 2, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4633), 9, + aux_sym_union_type_repeat1, + ACTIONS(4629), 7, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_STAR, - anon_sym_PIPE, anon_sym_DOT, anon_sym_EQ, anon_sym_QMARK, - [375933] = 10, + [378421] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10352), 1, + ACTIONS(10418), 1, anon_sym_RBRACE, - STATE(8407), 1, + STATE(8457), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [375967] = 4, + [378455] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8408), 1, + ACTIONS(10261), 1, + anon_sym_LBRACK, + ACTIONS(10263), 1, + anon_sym_STAR, + ACTIONS(10265), 1, + anon_sym_DOT, + ACTIONS(10267), 1, + anon_sym_QMARK, + ACTIONS(10413), 1, + anon_sym_PIPE, + STATE(8455), 1, + aux_sym_union_type_repeat1, + STATE(8458), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4673), 9, + ACTIONS(4607), 3, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, anon_sym_EQ, - anon_sym_QMARK, - [375989] = 10, + [378489] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, + ACTIONS(10305), 1, sym_identifier, - ACTIONS(10354), 1, + ACTIONS(10420), 1, anon_sym_RBRACE, - STATE(8409), 1, + STATE(8459), 1, sym_heredoc_body, - STATE(10409), 1, + STATE(10453), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11884), 2, - sym_string, - sym_string_percent_literal, - [376023] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10356), 1, - anon_sym_RBRACE, - STATE(8410), 1, - sym_heredoc_body, - STATE(10248), 1, - sym_named_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8263), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [376057] = 4, + [378523] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8411), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4661), 9, - sym__start_of_brace_block, + ACTIONS(10261), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, + ACTIONS(10263), 1, anon_sym_STAR, - anon_sym_PIPE, + ACTIONS(10265), 1, anon_sym_DOT, + ACTIONS(10267), 1, anon_sym_QMARK, - anon_sym_do, - [376079] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8412), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4669), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, + ACTIONS(10413), 1, anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_do, - [376101] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8413), 1, + STATE(8455), 1, + aux_sym_union_type_repeat1, + STATE(8460), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4637), 9, - sym__line_break, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(4650), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [376123] = 4, + anon_sym_EQ, + [378557] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8414), 1, + STATE(8455), 1, + aux_sym_union_type_repeat1, + STATE(8461), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4617), 9, - sym__start_of_brace_block, + ACTIONS(4629), 8, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, + anon_sym_EQ, anon_sym_QMARK, - anon_sym_do, - [376145] = 10, + [378581] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10358), 1, + ACTIONS(10422), 1, anon_sym_RBRACE, - STATE(8415), 1, + STATE(8462), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [376179] = 10, + [378615] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(9908), 1, sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10360), 1, - anon_sym_RBRACE, - STATE(8416), 1, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(10424), 1, + anon_sym_RPAREN, + STATE(8463), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, + STATE(9074), 1, + sym_annotation, + STATE(9207), 1, + aux_sym_param_repeat1, + STATE(10148), 1, + sym_param, + STATE(10956), 1, + sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [376213] = 10, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + [378651] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9908), 1, + sym_identifier, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(10426), 1, + anon_sym_RPAREN, + STATE(8464), 1, + sym_heredoc_body, + STATE(9074), 1, + sym_annotation, + STATE(9207), 1, + aux_sym_param_repeat1, + STATE(10148), 1, + sym_param, + STATE(10992), 1, + sym_proc_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + [378687] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - ACTIONS(10362), 1, + ACTIONS(10428), 1, anon_sym_RBRACE, - STATE(8417), 1, + STATE(8465), 1, sym_heredoc_body, - STATE(10409), 1, - sym_named_expr, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [376247] = 4, + [378721] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8418), 1, + ACTIONS(9908), 1, + sym_identifier, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(10430), 1, + anon_sym_RPAREN, + STATE(8466), 1, sym_heredoc_body, + STATE(9074), 1, + sym_annotation, + STATE(9207), 1, + aux_sym_param_repeat1, + STATE(10148), 1, + sym_param, + STATE(11028), 1, + sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4657), 9, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_QMARK, - [376269] = 4, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + [378757] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8419), 1, + STATE(8467), 1, sym_heredoc_body, + STATE(8764), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4637), 9, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_QMARK, - [376291] = 4, + ACTIONS(10141), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4845), 6, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + [378783] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8420), 1, + STATE(8468), 1, sym_heredoc_body, + STATE(8768), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4645), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_do, - [376313] = 4, + ACTIONS(10141), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4857), 6, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + [378809] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8421), 1, + STATE(8469), 1, sym_heredoc_body, + STATE(8782), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4633), 9, + ACTIONS(10141), 2, sym__line_break, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [376335] = 10, + ACTIONS(4877), 6, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + [378835] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10364), 1, + ACTIONS(10305), 1, + sym_identifier, + ACTIONS(10432), 1, anon_sym_RBRACE, - STATE(8422), 1, + STATE(8470), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, + STATE(10453), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [376369] = 10, + [378869] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10258), 1, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(10434), 1, sym_identifier, - ACTIONS(10366), 1, - anon_sym_RBRACE, - STATE(8423), 1, + ACTIONS(10436), 1, + anon_sym_STAR, + ACTIONS(10438), 1, + anon_sym_AMP, + ACTIONS(10440), 1, + anon_sym_STAR_STAR, + STATE(8471), 1, sym_heredoc_body, - STATE(10409), 1, - sym_named_expr, + STATE(8512), 1, + aux_sym_param_repeat1, + STATE(9074), 1, + sym_annotation, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11884), 2, - sym_string, - sym_string_percent_literal, - [376403] = 10, + ACTIONS(10442), 2, + sym_instance_var, + sym_class_var, + [378905] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10258), 1, + ACTIONS(9908), 1, sym_identifier, - ACTIONS(10368), 1, - anon_sym_RBRACE, - STATE(8424), 1, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(10444), 1, + anon_sym_RPAREN, + STATE(8472), 1, sym_heredoc_body, - STATE(10409), 1, - sym_named_expr, + STATE(9074), 1, + sym_annotation, + STATE(9207), 1, + aux_sym_param_repeat1, + STATE(10148), 1, + sym_param, + STATE(11064), 1, + sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11884), 2, - sym_string, - sym_string_percent_literal, - [376437] = 10, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + [378941] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10370), 1, + ACTIONS(10305), 1, + sym_identifier, + ACTIONS(10446), 1, anon_sym_RBRACE, - STATE(8425), 1, + STATE(8473), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, + STATE(10453), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [376471] = 4, + [378975] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8426), 1, + STATE(8474), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4645), 9, - anon_sym_RPAREN, + ACTIONS(4698), 9, + sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, - anon_sym_EQ, anon_sym_QMARK, - [376493] = 4, + anon_sym_do, + [378997] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8427), 1, + ACTIONS(9908), 1, + sym_identifier, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(10448), 1, + anon_sym_RPAREN, + STATE(8475), 1, sym_heredoc_body, + STATE(9074), 1, + sym_annotation, + STATE(9207), 1, + aux_sym_param_repeat1, + STATE(10148), 1, + sym_param, + STATE(11099), 1, + sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4633), 9, - sym__start_of_brace_block, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + [379033] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8476), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4666), 9, + sym__line_break, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, @@ -646299,865 +652905,867 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - anon_sym_do, - [376515] = 10, + [379055] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - ACTIONS(10372), 1, - anon_sym_RBRACE, - STATE(8428), 1, + STATE(8477), 1, sym_heredoc_body, - STATE(10409), 1, - sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11884), 2, - sym_string, - sym_string_percent_literal, - [376549] = 4, + ACTIONS(4654), 9, + sym__line_break, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + [379077] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8429), 1, + STATE(8478), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4653), 9, - anon_sym_RPAREN, + ACTIONS(4658), 9, + sym__line_break, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, - anon_sym_EQ, anon_sym_QMARK, - [376571] = 10, + [379099] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10258), 1, + ACTIONS(9908), 1, sym_identifier, - ACTIONS(10374), 1, - anon_sym_RBRACE, - STATE(8430), 1, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(10450), 1, + anon_sym_RPAREN, + STATE(8479), 1, sym_heredoc_body, - STATE(10409), 1, - sym_named_expr, + STATE(9074), 1, + sym_annotation, + STATE(9207), 1, + aux_sym_param_repeat1, + STATE(10148), 1, + sym_param, + STATE(11134), 1, + sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11884), 2, - sym_string, - sym_string_percent_literal, - [376605] = 10, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + [379135] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, + ACTIONS(10305), 1, sym_identifier, - ACTIONS(10376), 1, + ACTIONS(10452), 1, anon_sym_RBRACE, - STATE(8431), 1, + STATE(8480), 1, sym_heredoc_body, - STATE(10409), 1, + STATE(10453), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [376639] = 4, + [379169] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8432), 1, + STATE(8481), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4625), 9, - anon_sym_RPAREN, + ACTIONS(4718), 9, + sym__line_break, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, - anon_sym_EQ, anon_sym_QMARK, - [376661] = 10, + [379191] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(9908), 1, sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10378), 1, - anon_sym_RBRACE, - STATE(8433), 1, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(10454), 1, + anon_sym_RPAREN, + STATE(8482), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, + STATE(9074), 1, + sym_annotation, + STATE(9207), 1, + aux_sym_param_repeat1, + STATE(10148), 1, + sym_param, + STATE(11169), 1, + sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [376695] = 4, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + [379227] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8434), 1, + ACTIONS(10351), 1, + sym__modifier_if_keyword, + ACTIONS(10353), 1, + sym__modifier_unless_keyword, + ACTIONS(10355), 1, + sym__modifier_rescue_keyword, + ACTIONS(10357), 1, + sym__modifier_ensure_keyword, + STATE(2130), 1, + sym__terminator, + STATE(8483), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4645), 9, + ACTIONS(9928), 2, + sym__regular_ensure_keyword, + anon_sym_end, + ACTIONS(10349), 2, sym__line_break, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [376717] = 10, + [379261] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, + ACTIONS(10305), 1, sym_identifier, - ACTIONS(10380), 1, + ACTIONS(10456), 1, anon_sym_RBRACE, - STATE(8435), 1, + STATE(8484), 1, sym_heredoc_body, - STATE(10409), 1, + STATE(10453), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [376751] = 11, + [379295] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9856), 1, + ACTIONS(9908), 1, sym_identifier, - ACTIONS(9860), 1, + ACTIONS(9912), 1, anon_sym_AT_LBRACK, - ACTIONS(10382), 1, + ACTIONS(10458), 1, anon_sym_RPAREN, - STATE(8436), 1, + STATE(8485), 1, sym_heredoc_body, - STATE(9058), 1, + STATE(9074), 1, sym_annotation, - STATE(9144), 1, + STATE(9207), 1, aux_sym_param_repeat1, - STATE(9955), 1, + STATE(10148), 1, sym_param, - STATE(10967), 1, + STATE(11204), 1, sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9868), 2, + ACTIONS(9920), 2, sym_instance_var, sym_class_var, - [376787] = 4, + [379331] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8437), 1, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10305), 1, + sym_identifier, + ACTIONS(10460), 1, + anon_sym_RBRACE, + STATE(8486), 1, sym_heredoc_body, + STATE(10453), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4599), 9, - sym__line_break, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [376809] = 10, + ACTIONS(10309), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11360), 2, + sym_string, + sym_string_percent_literal, + [379365] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10386), 1, + STATE(8487), 1, + sym_heredoc_body, + STATE(8817), 1, + sym__terminator, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10141), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4865), 6, sym__modifier_if_keyword, - ACTIONS(10388), 1, sym__modifier_unless_keyword, - ACTIONS(10390), 1, sym__modifier_rescue_keyword, - ACTIONS(10392), 1, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - STATE(2137), 1, - sym__terminator, - STATE(8438), 1, + anon_sym_end, + [379391] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9908), 1, + sym_identifier, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(10462), 1, + anon_sym_RPAREN, + STATE(8488), 1, sym_heredoc_body, + STATE(9074), 1, + sym_annotation, + STATE(9207), 1, + aux_sym_param_repeat1, + STATE(10148), 1, + sym_param, + STATE(11239), 1, + sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9874), 2, - sym__regular_ensure_keyword, - anon_sym_end, - ACTIONS(10384), 2, - sym__line_break, - anon_sym_SEMI, - [376843] = 10, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + [379427] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10394), 1, - anon_sym_RBRACE, - STATE(8439), 1, + STATE(8489), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [376877] = 10, + ACTIONS(4869), 9, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_end, + [379449] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - ACTIONS(10396), 1, + ACTIONS(10464), 1, anon_sym_RBRACE, - STATE(8440), 1, + STATE(8490), 1, sym_heredoc_body, - STATE(10409), 1, - sym_named_expr, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [376911] = 10, + [379483] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10398), 1, + ACTIONS(10466), 1, anon_sym_RBRACE, - STATE(8441), 1, + STATE(8491), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [376945] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8442), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4745), 9, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - anon_sym_forall, - [376967] = 10, + [379517] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - ACTIONS(10400), 1, + ACTIONS(10468), 1, anon_sym_RBRACE, - STATE(8443), 1, + STATE(8492), 1, sym_heredoc_body, - STATE(10409), 1, - sym_named_expr, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [377001] = 10, + [379551] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10402), 1, + ACTIONS(10470), 1, anon_sym_RBRACE, - STATE(8444), 1, + STATE(8493), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [377035] = 4, + [379585] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8445), 1, + STATE(8494), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4629), 9, - anon_sym_RPAREN, + ACTIONS(4702), 9, + sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, - anon_sym_EQ, anon_sym_QMARK, - [377057] = 4, + anon_sym_do, + [379607] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8446), 1, + STATE(8495), 1, sym_heredoc_body, + STATE(8830), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4617), 9, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_QMARK, - [377079] = 10, + ACTIONS(10141), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4831), 6, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + [379633] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, + STATE(8496), 1, + sym_heredoc_body, + STATE(8834), 1, + sym__terminator, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10141), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4881), 6, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + [379659] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10404), 1, + ACTIONS(10305), 1, + sym_identifier, + ACTIONS(10472), 1, anon_sym_RBRACE, - STATE(8447), 1, + STATE(8497), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, + STATE(10453), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [377113] = 4, + [379693] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8448), 1, + STATE(8498), 1, sym_heredoc_body, + STATE(8837), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4617), 9, + ACTIONS(10141), 2, sym__line_break, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [377135] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8449), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4657), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_do, - [377157] = 10, + ACTIONS(4885), 6, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + [379719] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - ACTIONS(10406), 1, + ACTIONS(10474), 1, anon_sym_RBRACE, - STATE(8450), 1, + STATE(8499), 1, sym_heredoc_body, - STATE(10409), 1, - sym_named_expr, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [377191] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8451), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4681), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_do, - [377213] = 10, + [379753] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10408), 1, + ACTIONS(10476), 1, anon_sym_RBRACE, - STATE(8452), 1, + STATE(8500), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [377247] = 4, + [379787] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8453), 1, + STATE(8501), 1, sym_heredoc_body, + STATE(8846), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4637), 9, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_do, - [377269] = 4, + ACTIONS(10141), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4873), 6, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + [379813] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8454), 1, + STATE(8502), 1, sym_heredoc_body, + STATE(8852), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4661), 9, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_QMARK, - [377291] = 10, + ACTIONS(10141), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4849), 6, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + [379839] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - ACTIONS(10410), 1, + ACTIONS(10478), 1, anon_sym_RBRACE, - STATE(8455), 1, + STATE(8503), 1, sym_heredoc_body, - STATE(10409), 1, - sym_named_expr, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [377325] = 10, + [379873] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10412), 1, + ACTIONS(10480), 1, anon_sym_RBRACE, - STATE(8456), 1, + STATE(8504), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [377359] = 4, + [379907] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8457), 1, + STATE(8505), 1, sym_heredoc_body, + STATE(8854), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4649), 9, + ACTIONS(10141), 2, sym__line_break, anon_sym_SEMI, + ACTIONS(4853), 6, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + [379933] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10261), 1, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, + ACTIONS(10263), 1, anon_sym_STAR, - anon_sym_PIPE, + ACTIONS(10265), 1, anon_sym_DOT, + ACTIONS(10267), 1, anon_sym_QMARK, - [377381] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8458), 1, + ACTIONS(10413), 1, + anon_sym_PIPE, + STATE(8455), 1, + aux_sym_union_type_repeat1, + STATE(8506), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4599), 9, + ACTIONS(4670), 3, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, anon_sym_EQ, - anon_sym_QMARK, - [377403] = 10, + [379967] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, + STATE(8507), 1, + sym_heredoc_body, + STATE(8857), 1, + sym__terminator, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10141), 2, + sym__line_break, + anon_sym_SEMI, + ACTIONS(4861), 6, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_end, + [379993] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10414), 1, + ACTIONS(10305), 1, + sym_identifier, + ACTIONS(10482), 1, anon_sym_RBRACE, - STATE(8459), 1, + STATE(8508), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, + STATE(10453), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [377437] = 10, + [380027] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10416), 1, + ACTIONS(10484), 1, anon_sym_RBRACE, - STATE(8460), 1, + STATE(8509), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [377471] = 10, + [380061] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10418), 1, - anon_sym_RBRACE, - STATE(8461), 1, + ACTIONS(9548), 1, + anon_sym_RPAREN, + STATE(8510), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [377505] = 11, + [380095] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9856), 1, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10305), 1, sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(10420), 1, - anon_sym_RPAREN, - STATE(8462), 1, + ACTIONS(10486), 1, + anon_sym_RBRACE, + STATE(8511), 1, sym_heredoc_body, - STATE(9058), 1, + STATE(10453), 1, + sym_named_expr, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10309), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11360), 2, + sym_string, + sym_string_percent_literal, + [380129] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10490), 1, + anon_sym_AT_LBRACK, + ACTIONS(10493), 1, + anon_sym_STAR, + STATE(9074), 1, sym_annotation, - STATE(9144), 1, - aux_sym_param_repeat1, - STATE(9955), 1, - sym_param, - STATE(11002), 1, - sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9868), 2, + STATE(8512), 2, + sym_heredoc_body, + aux_sym_param_repeat1, + ACTIONS(10488), 5, + anon_sym_AMP, + anon_sym_STAR_STAR, + sym_identifier, sym_instance_var, sym_class_var, - [377541] = 10, + [380157] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - ACTIONS(10422), 1, + ACTIONS(10495), 1, anon_sym_RBRACE, - STATE(8463), 1, + STATE(8513), 1, sym_heredoc_body, - STATE(10409), 1, - sym_named_expr, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [377575] = 10, + [380191] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10424), 1, + ACTIONS(10497), 1, anon_sym_RBRACE, - STATE(8464), 1, + STATE(8514), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [377609] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10428), 1, - anon_sym_AT_LBRACK, - ACTIONS(10431), 1, - anon_sym_STAR, - STATE(9058), 1, - sym_annotation, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(8465), 2, - sym_heredoc_body, - aux_sym_param_repeat1, - ACTIONS(10426), 5, - anon_sym_AMP, - anon_sym_STAR_STAR, - sym_identifier, - sym_instance_var, - sym_class_var, - [377637] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8466), 1, - sym_heredoc_body, - STATE(8727), 1, - sym__terminator, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10096), 2, - sym__line_break, - anon_sym_SEMI, - ACTIONS(4816), 6, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_end, - [377663] = 4, + [380225] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8467), 1, + STATE(8515), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4653), 9, - sym__line_break, - anon_sym_SEMI, + ACTIONS(4714), 9, + sym__start_of_brace_block, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, @@ -647165,174 +653773,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - [377685] = 4, + anon_sym_do, + [380247] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8468), 1, + STATE(8516), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4832), 9, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(4722), 9, + sym__start_of_brace_block, + anon_sym_LBRACK, anon_sym_COMMA, - anon_sym_end, - [377707] = 10, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_do, + [380269] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - ACTIONS(10433), 1, + ACTIONS(10499), 1, anon_sym_RBRACE, - STATE(8469), 1, + STATE(8517), 1, sym_heredoc_body, - STATE(10409), 1, - sym_named_expr, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [377741] = 11, + [380303] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9856), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(10435), 1, - anon_sym_RPAREN, - STATE(8470), 1, - sym_heredoc_body, - STATE(9058), 1, - sym_annotation, - STATE(9144), 1, - aux_sym_param_repeat1, - STATE(9955), 1, - sym_param, - STATE(10734), 1, - sym_proc_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - [377777] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10254), 1, - anon_sym_PIPE, - STATE(8471), 1, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10501), 1, + anon_sym_RBRACE, + STATE(8518), 1, sym_heredoc_body, - STATE(8488), 1, - aux_sym_union_type_repeat1, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4584), 7, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_QMARK, - [377803] = 10, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [380337] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10437), 1, + ACTIONS(10503), 1, anon_sym_RBRACE, - STATE(8472), 1, + STATE(8519), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [377837] = 10, + [380371] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10439), 1, + ACTIONS(10505), 1, anon_sym_RBRACE, - STATE(8473), 1, + STATE(8520), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10273), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [377871] = 10, + [380405] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10261), 1, + anon_sym_LBRACK, + ACTIONS(10263), 1, + anon_sym_STAR, + ACTIONS(10265), 1, + anon_sym_DOT, + ACTIONS(10267), 1, + anon_sym_QMARK, + ACTIONS(10413), 1, + anon_sym_PIPE, + STATE(8455), 1, + aux_sym_union_type_repeat1, + STATE(8521), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4686), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [380439] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - ACTIONS(10441), 1, + ACTIONS(10507), 1, anon_sym_RBRACE, - STATE(8474), 1, + STATE(8522), 1, sym_heredoc_body, - STATE(10409), 1, - sym_named_expr, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [377905] = 4, + [380473] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8475), 1, + STATE(8523), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4644), 9, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_QMARK, + [380495] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8524), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4665), 9, + ACTIONS(4690), 9, sym__line_break, anon_sym_SEMI, anon_sym_LBRACK, @@ -647342,196 +653972,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - [377927] = 10, + [380517] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, + ACTIONS(10305), 1, sym_identifier, - ACTIONS(10443), 1, + ACTIONS(10509), 1, anon_sym_RBRACE, - STATE(8476), 1, + STATE(8525), 1, sym_heredoc_body, - STATE(10409), 1, + STATE(10453), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [377961] = 10, + [380551] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10386), 1, - sym__modifier_if_keyword, - ACTIONS(10388), 1, - sym__modifier_unless_keyword, - ACTIONS(10390), 1, - sym__modifier_rescue_keyword, - ACTIONS(10392), 1, - sym__modifier_ensure_keyword, - STATE(2137), 1, - sym__terminator, - STATE(8477), 1, + STATE(8526), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1988), 2, - sym__regular_ensure_keyword, - anon_sym_end, - ACTIONS(10384), 2, - sym__line_break, - anon_sym_SEMI, - [377995] = 10, + ACTIONS(4694), 9, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_QMARK, + [380573] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10445), 1, + ACTIONS(10305), 1, + sym_identifier, + ACTIONS(10511), 1, anon_sym_RBRACE, - STATE(8478), 1, + STATE(8527), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, + STATE(10453), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [378029] = 4, + [380607] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8479), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10513), 1, + anon_sym_RBRACE, + STATE(8528), 1, sym_heredoc_body, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4677), 9, - sym__line_break, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [378051] = 4, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [380641] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8480), 1, + STATE(8529), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4673), 9, - sym__line_break, - anon_sym_SEMI, + ACTIONS(4678), 9, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_STAR, anon_sym_PIPE, anon_sym_DOT, + anon_sym_EQ, anon_sym_QMARK, - [378073] = 11, + [380663] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(10447), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(10449), 1, - anon_sym_STAR, - ACTIONS(10451), 1, - anon_sym_AMP, - ACTIONS(10453), 1, - anon_sym_STAR_STAR, - STATE(8465), 1, - aux_sym_param_repeat1, - STATE(8481), 1, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10515), 1, + anon_sym_RBRACE, + STATE(8530), 1, sym_heredoc_body, - STATE(9058), 1, - sym_annotation, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10455), 2, - sym_instance_var, - sym_class_var, - [378109] = 10, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [380697] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, + ACTIONS(10305), 1, sym_identifier, - ACTIONS(10457), 1, + ACTIONS(10517), 1, anon_sym_RBRACE, - STATE(8482), 1, + STATE(8531), 1, sym_heredoc_body, - STATE(10409), 1, + STATE(10453), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [378143] = 10, + [380731] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10459), 1, + ACTIONS(10305), 1, + sym_identifier, + ACTIONS(10519), 1, anon_sym_RBRACE, - STATE(8483), 1, + STATE(8532), 1, sym_heredoc_body, - STATE(10248), 1, - sym_named_type, + STATE(10453), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [378177] = 4, + [380765] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8484), 1, + STATE(8533), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4649), 9, + ACTIONS(4662), 9, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_COMMA, @@ -647541,16 +654170,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_EQ, anon_sym_QMARK, - [378199] = 4, + [380787] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8485), 1, + STATE(8534), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4649), 9, - sym__start_of_brace_block, + ACTIONS(4644), 9, + sym__line_break, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, anon_sym_DASH_GT, @@ -647558,150 +654188,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DOT, anon_sym_QMARK, - anon_sym_do, - [378221] = 5, + [380809] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9839), 1, - anon_sym_LPAREN2, - STATE(8486), 1, + ACTIONS(10261), 1, + anon_sym_LBRACK, + ACTIONS(10263), 1, + anon_sym_STAR, + ACTIONS(10265), 1, + anon_sym_DOT, + ACTIONS(10267), 1, + anon_sym_QMARK, + ACTIONS(10413), 1, + anon_sym_PIPE, + STATE(8455), 1, + aux_sym_union_type_repeat1, + STATE(8535), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9903), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, + ACTIONS(4625), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [380843] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(10521), 1, anon_sym_end, - [378245] = 11, + ACTIONS(10523), 1, + anon_sym_else, + STATE(8536), 1, + sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10123), 1, + sym_else, + STATE(11960), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [380878] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9856), 1, - sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(10461), 1, - anon_sym_RPAREN, - STATE(8487), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10525), 1, + anon_sym_end, + STATE(8537), 1, sym_heredoc_body, - STATE(9058), 1, - sym_annotation, - STATE(9144), 1, - aux_sym_param_repeat1, - STATE(9955), 1, - sym_param, - STATE(11216), 1, - sym_proc_param_list, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10140), 1, + sym_else, + STATE(11200), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - [378281] = 5, + [380913] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10463), 1, - anon_sym_PIPE, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10527), 1, + anon_sym_end, + STATE(8538), 1, + sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10142), 1, + sym_else, + STATE(11211), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8488), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4588), 7, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_QMARK, - [378305] = 11, + [380948] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9856), 1, - sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(10466), 1, - anon_sym_RPAREN, - STATE(8489), 1, + STATE(8539), 1, sym_heredoc_body, - STATE(9058), 1, - sym_annotation, - STATE(9144), 1, - aux_sym_param_repeat1, - STATE(9955), 1, - sym_param, - STATE(10785), 1, - sym_proc_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - [378341] = 10, + ACTIONS(9984), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [380969] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, + ACTIONS(10305), 1, sym_identifier, - ACTIONS(10468), 1, - anon_sym_RBRACE, - STATE(8490), 1, + STATE(8540), 1, sym_heredoc_body, - STATE(10409), 1, + STATE(10453), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [378375] = 6, + [381000] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8491), 1, + STATE(8541), 1, sym_heredoc_body, - STATE(8752), 1, - sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10096), 2, + ACTIONS(10086), 8, sym__line_break, - anon_sym_SEMI, - ACTIONS(4802), 6, sym__modifier_if_keyword, sym__modifier_unless_keyword, sym__modifier_rescue_keyword, sym__regular_ensure_keyword, sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - [378401] = 5, + [381021] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9839), 1, - anon_sym_LPAREN2, - STATE(8492), 1, + STATE(8542), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9854), 8, + ACTIONS(10062), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -647710,159 +654357,173 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [378425] = 10, + [381042] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10529), 1, + anon_sym_end, + STATE(8543), 1, + sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(9897), 1, + sym_else, + STATE(10602), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [381077] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10470), 1, - anon_sym_RBRACE, - STATE(8493), 1, + STATE(8544), 1, sym_heredoc_body, - STATE(10248), 1, + STATE(10034), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [378459] = 11, + [381108] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10472), 1, - anon_sym_end, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - STATE(8494), 1, + ACTIONS(10531), 1, + anon_sym_end, + STATE(8545), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9800), 1, + STATE(10379), 1, sym_else, - STATE(11133), 1, + STATE(10794), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [378494] = 11, + [381143] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10476), 1, - anon_sym_end, - STATE(8495), 1, + STATE(8546), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10235), 1, - sym_else, - STATE(11548), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [378529] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(10052), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10478), 1, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - STATE(8496), 1, + [381164] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10249), 1, + anon_sym_LBRACK, + ACTIONS(10251), 1, + anon_sym_STAR, + ACTIONS(10255), 1, + anon_sym_DOT, + ACTIONS(10257), 1, + anon_sym_QMARK, + ACTIONS(10533), 1, + anon_sym_PIPE, + STATE(8547), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10244), 1, - sym_else, - STATE(11579), 1, - sym_ensure, + STATE(8798), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [378564] = 11, + ACTIONS(4650), 2, + sym__start_of_brace_block, + anon_sym_do, + [381197] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10480), 1, + ACTIONS(10535), 1, anon_sym_end, - STATE(8497), 1, + STATE(8548), 1, sym_heredoc_body, - STATE(8514), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9785), 1, + STATE(9907), 1, sym_else, - STATE(11657), 1, + STATE(10621), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [378599] = 11, + [381232] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10482), 1, + ACTIONS(10537), 1, anon_sym_end, - STATE(8498), 1, + STATE(8549), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8627), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9786), 1, + STATE(10070), 1, sym_else, - STATE(11661), 1, + STATE(10987), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [378634] = 4, + [381267] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8499), 1, + STATE(8550), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9967), 8, + ACTIONS(10064), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -647871,159 +654532,176 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [378655] = 11, + [381288] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10484), 1, + ACTIONS(10539), 1, anon_sym_end, - STATE(8500), 1, + STATE(8551), 1, sym_heredoc_body, - STATE(8517), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9789), 1, + STATE(9911), 1, sym_else, - STATE(11675), 1, + STATE(10631), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [378690] = 4, + [381323] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8501), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10541), 1, + anon_sym_end, + STATE(8552), 1, sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(9913), 1, + sym_else, + STATE(10642), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4943), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [378711] = 11, + [381358] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10486), 1, + ACTIONS(10543), 1, anon_sym_end, - STATE(8502), 1, + STATE(8553), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9791), 1, + STATE(9915), 1, sym_else, - STATE(11690), 1, + STATE(10652), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [378746] = 4, + [381393] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8503), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10545), 1, + anon_sym_end, + STATE(8554), 1, sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(9777), 1, + sym_else, + STATE(11446), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9985), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [378767] = 10, + [381428] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9876), 1, - sym__modifier_if_keyword, - ACTIONS(9878), 1, - sym__modifier_unless_keyword, - ACTIONS(9880), 1, - sym__modifier_rescue_keyword, - ACTIONS(9882), 1, - sym__modifier_ensure_keyword, - ACTIONS(10488), 1, - anon_sym_RPAREN, - STATE(2139), 1, - sym__terminator, - STATE(8504), 1, + STATE(8555), 1, sym_heredoc_body, + STATE(8798), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - [378800] = 4, + ACTIONS(4629), 7, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_do, + [381451] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8505), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10547), 1, + anon_sym_end, + STATE(8556), 1, sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10080), 1, + sym_else, + STATE(11011), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4947), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [378821] = 9, + [381486] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10258), 1, + ACTIONS(9908), 1, sym_identifier, - STATE(8506), 1, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(10549), 1, + anon_sym_RPAREN, + STATE(8557), 1, sym_heredoc_body, - STATE(10373), 1, - sym_named_expr, + STATE(9074), 1, + sym_annotation, + STATE(9207), 1, + aux_sym_param_repeat1, + STATE(10478), 1, + sym_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11884), 2, - sym_string, - sym_string_percent_literal, - [378852] = 4, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + [381519] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8507), 1, + STATE(8558), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9971), 8, + ACTIONS(10066), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -648032,127 +654710,135 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [378873] = 4, + [381540] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8508), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10551), 1, + anon_sym_end, + STATE(8559), 1, sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(9980), 1, + sym_else, + STATE(10921), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4903), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [378894] = 11, + [381575] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10490), 1, + ACTIONS(10553), 1, anon_sym_end, - STATE(8509), 1, + STATE(8560), 1, sym_heredoc_body, - STATE(8512), 1, + STATE(8565), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9929), 1, + STATE(9926), 1, sym_else, - STATE(11469), 1, + STATE(10687), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [378929] = 10, + [381610] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(10447), 1, - sym_identifier, - ACTIONS(10449), 1, - anon_sym_STAR, - ACTIONS(10453), 1, - anon_sym_STAR_STAR, - STATE(8465), 1, - aux_sym_param_repeat1, - STATE(8510), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10555), 1, + anon_sym_end, + STATE(8561), 1, sym_heredoc_body, - STATE(9058), 1, - sym_annotation, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(9928), 1, + sym_else, + STATE(10691), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10455), 2, - sym_instance_var, - sym_class_var, - [378962] = 11, + [381645] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10492), 1, + ACTIONS(10557), 1, anon_sym_end, - STATE(8511), 1, + STATE(8562), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9931), 1, + STATE(9783), 1, sym_else, - STATE(11476), 1, + STATE(11489), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [378997] = 11, + [381680] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10494), 1, + ACTIONS(10559), 1, anon_sym_end, - STATE(8512), 1, + STATE(8563), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9978), 1, + STATE(10139), 1, sym_else, - STATE(11514), 1, + STATE(11198), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [379032] = 4, + [381715] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8513), 1, + STATE(8564), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4871), 8, + ACTIONS(10048), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -648161,39 +654847,85 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [379053] = 11, + [381736] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10496), 1, + ACTIONS(10561), 1, anon_sym_end, - STATE(8514), 1, + STATE(8565), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9796), 1, + STATE(9930), 1, sym_else, - STATE(11765), 1, + STATE(10698), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [379088] = 4, + [381771] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8515), 1, + ACTIONS(10249), 1, + anon_sym_LBRACK, + ACTIONS(10251), 1, + anon_sym_STAR, + ACTIONS(10255), 1, + anon_sym_DOT, + ACTIONS(10257), 1, + anon_sym_QMARK, + ACTIONS(10533), 1, + anon_sym_PIPE, + STATE(8566), 1, + sym_heredoc_body, + STATE(8798), 1, + aux_sym_union_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4670), 2, + sym__start_of_brace_block, + anon_sym_do, + [381804] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(10434), 1, + sym_identifier, + ACTIONS(10436), 1, + anon_sym_STAR, + ACTIONS(10440), 1, + anon_sym_STAR_STAR, + STATE(8512), 1, + aux_sym_param_repeat1, + STATE(8567), 1, + sym_heredoc_body, + STATE(9074), 1, + sym_annotation, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10442), 2, + sym_instance_var, + sym_class_var, + [381837] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8568), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9957), 8, + ACTIONS(10052), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -648202,61 +654934,32 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [379109] = 9, + [381858] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - STATE(8516), 1, + STATE(8569), 1, sym_heredoc_body, - STATE(9840), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [379140] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(9972), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10498), 1, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - STATE(8517), 1, - sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9798), 1, - sym_else, - STATE(11799), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [379175] = 4, + [381879] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8518), 1, + STATE(8570), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9987), 8, + ACTIONS(9974), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -648265,39 +654968,38 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [379196] = 11, + [381900] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10500), 1, - anon_sym_end, - STATE(8519), 1, + ACTIONS(9930), 1, + sym__modifier_if_keyword, + ACTIONS(9932), 1, + sym__modifier_unless_keyword, + ACTIONS(9934), 1, + sym__modifier_rescue_keyword, + ACTIONS(9936), 1, + sym__modifier_ensure_keyword, + ACTIONS(10563), 1, + anon_sym_RPAREN, + STATE(2149), 1, + sym__terminator, + STATE(8571), 1, sym_heredoc_body, - STATE(8690), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9790), 1, - sym_else, - STATE(11659), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [379231] = 4, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + [381933] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8520), 1, + STATE(8572), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10032), 8, + ACTIONS(9958), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -648306,79 +655008,80 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [379252] = 11, + [381954] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10565), 1, + anon_sym_COLON_COLON, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(8573), 2, + sym_heredoc_body, + aux_sym_constant_repeat1, + ACTIONS(4600), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + [381977] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10502), 1, + ACTIONS(10568), 1, anon_sym_end, - STATE(8521), 1, + STATE(8574), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8600), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9927), 1, + STATE(10238), 1, sym_else, - STATE(10745), 1, + STATE(11502), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [379287] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8522), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10003), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [379308] = 10, + [382012] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10140), 1, + ACTIONS(10202), 1, anon_sym_LBRACK, - ACTIONS(10142), 1, + ACTIONS(10204), 1, anon_sym_STAR, - ACTIONS(10146), 1, + ACTIONS(10206), 1, anon_sym_DOT, - ACTIONS(10148), 1, + ACTIONS(10208), 1, anon_sym_QMARK, - ACTIONS(10217), 1, + ACTIONS(10240), 1, anon_sym_PIPE, - STATE(8210), 1, + STATE(8218), 1, aux_sym_union_type_repeat1, - STATE(8523), 1, + STATE(8575), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4613), 2, + ACTIONS(4640), 2, anon_sym_RBRACE, anon_sym_COMMA, - [379341] = 4, + [382045] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8524), 1, + STATE(8576), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10036), 8, + ACTIONS(10050), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -648387,39 +655090,32 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [379362] = 11, + [382066] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10504), 1, - anon_sym_end, - STATE(8525), 1, + STATE(8577), 1, sym_heredoc_body, - STATE(8544), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10279), 1, - sym_else, - STATE(11689), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [379397] = 4, + ACTIONS(4984), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [382087] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8526), 1, + STATE(8578), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9977), 8, + ACTIONS(9976), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -648428,63 +655124,110 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [379418] = 11, + [382108] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10506), 1, + ACTIONS(10570), 1, anon_sym_end, - STATE(8527), 1, + STATE(8563), 1, + aux_sym_method_def_repeat1, + STATE(8579), 1, sym_heredoc_body, - STATE(8531), 1, + STATE(9431), 1, + sym_rescue_block, + STATE(10316), 1, + sym_else, + STATE(10856), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [382143] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10572), 1, + anon_sym_end, + STATE(8580), 1, + sym_heredoc_body, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9804), 1, + STATE(10242), 1, sym_else, - STATE(11845), 1, + STATE(11511), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [379453] = 11, + [382178] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10202), 1, + anon_sym_LBRACK, + ACTIONS(10204), 1, + anon_sym_STAR, + ACTIONS(10206), 1, + anon_sym_DOT, + ACTIONS(10208), 1, + anon_sym_QMARK, + ACTIONS(10240), 1, + anon_sym_PIPE, + STATE(8218), 1, + aux_sym_union_type_repeat1, + STATE(8581), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4621), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [382211] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10508), 1, + ACTIONS(10574), 1, anon_sym_end, - STATE(8528), 1, + STATE(8582), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9805), 1, + STATE(9764), 1, sym_else, - STATE(11862), 1, + STATE(10977), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [379488] = 4, + [382246] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8529), 1, + STATE(8583), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9979), 8, + ACTIONS(10012), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -648493,85 +655236,87 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [379509] = 9, + [382267] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - STATE(8530), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10576), 1, + anon_sym_end, + STATE(8584), 1, sym_heredoc_body, - STATE(10085), 1, - sym_named_expr, + STATE(8829), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10226), 1, + sym_else, + STATE(11459), 1, + sym_ensure, ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10262), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11884), 2, - sym_string, - sym_string_percent_literal, - [379540] = 11, + sym__line_continuation, + sym_comment, + [382302] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10510), 1, + ACTIONS(10578), 1, anon_sym_end, - STATE(8531), 1, + STATE(8585), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8633), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9806), 1, + STATE(10092), 1, sym_else, - STATE(11877), 1, + STATE(11044), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [379575] = 11, + [382337] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10512), 1, + ACTIONS(10580), 1, anon_sym_end, - STATE(8532), 1, + STATE(8586), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10289), 1, + STATE(10111), 1, sym_else, - STATE(11712), 1, + STATE(11095), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [379610] = 4, + [382372] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8533), 1, + STATE(8587), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10038), 8, + ACTIONS(9978), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -648580,15 +655325,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [379631] = 4, + [382393] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8534), 1, + STATE(8588), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10040), 8, + ACTIONS(10056), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -648597,39 +655342,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [379652] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10514), 1, - anon_sym_end, - STATE(8535), 1, - sym_heredoc_body, - STATE(8773), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9882), 1, - sym_else, - STATE(10645), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [379687] = 4, + [382414] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8536), 1, + STATE(8589), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10042), 8, + ACTIONS(10016), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -648638,58 +655359,49 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [379708] = 11, + [382435] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10516), 1, - anon_sym_end, - STATE(8537), 1, + STATE(8590), 1, sym_heredoc_body, - STATE(8545), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9989), 1, - sym_else, - STATE(11386), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [379743] = 6, + ACTIONS(10022), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [382456] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10518), 1, - anon_sym_PIPE, - STATE(8538), 1, + STATE(8591), 1, sym_heredoc_body, - STATE(8607), 1, - aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4584), 6, + ACTIONS(10024), 8, sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_QMARK, - [379768] = 4, + anon_sym_end, + [382477] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8539), 1, + STATE(8592), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10044), 8, + ACTIONS(10028), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -648698,150 +655410,193 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [379789] = 4, + [382498] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8540), 1, + ACTIONS(10212), 1, + anon_sym_LBRACK, + ACTIONS(10214), 1, + anon_sym_STAR, + ACTIONS(10218), 1, + anon_sym_DOT, + ACTIONS(10220), 1, + anon_sym_QMARK, + ACTIONS(10582), 1, + anon_sym_PIPE, + STATE(8593), 1, sym_heredoc_body, + STATE(8907), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10068), 8, + ACTIONS(4650), 2, sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, anon_sym_SEMI, + [382531] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10584), 1, anon_sym_end, - [379810] = 11, + STATE(8594), 1, + sym_heredoc_body, + STATE(8608), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10261), 1, + sym_else, + STATE(11556), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [382566] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10520), 1, + ACTIONS(10586), 1, anon_sym_end, - STATE(8541), 1, + STATE(8595), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9892), 1, + STATE(10265), 1, sym_else, - STATE(10676), 1, + STATE(11566), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [379845] = 11, + [382601] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10522), 1, + ACTIONS(10588), 1, anon_sym_end, - STATE(8542), 1, + STATE(8596), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9797), 1, + STATE(9749), 1, sym_else, - STATE(11780), 1, + STATE(11285), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [379880] = 9, + [382636] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - STATE(8543), 1, + STATE(8597), 1, sym_heredoc_body, - STATE(10204), 1, - sym_named_type, + STATE(8907), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [379911] = 11, + ACTIONS(4629), 7, + sym__line_break, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_PIPE, + anon_sym_DOT, + anon_sym_QMARK, + [382659] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8598), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9926), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [382680] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10524), 1, + ACTIONS(10590), 1, anon_sym_end, - STATE(8544), 1, + STATE(8599), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8611), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10291), 1, + STATE(10274), 1, sym_else, - STATE(11738), 1, + STATE(11583), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [379946] = 11, + [382715] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10526), 1, + ACTIONS(10592), 1, anon_sym_end, - STATE(8545), 1, + STATE(8600), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9984), 1, + STATE(10278), 1, sym_else, - STATE(11624), 1, + STATE(11595), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [379981] = 4, + [382750] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8546), 1, + STATE(8601), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9989), 8, + ACTIONS(10030), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -648850,39 +655605,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [380002] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10528), 1, - anon_sym_end, - STATE(8547), 1, - sym_heredoc_body, - STATE(8671), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9693), 1, - sym_else, - STATE(11519), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [380037] = 4, + [382771] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8548), 1, + STATE(8602), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10046), 8, + ACTIONS(10032), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -648891,15 +655622,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [380058] = 4, + [382792] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8549), 1, + STATE(8603), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10048), 8, + ACTIONS(10034), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -648908,37 +655639,36 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [380079] = 9, + [382813] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - STATE(8550), 1, + ACTIONS(10351), 1, + sym__modifier_if_keyword, + ACTIONS(10353), 1, + sym__modifier_unless_keyword, + ACTIONS(10355), 1, + sym__modifier_rescue_keyword, + ACTIONS(10357), 1, + sym__modifier_ensure_keyword, + STATE(8604), 1, sym_heredoc_body, - STATE(10363), 1, - sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11884), 2, - sym_string, - sym_string_percent_literal, - [380110] = 4, + ACTIONS(10036), 4, + sym__line_break, + sym__regular_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [382842] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8551), 1, + STATE(8605), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9929), 8, + ACTIONS(10038), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -648947,15 +655677,39 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [380131] = 4, + [382863] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8552), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10594), 1, + anon_sym_end, + STATE(8606), 1, sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10381), 1, + sym_else, + STATE(11876), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10050), 8, + [382898] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8607), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10040), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -648964,15 +655718,39 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [380152] = 4, + [382919] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8553), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10596), 1, + anon_sym_end, + STATE(8608), 1, + sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10301), 1, + sym_else, + STATE(11655), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [382954] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8609), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10052), 8, + ACTIONS(10042), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -648981,15 +655759,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [380173] = 4, + [382975] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8554), 1, + STATE(8610), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10056), 8, + ACTIONS(10044), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -648998,322 +655776,308 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [380194] = 11, + [382996] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10530), 1, + ACTIONS(10598), 1, anon_sym_end, - STATE(8555), 1, + STATE(8611), 1, sym_heredoc_body, - STATE(8691), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9815), 1, + STATE(10308), 1, sym_else, - STATE(11921), 1, + STATE(11691), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [380229] = 9, + [383031] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - STATE(8556), 1, + ACTIONS(10305), 1, + sym_identifier, + STATE(8612), 1, sym_heredoc_body, - STATE(9682), 1, - sym_named_type, + STATE(10064), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [380260] = 11, + [383062] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10532), 1, - anon_sym_end, - STATE(8557), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + STATE(8613), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9823), 1, - sym_else, - STATE(11941), 1, - sym_ensure, + STATE(9877), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [380295] = 10, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [383093] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9876), 1, - sym__modifier_if_keyword, - ACTIONS(9878), 1, - sym__modifier_unless_keyword, - ACTIONS(9880), 1, - sym__modifier_rescue_keyword, - ACTIONS(9882), 1, - sym__modifier_ensure_keyword, - ACTIONS(10534), 1, - anon_sym_RPAREN, - STATE(2152), 1, - sym__terminator, - STATE(8558), 1, + ACTIONS(10212), 1, + anon_sym_LBRACK, + ACTIONS(10214), 1, + anon_sym_STAR, + ACTIONS(10218), 1, + anon_sym_DOT, + ACTIONS(10220), 1, + anon_sym_QMARK, + ACTIONS(10582), 1, + anon_sym_PIPE, + STATE(8614), 1, sym_heredoc_body, + STATE(8907), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, + ACTIONS(4625), 2, sym__line_break, anon_sym_SEMI, - [380328] = 9, + [383126] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - STATE(8559), 1, + STATE(8615), 1, sym_heredoc_body, - STATE(10024), 1, - sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11884), 2, - sym_string, - sym_string_percent_literal, - [380359] = 11, + ACTIONS(9988), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [383147] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10536), 1, + ACTIONS(10600), 1, anon_sym_end, - STATE(8560), 1, + STATE(8616), 1, sym_heredoc_body, - STATE(8697), 1, + STATE(8620), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9837), 1, + STATE(9789), 1, sym_else, - STATE(10532), 1, + STATE(11544), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [380394] = 11, + [383182] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10538), 1, + ACTIONS(10602), 1, anon_sym_end, - STATE(8561), 1, + STATE(8617), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8635), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9694), 1, + STATE(10314), 1, sym_else, - STATE(11550), 1, + STATE(11704), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [380429] = 11, + [383217] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10540), 1, - anon_sym_end, - STATE(8562), 1, + STATE(8618), 1, sym_heredoc_body, - STATE(8564), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9997), 1, - sym_else, - STATE(11562), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [380464] = 11, + ACTIONS(10028), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [383238] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10542), 1, + ACTIONS(10604), 1, anon_sym_end, - STATE(8563), 1, + STATE(8619), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10001), 1, + STATE(9791), 1, sym_else, - STATE(11582), 1, + STATE(11549), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [380499] = 11, + [383273] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10544), 1, + ACTIONS(10606), 1, anon_sym_end, - STATE(8564), 1, + STATE(8620), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10011), 1, + STATE(9792), 1, sym_else, - STATE(11592), 1, + STATE(11552), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [380534] = 11, + [383308] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10546), 1, + ACTIONS(10608), 1, anon_sym_end, - STATE(8565), 1, + STATE(8621), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8623), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9851), 1, + STATE(10329), 1, sym_else, - STATE(10564), 1, + STATE(11738), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [380569] = 11, + [383343] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10548), 1, + ACTIONS(10610), 1, anon_sym_end, - STATE(8566), 1, + STATE(8622), 1, sym_heredoc_body, - STATE(8580), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9847), 1, + STATE(10333), 1, sym_else, - STATE(10555), 1, + STATE(11762), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [380604] = 11, + [383378] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10550), 1, + ACTIONS(10612), 1, anon_sym_end, - STATE(8567), 1, + STATE(8623), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9849), 1, + STATE(10334), 1, sym_else, - STATE(10559), 1, + STATE(11766), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [380639] = 4, + [383413] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8568), 1, + STATE(8624), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10070), 8, + ACTIONS(10030), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -649322,15 +656086,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [380660] = 4, + [383434] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8569), 1, + STATE(8625), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10084), 8, + ACTIONS(10032), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -649339,384 +656103,481 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [380681] = 11, + [383455] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10552), 1, - anon_sym_end, - STATE(8570), 1, + STATE(8626), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9924), 1, - sym_else, - STATE(11370), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [380716] = 11, + ACTIONS(10034), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [383476] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10554), 1, + ACTIONS(10614), 1, anon_sym_end, - STATE(8571), 1, + STATE(8627), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9864), 1, + STATE(10163), 1, sym_else, - STATE(10595), 1, + STATE(11271), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [380751] = 10, + [383511] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10175), 1, - anon_sym_LBRACK, - ACTIONS(10177), 1, - anon_sym_STAR, - ACTIONS(10181), 1, - anon_sym_DOT, - ACTIONS(10183), 1, - anon_sym_QMARK, - ACTIONS(10518), 1, - anon_sym_PIPE, - STATE(8538), 1, - aux_sym_union_type_repeat1, - STATE(8572), 1, + ACTIONS(9930), 1, + sym__modifier_if_keyword, + ACTIONS(9932), 1, + sym__modifier_unless_keyword, + ACTIONS(9934), 1, + sym__modifier_rescue_keyword, + ACTIONS(9936), 1, + sym__modifier_ensure_keyword, + ACTIONS(10616), 1, + anon_sym_RPAREN, + STATE(2151), 1, + sym__terminator, + STATE(8628), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4605), 2, + ACTIONS(7796), 2, sym__line_break, anon_sym_SEMI, - [380784] = 9, + [383544] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - STATE(8573), 1, + STATE(8629), 1, sym_heredoc_body, - STATE(10302), 1, + STATE(10132), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [380815] = 4, + [383575] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8574), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10618), 1, + anon_sym_end, + STATE(8630), 1, sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10340), 1, + sym_else, + STATE(11774), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9959), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [380836] = 4, + [383610] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8575), 1, + ACTIONS(3233), 1, + sym__start_of_brace_block, + ACTIONS(10620), 1, + anon_sym_do, + STATE(8631), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9961), 8, + STATE(9609), 2, + sym_do_end_block, + sym_brace_block, + ACTIONS(5551), 4, sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_end, - [380857] = 11, + anon_sym_COMMA, + anon_sym_then, + [383637] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10556), 1, + ACTIONS(10622), 1, anon_sym_end, - STATE(8576), 1, + STATE(8632), 1, sym_heredoc_body, - STATE(8589), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9858), 1, + STATE(9968), 1, sym_else, - STATE(10586), 1, + STATE(10786), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [380892] = 11, + [383672] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10558), 1, + ACTIONS(10624), 1, anon_sym_end, - STATE(8577), 1, + STATE(8633), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9860), 1, + STATE(10178), 1, sym_else, - STATE(10590), 1, + STATE(11321), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [380927] = 5, + [383707] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8538), 1, - aux_sym_union_type_repeat1, - STATE(8578), 1, + STATE(8634), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4588), 7, + ACTIONS(10014), 8, sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - [380950] = 11, + anon_sym_end, + [383728] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10560), 1, + ACTIONS(10626), 1, anon_sym_end, - STATE(8579), 1, + STATE(8635), 1, sym_heredoc_body, - STATE(8594), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9863), 1, + STATE(9775), 1, sym_else, - STATE(10597), 1, + STATE(11311), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [380985] = 11, + [383763] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10562), 1, + ACTIONS(10628), 1, anon_sym_end, - STATE(8580), 1, + STATE(8636), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9865), 1, + STATE(9957), 1, sym_else, - STATE(10601), 1, + STATE(10763), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [381020] = 9, + [383798] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9930), 1, + sym__modifier_if_keyword, + ACTIONS(9932), 1, + sym__modifier_unless_keyword, + ACTIONS(9934), 1, + sym__modifier_rescue_keyword, + ACTIONS(9936), 1, + sym__modifier_ensure_keyword, + ACTIONS(10630), 1, + anon_sym_RPAREN, + STATE(2152), 1, + sym__terminator, + STATE(8637), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + [383831] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8638), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4908), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [383852] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, + ACTIONS(10305), 1, sym_identifier, - STATE(8581), 1, + STATE(8639), 1, sym_heredoc_body, - STATE(9710), 1, + STATE(10241), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [381051] = 11, + [383883] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8640), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10054), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [383904] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10564), 1, + ACTIONS(10632), 1, anon_sym_end, - STATE(8582), 1, + STATE(8641), 1, sym_heredoc_body, - STATE(8593), 1, + STATE(8650), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10039), 1, + STATE(10224), 1, sym_else, - STATE(11677), 1, + STATE(11465), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [381086] = 11, + [383939] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10566), 1, + ACTIONS(10634), 1, anon_sym_end, - STATE(8583), 1, + STATE(8642), 1, sym_heredoc_body, - STATE(8699), 1, + STATE(8659), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9876), 1, + STATE(9770), 1, sym_else, - STATE(10617), 1, + STATE(11756), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [381121] = 4, + [383974] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8584), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10636), 1, + anon_sym_end, + STATE(8643), 1, sym_heredoc_body, + STATE(8744), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(9970), 1, + sym_else, + STATE(10766), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9965), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [381142] = 11, + [384009] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10568), 1, + ACTIONS(10638), 1, anon_sym_end, - STATE(8585), 1, + STATE(8644), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9901), 1, + STATE(10286), 1, sym_else, - STATE(10678), 1, + STATE(11614), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [381177] = 4, + [384044] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8586), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10640), 1, + anon_sym_end, + STATE(8645), 1, sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(9771), 1, + sym_else, + STATE(10779), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9967), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, + [384079] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10642), 1, anon_sym_end, - [381198] = 4, + STATE(8646), 1, + sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10227), 1, + sym_else, + STATE(11471), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [384114] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8587), 1, + STATE(8647), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10082), 8, + ACTIONS(9990), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -649725,15 +656586,37 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [381219] = 4, + [384135] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8588), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + STATE(8648), 1, + sym_heredoc_body, + STATE(10281), 1, + sym_named_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [384166] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8649), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9997), 8, + ACTIONS(9992), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -649742,180 +656625,126 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [381240] = 11, + [384187] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10570), 1, + ACTIONS(10644), 1, anon_sym_end, - STATE(8589), 1, + STATE(8650), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9871), 1, + STATE(10230), 1, sym_else, - STATE(10622), 1, + STATE(11479), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [381275] = 9, + [384222] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - STATE(8590), 1, + STATE(8651), 1, sym_heredoc_body, - STATE(9783), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [381306] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(10082), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10572), 1, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - STATE(8591), 1, - sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9677), 1, - sym_else, - STATE(11204), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [381341] = 11, + [384243] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10574), 1, - anon_sym_end, - STATE(8592), 1, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10305), 1, + sym_identifier, + STATE(8652), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10064), 1, - sym_else, - STATE(11813), 1, - sym_ensure, + STATE(10332), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [381376] = 11, + ACTIONS(10309), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11360), 2, + sym_string, + sym_string_percent_literal, + [384274] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10576), 1, + ACTIONS(10646), 1, anon_sym_end, - STATE(8593), 1, + STATE(8653), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8668), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10072), 1, + STATE(10012), 1, sym_else, - STATE(11920), 1, + STATE(10910), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [381411] = 11, + [384309] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10578), 1, + ACTIONS(10648), 1, anon_sym_end, - STATE(8594), 1, + STATE(8654), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9877), 1, + STATE(10013), 1, sym_else, - STATE(10636), 1, + STATE(11003), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [381446] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10187), 1, - anon_sym_LBRACK, - ACTIONS(10189), 1, - anon_sym_STAR, - ACTIONS(10193), 1, - anon_sym_DOT, - ACTIONS(10195), 1, - anon_sym_QMARK, - ACTIONS(10580), 1, - anon_sym_PIPE, - STATE(8595), 1, - sym_heredoc_body, - STATE(8843), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4685), 2, - sym__start_of_brace_block, - anon_sym_do, - [381479] = 4, + [384344] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8596), 1, + STATE(8655), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9999), 8, + ACTIONS(9994), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -649924,15 +656753,38 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [381500] = 4, + [384365] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8597), 1, + ACTIONS(9930), 1, + sym__modifier_if_keyword, + ACTIONS(9932), 1, + sym__modifier_unless_keyword, + ACTIONS(9934), 1, + sym__modifier_rescue_keyword, + ACTIONS(9936), 1, + sym__modifier_ensure_keyword, + ACTIONS(10650), 1, + anon_sym_RPAREN, + STATE(2144), 1, + sym__terminator, + STATE(8656), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10058), 8, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + [384398] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8657), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9996), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -649941,109 +656793,128 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [381521] = 9, + [384419] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - STATE(8598), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10652), 1, + anon_sym_end, + STATE(8658), 1, sym_heredoc_body, - STATE(9822), 1, - sym_named_expr, + STATE(8670), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10049), 1, + sym_else, + STATE(11272), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11884), 2, - sym_string, - sym_string_percent_literal, - [381552] = 11, + [384454] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10582), 1, + ACTIONS(10654), 1, anon_sym_end, - STATE(8599), 1, + STATE(8659), 1, sym_heredoc_body, - STATE(8601), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9884), 1, + STATE(10079), 1, sym_else, - STATE(10656), 1, + STATE(11383), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [381587] = 11, + [384489] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8660), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9998), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [384510] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10584), 1, + ACTIONS(10656), 1, anon_sym_end, - STATE(8600), 1, + STATE(8661), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9887), 1, + STATE(10026), 1, sym_else, - STATE(10664), 1, + STATE(10877), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [381622] = 11, + [384545] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10586), 1, + ACTIONS(10658), 1, anon_sym_end, - STATE(8601), 1, + STATE(8662), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8903), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9888), 1, + STATE(10192), 1, sym_else, - STATE(10668), 1, + STATE(10643), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [381657] = 4, + [384580] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8602), 1, + STATE(8663), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9951), 8, + ACTIONS(10070), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -650052,37 +656923,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [381678] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - STATE(8603), 1, - sym_heredoc_body, - STATE(10248), 1, - sym_named_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [381709] = 4, + [384601] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8604), 1, + STATE(8664), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9923), 8, + ACTIONS(10072), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -650091,73 +656940,49 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [381730] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9856), 1, - sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(10588), 1, - anon_sym_RPAREN, - STATE(8605), 1, - sym_heredoc_body, - STATE(9058), 1, - sym_annotation, - STATE(9144), 1, - aux_sym_param_repeat1, - STATE(10436), 1, - sym_param, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - [381763] = 9, + [384622] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - STATE(8606), 1, + STATE(8665), 1, sym_heredoc_body, - STATE(9856), 1, + STATE(10389), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [381794] = 5, + [384653] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10590), 1, - anon_sym_PIPE, + STATE(8666), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8607), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4588), 6, + ACTIONS(9964), 8, sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_QMARK, - [381817] = 4, + anon_sym_end, + [384674] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8608), 1, + STATE(8667), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, @@ -650171,15 +656996,39 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [381838] = 4, + [384695] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8609), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10660), 1, + anon_sym_end, + STATE(8668), 1, + sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10194), 1, + sym_else, + STATE(11734), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [384730] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8669), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9925), 8, + ACTIONS(10076), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -650188,32 +657037,63 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [381859] = 4, + [384751] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8610), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10662), 1, + anon_sym_end, + STATE(8670), 1, sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10243), 1, + sym_else, + STATE(12047), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4895), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, + [384786] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10664), 1, anon_sym_end, - [381880] = 4, + STATE(8671), 1, + sym_heredoc_body, + STATE(8696), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10100), 1, + sym_else, + STATE(11841), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [384821] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8611), 1, + STATE(8672), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9981), 8, + ACTIONS(9966), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -650222,287 +657102,347 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [381901] = 9, + [384842] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9930), 1, + sym__modifier_if_keyword, + ACTIONS(9932), 1, + sym__modifier_unless_keyword, + ACTIONS(9934), 1, + sym__modifier_rescue_keyword, + ACTIONS(9936), 1, + sym__modifier_ensure_keyword, + ACTIONS(10666), 1, + anon_sym_RPAREN, + STATE(2140), 1, + sym__terminator, + STATE(8673), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + [384875] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, + ACTIONS(10305), 1, sym_identifier, - STATE(8612), 1, + STATE(8674), 1, sym_heredoc_body, - STATE(9920), 1, + STATE(10188), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [381932] = 11, + [384906] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10593), 1, + ACTIONS(10668), 1, anon_sym_end, - STATE(8613), 1, + STATE(8675), 1, sym_heredoc_body, - STATE(8774), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9900), 1, + STATE(10157), 1, sym_else, - STATE(10684), 1, + STATE(12017), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [381967] = 9, + [384941] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - STATE(8614), 1, + STATE(8676), 1, sym_heredoc_body, - STATE(9968), 1, + STATE(10290), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [381998] = 10, + [384972] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9876), 1, - sym__modifier_if_keyword, - ACTIONS(9878), 1, - sym__modifier_unless_keyword, - ACTIONS(9880), 1, - sym__modifier_rescue_keyword, - ACTIONS(9882), 1, - sym__modifier_ensure_keyword, - ACTIONS(10595), 1, - anon_sym_RPAREN, - STATE(2146), 1, - sym__terminator, - STATE(8615), 1, + STATE(8677), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, + ACTIONS(10078), 8, sym__line_break, - anon_sym_SEMI, - [382031] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9876), 1, sym__modifier_if_keyword, - ACTIONS(9878), 1, sym__modifier_unless_keyword, - ACTIONS(9880), 1, sym__modifier_rescue_keyword, - ACTIONS(9882), 1, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ACTIONS(10597), 1, - anon_sym_RPAREN, - STATE(2153), 1, - sym__terminator, - STATE(8616), 1, + anon_sym_SEMI, + anon_sym_end, + [384993] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10305), 1, + sym_identifier, + STATE(8678), 1, sym_heredoc_body, + STATE(10195), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - [382064] = 9, + ACTIONS(10309), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11360), 2, + sym_string, + sym_string_percent_literal, + [385024] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, + ACTIONS(10305), 1, sym_identifier, - STATE(8617), 1, + STATE(8679), 1, sym_heredoc_body, - STATE(10007), 1, + STATE(9787), 1, sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [382095] = 10, + [385055] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9876), 1, + STATE(8680), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9968), 8, + sym__line_break, sym__modifier_if_keyword, - ACTIONS(9878), 1, sym__modifier_unless_keyword, - ACTIONS(9880), 1, sym__modifier_rescue_keyword, - ACTIONS(9882), 1, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [385076] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9930), 1, + sym__modifier_if_keyword, + ACTIONS(9932), 1, + sym__modifier_unless_keyword, + ACTIONS(9934), 1, + sym__modifier_rescue_keyword, + ACTIONS(9936), 1, sym__modifier_ensure_keyword, - ACTIONS(10599), 1, + ACTIONS(10670), 1, anon_sym_RPAREN, - STATE(2149), 1, + STATE(2143), 1, sym__terminator, - STATE(8618), 1, + STATE(8681), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, + ACTIONS(7796), 2, sym__line_break, anon_sym_SEMI, - [382128] = 11, + [385109] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + STATE(8682), 1, + sym_heredoc_body, + STATE(10057), 1, + sym_named_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [385140] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10601), 1, + ACTIONS(10672), 1, anon_sym_end, - STATE(8619), 1, + STATE(8683), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8741), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9903), 1, + STATE(9740), 1, sym_else, - STATE(10691), 1, + STATE(10905), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [382163] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8620), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10026), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [382184] = 11, + [385175] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10603), 1, + ACTIONS(10674), 1, anon_sym_end, - STATE(8621), 1, + STATE(8684), 1, sym_heredoc_body, - STATE(8641), 1, + STATE(8735), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9957), 1, + STATE(9866), 1, sym_else, - STATE(10813), 1, + STATE(11957), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [382219] = 11, + [385210] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10605), 1, + ACTIONS(10676), 1, anon_sym_end, - STATE(8622), 1, + STATE(8685), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8691), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9959), 1, + STATE(10412), 1, sym_else, - STATE(10818), 1, + STATE(10773), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [382254] = 11, + [385245] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10607), 1, + ACTIONS(10678), 1, anon_sym_end, - STATE(8623), 1, + STATE(8686), 1, sym_heredoc_body, - STATE(8642), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10316), 1, + STATE(10144), 1, sym_else, - STATE(10935), 1, + STATE(10828), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [382289] = 4, + [385280] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8624), 1, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10305), 1, + sym_identifier, + STATE(8687), 1, + sym_heredoc_body, + STATE(10350), 1, + sym_named_expr, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10309), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11360), 2, + sym_string, + sym_string_percent_literal, + [385311] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8688), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9949), 8, + ACTIONS(4924), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -650511,85 +657451,80 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [382310] = 9, + [385332] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - STATE(8625), 1, + STATE(8689), 1, sym_heredoc_body, - STATE(10050), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [382341] = 11, + ACTIONS(9998), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [385353] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10609), 1, + ACTIONS(10680), 1, anon_sym_end, - STATE(8626), 1, + STATE(8690), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10347), 1, + STATE(9869), 1, sym_else, - STATE(11088), 1, + STATE(11992), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [382376] = 11, + [385388] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10611), 1, + ACTIONS(10682), 1, anon_sym_end, - STATE(8627), 1, + STATE(8691), 1, sym_heredoc_body, - STATE(8633), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9758), 1, + STATE(9739), 1, sym_else, - STATE(11096), 1, + STATE(10842), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [382411] = 4, + [385423] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8628), 1, + STATE(8692), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9913), 8, + ACTIONS(4936), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -650598,253 +657533,263 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [382432] = 11, + [385444] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10613), 1, + ACTIONS(10684), 1, anon_sym_end, - STATE(8629), 1, + STATE(8693), 1, sym_heredoc_body, - STATE(8710), 1, + STATE(8739), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9713), 1, + STATE(10120), 1, sym_else, - STATE(11945), 1, + STATE(11130), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [385479] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10686), 1, + anon_sym_end, + STATE(8694), 1, + sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10121), 1, + sym_else, + STATE(11135), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [382467] = 9, + [385514] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - STATE(8630), 1, + STATE(8695), 1, sym_heredoc_body, - STATE(10100), 1, - sym_named_expr, + STATE(9794), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [382498] = 11, + [385545] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10615), 1, + ACTIONS(10688), 1, anon_sym_end, - STATE(8631), 1, + STATE(8696), 1, sym_heredoc_body, - STATE(8659), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9692), 1, + STATE(10186), 1, sym_else, - STATE(11486), 1, + STATE(10619), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [382533] = 11, + [385580] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10617), 1, + ACTIONS(10690), 1, anon_sym_end, - STATE(8632), 1, + STATE(8697), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9700), 1, + STATE(9752), 1, sym_else, - STATE(11611), 1, + STATE(10954), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [382568] = 11, + [385615] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10619), 1, - anon_sym_end, - STATE(8633), 1, + ACTIONS(10692), 1, + anon_sym_COLON_COLON, + STATE(8573), 1, + aux_sym_constant_repeat1, + STATE(8698), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10237), 1, - sym_else, - STATE(11539), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [382603] = 11, + ACTIONS(4592), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + [385640] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10621), 1, + ACTIONS(10694), 1, anon_sym_end, - STATE(8634), 1, + STATE(8699), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8746), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9714), 1, + STATE(10127), 1, sym_else, - STATE(11957), 1, + STATE(11154), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [382638] = 11, + [385675] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10623), 1, + ACTIONS(10696), 1, anon_sym_end, - STATE(8635), 1, + STATE(8700), 1, sym_heredoc_body, - STATE(8650), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9970), 1, + STATE(10128), 1, sym_else, - STATE(10849), 1, + STATE(11159), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [382673] = 11, + [385710] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10625), 1, - anon_sym_end, - STATE(8636), 1, + STATE(8701), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9972), 1, - sym_else, - STATE(10853), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [382708] = 11, + ACTIONS(4976), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [385731] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10627), 1, + ACTIONS(10698), 1, anon_sym_end, - STATE(8637), 1, + STATE(8702), 1, sym_heredoc_body, - STATE(8668), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9704), 1, + STATE(9819), 1, sym_else, - STATE(11786), 1, + STATE(11603), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [382743] = 11, + [385766] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10629), 1, - anon_sym_end, - STATE(8638), 1, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10305), 1, + sym_identifier, + STATE(8703), 1, sym_heredoc_body, - STATE(8653), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9975), 1, - sym_else, - STATE(10860), 1, - sym_ensure, + STATE(10125), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [382778] = 4, + ACTIONS(10309), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11360), 2, + sym_string, + sym_string_percent_literal, + [385797] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8639), 1, + STATE(8704), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10001), 8, + ACTIONS(10080), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -650853,106 +657798,80 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [382799] = 8, + [385818] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10386), 1, - sym__modifier_if_keyword, - ACTIONS(10388), 1, - sym__modifier_unless_keyword, - ACTIONS(10390), 1, - sym__modifier_rescue_keyword, - ACTIONS(10392), 1, - sym__modifier_ensure_keyword, - STATE(8640), 1, + STATE(8705), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10014), 4, + ACTIONS(9970), 8, sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [382828] = 11, + [385839] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10631), 1, + ACTIONS(10700), 1, anon_sym_end, - STATE(8641), 1, - sym_heredoc_body, - STATE(9115), 1, + STATE(8559), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(8706), 1, + sym_heredoc_body, + STATE(9431), 1, sym_rescue_block, - STATE(9976), 1, + STATE(10366), 1, sym_else, - STATE(10864), 1, + STATE(11844), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [382863] = 11, + [385874] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10633), 1, + ACTIONS(10702), 1, anon_sym_end, - STATE(8642), 1, - sym_heredoc_body, - STATE(9115), 1, + STATE(8632), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(8707), 1, + sym_heredoc_body, + STATE(9431), 1, sym_rescue_block, - STATE(9726), 1, + STATE(10346), 1, sym_else, - STATE(10535), 1, + STATE(11798), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [382898] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - STATE(8643), 1, - sym_heredoc_body, - STATE(10157), 1, - sym_named_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [382929] = 4, + [385909] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8644), 1, + STATE(8708), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10040), 8, + ACTIONS(10018), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -650961,15 +657880,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [382950] = 4, + [385930] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8645), 1, + STATE(8709), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9991), 8, + ACTIONS(10088), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -650978,56 +657897,60 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [382971] = 4, + [385951] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8646), 1, + ACTIONS(9930), 1, + sym__modifier_if_keyword, + ACTIONS(9932), 1, + sym__modifier_unless_keyword, + ACTIONS(9934), 1, + sym__modifier_rescue_keyword, + ACTIONS(9936), 1, + sym__modifier_ensure_keyword, + ACTIONS(10704), 1, + anon_sym_RPAREN, + STATE(2148), 1, + sym__terminator, + STATE(8710), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10042), 8, + ACTIONS(7796), 2, sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_end, - [382992] = 11, + [385984] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10635), 1, - anon_sym_end, - STATE(8647), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + STATE(8711), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9958), 1, - sym_else, - STATE(10786), 1, - sym_ensure, + STATE(10273), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [383027] = 4, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [386015] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8648), 1, + STATE(8712), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10044), 8, + ACTIONS(10020), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -651036,535 +657959,410 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [383048] = 9, + [386036] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - STATE(8649), 1, + STATE(8713), 1, sym_heredoc_body, - STATE(10218), 1, - sym_named_expr, + STATE(10427), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [383079] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10637), 1, - anon_sym_end, - STATE(8650), 1, - sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9983), 1, - sym_else, - STATE(10887), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [383114] = 4, + [386067] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8651), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10046), 8, - sym__line_break, + ACTIONS(9930), 1, sym__modifier_if_keyword, + ACTIONS(9932), 1, sym__modifier_unless_keyword, + ACTIONS(9934), 1, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, + ACTIONS(9936), 1, sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [383135] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8652), 1, + ACTIONS(10706), 1, + anon_sym_RPAREN, + STATE(2145), 1, + sym__terminator, + STATE(8714), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10048), 8, + ACTIONS(7796), 2, sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_end, - [383156] = 11, + [386100] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10639), 1, - anon_sym_end, - STATE(8653), 1, - sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9985), 1, - sym_else, - STATE(10897), 1, - sym_ensure, + ACTIONS(10708), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [383191] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10641), 1, - anon_sym_end, - STATE(8654), 1, + STATE(8715), 2, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9938), 1, - sym_else, - STATE(10771), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [383226] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10187), 1, + aux_sym_union_type_repeat1, + ACTIONS(4629), 6, + sym__line_break, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(10189), 1, anon_sym_STAR, - ACTIONS(10193), 1, anon_sym_DOT, - ACTIONS(10195), 1, anon_sym_QMARK, - ACTIONS(10580), 1, - anon_sym_PIPE, - STATE(8655), 1, - sym_heredoc_body, - STATE(8843), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4609), 2, - sym__start_of_brace_block, - anon_sym_do, - [383259] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8656), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10050), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [383280] = 11, + [386123] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10643), 1, + ACTIONS(10711), 1, anon_sym_end, - STATE(8657), 1, + STATE(8716), 1, sym_heredoc_body, - STATE(8729), 1, + STATE(8932), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9723), 1, + STATE(10136), 1, sym_else, - STATE(10530), 1, + STATE(11189), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [383315] = 9, + [386158] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - STATE(8658), 1, + ACTIONS(10305), 1, + sym_identifier, + STATE(8717), 1, sym_heredoc_body, - STATE(10254), 1, - sym_named_type, + STATE(9817), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [383346] = 11, + [386189] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10645), 1, + ACTIONS(10713), 1, anon_sym_end, - STATE(8659), 1, + STATE(8718), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9752), 1, + STATE(10138), 1, sym_else, - STATE(10816), 1, + STATE(11194), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [383381] = 11, + [386224] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10647), 1, + ACTIONS(10715), 1, anon_sym_end, - STATE(8660), 1, + STATE(8719), 1, sym_heredoc_body, - STATE(8663), 1, + STATE(8747), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9991), 1, + STATE(9921), 1, sym_else, - STATE(10921), 1, + STATE(10665), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [383416] = 10, + [386259] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9876), 1, - sym__modifier_if_keyword, - ACTIONS(9878), 1, - sym__modifier_unless_keyword, - ACTIONS(9880), 1, - sym__modifier_rescue_keyword, - ACTIONS(9882), 1, - sym__modifier_ensure_keyword, - ACTIONS(10649), 1, - anon_sym_RPAREN, - STATE(2148), 1, - sym__terminator, - STATE(8661), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10717), 1, + anon_sym_end, + STATE(8720), 1, sym_heredoc_body, + STATE(8823), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(9798), 1, + sym_else, + STATE(11615), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - [383449] = 11, + [386294] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10651), 1, + ACTIONS(10719), 1, anon_sym_end, - STATE(8662), 1, + STATE(8721), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9992), 1, + STATE(10038), 1, sym_else, - STATE(10925), 1, + STATE(10926), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [383484] = 11, + [386329] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10653), 1, + ACTIONS(10721), 1, anon_sym_end, - STATE(8663), 1, + STATE(8722), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8754), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9993), 1, + STATE(9824), 1, sym_else, - STATE(10928), 1, + STATE(12027), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [383519] = 4, + [386364] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8664), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10076), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10723), 1, anon_sym_end, - [383540] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10655), 1, - anon_sym_PIPE, + STATE(8723), 1, + sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(9825), 1, + sym_else, + STATE(10580), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(8665), 2, - sym_heredoc_body, - aux_sym_union_type_repeat1, - ACTIONS(4588), 6, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_do, - [383563] = 4, + [386399] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8666), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9995), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10725), 1, anon_sym_end, - [383584] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - STATE(8667), 1, + STATE(8724), 1, sym_heredoc_body, - STATE(10306), 1, - sym_named_expr, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(9801), 1, + sym_else, + STATE(11683), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11884), 2, - sym_string, - sym_string_percent_literal, - [383615] = 11, + [386434] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10658), 1, + ACTIONS(10727), 1, anon_sym_end, - STATE(8668), 1, + STATE(8725), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8761), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9757), 1, + STATE(10141), 1, sym_else, - STATE(10861), 1, + STATE(11205), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [383650] = 11, + [386469] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10660), 1, + ACTIONS(10729), 1, anon_sym_end, - STATE(8669), 1, + STATE(8726), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10307), 1, + STATE(10143), 1, sym_else, - STATE(11807), 1, + STATE(11213), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [383685] = 4, + [386504] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8670), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + STATE(8727), 1, sym_heredoc_body, + STATE(9912), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9981), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [383706] = 11, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [386535] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10662), 1, + ACTIONS(10731), 1, anon_sym_end, - STATE(8671), 1, + STATE(8728), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9724), 1, + STATE(9927), 1, sym_else, - STATE(10542), 1, + STATE(10677), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [383741] = 11, + [386570] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10664), 1, + ACTIONS(10733), 1, anon_sym_end, - STATE(8585), 1, - aux_sym_method_def_repeat1, - STATE(8672), 1, + STATE(8729), 1, sym_heredoc_body, - STATE(9339), 1, + STATE(8824), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, sym_rescue_block, - STATE(10165), 1, + STATE(9808), 1, sym_else, - STATE(10682), 1, + STATE(11752), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [383776] = 4, + [386605] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8673), 1, + STATE(8730), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9933), 8, + ACTIONS(9972), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -651573,351 +658371,297 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [383797] = 11, + [386626] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10666), 1, + ACTIONS(10735), 1, anon_sym_end, - STATE(8674), 1, + STATE(8731), 1, sym_heredoc_body, - STATE(8677), 1, + STATE(8770), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9843), 1, + STATE(10147), 1, sym_else, - STATE(11264), 1, + STATE(11226), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [383832] = 9, + [386661] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - STATE(8675), 1, + ACTIONS(10305), 1, + sym_identifier, + STATE(8732), 1, sym_heredoc_body, - STATE(10202), 1, - sym_named_type, + STATE(10022), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [383863] = 11, + [386692] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10668), 1, + ACTIONS(10737), 1, anon_sym_end, - STATE(8676), 1, + STATE(8733), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9908), 1, + STATE(10149), 1, sym_else, - STATE(11310), 1, + STATE(11231), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [383898] = 11, + [386727] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10670), 1, + ACTIONS(10739), 1, anon_sym_end, - STATE(8677), 1, + STATE(8734), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8751), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9912), 1, + STATE(9934), 1, sym_else, - STATE(11347), 1, + STATE(10709), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [383933] = 4, + [386762] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8678), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10741), 1, + anon_sym_end, + STATE(8735), 1, sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(9935), 1, + sym_else, + STATE(10713), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9949), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [383954] = 10, + [386797] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10175), 1, + ACTIONS(10212), 1, anon_sym_LBRACK, - ACTIONS(10177), 1, + ACTIONS(10214), 1, anon_sym_STAR, - ACTIONS(10181), 1, + ACTIONS(10218), 1, anon_sym_DOT, - ACTIONS(10183), 1, + ACTIONS(10220), 1, anon_sym_QMARK, - ACTIONS(10518), 1, + ACTIONS(10582), 1, anon_sym_PIPE, - STATE(8538), 1, - aux_sym_union_type_repeat1, - STATE(8679), 1, + STATE(8736), 1, sym_heredoc_body, + STATE(8907), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4685), 2, + ACTIONS(4670), 2, sym__line_break, anon_sym_SEMI, - [383987] = 9, + [386830] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - STATE(8680), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10743), 1, + anon_sym_end, + STATE(8702), 1, + aux_sym_method_def_repeat1, + STATE(8737), 1, sym_heredoc_body, - STATE(10293), 1, - sym_named_expr, + STATE(9431), 1, + sym_rescue_block, + STATE(9750), 1, + sym_else, + STATE(11264), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11884), 2, - sym_string, - sym_string_percent_literal, - [384018] = 11, + [386865] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10672), 1, + ACTIONS(10745), 1, anon_sym_end, - STATE(8681), 1, + STATE(8738), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8773), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10272), 1, + STATE(10152), 1, sym_else, - STATE(11641), 1, + STATE(11237), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [384053] = 4, + [386900] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8682), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4883), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10747), 1, anon_sym_end, - [384074] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10175), 1, - anon_sym_LBRACK, - ACTIONS(10177), 1, - anon_sym_STAR, - ACTIONS(10181), 1, - anon_sym_DOT, - ACTIONS(10183), 1, - anon_sym_QMARK, - ACTIONS(10518), 1, - anon_sym_PIPE, - STATE(8538), 1, - aux_sym_union_type_repeat1, - STATE(8683), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4609), 2, - sym__line_break, - anon_sym_SEMI, - [384107] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9876), 1, - sym__modifier_if_keyword, - ACTIONS(9878), 1, - sym__modifier_unless_keyword, - ACTIONS(9880), 1, - sym__modifier_rescue_keyword, - ACTIONS(9882), 1, - sym__modifier_ensure_keyword, - ACTIONS(10674), 1, - anon_sym_RPAREN, - STATE(2159), 1, - sym__terminator, - STATE(8684), 1, + STATE(8739), 1, sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10155), 1, + sym_else, + STATE(11243), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - [384140] = 9, + [386935] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - STATE(8685), 1, + STATE(8740), 1, sym_heredoc_body, - STATE(9706), 1, + STATE(10088), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [384171] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10187), 1, - anon_sym_LBRACK, - ACTIONS(10189), 1, - anon_sym_STAR, - ACTIONS(10193), 1, - anon_sym_DOT, - ACTIONS(10195), 1, - anon_sym_QMARK, - ACTIONS(10580), 1, - anon_sym_PIPE, - STATE(8686), 1, - sym_heredoc_body, - STATE(8843), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4605), 2, - sym__start_of_brace_block, - anon_sym_do, - [384204] = 11, + [386966] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10676), 1, + ACTIONS(10749), 1, anon_sym_end, - STATE(8687), 1, + STATE(8741), 1, sym_heredoc_body, - STATE(8700), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10036), 1, + STATE(9814), 1, sym_else, - STATE(11041), 1, + STATE(11778), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [384239] = 11, + [387001] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10678), 1, - anon_sym_end, - STATE(8688), 1, + ACTIONS(9908), 1, + sym_identifier, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + ACTIONS(10751), 1, + anon_sym_RPAREN, + STATE(8742), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10038), 1, - sym_else, - STATE(11048), 1, - sym_ensure, + STATE(9074), 1, + sym_annotation, + STATE(9207), 1, + aux_sym_param_repeat1, + STATE(10478), 1, + sym_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [384274] = 4, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + [387034] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8689), 1, + STATE(8743), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9917), 8, + ACTIONS(9974), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -651926,343 +658670,431 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [384295] = 11, + [387055] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10680), 1, + ACTIONS(10753), 1, anon_sym_end, - STATE(8690), 1, + STATE(8744), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10015), 1, + STATE(9738), 1, sym_else, - STATE(10985), 1, + STATE(11887), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [384330] = 11, + [387090] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10682), 1, - anon_sym_end, - STATE(8691), 1, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10305), 1, + sym_identifier, + STATE(8745), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10030), 1, - sym_else, - STATE(11019), 1, - sym_ensure, + STATE(10177), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [384365] = 8, + ACTIONS(10309), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11360), 2, + sym_string, + sym_string_percent_literal, + [387121] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10386), 1, - sym__modifier_if_keyword, - ACTIONS(10388), 1, - sym__modifier_unless_keyword, - ACTIONS(10390), 1, - sym__modifier_rescue_keyword, - ACTIONS(10392), 1, - sym__modifier_ensure_keyword, - STATE(8692), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9975), 4, - sym__line_break, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - anon_sym_SEMI, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10755), 1, anon_sym_end, - [384394] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - STATE(8693), 1, + STATE(8746), 1, sym_heredoc_body, - STATE(9778), 1, - sym_named_type, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10158), 1, + sym_else, + STATE(11257), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [384425] = 11, + [387156] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10684), 1, + ACTIONS(10757), 1, anon_sym_end, - STATE(8694), 1, + STATE(8747), 1, sym_heredoc_body, - STATE(8707), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10054), 1, + STATE(9951), 1, sym_else, - STATE(11087), 1, + STATE(10748), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [384460] = 11, + [387191] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10686), 1, + ACTIONS(10759), 1, anon_sym_end, - STATE(8695), 1, + STATE(8748), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8772), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9915), 1, + STATE(9872), 1, sym_else, - STATE(10708), 1, + STATE(10739), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [384495] = 11, + [387226] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10688), 1, + ACTIONS(10761), 1, anon_sym_end, - STATE(8696), 1, + STATE(8749), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10056), 1, + STATE(9874), 1, sym_else, - STATE(11092), 1, + STATE(10760), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [384530] = 11, + [387261] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10690), 1, + ACTIONS(10763), 1, anon_sym_end, - STATE(8697), 1, + STATE(8750), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10045), 1, + STATE(9940), 1, sym_else, - STATE(11059), 1, + STATE(10728), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [384565] = 11, + [387296] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10692), 1, + ACTIONS(10765), 1, anon_sym_end, - STATE(8698), 1, + STATE(8751), 1, sym_heredoc_body, - STATE(8708), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10061), 1, + STATE(9961), 1, sym_else, - STATE(11099), 1, + STATE(10772), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [384600] = 11, + [387331] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + STATE(8752), 1, + sym_heredoc_body, + STATE(10255), 1, + sym_named_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [387362] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10694), 1, + ACTIONS(10767), 1, anon_sym_end, - STATE(8699), 1, + STATE(8753), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8775), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10068), 1, + STATE(9889), 1, sym_else, - STATE(11114), 1, + STATE(10781), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [384635] = 11, + [387397] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10696), 1, + ACTIONS(10769), 1, anon_sym_end, - STATE(8700), 1, + STATE(8754), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10062), 1, + STATE(9892), 1, sym_else, - STATE(11103), 1, + STATE(10788), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [384670] = 10, + [387432] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10305), 1, + sym_identifier, + STATE(8755), 1, + sym_heredoc_body, + STATE(10372), 1, + sym_named_expr, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10309), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11360), 2, + sym_string, + sym_string_percent_literal, + [387463] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10175), 1, + ACTIONS(10212), 1, anon_sym_LBRACK, - ACTIONS(10177), 1, + ACTIONS(10214), 1, anon_sym_STAR, - ACTIONS(10181), 1, + ACTIONS(10218), 1, anon_sym_DOT, - ACTIONS(10183), 1, + ACTIONS(10220), 1, anon_sym_QMARK, - ACTIONS(10518), 1, + ACTIONS(10582), 1, anon_sym_PIPE, - STATE(8538), 1, - aux_sym_union_type_repeat1, - STATE(8701), 1, + STATE(8756), 1, sym_heredoc_body, + STATE(8907), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4570), 2, + ACTIONS(4607), 2, sym__line_break, anon_sym_SEMI, - [384703] = 11, + [387496] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10698), 1, + ACTIONS(10771), 1, anon_sym_end, - STATE(8702), 1, + STATE(8554), 1, + aux_sym_method_def_repeat1, + STATE(8757), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9431), 1, + sym_rescue_block, + STATE(9742), 1, + sym_else, + STATE(11240), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [387531] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10773), 1, + anon_sym_end, + STATE(8750), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(8758), 1, + sym_heredoc_body, + STATE(9431), 1, sym_rescue_block, - STATE(10284), 1, + STATE(9870), 1, sym_else, - STATE(10764), 1, + STATE(11933), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [384738] = 9, + [387566] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8759), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10093), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [387587] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - STATE(8703), 1, + STATE(8760), 1, sym_heredoc_body, - STATE(9926), 1, + STATE(9979), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [384769] = 4, + [387618] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8704), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10775), 1, + anon_sym_end, + STATE(8761), 1, + sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10170), 1, + sym_else, + STATE(11295), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [387653] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8762), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10007), 8, + ACTIONS(6840), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -652271,15 +659103,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [384790] = 4, + [387674] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8705), 1, + STATE(8763), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10012), 8, + ACTIONS(10095), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -652288,308 +659120,277 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [384811] = 9, + [387695] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - STATE(8706), 1, + STATE(8764), 1, sym_heredoc_body, - STATE(10028), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [384842] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(4988), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10700), 1, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - STATE(8707), 1, + [387716] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8765), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10070), 1, - sym_else, - STATE(11127), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [384877] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(4952), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10702), 1, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - STATE(8708), 1, + [387737] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10212), 1, + anon_sym_LBRACK, + ACTIONS(10214), 1, + anon_sym_STAR, + ACTIONS(10218), 1, + anon_sym_DOT, + ACTIONS(10220), 1, + anon_sym_QMARK, + ACTIONS(10582), 1, + anon_sym_PIPE, + STATE(8766), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10374), 1, - sym_else, - STATE(11136), 1, - sym_ensure, + STATE(8907), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [384912] = 9, + ACTIONS(4686), 2, + sym__line_break, + anon_sym_SEMI, + [387770] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - STATE(8709), 1, + ACTIONS(10305), 1, + sym_identifier, + STATE(8767), 1, sym_heredoc_body, - STATE(10084), 1, - sym_named_type, + STATE(9779), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(10309), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11360), 2, sym_string, sym_string_percent_literal, - [384943] = 11, + [387801] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8768), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4960), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [387822] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10704), 1, + ACTIONS(10777), 1, anon_sym_end, - STATE(8710), 1, - sym_heredoc_body, - STATE(9115), 1, + STATE(8562), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(8769), 1, + sym_heredoc_body, + STATE(9431), 1, sym_rescue_block, - STATE(9730), 1, + STATE(9762), 1, sym_else, - STATE(10631), 1, + STATE(11333), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [384978] = 11, + [387857] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10706), 1, + ACTIONS(10779), 1, anon_sym_end, - STATE(8711), 1, + STATE(8770), 1, sym_heredoc_body, - STATE(8713), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10076), 1, + STATE(10171), 1, sym_else, - STATE(11159), 1, + STATE(11310), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385013] = 11, + [387892] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10708), 1, + ACTIONS(10781), 1, anon_sym_end, - STATE(8712), 1, + STATE(8771), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8780), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10079), 1, + STATE(9983), 1, sym_else, - STATE(11164), 1, + STATE(10806), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385048] = 11, + [387927] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10710), 1, + ACTIONS(10783), 1, anon_sym_end, - STATE(8713), 1, + STATE(8772), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10080), 1, + STATE(9908), 1, sym_else, - STATE(11167), 1, + STATE(10857), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385083] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10712), 1, - anon_sym_COLON_COLON, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(8714), 2, - sym_heredoc_body, - aux_sym_constant_repeat1, - ACTIONS(4563), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ, - [385106] = 11, + [387962] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10715), 1, + ACTIONS(10785), 1, anon_sym_end, - STATE(8715), 1, + STATE(8773), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10144), 1, + STATE(10174), 1, sym_else, - STATE(10545), 1, + STATE(11320), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385141] = 9, + [387997] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - STATE(8716), 1, + STATE(8774), 1, sym_heredoc_body, - STATE(10131), 1, + STATE(9864), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [385172] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8717), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9917), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [385193] = 11, + [388028] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10717), 1, + ACTIONS(10787), 1, anon_sym_end, - STATE(8669), 1, - aux_sym_method_def_repeat1, - STATE(8718), 1, + STATE(8775), 1, sym_heredoc_body, - STATE(9339), 1, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, sym_rescue_block, - STATE(9715), 1, + STATE(9918), 1, sym_else, - STATE(10628), 1, + STATE(10880), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385228] = 4, + [388063] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8719), 1, + STATE(8776), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4919), 8, + ACTIONS(10097), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -652598,60 +659399,37 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [385249] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9876), 1, - sym__modifier_if_keyword, - ACTIONS(9878), 1, - sym__modifier_unless_keyword, - ACTIONS(9880), 1, - sym__modifier_rescue_keyword, - ACTIONS(9882), 1, - sym__modifier_ensure_keyword, - ACTIONS(10719), 1, - anon_sym_RPAREN, - STATE(2151), 1, - sym__terminator, - STATE(8720), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - [385282] = 9, + [388084] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - STATE(8721), 1, + STATE(8777), 1, sym_heredoc_body, - STATE(10152), 1, + STATE(9993), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [385313] = 4, + [388115] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8722), 1, + STATE(8778), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10072), 8, + ACTIONS(10099), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -652660,107 +659438,63 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [385334] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - STATE(8723), 1, - sym_heredoc_body, - STATE(10181), 1, - sym_named_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [385365] = 11, + [388136] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10721), 1, + ACTIONS(10789), 1, anon_sym_end, - STATE(8724), 1, + STATE(8779), 1, sym_heredoc_body, - STATE(8749), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10166), 1, + STATE(9985), 1, sym_else, - STATE(10694), 1, + STATE(10815), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385400] = 11, + [388171] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10723), 1, + ACTIONS(10791), 1, anon_sym_end, - STATE(8725), 1, + STATE(8780), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10220), 1, + STATE(9989), 1, sym_else, - STATE(10720), 1, + STATE(10818), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385435] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - STATE(8726), 1, - sym_heredoc_body, - STATE(10246), 1, - sym_named_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [385466] = 4, + [388206] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8727), 1, + STATE(8781), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4927), 8, + ACTIONS(10101), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -652769,15 +659503,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [385487] = 4, + [388227] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8728), 1, + STATE(8782), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4939), 8, + ACTIONS(4980), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -652786,146 +659520,54 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [385508] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10725), 1, - anon_sym_end, - STATE(8729), 1, - sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9732), 1, - sym_else, - STATE(10669), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [385543] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - STATE(8730), 1, - sym_heredoc_body, - STATE(10295), 1, - sym_named_type, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [385574] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8731), 1, - sym_heredoc_body, - STATE(8843), 1, - aux_sym_union_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4588), 7, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_PIPE, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_do, - [385597] = 9, + [388248] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, + ACTIONS(8254), 1, sym_identifier, - ACTIONS(8271), 1, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - STATE(8732), 1, + STATE(8783), 1, sym_heredoc_body, - STATE(10321), 1, + STATE(10053), 1, sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11003), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [385628] = 9, + [388279] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - STATE(8733), 1, + STATE(8784), 1, sym_heredoc_body, - STATE(10337), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [385659] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9876), 1, + ACTIONS(10103), 8, + sym__line_break, sym__modifier_if_keyword, - ACTIONS(9878), 1, sym__modifier_unless_keyword, - ACTIONS(9880), 1, sym__modifier_rescue_keyword, - ACTIONS(9882), 1, + sym__regular_ensure_keyword, sym__modifier_ensure_keyword, - ACTIONS(10727), 1, - anon_sym_RPAREN, - STATE(2145), 1, - sym__terminator, - STATE(8734), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7731), 2, - sym__line_break, anon_sym_SEMI, - [385692] = 4, + anon_sym_end, + [388300] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8735), 1, + STATE(8785), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9973), 8, + ACTIONS(10105), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -652934,179 +659576,149 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [385713] = 7, + [388321] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3202), 1, - sym__start_of_brace_block, - ACTIONS(10729), 1, - anon_sym_do, - STATE(8736), 1, + STATE(8786), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9461), 2, - sym_do_end_block, - sym_brace_block, - ACTIONS(5510), 4, + ACTIONS(10107), 8, sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [385740] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10731), 1, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - STATE(8737), 1, - sym_heredoc_body, - STATE(8746), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10133), 1, - sym_else, - STATE(11286), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [385775] = 11, + [388342] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10733), 1, - anon_sym_end, - STATE(8738), 1, + ACTIONS(9930), 1, + sym__modifier_if_keyword, + ACTIONS(9932), 1, + sym__modifier_unless_keyword, + ACTIONS(9934), 1, + sym__modifier_rescue_keyword, + ACTIONS(9936), 1, + sym__modifier_ensure_keyword, + ACTIONS(10793), 1, + anon_sym_RPAREN, + STATE(2139), 1, + sym__terminator, + STATE(8787), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10134), 1, - sym_else, - STATE(11292), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385810] = 11, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + [388375] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10735), 1, + ACTIONS(10795), 1, anon_sym_end, - STATE(8739), 1, + STATE(8788), 1, sym_heredoc_body, - STATE(8768), 1, + STATE(8791), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10317), 1, + STATE(9931), 1, sym_else, - STATE(10844), 1, + STATE(10944), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385845] = 11, + [388410] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10737), 1, - anon_sym_end, - STATE(8740), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + STATE(8789), 1, sym_heredoc_body, - STATE(8754), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10163), 1, - sym_else, - STATE(11359), 1, - sym_ensure, + STATE(10169), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385880] = 11, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [388441] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10739), 1, + ACTIONS(10797), 1, anon_sym_end, - STATE(8741), 1, + STATE(8790), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10167), 1, + STATE(9942), 1, sym_else, - STATE(11369), 1, + STATE(10953), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385915] = 11, + [388476] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10741), 1, + ACTIONS(10799), 1, anon_sym_end, - STATE(8742), 1, + STATE(8791), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10324), 1, + STATE(9943), 1, sym_else, - STATE(10857), 1, + STATE(10957), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [385950] = 4, + [388511] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8743), 1, + STATE(8792), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4863), 8, + ACTIONS(10109), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -653115,221 +659727,266 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [385971] = 9, + [388532] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, sym__string_literal_start, - ACTIONS(8273), 1, + ACTIONS(8280), 1, sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - STATE(8744), 1, + STATE(8793), 1, sym_heredoc_body, - STATE(10333), 1, - sym_named_expr, + STATE(10198), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, + ACTIONS(8270), 2, sym__constant_segment, sym_identifier_method_call, - STATE(11884), 2, + STATE(11699), 2, sym_string, sym_string_percent_literal, - [386002] = 11, + [388563] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10743), 1, - anon_sym_end, - STATE(8745), 1, + STATE(8794), 1, sym_heredoc_body, - STATE(8756), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10170), 1, - sym_else, - STATE(11375), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386037] = 11, + ACTIONS(10111), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [388584] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, + STATE(8795), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9976), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10745), 1, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - STATE(8746), 1, + [388605] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + STATE(8796), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10174), 1, - sym_else, - STATE(11385), 1, - sym_ensure, + STATE(10214), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386072] = 11, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [388636] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10747), 1, + ACTIONS(10801), 1, anon_sym_end, - STATE(8747), 1, + STATE(8797), 1, sym_heredoc_body, - STATE(8867), 1, + STATE(8806), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10296), 1, + STATE(10187), 1, sym_else, - STATE(11768), 1, + STATE(11364), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386107] = 11, + [388671] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10749), 1, - anon_sym_end, - STATE(8748), 1, + ACTIONS(10533), 1, + anon_sym_PIPE, + STATE(8798), 1, sym_heredoc_body, - STATE(8771), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10334), 1, - sym_else, - STATE(10908), 1, - sym_ensure, + STATE(8893), 1, + aux_sym_union_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386142] = 11, + ACTIONS(4636), 6, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_do, + [388696] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10751), 1, + ACTIONS(10803), 1, anon_sym_end, - STATE(8749), 1, + STATE(8799), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10340), 1, + STATE(10190), 1, sym_else, - STATE(10951), 1, + STATE(11372), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386177] = 11, + [388731] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + STATE(8800), 1, + sym_heredoc_body, + STATE(10245), 1, + sym_named_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [388762] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8801), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(9962), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10753), 1, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - STATE(8750), 1, + [388783] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + STATE(8802), 1, sym_heredoc_body, - STATE(8763), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9742), 1, - sym_else, - STATE(10726), 1, - sym_ensure, + STATE(10311), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386212] = 10, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [388814] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9876), 1, + ACTIONS(9930), 1, sym__modifier_if_keyword, - ACTIONS(9878), 1, + ACTIONS(9932), 1, sym__modifier_unless_keyword, - ACTIONS(9880), 1, + ACTIONS(9934), 1, sym__modifier_rescue_keyword, - ACTIONS(9882), 1, + ACTIONS(9936), 1, sym__modifier_ensure_keyword, - ACTIONS(10755), 1, + ACTIONS(10805), 1, anon_sym_RPAREN, - STATE(2158), 1, + STATE(2141), 1, sym__terminator, - STATE(8751), 1, + STATE(8803), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, + ACTIONS(7796), 2, sym__line_break, anon_sym_SEMI, - [386245] = 4, + [388847] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8752), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + STATE(8804), 1, sym_heredoc_body, + STATE(10353), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4875), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [386266] = 4, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [388878] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8753), 1, + STATE(8805), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4879), 8, + ACTIONS(10113), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -653338,87 +659995,61 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [386287] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10757), 1, - anon_sym_end, - STATE(8754), 1, - sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10183), 1, - sym_else, - STATE(11412), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [386322] = 11, + [388899] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10759), 1, + ACTIONS(10807), 1, anon_sym_end, - STATE(8755), 1, + STATE(8806), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9743), 1, + STATE(10193), 1, sym_else, - STATE(10751), 1, + STATE(11382), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386357] = 11, + [388934] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10761), 1, - anon_sym_end, - STATE(8756), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + STATE(8807), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10186), 1, - sym_else, - STATE(11422), 1, - sym_ensure, + STATE(10382), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386392] = 4, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [388965] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8757), 1, + STATE(8808), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4887), 8, + ACTIONS(10115), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -653427,15 +660058,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [386413] = 4, + [388986] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8758), 1, + STATE(8809), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4891), 8, + ACTIONS(10117), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -653444,15 +660075,37 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [386434] = 4, + [389007] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8759), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + STATE(8810), 1, + sym_heredoc_body, + STATE(10401), 1, + sym_named_type, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [389038] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8811), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10028), 8, + ACTIONS(10119), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -653461,32 +660114,61 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [386455] = 4, + [389059] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8760), 1, + ACTIONS(8254), 1, + sym_identifier, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + STATE(8812), 1, sym_heredoc_body, + STATE(10417), 1, + sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10034), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, + ACTIONS(8270), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11699), 2, + sym_string, + sym_string_percent_literal, + [389090] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10809), 1, anon_sym_end, - [386476] = 4, + STATE(8813), 1, + sym_heredoc_body, + STATE(8825), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(9996), 1, + sym_else, + STATE(11309), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [389125] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8761), 1, + STATE(8814), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4899), 8, + ACTIONS(4896), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -653495,135 +660177,143 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [386497] = 11, + [389146] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10763), 1, + ACTIONS(10811), 1, anon_sym_end, - STATE(8762), 1, + STATE(8815), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8870), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9874), 1, + STATE(10068), 1, sym_else, - STATE(10620), 1, + STATE(10989), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386532] = 11, + [389181] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10765), 1, + ACTIONS(10813), 1, anon_sym_end, - STATE(8763), 1, + STATE(8816), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9744), 1, + STATE(9997), 1, sym_else, - STATE(10759), 1, + STATE(11318), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386567] = 11, + [389216] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, + STATE(8817), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4900), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10767), 1, + sym__modifier_ensure_keyword, + anon_sym_SEMI, anon_sym_end, - STATE(8764), 1, + [389237] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8818), 1, sym_heredoc_body, - STATE(8766), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10197), 1, - sym_else, - STATE(11449), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386602] = 11, + ACTIONS(4904), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [389258] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10769), 1, + ACTIONS(10815), 1, anon_sym_end, - STATE(8765), 1, + STATE(8819), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10198), 1, + STATE(10074), 1, sym_else, - STATE(11453), 1, + STATE(11000), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386637] = 11, + [389293] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10771), 1, - anon_sym_end, - STATE(8766), 1, + ACTIONS(8278), 1, + sym__string_literal_start, + ACTIONS(8280), 1, + sym__string_percent_literal_start, + ACTIONS(10305), 1, + sym_identifier, + STATE(8820), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10199), 1, - sym_else, - STATE(11456), 1, - sym_ensure, + STATE(9811), 1, + sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386672] = 4, + ACTIONS(10309), 2, + sym__constant_segment, + sym_identifier_method_call, + STATE(11360), 2, + sym_string, + sym_string_percent_literal, + [389324] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8767), 1, + STATE(8821), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4907), 8, + ACTIONS(4912), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -653632,111 +660322,104 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [386693] = 11, + [389345] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10773), 1, - anon_sym_end, - STATE(8768), 1, + STATE(8822), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10355), 1, - sym_else, - STATE(11130), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386728] = 11, + ACTIONS(9978), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [389366] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10775), 1, + ACTIONS(10817), 1, anon_sym_end, - STATE(8647), 1, - aux_sym_method_def_repeat1, - STATE(8769), 1, + STATE(8823), 1, sym_heredoc_body, - STATE(9339), 1, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, sym_rescue_block, - STATE(9696), 1, + STATE(9906), 1, sym_else, - STATE(11301), 1, + STATE(10834), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386763] = 11, + [389401] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10777), 1, + ACTIONS(10819), 1, anon_sym_end, - STATE(8770), 1, + STATE(8824), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9707), 1, + STATE(9944), 1, sym_else, - STATE(11340), 1, + STATE(10972), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386798] = 11, + [389436] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10779), 1, + ACTIONS(10821), 1, anon_sym_end, - STATE(8771), 1, + STATE(8825), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10369), 1, + STATE(10007), 1, sym_else, - STATE(11174), 1, + STATE(11410), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386833] = 4, + [389471] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8772), 1, + STATE(8826), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10060), 8, + ACTIONS(10123), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -653745,63 +660428,87 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [386854] = 11, + [389492] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10781), 1, + ACTIONS(10823), 1, anon_sym_end, - STATE(8773), 1, + STATE(8827), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8914), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9949), 1, + STATE(10091), 1, sym_else, - STATE(10793), 1, + STATE(11051), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386889] = 11, + [389527] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10783), 1, + ACTIONS(10825), 1, anon_sym_end, - STATE(8774), 1, + STATE(8828), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8839), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9963), 1, + STATE(9990), 1, sym_else, - STATE(10832), 1, + STATE(11236), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [386924] = 4, + [389562] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8775), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10827), 1, + anon_sym_end, + STATE(8829), 1, + sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(9795), 1, + sym_else, + STATE(11563), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [389597] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8830), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4911), 8, + ACTIONS(4916), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -653810,15 +660517,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [386945] = 4, + [389618] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8776), 1, + STATE(8831), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4915), 8, + ACTIONS(4920), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -653827,15 +660534,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [386966] = 4, + [389639] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8777), 1, + STATE(8832), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4923), 8, + ACTIONS(10056), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -653844,39 +660551,39 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [386987] = 11, + [389660] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10785), 1, + ACTIONS(10829), 1, anon_sym_end, - STATE(8778), 1, + STATE(8833), 1, sym_heredoc_body, - STATE(8852), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10153), 1, + STATE(9999), 1, sym_else, - STATE(11338), 1, + STATE(11313), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [387022] = 4, + [389695] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8779), 1, + STATE(8834), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4931), 8, + ACTIONS(4928), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -653885,15 +660592,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [387043] = 4, + [389716] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8780), 1, + STATE(8835), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4935), 8, + ACTIONS(4932), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -653902,62 +660609,38 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [387064] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10787), 1, - anon_sym_end, - STATE(8781), 1, - sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10172), 1, - sym_else, - STATE(11373), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [387099] = 10, + [389737] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10187), 1, + ACTIONS(10249), 1, anon_sym_LBRACK, - ACTIONS(10189), 1, + ACTIONS(10251), 1, anon_sym_STAR, - ACTIONS(10193), 1, + ACTIONS(10255), 1, anon_sym_DOT, - ACTIONS(10195), 1, + ACTIONS(10257), 1, anon_sym_QMARK, - ACTIONS(10580), 1, + ACTIONS(10533), 1, anon_sym_PIPE, - STATE(8782), 1, - sym_heredoc_body, - STATE(8843), 1, + STATE(8798), 1, aux_sym_union_type_repeat1, + STATE(8836), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4570), 2, + ACTIONS(4625), 2, sym__start_of_brace_block, anon_sym_do, - [387132] = 4, + [389770] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8783), 1, + STATE(8837), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4859), 8, + ACTIONS(4940), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -653966,86 +660649,63 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [387153] = 11, + [389791] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10789), 1, + ACTIONS(10831), 1, anon_sym_end, - STATE(8784), 1, + STATE(8838), 1, sym_heredoc_body, - STATE(8788), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9671), 1, + STATE(10095), 1, sym_else, - STATE(11217), 1, + STATE(11058), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [387188] = 11, + [389826] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10791), 1, + ACTIONS(10833), 1, anon_sym_end, - STATE(8785), 1, + STATE(8839), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9675), 1, + STATE(10004), 1, sym_else, - STATE(11236), 1, + STATE(11378), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [387223] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9856), 1, - sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - ACTIONS(10793), 1, - anon_sym_RPAREN, - STATE(8786), 1, - sym_heredoc_body, - STATE(9058), 1, - sym_annotation, - STATE(9144), 1, - aux_sym_param_repeat1, - STATE(10436), 1, - sym_param, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - [387256] = 4, + [389861] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8787), 1, + STATE(8840), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4951), 8, + ACTIONS(10105), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -654054,58 +660714,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [387277] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10795), 1, - anon_sym_end, - STATE(8788), 1, - sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9676), 1, - sym_else, - STATE(11244), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [387312] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10797), 1, - anon_sym_COLON_COLON, - STATE(8789), 1, - sym_heredoc_body, - STATE(8801), 1, - aux_sym_constant_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4549), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ, - [387337] = 4, + [389882] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8790), 1, + STATE(8841), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9915), 8, + ACTIONS(10107), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -654114,15 +660731,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [387358] = 4, + [389903] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8791), 1, + STATE(8842), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10066), 8, + ACTIONS(10109), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -654131,80 +660748,38 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [387379] = 4, + [389924] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8792), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10005), 8, - sym__line_break, + ACTIONS(9930), 1, sym__modifier_if_keyword, + ACTIONS(9932), 1, sym__modifier_unless_keyword, + ACTIONS(9934), 1, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, + ACTIONS(9936), 1, sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [387400] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10799), 1, - anon_sym_end, - STATE(8793), 1, - sym_heredoc_body, - STATE(8807), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10123), 1, - sym_else, - STATE(11259), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [387435] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10801), 1, - anon_sym_end, - STATE(8794), 1, + ACTIONS(10835), 1, + anon_sym_RPAREN, + STATE(2146), 1, + sym__terminator, + STATE(8843), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10135), 1, - sym_else, - STATE(11285), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [387470] = 4, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + [389957] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8795), 1, + STATE(8844), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10086), 8, + ACTIONS(5557), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -654213,164 +660788,56 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [387491] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10797), 1, - anon_sym_COLON_COLON, - STATE(8714), 1, - aux_sym_constant_repeat1, - STATE(8796), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4559), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ, - [387516] = 10, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9876), 1, - sym__modifier_if_keyword, - ACTIONS(9878), 1, - sym__modifier_unless_keyword, - ACTIONS(9880), 1, - sym__modifier_rescue_keyword, - ACTIONS(9882), 1, - sym__modifier_ensure_keyword, - ACTIONS(10803), 1, - anon_sym_RPAREN, - STATE(2143), 1, - sym__terminator, - STATE(8797), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - [387549] = 11, + [389978] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10805), 1, + ACTIONS(10837), 1, anon_sym_end, - STATE(8798), 1, + STATE(8845), 1, sym_heredoc_body, - STATE(8863), 1, + STATE(8923), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10178), 1, + STATE(9858), 1, sym_else, - STATE(11397), 1, + STATE(11892), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [387584] = 10, + [390013] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10175), 1, - anon_sym_LBRACK, - ACTIONS(10177), 1, - anon_sym_STAR, - ACTIONS(10181), 1, - anon_sym_DOT, - ACTIONS(10183), 1, - anon_sym_QMARK, - ACTIONS(10518), 1, - anon_sym_PIPE, - STATE(8538), 1, - aux_sym_union_type_repeat1, - STATE(8799), 1, + STATE(8846), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4641), 2, + ACTIONS(4944), 8, sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, anon_sym_SEMI, - [387617] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - STATE(8800), 1, - sym_heredoc_body, - STATE(10301), 1, - sym_named_expr, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10262), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11884), 2, - sym_string, - sym_string_percent_literal, - [387648] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10797), 1, - anon_sym_COLON_COLON, - STATE(8714), 1, - aux_sym_constant_repeat1, - STATE(8801), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4555), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ, - [387673] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10797), 1, - anon_sym_COLON_COLON, - STATE(8796), 1, - aux_sym_constant_repeat1, - STATE(8802), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4555), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ, - [387698] = 4, + anon_sym_end, + [390034] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8803), 1, + STATE(8847), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4867), 8, + ACTIONS(4948), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -654379,111 +660846,111 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [387719] = 11, + [390055] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10807), 1, + ACTIONS(10839), 1, anon_sym_end, - STATE(8804), 1, + STATE(8848), 1, sym_heredoc_body, - STATE(8817), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10242), 1, + STATE(9859), 1, sym_else, - STATE(11572), 1, + STATE(11904), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [387754] = 11, + [390090] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10809), 1, + ACTIONS(10841), 1, anon_sym_end, - STATE(8805), 1, + STATE(8849), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8868), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9729), 1, + STATE(10270), 1, sym_else, - STATE(10582), 1, + STATE(11577), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [387789] = 11, + [390125] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10811), 1, + ACTIONS(10843), 1, anon_sym_end, - STATE(8806), 1, + STATE(8850), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10243), 1, + STATE(10272), 1, sym_else, - STATE(11577), 1, + STATE(11581), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [387824] = 11, + [390160] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10813), 1, + ACTIONS(10845), 1, anon_sym_end, - STATE(8807), 1, + STATE(8851), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8860), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10200), 1, + STATE(10018), 1, sym_else, - STATE(11451), 1, + STATE(11521), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [387859] = 4, + [390195] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8808), 1, + STATE(8852), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9933), 8, + ACTIONS(4956), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -654492,39 +660959,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [387880] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10815), 1, - anon_sym_end, - STATE(8809), 1, - sym_heredoc_body, - STATE(8882), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9741), 1, - sym_else, - STATE(11498), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [387915] = 4, + [390216] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8810), 1, + STATE(8853), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5518), 8, + ACTIONS(10125), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -654533,15 +660976,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [387936] = 4, + [390237] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8811), 1, + STATE(8854), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10084), 8, + ACTIONS(4964), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -654550,182 +660993,193 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [387957] = 10, + [390258] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9876), 1, - sym__modifier_if_keyword, - ACTIONS(9878), 1, - sym__modifier_unless_keyword, - ACTIONS(9880), 1, - sym__modifier_rescue_keyword, - ACTIONS(9882), 1, - sym__modifier_ensure_keyword, - ACTIONS(10817), 1, - anon_sym_RPAREN, - STATE(2147), 1, - sym__terminator, - STATE(8812), 1, + STATE(8855), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, + ACTIONS(4968), 8, sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, anon_sym_SEMI, - [387990] = 11, + anon_sym_end, + [390279] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10819), 1, + ACTIONS(10847), 1, anon_sym_end, - STATE(8813), 1, - sym_heredoc_body, - STATE(8825), 1, + STATE(8543), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(8856), 1, + sym_heredoc_body, + STATE(9431), 1, sym_rescue_block, - STATE(10258), 1, + STATE(9867), 1, sym_else, - STATE(11609), 1, + STATE(11970), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388025] = 11, + [390314] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8857), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4972), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [390335] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10821), 1, + ACTIONS(10849), 1, anon_sym_end, - STATE(8814), 1, + STATE(8858), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10259), 1, + STATE(9868), 1, sym_else, - STATE(11615), 1, + STATE(11982), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388060] = 11, + [390370] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10823), 1, + ACTIONS(10851), 1, anon_sym_end, - STATE(8815), 1, + STATE(8859), 1, sym_heredoc_body, - STATE(8832), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9799), 1, + STATE(10024), 1, sym_else, - STATE(11117), 1, + STATE(11554), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388095] = 11, + [390405] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10825), 1, + ACTIONS(10853), 1, anon_sym_end, - STATE(8816), 1, + STATE(8860), 1, sym_heredoc_body, - STATE(8827), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10266), 1, + STATE(10025), 1, sym_else, - STATE(11623), 1, + STATE(11567), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388130] = 11, + [390440] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10827), 1, + ACTIONS(10855), 1, anon_sym_end, - STATE(8817), 1, + STATE(8861), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8874), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10267), 1, + STATE(10283), 1, sym_else, - STATE(11629), 1, + STATE(11607), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388165] = 11, + [390475] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10829), 1, + ACTIONS(10857), 1, anon_sym_end, - STATE(8681), 1, - aux_sym_method_def_repeat1, - STATE(8818), 1, + STATE(8862), 1, sym_heredoc_body, - STATE(9339), 1, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, sym_rescue_block, - STATE(9695), 1, + STATE(10284), 1, sym_else, - STATE(11574), 1, + STATE(11611), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388200] = 4, + [390510] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8819), 1, + STATE(8863), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9931), 8, + ACTIONS(10111), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -654734,15 +661188,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [388221] = 4, + [390531] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8820), 1, + STATE(8864), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9935), 8, + ACTIONS(9962), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -654751,39 +661205,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [388242] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10831), 1, - anon_sym_end, - STATE(8821), 1, - sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10233), 1, - sym_else, - STATE(11527), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [388277] = 4, + [390552] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8822), 1, + STATE(8865), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4771), 8, + ACTIONS(10113), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -654792,400 +661222,380 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [388298] = 4, + [390573] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8823), 1, + ACTIONS(10692), 1, + anon_sym_COLON_COLON, + STATE(8866), 1, sym_heredoc_body, + STATE(8904), 1, + aux_sym_constant_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10054), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [388319] = 11, + ACTIONS(4586), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + [390598] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10833), 1, + ACTIONS(10859), 1, anon_sym_end, - STATE(8495), 1, - aux_sym_method_def_repeat1, - STATE(8824), 1, + STATE(8867), 1, sym_heredoc_body, - STATE(9339), 1, + STATE(8875), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, sym_rescue_block, - STATE(10206), 1, + STATE(10288), 1, sym_else, - STATE(11475), 1, + STATE(11618), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388354] = 11, + [390633] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10835), 1, + ACTIONS(10861), 1, anon_sym_end, - STATE(8825), 1, + STATE(8868), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10276), 1, + STATE(10289), 1, sym_else, - STATE(11674), 1, + STATE(11622), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388389] = 11, + [390668] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10837), 1, + ACTIONS(10863), 1, anon_sym_end, - STATE(8826), 1, + STATE(8869), 1, sym_heredoc_body, - STATE(8846), 1, + STATE(8925), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9996), 1, + STATE(10103), 1, sym_else, - STATE(10947), 1, + STATE(11071), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388424] = 11, + [390703] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10839), 1, + ACTIONS(10865), 1, anon_sym_end, - STATE(8827), 1, + STATE(8870), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10277), 1, + STATE(10107), 1, sym_else, - STATE(11683), 1, + STATE(11082), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388459] = 11, + [390738] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10841), 1, - anon_sym_end, - STATE(8828), 1, + STATE(8871), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(10209), 1, - sym_else, - STATE(11483), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388494] = 11, + ACTIONS(5572), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [390759] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10843), 1, + ACTIONS(10867), 1, anon_sym_end, - STATE(8829), 1, - sym_heredoc_body, - STATE(9115), 1, + STATE(8721), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(8872), 1, + sym_heredoc_body, + STATE(9431), 1, sym_rescue_block, - STATE(10305), 1, + STATE(9797), 1, sym_else, - STATE(11767), 1, + STATE(11586), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388529] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8830), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9929), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [388550] = 11, + [390794] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10845), 1, + ACTIONS(10869), 1, anon_sym_end, - STATE(8831), 1, + STATE(8873), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9999), 1, + STATE(10021), 1, sym_else, - STATE(10952), 1, + STATE(10887), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388585] = 11, + [390829] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10847), 1, + ACTIONS(10871), 1, anon_sym_end, - STATE(8832), 1, + STATE(8874), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9826), 1, + STATE(10297), 1, sym_else, - STATE(11223), 1, + STATE(11645), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388620] = 11, + [390864] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10849), 1, + ACTIONS(10873), 1, anon_sym_end, - STATE(8619), 1, - aux_sym_method_def_repeat1, - STATE(8833), 1, + STATE(8875), 1, sym_heredoc_body, - STATE(9339), 1, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, sym_rescue_block, - STATE(9814), 1, + STATE(10299), 1, sym_else, - STATE(11922), 1, + STATE(11658), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388655] = 11, + [390899] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10851), 1, + ACTIONS(10875), 1, anon_sym_end, - STATE(8654), 1, - aux_sym_method_def_repeat1, - STATE(8834), 1, + STATE(8876), 1, sym_heredoc_body, - STATE(9339), 1, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, sym_rescue_block, - STATE(9854), 1, + STATE(9827), 1, sym_else, - STATE(10579), 1, + STATE(10584), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388690] = 11, + [390934] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10853), 1, + ACTIONS(10877), 1, anon_sym_end, - STATE(8835), 1, + STATE(8877), 1, sym_heredoc_body, - STATE(8839), 1, + STATE(8881), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10285), 1, + STATE(10058), 1, sym_else, - STATE(11710), 1, + STATE(11726), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388725] = 9, + [390969] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - ACTIONS(10258), 1, - sym_identifier, - STATE(8836), 1, + STATE(8878), 1, sym_heredoc_body, - STATE(10409), 1, - sym_named_expr, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10262), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11884), 2, - sym_string, - sym_string_percent_literal, - [388756] = 11, + ACTIONS(9980), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [390990] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10855), 1, + ACTIONS(10879), 1, anon_sym_end, - STATE(8837), 1, + STATE(8879), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10286), 1, + STATE(10060), 1, sym_else, - STATE(11717), 1, + STATE(11747), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388791] = 4, + [391025] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8838), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10881), 1, + anon_sym_end, + STATE(8880), 1, sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(9790), 1, + sym_else, + STATE(11505), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5534), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [388812] = 11, + [391060] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10857), 1, + ACTIONS(10883), 1, anon_sym_end, - STATE(8839), 1, + STATE(8881), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10288), 1, + STATE(10083), 1, sym_else, - STATE(11724), 1, + STATE(11791), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388847] = 4, + [391095] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8840), 1, + STATE(8882), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10064), 8, + ACTIONS(10127), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -655194,15 +661604,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [388868] = 4, + [391116] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8841), 1, + STATE(8883), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10003), 8, + ACTIONS(10060), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -655211,147 +661621,176 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [388889] = 11, + [391137] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10859), 1, + ACTIONS(10885), 1, anon_sym_end, - STATE(8842), 1, + STATE(8548), 1, + aux_sym_method_def_repeat1, + STATE(8884), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9431), 1, + sym_rescue_block, + STATE(9880), 1, + sym_else, + STATE(12019), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [391172] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10887), 1, + anon_sym_end, + STATE(8885), 1, + sym_heredoc_body, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9818), 1, + STATE(9881), 1, sym_else, - STATE(11928), 1, + STATE(12023), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388924] = 6, + [391207] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10580), 1, - anon_sym_PIPE, - STATE(8665), 1, - aux_sym_union_type_repeat1, - STATE(8843), 1, + STATE(8886), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4584), 6, - sym__start_of_brace_block, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_do, - [388949] = 11, + ACTIONS(10137), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [391228] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10861), 1, + ACTIONS(10889), 1, anon_sym_end, - STATE(8695), 1, - aux_sym_method_def_repeat1, - STATE(8844), 1, + STATE(8887), 1, sym_heredoc_body, - STATE(9339), 1, + STATE(8890), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, sym_rescue_block, - STATE(9824), 1, + STATE(10304), 1, sym_else, - STATE(11953), 1, + STATE(11678), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [388984] = 11, + [391263] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10863), 1, + ACTIONS(10891), 1, anon_sym_end, - STATE(8845), 1, + STATE(8888), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9828), 1, + STATE(10306), 1, sym_else, - STATE(10510), 1, + STATE(11682), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389019] = 11, + [391298] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10865), 1, + ACTIONS(10893), 1, anon_sym_end, - STATE(8846), 1, + STATE(8889), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8892), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10002), 1, + STATE(10110), 1, sym_else, - STATE(10960), 1, + STATE(11932), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389054] = 4, + [391333] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8847), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10895), 1, + anon_sym_end, + STATE(8890), 1, sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10307), 1, + sym_else, + STATE(11686), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9947), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [389075] = 4, + [391368] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8848), 1, + STATE(8891), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9955), 8, + ACTIONS(4800), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -655360,214 +661799,215 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [389096] = 11, + [391389] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10867), 1, + ACTIONS(10897), 1, anon_sym_end, - STATE(8496), 1, - aux_sym_method_def_repeat1, - STATE(8849), 1, + STATE(8892), 1, sym_heredoc_body, - STATE(9339), 1, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, sym_rescue_block, - STATE(10215), 1, + STATE(10124), 1, sym_else, - STATE(11497), 1, + STATE(11985), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389131] = 10, + [391424] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9876), 1, - sym__modifier_if_keyword, - ACTIONS(9878), 1, - sym__modifier_unless_keyword, - ACTIONS(9880), 1, - sym__modifier_rescue_keyword, - ACTIONS(9882), 1, - sym__modifier_ensure_keyword, - ACTIONS(10869), 1, - anon_sym_RPAREN, - STATE(2150), 1, - sym__terminator, - STATE(8850), 1, - sym_heredoc_body, + ACTIONS(10899), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - [389164] = 11, + STATE(8893), 2, + sym_heredoc_body, + aux_sym_union_type_repeat1, + ACTIONS(4629), 6, + sym__start_of_brace_block, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_do, + [391447] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10871), 1, + ACTIONS(10902), 1, anon_sym_end, - STATE(8851), 1, - sym_heredoc_body, - STATE(8856), 1, + STATE(8582), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(8894), 1, + sym_heredoc_body, + STATE(9431), 1, sym_rescue_block, - STATE(9878), 1, + STATE(9941), 1, sym_else, - STATE(11305), 1, + STATE(10726), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389199] = 11, + [391482] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10873), 1, + ACTIONS(10904), 1, anon_sym_end, - STATE(8852), 1, - sym_heredoc_body, - STATE(9115), 1, + STATE(8551), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(8895), 1, + sym_heredoc_body, + STATE(9431), 1, sym_rescue_block, - STATE(10219), 1, + STATE(9884), 1, sym_else, - STATE(11504), 1, + STATE(12037), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389234] = 11, + [391517] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8896), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10129), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [391538] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10875), 1, + ACTIONS(10906), 1, anon_sym_end, - STATE(8853), 1, + STATE(8897), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9879), 1, + STATE(9885), 1, sym_else, - STATE(11316), 1, + STATE(12050), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389269] = 4, + [391573] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8854), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10030), 8, - sym__line_break, + ACTIONS(10351), 1, sym__modifier_if_keyword, + ACTIONS(10353), 1, sym__modifier_unless_keyword, + ACTIONS(10355), 1, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, + ACTIONS(10357), 1, sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [389290] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8855), 1, + STATE(8898), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10078), 8, + ACTIONS(10139), 4, sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [389311] = 11, + [391602] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10877), 1, + ACTIONS(10908), 1, anon_sym_end, - STATE(8856), 1, - sym_heredoc_body, - STATE(9115), 1, + STATE(8552), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(8899), 1, + sym_heredoc_body, + STATE(9431), 1, sym_rescue_block, - STATE(9894), 1, + STATE(9888), 1, sym_else, - STATE(11325), 1, + STATE(10578), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389346] = 9, + [391637] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - STATE(8857), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10910), 1, + anon_sym_end, + STATE(8900), 1, sym_heredoc_body, - STATE(9986), 1, - sym_named_type, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(9890), 1, + sym_else, + STATE(10582), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [389377] = 4, + [391672] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8858), 1, + STATE(8901), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10080), 8, + ACTIONS(10131), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -655576,253 +662016,230 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [389398] = 4, + [391693] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8859), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9953), 8, - sym__line_break, + ACTIONS(9930), 1, sym__modifier_if_keyword, + ACTIONS(9932), 1, sym__modifier_unless_keyword, + ACTIONS(9934), 1, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, + ACTIONS(9936), 1, sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [389419] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8860), 1, + ACTIONS(10912), 1, + anon_sym_RPAREN, + STATE(2150), 1, + sym__terminator, + STATE(8902), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9959), 8, + ACTIONS(7796), 2, sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, anon_sym_SEMI, - anon_sym_end, - [389440] = 10, + [391726] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10187), 1, - anon_sym_LBRACK, - ACTIONS(10189), 1, - anon_sym_STAR, - ACTIONS(10193), 1, - anon_sym_DOT, - ACTIONS(10195), 1, - anon_sym_QMARK, - ACTIONS(10580), 1, - anon_sym_PIPE, - STATE(8843), 1, - aux_sym_union_type_repeat1, - STATE(8861), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10914), 1, + anon_sym_end, + STATE(8903), 1, sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10145), 1, + sym_else, + STATE(11221), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4641), 2, - sym__start_of_brace_block, - anon_sym_do, - [389473] = 4, + [391761] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8862), 1, + ACTIONS(10692), 1, + anon_sym_COLON_COLON, + STATE(8573), 1, + aux_sym_constant_repeat1, + STATE(8904), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9961), 8, - sym__line_break, + ACTIONS(4596), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + [391786] = 10, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9930), 1, sym__modifier_if_keyword, + ACTIONS(9932), 1, sym__modifier_unless_keyword, + ACTIONS(9934), 1, sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, + ACTIONS(9936), 1, sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [389494] = 11, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10879), 1, - anon_sym_end, - STATE(8863), 1, + ACTIONS(10916), 1, + anon_sym_RPAREN, + STATE(2147), 1, + sym__terminator, + STATE(8905), 1, sym_heredoc_body, - STATE(9115), 1, - aux_sym_method_def_repeat1, - STATE(9339), 1, - sym_rescue_block, - STATE(9852), 1, - sym_else, - STATE(10509), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389529] = 9, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + [391819] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8271), 1, - sym__string_literal_start, - ACTIONS(8273), 1, - sym__string_percent_literal_start, - STATE(8864), 1, + ACTIONS(10692), 1, + anon_sym_COLON_COLON, + STATE(8698), 1, + aux_sym_constant_repeat1, + STATE(8906), 1, sym_heredoc_body, - STATE(9769), 1, - sym_named_type, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8263), 2, - sym__constant_segment, - sym_identifier_method_call, - STATE(11003), 2, - sym_string, - sym_string_percent_literal, - [389560] = 11, + ACTIONS(4596), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + [391844] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, - sym__regular_rescue_keyword, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(10474), 1, - anon_sym_else, - ACTIONS(10881), 1, - anon_sym_end, - STATE(8502), 1, - aux_sym_method_def_repeat1, - STATE(8865), 1, + ACTIONS(10582), 1, + anon_sym_PIPE, + STATE(8715), 1, + aux_sym_union_type_repeat1, + STATE(8907), 1, sym_heredoc_body, - STATE(9339), 1, - sym_rescue_block, - STATE(9770), 1, - sym_else, - STATE(11598), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389595] = 11, + ACTIONS(4636), 6, + sym__line_break, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_DOT, + anon_sym_QMARK, + [391869] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10883), 1, + ACTIONS(10918), 1, anon_sym_end, - STATE(8866), 1, + STATE(8908), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(8919), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9773), 1, + STATE(10373), 1, sym_else, - STATE(11606), 1, + STATE(11878), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389630] = 11, + [391904] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10885), 1, + ACTIONS(10920), 1, anon_sym_end, - STATE(8867), 1, + STATE(8909), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10010), 1, + STATE(10375), 1, sym_else, - STATE(11848), 1, + STATE(11891), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389665] = 10, + [391939] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10140), 1, - anon_sym_LBRACK, - ACTIONS(10142), 1, - anon_sym_STAR, - ACTIONS(10146), 1, - anon_sym_DOT, - ACTIONS(10148), 1, - anon_sym_QMARK, - ACTIONS(10217), 1, - anon_sym_PIPE, - STATE(8210), 1, - aux_sym_union_type_repeat1, - STATE(8868), 1, + STATE(8910), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4595), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [389698] = 10, + ACTIONS(10133), 8, + sym__line_break, + sym__modifier_if_keyword, + sym__modifier_unless_keyword, + sym__modifier_rescue_keyword, + sym__regular_ensure_keyword, + sym__modifier_ensure_keyword, + anon_sym_SEMI, + anon_sym_end, + [391960] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9876), 1, + ACTIONS(9930), 1, sym__modifier_if_keyword, - ACTIONS(9878), 1, + ACTIONS(9932), 1, sym__modifier_unless_keyword, - ACTIONS(9880), 1, + ACTIONS(9934), 1, sym__modifier_rescue_keyword, - ACTIONS(9882), 1, + ACTIONS(9936), 1, sym__modifier_ensure_keyword, - ACTIONS(10887), 1, + ACTIONS(10922), 1, anon_sym_RPAREN, - STATE(2144), 1, + STATE(2153), 1, sym__terminator, - STATE(8869), 1, + STATE(8911), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, + ACTIONS(7796), 2, sym__line_break, anon_sym_SEMI, - [389731] = 4, + [391993] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8870), 1, + STATE(8912), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6790), 8, + ACTIONS(10135), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -655831,15 +662248,15 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [389752] = 4, + [392014] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8871), 1, + STATE(8913), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10018), 8, + ACTIONS(9982), 8, sym__line_break, sym__modifier_if_keyword, sym__modifier_unless_keyword, @@ -655848,49733 +662265,50732 @@ static const uint16_t ts_small_parse_table[] = { sym__modifier_ensure_keyword, anon_sym_SEMI, anon_sym_end, - [389773] = 4, + [392035] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8872), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10924), 1, + anon_sym_end, + STATE(8914), 1, sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10118), 1, + sym_else, + STATE(11119), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9919), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [389794] = 11, + [392070] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10889), 1, + ACTIONS(10926), 1, anon_sym_end, - STATE(8873), 1, + STATE(8915), 1, sym_heredoc_body, - STATE(8888), 1, + STATE(8927), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10315), 1, + STATE(10397), 1, sym_else, - STATE(11966), 1, + STATE(11971), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389829] = 11, + [392105] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10891), 1, + ACTIONS(10928), 1, anon_sym_end, - STATE(8874), 1, + STATE(8916), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10071), 1, + STATE(10402), 1, sym_else, - STATE(11444), 1, + STATE(11990), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [389864] = 4, + [392140] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8875), 1, + ACTIONS(10249), 1, + anon_sym_LBRACK, + ACTIONS(10251), 1, + anon_sym_STAR, + ACTIONS(10255), 1, + anon_sym_DOT, + ACTIONS(10257), 1, + anon_sym_QMARK, + ACTIONS(10533), 1, + anon_sym_PIPE, + STATE(8798), 1, + aux_sym_union_type_repeat1, + STATE(8917), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9965), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [389885] = 4, + ACTIONS(4686), 2, + sym__start_of_brace_block, + anon_sym_do, + [392173] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8876), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10022), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10930), 1, anon_sym_end, - [389906] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(8877), 1, + STATE(8918), 1, sym_heredoc_body, + STATE(8928), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10432), 1, + sym_else, + STATE(12032), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10016), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [389927] = 4, + [392208] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8878), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10932), 1, + anon_sym_end, + STATE(8919), 1, sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10434), 1, + sym_else, + STATE(12036), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9963), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [389948] = 4, + [392243] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8879), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10934), 1, + anon_sym_end, + STATE(8553), 1, + aux_sym_method_def_repeat1, + STATE(8920), 1, sym_heredoc_body, + STATE(9431), 1, + sym_rescue_block, + STATE(9895), 1, + sym_else, + STATE(10589), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10020), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [389969] = 4, + [392278] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8880), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10936), 1, + anon_sym_end, + STATE(8921), 1, sym_heredoc_body, + STATE(8926), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10335), 1, + sym_else, + STATE(10879), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9903), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [389990] = 4, + [392313] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8881), 1, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10938), 1, + anon_sym_end, + STATE(8922), 1, sym_heredoc_body, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, + sym_rescue_block, + STATE(10339), 1, + sym_else, + STATE(10888), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9854), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, - sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, - anon_sym_end, - [390011] = 11, + [392348] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10893), 1, + ACTIONS(10940), 1, anon_sym_end, - STATE(8882), 1, + STATE(8923), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10207), 1, + STATE(9896), 1, sym_else, - STATE(11479), 1, + STATE(10593), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [390046] = 11, + [392383] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10895), 1, + ACTIONS(10942), 1, anon_sym_end, - STATE(8883), 1, - sym_heredoc_body, - STATE(8890), 1, + STATE(8586), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(8924), 1, + sym_heredoc_body, + STATE(9431), 1, sym_rescue_block, - STATE(10326), 1, + STATE(9984), 1, sym_else, - STATE(11401), 1, + STATE(10795), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [390081] = 11, + [392418] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10897), 1, + ACTIONS(10944), 1, anon_sym_end, - STATE(8884), 1, + STATE(8925), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(10346), 1, + STATE(10122), 1, sym_else, - STATE(11496), 1, + STATE(11140), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [390116] = 11, + [392453] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10899), 1, + ACTIONS(10946), 1, anon_sym_end, - STATE(8521), 1, - aux_sym_method_def_repeat1, - STATE(8885), 1, + STATE(8926), 1, sym_heredoc_body, - STATE(9339), 1, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, sym_rescue_block, - STATE(9845), 1, + STATE(9763), 1, sym_else, - STATE(10543), 1, + STATE(11347), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [390151] = 11, + [392488] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10901), 1, + ACTIONS(10948), 1, anon_sym_end, - STATE(8886), 1, + STATE(8927), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9848), 1, + STATE(10441), 1, sym_else, - STATE(10554), 1, + STATE(12056), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [390186] = 11, + [392523] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10903), 1, + ACTIONS(10950), 1, anon_sym_end, - STATE(8570), 1, - aux_sym_method_def_repeat1, - STATE(8887), 1, + STATE(8928), 1, sym_heredoc_body, - STATE(9339), 1, + STATE(9248), 1, + aux_sym_method_def_repeat1, + STATE(9431), 1, sym_rescue_block, - STATE(10356), 1, + STATE(10251), 1, sym_else, - STATE(10534), 1, + STATE(11376), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [390221] = 11, + [392558] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10905), 1, + ACTIONS(10952), 1, anon_sym_end, - STATE(8888), 1, + STATE(8929), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9687), 1, + STATE(10009), 1, sym_else, - STATE(10648), 1, + STATE(10864), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [390256] = 4, + [392593] = 10, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8889), 1, + ACTIONS(10249), 1, + anon_sym_LBRACK, + ACTIONS(10251), 1, + anon_sym_STAR, + ACTIONS(10255), 1, + anon_sym_DOT, + ACTIONS(10257), 1, + anon_sym_QMARK, + ACTIONS(10533), 1, + anon_sym_PIPE, + STATE(8798), 1, + aux_sym_union_type_repeat1, + STATE(8930), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9969), 8, - sym__line_break, - sym__modifier_if_keyword, - sym__modifier_unless_keyword, - sym__modifier_rescue_keyword, + ACTIONS(4607), 2, + sym__start_of_brace_block, + anon_sym_do, + [392626] = 11, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1439), 1, + sym__regular_rescue_keyword, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - sym__modifier_ensure_keyword, - anon_sym_SEMI, + ACTIONS(10523), 1, + anon_sym_else, + ACTIONS(10954), 1, anon_sym_end, - [390277] = 11, + STATE(8538), 1, + aux_sym_method_def_repeat1, + STATE(8931), 1, + sym_heredoc_body, + STATE(9431), 1, + sym_rescue_block, + STATE(10137), 1, + sym_else, + STATE(11187), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [392661] = 11, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1419), 1, + ACTIONS(1439), 1, sym__regular_rescue_keyword, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(10474), 1, + ACTIONS(10523), 1, anon_sym_else, - ACTIONS(10907), 1, + ACTIONS(10956), 1, anon_sym_end, - STATE(8890), 1, + STATE(8932), 1, sym_heredoc_body, - STATE(9115), 1, + STATE(9248), 1, aux_sym_method_def_repeat1, - STATE(9339), 1, + STATE(9431), 1, sym_rescue_block, - STATE(9761), 1, + STATE(10166), 1, sym_else, - STATE(11194), 1, + STATE(11279), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [390312] = 9, + [392696] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10958), 1, + sym_identifier, + ACTIONS(10960), 1, + anon_sym_LPAREN, + ACTIONS(10962), 1, + anon_sym_STAR, + STATE(8933), 1, + sym_heredoc_body, + STATE(11072), 1, + sym_block_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10266), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [392724] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(10913), 1, - sym__percent_literal_end, - STATE(8891), 1, + ACTIONS(10968), 1, + sym__string_literal_end, + STATE(8934), 1, sym_heredoc_body, - STATE(9025), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(8936), 1, + aux_sym_string_repeat1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [390342] = 9, + [392754] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(10915), 1, - sym__percent_literal_end, - STATE(8892), 1, + ACTIONS(10974), 1, + aux_sym_command_token1, + ACTIONS(10976), 1, + anon_sym_BQUOTE2, + STATE(8935), 1, sym_heredoc_body, - STATE(8902), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9002), 1, + aux_sym_command_repeat1, + STATE(9331), 1, + sym_interpolation, + ACTIONS(10970), 2, + sym_ignored_backslash, + sym_string_escape_sequence, + [392786] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10981), 1, + anon_sym_POUND_LBRACE, + ACTIONS(10984), 1, + sym__string_literal_end, + STATE(9316), 1, sym_interpolation, - ACTIONS(10909), 3, + STATE(8936), 2, + sym_heredoc_body, + aux_sym_string_repeat1, + ACTIONS(10978), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [390372] = 9, + [392814] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7707), 1, + anon_sym_COMMA, + STATE(8937), 1, + sym_heredoc_body, + STATE(8999), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5587), 5, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_do, + anon_sym_then, + [392838] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10986), 1, + anon_sym_STAR, + STATE(8938), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10014), 6, + anon_sym_AT_LBRACK, + anon_sym_AMP, + anon_sym_STAR_STAR, + sym_identifier, + sym_instance_var, + sym_class_var, + [392860] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(10917), 1, + ACTIONS(10992), 1, sym__percent_literal_end, - STATE(8893), 1, + STATE(8939), 1, sym_heredoc_body, - STATE(8906), 1, + STATE(9029), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [390402] = 10, + [392890] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, - sym__delimited_string_contents, - ACTIONS(10925), 1, - sym__percent_literal_end, - STATE(8894), 1, + ACTIONS(10994), 1, + sym__string_literal_end, + STATE(8940), 1, sym_heredoc_body, - STATE(8907), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9269), 1, + STATE(8941), 1, + aux_sym_string_repeat1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(10964), 3, + sym__delimited_string_contents, sym_ignored_backslash, - sym_regex_escape_sequence, - [390434] = 10, + sym_string_escape_sequence, + [392920] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, + ACTIONS(10996), 1, + sym__string_literal_end, + STATE(8936), 1, + aux_sym_string_repeat1, + STATE(8941), 1, + sym_heredoc_body, + STATE(9316), 1, + sym_interpolation, + ACTIONS(10964), 3, sym__delimited_string_contents, - ACTIONS(10927), 1, + sym_ignored_backslash, + sym_string_escape_sequence, + [392950] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10990), 1, + anon_sym_POUND_LBRACE, + ACTIONS(10998), 1, sym__percent_literal_end, - STATE(8895), 1, + STATE(8942), 1, sym_heredoc_body, - STATE(8904), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9269), 1, + STATE(9044), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(10988), 3, + sym__delimited_string_contents, sym_ignored_backslash, - sym_regex_escape_sequence, - [390466] = 10, + sym_string_escape_sequence, + [392980] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, + ACTIONS(11004), 1, sym__delimited_string_contents, - ACTIONS(10929), 1, + ACTIONS(11006), 1, sym__percent_literal_end, - STATE(8896), 1, + STATE(8943), 1, sym_heredoc_body, - STATE(8904), 1, + STATE(9062), 1, aux_sym_regex_percent_literal_repeat1, - STATE(9269), 1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(11000), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [390498] = 9, + [393012] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(11011), 1, anon_sym_POUND_LBRACE, - ACTIONS(10931), 1, + ACTIONS(11014), 1, sym__percent_literal_end, - STATE(8897), 1, + STATE(9313), 1, + sym_interpolation, + STATE(8944), 2, sym_heredoc_body, - STATE(9002), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + ACTIONS(11008), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [393040] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11016), 1, + anon_sym_STAR, + STATE(8945), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10050), 6, + anon_sym_AT_LBRACK, + anon_sym_AMP, + anon_sym_STAR_STAR, + sym_identifier, + sym_instance_var, + sym_class_var, + [393062] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10966), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11018), 1, + sym__string_literal_end, + STATE(8946), 1, + sym_heredoc_body, + STATE(8947), 1, + aux_sym_string_repeat1, + STATE(9316), 1, + sym_interpolation, + ACTIONS(10964), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [393092] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10966), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11020), 1, + sym__string_literal_end, + STATE(8936), 1, + aux_sym_string_repeat1, + STATE(8947), 1, + sym_heredoc_body, + STATE(9316), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [390528] = 10, + [393122] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, + ACTIONS(10974), 1, aux_sym_command_token1, - ACTIONS(10939), 1, + ACTIONS(11022), 1, anon_sym_BQUOTE2, - STATE(8898), 1, + STATE(8948), 1, sym_heredoc_body, - STATE(8909), 1, + STATE(9079), 1, aux_sym_command_repeat1, - STATE(9291), 1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [390560] = 9, + [393154] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(11027), 1, anon_sym_POUND_LBRACE, - ACTIONS(10941), 1, + ACTIONS(11030), 1, + sym__delimited_string_contents, + ACTIONS(11033), 1, sym__percent_literal_end, - STATE(8899), 1, - sym_heredoc_body, - STATE(9002), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10909), 3, - sym__delimited_string_contents, + ACTIONS(11024), 2, sym_ignored_backslash, - sym_string_escape_sequence, - [390590] = 9, + sym_regex_escape_sequence, + STATE(8949), 2, + sym_heredoc_body, + aux_sym_regex_percent_literal_repeat1, + [393184] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(8950), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(4600), 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ, + anon_sym_COLON_COLON, + [393204] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(10947), 1, + ACTIONS(11035), 1, sym__string_literal_end, - STATE(8900), 1, - sym_heredoc_body, - STATE(8986), 1, + STATE(8936), 1, aux_sym_string_repeat1, - STATE(9223), 1, + STATE(8951), 1, + sym_heredoc_body, + STATE(9316), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [390620] = 9, + [393234] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(10949), 1, + ACTIONS(11037), 1, sym__string_literal_end, - STATE(8901), 1, + STATE(8952), 1, sym_heredoc_body, - STATE(8986), 1, + STATE(8995), 1, aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [390650] = 9, + [393264] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(10951), 1, + ACTIONS(11039), 1, sym__percent_literal_end, - STATE(8902), 1, + STATE(8953), 1, sym_heredoc_body, - STATE(9002), 1, + STATE(8996), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [390680] = 9, + [393294] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(10953), 1, + ACTIONS(11041), 1, sym__percent_literal_end, - STATE(8903), 1, + STATE(8954), 1, sym_heredoc_body, - STATE(9002), 1, + STATE(8998), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [390710] = 9, + [393324] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10958), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(10961), 1, + ACTIONS(11004), 1, sym__delimited_string_contents, - ACTIONS(10964), 1, + ACTIONS(11043), 1, sym__percent_literal_end, - STATE(9269), 1, + STATE(8955), 1, + sym_heredoc_body, + STATE(9000), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10955), 2, + ACTIONS(11000), 2, sym_ignored_backslash, sym_regex_escape_sequence, - STATE(8904), 2, - sym_heredoc_body, - aux_sym_regex_percent_literal_repeat1, - [390740] = 9, + [393356] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, + ACTIONS(11045), 1, + sym__string_literal_end, + STATE(8936), 1, + aux_sym_string_repeat1, + STATE(8956), 1, + sym_heredoc_body, + STATE(9316), 1, + sym_interpolation, + ACTIONS(10964), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [393386] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, ACTIONS(10966), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11047), 1, + sym__string_literal_end, + STATE(8957), 1, + sym_heredoc_body, + STATE(8969), 1, + aux_sym_string_repeat1, + STATE(9316), 1, + sym_interpolation, + ACTIONS(10964), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [393416] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10990), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11049), 1, sym__percent_literal_end, - STATE(8905), 1, + STATE(8958), 1, sym_heredoc_body, - STATE(9002), 1, + STATE(8970), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [390770] = 9, + [393446] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(10968), 1, + ACTIONS(11051), 1, sym__percent_literal_end, - STATE(8906), 1, + STATE(8959), 1, sym_heredoc_body, - STATE(9002), 1, + STATE(8972), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [390800] = 10, + [393476] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, - sym__delimited_string_contents, - ACTIONS(10970), 1, - sym__percent_literal_end, - STATE(8904), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(8907), 1, + ACTIONS(11053), 1, + sym__string_literal_end, + STATE(8960), 1, sym_heredoc_body, - STATE(9269), 1, + STATE(8975), 1, + aux_sym_string_repeat1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(10964), 3, + sym__delimited_string_contents, sym_ignored_backslash, - sym_regex_escape_sequence, - [390832] = 10, + sym_string_escape_sequence, + [393506] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, + ACTIONS(11004), 1, sym__delimited_string_contents, - ACTIONS(10972), 1, + ACTIONS(11055), 1, sym__percent_literal_end, - STATE(8904), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(8908), 1, + STATE(8961), 1, sym_heredoc_body, - STATE(9269), 1, + STATE(8973), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(11000), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [390864] = 10, + [393538] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(11059), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11061), 1, + sym_heredoc_end, + STATE(8962), 1, + sym_heredoc_body, + STATE(9033), 1, + aux_sym_heredoc_body_repeat1, + STATE(9315), 1, + sym_interpolation, + ACTIONS(11057), 3, + sym_heredoc_content, + sym_ignored_backslash, + sym_string_escape_sequence, + [393568] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, - aux_sym_command_token1, ACTIONS(10974), 1, + aux_sym_command_token1, + ACTIONS(11063), 1, anon_sym_BQUOTE2, - STATE(8909), 1, + STATE(8963), 1, sym_heredoc_body, - STATE(9073), 1, + STATE(8974), 1, aux_sym_command_repeat1, - STATE(9291), 1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [390896] = 9, + [393600] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(10976), 1, - sym__string_literal_end, - STATE(8910), 1, + ACTIONS(11065), 1, + sym__percent_literal_end, + STATE(8964), 1, sym_heredoc_body, - STATE(8922), 1, - aux_sym_string_repeat1, - STATE(9223), 1, + STATE(8976), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [390926] = 9, + [393630] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(10978), 1, + ACTIONS(11067), 1, sym__percent_literal_end, - STATE(8911), 1, + STATE(8965), 1, sym_heredoc_body, - STATE(8924), 1, + STATE(8977), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [390956] = 10, + [393660] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, - aux_sym_command_token1, - ACTIONS(10980), 1, - anon_sym_BQUOTE2, - STATE(8912), 1, + ACTIONS(11004), 1, + sym__delimited_string_contents, + ACTIONS(11069), 1, + sym__percent_literal_end, + STATE(8966), 1, sym_heredoc_body, - STATE(9073), 1, - aux_sym_command_repeat1, - STATE(9291), 1, + STATE(8978), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(11000), 2, sym_ignored_backslash, - sym_string_escape_sequence, - [390988] = 9, + sym_regex_escape_sequence, + [393692] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(11059), 1, anon_sym_POUND_LBRACE, - ACTIONS(10982), 1, - sym__percent_literal_end, - STATE(8913), 1, + ACTIONS(11071), 1, + sym_heredoc_end, + STATE(8962), 1, + aux_sym_heredoc_body_repeat1, + STATE(8967), 1, sym_heredoc_body, - STATE(8925), 1, - aux_sym_string_percent_literal_repeat1, STATE(9315), 1, sym_interpolation, - ACTIONS(10909), 3, - sym__delimited_string_contents, + ACTIONS(11057), 3, + sym_heredoc_content, sym_ignored_backslash, sym_string_escape_sequence, - [391018] = 10, + [393722] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, - sym__delimited_string_contents, - ACTIONS(10984), 1, - sym__percent_literal_end, - STATE(8914), 1, + ACTIONS(11073), 1, + sym__string_literal_end, + STATE(8951), 1, + aux_sym_string_repeat1, + STATE(8968), 1, sym_heredoc_body, - STATE(8927), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9269), 1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(10964), 3, + sym__delimited_string_contents, sym_ignored_backslash, - sym_regex_escape_sequence, - [391050] = 5, + sym_string_escape_sequence, + [393752] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10986), 1, - anon_sym_STAR, - STATE(8915), 1, + ACTIONS(10966), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11075), 1, + sym__string_literal_end, + STATE(8936), 1, + aux_sym_string_repeat1, + STATE(8969), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, + STATE(9316), 1, + sym_interpolation, + ACTIONS(10964), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [393782] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(9951), 6, - anon_sym_AT_LBRACK, - anon_sym_AMP, - anon_sym_STAR_STAR, - sym_identifier, - sym_instance_var, - sym_class_var, - [391072] = 10, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10990), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11077), 1, + sym__percent_literal_end, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(8970), 1, + sym_heredoc_body, + STATE(9313), 1, + sym_interpolation, + ACTIONS(10988), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [393812] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, + ACTIONS(10974), 1, aux_sym_command_token1, - ACTIONS(10988), 1, + ACTIONS(11079), 1, anon_sym_BQUOTE2, - STATE(8916), 1, + STATE(8971), 1, sym_heredoc_body, - STATE(9073), 1, + STATE(8980), 1, aux_sym_command_repeat1, - STATE(9291), 1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [391104] = 5, + [393844] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, ACTIONS(10990), 1, - anon_sym_STAR, - STATE(8917), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11081), 1, + sym__percent_literal_end, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(8972), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, + STATE(9313), 1, + sym_interpolation, + ACTIONS(10988), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [393874] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(9995), 6, - anon_sym_AT_LBRACK, - anon_sym_AMP, - anon_sym_STAR_STAR, - sym_identifier, - sym_instance_var, - sym_class_var, - [391126] = 10, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11002), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11004), 1, + sym__delimited_string_contents, + ACTIONS(11083), 1, + sym__percent_literal_end, + STATE(8949), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(8973), 1, + sym_heredoc_body, + STATE(9349), 1, + sym_interpolation, + ACTIONS(11000), 2, + sym_ignored_backslash, + sym_regex_escape_sequence, + [393906] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, + ACTIONS(10974), 1, aux_sym_command_token1, - ACTIONS(10992), 1, + ACTIONS(11085), 1, anon_sym_BQUOTE2, - STATE(8918), 1, + STATE(8974), 1, sym_heredoc_body, - STATE(8929), 1, + STATE(9002), 1, aux_sym_command_repeat1, - STATE(9291), 1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [391158] = 9, + [393938] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(10994), 1, + ACTIONS(11087), 1, sym__string_literal_end, - STATE(8919), 1, - sym_heredoc_body, - STATE(8932), 1, + STATE(8936), 1, aux_sym_string_repeat1, - STATE(9223), 1, + STATE(8975), 1, + sym_heredoc_body, + STATE(9316), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [391188] = 8, + [393968] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, - sym_identifier, - ACTIONS(10998), 1, - anon_sym_LPAREN, - ACTIONS(11000), 1, - anon_sym_STAR, - ACTIONS(11002), 1, - anon_sym_PIPE, - STATE(8920), 1, + ACTIONS(10990), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11089), 1, + sym__percent_literal_end, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(8976), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10504), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [391216] = 9, + STATE(9313), 1, + sym_interpolation, + ACTIONS(10988), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [393998] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11004), 1, - sym__string_literal_end, - STATE(8921), 1, + ACTIONS(11091), 1, + sym__percent_literal_end, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(8977), 1, sym_heredoc_body, - STATE(8959), 1, - aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [391246] = 9, + [394028] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(11006), 1, + ACTIONS(11004), 1, + sym__delimited_string_contents, + ACTIONS(11093), 1, + sym__percent_literal_end, + STATE(8949), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(8978), 1, + sym_heredoc_body, + STATE(9349), 1, + sym_interpolation, + ACTIONS(11000), 2, + sym_ignored_backslash, + sym_regex_escape_sequence, + [394060] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10966), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11095), 1, sym__string_literal_end, - STATE(8922), 1, + STATE(8979), 1, sym_heredoc_body, - STATE(8986), 1, + STATE(8987), 1, aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [391276] = 9, + [394090] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10242), 1, - anon_sym_LPAREN2, - ACTIONS(11008), 1, - anon_sym_COMMA, - ACTIONS(11010), 1, - anon_sym_then, - STATE(368), 1, - sym__terminator, - STATE(8923), 1, + ACTIONS(10972), 1, + anon_sym_POUND_LBRACE, + ACTIONS(10974), 1, + aux_sym_command_token1, + ACTIONS(11097), 1, + anon_sym_BQUOTE2, + STATE(8980), 1, sym_heredoc_body, - STATE(9126), 1, - aux_sym_in_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - [391306] = 9, + STATE(9002), 1, + aux_sym_command_repeat1, + STATE(9331), 1, + sym_interpolation, + ACTIONS(10970), 2, + sym_ignored_backslash, + sym_string_escape_sequence, + [394122] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11012), 1, + ACTIONS(11099), 1, sym__percent_literal_end, - STATE(8924), 1, + STATE(8981), 1, sym_heredoc_body, - STATE(9002), 1, + STATE(8988), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [391336] = 9, + [394152] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11014), 1, + ACTIONS(11101), 1, sym__percent_literal_end, - STATE(8925), 1, + STATE(8982), 1, sym_heredoc_body, - STATE(9002), 1, + STATE(8989), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [391366] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11016), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(8926), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5708), 5, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_do, - anon_sym_then, - [391388] = 10, + [394182] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, + ACTIONS(11004), 1, sym__delimited_string_contents, - ACTIONS(11019), 1, + ACTIONS(11103), 1, sym__percent_literal_end, - STATE(8904), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(8927), 1, + STATE(8983), 1, sym_heredoc_body, - STATE(9269), 1, + STATE(8990), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(11000), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [391420] = 9, + [394214] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(11021), 1, - sym__string_literal_end, - STATE(8928), 1, + ACTIONS(10974), 1, + aux_sym_command_token1, + ACTIONS(11105), 1, + anon_sym_BQUOTE2, + STATE(8984), 1, sym_heredoc_body, - STATE(8946), 1, - aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9001), 1, + aux_sym_command_repeat1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10943), 3, - sym__delimited_string_contents, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [391450] = 10, + [394246] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, + ACTIONS(10974), 1, aux_sym_command_token1, - ACTIONS(11023), 1, + ACTIONS(11107), 1, anon_sym_BQUOTE2, - STATE(8929), 1, + STATE(8985), 1, sym_heredoc_body, - STATE(9073), 1, + STATE(8994), 1, aux_sym_command_repeat1, - STATE(9291), 1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [391482] = 9, + [394278] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10958), 1, + sym_identifier, + ACTIONS(10960), 1, + anon_sym_LPAREN, + ACTIONS(10962), 1, + anon_sym_STAR, + STATE(8986), 1, + sym_heredoc_body, + STATE(11777), 1, + sym_block_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10266), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [394306] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11025), 1, - sym__percent_literal_end, - STATE(8930), 1, + ACTIONS(11109), 1, + sym__string_literal_end, + STATE(8936), 1, + aux_sym_string_repeat1, + STATE(8987), 1, sym_heredoc_body, - STATE(8960), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [391512] = 9, + [394336] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11027), 1, - sym__string_literal_end, - STATE(8931), 1, + ACTIONS(11111), 1, + sym__percent_literal_end, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(8988), 1, sym_heredoc_body, - STATE(8986), 1, - aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [391542] = 9, + [394366] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11029), 1, - sym__string_literal_end, - STATE(8932), 1, + ACTIONS(11113), 1, + sym__percent_literal_end, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(8989), 1, sym_heredoc_body, - STATE(8986), 1, - aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [391572] = 9, + [394396] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(11031), 1, + ACTIONS(11004), 1, + sym__delimited_string_contents, + ACTIONS(11115), 1, sym__percent_literal_end, - STATE(8899), 1, - aux_sym_string_percent_literal_repeat1, - STATE(8933), 1, + STATE(8949), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(8990), 1, sym_heredoc_body, - STATE(9315), 1, + STATE(9349), 1, + sym_interpolation, + ACTIONS(11000), 2, + sym_ignored_backslash, + sym_regex_escape_sequence, + [394428] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(11117), 1, + anon_sym_RPAREN, + ACTIONS(11119), 1, + anon_sym_STAR, + STATE(8991), 1, + sym_heredoc_body, + STATE(12002), 1, + sym_type_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10399), 2, + sym_constant, + sym_type_param_splat, + [394458] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10990), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11121), 1, + sym__percent_literal_end, + STATE(8992), 1, + sym_heredoc_body, + STATE(9003), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [391602] = 9, + [394488] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10272), 1, + anon_sym_LPAREN2, + ACTIONS(11123), 1, + anon_sym_COMMA, + ACTIONS(11125), 1, + anon_sym_then, + STATE(383), 1, + sym__terminator, + STATE(8993), 1, + sym_heredoc_body, + STATE(9168), 1, + aux_sym_in_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + [394518] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(11033), 1, - sym__percent_literal_end, - STATE(8934), 1, + ACTIONS(10974), 1, + aux_sym_command_token1, + ACTIONS(11127), 1, + anon_sym_BQUOTE2, + STATE(8994), 1, sym_heredoc_body, STATE(9002), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + aux_sym_command_repeat1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10909), 3, - sym__delimited_string_contents, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [391632] = 10, + [394550] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, - sym__delimited_string_contents, - ACTIONS(11035), 1, - sym__percent_literal_end, - STATE(8904), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(8935), 1, + ACTIONS(11129), 1, + sym__string_literal_end, + STATE(8936), 1, + aux_sym_string_repeat1, + STATE(8995), 1, sym_heredoc_body, - STATE(9269), 1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(10964), 3, + sym__delimited_string_contents, sym_ignored_backslash, - sym_regex_escape_sequence, - [391664] = 9, + sym_string_escape_sequence, + [394580] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11037), 1, + ACTIONS(11131), 1, sym__percent_literal_end, - STATE(8936), 1, - sym_heredoc_body, - STATE(9002), 1, + STATE(8944), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(8996), 1, + sym_heredoc_body, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [391694] = 4, + [394610] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(8937), 1, + ACTIONS(7749), 1, + anon_sym_COMMA, + STATE(8997), 1, sym_heredoc_body, + STATE(9063), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4563), 7, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ, - anon_sym_COLON_COLON, - [391714] = 10, + ACTIONS(5631), 5, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_do, + anon_sym_then, + [394634] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, - aux_sym_command_token1, - ACTIONS(11039), 1, - anon_sym_BQUOTE2, - STATE(8938), 1, + ACTIONS(11133), 1, + sym__percent_literal_end, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(8998), 1, sym_heredoc_body, - STATE(9073), 1, - aux_sym_command_repeat1, - STATE(9291), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10988), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [391746] = 10, + [394664] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7749), 1, + anon_sym_COMMA, + STATE(8999), 1, + sym_heredoc_body, + STATE(9070), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5631), 5, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_do, + anon_sym_then, + [394688] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, + ACTIONS(11004), 1, sym__delimited_string_contents, - ACTIONS(11041), 1, + ACTIONS(11135), 1, sym__percent_literal_end, - STATE(8904), 1, + STATE(8949), 1, aux_sym_regex_percent_literal_repeat1, - STATE(8939), 1, + STATE(9000), 1, sym_heredoc_body, - STATE(9269), 1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(11000), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [391778] = 9, + [394720] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(11043), 1, - sym__percent_literal_end, - STATE(8940), 1, + ACTIONS(10974), 1, + aux_sym_command_token1, + ACTIONS(11137), 1, + anon_sym_BQUOTE2, + STATE(9001), 1, sym_heredoc_body, - STATE(8949), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9002), 1, + aux_sym_command_repeat1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10909), 3, - sym__delimited_string_contents, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [391808] = 9, + [394752] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(11142), 1, anon_sym_POUND_LBRACE, - ACTIONS(11045), 1, - sym__percent_literal_end, - STATE(8941), 1, - sym_heredoc_body, - STATE(8961), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + ACTIONS(11145), 1, + aux_sym_command_token1, + ACTIONS(11148), 1, + anon_sym_BQUOTE2, + STATE(9331), 1, sym_interpolation, - ACTIONS(10909), 3, - sym__delimited_string_contents, + ACTIONS(11139), 2, sym_ignored_backslash, sym_string_escape_sequence, - [391838] = 10, + STATE(9002), 2, + sym_heredoc_body, + aux_sym_command_repeat1, + [394782] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, - sym__delimited_string_contents, - ACTIONS(11047), 1, + ACTIONS(11150), 1, sym__percent_literal_end, - STATE(8942), 1, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9003), 1, sym_heredoc_body, - STATE(8965), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9269), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(10988), 3, + sym__delimited_string_contents, sym_ignored_backslash, - sym_regex_escape_sequence, - [391870] = 9, + sym_string_escape_sequence, + [394812] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11049), 1, + ACTIONS(11152), 1, sym__string_literal_end, - STATE(8943), 1, + STATE(9004), 1, sym_heredoc_body, - STATE(8963), 1, + STATE(9011), 1, aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [391900] = 9, + [394842] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11051), 1, + ACTIONS(11154), 1, sym__percent_literal_end, - STATE(8944), 1, + STATE(9005), 1, sym_heredoc_body, - STATE(9002), 1, + STATE(9012), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [391930] = 10, + [394872] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, - aux_sym_command_token1, - ACTIONS(11053), 1, - anon_sym_BQUOTE2, - STATE(8945), 1, + ACTIONS(11156), 1, + sym__percent_literal_end, + STATE(9006), 1, sym_heredoc_body, - STATE(8980), 1, - aux_sym_command_repeat1, - STATE(9291), 1, + STATE(9013), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10988), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [391962] = 9, + [394902] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(11055), 1, - sym__string_literal_end, - STATE(8946), 1, + ACTIONS(11004), 1, + sym__delimited_string_contents, + ACTIONS(11158), 1, + sym__percent_literal_end, + STATE(9007), 1, sym_heredoc_body, - STATE(8986), 1, - aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9018), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10943), 3, - sym__delimited_string_contents, + ACTIONS(11000), 2, sym_ignored_backslash, - sym_string_escape_sequence, - [391992] = 8, + sym_regex_escape_sequence, + [394934] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, - sym_identifier, - ACTIONS(10998), 1, - anon_sym_LPAREN, - ACTIONS(11000), 1, - anon_sym_STAR, - STATE(8947), 1, + ACTIONS(10972), 1, + anon_sym_POUND_LBRACE, + ACTIONS(10974), 1, + aux_sym_command_token1, + ACTIONS(11160), 1, + anon_sym_BQUOTE2, + STATE(9008), 1, sym_heredoc_body, - STATE(11250), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(9760), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [392020] = 8, + STATE(9020), 1, + aux_sym_command_repeat1, + STATE(9331), 1, + sym_interpolation, + ACTIONS(10970), 2, + sym_ignored_backslash, + sym_string_escape_sequence, + [394966] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(8948), 1, + STATE(9009), 1, sym_heredoc_body, - STATE(11256), 1, + STATE(11835), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [392048] = 9, + [394994] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11057), 1, - sym__percent_literal_end, - STATE(8949), 1, + ACTIONS(11162), 1, + sym__string_literal_end, + STATE(9010), 1, sym_heredoc_body, - STATE(9002), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9045), 1, + aux_sym_string_repeat1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [392078] = 9, + [395024] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11059), 1, - sym__percent_literal_end, - STATE(8950), 1, + ACTIONS(11164), 1, + sym__string_literal_end, + STATE(8936), 1, + aux_sym_string_repeat1, + STATE(9011), 1, sym_heredoc_body, - STATE(8979), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [392108] = 9, + [395054] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11061), 1, + ACTIONS(11166), 1, sym__percent_literal_end, - STATE(8951), 1, - sym_heredoc_body, - STATE(8992), 1, + STATE(8944), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9012), 1, + sym_heredoc_body, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [392138] = 10, + [395084] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, - sym__delimited_string_contents, - ACTIONS(11063), 1, + ACTIONS(11168), 1, sym__percent_literal_end, - STATE(8952), 1, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9013), 1, sym_heredoc_body, - STATE(9001), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9269), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(10988), 3, + sym__delimited_string_contents, sym_ignored_backslash, - sym_regex_escape_sequence, - [392170] = 10, + sym_string_escape_sequence, + [395114] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, - aux_sym_command_token1, - ACTIONS(11065), 1, - anon_sym_BQUOTE2, - STATE(8953), 1, + ACTIONS(11170), 1, + sym__string_literal_end, + STATE(9014), 1, sym_heredoc_body, - STATE(9073), 1, - aux_sym_command_repeat1, - STATE(9291), 1, + STATE(9023), 1, + aux_sym_string_repeat1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10964), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [392202] = 9, + [395144] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9876), 1, - sym__modifier_if_keyword, - ACTIONS(9878), 1, - sym__modifier_unless_keyword, - ACTIONS(9880), 1, - sym__modifier_rescue_keyword, - ACTIONS(9882), 1, - sym__modifier_ensure_keyword, - STATE(2036), 1, - sym__terminator, - STATE(8954), 1, + ACTIONS(10990), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11172), 1, + sym__percent_literal_end, + STATE(9015), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - [392232] = 10, + STATE(9024), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9313), 1, + sym_interpolation, + ACTIONS(10988), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [395174] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, - aux_sym_command_token1, - ACTIONS(11067), 1, - anon_sym_BQUOTE2, - STATE(8955), 1, + ACTIONS(11174), 1, + sym__percent_literal_end, + STATE(9016), 1, sym_heredoc_body, - STATE(9073), 1, - aux_sym_command_repeat1, - STATE(9291), 1, + STATE(9025), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10988), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [392264] = 9, + [395204] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(11069), 1, - sym__string_literal_end, - STATE(8956), 1, + ACTIONS(11004), 1, + sym__delimited_string_contents, + ACTIONS(11176), 1, + sym__percent_literal_end, + STATE(9017), 1, sym_heredoc_body, - STATE(8986), 1, - aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9026), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10943), 3, - sym__delimited_string_contents, + ACTIONS(11000), 2, sym_ignored_backslash, - sym_string_escape_sequence, - [392294] = 10, + sym_regex_escape_sequence, + [395236] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, - aux_sym_command_token1, - ACTIONS(11071), 1, - anon_sym_BQUOTE2, - STATE(8938), 1, - aux_sym_command_repeat1, - STATE(8957), 1, + ACTIONS(11004), 1, + sym__delimited_string_contents, + ACTIONS(11178), 1, + sym__percent_literal_end, + STATE(8949), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9018), 1, sym_heredoc_body, - STATE(9291), 1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(11000), 2, sym_ignored_backslash, - sym_string_escape_sequence, - [392326] = 10, + sym_regex_escape_sequence, + [395268] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, + ACTIONS(10974), 1, aux_sym_command_token1, - ACTIONS(11073), 1, + ACTIONS(11180), 1, anon_sym_BQUOTE2, - STATE(8958), 1, + STATE(9019), 1, sym_heredoc_body, - STATE(9009), 1, + STATE(9028), 1, aux_sym_command_repeat1, - STATE(9291), 1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [392358] = 9, + [395300] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(11075), 1, - sym__string_literal_end, - STATE(8959), 1, + ACTIONS(10974), 1, + aux_sym_command_token1, + ACTIONS(11182), 1, + anon_sym_BQUOTE2, + STATE(9002), 1, + aux_sym_command_repeat1, + STATE(9020), 1, sym_heredoc_body, - STATE(8986), 1, - aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10943), 3, - sym__delimited_string_contents, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [392388] = 9, + [395332] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11077), 1, + ACTIONS(11184), 1, sym__percent_literal_end, - STATE(8960), 1, + STATE(9021), 1, sym_heredoc_body, - STATE(9002), 1, + STATE(9053), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [392418] = 9, + [395362] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11079), 1, + ACTIONS(11186), 1, sym__percent_literal_end, - STATE(8961), 1, + STATE(9022), 1, sym_heredoc_body, - STATE(9002), 1, + STATE(9054), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [392448] = 9, + [395392] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11081), 1, + ACTIONS(11188), 1, sym__string_literal_end, - STATE(8962), 1, - sym_heredoc_body, - STATE(9102), 1, + STATE(8936), 1, aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9023), 1, + sym_heredoc_body, + STATE(9316), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [392478] = 9, + [395422] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11083), 1, - sym__string_literal_end, - STATE(8963), 1, + ACTIONS(11190), 1, + sym__percent_literal_end, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9024), 1, sym_heredoc_body, - STATE(8986), 1, - aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [392508] = 9, + [395452] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9876), 1, - sym__modifier_if_keyword, - ACTIONS(9878), 1, - sym__modifier_unless_keyword, - ACTIONS(9880), 1, - sym__modifier_rescue_keyword, - ACTIONS(9882), 1, - sym__modifier_ensure_keyword, - STATE(2137), 1, - sym__terminator, - STATE(8964), 1, + ACTIONS(10990), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11192), 1, + sym__percent_literal_end, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9025), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(10384), 2, - sym__line_break, - anon_sym_SEMI, - [392538] = 10, + STATE(9313), 1, + sym_interpolation, + ACTIONS(10988), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [395482] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, + ACTIONS(11004), 1, sym__delimited_string_contents, - ACTIONS(11085), 1, + ACTIONS(11194), 1, sym__percent_literal_end, - STATE(8904), 1, + STATE(8949), 1, aux_sym_regex_percent_literal_repeat1, - STATE(8965), 1, + STATE(9026), 1, sym_heredoc_body, - STATE(9269), 1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(11000), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [392570] = 9, + [395514] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(11087), 1, - sym__string_literal_end, - STATE(8966), 1, + ACTIONS(11004), 1, + sym__delimited_string_contents, + ACTIONS(11196), 1, + sym__percent_literal_end, + STATE(9027), 1, sym_heredoc_body, - STATE(9069), 1, - aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9055), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10943), 3, - sym__delimited_string_contents, + ACTIONS(11000), 2, + sym_ignored_backslash, + sym_regex_escape_sequence, + [395546] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10972), 1, + anon_sym_POUND_LBRACE, + ACTIONS(10974), 1, + aux_sym_command_token1, + ACTIONS(11198), 1, + anon_sym_BQUOTE2, + STATE(9002), 1, + aux_sym_command_repeat1, + STATE(9028), 1, + sym_heredoc_body, + STATE(9331), 1, + sym_interpolation, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [392600] = 9, + [395578] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11089), 1, + ACTIONS(11200), 1, sym__percent_literal_end, - STATE(8967), 1, - sym_heredoc_body, - STATE(9086), 1, + STATE(8944), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9029), 1, + sym_heredoc_body, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [392630] = 9, + [395608] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(11091), 1, - sym__string_literal_end, - STATE(8968), 1, + ACTIONS(10974), 1, + aux_sym_command_token1, + ACTIONS(11202), 1, + anon_sym_BQUOTE2, + STATE(9002), 1, + aux_sym_command_repeat1, + STATE(9030), 1, sym_heredoc_body, - STATE(8982), 1, - aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10943), 3, - sym__delimited_string_contents, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [392660] = 7, + [395640] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11097), 1, + ACTIONS(11208), 1, aux_sym__base_method_def_token1, - ACTIONS(11099), 1, + ACTIONS(11210), 1, anon_sym_EQ, - STATE(8969), 1, + STATE(9031), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11095), 2, + ACTIONS(11206), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(11093), 3, + ACTIONS(11204), 3, sym_identifier, sym_instance_var, sym_class_var, - [392686] = 9, + [395666] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(11101), 1, - sym__percent_literal_end, - STATE(8970), 1, + ACTIONS(10974), 1, + aux_sym_command_token1, + ACTIONS(11212), 1, + anon_sym_BQUOTE2, + STATE(9032), 1, sym_heredoc_body, - STATE(8984), 1, - aux_sym_string_percent_literal_repeat1, + STATE(9067), 1, + aux_sym_command_repeat1, + STATE(9331), 1, + sym_interpolation, + ACTIONS(10970), 2, + sym_ignored_backslash, + sym_string_escape_sequence, + [395698] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11217), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11220), 1, + sym_heredoc_end, STATE(9315), 1, sym_interpolation, - ACTIONS(10909), 3, - sym__delimited_string_contents, + STATE(9033), 2, + sym_heredoc_body, + aux_sym_heredoc_body_repeat1, + ACTIONS(11214), 3, + sym_heredoc_content, sym_ignored_backslash, sym_string_escape_sequence, - [392716] = 9, + [395726] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11103), 1, - sym__percent_literal_end, - STATE(8897), 1, - aux_sym_string_percent_literal_repeat1, - STATE(8971), 1, + ACTIONS(11222), 1, + sym__string_literal_end, + STATE(9034), 1, sym_heredoc_body, - STATE(9315), 1, + STATE(9039), 1, + aux_sym_string_repeat1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [392746] = 9, + [395756] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11105), 1, + ACTIONS(11224), 1, sym__percent_literal_end, - STATE(8972), 1, + STATE(9035), 1, sym_heredoc_body, - STATE(8985), 1, + STATE(9040), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [392776] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10996), 1, - sym_identifier, - ACTIONS(10998), 1, - anon_sym_LPAREN, - ACTIONS(11000), 1, - anon_sym_STAR, - STATE(8973), 1, - sym_heredoc_body, - STATE(11255), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(9760), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [392804] = 10, + [395786] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, - sym__delimited_string_contents, - ACTIONS(11107), 1, + ACTIONS(11226), 1, sym__percent_literal_end, - STATE(8974), 1, + STATE(9036), 1, sym_heredoc_body, - STATE(8990), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9269), 1, + STATE(9041), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(10988), 3, + sym__delimited_string_contents, sym_ignored_backslash, - sym_regex_escape_sequence, - [392836] = 9, + sym_string_escape_sequence, + [395816] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(11109), 1, + ACTIONS(11004), 1, + sym__delimited_string_contents, + ACTIONS(11228), 1, sym__percent_literal_end, - STATE(8944), 1, - aux_sym_string_percent_literal_repeat1, - STATE(8975), 1, + STATE(9037), 1, sym_heredoc_body, - STATE(9315), 1, + STATE(9042), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10909), 3, - sym__delimited_string_contents, + ACTIONS(11000), 2, sym_ignored_backslash, - sym_string_escape_sequence, - [392866] = 10, + sym_regex_escape_sequence, + [395848] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, + ACTIONS(10974), 1, aux_sym_command_token1, - ACTIONS(11111), 1, + ACTIONS(11230), 1, anon_sym_BQUOTE2, - STATE(8976), 1, + STATE(9038), 1, sym_heredoc_body, - STATE(8991), 1, + STATE(9043), 1, aux_sym_command_repeat1, - STATE(9291), 1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [392898] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(11113), 1, - anon_sym_RPAREN, - ACTIONS(11115), 1, - anon_sym_STAR, - STATE(8977), 1, - sym_heredoc_body, - STATE(10991), 1, - sym_type_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10004), 2, - sym_constant, - sym_type_param_splat, - [392928] = 9, + [395880] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11117), 1, - sym__percent_literal_end, - STATE(8978), 1, + ACTIONS(11232), 1, + sym__string_literal_end, + STATE(8936), 1, + aux_sym_string_repeat1, + STATE(9039), 1, sym_heredoc_body, - STATE(9095), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [392958] = 9, + [395910] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11119), 1, + ACTIONS(11234), 1, sym__percent_literal_end, - STATE(8979), 1, - sym_heredoc_body, - STATE(9002), 1, + STATE(8944), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9040), 1, + sym_heredoc_body, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [392988] = 10, + [395940] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, - aux_sym_command_token1, - ACTIONS(11121), 1, - anon_sym_BQUOTE2, - STATE(8980), 1, + ACTIONS(11236), 1, + sym__percent_literal_end, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9041), 1, sym_heredoc_body, - STATE(9073), 1, - aux_sym_command_repeat1, - STATE(9291), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10988), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [393020] = 10, + [395970] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, + ACTIONS(11004), 1, sym__delimited_string_contents, - ACTIONS(11123), 1, + ACTIONS(11238), 1, sym__percent_literal_end, - STATE(8895), 1, + STATE(8949), 1, aux_sym_regex_percent_literal_repeat1, - STATE(8981), 1, + STATE(9042), 1, sym_heredoc_body, - STATE(9269), 1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(11000), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [393052] = 9, + [396002] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(11125), 1, - sym__string_literal_end, - STATE(8982), 1, + ACTIONS(10974), 1, + aux_sym_command_token1, + ACTIONS(11240), 1, + anon_sym_BQUOTE2, + STATE(9002), 1, + aux_sym_command_repeat1, + STATE(9043), 1, sym_heredoc_body, - STATE(8986), 1, - aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10943), 3, - sym__delimited_string_contents, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [393082] = 10, + [396034] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, - sym__delimited_string_contents, - ACTIONS(11127), 1, + ACTIONS(11242), 1, sym__percent_literal_end, - STATE(8983), 1, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9044), 1, sym_heredoc_body, - STATE(9020), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9269), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(10988), 3, + sym__delimited_string_contents, sym_ignored_backslash, - sym_regex_escape_sequence, - [393114] = 9, + sym_string_escape_sequence, + [396064] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11129), 1, - sym__percent_literal_end, - STATE(8984), 1, + ACTIONS(11244), 1, + sym__string_literal_end, + STATE(8936), 1, + aux_sym_string_repeat1, + STATE(9045), 1, sym_heredoc_body, - STATE(9002), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [393144] = 9, + [396094] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11131), 1, - sym__percent_literal_end, - STATE(8985), 1, + ACTIONS(11246), 1, + sym__string_literal_end, + STATE(9046), 1, sym_heredoc_body, - STATE(9002), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9056), 1, + aux_sym_string_repeat1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [393174] = 8, + [396124] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11136), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11139), 1, - sym__string_literal_end, - STATE(9223), 1, - sym_interpolation, - STATE(8986), 2, + ACTIONS(11248), 1, + sym__percent_literal_end, + STATE(9047), 1, sym_heredoc_body, - aux_sym_string_repeat1, - ACTIONS(11133), 3, + STATE(9057), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9313), 1, + sym_interpolation, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [393202] = 9, + [396154] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11141), 1, - sym__string_literal_end, - STATE(8987), 1, + ACTIONS(11250), 1, + sym__percent_literal_end, + STATE(9048), 1, sym_heredoc_body, - STATE(8993), 1, - aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9058), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [393232] = 9, + [396184] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(11143), 1, + ACTIONS(11004), 1, + sym__delimited_string_contents, + ACTIONS(11252), 1, sym__percent_literal_end, - STATE(8988), 1, + STATE(9049), 1, sym_heredoc_body, - STATE(8995), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9059), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10909), 3, - sym__delimited_string_contents, + ACTIONS(11000), 2, sym_ignored_backslash, - sym_string_escape_sequence, - [393262] = 8, + sym_regex_escape_sequence, + [396216] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(8989), 1, + STATE(9050), 1, sym_heredoc_body, - STATE(11603), 1, + STATE(11431), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [393290] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [396244] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, - anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, - sym__delimited_string_contents, - ACTIONS(11145), 1, - sym__percent_literal_end, - STATE(8904), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(8990), 1, + ACTIONS(10958), 1, + sym_identifier, + ACTIONS(10960), 1, + anon_sym_LPAREN, + ACTIONS(10962), 1, + anon_sym_STAR, + STATE(9051), 1, sym_heredoc_body, - STATE(9269), 1, - sym_interpolation, - ACTIONS(10919), 2, - sym_ignored_backslash, - sym_regex_escape_sequence, - [393322] = 10, + STATE(11440), 1, + sym_block_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10266), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [396272] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, + ACTIONS(10974), 1, aux_sym_command_token1, - ACTIONS(11147), 1, + ACTIONS(11254), 1, anon_sym_BQUOTE2, - STATE(8991), 1, + STATE(9052), 1, sym_heredoc_body, - STATE(9073), 1, + STATE(9060), 1, aux_sym_command_repeat1, - STATE(9291), 1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [393354] = 9, + [396304] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11149), 1, + ACTIONS(11256), 1, sym__percent_literal_end, - STATE(8992), 1, - sym_heredoc_body, - STATE(9002), 1, + STATE(8944), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9053), 1, + sym_heredoc_body, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [393384] = 9, + [396334] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11151), 1, - sym__string_literal_end, - STATE(8986), 1, - aux_sym_string_repeat1, - STATE(8993), 1, + ACTIONS(11258), 1, + sym__percent_literal_end, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9054), 1, sym_heredoc_body, - STATE(9223), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [393414] = 9, + [396364] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(11153), 1, - sym__string_literal_end, - STATE(8994), 1, + ACTIONS(11004), 1, + sym__delimited_string_contents, + ACTIONS(11260), 1, + sym__percent_literal_end, + STATE(8949), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9055), 1, sym_heredoc_body, - STATE(8999), 1, - aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10943), 3, - sym__delimited_string_contents, + ACTIONS(11000), 2, sym_ignored_backslash, - sym_string_escape_sequence, - [393444] = 9, + sym_regex_escape_sequence, + [396396] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11155), 1, - sym__percent_literal_end, - STATE(8995), 1, + ACTIONS(11262), 1, + sym__string_literal_end, + STATE(8936), 1, + aux_sym_string_repeat1, + STATE(9056), 1, sym_heredoc_body, - STATE(9002), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [393474] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(3214), 1, - sym__start_of_brace_block, - ACTIONS(11157), 1, - anon_sym_do, - STATE(8996), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10108), 2, - sym_do_end_block, - sym_brace_block, - ACTIONS(5510), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [393500] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10996), 1, - sym_identifier, - ACTIONS(10998), 1, - anon_sym_LPAREN, - ACTIONS(11000), 1, - anon_sym_STAR, - ACTIONS(11159), 1, - anon_sym_PIPE, - STATE(8997), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10504), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [393528] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7661), 1, - anon_sym_COMMA, - STATE(8998), 1, - sym_heredoc_body, - STATE(9103), 1, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5585), 5, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_do, - anon_sym_then, - [393552] = 9, + [396426] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11161), 1, - sym__string_literal_end, - STATE(8986), 1, - aux_sym_string_repeat1, - STATE(8999), 1, + ACTIONS(11264), 1, + sym__percent_literal_end, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9057), 1, sym_heredoc_body, - STATE(9223), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [393582] = 10, + [396456] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, - aux_sym_command_token1, - ACTIONS(11163), 1, - anon_sym_BQUOTE2, - STATE(8953), 1, - aux_sym_command_repeat1, - STATE(9000), 1, + ACTIONS(11266), 1, + sym__percent_literal_end, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9058), 1, sym_heredoc_body, - STATE(9291), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10988), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [393614] = 10, + [396486] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, + ACTIONS(11004), 1, sym__delimited_string_contents, - ACTIONS(11165), 1, + ACTIONS(11268), 1, sym__percent_literal_end, - STATE(8904), 1, + STATE(8949), 1, aux_sym_regex_percent_literal_repeat1, - STATE(9001), 1, + STATE(9059), 1, sym_heredoc_body, - STATE(9269), 1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(11000), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [393646] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11170), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11173), 1, - sym__percent_literal_end, - STATE(9315), 1, - sym_interpolation, - STATE(9002), 2, - sym_heredoc_body, - aux_sym_string_percent_literal_repeat1, - ACTIONS(11167), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [393674] = 9, + [396518] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(11175), 1, - sym__percent_literal_end, + ACTIONS(10974), 1, + aux_sym_command_token1, + ACTIONS(11270), 1, + anon_sym_BQUOTE2, STATE(9002), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9003), 1, + aux_sym_command_repeat1, + STATE(9060), 1, sym_heredoc_body, - STATE(9315), 1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10909), 3, - sym__delimited_string_contents, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [393704] = 7, + [396550] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11181), 1, + ACTIONS(11276), 1, aux_sym__base_method_def_token1, - ACTIONS(11183), 1, + ACTIONS(11278), 1, anon_sym_EQ, - STATE(9004), 1, + STATE(9061), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11179), 2, + ACTIONS(11274), 2, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(11177), 3, + ACTIONS(11272), 3, sym_identifier, sym_instance_var, sym_class_var, - [393730] = 9, + [396576] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(11185), 1, + ACTIONS(11004), 1, + sym__delimited_string_contents, + ACTIONS(11280), 1, sym__percent_literal_end, - STATE(9003), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9005), 1, + STATE(8949), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9062), 1, sym_heredoc_body, - STATE(9315), 1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10909), 3, - sym__delimited_string_contents, + ACTIONS(11000), 2, sym_ignored_backslash, - sym_string_escape_sequence, - [393760] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + sym_regex_escape_sequence, + [396608] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11282), 1, + anon_sym_COMMA, + STATE(9063), 1, + sym_heredoc_body, + STATE(9070), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, sym__line_continuation, + sym_comment, + ACTIONS(5637), 5, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_do, + anon_sym_then, + [396632] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, - anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, - sym__delimited_string_contents, - ACTIONS(11187), 1, - sym__percent_literal_end, - STATE(8935), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9006), 1, + ACTIONS(9930), 1, + sym__modifier_if_keyword, + ACTIONS(9932), 1, + sym__modifier_unless_keyword, + ACTIONS(9934), 1, + sym__modifier_rescue_keyword, + ACTIONS(9936), 1, + sym__modifier_ensure_keyword, + STATE(2130), 1, + sym__terminator, + STATE(9064), 1, sym_heredoc_body, - STATE(9269), 1, - sym_interpolation, - ACTIONS(10919), 2, - sym_ignored_backslash, - sym_regex_escape_sequence, - [393792] = 9, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10349), 2, + sym__line_break, + anon_sym_SEMI, + [396662] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11189), 1, + ACTIONS(11284), 1, sym__string_literal_end, - STATE(9007), 1, + STATE(9065), 1, sym_heredoc_body, - STATE(9022), 1, + STATE(9068), 1, aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [393822] = 9, + [396692] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11191), 1, + ACTIONS(11286), 1, sym__percent_literal_end, - STATE(9008), 1, + STATE(9066), 1, sym_heredoc_body, - STATE(9024), 1, + STATE(9069), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [393852] = 10, + [396722] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, + ACTIONS(10974), 1, aux_sym_command_token1, - ACTIONS(11193), 1, + ACTIONS(11288), 1, anon_sym_BQUOTE2, - STATE(9009), 1, - sym_heredoc_body, - STATE(9073), 1, + STATE(9002), 1, aux_sym_command_repeat1, - STATE(9291), 1, + STATE(9067), 1, + sym_heredoc_body, + STATE(9331), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [393884] = 9, + [396754] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11195), 1, - sym__percent_literal_end, - STATE(9002), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9010), 1, + ACTIONS(11290), 1, + sym__string_literal_end, + STATE(8936), 1, + aux_sym_string_repeat1, + STATE(9068), 1, sym_heredoc_body, - STATE(9315), 1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [393914] = 9, + [396784] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11197), 1, - sym__string_literal_end, - STATE(8901), 1, - aux_sym_string_repeat1, - STATE(9011), 1, + ACTIONS(11292), 1, + sym__percent_literal_end, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9069), 1, sym_heredoc_body, - STATE(9223), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [393944] = 10, + [396814] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11294), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(9070), 2, + sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5694), 5, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_do, + anon_sym_then, + [396836] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10958), 1, + sym_identifier, + ACTIONS(10960), 1, + anon_sym_LPAREN, + ACTIONS(10962), 1, + anon_sym_STAR, + ACTIONS(11297), 1, + anon_sym_PIPE, + STATE(9071), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10461), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [396864] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, + ACTIONS(11004), 1, sym__delimited_string_contents, - ACTIONS(11199), 1, + ACTIONS(11299), 1, sym__percent_literal_end, - STATE(9012), 1, + STATE(9072), 1, sym_heredoc_body, - STATE(9026), 1, + STATE(9081), 1, aux_sym_regex_percent_literal_repeat1, - STATE(9269), 1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(11000), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [393976] = 9, + [396896] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11201), 1, - sym__string_literal_end, - STATE(9013), 1, + ACTIONS(11301), 1, + sym__percent_literal_end, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9073), 1, sym_heredoc_body, - STATE(9028), 1, - aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [394006] = 9, + [396926] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11305), 1, + anon_sym_STAR, + STATE(9074), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(11303), 6, + anon_sym_AT_LBRACK, + anon_sym_AMP, + anon_sym_STAR_STAR, + sym_identifier, + sym_instance_var, + sym_class_var, + [396948] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11203), 1, - sym__percent_literal_end, - STATE(9014), 1, + ACTIONS(11307), 1, + sym__string_literal_end, + STATE(9075), 1, sym_heredoc_body, - STATE(9030), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9089), 1, + aux_sym_string_repeat1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [394036] = 9, + [396978] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11205), 1, + ACTIONS(11309), 1, sym__percent_literal_end, - STATE(9015), 1, + STATE(9076), 1, sym_heredoc_body, - STATE(9031), 1, + STATE(9090), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [394066] = 10, + [397008] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, - sym__delimited_string_contents, - ACTIONS(11207), 1, + ACTIONS(11311), 1, sym__percent_literal_end, - STATE(9016), 1, + STATE(9077), 1, sym_heredoc_body, - STATE(9036), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9269), 1, + STATE(9108), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(10988), 3, + sym__delimited_string_contents, sym_ignored_backslash, - sym_regex_escape_sequence, - [394098] = 10, + sym_string_escape_sequence, + [397038] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, - aux_sym_command_token1, - ACTIONS(11209), 1, - anon_sym_BQUOTE2, - STATE(9017), 1, + ACTIONS(11004), 1, + sym__delimited_string_contents, + ACTIONS(11313), 1, + sym__percent_literal_end, + STATE(9078), 1, sym_heredoc_body, - STATE(9032), 1, - aux_sym_command_repeat1, - STATE(9291), 1, + STATE(9111), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(11000), 2, sym_ignored_backslash, - sym_string_escape_sequence, - [394130] = 10, + sym_regex_escape_sequence, + [397070] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, + ACTIONS(10974), 1, aux_sym_command_token1, - ACTIONS(11211), 1, + ACTIONS(11315), 1, anon_sym_BQUOTE2, - STATE(9018), 1, - sym_heredoc_body, - STATE(9054), 1, + STATE(9002), 1, aux_sym_command_repeat1, - STATE(9291), 1, + STATE(9079), 1, + sym_heredoc_body, + STATE(9331), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [394162] = 10, + [397102] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, + ACTIONS(10974), 1, aux_sym_command_token1, - ACTIONS(11213), 1, + ACTIONS(11317), 1, anon_sym_BQUOTE2, - STATE(8916), 1, + STATE(8935), 1, aux_sym_command_repeat1, - STATE(9019), 1, + STATE(9080), 1, sym_heredoc_body, - STATE(9291), 1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [394194] = 10, + [397134] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, + ACTIONS(11004), 1, sym__delimited_string_contents, - ACTIONS(11215), 1, + ACTIONS(11319), 1, sym__percent_literal_end, - STATE(8904), 1, + STATE(8949), 1, aux_sym_regex_percent_literal_repeat1, - STATE(9020), 1, + STATE(9081), 1, sym_heredoc_body, - STATE(9269), 1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(11000), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [394226] = 9, + [397166] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11217), 1, + ACTIONS(11321), 1, sym__string_literal_end, - STATE(9021), 1, - sym_heredoc_body, - STATE(9045), 1, + STATE(8956), 1, aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9082), 1, + sym_heredoc_body, + STATE(9316), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [394256] = 9, + [397196] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(3245), 1, + sym__start_of_brace_block, + ACTIONS(11323), 1, + anon_sym_do, + STATE(9083), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10413), 2, + sym_do_end_block, + sym_brace_block, + ACTIONS(5551), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [397222] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11219), 1, + ACTIONS(11325), 1, sym__string_literal_end, - STATE(8986), 1, - aux_sym_string_repeat1, - STATE(9022), 1, + STATE(9084), 1, sym_heredoc_body, - STATE(9223), 1, + STATE(9086), 1, + aux_sym_string_repeat1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [394286] = 9, + [397252] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11221), 1, + ACTIONS(11327), 1, sym__percent_literal_end, - STATE(9023), 1, + STATE(9085), 1, sym_heredoc_body, - STATE(9055), 1, + STATE(9087), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [394316] = 9, + [397282] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11223), 1, - sym__percent_literal_end, - STATE(9002), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9024), 1, + ACTIONS(11329), 1, + sym__string_literal_end, + STATE(8936), 1, + aux_sym_string_repeat1, + STATE(9086), 1, sym_heredoc_body, - STATE(9315), 1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [394346] = 9, + [397312] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11225), 1, + ACTIONS(11331), 1, sym__percent_literal_end, - STATE(9002), 1, + STATE(8944), 1, aux_sym_string_percent_literal_repeat1, - STATE(9025), 1, + STATE(9087), 1, sym_heredoc_body, - STATE(9315), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [394376] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [397342] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, - anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, - sym__delimited_string_contents, - ACTIONS(11227), 1, - sym__percent_literal_end, - STATE(8904), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9026), 1, + ACTIONS(9930), 1, + sym__modifier_if_keyword, + ACTIONS(9932), 1, + sym__modifier_unless_keyword, + ACTIONS(9934), 1, + sym__modifier_rescue_keyword, + ACTIONS(9936), 1, + sym__modifier_ensure_keyword, + STATE(2119), 1, + sym__terminator, + STATE(9088), 1, sym_heredoc_body, - STATE(9269), 1, - sym_interpolation, - ACTIONS(10919), 2, - sym_ignored_backslash, - sym_regex_escape_sequence, - [394408] = 9, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(1429), 2, + sym__line_break, + anon_sym_SEMI, + [397372] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11229), 1, + ACTIONS(11333), 1, sym__string_literal_end, - STATE(9027), 1, - sym_heredoc_body, - STATE(9034), 1, + STATE(8936), 1, aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9089), 1, + sym_heredoc_body, + STATE(9316), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [394438] = 9, + [397402] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11231), 1, - sym__string_literal_end, - STATE(8986), 1, - aux_sym_string_repeat1, - STATE(9028), 1, + ACTIONS(11335), 1, + sym__percent_literal_end, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9090), 1, sym_heredoc_body, - STATE(9223), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [394468] = 9, + [397432] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11233), 1, - sym__percent_literal_end, - STATE(9029), 1, + ACTIONS(11337), 1, + sym__string_literal_end, + STATE(9091), 1, sym_heredoc_body, - STATE(9104), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9129), 1, + aux_sym_string_repeat1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [394498] = 9, + [397462] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11235), 1, - sym__percent_literal_end, - STATE(9002), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9030), 1, + ACTIONS(11339), 1, + sym__string_literal_end, + STATE(9092), 1, sym_heredoc_body, - STATE(9315), 1, + STATE(9099), 1, + aux_sym_string_repeat1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [394528] = 9, + [397492] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11237), 1, + ACTIONS(11341), 1, sym__percent_literal_end, - STATE(9002), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9031), 1, + STATE(9093), 1, sym_heredoc_body, - STATE(9315), 1, + STATE(9100), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [394558] = 10, + [397522] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, - aux_sym_command_token1, - ACTIONS(11239), 1, - anon_sym_BQUOTE2, - STATE(9032), 1, + ACTIONS(11343), 1, + sym__percent_literal_end, + STATE(9094), 1, sym_heredoc_body, - STATE(9073), 1, - aux_sym_command_repeat1, - STATE(9291), 1, + STATE(9101), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10988), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [394590] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9876), 1, - sym__modifier_if_keyword, - ACTIONS(9878), 1, - sym__modifier_unless_keyword, - ACTIONS(9880), 1, - sym__modifier_rescue_keyword, - ACTIONS(9882), 1, - sym__modifier_ensure_keyword, - STATE(2106), 1, - sym__terminator, - STATE(9033), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(1409), 2, - sym__line_break, - anon_sym_SEMI, - [394620] = 9, + [397552] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(11241), 1, - sym__string_literal_end, - STATE(8986), 1, - aux_sym_string_repeat1, - STATE(9034), 1, + ACTIONS(11004), 1, + sym__delimited_string_contents, + ACTIONS(11345), 1, + sym__percent_literal_end, + STATE(9095), 1, sym_heredoc_body, - STATE(9223), 1, + STATE(9102), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10943), 3, - sym__delimited_string_contents, + ACTIONS(11000), 2, sym_ignored_backslash, - sym_string_escape_sequence, - [394650] = 10, + sym_regex_escape_sequence, + [397584] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, - sym__delimited_string_contents, - ACTIONS(11243), 1, - sym__percent_literal_end, - STATE(8896), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9035), 1, + ACTIONS(10974), 1, + aux_sym_command_token1, + ACTIONS(11347), 1, + anon_sym_BQUOTE2, + STATE(9096), 1, sym_heredoc_body, - STATE(9269), 1, + STATE(9104), 1, + aux_sym_command_repeat1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(10970), 2, sym_ignored_backslash, - sym_regex_escape_sequence, - [394682] = 10, + sym_string_escape_sequence, + [397616] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, - sym__delimited_string_contents, - ACTIONS(11245), 1, - sym__percent_literal_end, - STATE(8904), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9036), 1, + ACTIONS(10974), 1, + aux_sym_command_token1, + ACTIONS(11349), 1, + anon_sym_BQUOTE2, + STATE(9030), 1, + aux_sym_command_repeat1, + STATE(9097), 1, sym_heredoc_body, - STATE(9269), 1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(10970), 2, sym_ignored_backslash, - sym_regex_escape_sequence, - [394714] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7661), 1, - anon_sym_COMMA, - STATE(8926), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(9037), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5585), 5, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_do, - anon_sym_then, - [394738] = 9, + sym_string_escape_sequence, + [397648] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11247), 1, - sym__string_literal_end, - STATE(9038), 1, + ACTIONS(11351), 1, + sym__percent_literal_end, + STATE(9098), 1, sym_heredoc_body, - STATE(9061), 1, - aux_sym_string_repeat1, - STATE(9223), 1, + STATE(9132), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [394768] = 10, + [397678] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, - aux_sym_command_token1, - ACTIONS(11249), 1, - anon_sym_BQUOTE2, - STATE(9039), 1, + ACTIONS(11353), 1, + sym__string_literal_end, + STATE(8936), 1, + aux_sym_string_repeat1, + STATE(9099), 1, sym_heredoc_body, - STATE(9073), 1, - aux_sym_command_repeat1, - STATE(9291), 1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10964), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [394800] = 9, + [397708] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11251), 1, + ACTIONS(11355), 1, sym__percent_literal_end, - STATE(9040), 1, - sym_heredoc_body, - STATE(9064), 1, + STATE(8944), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9100), 1, + sym_heredoc_body, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [394830] = 9, + [397738] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11253), 1, + ACTIONS(11357), 1, sym__percent_literal_end, - STATE(9041), 1, - sym_heredoc_body, - STATE(9065), 1, + STATE(8944), 1, aux_sym_string_percent_literal_repeat1, - STATE(9315), 1, + STATE(9101), 1, + sym_heredoc_body, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [394860] = 10, + [397768] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, + ACTIONS(11004), 1, sym__delimited_string_contents, - ACTIONS(11255), 1, + ACTIONS(11359), 1, sym__percent_literal_end, - STATE(9042), 1, - sym_heredoc_body, - STATE(9072), 1, + STATE(8949), 1, aux_sym_regex_percent_literal_repeat1, - STATE(9269), 1, + STATE(9102), 1, + sym_heredoc_body, + STATE(9349), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(11000), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [394892] = 10, + [397800] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, - aux_sym_command_token1, - ACTIONS(11257), 1, - anon_sym_BQUOTE2, - STATE(9043), 1, + ACTIONS(11361), 1, + sym__percent_literal_end, + STATE(9103), 1, sym_heredoc_body, - STATE(9077), 1, - aux_sym_command_repeat1, - STATE(9291), 1, + STATE(9135), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10988), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [394924] = 10, + [397830] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, + ACTIONS(10974), 1, aux_sym_command_token1, - ACTIONS(11259), 1, + ACTIONS(11363), 1, anon_sym_BQUOTE2, - STATE(9039), 1, + STATE(9002), 1, aux_sym_command_repeat1, - STATE(9044), 1, + STATE(9104), 1, sym_heredoc_body, - STATE(9291), 1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [394956] = 9, + [397862] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(11261), 1, - sym__string_literal_end, - STATE(8986), 1, - aux_sym_string_repeat1, - STATE(9045), 1, + ACTIONS(11004), 1, + sym__delimited_string_contents, + ACTIONS(11365), 1, + sym__percent_literal_end, + STATE(9105), 1, sym_heredoc_body, - STATE(9223), 1, + STATE(9138), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10943), 3, - sym__delimited_string_contents, + ACTIONS(11000), 2, sym_ignored_backslash, - sym_string_escape_sequence, - [394986] = 9, + sym_regex_escape_sequence, + [397894] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(11263), 1, - sym__string_literal_end, - STATE(8931), 1, - aux_sym_string_repeat1, - STATE(9046), 1, + ACTIONS(10974), 1, + aux_sym_command_token1, + ACTIONS(11367), 1, + anon_sym_BQUOTE2, + STATE(9106), 1, sym_heredoc_body, - STATE(9223), 1, + STATE(9148), 1, + aux_sym_command_repeat1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10943), 3, - sym__delimited_string_contents, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [395016] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10996), 1, - sym_identifier, - ACTIONS(10998), 1, - anon_sym_LPAREN, - ACTIONS(11000), 1, - anon_sym_STAR, - STATE(9047), 1, - sym_heredoc_body, - STATE(10746), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(9760), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [395044] = 8, + [397926] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9048), 1, + ACTIONS(11369), 1, + anon_sym_PIPE, + STATE(9107), 1, sym_heredoc_body, - STATE(10749), 1, - sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10461), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [395072] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11267), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11269), 1, - sym_heredoc_end, - STATE(9049), 1, - sym_heredoc_body, - STATE(9080), 1, - aux_sym_heredoc_body_repeat1, - STATE(9272), 1, - sym_interpolation, - ACTIONS(11265), 3, - sym_heredoc_content, - sym_ignored_backslash, - sym_string_escape_sequence, - [395102] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10911), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11271), 1, - sym__percent_literal_end, - STATE(8934), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9050), 1, - sym_heredoc_body, - STATE(9315), 1, - sym_interpolation, - ACTIONS(10909), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [395132] = 9, + [397954] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11273), 1, + ACTIONS(11371), 1, sym__percent_literal_end, - STATE(8936), 1, + STATE(8944), 1, aux_sym_string_percent_literal_repeat1, - STATE(9051), 1, + STATE(9108), 1, sym_heredoc_body, - STATE(9315), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [395162] = 8, + [397984] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9052), 1, + STATE(9109), 1, sym_heredoc_body, - STATE(10791), 1, + STATE(10844), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [395190] = 8, + [398012] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9053), 1, + STATE(9110), 1, sym_heredoc_body, - STATE(10794), 1, + STATE(10847), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [395218] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10935), 1, - anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, - aux_sym_command_token1, - ACTIONS(11275), 1, - anon_sym_BQUOTE2, - STATE(9054), 1, - sym_heredoc_body, - STATE(9073), 1, - aux_sym_command_repeat1, - STATE(9291), 1, - sym_interpolation, - ACTIONS(10933), 2, - sym_ignored_backslash, - sym_string_escape_sequence, - [395250] = 9, + [398040] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(11277), 1, + ACTIONS(11004), 1, + sym__delimited_string_contents, + ACTIONS(11373), 1, sym__percent_literal_end, - STATE(9002), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9055), 1, + STATE(8949), 1, + aux_sym_regex_percent_literal_repeat1, + STATE(9111), 1, sym_heredoc_body, - STATE(9315), 1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10909), 3, - sym__delimited_string_contents, + ACTIONS(11000), 2, sym_ignored_backslash, - sym_string_escape_sequence, - [395280] = 8, + sym_regex_escape_sequence, + [398072] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9056), 1, + STATE(9112), 1, sym_heredoc_body, - STATE(10828), 1, + STATE(10889), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [395308] = 8, + [398100] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9057), 1, + STATE(9113), 1, sym_heredoc_body, - STATE(10831), 1, + STATE(10892), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [395336] = 5, + [398128] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11281), 1, - anon_sym_STAR, - STATE(9058), 1, + ACTIONS(9930), 1, + sym__modifier_if_keyword, + ACTIONS(9932), 1, + sym__modifier_unless_keyword, + ACTIONS(9934), 1, + sym__modifier_rescue_keyword, + ACTIONS(9936), 1, + sym__modifier_ensure_keyword, + STATE(2045), 1, + sym__terminator, + STATE(9114), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11279), 6, - anon_sym_AT_LBRACK, - anon_sym_AMP, - anon_sym_STAR_STAR, - sym_identifier, - sym_instance_var, - sym_class_var, - [395358] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + [398158] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, - anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, - sym__delimited_string_contents, - ACTIONS(11283), 1, - sym__percent_literal_end, - STATE(8939), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9059), 1, + ACTIONS(10958), 1, + sym_identifier, + ACTIONS(10960), 1, + anon_sym_LPAREN, + ACTIONS(10962), 1, + anon_sym_STAR, + STATE(9115), 1, sym_heredoc_body, - STATE(9269), 1, - sym_interpolation, - ACTIONS(10919), 2, - sym_ignored_backslash, - sym_regex_escape_sequence, - [395390] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + STATE(10925), 1, + sym_block_param_list, + ACTIONS(5), 2, sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11288), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11291), 1, - sym_heredoc_end, - STATE(9272), 1, - sym_interpolation, - STATE(9060), 2, - sym_heredoc_body, - aux_sym_heredoc_body_repeat1, - ACTIONS(11285), 3, - sym_heredoc_content, - sym_ignored_backslash, - sym_string_escape_sequence, - [395418] = 9, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10945), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11293), 1, - sym__string_literal_end, - STATE(8986), 1, - aux_sym_string_repeat1, - STATE(9061), 1, - sym_heredoc_body, - STATE(9223), 1, - sym_interpolation, - ACTIONS(10943), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [395448] = 8, + STATE(10266), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [398186] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9062), 1, + STATE(9116), 1, sym_heredoc_body, - STATE(10865), 1, + STATE(10928), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [395476] = 8, + [398214] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9063), 1, + STATE(9117), 1, sym_heredoc_body, - STATE(10868), 1, + STATE(10962), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [395504] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [398242] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11295), 1, - sym__percent_literal_end, - STATE(9002), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9064), 1, + ACTIONS(10958), 1, + sym_identifier, + ACTIONS(10960), 1, + anon_sym_LPAREN, + ACTIONS(10962), 1, + anon_sym_STAR, + STATE(9118), 1, sym_heredoc_body, - STATE(9315), 1, - sym_interpolation, - ACTIONS(10909), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [395534] = 9, + STATE(10965), 1, + sym_block_param_list, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10266), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [398270] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11297), 1, - sym__percent_literal_end, - STATE(9002), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9065), 1, + ACTIONS(11375), 1, + sym__string_literal_end, + STATE(9119), 1, sym_heredoc_body, - STATE(9315), 1, + STATE(9126), 1, + aux_sym_string_repeat1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [395564] = 8, + [398300] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9066), 1, + STATE(9120), 1, sym_heredoc_body, - STATE(10901), 1, + STATE(10998), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [395592] = 8, + [398328] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9067), 1, + STATE(9121), 1, sym_heredoc_body, - STATE(10904), 1, + STATE(11001), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [395620] = 6, + [398356] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7659), 1, - anon_sym_COMMA, - STATE(9037), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(9068), 1, + ACTIONS(9908), 1, + sym_identifier, + ACTIONS(9912), 1, + anon_sym_AT_LBRACK, + STATE(9074), 1, + sym_annotation, + STATE(9122), 1, sym_heredoc_body, + STATE(9207), 1, + aux_sym_param_repeat1, + STATE(10478), 1, + sym_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5570), 5, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_do, - anon_sym_then, - [395644] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10945), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11299), 1, - sym__string_literal_end, - STATE(8986), 1, - aux_sym_string_repeat1, - STATE(9069), 1, - sym_heredoc_body, - STATE(9223), 1, - sym_interpolation, - ACTIONS(10943), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [395674] = 8, + ACTIONS(9920), 2, + sym_instance_var, + sym_class_var, + [398386] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9070), 1, + STATE(9123), 1, sym_heredoc_body, - STATE(10937), 1, + STATE(11034), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [395702] = 8, + [398414] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9071), 1, + STATE(9124), 1, sym_heredoc_body, - STATE(10940), 1, + STATE(11037), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [395730] = 10, + [398442] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, - sym__delimited_string_contents, - ACTIONS(11301), 1, + ACTIONS(11377), 1, sym__percent_literal_end, - STATE(8904), 1, - aux_sym_regex_percent_literal_repeat1, - STATE(9072), 1, + STATE(9125), 1, sym_heredoc_body, - STATE(9269), 1, + STATE(9127), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(10988), 3, + sym__delimited_string_contents, sym_ignored_backslash, - sym_regex_escape_sequence, - [395762] = 9, + sym_string_escape_sequence, + [398472] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11306), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11309), 1, - aux_sym_command_token1, - ACTIONS(11312), 1, - anon_sym_BQUOTE2, - STATE(9291), 1, + ACTIONS(11379), 1, + sym__string_literal_end, + STATE(8936), 1, + aux_sym_string_repeat1, + STATE(9126), 1, + sym_heredoc_body, + STATE(9316), 1, sym_interpolation, - ACTIONS(11303), 2, + ACTIONS(10964), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - STATE(9073), 2, - sym_heredoc_body, - aux_sym_command_repeat1, - [395792] = 8, + [398502] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, - sym_identifier, - ACTIONS(10998), 1, - anon_sym_LPAREN, - ACTIONS(11000), 1, - anon_sym_STAR, - STATE(9074), 1, + ACTIONS(10990), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11381), 1, + sym__percent_literal_end, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9127), 1, sym_heredoc_body, - STATE(10972), 1, - sym_block_param_list, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(9760), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [395820] = 8, + STATE(9313), 1, + sym_interpolation, + ACTIONS(10988), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + sym_string_escape_sequence, + [398532] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9075), 1, + STATE(9128), 1, sym_heredoc_body, - STATE(10975), 1, + STATE(11069), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [395848] = 9, + [398560] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11314), 1, + ACTIONS(11383), 1, sym__string_literal_end, - STATE(8900), 1, + STATE(8936), 1, aux_sym_string_repeat1, - STATE(9076), 1, + STATE(9129), 1, sym_heredoc_body, - STATE(9223), 1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [395878] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10935), 1, - anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, - aux_sym_command_token1, - ACTIONS(11316), 1, - anon_sym_BQUOTE2, - STATE(9073), 1, - aux_sym_command_repeat1, - STATE(9077), 1, - sym_heredoc_body, - STATE(9291), 1, - sym_interpolation, - ACTIONS(10933), 2, - sym_ignored_backslash, - sym_string_escape_sequence, - [395910] = 8, + [398590] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9078), 1, + STATE(9130), 1, sym_heredoc_body, - STATE(11007), 1, + STATE(11104), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [395938] = 8, + [398618] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9079), 1, + STATE(9131), 1, sym_heredoc_body, - STATE(11010), 1, + STATE(11107), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [395966] = 9, + [398646] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11267), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11318), 1, - sym_heredoc_end, - STATE(9060), 1, - aux_sym_heredoc_body_repeat1, - STATE(9080), 1, + ACTIONS(11385), 1, + sym__percent_literal_end, + STATE(8944), 1, + aux_sym_string_percent_literal_repeat1, + STATE(9132), 1, sym_heredoc_body, - STATE(9272), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(11265), 3, - sym_heredoc_content, + ACTIONS(10988), 3, + sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [395996] = 8, + [398676] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9081), 1, + STATE(9133), 1, sym_heredoc_body, - STATE(11042), 1, + STATE(11139), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [396024] = 8, + [398704] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9082), 1, + STATE(9134), 1, sym_heredoc_body, - STATE(11045), 1, + STATE(11142), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [396052] = 9, + [398732] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11320), 1, + ACTIONS(11387), 1, sym__percent_literal_end, - STATE(8903), 1, + STATE(8944), 1, aux_sym_string_percent_literal_repeat1, - STATE(9083), 1, + STATE(9135), 1, sym_heredoc_body, - STATE(9315), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [396082] = 8, + [398762] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9084), 1, + STATE(9136), 1, sym_heredoc_body, - STATE(11077), 1, + STATE(11174), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [396110] = 8, + [398790] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9085), 1, + STATE(9137), 1, sym_heredoc_body, - STATE(11080), 1, + STATE(11177), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [396138] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10911), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11322), 1, - sym__percent_literal_end, - STATE(9002), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9086), 1, - sym_heredoc_body, - STATE(9315), 1, - sym_interpolation, - ACTIONS(10909), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [396168] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10911), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11324), 1, - sym__percent_literal_end, - STATE(8905), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9087), 1, - sym_heredoc_body, - STATE(9315), 1, - sym_interpolation, - ACTIONS(10909), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [396198] = 10, + [398818] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10921), 1, + ACTIONS(11002), 1, anon_sym_POUND_LBRACE, - ACTIONS(10923), 1, + ACTIONS(11004), 1, sym__delimited_string_contents, - ACTIONS(11326), 1, + ACTIONS(11389), 1, sym__percent_literal_end, - STATE(8908), 1, + STATE(8949), 1, aux_sym_regex_percent_literal_repeat1, - STATE(9088), 1, + STATE(9138), 1, sym_heredoc_body, - STATE(9269), 1, + STATE(9349), 1, sym_interpolation, - ACTIONS(10919), 2, + ACTIONS(11000), 2, sym_ignored_backslash, sym_regex_escape_sequence, - [396230] = 8, + [398850] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9089), 1, + STATE(9139), 1, sym_heredoc_body, - STATE(11112), 1, + STATE(11209), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [396258] = 8, + [398878] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9090), 1, + STATE(9140), 1, sym_heredoc_body, - STATE(11115), 1, + STATE(11212), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [396286] = 8, + [398906] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9091), 1, + STATE(9141), 1, sym_heredoc_body, - STATE(11147), 1, + STATE(11244), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [396314] = 8, + [398934] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9092), 1, + STATE(9142), 1, sym_heredoc_body, - STATE(11150), 1, + STATE(11247), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [396342] = 8, + [398962] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9093), 1, + STATE(9143), 1, sym_heredoc_body, - STATE(11171), 1, + STATE(11268), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [396370] = 8, + [398990] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9094), 1, + STATE(9144), 1, sym_heredoc_body, - STATE(11173), 1, + STATE(11270), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [396398] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10911), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11328), 1, - sym__percent_literal_end, - STATE(9002), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9095), 1, - sym_heredoc_body, - STATE(9315), 1, - sym_interpolation, - ACTIONS(10909), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [396428] = 8, + [399018] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9096), 1, + STATE(9145), 1, sym_heredoc_body, - STATE(11191), 1, + STATE(11288), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [396456] = 8, + [399046] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, + ACTIONS(10958), 1, sym_identifier, - ACTIONS(10998), 1, + ACTIONS(10960), 1, anon_sym_LPAREN, - ACTIONS(11000), 1, + ACTIONS(10962), 1, anon_sym_STAR, - STATE(9097), 1, + STATE(9146), 1, sym_heredoc_body, - STATE(11193), 1, + STATE(11290), 1, sym_block_param_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9760), 3, + STATE(10266), 3, sym_block_body_param, sym_block_body_splat_param, sym__block_body_nested_param, - [396484] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10945), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11330), 1, - sym__string_literal_end, - STATE(8956), 1, - aux_sym_string_repeat1, - STATE(9098), 1, - sym_heredoc_body, - STATE(9223), 1, - sym_interpolation, - ACTIONS(10943), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [396514] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10945), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11332), 1, - sym__string_literal_end, - STATE(9099), 1, - sym_heredoc_body, - STATE(9106), 1, - aux_sym_string_repeat1, - STATE(9223), 1, - sym_interpolation, - ACTIONS(10943), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [396544] = 9, + [399074] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(10990), 1, anon_sym_POUND_LBRACE, - ACTIONS(11334), 1, + ACTIONS(11391), 1, sym__percent_literal_end, - STATE(9010), 1, + STATE(9073), 1, aux_sym_string_percent_literal_repeat1, - STATE(9100), 1, + STATE(9147), 1, sym_heredoc_body, - STATE(9315), 1, + STATE(9313), 1, sym_interpolation, - ACTIONS(10909), 3, + ACTIONS(10988), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [396574] = 10, + [399104] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, + ACTIONS(10972), 1, anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, + ACTIONS(10974), 1, aux_sym_command_token1, - ACTIONS(11336), 1, + ACTIONS(11393), 1, anon_sym_BQUOTE2, - STATE(8955), 1, + STATE(9002), 1, aux_sym_command_repeat1, - STATE(9101), 1, + STATE(9148), 1, sym_heredoc_body, - STATE(9291), 1, + STATE(9331), 1, sym_interpolation, - ACTIONS(10933), 2, + ACTIONS(10970), 2, sym_ignored_backslash, sym_string_escape_sequence, - [396606] = 9, + [399136] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, + ACTIONS(10966), 1, anon_sym_POUND_LBRACE, - ACTIONS(11338), 1, + ACTIONS(11395), 1, sym__string_literal_end, - STATE(8986), 1, + STATE(8934), 1, aux_sym_string_repeat1, - STATE(9102), 1, + STATE(9149), 1, sym_heredoc_body, - STATE(9223), 1, + STATE(9316), 1, sym_interpolation, - ACTIONS(10943), 3, + ACTIONS(10964), 3, sym__delimited_string_contents, sym_ignored_backslash, sym_string_escape_sequence, - [396636] = 6, + [399166] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11340), 1, - anon_sym_COMMA, - STATE(8926), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(9103), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11397), 1, + anon_sym_end, + STATE(9150), 1, sym_heredoc_body, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(10653), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 5, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_do, - anon_sym_then, - [396660] = 9, + [399195] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10911), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11342), 1, - sym__percent_literal_end, - STATE(9002), 1, - aux_sym_string_percent_literal_repeat1, - STATE(9104), 1, + ACTIONS(11401), 1, + aux_sym_regex_token1, + ACTIONS(11403), 1, + anon_sym_SLASH, + ACTIONS(11405), 1, + sym_regex_escape_sequence, + STATE(9151), 1, sym_heredoc_body, - STATE(9315), 1, + STATE(9243), 1, + aux_sym_regex_repeat1, + STATE(9673), 1, sym_interpolation, - ACTIONS(10909), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [396690] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [399226] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10935), 1, - anon_sym_POUND_LBRACE, - ACTIONS(10937), 1, - aux_sym_command_token1, - ACTIONS(11344), 1, - anon_sym_BQUOTE2, - STATE(8912), 1, - aux_sym_command_repeat1, - STATE(9105), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11407), 1, + anon_sym_end, + STATE(9152), 1, sym_heredoc_body, - STATE(9291), 1, - sym_interpolation, - ACTIONS(10933), 2, - sym_ignored_backslash, - sym_string_escape_sequence, - [396722] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(11523), 1, + sym_else, + ACTIONS(5), 2, sym__line_continuation, + sym_comment, + [399255] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10945), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11346), 1, - sym__string_literal_end, - STATE(8986), 1, - aux_sym_string_repeat1, - STATE(9106), 1, - sym_heredoc_body, - STATE(9223), 1, - sym_interpolation, - ACTIONS(10943), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - sym_string_escape_sequence, - [396752] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9856), 1, - sym_identifier, - ACTIONS(9860), 1, - anon_sym_AT_LBRACK, - STATE(9058), 1, - sym_annotation, - STATE(9107), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11409), 1, + anon_sym_end, + STATE(9153), 1, sym_heredoc_body, - STATE(9144), 1, - aux_sym_param_repeat1, - STATE(10436), 1, - sym_param, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(11620), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9868), 2, - sym_instance_var, - sym_class_var, - [396782] = 10, + [399284] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11352), 1, - anon_sym_SLASH, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - STATE(9108), 1, + ACTIONS(11411), 1, + anon_sym_SLASH, + STATE(9154), 1, sym_heredoc_body, - STATE(9149), 1, + STATE(9243), 1, aux_sym_regex_repeat1, - STATE(9607), 1, + STATE(9673), 1, sym_interpolation, - [396813] = 9, + [399315] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(7379), 1, + ACTIONS(7400), 1, anon_sym_when, - ACTIONS(11356), 1, + ACTIONS(11413), 1, anon_sym_end, - STATE(9109), 1, + STATE(9155), 1, sym_heredoc_body, - STATE(9226), 1, + STATE(9304), 1, aux_sym_case_repeat1, - STATE(9746), 1, + STATE(9838), 1, sym_when, - STATE(11520), 1, + STATE(10605), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [399344] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11415), 1, + anon_sym_end, + STATE(9156), 1, + sym_heredoc_body, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(11367), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [396842] = 10, + [399373] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(661), 1, + sym__start_of_brace_block, + ACTIONS(6805), 1, + anon_sym_do, + ACTIONS(11417), 1, + anon_sym_LPAREN, + ACTIONS(11419), 1, + aux_sym_proc_token1, + STATE(9157), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(3676), 2, + sym_do_end_block, + sym_brace_block, + [399400] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11358), 1, + ACTIONS(11421), 1, anon_sym_SLASH, - STATE(9110), 1, + STATE(9158), 1, sym_heredoc_body, - STATE(9112), 1, + STATE(9170), 1, aux_sym_regex_repeat1, - STATE(9607), 1, + STATE(9673), 1, sym_interpolation, - [396873] = 4, + [399431] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9111), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11423), 1, + anon_sym_end, + STATE(9159), 1, sym_heredoc_body, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(11425), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6302), 6, - sym__line_break, + [399460] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11425), 1, + anon_sym_end, + STATE(9160), 1, + sym_heredoc_body, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(11929), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [399489] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(527), 1, sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6874), 1, anon_sym_do, - anon_sym_then, - [396892] = 10, - ACTIONS(3), 1, + ACTIONS(11427), 1, + anon_sym_LPAREN, + ACTIONS(11429), 1, + aux_sym_proc_token1, + STATE(9161), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, sym_comment, - ACTIONS(5), 1, + STATE(3879), 2, + sym_do_end_block, + sym_brace_block, + [399516] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(393), 1, + sym__start_of_brace_block, + ACTIONS(6664), 1, + anon_sym_do, + ACTIONS(11431), 1, + anon_sym_LPAREN, + ACTIONS(11433), 1, + aux_sym_proc_token1, + STATE(9162), 1, + sym_heredoc_body, + ACTIONS(5), 2, sym__line_continuation, + sym_comment, + STATE(3959), 2, + sym_do_end_block, + sym_brace_block, + [399543] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, - aux_sym_regex_token1, - ACTIONS(11354), 1, - sym_regex_escape_sequence, - ACTIONS(11360), 1, - anon_sym_SLASH, - STATE(9112), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11435), 1, + anon_sym_end, + STATE(9163), 1, sym_heredoc_body, - STATE(9182), 1, - aux_sym_regex_repeat1, - STATE(9607), 1, - sym_interpolation, - [396923] = 9, + STATE(9184), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(11974), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [399572] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(479), 1, + sym__start_of_brace_block, + ACTIONS(6865), 1, + anon_sym_do, + ACTIONS(11437), 1, + anon_sym_LPAREN, + ACTIONS(11439), 1, + aux_sym_proc_token1, + STATE(9164), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(4851), 2, + sym_do_end_block, + sym_brace_block, + [399599] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(7379), 1, + ACTIONS(7400), 1, anon_sym_when, - ACTIONS(11362), 1, + ACTIONS(11441), 1, anon_sym_end, - STATE(9113), 1, + STATE(9165), 1, sym_heredoc_body, - STATE(9226), 1, + STATE(9177), 1, aux_sym_case_repeat1, - STATE(9746), 1, + STATE(9838), 1, sym_when, - STATE(10761), 1, + STATE(10932), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [396952] = 8, + [399628] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11008), 1, + ACTIONS(11123), 1, anon_sym_COMMA, - ACTIONS(11010), 1, + ACTIONS(11443), 1, anon_sym_then, - STATE(368), 1, + STATE(326), 1, sym__terminator, - STATE(9114), 1, + STATE(9166), 1, sym_heredoc_body, - STATE(9135), 1, + STATE(9305), 1, aux_sym_in_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, + ACTIONS(7796), 2, sym__line_break, anon_sym_SEMI, - [396979] = 6, + [399655] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11366), 1, - sym__regular_rescue_keyword, - STATE(9339), 1, - sym_rescue_block, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11445), 1, + anon_sym_end, + STATE(9167), 1, + sym_heredoc_body, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(10917), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9115), 2, - sym_heredoc_body, - aux_sym_method_def_repeat1, - ACTIONS(11364), 3, - sym__regular_ensure_keyword, - anon_sym_end, - anon_sym_else, - [397002] = 5, + [399684] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11369), 1, + ACTIONS(11123), 1, anon_sym_COMMA, + ACTIONS(11447), 1, + anon_sym_then, + STATE(399), 1, + sym__terminator, + STATE(9168), 1, + sym_heredoc_body, + STATE(9305), 1, + aux_sym_in_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9116), 2, - sym_heredoc_body, - aux_sym_argument_list_no_parens_repeat1, - ACTIONS(5708), 4, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - [397023] = 9, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + [399711] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(7379), 1, + ACTIONS(7400), 1, anon_sym_when, - ACTIONS(11372), 1, + ACTIONS(11449), 1, anon_sym_end, - STATE(9117), 1, + STATE(9169), 1, sym_heredoc_body, - STATE(9226), 1, + STATE(9304), 1, aux_sym_case_repeat1, - STATE(9746), 1, + STATE(9838), 1, sym_when, - STATE(10970), 1, + STATE(10811), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [397052] = 10, + [399740] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11374), 1, + ACTIONS(11451), 1, anon_sym_SLASH, - STATE(9118), 1, + STATE(9170), 1, sym_heredoc_body, - STATE(9143), 1, + STATE(9243), 1, aux_sym_regex_repeat1, - STATE(9607), 1, + STATE(9673), 1, sym_interpolation, - [397083] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9119), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6266), 6, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - anon_sym_then, - [397102] = 10, + [399771] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11376), 1, + ACTIONS(11453), 1, anon_sym_SLASH, - STATE(9120), 1, + STATE(9171), 1, sym_heredoc_body, - STATE(9182), 1, + STATE(9191), 1, aux_sym_regex_repeat1, - STATE(9607), 1, + STATE(9673), 1, sym_interpolation, - [397133] = 10, + [399802] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11378), 1, + ACTIONS(11455), 1, anon_sym_SLASH, - STATE(9121), 1, + STATE(9172), 1, sym_heredoc_body, - STATE(9182), 1, + STATE(9243), 1, aux_sym_regex_repeat1, - STATE(9607), 1, + STATE(9673), 1, sym_interpolation, - [397164] = 10, - ACTIONS(3), 1, + [399833] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11457), 1, + anon_sym_end, + STATE(9173), 1, + sym_heredoc_body, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(12020), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, sym_comment, - ACTIONS(5), 1, + [399862] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11463), 1, + aux_sym__base_method_def_token1, + STATE(9174), 1, + sym_heredoc_body, + ACTIONS(5), 2, sym__line_continuation, + sym_comment, + ACTIONS(11461), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(11459), 3, + sym_identifier, + sym_instance_var, + sym_class_var, + [399885] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, - aux_sym_regex_token1, - ACTIONS(11354), 1, - sym_regex_escape_sequence, - ACTIONS(11380), 1, - anon_sym_SLASH, - STATE(9122), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11465), 1, + anon_sym_end, + STATE(9175), 1, sym_heredoc_body, - STATE(9182), 1, - aux_sym_regex_repeat1, - STATE(9607), 1, - sym_interpolation, - [397195] = 10, + STATE(9203), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(11721), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [399914] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11382), 1, + ACTIONS(11467), 1, anon_sym_SLASH, - STATE(9123), 1, + STATE(9176), 1, sym_heredoc_body, - STATE(9182), 1, + STATE(9243), 1, aux_sym_regex_repeat1, - STATE(9607), 1, + STATE(9673), 1, sym_interpolation, - [397226] = 8, + [399945] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(11115), 1, - anon_sym_STAR, - ACTIONS(11384), 1, - anon_sym_RPAREN, - STATE(9124), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11469), 1, + anon_sym_end, + STATE(9177), 1, sym_heredoc_body, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(11017), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10390), 2, - sym_constant, - sym_type_param_splat, - [397253] = 9, + [399974] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(7379), 1, + ACTIONS(7400), 1, anon_sym_when, - ACTIONS(11386), 1, + ACTIONS(11471), 1, anon_sym_end, - STATE(9125), 1, + STATE(9178), 1, sym_heredoc_body, - STATE(9226), 1, + STATE(9234), 1, aux_sym_case_repeat1, - STATE(9746), 1, + STATE(9838), 1, sym_when, - STATE(11648), 1, + STATE(10979), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [400003] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11473), 1, + anon_sym_end, + STATE(9179), 1, + sym_heredoc_body, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(10598), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [397282] = 8, + [400032] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11399), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11401), 1, + aux_sym_regex_token1, + ACTIONS(11405), 1, + sym_regex_escape_sequence, + ACTIONS(11475), 1, + anon_sym_SLASH, + STATE(9180), 1, + sym_heredoc_body, + STATE(9186), 1, + aux_sym_regex_repeat1, + STATE(9673), 1, + sym_interpolation, + [400063] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11008), 1, + ACTIONS(7798), 1, anon_sym_COMMA, - ACTIONS(11388), 1, + ACTIONS(7828), 1, anon_sym_then, - STATE(381), 1, + STATE(298), 1, sym__terminator, - STATE(9126), 1, + STATE(9181), 1, sym_heredoc_body, - STATE(9271), 1, - aux_sym_in_repeat1, + STATE(9213), 1, + aux_sym_when_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, + ACTIONS(7796), 2, sym__line_break, anon_sym_SEMI, - [397309] = 8, + [400090] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - ACTIONS(11115), 1, - anon_sym_STAR, - ACTIONS(11390), 1, - anon_sym_RPAREN, - STATE(9127), 1, + ACTIONS(1045), 1, + sym__start_of_brace_block, + ACTIONS(7937), 1, + anon_sym_do, + ACTIONS(11477), 1, + anon_sym_LPAREN, + ACTIONS(11479), 1, + aux_sym_proc_token1, + STATE(9182), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10390), 2, - sym_constant, - sym_type_param_splat, - [397336] = 4, + STATE(6770), 2, + sym_do_end_block, + sym_brace_block, + [400117] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9128), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11481), 1, + anon_sym_end, + STATE(9183), 1, sym_heredoc_body, + STATE(9194), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(11540), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5832), 6, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - anon_sym_then, - [397355] = 9, + [400146] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(7379), 1, + ACTIONS(7400), 1, anon_sym_when, - ACTIONS(11392), 1, + ACTIONS(11483), 1, anon_sym_end, - STATE(9129), 1, + STATE(9184), 1, sym_heredoc_body, - STATE(9226), 1, + STATE(9304), 1, aux_sym_case_repeat1, - STATE(9746), 1, + STATE(9838), 1, sym_when, - STATE(10606), 1, + STATE(11241), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [397384] = 8, + [400175] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(857), 1, - sym__start_of_brace_block, - ACTIONS(7629), 1, - anon_sym_do, - ACTIONS(11394), 1, - anon_sym_LPAREN, - ACTIONS(11396), 1, - aux_sym_proc_token1, - STATE(9130), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11485), 1, + anon_sym_end, + STATE(9185), 1, sym_heredoc_body, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(11149), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6613), 2, - sym_do_end_block, - sym_brace_block, - [397411] = 10, + [400204] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11398), 1, + ACTIONS(11487), 1, anon_sym_SLASH, - STATE(9120), 1, - aux_sym_regex_repeat1, - STATE(9131), 1, + STATE(9186), 1, sym_heredoc_body, - STATE(9607), 1, + STATE(9243), 1, + aux_sym_regex_repeat1, + STATE(9673), 1, sym_interpolation, - [397442] = 8, + [400235] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(733), 1, + ACTIONS(343), 1, sym__start_of_brace_block, - ACTIONS(7569), 1, + ACTIONS(6650), 1, anon_sym_do, - ACTIONS(11400), 1, + ACTIONS(11489), 1, anon_sym_LPAREN, - ACTIONS(11402), 1, + ACTIONS(11491), 1, aux_sym_proc_token1, - STATE(9132), 1, + STATE(9187), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5217), 2, + STATE(3399), 2, sym_do_end_block, sym_brace_block, - [397469] = 8, + [400262] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7733), 1, - anon_sym_COMMA, - ACTIONS(11404), 1, - anon_sym_then, - STATE(307), 1, - sym__terminator, - STATE(9133), 1, + ACTIONS(10958), 1, + sym_identifier, + ACTIONS(10960), 1, + anon_sym_LPAREN, + ACTIONS(10962), 1, + anon_sym_STAR, + STATE(9188), 1, sym_heredoc_body, - STATE(9201), 1, - aux_sym_when_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - [397496] = 9, + STATE(10461), 3, + sym_block_body_param, + sym_block_body_splat_param, + sym__block_body_nested_param, + [400287] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(7379), 1, + ACTIONS(7400), 1, anon_sym_when, - ACTIONS(11406), 1, + ACTIONS(11493), 1, anon_sym_end, - STATE(9134), 1, + STATE(9189), 1, sym_heredoc_body, - STATE(9226), 1, + STATE(9219), 1, aux_sym_case_repeat1, - STATE(9746), 1, + STATE(9838), 1, sym_when, - STATE(11462), 1, + STATE(11764), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [397525] = 8, + [400316] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11008), 1, - anon_sym_COMMA, - ACTIONS(11408), 1, - anon_sym_then, - STATE(379), 1, - sym__terminator, - STATE(9135), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11495), 1, + anon_sym_end, + STATE(9190), 1, sym_heredoc_body, - STATE(9271), 1, - aux_sym_in_repeat1, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(11091), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - [397552] = 8, + [400345] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(591), 1, + ACTIONS(11399), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11401), 1, + aux_sym_regex_token1, + ACTIONS(11405), 1, + sym_regex_escape_sequence, + ACTIONS(11497), 1, + anon_sym_SLASH, + STATE(9191), 1, + sym_heredoc_body, + STATE(9243), 1, + aux_sym_regex_repeat1, + STATE(9673), 1, + sym_interpolation, + [400376] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(11119), 1, + anon_sym_STAR, + ACTIONS(11499), 1, + anon_sym_RPAREN, + STATE(9192), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10486), 2, + sym_constant, + sym_type_param_splat, + [400403] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9193), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6444), 6, + sym__line_break, sym__start_of_brace_block, - ACTIONS(6798), 1, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_do, - ACTIONS(11410), 1, - anon_sym_LPAREN, - ACTIONS(11412), 1, - aux_sym_proc_token1, - STATE(9136), 1, + anon_sym_then, + [400422] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11501), 1, + anon_sym_end, + STATE(9194), 1, sym_heredoc_body, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(11588), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3802), 2, - sym_do_end_block, - sym_brace_block, - [397579] = 10, + [400451] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11414), 1, + ACTIONS(11503), 1, anon_sym_SLASH, - STATE(9123), 1, - aux_sym_regex_repeat1, - STATE(9137), 1, + STATE(9195), 1, sym_heredoc_body, - STATE(9607), 1, + STATE(9243), 1, + aux_sym_regex_repeat1, + STATE(9673), 1, sym_interpolation, - [397610] = 8, + [400482] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9196), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5694), 6, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_then, + [400501] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11505), 1, + anon_sym_end, + STATE(9197), 1, + sym_heredoc_body, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(11466), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [400530] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(387), 1, + ACTIONS(795), 1, sym__start_of_brace_block, - ACTIONS(6574), 1, + ACTIONS(7603), 1, anon_sym_do, - ACTIONS(11416), 1, + ACTIONS(11507), 1, anon_sym_LPAREN, - ACTIONS(11418), 1, + ACTIONS(11509), 1, aux_sym_proc_token1, - STATE(9138), 1, + STATE(9198), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3471), 2, + STATE(5365), 2, sym_do_end_block, sym_brace_block, - [397637] = 10, + [400557] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11420), 1, + ACTIONS(11511), 1, anon_sym_SLASH, - STATE(9139), 1, - sym_heredoc_body, - STATE(9182), 1, + STATE(9195), 1, aux_sym_regex_repeat1, - STATE(9607), 1, + STATE(9199), 1, + sym_heredoc_body, + STATE(9673), 1, sym_interpolation, - [397668] = 8, + [400588] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7733), 1, + ACTIONS(11513), 1, anon_sym_COMMA, - ACTIONS(11422), 1, - anon_sym_then, - STATE(309), 1, - sym__terminator, - STATE(9140), 1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(9200), 2, sym_heredoc_body, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5694), 4, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + [400609] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11516), 1, + anon_sym_end, STATE(9201), 1, - aux_sym_when_repeat1, + sym_heredoc_body, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(11627), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - [397695] = 9, + [400638] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(7379), 1, + ACTIONS(7400), 1, anon_sym_when, - ACTIONS(11424), 1, + ACTIONS(11518), 1, anon_sym_end, - STATE(9141), 1, - sym_heredoc_body, - STATE(9226), 1, + STATE(9185), 1, aux_sym_case_repeat1, - STATE(9746), 1, + STATE(9202), 1, + sym_heredoc_body, + STATE(9838), 1, sym_when, - STATE(10698), 1, + STATE(11032), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [397724] = 9, + [400667] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(7379), 1, + ACTIONS(7400), 1, anon_sym_when, - ACTIONS(11426), 1, + ACTIONS(11520), 1, anon_sym_end, - STATE(9142), 1, + STATE(9203), 1, sym_heredoc_body, - STATE(9226), 1, + STATE(9304), 1, aux_sym_case_repeat1, - STATE(9746), 1, + STATE(9838), 1, sym_when, - STATE(10871), 1, + STATE(10893), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [397753] = 10, + [400696] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11123), 1, + anon_sym_COMMA, + ACTIONS(11125), 1, + anon_sym_then, + STATE(383), 1, + sym__terminator, + STATE(9166), 1, + aux_sym_in_repeat1, + STATE(9204), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + [400723] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(209), 1, + sym__start_of_brace_block, + ACTIONS(5549), 1, + anon_sym_do, + ACTIONS(11522), 1, + anon_sym_LPAREN, + ACTIONS(11524), 1, + aux_sym_proc_token1, + STATE(9205), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(3117), 2, + sym_do_end_block, + sym_brace_block, + [400750] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11428), 1, + ACTIONS(11526), 1, anon_sym_SLASH, - STATE(9143), 1, + STATE(9206), 1, sym_heredoc_body, - STATE(9182), 1, + STATE(9214), 1, aux_sym_regex_repeat1, - STATE(9607), 1, + STATE(9673), 1, sym_interpolation, - [397784] = 8, + [400781] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9860), 1, + ACTIONS(9912), 1, anon_sym_AT_LBRACK, - ACTIONS(10447), 1, + ACTIONS(10434), 1, sym_identifier, - STATE(8465), 1, + STATE(8512), 1, aux_sym_param_repeat1, - STATE(9058), 1, + STATE(9074), 1, sym_annotation, - STATE(9144), 1, + STATE(9207), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(10455), 2, + ACTIONS(10442), 2, sym_instance_var, sym_class_var, - [397811] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [400808] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, - aux_sym_regex_token1, - ACTIONS(11354), 1, - sym_regex_escape_sequence, - ACTIONS(11430), 1, - anon_sym_SLASH, - STATE(9145), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11528), 1, + anon_sym_end, + STATE(9208), 1, sym_heredoc_body, - STATE(9164), 1, - aux_sym_regex_repeat1, - STATE(9607), 1, - sym_interpolation, - [397842] = 8, + STATE(9226), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(12064), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [400837] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(955), 1, + ACTIONS(1093), 1, sym__start_of_brace_block, - ACTIONS(7645), 1, + ACTIONS(7841), 1, anon_sym_do, - ACTIONS(11432), 1, + ACTIONS(11530), 1, anon_sym_LPAREN, - ACTIONS(11434), 1, + ACTIONS(11532), 1, aux_sym_proc_token1, - STATE(9146), 1, + STATE(9209), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5557), 2, + STATE(5800), 2, sym_do_end_block, sym_brace_block, - [397869] = 10, + [400864] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11534), 1, + anon_sym_end, + STATE(9210), 1, + sym_heredoc_body, + STATE(9245), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(10729), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [400893] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11436), 1, + ACTIONS(11536), 1, anon_sym_SLASH, - STATE(9147), 1, + STATE(9211), 1, sym_heredoc_body, - STATE(9182), 1, + STATE(9243), 1, aux_sym_regex_repeat1, - STATE(9607), 1, + STATE(9673), 1, sym_interpolation, - [397900] = 10, + [400924] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7798), 1, + anon_sym_COMMA, + ACTIONS(11538), 1, + anon_sym_then, + STATE(312), 1, + sym__terminator, + STATE(9212), 1, + sym_heredoc_body, + STATE(9272), 1, + aux_sym_when_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + [400951] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7798), 1, + anon_sym_COMMA, + ACTIONS(11540), 1, + anon_sym_then, + STATE(313), 1, + sym__terminator, + STATE(9213), 1, + sym_heredoc_body, + STATE(9272), 1, + aux_sym_when_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(7796), 2, + sym__line_break, + anon_sym_SEMI, + [400978] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11438), 1, + ACTIONS(11542), 1, anon_sym_SLASH, - STATE(9147), 1, - aux_sym_regex_repeat1, - STATE(9148), 1, + STATE(9214), 1, sym_heredoc_body, - STATE(9607), 1, + STATE(9243), 1, + aux_sym_regex_repeat1, + STATE(9673), 1, sym_interpolation, - [397931] = 10, + [401009] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11440), 1, + ACTIONS(11544), 1, anon_sym_SLASH, - STATE(9149), 1, + STATE(9215), 1, sym_heredoc_body, - STATE(9182), 1, + STATE(9236), 1, aux_sym_regex_repeat1, - STATE(9607), 1, + STATE(9673), 1, sym_interpolation, - [397962] = 9, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(7379), 1, - anon_sym_when, - ACTIONS(11442), 1, - anon_sym_end, - STATE(9150), 1, - sym_heredoc_body, - STATE(9226), 1, - aux_sym_case_repeat1, - STATE(9746), 1, - sym_when, - STATE(11709), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [397991] = 10, + [401040] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11444), 1, + ACTIONS(11546), 1, anon_sym_SLASH, - STATE(9151), 1, - sym_heredoc_body, - STATE(9167), 1, + STATE(9211), 1, aux_sym_regex_repeat1, - STATE(9607), 1, - sym_interpolation, - [398022] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10996), 1, - sym_identifier, - ACTIONS(10998), 1, - anon_sym_LPAREN, - ACTIONS(11000), 1, - anon_sym_STAR, - STATE(9152), 1, + STATE(9216), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10504), 3, - sym_block_body_param, - sym_block_body_splat_param, - sym__block_body_nested_param, - [398047] = 10, + STATE(9673), 1, + sym_interpolation, + [401071] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11446), 1, + ACTIONS(11548), 1, anon_sym_SLASH, - STATE(9153), 1, + STATE(9217), 1, sym_heredoc_body, - STATE(9182), 1, + STATE(9223), 1, aux_sym_regex_repeat1, - STATE(9607), 1, + STATE(9673), 1, sym_interpolation, - [398078] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(783), 1, - sym__start_of_brace_block, - ACTIONS(7557), 1, - anon_sym_do, - ACTIONS(11448), 1, - anon_sym_LPAREN, - ACTIONS(11450), 1, - aux_sym_proc_token1, - STATE(9154), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(6222), 2, - sym_do_end_block, - sym_brace_block, - [398105] = 4, + [401102] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9155), 1, + STATE(9218), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5708), 6, + ACTIONS(6289), 6, sym__line_break, sym__start_of_brace_block, anon_sym_SEMI, anon_sym_COMMA, anon_sym_do, anon_sym_then, - [398124] = 8, + [401121] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, - sym__start_of_brace_block, - ACTIONS(5516), 1, - anon_sym_do, - ACTIONS(11452), 1, - anon_sym_LPAREN, - ACTIONS(11454), 1, - aux_sym_proc_token1, - STATE(9156), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11550), 1, + anon_sym_end, + STATE(9219), 1, sym_heredoc_body, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(12021), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2943), 2, - sym_do_end_block, - sym_brace_block, - [398151] = 8, + [401150] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(11119), 1, + anon_sym_STAR, + ACTIONS(11552), 1, + anon_sym_RPAREN, + STATE(9220), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10486), 2, + sym_constant, + sym_type_param_splat, + [401177] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(203), 1, + ACTIONS(257), 1, sym__start_of_brace_block, - ACTIONS(5514), 1, + ACTIONS(5555), 1, anon_sym_do, - ACTIONS(11456), 1, + ACTIONS(11554), 1, anon_sym_LPAREN, - ACTIONS(11458), 1, + ACTIONS(11556), 1, aux_sym_proc_token1, - STATE(9157), 1, + STATE(9221), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2626), 2, + STATE(2666), 2, sym_do_end_block, sym_brace_block, - [398178] = 6, + [401204] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11464), 1, - aux_sym__base_method_def_token1, - STATE(9158), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11558), 1, + anon_sym_end, + STATE(9222), 1, sym_heredoc_body, + STATE(9228), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(11789), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11462), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(11460), 3, - sym_identifier, - sym_instance_var, - sym_class_var, - [398201] = 6, + [401233] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11470), 1, - aux_sym__base_method_def_token1, - STATE(9159), 1, + ACTIONS(11399), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11401), 1, + aux_sym_regex_token1, + ACTIONS(11405), 1, + sym_regex_escape_sequence, + ACTIONS(11560), 1, + anon_sym_SLASH, + STATE(9223), 1, + sym_heredoc_body, + STATE(9243), 1, + aux_sym_regex_repeat1, + STATE(9673), 1, + sym_interpolation, + [401264] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9224), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11468), 2, - anon_sym_RPAREN, + ACTIONS(5827), 6, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(11466), 3, - sym_identifier, - sym_instance_var, - sym_class_var, - [398224] = 8, + anon_sym_do, + anon_sym_then, + [401283] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(471), 1, - sym__start_of_brace_block, - ACTIONS(6828), 1, - anon_sym_do, - ACTIONS(11472), 1, - anon_sym_LPAREN, - ACTIONS(11474), 1, - aux_sym_proc_token1, - STATE(9160), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11562), 1, + anon_sym_end, + STATE(9167), 1, + aux_sym_case_repeat1, + STATE(9225), 1, sym_heredoc_body, + STATE(9838), 1, + sym_when, + STATE(11758), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4708), 2, - sym_do_end_block, - sym_brace_block, - [398251] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [401312] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, - aux_sym_regex_token1, - ACTIONS(11354), 1, - sym_regex_escape_sequence, - ACTIONS(11476), 1, - anon_sym_SLASH, - STATE(9153), 1, - aux_sym_regex_repeat1, - STATE(9161), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11564), 1, + anon_sym_end, + STATE(9226), 1, sym_heredoc_body, - STATE(9607), 1, - sym_interpolation, - [398282] = 8, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(11245), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [401341] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(641), 1, + ACTIONS(921), 1, sym__start_of_brace_block, - ACTIONS(6719), 1, + ACTIONS(7714), 1, anon_sym_do, - ACTIONS(11478), 1, + ACTIONS(11566), 1, anon_sym_LPAREN, - ACTIONS(11480), 1, + ACTIONS(11568), 1, aux_sym_proc_token1, - STATE(9162), 1, + STATE(9227), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4385), 2, + STATE(6662), 2, sym_do_end_block, sym_brace_block, - [398309] = 9, + [401368] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(7379), 1, + ACTIONS(7400), 1, anon_sym_when, - ACTIONS(11482), 1, + ACTIONS(11570), 1, anon_sym_end, - STATE(9163), 1, + STATE(9228), 1, sym_heredoc_body, - STATE(9226), 1, + STATE(9304), 1, aux_sym_case_repeat1, - STATE(9746), 1, + STATE(9838), 1, sym_when, - STATE(10699), 1, + STATE(11907), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [398338] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [401397] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, - aux_sym_regex_token1, - ACTIONS(11354), 1, - sym_regex_escape_sequence, - ACTIONS(11484), 1, - anon_sym_SLASH, - STATE(9164), 1, + ACTIONS(11576), 1, + aux_sym__base_method_def_token1, + STATE(9229), 1, sym_heredoc_body, - STATE(9182), 1, - aux_sym_regex_repeat1, - STATE(9607), 1, - sym_interpolation, - [398369] = 8, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(11574), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(11572), 3, + sym_identifier, + sym_instance_var, + sym_class_var, + [401420] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7733), 1, - anon_sym_COMMA, - ACTIONS(7763), 1, - anon_sym_then, - STATE(298), 1, - sym__terminator, - STATE(9133), 1, - aux_sym_when_repeat1, - STATE(9165), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11578), 1, + anon_sym_end, + STATE(9230), 1, sym_heredoc_body, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(11254), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(7731), 2, - sym__line_break, - anon_sym_SEMI, - [398396] = 9, + [401449] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(7379), 1, + ACTIONS(7400), 1, anon_sym_when, - ACTIONS(11486), 1, + ACTIONS(11580), 1, anon_sym_end, - STATE(9166), 1, - sym_heredoc_body, - STATE(9226), 1, + STATE(9152), 1, aux_sym_case_repeat1, - STATE(9746), 1, + STATE(9231), 1, + sym_heredoc_body, + STATE(9838), 1, sym_when, - STATE(11392), 1, + STATE(11429), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [398425] = 10, + [401478] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11488), 1, + ACTIONS(11582), 1, anon_sym_SLASH, - STATE(9167), 1, - sym_heredoc_body, - STATE(9182), 1, + STATE(9176), 1, aux_sym_regex_repeat1, - STATE(9607), 1, + STATE(9232), 1, + sym_heredoc_body, + STATE(9673), 1, sym_interpolation, - [398456] = 10, + [401509] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11490), 1, + ACTIONS(11584), 1, anon_sym_SLASH, - STATE(9122), 1, - aux_sym_regex_repeat1, - STATE(9168), 1, + STATE(9233), 1, sym_heredoc_body, - STATE(9607), 1, + STATE(9242), 1, + aux_sym_regex_repeat1, + STATE(9673), 1, sym_interpolation, - [398487] = 9, + [401540] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(7379), 1, + ACTIONS(7400), 1, anon_sym_when, - ACTIONS(11492), 1, + ACTIONS(11586), 1, anon_sym_end, - STATE(9169), 1, + STATE(9234), 1, sym_heredoc_body, - STATE(9226), 1, + STATE(9304), 1, aux_sym_case_repeat1, - STATE(9746), 1, + STATE(9838), 1, sym_when, - STATE(11109), 1, + STATE(10948), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [398516] = 10, + [401569] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11494), 1, + ACTIONS(11588), 1, anon_sym_SLASH, - STATE(9170), 1, + STATE(9235), 1, sym_heredoc_body, - STATE(9182), 1, + STATE(9243), 1, aux_sym_regex_repeat1, - STATE(9607), 1, + STATE(9673), 1, sym_interpolation, - [398547] = 10, + [401600] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11496), 1, + ACTIONS(11590), 1, anon_sym_SLASH, - STATE(9170), 1, - aux_sym_regex_repeat1, - STATE(9171), 1, + STATE(9236), 1, sym_heredoc_body, - STATE(9607), 1, + STATE(9243), 1, + aux_sym_regex_repeat1, + STATE(9673), 1, sym_interpolation, - [398578] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(339), 1, - sym__start_of_brace_block, - ACTIONS(6610), 1, - anon_sym_do, - ACTIONS(11498), 1, - anon_sym_LPAREN, - ACTIONS(11500), 1, - aux_sym_proc_token1, - STATE(9172), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(3870), 2, - sym_do_end_block, - sym_brace_block, - [398605] = 10, + [401631] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11502), 1, + ACTIONS(11592), 1, anon_sym_SLASH, - STATE(9173), 1, - sym_heredoc_body, - STATE(9183), 1, + STATE(9172), 1, aux_sym_regex_repeat1, - STATE(9607), 1, + STATE(9237), 1, + sym_heredoc_body, + STATE(9673), 1, sym_interpolation, - [398636] = 8, + [401662] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1029), 1, + ACTIONS(969), 1, sym__start_of_brace_block, - ACTIONS(7816), 1, + ACTIONS(7758), 1, anon_sym_do, - ACTIONS(11504), 1, + ACTIONS(11594), 1, anon_sym_LPAREN, - ACTIONS(11506), 1, + ACTIONS(11596), 1, aux_sym_proc_token1, - STATE(9174), 1, + STATE(9238), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6794), 2, + STATE(5743), 2, sym_do_end_block, sym_brace_block, - [398663] = 10, + [401689] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11598), 1, + anon_sym_end, + STATE(9239), 1, + sym_heredoc_body, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(10720), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [401718] = 9, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11600), 1, + anon_sym_end, + STATE(9155), 1, + aux_sym_case_repeat1, + STATE(9240), 1, + sym_heredoc_body, + STATE(9838), 1, + sym_when, + STATE(11672), 1, + sym_else, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [401747] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11508), 1, + ACTIONS(11602), 1, anon_sym_SLASH, - STATE(9121), 1, + STATE(9154), 1, aux_sym_regex_repeat1, - STATE(9175), 1, + STATE(9241), 1, sym_heredoc_body, - STATE(9607), 1, + STATE(9673), 1, sym_interpolation, - [398694] = 10, + [401778] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11510), 1, + ACTIONS(11604), 1, anon_sym_SLASH, - STATE(9139), 1, - aux_sym_regex_repeat1, - STATE(9176), 1, + STATE(9242), 1, sym_heredoc_body, - STATE(9607), 1, + STATE(9243), 1, + aux_sym_regex_repeat1, + STATE(9673), 1, sym_interpolation, - [398725] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(519), 1, - sym__start_of_brace_block, - ACTIONS(6834), 1, - anon_sym_do, - ACTIONS(11512), 1, - anon_sym_LPAREN, - ACTIONS(11514), 1, - aux_sym_proc_token1, - STATE(9177), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, + [401809] = 9, + ACTIONS(3), 1, sym_comment, - STATE(4039), 2, - sym_do_end_block, - sym_brace_block, - [398752] = 4, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9178), 1, + ACTIONS(11606), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11609), 1, + aux_sym_regex_token1, + ACTIONS(11612), 1, + anon_sym_SLASH, + ACTIONS(11614), 1, + sym_regex_escape_sequence, + STATE(9673), 1, + sym_interpolation, + STATE(9243), 2, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6154), 6, - sym__line_break, - sym__start_of_brace_block, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_do, - anon_sym_then, - [398771] = 9, + aux_sym_regex_repeat1, + [401838] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(7379), 1, + ACTIONS(7400), 1, anon_sym_when, - ACTIONS(11516), 1, + ACTIONS(11617), 1, anon_sym_end, - STATE(9179), 1, + STATE(9244), 1, sym_heredoc_body, - STATE(9226), 1, + STATE(9304), 1, aux_sym_case_repeat1, - STATE(9746), 1, + STATE(9838), 1, sym_when, - STATE(10792), 1, + STATE(11164), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [398800] = 8, + [401867] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, - sym__start_of_brace_block, - ACTIONS(7837), 1, - anon_sym_do, - ACTIONS(11518), 1, - anon_sym_LPAREN, - ACTIONS(11520), 1, - aux_sym_proc_token1, - STATE(9180), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11619), 1, + anon_sym_end, + STATE(9245), 1, sym_heredoc_body, + STATE(9304), 1, + aux_sym_case_repeat1, + STATE(9838), 1, + sym_when, + STATE(10941), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5881), 2, - sym_do_end_block, - sym_brace_block, - [398827] = 9, + [401896] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(7379), 1, + ACTIONS(7400), 1, anon_sym_when, - ACTIONS(11522), 1, + ACTIONS(11621), 1, anon_sym_end, - STATE(9181), 1, + STATE(9246), 1, sym_heredoc_body, - STATE(9226), 1, + STATE(9304), 1, aux_sym_case_repeat1, - STATE(9746), 1, + STATE(9838), 1, sym_when, - STATE(10571), 1, + STATE(12041), 1, sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [398856] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11524), 1, - anon_sym_POUND_LBRACE, - ACTIONS(11527), 1, - aux_sym_regex_token1, - ACTIONS(11530), 1, - anon_sym_SLASH, - ACTIONS(11532), 1, - sym_regex_escape_sequence, - STATE(9607), 1, - sym_interpolation, - STATE(9182), 2, - sym_heredoc_body, - aux_sym_regex_repeat1, - [398885] = 10, + [401925] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11348), 1, + ACTIONS(11399), 1, anon_sym_POUND_LBRACE, - ACTIONS(11350), 1, + ACTIONS(11401), 1, aux_sym_regex_token1, - ACTIONS(11354), 1, + ACTIONS(11405), 1, sym_regex_escape_sequence, - ACTIONS(11535), 1, + ACTIONS(11623), 1, anon_sym_SLASH, - STATE(9182), 1, + STATE(9151), 1, aux_sym_regex_repeat1, - STATE(9183), 1, + STATE(9247), 1, sym_heredoc_body, - STATE(9607), 1, + STATE(9673), 1, sym_interpolation, - [398916] = 7, + [401956] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(387), 1, - sym__start_of_brace_block, - ACTIONS(6574), 1, - anon_sym_do, - ACTIONS(11537), 1, - aux_sym_proc_token1, - STATE(9184), 1, - sym_heredoc_body, + ACTIONS(11627), 1, + sym__regular_rescue_keyword, + STATE(9431), 1, + sym_rescue_block, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3364), 2, - sym_do_end_block, - sym_brace_block, - [398940] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9185), 1, + STATE(9248), 2, sym_heredoc_body, - ACTIONS(11539), 2, - sym_ignored_backslash, - sym_regex_escape_sequence, - ACTIONS(11541), 3, - sym__delimited_string_contents, - sym__percent_literal_end, - anon_sym_POUND_LBRACE, - [398962] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + aux_sym_method_def_repeat1, + ACTIONS(11625), 3, + sym__regular_ensure_keyword, + anon_sym_end, + anon_sym_else, + [401979] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11545), 1, - anon_sym_DQUOTE, - STATE(9186), 1, + STATE(9249), 1, sym_heredoc_body, - STATE(9256), 1, - aux_sym_quoted_symbol_repeat1, - ACTIONS(11543), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [398986] = 7, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6177), 6, + sym__line_break, + sym__start_of_brace_block, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_then, + [401998] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(339), 1, + ACTIONS(747), 1, sym__start_of_brace_block, - ACTIONS(6610), 1, + ACTIONS(7601), 1, anon_sym_do, - ACTIONS(11547), 1, + ACTIONS(11630), 1, + anon_sym_LPAREN, + ACTIONS(11632), 1, aux_sym_proc_token1, - STATE(9187), 1, + STATE(9250), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4203), 2, + STATE(6248), 2, sym_do_end_block, sym_brace_block, - [399010] = 6, + [402025] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11552), 1, - anon_sym_end, - STATE(9813), 1, - sym__terminator, + ACTIONS(603), 1, + sym__start_of_brace_block, + ACTIONS(6824), 1, + anon_sym_do, + ACTIONS(11634), 1, + anon_sym_LPAREN, + ACTIONS(11636), 1, + aux_sym_proc_token1, + STATE(9251), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11549), 2, - sym__line_break, - anon_sym_SEMI, - STATE(9188), 2, - sym_heredoc_body, - aux_sym_annotation_def_repeat1, - [399032] = 7, + STATE(4468), 2, + sym_do_end_block, + sym_brace_block, + [402052] = 9, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11556), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(7400), 1, + anon_sym_when, + ACTIONS(11638), 1, anon_sym_end, - STATE(9189), 1, + STATE(9160), 1, + aux_sym_case_repeat1, + STATE(9252), 1, sym_heredoc_body, - STATE(9285), 1, - aux_sym_annotation_def_repeat1, - STATE(9813), 1, - sym__terminator, + STATE(9838), 1, + sym_when, + STATE(11733), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11554), 2, - sym__line_break, - anon_sym_SEMI, - [399056] = 7, + [402081] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11399), 1, + anon_sym_POUND_LBRACE, + ACTIONS(11401), 1, + aux_sym_regex_token1, + ACTIONS(11405), 1, + sym_regex_escape_sequence, + ACTIONS(11640), 1, + anon_sym_SLASH, + STATE(9235), 1, + aux_sym_regex_repeat1, + STATE(9253), 1, + sym_heredoc_body, + STATE(9673), 1, + sym_interpolation, + [402112] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9937), 1, + ACTIONS(10000), 1, aux_sym_integer_token2, - ACTIONS(11558), 1, + ACTIONS(11642), 1, sym_instance_var, - STATE(9190), 1, + STATE(9254), 1, sym_heredoc_body, - STATE(11419), 1, + STATE(10577), 1, sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, + ACTIONS(10008), 2, sym_unary_plus, sym_unary_minus, - [399080] = 6, + [402136] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11562), 1, - anon_sym_RPAREN, - ACTIONS(11564), 1, - aux_sym_proc_token1, - STATE(9191), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(11560), 3, - sym_identifier, - sym_instance_var, - sym_class_var, - [399102] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11566), 1, - anon_sym_DQUOTE, - STATE(9192), 1, - sym_heredoc_body, - STATE(9256), 1, - aux_sym_quoted_symbol_repeat1, - ACTIONS(11543), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [399126] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9937), 1, + ACTIONS(10000), 1, aux_sym_integer_token2, - ACTIONS(11568), 1, + ACTIONS(11644), 1, sym_instance_var, - STATE(9193), 1, + STATE(9255), 1, sym_heredoc_body, - STATE(10634), 1, + STATE(11304), 1, sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, + ACTIONS(10008), 2, sym_unary_plus, sym_unary_minus, - [399150] = 7, + [402160] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(955), 1, + ACTIONS(969), 1, sym__start_of_brace_block, - ACTIONS(7645), 1, + ACTIONS(7758), 1, anon_sym_do, - ACTIONS(11570), 1, + ACTIONS(11646), 1, aux_sym_proc_token1, - STATE(9194), 1, + STATE(9256), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5484), 2, + STATE(5646), 2, sym_do_end_block, sym_brace_block, - [399174] = 7, + [402184] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(783), 1, + ACTIONS(1045), 1, sym__start_of_brace_block, - ACTIONS(7557), 1, + ACTIONS(7937), 1, anon_sym_do, - ACTIONS(11572), 1, + ACTIONS(11648), 1, aux_sym_proc_token1, - STATE(9195), 1, + STATE(9257), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5993), 2, + STATE(6889), 2, sym_do_end_block, sym_brace_block, - [399198] = 7, + [402208] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(733), 1, - sym__start_of_brace_block, - ACTIONS(7569), 1, - anon_sym_do, - ACTIONS(11574), 1, - aux_sym_proc_token1, - STATE(9196), 1, + ACTIONS(11652), 1, + anon_sym_DQUOTE, + STATE(9258), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(5318), 2, - sym_do_end_block, - sym_brace_block, - [399222] = 7, + STATE(9309), 1, + aux_sym_quoted_symbol_repeat1, + ACTIONS(11650), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [402232] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(641), 1, - sym__start_of_brace_block, - ACTIONS(6719), 1, - anon_sym_do, - ACTIONS(11576), 1, - aux_sym_proc_token1, - STATE(9197), 1, + ACTIONS(11654), 1, + anon_sym_COMMA, + STATE(9200), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(9259), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4487), 2, - sym_do_end_block, - sym_brace_block, - [399246] = 7, + ACTIONS(5637), 3, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_do, + [402254] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(11578), 1, - anon_sym_end, - ACTIONS(11580), 1, - anon_sym_elsif, - STATE(9198), 1, + STATE(9260), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(11500), 2, - sym_elsif, - sym_else, - [399270] = 7, + ACTIONS(6444), 5, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_do, + [402272] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(11582), 1, - sym_instance_var, - STATE(9199), 1, + ACTIONS(11656), 1, + anon_sym_DQUOTE, + STATE(9261), 1, + sym_heredoc_body, + STATE(9283), 1, + aux_sym_quoted_symbol_repeat1, + ACTIONS(11650), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [402296] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9262), 1, sym_heredoc_body, - STATE(11571), 1, - sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - [399294] = 7, + ACTIONS(5694), 5, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_do, + [402314] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9263), 1, + sym_heredoc_body, + ACTIONS(11660), 2, + anon_sym_POUND_LBRACE, + aux_sym_command_token1, + ACTIONS(11658), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + anon_sym_BQUOTE2, + [402336] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(11580), 1, - anon_sym_elsif, - ACTIONS(11584), 1, + ACTIONS(11662), 1, anon_sym_end, - STATE(9200), 1, + ACTIONS(11664), 1, + anon_sym_elsif, + STATE(9264), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10717), 2, + STATE(11093), 2, sym_elsif, sym_else, - [399318] = 5, + [402360] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11588), 1, - anon_sym_COMMA, + ACTIONS(11669), 1, + anon_sym_end, + STATE(10043), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9201), 2, - sym_heredoc_body, - aux_sym_when_repeat1, - ACTIONS(11586), 3, + ACTIONS(11666), 2, sym__line_break, anon_sym_SEMI, - anon_sym_then, - [399338] = 7, + STATE(9265), 2, + sym_heredoc_body, + aux_sym_annotation_def_repeat1, + [402382] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(11591), 1, - sym_instance_var, - STATE(9202), 1, + ACTIONS(479), 1, + sym__start_of_brace_block, + ACTIONS(6865), 1, + anon_sym_do, + ACTIONS(11671), 1, + aux_sym_proc_token1, + STATE(9266), 1, sym_heredoc_body, - STATE(10663), 1, - sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - [399362] = 6, + STATE(4703), 2, + sym_do_end_block, + sym_brace_block, + [402406] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11595), 1, - anon_sym_RPAREN, - ACTIONS(11597), 1, - aux_sym_proc_token1, - STATE(9203), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(11664), 1, + anon_sym_elsif, + ACTIONS(11673), 1, + anon_sym_end, + STATE(9267), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11593), 3, - sym_identifier, - sym_instance_var, - sym_class_var, - [399384] = 5, + STATE(11633), 2, + sym_elsif, + sym_else, + [402430] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10242), 1, - anon_sym_LPAREN2, - STATE(9204), 1, - sym_heredoc_body, + ACTIONS(11678), 1, + sym__delimited_array_element_end, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11599), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [399404] = 4, + STATE(9268), 2, + sym_heredoc_body, + aux_sym_percent_literal_array_word_repeat1, + ACTIONS(11675), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + aux_sym_percent_literal_array_word_token1, + [402450] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9205), 1, + ACTIONS(11680), 1, + anon_sym_DQUOTE, + STATE(9269), 1, + sym_heredoc_body, + STATE(9283), 1, + aux_sym_quoted_symbol_repeat1, + ACTIONS(11650), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [402474] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7997), 1, + anon_sym_COMMA, + STATE(9259), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(9270), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4595), 5, + ACTIONS(5631), 3, + sym__start_of_brace_block, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - [399422] = 7, + anon_sym_do, + [402496] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(11580), 1, + ACTIONS(11664), 1, anon_sym_elsif, - ACTIONS(11601), 1, + ACTIONS(11682), 1, anon_sym_end, - STATE(9206), 1, + STATE(9271), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10875), 2, + STATE(11630), 2, sym_elsif, sym_else, - [399446] = 8, + [402520] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8065), 1, - sym__constant_segment, - ACTIONS(8067), 1, - anon_sym_COLON_COLON, - ACTIONS(11603), 1, - sym_self, - STATE(8486), 1, - sym_constant, - STATE(8880), 1, - sym_generic_instance_type, - STATE(9207), 1, + ACTIONS(11686), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(9272), 2, + sym_heredoc_body, + aux_sym_when_repeat1, + ACTIONS(11684), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_then, + [402540] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1045), 1, + sym__start_of_brace_block, + ACTIONS(7937), 1, + anon_sym_do, + ACTIONS(11689), 1, + aux_sym_proc_token1, + STATE(9273), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [399472] = 7, + STATE(6867), 2, + sym_do_end_block, + sym_brace_block, + [402564] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, + ACTIONS(4787), 1, anon_sym_COMMA, - ACTIONS(11605), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9208), 1, + STATE(9274), 1, sym_heredoc_body, - STATE(9841), 1, + STATE(9879), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4745), 2, - sym__line_break, - anon_sym_SEMI, - [399496] = 6, + ACTIONS(4785), 2, + anon_sym_RPAREN, + anon_sym_EQ_GT, + [402588] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8126), 1, - anon_sym_COMMA, - STATE(9209), 1, + ACTIONS(11695), 1, + sym__delimited_array_element_end, + STATE(9275), 1, sym_heredoc_body, - STATE(9212), 1, - aux_sym_argument_list_no_parens_repeat1, + STATE(9318), 1, + aux_sym_percent_literal_array_word_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5570), 3, - sym__start_of_brace_block, - anon_sym_RBRACE, - anon_sym_do, - [399518] = 7, + ACTIONS(11693), 3, + sym__delimited_string_contents, + sym_ignored_backslash, + aux_sym_percent_literal_array_word_token1, + [402610] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11607), 1, - anon_sym_DQUOTE, - STATE(9210), 1, + STATE(9276), 1, sym_heredoc_body, - STATE(9256), 1, - aux_sym_quoted_symbol_repeat1, - ACTIONS(11543), 3, + ACTIONS(11658), 5, + sym__delimited_string_contents, + sym__string_literal_end, sym_ignored_backslash, sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [399542] = 6, + anon_sym_POUND_LBRACE, + [402630] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8128), 1, + ACTIONS(8088), 1, anon_sym_COMMA, - STATE(9211), 1, + STATE(9277), 1, sym_heredoc_body, - STATE(9215), 1, + STATE(9279), 1, aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5585), 3, + ACTIONS(5587), 3, sym__start_of_brace_block, anon_sym_RBRACE, anon_sym_do, - [399564] = 6, + [402652] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8128), 1, + ACTIONS(8090), 1, anon_sym_COMMA, - STATE(9116), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(9212), 1, + STATE(9278), 1, sym_heredoc_body, + STATE(9280), 1, + aux_sym_argument_list_no_parens_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5585), 3, + ACTIONS(5631), 3, sym__start_of_brace_block, anon_sym_RBRACE, anon_sym_do, - [399586] = 7, + [402674] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5481), 1, + ACTIONS(8090), 1, anon_sym_COMMA, - ACTIONS(11609), 1, - anon_sym_DASH_GT, - STATE(9213), 1, + STATE(9200), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(9279), 1, sym_heredoc_body, - STATE(9779), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4745), 2, - anon_sym_RPAREN, + ACTIONS(5631), 3, + sym__start_of_brace_block, anon_sym_RBRACE, - [399610] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11611), 1, - anon_sym_DQUOTE, - STATE(9214), 1, - sym_heredoc_body, - STATE(9263), 1, - aux_sym_quoted_symbol_repeat1, - ACTIONS(11543), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [399634] = 6, + anon_sym_do, + [402696] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11613), 1, + ACTIONS(11697), 1, anon_sym_COMMA, - STATE(9116), 1, + STATE(9200), 1, aux_sym_argument_list_no_parens_repeat1, - STATE(9215), 1, + STATE(9280), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5562), 3, + ACTIONS(5637), 3, sym__start_of_brace_block, anon_sym_RBRACE, anon_sym_do, - [399656] = 7, + [402718] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(11615), 1, - sym_instance_var, - STATE(9216), 1, + ACTIONS(795), 1, + sym__start_of_brace_block, + ACTIONS(7603), 1, + anon_sym_do, + ACTIONS(11699), 1, + aux_sym_proc_token1, + STATE(9281), 1, sym_heredoc_body, - STATE(10824), 1, - sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - [399680] = 7, + STATE(5423), 2, + sym_do_end_block, + sym_brace_block, + [402742] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11617), 1, + ACTIONS(11701), 1, anon_sym_DQUOTE, - STATE(9217), 1, + STATE(9282), 1, sym_heredoc_body, - STATE(9256), 1, + STATE(9283), 1, aux_sym_quoted_symbol_repeat1, - ACTIONS(11543), 3, + ACTIONS(11650), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [399704] = 7, + [402766] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11619), 1, - anon_sym_end, - STATE(9218), 1, + ACTIONS(11706), 1, + anon_sym_DQUOTE, + STATE(9283), 2, sym_heredoc_body, - STATE(9227), 1, - aux_sym_annotation_def_repeat1, - STATE(9813), 1, - sym__terminator, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(11554), 2, - sym__line_break, - anon_sym_SEMI, - [399728] = 7, + aux_sym_quoted_symbol_repeat1, + ACTIONS(11703), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [402788] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9937), 1, + ACTIONS(10000), 1, aux_sym_integer_token2, - ACTIONS(11621), 1, + ACTIONS(11708), 1, sym_instance_var, - STATE(9219), 1, + STATE(9284), 1, sym_heredoc_body, - STATE(11936), 1, + STATE(11482), 1, sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, + ACTIONS(10008), 2, sym_unary_plus, sym_unary_minus, - [399752] = 7, + [402812] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(747), 1, + sym__start_of_brace_block, + ACTIONS(7601), 1, + anon_sym_do, + ACTIONS(11710), 1, + aux_sym_proc_token1, + STATE(9285), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(6026), 2, + sym_do_end_block, + sym_brace_block, + [402836] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(11580), 1, + ACTIONS(11664), 1, anon_sym_elsif, - ACTIONS(11623), 1, + ACTIONS(11712), 1, anon_sym_end, - STATE(9220), 1, + STATE(9286), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10577), 2, + STATE(11560), 2, sym_elsif, sym_else, - [399776] = 8, + [402860] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8065), 1, - sym__constant_segment, - ACTIONS(8067), 1, - anon_sym_COLON_COLON, - ACTIONS(11625), 1, - sym_self, - STATE(8492), 1, - sym_constant, - STATE(8881), 1, - sym_generic_instance_type, - STATE(9221), 1, + ACTIONS(11714), 1, + anon_sym_DQUOTE, + STATE(9287), 1, + sym_heredoc_body, + STATE(9391), 1, + aux_sym_quoted_symbol_repeat1, + ACTIONS(11650), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [402884] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9288), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [399802] = 7, + ACTIONS(4640), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_DASH_GT, + [402902] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, + ACTIONS(921), 1, sym__start_of_brace_block, - ACTIONS(7837), 1, + ACTIONS(7714), 1, anon_sym_do, - ACTIONS(11627), 1, + ACTIONS(11716), 1, aux_sym_proc_token1, - STATE(9222), 1, + STATE(9289), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6048), 2, + STATE(6273), 2, sym_do_end_block, sym_brace_block, - [399826] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [402926] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9223), 1, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(11718), 1, + sym_instance_var, + STATE(9290), 1, sym_heredoc_body, - ACTIONS(11629), 5, - sym__delimited_string_contents, - sym__string_literal_end, - sym_ignored_backslash, - sym_string_escape_sequence, - anon_sym_POUND_LBRACE, - [399846] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + STATE(11447), 1, + sym_integer, + ACTIONS(5), 2, sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11631), 1, - anon_sym_DQUOTE, - STATE(9224), 1, - sym_heredoc_body, - STATE(9256), 1, - aux_sym_quoted_symbol_repeat1, - ACTIONS(11543), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [399870] = 7, - ACTIONS(3), 1, sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + [402950] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11633), 1, - anon_sym_DQUOTE, - STATE(9225), 1, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(11720), 1, + sym_instance_var, + STATE(9291), 1, sym_heredoc_body, - STATE(9237), 1, - aux_sym_quoted_symbol_repeat1, - ACTIONS(11543), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [399894] = 6, + STATE(10650), 1, + sym_integer, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + [402974] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11637), 1, - anon_sym_when, - STATE(9746), 1, - sym_when, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(11722), 1, + anon_sym_DASH_GT, + STATE(9292), 1, + sym_heredoc_body, + STATE(10134), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11635), 2, - anon_sym_end, - anon_sym_else, - STATE(9226), 2, - sym_heredoc_body, - aux_sym_case_repeat1, - [399916] = 7, + ACTIONS(4785), 2, + sym__line_break, + anon_sym_SEMI, + [402998] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11640), 1, + ACTIONS(11726), 1, anon_sym_end, - STATE(9188), 1, + STATE(9265), 1, aux_sym_annotation_def_repeat1, - STATE(9227), 1, + STATE(9293), 1, sym_heredoc_body, - STATE(9813), 1, + STATE(10043), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11554), 2, + ACTIONS(11724), 2, sym__line_break, anon_sym_SEMI, - [399940] = 7, + [403022] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11642), 1, + ACTIONS(11728), 1, anon_sym_DQUOTE, - STATE(9224), 1, + STATE(9283), 1, aux_sym_quoted_symbol_repeat1, - STATE(9228), 1, + STATE(9294), 1, sym_heredoc_body, - ACTIONS(11543), 3, + ACTIONS(11650), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [399964] = 7, + [403046] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(11644), 1, - sym_instance_var, - STATE(9229), 1, + ACTIONS(527), 1, + sym__start_of_brace_block, + ACTIONS(6874), 1, + anon_sym_do, + ACTIONS(11730), 1, + aux_sym_proc_token1, + STATE(9295), 1, sym_heredoc_body, - STATE(11165), 1, - sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - [399988] = 7, + STATE(4183), 2, + sym_do_end_block, + sym_brace_block, + [403070] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, + ACTIONS(969), 1, sym__start_of_brace_block, - ACTIONS(5516), 1, + ACTIONS(7758), 1, anon_sym_do, - ACTIONS(11646), 1, + ACTIONS(11732), 1, aux_sym_proc_token1, - STATE(9230), 1, + STATE(9296), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3067), 2, + STATE(5603), 2, sym_do_end_block, sym_brace_block, - [400012] = 7, + [403094] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(203), 1, - sym__start_of_brace_block, - ACTIONS(5514), 1, - anon_sym_do, - ACTIONS(11648), 1, - aux_sym_proc_token1, - STATE(9231), 1, + ACTIONS(10272), 1, + anon_sym_LPAREN2, + STATE(9297), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2770), 2, - sym_do_end_block, - sym_brace_block, - [400036] = 7, + ACTIONS(11734), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [403114] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(11664), 1, + anon_sym_elsif, + ACTIONS(11736), 1, + anon_sym_end, + STATE(9298), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(10611), 2, + sym_elsif, + sym_else, + [403138] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11650), 1, + ACTIONS(11738), 1, anon_sym_DQUOTE, - STATE(9232), 1, + STATE(9299), 1, sym_heredoc_body, - STATE(9256), 1, + STATE(9340), 1, aux_sym_quoted_symbol_repeat1, - ACTIONS(11543), 3, + ACTIONS(11650), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [400060] = 8, + [403162] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7679), 1, - sym__constant_segment, - ACTIONS(7681), 1, - anon_sym_COLON_COLON, - ACTIONS(11652), 1, - sym_self, - STATE(8132), 1, - sym_constant, - STATE(8256), 1, - sym_generic_instance_type, - STATE(9233), 1, + STATE(9300), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [400086] = 7, - ACTIONS(3), 1, + ACTIONS(6289), 5, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_do, + [403180] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9301), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, sym_comment, - ACTIONS(5), 1, + ACTIONS(6177), 5, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_do, + [403198] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7993), 1, + anon_sym_COMMA, + STATE(9302), 1, + sym_heredoc_body, + STATE(9320), 1, + aux_sym_argument_list_no_parens_repeat1, + ACTIONS(5), 2, sym__line_continuation, + sym_comment, + ACTIONS(5587), 3, + sym__start_of_brace_block, + anon_sym_RPAREN, + anon_sym_do, + [403220] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11654), 1, - anon_sym_DQUOTE, - STATE(9234), 1, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(11740), 1, + sym_instance_var, + STATE(9303), 1, sym_heredoc_body, - STATE(9273), 1, - aux_sym_quoted_symbol_repeat1, - ACTIONS(11543), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [400110] = 8, + STATE(10746), 1, + sym_integer, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + [403244] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7679), 1, - sym__constant_segment, - ACTIONS(7681), 1, - anon_sym_COLON_COLON, - ACTIONS(11656), 1, - sym_self, - STATE(8125), 1, - sym_constant, - STATE(8301), 1, - sym_generic_instance_type, - STATE(9235), 1, + ACTIONS(11744), 1, + anon_sym_when, + STATE(9838), 1, + sym_when, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(11742), 2, + anon_sym_end, + anon_sym_else, + STATE(9304), 2, sym_heredoc_body, + aux_sym_case_repeat1, + [403266] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11749), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [400136] = 7, + STATE(9305), 2, + sym_heredoc_body, + aux_sym_in_repeat1, + ACTIONS(11747), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_then, + [403286] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(11580), 1, + ACTIONS(11664), 1, anon_sym_elsif, - ACTIONS(11658), 1, + ACTIONS(11752), 1, anon_sym_end, - STATE(9236), 1, + STATE(9306), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(11394), 2, + STATE(11373), 2, sym_elsif, sym_else, - [400160] = 7, + [403310] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11756), 1, + anon_sym_RPAREN, + ACTIONS(11758), 1, + aux_sym_proc_token1, + STATE(9307), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(11754), 3, + sym_identifier, + sym_instance_var, + sym_class_var, + [403332] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11760), 1, + anon_sym_end, + STATE(9265), 1, + aux_sym_annotation_def_repeat1, + STATE(9308), 1, + sym_heredoc_body, + STATE(10043), 1, + sym__terminator, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(11724), 2, + sym__line_break, + anon_sym_SEMI, + [403356] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11660), 1, + ACTIONS(11762), 1, anon_sym_DQUOTE, - STATE(9237), 1, - sym_heredoc_body, - STATE(9256), 1, + STATE(9283), 1, aux_sym_quoted_symbol_repeat1, - ACTIONS(11543), 3, + STATE(9309), 1, + sym_heredoc_body, + ACTIONS(11650), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [400184] = 7, + [403380] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9937), 1, + ACTIONS(10000), 1, aux_sym_integer_token2, - ACTIONS(11662), 1, + ACTIONS(11764), 1, sym_instance_var, - STATE(9238), 1, + STATE(9310), 1, sym_heredoc_body, - STATE(10845), 1, + STATE(11656), 1, sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, + ACTIONS(10008), 2, sym_unary_plus, sym_unary_minus, - [400208] = 7, + [403404] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(387), 1, + ACTIONS(795), 1, sym__start_of_brace_block, - ACTIONS(6574), 1, + ACTIONS(7603), 1, anon_sym_do, - ACTIONS(11664), 1, + ACTIONS(11766), 1, aux_sym_proc_token1, - STATE(9239), 1, + STATE(9311), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3574), 2, + STATE(5229), 2, sym_do_end_block, sym_brace_block, - [400232] = 7, + [403428] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(11580), 1, - anon_sym_elsif, - ACTIONS(11666), 1, - anon_sym_end, - STATE(9240), 1, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(11768), 1, + sym_instance_var, + STATE(9312), 1, sym_heredoc_body, + STATE(10768), 1, + sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10885), 2, - sym_elsif, - sym_else, - [400256] = 5, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + [403452] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9241), 1, + STATE(9313), 1, + sym_heredoc_body, + ACTIONS(11770), 5, + sym__delimited_string_contents, + sym__percent_literal_end, + sym_ignored_backslash, + sym_string_escape_sequence, + anon_sym_POUND_LBRACE, + [403472] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11772), 1, + anon_sym_DQUOTE, + STATE(9314), 1, + sym_heredoc_body, + STATE(9326), 1, + aux_sym_quoted_symbol_repeat1, + ACTIONS(11650), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [403496] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9315), 1, sym_heredoc_body, - ACTIONS(11541), 5, + ACTIONS(11774), 5, sym_heredoc_content, sym_heredoc_end, sym_ignored_backslash, sym_string_escape_sequence, anon_sym_POUND_LBRACE, - [400276] = 6, + [403516] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11670), 1, - sym__delimited_array_element_end, - STATE(9242), 1, + STATE(9316), 1, sym_heredoc_body, - STATE(9287), 1, + ACTIONS(11776), 5, + sym__delimited_string_contents, + sym__string_literal_end, + sym_ignored_backslash, + sym_string_escape_sequence, + anon_sym_POUND_LBRACE, + [403536] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11778), 1, + anon_sym_DQUOTE, + STATE(9317), 1, + sym_heredoc_body, + STATE(9348), 1, + aux_sym_quoted_symbol_repeat1, + ACTIONS(11650), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [403560] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11780), 1, + sym__delimited_array_element_end, + STATE(9268), 1, aux_sym_percent_literal_array_word_repeat1, + STATE(9318), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11668), 3, + ACTIONS(11693), 3, sym__delimited_string_contents, sym_ignored_backslash, aux_sym_percent_literal_array_word_token1, - [400298] = 7, + [403582] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(11609), 1, - anon_sym_DASH_GT, - STATE(9243), 1, + ACTIONS(11782), 1, + anon_sym_DQUOTE, + STATE(9283), 1, + aux_sym_quoted_symbol_repeat1, + STATE(9319), 1, sym_heredoc_body, - STATE(9779), 1, - aux_sym_proc_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4745), 2, - anon_sym_RPAREN, - anon_sym_EQ_GT, - [400322] = 7, + ACTIONS(11650), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [403606] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, + ACTIONS(7997), 1, anon_sym_COMMA, - ACTIONS(11672), 1, - anon_sym_DASH_GT, - STATE(9244), 1, + STATE(9200), 1, + aux_sym_argument_list_no_parens_repeat1, + STATE(9320), 1, sym_heredoc_body, - STATE(10101), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4745), 2, + ACTIONS(5631), 3, sym__start_of_brace_block, + anon_sym_RPAREN, anon_sym_do, - [400346] = 7, + [403628] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(11580), 1, - anon_sym_elsif, - ACTIONS(11674), 1, - anon_sym_end, - STATE(9245), 1, + ACTIONS(11784), 1, + anon_sym_DQUOTE, + STATE(9269), 1, + aux_sym_quoted_symbol_repeat1, + STATE(9321), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10710), 2, - sym_elsif, - sym_else, - [400370] = 7, + ACTIONS(11650), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [403652] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, + ACTIONS(209), 1, sym__start_of_brace_block, - ACTIONS(5516), 1, + ACTIONS(5549), 1, anon_sym_do, - ACTIONS(11676), 1, + ACTIONS(11786), 1, aux_sym_proc_token1, - STATE(9246), 1, + STATE(9322), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2886), 2, + STATE(3103), 2, sym_do_end_block, sym_brace_block, - [400394] = 7, + [403676] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(857), 1, + ACTIONS(343), 1, sym__start_of_brace_block, - ACTIONS(7629), 1, + ACTIONS(6650), 1, anon_sym_do, - ACTIONS(11678), 1, + ACTIONS(11788), 1, aux_sym_proc_token1, - STATE(9247), 1, + STATE(9323), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6279), 2, + STATE(3434), 2, sym_do_end_block, sym_brace_block, - [400418] = 7, + [403700] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(11580), 1, - anon_sym_elsif, - ACTIONS(11680), 1, - anon_sym_end, - STATE(9248), 1, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(11790), 1, + sym_instance_var, + STATE(9324), 1, sym_heredoc_body, + STATE(11055), 1, + sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(11723), 2, - sym_elsif, - sym_else, - [400442] = 7, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + [403724] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(11682), 1, - sym_instance_var, - STATE(9249), 1, + ACTIONS(921), 1, + sym__start_of_brace_block, + ACTIONS(7714), 1, + anon_sym_do, + ACTIONS(11792), 1, + aux_sym_proc_token1, + STATE(9325), 1, sym_heredoc_body, - STATE(11789), 1, - sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - [400466] = 7, + STATE(6612), 2, + sym_do_end_block, + sym_brace_block, + [403748] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11684), 1, + ACTIONS(11794), 1, anon_sym_DQUOTE, - STATE(9250), 1, - sym_heredoc_body, - STATE(9256), 1, + STATE(9283), 1, aux_sym_quoted_symbol_repeat1, - ACTIONS(11543), 3, + STATE(9326), 1, + sym_heredoc_body, + ACTIONS(11650), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [400490] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(11686), 1, - sym_instance_var, - STATE(9251), 1, - sym_heredoc_body, - STATE(11260), 1, - sym_integer, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - [400514] = 6, + [403772] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9252), 1, + STATE(9327), 1, sym_heredoc_body, - ACTIONS(11539), 2, - anon_sym_POUND_LBRACE, - aux_sym_command_token1, - ACTIONS(11541), 3, + ACTIONS(11660), 2, sym_ignored_backslash, - sym_string_escape_sequence, - anon_sym_BQUOTE2, - [400536] = 7, + sym_regex_escape_sequence, + ACTIONS(11658), 3, + sym__delimited_string_contents, + sym__percent_literal_end, + anon_sym_POUND_LBRACE, + [403794] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(471), 1, + ACTIONS(479), 1, sym__start_of_brace_block, - ACTIONS(6828), 1, + ACTIONS(6865), 1, anon_sym_do, - ACTIONS(11688), 1, + ACTIONS(11796), 1, aux_sym_proc_token1, - STATE(9253), 1, + STATE(9328), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4850), 2, + STATE(4612), 2, sym_do_end_block, sym_brace_block, - [400560] = 7, + [403818] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7101), 1, + sym__constant_segment, + ACTIONS(7103), 1, + anon_sym_COLON_COLON, + ACTIONS(11798), 1, + sym_self, + STATE(7929), 1, + sym_constant, + STATE(8072), 1, + sym_generic_instance_type, + STATE(9329), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [403844] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(203), 1, + ACTIONS(393), 1, sym__start_of_brace_block, - ACTIONS(5514), 1, + ACTIONS(6664), 1, anon_sym_do, - ACTIONS(11690), 1, + ACTIONS(11800), 1, aux_sym_proc_token1, - STATE(9254), 1, + STATE(9330), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2600), 2, + STATE(4066), 2, sym_do_end_block, sym_brace_block, - [400584] = 7, + [403868] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11692), 1, - anon_sym_DQUOTE, - STATE(9255), 1, + STATE(9331), 1, sym_heredoc_body, - STATE(9290), 1, - aux_sym_quoted_symbol_repeat1, - ACTIONS(11543), 3, + ACTIONS(11804), 2, + anon_sym_POUND_LBRACE, + aux_sym_command_token1, + ACTIONS(11802), 3, sym_ignored_backslash, sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [400608] = 6, + anon_sym_BQUOTE2, + [403890] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11806), 1, + anon_sym_end, + STATE(9332), 1, + sym_heredoc_body, + STATE(9366), 1, + aux_sym_annotation_def_repeat1, + STATE(10043), 1, + sym__terminator, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(11724), 2, + sym__line_break, + anon_sym_SEMI, + [403914] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7101), 1, + sym__constant_segment, + ACTIONS(7103), 1, + anon_sym_COLON_COLON, + ACTIONS(11808), 1, + sym_self, + STATE(7940), 1, + sym_constant, + STATE(8067), 1, + sym_generic_instance_type, + STATE(9333), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [403940] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11697), 1, + ACTIONS(11810), 1, anon_sym_DQUOTE, - STATE(9256), 2, + STATE(9334), 1, sym_heredoc_body, + STATE(9357), 1, aux_sym_quoted_symbol_repeat1, - ACTIONS(11694), 3, + ACTIONS(11650), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [400630] = 7, + [403964] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(591), 1, - sym__start_of_brace_block, - ACTIONS(6798), 1, - anon_sym_do, - ACTIONS(11699), 1, + ACTIONS(11814), 1, + anon_sym_RPAREN, + ACTIONS(11816), 1, aux_sym_proc_token1, - STATE(9257), 1, + STATE(9335), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3779), 2, - sym_do_end_block, - sym_brace_block, - [400654] = 7, + ACTIONS(11812), 3, + sym_identifier, + sym_instance_var, + sym_class_var, + [403986] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(11818), 1, + sym_instance_var, + STATE(9336), 1, + sym_heredoc_body, + STATE(11136), 1, + sym_integer, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + [404010] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(11664), 1, + anon_sym_elsif, + ACTIONS(11820), 1, + anon_sym_end, + STATE(9337), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(11220), 2, + sym_elsif, + sym_else, + [404034] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11701), 1, + ACTIONS(11822), 1, anon_sym_DQUOTE, - STATE(9256), 1, + STATE(9282), 1, aux_sym_quoted_symbol_repeat1, - STATE(9258), 1, + STATE(9338), 1, sym_heredoc_body, - ACTIONS(11543), 3, + ACTIONS(11650), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [400678] = 7, + [404058] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, + ACTIONS(1093), 1, sym__start_of_brace_block, - ACTIONS(7837), 1, + ACTIONS(7841), 1, anon_sym_do, - ACTIONS(11703), 1, + ACTIONS(11824), 1, aux_sym_proc_token1, - STATE(9259), 1, + STATE(9339), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6003), 2, + STATE(6099), 2, sym_do_end_block, sym_brace_block, - [400702] = 7, + [404082] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11705), 1, + ACTIONS(11826), 1, anon_sym_DQUOTE, - STATE(9258), 1, + STATE(9283), 1, aux_sym_quoted_symbol_repeat1, - STATE(9260), 1, + STATE(9340), 1, sym_heredoc_body, - ACTIONS(11543), 3, + ACTIONS(11650), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [400726] = 7, + [404106] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(209), 1, + sym__start_of_brace_block, + ACTIONS(5549), 1, + anon_sym_do, + ACTIONS(11828), 1, + aux_sym_proc_token1, + STATE(9341), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(2879), 2, + sym_do_end_block, + sym_brace_block, + [404130] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9937), 1, + ACTIONS(10000), 1, aux_sym_integer_token2, - ACTIONS(11707), 1, + ACTIONS(11830), 1, sym_instance_var, - STATE(9261), 1, + STATE(9342), 1, sym_heredoc_body, - STATE(11349), 1, + STATE(10930), 1, sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, + ACTIONS(10008), 2, sym_unary_plus, sym_unary_minus, - [400750] = 4, + [404154] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9262), 1, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(11832), 1, + sym_instance_var, + STATE(9343), 1, sym_heredoc_body, + STATE(11317), 1, + sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6154), 5, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + [404178] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(661), 1, sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6805), 1, anon_sym_do, - [400768] = 7, + ACTIONS(11834), 1, + aux_sym_proc_token1, + STATE(9344), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(3762), 2, + sym_do_end_block, + sym_brace_block, + [404202] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11709), 1, + ACTIONS(11836), 1, anon_sym_DQUOTE, - STATE(9256), 1, + STATE(9319), 1, aux_sym_quoted_symbol_repeat1, - STATE(9263), 1, + STATE(9345), 1, sym_heredoc_body, - ACTIONS(11543), 3, + ACTIONS(11650), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [400792] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7939), 1, - anon_sym_COMMA, - STATE(9116), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(9264), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5585), 3, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_do, - [400814] = 7, + [404226] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1029), 1, - sym__start_of_brace_block, - ACTIONS(7816), 1, - anon_sym_do, - ACTIONS(11711), 1, - aux_sym_proc_token1, - STATE(9265), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + ACTIONS(11119), 1, + anon_sym_STAR, + STATE(9346), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6765), 2, - sym_do_end_block, - sym_brace_block, - [400838] = 7, + STATE(10486), 2, + sym_constant, + sym_type_param_splat, + [404250] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(641), 1, + ACTIONS(257), 1, sym__start_of_brace_block, - ACTIONS(6719), 1, + ACTIONS(5555), 1, anon_sym_do, - ACTIONS(11713), 1, + ACTIONS(11838), 1, aux_sym_proc_token1, - STATE(9266), 1, + STATE(9347), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4454), 2, + STATE(2714), 2, sym_do_end_block, sym_brace_block, - [400862] = 7, + [404274] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11715), 1, + ACTIONS(11840), 1, anon_sym_DQUOTE, - STATE(9192), 1, + STATE(9283), 1, aux_sym_quoted_symbol_repeat1, - STATE(9267), 1, + STATE(9348), 1, sym_heredoc_body, - ACTIONS(11543), 3, + ACTIONS(11650), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [400886] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7078), 1, - sym__constant_segment, - ACTIONS(7080), 1, - anon_sym_COLON_COLON, - ACTIONS(11717), 1, - sym_self, - STATE(7870), 1, - sym_constant, - STATE(8056), 1, - sym_generic_instance_type, - STATE(9268), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [400912] = 6, + [404298] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9269), 1, + STATE(9349), 1, sym_heredoc_body, - ACTIONS(11719), 2, + ACTIONS(11842), 2, sym_ignored_backslash, sym_regex_escape_sequence, - ACTIONS(11721), 3, + ACTIONS(11844), 3, sym__delimited_string_contents, sym__percent_literal_end, anon_sym_POUND_LBRACE, - [400934] = 7, + [404320] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11723), 1, + ACTIONS(11846), 1, anon_sym_DQUOTE, - STATE(9256), 1, - aux_sym_quoted_symbol_repeat1, - STATE(9270), 1, + STATE(9350), 1, sym_heredoc_body, - ACTIONS(11543), 3, + STATE(9382), 1, + aux_sym_quoted_symbol_repeat1, + ACTIONS(11650), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [400958] = 5, + [404344] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11727), 1, - anon_sym_COMMA, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(11664), 1, + anon_sym_elsif, + ACTIONS(11848), 1, + anon_sym_end, + STATE(9351), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9271), 2, - sym_heredoc_body, - aux_sym_in_repeat1, - ACTIONS(11725), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_then, - [400978] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + STATE(11261), 2, + sym_elsif, + sym_else, + [404368] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9272), 1, + ACTIONS(661), 1, + sym__start_of_brace_block, + ACTIONS(6805), 1, + anon_sym_do, + ACTIONS(11850), 1, + aux_sym_proc_token1, + STATE(9352), 1, sym_heredoc_body, - ACTIONS(11730), 5, - sym_heredoc_content, - sym_heredoc_end, - sym_ignored_backslash, - sym_string_escape_sequence, - anon_sym_POUND_LBRACE, - [400998] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(5), 2, sym__line_continuation, + sym_comment, + STATE(3732), 2, + sym_do_end_block, + sym_brace_block, + [404392] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11732), 1, - anon_sym_DQUOTE, - STATE(9256), 1, - aux_sym_quoted_symbol_repeat1, - STATE(9273), 1, - sym_heredoc_body, - ACTIONS(11543), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [401022] = 8, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7078), 1, - sym__constant_segment, - ACTIONS(7080), 1, - anon_sym_COLON_COLON, - ACTIONS(11734), 1, - sym_self, - STATE(7900), 1, - sym_constant, - STATE(7946), 1, - sym_generic_instance_type, - STATE(9274), 1, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(11852), 1, + anon_sym_DASH_GT, + STATE(9353), 1, sym_heredoc_body, + STATE(10090), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [401048] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + ACTIONS(4785), 2, + anon_sym_RPAREN, + anon_sym_EQ, + [404416] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11736), 1, - anon_sym_DQUOTE, - STATE(9217), 1, - aux_sym_quoted_symbol_repeat1, - STATE(9275), 1, + ACTIONS(527), 1, + sym__start_of_brace_block, + ACTIONS(6874), 1, + anon_sym_do, + ACTIONS(11854), 1, + aux_sym_proc_token1, + STATE(9354), 1, sym_heredoc_body, - ACTIONS(11543), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [401072] = 7, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(4006), 2, + sym_do_end_block, + sym_brace_block, + [404440] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(11580), 1, - anon_sym_elsif, - ACTIONS(11738), 1, - anon_sym_end, - STATE(9276), 1, + ACTIONS(747), 1, + sym__start_of_brace_block, + ACTIONS(7601), 1, + anon_sym_do, + ACTIONS(11856), 1, + aux_sym_proc_token1, + STATE(9355), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(11652), 2, - sym_elsif, - sym_else, - [401096] = 7, + STATE(6102), 2, + sym_do_end_block, + sym_brace_block, + [404464] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9937), 1, + ACTIONS(10000), 1, aux_sym_integer_token2, - ACTIONS(11740), 1, + ACTIONS(11858), 1, sym_instance_var, - STATE(9277), 1, + STATE(9356), 1, sym_heredoc_body, - STATE(11681), 1, + STATE(11684), 1, sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, + ACTIONS(10008), 2, sym_unary_plus, sym_unary_minus, - [401120] = 5, + [404488] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9278), 1, + ACTIONS(11860), 1, + anon_sym_DQUOTE, + STATE(9283), 1, + aux_sym_quoted_symbol_repeat1, + STATE(9357), 1, sym_heredoc_body, - ACTIONS(11541), 5, - sym__delimited_string_contents, - sym__percent_literal_end, + ACTIONS(11650), 3, sym_ignored_backslash, sym_string_escape_sequence, - anon_sym_POUND_LBRACE, - [401140] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11742), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(9279), 2, - sym_heredoc_body, - aux_sym_array_repeat1, - ACTIONS(8425), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_RBRACK, - [401160] = 7, + aux_sym_quoted_symbol_token1, + [404512] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11745), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(11664), 1, + anon_sym_elsif, + ACTIONS(11862), 1, anon_sym_end, - STATE(9280), 1, - sym_heredoc_body, - STATE(9314), 1, - aux_sym_annotation_def_repeat1, - STATE(9813), 1, - sym__terminator, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(11554), 2, - sym__line_break, - anon_sym_SEMI, - [401184] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11747), 1, - anon_sym_COMMA, - STATE(9116), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(9281), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5562), 3, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_do, - [401206] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9282), 1, + STATE(9358), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6266), 5, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_do, - [401224] = 7, + STATE(10914), 2, + sym_elsif, + sym_else, + [404536] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(783), 1, + ACTIONS(1093), 1, sym__start_of_brace_block, - ACTIONS(7557), 1, + ACTIONS(7841), 1, anon_sym_do, - ACTIONS(11749), 1, + ACTIONS(11864), 1, aux_sym_proc_token1, - STATE(9283), 1, + STATE(9359), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5805), 2, + STATE(5985), 2, sym_do_end_block, sym_brace_block, - [401248] = 7, + [404560] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(857), 1, + ACTIONS(603), 1, sym__start_of_brace_block, - ACTIONS(7629), 1, + ACTIONS(6824), 1, anon_sym_do, - ACTIONS(11751), 1, + ACTIONS(11866), 1, aux_sym_proc_token1, - STATE(9284), 1, + STATE(9360), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6308), 2, + STATE(4600), 2, sym_do_end_block, sym_brace_block, - [401272] = 7, + [404584] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11753), 1, + ACTIONS(11868), 1, anon_sym_end, - STATE(9188), 1, + STATE(9293), 1, aux_sym_annotation_def_repeat1, - STATE(9285), 1, + STATE(9361), 1, sym_heredoc_body, - STATE(9813), 1, + STATE(10043), 1, sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11554), 2, + ACTIONS(11724), 2, sym__line_break, anon_sym_SEMI, - [401296] = 4, + [404608] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9286), 1, + STATE(9362), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5832), 5, + ACTIONS(5827), 5, sym__start_of_brace_block, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_do, - [401314] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11758), 1, - sym__delimited_array_element_end, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(9287), 2, - sym_heredoc_body, - aux_sym_percent_literal_array_word_repeat1, - ACTIONS(11755), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - aux_sym_percent_literal_array_word_token1, - [401334] = 7, + [404626] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11760), 1, + ACTIONS(11870), 1, anon_sym_DQUOTE, - STATE(9256), 1, + STATE(9283), 1, aux_sym_quoted_symbol_repeat1, - STATE(9288), 1, + STATE(9363), 1, sym_heredoc_body, - ACTIONS(11543), 3, + ACTIONS(11650), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [401358] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(11762), 1, - sym_instance_var, - STATE(9289), 1, - sym_heredoc_body, - STATE(10894), 1, - sym_integer, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - [401382] = 7, + [404650] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11764), 1, - anon_sym_DQUOTE, - STATE(9256), 1, - aux_sym_quoted_symbol_repeat1, - STATE(9290), 1, + STATE(9364), 1, sym_heredoc_body, - ACTIONS(11543), 3, + ACTIONS(11658), 5, + sym_heredoc_content, + sym_heredoc_end, sym_ignored_backslash, sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [401406] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9291), 1, - sym_heredoc_body, - ACTIONS(11768), 2, anon_sym_POUND_LBRACE, - aux_sym_command_token1, - ACTIONS(11766), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - anon_sym_BQUOTE2, - [401428] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [404670] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11770), 1, - anon_sym_DQUOTE, - STATE(9210), 1, - aux_sym_quoted_symbol_repeat1, - STATE(9292), 1, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(11691), 1, + anon_sym_DASH_GT, + STATE(9365), 1, sym_heredoc_body, - ACTIONS(11543), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [401452] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + STATE(9879), 1, + aux_sym_proc_type_repeat1, + ACTIONS(5), 2, sym__line_continuation, + sym_comment, + ACTIONS(4785), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [404694] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11772), 1, - anon_sym_DQUOTE, - STATE(9270), 1, - aux_sym_quoted_symbol_repeat1, - STATE(9293), 1, - sym_heredoc_body, - ACTIONS(11543), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [401476] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9294), 1, + ACTIONS(11872), 1, + anon_sym_end, + STATE(9265), 1, + aux_sym_annotation_def_repeat1, + STATE(9366), 1, sym_heredoc_body, + STATE(10043), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6302), 5, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_do, - [401494] = 7, + ACTIONS(11724), 2, + sym__line_break, + anon_sym_SEMI, + [404718] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(11774), 1, - anon_sym_DASH_GT, - STATE(9295), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(11664), 1, + anon_sym_elsif, + ACTIONS(11874), 1, + anon_sym_end, + STATE(9367), 1, sym_heredoc_body, - STATE(10160), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4745), 2, - anon_sym_RPAREN, - anon_sym_EQ, - [401518] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + STATE(11659), 2, + sym_elsif, + sym_else, + [404742] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11776), 1, - anon_sym_DQUOTE, - STATE(9288), 1, - aux_sym_quoted_symbol_repeat1, - STATE(9296), 1, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(11876), 1, + sym_instance_var, + STATE(9368), 1, sym_heredoc_body, - ACTIONS(11543), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [401542] = 7, + STATE(11893), 1, + sym_integer, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + [404766] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(11580), 1, + ACTIONS(11664), 1, anon_sym_elsif, - ACTIONS(11778), 1, + ACTIONS(11878), 1, anon_sym_end, - STATE(9297), 1, + STATE(9369), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(11075), 2, + STATE(10607), 2, sym_elsif, sym_else, - [401566] = 7, + [404790] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(339), 1, + ACTIONS(603), 1, sym__start_of_brace_block, - ACTIONS(6610), 1, + ACTIONS(6824), 1, anon_sym_do, - ACTIONS(11780), 1, + ACTIONS(11880), 1, aux_sym_proc_token1, - STATE(9298), 1, + STATE(9370), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4104), 2, + STATE(4340), 2, sym_do_end_block, sym_brace_block, - [401590] = 7, + [404814] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(11580), 1, - anon_sym_elsif, - ACTIONS(11782), 1, - anon_sym_end, - STATE(9299), 1, + ACTIONS(343), 1, + sym__start_of_brace_block, + ACTIONS(6650), 1, + anon_sym_do, + ACTIONS(11882), 1, + aux_sym_proc_token1, + STATE(9371), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(11525), 2, - sym_elsif, - sym_else, - [401614] = 7, + STATE(3499), 2, + sym_do_end_block, + sym_brace_block, + [404838] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(733), 1, - sym__start_of_brace_block, - ACTIONS(7569), 1, - anon_sym_do, - ACTIONS(11784), 1, - aux_sym_proc_token1, - STATE(9300), 1, + ACTIONS(11884), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(9372), 2, + sym_heredoc_body, + aux_sym_array_repeat1, + ACTIONS(8435), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + [404858] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11887), 1, + anon_sym_DQUOTE, + STATE(9294), 1, + aux_sym_quoted_symbol_repeat1, + STATE(9373), 1, + sym_heredoc_body, + ACTIONS(11650), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [404882] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11889), 1, + anon_sym_DQUOTE, + STATE(9261), 1, + aux_sym_quoted_symbol_repeat1, + STATE(9374), 1, + sym_heredoc_body, + ACTIONS(11650), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [404906] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(11664), 1, + anon_sym_elsif, + ACTIONS(11891), 1, + anon_sym_end, + STATE(9375), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5267), 2, - sym_do_end_block, - sym_brace_block, - [401638] = 7, + STATE(12045), 2, + sym_elsif, + sym_else, + [404930] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(471), 1, - sym__start_of_brace_block, - ACTIONS(6828), 1, - anon_sym_do, - ACTIONS(11786), 1, - aux_sym_proc_token1, - STATE(9301), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(11664), 1, + anon_sym_elsif, + ACTIONS(11893), 1, + anon_sym_end, + STATE(9376), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4786), 2, - sym_do_end_block, - sym_brace_block, - [401662] = 7, + STATE(10821), 2, + sym_elsif, + sym_else, + [404954] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, + ACTIONS(11895), 1, + anon_sym_DQUOTE, + STATE(9363), 1, + aux_sym_quoted_symbol_repeat1, + STATE(9377), 1, + sym_heredoc_body, + ACTIONS(11650), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [404978] = 8, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8028), 1, sym__constant_segment, - ACTIONS(8040), 1, + ACTIONS(8030), 1, anon_sym_COLON_COLON, - ACTIONS(11115), 1, - anon_sym_STAR, - STATE(9302), 1, + ACTIONS(11897), 1, + sym_self, + STATE(8439), 1, + sym_constant, + STATE(8572), 1, + sym_generic_instance_type, + STATE(9378), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10390), 2, - sym_constant, - sym_type_param_splat, - [401686] = 7, + [405004] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(955), 1, + ACTIONS(257), 1, sym__start_of_brace_block, - ACTIONS(7645), 1, + ACTIONS(5555), 1, anon_sym_do, - ACTIONS(11788), 1, + ACTIONS(11899), 1, aux_sym_proc_token1, - STATE(9303), 1, + STATE(9379), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5515), 2, + STATE(2672), 2, sym_do_end_block, sym_brace_block, - [401710] = 7, + [405028] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(519), 1, + ACTIONS(393), 1, sym__start_of_brace_block, - ACTIONS(6834), 1, + ACTIONS(6664), 1, anon_sym_do, - ACTIONS(11790), 1, + ACTIONS(11901), 1, aux_sym_proc_token1, - STATE(9304), 1, + STATE(9380), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4161), 2, + STATE(4032), 2, sym_do_end_block, sym_brace_block, - [401734] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9305), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5708), 5, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_do, - [401752] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7939), 1, - anon_sym_COMMA, - STATE(9281), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(9306), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5585), 3, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_do, - [401774] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(11792), 1, - sym_instance_var, - STATE(9307), 1, - sym_heredoc_body, - STATE(11134), 1, - sym_integer, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - [401798] = 7, + [405052] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(11580), 1, + ACTIONS(11664), 1, anon_sym_elsif, - ACTIONS(11794), 1, + ACTIONS(11903), 1, anon_sym_end, - STATE(9308), 1, + STATE(9381), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(11111), 2, + STATE(10730), 2, sym_elsif, sym_else, - [401822] = 7, + [405076] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11796), 1, + ACTIONS(11905), 1, anon_sym_DQUOTE, - STATE(9232), 1, + STATE(9283), 1, aux_sym_quoted_symbol_repeat1, - STATE(9309), 1, + STATE(9382), 1, sym_heredoc_body, - ACTIONS(11543), 3, + ACTIONS(11650), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [401846] = 7, + [405100] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9937), 1, - aux_sym_integer_token2, - ACTIONS(11798), 1, - sym_instance_var, - STATE(9310), 1, + ACTIONS(7691), 1, + sym__constant_segment, + ACTIONS(7693), 1, + anon_sym_COLON_COLON, + ACTIONS(11907), 1, + sym_self, + STATE(8167), 1, + sym_constant, + STATE(8280), 1, + sym_generic_instance_type, + STATE(9383), 1, sym_heredoc_body, - STATE(11089), 1, - sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(9945), 2, - sym_unary_plus, - sym_unary_minus, - [401870] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [405126] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9311), 1, + ACTIONS(7691), 1, + sym__constant_segment, + ACTIONS(7693), 1, + anon_sym_COLON_COLON, + ACTIONS(11909), 1, + sym_self, + STATE(8171), 1, + sym_constant, + STATE(8282), 1, + sym_generic_instance_type, + STATE(9384), 1, sym_heredoc_body, - ACTIONS(11541), 5, - sym__delimited_string_contents, - sym__string_literal_end, - sym_ignored_backslash, - sym_string_escape_sequence, - anon_sym_POUND_LBRACE, - [401890] = 6, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [405152] = 8, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7935), 1, - anon_sym_COMMA, - STATE(9264), 1, - aux_sym_argument_list_no_parens_repeat1, - STATE(9312), 1, + ACTIONS(8028), 1, + sym__constant_segment, + ACTIONS(8030), 1, + anon_sym_COLON_COLON, + ACTIONS(11911), 1, + sym_self, + STATE(8443), 1, + sym_constant, + STATE(8598), 1, + sym_generic_instance_type, + STATE(9385), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5570), 3, - sym__start_of_brace_block, - anon_sym_RPAREN, - anon_sym_do, - [401912] = 7, + [405178] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, + ACTIONS(7398), 1, anon_sym_else, - ACTIONS(11580), 1, + ACTIONS(11664), 1, anon_sym_elsif, - ACTIONS(11800), 1, + ACTIONS(11913), 1, anon_sym_end, - STATE(9313), 1, + STATE(9386), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(11083), 2, + STATE(11999), 2, sym_elsif, sym_else, - [401936] = 7, + [405202] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11802), 1, - anon_sym_end, - STATE(9188), 1, - aux_sym_annotation_def_repeat1, - STATE(9314), 1, + ACTIONS(10000), 1, + aux_sym_integer_token2, + ACTIONS(11915), 1, + sym_instance_var, + STATE(9387), 1, sym_heredoc_body, - STATE(9813), 1, - sym__terminator, + STATE(10874), 1, + sym_integer, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11554), 2, - sym__line_break, - anon_sym_SEMI, - [401960] = 5, + ACTIONS(10008), 2, + sym_unary_plus, + sym_unary_minus, + [405226] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9315), 1, + ACTIONS(11917), 1, + anon_sym_DQUOTE, + STATE(9283), 1, + aux_sym_quoted_symbol_repeat1, + STATE(9388), 1, + sym_heredoc_body, + ACTIONS(11650), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [405250] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9389), 1, sym_heredoc_body, - ACTIONS(11804), 5, + ACTIONS(11658), 5, sym__delimited_string_contents, sym__percent_literal_end, sym_ignored_backslash, sym_string_escape_sequence, anon_sym_POUND_LBRACE, - [401980] = 6, + [405270] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11806), 1, - sym__delimited_array_element_end, - STATE(9242), 1, - aux_sym_percent_literal_array_word_repeat1, - STATE(9316), 1, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(11919), 1, + anon_sym_DASH_GT, + STATE(9390), 1, sym_heredoc_body, + STATE(9815), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11668), 3, - sym__delimited_string_contents, - sym_ignored_backslash, - aux_sym_percent_literal_array_word_token1, - [402002] = 7, + ACTIONS(4785), 2, + sym__start_of_brace_block, + anon_sym_do, + [405294] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11808), 1, + ACTIONS(11921), 1, anon_sym_DQUOTE, - STATE(9250), 1, + STATE(9283), 1, aux_sym_quoted_symbol_repeat1, - STATE(9317), 1, + STATE(9391), 1, sym_heredoc_body, - ACTIONS(11543), 3, + ACTIONS(11650), 3, sym_ignored_backslash, sym_string_escape_sequence, aux_sym_quoted_symbol_token1, - [402026] = 7, + [405318] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(11580), 1, - anon_sym_elsif, - ACTIONS(11810), 1, + ACTIONS(11923), 1, anon_sym_end, - STATE(9318), 1, + STATE(9308), 1, + aux_sym_annotation_def_repeat1, + STATE(9392), 1, sym_heredoc_body, + STATE(10043), 1, + sym__terminator, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10821), 2, - sym_elsif, - sym_else, - [402050] = 7, + ACTIONS(11724), 2, + sym__line_break, + anon_sym_SEMI, + [405342] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1029), 1, - sym__start_of_brace_block, - ACTIONS(7816), 1, - anon_sym_do, - ACTIONS(11812), 1, - aux_sym_proc_token1, - STATE(9319), 1, + ACTIONS(11925), 1, + anon_sym_DQUOTE, + STATE(9388), 1, + aux_sym_quoted_symbol_repeat1, + STATE(9393), 1, + sym_heredoc_body, + ACTIONS(11650), 3, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + [405366] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(4785), 1, + anon_sym_RPAREN, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(11691), 1, + anon_sym_DASH_GT, + STATE(9394), 1, sym_heredoc_body, + STATE(9588), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6649), 2, - sym_do_end_block, - sym_brace_block, - [402074] = 7, + [405389] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(519), 1, + ACTIONS(527), 1, sym__start_of_brace_block, - ACTIONS(6834), 1, + ACTIONS(6874), 1, anon_sym_do, - ACTIONS(11814), 1, - aux_sym_proc_token1, - STATE(9320), 1, + STATE(9395), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4143), 2, + STATE(4016), 2, sym_do_end_block, sym_brace_block, - [402098] = 7, + [405410] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(591), 1, + ACTIONS(209), 1, sym__start_of_brace_block, - ACTIONS(6798), 1, + ACTIONS(5549), 1, anon_sym_do, - ACTIONS(11816), 1, - aux_sym_proc_token1, - STATE(9321), 1, + STATE(9396), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3691), 2, + STATE(3105), 2, sym_do_end_block, sym_brace_block, - [402122] = 7, + [405431] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(11580), 1, - anon_sym_elsif, - ACTIONS(11818), 1, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(11927), 1, anon_sym_end, - STATE(9322), 1, + STATE(9397), 1, sym_heredoc_body, + STATE(9456), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10531), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10609), 2, - sym_elsif, - sym_else, - [402146] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11820), 1, - anon_sym_DQUOTE, - STATE(9186), 1, - aux_sym_quoted_symbol_repeat1, - STATE(9323), 1, - sym_heredoc_body, - ACTIONS(11543), 3, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - [402170] = 4, + [405454] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9324), 1, + ACTIONS(11931), 1, + aux_sym__base_method_def_token1, + ACTIONS(11933), 1, + anon_sym_EQ, + STATE(9398), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11599), 4, - sym__line_break, - anon_sym_SEMI, + ACTIONS(11929), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_then, - [402187] = 7, + [405475] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(11822), 1, - anon_sym_end, - STATE(9325), 1, + STATE(9399), 1, sym_heredoc_body, - STATE(9375), 1, - aux_sym_exhaustive_case_repeat1, - STATE(10443), 1, - sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [402210] = 4, + ACTIONS(6092), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [405492] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9326), 1, + ACTIONS(795), 1, + sym__start_of_brace_block, + ACTIONS(7603), 1, + anon_sym_do, + STATE(9400), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4595), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_EQ, - [402227] = 6, + STATE(5424), 2, + sym_do_end_block, + sym_brace_block, + [405513] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(519), 1, + ACTIONS(393), 1, sym__start_of_brace_block, - ACTIONS(6834), 1, + ACTIONS(6664), 1, anon_sym_do, - STATE(9327), 1, + STATE(9401), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3911), 2, + STATE(4091), 2, sym_do_end_block, sym_brace_block, - [402248] = 6, + [405534] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11826), 1, - aux_sym__base_method_def_token1, - ACTIONS(11828), 1, - anon_sym_EQ, - STATE(9328), 1, + ACTIONS(527), 1, + sym__start_of_brace_block, + ACTIONS(6874), 1, + anon_sym_do, + STATE(9402), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11824), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [402269] = 6, + STATE(4244), 2, + sym_do_end_block, + sym_brace_block, + [405555] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(519), 1, + ACTIONS(527), 1, sym__start_of_brace_block, - ACTIONS(6834), 1, + ACTIONS(6874), 1, anon_sym_do, - STATE(9329), 1, + STATE(9403), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3961), 2, + STATE(4253), 2, sym_do_end_block, sym_brace_block, - [402290] = 7, + [405576] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11830), 1, - sym__percent_literal_end, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - STATE(9330), 1, + STATE(9404), 1, sym_heredoc_body, - STATE(9430), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10481), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [402313] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9331), 1, - sym_heredoc_body, - ACTIONS(11834), 4, - sym_ignored_backslash, - sym_string_escape_sequence, - aux_sym_quoted_symbol_token1, - anon_sym_DQUOTE, - [402332] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(203), 1, + ACTIONS(4640), 4, sym__start_of_brace_block, - ACTIONS(5514), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_do, - STATE(9332), 1, + [405593] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(11935), 1, + anon_sym_end, + STATE(9405), 1, sym_heredoc_body, + STATE(9456), 1, + aux_sym_exhaustive_case_repeat1, + STATE(10531), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2773), 2, - sym_do_end_block, - sym_brace_block, - [402353] = 7, + [405616] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(11836), 1, + ACTIONS(11937), 1, sym__percent_literal_end, - STATE(9333), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + STATE(9406), 1, sym_heredoc_body, - STATE(9336), 1, + STATE(9409), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10481), 1, + STATE(10553), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [402376] = 7, + [405639] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, + ACTIONS(11939), 1, sym__delimited_array_element_start, - ACTIONS(11838), 1, + ACTIONS(11941), 1, sym__percent_literal_end, - STATE(9334), 1, + STATE(9407), 1, sym_heredoc_body, - STATE(9337), 1, + STATE(9410), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10433), 1, + STATE(10462), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [402399] = 5, + [405662] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11842), 1, - anon_sym_COMMA, + STATE(9408), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11840), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(9335), 2, - sym_heredoc_body, - aux_sym_named_tuple_type_repeat1, - [402418] = 7, + ACTIONS(6281), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [405679] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, + ACTIONS(11939), 1, sym__delimited_array_element_start, - ACTIONS(11845), 1, + ACTIONS(11943), 1, sym__percent_literal_end, - STATE(9336), 1, + STATE(9409), 1, sym_heredoc_body, - STATE(9459), 1, + STATE(9438), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10481), 1, + STATE(10553), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [402441] = 7, + [405702] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, + ACTIONS(11939), 1, sym__delimited_array_element_start, - ACTIONS(11847), 1, + ACTIONS(11945), 1, sym__percent_literal_end, - STATE(9337), 1, + STATE(9410), 1, sym_heredoc_body, - STATE(9462), 1, + STATE(9487), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10433), 1, + STATE(10462), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [402464] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(319), 1, - sym_constant, - STATE(335), 1, - sym_generic_type, - STATE(9338), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [402487] = 4, + [405725] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9339), 1, + ACTIONS(969), 1, + sym__start_of_brace_block, + ACTIONS(7758), 1, + anon_sym_do, + STATE(9411), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11849), 4, - sym__regular_rescue_keyword, - sym__regular_ensure_keyword, - anon_sym_end, - anon_sym_else, - [402504] = 7, + STATE(5604), 2, + sym_do_end_block, + sym_brace_block, + [405746] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7381), 1, + ACTIONS(7402), 1, anon_sym_in, - ACTIONS(11851), 1, + ACTIONS(11947), 1, anon_sym_end, - STATE(9340), 1, + STATE(9412), 1, sym_heredoc_body, - STATE(9375), 1, + STATE(9456), 1, aux_sym_exhaustive_case_repeat1, - STATE(10443), 1, + STATE(10531), 1, sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [402527] = 6, + [405769] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(955), 1, + ACTIONS(795), 1, sym__start_of_brace_block, - ACTIONS(7645), 1, + ACTIONS(7603), 1, anon_sym_do, - STATE(9341), 1, + STATE(9413), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5486), 2, + STATE(5178), 2, sym_do_end_block, sym_brace_block, - [402548] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(11853), 1, - anon_sym_end, - STATE(9342), 1, - sym_heredoc_body, - STATE(9375), 1, - aux_sym_exhaustive_case_repeat1, - STATE(10443), 1, - sym_in, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [402571] = 6, + [405790] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(955), 1, + ACTIONS(969), 1, sym__start_of_brace_block, - ACTIONS(7645), 1, + ACTIONS(7758), 1, anon_sym_do, - STATE(9343), 1, + STATE(9414), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5598), 2, + STATE(5697), 2, sym_do_end_block, sym_brace_block, - [402592] = 6, + [405811] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(955), 1, + ACTIONS(969), 1, sym__start_of_brace_block, - ACTIONS(7645), 1, + ACTIONS(7758), 1, anon_sym_do, - STATE(9344), 1, + STATE(9415), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5652), 2, + STATE(5740), 2, sym_do_end_block, sym_brace_block, - [402613] = 6, + [405832] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(203), 1, + ACTIONS(795), 1, sym__start_of_brace_block, - ACTIONS(5514), 1, + ACTIONS(7603), 1, anon_sym_do, - STATE(9345), 1, + STATE(9416), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2596), 2, + STATE(5285), 2, sym_do_end_block, sym_brace_block, - [402634] = 7, + [405853] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(11855), 1, - sym__percent_literal_end, - STATE(9346), 1, + ACTIONS(11276), 1, + aux_sym__base_method_def_token1, + ACTIONS(11278), 1, + anon_sym_EQ, + STATE(9417), 1, sym_heredoc_body, - STATE(9474), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10433), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [402657] = 6, + ACTIONS(11274), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [405874] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(203), 1, + ACTIONS(393), 1, sym__start_of_brace_block, - ACTIONS(5514), 1, + ACTIONS(6664), 1, anon_sym_do, - STATE(9347), 1, + STATE(9418), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(2700), 2, + STATE(4118), 2, sym_do_end_block, sym_brace_block, - [402678] = 4, + [405895] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9348), 1, + STATE(9419), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11857), 4, + ACTIONS(6329), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [402695] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(11859), 1, - anon_sym_end, - STATE(9349), 1, - sym_heredoc_body, - STATE(9375), 1, - aux_sym_exhaustive_case_repeat1, - STATE(10443), 1, - sym_in, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [402718] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(641), 1, - sym__start_of_brace_block, - ACTIONS(6719), 1, - anon_sym_do, - STATE(9350), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(4455), 2, - sym_do_end_block, - sym_brace_block, - [402739] = 4, + [405912] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9351), 1, + STATE(9420), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11861), 4, + ACTIONS(6333), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [402756] = 7, + [405929] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(11863), 1, - sym__percent_literal_end, - STATE(9352), 1, + STATE(9421), 1, sym_heredoc_body, - STATE(9356), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10481), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [402779] = 7, + ACTIONS(6337), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [405946] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(11865), 1, - sym__percent_literal_end, - STATE(9353), 1, + STATE(9422), 1, sym_heredoc_body, - STATE(9357), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10433), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [402802] = 4, + ACTIONS(6341), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [405963] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9354), 1, + STATE(9423), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11867), 4, + ACTIONS(6349), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [402819] = 4, + [405980] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9355), 1, + STATE(9424), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6402), 4, + ACTIONS(6353), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [402836] = 7, + [405997] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, + ACTIONS(11939), 1, sym__delimited_array_element_start, - ACTIONS(11869), 1, + ACTIONS(11949), 1, sym__percent_literal_end, - STATE(9356), 1, + STATE(9425), 1, sym_heredoc_body, - STATE(9459), 1, + STATE(9430), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10481), 1, + STATE(10553), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [402859] = 7, + [406020] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, + ACTIONS(11939), 1, sym__delimited_array_element_start, - ACTIONS(11871), 1, + ACTIONS(11951), 1, sym__percent_literal_end, - STATE(9357), 1, + STATE(9426), 1, sym_heredoc_body, - STATE(9462), 1, + STATE(9432), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10433), 1, + STATE(10462), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [402882] = 4, + [406043] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9358), 1, + STATE(9427), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(4745), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ_GT, - [402899] = 4, + ACTIONS(11953), 4, + sym_ignored_backslash, + sym_string_escape_sequence, + aux_sym_quoted_symbol_token1, + anon_sym_DQUOTE, + [406062] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9359), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(299), 1, + sym_constant, + STATE(341), 1, + sym_generic_type, + STATE(9428), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11873), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [402916] = 4, + [406085] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9360), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(307), 1, + sym_constant, + STATE(349), 1, + sym_generic_type, + STATE(9429), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5808), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [402933] = 4, + [406108] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9361), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(11955), 1, + sym__percent_literal_end, + STATE(9430), 1, sym_heredoc_body, + STATE(9438), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10553), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5816), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [402950] = 4, + [406131] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9362), 1, + STATE(9431), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5844), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [402967] = 7, + ACTIONS(11957), 4, + sym__regular_rescue_keyword, + sym__regular_ensure_keyword, + anon_sym_end, + anon_sym_else, + [406148] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(364), 1, - sym_constant, - STATE(422), 1, - sym_generic_instance_type, - STATE(9363), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(11959), 1, + sym__percent_literal_end, + STATE(9432), 1, sym_heredoc_body, + STATE(9487), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10462), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [402990] = 6, + [406171] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(339), 1, - sym__start_of_brace_block, - ACTIONS(6610), 1, - anon_sym_do, - STATE(9364), 1, + ACTIONS(4785), 1, + anon_sym_RPAREN, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(11691), 1, + anon_sym_DASH_GT, + STATE(9433), 1, sym_heredoc_body, + STATE(9515), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4110), 2, - sym_do_end_block, - sym_brace_block, - [403011] = 4, + [406194] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9365), 1, + STATE(9434), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8379), 4, - sym__line_break, - anon_sym_SEMI, + ACTIONS(4640), 4, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_then, - [403028] = 4, + anon_sym_DASH_GT, + anon_sym_EQ, + [406211] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9366), 1, + STATE(9435), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5947), 4, + ACTIONS(4640), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_then, - [403045] = 4, + anon_sym_DASH_GT, + [406228] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9367), 1, + ACTIONS(1093), 1, + sym__start_of_brace_block, + ACTIONS(7841), 1, + anon_sym_do, + STATE(9436), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5951), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [403062] = 4, + STATE(5989), 2, + sym_do_end_block, + sym_brace_block, + [406249] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9368), 1, + STATE(9437), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11875), 4, + ACTIONS(11961), 4, sym__regular_rescue_keyword, sym__regular_ensure_keyword, anon_sym_end, anon_sym_else, - [403079] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9369), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5959), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [403096] = 7, + [406266] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(11877), 1, + ACTIONS(11963), 1, sym__percent_literal_end, - STATE(9370), 1, - sym_heredoc_body, - STATE(9393), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10481), 1, - sym_percent_literal_array_word, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [403119] = 7, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(11832), 1, + ACTIONS(11965), 1, sym__delimited_array_element_start, - ACTIONS(11879), 1, - sym__percent_literal_end, - STATE(9371), 1, - sym_heredoc_body, - STATE(9394), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10433), 1, + STATE(10553), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403142] = 7, + STATE(9438), 2, + sym_heredoc_body, + aux_sym_string_array_percent_literal_repeat1, + [406287] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7381), 1, + ACTIONS(7402), 1, anon_sym_in, - ACTIONS(11881), 1, + ACTIONS(11968), 1, anon_sym_end, - STATE(9372), 1, + STATE(9439), 1, sym_heredoc_body, - STATE(9375), 1, + STATE(9456), 1, aux_sym_exhaustive_case_repeat1, - STATE(10443), 1, + STATE(10531), 1, sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403165] = 7, + [406310] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8337), 1, - anon_sym_COMMA, - ACTIONS(8339), 1, - anon_sym_RBRACK, - ACTIONS(8365), 1, - anon_sym_RBRACK_QMARK, - STATE(9373), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(11970), 1, + sym__percent_literal_end, + STATE(9440), 1, sym_heredoc_body, - STATE(9382), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(9475), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10553), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403188] = 7, + [406333] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10233), 1, - anon_sym_class, - ACTIONS(10235), 1, - anon_sym_struct, - ACTIONS(11883), 1, - anon_sym_def, - STATE(8876), 1, - sym__base_method_def, - STATE(9374), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(11972), 1, + sym__percent_literal_end, + STATE(9441), 1, sym_heredoc_body, + STATE(9476), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10462), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403211] = 6, + [406356] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11885), 1, - anon_sym_end, - ACTIONS(11887), 1, - anon_sym_in, - STATE(10443), 1, - sym_in, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(337), 1, + sym_constant, + STATE(495), 1, + sym_generic_type, + STATE(9442), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9375), 2, - sym_heredoc_body, - aux_sym_exhaustive_case_repeat1, - [403232] = 6, + [406379] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, - sym__start_of_brace_block, - ACTIONS(5516), 1, - anon_sym_do, - STATE(9376), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(322), 1, + sym_constant, + STATE(338), 1, + sym_generic_type, + STATE(9443), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3071), 2, - sym_do_end_block, - sym_brace_block, - [403253] = 7, + [406402] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(11890), 1, - anon_sym_end, - STATE(9375), 1, - aux_sym_exhaustive_case_repeat1, - STATE(9377), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(315), 1, + sym_constant, + STATE(339), 1, + sym_generic_type, + STATE(9444), 1, sym_heredoc_body, - STATE(10443), 1, - sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403276] = 7, + [406425] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, + ACTIONS(9488), 1, sym__constant_segment, - ACTIONS(9487), 1, + ACTIONS(9490), 1, anon_sym_COLON_COLON, - STATE(394), 1, + STATE(342), 1, sym_constant, - STATE(491), 1, + STATE(410), 1, sym_generic_type, - STATE(9378), 1, + STATE(9445), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403299] = 7, + [406448] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, + ACTIONS(9488), 1, sym__constant_segment, - ACTIONS(9487), 1, + ACTIONS(9490), 1, anon_sym_COLON_COLON, - STATE(323), 1, + STATE(325), 1, sym_constant, - STATE(395), 1, + STATE(343), 1, sym_generic_type, - STATE(9379), 1, + STATE(9446), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403322] = 7, + [406471] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, + ACTIONS(9488), 1, sym__constant_segment, - ACTIONS(9487), 1, + ACTIONS(9490), 1, anon_sym_COLON_COLON, - STATE(310), 1, + STATE(306), 1, sym_constant, - STATE(397), 1, + STATE(344), 1, sym_generic_type, - STATE(9380), 1, + STATE(9447), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403345] = 6, + [406494] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(339), 1, + ACTIONS(1093), 1, sym__start_of_brace_block, - ACTIONS(6610), 1, + ACTIONS(7841), 1, anon_sym_do, - STATE(9381), 1, + STATE(9448), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4184), 2, + STATE(6195), 2, sym_do_end_block, sym_brace_block, - [403366] = 7, + [406515] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3390), 1, - anon_sym_RBRACK, - ACTIONS(3392), 1, - anon_sym_RBRACK_QMARK, - ACTIONS(11892), 1, - anon_sym_COMMA, - STATE(9382), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(355), 1, + sym_constant, + STATE(419), 1, + sym_generic_instance_type, + STATE(9449), 1, sym_heredoc_body, - STATE(9399), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403389] = 7, + [406538] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, + ACTIONS(9488), 1, sym__constant_segment, - ACTIONS(9487), 1, + ACTIONS(9490), 1, anon_sym_COLON_COLON, - STATE(399), 1, + STATE(314), 1, sym_constant, - STATE(498), 1, + STATE(345), 1, sym_generic_type, - STATE(9383), 1, + STATE(9450), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403412] = 7, + [406561] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, + ACTIONS(9488), 1, sym__constant_segment, - ACTIONS(9487), 1, + ACTIONS(9490), 1, anon_sym_COLON_COLON, - STATE(304), 1, + STATE(323), 1, sym_constant, - STATE(401), 1, + STATE(346), 1, sym_generic_type, - STATE(9384), 1, + STATE(9451), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403435] = 7, + [406584] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, + ACTIONS(9488), 1, sym__constant_segment, - ACTIONS(9487), 1, + ACTIONS(9490), 1, anon_sym_COLON_COLON, - STATE(306), 1, + STATE(347), 1, sym_constant, - STATE(366), 1, - sym_generic_type, - STATE(9385), 1, + STATE(407), 1, + sym_generic_instance_type, + STATE(9452), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403458] = 6, + [406607] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(339), 1, - sym__start_of_brace_block, - ACTIONS(6610), 1, - anon_sym_do, - STATE(9386), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(348), 1, + sym_constant, + STATE(408), 1, + sym_generic_instance_type, + STATE(9453), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3837), 2, - sym_do_end_block, - sym_brace_block, - [403479] = 7, + [406630] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, + ACTIONS(9488), 1, sym__constant_segment, - ACTIONS(9487), 1, + ACTIONS(9490), 1, anon_sym_COLON_COLON, - STATE(311), 1, + STATE(350), 1, sym_constant, - STATE(327), 1, - sym_generic_type, - STATE(9387), 1, + STATE(411), 1, + sym_generic_instance_type, + STATE(9454), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403502] = 7, + [406653] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, + ACTIONS(9488), 1, sym__constant_segment, - ACTIONS(9487), 1, + ACTIONS(9490), 1, anon_sym_COLON_COLON, - STATE(315), 1, + STATE(351), 1, sym_constant, - STATE(328), 1, - sym_generic_type, - STATE(9388), 1, + STATE(412), 1, + sym_generic_instance_type, + STATE(9455), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403525] = 7, + [406676] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(329), 1, - sym_constant, - STATE(495), 1, - sym_generic_instance_type, - STATE(9389), 1, - sym_heredoc_body, + ACTIONS(11974), 1, + anon_sym_end, + ACTIONS(11976), 1, + anon_sym_in, + STATE(10531), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403548] = 7, + STATE(9456), 2, + sym_heredoc_body, + aux_sym_exhaustive_case_repeat1, + [406697] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, + ACTIONS(9488), 1, sym__constant_segment, - ACTIONS(9487), 1, + ACTIONS(9490), 1, anon_sym_COLON_COLON, - STATE(330), 1, + STATE(358), 1, sym_constant, - STATE(423), 1, + STATE(420), 1, sym_generic_instance_type, - STATE(9390), 1, + STATE(9457), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403571] = 7, + [406720] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(331), 1, - sym_constant, - STATE(475), 1, - sym_generic_instance_type, - STATE(9391), 1, + ACTIONS(11979), 1, + anon_sym_RPAREN, + ACTIONS(11981), 1, + anon_sym_COMMA, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + STATE(9458), 1, sym_heredoc_body, + STATE(9518), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403594] = 7, + [406743] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, + ACTIONS(9488), 1, sym__constant_segment, - ACTIONS(9487), 1, + ACTIONS(9490), 1, anon_sym_COLON_COLON, - STATE(332), 1, + STATE(352), 1, sym_constant, - STATE(481), 1, + STATE(413), 1, sym_generic_instance_type, - STATE(9392), 1, + STATE(9459), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403617] = 7, + [406766] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(11894), 1, - sym__percent_literal_end, - STATE(9393), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(353), 1, + sym_constant, + STATE(414), 1, + sym_generic_instance_type, + STATE(9460), 1, sym_heredoc_body, - STATE(9459), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10481), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403640] = 7, + [406789] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(11896), 1, - sym__percent_literal_end, - STATE(9394), 1, - sym_heredoc_body, - STATE(9462), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10433), 1, - sym_percent_literal_array_word, + ACTIONS(8871), 1, + anon_sym_RBRACK_QMARK, + ACTIONS(8873), 1, + anon_sym_RBRACK, + ACTIONS(11985), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403663] = 4, + STATE(9461), 2, + sym_heredoc_body, + aux_sym_annotation_argument_list_repeat1, + [406810] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9395), 1, + ACTIONS(1093), 1, + sym__start_of_brace_block, + ACTIONS(7841), 1, + anon_sym_do, + STATE(9462), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11898), 4, - sym__regular_rescue_keyword, - sym__regular_ensure_keyword, - anon_sym_end, - anon_sym_else, - [403680] = 7, + STATE(6233), 2, + sym_do_end_block, + sym_brace_block, + [406831] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11900), 1, - anon_sym_RPAREN, - ACTIONS(11902), 1, + ACTIONS(3427), 1, + anon_sym_RBRACK, + ACTIONS(3429), 1, + anon_sym_RBRACK_QMARK, + ACTIONS(11988), 1, anon_sym_COMMA, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - STATE(9396), 1, + STATE(9461), 1, + aux_sym_annotation_argument_list_repeat1, + STATE(9463), 1, sym_heredoc_body, - STATE(9452), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403703] = 7, + [406854] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(333), 1, - sym_constant, - STATE(496), 1, - sym_generic_instance_type, - STATE(9397), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(11990), 1, + sym__percent_literal_end, + STATE(9464), 1, sym_heredoc_body, + STATE(9670), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10553), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403726] = 7, + [406877] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(334), 1, - sym_constant, - STATE(415), 1, - sym_generic_instance_type, - STATE(9398), 1, + STATE(9465), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403749] = 6, + ACTIONS(5835), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [406894] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8571), 1, - anon_sym_RBRACK_QMARK, - ACTIONS(8573), 1, - anon_sym_RBRACK, - ACTIONS(11906), 1, - anon_sym_COMMA, + STATE(9466), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9399), 2, - sym_heredoc_body, - aux_sym_annotation_argument_list_repeat1, - [403770] = 4, + ACTIONS(6057), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [406911] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9400), 1, + STATE(9467), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6034), 4, + ACTIONS(6468), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [403787] = 4, + [406928] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9401), 1, + STATE(9468), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6038), 4, + ACTIONS(6381), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [403804] = 4, + [406945] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9402), 1, + STATE(9469), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6042), 4, + ACTIONS(6448), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [403821] = 4, + [406962] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9403), 1, + STATE(9470), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6058), 4, + ACTIONS(5803), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [403838] = 4, + [406979] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9404), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(11992), 1, + sym__percent_literal_end, + STATE(9471), 1, sym_heredoc_body, + STATE(9678), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10462), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6108), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [403855] = 4, + [407002] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9405), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(11994), 1, + sym__percent_literal_end, + STATE(9472), 1, sym_heredoc_body, + STATE(9480), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10553), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6136), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [403872] = 7, + [407025] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11883), 1, - anon_sym_def, - ACTIONS(11909), 1, - anon_sym_class, - ACTIONS(11911), 1, - anon_sym_struct, - STATE(8569), 1, - sym__base_method_def, - STATE(9406), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(11996), 1, + sym__percent_literal_end, + STATE(9473), 1, sym_heredoc_body, + STATE(9481), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10462), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403895] = 4, + [407048] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9407), 1, + STATE(9474), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6166), 4, + ACTIONS(5843), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [403912] = 7, + [407065] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(375), 1, - sym_constant, - STATE(459), 1, - sym_generic_type, - STATE(9408), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(11998), 1, + sym__percent_literal_end, + STATE(9438), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(9475), 1, sym_heredoc_body, + STATE(10553), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403935] = 7, + [407088] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11913), 1, - anon_sym_class, - ACTIONS(11915), 1, - anon_sym_struct, - ACTIONS(11917), 1, - anon_sym_def, - STATE(8057), 1, - sym__base_method_def, - STATE(9409), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12000), 1, + sym__percent_literal_end, + STATE(9476), 1, sym_heredoc_body, + STATE(9487), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10462), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403958] = 7, + [407111] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(322), 1, - sym_constant, - STATE(387), 1, - sym_generic_type, - STATE(9410), 1, + ACTIONS(10280), 1, + anon_sym_class, + ACTIONS(10282), 1, + anon_sym_struct, + ACTIONS(12002), 1, + anon_sym_def, + STATE(8246), 1, + sym__base_method_def, + STATE(9477), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [403981] = 7, + [407134] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(312), 1, - sym_constant, - STATE(389), 1, - sym_generic_type, - STATE(9411), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12004), 1, + sym__percent_literal_end, + STATE(9478), 1, sym_heredoc_body, + STATE(9483), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10553), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [404004] = 4, + [407157] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9412), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12006), 1, + sym__percent_literal_end, + STATE(9479), 1, sym_heredoc_body, + STATE(9484), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10462), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6006), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [404021] = 7, + [407180] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, + ACTIONS(11939), 1, sym__delimited_array_element_start, - ACTIONS(11919), 1, + ACTIONS(12008), 1, sym__percent_literal_end, - STATE(9413), 1, - sym_heredoc_body, - STATE(9417), 1, + STATE(9438), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10481), 1, + STATE(9480), 1, + sym_heredoc_body, + STATE(10553), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [404044] = 7, + [407203] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, + ACTIONS(11939), 1, sym__delimited_array_element_start, - ACTIONS(11921), 1, + ACTIONS(12010), 1, sym__percent_literal_end, - STATE(9414), 1, + STATE(9481), 1, sym_heredoc_body, - STATE(9418), 1, + STATE(9487), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10433), 1, + STATE(10462), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [404067] = 4, + [407226] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9415), 1, + ACTIONS(12002), 1, + anon_sym_def, + ACTIONS(12012), 1, + anon_sym_class, + ACTIONS(12014), 1, + anon_sym_struct, + STATE(8301), 1, + sym__base_method_def, + STATE(9482), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11923), 4, - sym__delimited_string_contents, - sym__delimited_array_element_end, - sym_ignored_backslash, - aux_sym_percent_literal_array_word_token1, - [404084] = 4, + [407249] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9416), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12016), 1, + sym__percent_literal_end, + STATE(9438), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(9483), 1, sym_heredoc_body, + STATE(10553), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11925), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [404101] = 7, + [407272] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, + ACTIONS(11939), 1, sym__delimited_array_element_start, - ACTIONS(11927), 1, + ACTIONS(12018), 1, sym__percent_literal_end, - STATE(9417), 1, + STATE(9484), 1, sym_heredoc_body, - STATE(9459), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10481), 1, + STATE(9487), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10462), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [404124] = 7, + [407295] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(11929), 1, - sym__percent_literal_end, - STATE(9418), 1, + ACTIONS(393), 1, + sym__start_of_brace_block, + ACTIONS(6664), 1, + anon_sym_do, + STATE(9485), 1, sym_heredoc_body, - STATE(9462), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10433), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [404147] = 7, + STATE(4033), 2, + sym_do_end_block, + sym_brace_block, + [407316] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(402), 1, - sym_constant, - STATE(428), 1, - sym_generic_instance_type, - STATE(9419), 1, + ACTIONS(10299), 1, + anon_sym_RPAREN, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + ACTIONS(12020), 1, + anon_sym_COMMA, + STATE(9486), 1, sym_heredoc_body, + STATE(9518), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [404170] = 4, + [407339] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9420), 1, + ACTIONS(12022), 1, + sym__percent_literal_end, + ACTIONS(12024), 1, + sym__delimited_array_element_start, + STATE(10462), 1, + sym_percent_literal_array_word, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(9487), 2, + sym_heredoc_body, + aux_sym_symbol_array_percent_literal_repeat1, + [407360] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(318), 1, + sym_constant, + STATE(366), 1, + sym_generic_type, + STATE(9488), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5909), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [404187] = 7, + [407383] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - ACTIONS(11931), 1, - anon_sym_RPAREN, - ACTIONS(11933), 1, - anon_sym_COMMA, - STATE(9421), 1, + ACTIONS(603), 1, + sym__start_of_brace_block, + ACTIONS(6824), 1, + anon_sym_do, + STATE(9489), 1, sym_heredoc_body, - STATE(9452), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [404210] = 4, + STATE(4469), 2, + sym_do_end_block, + sym_brace_block, + [407404] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9422), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(316), 1, + sym_constant, + STATE(329), 1, + sym_generic_type, + STATE(9490), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5966), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [404227] = 4, + [407427] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9423), 1, + STATE(9491), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5970), 4, + ACTIONS(5945), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [404244] = 4, + [407444] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9424), 1, + STATE(9492), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6026), 4, + ACTIONS(6209), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [404261] = 4, + [407461] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9425), 1, + STATE(9493), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6074), 4, - sym__line_break, - anon_sym_SEMI, + ACTIONS(4785), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_then, - [404278] = 4, + anon_sym_EQ_GT, + [407478] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9426), 1, + ACTIONS(343), 1, + sym__start_of_brace_block, + ACTIONS(6650), 1, + anon_sym_do, + STATE(9494), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6084), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [404295] = 4, + STATE(3437), 2, + sym_do_end_block, + sym_brace_block, + [407499] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9427), 1, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(12027), 1, + anon_sym_end, + STATE(9456), 1, + aux_sym_exhaustive_case_repeat1, + STATE(9495), 1, sym_heredoc_body, + STATE(10531), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6096), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [404312] = 4, + [407522] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9428), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(327), 1, + sym_constant, + STATE(423), 1, + sym_generic_type, + STATE(9496), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6100), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [404329] = 4, + [407545] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9429), 1, + ACTIONS(12029), 1, + anon_sym_class, + ACTIONS(12031), 1, + anon_sym_struct, + ACTIONS(12033), 1, + anon_sym_def, + STATE(8009), 1, + sym__base_method_def, + STATE(9497), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11935), 4, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, - [404346] = 7, + [407568] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(11937), 1, - sym__percent_literal_end, - STATE(9430), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(305), 1, + sym_constant, + STATE(328), 1, + sym_generic_type, + STATE(9498), 1, sym_heredoc_body, - STATE(9459), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10481), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [404369] = 4, + [407591] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9431), 1, + STATE(9499), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6022), 4, + ACTIONS(6249), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [404386] = 4, + [407608] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9432), 1, + STATE(9500), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6194), 4, + ACTIONS(6373), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [404403] = 4, + [407625] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9433), 1, + ACTIONS(661), 1, + sym__start_of_brace_block, + ACTIONS(6805), 1, + anon_sym_do, + STATE(9501), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6222), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [404420] = 4, + STATE(3733), 2, + sym_do_end_block, + sym_brace_block, + [407646] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9434), 1, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(12035), 1, + anon_sym_end, + STATE(9456), 1, + aux_sym_exhaustive_case_repeat1, + STATE(9502), 1, sym_heredoc_body, + STATE(10531), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6232), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [404437] = 4, + [407669] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9435), 1, + STATE(9503), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6244), 4, + ACTIONS(5831), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [404454] = 4, + [407686] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9436), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(295), 1, + sym_constant, + STATE(331), 1, + sym_generic_type, + STATE(9504), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6248), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [404471] = 4, + [407709] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9437), 1, + STATE(9505), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6294), 4, + ACTIONS(5839), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [404488] = 4, + [407726] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9438), 1, + STATE(9506), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6322), 4, + ACTIONS(5887), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [404505] = 6, + [407743] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11181), 1, - aux_sym__base_method_def_token1, - ACTIONS(11183), 1, - anon_sym_EQ, - STATE(9439), 1, + ACTIONS(209), 1, + sym__start_of_brace_block, + ACTIONS(5549), 1, + anon_sym_do, + STATE(9507), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11179), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [404526] = 4, + STATE(2984), 2, + sym_do_end_block, + sym_brace_block, + [407764] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9440), 1, + ACTIONS(603), 1, + sym__start_of_brace_block, + ACTIONS(6824), 1, + anon_sym_do, + STATE(9508), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6366), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [404543] = 4, + STATE(4554), 2, + sym_do_end_block, + sym_brace_block, + [407785] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9441), 1, + STATE(9509), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6398), 4, + ACTIONS(5911), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [404560] = 4, + [407802] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9442), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12037), 1, + sym__percent_literal_end, + STATE(9510), 1, sym_heredoc_body, + STATE(9652), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10553), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5736), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [404577] = 4, + [407825] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9443), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12039), 1, + sym__percent_literal_end, + STATE(9511), 1, sym_heredoc_body, + STATE(9696), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10462), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5740), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [404594] = 4, + [407848] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9444), 1, + ACTIONS(12041), 1, + anon_sym_COLON3, + STATE(280), 1, + sym__terminator, + STATE(9512), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5744), 4, + ACTIONS(1429), 2, sym__line_break, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [404611] = 4, + [407869] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9445), 1, + ACTIONS(12045), 1, + aux_sym__base_method_def_token1, + ACTIONS(12047), 1, + anon_sym_EQ, + STATE(9513), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5748), 4, - sym__line_break, - anon_sym_SEMI, + ACTIONS(12043), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_then, - [404628] = 4, + [407890] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9446), 1, + ACTIONS(603), 1, + sym__start_of_brace_block, + ACTIONS(6824), 1, + anon_sym_do, + STATE(9514), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5756), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [404645] = 4, + STATE(4361), 2, + sym_do_end_block, + sym_brace_block, + [407911] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9447), 1, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + ACTIONS(12049), 1, + anon_sym_RPAREN, + ACTIONS(12051), 1, + anon_sym_COMMA, + STATE(9515), 1, sym_heredoc_body, + STATE(9518), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5760), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [404662] = 4, + [407934] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9448), 1, + STATE(9516), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5764), 4, - sym__line_break, - anon_sym_SEMI, + ACTIONS(12053), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_then, - [404679] = 4, + anon_sym_DASH_GT, + [407951] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9449), 1, + STATE(9517), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5772), 4, + ACTIONS(5949), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [404696] = 4, + [407968] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9450), 1, + ACTIONS(12055), 1, + anon_sym_COMMA, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(12053), 2, + anon_sym_RPAREN, + anon_sym_DASH_GT, + STATE(9518), 2, + sym_heredoc_body, + aux_sym_proc_type_repeat1, + [407987] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9519), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5776), 4, + ACTIONS(5957), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [404713] = 6, + [408004] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(591), 1, + ACTIONS(343), 1, sym__start_of_brace_block, - ACTIONS(6798), 1, + ACTIONS(6650), 1, anon_sym_do, - STATE(9451), 1, + STATE(9520), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3717), 2, + STATE(3501), 2, sym_do_end_block, sym_brace_block, - [404734] = 5, + [408025] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11939), 1, - anon_sym_COMMA, + STATE(9521), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11935), 2, - anon_sym_RPAREN, - anon_sym_DASH_GT, - STATE(9452), 2, + ACTIONS(6007), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [408042] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9522), 1, sym_heredoc_body, - aux_sym_proc_type_repeat1, - [404753] = 7, + ACTIONS(11658), 2, + anon_sym_SLASH, + sym_regex_escape_sequence, + ACTIONS(11660), 2, + anon_sym_POUND_LBRACE, + aux_sym_regex_token1, + [408063] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10322), 1, - anon_sym_RPAREN, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - ACTIONS(11942), 1, - anon_sym_COMMA, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9453), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(389), 1, + sym_constant, + STATE(491), 1, + sym_generic_instance_type, + STATE(9523), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [404776] = 7, + [408086] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(11944), 1, - anon_sym_end, - STATE(9375), 1, - aux_sym_exhaustive_case_repeat1, - STATE(9454), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(391), 1, + sym_constant, + STATE(493), 1, + sym_generic_instance_type, + STATE(9524), 1, sym_heredoc_body, - STATE(10443), 1, - sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [404799] = 6, + [408109] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(783), 1, + ACTIONS(343), 1, sym__start_of_brace_block, - ACTIONS(7557), 1, + ACTIONS(6650), 1, anon_sym_do, - STATE(9455), 1, + STATE(9525), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5839), 2, + STATE(3422), 2, sym_do_end_block, sym_brace_block, - [404820] = 4, + [408130] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9456), 1, + STATE(9526), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5510), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [404837] = 4, + ACTIONS(12058), 4, + sym__regular_rescue_keyword, + sym__regular_ensure_keyword, + anon_sym_end, + anon_sym_else, + [408147] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9457), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(356), 1, + sym_constant, + STATE(418), 1, + sym_generic_type, + STATE(9527), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6190), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [404854] = 6, + [408170] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(591), 1, - sym__start_of_brace_block, - ACTIONS(6798), 1, - anon_sym_do, - STATE(9458), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(308), 1, + sym_constant, + STATE(357), 1, + sym_generic_type, + STATE(9528), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3765), 2, - sym_do_end_block, - sym_brace_block, - [404875] = 6, + [408193] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11946), 1, - sym__percent_literal_end, - ACTIONS(11948), 1, - sym__delimited_array_element_start, - STATE(10481), 1, - sym_percent_literal_array_word, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(310), 1, + sym_constant, + STATE(359), 1, + sym_generic_type, + STATE(9529), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9459), 2, + [408216] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(361), 1, + sym_constant, + STATE(422), 1, + sym_generic_type, + STATE(9530), 1, sym_heredoc_body, - aux_sym_string_array_percent_literal_repeat1, - [404896] = 6, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [408239] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(591), 1, - sym__start_of_brace_block, - ACTIONS(6798), 1, - anon_sym_do, - STATE(9460), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(324), 1, + sym_constant, + STATE(362), 1, + sym_generic_type, + STATE(9531), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3828), 2, - sym_do_end_block, - sym_brace_block, - [404917] = 4, + [408262] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9461), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(317), 1, + sym_constant, + STATE(363), 1, + sym_generic_type, + STATE(9532), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5878), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [404934] = 6, + [408285] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11951), 1, - sym__percent_literal_end, - ACTIONS(11953), 1, - sym__delimited_array_element_start, - STATE(10433), 1, - sym_percent_literal_array_word, + ACTIONS(11208), 1, + aux_sym__base_method_def_token1, + ACTIONS(11210), 1, + anon_sym_EQ, + STATE(9533), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9462), 2, + ACTIONS(11206), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [408306] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9534), 1, sym_heredoc_body, - aux_sym_symbol_array_percent_literal_repeat1, - [404955] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(12060), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [408323] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9463), 1, + STATE(9535), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5836), 4, + ACTIONS(6173), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [404972] = 7, + [408340] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(11956), 1, - sym__percent_literal_end, - STATE(9464), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(320), 1, + sym_constant, + STATE(364), 1, + sym_generic_type, + STATE(9536), 1, sym_heredoc_body, - STATE(9467), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10481), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [404995] = 7, + [408363] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(11958), 1, - sym__percent_literal_end, - STATE(9465), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(297), 1, + sym_constant, + STATE(365), 1, + sym_generic_type, + STATE(9537), 1, sym_heredoc_body, - STATE(9468), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10433), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405018] = 7, + [408386] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(11960), 1, - anon_sym_end, - STATE(9375), 1, - aux_sym_exhaustive_case_repeat1, - STATE(9466), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(402), 1, + sym_constant, + STATE(427), 1, + sym_generic_instance_type, + STATE(9538), 1, sym_heredoc_body, - STATE(10443), 1, - sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405041] = 7, + [408409] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(11962), 1, - sym__percent_literal_end, - STATE(9459), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(9467), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(367), 1, + sym_constant, + STATE(428), 1, + sym_generic_instance_type, + STATE(9539), 1, sym_heredoc_body, - STATE(10481), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405064] = 7, + [408432] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(11964), 1, - sym__percent_literal_end, - STATE(9462), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(9468), 1, + STATE(9540), 1, sym_heredoc_body, - STATE(10433), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405087] = 4, + ACTIONS(5551), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [408449] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9469), 1, + STATE(9541), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4595), 4, + ACTIONS(6460), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, - anon_sym_DASH_GT, - [405104] = 6, + anon_sym_then, + [408466] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(733), 1, - sym__start_of_brace_block, - ACTIONS(7569), 1, - anon_sym_do, - STATE(9470), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(368), 1, + sym_constant, + STATE(432), 1, + sym_generic_instance_type, + STATE(9542), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5268), 2, - sym_do_end_block, - sym_brace_block, - [405125] = 7, + [408489] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(11966), 1, - anon_sym_end, - STATE(9375), 1, - aux_sym_exhaustive_case_repeat1, - STATE(9471), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(369), 1, + sym_constant, + STATE(433), 1, + sym_generic_instance_type, + STATE(9543), 1, sym_heredoc_body, - STATE(10443), 1, - sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405148] = 6, + [408512] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(733), 1, - sym__start_of_brace_block, - ACTIONS(7569), 1, - anon_sym_do, - STATE(9472), 1, + STATE(9544), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5346), 2, - sym_do_end_block, - sym_brace_block, - [405169] = 6, + ACTIONS(6456), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [408529] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(733), 1, - sym__start_of_brace_block, - ACTIONS(7569), 1, - anon_sym_do, - STATE(9473), 1, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + ACTIONS(12062), 1, + anon_sym_RPAREN, + ACTIONS(12064), 1, + anon_sym_COMMA, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9545), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5362), 2, - sym_do_end_block, - sym_brace_block, - [405190] = 7, + [408552] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(11968), 1, - sym__percent_literal_end, - STATE(9462), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(9474), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(370), 1, + sym_constant, + STATE(435), 1, + sym_generic_instance_type, + STATE(9546), 1, sym_heredoc_body, - STATE(10433), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405213] = 7, + [408575] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, + ACTIONS(9488), 1, sym__constant_segment, - ACTIONS(9487), 1, + ACTIONS(9490), 1, anon_sym_COLON_COLON, - STATE(361), 1, + STATE(371), 1, sym_constant, - STATE(437), 1, - sym_generic_type, - STATE(9475), 1, + STATE(436), 1, + sym_generic_instance_type, + STATE(9547), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405236] = 7, + [408598] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, + STATE(9548), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5971), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [408615] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9549), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6277), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [408632] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9550), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5859), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [408649] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11939), 1, sym__delimited_array_element_start, - ACTIONS(11970), 1, + ACTIONS(12066), 1, sym__percent_literal_end, - STATE(9476), 1, + STATE(9551), 1, sym_heredoc_body, - STATE(9486), 1, + STATE(9559), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10481), 1, + STATE(10553), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405259] = 7, + [408672] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, + ACTIONS(11939), 1, sym__delimited_array_element_start, - ACTIONS(11972), 1, + ACTIONS(12068), 1, sym__percent_literal_end, - STATE(9477), 1, + STATE(9552), 1, sym_heredoc_body, - STATE(9487), 1, + STATE(9560), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10433), 1, + STATE(10462), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405282] = 7, + [408695] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(337), 1, - sym_constant, - STATE(465), 1, - sym_generic_type, - STATE(9478), 1, + STATE(9553), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405305] = 7, + ACTIONS(5891), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [408712] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(314), 1, - sym_constant, - STATE(338), 1, - sym_generic_type, - STATE(9479), 1, + STATE(9554), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405328] = 7, + ACTIONS(6049), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [408729] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(316), 1, - sym_constant, - STATE(339), 1, - sym_generic_type, - STATE(9480), 1, + STATE(9555), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405351] = 6, + ACTIONS(5987), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [408746] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11976), 1, - aux_sym__base_method_def_token1, - ACTIONS(11978), 1, - anon_sym_EQ, - STATE(9481), 1, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(12070), 1, + anon_sym_end, + STATE(9456), 1, + aux_sym_exhaustive_case_repeat1, + STATE(9556), 1, sym_heredoc_body, + STATE(10531), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11974), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [405372] = 7, + [408769] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(344), 1, - sym_constant, - STATE(408), 1, - sym_generic_type, - STATE(9482), 1, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(12072), 1, + anon_sym_end, + STATE(9456), 1, + aux_sym_exhaustive_case_repeat1, + STATE(9557), 1, sym_heredoc_body, + STATE(10531), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405395] = 7, + [408792] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(320), 1, - sym_constant, - STATE(345), 1, - sym_generic_type, - STATE(9483), 1, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + ACTIONS(12074), 1, + anon_sym_RPAREN, + ACTIONS(12076), 1, + anon_sym_COMMA, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9558), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405418] = 7, + [408815] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(325), 1, - sym_constant, - STATE(346), 1, - sym_generic_type, - STATE(9484), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12078), 1, + sym__percent_literal_end, + STATE(9438), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(9559), 1, + sym_heredoc_body, + STATE(10553), 1, + sym_percent_literal_array_word, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [408838] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12080), 1, + sym__percent_literal_end, + STATE(9487), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(9560), 1, sym_heredoc_body, + STATE(10462), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405441] = 6, + [408861] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(783), 1, + ACTIONS(257), 1, sym__start_of_brace_block, - ACTIONS(7557), 1, + ACTIONS(5555), 1, anon_sym_do, - STATE(9485), 1, + STATE(9561), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(5835), 2, + STATE(2717), 2, sym_do_end_block, sym_brace_block, - [405462] = 7, + [408882] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(11980), 1, - sym__percent_literal_end, - STATE(9459), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(9486), 1, + STATE(9562), 1, sym_heredoc_body, - STATE(10481), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405485] = 7, + ACTIONS(6225), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [408899] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(11982), 1, - sym__percent_literal_end, - STATE(9462), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(9487), 1, + STATE(9563), 1, sym_heredoc_body, - STATE(10433), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405508] = 7, + ACTIONS(6269), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [408916] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(295), 1, - sym_constant, - STATE(347), 1, - sym_generic_type, - STATE(9488), 1, + STATE(9564), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405531] = 7, + ACTIONS(6273), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [408933] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(299), 1, - sym_constant, - STATE(348), 1, - sym_generic_type, - STATE(9489), 1, + STATE(9565), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405554] = 7, + ACTIONS(6305), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [408950] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(349), 1, - sym_constant, - STATE(444), 1, - sym_generic_instance_type, - STATE(9490), 1, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + ACTIONS(12082), 1, + anon_sym_RPAREN, + ACTIONS(12084), 1, + anon_sym_COMMA, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9566), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405577] = 7, + [408973] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(350), 1, - sym_constant, - STATE(452), 1, - sym_generic_instance_type, - STATE(9491), 1, + STATE(9567), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405600] = 7, + ACTIONS(6317), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [408990] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(351), 1, - sym_constant, - STATE(466), 1, - sym_generic_instance_type, - STATE(9492), 1, + STATE(9568), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405623] = 7, + ACTIONS(5775), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [409007] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(352), 1, - sym_constant, - STATE(468), 1, - sym_generic_instance_type, - STATE(9493), 1, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(12086), 1, + anon_sym_end, + STATE(9456), 1, + aux_sym_exhaustive_case_repeat1, + STATE(9569), 1, sym_heredoc_body, + STATE(10531), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405646] = 7, + [409030] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - ACTIONS(11984), 1, - anon_sym_RPAREN, - ACTIONS(11986), 1, - anon_sym_COMMA, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9494), 1, + STATE(9570), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405669] = 7, + ACTIONS(5855), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [409047] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(353), 1, - sym_constant, - STATE(473), 1, - sym_generic_instance_type, - STATE(9495), 1, + STATE(9571), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405692] = 7, + ACTIONS(5907), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [409064] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(354), 1, - sym_constant, - STATE(476), 1, - sym_generic_instance_type, - STATE(9496), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12088), 1, + sym__percent_literal_end, + STATE(9572), 1, sym_heredoc_body, + STATE(9580), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10553), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405715] = 6, + [409087] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11097), 1, - aux_sym__base_method_def_token1, - ACTIONS(11099), 1, - anon_sym_EQ, - STATE(9497), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12090), 1, + sym__percent_literal_end, + STATE(9573), 1, sym_heredoc_body, + STATE(9581), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10462), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11095), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [405736] = 6, + [409110] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, - sym__start_of_brace_block, - ACTIONS(7837), 1, - anon_sym_do, - STATE(9498), 1, + STATE(9574), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6006), 2, - sym_do_end_block, - sym_brace_block, - [405757] = 7, + ACTIONS(5967), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [409127] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - ACTIONS(11988), 1, - anon_sym_RPAREN, - ACTIONS(11990), 1, - anon_sym_COMMA, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9499), 1, + STATE(9575), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405780] = 7, + ACTIONS(5995), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [409144] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(11992), 1, - anon_sym_end, - STATE(9375), 1, - aux_sym_exhaustive_case_repeat1, - STATE(9500), 1, + STATE(9576), 1, sym_heredoc_body, - STATE(10443), 1, - sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405803] = 7, + ACTIONS(6011), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [409161] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - ACTIONS(11994), 1, - anon_sym_RPAREN, - ACTIONS(11996), 1, - anon_sym_COMMA, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9501), 1, + ACTIONS(10229), 1, + anon_sym_class, + ACTIONS(10231), 1, + anon_sym_struct, + ACTIONS(12092), 1, + anon_sym_def, + STATE(8541), 1, + sym__base_method_def, + STATE(9577), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405826] = 6, + [409184] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(783), 1, + ACTIONS(479), 1, sym__start_of_brace_block, - ACTIONS(7557), 1, + ACTIONS(6865), 1, anon_sym_do, - STATE(9502), 1, + STATE(9578), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6135), 2, + STATE(4618), 2, sym_do_end_block, sym_brace_block, - [405847] = 7, + [409205] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(11998), 1, + ACTIONS(12094), 1, anon_sym_RPAREN, - ACTIONS(12000), 1, + ACTIONS(12096), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9503), 1, + STATE(9579), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405870] = 6, + [409228] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, - sym__start_of_brace_block, - ACTIONS(7837), 1, - anon_sym_do, - STATE(9504), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12098), 1, + sym__percent_literal_end, + STATE(9438), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(9580), 1, sym_heredoc_body, + STATE(10553), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6112), 2, - sym_do_end_block, - sym_brace_block, - [405891] = 6, + [409251] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1077), 1, - sym__start_of_brace_block, - ACTIONS(7837), 1, - anon_sym_do, - STATE(9505), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12100), 1, + sym__percent_literal_end, + STATE(9487), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(9581), 1, sym_heredoc_body, + STATE(10462), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6149), 2, - sym_do_end_block, - sym_brace_block, - [405912] = 7, + [409274] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - ACTIONS(12002), 1, - anon_sym_RPAREN, - ACTIONS(12004), 1, - anon_sym_COMMA, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9506), 1, + STATE(9582), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405935] = 7, + ACTIONS(12102), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [409291] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(370), 1, - sym_constant, - STATE(403), 1, - sym_generic_instance_type, - STATE(9507), 1, + ACTIONS(8338), 1, + anon_sym_COMMA, + ACTIONS(8340), 1, + anon_sym_RBRACK, + ACTIONS(8366), 1, + anon_sym_RBRACK_QMARK, + STATE(9463), 1, + aux_sym_annotation_argument_list_repeat1, + STATE(9583), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405958] = 7, + [409314] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, - anon_sym_RPAREN, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(11609), 1, - anon_sym_DASH_GT, - STATE(9421), 1, - aux_sym_proc_type_repeat1, - STATE(9508), 1, + ACTIONS(12092), 1, + anon_sym_def, + ACTIONS(12104), 1, + anon_sym_class, + ACTIONS(12106), 1, + anon_sym_struct, + STATE(8546), 1, + sym__base_method_def, + STATE(9584), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [405981] = 7, + [409337] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12006), 1, + ACTIONS(12108), 1, anon_sym_RPAREN, - ACTIONS(12008), 1, + ACTIONS(12110), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9509), 1, + STATE(9585), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406004] = 6, + [409360] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(641), 1, - sym__start_of_brace_block, - ACTIONS(6719), 1, - anon_sym_do, - STATE(9510), 1, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(12112), 1, + anon_sym_end, + STATE(9456), 1, + aux_sym_exhaustive_case_repeat1, + STATE(9586), 1, sym_heredoc_body, + STATE(10531), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4519), 2, - sym_do_end_block, - sym_brace_block, - [406025] = 7, + [409383] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(12010), 1, - sym__percent_literal_end, - STATE(9511), 1, + STATE(9587), 1, sym_heredoc_body, - STATE(9513), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10481), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406048] = 7, + ACTIONS(12114), 4, + sym__delimited_string_contents, + sym__delimited_array_element_end, + sym_ignored_backslash, + aux_sym_percent_literal_array_word_token1, + [409400] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12012), 1, - anon_sym_class, - ACTIONS(12014), 1, - anon_sym_struct, - ACTIONS(12016), 1, - anon_sym_def, - STATE(8208), 1, - sym__base_method_def, - STATE(9512), 1, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + ACTIONS(12116), 1, + anon_sym_RPAREN, + ACTIONS(12118), 1, + anon_sym_COMMA, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9588), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406071] = 7, + [409423] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(12018), 1, - sym__percent_literal_end, - STATE(9459), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(9513), 1, + STATE(9589), 1, sym_heredoc_body, - STATE(10481), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406094] = 7, + ACTIONS(12120), 4, + sym__regular_rescue_keyword, + sym__regular_ensure_keyword, + anon_sym_end, + anon_sym_else, + [409440] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(12020), 1, - sym__percent_literal_end, - STATE(9462), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(9514), 1, + STATE(9590), 1, sym_heredoc_body, - STATE(10433), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406117] = 7, + ACTIONS(12122), 4, + sym__regular_rescue_keyword, + sym__regular_ensure_keyword, + anon_sym_end, + anon_sym_else, + [409457] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12022), 1, + ACTIONS(12124), 1, anon_sym_RPAREN, - ACTIONS(12024), 1, + ACTIONS(12126), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9515), 1, + STATE(9591), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406140] = 7, + [409480] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(321), 1, - sym_constant, - STATE(342), 1, - sym_generic_type, - STATE(9516), 1, + ACTIONS(747), 1, + sym__start_of_brace_block, + ACTIONS(7601), 1, + anon_sym_do, + STATE(9592), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406163] = 6, + STATE(6027), 2, + sym_do_end_block, + sym_brace_block, + [409501] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, + ACTIONS(479), 1, sym__start_of_brace_block, - ACTIONS(5516), 1, + ACTIONS(6865), 1, anon_sym_do, - STATE(9517), 1, + STATE(9593), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3069), 2, + STATE(4758), 2, sym_do_end_block, sym_brace_block, - [406184] = 7, + [409522] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10223), 1, - anon_sym_class, - ACTIONS(10225), 1, - anon_sym_struct, - ACTIONS(11917), 1, - anon_sym_def, - STATE(7985), 1, - sym__base_method_def, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + ACTIONS(12128), 1, + anon_sym_RPAREN, + ACTIONS(12130), 1, + anon_sym_COMMA, STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9594), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406207] = 7, + [409545] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(296), 1, - sym_constant, - STATE(374), 1, - sym_generic_type, - STATE(9519), 1, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(12132), 1, + anon_sym_end, + STATE(9456), 1, + aux_sym_exhaustive_case_repeat1, + STATE(9595), 1, sym_heredoc_body, + STATE(10531), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406230] = 7, + [409568] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12026), 1, + ACTIONS(12134), 1, anon_sym_RPAREN, - ACTIONS(12028), 1, + ACTIONS(12136), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9520), 1, + STATE(9596), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406253] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9521), 1, - sym_heredoc_body, - ACTIONS(11539), 2, - anon_sym_POUND_LBRACE, - aux_sym_regex_token1, - ACTIONS(11541), 2, - anon_sym_SLASH, - sym_regex_escape_sequence, - [406274] = 6, + [409591] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(387), 1, + ACTIONS(479), 1, sym__start_of_brace_block, - ACTIONS(6574), 1, + ACTIONS(6865), 1, anon_sym_do, - STATE(9522), 1, + STATE(9597), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3576), 2, + STATE(4781), 2, sym_do_end_block, sym_brace_block, - [406295] = 7, + [409612] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(372), 1, - sym_constant, - STATE(451), 1, - sym_generic_instance_type, - STATE(9523), 1, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + ACTIONS(12138), 1, + anon_sym_RPAREN, + ACTIONS(12140), 1, + anon_sym_COMMA, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9598), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406318] = 7, + [409635] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12030), 1, + ACTIONS(12142), 1, anon_sym_RPAREN, - ACTIONS(12032), 1, + ACTIONS(12144), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9524), 1, + STATE(9599), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406341] = 7, + [409658] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(12034), 1, - anon_sym_end, - STATE(9375), 1, - aux_sym_exhaustive_case_repeat1, - STATE(9525), 1, + ACTIONS(661), 1, + sym__start_of_brace_block, + ACTIONS(6805), 1, + anon_sym_do, + STATE(9600), 1, sym_heredoc_body, - STATE(10443), 1, - sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406364] = 7, + STATE(3787), 2, + sym_do_end_block, + sym_brace_block, + [409679] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12036), 1, + ACTIONS(12146), 1, anon_sym_RPAREN, - ACTIONS(12038), 1, + ACTIONS(12148), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9526), 1, + STATE(9601), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406387] = 4, + [409702] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9527), 1, + ACTIONS(747), 1, + sym__start_of_brace_block, + ACTIONS(7601), 1, + anon_sym_do, + STATE(9602), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(5874), 2, + sym_do_end_block, + sym_brace_block, + [409723] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9603), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6290), 4, + ACTIONS(6073), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [406404] = 6, + [409740] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(387), 1, - sym__start_of_brace_block, - ACTIONS(6574), 1, - anon_sym_do, - STATE(9528), 1, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + ACTIONS(12150), 1, + anon_sym_RPAREN, + ACTIONS(12152), 1, + anon_sym_COMMA, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9604), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3435), 2, - sym_do_end_block, - sym_brace_block, - [406425] = 7, + [409763] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, + ACTIONS(11939), 1, sym__delimited_array_element_start, - ACTIONS(12040), 1, + ACTIONS(12154), 1, sym__percent_literal_end, - STATE(9529), 1, + STATE(9605), 1, sym_heredoc_body, - STATE(9537), 1, + STATE(9613), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10481), 1, + STATE(10553), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406448] = 7, + [409786] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, + ACTIONS(11939), 1, sym__delimited_array_element_start, - ACTIONS(12042), 1, + ACTIONS(12156), 1, sym__percent_literal_end, - STATE(9530), 1, + STATE(9606), 1, sym_heredoc_body, - STATE(9538), 1, + STATE(9614), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10433), 1, + STATE(10462), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406471] = 7, + [409809] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12044), 1, + ACTIONS(12158), 1, anon_sym_RPAREN, - ACTIONS(12046), 1, + ACTIONS(12160), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9531), 1, + STATE(9607), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406494] = 6, + [409832] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(387), 1, - sym__start_of_brace_block, - ACTIONS(6574), 1, - anon_sym_do, - STATE(9532), 1, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + ACTIONS(12162), 1, + anon_sym_RPAREN, + ACTIONS(12164), 1, + anon_sym_COMMA, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9608), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3484), 2, - sym_do_end_block, - sym_brace_block, - [406515] = 7, + [409855] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - ACTIONS(12048), 1, - anon_sym_RPAREN, - ACTIONS(12050), 1, - anon_sym_COMMA, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9533), 1, + STATE(9609), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406538] = 6, + ACTIONS(5781), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [409872] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(253), 1, - sym__start_of_brace_block, - ACTIONS(5516), 1, - anon_sym_do, - STATE(9534), 1, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + ACTIONS(12166), 1, + anon_sym_RPAREN, + ACTIONS(12168), 1, + anon_sym_COMMA, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9610), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3004), 2, - sym_do_end_block, - sym_brace_block, - [406559] = 6, + [409895] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(641), 1, + ACTIONS(747), 1, sym__start_of_brace_block, - ACTIONS(6719), 1, + ACTIONS(7601), 1, anon_sym_do, - STATE(9535), 1, + STATE(9611), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4547), 2, + STATE(5916), 2, sym_do_end_block, sym_brace_block, - [406580] = 7, + [409916] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12052), 1, + ACTIONS(12170), 1, anon_sym_RPAREN, - ACTIONS(12054), 1, + ACTIONS(12172), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9536), 1, + STATE(9612), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406603] = 7, + [409939] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, + ACTIONS(11939), 1, sym__delimited_array_element_start, - ACTIONS(12056), 1, + ACTIONS(12174), 1, sym__percent_literal_end, - STATE(9459), 1, + STATE(9438), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(9537), 1, + STATE(9613), 1, sym_heredoc_body, - STATE(10481), 1, + STATE(10553), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406626] = 7, + [409962] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, + ACTIONS(11939), 1, sym__delimited_array_element_start, - ACTIONS(12058), 1, + ACTIONS(12176), 1, sym__percent_literal_end, - STATE(9462), 1, + STATE(9487), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(9538), 1, + STATE(9614), 1, sym_heredoc_body, - STATE(10433), 1, + STATE(10462), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406649] = 7, + [409985] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - ACTIONS(12060), 1, - anon_sym_RPAREN, - ACTIONS(12062), 1, - anon_sym_COMMA, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9539), 1, + ACTIONS(661), 1, + sym__start_of_brace_block, + ACTIONS(6805), 1, + anon_sym_do, + STATE(9615), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406672] = 7, + STATE(3804), 2, + sym_do_end_block, + sym_brace_block, + [410006] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(12064), 1, - sym__percent_literal_end, - STATE(9540), 1, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + ACTIONS(12178), 1, + anon_sym_RPAREN, + ACTIONS(12180), 1, + anon_sym_COMMA, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9616), 1, sym_heredoc_body, - STATE(9543), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10481), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406695] = 7, + [410029] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(12066), 1, - sym__percent_literal_end, - STATE(9541), 1, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + ACTIONS(12182), 1, + anon_sym_RPAREN, + ACTIONS(12184), 1, + anon_sym_COMMA, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9617), 1, sym_heredoc_body, - STATE(9544), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10433), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406718] = 7, + [410052] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12068), 1, + ACTIONS(12186), 1, anon_sym_RPAREN, - ACTIONS(12070), 1, + ACTIONS(12188), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9542), 1, + STATE(9618), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406741] = 7, + [410075] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(12072), 1, - sym__percent_literal_end, - STATE(9459), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(9543), 1, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + ACTIONS(12190), 1, + anon_sym_RPAREN, + ACTIONS(12192), 1, + anon_sym_COMMA, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9619), 1, sym_heredoc_body, - STATE(10481), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406764] = 7, + [410098] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(12074), 1, - sym__percent_literal_end, - STATE(9462), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(9544), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(377), 1, + sym_constant, + STATE(454), 1, + sym_generic_instance_type, + STATE(9620), 1, sym_heredoc_body, - STATE(10433), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406787] = 7, + [410121] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12076), 1, + ACTIONS(12194), 1, anon_sym_RPAREN, - ACTIONS(12078), 1, + ACTIONS(12196), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9545), 1, + STATE(9621), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406810] = 7, + [410144] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12080), 1, + ACTIONS(12198), 1, anon_sym_RPAREN, - ACTIONS(12082), 1, + ACTIONS(12200), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9546), 1, + STATE(9622), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406833] = 4, + [410167] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9547), 1, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + ACTIONS(12202), 1, + anon_sym_RPAREN, + ACTIONS(12204), 1, + anon_sym_COMMA, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9623), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6306), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [406850] = 7, + [410190] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12084), 1, + ACTIONS(12206), 1, anon_sym_RPAREN, - ACTIONS(12086), 1, + ACTIONS(12208), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9548), 1, + STATE(9624), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406873] = 6, + [410213] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1029), 1, - sym__start_of_brace_block, - ACTIONS(7816), 1, - anon_sym_do, - STATE(9549), 1, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + ACTIONS(12210), 1, + anon_sym_RPAREN, + ACTIONS(12212), 1, + anon_sym_COMMA, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9625), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6768), 2, - sym_do_end_block, - sym_brace_block, - [406894] = 7, + [410236] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12088), 1, + ACTIONS(12214), 1, anon_sym_RPAREN, - ACTIONS(12090), 1, + ACTIONS(12216), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9550), 1, + STATE(9626), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406917] = 6, + [410259] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(471), 1, - sym__start_of_brace_block, - ACTIONS(6828), 1, - anon_sym_do, - STATE(9551), 1, + STATE(9627), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4787), 2, - sym_do_end_block, - sym_brace_block, - [406938] = 7, + ACTIONS(12218), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [410276] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12092), 1, + ACTIONS(12220), 1, anon_sym_RPAREN, - ACTIONS(12094), 1, + ACTIONS(12222), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9552), 1, + STATE(9628), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406961] = 7, + [410299] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(12096), 1, - sym__percent_literal_end, - STATE(9553), 1, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + ACTIONS(12224), 1, + anon_sym_RPAREN, + ACTIONS(12226), 1, + anon_sym_COMMA, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9629), 1, sym_heredoc_body, - STATE(9620), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10481), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [406984] = 7, + [410322] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12098), 1, + ACTIONS(12228), 1, anon_sym_RPAREN, - ACTIONS(12100), 1, + ACTIONS(12230), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9554), 1, + STATE(9630), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407007] = 7, + [410345] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12102), 1, + ACTIONS(12232), 1, anon_sym_RPAREN, - ACTIONS(12104), 1, + ACTIONS(12234), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9555), 1, + STATE(9631), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407030] = 7, + [410368] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12106), 1, + ACTIONS(12236), 1, anon_sym_RPAREN, - ACTIONS(12108), 1, + ACTIONS(12238), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9556), 1, + STATE(9632), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407053] = 7, + [410391] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12110), 1, + ACTIONS(12240), 1, anon_sym_RPAREN, - ACTIONS(12112), 1, + ACTIONS(12242), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9557), 1, + STATE(9633), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407076] = 7, + [410414] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(12114), 1, - anon_sym_end, - STATE(9375), 1, - aux_sym_exhaustive_case_repeat1, - STATE(9558), 1, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + ACTIONS(12244), 1, + anon_sym_RPAREN, + ACTIONS(12246), 1, + anon_sym_COMMA, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9634), 1, sym_heredoc_body, - STATE(10443), 1, - sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407099] = 7, + [410437] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12116), 1, + ACTIONS(12248), 1, anon_sym_RPAREN, - ACTIONS(12118), 1, + ACTIONS(12250), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9559), 1, + STATE(9635), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407122] = 7, + [410460] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12120), 1, + ACTIONS(12252), 1, anon_sym_RPAREN, - ACTIONS(12122), 1, + ACTIONS(12254), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9560), 1, + STATE(9636), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407145] = 7, + [410483] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12124), 1, + ACTIONS(12256), 1, anon_sym_RPAREN, - ACTIONS(12126), 1, + ACTIONS(12258), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9561), 1, + STATE(9637), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407168] = 7, + [410506] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12128), 1, + ACTIONS(12260), 1, anon_sym_RPAREN, - ACTIONS(12130), 1, + ACTIONS(12262), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9562), 1, + STATE(9638), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407191] = 7, + [410529] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12132), 1, + ACTIONS(12264), 1, anon_sym_RPAREN, - ACTIONS(12134), 1, + ACTIONS(12266), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9563), 1, + STATE(9639), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407214] = 7, + [410552] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12136), 1, + ACTIONS(12268), 1, anon_sym_RPAREN, - ACTIONS(12138), 1, + ACTIONS(12270), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9564), 1, + STATE(9640), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407237] = 7, + [410575] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12140), 1, + ACTIONS(12272), 1, anon_sym_RPAREN, - ACTIONS(12142), 1, + ACTIONS(12274), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9565), 1, + STATE(9641), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407260] = 7, + [410598] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - ACTIONS(12144), 1, - anon_sym_RPAREN, - ACTIONS(12146), 1, - anon_sym_COMMA, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9566), 1, + STATE(9642), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407283] = 7, + ACTIONS(8449), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [410615] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12148), 1, + ACTIONS(12276), 1, anon_sym_RPAREN, - ACTIONS(12150), 1, + ACTIONS(12278), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9567), 1, + STATE(9643), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407306] = 7, + [410638] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12152), 1, + ACTIONS(12280), 1, anon_sym_RPAREN, - ACTIONS(12154), 1, + ACTIONS(12282), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9568), 1, + STATE(9644), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407329] = 7, + [410661] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12156), 1, + ACTIONS(12284), 1, anon_sym_RPAREN, - ACTIONS(12158), 1, + ACTIONS(12286), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9569), 1, + STATE(9645), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407352] = 7, + [410684] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12160), 1, + ACTIONS(12288), 1, anon_sym_RPAREN, - ACTIONS(12162), 1, + ACTIONS(12290), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9570), 1, + STATE(9646), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407375] = 7, + [410707] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, + ACTIONS(11983), 1, anon_sym_DASH_GT, - ACTIONS(12164), 1, + ACTIONS(12292), 1, anon_sym_RPAREN, - ACTIONS(12166), 1, + ACTIONS(12294), 1, anon_sym_COMMA, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(9571), 1, + STATE(9647), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407398] = 7, + [410730] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - ACTIONS(12168), 1, - anon_sym_RPAREN, - ACTIONS(12170), 1, - anon_sym_COMMA, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9572), 1, + ACTIONS(921), 1, + sym__start_of_brace_block, + ACTIONS(7714), 1, + anon_sym_do, + STATE(9648), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407421] = 7, + STATE(6277), 2, + sym_do_end_block, + sym_brace_block, + [410751] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - ACTIONS(12172), 1, - anon_sym_RPAREN, - ACTIONS(12174), 1, - anon_sym_COMMA, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9573), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12296), 1, + sym__percent_literal_end, + STATE(9649), 1, sym_heredoc_body, + STATE(9653), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10553), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407444] = 7, + [410774] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - ACTIONS(12176), 1, - anon_sym_RPAREN, - ACTIONS(12178), 1, - anon_sym_COMMA, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9574), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12298), 1, + sym__percent_literal_end, + STATE(9650), 1, sym_heredoc_body, + STATE(9654), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10462), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407467] = 7, + [410797] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - ACTIONS(12180), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(12182), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - STATE(9452), 1, + ACTIONS(11691), 1, + anon_sym_DASH_GT, + STATE(9458), 1, aux_sym_proc_type_repeat1, - STATE(9575), 1, + STATE(9651), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407490] = 7, + [410820] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - ACTIONS(12184), 1, - anon_sym_RPAREN, - ACTIONS(12186), 1, - anon_sym_COMMA, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9576), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12300), 1, + sym__percent_literal_end, + STATE(9438), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(9652), 1, sym_heredoc_body, + STATE(10553), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407513] = 7, + [410843] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - ACTIONS(12188), 1, - anon_sym_RPAREN, - ACTIONS(12190), 1, - anon_sym_COMMA, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9577), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12302), 1, + sym__percent_literal_end, + STATE(9438), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(9653), 1, sym_heredoc_body, + STATE(10553), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407536] = 7, + [410866] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - ACTIONS(12192), 1, - anon_sym_RPAREN, - ACTIONS(12194), 1, - anon_sym_COMMA, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9578), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12304), 1, + sym__percent_literal_end, + STATE(9487), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(9654), 1, sym_heredoc_body, + STATE(10462), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407559] = 7, + [410889] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - ACTIONS(12196), 1, - anon_sym_RPAREN, - ACTIONS(12198), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(395), 1, + sym_constant, + STATE(499), 1, + sym_generic_type, + STATE(9655), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [410912] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(12306), 1, + anon_sym_end, + STATE(9456), 1, + aux_sym_exhaustive_case_repeat1, + STATE(9656), 1, + sym_heredoc_body, + STATE(10531), 1, + sym_in, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [410935] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9657), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(11734), 4, + sym__line_break, + anon_sym_SEMI, anon_sym_COMMA, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9579), 1, + anon_sym_then, + [410952] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1045), 1, + sym__start_of_brace_block, + ACTIONS(7937), 1, + anon_sym_do, + STATE(9658), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + STATE(6933), 2, + sym_do_end_block, + sym_brace_block, + [410973] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(12308), 1, + anon_sym_end, + STATE(9456), 1, + aux_sym_exhaustive_case_repeat1, + STATE(9659), 1, sym_heredoc_body, + STATE(10531), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407582] = 7, + [410996] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(12200), 1, - sym__percent_literal_end, - STATE(9580), 1, - sym_heredoc_body, - STATE(9622), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10433), 1, - sym_percent_literal_array_word, + ACTIONS(12312), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407605] = 7, + ACTIONS(12310), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(9660), 2, + sym_heredoc_body, + aux_sym_named_tuple_type_repeat1, + [411015] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - ACTIONS(12202), 1, - anon_sym_RPAREN, - ACTIONS(12204), 1, - anon_sym_COMMA, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9581), 1, + ACTIONS(921), 1, + sym__start_of_brace_block, + ACTIONS(7714), 1, + anon_sym_do, + STATE(9661), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407628] = 6, + STATE(6402), 2, + sym_do_end_block, + sym_brace_block, + [411036] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(471), 1, + ACTIONS(1045), 1, sym__start_of_brace_block, - ACTIONS(6828), 1, + ACTIONS(7937), 1, anon_sym_do, - STATE(9582), 1, + STATE(9662), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4586), 2, + STATE(6744), 2, sym_do_end_block, sym_brace_block, - [407649] = 4, + [411057] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9583), 1, + ACTIONS(1045), 1, + sym__start_of_brace_block, + ACTIONS(7937), 1, + anon_sym_do, + STATE(9663), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6010), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [407666] = 7, + STATE(6786), 2, + sym_do_end_block, + sym_brace_block, + [411078] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, - anon_sym_RPAREN, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(11609), 1, - anon_sym_DASH_GT, - STATE(9396), 1, - aux_sym_proc_type_repeat1, - STATE(9584), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12315), 1, + sym__percent_literal_end, + STATE(9664), 1, sym_heredoc_body, + STATE(9680), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10553), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407689] = 7, + [411101] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(12206), 1, - anon_sym_end, - STATE(9375), 1, - aux_sym_exhaustive_case_repeat1, - STATE(9585), 1, + ACTIONS(9488), 1, + sym__constant_segment, + ACTIONS(9490), 1, + anon_sym_COLON_COLON, + STATE(378), 1, + sym_constant, + STATE(458), 1, + sym_generic_instance_type, + STATE(9665), 1, sym_heredoc_body, - STATE(10443), 1, - sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407712] = 6, + [411124] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(471), 1, + ACTIONS(921), 1, sym__start_of_brace_block, - ACTIONS(6828), 1, + ACTIONS(7714), 1, anon_sym_do, - STATE(9586), 1, + STATE(9666), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(4603), 2, + STATE(6493), 2, sym_do_end_block, sym_brace_block, - [407733] = 7, + [411145] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12317), 1, + sym__percent_literal_end, + STATE(9667), 1, + sym_heredoc_body, + STATE(9684), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10462), 1, + sym_percent_literal_array_word, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [411168] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9668), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6345), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [411185] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9453), 1, + STATE(9486), 1, aux_sym_proc_type_repeat1, - STATE(9587), 1, + STATE(9669), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407756] = 4, + [411208] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9588), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12319), 1, + sym__percent_literal_end, + STATE(9438), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(9670), 1, sym_heredoc_body, + STATE(10553), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4595), 4, - sym__start_of_brace_block, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_do, - [407773] = 7, + [411231] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, + ACTIONS(11939), 1, sym__delimited_array_element_start, - ACTIONS(12208), 1, + ACTIONS(12321), 1, sym__percent_literal_end, - STATE(9589), 1, + STATE(9671), 1, sym_heredoc_body, - STATE(9591), 1, + STATE(9674), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(10481), 1, + STATE(10553), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407796] = 7, + [411254] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, + ACTIONS(11939), 1, sym__delimited_array_element_start, - ACTIONS(12210), 1, + ACTIONS(12323), 1, sym__percent_literal_end, - STATE(9590), 1, + STATE(9672), 1, sym_heredoc_body, - STATE(9592), 1, + STATE(9675), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10433), 1, + STATE(10462), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407819] = 7, + [411277] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, + STATE(9673), 1, + sym_heredoc_body, + ACTIONS(12325), 2, + anon_sym_POUND_LBRACE, + aux_sym_regex_token1, + ACTIONS(12327), 2, + anon_sym_SLASH, + sym_regex_escape_sequence, + [411298] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11939), 1, sym__delimited_array_element_start, - ACTIONS(12212), 1, + ACTIONS(12329), 1, sym__percent_literal_end, - STATE(9459), 1, + STATE(9438), 1, aux_sym_string_array_percent_literal_repeat1, - STATE(9591), 1, + STATE(9674), 1, sym_heredoc_body, - STATE(10481), 1, + STATE(10553), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407842] = 7, + [411321] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, + ACTIONS(11939), 1, sym__delimited_array_element_start, - ACTIONS(12214), 1, + ACTIONS(12331), 1, sym__percent_literal_end, - STATE(9462), 1, + STATE(9487), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(9592), 1, + STATE(9675), 1, sym_heredoc_body, - STATE(10433), 1, + STATE(10462), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407865] = 7, + [411344] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(343), 1, - sym_constant, - STATE(417), 1, - sym_generic_instance_type, - STATE(9593), 1, + STATE(9676), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407888] = 6, + ACTIONS(12333), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [411361] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1029), 1, - sym__start_of_brace_block, - ACTIONS(7816), 1, - anon_sym_do, - STATE(9594), 1, + ACTIONS(4785), 1, + anon_sym_RPAREN, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(11691), 1, + anon_sym_DASH_GT, + STATE(9545), 1, + aux_sym_proc_type_repeat1, + STATE(9677), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6713), 2, - sym_do_end_block, - sym_brace_block, - [407909] = 4, + [411384] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9595), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12335), 1, + sym__percent_literal_end, + STATE(9487), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(9678), 1, sym_heredoc_body, + STATE(10462), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6314), 4, - sym__line_break, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_then, - [407926] = 4, + [411407] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9596), 1, + ACTIONS(4785), 1, + anon_sym_RPAREN, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(11691), 1, + anon_sym_DASH_GT, + STATE(9558), 1, + aux_sym_proc_type_repeat1, + STATE(9679), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12216), 4, - sym__regular_rescue_keyword, - sym__regular_ensure_keyword, - anon_sym_end, - anon_sym_else, - [407943] = 6, + [411430] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(857), 1, - sym__start_of_brace_block, - ACTIONS(7629), 1, - anon_sym_do, - STATE(9597), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12337), 1, + sym__percent_literal_end, + STATE(9438), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(9680), 1, sym_heredoc_body, + STATE(10553), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6280), 2, - sym_do_end_block, - sym_brace_block, - [407964] = 7, + [411453] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7381), 1, - anon_sym_in, - ACTIONS(12218), 1, - anon_sym_end, - STATE(9375), 1, - aux_sym_exhaustive_case_repeat1, - STATE(9598), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12339), 1, + sym__percent_literal_end, + STATE(9681), 1, sym_heredoc_body, - STATE(10443), 1, - sym_in, + STATE(9691), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(10553), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [407987] = 7, + [411476] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(355), 1, - sym_constant, - STATE(480), 1, - sym_generic_instance_type, - STATE(9599), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12341), 1, + sym__percent_literal_end, + STATE(9682), 1, sym_heredoc_body, + STATE(9692), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(10462), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408010] = 6, + [411499] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1029), 1, - sym__start_of_brace_block, - ACTIONS(7816), 1, - anon_sym_do, - STATE(9600), 1, + ACTIONS(4785), 1, + anon_sym_RPAREN, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(11691), 1, + anon_sym_DASH_GT, + STATE(9566), 1, + aux_sym_proc_type_repeat1, + STATE(9683), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6774), 2, - sym_do_end_block, - sym_brace_block, - [408031] = 7, + [411522] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10209), 1, - anon_sym_class, - ACTIONS(10211), 1, - anon_sym_struct, - ACTIONS(12016), 1, - anon_sym_def, - STATE(8321), 1, - sym__base_method_def, - STATE(9601), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12343), 1, + sym__percent_literal_end, + STATE(9487), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(9684), 1, sym_heredoc_body, + STATE(10462), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408054] = 6, + [411545] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(857), 1, + ACTIONS(257), 1, sym__start_of_brace_block, - ACTIONS(7629), 1, + ACTIONS(5555), 1, anon_sym_do, - STATE(9602), 1, + STATE(9685), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6330), 2, + STATE(2720), 2, sym_do_end_block, sym_brace_block, - [408075] = 6, + [411566] = 7, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(4785), 1, + anon_sym_RPAREN, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(11691), 1, + anon_sym_DASH_GT, + STATE(9579), 1, + aux_sym_proc_type_repeat1, + STATE(9686), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [411589] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(857), 1, + ACTIONS(209), 1, sym__start_of_brace_block, - ACTIONS(7629), 1, + ACTIONS(5549), 1, anon_sym_do, - STATE(9603), 1, + STATE(9687), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(6350), 2, + STATE(3056), 2, sym_do_end_block, sym_brace_block, - [408096] = 7, + [411610] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9494), 1, + STATE(9585), 1, aux_sym_proc_type_repeat1, - STATE(9604), 1, + STATE(9688), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408119] = 7, + [411633] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9499), 1, + STATE(9591), 1, aux_sym_proc_type_repeat1, - STATE(9605), 1, + STATE(9689), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408142] = 7, + [411656] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, - anon_sym_RPAREN, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(11609), 1, - anon_sym_DASH_GT, - STATE(9501), 1, - aux_sym_proc_type_repeat1, - STATE(9606), 1, + STATE(9690), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408165] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(9607), 1, - sym_heredoc_body, - ACTIONS(12220), 2, - anon_sym_POUND_LBRACE, - aux_sym_regex_token1, - ACTIONS(12222), 2, - anon_sym_SLASH, - sym_regex_escape_sequence, - [408186] = 7, + ACTIONS(12345), 4, + sym__line_break, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_then, + [411673] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, - anon_sym_RPAREN, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(11609), 1, - anon_sym_DASH_GT, - STATE(9503), 1, - aux_sym_proc_type_repeat1, - STATE(9608), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12347), 1, + sym__percent_literal_end, + STATE(9438), 1, + aux_sym_string_array_percent_literal_repeat1, + STATE(9691), 1, sym_heredoc_body, + STATE(10553), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408209] = 4, + [411696] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9609), 1, + ACTIONS(11939), 1, + sym__delimited_array_element_start, + ACTIONS(12349), 1, + sym__percent_literal_end, + STATE(9487), 1, + aux_sym_symbol_array_percent_literal_repeat1, + STATE(9692), 1, sym_heredoc_body, + STATE(10462), 1, + sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12224), 4, - sym__regular_rescue_keyword, - sym__regular_ensure_keyword, - anon_sym_end, - anon_sym_else, - [408226] = 7, + [411719] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9506), 1, + STATE(9594), 1, aux_sym_proc_type_repeat1, - STATE(9610), 1, + STATE(9693), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408249] = 7, + [411742] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(12226), 1, - sym__percent_literal_end, - STATE(9611), 1, + ACTIONS(7402), 1, + anon_sym_in, + ACTIONS(12351), 1, + anon_sym_end, + STATE(9456), 1, + aux_sym_exhaustive_case_repeat1, + STATE(9694), 1, sym_heredoc_body, - STATE(9618), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10481), 1, - sym_percent_literal_array_word, + STATE(10531), 1, + sym_in, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408272] = 7, + [411765] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9509), 1, + STATE(9596), 1, aux_sym_proc_type_repeat1, - STATE(9612), 1, + STATE(9695), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408295] = 7, + [411788] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, + ACTIONS(11939), 1, sym__delimited_array_element_start, - ACTIONS(12228), 1, + ACTIONS(12353), 1, sym__percent_literal_end, - STATE(9613), 1, - sym_heredoc_body, - STATE(9619), 1, + STATE(9487), 1, aux_sym_symbol_array_percent_literal_repeat1, - STATE(10433), 1, + STATE(9696), 1, + sym_heredoc_body, + STATE(10462), 1, sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408318] = 7, + [411811] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9515), 1, + STATE(9598), 1, aux_sym_proc_type_repeat1, - STATE(9614), 1, + STATE(9697), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408341] = 4, + [411834] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9615), 1, + ACTIONS(10290), 1, + anon_sym_class, + ACTIONS(10292), 1, + anon_sym_struct, + ACTIONS(12033), 1, + anon_sym_def, + STATE(8035), 1, + sym__base_method_def, + STATE(9698), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [411857] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9699), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12230), 4, + ACTIONS(12355), 4, sym__line_break, anon_sym_SEMI, anon_sym_COMMA, anon_sym_then, - [408358] = 7, + [411874] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9520), 1, + STATE(9599), 1, aux_sym_proc_type_repeat1, - STATE(9616), 1, + STATE(9700), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408381] = 7, + [411897] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9524), 1, + STATE(9601), 1, aux_sym_proc_type_repeat1, - STATE(9617), 1, + STATE(9701), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408404] = 7, + [411920] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(12232), 1, - sym__percent_literal_end, - STATE(9459), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(9618), 1, + ACTIONS(4785), 1, + anon_sym_RPAREN, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(11691), 1, + anon_sym_DASH_GT, + STATE(9604), 1, + aux_sym_proc_type_repeat1, + STATE(9702), 1, sym_heredoc_body, - STATE(10481), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408427] = 7, + [411943] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(12234), 1, - sym__percent_literal_end, - STATE(9462), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(9619), 1, + ACTIONS(4785), 1, + anon_sym_RPAREN, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(11691), 1, + anon_sym_DASH_GT, + STATE(9607), 1, + aux_sym_proc_type_repeat1, + STATE(9703), 1, sym_heredoc_body, - STATE(10433), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408450] = 7, + [411966] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(12236), 1, - sym__percent_literal_end, - STATE(9459), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(9620), 1, + ACTIONS(4785), 1, + anon_sym_RPAREN, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(11691), 1, + anon_sym_DASH_GT, + STATE(9608), 1, + aux_sym_proc_type_repeat1, + STATE(9704), 1, sym_heredoc_body, - STATE(10481), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408473] = 7, + [411989] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9526), 1, + STATE(9610), 1, aux_sym_proc_type_repeat1, - STATE(9621), 1, + STATE(9705), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408496] = 7, + [412012] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(12238), 1, - sym__percent_literal_end, - STATE(9462), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(9622), 1, + ACTIONS(4785), 1, + anon_sym_RPAREN, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(11691), 1, + anon_sym_DASH_GT, + STATE(9612), 1, + aux_sym_proc_type_repeat1, + STATE(9706), 1, sym_heredoc_body, - STATE(10433), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408519] = 6, + [412035] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12240), 1, - anon_sym_COLON3, - STATE(287), 1, - sym__terminator, - STATE(9623), 1, + ACTIONS(4785), 1, + anon_sym_RPAREN, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(11691), 1, + anon_sym_DASH_GT, + STATE(9616), 1, + aux_sym_proc_type_repeat1, + STATE(9707), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1409), 2, - sym__line_break, - anon_sym_SEMI, - [408540] = 7, + [412058] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(12242), 1, - sym__percent_literal_end, - STATE(9624), 1, + ACTIONS(4785), 1, + anon_sym_RPAREN, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(11691), 1, + anon_sym_DASH_GT, + STATE(9617), 1, + aux_sym_proc_type_repeat1, + STATE(9708), 1, sym_heredoc_body, - STATE(9665), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(10481), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408563] = 7, + [412081] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9531), 1, + STATE(9618), 1, aux_sym_proc_type_repeat1, - STATE(9625), 1, + STATE(9709), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408586] = 7, + [412104] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(12244), 1, - sym__percent_literal_end, - STATE(9626), 1, + ACTIONS(4785), 1, + anon_sym_RPAREN, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(11691), 1, + anon_sym_DASH_GT, + STATE(9619), 1, + aux_sym_proc_type_repeat1, + STATE(9710), 1, sym_heredoc_body, - STATE(9666), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(10433), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408609] = 7, + [412127] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9533), 1, + STATE(9621), 1, aux_sym_proc_type_repeat1, - STATE(9627), 1, + STATE(9711), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408632] = 5, + [412150] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8573), 1, - anon_sym_RBRACK, - STATE(9628), 1, + ACTIONS(4785), 1, + anon_sym_RPAREN, + ACTIONS(5496), 1, + anon_sym_COMMA, + ACTIONS(11691), 1, + anon_sym_DASH_GT, + STATE(9622), 1, + aux_sym_proc_type_repeat1, + STATE(9712), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8571), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK_QMARK, - [408651] = 7, + [412173] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9536), 1, + STATE(9623), 1, aux_sym_proc_type_repeat1, - STATE(9629), 1, + STATE(9713), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408674] = 7, + [412196] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9539), 1, + STATE(9624), 1, aux_sym_proc_type_repeat1, - STATE(9630), 1, + STATE(9714), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408697] = 7, + [412219] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9542), 1, + STATE(9625), 1, aux_sym_proc_type_repeat1, - STATE(9631), 1, + STATE(9715), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408720] = 7, + [412242] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9545), 1, + STATE(9626), 1, aux_sym_proc_type_repeat1, - STATE(9632), 1, + STATE(9716), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408743] = 7, + [412265] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9546), 1, + STATE(9628), 1, aux_sym_proc_type_repeat1, - STATE(9633), 1, + STATE(9717), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408766] = 7, + [412288] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9548), 1, + STATE(9629), 1, aux_sym_proc_type_repeat1, - STATE(9634), 1, + STATE(9718), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408789] = 7, + [412311] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9550), 1, + STATE(9630), 1, aux_sym_proc_type_repeat1, - STATE(9635), 1, + STATE(9719), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408812] = 7, + [412334] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9552), 1, + STATE(9631), 1, aux_sym_proc_type_repeat1, - STATE(9636), 1, + STATE(9720), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408835] = 7, + [412357] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9554), 1, + STATE(9632), 1, aux_sym_proc_type_repeat1, - STATE(9637), 1, + STATE(9721), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408858] = 7, + [412380] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9555), 1, + STATE(9633), 1, aux_sym_proc_type_repeat1, - STATE(9638), 1, + STATE(9722), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408881] = 7, + [412403] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9556), 1, + STATE(9634), 1, aux_sym_proc_type_repeat1, - STATE(9639), 1, + STATE(9723), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408904] = 7, + [412426] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9557), 1, + STATE(9635), 1, aux_sym_proc_type_repeat1, - STATE(9640), 1, + STATE(9724), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408927] = 7, + [412449] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9559), 1, + STATE(9636), 1, aux_sym_proc_type_repeat1, - STATE(9641), 1, + STATE(9725), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408950] = 7, + [412472] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9560), 1, + STATE(9637), 1, aux_sym_proc_type_repeat1, - STATE(9642), 1, + STATE(9726), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408973] = 7, + [412495] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9561), 1, + STATE(9638), 1, aux_sym_proc_type_repeat1, - STATE(9643), 1, + STATE(9727), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [408996] = 7, + [412518] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9562), 1, + STATE(9639), 1, aux_sym_proc_type_repeat1, - STATE(9644), 1, + STATE(9728), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409019] = 7, + [412541] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9563), 1, + STATE(9640), 1, aux_sym_proc_type_repeat1, - STATE(9645), 1, + STATE(9729), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409042] = 7, + [412564] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9564), 1, + STATE(9641), 1, aux_sym_proc_type_repeat1, - STATE(9646), 1, + STATE(9730), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409065] = 7, + [412587] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9565), 1, + STATE(9643), 1, aux_sym_proc_type_repeat1, - STATE(9647), 1, + STATE(9731), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409088] = 7, + [412610] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9566), 1, + STATE(9644), 1, aux_sym_proc_type_repeat1, - STATE(9648), 1, + STATE(9732), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409111] = 7, + [412633] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9567), 1, + STATE(9645), 1, aux_sym_proc_type_repeat1, - STATE(9649), 1, + STATE(9733), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409134] = 7, + [412656] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9568), 1, + STATE(9646), 1, aux_sym_proc_type_repeat1, - STATE(9650), 1, + STATE(9734), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409157] = 7, + [412679] = 7, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(4785), 1, anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(5496), 1, anon_sym_COMMA, - ACTIONS(11609), 1, + ACTIONS(11691), 1, anon_sym_DASH_GT, - STATE(9569), 1, + STATE(9647), 1, aux_sym_proc_type_repeat1, - STATE(9651), 1, + STATE(9735), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409180] = 7, + [412702] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, - anon_sym_RPAREN, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(11609), 1, - anon_sym_DASH_GT, - STATE(9570), 1, - aux_sym_proc_type_repeat1, - STATE(9652), 1, + ACTIONS(257), 1, + sym__start_of_brace_block, + ACTIONS(5555), 1, + anon_sym_do, + STATE(9736), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409203] = 7, + STATE(2739), 2, + sym_do_end_block, + sym_brace_block, + [412723] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + ACTIONS(8873), 1, + anon_sym_RBRACK, + STATE(9737), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(8871), 3, anon_sym_RPAREN, - ACTIONS(5481), 1, anon_sym_COMMA, - ACTIONS(11609), 1, - anon_sym_DASH_GT, - STATE(9571), 1, - aux_sym_proc_type_repeat1, - STATE(9653), 1, + anon_sym_RBRACK_QMARK, + [412742] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12357), 1, + anon_sym_end, + STATE(9738), 1, sym_heredoc_body, + STATE(11039), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409226] = 7, + [412762] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, - anon_sym_RPAREN, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(11609), 1, - anon_sym_DASH_GT, - STATE(9572), 1, - aux_sym_proc_type_repeat1, - STATE(9654), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12359), 1, + anon_sym_end, + STATE(9739), 1, sym_heredoc_body, + STATE(10873), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409249] = 7, + [412782] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, - anon_sym_RPAREN, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(11609), 1, - anon_sym_DASH_GT, - STATE(9573), 1, - aux_sym_proc_type_repeat1, - STATE(9655), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12361), 1, + anon_sym_end, + STATE(9740), 1, sym_heredoc_body, + STATE(11768), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409272] = 7, + [412802] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, - anon_sym_RPAREN, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(11609), 1, - anon_sym_DASH_GT, - STATE(9574), 1, - aux_sym_proc_type_repeat1, - STATE(9656), 1, + ACTIONS(10233), 1, + anon_sym_def, + ACTIONS(12363), 1, + anon_sym_abstract, + STATE(156), 1, + sym__base_method_def, + STATE(9741), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [412822] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12365), 1, + anon_sym_end, + STATE(9742), 1, sym_heredoc_body, + STATE(11437), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409295] = 7, + [412842] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + STATE(9743), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6225), 3, anon_sym_RPAREN, - ACTIONS(5481), 1, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(11609), 1, - anon_sym_DASH_GT, - STATE(9575), 1, - aux_sym_proc_type_repeat1, - STATE(9657), 1, + [412858] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9744), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6269), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [412874] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9745), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409318] = 7, + ACTIONS(6273), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [412890] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + STATE(9746), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6305), 3, anon_sym_RPAREN, - ACTIONS(5481), 1, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(11609), 1, - anon_sym_DASH_GT, - STATE(9576), 1, - aux_sym_proc_type_repeat1, - STATE(9658), 1, + [412906] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9747), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409341] = 7, + ACTIONS(6317), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [412922] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + STATE(9748), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5775), 3, anon_sym_RPAREN, - ACTIONS(5481), 1, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(11609), 1, - anon_sym_DASH_GT, - STATE(9577), 1, - aux_sym_proc_type_repeat1, - STATE(9659), 1, + [412938] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12367), 1, + anon_sym_end, + STATE(9749), 1, + sym_heredoc_body, + STATE(11452), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [412958] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12369), 1, + anon_sym_end, + STATE(9750), 1, sym_heredoc_body, + STATE(11596), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409364] = 7, + [412978] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, - anon_sym_RPAREN, - ACTIONS(5481), 1, + ACTIONS(10341), 1, + anon_sym_RBRACE, + ACTIONS(12371), 1, anon_sym_COMMA, - ACTIONS(11609), 1, - anon_sym_DASH_GT, - STATE(9578), 1, - aux_sym_proc_type_repeat1, STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(9751), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409387] = 7, + [412998] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, - anon_sym_RPAREN, - ACTIONS(5481), 1, - anon_sym_COMMA, - ACTIONS(11609), 1, - anon_sym_DASH_GT, - STATE(9579), 1, - aux_sym_proc_type_repeat1, - STATE(9661), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12373), 1, + anon_sym_end, + STATE(9752), 1, + sym_heredoc_body, + STATE(11850), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [413018] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9753), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409410] = 7, + ACTIONS(12375), 3, + sym_identifier, + sym_instance_var, + sym_class_var, + [413034] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4745), 1, + STATE(9754), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5855), 3, anon_sym_RPAREN, - ACTIONS(5481), 1, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(11609), 1, - anon_sym_DASH_GT, - STATE(9581), 1, - aux_sym_proc_type_repeat1, - STATE(9662), 1, + [413050] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9755), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409433] = 7, + ACTIONS(5907), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [413066] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9485), 1, - sym__constant_segment, - ACTIONS(9487), 1, - anon_sym_COLON_COLON, - STATE(297), 1, - sym_constant, - STATE(386), 1, - sym_generic_type, - STATE(9663), 1, + STATE(9756), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409456] = 6, + ACTIONS(5967), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [413082] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(519), 1, - sym__start_of_brace_block, - ACTIONS(6834), 1, - anon_sym_do, - STATE(9664), 1, + STATE(9757), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(3903), 2, - sym_do_end_block, - sym_brace_block, - [409477] = 7, + ACTIONS(5995), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [413098] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(12246), 1, - sym__percent_literal_end, - STATE(9459), 1, - aux_sym_string_array_percent_literal_repeat1, - STATE(9665), 1, + STATE(9758), 1, sym_heredoc_body, - STATE(10481), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409500] = 7, + ACTIONS(6011), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [413114] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(12248), 1, - sym__percent_literal_end, - STATE(9462), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(9666), 1, + ACTIONS(3275), 1, + anon_sym_RPAREN, + ACTIONS(12377), 1, + anon_sym_COMMA, + STATE(9759), 1, sym_heredoc_body, - STATE(10433), 1, - sym_percent_literal_array_word, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409523] = 7, + [413134] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11832), 1, - sym__delimited_array_element_start, - ACTIONS(12250), 1, - sym__percent_literal_end, - STATE(9514), 1, - aux_sym_symbol_array_percent_literal_repeat1, - STATE(9667), 1, + ACTIONS(4100), 1, + anon_sym_RBRACE, + ACTIONS(12379), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(9760), 1, sym_heredoc_body, - STATE(10433), 1, - sym_percent_literal_array_word, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409546] = 6, + [413154] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4041), 1, - anon_sym_RBRACK, - ACTIONS(12252), 1, + ACTIONS(4144), 1, + anon_sym_RPAREN, + ACTIONS(12381), 1, anon_sym_COMMA, - STATE(9279), 1, + STATE(9372), 1, aux_sym_array_repeat1, - STATE(9668), 1, + STATE(9761), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409566] = 5, + [413174] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12256), 1, - anon_sym_EQ, - STATE(9669), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12383), 1, + anon_sym_end, + STATE(9762), 1, sym_heredoc_body, + STATE(11488), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12254), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [409584] = 6, + [413194] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12258), 1, + ACTIONS(12385), 1, anon_sym_end, - STATE(9670), 1, + STATE(9763), 1, sym_heredoc_body, - STATE(11235), 1, + STATE(11492), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409604] = 6, + [413214] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12260), 1, + ACTIONS(12387), 1, anon_sym_end, - STATE(9671), 1, + STATE(9764), 1, sym_heredoc_body, - STATE(11242), 1, + STATE(11342), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409624] = 4, + [413234] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9672), 1, + ACTIONS(3877), 1, + anon_sym_RBRACE, + ACTIONS(12389), 1, + anon_sym_COMMA, + STATE(9765), 1, + sym_heredoc_body, + STATE(10275), 1, + aux_sym_hash_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [413254] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12391), 1, + anon_sym_RPAREN, + ACTIONS(12393), 1, + anon_sym_COMMA, + STATE(9766), 1, + sym_heredoc_body, + STATE(10019), 1, + aux_sym_param_list_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [413274] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(9646), 1, + anon_sym_RBRACE, + ACTIONS(12395), 1, + anon_sym_COMMA, + STATE(9767), 1, + sym_heredoc_body, + STATE(9904), 1, + aux_sym_proc_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [413294] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(3885), 1, + anon_sym_RBRACE, + ACTIONS(12397), 1, + anon_sym_COMMA, + STATE(9768), 1, + sym_heredoc_body, + STATE(10275), 1, + aux_sym_hash_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [413314] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(9769), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(12399), 3, + anon_sym_end, + anon_sym_else, + anon_sym_when, + [413330] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12401), 1, + anon_sym_end, + STATE(9770), 1, sym_heredoc_body, + STATE(11337), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4771), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [409640] = 6, + [413350] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12262), 1, + ACTIONS(12403), 1, anon_sym_end, - STATE(9673), 1, + STATE(9771), 1, sym_heredoc_body, - STATE(11334), 1, + STATE(11428), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409660] = 6, + [413370] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3913), 1, + ACTIONS(10339), 1, anon_sym_RBRACE, - ACTIONS(12264), 1, + ACTIONS(12405), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9674), 1, + STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(9772), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409680] = 6, + [413390] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12266), 1, - anon_sym_end, - STATE(9675), 1, + STATE(9773), 1, sym_heredoc_body, - STATE(11248), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409700] = 6, + ACTIONS(6345), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [413406] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12268), 1, - anon_sym_end, - STATE(9676), 1, - sym_heredoc_body, - STATE(11253), 1, - sym_ensure, + ACTIONS(12407), 1, + anon_sym_RPAREN, + ACTIONS(12409), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409720] = 6, + STATE(9774), 2, + sym_heredoc_body, + aux_sym_param_list_repeat1, + [413424] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12270), 1, + ACTIONS(12412), 1, anon_sym_end, - STATE(9677), 1, + STATE(9775), 1, sym_heredoc_body, - STATE(11533), 1, + STATE(11697), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409740] = 6, + [413444] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3781), 1, + ACTIONS(12414), 1, anon_sym_RBRACE, - ACTIONS(12272), 1, + ACTIONS(12416), 1, anon_sym_COMMA, - STATE(9678), 1, + STATE(9776), 1, sym_heredoc_body, - STATE(9934), 1, + STATE(9804), 1, aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409760] = 6, + [413464] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(12274), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12418), 1, anon_sym_end, - STATE(9679), 1, - sym_heredoc_body, - STATE(10742), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [409780] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10296), 1, - anon_sym_RBRACE, - ACTIONS(12276), 1, - anon_sym_COMMA, - STATE(9680), 1, + STATE(9777), 1, sym_heredoc_body, - STATE(10075), 1, - aux_sym_named_tuple_repeat1, + STATE(11517), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409800] = 6, + [413484] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12278), 1, + ACTIONS(12420), 1, anon_sym_RBRACE, - ACTIONS(12280), 1, + ACTIONS(12422), 1, anon_sym_COMMA, - STATE(9681), 1, + STATE(9778), 1, sym_heredoc_body, - STATE(9748), 1, - aux_sym_proc_type_repeat1, + STATE(10205), 1, + aux_sym_implicit_object_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409820] = 6, + [413504] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12282), 1, + ACTIONS(12424), 1, anon_sym_RBRACE, - ACTIONS(12284), 1, + ACTIONS(12426), 1, anon_sym_COMMA, - STATE(9682), 1, + STATE(9779), 1, sym_heredoc_body, - STATE(9750), 1, - aux_sym_named_tuple_type_repeat1, + STATE(9807), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409840] = 6, + [413524] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12286), 1, - anon_sym_RPAREN, - ACTIONS(12288), 1, - anon_sym_COMMA, - STATE(9683), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(12428), 1, + anon_sym_end, + STATE(9780), 1, sym_heredoc_body, - STATE(9994), 1, - aux_sym__block_body_nested_param_repeat1, + STATE(10646), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409860] = 4, + [413544] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9684), 1, + STATE(9781), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12290), 3, + ACTIONS(6049), 3, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [409876] = 6, + [413560] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3396), 1, + ACTIONS(10432), 1, anon_sym_RBRACE, - ACTIONS(12292), 1, + ACTIONS(12430), 1, anon_sym_COMMA, - STATE(9685), 1, + STATE(9782), 1, sym_heredoc_body, - STATE(10335), 1, - aux_sym_implicit_object_tuple_repeat1, + STATE(9812), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409896] = 6, + [413580] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3919), 1, - anon_sym_RBRACK, - ACTIONS(12294), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9686), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12432), 1, + anon_sym_end, + STATE(9783), 1, sym_heredoc_body, + STATE(11524), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409916] = 6, + [413600] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12296), 1, - anon_sym_end, - STATE(9687), 1, + STATE(9784), 1, sym_heredoc_body, - STATE(11418), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409936] = 6, + ACTIONS(12399), 3, + anon_sym_end, + anon_sym_else, + anon_sym_when, + [413616] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, + ACTIONS(12434), 1, + anon_sym_RBRACE, + ACTIONS(12436), 1, anon_sym_COMMA, - ACTIONS(12298), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9688), 1, + STATE(9785), 1, sym_heredoc_body, + STATE(9841), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409956] = 6, + [413636] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12300), 1, + ACTIONS(12438), 1, anon_sym_end, - STATE(9689), 1, + STATE(9786), 1, sym_heredoc_body, - STATE(11956), 1, + STATE(11548), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409976] = 6, + [413656] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - STATE(9690), 1, + ACTIONS(12440), 1, + anon_sym_RBRACE, + ACTIONS(12442), 1, + anon_sym_COMMA, + STATE(9787), 1, sym_heredoc_body, - STATE(11809), 1, - sym_constant, + STATE(9853), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [409996] = 6, + [413676] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8749), 1, - anon_sym_RPAREN, - ACTIONS(8751), 1, + ACTIONS(12444), 1, + anon_sym_RBRACE, + ACTIONS(12446), 1, anon_sym_COMMA, - STATE(9691), 1, + STATE(9788), 1, sym_heredoc_body, - STATE(9718), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(9857), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410016] = 6, + [413696] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12302), 1, + ACTIONS(12448), 1, anon_sym_end, - STATE(9692), 1, + STATE(9789), 1, sym_heredoc_body, - STATE(10814), 1, + STATE(11551), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410036] = 6, + [413716] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12304), 1, + ACTIONS(12450), 1, anon_sym_end, - STATE(9693), 1, + STATE(9790), 1, sym_heredoc_body, - STATE(10539), 1, + STATE(11735), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410056] = 6, + [413736] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12306), 1, + ACTIONS(12452), 1, anon_sym_end, - STATE(9694), 1, + STATE(9791), 1, sym_heredoc_body, - STATE(10549), 1, + STATE(11555), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410076] = 6, + [413756] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12308), 1, + ACTIONS(12454), 1, anon_sym_end, - STATE(9695), 1, + STATE(9792), 1, sym_heredoc_body, - STATE(11628), 1, + STATE(11557), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410096] = 6, + [413776] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12310), 1, - anon_sym_end, - STATE(9696), 1, + ACTIONS(10379), 1, + anon_sym_RBRACE, + ACTIONS(12456), 1, + anon_sym_COMMA, + STATE(9793), 1, sym_heredoc_body, - STATE(10784), 1, - sym_ensure, + STATE(9812), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410116] = 4, + [413796] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9697), 1, + ACTIONS(12458), 1, + anon_sym_RBRACE, + ACTIONS(12460), 1, + anon_sym_COMMA, + STATE(9794), 1, sym_heredoc_body, + STATE(9875), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5510), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [410132] = 6, + [413816] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12312), 1, - anon_sym_LPAREN, - ACTIONS(12314), 1, - anon_sym_RBRACK, - STATE(9698), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12462), 1, + anon_sym_end, + STATE(9795), 1, sym_heredoc_body, - STATE(11663), 1, - sym_annotation_argument_list, + STATE(11543), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410152] = 6, + [413836] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10298), 1, - anon_sym_RBRACE, - ACTIONS(12316), 1, + ACTIONS(4787), 1, anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(9699), 1, + ACTIONS(12464), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9796), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410172] = 6, + [413856] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12318), 1, + ACTIONS(12466), 1, anon_sym_end, - STATE(9700), 1, + STATE(9797), 1, sym_heredoc_body, - STATE(10820), 1, + STATE(10923), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410192] = 6, + [413876] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3244), 1, - anon_sym_RPAREN, - ACTIONS(12320), 1, - anon_sym_COMMA, - STATE(9701), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12468), 1, + anon_sym_end, + STATE(9798), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10831), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410212] = 6, + [413896] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4029), 1, - anon_sym_RPAREN, - ACTIONS(12322), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9702), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12470), 1, + anon_sym_end, + STATE(9799), 1, sym_heredoc_body, + STATE(12059), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410232] = 6, + [413916] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(12324), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12472), 1, anon_sym_end, - STATE(9703), 1, + STATE(9800), 1, sym_heredoc_body, - STATE(10580), 1, - sym_else, + STATE(11474), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410252] = 6, + [413936] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12326), 1, + ACTIONS(12474), 1, anon_sym_end, - STATE(9704), 1, + STATE(9801), 1, sym_heredoc_body, - STATE(10850), 1, + STATE(10868), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410272] = 6, + [413956] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12328), 1, + ACTIONS(4198), 1, anon_sym_RBRACE, - ACTIONS(12330), 1, + ACTIONS(12476), 1, anon_sym_COMMA, - STATE(9705), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(9802), 1, sym_heredoc_body, - STATE(9727), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410292] = 6, + [413976] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12332), 1, - anon_sym_RBRACE, - ACTIONS(12334), 1, + ACTIONS(3319), 1, + anon_sym_RPAREN, + ACTIONS(12478), 1, anon_sym_COMMA, - STATE(9706), 1, + STATE(9803), 1, sym_heredoc_body, - STATE(9728), 1, - aux_sym_named_tuple_type_repeat1, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410312] = 6, + [413996] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12336), 1, - anon_sym_end, - STATE(9707), 1, + ACTIONS(3865), 1, + anon_sym_RBRACE, + ACTIONS(12480), 1, + anon_sym_COMMA, + STATE(9804), 1, sym_heredoc_body, - STATE(10855), 1, - sym_ensure, + STATE(10275), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410332] = 6, + [414016] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12338), 1, - anon_sym_RBRACE, - ACTIONS(12340), 1, + ACTIONS(4132), 1, + anon_sym_RPAREN, + ACTIONS(12482), 1, anon_sym_COMMA, - STATE(9708), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(9805), 1, sym_heredoc_body, - STATE(9733), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410352] = 6, + [414036] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12342), 1, - anon_sym_RPAREN, - ACTIONS(12344), 1, + ACTIONS(4102), 1, + anon_sym_RBRACK, + ACTIONS(12484), 1, anon_sym_COMMA, - STATE(9683), 1, - aux_sym__block_body_nested_param_repeat1, - STATE(9709), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(9806), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410372] = 6, + [414056] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12346), 1, + ACTIONS(10452), 1, anon_sym_RBRACE, - ACTIONS(12348), 1, + ACTIONS(12486), 1, anon_sym_COMMA, - STATE(9710), 1, + STATE(9807), 1, sym_heredoc_body, - STATE(9740), 1, + STATE(9812), 1, aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410392] = 6, + [414076] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12350), 1, + ACTIONS(12488), 1, anon_sym_end, - STATE(9711), 1, + STATE(9808), 1, sym_heredoc_body, - STATE(11927), 1, + STATE(10950), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410412] = 6, + [414096] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, + ACTIONS(12490), 1, + anon_sym_RBRACE, + ACTIONS(12492), 1, anon_sym_COMMA, - ACTIONS(12352), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9712), 1, + STATE(9809), 1, sym_heredoc_body, + STATE(9835), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410432] = 6, + [414116] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12354), 1, - anon_sym_end, - STATE(9713), 1, + ACTIONS(12496), 1, + aux_sym__base_method_def_token1, + STATE(9810), 1, sym_heredoc_body, - STATE(10625), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410452] = 6, + ACTIONS(12494), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [414134] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12356), 1, - anon_sym_end, - STATE(9714), 1, + ACTIONS(12498), 1, + anon_sym_RBRACE, + ACTIONS(12500), 1, + anon_sym_COMMA, + STATE(9811), 1, sym_heredoc_body, - STATE(10641), 1, - sym_ensure, + STATE(9837), 1, + aux_sym_named_tuple_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [414154] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12502), 1, + anon_sym_RBRACE, + ACTIONS(12504), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410472] = 6, + STATE(9812), 2, + sym_heredoc_body, + aux_sym_named_tuple_repeat1, + [414172] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(4200), 1, + anon_sym_RBRACK, + ACTIONS(12507), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(9813), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [414192] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12358), 1, + ACTIONS(12509), 1, anon_sym_end, - STATE(9715), 1, + STATE(9814), 1, sym_heredoc_body, - STATE(11785), 1, + STATE(10996), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410492] = 4, + [414212] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9716), 1, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(12511), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9815), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6402), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [410508] = 6, + [414232] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12360), 1, - anon_sym_end, - STATE(9717), 1, + ACTIONS(12513), 1, + anon_sym_RBRACE, + ACTIONS(12515), 1, + anon_sym_COMMA, + STATE(9816), 1, sym_heredoc_body, - STATE(11965), 1, - sym_ensure, + STATE(9845), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410528] = 6, + [414252] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3332), 1, - anon_sym_RPAREN, - ACTIONS(12362), 1, + ACTIONS(12517), 1, + anon_sym_RBRACE, + ACTIONS(12519), 1, anon_sym_COMMA, - STATE(9718), 1, + STATE(9817), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(9849), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410548] = 4, + [414272] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9719), 1, + ACTIONS(12523), 1, + aux_sym__base_method_def_token1, + STATE(9818), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6190), 3, + ACTIONS(12521), 2, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_COMMA, - [410564] = 6, + [414290] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(12364), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12525), 1, anon_sym_end, - STATE(9720), 1, + STATE(9819), 1, sym_heredoc_body, - STATE(10906), 1, - sym_else, + STATE(11767), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410584] = 6, + [414310] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3969), 1, - anon_sym_RPAREN, - ACTIONS(12366), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9721), 1, + ACTIONS(12527), 1, + anon_sym_LPAREN, + ACTIONS(12529), 1, + anon_sym_RBRACK, + STATE(9820), 1, sym_heredoc_body, + STATE(11793), 1, + sym_annotation_argument_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410604] = 6, + [414330] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12368), 1, + ACTIONS(12531), 1, anon_sym_end, - STATE(9722), 1, + STATE(9821), 1, sym_heredoc_body, - STATE(11605), 1, + STATE(10753), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410624] = 6, + [414350] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12370), 1, - anon_sym_end, - STATE(9723), 1, + ACTIONS(8691), 1, + anon_sym_RPAREN, + ACTIONS(8693), 1, + anon_sym_COMMA, + STATE(9822), 1, sym_heredoc_body, - STATE(10665), 1, - sym_ensure, + STATE(9878), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410644] = 6, + [414370] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12372), 1, + ACTIONS(12533), 1, anon_sym_end, - STATE(9724), 1, + STATE(9823), 1, sym_heredoc_body, - STATE(10675), 1, + STATE(10863), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410664] = 6, + [414390] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12374), 1, + ACTIONS(12535), 1, anon_sym_end, - STATE(9725), 1, + STATE(9824), 1, sym_heredoc_body, - STATE(11086), 1, + STATE(10784), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410684] = 6, + [414410] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12376), 1, + ACTIONS(12537), 1, anon_sym_end, - STATE(9726), 1, + STATE(9825), 1, sym_heredoc_body, - STATE(10881), 1, + STATE(10804), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410704] = 6, + [414430] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9685), 1, - anon_sym_RBRACE, - ACTIONS(12378), 1, + ACTIONS(10299), 1, + anon_sym_RPAREN, + ACTIONS(12539), 1, anon_sym_COMMA, - STATE(9727), 1, + STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(9826), 1, sym_heredoc_body, - STATE(10009), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410724] = 6, + [414450] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10424), 1, - anon_sym_RBRACE, - ACTIONS(12380), 1, - anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(9728), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12541), 1, + anon_sym_end, + STATE(9827), 1, sym_heredoc_body, + STATE(10940), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410744] = 6, + [414470] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12382), 1, + ACTIONS(12543), 1, anon_sym_end, - STATE(9729), 1, + STATE(9828), 1, sym_heredoc_body, - STATE(11752), 1, + STATE(11900), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410764] = 6, + [414490] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12384), 1, + ACTIONS(12545), 1, anon_sym_end, - STATE(9730), 1, + STATE(9829), 1, sym_heredoc_body, - STATE(10711), 1, + STATE(11981), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410784] = 6, + [414510] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4045), 1, - anon_sym_RBRACE, - ACTIONS(12386), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9731), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12547), 1, + anon_sym_end, + STATE(9830), 1, sym_heredoc_body, + STATE(11748), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410804] = 6, + [414530] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12388), 1, + ACTIONS(12549), 1, anon_sym_end, - STATE(9732), 1, + STATE(9831), 1, sym_heredoc_body, - STATE(10721), 1, + STATE(11978), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410824] = 6, + [414550] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3739), 1, - anon_sym_RBRACE, - ACTIONS(12390), 1, - anon_sym_COMMA, - STATE(9733), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12551), 1, + anon_sym_end, + STATE(9832), 1, sym_heredoc_body, - STATE(9934), 1, - aux_sym_hash_repeat1, + STATE(11966), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410844] = 6, + [414570] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9657), 1, - anon_sym_RBRACE, - ACTIONS(12392), 1, - anon_sym_COMMA, - STATE(9734), 1, + STATE(9833), 1, sym_heredoc_body, - STATE(10009), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410864] = 6, + ACTIONS(12553), 3, + anon_sym_end, + anon_sym_elsif, + anon_sym_else, + [414586] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3406), 1, + ACTIONS(4056), 1, anon_sym_RBRACE, - ACTIONS(12394), 1, + ACTIONS(12555), 1, anon_sym_COMMA, - STATE(9279), 1, + STATE(9372), 1, aux_sym_array_repeat1, - STATE(9735), 1, + STATE(9834), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410884] = 4, + [414606] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9736), 1, + ACTIONS(3817), 1, + anon_sym_RBRACE, + ACTIONS(12557), 1, + anon_sym_COMMA, + STATE(9835), 1, sym_heredoc_body, + STATE(10275), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5808), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [410900] = 4, + [414626] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9737), 1, + ACTIONS(4112), 1, + anon_sym_RBRACE, + ACTIONS(12559), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(9836), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5816), 3, - anon_sym_RPAREN, + [414646] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10369), 1, anon_sym_RBRACE, + ACTIONS(12561), 1, anon_sym_COMMA, - [410916] = 6, + STATE(9812), 1, + aux_sym_named_tuple_repeat1, + STATE(9837), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [414666] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12396), 1, - anon_sym_end, - STATE(9738), 1, + STATE(9838), 1, sym_heredoc_body, - STATE(10748), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410936] = 4, + ACTIONS(12563), 3, + anon_sym_end, + anon_sym_else, + anon_sym_when, + [414682] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9739), 1, + STATE(9839), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5844), 3, + ACTIONS(6373), 3, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [410952] = 6, + [414698] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10406), 1, - anon_sym_RBRACE, - ACTIONS(12398), 1, + ACTIONS(4058), 1, + anon_sym_RBRACK, + ACTIONS(12565), 1, anon_sym_COMMA, - STATE(9740), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(9840), 1, sym_heredoc_body, - STATE(10075), 1, - aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410972] = 6, + [414718] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12400), 1, - anon_sym_end, - STATE(9741), 1, + ACTIONS(3791), 1, + anon_sym_RBRACE, + ACTIONS(12567), 1, + anon_sym_COMMA, + STATE(9841), 1, sym_heredoc_body, - STATE(11477), 1, - sym_ensure, + STATE(10275), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [410992] = 6, + [414738] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12402), 1, + ACTIONS(12569), 1, anon_sym_end, - STATE(9742), 1, + STATE(9842), 1, sym_heredoc_body, - STATE(10758), 1, + STATE(12022), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411012] = 6, + [414758] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12404), 1, - anon_sym_end, - STATE(9743), 1, + ACTIONS(4318), 1, + anon_sym_RBRACE, + ACTIONS(12571), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(9843), 1, sym_heredoc_body, - STATE(10769), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411032] = 6, + [414778] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12406), 1, - anon_sym_end, - STATE(9744), 1, + ACTIONS(10958), 1, + sym_identifier, + ACTIONS(12573), 1, + anon_sym_RPAREN, + STATE(9844), 1, sym_heredoc_body, - STATE(10772), 1, - sym_ensure, + STATE(10475), 1, + sym_block_body_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411052] = 6, + [414798] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3398), 1, + ACTIONS(3845), 1, anon_sym_RBRACE, - ACTIONS(12408), 1, + ACTIONS(12575), 1, anon_sym_COMMA, - STATE(9745), 1, + STATE(9845), 1, sym_heredoc_body, - STATE(9850), 1, - aux_sym_implicit_object_tuple_repeat1, + STATE(10275), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411072] = 4, + [414818] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9746), 1, + ACTIONS(12527), 1, + anon_sym_LPAREN, + ACTIONS(12577), 1, + anon_sym_RBRACK, + STATE(9846), 1, sym_heredoc_body, + STATE(11754), 1, + sym_annotation_argument_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12410), 3, - anon_sym_end, - anon_sym_else, - anon_sym_when, - [411088] = 4, + [414838] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9747), 1, + STATE(9847), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5947), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [411104] = 6, + ACTIONS(12399), 3, + anon_sym_end, + anon_sym_else, + anon_sym_when, + [414854] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9635), 1, - anon_sym_RBRACE, - ACTIONS(12412), 1, - anon_sym_COMMA, - STATE(9748), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12579), 1, + anon_sym_end, + STATE(9848), 1, sym_heredoc_body, - STATE(10009), 1, - aux_sym_proc_type_repeat1, + STATE(12049), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411124] = 4, + [414874] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9749), 1, + ACTIONS(10347), 1, + anon_sym_RBRACE, + ACTIONS(12581), 1, + anon_sym_COMMA, + STATE(9812), 1, + aux_sym_named_tuple_repeat1, + STATE(9849), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12414), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [411140] = 6, + [414894] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10256), 1, - anon_sym_RBRACE, - ACTIONS(12416), 1, + ACTIONS(8651), 1, + anon_sym_RPAREN, + ACTIONS(8653), 1, anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(9750), 1, + STATE(9850), 1, sym_heredoc_body, + STATE(10066), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411160] = 6, + [414914] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3945), 1, - anon_sym_RBRACE, - ACTIONS(12418), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9751), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(12583), 1, + anon_sym_end, + STATE(9851), 1, sym_heredoc_body, + STATE(10822), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411180] = 6, + [414934] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12420), 1, + ACTIONS(12585), 1, anon_sym_end, - STATE(9752), 1, + STATE(9852), 1, sym_heredoc_body, - STATE(11175), 1, + STATE(10581), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411200] = 6, + [414954] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3713), 1, + ACTIONS(10381), 1, anon_sym_RBRACE, - ACTIONS(12422), 1, + ACTIONS(12587), 1, anon_sym_COMMA, - STATE(9753), 1, + STATE(9812), 1, + aux_sym_named_tuple_repeat1, + STATE(9853), 1, sym_heredoc_body, - STATE(9934), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411220] = 6, + [414974] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3727), 1, - anon_sym_RBRACE, - ACTIONS(12424), 1, + ACTIONS(4150), 1, + anon_sym_RBRACK, + ACTIONS(12589), 1, anon_sym_COMMA, - STATE(9754), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(9854), 1, sym_heredoc_body, - STATE(9934), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411240] = 6, + [414994] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4253), 1, - anon_sym_RBRACK, - ACTIONS(12426), 1, + ACTIONS(8531), 1, + anon_sym_RPAREN, + ACTIONS(8835), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9755), 1, + STATE(9855), 1, sym_heredoc_body, + STATE(9893), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [415014] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12591), 1, + anon_sym_RPAREN, + ACTIONS(12593), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411260] = 6, + STATE(9856), 2, + sym_heredoc_body, + aux_sym__block_body_nested_param_repeat1, + [415032] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10320), 1, + ACTIONS(9746), 1, anon_sym_RBRACE, - ACTIONS(12428), 1, + ACTIONS(12596), 1, anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(9756), 1, + STATE(9857), 1, sym_heredoc_body, + STATE(9904), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411280] = 6, + [415052] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12430), 1, + ACTIONS(12598), 1, anon_sym_end, - STATE(9757), 1, + STATE(9858), 1, sym_heredoc_body, - STATE(11198), 1, + STATE(10592), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411300] = 6, + [415072] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12432), 1, + ACTIONS(12600), 1, anon_sym_end, - STATE(9758), 1, + STATE(9859), 1, sym_heredoc_body, - STATE(11478), 1, + STATE(10595), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411320] = 6, + [415092] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12434), 1, + ACTIONS(12602), 1, anon_sym_end, - STATE(9759), 1, + STATE(9860), 1, sym_heredoc_body, - STATE(11124), 1, + STATE(10672), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411340] = 6, + [415112] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12436), 1, + ACTIONS(8585), 1, + anon_sym_RPAREN, + ACTIONS(8791), 1, anon_sym_COMMA, - ACTIONS(12438), 1, - anon_sym_PIPE, - STATE(9760), 1, + STATE(9861), 1, sym_heredoc_body, - STATE(10022), 1, - aux_sym_block_param_list_repeat1, + STATE(10351), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411360] = 6, + [415132] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12440), 1, - anon_sym_end, - STATE(9761), 1, + ACTIONS(12604), 1, + anon_sym_RBRACE, + ACTIONS(12606), 1, + anon_sym_COMMA, + STATE(9862), 1, sym_heredoc_body, - STATE(11566), 1, - sym_ensure, + STATE(9900), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411380] = 4, + [415152] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9762), 1, + ACTIONS(8593), 1, + anon_sym_RPAREN, + ACTIONS(8956), 1, + anon_sym_COMMA, + STATE(9863), 1, sym_heredoc_body, + STATE(9932), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12442), 3, - anon_sym_RPAREN, + [415172] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12608), 1, anon_sym_RBRACE, + ACTIONS(12610), 1, anon_sym_COMMA, - [411396] = 5, + STATE(9864), 1, + sym_heredoc_body, + STATE(9905), 1, + aux_sym_named_tuple_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [415192] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8571), 1, + ACTIONS(4114), 1, anon_sym_RBRACK, - ACTIONS(12444), 1, + ACTIONS(12612), 1, anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(9865), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9763), 2, - sym_heredoc_body, - aux_sym_annotation_argument_list_repeat1, - [411414] = 6, + [415212] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3250), 1, - anon_sym_RPAREN, - ACTIONS(12447), 1, - anon_sym_COMMA, - STATE(9764), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12614), 1, + anon_sym_end, + STATE(9866), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10712), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411434] = 6, + [415232] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12449), 1, + ACTIONS(12616), 1, anon_sym_end, - STATE(9765), 1, + STATE(9867), 1, sym_heredoc_body, - STATE(11660), 1, + STATE(10601), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411454] = 6, + [415252] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12451), 1, - anon_sym_RBRACE, - ACTIONS(12453), 1, - anon_sym_COMMA, - STATE(9766), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12618), 1, + anon_sym_end, + STATE(9868), 1, sym_heredoc_body, - STATE(10003), 1, - aux_sym_proc_type_repeat1, + STATE(10604), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411474] = 6, + [415272] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10410), 1, - anon_sym_RBRACE, - ACTIONS(12455), 1, - anon_sym_COMMA, - STATE(9767), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12620), 1, + anon_sym_end, + STATE(9869), 1, sym_heredoc_body, - STATE(10075), 1, - aux_sym_named_tuple_repeat1, + STATE(10716), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411494] = 6, + [415292] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8656), 1, - anon_sym_RPAREN, - ACTIONS(8658), 1, - anon_sym_COMMA, - STATE(9768), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12622), 1, + anon_sym_end, + STATE(9870), 1, sym_heredoc_body, - STATE(9787), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10725), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411514] = 6, + [415312] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12457), 1, - anon_sym_RBRACE, - ACTIONS(12459), 1, + ACTIONS(4787), 1, anon_sym_COMMA, - STATE(9769), 1, + ACTIONS(12624), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9871), 1, sym_heredoc_body, - STATE(10008), 1, - aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411534] = 6, + [415332] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12461), 1, + ACTIONS(12626), 1, anon_sym_end, - STATE(9770), 1, + STATE(9872), 1, sym_heredoc_body, - STATE(11688), 1, + STATE(10845), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411554] = 4, + [415352] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9771), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(12628), 1, + anon_sym_end, + STATE(9873), 1, sym_heredoc_body, + STATE(10608), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5951), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [411570] = 6, + [415372] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8757), 1, - anon_sym_RPAREN, - ACTIONS(8759), 1, - anon_sym_COMMA, - STATE(9772), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12630), 1, + anon_sym_end, + STATE(9874), 1, sym_heredoc_body, - STATE(9807), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10861), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411590] = 6, + [415392] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12463), 1, - anon_sym_end, - STATE(9773), 1, + ACTIONS(10474), 1, + anon_sym_RBRACE, + ACTIONS(12632), 1, + anon_sym_COMMA, + STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(9875), 1, sym_heredoc_body, - STATE(11694), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411610] = 4, + [415412] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9774), 1, + ACTIONS(12634), 1, + anon_sym_RBRACE, + ACTIONS(12636), 1, + anon_sym_COMMA, + STATE(9876), 1, sym_heredoc_body, + STATE(9902), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5959), 3, - anon_sym_RPAREN, + [415432] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12638), 1, anon_sym_RBRACE, + ACTIONS(12640), 1, anon_sym_COMMA, - [411626] = 6, + STATE(9877), 1, + sym_heredoc_body, + STATE(9903), 1, + aux_sym_named_tuple_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [415452] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4277), 1, - anon_sym_RBRACK, - ACTIONS(12465), 1, + ACTIONS(3285), 1, + anon_sym_RPAREN, + ACTIONS(12642), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9775), 1, + STATE(9878), 1, sym_heredoc_body, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411646] = 5, + [415472] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12467), 1, - anon_sym_RPAREN, - ACTIONS(12469), 1, + ACTIONS(4787), 1, anon_sym_COMMA, + ACTIONS(11983), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9879), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9776), 2, + [415492] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12644), 1, + anon_sym_end, + STATE(9880), 1, sym_heredoc_body, - aux_sym_type_param_list_repeat1, - [411664] = 6, + STATE(10620), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [415512] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12472), 1, - anon_sym_RBRACE, - ACTIONS(12474), 1, - anon_sym_COMMA, - STATE(9777), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12646), 1, + anon_sym_end, + STATE(9881), 1, sym_heredoc_body, - STATE(9817), 1, - aux_sym_proc_type_repeat1, + STATE(10623), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411684] = 6, + [415532] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12476), 1, - anon_sym_RBRACE, - ACTIONS(12478), 1, - anon_sym_COMMA, - STATE(9778), 1, + STATE(9882), 1, sym_heredoc_body, - STATE(9821), 1, - aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411704] = 6, + ACTIONS(6281), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [415548] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, + ACTIONS(4206), 1, + anon_sym_RPAREN, + ACTIONS(12648), 1, anon_sym_COMMA, - ACTIONS(11904), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9779), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(9883), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411724] = 6, + [415568] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12480), 1, + ACTIONS(12650), 1, anon_sym_end, - STATE(9780), 1, + STATE(9884), 1, sym_heredoc_body, - STATE(10551), 1, + STATE(10630), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411744] = 6, + [415588] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(12482), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12652), 1, anon_sym_end, - STATE(9781), 1, + STATE(9885), 1, sym_heredoc_body, - STATE(11725), 1, - sym_else, + STATE(10633), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411764] = 6, + [415608] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12484), 1, - anon_sym_RBRACE, - ACTIONS(12486), 1, - anon_sym_COMMA, - STATE(9782), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + STATE(9886), 1, sym_heredoc_body, - STATE(9793), 1, - aux_sym_proc_type_repeat1, + STATE(10792), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411784] = 6, + [415628] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12488), 1, - anon_sym_RBRACE, - ACTIONS(12490), 1, + ACTIONS(12654), 1, + anon_sym_RPAREN, + ACTIONS(12656), 1, anon_sym_COMMA, - STATE(9783), 1, + STATE(9887), 1, sym_heredoc_body, - STATE(9794), 1, - aux_sym_named_tuple_type_repeat1, + STATE(10337), 1, + aux_sym__block_body_nested_param_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411804] = 6, + [415648] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(12492), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9784), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12658), 1, + anon_sym_end, + STATE(9888), 1, sym_heredoc_body, + STATE(10641), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411824] = 6, + [415668] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12494), 1, + ACTIONS(12660), 1, anon_sym_end, - STATE(9785), 1, + STATE(9889), 1, + sym_heredoc_body, + STATE(10878), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [415688] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12662), 1, + anon_sym_end, + STATE(9890), 1, + sym_heredoc_body, + STATE(10644), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [415708] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11297), 1, + anon_sym_PIPE, + ACTIONS(12664), 1, + anon_sym_COMMA, + STATE(9891), 1, sym_heredoc_body, - STATE(11762), 1, - sym_ensure, + STATE(10342), 1, + aux_sym_block_param_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411844] = 6, + [415728] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12496), 1, + ACTIONS(12666), 1, anon_sym_end, - STATE(9786), 1, + STATE(9892), 1, sym_heredoc_body, - STATE(11773), 1, + STATE(10885), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411864] = 6, + [415748] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3284), 1, + ACTIONS(3355), 1, anon_sym_RPAREN, - ACTIONS(12498), 1, + ACTIONS(12668), 1, anon_sym_COMMA, - STATE(9787), 1, + STATE(9893), 1, sym_heredoc_body, - STATE(10331), 1, + STATE(10075), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411884] = 6, + [415768] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4271), 1, + ACTIONS(4064), 1, anon_sym_RPAREN, - ACTIONS(12500), 1, + ACTIONS(12670), 1, anon_sym_COMMA, - STATE(9279), 1, + STATE(9372), 1, aux_sym_array_repeat1, - STATE(9788), 1, + STATE(9894), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411904] = 6, + [415788] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12502), 1, + ACTIONS(12672), 1, anon_sym_end, - STATE(9789), 1, + STATE(9895), 1, sym_heredoc_body, - STATE(11792), 1, + STATE(10651), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411924] = 6, + [415808] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12504), 1, + ACTIONS(12674), 1, anon_sym_end, - STATE(9790), 1, + STATE(9896), 1, sym_heredoc_body, - STATE(10983), 1, + STATE(10654), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411944] = 6, + [415828] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12506), 1, + ACTIONS(12676), 1, anon_sym_end, - STATE(9791), 1, + STATE(9897), 1, sym_heredoc_body, - STATE(11802), 1, + STATE(10656), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411964] = 6, + [415848] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(12508), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9792), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(12678), 1, + anon_sym_end, + STATE(9898), 1, sym_heredoc_body, + STATE(11578), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [411984] = 6, + [415868] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9547), 1, - anon_sym_RBRACE, - ACTIONS(12510), 1, - anon_sym_COMMA, - STATE(9793), 1, + ACTIONS(12682), 1, + anon_sym_EQ, + STATE(9899), 1, sym_heredoc_body, - STATE(10009), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412004] = 6, + ACTIONS(12680), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [415886] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10445), 1, + ACTIONS(9614), 1, anon_sym_RBRACE, - ACTIONS(12512), 1, + ACTIONS(12684), 1, anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(9794), 1, + STATE(9900), 1, sym_heredoc_body, + STATE(9904), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412024] = 6, + [415906] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - STATE(9795), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(12686), 1, + anon_sym_end, + STATE(9901), 1, sym_heredoc_body, - STATE(10572), 1, - sym_constant, + STATE(10731), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412044] = 6, + [415926] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12514), 1, - anon_sym_end, - STATE(9796), 1, + ACTIONS(9712), 1, + anon_sym_RBRACE, + ACTIONS(12688), 1, + anon_sym_COMMA, + STATE(9902), 1, sym_heredoc_body, - STATE(11830), 1, - sym_ensure, + STATE(9904), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412064] = 6, + [415946] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12516), 1, - anon_sym_end, - STATE(9797), 1, + ACTIONS(10385), 1, + anon_sym_RBRACE, + ACTIONS(12690), 1, + anon_sym_COMMA, + STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(9903), 1, sym_heredoc_body, - STATE(10990), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412084] = 6, + [415966] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12518), 1, - anon_sym_end, - STATE(9798), 1, - sym_heredoc_body, - STATE(11837), 1, - sym_ensure, + ACTIONS(12053), 1, + anon_sym_RBRACE, + ACTIONS(12692), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412104] = 6, + STATE(9904), 2, + sym_heredoc_body, + aux_sym_proc_type_repeat1, + [415984] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12520), 1, - anon_sym_end, - STATE(9799), 1, + ACTIONS(10464), 1, + anon_sym_RBRACE, + ACTIONS(12695), 1, + anon_sym_COMMA, + STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(9905), 1, sym_heredoc_body, - STATE(11222), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412124] = 6, + [416004] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12522), 1, + ACTIONS(12697), 1, anon_sym_end, - STATE(9800), 1, + STATE(9906), 1, sym_heredoc_body, - STATE(11234), 1, + STATE(11052), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412144] = 6, + [416024] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12524), 1, + ACTIONS(12699), 1, anon_sym_end, - STATE(9801), 1, + STATE(9907), 1, sym_heredoc_body, - STATE(10592), 1, + STATE(10669), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412164] = 6, + [416044] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12526), 1, + ACTIONS(12701), 1, anon_sym_end, - STATE(9802), 1, + STATE(9908), 1, sym_heredoc_body, - STATE(11856), 1, + STATE(10931), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412184] = 6, + [416064] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12528), 1, + ACTIONS(12703), 1, anon_sym_end, - STATE(9803), 1, + STATE(9909), 1, sym_heredoc_body, - STATE(11287), 1, + STATE(11009), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412204] = 6, + [416084] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12530), 1, - anon_sym_end, - STATE(9804), 1, + ACTIONS(12705), 1, + anon_sym_RBRACE, + ACTIONS(12707), 1, + anon_sym_COMMA, + STATE(9910), 1, sym_heredoc_body, - STATE(11872), 1, - sym_ensure, + STATE(9945), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412224] = 6, + [416104] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12532), 1, + ACTIONS(12709), 1, anon_sym_end, - STATE(9805), 1, + STATE(9911), 1, sym_heredoc_body, - STATE(11883), 1, + STATE(10676), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412244] = 6, + [416124] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12534), 1, - anon_sym_end, - STATE(9806), 1, + ACTIONS(12711), 1, + anon_sym_RBRACE, + ACTIONS(12713), 1, + anon_sym_COMMA, + STATE(9912), 1, sym_heredoc_body, - STATE(11887), 1, - sym_ensure, + STATE(9947), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412264] = 6, + [416144] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3338), 1, - anon_sym_RPAREN, - ACTIONS(12536), 1, - anon_sym_COMMA, - STATE(9807), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12715), 1, + anon_sym_end, + STATE(9913), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10679), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412284] = 5, + [416164] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8935), 1, - anon_sym_RBRACE, - ACTIONS(12538), 1, + ACTIONS(12717), 1, + anon_sym_RPAREN, + ACTIONS(12719), 1, anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9808), 2, + STATE(9914), 2, sym_heredoc_body, - aux_sym_implicit_object_tuple_repeat1, - [412302] = 6, + aux_sym_proc_param_list_repeat1, + [416182] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12541), 1, + ACTIONS(12722), 1, anon_sym_end, - STATE(9809), 1, + STATE(9915), 1, sym_heredoc_body, - STATE(10674), 1, + STATE(10683), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412322] = 4, + [416202] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9810), 1, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(12724), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9916), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12543), 3, - anon_sym_end, - anon_sym_else, - anon_sym_when, - [412338] = 6, + [416222] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4075), 1, - anon_sym_RPAREN, - ACTIONS(12545), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9811), 1, + STATE(281), 1, + sym__terminator, + STATE(9917), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412358] = 6, + ACTIONS(1429), 2, + sym__line_break, + anon_sym_SEMI, + [416240] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8589), 1, - anon_sym_RPAREN, - ACTIONS(8591), 1, - anon_sym_COMMA, - STATE(9812), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12726), 1, + anon_sym_end, + STATE(9918), 1, sym_heredoc_body, - STATE(9893), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10937), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412378] = 4, + [416260] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9813), 1, + ACTIONS(9728), 1, + anon_sym_RBRACE, + ACTIONS(12728), 1, + anon_sym_COMMA, + STATE(9904), 1, + aux_sym_proc_type_repeat1, + STATE(9919), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12547), 3, - sym__line_break, - anon_sym_SEMI, - anon_sym_end, - [412394] = 6, + [416280] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12549), 1, + ACTIONS(12730), 1, anon_sym_end, - STATE(9814), 1, + STATE(9920), 1, sym_heredoc_body, - STATE(10689), 1, + STATE(10690), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412414] = 6, + [416300] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12551), 1, + ACTIONS(12732), 1, anon_sym_end, - STATE(9815), 1, + STATE(9921), 1, sym_heredoc_body, - STATE(11014), 1, + STATE(10744), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412434] = 6, + [416320] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3997), 1, - anon_sym_RPAREN, - ACTIONS(12553), 1, + ACTIONS(8366), 1, + anon_sym_RBRACK, + ACTIONS(8936), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9816), 1, + STATE(9922), 1, sym_heredoc_body, + STATE(10027), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412454] = 6, + [416340] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9531), 1, + ACTIONS(10389), 1, anon_sym_RBRACE, - ACTIONS(12555), 1, + ACTIONS(12734), 1, anon_sym_COMMA, - STATE(9817), 1, + STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(9923), 1, sym_heredoc_body, - STATE(10009), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412474] = 6, + [416360] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12557), 1, - anon_sym_end, - STATE(9818), 1, + ACTIONS(4126), 1, + anon_sym_RBRACK, + ACTIONS(12736), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(9924), 1, sym_heredoc_body, - STATE(10695), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412494] = 6, + [416380] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12559), 1, - anon_sym_RBRACE, - ACTIONS(12561), 1, + ACTIONS(10751), 1, + anon_sym_RPAREN, + ACTIONS(12738), 1, anon_sym_COMMA, - STATE(9819), 1, + STATE(9914), 1, + aux_sym_proc_param_list_repeat1, + STATE(9925), 1, sym_heredoc_body, - STATE(10016), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412514] = 6, + [416400] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12563), 1, - anon_sym_RBRACE, - ACTIONS(12565), 1, - anon_sym_COMMA, - STATE(9820), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12740), 1, + anon_sym_end, + STATE(9926), 1, sym_heredoc_body, - STATE(9836), 1, - aux_sym_hash_repeat1, + STATE(10697), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412534] = 6, + [416420] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10264), 1, - anon_sym_RBRACE, - ACTIONS(12567), 1, - anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(9821), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12742), 1, + anon_sym_end, + STATE(9927), 1, sym_heredoc_body, + STATE(10752), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412554] = 6, + [416440] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12569), 1, - anon_sym_RBRACE, - ACTIONS(12571), 1, - anon_sym_COMMA, - STATE(9822), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12744), 1, + anon_sym_end, + STATE(9928), 1, sym_heredoc_body, - STATE(9838), 1, - aux_sym_named_tuple_repeat1, + STATE(10700), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412574] = 6, + [416460] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12573), 1, + ACTIONS(12746), 1, anon_sym_end, - STATE(9823), 1, + STATE(9929), 1, sym_heredoc_body, - STATE(11025), 1, + STATE(10951), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412594] = 6, + [416480] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12575), 1, + ACTIONS(12748), 1, anon_sym_end, - STATE(9824), 1, + STATE(9930), 1, sym_heredoc_body, STATE(10702), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412614] = 4, + [416500] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9825), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12750), 1, + anon_sym_end, + STATE(9931), 1, sym_heredoc_body, + STATE(10955), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6314), 3, + [416520] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(3321), 1, anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(12752), 1, anon_sym_COMMA, - [412630] = 6, + STATE(9932), 1, + sym_heredoc_body, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [416540] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12577), 1, - anon_sym_end, - STATE(9826), 1, + ACTIONS(4156), 1, + anon_sym_RPAREN, + ACTIONS(12754), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(9933), 1, sym_heredoc_body, - STATE(11293), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412650] = 4, + [416560] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9827), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12756), 1, + anon_sym_end, + STATE(9934), 1, sym_heredoc_body, + STATE(10770), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12543), 3, - anon_sym_end, - anon_sym_else, - anon_sym_when, - [412666] = 6, + [416580] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12579), 1, + ACTIONS(12758), 1, anon_sym_end, - STATE(9828), 1, + STATE(9935), 1, sym_heredoc_body, - STATE(10715), 1, + STATE(10775), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412686] = 6, + [416600] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8365), 1, - anon_sym_RBRACK, - ACTIONS(8668), 1, - anon_sym_COMMA, - STATE(9829), 1, + ACTIONS(10233), 1, + anon_sym_def, + ACTIONS(12760), 1, + anon_sym_abstract, + STATE(170), 1, + sym__base_method_def, + STATE(9936), 1, sym_heredoc_body, - STATE(10352), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412706] = 4, + [416620] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9830), 1, + ACTIONS(4260), 1, + anon_sym_RBRACK, + ACTIONS(12762), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(9937), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12543), 3, - anon_sym_end, - anon_sym_else, - anon_sym_when, - [412722] = 6, + [416640] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12581), 1, - anon_sym_end, - STATE(9831), 1, + ACTIONS(8531), 1, + anon_sym_RPAREN, + ACTIONS(8533), 1, + anon_sym_COMMA, + STATE(9938), 1, sym_heredoc_body, - STATE(10558), 1, - sym_ensure, + STATE(9939), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412742] = 6, + [416660] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9549), 1, - anon_sym_RBRACE, - ACTIONS(12583), 1, + ACTIONS(3355), 1, + anon_sym_RPAREN, + ACTIONS(12764), 1, anon_sym_COMMA, - STATE(9832), 1, + STATE(9939), 1, sym_heredoc_body, - STATE(10009), 1, - aux_sym_proc_type_repeat1, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412762] = 4, + [416680] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9833), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12766), 1, + anon_sym_end, + STATE(9940), 1, sym_heredoc_body, + STATE(11648), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12543), 3, - anon_sym_end, - anon_sym_else, - anon_sym_when, - [412778] = 6, + [416700] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3905), 1, - anon_sym_RBRACE, - ACTIONS(12585), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9834), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12768), 1, + anon_sym_end, + STATE(9941), 1, sym_heredoc_body, + STATE(10974), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412798] = 6, + [416720] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(12587), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12770), 1, anon_sym_end, - STATE(9835), 1, + STATE(9942), 1, sym_heredoc_body, - STATE(10719), 1, - sym_else, + STATE(10966), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412818] = 6, + [416740] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3779), 1, - anon_sym_RBRACE, - ACTIONS(12589), 1, - anon_sym_COMMA, - STATE(9836), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12772), 1, + anon_sym_end, + STATE(9943), 1, sym_heredoc_body, - STATE(9934), 1, - aux_sym_hash_repeat1, + STATE(10969), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412838] = 6, + [416760] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12591), 1, + ACTIONS(12774), 1, anon_sym_end, - STATE(9837), 1, + STATE(9944), 1, sym_heredoc_body, - STATE(11053), 1, + STATE(11060), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412858] = 6, + [416780] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10372), 1, + ACTIONS(9692), 1, anon_sym_RBRACE, - ACTIONS(12593), 1, + ACTIONS(12776), 1, anon_sym_COMMA, - STATE(9838), 1, + STATE(9904), 1, + aux_sym_proc_type_repeat1, + STATE(9945), 1, sym_heredoc_body, - STATE(10075), 1, - aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412878] = 6, + [416800] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12595), 1, - anon_sym_RBRACE, - ACTIONS(12597), 1, + ACTIONS(8837), 1, + anon_sym_RPAREN, + ACTIONS(8839), 1, anon_sym_COMMA, - STATE(9839), 1, + STATE(9946), 1, sym_heredoc_body, - STATE(9921), 1, - aux_sym_proc_type_repeat1, + STATE(10082), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412898] = 6, + [416820] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12599), 1, + ACTIONS(10361), 1, anon_sym_RBRACE, - ACTIONS(12601), 1, + ACTIONS(12778), 1, anon_sym_COMMA, - STATE(9840), 1, - sym_heredoc_body, - STATE(9922), 1, + STATE(9660), 1, aux_sym_named_tuple_type_repeat1, + STATE(9947), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412918] = 6, + [416840] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, + STATE(9948), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6329), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(12603), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9841), 1, + [416856] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(3481), 1, + anon_sym_RPAREN, + ACTIONS(12780), 1, + anon_sym_COMMA, + STATE(9949), 1, sym_heredoc_body, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412938] = 6, + [416876] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3911), 1, + ACTIONS(4264), 1, anon_sym_RBRACK, - ACTIONS(12605), 1, + ACTIONS(12782), 1, anon_sym_COMMA, - STATE(9279), 1, + STATE(9372), 1, aux_sym_array_repeat1, - STATE(9842), 1, + STATE(9950), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412958] = 6, + [416896] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12607), 1, + ACTIONS(12784), 1, anon_sym_end, - STATE(9843), 1, + STATE(9951), 1, sym_heredoc_body, - STATE(11344), 1, + STATE(10796), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412978] = 6, + [416916] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12609), 1, - anon_sym_end, - STATE(9844), 1, + STATE(9952), 1, sym_heredoc_body, - STATE(10589), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [412998] = 6, + ACTIONS(6333), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [416932] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12611), 1, - anon_sym_end, - STATE(9845), 1, + STATE(9953), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6337), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [416948] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(4268), 1, + anon_sym_RBRACK, + ACTIONS(12786), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(9954), 1, sym_heredoc_body, - STATE(10744), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413018] = 6, + [416968] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8670), 1, + ACTIONS(8543), 1, anon_sym_RPAREN, - ACTIONS(8672), 1, + ACTIONS(8571), 1, anon_sym_COMMA, - STATE(9846), 1, + STATE(9955), 1, sym_heredoc_body, - STATE(9861), 1, + STATE(9956), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413038] = 6, + [416988] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12613), 1, - anon_sym_end, - STATE(9847), 1, + ACTIONS(3329), 1, + anon_sym_RPAREN, + ACTIONS(12788), 1, + anon_sym_COMMA, + STATE(9956), 1, sym_heredoc_body, - STATE(10600), 1, - sym_ensure, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413058] = 6, + [417008] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12615), 1, + ACTIONS(12790), 1, anon_sym_end, - STATE(9848), 1, + STATE(9957), 1, sym_heredoc_body, - STATE(10752), 1, + STATE(11387), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413078] = 6, + [417028] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12617), 1, - anon_sym_end, - STATE(9849), 1, + ACTIONS(4272), 1, + anon_sym_RBRACK, + ACTIONS(12792), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(9958), 1, sym_heredoc_body, - STATE(10603), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413098] = 6, + [417048] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3358), 1, - anon_sym_RBRACE, - ACTIONS(12619), 1, + ACTIONS(8585), 1, + anon_sym_RPAREN, + ACTIONS(8587), 1, anon_sym_COMMA, - STATE(9808), 1, - aux_sym_implicit_object_tuple_repeat1, - STATE(9850), 1, + STATE(9959), 1, sym_heredoc_body, + STATE(9960), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413118] = 6, + [417068] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12621), 1, - anon_sym_end, - STATE(9851), 1, + ACTIONS(3323), 1, + anon_sym_RPAREN, + ACTIONS(12794), 1, + anon_sym_COMMA, + STATE(9960), 1, sym_heredoc_body, - STATE(11066), 1, - sym_ensure, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413138] = 6, + [417088] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12623), 1, + ACTIONS(12796), 1, anon_sym_end, - STATE(9852), 1, + STATE(9961), 1, sym_heredoc_body, - STATE(11901), 1, + STATE(10800), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413158] = 6, + [417108] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(12625), 1, - anon_sym_end, - STATE(9853), 1, + STATE(9962), 1, sym_heredoc_body, - STATE(10610), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413178] = 6, + ACTIONS(6341), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [417124] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12627), 1, - anon_sym_end, - STATE(9854), 1, + ACTIONS(8589), 1, + anon_sym_RPAREN, + ACTIONS(8591), 1, + anon_sym_COMMA, + STATE(9963), 1, sym_heredoc_body, - STATE(10768), 1, - sym_ensure, + STATE(9964), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [417144] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(3319), 1, + anon_sym_RPAREN, + ACTIONS(12798), 1, + anon_sym_COMMA, + STATE(9964), 1, + sym_heredoc_body, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413198] = 6, + [417164] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12629), 1, + ACTIONS(12800), 1, anon_sym_RBRACE, - ACTIONS(12631), 1, + ACTIONS(12802), 1, anon_sym_COMMA, - STATE(9855), 1, + STATE(9965), 1, sym_heredoc_body, - STATE(9868), 1, + STATE(10181), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413218] = 6, + [417184] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12633), 1, - anon_sym_RBRACE, - ACTIONS(12635), 1, + ACTIONS(8593), 1, + anon_sym_RPAREN, + ACTIONS(8595), 1, anon_sym_COMMA, - STATE(9856), 1, + STATE(9966), 1, sym_heredoc_body, - STATE(9869), 1, - aux_sym_named_tuple_type_repeat1, + STATE(9967), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413238] = 6, + [417204] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, + ACTIONS(3321), 1, + anon_sym_RPAREN, + ACTIONS(12804), 1, anon_sym_COMMA, - ACTIONS(12637), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9857), 1, + STATE(9967), 1, sym_heredoc_body, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413258] = 6, + [417224] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12639), 1, + ACTIONS(12806), 1, anon_sym_end, - STATE(9858), 1, + STATE(9968), 1, sym_heredoc_body, - STATE(10621), 1, + STATE(11760), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413278] = 6, + [417244] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3296), 1, - anon_sym_RPAREN, - ACTIONS(12641), 1, + ACTIONS(4276), 1, + anon_sym_RBRACK, + ACTIONS(12808), 1, anon_sym_COMMA, - STATE(9859), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(9969), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413298] = 6, + [417264] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12643), 1, + ACTIONS(12810), 1, anon_sym_end, - STATE(9860), 1, + STATE(9970), 1, sym_heredoc_body, - STATE(10627), 1, + STATE(11883), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413318] = 6, + [417284] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3290), 1, + ACTIONS(8561), 1, anon_sym_RPAREN, - ACTIONS(12645), 1, + ACTIONS(8605), 1, anon_sym_COMMA, - STATE(9861), 1, + STATE(9971), 1, sym_heredoc_body, - STATE(10331), 1, + STATE(9972), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413338] = 6, + [417304] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3973), 1, + ACTIONS(3303), 1, anon_sym_RPAREN, - ACTIONS(12647), 1, + ACTIONS(12812), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9862), 1, + STATE(9972), 1, sym_heredoc_body, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413358] = 6, + [417324] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12649), 1, + ACTIONS(12814), 1, anon_sym_end, - STATE(9863), 1, + STATE(9973), 1, sym_heredoc_body, - STATE(10635), 1, + STATE(10814), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413378] = 6, + [417344] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12651), 1, - anon_sym_end, - STATE(9864), 1, + ACTIONS(8607), 1, + anon_sym_RPAREN, + ACTIONS(8609), 1, + anon_sym_COMMA, + STATE(9974), 1, sym_heredoc_body, - STATE(10774), 1, - sym_ensure, + STATE(9975), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413398] = 6, + [417364] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12653), 1, - anon_sym_end, - STATE(9865), 1, + ACTIONS(3291), 1, + anon_sym_RPAREN, + ACTIONS(12816), 1, + anon_sym_COMMA, + STATE(9975), 1, sym_heredoc_body, - STATE(10638), 1, - sym_ensure, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413418] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12655), 1, - anon_sym_end, - STATE(9866), 1, - sym_heredoc_body, - STATE(11313), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, + [417384] = 6, + ACTIONS(3), 1, sym_comment, - [413438] = 6, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3907), 1, - anon_sym_RPAREN, - ACTIONS(12657), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9867), 1, + ACTIONS(12818), 1, + aux_sym_char_token1, + STATE(9976), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [413458] = 6, + ACTIONS(12820), 2, + sym__char_comment, + sym_char_escape_sequence, + [417404] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9665), 1, - anon_sym_RBRACE, - ACTIONS(12659), 1, - anon_sym_COMMA, - STATE(9868), 1, + ACTIONS(9355), 1, + sym__constant_segment, + ACTIONS(9357), 1, + anon_sym_COLON_COLON, + STATE(9361), 1, + sym_constant, + STATE(9977), 1, sym_heredoc_body, - STATE(10009), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413478] = 6, + [417424] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10318), 1, - anon_sym_RBRACE, - ACTIONS(12661), 1, - anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(9869), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + STATE(9978), 1, sym_heredoc_body, + STATE(10072), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413498] = 6, + [417444] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3931), 1, - anon_sym_RBRACK, - ACTIONS(12663), 1, + ACTIONS(12822), 1, + anon_sym_RBRACE, + ACTIONS(12824), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9870), 1, + STATE(9979), 1, sym_heredoc_body, + STATE(10189), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413518] = 6, + [417464] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12665), 1, + ACTIONS(12826), 1, anon_sym_end, - STATE(9871), 1, + STATE(9980), 1, sym_heredoc_body, - STATE(10651), 1, + STATE(11763), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413538] = 6, + [417484] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8563), 1, - anon_sym_RPAREN, - ACTIONS(8857), 1, - anon_sym_COMMA, - STATE(9872), 1, + STATE(9981), 1, sym_heredoc_body, - STATE(9873), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413558] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(3296), 1, + ACTIONS(6349), 3, anon_sym_RPAREN, - ACTIONS(12667), 1, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(9873), 1, + [417500] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10233), 1, + anon_sym_def, + ACTIONS(12828), 1, + anon_sym_abstract, + STATE(162), 1, + sym__base_method_def, + STATE(9982), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413578] = 6, + [417520] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12669), 1, + ACTIONS(12830), 1, anon_sym_end, - STATE(9874), 1, + STATE(9983), 1, sym_heredoc_body, - STATE(11489), 1, + STATE(10817), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413598] = 6, + [417540] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3410), 1, - anon_sym_RPAREN, - ACTIONS(12671), 1, - anon_sym_COMMA, - STATE(9875), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12832), 1, + anon_sym_end, + STATE(9984), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(11076), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413618] = 6, + [417560] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12673), 1, + ACTIONS(12834), 1, anon_sym_end, - STATE(9876), 1, + STATE(9985), 1, sym_heredoc_body, - STATE(11101), 1, + STATE(10823), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413638] = 6, + [417580] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12675), 1, + ACTIONS(12836), 1, anon_sym_end, - STATE(9877), 1, + STATE(9986), 1, sym_heredoc_body, - STATE(10653), 1, + STATE(11273), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413658] = 6, + [417600] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12677), 1, - anon_sym_end, - STATE(9878), 1, + STATE(9987), 1, sym_heredoc_body, - STATE(11322), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413678] = 6, + ACTIONS(6353), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [417616] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12679), 1, + ACTIONS(12838), 1, anon_sym_end, - STATE(9879), 1, + STATE(9988), 1, sym_heredoc_body, - STATE(11337), 1, + STATE(11316), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413698] = 6, + [417636] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12681), 1, + ACTIONS(12840), 1, anon_sym_end, - STATE(9880), 1, + STATE(9989), 1, sym_heredoc_body, - STATE(10662), 1, + STATE(10824), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413718] = 6, + [417656] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3941), 1, - anon_sym_RBRACK, - ACTIONS(12683), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9881), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12842), 1, + anon_sym_end, + STATE(9990), 1, sym_heredoc_body, + STATE(11331), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413738] = 6, + [417676] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12685), 1, - anon_sym_end, - STATE(9882), 1, + ACTIONS(8607), 1, + anon_sym_RPAREN, + ACTIONS(8827), 1, + anon_sym_COMMA, + STATE(9991), 1, sym_heredoc_body, - STATE(10790), 1, - sym_ensure, + STATE(10000), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413758] = 6, + [417696] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3947), 1, - anon_sym_RBRACK, - ACTIONS(12687), 1, + ACTIONS(12844), 1, + anon_sym_RBRACE, + ACTIONS(12846), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9883), 1, + STATE(9992), 1, sym_heredoc_body, + STATE(10005), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413778] = 6, + [417716] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12689), 1, - anon_sym_end, - STATE(9884), 1, + ACTIONS(12848), 1, + anon_sym_RBRACE, + ACTIONS(12850), 1, + anon_sym_COMMA, + STATE(9993), 1, sym_heredoc_body, - STATE(10666), 1, - sym_ensure, + STATE(10006), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413798] = 6, + [417736] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8610), 1, - anon_sym_RPAREN, - ACTIONS(8867), 1, + ACTIONS(4787), 1, anon_sym_COMMA, - STATE(9885), 1, + ACTIONS(12852), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(9994), 1, sym_heredoc_body, - STATE(9886), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413818] = 6, + [417756] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3268), 1, - anon_sym_RPAREN, - ACTIONS(12691), 1, + ACTIONS(3435), 1, + anon_sym_RBRACE, + ACTIONS(12854), 1, anon_sym_COMMA, - STATE(9886), 1, + STATE(9995), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10439), 1, + aux_sym_implicit_object_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413838] = 6, + [417776] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12693), 1, + ACTIONS(12856), 1, anon_sym_end, - STATE(9887), 1, + STATE(9996), 1, sym_heredoc_body, - STATE(10670), 1, + STATE(11407), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413858] = 6, + [417796] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12695), 1, + ACTIONS(12858), 1, anon_sym_end, - STATE(9888), 1, + STATE(9997), 1, sym_heredoc_body, - STATE(10672), 1, + STATE(11416), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413878] = 6, + [417816] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3953), 1, - anon_sym_RBRACK, - ACTIONS(12697), 1, + ACTIONS(3435), 1, + anon_sym_RBRACE, + ACTIONS(12854), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9889), 1, + STATE(9998), 1, + sym_heredoc_body, + STATE(10341), 1, + aux_sym_implicit_object_tuple_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [417836] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12860), 1, + anon_sym_end, + STATE(9999), 1, sym_heredoc_body, + STATE(11398), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413898] = 6, + [417856] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8642), 1, + ACTIONS(3291), 1, anon_sym_RPAREN, - ACTIONS(8873), 1, + ACTIONS(12862), 1, anon_sym_COMMA, - STATE(9890), 1, + STATE(10000), 1, sym_heredoc_body, - STATE(9891), 1, + STATE(10075), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413918] = 6, + [417876] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3278), 1, + ACTIONS(11552), 1, anon_sym_RPAREN, - ACTIONS(12699), 1, + ACTIONS(12864), 1, anon_sym_COMMA, - STATE(9891), 1, + STATE(10001), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10207), 1, + aux_sym_type_param_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413938] = 6, + [417896] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12701), 1, + ACTIONS(12866), 1, anon_sym_end, - STATE(9892), 1, + STATE(10002), 1, sym_heredoc_body, - STATE(10802), 1, + STATE(11508), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413958] = 6, + [417916] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3252), 1, + ACTIONS(4210), 1, anon_sym_RPAREN, - ACTIONS(12703), 1, + ACTIONS(12868), 1, anon_sym_COMMA, - STATE(9893), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10003), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413978] = 6, + [417936] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12705), 1, + ACTIONS(12870), 1, anon_sym_end, - STATE(9894), 1, + STATE(10004), 1, sym_heredoc_body, - STATE(11341), 1, + STATE(11405), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [413998] = 6, + [417956] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3971), 1, - anon_sym_RPAREN, - ACTIONS(12707), 1, + ACTIONS(9624), 1, + anon_sym_RBRACE, + ACTIONS(12872), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9895), 1, + STATE(9904), 1, + aux_sym_proc_type_repeat1, + STATE(10005), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414018] = 6, + [417976] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8670), 1, - anon_sym_RPAREN, - ACTIONS(8875), 1, + ACTIONS(10478), 1, + anon_sym_RBRACE, + ACTIONS(12874), 1, anon_sym_COMMA, - STATE(9896), 1, + STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(10006), 1, sym_heredoc_body, - STATE(9897), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414038] = 6, + [417996] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3290), 1, - anon_sym_RPAREN, - ACTIONS(12709), 1, - anon_sym_COMMA, - STATE(9897), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12876), 1, + anon_sym_end, + STATE(10007), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(11504), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414058] = 6, + [418016] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8696), 1, - anon_sym_RPAREN, - ACTIONS(8877), 1, - anon_sym_COMMA, - STATE(9898), 1, + ACTIONS(12878), 1, + aux_sym_char_token1, + STATE(10008), 1, sym_heredoc_body, - STATE(9899), 1, - aux_sym_annotation_argument_list_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [414078] = 6, + ACTIONS(12880), 2, + sym__char_comment, + sym_char_escape_sequence, + [418036] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3308), 1, - anon_sym_RPAREN, - ACTIONS(12711), 1, - anon_sym_COMMA, - STATE(9899), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12882), 1, + anon_sym_end, + STATE(10009), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(11108), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414098] = 6, + [418056] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12713), 1, - anon_sym_end, - STATE(9900), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + STATE(10010), 1, sym_heredoc_body, - STATE(10827), 1, - sym_ensure, + STATE(10247), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414118] = 6, + [418076] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12715), 1, - anon_sym_end, - STATE(9901), 1, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(12884), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(10011), 1, sym_heredoc_body, - STATE(11132), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414138] = 6, + [418096] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3959), 1, - anon_sym_RBRACK, - ACTIONS(12717), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9902), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12886), 1, + anon_sym_end, + STATE(10012), 1, sym_heredoc_body, + STATE(11715), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414158] = 6, + [418116] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12719), 1, + ACTIONS(12888), 1, anon_sym_end, - STATE(9903), 1, + STATE(10013), 1, sym_heredoc_body, - STATE(10834), 1, + STATE(11753), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414178] = 6, + [418136] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8725), 1, - anon_sym_RPAREN, - ACTIONS(8883), 1, + ACTIONS(4124), 1, + anon_sym_RBRACE, + ACTIONS(12890), 1, anon_sym_COMMA, - STATE(9904), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10014), 1, sym_heredoc_body, - STATE(9905), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414198] = 6, + [418156] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3320), 1, - anon_sym_RPAREN, - ACTIONS(12721), 1, - anon_sym_COMMA, - STATE(9905), 1, + ACTIONS(12894), 1, + aux_sym__base_method_def_token1, + STATE(10015), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414218] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8749), 1, + ACTIONS(12892), 2, anon_sym_RPAREN, - ACTIONS(8885), 1, anon_sym_COMMA, - STATE(9906), 1, + [418174] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12898), 1, + aux_sym__base_method_def_token1, + STATE(10016), 1, sym_heredoc_body, - STATE(9907), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414238] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(3332), 1, + ACTIONS(12896), 2, anon_sym_RPAREN, - ACTIONS(12723), 1, anon_sym_COMMA, - STATE(9907), 1, + [418192] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12900), 1, + anon_sym_end, + STATE(10017), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(11550), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414258] = 6, + [418212] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12725), 1, + ACTIONS(12902), 1, anon_sym_end, - STATE(9908), 1, + STATE(10018), 1, sym_heredoc_body, - STATE(11350), 1, + STATE(11561), 1, sym_ensure, ACTIONS(5), 2, 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, + [418232] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9303), 1, - sym__constant_segment, - ACTIONS(9305), 1, - anon_sym_COLON_COLON, - STATE(9280), 1, - sym_constant, - STATE(9910), 1, + ACTIONS(10121), 1, + anon_sym_RPAREN, + ACTIONS(12904), 1, + anon_sym_COMMA, + STATE(9774), 1, + aux_sym_param_list_repeat1, + STATE(10019), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414318] = 6, + [418252] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - STATE(9698), 1, - sym_constant, - STATE(9911), 1, + ACTIONS(12906), 1, + anon_sym_RBRACE, + ACTIONS(12908), 1, + anon_sym_COMMA, + STATE(10020), 1, sym_heredoc_body, + STATE(10047), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414338] = 6, + [418272] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12731), 1, + ACTIONS(12910), 1, anon_sym_end, - STATE(9912), 1, + STATE(10021), 1, sym_heredoc_body, - STATE(11361), 1, + STATE(10737), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414358] = 6, + [418292] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10330), 1, + ACTIONS(12912), 1, anon_sym_RBRACE, - ACTIONS(12733), 1, + ACTIONS(12914), 1, anon_sym_COMMA, - STATE(9913), 1, + STATE(10022), 1, sym_heredoc_body, - STATE(10075), 1, + STATE(10051), 1, aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414378] = 6, + [418312] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10213), 1, - anon_sym_def, - ACTIONS(12735), 1, - anon_sym_abstract, - STATE(150), 1, - sym__base_method_def, - STATE(9914), 1, + STATE(10023), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414398] = 6, + ACTIONS(12916), 3, + sym_identifier, + sym_instance_var, + sym_class_var, + [418328] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12737), 1, + ACTIONS(12918), 1, anon_sym_end, - STATE(9915), 1, + STATE(10024), 1, sym_heredoc_body, - STATE(10835), 1, + STATE(11571), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414418] = 6, + [418348] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3985), 1, - anon_sym_RBRACK, - ACTIONS(12739), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9916), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12920), 1, + anon_sym_end, + STATE(10025), 1, sym_heredoc_body, + STATE(11573), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414438] = 6, + [418368] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12741), 1, + ACTIONS(12922), 1, anon_sym_end, - STATE(9917), 1, + STATE(10026), 1, sym_heredoc_body, - STATE(11473), 1, + STATE(11975), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414458] = 6, + [418388] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12743), 1, - anon_sym_RBRACE, - ACTIONS(12745), 1, + ACTIONS(3429), 1, + anon_sym_RBRACK, + ACTIONS(12924), 1, anon_sym_COMMA, - STATE(9918), 1, + STATE(10027), 1, sym_heredoc_body, - STATE(9940), 1, - aux_sym_hash_repeat1, + STATE(10185), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414478] = 6, + [418408] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, - sym_identifier, - ACTIONS(12286), 1, - anon_sym_RPAREN, - STATE(9919), 1, + ACTIONS(12926), 1, + aux_sym_char_token1, + STATE(10028), 1, sym_heredoc_body, - STATE(10375), 1, - sym_block_body_param, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [414498] = 6, + ACTIONS(12928), 2, + sym__char_comment, + sym_char_escape_sequence, + [418428] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12747), 1, + ACTIONS(12930), 1, anon_sym_RBRACE, - ACTIONS(12749), 1, + ACTIONS(12932), 1, anon_sym_COMMA, - STATE(9920), 1, + STATE(9919), 1, + aux_sym_proc_type_repeat1, + STATE(10029), 1, sym_heredoc_body, - STATE(9941), 1, - aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414518] = 6, + [418448] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9655), 1, - anon_sym_RBRACE, - ACTIONS(12751), 1, - anon_sym_COMMA, - STATE(9921), 1, + ACTIONS(12936), 1, + anon_sym_EQ, + STATE(10030), 1, sym_heredoc_body, - STATE(10009), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414538] = 6, + ACTIONS(12934), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [418466] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10290), 1, - anon_sym_RBRACE, - ACTIONS(12753), 1, - anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(9922), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + STATE(10031), 1, sym_heredoc_body, + STATE(11784), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414558] = 6, + [418486] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8765), 1, + ACTIONS(3279), 1, anon_sym_RPAREN, - ACTIONS(8767), 1, + ACTIONS(12938), 1, anon_sym_COMMA, - STATE(9923), 1, + STATE(10032), 1, sym_heredoc_body, - STATE(9946), 1, + STATE(10075), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414578] = 6, + [418506] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12755), 1, - anon_sym_end, - STATE(9924), 1, + ACTIONS(12940), 1, + anon_sym_RBRACE, + ACTIONS(12942), 1, + anon_sym_COMMA, + STATE(9765), 1, + aux_sym_hash_repeat1, + STATE(10033), 1, sym_heredoc_body, - STATE(11617), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414598] = 6, + [418526] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12757), 1, + ACTIONS(12944), 1, anon_sym_RBRACE, - ACTIONS(12759), 1, + ACTIONS(12946), 1, anon_sym_COMMA, - STATE(9925), 1, + STATE(9923), 1, + aux_sym_named_tuple_type_repeat1, + STATE(10034), 1, sym_heredoc_body, - STATE(9971), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414618] = 6, + [418546] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12761), 1, - anon_sym_RBRACE, - ACTIONS(12763), 1, - anon_sym_COMMA, - STATE(9926), 1, + STATE(10035), 1, sym_heredoc_body, - STATE(9977), 1, - aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414638] = 6, + ACTIONS(5551), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [418562] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12765), 1, + ACTIONS(12948), 1, anon_sym_end, - STATE(9927), 1, + STATE(10036), 1, sym_heredoc_body, - STATE(10893), 1, + STATE(10976), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414658] = 6, + [418582] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(12767), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9928), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12950), 1, + anon_sym_end, + STATE(10037), 1, sym_heredoc_body, + STATE(10997), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414678] = 6, + [418602] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12769), 1, + ACTIONS(12952), 1, anon_sym_end, - STATE(9929), 1, + STATE(10038), 1, sym_heredoc_body, - STATE(11511), 1, + STATE(11030), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414698] = 5, + [418622] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12771), 1, - anon_sym_COMMA, - ACTIONS(12774), 1, - anon_sym_PIPE, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(12954), 1, + anon_sym_end, + STATE(10039), 1, + sym_heredoc_body, + STATE(11229), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9930), 2, - sym_heredoc_body, - aux_sym_block_param_list_repeat1, - [414716] = 6, + [418642] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12776), 1, - anon_sym_end, - STATE(9931), 1, + STATE(10040), 1, sym_heredoc_body, - STATE(11517), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414736] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10793), 1, + ACTIONS(6460), 3, anon_sym_RPAREN, - ACTIONS(12778), 1, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(9932), 1, + [418658] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12956), 1, + anon_sym_end, + STATE(10041), 1, sym_heredoc_body, - STATE(10027), 1, - aux_sym_proc_param_list_repeat1, + STATE(10841), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414756] = 6, + [418678] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12780), 1, + ACTIONS(12958), 1, anon_sym_end, - STATE(9933), 1, + STATE(10042), 1, sym_heredoc_body, - STATE(10817), 1, + STATE(12013), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414776] = 5, + [418698] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12782), 1, - anon_sym_RBRACE, - ACTIONS(12784), 1, - anon_sym_COMMA, + STATE(10043), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(9934), 2, - sym_heredoc_body, - aux_sym_hash_repeat1, - [414794] = 6, + ACTIONS(12960), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [418714] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12787), 1, + ACTIONS(12962), 1, aux_sym_char_token1, - STATE(9935), 1, + STATE(10044), 1, sym_heredoc_body, - ACTIONS(12789), 2, + ACTIONS(12964), 2, sym__char_comment, sym_char_escape_sequence, - [414814] = 6, + [418734] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - STATE(9936), 1, + ACTIONS(4160), 1, + anon_sym_RBRACE, + ACTIONS(12966), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10045), 1, sym_heredoc_body, - STATE(10096), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414834] = 4, + [418754] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9937), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12968), 1, + anon_sym_end, + STATE(10046), 1, sym_heredoc_body, + STATE(11744), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6034), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [414850] = 6, + [418774] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12791), 1, - anon_sym_end, - STATE(9938), 1, + ACTIONS(3883), 1, + anon_sym_RBRACE, + ACTIONS(12970), 1, + anon_sym_COMMA, + STATE(10047), 1, sym_heredoc_body, - STATE(10934), 1, - sym_ensure, + STATE(10275), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414870] = 6, + [418794] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4017), 1, - anon_sym_RBRACE, - ACTIONS(12793), 1, + ACTIONS(4192), 1, + anon_sym_RPAREN, + ACTIONS(12972), 1, anon_sym_COMMA, - STATE(9279), 1, + STATE(9372), 1, aux_sym_array_repeat1, - STATE(9939), 1, + STATE(10048), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414890] = 6, + [418814] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3827), 1, - anon_sym_RBRACE, - ACTIONS(12795), 1, - anon_sym_COMMA, - STATE(9934), 1, - aux_sym_hash_repeat1, - STATE(9940), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(12974), 1, + anon_sym_end, + STATE(10049), 1, sym_heredoc_body, + STATE(11995), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414910] = 6, + [418834] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10278), 1, - anon_sym_RBRACE, - ACTIONS(12797), 1, + ACTIONS(8893), 1, + anon_sym_RPAREN, + ACTIONS(8895), 1, anon_sym_COMMA, - STATE(9941), 1, + STATE(10050), 1, sym_heredoc_body, - STATE(10075), 1, - aux_sym_named_tuple_repeat1, + STATE(10067), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414930] = 4, + [418854] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9942), 1, + ACTIONS(10367), 1, + anon_sym_RBRACE, + ACTIONS(12976), 1, + anon_sym_COMMA, + STATE(9812), 1, + aux_sym_named_tuple_repeat1, + STATE(10051), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6038), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [414946] = 4, + [418874] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9943), 1, + ACTIONS(12978), 1, + anon_sym_RBRACE, + ACTIONS(12980), 1, + anon_sym_COMMA, + STATE(10052), 1, sym_heredoc_body, + STATE(10073), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6042), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [414962] = 6, + [418894] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3881), 1, + ACTIONS(12982), 1, anon_sym_RBRACE, - ACTIONS(12799), 1, + ACTIONS(12984), 1, anon_sym_COMMA, - STATE(9934), 1, - aux_sym_hash_repeat1, - STATE(9944), 1, + STATE(10053), 1, sym_heredoc_body, + STATE(10076), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [414982] = 4, + [418914] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9945), 1, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(12986), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(10054), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6058), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [414998] = 6, + [418934] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3344), 1, - anon_sym_RPAREN, - ACTIONS(12801), 1, + ACTIONS(12988), 1, + anon_sym_RBRACE, + ACTIONS(12990), 1, anon_sym_COMMA, - STATE(9946), 1, + STATE(10055), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10156), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415018] = 4, + [418954] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9947), 1, + ACTIONS(4162), 1, + anon_sym_RBRACK, + ACTIONS(12992), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10056), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6108), 3, - anon_sym_RPAREN, + [418974] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12994), 1, anon_sym_RBRACE, + ACTIONS(12996), 1, anon_sym_COMMA, - [415034] = 6, + STATE(10057), 1, + sym_heredoc_body, + STATE(10159), 1, + aux_sym_named_tuple_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [418994] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12803), 1, + ACTIONS(12998), 1, anon_sym_end, - STATE(9948), 1, + STATE(10058), 1, sym_heredoc_body, - STATE(10852), 1, + STATE(11790), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415054] = 6, + [419014] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12805), 1, + ACTIONS(13000), 1, anon_sym_end, - STATE(9949), 1, + STATE(10059), 1, sym_heredoc_body, - STATE(10938), 1, + STATE(11056), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415074] = 4, + [419034] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9950), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13002), 1, + anon_sym_end, + STATE(10060), 1, sym_heredoc_body, + STATE(11799), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6306), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [415090] = 4, + [419054] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9951), 1, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(13004), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(10061), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6136), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [415106] = 6, + [419074] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8684), 1, - anon_sym_RPAREN, - ACTIONS(8686), 1, + ACTIONS(13006), 1, + anon_sym_RBRACE, + ACTIONS(13008), 1, anon_sym_COMMA, - STATE(9952), 1, + STATE(10062), 1, sym_heredoc_body, - STATE(9973), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10094), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415126] = 6, + [419094] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12807), 1, + ACTIONS(13010), 1, aux_sym_char_token1, - STATE(9953), 1, + STATE(10063), 1, sym_heredoc_body, - ACTIONS(12809), 2, + ACTIONS(13012), 2, sym__char_comment, sym_char_escape_sequence, - [415146] = 6, + [419114] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10322), 1, - anon_sym_RPAREN, - ACTIONS(12811), 1, + ACTIONS(13014), 1, + anon_sym_RBRACE, + ACTIONS(13016), 1, anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(9954), 1, + STATE(10064), 1, sym_heredoc_body, + STATE(10097), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415166] = 6, + [419134] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12813), 1, + ACTIONS(8942), 1, anon_sym_RPAREN, - ACTIONS(12815), 1, + ACTIONS(8944), 1, anon_sym_COMMA, - STATE(9932), 1, - aux_sym_proc_param_list_repeat1, - STATE(9955), 1, + STATE(10065), 1, sym_heredoc_body, + STATE(10096), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415186] = 4, + [419154] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(9956), 1, + ACTIONS(3309), 1, + anon_sym_RPAREN, + ACTIONS(13018), 1, + anon_sym_COMMA, + STATE(10066), 1, sym_heredoc_body, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6166), 3, + [419174] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(3297), 1, anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(13020), 1, anon_sym_COMMA, - [415202] = 6, + STATE(10067), 1, + sym_heredoc_body, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [419194] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12817), 1, + ACTIONS(13022), 1, anon_sym_end, - STATE(9957), 1, + STATE(10068), 1, sym_heredoc_body, - STATE(10863), 1, + STATE(11080), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415222] = 6, + [419214] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12819), 1, - anon_sym_end, - STATE(9958), 1, + ACTIONS(4214), 1, + anon_sym_RPAREN, + ACTIONS(13024), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10069), 1, sym_heredoc_body, - STATE(11143), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415242] = 6, + [419234] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12821), 1, + ACTIONS(13026), 1, anon_sym_end, - STATE(9959), 1, + STATE(10070), 1, sym_heredoc_body, - STATE(10867), 1, + STATE(11269), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415262] = 6, + [419254] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - STATE(9960), 1, + STATE(10071), 1, sym_heredoc_body, - STATE(10421), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415282] = 6, + ACTIONS(12399), 3, + anon_sym_end, + anon_sym_else, + anon_sym_when, + [419270] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12823), 1, - anon_sym_RBRACE, - ACTIONS(12825), 1, - anon_sym_COMMA, - STATE(9832), 1, - aux_sym_proc_type_repeat1, - STATE(9961), 1, + ACTIONS(12527), 1, + anon_sym_LPAREN, + ACTIONS(13028), 1, + anon_sym_RBRACK, + STATE(10072), 1, sym_heredoc_body, + STATE(11087), 1, + sym_annotation_argument_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415302] = 6, + [419290] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4019), 1, - anon_sym_RPAREN, - ACTIONS(12827), 1, + ACTIONS(9630), 1, + anon_sym_RBRACE, + ACTIONS(13030), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(9962), 1, + STATE(9904), 1, + aux_sym_proc_type_repeat1, + STATE(10073), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415322] = 6, + [419310] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12829), 1, + ACTIONS(13032), 1, anon_sym_end, - STATE(9963), 1, + STATE(10074), 1, sym_heredoc_body, - STATE(10942), 1, + STATE(11086), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415342] = 6, + [419330] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12831), 1, - anon_sym_end, - STATE(9964), 1, - sym_heredoc_body, - STATE(11748), 1, - sym_ensure, + ACTIONS(8871), 1, + anon_sym_RPAREN, + ACTIONS(13034), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415362] = 6, + STATE(10075), 2, + sym_heredoc_body, + aux_sym_annotation_argument_list_repeat1, + [419348] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(12833), 1, - anon_sym_end, - STATE(9965), 1, + ACTIONS(10497), 1, + anon_sym_RBRACE, + ACTIONS(13037), 1, + anon_sym_COMMA, + STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(10076), 1, sym_heredoc_body, - STATE(10876), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415382] = 6, + [419368] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12835), 1, + ACTIONS(13039), 1, aux_sym_char_token1, - STATE(9966), 1, + STATE(10077), 1, sym_heredoc_body, - ACTIONS(12837), 2, + ACTIONS(13041), 2, sym__char_comment, sym_char_escape_sequence, - [415402] = 6, + [419388] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12839), 1, + ACTIONS(13043), 1, anon_sym_RBRACE, - ACTIONS(12841), 1, + ACTIONS(13045), 1, anon_sym_COMMA, - STATE(9967), 1, + STATE(10078), 1, sym_heredoc_body, - STATE(9980), 1, - aux_sym_proc_type_repeat1, + STATE(10320), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415422] = 6, + [419408] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12843), 1, - anon_sym_RBRACE, - ACTIONS(12845), 1, - anon_sym_COMMA, - STATE(9968), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13047), 1, + anon_sym_end, + STATE(10079), 1, sym_heredoc_body, - STATE(9982), 1, - aux_sym_named_tuple_type_repeat1, + STATE(10585), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415442] = 6, + [419428] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(12847), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(9969), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13049), 1, + anon_sym_end, + STATE(10080), 1, sym_heredoc_body, + STATE(11277), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415462] = 6, + [419448] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12849), 1, + ACTIONS(13051), 1, anon_sym_end, - STATE(9970), 1, + STATE(10081), 1, sym_heredoc_body, - STATE(10886), 1, + STATE(11133), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415482] = 6, + [419468] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9689), 1, - anon_sym_RBRACE, - ACTIONS(12851), 1, + ACTIONS(3351), 1, + anon_sym_RPAREN, + ACTIONS(13053), 1, anon_sym_COMMA, - STATE(9971), 1, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, + STATE(10082), 1, sym_heredoc_body, - STATE(10009), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415502] = 6, + [419488] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12853), 1, + ACTIONS(13055), 1, anon_sym_end, - STATE(9972), 1, + STATE(10083), 1, sym_heredoc_body, - STATE(10889), 1, + STATE(11906), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415522] = 6, + [419508] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3302), 1, - anon_sym_RPAREN, - ACTIONS(12855), 1, - anon_sym_COMMA, - STATE(9973), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(13057), 1, + anon_sym_end, + STATE(10084), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(11094), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415542] = 6, + [419528] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4085), 1, + ACTIONS(4120), 1, anon_sym_RPAREN, - ACTIONS(12857), 1, + ACTIONS(13059), 1, anon_sym_COMMA, - STATE(9279), 1, + STATE(9372), 1, aux_sym_array_repeat1, - STATE(9974), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [415562] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12859), 1, - anon_sym_end, - STATE(9975), 1, + STATE(10085), 1, sym_heredoc_body, - STATE(10896), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415582] = 6, + [419548] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12861), 1, + ACTIONS(13061), 1, anon_sym_end, - STATE(9976), 1, + STATE(10086), 1, sym_heredoc_body, - STATE(10899), 1, + STATE(11157), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415602] = 6, + [419568] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10340), 1, + ACTIONS(13063), 1, anon_sym_RBRACE, - ACTIONS(12863), 1, + ACTIONS(13065), 1, anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(9977), 1, + STATE(10087), 1, sym_heredoc_body, + STATE(10112), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415622] = 6, + [419588] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12865), 1, - anon_sym_end, - STATE(9978), 1, + ACTIONS(13067), 1, + anon_sym_RBRACE, + ACTIONS(13069), 1, + anon_sym_COMMA, + STATE(10088), 1, sym_heredoc_body, - STATE(11551), 1, - sym_ensure, + STATE(10113), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415642] = 6, + [419608] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12867), 1, + ACTIONS(13071), 1, aux_sym_char_token1, - STATE(9979), 1, + STATE(10089), 1, sym_heredoc_body, - ACTIONS(12869), 2, + ACTIONS(13073), 2, sym__char_comment, sym_char_escape_sequence, - [415662] = 6, + [419628] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9499), 1, - anon_sym_RBRACE, - ACTIONS(12871), 1, + ACTIONS(4787), 1, anon_sym_COMMA, - STATE(9980), 1, - sym_heredoc_body, - STATE(10009), 1, + ACTIONS(13075), 1, + anon_sym_DASH_GT, + STATE(9518), 1, aux_sym_proc_type_repeat1, + STATE(10090), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415682] = 6, + [419648] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12873), 1, + ACTIONS(13077), 1, anon_sym_end, - STATE(9981), 1, + STATE(10091), 1, sym_heredoc_body, - STATE(10950), 1, + STATE(11117), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [419668] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13079), 1, + anon_sym_end, + STATE(10092), 1, + sym_heredoc_body, + STATE(11305), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415702] = 6, + [419688] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10306), 1, + ACTIONS(3393), 1, anon_sym_RBRACE, - ACTIONS(12875), 1, + ACTIONS(13081), 1, anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(9982), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10093), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415722] = 6, + [419708] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12877), 1, - anon_sym_end, - STATE(9983), 1, + ACTIONS(3849), 1, + anon_sym_RBRACE, + ACTIONS(13083), 1, + anon_sym_COMMA, + STATE(10094), 1, sym_heredoc_body, - STATE(10916), 1, - sym_ensure, + STATE(10275), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415742] = 6, + [419728] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12879), 1, + ACTIONS(13085), 1, anon_sym_end, - STATE(9984), 1, + STATE(10095), 1, sym_heredoc_body, - STATE(11900), 1, + STATE(11123), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415762] = 6, + [419748] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12881), 1, - anon_sym_end, - STATE(9985), 1, + ACTIONS(3373), 1, + anon_sym_RPAREN, + ACTIONS(13087), 1, + anon_sym_COMMA, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, + STATE(10096), 1, sym_heredoc_body, - STATE(10918), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415782] = 6, + [419768] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12883), 1, + ACTIONS(10446), 1, anon_sym_RBRACE, - ACTIONS(12885), 1, + ACTIONS(13089), 1, anon_sym_COMMA, - STATE(9699), 1, - aux_sym_named_tuple_type_repeat1, - STATE(9986), 1, + STATE(9812), 1, + aux_sym_named_tuple_repeat1, + STATE(10097), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415802] = 6, + [419788] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, - sym_identifier, - ACTIONS(12887), 1, - anon_sym_RPAREN, - STATE(9987), 1, + STATE(287), 1, + sym__terminator, + STATE(10098), 1, sym_heredoc_body, - STATE(10375), 1, - sym_block_body_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415822] = 6, + ACTIONS(1429), 2, + sym__line_break, + anon_sym_SEMI, + [419806] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12889), 1, - anon_sym_end, - STATE(9988), 1, + ACTIONS(4186), 1, + anon_sym_RBRACK, + ACTIONS(13091), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10099), 1, sym_heredoc_body, - STATE(10924), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415842] = 6, + [419826] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12891), 1, + ACTIONS(13093), 1, anon_sym_end, - STATE(9989), 1, + STATE(10100), 1, sym_heredoc_body, - STATE(11093), 1, + STATE(10615), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415862] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [419846] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12893), 1, - aux_sym_char_token1, - STATE(9990), 1, + ACTIONS(4168), 1, + anon_sym_RPAREN, + ACTIONS(13095), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10101), 1, sym_heredoc_body, - ACTIONS(12895), 2, - sym__char_comment, - sym_char_escape_sequence, - [415882] = 6, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [419866] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12897), 1, - anon_sym_end, - STATE(9991), 1, + ACTIONS(4068), 1, + anon_sym_RBRACK, + ACTIONS(13097), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10102), 1, sym_heredoc_body, - STATE(10927), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415902] = 6, + [419886] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12899), 1, + ACTIONS(13099), 1, anon_sym_end, - STATE(9992), 1, + STATE(10103), 1, sym_heredoc_body, - STATE(10930), 1, + STATE(11138), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415922] = 6, + [419906] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12901), 1, + ACTIONS(13101), 1, anon_sym_end, - STATE(9993), 1, + STATE(10104), 1, sym_heredoc_body, - STATE(10932), 1, + STATE(11954), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [415942] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(12903), 1, - anon_sym_RPAREN, - ACTIONS(12905), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym__line_continuation, + [419926] = 6, + ACTIONS(3), 1, sym_comment, - STATE(9994), 2, - sym_heredoc_body, - aux_sym__block_body_nested_param_repeat1, - [415960] = 6, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12908), 1, - anon_sym_end, - STATE(9995), 1, + ACTIONS(13103), 1, + aux_sym_char_token1, + STATE(10105), 1, sym_heredoc_body, - STATE(11580), 1, - sym_ensure, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [415980] = 6, + ACTIONS(13105), 2, + sym__char_comment, + sym_char_escape_sequence, + [419946] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12910), 1, + ACTIONS(13107), 1, anon_sym_end, - STATE(9996), 1, + STATE(10106), 1, sym_heredoc_body, - STATE(10959), 1, + STATE(11192), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416000] = 6, + [419966] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12912), 1, + ACTIONS(13109), 1, anon_sym_end, - STATE(9997), 1, + STATE(10107), 1, sym_heredoc_body, - STATE(11586), 1, + STATE(11144), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416020] = 6, + [419986] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12914), 1, + ACTIONS(13111), 1, aux_sym_char_token1, - STATE(9998), 1, + STATE(10108), 1, sym_heredoc_body, - ACTIONS(12916), 2, + ACTIONS(13113), 2, sym__char_comment, sym_char_escape_sequence, - [416040] = 6, + [420006] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12918), 1, + ACTIONS(13115), 1, anon_sym_end, - STATE(9999), 1, + STATE(10109), 1, sym_heredoc_body, - STATE(10962), 1, + STATE(11210), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416060] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(3909), 1, - anon_sym_RBRACE, - ACTIONS(12920), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10000), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [416080] = 6, + [420026] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12922), 1, + ACTIONS(13117), 1, anon_sym_end, - STATE(10001), 1, + STATE(10110), 1, sym_heredoc_body, - STATE(11600), 1, + STATE(11977), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416100] = 6, + [420046] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12924), 1, + ACTIONS(13119), 1, anon_sym_end, - STATE(10002), 1, + STATE(10111), 1, sym_heredoc_body, - STATE(10966), 1, + STATE(11334), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416120] = 6, + [420066] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9647), 1, + ACTIONS(9604), 1, anon_sym_RBRACE, - ACTIONS(12926), 1, + ACTIONS(13121), 1, anon_sym_COMMA, - STATE(10003), 1, - sym_heredoc_body, - STATE(10009), 1, + STATE(9904), 1, aux_sym_proc_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [416140] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(12928), 1, - anon_sym_RPAREN, - ACTIONS(12930), 1, - anon_sym_COMMA, - STATE(10004), 1, - sym_heredoc_body, - STATE(10214), 1, - aux_sym_type_param_list_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [416160] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(12932), 1, - anon_sym_RBRACE, - ACTIONS(12934), 1, - anon_sym_COMMA, - STATE(10005), 1, - sym_heredoc_body, - STATE(10023), 1, - aux_sym_hash_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [416180] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(10006), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6010), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [416196] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(12936), 1, - anon_sym_RBRACE, - ACTIONS(12938), 1, - anon_sym_COMMA, - STATE(10007), 1, + STATE(10112), 1, sym_heredoc_body, - STATE(10026), 1, - aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416216] = 6, + [420086] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10370), 1, + ACTIONS(10375), 1, anon_sym_RBRACE, - ACTIONS(12940), 1, + ACTIONS(13123), 1, anon_sym_COMMA, - STATE(9335), 1, + STATE(9660), 1, aux_sym_named_tuple_type_repeat1, - STATE(10008), 1, + STATE(10113), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416236] = 5, + [420106] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11935), 1, + ACTIONS(13125), 1, anon_sym_RBRACE, - ACTIONS(12942), 1, + ACTIONS(13127), 1, anon_sym_COMMA, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - STATE(10009), 2, - sym_heredoc_body, - aux_sym_proc_type_repeat1, - [416254] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12945), 1, - anon_sym_end, - STATE(10010), 1, + STATE(10114), 1, sym_heredoc_body, - STATE(11640), 1, - sym_ensure, + STATE(10212), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416274] = 6, + [420126] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(12947), 1, - anon_sym_end, - STATE(10011), 1, + ACTIONS(8673), 1, + anon_sym_RPAREN, + ACTIONS(8675), 1, + anon_sym_COMMA, + STATE(9949), 1, + aux_sym_annotation_argument_list_repeat1, + STATE(10115), 1, sym_heredoc_body, - STATE(11602), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416294] = 6, + [420146] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12949), 1, + ACTIONS(13129), 1, anon_sym_end, - STATE(10012), 1, + STATE(10116), 1, sym_heredoc_body, - STATE(11800), 1, + STATE(11230), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416314] = 6, + [420166] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12951), 1, + ACTIONS(13131), 1, aux_sym_char_token1, - STATE(10013), 1, + STATE(10117), 1, sym_heredoc_body, - ACTIONS(12953), 2, + ACTIONS(13133), 2, sym__char_comment, sym_char_escape_sequence, - [416334] = 4, + [420186] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10014), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13135), 1, + anon_sym_end, + STATE(10118), 1, sym_heredoc_body, + STATE(11171), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5909), 3, + [420206] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(8863), 1, anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(8865), 1, anon_sym_COMMA, - [416350] = 6, + STATE(10119), 1, + sym_heredoc_body, + STATE(10150), 1, + aux_sym_annotation_argument_list_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [420226] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12955), 1, + ACTIONS(13137), 1, anon_sym_end, - STATE(10015), 1, + STATE(10120), 1, sym_heredoc_body, - STATE(11190), 1, + STATE(11242), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416370] = 6, + [420246] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3759), 1, - anon_sym_RBRACE, - ACTIONS(12957), 1, - anon_sym_COMMA, - STATE(9934), 1, - aux_sym_hash_repeat1, - STATE(10016), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13139), 1, + anon_sym_end, + STATE(10121), 1, sym_heredoc_body, + STATE(11248), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416390] = 6, + [420266] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12959), 1, + ACTIONS(13141), 1, anon_sym_end, - STATE(10017), 1, + STATE(10122), 1, sym_heredoc_body, - STATE(11047), 1, + STATE(11176), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416410] = 6, + [420286] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12961), 1, + ACTIONS(13143), 1, anon_sym_end, - STATE(10018), 1, + STATE(10123), 1, sym_heredoc_body, - STATE(11665), 1, + STATE(11996), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416430] = 6, + [420306] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12963), 1, + ACTIONS(13145), 1, anon_sym_end, - STATE(10019), 1, + STATE(10124), 1, sym_heredoc_body, - STATE(11931), 1, + STATE(11998), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416450] = 6, + [420326] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12965), 1, + ACTIONS(13147), 1, anon_sym_RBRACE, - ACTIONS(12967), 1, + ACTIONS(13149), 1, anon_sym_COMMA, - STATE(10020), 1, + STATE(10125), 1, sym_heredoc_body, - STATE(10122), 1, - aux_sym_hash_repeat1, + STATE(10221), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416470] = 6, + [420346] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4249), 1, - anon_sym_RBRACE, - ACTIONS(12969), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10021), 1, + ACTIONS(13151), 1, + aux_sym_char_token1, + STATE(10126), 1, + sym_heredoc_body, + ACTIONS(13153), 2, + sym__char_comment, + sym_char_escape_sequence, + [420366] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13155), 1, + anon_sym_end, + STATE(10127), 1, sym_heredoc_body, + STATE(11256), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416490] = 6, + [420386] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11002), 1, - anon_sym_PIPE, - ACTIONS(12971), 1, - anon_sym_COMMA, - STATE(9930), 1, - aux_sym_block_param_list_repeat1, - STATE(10022), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13157), 1, + anon_sym_end, + STATE(10128), 1, sym_heredoc_body, + STATE(11259), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416510] = 6, + [420406] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3687), 1, - anon_sym_RBRACE, - ACTIONS(12973), 1, - anon_sym_COMMA, - STATE(9934), 1, - aux_sym_hash_repeat1, - STATE(10023), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13159), 1, + anon_sym_end, + STATE(10129), 1, sym_heredoc_body, + STATE(11197), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416530] = 6, + [420426] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12975), 1, - anon_sym_RBRACE, - ACTIONS(12977), 1, - anon_sym_COMMA, - STATE(10024), 1, - sym_heredoc_body, - STATE(10141), 1, - aux_sym_named_tuple_repeat1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(13161), 1, + anon_sym_end, + STATE(10130), 1, + sym_heredoc_body, + STATE(11262), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416550] = 6, + [420446] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12979), 1, + ACTIONS(13163), 1, anon_sym_RBRACE, - ACTIONS(12981), 1, + ACTIONS(13165), 1, anon_sym_COMMA, - STATE(10025), 1, + STATE(10131), 1, sym_heredoc_body, - STATE(10053), 1, + STATE(10162), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416570] = 6, + [420466] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10362), 1, + ACTIONS(13167), 1, anon_sym_RBRACE, - ACTIONS(12983), 1, + ACTIONS(13169), 1, anon_sym_COMMA, - STATE(10026), 1, + STATE(10132), 1, sym_heredoc_body, - STATE(10075), 1, - aux_sym_named_tuple_repeat1, + STATE(10164), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416590] = 5, + [420486] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12985), 1, - anon_sym_RPAREN, - ACTIONS(12987), 1, - anon_sym_COMMA, + STATE(10133), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10027), 2, - sym_heredoc_body, - aux_sym_proc_param_list_repeat1, - [416608] = 6, + ACTIONS(5835), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [420502] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12990), 1, - anon_sym_RBRACE, - ACTIONS(12992), 1, + ACTIONS(4787), 1, anon_sym_COMMA, - STATE(10028), 1, + ACTIONS(13171), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(10134), 1, sym_heredoc_body, - STATE(10063), 1, - aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416628] = 6, + [420522] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12994), 1, + ACTIONS(13173), 1, aux_sym_char_token1, - STATE(10029), 1, + STATE(10135), 1, sym_heredoc_body, - ACTIONS(12996), 2, + ACTIONS(13175), 2, sym__char_comment, sym_char_escape_sequence, - [416648] = 6, + [420542] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(12998), 1, + ACTIONS(13177), 1, anon_sym_end, - STATE(10030), 1, + STATE(10136), 1, sym_heredoc_body, - STATE(11224), 1, + STATE(11278), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416668] = 6, + [420562] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4269), 1, - anon_sym_RBRACK, - ACTIONS(13000), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10031), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13179), 1, + anon_sym_end, + STATE(10137), 1, sym_heredoc_body, + STATE(11208), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416688] = 6, + [420582] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(13002), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(10032), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13181), 1, + anon_sym_end, + STATE(10138), 1, sym_heredoc_body, + STATE(11281), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416708] = 6, + [420602] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13004), 1, + ACTIONS(13183), 1, anon_sym_end, - STATE(10033), 1, + STATE(10139), 1, sym_heredoc_body, - STATE(11090), 1, + STATE(11534), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416728] = 6, + [420622] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8696), 1, - anon_sym_RPAREN, - ACTIONS(8698), 1, - anon_sym_COMMA, - STATE(10034), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13185), 1, + anon_sym_end, + STATE(10140), 1, sym_heredoc_body, - STATE(10058), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(11216), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [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, + [420642] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13010), 1, + ACTIONS(13187), 1, anon_sym_end, - STATE(10036), 1, + STATE(10141), 1, sym_heredoc_body, - STATE(11102), 1, + STATE(11292), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416788] = 4, + [420662] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10037), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13189), 1, + anon_sym_end, + STATE(10142), 1, sym_heredoc_body, + STATE(11219), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5966), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [416804] = 6, + [420682] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13012), 1, + ACTIONS(13191), 1, anon_sym_end, - STATE(10038), 1, + STATE(10143), 1, sym_heredoc_body, - STATE(11105), 1, + STATE(11297), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416824] = 6, + [420702] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13014), 1, + ACTIONS(13193), 1, anon_sym_end, - STATE(10039), 1, + STATE(10144), 1, sym_heredoc_body, - STATE(11911), 1, + STATE(10865), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416844] = 4, + [420722] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10040), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13195), 1, + anon_sym_end, + STATE(10145), 1, sym_heredoc_body, + STATE(11842), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5970), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [416860] = 6, + [420742] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13016), 1, + ACTIONS(13197), 1, aux_sym_char_token1, - STATE(10041), 1, + STATE(10146), 1, sym_heredoc_body, - ACTIONS(13018), 2, + ACTIONS(13199), 2, sym__char_comment, sym_char_escape_sequence, - [416880] = 4, + [420762] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10042), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13201), 1, + anon_sym_end, + STATE(10147), 1, sym_heredoc_body, + STATE(11307), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6026), 3, + [420782] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(13203), 1, anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(13205), 1, anon_sym_COMMA, - [416896] = 4, + STATE(9925), 1, + aux_sym_proc_param_list_repeat1, + STATE(10148), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [420802] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10043), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13207), 1, + anon_sym_end, + STATE(10149), 1, sym_heredoc_body, + STATE(11312), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6074), 3, + [420822] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(3369), 1, anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(13209), 1, anon_sym_COMMA, - [416912] = 6, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, + STATE(10150), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [420842] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4043), 1, + ACTIONS(4072), 1, anon_sym_RPAREN, - ACTIONS(13020), 1, + ACTIONS(13211), 1, anon_sym_COMMA, - STATE(9279), 1, + STATE(9372), 1, aux_sym_array_repeat1, - STATE(10044), 1, + STATE(10151), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416932] = 6, + [420862] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13022), 1, + ACTIONS(13213), 1, anon_sym_end, - STATE(10045), 1, + STATE(10152), 1, sym_heredoc_body, - STATE(11231), 1, + STATE(11319), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [416952] = 4, + [420882] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10046), 1, + STATE(10153), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6084), 3, + ACTIONS(6468), 3, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [416968] = 4, + [420898] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10047), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(13215), 1, + anon_sym_end, + STATE(10154), 1, sym_heredoc_body, + STATE(12026), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6096), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [416984] = 6, + [420918] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(13024), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13217), 1, anon_sym_end, - STATE(10048), 1, + STATE(10155), 1, sym_heredoc_body, - STATE(11113), 1, - sym_else, + STATE(11325), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417004] = 6, + [420938] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13026), 1, + ACTIONS(9734), 1, anon_sym_RBRACE, - ACTIONS(13028), 1, + ACTIONS(13219), 1, anon_sym_COMMA, - STATE(10049), 1, - sym_heredoc_body, - STATE(10065), 1, + STATE(9904), 1, aux_sym_proc_type_repeat1, + STATE(10156), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417024] = 6, + [420958] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13030), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13221), 1, + anon_sym_end, + STATE(10157), 1, + sym_heredoc_body, + STATE(10637), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [420978] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13223), 1, + anon_sym_end, + STATE(10158), 1, + sym_heredoc_body, + STATE(11326), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [420998] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(10403), 1, anon_sym_RBRACE, - ACTIONS(13032), 1, + ACTIONS(13225), 1, anon_sym_COMMA, - STATE(10050), 1, - sym_heredoc_body, - STATE(10067), 1, + STATE(9660), 1, aux_sym_named_tuple_type_repeat1, + STATE(10159), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417044] = 4, + [421018] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10051), 1, + STATE(10160), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6100), 3, + ACTIONS(6381), 3, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [417060] = 6, + [421034] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(13034), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(10052), 1, + STATE(10161), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417080] = 6, + ACTIONS(6448), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [421050] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9507), 1, + ACTIONS(9634), 1, anon_sym_RBRACE, - ACTIONS(13036), 1, + ACTIONS(13227), 1, anon_sym_COMMA, - STATE(10009), 1, + STATE(9904), 1, aux_sym_proc_type_repeat1, - STATE(10053), 1, + STATE(10162), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417100] = 6, + [421070] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13038), 1, + ACTIONS(13229), 1, anon_sym_end, - STATE(10054), 1, + STATE(10163), 1, sym_heredoc_body, - STATE(11125), 1, + STATE(11426), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [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, + [421090] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13044), 1, - anon_sym_end, - STATE(10056), 1, + ACTIONS(10466), 1, + anon_sym_RBRACE, + ACTIONS(13231), 1, + anon_sym_COMMA, + STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(10164), 1, sym_heredoc_body, - STATE(11129), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417160] = 4, + [421110] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10057), 1, + STATE(10165), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6290), 3, + ACTIONS(5803), 3, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_COMMA, - [417176] = 6, + [421126] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3308), 1, - anon_sym_RPAREN, - ACTIONS(13046), 1, - anon_sym_COMMA, - STATE(10058), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13233), 1, + anon_sym_end, + STATE(10166), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(11341), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417196] = 6, + [421146] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3783), 1, - anon_sym_RBRACE, - ACTIONS(13048), 1, + ACTIONS(3925), 1, + anon_sym_RPAREN, + ACTIONS(13235), 1, anon_sym_COMMA, - STATE(9934), 1, - aux_sym_hash_repeat1, - STATE(10059), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10167), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417216] = 6, + [421166] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4009), 1, - anon_sym_RPAREN, - ACTIONS(13050), 1, + ACTIONS(13237), 1, + anon_sym_RBRACE, + ACTIONS(13239), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10060), 1, + STATE(10168), 1, sym_heredoc_body, + STATE(10182), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417236] = 6, + [421186] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13052), 1, - anon_sym_end, - STATE(10061), 1, + ACTIONS(13241), 1, + anon_sym_RBRACE, + ACTIONS(13243), 1, + anon_sym_COMMA, + STATE(10169), 1, sym_heredoc_body, - STATE(11135), 1, - sym_ensure, + STATE(10184), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417256] = 6, + [421206] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13054), 1, + ACTIONS(13245), 1, anon_sym_end, - STATE(10062), 1, + STATE(10170), 1, sym_heredoc_body, - STATE(11138), 1, + STATE(11351), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417276] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10414), 1, - anon_sym_RBRACE, - ACTIONS(13056), 1, - anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(10063), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [417296] = 6, + [421226] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13058), 1, + ACTIONS(13247), 1, anon_sym_end, - STATE(10064), 1, + STATE(10171), 1, sym_heredoc_body, - STATE(10516), 1, + STATE(11354), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417316] = 6, + [421246] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9679), 1, - anon_sym_RBRACE, - ACTIONS(13060), 1, + ACTIONS(4787), 1, anon_sym_COMMA, - STATE(10009), 1, + ACTIONS(13249), 1, + anon_sym_DASH_GT, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(10065), 1, + STATE(10172), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417336] = 6, + [421266] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3406), 1, + ACTIONS(13251), 1, anon_sym_RBRACE, - ACTIONS(13062), 1, + ACTIONS(13253), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10066), 1, + STATE(10173), 1, sym_heredoc_body, + STATE(10223), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417356] = 6, + [421286] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10402), 1, - anon_sym_RBRACE, - ACTIONS(13064), 1, - anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(10067), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13255), 1, + anon_sym_end, + STATE(10174), 1, sym_heredoc_body, + STATE(11361), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417376] = 6, + [421306] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13066), 1, - anon_sym_end, - STATE(10068), 1, + STATE(10175), 1, sym_heredoc_body, - STATE(11240), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417396] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + ACTIONS(6073), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [421322] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13068), 1, - aux_sym_char_token1, - STATE(10069), 1, + STATE(10176), 1, sym_heredoc_body, - ACTIONS(13070), 2, - sym__char_comment, - sym_char_escape_sequence, - [417416] = 6, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5843), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [421338] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13072), 1, - anon_sym_end, - STATE(10070), 1, + ACTIONS(13257), 1, + anon_sym_RBRACE, + ACTIONS(13259), 1, + anon_sym_COMMA, + STATE(10177), 1, sym_heredoc_body, - STATE(11152), 1, - sym_ensure, + STATE(10225), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417436] = 6, + [421358] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13074), 1, + ACTIONS(13261), 1, anon_sym_end, - STATE(10071), 1, + STATE(10178), 1, sym_heredoc_body, - STATE(10766), 1, + STATE(11435), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417456] = 6, + [421378] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13076), 1, + ACTIONS(13263), 1, anon_sym_end, - STATE(10072), 1, + STATE(10179), 1, sym_heredoc_body, - STATE(10523), 1, + STATE(11371), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417476] = 5, + [421398] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13078), 1, + ACTIONS(4218), 1, anon_sym_RPAREN, - ACTIONS(13080), 1, + ACTIONS(13265), 1, anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10180), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10073), 2, - sym_heredoc_body, - aux_sym_param_list_repeat1, - [417494] = 6, + [421418] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13083), 1, - anon_sym_end, - STATE(10074), 1, + ACTIONS(9694), 1, + anon_sym_RBRACE, + ACTIONS(13267), 1, + anon_sym_COMMA, + STATE(9904), 1, + aux_sym_proc_type_repeat1, + STATE(10181), 1, sym_heredoc_body, - STATE(11163), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417514] = 5, + [421438] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13085), 1, + ACTIONS(9638), 1, anon_sym_RBRACE, - ACTIONS(13087), 1, + ACTIONS(13269), 1, anon_sym_COMMA, + STATE(9904), 1, + aux_sym_proc_type_repeat1, + STATE(10182), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10075), 2, - sym_heredoc_body, - aux_sym_named_tuple_repeat1, - [417532] = 6, + [421458] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13090), 1, + ACTIONS(13271), 1, anon_sym_end, - STATE(10076), 1, + STATE(10183), 1, sym_heredoc_body, - STATE(11166), 1, + STATE(11664), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417552] = 4, + [421478] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10077), 1, + ACTIONS(10505), 1, + anon_sym_RBRACE, + ACTIONS(13273), 1, + anon_sym_COMMA, + STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(10184), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6194), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [417568] = 6, + [421498] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13092), 1, - anon_sym_end, - STATE(10078), 1, - sym_heredoc_body, - STATE(10562), 1, - sym_ensure, + ACTIONS(8871), 1, + anon_sym_RBRACK, + ACTIONS(13275), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417588] = 6, + STATE(10185), 2, + sym_heredoc_body, + aux_sym_annotation_argument_list_repeat1, + [421516] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13094), 1, + ACTIONS(13278), 1, anon_sym_end, - STATE(10079), 1, + STATE(10186), 1, sym_heredoc_body, - STATE(11169), 1, + STATE(10659), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417608] = 6, + [421536] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13096), 1, + ACTIONS(13280), 1, anon_sym_end, - STATE(10080), 1, + STATE(10187), 1, sym_heredoc_body, - STATE(11170), 1, + STATE(11381), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417628] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13098), 1, - anon_sym_RBRACE, - ACTIONS(13100), 1, - anon_sym_COMMA, - STATE(10081), 1, - sym_heredoc_body, - STATE(10093), 1, - aux_sym_proc_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [417648] = 6, + [421556] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13102), 1, + ACTIONS(13282), 1, anon_sym_RBRACE, - ACTIONS(13104), 1, + ACTIONS(13284), 1, anon_sym_COMMA, - STATE(10082), 1, - sym_heredoc_body, - STATE(10110), 1, - aux_sym_hash_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [417668] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13108), 1, - anon_sym_EQ, - STATE(10083), 1, + STATE(9793), 1, + aux_sym_named_tuple_repeat1, + STATE(10188), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13106), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [417686] = 6, + [421576] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13110), 1, + ACTIONS(10422), 1, anon_sym_RBRACE, - ACTIONS(13112), 1, + ACTIONS(13286), 1, anon_sym_COMMA, - STATE(10084), 1, - sym_heredoc_body, - STATE(10098), 1, + STATE(9660), 1, aux_sym_named_tuple_type_repeat1, + STATE(10189), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417706] = 6, + [421596] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13114), 1, - anon_sym_RBRACE, - ACTIONS(13116), 1, - anon_sym_COMMA, - STATE(10085), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13288), 1, + anon_sym_end, + STATE(10190), 1, sym_heredoc_body, - STATE(10114), 1, - aux_sym_named_tuple_repeat1, + STATE(11388), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417726] = 5, + [421616] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13120), 1, - aux_sym__base_method_def_token1, - STATE(10086), 1, + STATE(10191), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13118), 2, + ACTIONS(4785), 3, anon_sym_RPAREN, anon_sym_COMMA, - [417744] = 6, + anon_sym_EQ, + [421632] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(13122), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(10087), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13290), 1, + anon_sym_end, + STATE(10192), 1, sym_heredoc_body, + STATE(11132), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417764] = 6, + [421652] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13124), 1, + ACTIONS(13292), 1, anon_sym_end, - STATE(10088), 1, + STATE(10193), 1, sym_heredoc_body, - STATE(11278), 1, + STATE(11390), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417784] = 4, + [421672] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10089), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13294), 1, + anon_sym_end, + STATE(10194), 1, sym_heredoc_body, + STATE(10717), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6222), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [417800] = 6, + [421692] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4059), 1, - anon_sym_RPAREN, - ACTIONS(13126), 1, + ACTIONS(13296), 1, + anon_sym_RBRACE, + ACTIONS(13298), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10090), 1, + STATE(10195), 1, sym_heredoc_body, + STATE(10355), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417820] = 6, + [421712] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13128), 1, + ACTIONS(13300), 1, anon_sym_RBRACE, - ACTIONS(13130), 1, + ACTIONS(13302), 1, anon_sym_COMMA, - STATE(10091), 1, + STATE(10196), 1, sym_heredoc_body, - STATE(10138), 1, - aux_sym_implicit_object_tuple_repeat1, + STATE(10202), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417840] = 6, + [421732] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13132), 1, + ACTIONS(13304), 1, anon_sym_end, - STATE(10092), 1, + STATE(10197), 1, sym_heredoc_body, - STATE(10713), 1, + STATE(11470), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417860] = 6, + [421752] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9527), 1, + ACTIONS(13306), 1, anon_sym_RBRACE, - ACTIONS(13134), 1, + ACTIONS(13308), 1, anon_sym_COMMA, - STATE(10009), 1, - aux_sym_proc_type_repeat1, - STATE(10093), 1, + STATE(10198), 1, sym_heredoc_body, + STATE(10204), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417880] = 4, + [421772] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10094), 1, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(13310), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(10199), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6232), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [417896] = 4, + [421792] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10095), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(6244), 3, - anon_sym_RPAREN, + ACTIONS(3393), 1, anon_sym_RBRACE, + ACTIONS(13312), 1, anon_sym_COMMA, - [417912] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(12312), 1, - anon_sym_LPAREN, - ACTIONS(13136), 1, - anon_sym_RBRACK, - STATE(10096), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10200), 1, sym_heredoc_body, - STATE(11275), 1, - sym_annotation_argument_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417932] = 6, + [421812] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10374), 1, - anon_sym_RBRACE, - ACTIONS(13138), 1, + ACTIONS(4222), 1, + anon_sym_RPAREN, + ACTIONS(13314), 1, anon_sym_COMMA, - STATE(10075), 1, - aux_sym_named_tuple_repeat1, - STATE(10097), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10201), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417952] = 6, + [421832] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10437), 1, + ACTIONS(9644), 1, anon_sym_RBRACE, - ACTIONS(13140), 1, + ACTIONS(13316), 1, anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(10098), 1, + STATE(9904), 1, + aux_sym_proc_type_repeat1, + STATE(10202), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417972] = 6, + [421852] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13142), 1, + ACTIONS(4256), 1, anon_sym_RBRACE, - ACTIONS(13144), 1, + ACTIONS(13318), 1, anon_sym_COMMA, - STATE(10099), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10203), 1, sym_heredoc_body, - STATE(10118), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [417992] = 6, + [421872] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13146), 1, + ACTIONS(10513), 1, anon_sym_RBRACE, - ACTIONS(13148), 1, + ACTIONS(13320), 1, anon_sym_COMMA, - STATE(10100), 1, + STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(10204), 1, sym_heredoc_body, - STATE(10120), 1, - aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418012] = 6, + [421892] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, + ACTIONS(3395), 1, + anon_sym_RBRACE, + ACTIONS(13322), 1, anon_sym_COMMA, - ACTIONS(13150), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(10101), 1, + STATE(10205), 1, sym_heredoc_body, + STATE(10439), 1, + aux_sym_implicit_object_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418032] = 4, + [421912] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10102), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13324), 1, + anon_sym_end, + STATE(10206), 1, sym_heredoc_body, + STATE(10886), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6248), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [418048] = 4, + [421932] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10103), 1, - sym_heredoc_body, + ACTIONS(13326), 1, + anon_sym_RPAREN, + ACTIONS(13328), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6294), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [418064] = 6, + STATE(10207), 2, + sym_heredoc_body, + aux_sym_type_param_list_repeat1, + [421950] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13152), 1, + ACTIONS(13331), 1, anon_sym_end, - STATE(10104), 1, + STATE(10208), 1, sym_heredoc_body, - STATE(11371), 1, + STATE(11509), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418084] = 6, + [421970] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4263), 1, - anon_sym_RBRACE, - ACTIONS(13154), 1, + ACTIONS(4258), 1, + anon_sym_RBRACK, + ACTIONS(13333), 1, anon_sym_COMMA, - STATE(9279), 1, + STATE(9372), 1, aux_sym_array_repeat1, - STATE(10105), 1, + STATE(10209), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418104] = 6, + [421990] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12312), 1, - anon_sym_LPAREN, - ACTIONS(13156), 1, - anon_sym_RBRACK, - STATE(10106), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13335), 1, + anon_sym_end, + STATE(10210), 1, sym_heredoc_body, - STATE(11376), 1, - sym_annotation_argument_list, + STATE(10736), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418124] = 4, + [422010] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10107), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(5836), 3, - anon_sym_RPAREN, + ACTIONS(4136), 1, anon_sym_RBRACE, + ACTIONS(13337), 1, anon_sym_COMMA, - [418140] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(10108), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10211), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5878), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [418156] = 6, + [422030] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4241), 1, + ACTIONS(3861), 1, anon_sym_RBRACE, - ACTIONS(13158), 1, + ACTIONS(13339), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10109), 1, + STATE(10212), 1, sym_heredoc_body, + STATE(10275), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418176] = 6, + [422050] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3689), 1, + ACTIONS(13341), 1, anon_sym_RBRACE, - ACTIONS(13160), 1, + ACTIONS(13343), 1, anon_sym_COMMA, - STATE(9934), 1, - aux_sym_hash_repeat1, - STATE(10110), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [418196] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - STATE(10111), 1, + STATE(10213), 1, sym_heredoc_body, + STATE(10219), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13162), 3, - anon_sym_end, - anon_sym_elsif, - anon_sym_else, - [418212] = 6, + [422070] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13164), 1, - anon_sym_end, - STATE(10112), 1, + ACTIONS(13345), 1, + anon_sym_RBRACE, + ACTIONS(13347), 1, + anon_sym_COMMA, + STATE(10214), 1, sym_heredoc_body, - STATE(11291), 1, - sym_ensure, + STATE(10222), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418232] = 5, + [422090] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13168), 1, - aux_sym__base_method_def_token1, - STATE(10113), 1, + STATE(10215), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13166), 2, + ACTIONS(6249), 3, anon_sym_RPAREN, - anon_sym_COMMA, - [418250] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(10342), 1, anon_sym_RBRACE, - ACTIONS(13170), 1, anon_sym_COMMA, - STATE(10075), 1, - aux_sym_named_tuple_repeat1, - STATE(10114), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [418270] = 4, + [422106] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10115), 1, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(13349), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(10216), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6022), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [418286] = 6, + [422126] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3895), 1, + ACTIONS(4172), 1, anon_sym_RBRACE, - ACTIONS(13172), 1, + ACTIONS(13351), 1, anon_sym_COMMA, - STATE(9279), 1, + STATE(9372), 1, aux_sym_array_repeat1, - STATE(10116), 1, + STATE(10217), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418306] = 6, + [422146] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3901), 1, - anon_sym_RBRACE, - ACTIONS(13174), 1, + ACTIONS(4226), 1, + anon_sym_RPAREN, + ACTIONS(13353), 1, anon_sym_COMMA, - STATE(9279), 1, + STATE(9372), 1, aux_sym_array_repeat1, - STATE(10117), 1, + STATE(10218), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418326] = 6, + [422166] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3703), 1, + ACTIONS(9660), 1, anon_sym_RBRACE, - ACTIONS(13176), 1, + ACTIONS(13355), 1, anon_sym_COMMA, - STATE(9934), 1, - aux_sym_hash_repeat1, - STATE(10118), 1, + STATE(9904), 1, + aux_sym_proc_type_repeat1, + STATE(10219), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418346] = 6, + [422186] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4257), 1, - anon_sym_RBRACK, - ACTIONS(13178), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10119), 1, + STATE(10220), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418366] = 6, + ACTIONS(13357), 3, + anon_sym_end, + anon_sym_else, + anon_sym_when, + [422202] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10272), 1, + ACTIONS(10307), 1, anon_sym_RBRACE, - ACTIONS(13180), 1, + ACTIONS(13359), 1, anon_sym_COMMA, - STATE(10075), 1, + STATE(9812), 1, aux_sym_named_tuple_repeat1, - STATE(10120), 1, + STATE(10221), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418386] = 5, + [422222] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13184), 1, - anon_sym_EQ, - STATE(10121), 1, + ACTIONS(10301), 1, + anon_sym_RBRACE, + ACTIONS(13361), 1, + anon_sym_COMMA, + STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(10222), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13182), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [418404] = 6, + [422242] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3691), 1, + ACTIONS(3731), 1, anon_sym_RBRACE, - ACTIONS(13186), 1, + ACTIONS(13363), 1, anon_sym_COMMA, - STATE(9934), 1, - aux_sym_hash_repeat1, - STATE(10122), 1, + STATE(10223), 1, sym_heredoc_body, + STATE(10275), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418424] = 6, + [422262] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13188), 1, + ACTIONS(13365), 1, anon_sym_end, - STATE(10123), 1, + STATE(10224), 1, sym_heredoc_body, - STATE(11433), 1, + STATE(11473), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418444] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(3917), 1, - anon_sym_RBRACK, - ACTIONS(13190), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10124), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [418464] = 6, + [422282] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8563), 1, - anon_sym_RPAREN, - ACTIONS(8565), 1, + ACTIONS(10391), 1, + anon_sym_RBRACE, + ACTIONS(13367), 1, anon_sym_COMMA, - STATE(9859), 1, - aux_sym_annotation_argument_list_repeat1, - STATE(10125), 1, + STATE(9812), 1, + aux_sym_named_tuple_repeat1, + STATE(10225), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418484] = 6, + [422302] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13192), 1, + ACTIONS(13369), 1, anon_sym_end, - STATE(10126), 1, + STATE(10226), 1, sym_heredoc_body, - STATE(11480), 1, + STATE(11545), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418504] = 6, + [422322] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13194), 1, + ACTIONS(13371), 1, anon_sym_end, - STATE(10127), 1, + STATE(10227), 1, sym_heredoc_body, - STATE(11368), 1, + STATE(11486), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418524] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(13196), 1, - anon_sym_end, - STATE(10128), 1, - sym_heredoc_body, - STATE(10878), 1, - sym_else, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [418544] = 6, + [422342] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13198), 1, - anon_sym_RBRACE, - ACTIONS(13200), 1, - anon_sym_COMMA, - STATE(10129), 1, - sym_heredoc_body, - STATE(10142), 1, - aux_sym_proc_type_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [418564] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(8710), 1, - anon_sym_RPAREN, - ACTIONS(8712), 1, + ACTIONS(4174), 1, + anon_sym_RBRACK, + ACTIONS(13373), 1, anon_sym_COMMA, - STATE(10130), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10228), 1, sym_heredoc_body, - STATE(10168), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418584] = 6, + [422362] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13202), 1, - anon_sym_RBRACE, - ACTIONS(13204), 1, - anon_sym_COMMA, - STATE(10131), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + STATE(10229), 1, sym_heredoc_body, - STATE(10143), 1, - aux_sym_named_tuple_type_repeat1, + STATE(11343), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418604] = 4, + [422382] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10132), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13375), 1, + anon_sym_end, + STATE(10230), 1, sym_heredoc_body, + STATE(11491), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6322), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [418620] = 6, + [422402] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13206), 1, + ACTIONS(13377), 1, anon_sym_end, - STATE(10133), 1, + STATE(10231), 1, sym_heredoc_body, - STATE(11384), 1, + STATE(11564), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418640] = 6, + [422422] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13208), 1, - anon_sym_end, - STATE(10134), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + STATE(10232), 1, sym_heredoc_body, - STATE(11388), 1, - sym_ensure, + STATE(11408), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418660] = 6, + [422442] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13210), 1, - anon_sym_end, - STATE(10135), 1, + ACTIONS(4138), 1, + anon_sym_RBRACK, + ACTIONS(13379), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10233), 1, sym_heredoc_body, - STATE(11461), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418680] = 6, + [422462] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(13212), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(10136), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13381), 1, + anon_sym_end, + STATE(10234), 1, sym_heredoc_body, + STATE(10872), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418700] = 6, + [422482] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8610), 1, + ACTIONS(8561), 1, anon_sym_RPAREN, - ACTIONS(8612), 1, + ACTIONS(8563), 1, anon_sym_COMMA, - STATE(10137), 1, + STATE(10235), 1, sym_heredoc_body, - STATE(10212), 1, + STATE(10268), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418720] = 6, + [422502] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3408), 1, - anon_sym_RBRACE, - ACTIONS(13214), 1, + ACTIONS(4316), 1, + anon_sym_RBRACK, + ACTIONS(13383), 1, anon_sym_COMMA, - STATE(9808), 1, - aux_sym_implicit_object_tuple_repeat1, - STATE(10138), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10236), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418740] = 6, + [422522] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10376), 1, - anon_sym_RBRACE, - ACTIONS(13216), 1, - anon_sym_COMMA, - STATE(10075), 1, - aux_sym_named_tuple_repeat1, - STATE(10139), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(13385), 1, + anon_sym_end, + STATE(10237), 1, sym_heredoc_body, + STATE(11695), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418760] = 6, + [422542] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4081), 1, - anon_sym_RPAREN, - ACTIONS(13218), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10140), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13387), 1, + anon_sym_end, + STATE(10238), 1, sym_heredoc_body, + STATE(11593), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418780] = 6, + [422562] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10400), 1, + ACTIONS(9726), 1, anon_sym_RBRACE, - ACTIONS(13220), 1, + ACTIONS(13389), 1, anon_sym_COMMA, - STATE(10075), 1, - aux_sym_named_tuple_repeat1, - STATE(10141), 1, + STATE(9904), 1, + aux_sym_proc_type_repeat1, + STATE(10239), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418800] = 6, + [422582] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9629), 1, + ACTIONS(13391), 1, anon_sym_RBRACE, - ACTIONS(13222), 1, + ACTIONS(13393), 1, anon_sym_COMMA, - STATE(10009), 1, - aux_sym_proc_type_repeat1, - STATE(10142), 1, + STATE(10240), 1, sym_heredoc_body, + STATE(10254), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418820] = 6, + [422602] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10310), 1, + ACTIONS(13395), 1, anon_sym_RBRACE, - ACTIONS(13224), 1, + ACTIONS(13397), 1, anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(10143), 1, + STATE(10241), 1, sym_heredoc_body, + STATE(10257), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418840] = 6, + [422622] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13226), 1, + ACTIONS(13399), 1, anon_sym_end, - STATE(10144), 1, + STATE(10242), 1, sym_heredoc_body, - STATE(11568), 1, + STATE(11600), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418860] = 6, + [422642] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13228), 1, + ACTIONS(13401), 1, anon_sym_end, - STATE(10145), 1, + STATE(10243), 1, sym_heredoc_body, - STATE(10522), 1, + STATE(10761), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418880] = 6, + [422662] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4237), 1, - anon_sym_RBRACK, - ACTIONS(13230), 1, + ACTIONS(13403), 1, + anon_sym_RBRACE, + ACTIONS(13405), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10146), 1, + STATE(10244), 1, sym_heredoc_body, + STATE(10277), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418900] = 6, + [422682] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3983), 1, - anon_sym_RBRACK, - ACTIONS(13232), 1, + ACTIONS(13407), 1, + anon_sym_RBRACE, + ACTIONS(13409), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10147), 1, + STATE(10245), 1, sym_heredoc_body, + STATE(10291), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418920] = 6, + [422702] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13234), 1, - anon_sym_RBRACE, - ACTIONS(13236), 1, + ACTIONS(4787), 1, anon_sym_COMMA, - STATE(9734), 1, + ACTIONS(13411), 1, + anon_sym_DASH_GT, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(10148), 1, + STATE(10246), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418940] = 6, + [422722] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13238), 1, - anon_sym_end, - STATE(10149), 1, + ACTIONS(12527), 1, + anon_sym_LPAREN, + ACTIONS(13413), 1, + anon_sym_RBRACK, + STATE(10247), 1, sym_heredoc_body, - STATE(11540), 1, - sym_ensure, + STATE(11565), 1, + sym_annotation_argument_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418960] = 6, + [422742] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(13240), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13415), 1, anon_sym_end, - STATE(10150), 1, + STATE(10248), 1, sym_heredoc_body, - STATE(11395), 1, - sym_else, + STATE(11580), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [418980] = 6, + [422762] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13242), 1, - anon_sym_RBRACE, - ACTIONS(13244), 1, - anon_sym_COMMA, - STATE(10151), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13417), 1, + anon_sym_end, + STATE(10249), 1, sym_heredoc_body, - STATE(10161), 1, - aux_sym_proc_type_repeat1, + STATE(11267), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419000] = 6, + [422782] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13246), 1, - anon_sym_RBRACE, - ACTIONS(13248), 1, - anon_sym_COMMA, - STATE(10152), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(13419), 1, + anon_sym_end, + STATE(10250), 1, sym_heredoc_body, - STATE(10162), 1, - aux_sym_named_tuple_type_repeat1, + STATE(11634), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419020] = 6, + [422802] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13250), 1, + ACTIONS(13421), 1, anon_sym_end, - STATE(10153), 1, + STATE(10251), 1, sym_heredoc_body, - STATE(11503), 1, + STATE(10896), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419040] = 6, + [422822] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, + ACTIONS(4076), 1, + anon_sym_RBRACE, + ACTIONS(13423), 1, anon_sym_COMMA, - ACTIONS(13252), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(10154), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10252), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419060] = 6, + [422842] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13254), 1, + ACTIONS(13425), 1, anon_sym_RBRACE, - ACTIONS(13256), 1, + ACTIONS(13427), 1, anon_sym_COMMA, - STATE(10155), 1, + STATE(10253), 1, sym_heredoc_body, - STATE(10179), 1, + STATE(10294), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419080] = 6, + [422862] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13258), 1, - anon_sym_end, - STATE(10156), 1, + ACTIONS(3729), 1, + anon_sym_RBRACE, + ACTIONS(13429), 1, + anon_sym_COMMA, + STATE(10254), 1, sym_heredoc_body, - STATE(10856), 1, - sym_ensure, + STATE(10275), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419100] = 6, + [422882] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13260), 1, + ACTIONS(13431), 1, anon_sym_RBRACE, - ACTIONS(13262), 1, + ACTIONS(13433), 1, anon_sym_COMMA, - STATE(10157), 1, + STATE(10255), 1, sym_heredoc_body, - STATE(10180), 1, + STATE(10298), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419120] = 4, + [422902] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10158), 1, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(13435), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(10256), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13264), 3, - anon_sym_end, - anon_sym_else, - anon_sym_when, - [419136] = 6, + [422922] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4091), 1, - anon_sym_RPAREN, - ACTIONS(13266), 1, + ACTIONS(10482), 1, + anon_sym_RBRACE, + ACTIONS(13437), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10159), 1, + STATE(9812), 1, + aux_sym_named_tuple_repeat1, + STATE(10257), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419156] = 6, + [422942] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(13268), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(10160), 1, + STATE(10258), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419176] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9691), 1, + ACTIONS(13439), 3, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(13270), 1, anon_sym_COMMA, - STATE(10009), 1, - aux_sym_proc_type_repeat1, - STATE(10161), 1, + [422958] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(10259), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419196] = 6, + ACTIONS(13441), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [422974] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10352), 1, - anon_sym_RBRACE, - ACTIONS(13272), 1, + ACTIONS(4078), 1, + anon_sym_RBRACK, + ACTIONS(13443), 1, anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(10162), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10260), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419216] = 6, + [422994] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13274), 1, + ACTIONS(13445), 1, anon_sym_end, - STATE(10163), 1, + STATE(10261), 1, sym_heredoc_body, - STATE(11411), 1, + STATE(11654), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419236] = 6, + [423014] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8642), 1, + ACTIONS(4230), 1, anon_sym_RPAREN, - ACTIONS(8644), 1, + ACTIONS(13447), 1, anon_sym_COMMA, - STATE(10164), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10262), 1, sym_heredoc_body, - STATE(10329), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419256] = 6, + [423034] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13276), 1, - anon_sym_end, - STATE(10165), 1, + STATE(10263), 1, sym_heredoc_body, - STATE(10661), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419276] = 6, + ACTIONS(13449), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [423050] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13278), 1, + ACTIONS(13451), 1, anon_sym_end, - STATE(10166), 1, + STATE(10264), 1, sym_heredoc_body, - STATE(10926), 1, + STATE(11610), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419296] = 6, + [423070] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13280), 1, + ACTIONS(13453), 1, anon_sym_end, - STATE(10167), 1, + STATE(10265), 1, sym_heredoc_body, - STATE(11414), 1, + STATE(11665), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419316] = 6, + [423090] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(13455), 1, + anon_sym_COMMA, + ACTIONS(13457), 1, + anon_sym_PIPE, + STATE(9891), 1, + aux_sym_block_param_list_repeat1, + STATE(10266), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [423110] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3314), 1, + ACTIONS(8543), 1, anon_sym_RPAREN, - ACTIONS(13282), 1, + ACTIONS(8545), 1, anon_sym_COMMA, - STATE(10168), 1, + STATE(10267), 1, sym_heredoc_body, - STATE(10331), 1, + STATE(10285), 1, aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419336] = 6, + [423130] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3965), 1, + ACTIONS(3303), 1, anon_sym_RPAREN, - ACTIONS(13284), 1, + ACTIONS(13459), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10169), 1, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, + STATE(10268), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419356] = 6, + [423150] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13286), 1, - anon_sym_end, - STATE(10170), 1, + STATE(10269), 1, sym_heredoc_body, - STATE(11420), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419376] = 6, + ACTIONS(4800), 3, + sym__line_break, + anon_sym_SEMI, + anon_sym_end, + [423166] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13288), 1, + ACTIONS(13461), 1, anon_sym_end, - STATE(10171), 1, + STATE(10270), 1, sym_heredoc_body, - STATE(11647), 1, + STATE(11621), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419396] = 6, + [423186] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(4180), 1, + anon_sym_RPAREN, + ACTIONS(13463), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10271), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [423206] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13290), 1, + ACTIONS(13465), 1, anon_sym_end, - STATE(10172), 1, + STATE(10272), 1, sym_heredoc_body, - STATE(11507), 1, + STATE(11624), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419416] = 6, + [423226] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - STATE(10173), 1, + STATE(10273), 1, sym_heredoc_body, - STATE(11179), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419436] = 6, + ACTIONS(12310), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [423242] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13292), 1, + ACTIONS(13467), 1, anon_sym_end, - STATE(10174), 1, + STATE(10274), 1, sym_heredoc_body, - STATE(11424), 1, + STATE(11689), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419456] = 6, + [423262] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - STATE(10175), 1, - sym_heredoc_body, - STATE(11227), 1, - sym_constant, + ACTIONS(13469), 1, + anon_sym_RBRACE, + ACTIONS(13471), 1, + anon_sym_COMMA, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419476] = 6, + STATE(10275), 2, + sym_heredoc_body, + aux_sym_hash_repeat1, + [423280] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4077), 1, - anon_sym_RBRACK, - ACTIONS(13294), 1, + ACTIONS(13474), 1, + anon_sym_RBRACE, + ACTIONS(13476), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10176), 1, + STATE(10239), 1, + aux_sym_proc_type_repeat1, + STATE(10276), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419496] = 6, + [423300] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13296), 1, + ACTIONS(9668), 1, anon_sym_RBRACE, - ACTIONS(13298), 1, + ACTIONS(13478), 1, anon_sym_COMMA, - STATE(10177), 1, - sym_heredoc_body, - STATE(10210), 1, + STATE(9904), 1, aux_sym_proc_type_repeat1, + STATE(10277), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419516] = 6, + [423320] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13300), 1, + ACTIONS(13480), 1, anon_sym_end, - STATE(10178), 1, + STATE(10278), 1, sym_heredoc_body, - STATE(11964), 1, + STATE(11694), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419536] = 6, + [423340] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9621), 1, - anon_sym_RBRACE, - ACTIONS(13302), 1, - anon_sym_COMMA, - STATE(10009), 1, - aux_sym_proc_type_repeat1, - STATE(10179), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(13482), 1, + anon_sym_end, + STATE(10279), 1, sym_heredoc_body, + STATE(11631), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419556] = 6, + [423360] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10286), 1, + ACTIONS(13484), 1, anon_sym_RBRACE, - ACTIONS(13304), 1, + ACTIONS(13486), 1, anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(10180), 1, + STATE(10280), 1, sym_heredoc_body, + STATE(10293), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419576] = 6, + [423380] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13306), 1, + ACTIONS(13488), 1, anon_sym_RBRACE, - ACTIONS(13308), 1, + ACTIONS(13490), 1, anon_sym_COMMA, - STATE(10181), 1, + STATE(10281), 1, sym_heredoc_body, - STATE(10211), 1, + STATE(10295), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419596] = 4, + [423400] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10182), 1, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(13492), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(10282), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6366), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [419612] = 6, + [423420] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13310), 1, + ACTIONS(13494), 1, anon_sym_end, - STATE(10183), 1, + STATE(10283), 1, sym_heredoc_body, - STATE(11441), 1, + STATE(11644), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419632] = 6, + [423440] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(13312), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(10184), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13496), 1, + anon_sym_end, + STATE(10284), 1, sym_heredoc_body, + STATE(11647), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419652] = 4, + [423460] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10185), 1, + ACTIONS(3329), 1, + anon_sym_RPAREN, + ACTIONS(13498), 1, + anon_sym_COMMA, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, + STATE(10285), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6398), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [419668] = 6, + [423480] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13314), 1, + ACTIONS(13500), 1, anon_sym_end, - STATE(10186), 1, + STATE(10286), 1, sym_heredoc_body, - STATE(11446), 1, + STATE(11623), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419688] = 4, + [423500] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10187), 1, + ACTIONS(4084), 1, + anon_sym_RPAREN, + ACTIONS(13502), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10287), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5736), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [419704] = 4, + [423520] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10188), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13504), 1, + anon_sym_end, + STATE(10288), 1, sym_heredoc_body, + STATE(11657), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5740), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [419720] = 4, + [423540] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10189), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13506), 1, + anon_sym_end, + STATE(10289), 1, sym_heredoc_body, + STATE(11660), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5744), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [419736] = 4, + [423560] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10190), 1, + ACTIONS(13508), 1, + anon_sym_RBRACE, + ACTIONS(13510), 1, + anon_sym_COMMA, + STATE(9751), 1, + aux_sym_named_tuple_type_repeat1, + STATE(10290), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5748), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [419752] = 4, + [423580] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10191), 1, + ACTIONS(10311), 1, + anon_sym_RBRACE, + ACTIONS(13512), 1, + anon_sym_COMMA, + STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(10291), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5756), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [419768] = 4, + [423600] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10192), 1, + ACTIONS(8924), 1, + anon_sym_RPAREN, + ACTIONS(8926), 1, + anon_sym_COMMA, + STATE(9759), 1, + aux_sym_annotation_argument_list_repeat1, + STATE(10292), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5760), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [419784] = 6, + [423620] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13316), 1, - anon_sym_end, - STATE(10193), 1, + ACTIONS(9656), 1, + anon_sym_RBRACE, + ACTIONS(13514), 1, + anon_sym_COMMA, + STATE(9904), 1, + aux_sym_proc_type_repeat1, + STATE(10293), 1, sym_heredoc_body, - STATE(11452), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419804] = 4, + [423640] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10194), 1, + ACTIONS(9718), 1, + anon_sym_RBRACE, + ACTIONS(13516), 1, + anon_sym_COMMA, + STATE(9904), 1, + aux_sym_proc_type_repeat1, + STATE(10294), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5764), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [419820] = 4, + [423660] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10195), 1, + ACTIONS(10495), 1, + anon_sym_RBRACE, + ACTIONS(13518), 1, + anon_sym_COMMA, + STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(10295), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5772), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [419836] = 4, + [423680] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10196), 1, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(13520), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(10296), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5776), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [419852] = 6, + [423700] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13318), 1, + ACTIONS(13522), 1, anon_sym_end, - STATE(10197), 1, + STATE(10297), 1, sym_heredoc_body, - STATE(11455), 1, + STATE(11671), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419872] = 6, + [423720] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13320), 1, - anon_sym_end, - STATE(10198), 1, + ACTIONS(10395), 1, + anon_sym_RBRACE, + ACTIONS(13524), 1, + anon_sym_COMMA, + STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(10298), 1, sym_heredoc_body, - STATE(11458), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419892] = 6, + [423740] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13322), 1, + ACTIONS(13526), 1, anon_sym_end, - STATE(10199), 1, + STATE(10299), 1, sym_heredoc_body, - STATE(11459), 1, + STATE(11675), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419912] = 6, + [423760] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13324), 1, - anon_sym_end, - STATE(10200), 1, + ACTIONS(8952), 1, + anon_sym_RPAREN, + ACTIONS(8954), 1, + anon_sym_COMMA, + STATE(10032), 1, + aux_sym_annotation_argument_list_repeat1, + STATE(10300), 1, sym_heredoc_body, - STATE(11467), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419932] = 6, + [423780] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(13326), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13528), 1, anon_sym_end, - STATE(10201), 1, + STATE(10301), 1, sym_heredoc_body, - STATE(11526), 1, - sym_else, + STATE(11722), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419952] = 6, + [423800] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13328), 1, - anon_sym_RBRACE, - ACTIONS(13330), 1, - anon_sym_COMMA, - STATE(9756), 1, - aux_sym_named_tuple_type_repeat1, - STATE(10202), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13530), 1, + anon_sym_end, + STATE(10302), 1, sym_heredoc_body, + STATE(11681), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419972] = 6, + [423820] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13332), 1, - anon_sym_RBRACE, - ACTIONS(13334), 1, - anon_sym_COMMA, - STATE(10203), 1, + STATE(10303), 1, sym_heredoc_body, - STATE(10228), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [419992] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13336), 1, + ACTIONS(6209), 3, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(13338), 1, anon_sym_COMMA, - STATE(10204), 1, + [423836] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13532), 1, + anon_sym_end, + STATE(10304), 1, sym_heredoc_body, - STATE(10230), 1, - aux_sym_named_tuple_type_repeat1, + STATE(11685), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420012] = 6, + [423856] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, + ACTIONS(13534), 1, + anon_sym_RBRACE, + ACTIONS(13536), 1, anon_sym_COMMA, - ACTIONS(13340), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(10205), 1, + STATE(10305), 1, sym_heredoc_body, + STATE(10324), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420032] = 6, + [423876] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13342), 1, + ACTIONS(13538), 1, anon_sym_end, - STATE(10206), 1, + STATE(10306), 1, sym_heredoc_body, - STATE(11547), 1, + STATE(11688), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420052] = 6, + [423896] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13344), 1, + ACTIONS(13540), 1, anon_sym_end, - STATE(10207), 1, + STATE(10307), 1, sym_heredoc_body, - STATE(10953), 1, + STATE(11690), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420072] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(4099), 1, - anon_sym_RPAREN, - ACTIONS(13346), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10208), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [420092] = 6, + [423916] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13348), 1, + ACTIONS(13542), 1, anon_sym_end, - STATE(10209), 1, + STATE(10308), 1, sym_heredoc_body, - STATE(11552), 1, + STATE(11724), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420112] = 6, + [423936] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9625), 1, + ACTIONS(13544), 1, anon_sym_RBRACE, - ACTIONS(13350), 1, + ACTIONS(13546), 1, anon_sym_COMMA, - STATE(10009), 1, - aux_sym_proc_type_repeat1, - STATE(10210), 1, + STATE(10309), 1, sym_heredoc_body, + STATE(10310), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420132] = 6, + [423956] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10288), 1, + ACTIONS(3879), 1, anon_sym_RBRACE, - ACTIONS(13352), 1, + ACTIONS(13548), 1, anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(10211), 1, + STATE(10275), 1, + aux_sym_hash_repeat1, + STATE(10310), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420152] = 6, + [423976] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3268), 1, - anon_sym_RPAREN, - ACTIONS(13354), 1, + ACTIONS(13550), 1, + anon_sym_RBRACE, + ACTIONS(13552), 1, anon_sym_COMMA, - STATE(10212), 1, + STATE(10311), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10330), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420172] = 6, + [423996] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4005), 1, - anon_sym_RPAREN, - ACTIONS(13356), 1, + ACTIONS(13554), 1, + anon_sym_RBRACE, + ACTIONS(13556), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10213), 1, + STATE(10312), 1, sym_heredoc_body, + STATE(10313), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420192] = 6, + [424016] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11390), 1, - anon_sym_RPAREN, - ACTIONS(13358), 1, + ACTIONS(3887), 1, + anon_sym_RBRACE, + ACTIONS(13558), 1, anon_sym_COMMA, - STATE(9776), 1, - aux_sym_type_param_list_repeat1, - STATE(10214), 1, + STATE(10275), 1, + aux_sym_hash_repeat1, + STATE(10313), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420212] = 6, + [424036] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13360), 1, + ACTIONS(13560), 1, anon_sym_end, - STATE(10215), 1, + STATE(10314), 1, sym_heredoc_body, - STATE(11575), 1, + STATE(11284), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420232] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13362), 1, - anon_sym_RBRACE, - ACTIONS(13364), 1, - anon_sym_COMMA, - STATE(10216), 1, - sym_heredoc_body, - STATE(10234), 1, - aux_sym_hash_repeat1, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [420252] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13368), 1, - anon_sym_EQ, - STATE(10217), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(13366), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [420270] = 6, + [424056] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13370), 1, - anon_sym_RBRACE, - ACTIONS(13372), 1, + ACTIONS(4787), 1, anon_sym_COMMA, - STATE(10218), 1, + ACTIONS(13562), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(10315), 1, sym_heredoc_body, - STATE(10236), 1, - aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420290] = 6, + [424076] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13374), 1, + ACTIONS(13564), 1, anon_sym_end, - STATE(10219), 1, + STATE(10316), 1, sym_heredoc_body, - STATE(11583), 1, + STATE(11166), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420310] = 6, + [424096] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13376), 1, + ACTIONS(13566), 1, anon_sym_end, - STATE(10220), 1, + STATE(10317), 1, sym_heredoc_body, - STATE(10961), 1, + STATE(11749), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420330] = 5, + [424116] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13380), 1, - aux_sym__base_method_def_token1, - STATE(10221), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - ACTIONS(13378), 2, + ACTIONS(13568), 1, anon_sym_RPAREN, + ACTIONS(13570), 1, anon_sym_COMMA, - [420348] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13384), 1, - aux_sym__base_method_def_token1, - STATE(10222), 1, + STATE(9826), 1, + aux_sym_named_tuple_type_repeat1, + STATE(10318), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13382), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [420366] = 6, + [424136] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8626), 1, - anon_sym_RPAREN, - ACTIONS(8628), 1, + ACTIONS(13572), 1, + anon_sym_RBRACE, + ACTIONS(13574), 1, anon_sym_COMMA, - STATE(9701), 1, - aux_sym_annotation_argument_list_repeat1, - STATE(10223), 1, + STATE(10319), 1, sym_heredoc_body, + STATE(10321), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420386] = 6, + [424156] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10062), 1, - anon_sym_RPAREN, - ACTIONS(13386), 1, + ACTIONS(3827), 1, + anon_sym_RBRACE, + ACTIONS(13576), 1, anon_sym_COMMA, - STATE(10073), 1, - aux_sym_param_list_repeat1, - STATE(10224), 1, + STATE(10275), 1, + aux_sym_hash_repeat1, + STATE(10320), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420406] = 6, + [424176] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13388), 1, - anon_sym_end, - STATE(10225), 1, + ACTIONS(3893), 1, + anon_sym_RBRACE, + ACTIONS(13578), 1, + anon_sym_COMMA, + STATE(10275), 1, + aux_sym_hash_repeat1, + STATE(10321), 1, sym_heredoc_body, - STATE(10725), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420426] = 6, + [424196] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13390), 1, + ACTIONS(4234), 1, anon_sym_RPAREN, - ACTIONS(13392), 1, + ACTIONS(13580), 1, anon_sym_COMMA, - STATE(9954), 1, - aux_sym_named_tuple_type_repeat1, - STATE(10226), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10322), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420446] = 6, + [424216] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13394), 1, - anon_sym_end, - STATE(10227), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + STATE(9846), 1, + sym_constant, + STATE(10323), 1, sym_heredoc_body, - STATE(11576), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420466] = 6, + [424236] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9661), 1, + ACTIONS(9680), 1, anon_sym_RBRACE, - ACTIONS(13396), 1, + ACTIONS(13582), 1, anon_sym_COMMA, - STATE(10009), 1, + STATE(9904), 1, aux_sym_proc_type_repeat1, - STATE(10228), 1, + STATE(10324), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420486] = 5, + [424256] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(292), 1, - sym__terminator, - STATE(10229), 1, + ACTIONS(13584), 1, + anon_sym_RBRACE, + ACTIONS(13586), 1, + anon_sym_COMMA, + STATE(10325), 1, sym_heredoc_body, + STATE(10326), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1409), 2, - sym__line_break, - anon_sym_SEMI, - [420504] = 6, + [424276] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10364), 1, + ACTIONS(3897), 1, anon_sym_RBRACE, - ACTIONS(13398), 1, + ACTIONS(13588), 1, anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(10230), 1, + STATE(10275), 1, + aux_sym_hash_repeat1, + STATE(10326), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420524] = 4, + [424296] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10231), 1, + ACTIONS(13590), 1, + anon_sym_RBRACE, + ACTIONS(13592), 1, + anon_sym_COMMA, + STATE(10327), 1, sym_heredoc_body, + STATE(10328), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13400), 3, - sym_identifier, - sym_instance_var, - sym_class_var, - [420540] = 6, + [424316] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4023), 1, + ACTIONS(3901), 1, anon_sym_RBRACE, - ACTIONS(13402), 1, + ACTIONS(13594), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10232), 1, + STATE(10275), 1, + aux_sym_hash_repeat1, + STATE(10328), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420560] = 6, + [424336] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13404), 1, + ACTIONS(13596), 1, anon_sym_end, - STATE(10233), 1, + STATE(10329), 1, sym_heredoc_body, - STATE(10593), 1, + STATE(11765), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420580] = 6, + [424356] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3735), 1, + ACTIONS(10315), 1, anon_sym_RBRACE, - ACTIONS(13406), 1, + ACTIONS(13598), 1, anon_sym_COMMA, - STATE(9934), 1, - aux_sym_hash_repeat1, - STATE(10234), 1, + STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(10330), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420600] = 6, + [424376] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13408), 1, - anon_sym_end, - STATE(10235), 1, + ACTIONS(13600), 1, + anon_sym_RBRACE, + ACTIONS(13602), 1, + anon_sym_COMMA, + STATE(10331), 1, sym_heredoc_body, - STATE(11626), 1, - sym_ensure, + STATE(10348), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420620] = 6, + [424396] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10354), 1, + ACTIONS(13604), 1, anon_sym_RBRACE, - ACTIONS(13410), 1, + ACTIONS(13606), 1, anon_sym_COMMA, - STATE(10075), 1, - aux_sym_named_tuple_repeat1, - STATE(10236), 1, + STATE(10332), 1, sym_heredoc_body, + STATE(10354), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420640] = 6, + [424416] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13412), 1, + ACTIONS(13608), 1, anon_sym_end, - STATE(10237), 1, + STATE(10333), 1, sym_heredoc_body, - STATE(10738), 1, + STATE(11770), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420660] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(4067), 1, - anon_sym_RBRACK, - ACTIONS(13414), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10238), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [420680] = 6, + [424436] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13416), 1, - anon_sym_RBRACE, - ACTIONS(13418), 1, - anon_sym_COMMA, - STATE(10239), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13610), 1, + anon_sym_end, + STATE(10334), 1, sym_heredoc_body, - STATE(10273), 1, - aux_sym_proc_type_repeat1, + STATE(11772), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420700] = 6, + [424456] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13420), 1, + ACTIONS(13612), 1, anon_sym_end, - STATE(10240), 1, + STATE(10335), 1, sym_heredoc_body, - STATE(11614), 1, + STATE(11345), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420720] = 6, + [424476] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8725), 1, + ACTIONS(10958), 1, + sym_identifier, + ACTIONS(13614), 1, anon_sym_RPAREN, - ACTIONS(8727), 1, - anon_sym_COMMA, - STATE(10241), 1, + STATE(10336), 1, sym_heredoc_body, - STATE(10261), 1, - aux_sym_annotation_argument_list_repeat1, + STATE(10475), 1, + sym_block_body_param, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420740] = 6, + [424496] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13422), 1, - anon_sym_end, - STATE(10242), 1, + ACTIONS(13614), 1, + anon_sym_RPAREN, + ACTIONS(13616), 1, + anon_sym_COMMA, + STATE(9856), 1, + aux_sym__block_body_nested_param_repeat1, + STATE(10337), 1, sym_heredoc_body, - STATE(11627), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420760] = 6, + [424516] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13424), 1, + ACTIONS(13618), 1, anon_sym_end, - STATE(10243), 1, + STATE(10338), 1, sym_heredoc_body, - STATE(11632), 1, + STATE(11884), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420780] = 6, + [424536] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13426), 1, + ACTIONS(13620), 1, anon_sym_end, - STATE(10244), 1, + STATE(10339), 1, sym_heredoc_body, - STATE(11672), 1, + STATE(11352), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420800] = 6, + [424556] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13428), 1, + ACTIONS(13622), 1, anon_sym_end, - STATE(10245), 1, + STATE(10340), 1, sym_heredoc_body, - STATE(11490), 1, + STATE(11324), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420820] = 6, + [424576] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13430), 1, + ACTIONS(3437), 1, anon_sym_RBRACE, - ACTIONS(13432), 1, + ACTIONS(13624), 1, anon_sym_COMMA, - STATE(10246), 1, + STATE(10341), 1, sym_heredoc_body, - STATE(10278), 1, - aux_sym_named_tuple_type_repeat1, + STATE(10439), 1, + aux_sym_implicit_object_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420840] = 6, + [424596] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, + ACTIONS(13626), 1, anon_sym_COMMA, - ACTIONS(13434), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(10247), 1, - sym_heredoc_body, + ACTIONS(13629), 1, + anon_sym_PIPE, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420860] = 4, + STATE(10342), 2, + sym_heredoc_body, + aux_sym_block_param_list_repeat1, + [424614] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10248), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + STATE(10343), 1, sym_heredoc_body, + STATE(10826), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(11840), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [420876] = 6, + [424634] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4229), 1, - anon_sym_RPAREN, - ACTIONS(13436), 1, + ACTIONS(4088), 1, + anon_sym_RBRACE, + ACTIONS(13631), 1, anon_sym_COMMA, - STATE(9279), 1, + STATE(9372), 1, aux_sym_array_repeat1, - STATE(10249), 1, + STATE(10344), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420896] = 6, + [424654] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(13438), 1, - anon_sym_end, - STATE(10250), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + STATE(10345), 1, sym_heredoc_body, - STATE(11664), 1, - sym_else, + STATE(10838), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420916] = 6, + [424674] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13440), 1, - anon_sym_RBRACE, - ACTIONS(13442), 1, - anon_sym_COMMA, - STATE(10251), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13633), 1, + anon_sym_end, + STATE(10346), 1, sym_heredoc_body, - STATE(10252), 1, - aux_sym_hash_repeat1, + STATE(10777), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420936] = 6, + [424694] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3851), 1, + ACTIONS(13635), 1, anon_sym_RBRACE, - ACTIONS(13444), 1, + ACTIONS(13637), 1, anon_sym_COMMA, - STATE(9934), 1, + STATE(9768), 1, aux_sym_hash_repeat1, - STATE(10252), 1, + STATE(10347), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420956] = 6, + [424714] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13446), 1, + ACTIONS(3873), 1, anon_sym_RBRACE, - ACTIONS(13448), 1, + ACTIONS(13639), 1, anon_sym_COMMA, - STATE(10253), 1, + STATE(10275), 1, + aux_sym_hash_repeat1, + STATE(10348), 1, sym_heredoc_body, - STATE(10274), 1, - aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420976] = 6, + [424734] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13450), 1, + ACTIONS(3433), 1, anon_sym_RBRACE, - ACTIONS(13452), 1, + ACTIONS(13641), 1, anon_sym_COMMA, - STATE(10254), 1, + STATE(9995), 1, + aux_sym_implicit_object_tuple_repeat1, + STATE(10349), 1, sym_heredoc_body, - STATE(10275), 1, - aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [420996] = 6, + [424754] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, + ACTIONS(13643), 1, + anon_sym_RBRACE, + ACTIONS(13645), 1, anon_sym_COMMA, - ACTIONS(13454), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(10255), 1, + STATE(9782), 1, + aux_sym_named_tuple_repeat1, + STATE(10350), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421016] = 6, + [424774] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13456), 1, - anon_sym_RBRACE, - ACTIONS(13458), 1, + ACTIONS(3323), 1, + anon_sym_RPAREN, + ACTIONS(13647), 1, anon_sym_COMMA, - STATE(10256), 1, + STATE(10075), 1, + aux_sym_annotation_argument_list_repeat1, + STATE(10351), 1, sym_heredoc_body, - STATE(10257), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421036] = 6, + [424794] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3855), 1, + ACTIONS(13649), 1, anon_sym_RBRACE, - ACTIONS(13460), 1, + ACTIONS(13651), 1, anon_sym_COMMA, - STATE(9934), 1, - aux_sym_hash_repeat1, - STATE(10257), 1, + STATE(10352), 1, sym_heredoc_body, + STATE(10363), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421056] = 6, + [424814] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13462), 1, - anon_sym_end, - STATE(10258), 1, + ACTIONS(13653), 1, + anon_sym_RBRACE, + ACTIONS(13655), 1, + anon_sym_COMMA, + STATE(10353), 1, sym_heredoc_body, - STATE(11673), 1, - sym_ensure, + STATE(10367), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421076] = 6, + [424834] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13464), 1, - anon_sym_end, - STATE(10259), 1, + ACTIONS(10511), 1, + anon_sym_RBRACE, + ACTIONS(13657), 1, + anon_sym_COMMA, + STATE(9812), 1, + aux_sym_named_tuple_repeat1, + STATE(10354), 1, sym_heredoc_body, - STATE(11676), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421096] = 6, + [424854] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13466), 1, - anon_sym_end, - STATE(10260), 1, + ACTIONS(10509), 1, + anon_sym_RBRACE, + ACTIONS(13659), 1, + anon_sym_COMMA, + STATE(9812), 1, + aux_sym_named_tuple_repeat1, + STATE(10355), 1, sym_heredoc_body, - STATE(11695), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421116] = 6, + [424874] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3320), 1, + ACTIONS(4108), 1, anon_sym_RPAREN, - ACTIONS(13468), 1, + ACTIONS(13661), 1, anon_sym_COMMA, - STATE(10261), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10356), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421136] = 6, + [424894] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13470), 1, - anon_sym_end, - STATE(10262), 1, + ACTIONS(13665), 1, + anon_sym_EQ, + STATE(10357), 1, sym_heredoc_body, - STATE(10588), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421156] = 6, + ACTIONS(13663), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [424912] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13472), 1, - anon_sym_RBRACE, - ACTIONS(13474), 1, + ACTIONS(4787), 1, anon_sym_COMMA, - STATE(10263), 1, + ACTIONS(13667), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(10358), 1, sym_heredoc_body, - STATE(10265), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421176] = 6, + [424932] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4255), 1, - anon_sym_RPAREN, - ACTIONS(13476), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10264), 1, + STATE(10359), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421196] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(3859), 1, + ACTIONS(5831), 3, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(13478), 1, anon_sym_COMMA, - STATE(9934), 1, - aux_sym_hash_repeat1, - STATE(10265), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [421216] = 6, + [424948] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13480), 1, - anon_sym_end, - STATE(10266), 1, + ACTIONS(4238), 1, + anon_sym_RPAREN, + ACTIONS(13669), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10360), 1, sym_heredoc_body, - STATE(11682), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421236] = 6, + [424968] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13482), 1, - anon_sym_end, - STATE(10267), 1, + ACTIONS(4090), 1, + anon_sym_RBRACK, + ACTIONS(13671), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10361), 1, sym_heredoc_body, - STATE(11685), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421256] = 6, + [424988] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13484), 1, - anon_sym_RBRACE, - ACTIONS(13486), 1, - anon_sym_COMMA, - STATE(10268), 1, + STATE(10362), 1, sym_heredoc_body, - STATE(10269), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421276] = 6, + ACTIONS(5839), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [425004] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3863), 1, + ACTIONS(9686), 1, anon_sym_RBRACE, - ACTIONS(13488), 1, + ACTIONS(13673), 1, anon_sym_COMMA, - STATE(9934), 1, - aux_sym_hash_repeat1, - STATE(10269), 1, + STATE(9904), 1, + aux_sym_proc_type_repeat1, + STATE(10363), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421296] = 6, + [425024] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13490), 1, - anon_sym_RBRACE, - ACTIONS(13492), 1, + ACTIONS(8589), 1, + anon_sym_RPAREN, + ACTIONS(8885), 1, anon_sym_COMMA, - STATE(10270), 1, + STATE(9803), 1, + aux_sym_annotation_argument_list_repeat1, + STATE(10364), 1, sym_heredoc_body, - STATE(10271), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421316] = 6, + [425044] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3867), 1, - anon_sym_RBRACE, - ACTIONS(13494), 1, - anon_sym_COMMA, - STATE(9934), 1, - aux_sym_hash_repeat1, - STATE(10271), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13675), 1, + anon_sym_end, + STATE(10365), 1, sym_heredoc_body, + STATE(11986), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421336] = 6, + [425064] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13496), 1, + ACTIONS(13677), 1, anon_sym_end, - STATE(10272), 1, + STATE(10366), 1, sym_heredoc_body, - STATE(11943), 1, + STATE(10825), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421356] = 6, + [425084] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9641), 1, + ACTIONS(10319), 1, anon_sym_RBRACE, - ACTIONS(13498), 1, + ACTIONS(13679), 1, anon_sym_COMMA, - STATE(10009), 1, - aux_sym_proc_type_repeat1, - STATE(10273), 1, + STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(10367), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421376] = 6, + [425104] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9637), 1, - anon_sym_RBRACE, - ACTIONS(13500), 1, - anon_sym_COMMA, - STATE(10009), 1, - aux_sym_proc_type_repeat1, - STATE(10274), 1, + STATE(10368), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421396] = 6, + ACTIONS(5887), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [425120] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10378), 1, - anon_sym_RBRACE, - ACTIONS(13502), 1, + ACTIONS(8657), 1, + anon_sym_RPAREN, + ACTIONS(8659), 1, anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(10275), 1, + STATE(10369), 1, sym_heredoc_body, + STATE(10406), 1, + aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421416] = 6, + [425140] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13504), 1, - anon_sym_end, - STATE(10276), 1, + ACTIONS(9355), 1, + sym__constant_segment, + ACTIONS(9357), 1, + anon_sym_COLON_COLON, + STATE(9392), 1, + sym_constant, + STATE(10370), 1, sym_heredoc_body, - STATE(11696), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421436] = 6, + [425160] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13506), 1, - anon_sym_end, - STATE(10277), 1, + ACTIONS(13681), 1, + anon_sym_RBRACE, + ACTIONS(13683), 1, + anon_sym_COMMA, + STATE(10371), 1, sym_heredoc_body, - STATE(11702), 1, - sym_ensure, + STATE(10437), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421456] = 6, + [425180] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10398), 1, + ACTIONS(13685), 1, anon_sym_RBRACE, - ACTIONS(13508), 1, + ACTIONS(13687), 1, anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(10278), 1, + STATE(10372), 1, sym_heredoc_body, + STATE(10383), 1, + aux_sym_named_tuple_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421476] = 6, + [425200] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13510), 1, + ACTIONS(13689), 1, anon_sym_end, - STATE(10279), 1, + STATE(10373), 1, sym_heredoc_body, - STATE(11734), 1, + STATE(12035), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421496] = 6, + [425220] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9303), 1, - sym__constant_segment, - ACTIONS(9305), 1, - anon_sym_COLON_COLON, - STATE(9218), 1, - sym_constant, - STATE(10280), 1, + STATE(10374), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421516] = 6, + ACTIONS(5911), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [425236] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13512), 1, + ACTIONS(13691), 1, anon_sym_end, - STATE(10281), 1, + STATE(10375), 1, sym_heredoc_body, - STATE(11716), 1, + STATE(12038), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421536] = 6, + [425256] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - STATE(10282), 1, + STATE(10376), 1, sym_heredoc_body, - STATE(10728), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421556] = 6, + ACTIONS(5949), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [425272] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - STATE(10283), 1, + STATE(10377), 1, sym_heredoc_body, - STATE(10740), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421576] = 6, + ACTIONS(5957), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [425288] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13514), 1, - anon_sym_end, - STATE(10284), 1, + STATE(10378), 1, sym_heredoc_body, - STATE(10727), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421596] = 6, + ACTIONS(6007), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [425304] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13516), 1, + ACTIONS(13693), 1, anon_sym_end, - STATE(10285), 1, + STATE(10379), 1, sym_heredoc_body, - STATE(11720), 1, + STATE(11233), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421616] = 6, + [425324] = 6, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(13695), 1, + anon_sym_RBRACE, + ACTIONS(13697), 1, + anon_sym_COMMA, + STATE(10380), 1, + sym_heredoc_body, + STATE(10392), 1, + aux_sym_proc_type_repeat1, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [425344] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13518), 1, + ACTIONS(13699), 1, anon_sym_end, - STATE(10286), 1, + STATE(10381), 1, sym_heredoc_body, - STATE(11726), 1, + STATE(10827), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421636] = 6, + [425364] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13520), 1, + ACTIONS(13701), 1, anon_sym_RBRACE, - ACTIONS(13522), 1, + ACTIONS(13703), 1, anon_sym_COMMA, - STATE(9678), 1, - aux_sym_hash_repeat1, - STATE(10287), 1, + STATE(10382), 1, sym_heredoc_body, + STATE(10395), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421656] = 6, + [425384] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13524), 1, - anon_sym_end, - STATE(10288), 1, + ACTIONS(10409), 1, + anon_sym_RBRACE, + ACTIONS(13705), 1, + anon_sym_COMMA, + STATE(9812), 1, + aux_sym_named_tuple_repeat1, + STATE(10383), 1, sym_heredoc_body, - STATE(11730), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421676] = 6, + [425404] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13526), 1, - anon_sym_end, - STATE(10289), 1, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(13707), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(10384), 1, sym_heredoc_body, - STATE(11740), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421696] = 6, + [425424] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8513), 1, - anon_sym_RPAREN, - ACTIONS(8515), 1, - anon_sym_COMMA, - STATE(9764), 1, - aux_sym_annotation_argument_list_repeat1, - STATE(10290), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(13709), 1, + anon_sym_end, + STATE(10385), 1, sym_heredoc_body, + STATE(12046), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421716] = 6, + [425444] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13528), 1, + ACTIONS(13711), 1, anon_sym_end, - STATE(10291), 1, + STATE(10386), 1, sym_heredoc_body, - STATE(11745), 1, + STATE(11859), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421736] = 6, + [425464] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(13530), 1, - anon_sym_end, - STATE(10292), 1, + ACTIONS(4242), 1, + anon_sym_RPAREN, + ACTIONS(13713), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10387), 1, sym_heredoc_body, - STATE(11091), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421756] = 6, + [425484] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13532), 1, + ACTIONS(13715), 1, anon_sym_RBRACE, - ACTIONS(13534), 1, + ACTIONS(13717), 1, anon_sym_COMMA, - STATE(9680), 1, - aux_sym_named_tuple_repeat1, - STATE(10293), 1, + STATE(10388), 1, sym_heredoc_body, + STATE(10438), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421776] = 6, + [425504] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13536), 1, + ACTIONS(13719), 1, anon_sym_RBRACE, - ACTIONS(13538), 1, + ACTIONS(13721), 1, anon_sym_COMMA, - STATE(10294), 1, + STATE(10389), 1, sym_heredoc_body, - STATE(10312), 1, - aux_sym_proc_type_repeat1, + STATE(10440), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421796] = 6, + [425524] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13540), 1, - anon_sym_RBRACE, - ACTIONS(13542), 1, + ACTIONS(4787), 1, anon_sym_COMMA, - STATE(10295), 1, + ACTIONS(13723), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(10390), 1, sym_heredoc_body, - STATE(10314), 1, - aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421816] = 6, + [425544] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13544), 1, + ACTIONS(13725), 1, anon_sym_end, - STATE(10296), 1, + STATE(10391), 1, sym_heredoc_body, - STATE(11934), 1, + STATE(10708), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421836] = 6, + [425564] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, + ACTIONS(9698), 1, + anon_sym_RBRACE, + ACTIONS(13727), 1, anon_sym_COMMA, - ACTIONS(13546), 1, - anon_sym_DASH_GT, - STATE(9452), 1, + STATE(9904), 1, aux_sym_proc_type_repeat1, - STATE(10297), 1, + STATE(10392), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421856] = 6, + [425584] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13548), 1, - anon_sym_RBRACE, - ACTIONS(13550), 1, - anon_sym_COMMA, - STATE(10298), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13729), 1, + anon_sym_end, + STATE(10393), 1, sym_heredoc_body, - STATE(10353), 1, - aux_sym_proc_type_repeat1, + STATE(10946), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421876] = 6, + [425604] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13552), 1, - anon_sym_RBRACE, - ACTIONS(13554), 1, - anon_sym_COMMA, - STATE(9753), 1, - aux_sym_hash_repeat1, - STATE(10299), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + STATE(10394), 1, sym_heredoc_body, + STATE(10455), 1, + sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421896] = 4, + [425624] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10300), 1, + ACTIONS(10323), 1, + anon_sym_RBRACE, + ACTIONS(13731), 1, + anon_sym_COMMA, + STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(10395), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13556), 3, - sym_identifier, - sym_instance_var, - sym_class_var, - [421912] = 6, + [425644] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13558), 1, - anon_sym_RBRACE, - ACTIONS(13560), 1, - anon_sym_COMMA, - STATE(9913), 1, - aux_sym_named_tuple_repeat1, - STATE(10301), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13733), 1, + anon_sym_end, + STATE(10396), 1, sym_heredoc_body, + STATE(10757), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421932] = 6, + [425664] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13562), 1, - anon_sym_RBRACE, - ACTIONS(13564), 1, - anon_sym_COMMA, - STATE(10302), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13735), 1, + anon_sym_end, + STATE(10397), 1, sym_heredoc_body, - STATE(10354), 1, - aux_sym_named_tuple_type_repeat1, + STATE(12055), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421952] = 6, + [425684] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4247), 1, - anon_sym_RPAREN, - ACTIONS(13566), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10303), 1, + STATE(10398), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421972] = 6, + ACTIONS(6092), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [425700] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13568), 1, - anon_sym_RBRACE, - ACTIONS(13570), 1, + ACTIONS(13737), 1, + anon_sym_RPAREN, + ACTIONS(13739), 1, anon_sym_COMMA, - STATE(10304), 1, + STATE(10001), 1, + aux_sym_type_param_list_repeat1, + STATE(10399), 1, sym_heredoc_body, - STATE(10359), 1, - aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [421992] = 6, + [425720] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13572), 1, - anon_sym_end, - STATE(10305), 1, + ACTIONS(13741), 1, + anon_sym_RBRACE, + ACTIONS(13743), 1, + anon_sym_COMMA, + STATE(10400), 1, sym_heredoc_body, - STATE(11822), 1, - sym_ensure, + STATE(10408), 1, + aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422012] = 6, + [425740] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13574), 1, + ACTIONS(13745), 1, anon_sym_RBRACE, - ACTIONS(13576), 1, + ACTIONS(13747), 1, anon_sym_COMMA, - STATE(10306), 1, + STATE(10401), 1, sym_heredoc_body, - STATE(10361), 1, - aux_sym_named_tuple_repeat1, + STATE(10410), 1, + aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422032] = 6, + [425760] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13578), 1, + ACTIONS(13749), 1, anon_sym_end, - STATE(10307), 1, + STATE(10402), 1, sym_heredoc_body, - STATE(11509), 1, + STATE(12058), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422052] = 6, + [425780] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10213), 1, - anon_sym_def, - ACTIONS(13580), 1, - anon_sym_abstract, - STATE(199), 1, - sym__base_method_def, - STATE(10308), 1, + ACTIONS(4787), 1, + anon_sym_COMMA, + ACTIONS(13751), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(10403), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422072] = 6, + [425800] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13582), 1, - anon_sym_end, - STATE(10309), 1, + ACTIONS(13755), 1, + anon_sym_EQ, + STATE(10404), 1, sym_heredoc_body, - STATE(11186), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422092] = 6, + ACTIONS(13753), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [425818] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(10405), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(6173), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [425834] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8618), 1, + ACTIONS(3377), 1, anon_sym_RPAREN, - ACTIONS(8620), 1, + ACTIONS(13757), 1, anon_sym_COMMA, - STATE(9875), 1, + STATE(10075), 1, aux_sym_annotation_argument_list_repeat1, - STATE(10310), 1, + STATE(10406), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422112] = 4, + [425854] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10311), 1, + ACTIONS(4246), 1, + anon_sym_RPAREN, + ACTIONS(13759), 1, + anon_sym_COMMA, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10407), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(6006), 3, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - [422128] = 6, + [425874] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9539), 1, + ACTIONS(9702), 1, anon_sym_RBRACE, - ACTIONS(13584), 1, + ACTIONS(13761), 1, anon_sym_COMMA, - STATE(10009), 1, + STATE(9904), 1, aux_sym_proc_type_repeat1, - STATE(10312), 1, + STATE(10408), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422148] = 6, + [425894] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(13586), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(10313), 1, + ACTIONS(7398), 1, + anon_sym_else, + ACTIONS(13763), 1, + anon_sym_end, + STATE(10409), 1, sym_heredoc_body, + STATE(11380), 1, + sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422168] = 6, + [425914] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10418), 1, + ACTIONS(10327), 1, anon_sym_RBRACE, - ACTIONS(13588), 1, + ACTIONS(13765), 1, anon_sym_COMMA, - STATE(9335), 1, + STATE(9660), 1, aux_sym_named_tuple_type_repeat1, - STATE(10314), 1, + STATE(10410), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422188] = 6, + [425934] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13590), 1, + ACTIONS(13767), 1, anon_sym_end, - STATE(10315), 1, + STATE(10411), 1, sym_heredoc_body, - STATE(10632), 1, + STATE(10790), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422208] = 6, + [425954] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13592), 1, + ACTIONS(13769), 1, anon_sym_end, - STATE(10316), 1, + STATE(10412), 1, sym_heredoc_body, - STATE(10525), 1, + STATE(10835), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422228] = 6, + [425974] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13594), 1, - anon_sym_end, - STATE(10317), 1, + STATE(10413), 1, sym_heredoc_body, - STATE(11126), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422248] = 6, + ACTIONS(5781), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [425990] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(13596), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(10318), 1, + STATE(10414), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422268] = 6, + ACTIONS(6456), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [426006] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4231), 1, - anon_sym_RBRACK, - ACTIONS(13598), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10319), 1, + STATE(10415), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422288] = 6, + ACTIONS(5971), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [426022] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13600), 1, + ACTIONS(13771), 1, anon_sym_RBRACE, - ACTIONS(13602), 1, + ACTIONS(13773), 1, anon_sym_COMMA, - STATE(10320), 1, + STATE(10416), 1, sym_heredoc_body, - STATE(10328), 1, + STATE(10422), 1, aux_sym_proc_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422308] = 6, + [426042] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13604), 1, + ACTIONS(13775), 1, anon_sym_RBRACE, - ACTIONS(13606), 1, + ACTIONS(13777), 1, anon_sym_COMMA, - STATE(10321), 1, + STATE(10417), 1, sym_heredoc_body, - STATE(10330), 1, + STATE(10424), 1, aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422328] = 6, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13608), 1, - anon_sym_RPAREN, - ACTIONS(13610), 1, - anon_sym_COMMA, - STATE(10224), 1, - aux_sym_param_list_repeat1, - STATE(10322), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [422348] = 6, + [426062] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, + ACTIONS(4787), 1, anon_sym_COMMA, - ACTIONS(13612), 1, + ACTIONS(13779), 1, anon_sym_DASH_GT, - STATE(9452), 1, + STATE(9518), 1, aux_sym_proc_type_repeat1, - STATE(10323), 1, + STATE(10418), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422368] = 6, + [426082] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13614), 1, - anon_sym_end, - STATE(10324), 1, + STATE(10419), 1, sym_heredoc_body, - STATE(11149), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422388] = 6, + ACTIONS(6277), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [426098] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4275), 1, + ACTIONS(4250), 1, anon_sym_RPAREN, - ACTIONS(13616), 1, + ACTIONS(13781), 1, anon_sym_COMMA, - STATE(9279), 1, + STATE(9372), 1, aux_sym_array_repeat1, - STATE(10325), 1, + STATE(10420), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422408] = 6, + [426118] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13618), 1, - anon_sym_end, - STATE(10326), 1, + STATE(10421), 1, sym_heredoc_body, - STATE(11161), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422428] = 6, + ACTIONS(5859), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [426134] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13620), 1, - anon_sym_end, - STATE(10327), 1, + ACTIONS(9708), 1, + anon_sym_RBRACE, + ACTIONS(13783), 1, + anon_sym_COMMA, + STATE(9904), 1, + aux_sym_proc_type_repeat1, + STATE(10422), 1, sym_heredoc_body, - STATE(10948), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422448] = 6, + [426154] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9653), 1, + ACTIONS(13785), 1, anon_sym_RBRACE, - ACTIONS(13622), 1, + ACTIONS(13787), 1, anon_sym_COMMA, - STATE(10009), 1, + STATE(9767), 1, aux_sym_proc_type_repeat1, - STATE(10328), 1, + STATE(10423), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422468] = 6, + [426174] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3278), 1, + ACTIONS(10331), 1, + anon_sym_RBRACE, + ACTIONS(13789), 1, + anon_sym_COMMA, + STATE(9660), 1, + aux_sym_named_tuple_type_repeat1, + STATE(10424), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [426194] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(10425), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + ACTIONS(5891), 3, anon_sym_RPAREN, - ACTIONS(13624), 1, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(10329), 1, + [426210] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(10426), 1, sym_heredoc_body, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422488] = 6, + ACTIONS(5987), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [426226] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10304), 1, + ACTIONS(13791), 1, anon_sym_RBRACE, - ACTIONS(13626), 1, + ACTIONS(13793), 1, anon_sym_COMMA, - STATE(9335), 1, + STATE(9772), 1, aux_sym_named_tuple_type_repeat1, - STATE(10330), 1, + STATE(10427), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422508] = 5, + [426246] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8571), 1, - anon_sym_RPAREN, - ACTIONS(13628), 1, + ACTIONS(4787), 1, anon_sym_COMMA, + ACTIONS(13795), 1, + anon_sym_DASH_GT, + STATE(9518), 1, + aux_sym_proc_type_repeat1, + STATE(10428), 1, + sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - STATE(10331), 2, + [426266] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(13797), 1, + aux_sym_char_token1, + STATE(10429), 1, sym_heredoc_body, - aux_sym_annotation_argument_list_repeat1, - [422526] = 6, + ACTIONS(13799), 2, + sym__char_comment, + sym_char_escape_sequence, + [426286] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3915), 1, - anon_sym_RPAREN, - ACTIONS(13631), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10332), 1, + ACTIONS(9355), 1, + sym__constant_segment, + ACTIONS(9357), 1, + anon_sym_COLON_COLON, + STATE(9332), 1, + sym_constant, + STATE(10430), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422546] = 6, + [426306] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13633), 1, - anon_sym_RBRACE, - ACTIONS(13635), 1, + ACTIONS(4096), 1, + anon_sym_RPAREN, + ACTIONS(13801), 1, anon_sym_COMMA, - STATE(10097), 1, - aux_sym_named_tuple_repeat1, - STATE(10333), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10431), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422566] = 6, + [426326] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, + ACTIONS(1441), 1, sym__regular_ensure_keyword, - ACTIONS(13637), 1, + ACTIONS(13803), 1, anon_sym_end, - STATE(10334), 1, + STATE(10432), 1, sym_heredoc_body, - STATE(11168), 1, + STATE(11249), 1, sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422586] = 6, + [426346] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3398), 1, + ACTIONS(4184), 1, anon_sym_RBRACE, - ACTIONS(12408), 1, + ACTIONS(13805), 1, anon_sym_COMMA, - STATE(9808), 1, - aux_sym_implicit_object_tuple_repeat1, - STATE(10335), 1, + STATE(9372), 1, + aux_sym_array_repeat1, + STATE(10433), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422606] = 6, + [426366] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13639), 1, - anon_sym_RBRACE, - ACTIONS(13641), 1, - anon_sym_COMMA, - STATE(10336), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13807), 1, + anon_sym_end, + STATE(10434), 1, sym_heredoc_body, - STATE(10341), 1, - aux_sym_proc_type_repeat1, + STATE(11608), 1, + sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422626] = 6, + [426386] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13643), 1, - anon_sym_RBRACE, - ACTIONS(13645), 1, - anon_sym_COMMA, - STATE(10337), 1, + STATE(10435), 1, sym_heredoc_body, - STATE(10342), 1, - aux_sym_named_tuple_type_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422646] = 6, + ACTIONS(5945), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [426402] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4747), 1, - anon_sym_COMMA, - ACTIONS(13647), 1, - anon_sym_DASH_GT, - STATE(9452), 1, - aux_sym_proc_type_repeat1, - STATE(10338), 1, + ACTIONS(8009), 1, + sym__constant_segment, + ACTIONS(8011), 1, + anon_sym_COLON_COLON, + STATE(9820), 1, + sym_constant, + STATE(10436), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422666] = 6, + [426422] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4033), 1, - anon_sym_RPAREN, - ACTIONS(13649), 1, + ACTIONS(3725), 1, + anon_sym_RBRACE, + ACTIONS(13809), 1, anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10339), 1, + STATE(10275), 1, + aux_sym_hash_repeat1, + STATE(10437), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422686] = 6, + [426442] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13651), 1, - anon_sym_end, - STATE(10340), 1, + ACTIONS(9618), 1, + anon_sym_RBRACE, + ACTIONS(13811), 1, + anon_sym_COMMA, + STATE(9904), 1, + aux_sym_proc_type_repeat1, + STATE(10438), 1, sym_heredoc_body, - STATE(11176), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422706] = 6, + [426462] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9509), 1, + ACTIONS(9078), 1, anon_sym_RBRACE, - ACTIONS(13653), 1, + ACTIONS(13813), 1, anon_sym_COMMA, - STATE(10009), 1, - aux_sym_proc_type_repeat1, - STATE(10341), 1, - sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422726] = 6, + STATE(10439), 2, + sym_heredoc_body, + aux_sym_implicit_object_tuple_repeat1, + [426480] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10350), 1, + ACTIONS(10418), 1, anon_sym_RBRACE, - ACTIONS(13655), 1, + ACTIONS(13816), 1, anon_sym_COMMA, - STATE(9335), 1, + STATE(9660), 1, aux_sym_named_tuple_type_repeat1, - STATE(10342), 1, + STATE(10440), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422746] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [426500] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13657), 1, - aux_sym_char_token1, - STATE(10343), 1, + ACTIONS(1441), 1, + sym__regular_ensure_keyword, + ACTIONS(13818), 1, + anon_sym_end, + STATE(10441), 1, sym_heredoc_body, - ACTIONS(13659), 2, - sym__char_comment, - sym_char_escape_sequence, - [422766] = 6, + STATE(10750), 1, + sym_ensure, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [426520] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9303), 1, - sym__constant_segment, - ACTIONS(9305), 1, - anon_sym_COLON_COLON, - STATE(9189), 1, - sym_constant, - STATE(10344), 1, + ACTIONS(13820), 1, + anon_sym_RBRACE, + ACTIONS(13822), 1, + anon_sym_COMMA, + STATE(10442), 1, sym_heredoc_body, + STATE(10443), 1, + aux_sym_hash_repeat1, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422786] = 6, + [426540] = 6, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - STATE(10345), 1, + ACTIONS(3915), 1, + anon_sym_RBRACE, + ACTIONS(13824), 1, + anon_sym_COMMA, + STATE(10275), 1, + aux_sym_hash_repeat1, + STATE(10443), 1, sym_heredoc_body, - STATE(10368), 1, - sym_constant, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422806] = 6, + [426560] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13661), 1, - anon_sym_end, - STATE(10346), 1, + STATE(10444), 1, sym_heredoc_body, - STATE(11221), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422826] = 6, + ACTIONS(6057), 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + [426576] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13663), 1, - anon_sym_end, - STATE(10347), 1, + STATE(10445), 1, sym_heredoc_body, - STATE(10591), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422846] = 6, + ACTIONS(13826), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [426591] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3326), 1, + ACTIONS(13828), 1, anon_sym_RPAREN, - ACTIONS(13665), 1, + ACTIONS(13830), 1, anon_sym_COMMA, - STATE(10331), 1, - aux_sym_annotation_argument_list_repeat1, - STATE(10348), 1, + STATE(10446), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422866] = 6, + [426608] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10213), 1, - anon_sym_def, - ACTIONS(13667), 1, - anon_sym_abstract, - STATE(188), 1, - sym__base_method_def, - STATE(10349), 1, + ACTIONS(13832), 1, + anon_sym_RPAREN, + ACTIONS(13834), 1, + anon_sym_COMMA, + STATE(10447), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422886] = 6, + [426625] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3899), 1, - anon_sym_RPAREN, - ACTIONS(13669), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10350), 1, + ACTIONS(13836), 1, + anon_sym_RBRACK, + ACTIONS(13838), 1, + anon_sym_RBRACK_QMARK, + STATE(10448), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422906] = 6, + [426642] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7377), 1, - anon_sym_else, - ACTIONS(13671), 1, - anon_sym_end, - STATE(10351), 1, + STATE(10449), 1, sym_heredoc_body, - STATE(10997), 1, - sym_else, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422926] = 6, + ACTIONS(13840), 2, + anon_sym_end, + anon_sym_in, + [426657] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3392), 1, - anon_sym_RBRACK, - ACTIONS(13673), 1, - anon_sym_COMMA, - STATE(9763), 1, - aux_sym_annotation_argument_list_repeat1, - STATE(10352), 1, + ACTIONS(10958), 1, + sym_identifier, + STATE(9887), 1, + sym_block_body_param, + STATE(10450), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422946] = 6, + [426674] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(9503), 1, - anon_sym_RBRACE, - ACTIONS(13675), 1, - anon_sym_COMMA, - STATE(10009), 1, - aux_sym_proc_type_repeat1, - STATE(10353), 1, + ACTIONS(13842), 1, + anon_sym_RBRACK, + ACTIONS(13844), 1, + anon_sym_RBRACK_QMARK, + STATE(10451), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422966] = 6, + [426691] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10358), 1, - anon_sym_RBRACE, - ACTIONS(13677), 1, - anon_sym_COMMA, - STATE(9335), 1, - aux_sym_named_tuple_type_repeat1, - STATE(10354), 1, + STATE(10452), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [422986] = 6, + ACTIONS(5847), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [426706] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13679), 1, - anon_sym_end, - STATE(10355), 1, + STATE(10453), 1, sym_heredoc_body, - STATE(11205), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423006] = 6, + ACTIONS(12502), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [426721] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13681), 1, - anon_sym_end, - STATE(10356), 1, + STATE(10454), 1, sym_heredoc_body, - STATE(11362), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423026] = 6, + ACTIONS(13846), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [426736] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13683), 1, - anon_sym_end, - STATE(10357), 1, + STATE(10455), 1, sym_heredoc_body, - STATE(11546), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423046] = 6, + ACTIONS(13848), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [426751] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(4279), 1, - anon_sym_RBRACE, - ACTIONS(13685), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10358), 1, + STATE(10456), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423066] = 6, + ACTIONS(13840), 2, + anon_sym_end, + anon_sym_in, + [426766] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3761), 1, - anon_sym_RBRACE, - ACTIONS(13687), 1, - anon_sym_COMMA, - STATE(9934), 1, - aux_sym_hash_repeat1, - STATE(10359), 1, + STATE(10457), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423086] = 5, + ACTIONS(13850), 2, + anon_sym_end, + anon_sym_in, + [426781] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(276), 1, - sym__terminator, - STATE(10360), 1, + ACTIONS(13852), 1, + anon_sym_RBRACK, + ACTIONS(13854), 1, + anon_sym_RBRACK_QMARK, + STATE(10458), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(1409), 2, - sym__line_break, - anon_sym_SEMI, - [423104] = 6, + [426798] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10457), 1, - anon_sym_RBRACE, - ACTIONS(13689), 1, - anon_sym_COMMA, - STATE(10075), 1, - aux_sym_named_tuple_repeat1, - STATE(10361), 1, + STATE(10459), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423124] = 6, + ACTIONS(8871), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [426813] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13691), 1, - anon_sym_RBRACE, - ACTIONS(13693), 1, - anon_sym_COMMA, - STATE(10059), 1, - aux_sym_hash_repeat1, - STATE(10362), 1, + STATE(10460), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423144] = 6, + ACTIONS(13840), 2, + anon_sym_end, + anon_sym_in, + [426828] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13695), 1, - anon_sym_RBRACE, - ACTIONS(13697), 1, - anon_sym_COMMA, - STATE(10139), 1, - aux_sym_named_tuple_repeat1, - STATE(10363), 1, + STATE(10461), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423164] = 6, + ACTIONS(13629), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [426843] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(3889), 1, - anon_sym_RBRACK, - ACTIONS(13699), 1, - anon_sym_COMMA, - STATE(9279), 1, - aux_sym_array_repeat1, - STATE(10364), 1, + STATE(10462), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423184] = 6, + ACTIONS(13856), 2, + sym__percent_literal_end, + sym__delimited_array_element_start, + [426858] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13701), 1, - anon_sym_RBRACE, - ACTIONS(13703), 1, - anon_sym_COMMA, - STATE(9754), 1, - aux_sym_hash_repeat1, - STATE(10365), 1, + STATE(10463), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423204] = 4, + ACTIONS(13840), 2, + anon_sym_end, + anon_sym_in, + [426873] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10366), 1, + ACTIONS(13858), 1, + anon_sym_RPAREN, + ACTIONS(13860), 1, + anon_sym_COMMA, + STATE(10464), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4745), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [423220] = 6, + [426890] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13705), 1, - anon_sym_end, - STATE(10367), 1, + ACTIONS(13862), 1, + anon_sym_RBRACK, + ACTIONS(13864), 1, + anon_sym_RBRACK_QMARK, + STATE(10465), 1, sym_heredoc_body, - STATE(11472), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423240] = 6, + [426907] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12312), 1, - anon_sym_LPAREN, - ACTIONS(13707), 1, + ACTIONS(13866), 1, anon_sym_RBRACK, - STATE(10368), 1, + ACTIONS(13868), 1, + anon_sym_RBRACK_QMARK, + STATE(10466), 1, sym_heredoc_body, - STATE(11534), 1, - sym_annotation_argument_list, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423260] = 6, + [426924] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13709), 1, - anon_sym_end, - STATE(10369), 1, + ACTIONS(13870), 1, + anon_sym_RBRACK, + ACTIONS(13872), 1, + anon_sym_RBRACK_QMARK, + STATE(10467), 1, sym_heredoc_body, - STATE(11212), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423280] = 6, + [426941] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8737), 1, - anon_sym_RPAREN, - ACTIONS(8739), 1, - anon_sym_COMMA, - STATE(10348), 1, - aux_sym_annotation_argument_list_repeat1, - STATE(10370), 1, + ACTIONS(13874), 1, + anon_sym_RBRACK, + ACTIONS(13876), 1, + anon_sym_RBRACK_QMARK, + STATE(10468), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423300] = 6, + [426958] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(8038), 1, - sym__constant_segment, - ACTIONS(8040), 1, - anon_sym_COLON_COLON, - STATE(10106), 1, - sym_constant, - STATE(10371), 1, + STATE(10469), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423320] = 6, + ACTIONS(12407), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [426973] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13711), 1, - anon_sym_RBRACE, - ACTIONS(13713), 1, - anon_sym_COMMA, - STATE(9944), 1, - aux_sym_hash_repeat1, - STATE(10372), 1, + STATE(10470), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423340] = 6, + ACTIONS(13878), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [426988] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13715), 1, - anon_sym_RBRACE, - ACTIONS(13717), 1, + ACTIONS(13880), 1, + anon_sym_RPAREN, + ACTIONS(13882), 1, anon_sym_COMMA, - STATE(9767), 1, - aux_sym_named_tuple_repeat1, - STATE(10373), 1, + STATE(10471), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423360] = 6, + [427005] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(1421), 1, - sym__regular_ensure_keyword, - ACTIONS(13719), 1, - anon_sym_end, - STATE(10374), 1, + STATE(10472), 1, sym_heredoc_body, - STATE(11154), 1, - sym_ensure, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423380] = 4, + ACTIONS(4785), 2, + sym__start_of_brace_block, + anon_sym_do, + [427020] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10375), 1, + STATE(10473), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12903), 2, + ACTIONS(5941), 2, anon_sym_RPAREN, - anon_sym_COMMA, - [423395] = 5, + anon_sym_RBRACK, + [427035] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13721), 1, - anon_sym_RPAREN, - ACTIONS(13723), 1, - anon_sym_COMMA, - STATE(10376), 1, + STATE(10474), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423412] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13725), 1, + ACTIONS(13884), 2, anon_sym_RPAREN, - ACTIONS(13727), 1, anon_sym_COMMA, - STATE(10377), 1, + [427050] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + STATE(10475), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423429] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13729), 1, + ACTIONS(12591), 2, anon_sym_RPAREN, - ACTIONS(13731), 1, anon_sym_COMMA, - STATE(10378), 1, + [427065] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(13886), 1, + anon_sym_RBRACK, + ACTIONS(13888), 1, + anon_sym_RBRACK_QMARK, + STATE(10476), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423446] = 5, + [427082] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13733), 1, - anon_sym_RPAREN, - ACTIONS(13735), 1, - anon_sym_COMMA, - STATE(10379), 1, + STATE(10477), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423463] = 5, + ACTIONS(13890), 2, + sym__regular_ensure_keyword, + anon_sym_end, + [427097] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13737), 1, - anon_sym_RPAREN, - ACTIONS(13739), 1, - anon_sym_COMMA, - STATE(10380), 1, + STATE(10478), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423480] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13741), 1, + ACTIONS(12717), 2, anon_sym_RPAREN, - ACTIONS(13743), 1, anon_sym_COMMA, - STATE(10381), 1, + [427112] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(12033), 1, + anon_sym_def, + STATE(8027), 1, + sym__base_method_def, + STATE(10479), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423497] = 5, + [427129] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13745), 1, + ACTIONS(13892), 1, anon_sym_RPAREN, - ACTIONS(13747), 1, + ACTIONS(13894), 1, anon_sym_COMMA, - STATE(10382), 1, + STATE(10480), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423514] = 5, + [427146] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13749), 1, + ACTIONS(13896), 1, anon_sym_RPAREN, - ACTIONS(13751), 1, + ACTIONS(13898), 1, anon_sym_COMMA, - STATE(10383), 1, + STATE(10481), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423531] = 5, + [427163] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13753), 1, + ACTIONS(13900), 1, anon_sym_RPAREN, - ACTIONS(13755), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - STATE(10384), 1, + STATE(10482), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423548] = 5, + [427180] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13757), 1, + ACTIONS(13904), 1, anon_sym_RPAREN, - ACTIONS(13759), 1, + ACTIONS(13906), 1, anon_sym_COMMA, - STATE(10385), 1, + STATE(10483), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423565] = 5, + [427197] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13761), 1, - anon_sym_RPAREN, - ACTIONS(13763), 1, - anon_sym_COMMA, - STATE(10386), 1, + ACTIONS(12092), 1, + anon_sym_def, + STATE(8568), 1, + sym__base_method_def, + STATE(10484), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423582] = 5, + [427214] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13765), 1, - anon_sym_RPAREN, - ACTIONS(13767), 1, - anon_sym_COMMA, - STATE(10387), 1, + ACTIONS(13908), 1, + anon_sym_RBRACK, + ACTIONS(13910), 1, + anon_sym_RBRACK_QMARK, + STATE(10485), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423599] = 5, + [427231] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13769), 1, - anon_sym_RPAREN, - ACTIONS(13771), 1, - anon_sym_COMMA, - STATE(10388), 1, + STATE(10486), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423616] = 5, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(13773), 1, + ACTIONS(13326), 2, anon_sym_RPAREN, - ACTIONS(13775), 1, anon_sym_COMMA, - STATE(10389), 1, + [427246] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(13912), 1, + anon_sym_RBRACK, + ACTIONS(13914), 1, + anon_sym_RBRACK_QMARK, + STATE(10487), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423633] = 4, + [427263] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10390), 1, + ACTIONS(13916), 1, + anon_sym_RPAREN, + ACTIONS(13918), 1, + aux_sym_proc_token1, + STATE(10488), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12467), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [423648] = 5, + [427280] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13777), 1, + ACTIONS(13920), 1, anon_sym_RBRACK, - ACTIONS(13779), 1, + ACTIONS(13922), 1, anon_sym_RBRACK_QMARK, - STATE(10391), 1, + STATE(10489), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423665] = 5, + [427297] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12016), 1, - anon_sym_def, - STATE(8226), 1, - sym__base_method_def, - STATE(10392), 1, + ACTIONS(10958), 1, + sym_identifier, + STATE(10475), 1, + sym_block_body_param, + STATE(10490), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423682] = 4, + [427314] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10393), 1, + ACTIONS(13924), 1, + sym__string_literal_start, + STATE(8025), 1, + sym_string, + STATE(10491), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8935), 2, - anon_sym_RBRACE, + [427331] = 5, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(263), 1, anon_sym_COMMA, - [423697] = 5, + ACTIONS(13926), 1, + anon_sym_EQ, + STATE(10492), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [427348] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13781), 1, + ACTIONS(13928), 1, anon_sym_RBRACK, - ACTIONS(13783), 1, + ACTIONS(13930), 1, anon_sym_RBRACK_QMARK, - STATE(10394), 1, + STATE(10493), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423714] = 5, + [427365] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, + ACTIONS(13932), 1, + anon_sym_RPAREN, + ACTIONS(13934), 1, anon_sym_COMMA, - ACTIONS(13785), 1, - anon_sym_EQ, - STATE(10395), 1, + STATE(10494), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423731] = 5, + [427382] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, + ACTIONS(263), 1, anon_sym_COMMA, - ACTIONS(13787), 1, + ACTIONS(13936), 1, anon_sym_EQ, - STATE(10396), 1, + STATE(10495), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423748] = 5, + [427399] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13789), 1, + ACTIONS(13938), 1, anon_sym_RPAREN, - ACTIONS(13791), 1, + ACTIONS(13940), 1, anon_sym_COMMA, - STATE(10397), 1, + STATE(10496), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423765] = 5, + [427416] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13793), 1, + ACTIONS(13942), 1, anon_sym_RBRACK, - ACTIONS(13795), 1, + ACTIONS(13944), 1, anon_sym_RBRACK_QMARK, - STATE(10398), 1, + STATE(10497), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423782] = 5, + [427433] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13797), 1, + ACTIONS(13946), 1, anon_sym_RBRACK, - ACTIONS(13799), 1, + ACTIONS(13948), 1, anon_sym_RBRACK_QMARK, - STATE(10399), 1, + STATE(10498), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423799] = 5, + [427450] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11917), 1, - anon_sym_def, - STATE(8060), 1, - sym__base_method_def, - STATE(10400), 1, + STATE(10499), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423816] = 5, + ACTIONS(13950), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [427465] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13801), 1, + ACTIONS(13952), 1, anon_sym_RBRACK, - ACTIONS(13803), 1, + ACTIONS(13954), 1, anon_sym_RBRACK_QMARK, - STATE(10401), 1, + STATE(10500), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423833] = 5, + [427482] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13805), 1, - anon_sym_RBRACK, - ACTIONS(13807), 1, - anon_sym_RBRACK_QMARK, - STATE(10402), 1, + STATE(10501), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423850] = 5, + ACTIONS(13956), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [427497] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13809), 1, + ACTIONS(13958), 1, anon_sym_RPAREN, - ACTIONS(13811), 1, + ACTIONS(13960), 1, anon_sym_COMMA, - STATE(10403), 1, + STATE(10502), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423867] = 4, + [427514] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10404), 1, + ACTIONS(12002), 1, + anon_sym_def, + STATE(8308), 1, + sym__base_method_def, + STATE(10503), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5848), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [423882] = 4, + [427531] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10405), 1, + ACTIONS(13962), 1, + anon_sym_RBRACK, + ACTIONS(13964), 1, + anon_sym_RBRACK_QMARK, + STATE(10504), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(8571), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [423897] = 4, + [427548] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10406), 1, + STATE(10505), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13813), 2, - anon_sym_RPAREN, + ACTIONS(9078), 2, + anon_sym_RBRACE, anon_sym_COMMA, - [423912] = 4, + [427563] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10407), 1, + ACTIONS(13966), 1, + anon_sym_RPAREN, + ACTIONS(13968), 1, + anon_sym_COMMA, + STATE(10506), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13815), 2, - sym__regular_ensure_keyword, - anon_sym_end, - [423927] = 5, + [427580] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13817), 1, - anon_sym_RPAREN, - ACTIONS(13819), 1, - anon_sym_COMMA, - STATE(10408), 1, + ACTIONS(13970), 1, + anon_sym_RBRACK, + ACTIONS(13972), 1, + anon_sym_RBRACK_QMARK, + STATE(10507), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [423944] = 4, + [427597] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10409), 1, + ACTIONS(13974), 1, + anon_sym_RPAREN, + ACTIONS(13976), 1, + anon_sym_COMMA, + STATE(10508), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13085), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [423959] = 4, + [427614] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10410), 1, + ACTIONS(13978), 1, + anon_sym_RPAREN, + ACTIONS(13980), 1, + anon_sym_COMMA, + STATE(10509), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4745), 2, - sym__start_of_brace_block, - anon_sym_do, - [423974] = 4, + [427631] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10411), 1, + ACTIONS(13982), 1, + anon_sym_RPAREN, + ACTIONS(13984), 1, + anon_sym_COMMA, + STATE(10510), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13821), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [423989] = 4, + [427648] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10412), 1, + STATE(10511), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(4745), 2, - sym__line_break, - anon_sym_SEMI, - [424004] = 4, + ACTIONS(13986), 2, + sym__percent_literal_end, + sym__delimited_array_element_start, + [427663] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10413), 1, + ACTIONS(13988), 1, + anon_sym_RBRACK, + ACTIONS(13990), 1, + anon_sym_RBRACK_QMARK, + STATE(10512), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13823), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [424019] = 5, + [427680] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13749), 1, - anon_sym_RPAREN, - ACTIONS(13825), 1, + ACTIONS(263), 1, anon_sym_COMMA, - STATE(10414), 1, + ACTIONS(13992), 1, + anon_sym_EQ, + STATE(10513), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424036] = 5, + [427697] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13827), 1, - sym__string_literal_start, - STATE(8171), 1, - sym_string, - STATE(10415), 1, + STATE(10514), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424053] = 5, + ACTIONS(13469), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [427712] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11883), 1, - anon_sym_def, - STATE(8811), 1, - sym__base_method_def, - STATE(10416), 1, + ACTIONS(13994), 1, + anon_sym_RBRACK, + ACTIONS(13996), 1, + anon_sym_RBRACK_QMARK, + STATE(10515), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424070] = 5, + [427729] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13829), 1, + ACTIONS(13892), 1, anon_sym_RPAREN, - ACTIONS(13831), 1, + ACTIONS(13998), 1, anon_sym_COMMA, - STATE(10417), 1, + STATE(10516), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424087] = 5, + [427746] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, + ACTIONS(13982), 1, + anon_sym_RPAREN, + ACTIONS(14000), 1, anon_sym_COMMA, - ACTIONS(13833), 1, - anon_sym_EQ, - STATE(10418), 1, + STATE(10517), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424104] = 5, + [427763] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13765), 1, - anon_sym_RPAREN, - ACTIONS(13835), 1, - anon_sym_COMMA, - STATE(10419), 1, + ACTIONS(14002), 1, + anon_sym_RBRACK, + ACTIONS(14004), 1, + anon_sym_RBRACK_QMARK, + STATE(10518), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424121] = 4, + [427780] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10420), 1, + ACTIONS(14006), 1, + anon_sym_RBRACK, + ACTIONS(14008), 1, + anon_sym_RBRACK_QMARK, + STATE(10519), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13837), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [424136] = 4, + [427797] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10421), 1, + ACTIONS(14010), 1, + anon_sym_RPAREN, + ACTIONS(14012), 1, + anon_sym_COMMA, + STATE(10520), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13839), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [424151] = 4, + [427814] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10422), 1, + STATE(10521), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13841), 2, - anon_sym_end, - anon_sym_in, - [424166] = 5, + ACTIONS(4785), 2, + sym__line_break, + anon_sym_SEMI, + [427829] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13843), 1, + ACTIONS(14014), 1, anon_sym_RBRACK, - ACTIONS(13845), 1, + ACTIONS(14016), 1, anon_sym_RBRACK_QMARK, - STATE(10423), 1, + STATE(10522), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424183] = 5, + [427846] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, - sym_identifier, - STATE(10375), 1, - sym_block_body_param, - STATE(10424), 1, + STATE(10523), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424200] = 5, + ACTIONS(14018), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [427861] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13847), 1, + ACTIONS(14020), 1, anon_sym_RBRACK, - ACTIONS(13849), 1, + ACTIONS(14022), 1, anon_sym_RBRACK_QMARK, - STATE(10425), 1, + STATE(10524), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424217] = 5, + [427878] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13851), 1, - anon_sym_RBRACK, - ACTIONS(13853), 1, - anon_sym_RBRACK_QMARK, - STATE(10426), 1, + STATE(10525), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424234] = 5, + ACTIONS(14024), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [427893] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10996), 1, - sym_identifier, - STATE(9709), 1, - sym_block_body_param, - STATE(10427), 1, + ACTIONS(14026), 1, + anon_sym_RPAREN, + ACTIONS(14028), 1, + anon_sym_COMMA, + STATE(10526), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424251] = 5, + [427910] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13725), 1, - anon_sym_RPAREN, - ACTIONS(13855), 1, - anon_sym_COMMA, - STATE(10428), 1, + ACTIONS(14030), 1, + sym__string_literal_start, + STATE(8188), 1, + sym_string, + STATE(10527), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424268] = 5, + [427927] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13857), 1, - anon_sym_RPAREN, - ACTIONS(13859), 1, - anon_sym_COMMA, - STATE(10429), 1, + ACTIONS(14032), 1, + anon_sym_RBRACK, + ACTIONS(14034), 1, + anon_sym_RBRACK_QMARK, + STATE(10528), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424285] = 5, + [427944] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13861), 1, - anon_sym_RPAREN, - ACTIONS(13863), 1, - anon_sym_COMMA, - STATE(10430), 1, + ACTIONS(14036), 1, + anon_sym_RBRACK, + ACTIONS(14038), 1, + anon_sym_RBRACK_QMARK, + STATE(10529), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424302] = 4, + [427961] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10431), 1, + ACTIONS(13828), 1, + anon_sym_RPAREN, + ACTIONS(14040), 1, + anon_sym_COMMA, + STATE(10530), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13865), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [424317] = 5, + [427978] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13721), 1, - anon_sym_RPAREN, - ACTIONS(13867), 1, - anon_sym_COMMA, - STATE(10432), 1, + STATE(10531), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424334] = 4, + ACTIONS(14042), 2, + anon_sym_end, + anon_sym_in, + [427993] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10433), 1, + STATE(10532), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13869), 2, - sym__percent_literal_end, - sym__delimited_array_element_start, - [424349] = 5, + ACTIONS(14044), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [428008] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13871), 1, + ACTIONS(14010), 1, anon_sym_RPAREN, - ACTIONS(13873), 1, - aux_sym_proc_token1, - STATE(10434), 1, + ACTIONS(14046), 1, + anon_sym_COMMA, + STATE(10533), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424366] = 4, + [428025] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10435), 1, + ACTIONS(14048), 1, + sym__string_literal_start, + STATE(8651), 1, + sym_string, + STATE(10534), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12782), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - [424381] = 4, + [428042] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10436), 1, + ACTIONS(13568), 1, + anon_sym_RPAREN, + ACTIONS(14050), 1, + anon_sym_COMMA, + STATE(10535), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12985), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [424396] = 5, + [428059] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13875), 1, + ACTIONS(14052), 1, anon_sym_RPAREN, - ACTIONS(13877), 1, + ACTIONS(14054), 1, anon_sym_COMMA, - STATE(10437), 1, + STATE(10536), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424413] = 4, + [428076] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10438), 1, + ACTIONS(14056), 1, + anon_sym_RPAREN, + ACTIONS(14058), 1, + anon_sym_COMMA, + STATE(10537), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(5885), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [424428] = 5, + [428093] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13879), 1, - anon_sym_RBRACK, - ACTIONS(13881), 1, - anon_sym_RBRACK_QMARK, - STATE(10439), 1, + ACTIONS(14060), 1, + anon_sym_RPAREN, + ACTIONS(14062), 1, + aux_sym_proc_token1, + STATE(10538), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424445] = 5, + [428110] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13883), 1, + ACTIONS(14064), 1, anon_sym_RBRACK, - ACTIONS(13885), 1, + ACTIONS(14066), 1, anon_sym_RBRACK_QMARK, - STATE(10440), 1, + STATE(10539), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424462] = 5, + [428127] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13887), 1, - anon_sym_RBRACK, - ACTIONS(13889), 1, - anon_sym_RBRACK_QMARK, - STATE(10441), 1, + ACTIONS(13900), 1, + anon_sym_RPAREN, + ACTIONS(14068), 1, + anon_sym_COMMA, + STATE(10540), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424479] = 5, + [428144] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13891), 1, - anon_sym_RBRACK, - ACTIONS(13893), 1, - anon_sym_RBRACK_QMARK, - STATE(10442), 1, + ACTIONS(14070), 1, + anon_sym_RPAREN, + ACTIONS(14072), 1, + anon_sym_COMMA, + STATE(10541), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424496] = 4, + [428161] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10443), 1, + ACTIONS(14074), 1, + anon_sym_RBRACK, + ACTIONS(14076), 1, + anon_sym_RBRACK_QMARK, + STATE(10542), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13895), 2, - anon_sym_end, - anon_sym_in, - [424511] = 5, + [428178] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13753), 1, - anon_sym_RPAREN, - ACTIONS(13897), 1, - anon_sym_COMMA, - STATE(10444), 1, + STATE(10543), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424528] = 4, + ACTIONS(14078), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [428193] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10445), 1, + ACTIONS(14080), 1, + anon_sym_RBRACK, + ACTIONS(14082), 1, + anon_sym_RBRACK_QMARK, + STATE(10544), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13841), 2, - anon_sym_end, - anon_sym_in, - [424543] = 5, + [428210] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13899), 1, - anon_sym_RPAREN, - ACTIONS(13901), 1, + ACTIONS(263), 1, anon_sym_COMMA, - STATE(10446), 1, + ACTIONS(14084), 1, + anon_sym_EQ, + STATE(10545), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424560] = 5, + [428227] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13903), 1, + ACTIONS(14056), 1, anon_sym_RPAREN, - ACTIONS(13905), 1, + ACTIONS(14086), 1, anon_sym_COMMA, - STATE(10447), 1, + STATE(10546), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424577] = 5, + [428244] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13737), 1, + ACTIONS(13832), 1, anon_sym_RPAREN, - ACTIONS(13907), 1, + ACTIONS(14088), 1, anon_sym_COMMA, - STATE(10448), 1, + STATE(10547), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424594] = 5, + [428261] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13745), 1, - anon_sym_RPAREN, - ACTIONS(13909), 1, - anon_sym_COMMA, - STATE(10449), 1, + STATE(10548), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424611] = 4, + ACTIONS(14090), 2, + sym__percent_literal_end, + sym__delimited_array_element_start, + [428276] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10450), 1, + ACTIONS(14092), 1, + anon_sym_RPAREN, + ACTIONS(14094), 1, + anon_sym_COMMA, + STATE(10549), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13911), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [424626] = 4, + [428293] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10451), 1, + ACTIONS(13932), 1, + anon_sym_RPAREN, + ACTIONS(14096), 1, + anon_sym_COMMA, + STATE(10550), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13841), 2, - anon_sym_end, - anon_sym_in, - [424641] = 5, + [428310] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13899), 1, - anon_sym_RPAREN, - ACTIONS(13913), 1, + ACTIONS(263), 1, anon_sym_COMMA, - STATE(10452), 1, + ACTIONS(14098), 1, + anon_sym_EQ, + STATE(10551), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424658] = 5, + [428327] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13915), 1, + ACTIONS(14100), 1, anon_sym_RBRACK, - ACTIONS(13917), 1, + ACTIONS(14102), 1, anon_sym_RBRACK_QMARK, - STATE(10453), 1, + STATE(10552), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424675] = 5, + [428344] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13919), 1, - anon_sym_RBRACK, - ACTIONS(13921), 1, - anon_sym_RBRACK_QMARK, - STATE(10454), 1, + STATE(10553), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424692] = 5, + ACTIONS(14104), 2, + sym__percent_literal_end, + sym__delimited_array_element_start, + [428359] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13923), 1, + ACTIONS(14106), 1, anon_sym_RBRACK, - ACTIONS(13925), 1, + ACTIONS(14108), 1, anon_sym_RBRACK_QMARK, - STATE(10455), 1, + STATE(10554), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424709] = 5, + [428376] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13927), 1, - anon_sym_RBRACK, - ACTIONS(13929), 1, - anon_sym_RBRACK_QMARK, - STATE(10456), 1, + ACTIONS(14070), 1, + anon_sym_RPAREN, + ACTIONS(14110), 1, + anon_sym_COMMA, + STATE(10555), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424726] = 5, + [428393] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13931), 1, - anon_sym_RBRACK, - ACTIONS(13933), 1, - anon_sym_RBRACK_QMARK, - STATE(10457), 1, + ACTIONS(13938), 1, + anon_sym_RPAREN, + ACTIONS(14112), 1, + anon_sym_COMMA, + STATE(10556), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424743] = 5, + [428410] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13935), 1, - anon_sym_RBRACK, - ACTIONS(13937), 1, - anon_sym_RBRACK_QMARK, - STATE(10458), 1, + ACTIONS(14114), 1, + anon_sym_RPAREN, + ACTIONS(14116), 1, + anon_sym_COMMA, + STATE(10557), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424760] = 5, + [428427] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13741), 1, + ACTIONS(14114), 1, anon_sym_RPAREN, - ACTIONS(13939), 1, + ACTIONS(14118), 1, anon_sym_COMMA, - STATE(10459), 1, + STATE(10558), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424777] = 5, + [428444] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13941), 1, - anon_sym_RBRACK, - ACTIONS(13943), 1, - anon_sym_RBRACK_QMARK, - STATE(10460), 1, + ACTIONS(13896), 1, + anon_sym_RPAREN, + ACTIONS(14120), 1, + anon_sym_COMMA, + STATE(10559), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424794] = 4, + [428461] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10461), 1, + ACTIONS(263), 1, + anon_sym_COMMA, + ACTIONS(14122), 1, + anon_sym_EQ, + STATE(10560), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13945), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [424809] = 5, + [428478] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13947), 1, + ACTIONS(14124), 1, anon_sym_RBRACK, - ACTIONS(13949), 1, + ACTIONS(14126), 1, anon_sym_RBRACK_QMARK, - STATE(10462), 1, + STATE(10561), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424826] = 5, + [428495] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13951), 1, + ACTIONS(14128), 1, anon_sym_RPAREN, - ACTIONS(13953), 1, + ACTIONS(14130), 1, anon_sym_COMMA, - STATE(10463), 1, + STATE(10562), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424843] = 5, + [428512] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13955), 1, + ACTIONS(13958), 1, anon_sym_RPAREN, - ACTIONS(13957), 1, - aux_sym_proc_token1, - STATE(10464), 1, + ACTIONS(14132), 1, + anon_sym_COMMA, + STATE(10563), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424860] = 5, + [428529] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13773), 1, + ACTIONS(13858), 1, anon_sym_RPAREN, - ACTIONS(13959), 1, + ACTIONS(14134), 1, anon_sym_COMMA, - STATE(10465), 1, + STATE(10564), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424877] = 5, + [428546] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13961), 1, - anon_sym_RBRACK, - ACTIONS(13963), 1, - anon_sym_RBRACK_QMARK, - STATE(10466), 1, + ACTIONS(13974), 1, + anon_sym_RPAREN, + ACTIONS(14136), 1, + anon_sym_COMMA, + STATE(10565), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424894] = 5, + [428563] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13761), 1, + ACTIONS(14138), 1, anon_sym_RPAREN, - ACTIONS(13965), 1, + ACTIONS(14140), 1, anon_sym_COMMA, - STATE(10467), 1, + STATE(10566), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424911] = 5, + [428580] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13967), 1, - anon_sym_RBRACK, - ACTIONS(13969), 1, - anon_sym_RBRACK_QMARK, - STATE(10468), 1, + ACTIONS(14138), 1, + anon_sym_RPAREN, + ACTIONS(14142), 1, + anon_sym_COMMA, + STATE(10567), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424928] = 5, + [428597] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13971), 1, - anon_sym_RBRACK, - ACTIONS(13973), 1, - anon_sym_RBRACK_QMARK, - STATE(10469), 1, + ACTIONS(13880), 1, + anon_sym_RPAREN, + ACTIONS(14144), 1, + anon_sym_COMMA, + STATE(10568), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424945] = 4, + [428614] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10470), 1, + ACTIONS(14026), 1, + anon_sym_RPAREN, + ACTIONS(14146), 1, + anon_sym_COMMA, + STATE(10569), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13078), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [424960] = 4, + [428631] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10471), 1, + ACTIONS(14092), 1, + anon_sym_RPAREN, + ACTIONS(14148), 1, + anon_sym_COMMA, + STATE(10570), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13975), 2, - sym__percent_literal_end, - sym__delimited_array_element_start, - [424975] = 5, + [428648] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13977), 1, - anon_sym_RBRACK, - ACTIONS(13979), 1, - anon_sym_RBRACK_QMARK, - STATE(10472), 1, + ACTIONS(13904), 1, + anon_sym_RPAREN, + ACTIONS(14150), 1, + anon_sym_COMMA, + STATE(10571), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [424992] = 5, + [428665] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13981), 1, - anon_sym_RBRACK, - ACTIONS(13983), 1, - anon_sym_RBRACK_QMARK, - STATE(10473), 1, + ACTIONS(13966), 1, + anon_sym_RPAREN, + ACTIONS(14152), 1, + anon_sym_COMMA, + STATE(10572), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425009] = 4, + [428682] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10474), 1, + ACTIONS(14154), 1, + anon_sym_RBRACK, + ACTIONS(14156), 1, + anon_sym_RBRACK_QMARK, + STATE(10573), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13985), 2, - sym__percent_literal_end, - sym__delimited_array_element_start, - [425024] = 5, + [428699] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13857), 1, + ACTIONS(14128), 1, anon_sym_RPAREN, - ACTIONS(13987), 1, + ACTIONS(14158), 1, anon_sym_COMMA, - STATE(10475), 1, + STATE(10574), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425041] = 5, + [428716] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, + ACTIONS(14052), 1, + anon_sym_RPAREN, + ACTIONS(14160), 1, anon_sym_COMMA, - ACTIONS(13989), 1, - anon_sym_EQ, - STATE(10476), 1, + STATE(10575), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425058] = 4, + [428733] = 5, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10477), 1, + ACTIONS(14162), 1, + anon_sym_RPAREN, + ACTIONS(14164), 1, + anon_sym_COMMA, + STATE(10576), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13991), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [425073] = 5, + [428750] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13993), 1, - sym__string_literal_start, - STATE(8664), 1, - sym_string, - STATE(10478), 1, + ACTIONS(14166), 1, + anon_sym_RPAREN, + STATE(10577), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425090] = 5, + [428764] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13903), 1, - anon_sym_RPAREN, - ACTIONS(13995), 1, - anon_sym_COMMA, - STATE(10479), 1, + ACTIONS(14168), 1, + anon_sym_end, + STATE(10578), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425107] = 5, + [428778] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13997), 1, - sym__string_literal_start, - STATE(8038), 1, - sym_string, - STATE(10480), 1, + ACTIONS(14170), 1, + anon_sym_EQ_GT, + STATE(10579), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425124] = 4, + [428792] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10481), 1, + ACTIONS(14172), 1, + anon_sym_end, + STATE(10580), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13999), 2, - sym__percent_literal_end, - sym__delimited_array_element_start, - [425139] = 4, + [428806] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10482), 1, + ACTIONS(14174), 1, + anon_sym_end, + STATE(10581), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14001), 2, - anon_sym_end, - anon_sym_in, - [425154] = 5, + [428820] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14003), 1, - anon_sym_RBRACK, - ACTIONS(14005), 1, - anon_sym_RBRACK_QMARK, - STATE(10483), 1, + ACTIONS(14176), 1, + anon_sym_end, + STATE(10582), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425171] = 5, + [428834] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, - anon_sym_COMMA, - ACTIONS(14007), 1, - anon_sym_EQ, - STATE(10484), 1, + ACTIONS(14178), 1, + anon_sym_yield, + STATE(10583), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425188] = 5, + [428848] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13809), 1, - anon_sym_RPAREN, - ACTIONS(14009), 1, - anon_sym_COMMA, - STATE(10485), 1, + ACTIONS(14180), 1, + anon_sym_end, + STATE(10584), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425205] = 5, + [428862] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14011), 1, - anon_sym_RPAREN, - ACTIONS(14013), 1, - anon_sym_COMMA, - STATE(10486), 1, + ACTIONS(14182), 1, + anon_sym_end, + STATE(10585), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425222] = 5, + [428876] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14015), 1, - anon_sym_RBRACK, - ACTIONS(14017), 1, - anon_sym_RBRACK_QMARK, - STATE(10487), 1, + ACTIONS(14184), 1, + anon_sym_class, + STATE(10586), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425239] = 5, + [428890] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14019), 1, - anon_sym_RBRACK, - ACTIONS(14021), 1, - anon_sym_RBRACK_QMARK, - STATE(10488), 1, + ACTIONS(14186), 1, + anon_sym_RPAREN, + STATE(10587), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425256] = 5, + [428904] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14023), 1, - anon_sym_RBRACK, - ACTIONS(14025), 1, - anon_sym_RBRACK_QMARK, - STATE(10489), 1, + ACTIONS(11449), 1, + anon_sym_end, + STATE(10588), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425273] = 5, + [428918] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14011), 1, - anon_sym_RPAREN, - ACTIONS(14027), 1, - anon_sym_COMMA, - STATE(10490), 1, + ACTIONS(14188), 1, + anon_sym_end, + STATE(10589), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425290] = 5, + [428932] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13757), 1, - anon_sym_RPAREN, - ACTIONS(14029), 1, - anon_sym_COMMA, - STATE(10491), 1, + ACTIONS(14190), 1, + anon_sym_EQ_GT, + STATE(10590), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425307] = 5, + [428946] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13390), 1, - anon_sym_RPAREN, - ACTIONS(14031), 1, - anon_sym_COMMA, - STATE(10492), 1, + ACTIONS(14192), 1, + anon_sym_end, + STATE(10591), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425324] = 5, + [428960] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14033), 1, - anon_sym_RBRACK, - ACTIONS(14035), 1, - anon_sym_RBRACK_QMARK, - STATE(10493), 1, + ACTIONS(14194), 1, + anon_sym_end, + STATE(10592), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425341] = 5, + [428974] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14037), 1, - anon_sym_RBRACK, - ACTIONS(14039), 1, - anon_sym_RBRACK_QMARK, - STATE(10494), 1, + ACTIONS(14196), 1, + anon_sym_end, + STATE(10593), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425358] = 5, + [428988] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13817), 1, - anon_sym_RPAREN, - ACTIONS(14041), 1, - anon_sym_COMMA, - STATE(10495), 1, + ACTIONS(14198), 1, + anon_sym_EQ_GT, + STATE(10594), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425375] = 5, + [429002] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13733), 1, - anon_sym_RPAREN, - ACTIONS(14043), 1, - anon_sym_COMMA, - STATE(10496), 1, + ACTIONS(14200), 1, + anon_sym_end, + STATE(10595), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425392] = 4, + [429016] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10497), 1, + ACTIONS(14202), 1, + anon_sym_end, + STATE(10596), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(13841), 2, - anon_sym_end, - anon_sym_in, - [425407] = 4, + [429030] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10498), 1, + ACTIONS(14204), 1, + anon_sym_end, + STATE(10597), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14045), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [425422] = 4, + [429044] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10499), 1, + ACTIONS(14206), 1, + anon_sym_end, + STATE(10598), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(14047), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [425437] = 5, + [429058] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13789), 1, - anon_sym_RPAREN, - ACTIONS(14049), 1, - anon_sym_COMMA, - STATE(10500), 1, + ACTIONS(14208), 1, + anon_sym_EQ, + STATE(10599), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425454] = 5, + [429072] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13951), 1, - anon_sym_RPAREN, - ACTIONS(14051), 1, - anon_sym_COMMA, - STATE(10501), 1, + ACTIONS(14210), 1, + anon_sym_RBRACK, + STATE(10600), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425471] = 5, + [429086] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13875), 1, - anon_sym_RPAREN, - ACTIONS(14053), 1, - anon_sym_COMMA, - STATE(10502), 1, + ACTIONS(14212), 1, + anon_sym_end, + STATE(10601), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425488] = 5, + [429100] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13729), 1, - anon_sym_RPAREN, - ACTIONS(14055), 1, - anon_sym_COMMA, - STATE(10503), 1, + ACTIONS(14214), 1, + anon_sym_end, + STATE(10602), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425505] = 4, + [429114] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - STATE(10504), 1, + ACTIONS(14216), 1, + anon_sym_EQ_GT, + STATE(10603), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - ACTIONS(12774), 2, - anon_sym_COMMA, - anon_sym_PIPE, - [425520] = 5, + [429128] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, - anon_sym_COMMA, - ACTIONS(14057), 1, - anon_sym_EQ, - STATE(10505), 1, + ACTIONS(14218), 1, + anon_sym_end, + STATE(10604), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425537] = 5, + [429142] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13769), 1, - anon_sym_RPAREN, - ACTIONS(14059), 1, - anon_sym_COMMA, - STATE(10506), 1, + ACTIONS(14220), 1, + anon_sym_end, + STATE(10605), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425554] = 4, + [429156] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14061), 1, - anon_sym_RPAREN, - STATE(10507), 1, + ACTIONS(14222), 1, + anon_sym_EQ_GT, + STATE(10606), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425568] = 4, + [429170] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14063), 1, - anon_sym_SQUOTE2, - STATE(10508), 1, + ACTIONS(14224), 1, + anon_sym_end, + STATE(10607), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425582] = 4, + [429184] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14065), 1, + ACTIONS(14226), 1, anon_sym_end, - STATE(10509), 1, + STATE(10608), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425596] = 4, + [429198] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14067), 1, + ACTIONS(14228), 1, anon_sym_end, - STATE(10510), 1, + STATE(10609), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425610] = 4, + [429212] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14069), 1, - anon_sym_LPAREN, - STATE(10511), 1, + ACTIONS(14230), 1, + anon_sym_RBRACE, + STATE(10610), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425624] = 4, + [429226] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14071), 1, - anon_sym_of, - STATE(10512), 1, + ACTIONS(14232), 1, + anon_sym_end, + STATE(10611), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425638] = 4, + [429240] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14073), 1, + ACTIONS(14234), 1, anon_sym_RPAREN, - STATE(10513), 1, + STATE(10612), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425652] = 4, + [429254] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14075), 1, - anon_sym_EQ_GT, - STATE(10514), 1, + ACTIONS(14236), 1, + anon_sym_RBRACK, + STATE(10613), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425666] = 4, + [429268] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14077), 1, + ACTIONS(14238), 1, anon_sym_end, - STATE(10515), 1, + STATE(10614), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425680] = 4, + [429282] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14079), 1, + ACTIONS(14240), 1, anon_sym_end, - STATE(10516), 1, + STATE(10615), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425694] = 4, + [429296] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14081), 1, - sym__constant_segment, - STATE(10517), 1, + ACTIONS(14242), 1, + anon_sym_RPAREN, + STATE(10616), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425708] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(14083), 1, - aux_sym_type_declaration_token1, - STATE(10518), 1, - sym_heredoc_body, - [425724] = 4, + [429310] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14085), 1, - anon_sym_EQ_GT, - STATE(10519), 1, + ACTIONS(14244), 1, + anon_sym_RBRACK, + STATE(10617), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425738] = 4, + [429324] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14087), 1, + ACTIONS(14246), 1, anon_sym_EQ_GT, - STATE(10520), 1, + STATE(10618), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425752] = 4, + [429338] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14089), 1, + ACTIONS(14248), 1, anon_sym_end, - STATE(10521), 1, + STATE(10619), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425766] = 4, + [429352] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14091), 1, + ACTIONS(14250), 1, anon_sym_end, - STATE(10522), 1, + STATE(10620), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425780] = 4, + [429366] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14093), 1, + ACTIONS(14252), 1, anon_sym_end, - STATE(10523), 1, + STATE(10621), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425794] = 4, + [429380] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14095), 1, - anon_sym_yield, - STATE(10524), 1, + ACTIONS(14254), 1, + anon_sym_SQUOTE2, + STATE(10622), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425808] = 4, + [429394] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14097), 1, + ACTIONS(14256), 1, anon_sym_end, - STATE(10525), 1, + STATE(10623), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425822] = 4, + [429408] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14099), 1, - anon_sym_RPAREN, - STATE(10526), 1, + ACTIONS(14258), 1, + anon_sym_end, + STATE(10624), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425836] = 4, + [429422] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14101), 1, + ACTIONS(14260), 1, anon_sym_end, - STATE(10527), 1, + STATE(10625), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425850] = 4, + [429436] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14103), 1, - anon_sym_RBRACK, - STATE(10528), 1, + ACTIONS(14262), 1, + anon_sym_DASH_GT, + STATE(10626), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425864] = 4, + [429450] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14105), 1, - anon_sym_end, - STATE(10529), 1, + ACTIONS(14264), 1, + anon_sym_EQ_GT, + STATE(10627), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425878] = 4, + [429464] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14107), 1, + ACTIONS(13890), 1, anon_sym_end, - STATE(10530), 1, + STATE(10628), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425892] = 4, + [429478] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14109), 1, - anon_sym_end, - STATE(10531), 1, + ACTIONS(14266), 1, + anon_sym_DASH_GT, + STATE(10629), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425906] = 4, + [429492] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14111), 1, + ACTIONS(14268), 1, anon_sym_end, - STATE(10532), 1, + STATE(10630), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425920] = 4, + [429506] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14113), 1, - anon_sym_EQ_GT, - STATE(10533), 1, + ACTIONS(14270), 1, + anon_sym_end, + STATE(10631), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425934] = 4, + [429520] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14115), 1, - anon_sym_end, - STATE(10534), 1, + ACTIONS(14272), 1, + anon_sym_EQ_GT, + STATE(10632), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425948] = 4, + [429534] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14117), 1, + ACTIONS(14274), 1, anon_sym_end, - STATE(10535), 1, + STATE(10633), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425962] = 4, + [429548] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14119), 1, - anon_sym_DASH_GT, - STATE(10536), 1, + ACTIONS(14276), 1, + anon_sym_end, + STATE(10634), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425976] = 4, + [429562] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14121), 1, - anon_sym_EQ_GT, - STATE(10537), 1, + ACTIONS(14278), 1, + anon_sym_end, + STATE(10635), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [425990] = 4, + [429576] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14123), 1, - anon_sym_DASH_GT, - STATE(10538), 1, + ACTIONS(14280), 1, + anon_sym_end, + STATE(10636), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426004] = 4, + [429590] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14125), 1, + ACTIONS(14282), 1, anon_sym_end, - STATE(10539), 1, + STATE(10637), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426018] = 4, + [429604] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14127), 1, - anon_sym_RBRACE, - STATE(10540), 1, + ACTIONS(14284), 1, + sym__constant_segment, + STATE(10638), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426032] = 4, + [429618] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14129), 1, - anon_sym_class, - STATE(10541), 1, + ACTIONS(14286), 1, + anon_sym_of, + STATE(10639), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426046] = 4, + [429632] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14131), 1, + ACTIONS(14288), 1, anon_sym_end, - STATE(10542), 1, + STATE(10640), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426060] = 4, + [429646] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14133), 1, + ACTIONS(14290), 1, anon_sym_end, - STATE(10543), 1, + STATE(10641), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426074] = 4, + [429660] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14135), 1, + ACTIONS(14292), 1, anon_sym_end, - STATE(10544), 1, + STATE(10642), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426088] = 4, + [429674] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14137), 1, + ACTIONS(14294), 1, anon_sym_end, - STATE(10545), 1, + STATE(10643), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426102] = 4, + [429688] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14139), 1, - sym__constant_segment, - STATE(10546), 1, + ACTIONS(14296), 1, + anon_sym_end, + STATE(10644), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426116] = 4, + [429702] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14141), 1, - anon_sym_yield, - STATE(10547), 1, + ACTIONS(14298), 1, + sym__constant_segment, + STATE(10645), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426130] = 4, + [429716] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14143), 1, + ACTIONS(14300), 1, anon_sym_end, - STATE(10548), 1, + STATE(10646), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426144] = 4, + [429730] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14145), 1, - anon_sym_end, - STATE(10549), 1, + ACTIONS(14302), 1, + anon_sym_RPAREN, + STATE(10647), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426158] = 4, + [429744] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14147), 1, - anon_sym_RPAREN, - STATE(10550), 1, + ACTIONS(14304), 1, + anon_sym_RBRACE, + STATE(10648), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426172] = 4, + [429758] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14149), 1, - anon_sym_end, - STATE(10551), 1, + ACTIONS(14306), 1, + anon_sym_of, + STATE(10649), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426186] = 4, + [429772] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14151), 1, + ACTIONS(14308), 1, anon_sym_RPAREN, - STATE(10552), 1, + STATE(10650), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426200] = 4, + [429786] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14153), 1, - anon_sym_RPAREN, - STATE(10553), 1, + ACTIONS(14310), 1, + anon_sym_end, + STATE(10651), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426214] = 4, + [429800] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14155), 1, + ACTIONS(14312), 1, anon_sym_end, - STATE(10554), 1, + STATE(10652), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426228] = 4, + [429814] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14157), 1, + ACTIONS(14314), 1, anon_sym_end, - STATE(10555), 1, + STATE(10653), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426242] = 4, + [429828] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14159), 1, - anon_sym_of, - STATE(10556), 1, + ACTIONS(14316), 1, + anon_sym_end, + STATE(10654), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426256] = 4, + [429842] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14161), 1, - anon_sym_end, - STATE(10557), 1, + ACTIONS(14318), 1, + sym__constant_segment, + STATE(10655), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426270] = 4, + [429856] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14163), 1, + ACTIONS(14320), 1, anon_sym_end, - STATE(10558), 1, + STATE(10656), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426284] = 4, + [429870] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14165), 1, - anon_sym_end, - STATE(10559), 1, + ACTIONS(14322), 1, + aux_sym_type_declaration_token1, + STATE(10657), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [426298] = 4, + [429886] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14167), 1, - sym__constant_segment, - STATE(10560), 1, + ACTIONS(14324), 1, + anon_sym_EQ_GT, + STATE(10658), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426312] = 4, + [429900] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14169), 1, + ACTIONS(14326), 1, anon_sym_end, - STATE(10561), 1, + STATE(10659), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426326] = 4, + [429914] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14171), 1, - anon_sym_end, - STATE(10562), 1, + ACTIONS(14328), 1, + anon_sym_RBRACE, + STATE(10660), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426340] = 4, + [429928] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11392), 1, - anon_sym_end, - STATE(10563), 1, + ACTIONS(14330), 1, + anon_sym_yield, + STATE(10661), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426354] = 4, + [429942] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14173), 1, - anon_sym_end, - STATE(10564), 1, + ACTIONS(14332), 1, + sym__constant_segment, + STATE(10662), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426368] = 4, + [429956] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14175), 1, - anon_sym_end, - STATE(10565), 1, + ACTIONS(14334), 1, + anon_sym_class, + STATE(10663), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426382] = 4, + [429970] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14177), 1, - anon_sym_RPAREN, - STATE(10566), 1, + ACTIONS(14336), 1, + anon_sym_DASH_GT, + STATE(10664), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426396] = 4, + [429984] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14179), 1, - anon_sym_RPAREN, - STATE(10567), 1, + ACTIONS(14338), 1, + anon_sym_end, + STATE(10665), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426410] = 4, + [429998] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14181), 1, - anon_sym_RPAREN, - STATE(10568), 1, + ACTIONS(14340), 1, + anon_sym_end, + STATE(10666), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426424] = 4, + [430012] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14183), 1, - anon_sym_EQ_GT, - STATE(10569), 1, + ACTIONS(14342), 1, + aux_sym_type_declaration_token1, + STATE(10667), 1, + sym_heredoc_body, + [430028] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(14344), 1, + anon_sym_RPAREN, + STATE(10668), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426438] = 4, + [430042] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14185), 1, - anon_sym_EQ_GT, - STATE(10570), 1, + ACTIONS(14346), 1, + anon_sym_end, + STATE(10669), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426452] = 4, + [430056] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14187), 1, - anon_sym_end, - STATE(10571), 1, + ACTIONS(14348), 1, + anon_sym_EQ_GT, + STATE(10670), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426466] = 4, + [430070] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14189), 1, - anon_sym_EQ, - STATE(10572), 1, + ACTIONS(14350), 1, + anon_sym_RPAREN, + STATE(10671), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426480] = 4, + [430084] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14191), 1, + ACTIONS(14352), 1, anon_sym_end, - STATE(10573), 1, + STATE(10672), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426494] = 4, + [430098] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14193), 1, + ACTIONS(14354), 1, anon_sym_end, - STATE(10574), 1, + STATE(10673), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426508] = 4, + [430112] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14195), 1, - anon_sym_EQ_GT, - STATE(10575), 1, + ACTIONS(14356), 1, + anon_sym_end, + STATE(10674), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426522] = 4, + [430126] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14197), 1, + ACTIONS(14358), 1, anon_sym_end, - STATE(10576), 1, + STATE(10675), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426536] = 4, + [430140] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14199), 1, + ACTIONS(14360), 1, anon_sym_end, - STATE(10577), 1, + STATE(10676), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426550] = 4, + [430154] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14201), 1, + ACTIONS(14362), 1, anon_sym_end, - STATE(10578), 1, + STATE(10677), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426564] = 4, + [430168] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14203), 1, - anon_sym_end, - STATE(10579), 1, + ACTIONS(14364), 1, + anon_sym_RPAREN, + STATE(10678), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426578] = 4, + [430182] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14205), 1, + ACTIONS(14366), 1, anon_sym_end, - STATE(10580), 1, + STATE(10679), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426592] = 4, + [430196] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14207), 1, - anon_sym_class, - STATE(10581), 1, + ACTIONS(14368), 1, + anon_sym_RPAREN, + STATE(10680), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426606] = 4, + [430210] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14209), 1, - anon_sym_end, - STATE(10582), 1, + ACTIONS(12049), 1, + anon_sym_RPAREN, + STATE(10681), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426620] = 4, + [430224] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(259), 1, - anon_sym_COMMA, - STATE(10583), 1, + ACTIONS(14370), 1, + anon_sym_RPAREN, + STATE(10682), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426634] = 4, + [430238] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14211), 1, + ACTIONS(14372), 1, anon_sym_end, - STATE(10584), 1, + STATE(10683), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426648] = 4, + [430252] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14213), 1, - anon_sym_class, - STATE(10585), 1, + ACTIONS(14374), 1, + anon_sym_end, + STATE(10684), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426662] = 4, + [430266] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14215), 1, - anon_sym_end, - STATE(10586), 1, + ACTIONS(14376), 1, + anon_sym_EQ_GT, + STATE(10685), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426676] = 4, + [430280] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14217), 1, - anon_sym_EQ_GT, - STATE(10587), 1, + ACTIONS(14378), 1, + anon_sym_DASH_GT, + STATE(10686), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426690] = 4, + [430294] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14219), 1, + ACTIONS(14380), 1, anon_sym_end, - STATE(10588), 1, + STATE(10687), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426704] = 4, + [430308] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14221), 1, - anon_sym_end, - STATE(10589), 1, + ACTIONS(14382), 1, + anon_sym_DASH_GT, + STATE(10688), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426718] = 4, + [430322] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14223), 1, - anon_sym_end, - STATE(10590), 1, + ACTIONS(14384), 1, + anon_sym_class, + STATE(10689), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426732] = 4, + [430336] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14225), 1, + ACTIONS(14386), 1, anon_sym_end, - STATE(10591), 1, + STATE(10690), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426746] = 4, + [430350] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14227), 1, + ACTIONS(14388), 1, anon_sym_end, - STATE(10592), 1, + STATE(10691), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426760] = 4, + [430364] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14229), 1, + ACTIONS(14390), 1, anon_sym_end, - STATE(10593), 1, + STATE(10692), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426774] = 4, + [430378] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14231), 1, - anon_sym_RPAREN, - STATE(10594), 1, + ACTIONS(14392), 1, + anon_sym_end, + STATE(10693), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426788] = 4, + [430392] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14233), 1, + ACTIONS(14394), 1, anon_sym_end, - STATE(10595), 1, + STATE(10694), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426802] = 4, + [430406] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14235), 1, - sym__constant_segment, - STATE(10596), 1, + ACTIONS(14396), 1, + anon_sym_EQ_GT, + STATE(10695), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426816] = 4, + [430420] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14237), 1, + ACTIONS(14398), 1, anon_sym_end, - STATE(10597), 1, + STATE(10696), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426830] = 4, + [430434] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14239), 1, - anon_sym_RBRACK, - STATE(10598), 1, + ACTIONS(14400), 1, + anon_sym_end, + STATE(10697), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426844] = 4, + [430448] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14241), 1, - anon_sym_RBRACK, - STATE(10599), 1, + ACTIONS(14402), 1, + anon_sym_end, + STATE(10698), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426858] = 4, + [430462] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14243), 1, + ACTIONS(14404), 1, anon_sym_end, - STATE(10600), 1, + STATE(10699), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426872] = 4, + [430476] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14245), 1, + ACTIONS(14406), 1, anon_sym_end, - STATE(10601), 1, + STATE(10700), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426886] = 4, + [430490] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14247), 1, - anon_sym_RPAREN, - STATE(10602), 1, + ACTIONS(14408), 1, + anon_sym_EQ_GT, + STATE(10701), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426900] = 4, + [430504] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14249), 1, + ACTIONS(14410), 1, anon_sym_end, - STATE(10603), 1, + STATE(10702), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426914] = 4, + [430518] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14251), 1, - anon_sym_end, - STATE(10604), 1, + ACTIONS(14412), 1, + aux_sym_integer_token1, + STATE(10703), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426928] = 4, + [430532] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14253), 1, - anon_sym_end, - STATE(10605), 1, + ACTIONS(14414), 1, + anon_sym_RBRACK, + STATE(10704), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426942] = 4, + [430546] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14255), 1, - anon_sym_end, - STATE(10606), 1, + ACTIONS(14416), 1, + anon_sym_RBRACK, + STATE(10705), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426956] = 4, + [430560] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14257), 1, + ACTIONS(14418), 1, anon_sym_RBRACK, - STATE(10607), 1, + STATE(10706), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426970] = 4, + [430574] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14259), 1, - anon_sym_EQ_GT, - STATE(10608), 1, + ACTIONS(14420), 1, + anon_sym_yield, + STATE(10707), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426984] = 4, + [430588] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14261), 1, + ACTIONS(14422), 1, anon_sym_end, - STATE(10609), 1, + STATE(10708), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [426998] = 4, + [430602] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14263), 1, + ACTIONS(14424), 1, anon_sym_end, - STATE(10610), 1, + STATE(10709), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427012] = 4, + [430616] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14265), 1, - anon_sym_EQ_GT, - STATE(10611), 1, + ACTIONS(14426), 1, + anon_sym_end, + STATE(10710), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427026] = 4, + [430630] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14267), 1, - anon_sym_RPAREN, - STATE(10612), 1, + ACTIONS(14428), 1, + anon_sym_EQ_GT, + STATE(10711), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427040] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [430644] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14269), 1, - aux_sym_type_declaration_token1, - STATE(10613), 1, - sym_heredoc_body, - [427056] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(14271), 1, - anon_sym_DASH_GT, - STATE(10614), 1, + ACTIONS(14430), 1, + anon_sym_end, + STATE(10712), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427070] = 4, + [430658] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14273), 1, - anon_sym_RBRACK, - STATE(10615), 1, + ACTIONS(14432), 1, + anon_sym_end, + STATE(10713), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427084] = 4, + [430672] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14275), 1, - anon_sym_end, - STATE(10616), 1, + ACTIONS(14434), 1, + anon_sym_RPAREN, + STATE(10714), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427098] = 4, + [430686] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14277), 1, - anon_sym_end, - STATE(10617), 1, + ACTIONS(14436), 1, + anon_sym_RBRACK, + STATE(10715), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427112] = 4, + [430700] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14279), 1, - anon_sym_EQ_GT, - STATE(10618), 1, + ACTIONS(14438), 1, + anon_sym_end, + STATE(10716), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427126] = 4, + [430714] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14281), 1, - anon_sym_RBRACK, - STATE(10619), 1, + ACTIONS(14440), 1, + anon_sym_end, + STATE(10717), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427140] = 4, + [430728] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14283), 1, + ACTIONS(14442), 1, anon_sym_end, - STATE(10620), 1, + STATE(10718), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427154] = 4, + [430742] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14285), 1, + ACTIONS(14444), 1, anon_sym_end, - STATE(10621), 1, + STATE(10719), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427168] = 4, + [430756] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14287), 1, + ACTIONS(14446), 1, anon_sym_end, - STATE(10622), 1, + STATE(10720), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427182] = 4, + [430770] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14289), 1, - anon_sym_DASH_GT, - STATE(10623), 1, + ACTIONS(14448), 1, + anon_sym_class, + STATE(10721), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427196] = 4, + [430784] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14291), 1, + ACTIONS(14450), 1, anon_sym_yield, - STATE(10624), 1, + STATE(10722), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427210] = 4, + [430798] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14293), 1, - anon_sym_end, - STATE(10625), 1, + ACTIONS(14452), 1, + anon_sym_EQ_GT, + STATE(10723), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427224] = 4, + [430812] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14295), 1, - anon_sym_RBRACE, - STATE(10626), 1, + ACTIONS(14454), 1, + anon_sym_EQ_GT, + STATE(10724), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427238] = 4, + [430826] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14297), 1, + ACTIONS(14456), 1, anon_sym_end, - STATE(10627), 1, + STATE(10725), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427252] = 4, + [430840] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14299), 1, + ACTIONS(14458), 1, anon_sym_end, - STATE(10628), 1, + STATE(10726), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427266] = 4, + [430854] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14301), 1, + ACTIONS(14460), 1, sym__constant_segment, - STATE(10629), 1, + STATE(10727), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427280] = 4, + [430868] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14303), 1, - anon_sym_RPAREN, - STATE(10630), 1, + ACTIONS(14462), 1, + anon_sym_end, + STATE(10728), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427294] = 4, + [430882] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14305), 1, + ACTIONS(11619), 1, anon_sym_end, - STATE(10631), 1, + STATE(10729), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427308] = 4, + [430896] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14307), 1, + ACTIONS(14464), 1, anon_sym_end, - STATE(10632), 1, + STATE(10730), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427322] = 4, + [430910] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14309), 1, - sym__constant_segment, - STATE(10633), 1, + ACTIONS(14466), 1, + anon_sym_end, + STATE(10731), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427336] = 4, + [430924] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14311), 1, - anon_sym_RPAREN, - STATE(10634), 1, + ACTIONS(14468), 1, + anon_sym_DASH_GT, + STATE(10732), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427350] = 4, + [430938] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14313), 1, - anon_sym_end, - STATE(10635), 1, + ACTIONS(14470), 1, + anon_sym_EQ_GT, + STATE(10733), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427364] = 4, + [430952] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14315), 1, - anon_sym_end, - STATE(10636), 1, + ACTIONS(14472), 1, + anon_sym_DASH_GT, + STATE(10734), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427378] = 5, + [430966] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14317), 1, + ACTIONS(14474), 1, aux_sym_type_declaration_token1, - STATE(10637), 1, + STATE(10735), 1, sym_heredoc_body, - [427394] = 4, + [430982] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14319), 1, + ACTIONS(14476), 1, anon_sym_end, - STATE(10638), 1, + STATE(10736), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427408] = 4, + [430996] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14321), 1, - anon_sym_EQ_GT, - STATE(10639), 1, + ACTIONS(14478), 1, + anon_sym_end, + STATE(10737), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427422] = 4, + [431010] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14323), 1, - anon_sym_RBRACE, - STATE(10640), 1, + ACTIONS(14480), 1, + anon_sym_RBRACK, + STATE(10738), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427436] = 4, + [431024] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14325), 1, + ACTIONS(14482), 1, anon_sym_end, - STATE(10641), 1, + STATE(10739), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427450] = 4, + [431038] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14327), 1, - anon_sym_end, - STATE(10642), 1, + ACTIONS(14484), 1, + sym__constant_segment, + STATE(10740), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427464] = 4, + [431052] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14329), 1, - anon_sym_RPAREN, - STATE(10643), 1, + ACTIONS(14486), 1, + anon_sym_RBRACK, + STATE(10741), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427478] = 4, + [431066] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14331), 1, - anon_sym_DASH_GT, - STATE(10644), 1, + ACTIONS(14488), 1, + anon_sym_RPAREN, + STATE(10742), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427492] = 4, + [431080] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14333), 1, - anon_sym_end, - STATE(10645), 1, + ACTIONS(14490), 1, + anon_sym_RPAREN, + STATE(10743), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427506] = 4, + [431094] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14335), 1, + ACTIONS(14492), 1, anon_sym_end, - STATE(10646), 1, + STATE(10744), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427520] = 4, + [431108] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14337), 1, - anon_sym_RPAREN, - STATE(10647), 1, + ACTIONS(14494), 1, + anon_sym_of, + STATE(10745), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427534] = 4, + [431122] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14339), 1, - anon_sym_end, - STATE(10648), 1, + ACTIONS(14496), 1, + anon_sym_RPAREN, + STATE(10746), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427548] = 4, + [431136] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14341), 1, + ACTIONS(14498), 1, anon_sym_yield, - STATE(10649), 1, + STATE(10747), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427562] = 4, + [431150] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14343), 1, - anon_sym_RPAREN, - STATE(10650), 1, + ACTIONS(14500), 1, + anon_sym_end, + STATE(10748), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427576] = 4, + [431164] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14345), 1, - anon_sym_end, - STATE(10651), 1, + ACTIONS(14502), 1, + sym__constant_segment, + STATE(10749), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427590] = 4, + [431178] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14347), 1, - anon_sym_RPAREN, - STATE(10652), 1, + ACTIONS(14504), 1, + anon_sym_end, + STATE(10750), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427604] = 4, + [431192] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14349), 1, + ACTIONS(14506), 1, anon_sym_end, - STATE(10653), 1, + STATE(10751), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427618] = 4, + [431206] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14351), 1, - anon_sym_EQ_GT, - STATE(10654), 1, + ACTIONS(14508), 1, + anon_sym_end, + STATE(10752), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427632] = 4, + [431220] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14353), 1, - anon_sym_DASH_GT, - STATE(10655), 1, + ACTIONS(14510), 1, + anon_sym_end, + STATE(10753), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427646] = 4, + [431234] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14355), 1, + ACTIONS(14512), 1, anon_sym_end, - STATE(10656), 1, + STATE(10754), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427660] = 4, + [431248] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14357), 1, - anon_sym_end, - STATE(10657), 1, + ACTIONS(14514), 1, + anon_sym_RPAREN, + STATE(10755), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427674] = 4, + [431262] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14359), 1, + ACTIONS(14516), 1, anon_sym_yield, - STATE(10658), 1, + STATE(10756), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427688] = 4, + [431276] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14361), 1, + ACTIONS(14518), 1, anon_sym_end, - STATE(10659), 1, + STATE(10757), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427702] = 4, + [431290] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14363), 1, - anon_sym_class, - STATE(10660), 1, + ACTIONS(14520), 1, + anon_sym_EQ_GT, + STATE(10758), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427716] = 4, + [431304] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14365), 1, + ACTIONS(14522), 1, anon_sym_end, - STATE(10661), 1, + STATE(10759), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427730] = 4, + [431318] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14367), 1, + ACTIONS(14524), 1, anon_sym_end, - STATE(10662), 1, + STATE(10760), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427744] = 4, + [431332] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14369), 1, - anon_sym_RPAREN, - STATE(10663), 1, + ACTIONS(14526), 1, + anon_sym_end, + STATE(10761), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427758] = 4, + [431346] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14371), 1, - anon_sym_end, - STATE(10664), 1, + ACTIONS(14528), 1, + anon_sym_RPAREN, + STATE(10762), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427772] = 4, + [431360] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14373), 1, + ACTIONS(14530), 1, anon_sym_end, - STATE(10665), 1, + STATE(10763), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427786] = 4, + [431374] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14375), 1, - anon_sym_end, - STATE(10666), 1, + ACTIONS(14532), 1, + anon_sym_EQ_GT, + STATE(10764), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427800] = 4, + [431388] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14377), 1, + ACTIONS(14534), 1, anon_sym_yield, - STATE(10667), 1, + STATE(10765), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427814] = 4, + [431402] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14379), 1, + ACTIONS(14536), 1, anon_sym_end, - STATE(10668), 1, + STATE(10766), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427828] = 4, + [431416] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14381), 1, - anon_sym_end, - STATE(10669), 1, + ACTIONS(14538), 1, + anon_sym_RPAREN, + STATE(10767), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427842] = 4, + [431430] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14383), 1, - anon_sym_end, - STATE(10670), 1, + ACTIONS(14540), 1, + anon_sym_RPAREN, + STATE(10768), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427856] = 4, + [431444] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14385), 1, - anon_sym_yield, - STATE(10671), 1, + ACTIONS(14542), 1, + anon_sym_DASH_GT, + STATE(10769), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427870] = 4, + [431458] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14387), 1, + ACTIONS(14544), 1, anon_sym_end, - STATE(10672), 1, + STATE(10770), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427884] = 4, + [431472] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14389), 1, - anon_sym_RBRACE, - STATE(10673), 1, + ACTIONS(14546), 1, + anon_sym_class, + STATE(10771), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427898] = 4, + [431486] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14391), 1, + ACTIONS(14548), 1, anon_sym_end, - STATE(10674), 1, + STATE(10772), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427912] = 4, + [431500] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14393), 1, + ACTIONS(14550), 1, anon_sym_end, - STATE(10675), 1, + STATE(10773), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427926] = 4, + [431514] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14395), 1, + ACTIONS(14552), 1, anon_sym_end, - STATE(10676), 1, + STATE(10774), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [431528] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(14554), 1, + anon_sym_end, + STATE(10775), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427940] = 4, + [431542] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14397), 1, + ACTIONS(14556), 1, anon_sym_EQ_GT, - STATE(10677), 1, + STATE(10776), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427954] = 4, + [431556] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14399), 1, + ACTIONS(14558), 1, anon_sym_end, - STATE(10678), 1, + STATE(10777), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427968] = 4, + [431570] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14401), 1, - anon_sym_RBRACK, - STATE(10679), 1, + ACTIONS(14560), 1, + anon_sym_RBRACE, + STATE(10778), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427982] = 4, + [431584] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14403), 1, - anon_sym_RBRACE, - STATE(10680), 1, + ACTIONS(14562), 1, + anon_sym_end, + STATE(10779), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [427996] = 4, + [431598] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14405), 1, - anon_sym_RPAREN, - STATE(10681), 1, + ACTIONS(14564), 1, + anon_sym_EQ_GT, + STATE(10780), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428010] = 4, + [431612] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14407), 1, + ACTIONS(14566), 1, anon_sym_end, - STATE(10682), 1, + STATE(10781), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428024] = 4, + [431626] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14409), 1, + ACTIONS(14568), 1, anon_sym_RPAREN, - STATE(10683), 1, + STATE(10782), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428038] = 4, + [431640] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14411), 1, - anon_sym_end, - STATE(10684), 1, + ACTIONS(14570), 1, + anon_sym_RBRACK, + STATE(10783), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428052] = 4, + [431654] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14413), 1, - anon_sym_DASH_GT, - STATE(10685), 1, + ACTIONS(14572), 1, + anon_sym_end, + STATE(10784), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428066] = 4, + [431668] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14415), 1, - anon_sym_DASH_GT, - STATE(10686), 1, + ACTIONS(14574), 1, + anon_sym_RPAREN, + STATE(10785), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428080] = 4, + [431682] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14417), 1, - anon_sym_RPAREN, - STATE(10687), 1, + ACTIONS(14576), 1, + anon_sym_end, + STATE(10786), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428094] = 4, + [431696] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14419), 1, - sym__constant_segment, - STATE(10688), 1, + ACTIONS(14578), 1, + anon_sym_RBRACK, + STATE(10787), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428108] = 4, + [431710] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14421), 1, + ACTIONS(14580), 1, anon_sym_end, - STATE(10689), 1, + STATE(10788), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428122] = 4, + [431724] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14423), 1, - anon_sym_EQ_GT, - STATE(10690), 1, + ACTIONS(14582), 1, + anon_sym_DASH_GT, + STATE(10789), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428136] = 4, + [431738] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14425), 1, + ACTIONS(14584), 1, anon_sym_end, - STATE(10691), 1, + STATE(10790), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428150] = 4, + [431752] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14427), 1, - sym__constant_segment, - STATE(10692), 1, + ACTIONS(14586), 1, + anon_sym_EQ_GT, + STATE(10791), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428164] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(14429), 1, - aux_sym_type_declaration_token1, - STATE(10693), 1, - sym_heredoc_body, - [428180] = 4, + [431766] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14431), 1, - anon_sym_end, - STATE(10694), 1, + ACTIONS(14588), 1, + anon_sym_EQ, + STATE(10792), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428194] = 4, + [431780] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14433), 1, + ACTIONS(14590), 1, anon_sym_end, - STATE(10695), 1, + STATE(10793), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428208] = 4, + [431794] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14435), 1, + ACTIONS(14592), 1, anon_sym_end, - STATE(10696), 1, + STATE(10794), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428222] = 4, + [431808] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14437), 1, + ACTIONS(14594), 1, anon_sym_end, - STATE(10697), 1, + STATE(10795), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428236] = 4, + [431822] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14439), 1, + ACTIONS(14596), 1, anon_sym_end, - STATE(10698), 1, + STATE(10796), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428250] = 4, + [431836] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14441), 1, - anon_sym_end, - STATE(10699), 1, + ACTIONS(14598), 1, + anon_sym_RPAREN, + STATE(10797), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428264] = 4, + [431850] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14443), 1, - anon_sym_RPAREN, - STATE(10700), 1, + ACTIONS(14600), 1, + anon_sym_DASH_GT, + STATE(10798), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428278] = 4, + [431864] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14445), 1, - anon_sym_RBRACK, - STATE(10701), 1, + ACTIONS(14602), 1, + anon_sym_EQ_GT, + STATE(10799), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428292] = 4, + [431878] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14447), 1, + ACTIONS(14604), 1, anon_sym_end, - STATE(10702), 1, + STATE(10800), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428306] = 4, + [431892] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14449), 1, - anon_sym_RBRACK, - STATE(10703), 1, + ACTIONS(14606), 1, + anon_sym_EQ_GT, + STATE(10801), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428320] = 4, + [431906] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14451), 1, + ACTIONS(14608), 1, anon_sym_DASH_GT, - STATE(10704), 1, + STATE(10802), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428334] = 4, + [431920] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14453), 1, - anon_sym_EQ_GT, - STATE(10705), 1, + ACTIONS(14610), 1, + anon_sym_DASH_GT, + STATE(10803), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428348] = 4, + [431934] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14455), 1, + ACTIONS(14612), 1, anon_sym_end, - STATE(10706), 1, + STATE(10804), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428362] = 4, + [431948] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14457), 1, - anon_sym_class, - STATE(10707), 1, + ACTIONS(14614), 1, + anon_sym_end, + STATE(10805), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428376] = 4, + [431962] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14459), 1, + ACTIONS(14616), 1, anon_sym_end, - STATE(10708), 1, + STATE(10806), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428390] = 4, + [431976] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14461), 1, - anon_sym_SQUOTE2, - STATE(10709), 1, + ACTIONS(14618), 1, + anon_sym_RBRACE, + STATE(10807), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428404] = 4, + [431990] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14463), 1, - anon_sym_end, - STATE(10710), 1, + ACTIONS(14620), 1, + sym__constant_segment, + STATE(10808), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428418] = 4, + [432004] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14465), 1, + ACTIONS(14622), 1, anon_sym_end, - STATE(10711), 1, + STATE(10809), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428432] = 4, + [432018] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14467), 1, + ACTIONS(14624), 1, sym__constant_segment, - STATE(10712), 1, + STATE(10810), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428446] = 4, + [432032] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14469), 1, + ACTIONS(14626), 1, anon_sym_end, - STATE(10713), 1, + STATE(10811), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428460] = 4, + [432046] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14471), 1, - anon_sym_RPAREN, - STATE(10714), 1, + ACTIONS(14628), 1, + sym__constant_segment, + STATE(10812), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428474] = 4, + [432060] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14473), 1, - anon_sym_end, - STATE(10715), 1, + ACTIONS(14630), 1, + aux_sym_type_declaration_token1, + STATE(10813), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [428488] = 4, + [432076] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14475), 1, - anon_sym_EQ_GT, - STATE(10716), 1, + ACTIONS(14632), 1, + anon_sym_end, + STATE(10814), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428502] = 4, + [432090] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14477), 1, + ACTIONS(14634), 1, anon_sym_end, - STATE(10717), 1, + STATE(10815), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428516] = 4, + [432104] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14479), 1, - sym__constant_segment, - STATE(10718), 1, + ACTIONS(14636), 1, + anon_sym_EQ_GT, + STATE(10816), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428530] = 4, + [432118] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14481), 1, + ACTIONS(14638), 1, anon_sym_end, - STATE(10719), 1, + STATE(10817), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428544] = 4, + [432132] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14483), 1, + ACTIONS(14640), 1, anon_sym_end, - STATE(10720), 1, + STATE(10818), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428558] = 4, + [432146] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14485), 1, - anon_sym_end, - STATE(10721), 1, + ACTIONS(14642), 1, + anon_sym_RPAREN, + STATE(10819), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428572] = 4, + [432160] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14487), 1, - anon_sym_RBRACK, - STATE(10722), 1, + ACTIONS(14644), 1, + anon_sym_RPAREN, + STATE(10820), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428586] = 4, + [432174] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14489), 1, - anon_sym_EQ_GT, - STATE(10723), 1, + ACTIONS(14646), 1, + anon_sym_end, + STATE(10821), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428600] = 4, + [432188] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14491), 1, - anon_sym_DASH_GT, - STATE(10724), 1, + ACTIONS(14648), 1, + anon_sym_end, + STATE(10822), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428614] = 4, + [432202] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14493), 1, + ACTIONS(14650), 1, anon_sym_end, - STATE(10725), 1, + STATE(10823), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428628] = 4, + [432216] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14495), 1, + ACTIONS(14652), 1, anon_sym_end, - STATE(10726), 1, + STATE(10824), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428642] = 4, + [432230] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14497), 1, + ACTIONS(14654), 1, anon_sym_end, - STATE(10727), 1, + STATE(10825), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428656] = 4, + [432244] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14499), 1, + ACTIONS(14656), 1, anon_sym_EQ, - STATE(10728), 1, + STATE(10826), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428670] = 4, + [432258] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14501), 1, - anon_sym_DASH_GT, - STATE(10729), 1, + ACTIONS(14658), 1, + anon_sym_end, + STATE(10827), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428684] = 4, + [432272] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14503), 1, + ACTIONS(14660), 1, anon_sym_end, - STATE(10730), 1, + STATE(10828), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428698] = 4, + [432286] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14505), 1, - anon_sym_DASH_GT, - STATE(10731), 1, + ACTIONS(14662), 1, + anon_sym_class, + STATE(10829), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428712] = 4, + [432300] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11372), 1, + ACTIONS(14664), 1, anon_sym_end, - STATE(10732), 1, + STATE(10830), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428726] = 4, + [432314] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14507), 1, - sym__constant_segment, - STATE(10733), 1, + ACTIONS(14666), 1, + anon_sym_end, + STATE(10831), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428740] = 4, + [432328] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14509), 1, + ACTIONS(14668), 1, anon_sym_RPAREN, - STATE(10734), 1, + STATE(10832), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428754] = 4, + [432342] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14511), 1, - anon_sym_RBRACK, - STATE(10735), 1, + ACTIONS(14670), 1, + anon_sym_RBRACE, + STATE(10833), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428768] = 4, + [432356] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14513), 1, - anon_sym_RPAREN, - STATE(10736), 1, + ACTIONS(14672), 1, + anon_sym_end, + STATE(10834), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428782] = 4, + [432370] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14515), 1, + ACTIONS(14674), 1, anon_sym_end, - STATE(10737), 1, + STATE(10835), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428796] = 4, + [432384] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14517), 1, - anon_sym_end, - STATE(10738), 1, + ACTIONS(14676), 1, + anon_sym_yield, + STATE(10836), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428810] = 4, + [432398] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14519), 1, - sym__constant_segment, - STATE(10739), 1, + ACTIONS(14678), 1, + anon_sym_RBRACK, + STATE(10837), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428824] = 4, + [432412] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14521), 1, + ACTIONS(14680), 1, anon_sym_EQ, - STATE(10740), 1, + STATE(10838), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428838] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [432426] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14523), 1, - aux_sym_type_declaration_token1, - STATE(10741), 1, + ACTIONS(14682), 1, + anon_sym_RBRACK, + STATE(10839), 1, sym_heredoc_body, - [428854] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [432440] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14525), 1, - anon_sym_end, - STATE(10742), 1, + ACTIONS(14684), 1, + anon_sym_RPAREN, + STATE(10840), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428868] = 4, + [432454] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14527), 1, - anon_sym_SQUOTE2, - STATE(10743), 1, + ACTIONS(14686), 1, + anon_sym_end, + STATE(10841), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428882] = 4, + [432468] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14529), 1, + ACTIONS(14688), 1, anon_sym_end, - STATE(10744), 1, + STATE(10842), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428896] = 4, + [432482] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14531), 1, - anon_sym_end, - STATE(10745), 1, + ACTIONS(14690), 1, + anon_sym_RPAREN, + STATE(10843), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428910] = 4, + [432496] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14533), 1, + ACTIONS(14692), 1, anon_sym_PIPE, - STATE(10746), 1, + STATE(10844), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428924] = 4, + [432510] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14535), 1, - anon_sym_of, - STATE(10747), 1, + ACTIONS(14694), 1, + anon_sym_end, + STATE(10845), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428938] = 4, + [432524] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14537), 1, - anon_sym_end, - STATE(10748), 1, + ACTIONS(14696), 1, + anon_sym_DASH_GT, + STATE(10846), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428952] = 4, + [432538] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14539), 1, + ACTIONS(14698), 1, anon_sym_PIPE, - STATE(10749), 1, + STATE(10847), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428966] = 4, + [432552] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14541), 1, - anon_sym_RPAREN, - STATE(10750), 1, + ACTIONS(14700), 1, + anon_sym_DASH_GT, + STATE(10848), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428980] = 4, + [432566] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14543), 1, - anon_sym_end, - STATE(10751), 1, + ACTIONS(14702), 1, + anon_sym_RPAREN, + STATE(10849), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [428994] = 4, + [432580] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14545), 1, - anon_sym_end, - STATE(10752), 1, + ACTIONS(14704), 1, + sym__constant_segment, + STATE(10850), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429008] = 4, + [432594] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14547), 1, - anon_sym_end, - STATE(10753), 1, + ACTIONS(14706), 1, + anon_sym_RPAREN, + STATE(10851), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429022] = 4, + [432608] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14549), 1, + ACTIONS(14708), 1, anon_sym_end, - STATE(10754), 1, + STATE(10852), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429036] = 4, + [432622] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14551), 1, + ACTIONS(14710), 1, sym__constant_segment, - STATE(10755), 1, + STATE(10853), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429050] = 4, + [432636] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11984), 1, + ACTIONS(12062), 1, anon_sym_RPAREN, - STATE(10756), 1, + STATE(10854), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429064] = 4, + [432650] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(14712), 1, + aux_sym_type_declaration_token1, + STATE(10855), 1, + sym_heredoc_body, + [432666] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14553), 1, + ACTIONS(14714), 1, anon_sym_end, - STATE(10757), 1, + STATE(10856), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429078] = 4, + [432680] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14555), 1, + ACTIONS(14716), 1, anon_sym_end, - STATE(10758), 1, + STATE(10857), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429092] = 4, + [432694] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14557), 1, + ACTIONS(14718), 1, anon_sym_end, - STATE(10759), 1, + STATE(10858), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429106] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [432708] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14559), 1, - aux_sym_type_declaration_token1, - STATE(10760), 1, - sym_heredoc_body, - [429122] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(14561), 1, - anon_sym_end, - STATE(10761), 1, + ACTIONS(14720), 1, + anon_sym_RPAREN, + STATE(10859), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429136] = 4, + [432722] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14563), 1, + ACTIONS(14722), 1, anon_sym_class, - STATE(10762), 1, + STATE(10860), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429150] = 4, + [432736] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14565), 1, + ACTIONS(14724), 1, anon_sym_end, - STATE(10763), 1, + STATE(10861), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429164] = 4, + [432750] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14567), 1, - anon_sym_end, - STATE(10764), 1, + ACTIONS(14726), 1, + anon_sym_RBRACE, + STATE(10862), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429178] = 4, + [432764] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14569), 1, - anon_sym_RPAREN, - STATE(10765), 1, + ACTIONS(14728), 1, + anon_sym_end, + STATE(10863), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429192] = 4, + [432778] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14571), 1, + ACTIONS(14730), 1, anon_sym_end, - STATE(10766), 1, + STATE(10864), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429206] = 4, + [432792] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14573), 1, - anon_sym_EQ_GT, - STATE(10767), 1, + ACTIONS(14732), 1, + anon_sym_end, + STATE(10865), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429220] = 4, + [432806] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14575), 1, - anon_sym_end, - STATE(10768), 1, + ACTIONS(14734), 1, + anon_sym_RPAREN, + STATE(10866), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429234] = 4, + [432820] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14577), 1, - anon_sym_end, - STATE(10769), 1, + ACTIONS(14736), 1, + anon_sym_class, + STATE(10867), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429248] = 4, + [432834] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14579), 1, + ACTIONS(14738), 1, anon_sym_end, - STATE(10770), 1, + STATE(10868), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429262] = 4, + [432848] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14581), 1, + ACTIONS(14740), 1, anon_sym_end, - STATE(10771), 1, + STATE(10869), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429276] = 4, + [432862] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14583), 1, - anon_sym_end, - STATE(10772), 1, + ACTIONS(14742), 1, + anon_sym_RPAREN, + STATE(10870), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429290] = 4, + [432876] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14585), 1, - anon_sym_RBRACK, - STATE(10773), 1, + ACTIONS(14744), 1, + anon_sym_end, + STATE(10871), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429304] = 4, + [432890] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14587), 1, + ACTIONS(14746), 1, anon_sym_end, - STATE(10774), 1, + STATE(10872), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429318] = 4, + [432904] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14589), 1, + ACTIONS(14748), 1, anon_sym_end, - STATE(10775), 1, + STATE(10873), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429332] = 4, + [432918] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14591), 1, - anon_sym_end, - STATE(10776), 1, + ACTIONS(14750), 1, + anon_sym_RPAREN, + STATE(10874), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429346] = 4, + [432932] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14593), 1, + ACTIONS(11617), 1, anon_sym_end, - STATE(10777), 1, + STATE(10875), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429360] = 4, + [432946] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14595), 1, + ACTIONS(11423), 1, anon_sym_end, - STATE(10778), 1, + STATE(10876), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429374] = 4, + [432960] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14597), 1, - anon_sym_yield, - STATE(10779), 1, + ACTIONS(14752), 1, + anon_sym_end, + STATE(10877), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429388] = 4, + [432974] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14599), 1, - anon_sym_RBRACK, - STATE(10780), 1, + ACTIONS(14754), 1, + anon_sym_end, + STATE(10878), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429402] = 4, + [432988] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14601), 1, - sym__constant_segment, - STATE(10781), 1, + ACTIONS(14756), 1, + anon_sym_end, + STATE(10879), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429416] = 4, + [433002] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14603), 1, + ACTIONS(14758), 1, anon_sym_end, - STATE(10782), 1, + STATE(10880), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429430] = 4, + [433016] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14605), 1, - anon_sym_end, - STATE(10783), 1, + ACTIONS(14760), 1, + anon_sym_RBRACK, + STATE(10881), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429444] = 4, + [433030] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14607), 1, - anon_sym_end, - STATE(10784), 1, + ACTIONS(14762), 1, + sym__constant_segment, + STATE(10882), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429458] = 4, + [433044] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14609), 1, + ACTIONS(14764), 1, anon_sym_RPAREN, - STATE(10785), 1, + STATE(10883), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429472] = 4, + [433058] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14611), 1, + ACTIONS(14766), 1, anon_sym_end, - STATE(10786), 1, + STATE(10884), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429486] = 4, + [433072] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14613), 1, - anon_sym_DASH_GT, - STATE(10787), 1, + ACTIONS(14768), 1, + anon_sym_end, + STATE(10885), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429500] = 4, + [433086] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14615), 1, - anon_sym_RBRACE, - STATE(10788), 1, + ACTIONS(14770), 1, + anon_sym_end, + STATE(10886), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429514] = 4, + [433100] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14617), 1, - anon_sym_DASH_GT, - STATE(10789), 1, + ACTIONS(14772), 1, + anon_sym_end, + STATE(10887), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429528] = 4, + [433114] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14619), 1, + ACTIONS(14774), 1, anon_sym_end, - STATE(10790), 1, + STATE(10888), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429542] = 4, + [433128] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14621), 1, + ACTIONS(14776), 1, anon_sym_PIPE, - STATE(10791), 1, + STATE(10889), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429556] = 4, + [433142] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14623), 1, - anon_sym_end, - STATE(10792), 1, + ACTIONS(14778), 1, + anon_sym_DASH_GT, + STATE(10890), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429570] = 4, + [433156] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14625), 1, - anon_sym_end, - STATE(10793), 1, + ACTIONS(14780), 1, + anon_sym_DASH_GT, + STATE(10891), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429584] = 4, + [433170] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14627), 1, + ACTIONS(14782), 1, anon_sym_PIPE, - STATE(10794), 1, + STATE(10892), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429598] = 4, + [433184] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14629), 1, - sym__constant_segment, - STATE(10795), 1, + ACTIONS(14784), 1, + anon_sym_end, + STATE(10893), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429612] = 4, + [433198] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14631), 1, - anon_sym_end, - STATE(10796), 1, + ACTIONS(14786), 1, + anon_sym_EQ_GT, + STATE(10894), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429626] = 4, + [433212] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14633), 1, - anon_sym_end, - STATE(10797), 1, + ACTIONS(14788), 1, + sym__constant_segment, + STATE(10895), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429640] = 4, + [433226] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14635), 1, - sym__constant_segment, - STATE(10798), 1, + ACTIONS(14790), 1, + anon_sym_end, + STATE(10896), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429654] = 4, + [433240] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11988), 1, + ACTIONS(12074), 1, anon_sym_RPAREN, - STATE(10799), 1, + STATE(10897), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429668] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [433254] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14637), 1, - aux_sym_type_declaration_token1, - STATE(10800), 1, - sym_heredoc_body, - [429684] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(14639), 1, - anon_sym_yield, - STATE(10801), 1, + ACTIONS(14792), 1, + sym__constant_segment, + STATE(10898), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429698] = 4, + [433268] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14641), 1, - anon_sym_end, - STATE(10802), 1, + ACTIONS(14794), 1, + aux_sym_type_declaration_token1, + STATE(10899), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [429712] = 4, + [433284] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14643), 1, - anon_sym_end, - STATE(10803), 1, + ACTIONS(14796), 1, + sym__constant_segment, + STATE(10900), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429726] = 4, + [433298] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11362), 1, - anon_sym_end, - STATE(10804), 1, + ACTIONS(14798), 1, + anon_sym_RBRACE, + STATE(10901), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429740] = 4, + [433312] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14645), 1, + ACTIONS(14800), 1, anon_sym_RPAREN, - STATE(10805), 1, + STATE(10902), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429754] = 4, + [433326] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14647), 1, + ACTIONS(11415), 1, anon_sym_end, - STATE(10806), 1, + STATE(10903), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429768] = 4, + [433340] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14649), 1, - anon_sym_RBRACK, - STATE(10807), 1, + ACTIONS(14802), 1, + anon_sym_RPAREN, + STATE(10904), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429782] = 4, + [433354] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14651), 1, - anon_sym_RPAREN, - STATE(10808), 1, + ACTIONS(14804), 1, + anon_sym_end, + STATE(10905), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429796] = 4, + [433368] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14653), 1, + ACTIONS(14806), 1, anon_sym_EQ_GT, - STATE(10809), 1, + STATE(10906), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429810] = 4, + [433382] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14655), 1, + ACTIONS(14808), 1, anon_sym_RPAREN, - STATE(10810), 1, + STATE(10907), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429824] = 4, + [433396] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14657), 1, + ACTIONS(14810), 1, anon_sym_RPAREN, - STATE(10811), 1, + STATE(10908), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429838] = 4, + [433410] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14659), 1, - anon_sym_RPAREN, - STATE(10812), 1, + ACTIONS(14812), 1, + anon_sym_SQUOTE2, + STATE(10909), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429852] = 4, + [433424] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14661), 1, + ACTIONS(14814), 1, anon_sym_end, - STATE(10813), 1, + STATE(10910), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429866] = 4, + [433438] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14663), 1, + ACTIONS(11397), 1, anon_sym_end, - STATE(10814), 1, + STATE(10911), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429880] = 4, + [433452] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14665), 1, - anon_sym_class, - STATE(10815), 1, + ACTIONS(14816), 1, + anon_sym_of, + STATE(10912), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429894] = 4, + [433466] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14667), 1, - anon_sym_end, - STATE(10816), 1, + ACTIONS(14818), 1, + anon_sym_DASH_GT, + STATE(10913), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429908] = 4, + [433480] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14669), 1, + ACTIONS(14820), 1, anon_sym_end, - STATE(10817), 1, + STATE(10914), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429922] = 4, + [433494] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14671), 1, - anon_sym_end, - STATE(10818), 1, + ACTIONS(14822), 1, + anon_sym_class, + STATE(10915), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429936] = 4, + [433508] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14673), 1, + ACTIONS(9986), 1, anon_sym_RPAREN, - STATE(10819), 1, + STATE(10916), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429950] = 4, + [433522] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14675), 1, + ACTIONS(14824), 1, anon_sym_end, - STATE(10820), 1, + STATE(10917), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429964] = 4, + [433536] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14677), 1, - anon_sym_end, - STATE(10821), 1, + ACTIONS(14826), 1, + sym__constant_segment, + STATE(10918), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429978] = 4, + [433550] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14679), 1, + ACTIONS(14828), 1, anon_sym_RPAREN, - STATE(10822), 1, + STATE(10919), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [429992] = 4, + [433564] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11426), 1, - anon_sym_end, - STATE(10823), 1, + ACTIONS(14830), 1, + aux_sym_type_declaration_token1, + STATE(10920), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [430006] = 4, + [433580] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14681), 1, - anon_sym_RPAREN, - STATE(10824), 1, + ACTIONS(14832), 1, + anon_sym_end, + STATE(10921), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430020] = 4, + [433594] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14683), 1, - anon_sym_RPAREN, - STATE(10825), 1, + ACTIONS(14834), 1, + anon_sym_end, + STATE(10922), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430034] = 4, + [433608] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14685), 1, - anon_sym_RPAREN, - STATE(10826), 1, + ACTIONS(14836), 1, + anon_sym_end, + STATE(10923), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430048] = 4, + [433622] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14687), 1, + ACTIONS(14838), 1, anon_sym_end, - STATE(10827), 1, + STATE(10924), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430062] = 4, + [433636] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14689), 1, + ACTIONS(14840), 1, anon_sym_PIPE, - STATE(10828), 1, + STATE(10925), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430076] = 4, + [433650] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14691), 1, - anon_sym_RPAREN, - STATE(10829), 1, + ACTIONS(14842), 1, + anon_sym_end, + STATE(10926), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430090] = 4, + [433664] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14693), 1, - anon_sym_EQ_GT, - STATE(10830), 1, + ACTIONS(14844), 1, + anon_sym_end, + STATE(10927), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430104] = 4, + [433678] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14695), 1, + ACTIONS(14846), 1, anon_sym_PIPE, - STATE(10831), 1, + STATE(10928), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430118] = 4, + [433692] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14697), 1, + ACTIONS(14848), 1, anon_sym_end, - STATE(10832), 1, + STATE(10929), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430132] = 4, + [433706] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14699), 1, - sym__constant_segment, - STATE(10833), 1, + ACTIONS(14850), 1, + anon_sym_RPAREN, + STATE(10930), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430146] = 4, + [433720] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14701), 1, + ACTIONS(14852), 1, anon_sym_end, - STATE(10834), 1, + STATE(10931), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430160] = 4, + [433734] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14703), 1, + ACTIONS(11469), 1, anon_sym_end, - STATE(10835), 1, + STATE(10932), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430174] = 4, + [433748] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11994), 1, + ACTIONS(12082), 1, anon_sym_RPAREN, - STATE(10836), 1, + STATE(10933), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430188] = 4, + [433762] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14705), 1, - anon_sym_RBRACK, - STATE(10837), 1, + ACTIONS(14854), 1, + anon_sym_RPAREN, + STATE(10934), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430202] = 4, + [433776] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14707), 1, + ACTIONS(14856), 1, anon_sym_end, - STATE(10838), 1, + STATE(10935), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430216] = 4, + [433790] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14709), 1, - sym__constant_segment, - STATE(10839), 1, + ACTIONS(14858), 1, + anon_sym_RBRACK, + STATE(10936), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430230] = 4, + [433804] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14711), 1, + ACTIONS(14860), 1, anon_sym_end, - STATE(10840), 1, + STATE(10937), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430244] = 4, + [433818] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14713), 1, + ACTIONS(14862), 1, anon_sym_EQ_GT, - STATE(10841), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [430258] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(14715), 1, - anon_sym_class, - STATE(10842), 1, + STATE(10938), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430272] = 4, + [433832] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14717), 1, - anon_sym_RBRACE, - STATE(10843), 1, + ACTIONS(14864), 1, + anon_sym_DASH_GT, + STATE(10939), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430286] = 4, + [433846] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14719), 1, + ACTIONS(14866), 1, anon_sym_end, - STATE(10844), 1, + STATE(10940), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430300] = 4, + [433860] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14721), 1, - anon_sym_RPAREN, - STATE(10845), 1, + ACTIONS(14868), 1, + anon_sym_end, + STATE(10941), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430314] = 4, + [433874] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14723), 1, + ACTIONS(14870), 1, anon_sym_DASH_GT, - STATE(10846), 1, + STATE(10942), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430328] = 4, + [433888] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14725), 1, + ACTIONS(14872), 1, anon_sym_DASH_GT, - STATE(10847), 1, + STATE(10943), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430342] = 4, + [433902] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14727), 1, - anon_sym_class, - STATE(10848), 1, + ACTIONS(14874), 1, + anon_sym_end, + STATE(10944), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430356] = 4, + [433916] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14729), 1, - anon_sym_end, - STATE(10849), 1, + ACTIONS(14876), 1, + sym__constant_segment, + STATE(10945), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430370] = 4, + [433930] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14731), 1, + ACTIONS(14878), 1, anon_sym_end, - STATE(10850), 1, + STATE(10946), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430384] = 4, + [433944] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14733), 1, + ACTIONS(14880), 1, sym__constant_segment, - STATE(10851), 1, + STATE(10947), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430398] = 4, + [433958] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14735), 1, + ACTIONS(14882), 1, anon_sym_end, - STATE(10852), 1, + STATE(10948), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430412] = 4, + [433972] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14737), 1, - anon_sym_end, - STATE(10853), 1, + ACTIONS(14884), 1, + aux_sym_type_declaration_token1, + STATE(10949), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [430426] = 4, + [433988] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14739), 1, - sym__constant_segment, - STATE(10854), 1, + ACTIONS(14886), 1, + anon_sym_end, + STATE(10950), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430440] = 4, + [434002] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14741), 1, + ACTIONS(14888), 1, anon_sym_end, - STATE(10855), 1, + STATE(10951), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430454] = 4, + [434016] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14743), 1, - anon_sym_end, - STATE(10856), 1, + ACTIONS(14890), 1, + anon_sym_RPAREN, + STATE(10952), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430468] = 4, + [434030] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14745), 1, + ACTIONS(14892), 1, anon_sym_end, - STATE(10857), 1, + STATE(10953), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430482] = 4, + [434044] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14747), 1, - anon_sym_RPAREN, - STATE(10858), 1, + ACTIONS(14894), 1, + anon_sym_end, + STATE(10954), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430496] = 4, + [434058] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14749), 1, - anon_sym_RPAREN, - STATE(10859), 1, + ACTIONS(14896), 1, + anon_sym_end, + STATE(10955), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430510] = 4, + [434072] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14751), 1, - anon_sym_end, - STATE(10860), 1, + ACTIONS(14898), 1, + anon_sym_RPAREN, + STATE(10956), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430524] = 4, + [434086] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14753), 1, + ACTIONS(14900), 1, anon_sym_end, - STATE(10861), 1, + STATE(10957), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430538] = 4, + [434100] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14755), 1, - anon_sym_DASH_GT, - STATE(10862), 1, + ACTIONS(14902), 1, + anon_sym_RBRACE, + STATE(10958), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430552] = 4, + [434114] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14757), 1, - anon_sym_end, - STATE(10863), 1, + ACTIONS(14904), 1, + sym__constant_segment, + STATE(10959), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430566] = 4, + [434128] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14759), 1, - anon_sym_end, - STATE(10864), 1, + ACTIONS(14906), 1, + anon_sym_of, + STATE(10960), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430580] = 4, + [434142] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14761), 1, - anon_sym_PIPE, - STATE(10865), 1, + ACTIONS(14908), 1, + anon_sym_class, + STATE(10961), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430594] = 4, + [434156] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14763), 1, - anon_sym_of, - STATE(10866), 1, + ACTIONS(14910), 1, + anon_sym_PIPE, + STATE(10962), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430608] = 4, + [434170] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14765), 1, + ACTIONS(14912), 1, anon_sym_end, - STATE(10867), 1, + STATE(10963), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430622] = 4, + [434184] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14767), 1, - anon_sym_PIPE, - STATE(10868), 1, + ACTIONS(6017), 1, + anon_sym_RBRACK, + STATE(10964), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430636] = 4, + [434198] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14769), 1, - anon_sym_end, - STATE(10869), 1, + ACTIONS(14914), 1, + anon_sym_PIPE, + STATE(10965), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430650] = 4, + [434212] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14771), 1, + ACTIONS(14916), 1, anon_sym_end, - STATE(10870), 1, + STATE(10966), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430664] = 4, + [434226] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14773), 1, + ACTIONS(14918), 1, anon_sym_end, - STATE(10871), 1, + STATE(10967), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430678] = 4, + [434240] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14775), 1, - anon_sym_EQ_GT, - STATE(10872), 1, + ACTIONS(14920), 1, + anon_sym_RPAREN, + STATE(10968), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430692] = 4, + [434254] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11998), 1, - anon_sym_RPAREN, - STATE(10873), 1, + ACTIONS(14922), 1, + anon_sym_end, + STATE(10969), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430706] = 4, + [434268] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14777), 1, + ACTIONS(12094), 1, anon_sym_RPAREN, - STATE(10874), 1, + STATE(10970), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430720] = 4, + [434282] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14779), 1, - anon_sym_end, - STATE(10875), 1, + ACTIONS(14924), 1, + anon_sym_EQ_GT, + STATE(10971), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430734] = 4, + [434296] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14781), 1, + ACTIONS(14926), 1, anon_sym_end, - STATE(10876), 1, + STATE(10972), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430748] = 4, + [434310] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14783), 1, - anon_sym_EQ_GT, - STATE(10877), 1, + ACTIONS(14928), 1, + anon_sym_RBRACK, + STATE(10973), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430762] = 4, + [434324] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14785), 1, + ACTIONS(14930), 1, anon_sym_end, - STATE(10878), 1, + STATE(10974), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430776] = 4, + [434338] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14787), 1, - anon_sym_class, - STATE(10879), 1, + ACTIONS(14932), 1, + anon_sym_yield, + STATE(10975), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430790] = 4, + [434352] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14789), 1, + ACTIONS(14934), 1, anon_sym_end, - STATE(10880), 1, + STATE(10976), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430804] = 4, + [434366] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14791), 1, + ACTIONS(14936), 1, anon_sym_end, - STATE(10881), 1, + STATE(10977), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430818] = 4, + [434380] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14793), 1, - sym__constant_segment, - STATE(10882), 1, + ACTIONS(14938), 1, + anon_sym_class, + STATE(10978), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430832] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + [434394] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(11586), 1, + anon_sym_end, + STATE(10979), 1, + sym_heredoc_body, + ACTIONS(5), 2, sym__line_continuation, + sym_comment, + [434408] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14795), 1, - aux_sym_type_declaration_token1, - STATE(10883), 1, + ACTIONS(14940), 1, + anon_sym_RPAREN, + STATE(10980), 1, sym_heredoc_body, - [430848] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [434422] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14797), 1, - anon_sym_RBRACK, - STATE(10884), 1, + ACTIONS(14942), 1, + anon_sym_DASH_GT, + STATE(10981), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430862] = 4, + [434436] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14799), 1, - anon_sym_end, - STATE(10885), 1, + ACTIONS(14944), 1, + anon_sym_RPAREN, + STATE(10982), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430876] = 4, + [434450] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14801), 1, - anon_sym_end, - STATE(10886), 1, + ACTIONS(14946), 1, + anon_sym_DASH_GT, + STATE(10983), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430890] = 4, + [434464] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14803), 1, - anon_sym_end, - STATE(10887), 1, + ACTIONS(14948), 1, + anon_sym_EQ_GT, + STATE(10984), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430904] = 4, + [434478] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(10322), 1, + ACTIONS(14950), 1, anon_sym_RPAREN, - STATE(10888), 1, + STATE(10985), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430918] = 4, + [434492] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14805), 1, - anon_sym_end, - STATE(10889), 1, + ACTIONS(14952), 1, + anon_sym_RPAREN, + STATE(10986), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430932] = 4, + [434506] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14807), 1, - anon_sym_EQ_GT, - STATE(10890), 1, + ACTIONS(14954), 1, + anon_sym_end, + STATE(10987), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430946] = 4, + [434520] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14809), 1, - anon_sym_RPAREN, - STATE(10891), 1, + ACTIONS(14956), 1, + anon_sym_SQUOTE2, + STATE(10988), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430960] = 4, + [434534] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14811), 1, - anon_sym_RBRACE, - STATE(10892), 1, + ACTIONS(14958), 1, + anon_sym_end, + STATE(10989), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430974] = 4, + [434548] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14813), 1, - anon_sym_end, - STATE(10893), 1, + ACTIONS(14960), 1, + sym__constant_segment, + STATE(10990), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [430988] = 4, + [434562] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14815), 1, - anon_sym_RPAREN, - STATE(10894), 1, + ACTIONS(14962), 1, + anon_sym_of, + STATE(10991), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431002] = 4, + [434576] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14817), 1, + ACTIONS(14964), 1, anon_sym_RPAREN, - STATE(10895), 1, + STATE(10992), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431016] = 4, + [434590] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14819), 1, - anon_sym_end, - STATE(10896), 1, + ACTIONS(14966), 1, + sym__constant_segment, + STATE(10993), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431030] = 4, + [434604] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14821), 1, - anon_sym_end, - STATE(10897), 1, + ACTIONS(14968), 1, + anon_sym_DASH_GT, + STATE(10994), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431044] = 4, + [434618] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14823), 1, - anon_sym_RBRACK, - STATE(10898), 1, + ACTIONS(14970), 1, + anon_sym_RPAREN, + STATE(10995), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431058] = 4, + [434632] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14825), 1, + ACTIONS(14972), 1, anon_sym_end, - STATE(10899), 1, + STATE(10996), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431072] = 4, + [434646] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14827), 1, - anon_sym_EQ_GT, - STATE(10900), 1, + ACTIONS(14974), 1, + anon_sym_end, + STATE(10997), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431086] = 4, + [434660] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14829), 1, + ACTIONS(14976), 1, anon_sym_PIPE, - STATE(10901), 1, + STATE(10998), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431100] = 4, + [434674] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14831), 1, - anon_sym_RBRACE, - STATE(10902), 1, + ACTIONS(14978), 1, + anon_sym_RPAREN, + STATE(10999), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431114] = 4, + [434688] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14833), 1, - sym__constant_segment, - STATE(10903), 1, + ACTIONS(14980), 1, + anon_sym_end, + STATE(11000), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431128] = 4, + [434702] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14835), 1, + ACTIONS(14982), 1, anon_sym_PIPE, - STATE(10904), 1, + STATE(11001), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431142] = 4, + [434716] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14837), 1, - anon_sym_RBRACE, - STATE(10905), 1, + ACTIONS(14984), 1, + anon_sym_RPAREN, + STATE(11002), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431156] = 4, + [434730] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14839), 1, + ACTIONS(14986), 1, anon_sym_end, - STATE(10906), 1, + STATE(11003), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431170] = 4, + [434744] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14841), 1, - anon_sym_DASH_GT, - STATE(10907), 1, + ACTIONS(12391), 1, + anon_sym_RPAREN, + STATE(11004), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431184] = 4, + [434758] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14843), 1, - anon_sym_end, - STATE(10908), 1, + ACTIONS(14988), 1, + anon_sym_EQ, + STATE(11005), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431198] = 4, + [434772] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12002), 1, + ACTIONS(12108), 1, anon_sym_RPAREN, - STATE(10909), 1, + STATE(11006), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431212] = 4, + [434786] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14845), 1, - anon_sym_DASH_GT, - STATE(10910), 1, + ACTIONS(14990), 1, + anon_sym_RBRACK, + STATE(11007), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431226] = 4, + [434800] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14847), 1, - anon_sym_end, - STATE(10911), 1, + ACTIONS(14992), 1, + anon_sym_class, + STATE(11008), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431240] = 4, + [434814] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14849), 1, - anon_sym_DASH_GT, - STATE(10912), 1, + ACTIONS(14994), 1, + anon_sym_end, + STATE(11009), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431254] = 4, + [434828] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14851), 1, + ACTIONS(11495), 1, anon_sym_end, - STATE(10913), 1, + STATE(11010), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431268] = 4, + [434842] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14853), 1, - sym__constant_segment, - STATE(10914), 1, + ACTIONS(14996), 1, + anon_sym_end, + STATE(11011), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431282] = 4, + [434856] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14855), 1, - sym__constant_segment, - STATE(10915), 1, + ACTIONS(14998), 1, + anon_sym_EQ_GT, + STATE(11012), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431296] = 4, + [434870] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14857), 1, - anon_sym_end, - STATE(10916), 1, + ACTIONS(15000), 1, + anon_sym_RBRACE, + STATE(11013), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431310] = 4, + [434884] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14859), 1, - anon_sym_RPAREN, - STATE(10917), 1, + ACTIONS(15002), 1, + anon_sym_DOT, + STATE(11014), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431324] = 4, + [434898] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14861), 1, + ACTIONS(15004), 1, anon_sym_end, - STATE(10918), 1, + STATE(11015), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431338] = 4, + [434912] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14863), 1, - anon_sym_EQ_GT, - STATE(10919), 1, + ACTIONS(15006), 1, + anon_sym_RBRACK, + STATE(11016), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431352] = 4, + [434926] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14865), 1, - anon_sym_DASH_GT, - STATE(10920), 1, + ACTIONS(15008), 1, + anon_sym_end, + STATE(11017), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431366] = 4, + [434940] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14867), 1, - anon_sym_end, - STATE(10921), 1, + ACTIONS(15010), 1, + anon_sym_DOT, + STATE(11018), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431380] = 4, + [434954] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14869), 1, + ACTIONS(11505), 1, anon_sym_end, - STATE(10922), 1, + STATE(11019), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431394] = 4, + [434968] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14871), 1, + ACTIONS(15012), 1, anon_sym_end, - STATE(10923), 1, + STATE(11020), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431408] = 4, + [434982] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14873), 1, - anon_sym_end, - STATE(10924), 1, + ACTIONS(15014), 1, + anon_sym_RBRACK, + STATE(11021), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431422] = 4, + [434996] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14875), 1, - anon_sym_end, - STATE(10925), 1, + ACTIONS(15016), 1, + sym__constant_segment, + STATE(11022), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431436] = 4, + [435010] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14877), 1, - anon_sym_end, - STATE(10926), 1, + ACTIONS(15018), 1, + aux_sym_type_declaration_token1, + STATE(11023), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [431450] = 4, + [435026] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14879), 1, - anon_sym_end, - STATE(10927), 1, + ACTIONS(15020), 1, + anon_sym_RPAREN, + STATE(11024), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431464] = 4, + [435040] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14881), 1, - anon_sym_end, - STATE(10928), 1, + ACTIONS(15022), 1, + anon_sym_EQ_GT, + STATE(11025), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431478] = 4, + [435054] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14883), 1, - anon_sym_RPAREN, - STATE(10929), 1, + ACTIONS(15024), 1, + anon_sym_end, + STATE(11026), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431492] = 4, + [435068] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14885), 1, + ACTIONS(15026), 1, anon_sym_end, - STATE(10930), 1, + STATE(11027), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431506] = 4, + [435082] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14887), 1, + ACTIONS(15028), 1, anon_sym_RPAREN, - STATE(10931), 1, + STATE(11028), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431520] = 4, + [435096] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14889), 1, - anon_sym_end, - STATE(10932), 1, + ACTIONS(15030), 1, + anon_sym_DASH_GT, + STATE(11029), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431534] = 4, + [435110] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14891), 1, + ACTIONS(15032), 1, anon_sym_end, - STATE(10933), 1, + STATE(11030), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431548] = 4, + [435124] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14893), 1, + ACTIONS(11457), 1, anon_sym_end, - STATE(10934), 1, + STATE(11031), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431562] = 4, + [435138] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14895), 1, + ACTIONS(11485), 1, anon_sym_end, - STATE(10935), 1, + STATE(11032), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431576] = 4, + [435152] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14897), 1, - anon_sym_RPAREN, - STATE(10936), 1, + ACTIONS(15034), 1, + anon_sym_DASH_GT, + STATE(11033), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431590] = 4, + [435166] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14899), 1, + ACTIONS(15036), 1, anon_sym_PIPE, - STATE(10937), 1, + STATE(11034), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431604] = 4, + [435180] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14901), 1, + ACTIONS(15038), 1, anon_sym_end, - STATE(10938), 1, + STATE(11035), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431618] = 4, + [435194] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14903), 1, - anon_sym_RPAREN, - STATE(10939), 1, + ACTIONS(15040), 1, + anon_sym_DASH_GT, + STATE(11036), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431632] = 4, + [435208] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14905), 1, + ACTIONS(15042), 1, anon_sym_PIPE, - STATE(10940), 1, + STATE(11037), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431646] = 4, + [435222] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14907), 1, + ACTIONS(15044), 1, anon_sym_end, - STATE(10941), 1, + STATE(11038), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431660] = 4, + [435236] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14909), 1, + ACTIONS(15046), 1, anon_sym_end, - STATE(10942), 1, + STATE(11039), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431674] = 4, + [435250] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14911), 1, - anon_sym_EQ_GT, - STATE(10943), 1, + ACTIONS(15048), 1, + anon_sym_end, + STATE(11040), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431688] = 4, + [435264] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14913), 1, - anon_sym_DASH_GT, - STATE(10944), 1, + ACTIONS(15050), 1, + sym__constant_segment, + STATE(11041), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431702] = 4, + [435278] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12006), 1, + ACTIONS(12116), 1, anon_sym_RPAREN, - STATE(10945), 1, + STATE(11042), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431716] = 4, + [435292] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14915), 1, - anon_sym_yield, - STATE(10946), 1, + ACTIONS(15052), 1, + sym__constant_segment, + STATE(11043), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431730] = 4, + [435306] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14917), 1, + ACTIONS(15054), 1, anon_sym_end, - STATE(10947), 1, + STATE(11044), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431744] = 4, + [435320] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14919), 1, + ACTIONS(15056), 1, anon_sym_end, - STATE(10948), 1, + STATE(11045), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431758] = 4, + [435334] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14921), 1, - anon_sym_class, - STATE(10949), 1, + ACTIONS(15058), 1, + sym__constant_segment, + STATE(11046), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431772] = 4, + [435348] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14923), 1, - anon_sym_end, - STATE(10950), 1, + ACTIONS(15060), 1, + anon_sym_RPAREN, + STATE(11047), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431786] = 4, + [435362] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14925), 1, - anon_sym_end, - STATE(10951), 1, + ACTIONS(15062), 1, + anon_sym_SQUOTE2, + STATE(11048), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431800] = 4, + [435376] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14927), 1, - anon_sym_end, - STATE(10952), 1, + ACTIONS(15064), 1, + anon_sym_EQ_GT, + STATE(11049), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431814] = 4, + [435390] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14929), 1, - anon_sym_end, - STATE(10953), 1, + ACTIONS(15066), 1, + anon_sym_class, + STATE(11050), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431828] = 4, + [435404] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14931), 1, + ACTIONS(15068), 1, anon_sym_end, - STATE(10954), 1, + STATE(11051), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431842] = 4, + [435418] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14933), 1, + ACTIONS(15070), 1, anon_sym_end, - STATE(10955), 1, + STATE(11052), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431856] = 4, + [435432] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14935), 1, - anon_sym_DASH_GT, - STATE(10956), 1, + ACTIONS(15072), 1, + anon_sym_of, + STATE(11053), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431870] = 4, + [435446] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14937), 1, - anon_sym_RPAREN, - STATE(10957), 1, + ACTIONS(15074), 1, + anon_sym_class, + STATE(11054), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431884] = 4, + [435460] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14939), 1, - anon_sym_DASH_GT, - STATE(10958), 1, + ACTIONS(15076), 1, + anon_sym_RPAREN, + STATE(11055), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431898] = 4, + [435474] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14941), 1, + ACTIONS(15078), 1, anon_sym_end, - STATE(10959), 1, + STATE(11056), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431912] = 4, + [435488] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14943), 1, - anon_sym_end, - STATE(10960), 1, + ACTIONS(15080), 1, + anon_sym_RPAREN, + STATE(11057), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431926] = 4, + [435502] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14945), 1, + ACTIONS(15082), 1, anon_sym_end, - STATE(10961), 1, + STATE(11058), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431940] = 4, + [435516] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14947), 1, - anon_sym_end, - STATE(10962), 1, + ACTIONS(15084), 1, + anon_sym_RPAREN, + STATE(11059), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431954] = 4, + [435530] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14949), 1, - anon_sym_RPAREN, - STATE(10963), 1, + ACTIONS(15086), 1, + anon_sym_end, + STATE(11060), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431968] = 4, + [435544] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14951), 1, - sym__constant_segment, - STATE(10964), 1, + ACTIONS(15088), 1, + anon_sym_RBRACK, + STATE(11061), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431982] = 4, + [435558] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14953), 1, - anon_sym_RBRACK, - STATE(10965), 1, + ACTIONS(15090), 1, + sym__constant_segment, + STATE(11062), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [431996] = 4, + [435572] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14955), 1, - anon_sym_end, - STATE(10966), 1, + ACTIONS(15092), 1, + aux_sym_type_declaration_token1, + STATE(11063), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [432010] = 4, + [435588] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14957), 1, + ACTIONS(15094), 1, anon_sym_RPAREN, - STATE(10967), 1, + STATE(11064), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432024] = 4, + [435602] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14959), 1, - anon_sym_end, - STATE(10968), 1, + ACTIONS(15096), 1, + anon_sym_EQ_GT, + STATE(11065), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432038] = 4, + [435616] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14961), 1, - anon_sym_end, - STATE(10969), 1, + ACTIONS(15098), 1, + anon_sym_RPAREN, + STATE(11066), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432052] = 4, + [435630] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14963), 1, - anon_sym_end, - STATE(10970), 1, + ACTIONS(15100), 1, + anon_sym_RBRACK, + STATE(11067), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432066] = 4, + [435644] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14965), 1, - anon_sym_DASH_GT, - STATE(10971), 1, + ACTIONS(6365), 1, + anon_sym_RBRACK, + STATE(11068), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432080] = 4, + [435658] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14967), 1, + ACTIONS(15102), 1, anon_sym_PIPE, - STATE(10972), 1, + STATE(11069), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432094] = 4, + [435672] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14969), 1, - anon_sym_DASH_GT, - STATE(10973), 1, + ACTIONS(6369), 1, + anon_sym_RBRACK, + STATE(11070), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432108] = 4, + [435686] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14971), 1, - anon_sym_RBRACK, - STATE(10974), 1, + ACTIONS(15104), 1, + anon_sym_end, + STATE(11071), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432122] = 4, + [435700] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14973), 1, + ACTIONS(15106), 1, anon_sym_PIPE, - STATE(10975), 1, + STATE(11072), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432136] = 4, + [435714] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14975), 1, - sym__constant_segment, - STATE(10976), 1, + ACTIONS(15108), 1, + anon_sym_RBRACE, + STATE(11073), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432150] = 4, + [435728] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14977), 1, - sym__constant_segment, - STATE(10977), 1, + ACTIONS(15110), 1, + anon_sym_DASH_GT, + STATE(11074), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432164] = 4, + [435742] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14979), 1, - anon_sym_DASH_GT, - STATE(10978), 1, + ACTIONS(15112), 1, + anon_sym_RBRACE, + STATE(11075), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432178] = 4, + [435756] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14981), 1, - anon_sym_DASH_GT, - STATE(10979), 1, + ACTIONS(15114), 1, + anon_sym_end, + STATE(11076), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432192] = 4, + [435770] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12022), 1, + ACTIONS(12124), 1, anon_sym_RPAREN, - STATE(10980), 1, + STATE(11077), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432206] = 4, + [435784] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14983), 1, + ACTIONS(15116), 1, anon_sym_DASH_GT, - STATE(10981), 1, + STATE(11078), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432220] = 4, + [435798] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14985), 1, - anon_sym_RPAREN, - STATE(10982), 1, + ACTIONS(15118), 1, + sym__constant_segment, + STATE(11079), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432234] = 4, + [435812] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14987), 1, + ACTIONS(15120), 1, anon_sym_end, - STATE(10983), 1, + STATE(11080), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432248] = 4, + [435826] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14989), 1, - anon_sym_SQUOTE2, - STATE(10984), 1, + ACTIONS(15122), 1, + anon_sym_end, + STATE(11081), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432262] = 4, + [435840] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14991), 1, + ACTIONS(15124), 1, anon_sym_end, - STATE(10985), 1, + STATE(11082), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432276] = 4, + [435854] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14993), 1, - anon_sym_DASH_GT, - STATE(10986), 1, + ACTIONS(15126), 1, + sym__constant_segment, + STATE(11083), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432290] = 4, + [435868] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14995), 1, + ACTIONS(15128), 1, anon_sym_DASH_GT, - STATE(10987), 1, + STATE(11084), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432304] = 4, + [435882] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14997), 1, + ACTIONS(15130), 1, anon_sym_DASH_GT, - STATE(10988), 1, + STATE(11085), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432318] = 4, + [435896] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(14999), 1, - anon_sym_of, - STATE(10989), 1, + ACTIONS(15132), 1, + anon_sym_end, + STATE(11086), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432332] = 4, + [435910] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15001), 1, - anon_sym_end, - STATE(10990), 1, + ACTIONS(15134), 1, + anon_sym_RBRACK, + STATE(11087), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432346] = 4, + [435924] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15003), 1, - anon_sym_RPAREN, - STATE(10991), 1, + ACTIONS(15136), 1, + anon_sym_end, + STATE(11088), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432360] = 4, + [435938] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15005), 1, - anon_sym_end, - STATE(10992), 1, + ACTIONS(15138), 1, + anon_sym_DASH_GT, + STATE(11089), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432374] = 4, + [435952] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15007), 1, + ACTIONS(15140), 1, anon_sym_end, - STATE(10993), 1, + STATE(11090), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432388] = 4, + [435966] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15009), 1, - sym__constant_segment, - STATE(10994), 1, + ACTIONS(15142), 1, + anon_sym_end, + STATE(11091), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432402] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [435980] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15011), 1, - aux_sym_type_declaration_token1, - STATE(10995), 1, + ACTIONS(15144), 1, + anon_sym_EQ_GT, + STATE(11092), 1, sym_heredoc_body, - [432418] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [435994] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15013), 1, - anon_sym_DASH_GT, - STATE(10996), 1, + ACTIONS(15146), 1, + anon_sym_end, + STATE(11093), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432432] = 4, + [436008] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15015), 1, + ACTIONS(15148), 1, anon_sym_end, - STATE(10997), 1, + STATE(11094), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432446] = 4, + [436022] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15017), 1, + ACTIONS(15150), 1, anon_sym_end, - STATE(10998), 1, + STATE(11095), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432460] = 4, + [436036] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15019), 1, - anon_sym_DASH_GT, - STATE(10999), 1, + ACTIONS(15152), 1, + anon_sym_end, + STATE(11096), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432474] = 4, + [436050] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15021), 1, - anon_sym_end, - STATE(11000), 1, + ACTIONS(15154), 1, + anon_sym_DASH_GT, + STATE(11097), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432488] = 4, + [436064] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15023), 1, + ACTIONS(15156), 1, anon_sym_DASH_GT, - STATE(11001), 1, + STATE(11098), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432502] = 4, + [436078] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15025), 1, + ACTIONS(15158), 1, anon_sym_RPAREN, - STATE(11002), 1, + STATE(11099), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432516] = 4, + [436092] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15027), 1, - anon_sym_COLON, - STATE(11003), 1, + ACTIONS(15160), 1, + anon_sym_end, + STATE(11100), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432530] = 4, + [436106] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15029), 1, + ACTIONS(15162), 1, anon_sym_DASH_GT, - STATE(11004), 1, + STATE(11101), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432544] = 4, + [436120] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15031), 1, - anon_sym_DASH_GT, - STATE(11005), 1, + ACTIONS(15164), 1, + anon_sym_end, + STATE(11102), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432558] = 4, + [436134] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15033), 1, - anon_sym_DASH_GT, - STATE(11006), 1, + ACTIONS(15166), 1, + anon_sym_end, + STATE(11103), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432572] = 4, + [436148] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15035), 1, + ACTIONS(15168), 1, anon_sym_PIPE, - STATE(11007), 1, + STATE(11104), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432586] = 4, + [436162] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15037), 1, - anon_sym_DASH_GT, - STATE(11008), 1, + ACTIONS(15170), 1, + anon_sym_end, + STATE(11105), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432600] = 4, + [436176] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15039), 1, + ACTIONS(15172), 1, anon_sym_DASH_GT, - STATE(11009), 1, + STATE(11106), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432614] = 4, + [436190] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15041), 1, + ACTIONS(15174), 1, anon_sym_PIPE, - STATE(11010), 1, + STATE(11107), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432628] = 4, + [436204] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15043), 1, - anon_sym_DASH_GT, - STATE(11011), 1, + ACTIONS(15176), 1, + anon_sym_end, + STATE(11108), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432642] = 4, + [436218] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15045), 1, + ACTIONS(15178), 1, anon_sym_DASH_GT, - STATE(11012), 1, + STATE(11109), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432656] = 4, + [436232] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15047), 1, - anon_sym_end, - STATE(11013), 1, + ACTIONS(15180), 1, + anon_sym_RBRACK, + STATE(11110), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432670] = 4, + [436246] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15049), 1, - anon_sym_end, - STATE(11014), 1, + ACTIONS(15182), 1, + sym__constant_segment, + STATE(11111), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432684] = 4, + [436260] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12026), 1, + ACTIONS(12128), 1, anon_sym_RPAREN, - STATE(11015), 1, + STATE(11112), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432698] = 4, + [436274] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15051), 1, + ACTIONS(15184), 1, anon_sym_DASH_GT, - STATE(11016), 1, + STATE(11113), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432712] = 4, + [436288] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15053), 1, + ACTIONS(15186), 1, anon_sym_DASH_GT, - STATE(11017), 1, + STATE(11114), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432726] = 4, + [436302] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15055), 1, - anon_sym_DASH_GT, - STATE(11018), 1, + ACTIONS(15188), 1, + anon_sym_end, + STATE(11115), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432740] = 4, + [436316] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15057), 1, - anon_sym_end, - STATE(11019), 1, + ACTIONS(15190), 1, + anon_sym_DASH_GT, + STATE(11116), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432754] = 4, + [436330] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15059), 1, - anon_sym_DASH_GT, - STATE(11020), 1, + ACTIONS(15192), 1, + anon_sym_end, + STATE(11117), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432768] = 4, + [436344] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15061), 1, + ACTIONS(15194), 1, anon_sym_DASH_GT, - STATE(11021), 1, + STATE(11118), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432782] = 4, + [436358] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15063), 1, - anon_sym_DASH_GT, - STATE(11022), 1, + ACTIONS(15196), 1, + anon_sym_end, + STATE(11119), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432796] = 4, + [436372] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15065), 1, - anon_sym_DASH_GT, - STATE(11023), 1, + ACTIONS(15198), 1, + anon_sym_yield, + STATE(11120), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432810] = 4, + [436386] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15067), 1, - anon_sym_RBRACE, - STATE(11024), 1, + ACTIONS(15200), 1, + anon_sym_DASH_GT, + STATE(11121), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432824] = 4, + [436400] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15069), 1, - anon_sym_end, - STATE(11025), 1, + ACTIONS(15202), 1, + anon_sym_DASH_GT, + STATE(11122), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432838] = 4, + [436414] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15071), 1, - anon_sym_DASH_GT, - STATE(11026), 1, + ACTIONS(15204), 1, + anon_sym_end, + STATE(11123), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432852] = 4, + [436428] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15073), 1, - anon_sym_end, - STATE(11027), 1, + ACTIONS(15206), 1, + anon_sym_RPAREN, + STATE(11124), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432866] = 4, + [436442] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15075), 1, - anon_sym_end, - STATE(11028), 1, + ACTIONS(15208), 1, + anon_sym_DASH_GT, + STATE(11125), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432880] = 4, + [436456] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15077), 1, - anon_sym_DASH_GT, - STATE(11029), 1, + ACTIONS(15210), 1, + anon_sym_RPAREN, + STATE(11126), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432894] = 4, + [436470] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15079), 1, - anon_sym_DASH_GT, - STATE(11030), 1, + ACTIONS(15212), 1, + anon_sym_RPAREN, + STATE(11127), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432908] = 4, + [436484] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15081), 1, - anon_sym_end, - STATE(11031), 1, + ACTIONS(15214), 1, + anon_sym_RPAREN, + STATE(11128), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432922] = 4, + [436498] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15083), 1, - anon_sym_yield, - STATE(11032), 1, + ACTIONS(15216), 1, + anon_sym_end, + STATE(11129), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432936] = 4, + [436512] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15085), 1, + ACTIONS(15218), 1, anon_sym_end, - STATE(11033), 1, + STATE(11130), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432950] = 4, + [436526] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15087), 1, + ACTIONS(15220), 1, anon_sym_DASH_GT, - STATE(11034), 1, + STATE(11131), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432964] = 4, + [436540] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15089), 1, - anon_sym_RPAREN, - STATE(11035), 1, + ACTIONS(15222), 1, + anon_sym_end, + STATE(11132), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432978] = 4, + [436554] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15091), 1, - anon_sym_DASH_GT, - STATE(11036), 1, + ACTIONS(15224), 1, + anon_sym_end, + STATE(11133), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [432992] = 4, + [436568] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15093), 1, + ACTIONS(15226), 1, anon_sym_RPAREN, - STATE(11037), 1, + STATE(11134), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433006] = 4, + [436582] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15095), 1, - anon_sym_RPAREN, - STATE(11038), 1, + ACTIONS(15228), 1, + anon_sym_end, + STATE(11135), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433020] = 4, + [436596] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15097), 1, + ACTIONS(15230), 1, anon_sym_RPAREN, - STATE(11039), 1, + STATE(11136), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433034] = 4, + [436610] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15099), 1, - sym__constant_segment, - STATE(11040), 1, + ACTIONS(15232), 1, + anon_sym_DASH_GT, + STATE(11137), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433048] = 4, + [436624] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15101), 1, + ACTIONS(15234), 1, anon_sym_end, - STATE(11041), 1, + STATE(11138), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433062] = 4, + [436638] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15103), 1, + ACTIONS(15236), 1, anon_sym_PIPE, - STATE(11042), 1, + STATE(11139), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433076] = 4, + [436652] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15105), 1, - anon_sym_DASH_GT, - STATE(11043), 1, + ACTIONS(15238), 1, + anon_sym_end, + STATE(11140), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433090] = 4, + [436666] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15107), 1, + ACTIONS(15240), 1, anon_sym_DASH_GT, - STATE(11044), 1, + STATE(11141), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433104] = 4, + [436680] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15109), 1, + ACTIONS(15242), 1, anon_sym_PIPE, - STATE(11045), 1, + STATE(11142), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433118] = 4, + [436694] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15111), 1, - anon_sym_DASH_GT, - STATE(11046), 1, + ACTIONS(11578), 1, + anon_sym_end, + STATE(11143), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433132] = 4, + [436708] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15113), 1, + ACTIONS(15244), 1, anon_sym_end, - STATE(11047), 1, + STATE(11144), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433146] = 4, + [436722] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15115), 1, - anon_sym_end, - STATE(11048), 1, + ACTIONS(15246), 1, + anon_sym_EQ_GT, + STATE(11145), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433160] = 4, + [436736] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15117), 1, + ACTIONS(15248), 1, anon_sym_DASH_GT, - STATE(11049), 1, + STATE(11146), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433174] = 4, + [436750] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12030), 1, + ACTIONS(12134), 1, anon_sym_RPAREN, - STATE(11050), 1, + STATE(11147), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433188] = 4, + [436764] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15119), 1, + ACTIONS(15250), 1, anon_sym_DASH_GT, - STATE(11051), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [433202] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(9993), 1, - anon_sym_RPAREN, - STATE(11052), 1, + STATE(11148), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433216] = 4, + [436778] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15121), 1, + ACTIONS(15252), 1, anon_sym_end, - STATE(11053), 1, + STATE(11149), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433230] = 4, + [436792] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15123), 1, + ACTIONS(15254), 1, anon_sym_DASH_GT, - STATE(11054), 1, + STATE(11150), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433244] = 4, + [436806] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11492), 1, - anon_sym_end, - STATE(11055), 1, + ACTIONS(15256), 1, + anon_sym_RBRACE, + STATE(11151), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433258] = 4, + [436820] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15125), 1, + ACTIONS(15258), 1, anon_sym_DASH_GT, - STATE(11056), 1, + STATE(11152), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433272] = 4, + [436834] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15127), 1, + ACTIONS(15260), 1, anon_sym_DASH_GT, - STATE(11057), 1, + STATE(11153), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433286] = 4, + [436848] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15129), 1, - anon_sym_DASH_GT, - STATE(11058), 1, + ACTIONS(15262), 1, + anon_sym_end, + STATE(11154), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433300] = 4, + [436862] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15131), 1, - anon_sym_end, - STATE(11059), 1, + ACTIONS(15264), 1, + anon_sym_DASH_GT, + STATE(11155), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433314] = 4, + [436876] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15133), 1, + ACTIONS(15266), 1, anon_sym_DASH_GT, - STATE(11060), 1, + STATE(11156), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433328] = 4, + [436890] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15135), 1, - anon_sym_DASH_GT, - STATE(11061), 1, + ACTIONS(15268), 1, + anon_sym_end, + STATE(11157), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433342] = 4, + [436904] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15137), 1, - anon_sym_DASH_GT, - STATE(11062), 1, + ACTIONS(15270), 1, + anon_sym_end, + STATE(11158), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433356] = 4, + [436918] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15139), 1, - anon_sym_RPAREN, - STATE(11063), 1, + ACTIONS(15272), 1, + anon_sym_end, + STATE(11159), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433370] = 4, + [436932] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15141), 1, + ACTIONS(15274), 1, anon_sym_DASH_GT, - STATE(11064), 1, + STATE(11160), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433384] = 4, + [436946] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15143), 1, - anon_sym_EQ_GT, - STATE(11065), 1, + ACTIONS(15276), 1, + anon_sym_RPAREN, + STATE(11161), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433398] = 4, + [436960] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15145), 1, - anon_sym_end, - STATE(11066), 1, + ACTIONS(15278), 1, + anon_sym_EQ_GT, + STATE(11162), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433412] = 4, + [436974] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15147), 1, + ACTIONS(15280), 1, anon_sym_DASH_GT, - STATE(11067), 1, + STATE(11163), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433426] = 4, + [436988] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15149), 1, + ACTIONS(15282), 1, anon_sym_end, - STATE(11068), 1, + STATE(11164), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433440] = 4, + [437002] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15151), 1, - anon_sym_RPAREN, - STATE(11069), 1, + ACTIONS(15284), 1, + anon_sym_end, + STATE(11165), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433454] = 4, + [437016] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15153), 1, - anon_sym_DASH_GT, - STATE(11070), 1, + ACTIONS(15286), 1, + anon_sym_end, + STATE(11166), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433468] = 4, + [437030] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15155), 1, - anon_sym_end, - STATE(11071), 1, + ACTIONS(15288), 1, + anon_sym_DASH_GT, + STATE(11167), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433482] = 4, + [437044] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15157), 1, - anon_sym_RPAREN, - STATE(11072), 1, + ACTIONS(15290), 1, + anon_sym_RBRACK, + STATE(11168), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433496] = 4, + [437058] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15159), 1, - anon_sym_DASH_GT, - STATE(11073), 1, + ACTIONS(15292), 1, + anon_sym_RPAREN, + STATE(11169), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433510] = 4, + [437072] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15161), 1, + ACTIONS(15294), 1, anon_sym_end, - STATE(11074), 1, + STATE(11170), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433524] = 4, + [437086] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15163), 1, + ACTIONS(15296), 1, anon_sym_end, - STATE(11075), 1, + STATE(11171), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433538] = 4, + [437100] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15165), 1, + ACTIONS(15298), 1, anon_sym_DASH_GT, - STATE(11076), 1, + STATE(11172), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433552] = 4, + [437114] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15167), 1, - anon_sym_PIPE, - STATE(11077), 1, + ACTIONS(15300), 1, + anon_sym_end, + STATE(11173), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433566] = 4, + [437128] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15169), 1, - anon_sym_DASH_GT, - STATE(11078), 1, + ACTIONS(15302), 1, + anon_sym_PIPE, + STATE(11174), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433580] = 4, + [437142] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15171), 1, - anon_sym_RBRACK, - STATE(11079), 1, + ACTIONS(15304), 1, + anon_sym_RPAREN, + STATE(11175), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433594] = 4, + [437156] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15173), 1, - anon_sym_PIPE, - STATE(11080), 1, + ACTIONS(15306), 1, + anon_sym_end, + STATE(11176), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433608] = 4, + [437170] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15175), 1, - anon_sym_EQ_GT, - STATE(11081), 1, + ACTIONS(15308), 1, + anon_sym_PIPE, + STATE(11177), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433622] = 4, + [437184] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15177), 1, - anon_sym_RPAREN, - STATE(11082), 1, + ACTIONS(15310), 1, + anon_sym_EQ_GT, + STATE(11178), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433636] = 4, + [437198] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15179), 1, - anon_sym_end, - STATE(11083), 1, + ACTIONS(15312), 1, + anon_sym_DASH_GT, + STATE(11179), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433650] = 4, + [437212] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15181), 1, - anon_sym_class, - STATE(11084), 1, + ACTIONS(15314), 1, + anon_sym_DASH_GT, + STATE(11180), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433664] = 4, + [437226] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12036), 1, - anon_sym_RPAREN, - STATE(11085), 1, + ACTIONS(15316), 1, + anon_sym_DASH_GT, + STATE(11181), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433678] = 4, + [437240] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15183), 1, - anon_sym_end, - STATE(11086), 1, + ACTIONS(12138), 1, + anon_sym_RPAREN, + STATE(11182), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433692] = 4, + [437254] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15185), 1, - anon_sym_end, - STATE(11087), 1, + ACTIONS(15318), 1, + anon_sym_DASH_GT, + STATE(11183), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433706] = 4, + [437268] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15187), 1, - anon_sym_end, - STATE(11088), 1, + ACTIONS(15320), 1, + anon_sym_DASH_GT, + STATE(11184), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433720] = 4, + [437282] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15189), 1, - anon_sym_RPAREN, - STATE(11089), 1, + ACTIONS(15322), 1, + anon_sym_DASH_GT, + STATE(11185), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433734] = 4, + [437296] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15191), 1, - anon_sym_end, - STATE(11090), 1, + ACTIONS(15324), 1, + anon_sym_class, + STATE(11186), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433748] = 4, + [437310] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15193), 1, + ACTIONS(15326), 1, anon_sym_end, - STATE(11091), 1, + STATE(11187), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433762] = 4, + [437324] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15195), 1, - anon_sym_end, - STATE(11092), 1, + ACTIONS(15328), 1, + anon_sym_DASH_GT, + STATE(11188), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433776] = 4, + [437338] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15197), 1, + ACTIONS(15330), 1, anon_sym_end, - STATE(11093), 1, + STATE(11189), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433790] = 4, + [437352] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15199), 1, - anon_sym_RPAREN, - STATE(11094), 1, + ACTIONS(15332), 1, + anon_sym_DASH_GT, + STATE(11190), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433804] = 4, + [437366] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15201), 1, - anon_sym_EQ_GT, - STATE(11095), 1, + ACTIONS(15334), 1, + anon_sym_DASH_GT, + STATE(11191), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433818] = 4, + [437380] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15203), 1, + ACTIONS(15336), 1, anon_sym_end, - STATE(11096), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [433832] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(15205), 1, - sym__constant_segment, - STATE(11097), 1, + STATE(11192), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433846] = 4, + [437394] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15207), 1, - anon_sym_EQ, - STATE(11098), 1, + ACTIONS(15338), 1, + anon_sym_EQ_GT, + STATE(11193), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433860] = 4, + [437408] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15209), 1, + ACTIONS(15340), 1, anon_sym_end, - STATE(11099), 1, + STATE(11194), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433874] = 4, + [437422] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15211), 1, - anon_sym_RBRACK, - STATE(11100), 1, + ACTIONS(15342), 1, + anon_sym_DASH_GT, + STATE(11195), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433888] = 4, + [437436] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15213), 1, + ACTIONS(15344), 1, anon_sym_end, - STATE(11101), 1, + STATE(11196), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433902] = 4, + [437450] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15215), 1, + ACTIONS(15346), 1, anon_sym_end, - STATE(11102), 1, + STATE(11197), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433916] = 4, + [437464] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15217), 1, + ACTIONS(15348), 1, anon_sym_end, - STATE(11103), 1, + STATE(11198), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433930] = 4, + [437478] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15219), 1, - anon_sym_RPAREN, - STATE(11104), 1, + ACTIONS(15350), 1, + anon_sym_DASH_GT, + STATE(11199), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433944] = 4, + [437492] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15221), 1, + ACTIONS(15352), 1, anon_sym_end, - STATE(11105), 1, + STATE(11200), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433958] = 4, + [437506] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15223), 1, + ACTIONS(15354), 1, anon_sym_end, - STATE(11106), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [433972] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(15225), 1, - anon_sym_RPAREN, - STATE(11107), 1, + STATE(11201), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [433986] = 4, + [437520] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15227), 1, + ACTIONS(15356), 1, anon_sym_end, - STATE(11108), 1, + STATE(11202), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434000] = 4, + [437534] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15229), 1, - anon_sym_end, - STATE(11109), 1, + ACTIONS(15358), 1, + anon_sym_DASH_GT, + STATE(11203), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434014] = 4, + [437548] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15231), 1, - anon_sym_EQ_GT, - STATE(11110), 1, + ACTIONS(15360), 1, + anon_sym_RPAREN, + STATE(11204), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434028] = 4, + [437562] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15233), 1, + ACTIONS(15362), 1, anon_sym_end, - STATE(11111), 1, + STATE(11205), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434042] = 4, + [437576] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15235), 1, - anon_sym_PIPE, - STATE(11112), 1, + ACTIONS(15364), 1, + anon_sym_DASH_GT, + STATE(11206), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434056] = 4, + [437590] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15237), 1, - anon_sym_end, - STATE(11113), 1, + ACTIONS(15366), 1, + anon_sym_DASH_GT, + STATE(11207), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434070] = 4, + [437604] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15239), 1, + ACTIONS(15368), 1, anon_sym_end, - STATE(11114), 1, + STATE(11208), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434084] = 4, + [437618] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15241), 1, + ACTIONS(15370), 1, anon_sym_PIPE, - STATE(11115), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [434098] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(15243), 1, - anon_sym_class, - STATE(11116), 1, + STATE(11209), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434112] = 4, + [437632] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15245), 1, + ACTIONS(15372), 1, anon_sym_end, - STATE(11117), 1, + STATE(11210), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434126] = 4, + [437646] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15247), 1, + ACTIONS(15374), 1, anon_sym_end, - STATE(11118), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [434140] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(15249), 1, - anon_sym_RPAREN, - STATE(11119), 1, + STATE(11211), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434154] = 4, + [437660] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12044), 1, - anon_sym_RPAREN, - STATE(11120), 1, + ACTIONS(15376), 1, + anon_sym_PIPE, + STATE(11212), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434168] = 4, + [437674] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15251), 1, + ACTIONS(15378), 1, anon_sym_end, - STATE(11121), 1, + STATE(11213), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434182] = 4, + [437688] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15253), 1, - anon_sym_RBRACK, - STATE(11122), 1, + ACTIONS(15380), 1, + anon_sym_DASH_GT, + STATE(11214), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434196] = 4, + [437702] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15255), 1, - anon_sym_RBRACK, - STATE(11123), 1, + ACTIONS(15382), 1, + anon_sym_DASH_GT, + STATE(11215), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434210] = 4, + [437716] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15257), 1, + ACTIONS(15384), 1, anon_sym_end, - STATE(11124), 1, + STATE(11216), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434224] = 4, + [437730] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15259), 1, - anon_sym_end, - STATE(11125), 1, + ACTIONS(12142), 1, + anon_sym_RPAREN, + STATE(11217), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434238] = 4, + [437744] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15261), 1, - anon_sym_end, - STATE(11126), 1, + ACTIONS(15386), 1, + anon_sym_DASH_GT, + STATE(11218), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434252] = 4, + [437758] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15263), 1, + ACTIONS(15388), 1, anon_sym_end, - STATE(11127), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [434266] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(15265), 1, - anon_sym_of, - STATE(11128), 1, + STATE(11219), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434280] = 4, + [437772] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15267), 1, + ACTIONS(15390), 1, anon_sym_end, - STATE(11129), 1, + STATE(11220), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434294] = 4, + [437786] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15269), 1, + ACTIONS(15392), 1, anon_sym_end, - STATE(11130), 1, + STATE(11221), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434308] = 4, + [437800] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15271), 1, - anon_sym_RPAREN, - STATE(11131), 1, + ACTIONS(15394), 1, + anon_sym_DASH_GT, + STATE(11222), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434322] = 4, + [437814] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15273), 1, - anon_sym_end, - STATE(11132), 1, + ACTIONS(15396), 1, + anon_sym_DASH_GT, + STATE(11223), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434336] = 4, + [437828] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15275), 1, + ACTIONS(15398), 1, anon_sym_end, - STATE(11133), 1, + STATE(11224), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434350] = 4, + [437842] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15277), 1, + ACTIONS(15400), 1, anon_sym_RPAREN, - STATE(11134), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [434364] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(15279), 1, - anon_sym_end, - STATE(11135), 1, + STATE(11225), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434378] = 4, + [437856] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15281), 1, + ACTIONS(15402), 1, anon_sym_end, - STATE(11136), 1, + STATE(11226), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434392] = 4, + [437870] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15283), 1, - anon_sym_SQUOTE2, - STATE(11137), 1, + ACTIONS(15404), 1, + anon_sym_DASH_GT, + STATE(11227), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434406] = 4, + [437884] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15285), 1, + ACTIONS(15406), 1, anon_sym_end, - STATE(11138), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [434420] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(15287), 1, - anon_sym_EQ_GT, - STATE(11139), 1, + STATE(11228), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434434] = 4, + [437898] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15289), 1, - anon_sym_RBRACE, - STATE(11140), 1, + ACTIONS(15408), 1, + anon_sym_end, + STATE(11229), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434448] = 4, + [437912] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15291), 1, - anon_sym_RPAREN, - STATE(11141), 1, + ACTIONS(15410), 1, + anon_sym_end, + STATE(11230), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434462] = 4, + [437926] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15293), 1, - anon_sym_RPAREN, - STATE(11142), 1, + ACTIONS(15412), 1, + anon_sym_end, + STATE(11231), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434476] = 4, + [437940] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15295), 1, + ACTIONS(15414), 1, anon_sym_end, - STATE(11143), 1, + STATE(11232), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434490] = 4, + [437954] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11482), 1, + ACTIONS(15416), 1, anon_sym_end, - STATE(11144), 1, + STATE(11233), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434504] = 4, + [437968] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15297), 1, - anon_sym_DASH_GT, - STATE(11145), 1, + ACTIONS(15418), 1, + anon_sym_class, + STATE(11234), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434518] = 4, + [437982] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15299), 1, + ACTIONS(15420), 1, anon_sym_EQ_GT, - STATE(11146), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [434532] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(15301), 1, - anon_sym_PIPE, - STATE(11147), 1, + STATE(11235), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434546] = 4, + [437996] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15303), 1, + ACTIONS(15422), 1, anon_sym_end, - STATE(11148), 1, + STATE(11236), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434560] = 4, + [438010] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15305), 1, + ACTIONS(15424), 1, anon_sym_end, - STATE(11149), 1, + STATE(11237), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434574] = 4, + [438024] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15307), 1, - anon_sym_PIPE, - STATE(11150), 1, + ACTIONS(15426), 1, + anon_sym_yield, + STATE(11238), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434588] = 4, + [438038] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15309), 1, - sym__constant_segment, - STATE(11151), 1, + ACTIONS(15428), 1, + anon_sym_RPAREN, + STATE(11239), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434602] = 4, + [438052] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15311), 1, + ACTIONS(15430), 1, anon_sym_end, - STATE(11152), 1, + STATE(11240), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434616] = 4, + [438066] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15313), 1, - anon_sym_RPAREN, - STATE(11153), 1, + ACTIONS(15432), 1, + anon_sym_end, + STATE(11241), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434630] = 4, + [438080] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15315), 1, + ACTIONS(15434), 1, anon_sym_end, - STATE(11154), 1, + STATE(11242), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434644] = 4, + [438094] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12048), 1, - anon_sym_RPAREN, - STATE(11155), 1, + ACTIONS(15436), 1, + anon_sym_end, + STATE(11243), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434658] = 4, + [438108] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15317), 1, - anon_sym_of, - STATE(11156), 1, + ACTIONS(15438), 1, + anon_sym_PIPE, + STATE(11244), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434672] = 4, + [438122] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15319), 1, - anon_sym_EQ_GT, - STATE(11157), 1, + ACTIONS(15440), 1, + anon_sym_end, + STATE(11245), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434686] = 4, + [438136] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15321), 1, - anon_sym_DASH_GT, - STATE(11158), 1, + ACTIONS(15442), 1, + anon_sym_RPAREN, + STATE(11246), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434700] = 4, + [438150] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15323), 1, - anon_sym_end, - STATE(11159), 1, + ACTIONS(15444), 1, + anon_sym_PIPE, + STATE(11247), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434714] = 4, + [438164] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15325), 1, - anon_sym_RPAREN, - STATE(11160), 1, + ACTIONS(15446), 1, + anon_sym_end, + STATE(11248), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434728] = 4, + [438178] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15327), 1, + ACTIONS(15448), 1, anon_sym_end, - STATE(11161), 1, + STATE(11249), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434742] = 4, + [438192] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15329), 1, - anon_sym_EQ_GT, - STATE(11162), 1, + ACTIONS(15450), 1, + anon_sym_end, + STATE(11250), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434756] = 4, + [438206] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15331), 1, + ACTIONS(15452), 1, anon_sym_end, - STATE(11163), 1, + STATE(11251), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434770] = 4, + [438220] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15333), 1, - anon_sym_end, - STATE(11164), 1, + ACTIONS(12146), 1, + anon_sym_RPAREN, + STATE(11252), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434784] = 4, + [438234] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15335), 1, - anon_sym_RPAREN, - STATE(11165), 1, + ACTIONS(15454), 1, + sym__constant_segment, + STATE(11253), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434798] = 4, + [438248] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15337), 1, + ACTIONS(15456), 1, anon_sym_end, - STATE(11166), 1, + STATE(11254), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434812] = 4, + [438262] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15339), 1, - anon_sym_end, - STATE(11167), 1, + ACTIONS(15458), 1, + anon_sym_RBRACK, + STATE(11255), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434826] = 4, + [438276] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15341), 1, + ACTIONS(15460), 1, anon_sym_end, - STATE(11168), 1, + STATE(11256), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434840] = 4, + [438290] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15343), 1, + ACTIONS(15462), 1, anon_sym_end, - STATE(11169), 1, + STATE(11257), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434854] = 4, + [438304] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15345), 1, - anon_sym_end, - STATE(11170), 1, + ACTIONS(15464), 1, + anon_sym_RBRACE, + STATE(11258), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434868] = 4, + [438318] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15347), 1, - anon_sym_PIPE, - STATE(11171), 1, + ACTIONS(15466), 1, + anon_sym_end, + STATE(11259), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434882] = 4, + [438332] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15349), 1, - anon_sym_RBRACE, - STATE(11172), 1, + ACTIONS(15468), 1, + anon_sym_EQ_GT, + STATE(11260), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434896] = 4, + [438346] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15351), 1, - anon_sym_PIPE, - STATE(11173), 1, + ACTIONS(15470), 1, + anon_sym_end, + STATE(11261), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434910] = 4, + [438360] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15353), 1, + ACTIONS(15472), 1, anon_sym_end, - STATE(11174), 1, + STATE(11262), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434924] = 4, + [438374] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15355), 1, - anon_sym_end, - STATE(11175), 1, + ACTIONS(15474), 1, + anon_sym_RPAREN, + STATE(11263), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434938] = 4, + [438388] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15357), 1, + ACTIONS(15476), 1, anon_sym_end, - STATE(11176), 1, + STATE(11264), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434952] = 4, + [438402] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12052), 1, - anon_sym_RPAREN, - STATE(11177), 1, + ACTIONS(15478), 1, + anon_sym_RBRACK, + STATE(11265), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434966] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [438416] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15359), 1, - aux_sym_type_declaration_token1, - STATE(11178), 1, + ACTIONS(15480), 1, + anon_sym_RPAREN, + STATE(11266), 1, sym_heredoc_body, - [434982] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [438430] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15361), 1, - anon_sym_EQ, - STATE(11179), 1, + ACTIONS(15482), 1, + anon_sym_end, + STATE(11267), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [434996] = 4, + [438444] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15363), 1, - anon_sym_RPAREN, - STATE(11180), 1, + ACTIONS(15484), 1, + anon_sym_PIPE, + STATE(11268), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435010] = 4, + [438458] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15365), 1, - anon_sym_DASH_GT, - STATE(11181), 1, + ACTIONS(15486), 1, + anon_sym_end, + STATE(11269), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435024] = 4, + [438472] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15367), 1, - anon_sym_EQ_GT, - STATE(11182), 1, + ACTIONS(15488), 1, + anon_sym_PIPE, + STATE(11270), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435038] = 4, + [438486] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15369), 1, + ACTIONS(15490), 1, anon_sym_end, - STATE(11183), 1, + STATE(11271), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435052] = 4, + [438500] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15371), 1, - anon_sym_RBRACE, - STATE(11184), 1, + ACTIONS(15492), 1, + anon_sym_end, + STATE(11272), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435066] = 4, + [438514] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15373), 1, - anon_sym_RPAREN, - STATE(11185), 1, + ACTIONS(15494), 1, + anon_sym_end, + STATE(11273), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435080] = 4, + [438528] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15375), 1, - anon_sym_end, - STATE(11186), 1, + ACTIONS(12150), 1, + anon_sym_RPAREN, + STATE(11274), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435094] = 4, + [438542] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15377), 1, + ACTIONS(15496), 1, anon_sym_RPAREN, - STATE(11187), 1, + STATE(11275), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435108] = 4, + [438556] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6014), 1, + ACTIONS(15498), 1, anon_sym_RBRACK, - STATE(11188), 1, + STATE(11276), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435122] = 4, + [438570] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15379), 1, - anon_sym_SQUOTE2, - STATE(11189), 1, + ACTIONS(15500), 1, + anon_sym_end, + STATE(11277), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435136] = 4, + [438584] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15381), 1, + ACTIONS(15502), 1, anon_sym_end, - STATE(11190), 1, + STATE(11278), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435150] = 4, + [438598] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15383), 1, - anon_sym_PIPE, - STATE(11191), 1, + ACTIONS(15504), 1, + anon_sym_end, + STATE(11279), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435164] = 4, + [438612] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6124), 1, - anon_sym_RBRACK, - STATE(11192), 1, + ACTIONS(15506), 1, + anon_sym_EQ_GT, + STATE(11280), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435178] = 4, + [438626] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15385), 1, - anon_sym_PIPE, - STATE(11193), 1, + ACTIONS(15508), 1, + anon_sym_end, + STATE(11281), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435192] = 4, + [438640] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15387), 1, + ACTIONS(15510), 1, anon_sym_end, - STATE(11194), 1, + STATE(11282), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435206] = 4, + [438654] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15389), 1, - anon_sym_of, - STATE(11195), 1, + ACTIONS(15512), 1, + anon_sym_end, + STATE(11283), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435220] = 4, + [438668] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12060), 1, - anon_sym_RPAREN, - STATE(11196), 1, + ACTIONS(15514), 1, + anon_sym_end, + STATE(11284), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435234] = 4, + [438682] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15391), 1, - anon_sym_DASH_GT, - STATE(11197), 1, + ACTIONS(15516), 1, + anon_sym_end, + STATE(11285), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435248] = 4, + [438696] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15393), 1, - anon_sym_end, - STATE(11198), 1, + ACTIONS(15518), 1, + anon_sym_of, + STATE(11286), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435262] = 4, + [438710] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5534), 1, - anon_sym_COLON, - STATE(11199), 1, + ACTIONS(15520), 1, + anon_sym_RPAREN, + STATE(11287), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435276] = 4, + [438724] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5652), 1, - anon_sym_COLON, - STATE(11200), 1, + ACTIONS(15522), 1, + anon_sym_PIPE, + STATE(11288), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435290] = 4, + [438738] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15395), 1, - anon_sym_COLON, - STATE(11201), 1, + ACTIONS(15524), 1, + anon_sym_RPAREN, + STATE(11289), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435304] = 4, + [438752] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15397), 1, - anon_sym_end, - STATE(11202), 1, + ACTIONS(15526), 1, + anon_sym_PIPE, + STATE(11290), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435318] = 4, + [438766] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15399), 1, - anon_sym_EQ_GT, - STATE(11203), 1, + ACTIONS(15528), 1, + anon_sym_end, + STATE(11291), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435332] = 4, + [438780] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15401), 1, + ACTIONS(15530), 1, anon_sym_end, - STATE(11204), 1, + STATE(11292), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435346] = 4, + [438794] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15403), 1, - anon_sym_end, - STATE(11205), 1, + ACTIONS(12158), 1, + anon_sym_RPAREN, + STATE(11293), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435360] = 4, + [438808] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15405), 1, - anon_sym_DOT, - STATE(11206), 1, + ACTIONS(15532), 1, + anon_sym_EQ_GT, + STATE(11294), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435374] = 4, + [438822] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15407), 1, + ACTIONS(15534), 1, anon_sym_end, - STATE(11207), 1, + STATE(11295), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435388] = 4, + [438836] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15409), 1, + ACTIONS(15536), 1, sym__constant_segment, - STATE(11208), 1, + STATE(11296), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435402] = 4, + [438850] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15411), 1, - anon_sym_RPAREN, - STATE(11209), 1, + ACTIONS(15538), 1, + anon_sym_end, + STATE(11297), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435416] = 4, + [438864] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15413), 1, - sym__constant_segment, - STATE(11210), 1, + ACTIONS(15540), 1, + anon_sym_end, + STATE(11298), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435430] = 4, + [438878] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12068), 1, - anon_sym_RPAREN, - STATE(11211), 1, + ACTIONS(15542), 1, + anon_sym_end, + STATE(11299), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435444] = 4, + [438892] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15415), 1, + ACTIONS(15544), 1, anon_sym_end, - STATE(11212), 1, + STATE(11300), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435458] = 4, + [438906] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15417), 1, - anon_sym_EQ_GT, - STATE(11213), 1, + ACTIONS(15546), 1, + anon_sym_class, + STATE(11301), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435472] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [438920] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15419), 1, - aux_sym_type_declaration_token1, - STATE(11214), 1, + ACTIONS(15548), 1, + sym__constant_segment, + STATE(11302), 1, sym_heredoc_body, - [435488] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [438934] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15421), 1, - anon_sym_DASH_GT, - STATE(11215), 1, + ACTIONS(15550), 1, + sym__constant_segment, + STATE(11303), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435502] = 4, + [438948] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15423), 1, + ACTIONS(15552), 1, anon_sym_RPAREN, - STATE(11216), 1, + STATE(11304), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435516] = 4, + [438962] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15425), 1, + ACTIONS(15554), 1, anon_sym_end, - STATE(11217), 1, + STATE(11305), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435530] = 4, + [438976] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15427), 1, - anon_sym_RBRACK, - STATE(11218), 1, + ACTIONS(15556), 1, + anon_sym_RPAREN, + STATE(11306), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435544] = 4, + [438990] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15429), 1, + ACTIONS(15558), 1, anon_sym_end, - STATE(11219), 1, + STATE(11307), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435558] = 4, + [439004] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15431), 1, - anon_sym_end, - STATE(11220), 1, + ACTIONS(12162), 1, + anon_sym_RPAREN, + STATE(11308), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435572] = 4, + [439018] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15433), 1, + ACTIONS(15560), 1, anon_sym_end, - STATE(11221), 1, + STATE(11309), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435586] = 4, + [439032] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15435), 1, + ACTIONS(15562), 1, anon_sym_end, - STATE(11222), 1, + STATE(11310), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435600] = 4, + [439046] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15437), 1, + ACTIONS(15564), 1, anon_sym_end, - STATE(11223), 1, + STATE(11311), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435614] = 4, + [439060] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15439), 1, + ACTIONS(15566), 1, anon_sym_end, - STATE(11224), 1, + STATE(11312), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435628] = 4, + [439074] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15441), 1, - anon_sym_RPAREN, - STATE(11225), 1, + ACTIONS(15568), 1, + anon_sym_end, + STATE(11313), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435642] = 4, + [439088] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12076), 1, + ACTIONS(15570), 1, anon_sym_RPAREN, - STATE(11226), 1, + STATE(11314), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435656] = 4, + [439102] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15443), 1, - anon_sym_EQ, - STATE(11227), 1, + ACTIONS(15572), 1, + anon_sym_LPAREN, + STATE(11315), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435670] = 4, + [439116] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15445), 1, - sym__constant_segment, - STATE(11228), 1, + ACTIONS(15574), 1, + anon_sym_end, + STATE(11316), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435684] = 4, + [439130] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15447), 1, - anon_sym_SQUOTE2, - STATE(11229), 1, + ACTIONS(15576), 1, + anon_sym_RPAREN, + STATE(11317), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435698] = 4, + [439144] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15449), 1, - anon_sym_RPAREN, - STATE(11230), 1, + ACTIONS(15578), 1, + anon_sym_end, + STATE(11318), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435712] = 4, + [439158] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15451), 1, + ACTIONS(15580), 1, anon_sym_end, - STATE(11231), 1, + STATE(11319), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435726] = 4, + [439172] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15453), 1, - anon_sym_of, - STATE(11232), 1, + ACTIONS(15582), 1, + anon_sym_end, + STATE(11320), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435740] = 4, + [439186] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15455), 1, - anon_sym_RPAREN, - STATE(11233), 1, + ACTIONS(15584), 1, + anon_sym_end, + STATE(11321), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435754] = 4, + [439200] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15457), 1, - anon_sym_end, - STATE(11234), 1, + ACTIONS(15586), 1, + anon_sym_RPAREN, + STATE(11322), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435768] = 4, + [439214] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15459), 1, - anon_sym_end, - STATE(11235), 1, + ACTIONS(12166), 1, + anon_sym_RPAREN, + STATE(11323), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435782] = 4, + [439228] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15461), 1, + ACTIONS(15588), 1, anon_sym_end, - STATE(11236), 1, + STATE(11324), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435796] = 4, + [439242] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15463), 1, - sym__constant_segment, - STATE(11237), 1, + ACTIONS(15590), 1, + anon_sym_end, + STATE(11325), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435810] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [439256] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15465), 1, - aux_sym_type_declaration_token1, - STATE(11238), 1, + ACTIONS(15592), 1, + anon_sym_end, + STATE(11326), 1, sym_heredoc_body, - [435826] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, + ACTIONS(5), 2, sym__line_continuation, + sym_comment, + [439270] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15467), 1, - aux_sym_type_declaration_token1, - STATE(11239), 1, - sym_heredoc_body, - [435842] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(15469), 1, - anon_sym_end, - STATE(11240), 1, + ACTIONS(15594), 1, + anon_sym_EQ_GT, + STATE(11327), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435856] = 4, + [439284] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12080), 1, - anon_sym_RPAREN, - STATE(11241), 1, + ACTIONS(15596), 1, + anon_sym_RBRACE, + STATE(11328), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435870] = 4, + [439298] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15471), 1, - anon_sym_end, - STATE(11242), 1, + ACTIONS(15598), 1, + anon_sym_RPAREN, + STATE(11329), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435884] = 4, + [439312] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15473), 1, - anon_sym_end, - STATE(11243), 1, + ACTIONS(15600), 1, + anon_sym_COLON, + STATE(11330), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435898] = 4, + [439326] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15475), 1, + ACTIONS(15602), 1, anon_sym_end, - STATE(11244), 1, + STATE(11331), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435912] = 4, + [439340] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15477), 1, - anon_sym_class, - STATE(11245), 1, + ACTIONS(15604), 1, + anon_sym_DASH_GT, + STATE(11332), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435926] = 4, + [439354] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15479), 1, - anon_sym_EQ_GT, - STATE(11246), 1, + ACTIONS(15606), 1, + anon_sym_end, + STATE(11333), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435940] = 4, + [439368] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15481), 1, - anon_sym_RPAREN, - STATE(11247), 1, + ACTIONS(15608), 1, + anon_sym_end, + STATE(11334), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435954] = 4, + [439382] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15483), 1, + ACTIONS(15610), 1, anon_sym_end, - STATE(11248), 1, + STATE(11335), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435968] = 4, + [439396] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15485), 1, + ACTIONS(15612), 1, anon_sym_EQ_GT, - STATE(11249), 1, + STATE(11336), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435982] = 4, + [439410] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15487), 1, - anon_sym_PIPE, - STATE(11250), 1, + ACTIONS(15614), 1, + anon_sym_end, + STATE(11337), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [435996] = 4, + [439424] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15489), 1, - anon_sym_DASH_GT, - STATE(11251), 1, + ACTIONS(12170), 1, + anon_sym_RPAREN, + STATE(11338), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436010] = 4, + [439438] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12084), 1, - anon_sym_RPAREN, - STATE(11252), 1, + ACTIONS(15616), 1, + aux_sym_type_declaration_token1, + STATE(11339), 1, + sym_heredoc_body, + [439454] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(15618), 1, + anon_sym_RBRACE, + STATE(11340), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436024] = 4, + [439468] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15491), 1, + ACTIONS(15620), 1, anon_sym_end, - STATE(11253), 1, + STATE(11341), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436038] = 4, + [439482] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15493), 1, - anon_sym_EQ_GT, - STATE(11254), 1, + ACTIONS(15622), 1, + anon_sym_end, + STATE(11342), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436052] = 4, + [439496] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15495), 1, - anon_sym_PIPE, - STATE(11255), 1, + ACTIONS(15624), 1, + anon_sym_EQ, + STATE(11343), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436066] = 4, + [439510] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15497), 1, - anon_sym_PIPE, - STATE(11256), 1, + ACTIONS(15626), 1, + anon_sym_EQ_GT, + STATE(11344), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436080] = 4, + [439524] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15499), 1, - anon_sym_DASH_GT, - STATE(11257), 1, + ACTIONS(15628), 1, + anon_sym_end, + STATE(11345), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436094] = 4, + [439538] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15501), 1, - anon_sym_RBRACE, - STATE(11258), 1, + ACTIONS(15630), 1, + anon_sym_end, + STATE(11346), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436108] = 4, + [439552] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15503), 1, + ACTIONS(15632), 1, anon_sym_end, - STATE(11259), 1, + STATE(11347), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436122] = 4, + [439566] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15505), 1, + ACTIONS(12178), 1, anon_sym_RPAREN, - STATE(11260), 1, + STATE(11348), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436136] = 4, + [439580] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12088), 1, - anon_sym_RPAREN, - STATE(11261), 1, + ACTIONS(15634), 1, + anon_sym_EQ_GT, + STATE(11349), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436150] = 4, + [439594] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15507), 1, - anon_sym_EQ_GT, - STATE(11262), 1, + ACTIONS(15636), 1, + anon_sym_end, + STATE(11350), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436164] = 4, + [439608] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15509), 1, - anon_sym_RBRACE, - STATE(11263), 1, + ACTIONS(15638), 1, + anon_sym_end, + STATE(11351), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436178] = 4, + [439622] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15511), 1, + ACTIONS(15640), 1, anon_sym_end, - STATE(11264), 1, + STATE(11352), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436192] = 4, + [439636] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15513), 1, - anon_sym_RBRACE, - STATE(11265), 1, + ACTIONS(15642), 1, + anon_sym_RPAREN, + STATE(11353), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436206] = 4, + [439650] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15515), 1, + ACTIONS(15644), 1, anon_sym_end, - STATE(11266), 1, + STATE(11354), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436220] = 4, + [439664] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15517), 1, + ACTIONS(15646), 1, anon_sym_RPAREN, - STATE(11267), 1, + STATE(11355), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436234] = 4, + [439678] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15519), 1, - anon_sym_end, - STATE(11268), 1, + ACTIONS(15648), 1, + anon_sym_RPAREN, + STATE(11356), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436248] = 4, + [439692] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15521), 1, - anon_sym_end, - STATE(11269), 1, + ACTIONS(15650), 1, + anon_sym_RPAREN, + STATE(11357), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436262] = 4, + [439706] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15523), 1, - anon_sym_EQ_GT, - STATE(11270), 1, + ACTIONS(12182), 1, + anon_sym_RPAREN, + STATE(11358), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436276] = 4, + [439720] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12092), 1, - anon_sym_RPAREN, - STATE(11271), 1, + ACTIONS(15652), 1, + anon_sym_end, + STATE(11359), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436290] = 4, + [439734] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15525), 1, - anon_sym_SQUOTE2, - STATE(11272), 1, + ACTIONS(7051), 1, + anon_sym_COLON, + STATE(11360), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436304] = 4, + [439748] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15527), 1, - anon_sym_DASH_GT, - STATE(11273), 1, + ACTIONS(15654), 1, + anon_sym_end, + STATE(11361), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436318] = 4, + [439762] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15529), 1, - anon_sym_yield, - STATE(11274), 1, + ACTIONS(15656), 1, + anon_sym_EQ_GT, + STATE(11362), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436332] = 4, + [439776] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15531), 1, - anon_sym_RBRACK, - STATE(11275), 1, + ACTIONS(15658), 1, + anon_sym_DASH_GT, + STATE(11363), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436346] = 4, + [439790] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15533), 1, - anon_sym_RPAREN, - STATE(11276), 1, + ACTIONS(15660), 1, + anon_sym_end, + STATE(11364), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436360] = 4, + [439804] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15535), 1, - anon_sym_RPAREN, - STATE(11277), 1, + ACTIONS(15662), 1, + anon_sym_SQUOTE2, + STATE(11365), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436374] = 4, + [439818] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15537), 1, + ACTIONS(15664), 1, anon_sym_end, - STATE(11278), 1, + STATE(11366), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436388] = 4, + [439832] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15539), 1, - anon_sym_RPAREN, - STATE(11279), 1, + ACTIONS(15666), 1, + anon_sym_end, + STATE(11367), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436402] = 4, + [439846] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12098), 1, + ACTIONS(12186), 1, anon_sym_RPAREN, - STATE(11280), 1, + STATE(11368), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436416] = 4, + [439860] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11900), 1, - anon_sym_RPAREN, - STATE(11281), 1, + ACTIONS(15668), 1, + anon_sym_EQ_GT, + STATE(11369), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436430] = 4, + [439874] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15541), 1, - anon_sym_RPAREN, - STATE(11282), 1, + ACTIONS(15670), 1, + anon_sym_DASH_GT, + STATE(11370), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436444] = 4, + [439888] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15543), 1, + ACTIONS(15672), 1, anon_sym_end, - STATE(11283), 1, + STATE(11371), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436458] = 4, + [439902] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15545), 1, + ACTIONS(15674), 1, anon_sym_end, - STATE(11284), 1, + STATE(11372), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436472] = 4, + [439916] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15547), 1, + ACTIONS(15676), 1, anon_sym_end, - STATE(11285), 1, + STATE(11373), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436486] = 4, + [439930] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15549), 1, - anon_sym_end, - STATE(11286), 1, + ACTIONS(15678), 1, + anon_sym_of, + STATE(11374), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436500] = 4, + [439944] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15551), 1, + ACTIONS(15680), 1, anon_sym_end, - STATE(11287), 1, + STATE(11375), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436514] = 4, + [439958] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15553), 1, - sym__constant_segment, - STATE(11288), 1, + ACTIONS(15682), 1, + anon_sym_end, + STATE(11376), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436528] = 4, + [439972] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12102), 1, + ACTIONS(12190), 1, anon_sym_RPAREN, - STATE(11289), 1, + STATE(11377), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436542] = 4, + [439986] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15555), 1, - anon_sym_of, - STATE(11290), 1, + ACTIONS(15684), 1, + anon_sym_end, + STATE(11378), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436556] = 4, + [440000] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15557), 1, + ACTIONS(15686), 1, anon_sym_end, - STATE(11291), 1, + STATE(11379), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436570] = 4, + [440014] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15559), 1, + ACTIONS(15688), 1, anon_sym_end, - STATE(11292), 1, + STATE(11380), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436584] = 4, + [440028] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15561), 1, + ACTIONS(15690), 1, anon_sym_end, - STATE(11293), 1, + STATE(11381), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436598] = 4, + [440042] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15563), 1, - anon_sym_yield, - STATE(11294), 1, + ACTIONS(15692), 1, + anon_sym_end, + STATE(11382), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436612] = 4, + [440056] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15565), 1, - anon_sym_RPAREN, - STATE(11295), 1, + ACTIONS(15694), 1, + anon_sym_end, + STATE(11383), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436626] = 4, + [440070] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11486), 1, + ACTIONS(15696), 1, anon_sym_end, - STATE(11296), 1, + STATE(11384), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436640] = 4, + [440084] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12106), 1, - anon_sym_RPAREN, - STATE(11297), 1, + ACTIONS(15698), 1, + anon_sym_end, + STATE(11385), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436654] = 4, + [440098] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15567), 1, - anon_sym_EQ_GT, - STATE(11298), 1, + ACTIONS(12194), 1, + anon_sym_RPAREN, + STATE(11386), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436668] = 4, + [440112] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15569), 1, - anon_sym_EQ_GT, - STATE(11299), 1, + ACTIONS(15700), 1, + anon_sym_end, + STATE(11387), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436682] = 4, + [440126] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12110), 1, - anon_sym_RPAREN, - STATE(11300), 1, + ACTIONS(15702), 1, + anon_sym_end, + STATE(11388), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436696] = 4, + [440140] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15571), 1, + ACTIONS(15704), 1, anon_sym_end, - STATE(11301), 1, + STATE(11389), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436710] = 4, + [440154] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15573), 1, - anon_sym_EQ_GT, - STATE(11302), 1, + ACTIONS(15706), 1, + anon_sym_end, + STATE(11390), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436724] = 4, + [440168] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12116), 1, - anon_sym_RPAREN, - STATE(11303), 1, + ACTIONS(15708), 1, + sym__constant_segment, + STATE(11391), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436738] = 4, + [440182] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15575), 1, - anon_sym_DASH_GT, - STATE(11304), 1, + ACTIONS(15710), 1, + aux_sym_type_declaration_token1, + STATE(11392), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [436752] = 4, + [440198] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15577), 1, + ACTIONS(15712), 1, anon_sym_end, - STATE(11305), 1, + STATE(11393), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436766] = 4, + [440212] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12120), 1, + ACTIONS(12198), 1, anon_sym_RPAREN, - STATE(11306), 1, + STATE(11394), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436780] = 4, + [440226] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15579), 1, - anon_sym_class, - STATE(11307), 1, + ACTIONS(15714), 1, + anon_sym_end, + STATE(11395), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436794] = 4, + [440240] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15581), 1, + ACTIONS(15716), 1, anon_sym_RPAREN, - STATE(11308), 1, + STATE(11396), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436808] = 4, + [440254] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12124), 1, + ACTIONS(12202), 1, anon_sym_RPAREN, - STATE(11309), 1, + STATE(11397), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436822] = 4, + [440268] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15583), 1, + ACTIONS(15718), 1, anon_sym_end, - STATE(11310), 1, + STATE(11398), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436836] = 4, + [440282] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15585), 1, - anon_sym_RPAREN, - STATE(11311), 1, + ACTIONS(15720), 1, + anon_sym_LPAREN, + STATE(11399), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436850] = 4, + [440296] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12128), 1, + ACTIONS(12206), 1, anon_sym_RPAREN, - STATE(11312), 1, + STATE(11400), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436864] = 4, + [440310] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15587), 1, - anon_sym_end, - STATE(11313), 1, + ACTIONS(15722), 1, + anon_sym_RPAREN, + STATE(11401), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436878] = 4, + [440324] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15589), 1, - anon_sym_EQ_GT, - STATE(11314), 1, + ACTIONS(15724), 1, + anon_sym_LPAREN, + STATE(11402), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436892] = 4, + [440338] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12132), 1, + ACTIONS(12210), 1, anon_sym_RPAREN, - STATE(11315), 1, + STATE(11403), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436906] = 4, + [440352] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15591), 1, - anon_sym_end, - STATE(11316), 1, + ACTIONS(15726), 1, + anon_sym_RBRACK, + STATE(11404), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436920] = 4, + [440366] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15593), 1, + ACTIONS(15728), 1, anon_sym_end, - STATE(11317), 1, + STATE(11405), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436934] = 4, + [440380] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12136), 1, + ACTIONS(12214), 1, anon_sym_RPAREN, - STATE(11318), 1, + STATE(11406), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436948] = 4, + [440394] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15595), 1, - anon_sym_EQ_GT, - STATE(11319), 1, + ACTIONS(15730), 1, + anon_sym_end, + STATE(11407), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436962] = 4, + [440408] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15597), 1, - anon_sym_RPAREN, - STATE(11320), 1, + ACTIONS(15732), 1, + anon_sym_EQ, + STATE(11408), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436976] = 4, + [440422] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12140), 1, + ACTIONS(12220), 1, anon_sym_RPAREN, - STATE(11321), 1, + STATE(11409), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [436990] = 4, + [440436] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15599), 1, + ACTIONS(15734), 1, anon_sym_end, - STATE(11322), 1, + STATE(11410), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437004] = 4, + [440450] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15601), 1, - anon_sym_RPAREN, - STATE(11323), 1, + ACTIONS(15736), 1, + anon_sym_end, + STATE(11411), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437018] = 4, + [440464] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12144), 1, + ACTIONS(12224), 1, anon_sym_RPAREN, - STATE(11324), 1, + STATE(11412), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437032] = 4, + [440478] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15603), 1, + ACTIONS(15738), 1, anon_sym_end, - STATE(11325), 1, + STATE(11413), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437046] = 4, + [440492] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15605), 1, - anon_sym_end, - STATE(11326), 1, + ACTIONS(15740), 1, + sym__constant_segment, + STATE(11414), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437060] = 4, + [440506] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12148), 1, + ACTIONS(12228), 1, anon_sym_RPAREN, - STATE(11327), 1, + STATE(11415), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437074] = 4, + [440520] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15607), 1, + ACTIONS(15742), 1, anon_sym_end, - STATE(11328), 1, + STATE(11416), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437088] = 4, + [440534] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15609), 1, + ACTIONS(15744), 1, anon_sym_end, - STATE(11329), 1, + STATE(11417), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437102] = 4, + [440548] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12152), 1, + ACTIONS(12232), 1, anon_sym_RPAREN, - STATE(11330), 1, + STATE(11418), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437116] = 4, + [440562] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15611), 1, - anon_sym_RPAREN, - STATE(11331), 1, + ACTIONS(15746), 1, + anon_sym_end, + STATE(11419), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437130] = 4, + [440576] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15613), 1, - anon_sym_EQ, - STATE(11332), 1, + ACTIONS(15748), 1, + anon_sym_RBRACK, + STATE(11420), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437144] = 4, + [440590] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12156), 1, + ACTIONS(12236), 1, anon_sym_RPAREN, - STATE(11333), 1, + STATE(11421), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437158] = 4, + [440604] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15615), 1, - anon_sym_end, - STATE(11334), 1, + ACTIONS(15750), 1, + anon_sym_EQ_GT, + STATE(11422), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437172] = 4, + [440618] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15617), 1, - anon_sym_end, - STATE(11335), 1, + ACTIONS(15752), 1, + anon_sym_RPAREN, + STATE(11423), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437186] = 4, + [440632] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12160), 1, + ACTIONS(12240), 1, anon_sym_RPAREN, - STATE(11336), 1, + STATE(11424), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437200] = 4, + [440646] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15619), 1, + ACTIONS(15754), 1, anon_sym_end, - STATE(11337), 1, + STATE(11425), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437214] = 4, + [440660] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15621), 1, + ACTIONS(15756), 1, anon_sym_end, - STATE(11338), 1, + STATE(11426), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437228] = 4, + [440674] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12164), 1, + ACTIONS(12244), 1, anon_sym_RPAREN, - STATE(11339), 1, + STATE(11427), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437242] = 4, + [440688] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15623), 1, + ACTIONS(15758), 1, anon_sym_end, - STATE(11340), 1, + STATE(11428), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437256] = 4, + [440702] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15625), 1, + ACTIONS(11407), 1, anon_sym_end, - STATE(11341), 1, + STATE(11429), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437270] = 4, + [440716] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15627), 1, + ACTIONS(12248), 1, anon_sym_RPAREN, - STATE(11342), 1, + STATE(11430), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437284] = 4, + [440730] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15629), 1, - anon_sym_SQUOTE2, - STATE(11343), 1, + ACTIONS(15760), 1, + anon_sym_PIPE, + STATE(11431), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437298] = 4, + [440744] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15631), 1, - anon_sym_end, - STATE(11344), 1, + ACTIONS(15762), 1, + anon_sym_RPAREN, + STATE(11432), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437312] = 4, + [440758] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12172), 1, + ACTIONS(12252), 1, anon_sym_RPAREN, - STATE(11345), 1, + STATE(11433), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437326] = 4, + [440772] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15633), 1, - anon_sym_DOT, - STATE(11346), 1, + ACTIONS(15764), 1, + anon_sym_RPAREN, + STATE(11434), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437340] = 4, + [440786] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15635), 1, + ACTIONS(15766), 1, anon_sym_end, - STATE(11347), 1, + STATE(11435), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437354] = 4, + [440800] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12176), 1, + ACTIONS(12256), 1, anon_sym_RPAREN, - STATE(11348), 1, + STATE(11436), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437368] = 4, + [440814] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15637), 1, - anon_sym_RPAREN, - STATE(11349), 1, + ACTIONS(15768), 1, + anon_sym_end, + STATE(11437), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437382] = 4, + [440828] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15639), 1, - anon_sym_end, - STATE(11350), 1, + ACTIONS(15770), 1, + anon_sym_EQ_GT, + STATE(11438), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437396] = 4, + [440842] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12180), 1, + ACTIONS(12260), 1, anon_sym_RPAREN, - STATE(11351), 1, + STATE(11439), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437410] = 4, + [440856] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11931), 1, - anon_sym_RPAREN, - STATE(11352), 1, + ACTIONS(15772), 1, + anon_sym_PIPE, + STATE(11440), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437424] = 4, + [440870] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15641), 1, - sym__constant_segment, - STATE(11353), 1, + ACTIONS(15774), 1, + anon_sym_end, + STATE(11441), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437438] = 4, + [440884] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12184), 1, + ACTIONS(12264), 1, anon_sym_RPAREN, - STATE(11354), 1, + STATE(11442), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437452] = 4, + [440898] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15643), 1, - anon_sym_DOT, - STATE(11355), 1, + ACTIONS(15776), 1, + anon_sym_end, + STATE(11443), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437466] = 4, + [440912] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15645), 1, - anon_sym_class, - STATE(11356), 1, + ACTIONS(15778), 1, + anon_sym_LPAREN, + STATE(11444), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437480] = 4, + [440926] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12188), 1, + ACTIONS(12268), 1, anon_sym_RPAREN, - STATE(11357), 1, + STATE(11445), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437494] = 4, + [440940] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15647), 1, + ACTIONS(15780), 1, anon_sym_end, - STATE(11358), 1, + STATE(11446), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437508] = 4, + [440954] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15649), 1, - anon_sym_end, - STATE(11359), 1, + ACTIONS(15782), 1, + anon_sym_RPAREN, + STATE(11447), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437522] = 4, + [440968] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12192), 1, + ACTIONS(12272), 1, anon_sym_RPAREN, - STATE(11360), 1, + STATE(11448), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437536] = 4, + [440982] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15651), 1, - anon_sym_end, - STATE(11361), 1, + ACTIONS(15784), 1, + anon_sym_EQ_GT, + STATE(11449), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437550] = 4, + [440996] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15653), 1, - anon_sym_end, - STATE(11362), 1, + ACTIONS(15786), 1, + anon_sym_RBRACE, + STATE(11450), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437564] = 4, + [441010] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12196), 1, + ACTIONS(12276), 1, anon_sym_RPAREN, - STATE(11363), 1, + STATE(11451), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437578] = 4, + [441024] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15655), 1, - anon_sym_RPAREN, - STATE(11364), 1, + ACTIONS(15788), 1, + anon_sym_end, + STATE(11452), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437592] = 4, + [441038] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15657), 1, - sym__constant_segment, - STATE(11365), 1, + ACTIONS(15790), 1, + anon_sym_EQ_GT, + STATE(11453), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437606] = 4, + [441052] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12202), 1, + ACTIONS(12280), 1, anon_sym_RPAREN, - STATE(11366), 1, + STATE(11454), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437620] = 4, + [441066] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15659), 1, - sym__constant_segment, - STATE(11367), 1, + ACTIONS(15792), 1, + anon_sym_RPAREN, + STATE(11455), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437634] = 4, + [441080] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15661), 1, - anon_sym_end, - STATE(11368), 1, + ACTIONS(15794), 1, + anon_sym_DASH_GT, + STATE(11456), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437648] = 4, + [441094] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15663), 1, - anon_sym_end, - STATE(11369), 1, + ACTIONS(12284), 1, + anon_sym_RPAREN, + STATE(11457), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437662] = 4, + [441108] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15665), 1, - anon_sym_end, - STATE(11370), 1, + ACTIONS(15796), 1, + anon_sym_RPAREN, + STATE(11458), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437676] = 4, + [441122] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15667), 1, + ACTIONS(15798), 1, anon_sym_end, - STATE(11371), 1, + STATE(11459), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437690] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [441136] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15669), 1, - aux_sym_type_declaration_token1, - STATE(11372), 1, + ACTIONS(12288), 1, + anon_sym_RPAREN, + STATE(11460), 1, sym_heredoc_body, - [437706] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [441150] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15671), 1, + ACTIONS(15800), 1, anon_sym_end, - STATE(11373), 1, + STATE(11461), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437720] = 4, + [441164] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15673), 1, - anon_sym_of, - STATE(11374), 1, + ACTIONS(11979), 1, + anon_sym_RPAREN, + STATE(11462), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437734] = 4, + [441178] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15675), 1, - anon_sym_end, - STATE(11375), 1, + ACTIONS(12292), 1, + anon_sym_RPAREN, + STATE(11463), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437748] = 4, + [441192] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15677), 1, - anon_sym_RBRACK, - STATE(11376), 1, + ACTIONS(15802), 1, + anon_sym_DASH_GT, + STATE(11464), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437762] = 4, + [441206] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15679), 1, + ACTIONS(15804), 1, anon_sym_end, - STATE(11377), 1, + STATE(11465), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437776] = 4, + [441220] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15681), 1, + ACTIONS(15806), 1, anon_sym_end, - STATE(11378), 1, + STATE(11466), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437790] = 4, + [441234] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15683), 1, - anon_sym_LPAREN, - STATE(11379), 1, + ACTIONS(15808), 1, + anon_sym_end, + STATE(11467), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437804] = 4, + [441248] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15685), 1, - anon_sym_LPAREN, - STATE(11380), 1, + ACTIONS(15810), 1, + anon_sym_end, + STATE(11468), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437818] = 4, + [441262] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15687), 1, - anon_sym_LPAREN, - STATE(11381), 1, + ACTIONS(15812), 1, + anon_sym_RPAREN, + STATE(11469), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437832] = 4, + [441276] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15689), 1, - anon_sym_EQ_GT, - STATE(11382), 1, + ACTIONS(15814), 1, + anon_sym_end, + STATE(11470), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437846] = 4, + [441290] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15691), 1, + ACTIONS(15816), 1, anon_sym_end, - STATE(11383), 1, + STATE(11471), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437860] = 4, + [441304] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15693), 1, - anon_sym_end, - STATE(11384), 1, + ACTIONS(15818), 1, + anon_sym_SQUOTE2, + STATE(11472), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437874] = 4, + [441318] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15695), 1, + ACTIONS(15820), 1, anon_sym_end, - STATE(11385), 1, + STATE(11473), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437888] = 4, + [441332] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15697), 1, + ACTIONS(15822), 1, anon_sym_end, - STATE(11386), 1, + STATE(11474), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437902] = 4, + [441346] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15699), 1, - anon_sym_of, - STATE(11387), 1, + ACTIONS(15824), 1, + anon_sym_RBRACE, + STATE(11475), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437916] = 4, + [441360] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15701), 1, - anon_sym_end, - STATE(11388), 1, + ACTIONS(15826), 1, + anon_sym_LPAREN, + STATE(11476), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437930] = 4, + [441374] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15703), 1, - anon_sym_end, - STATE(11389), 1, + ACTIONS(15828), 1, + anon_sym_LPAREN, + STATE(11477), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437944] = 4, + [441388] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15705), 1, - anon_sym_end, - STATE(11390), 1, + ACTIONS(15830), 1, + anon_sym_LPAREN, + STATE(11478), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437958] = 4, + [441402] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15707), 1, - sym__constant_segment, - STATE(11391), 1, + ACTIONS(15832), 1, + anon_sym_end, + STATE(11479), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437972] = 4, + [441416] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15709), 1, - anon_sym_end, - STATE(11392), 1, + ACTIONS(15834), 1, + anon_sym_EQ_GT, + STATE(11480), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [437986] = 4, + [441430] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15711), 1, - anon_sym_EQ_GT, - STATE(11393), 1, + ACTIONS(15836), 1, + anon_sym_RBRACK, + STATE(11481), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438000] = 4, + [441444] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15713), 1, - anon_sym_end, - STATE(11394), 1, + ACTIONS(15838), 1, + anon_sym_RPAREN, + STATE(11482), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438014] = 4, + [441458] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15715), 1, + ACTIONS(15840), 1, anon_sym_end, - STATE(11395), 1, + STATE(11483), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438028] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [441472] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15717), 1, - aux_sym_type_declaration_token1, - STATE(11396), 1, + ACTIONS(15842), 1, + anon_sym_of, + STATE(11484), 1, sym_heredoc_body, - [438044] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [441486] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15719), 1, - anon_sym_end, - STATE(11397), 1, + ACTIONS(15844), 1, + anon_sym_EQ_GT, + STATE(11485), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438058] = 4, + [441500] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15721), 1, + ACTIONS(15846), 1, anon_sym_end, - STATE(11398), 1, + STATE(11486), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438072] = 4, + [441514] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15723), 1, + ACTIONS(15848), 1, anon_sym_yield, - STATE(11399), 1, + STATE(11487), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438086] = 4, + [441528] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15725), 1, - sym__start_of_index_operator, - STATE(11400), 1, + ACTIONS(15850), 1, + anon_sym_end, + STATE(11488), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438100] = 4, + [441542] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15727), 1, + ACTIONS(15852), 1, anon_sym_end, - STATE(11401), 1, + STATE(11489), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438114] = 4, + [441556] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15729), 1, - anon_sym_RPAREN, - STATE(11402), 1, + ACTIONS(263), 1, + anon_sym_COMMA, + STATE(11490), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438128] = 4, + [441570] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11356), 1, + ACTIONS(15854), 1, anon_sym_end, - STATE(11403), 1, + STATE(11491), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438142] = 4, + [441584] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15731), 1, - anon_sym_COMMA, - STATE(11404), 1, + ACTIONS(15856), 1, + anon_sym_end, + STATE(11492), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [441598] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(15858), 1, + anon_sym_EQ_GT, + STATE(11493), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438156] = 4, + [441612] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15733), 1, + ACTIONS(15860), 1, anon_sym_RPAREN, - STATE(11405), 1, + STATE(11494), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438170] = 4, + [441626] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15735), 1, - anon_sym_RBRACK, - STATE(11406), 1, + ACTIONS(15862), 1, + anon_sym_RBRACE, + STATE(11495), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438184] = 4, + [441640] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15737), 1, - anon_sym_SQUOTE2, - STATE(11407), 1, + ACTIONS(15864), 1, + anon_sym_yield, + STATE(11496), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438198] = 4, + [441654] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15739), 1, - anon_sym_RBRACE, - STATE(11408), 1, + ACTIONS(15866), 1, + sym__start_of_index_operator, + STATE(11497), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438212] = 4, + [441668] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15741), 1, - anon_sym_end, - STATE(11409), 1, + ACTIONS(15868), 1, + anon_sym_RPAREN, + STATE(11498), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438226] = 4, + [441682] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15743), 1, - anon_sym_of, - STATE(11410), 1, + ACTIONS(15870), 1, + anon_sym_RPAREN, + STATE(11499), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438240] = 4, + [441696] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15745), 1, - anon_sym_end, - STATE(11411), 1, + ACTIONS(15872), 1, + sym__constant_segment, + STATE(11500), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438254] = 4, + [441710] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15747), 1, - anon_sym_end, - STATE(11412), 1, + ACTIONS(15874), 1, + anon_sym_COMMA, + STATE(11501), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438268] = 4, + [441724] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15749), 1, + ACTIONS(15876), 1, anon_sym_end, - STATE(11413), 1, + STATE(11502), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438282] = 4, + [441738] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15751), 1, - anon_sym_end, - STATE(11414), 1, + ACTIONS(15878), 1, + sym__constant_segment, + STATE(11503), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438296] = 4, + [441752] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15753), 1, + ACTIONS(15880), 1, anon_sym_end, - STATE(11415), 1, + STATE(11504), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438310] = 4, + [441766] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15755), 1, - anon_sym_RPAREN, - STATE(11416), 1, + ACTIONS(15882), 1, + anon_sym_end, + STATE(11505), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438324] = 4, + [441780] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15757), 1, - anon_sym_yield, - STATE(11417), 1, + ACTIONS(15884), 1, + anon_sym_RPAREN, + STATE(11506), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438338] = 4, + [441794] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15759), 1, + ACTIONS(15886), 1, anon_sym_end, - STATE(11418), 1, + STATE(11507), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438352] = 4, + [441808] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15761), 1, - anon_sym_RPAREN, - STATE(11419), 1, + ACTIONS(15888), 1, + anon_sym_end, + STATE(11508), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438366] = 4, + [441822] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15763), 1, + ACTIONS(15890), 1, anon_sym_end, - STATE(11420), 1, + STATE(11509), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438380] = 4, + [441836] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15765), 1, - anon_sym_RBRACE, - STATE(11421), 1, + ACTIONS(15892), 1, + anon_sym_DASH_GT, + STATE(11510), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438394] = 4, + [441850] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15767), 1, + ACTIONS(15894), 1, anon_sym_end, - STATE(11422), 1, + STATE(11511), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438408] = 4, + [441864] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15769), 1, - anon_sym_yield, - STATE(11423), 1, + ACTIONS(5557), 1, + anon_sym_COLON, + STATE(11512), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438422] = 4, + [441878] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15771), 1, + ACTIONS(15896), 1, anon_sym_end, - STATE(11424), 1, + STATE(11513), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438436] = 4, + [441892] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15773), 1, + ACTIONS(15898), 1, anon_sym_EQ_GT, - STATE(11425), 1, + STATE(11514), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438450] = 4, + [441906] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15775), 1, - anon_sym_RBRACE, - STATE(11426), 1, + ACTIONS(15900), 1, + anon_sym_DASH_GT, + STATE(11515), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438464] = 4, + [441920] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15777), 1, - sym__constant_segment, - STATE(11427), 1, + ACTIONS(11409), 1, + anon_sym_end, + STATE(11516), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438478] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(15779), 1, - aux_sym_type_declaration_token1, - STATE(11428), 1, - sym_heredoc_body, - [438494] = 4, + [441934] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15781), 1, + ACTIONS(15902), 1, anon_sym_end, - STATE(11429), 1, + STATE(11517), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438508] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(15783), 1, - aux_sym_type_declaration_token1, - STATE(11430), 1, - sym_heredoc_body, - [438524] = 4, + [441948] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15785), 1, - anon_sym_RBRACK, - STATE(11431), 1, + ACTIONS(15904), 1, + anon_sym_RPAREN, + STATE(11518), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438538] = 4, + [441962] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15787), 1, + ACTIONS(15906), 1, anon_sym_end, - STATE(11432), 1, + STATE(11519), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438552] = 4, + [441976] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15789), 1, - anon_sym_end, - STATE(11433), 1, + ACTIONS(15908), 1, + anon_sym_RPAREN, + STATE(11520), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438566] = 4, + [441990] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15791), 1, - anon_sym_DASH_GT, - STATE(11434), 1, + ACTIONS(15910), 1, + anon_sym_end, + STATE(11521), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438580] = 4, + [442004] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15793), 1, - anon_sym_RPAREN, - STATE(11435), 1, + ACTIONS(15912), 1, + anon_sym_SQUOTE2, + STATE(11522), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438594] = 4, + [442018] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15795), 1, - anon_sym_RPAREN, - STATE(11436), 1, + ACTIONS(15914), 1, + anon_sym_end, + STATE(11523), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438608] = 4, + [442032] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15797), 1, + ACTIONS(15916), 1, anon_sym_end, - STATE(11437), 1, + STATE(11524), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438622] = 4, + [442046] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15799), 1, - anon_sym_EQ_GT, - STATE(11438), 1, + ACTIONS(15918), 1, + anon_sym_of, + STATE(11525), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438636] = 4, + [442060] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15801), 1, - anon_sym_RBRACE, - STATE(11439), 1, + ACTIONS(15920), 1, + anon_sym_DASH_GT, + STATE(11526), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438650] = 4, + [442074] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15803), 1, - anon_sym_EQ_GT, - STATE(11440), 1, + ACTIONS(15922), 1, + anon_sym_RPAREN, + STATE(11527), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438664] = 4, + [442088] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15805), 1, - anon_sym_end, - STATE(11441), 1, + ACTIONS(15924), 1, + anon_sym_EQ_GT, + STATE(11528), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438678] = 4, + [442102] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15807), 1, - anon_sym_end, - STATE(11442), 1, + ACTIONS(15926), 1, + ts_builtin_sym_end, + STATE(11529), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438692] = 4, + [442116] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15809), 1, - anon_sym_RPAREN, - STATE(11443), 1, + ACTIONS(15928), 1, + anon_sym_DOT, + STATE(11530), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438706] = 4, + [442130] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15811), 1, - anon_sym_end, - STATE(11444), 1, + ACTIONS(15930), 1, + anon_sym_EQ_GT, + STATE(11531), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438720] = 4, + [442144] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15813), 1, - anon_sym_RPAREN, - STATE(11445), 1, + ACTIONS(15932), 1, + sym__constant_segment, + STATE(11532), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438734] = 4, + [442158] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15815), 1, - anon_sym_end, - STATE(11446), 1, + ACTIONS(15934), 1, + aux_sym_type_declaration_token1, + STATE(11533), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [438748] = 4, + [442174] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15817), 1, - anon_sym_EQ_GT, - STATE(11447), 1, + ACTIONS(15936), 1, + anon_sym_end, + STATE(11534), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438762] = 4, + [442188] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15819), 1, - anon_sym_DASH_GT, - STATE(11448), 1, + ACTIONS(15938), 1, + sym_identifier, + STATE(11535), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438776] = 4, + [442202] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15821), 1, + ACTIONS(15940), 1, anon_sym_end, - STATE(11449), 1, + STATE(11536), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438790] = 4, + [442216] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15823), 1, - anon_sym_EQ_GT, - STATE(11450), 1, + ACTIONS(15942), 1, + anon_sym_RBRACK, + STATE(11537), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438804] = 4, + [442230] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15825), 1, - anon_sym_end, - STATE(11451), 1, + ACTIONS(15944), 1, + sym__constant_segment, + STATE(11538), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438818] = 4, + [442244] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15827), 1, + ACTIONS(15946), 1, anon_sym_end, - STATE(11452), 1, + STATE(11539), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438832] = 4, + [442258] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15829), 1, + ACTIONS(11501), 1, anon_sym_end, - STATE(11453), 1, + STATE(11540), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438846] = 4, + [442272] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15831), 1, - anon_sym_RBRACE, - STATE(11454), 1, + ACTIONS(15948), 1, + anon_sym_DASH_GT, + STATE(11541), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438860] = 4, + [442286] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15833), 1, + ACTIONS(15950), 1, anon_sym_end, - STATE(11455), 1, + STATE(11542), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438874] = 4, + [442300] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15835), 1, + ACTIONS(15952), 1, anon_sym_end, - STATE(11456), 1, + STATE(11543), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438888] = 4, + [442314] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15837), 1, - sym__constant_segment, - STATE(11457), 1, + ACTIONS(15954), 1, + anon_sym_end, + STATE(11544), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438902] = 4, + [442328] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15839), 1, + ACTIONS(15956), 1, anon_sym_end, - STATE(11458), 1, + STATE(11545), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438916] = 4, + [442342] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15841), 1, - anon_sym_end, - STATE(11459), 1, + ACTIONS(15958), 1, + anon_sym_EQ_GT, + STATE(11546), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438930] = 4, + [442356] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15843), 1, - ts_builtin_sym_end, - STATE(11460), 1, + ACTIONS(5572), 1, + anon_sym_COLON, + STATE(11547), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438944] = 4, + [442370] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15845), 1, + ACTIONS(15960), 1, anon_sym_end, - STATE(11461), 1, + STATE(11548), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438958] = 4, + [442384] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15847), 1, + ACTIONS(15962), 1, anon_sym_end, - STATE(11462), 1, + STATE(11549), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438972] = 4, + [442398] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15849), 1, + ACTIONS(15964), 1, anon_sym_end, - STATE(11463), 1, + STATE(11550), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [438986] = 4, + [442412] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15851), 1, - anon_sym_DASH_GT, - STATE(11464), 1, + ACTIONS(15966), 1, + anon_sym_end, + STATE(11551), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439000] = 4, + [442426] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15853), 1, + ACTIONS(15968), 1, anon_sym_end, - STATE(11465), 1, + STATE(11552), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439014] = 4, + [442440] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15855), 1, + ACTIONS(15970), 1, anon_sym_class, - STATE(11466), 1, + STATE(11553), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439028] = 4, + [442454] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15857), 1, + ACTIONS(15972), 1, anon_sym_end, - STATE(11467), 1, + STATE(11554), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439042] = 4, + [442468] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15859), 1, - anon_sym_COLON, - STATE(11468), 1, + ACTIONS(15974), 1, + anon_sym_end, + STATE(11555), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439056] = 4, + [442482] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15861), 1, + ACTIONS(15976), 1, anon_sym_end, - STATE(11469), 1, + STATE(11556), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439070] = 4, + [442496] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15863), 1, + ACTIONS(15978), 1, anon_sym_end, - STATE(11470), 1, + STATE(11557), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439084] = 4, + [442510] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15865), 1, - anon_sym_end, - STATE(11471), 1, + ACTIONS(15980), 1, + anon_sym_RBRACE, + STATE(11558), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439098] = 4, + [442524] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15867), 1, + ACTIONS(15982), 1, anon_sym_end, - STATE(11472), 1, + STATE(11559), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439112] = 4, + [442538] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15869), 1, + ACTIONS(15984), 1, anon_sym_end, - STATE(11473), 1, + STATE(11560), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439126] = 4, + [442552] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15871), 1, - anon_sym_class, - STATE(11474), 1, + ACTIONS(15986), 1, + anon_sym_end, + STATE(11561), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439140] = 4, + [442566] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15873), 1, + ACTIONS(15988), 1, anon_sym_end, - STATE(11475), 1, + STATE(11562), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439154] = 4, + [442580] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15875), 1, + ACTIONS(15990), 1, anon_sym_end, - STATE(11476), 1, + STATE(11563), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439168] = 4, + [442594] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15877), 1, + ACTIONS(15992), 1, anon_sym_end, - STATE(11477), 1, + STATE(11564), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439182] = 4, + [442608] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15879), 1, - anon_sym_end, - STATE(11478), 1, + ACTIONS(15994), 1, + anon_sym_RBRACK, + STATE(11565), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439196] = 4, + [442622] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15881), 1, + ACTIONS(15996), 1, anon_sym_end, - STATE(11479), 1, + STATE(11566), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439210] = 4, + [442636] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15883), 1, + ACTIONS(15998), 1, anon_sym_end, - STATE(11480), 1, + STATE(11567), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439224] = 4, + [442650] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15885), 1, - anon_sym_class, - STATE(11481), 1, + ACTIONS(16000), 1, + sym__constant_segment, + STATE(11568), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439238] = 4, + [442664] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15887), 1, + ACTIONS(16002), 1, anon_sym_yield, - STATE(11482), 1, + STATE(11569), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439252] = 4, + [442678] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15889), 1, - anon_sym_end, - STATE(11483), 1, + ACTIONS(16004), 1, + anon_sym_of, + STATE(11570), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439266] = 4, + [442692] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15891), 1, - sym_identifier, - STATE(11484), 1, + ACTIONS(16006), 1, + anon_sym_end, + STATE(11571), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439280] = 4, + [442706] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15893), 1, - anon_sym_of, - STATE(11485), 1, + ACTIONS(16008), 1, + anon_sym_RPAREN, + STATE(11572), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439294] = 4, + [442720] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15895), 1, + ACTIONS(16010), 1, anon_sym_end, - STATE(11486), 1, + STATE(11573), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439308] = 4, + [442734] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15897), 1, - anon_sym_end, - STATE(11487), 1, + ACTIONS(16012), 1, + anon_sym_RPAREN, + STATE(11574), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439322] = 4, + [442748] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15899), 1, + ACTIONS(16014), 1, anon_sym_RPAREN, - STATE(11488), 1, + STATE(11575), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439336] = 4, + [442762] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15901), 1, - anon_sym_end, - STATE(11489), 1, + ACTIONS(5643), 1, + anon_sym_COLON, + STATE(11576), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439350] = 4, + [442776] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15903), 1, + ACTIONS(16016), 1, anon_sym_end, - STATE(11490), 1, + STATE(11577), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439364] = 4, + [442790] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15905), 1, - anon_sym_RPAREN, - STATE(11491), 1, + ACTIONS(16018), 1, + anon_sym_end, + STATE(11578), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439378] = 4, + [442804] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15907), 1, - anon_sym_EQ_GT, - STATE(11492), 1, + ACTIONS(16020), 1, + anon_sym_of, + STATE(11579), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439392] = 4, + [442818] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15909), 1, - anon_sym_EQ, - STATE(11493), 1, + ACTIONS(16022), 1, + anon_sym_end, + STATE(11580), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439406] = 4, + [442832] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15911), 1, + ACTIONS(16024), 1, anon_sym_end, - STATE(11494), 1, + STATE(11581), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439420] = 4, + [442846] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15913), 1, - sym__constant_segment, - STATE(11495), 1, + ACTIONS(16026), 1, + anon_sym_end, + STATE(11582), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439434] = 4, + [442860] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15915), 1, + ACTIONS(16028), 1, anon_sym_end, - STATE(11496), 1, + STATE(11583), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439448] = 4, + [442874] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15917), 1, - anon_sym_end, - STATE(11497), 1, + ACTIONS(16030), 1, + anon_sym_class, + STATE(11584), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439462] = 4, + [442888] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15919), 1, + ACTIONS(11516), 1, anon_sym_end, - STATE(11498), 1, + STATE(11585), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439476] = 4, + [442902] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15921), 1, - anon_sym_RPAREN, - STATE(11499), 1, + ACTIONS(16032), 1, + anon_sym_end, + STATE(11586), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439490] = 4, + [442916] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15923), 1, + ACTIONS(16034), 1, anon_sym_end, - STATE(11500), 1, + STATE(11587), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439504] = 4, + [442930] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15925), 1, + ACTIONS(16036), 1, anon_sym_end, - STATE(11501), 1, + STATE(11588), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439518] = 4, + [442944] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15927), 1, - anon_sym_RPAREN, - STATE(11502), 1, + ACTIONS(16038), 1, + sym__constant_segment, + STATE(11589), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439532] = 4, + [442958] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15929), 1, - anon_sym_end, - STATE(11503), 1, + ACTIONS(16040), 1, + sym__constant_segment, + STATE(11590), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439546] = 4, + [442972] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15931), 1, - anon_sym_end, - STATE(11504), 1, + ACTIONS(16042), 1, + anon_sym_RPAREN, + STATE(11591), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439560] = 4, + [442986] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15933), 1, - anon_sym_RBRACK, - STATE(11505), 1, + ACTIONS(16044), 1, + anon_sym_EQ_GT, + STATE(11592), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439574] = 4, + [443000] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15935), 1, + ACTIONS(16046), 1, anon_sym_end, - STATE(11506), 1, + STATE(11593), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439588] = 4, + [443014] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15937), 1, - anon_sym_end, - STATE(11507), 1, + ACTIONS(16048), 1, + anon_sym_DASH_GT, + STATE(11594), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439602] = 4, + [443028] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15939), 1, + ACTIONS(16050), 1, anon_sym_end, - STATE(11508), 1, + STATE(11595), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439616] = 4, + [443042] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15941), 1, + ACTIONS(16052), 1, anon_sym_end, - STATE(11509), 1, + STATE(11596), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439630] = 4, + [443056] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15943), 1, + ACTIONS(16054), 1, anon_sym_end, - STATE(11510), 1, + STATE(11597), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439644] = 4, + [443070] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15945), 1, - anon_sym_end, - STATE(11511), 1, + ACTIONS(16056), 1, + anon_sym_RPAREN, + STATE(11598), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439658] = 4, + [443084] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15947), 1, + ACTIONS(16058), 1, anon_sym_end, - STATE(11512), 1, + STATE(11599), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439672] = 4, + [443098] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15949), 1, - anon_sym_RPAREN, - STATE(11513), 1, + ACTIONS(16060), 1, + anon_sym_end, + STATE(11600), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439686] = 4, + [443112] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15951), 1, + ACTIONS(16062), 1, anon_sym_end, - STATE(11514), 1, + STATE(11601), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439700] = 4, + [443126] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15953), 1, + ACTIONS(16064), 1, + aux_sym_type_declaration_token1, + STATE(11602), 1, + sym_heredoc_body, + [443142] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16066), 1, anon_sym_end, - STATE(11515), 1, + STATE(11603), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439714] = 4, + [443156] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15955), 1, - anon_sym_RPAREN, - STATE(11516), 1, + ACTIONS(16068), 1, + anon_sym_SQUOTE2, + STATE(11604), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439728] = 4, + [443170] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15957), 1, - anon_sym_end, - STATE(11517), 1, + ACTIONS(16070), 1, + anon_sym_of, + STATE(11605), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439742] = 4, + [443184] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15959), 1, - anon_sym_SQUOTE2, - STATE(11518), 1, + ACTIONS(16072), 1, + anon_sym_class, + STATE(11606), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439756] = 4, + [443198] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15961), 1, + ACTIONS(16074), 1, anon_sym_end, - STATE(11519), 1, + STATE(11607), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439770] = 4, + [443212] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15963), 1, + ACTIONS(16076), 1, anon_sym_end, - STATE(11520), 1, + STATE(11608), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439784] = 4, + [443226] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15965), 1, - anon_sym_RPAREN, - STATE(11521), 1, + ACTIONS(16078), 1, + anon_sym_end, + STATE(11609), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439798] = 4, + [443240] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15967), 1, - anon_sym_RBRACK, - STATE(11522), 1, + ACTIONS(16080), 1, + anon_sym_end, + STATE(11610), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439812] = 4, + [443254] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15969), 1, - anon_sym_of, - STATE(11523), 1, + ACTIONS(16082), 1, + anon_sym_end, + STATE(11611), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439826] = 4, + [443268] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15971), 1, - anon_sym_EQ_GT, - STATE(11524), 1, + ACTIONS(16084), 1, + sym__constant_segment, + STATE(11612), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439840] = 4, + [443282] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15973), 1, - anon_sym_end, - STATE(11525), 1, + ACTIONS(16086), 1, + anon_sym_RPAREN, + STATE(11613), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439854] = 4, + [443296] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15975), 1, + ACTIONS(16088), 1, anon_sym_end, - STATE(11526), 1, + STATE(11614), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439868] = 4, + [443310] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15977), 1, + ACTIONS(16090), 1, anon_sym_end, - STATE(11527), 1, + STATE(11615), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439882] = 4, + [443324] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15979), 1, - sym__constant_segment, - STATE(11528), 1, + ACTIONS(16092), 1, + anon_sym_EQ_GT, + STATE(11616), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439896] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(15981), 1, - aux_sym_type_declaration_token1, - STATE(11529), 1, - sym_heredoc_body, - [439912] = 4, + [443338] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15983), 1, + ACTIONS(16094), 1, anon_sym_RBRACE, - STATE(11530), 1, + STATE(11617), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439926] = 4, + [443352] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15985), 1, + ACTIONS(16096), 1, anon_sym_end, - STATE(11531), 1, + STATE(11618), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439940] = 4, + [443366] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15987), 1, - anon_sym_RPAREN, - STATE(11532), 1, + ACTIONS(16098), 1, + anon_sym_of, + STATE(11619), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439954] = 4, + [443380] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15989), 1, + ACTIONS(16100), 1, anon_sym_end, - STATE(11533), 1, + STATE(11620), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439968] = 4, + [443394] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15991), 1, - anon_sym_RBRACK, - STATE(11534), 1, + ACTIONS(16102), 1, + anon_sym_end, + STATE(11621), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439982] = 4, + [443408] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15993), 1, + ACTIONS(16104), 1, anon_sym_end, - STATE(11535), 1, + STATE(11622), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [439996] = 4, + [443422] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15995), 1, - anon_sym_EQ_GT, - STATE(11536), 1, + ACTIONS(16106), 1, + anon_sym_end, + STATE(11623), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440010] = 4, + [443436] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15997), 1, - anon_sym_RBRACE, - STATE(11537), 1, + ACTIONS(16108), 1, + anon_sym_end, + STATE(11624), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440024] = 4, + [443450] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(15999), 1, - ts_builtin_sym_end, - STATE(11538), 1, + ACTIONS(16110), 1, + anon_sym_end, + STATE(11625), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440038] = 4, + [443464] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16001), 1, + ACTIONS(16112), 1, anon_sym_end, - STATE(11539), 1, + STATE(11626), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440052] = 4, + [443478] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16003), 1, + ACTIONS(16114), 1, anon_sym_end, - STATE(11540), 1, + STATE(11627), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440066] = 4, + [443492] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16005), 1, + ACTIONS(16116), 1, anon_sym_RBRACK, - STATE(11541), 1, + STATE(11628), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440080] = 4, + [443506] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16007), 1, - anon_sym_DASH_GT, - STATE(11542), 1, + ACTIONS(16118), 1, + anon_sym_EQ_GT, + STATE(11629), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440094] = 4, + [443520] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16009), 1, + ACTIONS(16120), 1, anon_sym_end, - STATE(11543), 1, + STATE(11630), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440108] = 4, + [443534] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16011), 1, + ACTIONS(16122), 1, anon_sym_end, - STATE(11544), 1, + STATE(11631), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440122] = 4, + [443548] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16013), 1, - anon_sym_end, - STATE(11545), 1, + ACTIONS(16124), 1, + anon_sym_EQ_GT, + STATE(11632), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440136] = 4, + [443562] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16015), 1, + ACTIONS(16126), 1, anon_sym_end, - STATE(11546), 1, + STATE(11633), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440150] = 4, + [443576] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16017), 1, + ACTIONS(16128), 1, anon_sym_end, - STATE(11547), 1, + STATE(11634), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440164] = 4, + [443590] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16019), 1, - anon_sym_end, - STATE(11548), 1, + ACTIONS(16130), 1, + sym__constant_segment, + STATE(11635), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440178] = 4, + [443604] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16021), 1, - anon_sym_EQ_GT, - STATE(11549), 1, + ACTIONS(5683), 1, + anon_sym_COLON, + STATE(11636), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440192] = 4, + [443618] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16023), 1, - anon_sym_end, - STATE(11550), 1, + ACTIONS(16132), 1, + aux_sym_type_declaration_token1, + STATE(11637), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [440206] = 4, + [443634] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16025), 1, + ACTIONS(16134), 1, anon_sym_end, - STATE(11551), 1, + STATE(11638), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440220] = 4, + [443648] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16027), 1, + ACTIONS(16136), 1, anon_sym_end, - STATE(11552), 1, + STATE(11639), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440234] = 4, + [443662] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16029), 1, - anon_sym_RPAREN, - STATE(11553), 1, + ACTIONS(16138), 1, + anon_sym_EQ_GT, + STATE(11640), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440248] = 4, + [443676] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16031), 1, + ACTIONS(16140), 1, sym__constant_segment, - STATE(11554), 1, - sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [440262] = 4, - ACTIONS(7), 1, - sym__heredoc_body_start, - ACTIONS(16033), 1, - anon_sym_RPAREN, - STATE(11555), 1, + STATE(11641), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440276] = 4, + [443690] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16035), 1, - anon_sym_RBRACE, - STATE(11556), 1, + ACTIONS(16142), 1, + anon_sym_RBRACK, + STATE(11642), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440290] = 4, + [443704] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16037), 1, + ACTIONS(16144), 1, anon_sym_RBRACE, - STATE(11557), 1, + STATE(11643), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440304] = 4, + [443718] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16039), 1, - anon_sym_RBRACK, - STATE(11558), 1, + ACTIONS(16146), 1, + anon_sym_end, + STATE(11644), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440318] = 4, + [443732] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16041), 1, - anon_sym_EQ_GT, - STATE(11559), 1, + ACTIONS(16148), 1, + anon_sym_end, + STATE(11645), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440332] = 4, + [443746] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16043), 1, - anon_sym_DASH_GT, - STATE(11560), 1, + ACTIONS(16150), 1, + sym__constant_segment, + STATE(11646), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440346] = 4, + [443760] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16045), 1, + ACTIONS(16152), 1, anon_sym_end, - STATE(11561), 1, + STATE(11647), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440360] = 4, + [443774] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16047), 1, + ACTIONS(16154), 1, anon_sym_end, - STATE(11562), 1, + STATE(11648), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440374] = 4, + [443788] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16049), 1, - anon_sym_RPAREN, - STATE(11563), 1, + ACTIONS(16156), 1, + sym__constant_segment, + STATE(11649), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440388] = 4, + [443802] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16051), 1, - anon_sym_yield, - STATE(11564), 1, + ACTIONS(16158), 1, + anon_sym_RBRACK, + STATE(11650), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440402] = 4, + [443816] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16053), 1, - anon_sym_EQ_GT, - STATE(11565), 1, + ACTIONS(16160), 1, + anon_sym_class, + STATE(11651), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440416] = 4, + [443830] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16055), 1, + ACTIONS(16162), 1, anon_sym_end, - STATE(11566), 1, + STATE(11652), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440430] = 4, + [443844] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16057), 1, + ACTIONS(16164), 1, anon_sym_RPAREN, - STATE(11567), 1, + STATE(11653), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440444] = 4, + [443858] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16059), 1, + ACTIONS(16166), 1, anon_sym_end, - STATE(11568), 1, + STATE(11654), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440458] = 4, + [443872] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16061), 1, - anon_sym_RPAREN, - STATE(11569), 1, + ACTIONS(16168), 1, + anon_sym_end, + STATE(11655), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440472] = 4, + [443886] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16063), 1, + ACTIONS(16170), 1, anon_sym_RPAREN, - STATE(11570), 1, + STATE(11656), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440486] = 4, + [443900] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16065), 1, - anon_sym_RPAREN, - STATE(11571), 1, + ACTIONS(16172), 1, + anon_sym_end, + STATE(11657), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440500] = 4, + [443914] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16067), 1, + ACTIONS(16174), 1, anon_sym_end, - STATE(11572), 1, + STATE(11658), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440514] = 4, + [443928] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16069), 1, - sym__constant_segment, - STATE(11573), 1, + ACTIONS(16176), 1, + anon_sym_end, + STATE(11659), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440528] = 4, + [443942] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16071), 1, + ACTIONS(16178), 1, anon_sym_end, - STATE(11574), 1, + STATE(11660), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440542] = 4, + [443956] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16073), 1, - anon_sym_end, - STATE(11575), 1, + ACTIONS(16180), 1, + anon_sym_EQ_GT, + STATE(11661), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440556] = 4, + [443970] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16075), 1, - anon_sym_end, - STATE(11576), 1, + ACTIONS(16182), 1, + anon_sym_RBRACE, + STATE(11662), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440570] = 4, + [443984] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16077), 1, - anon_sym_end, - STATE(11577), 1, + ACTIONS(16184), 1, + anon_sym_RPAREN, + STATE(11663), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440584] = 4, + [443998] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16079), 1, + ACTIONS(16186), 1, anon_sym_end, - STATE(11578), 1, + STATE(11664), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440598] = 4, + [444012] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16081), 1, + ACTIONS(16188), 1, anon_sym_end, - STATE(11579), 1, + STATE(11665), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440612] = 4, + [444026] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16083), 1, - anon_sym_end, - STATE(11580), 1, + ACTIONS(16190), 1, + anon_sym_DASH_GT, + STATE(11666), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440626] = 4, + [444040] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11386), 1, - anon_sym_end, - STATE(11581), 1, + ACTIONS(16192), 1, + anon_sym_SQUOTE2, + STATE(11667), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440640] = 4, + [444054] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16085), 1, + ACTIONS(16194), 1, anon_sym_end, - STATE(11582), 1, + STATE(11668), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440654] = 4, + [444068] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16087), 1, - anon_sym_end, - STATE(11583), 1, + ACTIONS(16196), 1, + anon_sym_yield, + STATE(11669), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440668] = 4, + [444082] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16089), 1, - anon_sym_yield, - STATE(11584), 1, + ACTIONS(16198), 1, + anon_sym_RPAREN, + STATE(11670), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440682] = 4, + [444096] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16091), 1, - anon_sym_RPAREN, - STATE(11585), 1, + ACTIONS(16200), 1, + anon_sym_end, + STATE(11671), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440696] = 4, + [444110] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16093), 1, + ACTIONS(11413), 1, anon_sym_end, - STATE(11586), 1, + STATE(11672), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440710] = 4, + [444124] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16095), 1, - anon_sym_EQ_GT, - STATE(11587), 1, + ACTIONS(16202), 1, + anon_sym_RPAREN, + STATE(11673), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440724] = 4, + [444138] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16097), 1, + ACTIONS(16204), 1, anon_sym_RPAREN, - STATE(11588), 1, + STATE(11674), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440738] = 4, + [444152] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16099), 1, - anon_sym_EQ_GT, - STATE(11589), 1, + ACTIONS(16206), 1, + anon_sym_end, + STATE(11675), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440752] = 4, + [444166] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16101), 1, - anon_sym_RBRACE, - STATE(11590), 1, + ACTIONS(16208), 1, + anon_sym_EQ_GT, + STATE(11676), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440766] = 4, + [444180] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16103), 1, - anon_sym_RPAREN, - STATE(11591), 1, + ACTIONS(16210), 1, + anon_sym_DASH_GT, + STATE(11677), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440780] = 4, + [444194] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16105), 1, + ACTIONS(16212), 1, anon_sym_end, - STATE(11592), 1, + STATE(11678), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440794] = 4, + [444208] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16107), 1, - anon_sym_RPAREN, - STATE(11593), 1, + ACTIONS(16214), 1, + anon_sym_of, + STATE(11679), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440808] = 4, + [444222] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16216), 1, + aux_sym_type_declaration_token1, + STATE(11680), 1, + sym_heredoc_body, + [444238] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16109), 1, + ACTIONS(16218), 1, anon_sym_end, - STATE(11594), 1, + STATE(11681), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440822] = 4, + [444252] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16111), 1, - anon_sym_RPAREN, - STATE(11595), 1, + ACTIONS(16220), 1, + anon_sym_end, + STATE(11682), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440836] = 4, + [444266] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11522), 1, + ACTIONS(16222), 1, anon_sym_end, - STATE(11596), 1, + STATE(11683), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [444280] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16224), 1, + anon_sym_RPAREN, + STATE(11684), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440850] = 4, + [444294] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16113), 1, + ACTIONS(16226), 1, anon_sym_end, - STATE(11597), 1, + STATE(11685), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440864] = 4, + [444308] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16115), 1, + ACTIONS(16228), 1, anon_sym_end, - STATE(11598), 1, + STATE(11686), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440878] = 4, + [444322] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16117), 1, - anon_sym_DASH_GT, - STATE(11599), 1, + ACTIONS(16230), 1, + anon_sym_RPAREN, + STATE(11687), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440892] = 4, + [444336] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16119), 1, + ACTIONS(16232), 1, anon_sym_end, - STATE(11600), 1, + STATE(11688), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440906] = 4, + [444350] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16121), 1, + ACTIONS(16234), 1, anon_sym_end, - STATE(11601), 1, + STATE(11689), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440920] = 4, + [444364] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16123), 1, + ACTIONS(16236), 1, anon_sym_end, - STATE(11602), 1, + STATE(11690), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440934] = 4, + [444378] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16125), 1, - anon_sym_PIPE, - STATE(11603), 1, + ACTIONS(16238), 1, + anon_sym_end, + STATE(11691), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440948] = 4, + [444392] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16127), 1, + ACTIONS(16240), 1, anon_sym_end, - STATE(11604), 1, + STATE(11692), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440962] = 4, + [444406] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16129), 1, - anon_sym_end, - STATE(11605), 1, + ACTIONS(16242), 1, + anon_sym_SQUOTE2, + STATE(11693), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440976] = 4, + [444420] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16131), 1, + ACTIONS(16244), 1, anon_sym_end, - STATE(11606), 1, + STATE(11694), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [440990] = 4, + [444434] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16133), 1, - anon_sym_class, - STATE(11607), 1, + ACTIONS(16246), 1, + anon_sym_end, + STATE(11695), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441004] = 4, + [444448] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16135), 1, - anon_sym_RPAREN, - STATE(11608), 1, + ACTIONS(16248), 1, + anon_sym_EQ_GT, + STATE(11696), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441018] = 4, + [444462] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16137), 1, + ACTIONS(16250), 1, anon_sym_end, - STATE(11609), 1, + STATE(11697), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441032] = 4, + [444476] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16139), 1, + ACTIONS(16252), 1, anon_sym_RBRACE, - STATE(11610), 1, + STATE(11698), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441046] = 4, + [444490] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16141), 1, - anon_sym_end, - STATE(11611), 1, + ACTIONS(16254), 1, + anon_sym_COLON, + STATE(11699), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441060] = 4, + [444504] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16143), 1, - aux_sym_integer_token1, - STATE(11612), 1, + ACTIONS(16256), 1, + anon_sym_EQ, + STATE(11700), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441074] = 4, + [444518] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16145), 1, - anon_sym_end, - STATE(11613), 1, + ACTIONS(16258), 1, + anon_sym_COLON, + STATE(11701), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441088] = 4, + [444532] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16147), 1, - anon_sym_end, - STATE(11614), 1, + ACTIONS(16260), 1, + anon_sym_RPAREN, + STATE(11702), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [444546] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16262), 1, + anon_sym_EQ_GT, + STATE(11703), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441102] = 4, + [444560] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16149), 1, + ACTIONS(16264), 1, anon_sym_end, - STATE(11615), 1, + STATE(11704), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441116] = 4, + [444574] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16151), 1, + ACTIONS(16266), 1, anon_sym_RPAREN, - STATE(11616), 1, + STATE(11705), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441130] = 4, + [444588] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16153), 1, - anon_sym_end, - STATE(11617), 1, + ACTIONS(16268), 1, + anon_sym_DASH_GT, + STATE(11706), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441144] = 4, + [444602] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16155), 1, - anon_sym_EQ_GT, - STATE(11618), 1, + ACTIONS(10299), 1, + anon_sym_RPAREN, + STATE(11707), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441158] = 4, + [444616] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11442), 1, + ACTIONS(16270), 1, anon_sym_end, - STATE(11619), 1, + STATE(11708), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441172] = 4, + [444630] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16157), 1, - anon_sym_RBRACE, - STATE(11620), 1, + ACTIONS(16272), 1, + anon_sym_RBRACK, + STATE(11709), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441186] = 4, + [444644] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16159), 1, - sym__constant_segment, - STATE(11621), 1, + ACTIONS(16274), 1, + anon_sym_end, + STATE(11710), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441200] = 4, + [444658] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16161), 1, - sym__constant_segment, - STATE(11622), 1, + ACTIONS(16276), 1, + anon_sym_SQUOTE2, + STATE(11711), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441214] = 4, + [444672] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16163), 1, - anon_sym_end, - STATE(11623), 1, + ACTIONS(16278), 1, + anon_sym_DOT, + STATE(11712), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441228] = 4, + [444686] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16165), 1, - anon_sym_end, - STATE(11624), 1, + ACTIONS(16280), 1, + anon_sym_EQ_GT, + STATE(11713), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441242] = 4, + [444700] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16167), 1, + ACTIONS(16282), 1, anon_sym_RPAREN, - STATE(11625), 1, + STATE(11714), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441256] = 4, + [444714] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16169), 1, + ACTIONS(16284), 1, anon_sym_end, - STATE(11626), 1, + STATE(11715), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441270] = 4, + [444728] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16171), 1, - anon_sym_end, - STATE(11627), 1, + ACTIONS(16286), 1, + anon_sym_RPAREN, + STATE(11716), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441284] = 4, + [444742] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16173), 1, - anon_sym_end, - STATE(11628), 1, + ACTIONS(16288), 1, + anon_sym_class, + STATE(11717), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441298] = 4, + [444756] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16175), 1, - anon_sym_end, - STATE(11629), 1, + ACTIONS(16290), 1, + sym__constant_segment, + STATE(11718), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441312] = 4, + [444770] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16177), 1, - anon_sym_EQ_GT, - STATE(11630), 1, + ACTIONS(16292), 1, + aux_sym_type_declaration_token1, + STATE(11719), 1, + sym_heredoc_body, + [444786] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16294), 1, + anon_sym_of, + STATE(11720), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441326] = 4, + [444800] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16179), 1, + ACTIONS(11520), 1, anon_sym_end, - STATE(11631), 1, + STATE(11721), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441340] = 4, + [444814] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16181), 1, + ACTIONS(16296), 1, anon_sym_end, - STATE(11632), 1, + STATE(11722), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441354] = 4, + [444828] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16183), 1, - anon_sym_DASH_GT, - STATE(11633), 1, + ACTIONS(16298), 1, + anon_sym_RPAREN, + STATE(11723), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441368] = 4, + [444842] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16185), 1, + ACTIONS(16300), 1, anon_sym_end, - STATE(11634), 1, + STATE(11724), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441382] = 4, + [444856] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16187), 1, - anon_sym_yield, - STATE(11635), 1, + ACTIONS(16302), 1, + anon_sym_end, + STATE(11725), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441396] = 4, + [444870] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16189), 1, - anon_sym_RBRACK, - STATE(11636), 1, + ACTIONS(16304), 1, + anon_sym_end, + STATE(11726), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441410] = 4, + [444884] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16191), 1, - anon_sym_RPAREN, - STATE(11637), 1, + ACTIONS(16306), 1, + anon_sym_EQ_GT, + STATE(11727), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441424] = 4, + [444898] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16193), 1, + ACTIONS(16308), 1, anon_sym_of, - STATE(11638), 1, + STATE(11728), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441438] = 4, + [444912] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16195), 1, - anon_sym_end, - STATE(11639), 1, + ACTIONS(16310), 1, + sym__constant_segment, + STATE(11729), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441452] = 4, + [444926] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16197), 1, - anon_sym_end, - STATE(11640), 1, + ACTIONS(16312), 1, + anon_sym_RPAREN, + STATE(11730), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441466] = 4, + [444940] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16199), 1, - anon_sym_end, - STATE(11641), 1, + ACTIONS(16314), 1, + anon_sym_DASH_GT, + STATE(11731), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441480] = 4, + [444954] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16201), 1, - anon_sym_end, - STATE(11642), 1, + ACTIONS(16316), 1, + anon_sym_yield, + STATE(11732), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441494] = 4, + [444968] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16203), 1, + ACTIONS(11425), 1, anon_sym_end, - STATE(11643), 1, + STATE(11733), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441508] = 4, + [444982] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16205), 1, - sym__constant_segment, - STATE(11644), 1, + ACTIONS(16318), 1, + anon_sym_end, + STATE(11734), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441522] = 4, + [444996] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16207), 1, + ACTIONS(16320), 1, anon_sym_end, - STATE(11645), 1, + STATE(11735), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441536] = 4, + [445010] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16209), 1, - anon_sym_yield, - STATE(11646), 1, + ACTIONS(16322), 1, + anon_sym_end, + STATE(11736), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441550] = 4, + [445024] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16211), 1, + ACTIONS(16324), 1, anon_sym_end, - STATE(11647), 1, + STATE(11737), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441564] = 4, + [445038] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16213), 1, + ACTIONS(16326), 1, anon_sym_end, - STATE(11648), 1, + STATE(11738), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441578] = 4, + [445052] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16215), 1, - anon_sym_class, - STATE(11649), 1, + ACTIONS(16328), 1, + anon_sym_RPAREN, + STATE(11739), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441592] = 4, + [445066] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16217), 1, - anon_sym_EQ_GT, - STATE(11650), 1, + ACTIONS(16330), 1, + sym__constant_segment, + STATE(11740), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441606] = 5, + [445080] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5), 1, sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16219), 1, + ACTIONS(16332), 1, aux_sym_type_declaration_token1, - STATE(11651), 1, + STATE(11741), 1, sym_heredoc_body, - [441622] = 4, + [445096] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16221), 1, - anon_sym_end, - STATE(11652), 1, + ACTIONS(16334), 1, + anon_sym_RPAREN, + STATE(11742), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441636] = 4, + [445110] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16223), 1, - anon_sym_EQ_GT, - STATE(11653), 1, + ACTIONS(16336), 1, + anon_sym_yield, + STATE(11743), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441650] = 4, + [445124] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16225), 1, - anon_sym_yield, - STATE(11654), 1, + ACTIONS(16338), 1, + anon_sym_end, + STATE(11744), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441664] = 4, + [445138] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16227), 1, - anon_sym_end, - STATE(11655), 1, + ACTIONS(16340), 1, + sym__constant_segment, + STATE(11745), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441678] = 4, + [445152] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16229), 1, - anon_sym_class, - STATE(11656), 1, + ACTIONS(16342), 1, + anon_sym_end, + STATE(11746), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441692] = 4, + [445166] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16231), 1, + ACTIONS(16344), 1, anon_sym_end, - STATE(11657), 1, + STATE(11747), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441706] = 4, + [445180] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16233), 1, + ACTIONS(16346), 1, anon_sym_end, - STATE(11658), 1, + STATE(11748), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441720] = 4, + [445194] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16235), 1, + ACTIONS(16348), 1, anon_sym_end, - STATE(11659), 1, + STATE(11749), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441734] = 4, + [445208] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16237), 1, + ACTIONS(16350), 1, anon_sym_end, - STATE(11660), 1, + STATE(11750), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441748] = 4, + [445222] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16239), 1, + ACTIONS(16352), 1, anon_sym_end, - STATE(11661), 1, + STATE(11751), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441762] = 4, + [445236] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16241), 1, - anon_sym_RPAREN, - STATE(11662), 1, + ACTIONS(16354), 1, + anon_sym_end, + STATE(11752), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441776] = 4, + [445250] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16243), 1, - anon_sym_RBRACK, - STATE(11663), 1, + ACTIONS(16356), 1, + anon_sym_end, + STATE(11753), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441790] = 4, + [445264] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16245), 1, - anon_sym_end, - STATE(11664), 1, + ACTIONS(16358), 1, + anon_sym_RBRACK, + STATE(11754), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441804] = 4, + [445278] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16247), 1, - anon_sym_end, - STATE(11665), 1, + ACTIONS(16360), 1, + anon_sym_yield, + STATE(11755), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441818] = 4, + [445292] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16249), 1, - anon_sym_EQ_GT, - STATE(11666), 1, + ACTIONS(16362), 1, + anon_sym_end, + STATE(11756), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441832] = 4, + [445306] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16251), 1, - anon_sym_RPAREN, - STATE(11667), 1, + ACTIONS(16364), 1, + ts_builtin_sym_end, + STATE(11757), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441846] = 4, + [445320] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13815), 1, + ACTIONS(11445), 1, anon_sym_end, - STATE(11668), 1, + STATE(11758), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441860] = 4, + [445334] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16253), 1, - anon_sym_RPAREN, - STATE(11669), 1, + ACTIONS(16366), 1, + anon_sym_EQ_GT, + STATE(11759), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441874] = 4, + [445348] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16255), 1, + ACTIONS(16368), 1, anon_sym_end, - STATE(11670), 1, + STATE(11760), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441888] = 4, + [445362] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16257), 1, - anon_sym_RBRACK, - STATE(11671), 1, + ACTIONS(16370), 1, + sym__start_of_index_operator, + STATE(11761), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441902] = 4, + [445376] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16259), 1, + ACTIONS(16372), 1, anon_sym_end, - STATE(11672), 1, + STATE(11762), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441916] = 4, + [445390] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16261), 1, + ACTIONS(16374), 1, anon_sym_end, - STATE(11673), 1, + STATE(11763), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441930] = 4, + [445404] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16263), 1, + ACTIONS(11550), 1, anon_sym_end, - STATE(11674), 1, + STATE(11764), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441944] = 4, + [445418] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16265), 1, + ACTIONS(16376), 1, anon_sym_end, - STATE(11675), 1, + STATE(11765), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441958] = 4, + [445432] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16267), 1, + ACTIONS(16378), 1, anon_sym_end, - STATE(11676), 1, + STATE(11766), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441972] = 4, + [445446] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16269), 1, + ACTIONS(16380), 1, anon_sym_end, - STATE(11677), 1, + STATE(11767), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [441986] = 4, + [445460] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16271), 1, - anon_sym_RPAREN, - STATE(11678), 1, + ACTIONS(16382), 1, + anon_sym_end, + STATE(11768), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442000] = 4, + [445474] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16273), 1, + ACTIONS(16384), 1, anon_sym_EQ_GT, - STATE(11679), 1, + STATE(11769), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442014] = 4, + [445488] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16275), 1, - anon_sym_DASH_GT, - STATE(11680), 1, + ACTIONS(16386), 1, + anon_sym_end, + STATE(11770), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442028] = 4, + [445502] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16277), 1, + ACTIONS(16388), 1, anon_sym_RPAREN, - STATE(11681), 1, + STATE(11771), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442042] = 4, + [445516] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16279), 1, + ACTIONS(16390), 1, anon_sym_end, - STATE(11682), 1, + STATE(11772), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [445530] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16392), 1, + anon_sym_SQUOTE2, + STATE(11773), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442056] = 4, + [445544] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16281), 1, + ACTIONS(16394), 1, anon_sym_end, - STATE(11683), 1, + STATE(11774), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442070] = 4, + [445558] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16283), 1, + ACTIONS(16396), 1, sym__constant_segment, - STATE(11684), 1, + STATE(11775), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [445572] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16398), 1, + anon_sym_of, + STATE(11776), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442084] = 4, + [445586] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16285), 1, + ACTIONS(16400), 1, + anon_sym_PIPE, + STATE(11777), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [445600] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16402), 1, anon_sym_end, - STATE(11685), 1, + STATE(11778), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442098] = 4, + [445614] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16287), 1, - anon_sym_EQ_GT, - STATE(11686), 1, + ACTIONS(16404), 1, + anon_sym_RBRACE, + STATE(11779), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442112] = 4, + [445628] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16289), 1, + ACTIONS(16406), 1, anon_sym_RBRACE, - STATE(11687), 1, + STATE(11780), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442126] = 4, + [445642] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16291), 1, - anon_sym_end, - STATE(11688), 1, + ACTIONS(16408), 1, + sym__constant_segment, + STATE(11781), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442140] = 4, + [445656] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16293), 1, + ACTIONS(16410), 1, + aux_sym_type_declaration_token1, + STATE(11782), 1, + sym_heredoc_body, + [445672] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16412), 1, anon_sym_end, - STATE(11689), 1, + STATE(11783), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [445686] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16414), 1, + anon_sym_EQ, + STATE(11784), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442154] = 4, + [445700] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16295), 1, + ACTIONS(16416), 1, anon_sym_end, - STATE(11690), 1, + STATE(11785), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442168] = 4, + [445714] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16297), 1, - anon_sym_DASH_GT, - STATE(11691), 1, + ACTIONS(16418), 1, + anon_sym_RBRACK, + STATE(11786), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442182] = 4, + [445728] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16299), 1, - anon_sym_of, - STATE(11692), 1, + ACTIONS(16420), 1, + anon_sym_RPAREN, + STATE(11787), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442196] = 4, + [445742] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16301), 1, + ACTIONS(16422), 1, anon_sym_end, - STATE(11693), 1, + STATE(11788), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442210] = 4, + [445756] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16303), 1, + ACTIONS(11570), 1, anon_sym_end, - STATE(11694), 1, + STATE(11789), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442224] = 4, + [445770] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16305), 1, + ACTIONS(16424), 1, anon_sym_end, - STATE(11695), 1, + STATE(11790), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442238] = 4, + [445784] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16307), 1, + ACTIONS(16426), 1, anon_sym_end, - STATE(11696), 1, + STATE(11791), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [445798] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16428), 1, + anon_sym_RPAREN, + STATE(11792), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [445812] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16430), 1, + anon_sym_RBRACK, + STATE(11793), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442252] = 4, + [445826] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16309), 1, + ACTIONS(16432), 1, anon_sym_LPAREN, - STATE(11697), 1, + STATE(11794), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442266] = 4, + [445840] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16311), 1, + ACTIONS(16434), 1, anon_sym_LPAREN, - STATE(11698), 1, + STATE(11795), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442280] = 4, + [445854] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16313), 1, + ACTIONS(16436), 1, anon_sym_LPAREN, - STATE(11699), 1, + STATE(11796), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442294] = 4, + [445868] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16315), 1, - anon_sym_end, - STATE(11700), 1, + ACTIONS(16438), 1, + anon_sym_RBRACE, + STATE(11797), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442308] = 4, + [445882] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16317), 1, - anon_sym_RPAREN, - STATE(11701), 1, + ACTIONS(16440), 1, + anon_sym_end, + STATE(11798), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442322] = 4, + [445896] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16319), 1, + ACTIONS(16442), 1, anon_sym_end, - STATE(11702), 1, + STATE(11799), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442336] = 4, + [445910] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16321), 1, + ACTIONS(16444), 1, anon_sym_of, - STATE(11703), 1, + STATE(11800), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442350] = 4, + [445924] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16323), 1, - anon_sym_end, - STATE(11704), 1, + ACTIONS(16446), 1, + anon_sym_class, + STATE(11801), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442364] = 4, + [445938] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16325), 1, + ACTIONS(16448), 1, anon_sym_EQ_GT, - STATE(11705), 1, + STATE(11802), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442378] = 4, + [445952] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16327), 1, - anon_sym_DASH_GT, - STATE(11706), 1, + ACTIONS(16450), 1, + anon_sym_yield, + STATE(11803), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442392] = 4, + [445966] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16329), 1, + ACTIONS(16452), 1, sym__start_of_index_operator, - STATE(11707), 1, + STATE(11804), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442406] = 4, + [445980] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16331), 1, + ACTIONS(16454), 1, anon_sym_COMMA, - STATE(11708), 1, + STATE(11805), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442420] = 4, + [445994] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16333), 1, - anon_sym_end, - STATE(11709), 1, + ACTIONS(16456), 1, + anon_sym_RPAREN, + STATE(11806), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442434] = 4, + [446008] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16335), 1, - anon_sym_end, - STATE(11710), 1, + ACTIONS(16458), 1, + anon_sym_RBRACE, + STATE(11807), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442448] = 4, + [446022] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16337), 1, - anon_sym_RBRACK, - STATE(11711), 1, + ACTIONS(16460), 1, + anon_sym_RPAREN, + STATE(11808), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442462] = 4, + [446036] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16339), 1, + ACTIONS(16462), 1, anon_sym_end, - STATE(11712), 1, + STATE(11809), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442476] = 4, + [446050] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16341), 1, + ACTIONS(16464), 1, anon_sym_LPAREN, - STATE(11713), 1, + STATE(11810), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442490] = 4, + [446064] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16343), 1, + ACTIONS(16466), 1, anon_sym_LPAREN, - STATE(11714), 1, + STATE(11811), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442504] = 4, + [446078] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16345), 1, + ACTIONS(16468), 1, anon_sym_LPAREN, - STATE(11715), 1, + STATE(11812), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442518] = 4, + [446092] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16347), 1, - anon_sym_end, - STATE(11716), 1, + ACTIONS(16470), 1, + anon_sym_DASH_GT, + STATE(11813), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442532] = 4, + [446106] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16349), 1, + ACTIONS(16472), 1, anon_sym_end, - STATE(11717), 1, + STATE(11814), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442546] = 4, + [446120] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16351), 1, + ACTIONS(16474), 1, anon_sym_of, - STATE(11718), 1, + STATE(11815), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442560] = 4, + [446134] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16353), 1, - anon_sym_EQ_GT, - STATE(11719), 1, + ACTIONS(16476), 1, + anon_sym_end, + STATE(11816), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442574] = 4, + [446148] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16355), 1, + ACTIONS(16478), 1, anon_sym_end, - STATE(11720), 1, + STATE(11817), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442588] = 4, + [446162] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16357), 1, + ACTIONS(16480), 1, sym__start_of_index_operator, - STATE(11721), 1, + STATE(11818), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442602] = 4, + [446176] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16359), 1, + ACTIONS(16482), 1, anon_sym_COMMA, - STATE(11722), 1, + STATE(11819), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442616] = 4, + [446190] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16361), 1, + ACTIONS(16484), 1, anon_sym_end, - STATE(11723), 1, + STATE(11820), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442630] = 4, + [446204] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16363), 1, + ACTIONS(16486), 1, anon_sym_end, - STATE(11724), 1, + STATE(11821), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442644] = 4, + [446218] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16365), 1, + ACTIONS(16488), 1, anon_sym_end, - STATE(11725), 1, + STATE(11822), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442658] = 4, + [446232] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16367), 1, - anon_sym_end, - STATE(11726), 1, + ACTIONS(16490), 1, + anon_sym_EQ_GT, + STATE(11823), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442672] = 4, + [446246] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16369), 1, + ACTIONS(16492), 1, anon_sym_LPAREN, - STATE(11727), 1, + STATE(11824), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442686] = 4, + [446260] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16371), 1, + ACTIONS(16494), 1, anon_sym_LPAREN, - STATE(11728), 1, + STATE(11825), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442700] = 4, + [446274] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16373), 1, + ACTIONS(16496), 1, anon_sym_LPAREN, - STATE(11729), 1, + STATE(11826), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442714] = 4, + [446288] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16375), 1, - anon_sym_end, - STATE(11730), 1, + ACTIONS(16498), 1, + anon_sym_yield, + STATE(11827), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442728] = 4, + [446302] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(6120), 1, - anon_sym_RBRACK, - STATE(11731), 1, + ACTIONS(16500), 1, + sym__constant_segment, + STATE(11828), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442742] = 4, + [446316] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16377), 1, + ACTIONS(16502), 1, anon_sym_of, - STATE(11732), 1, + STATE(11829), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442756] = 4, + [446330] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16379), 1, - sym__constant_segment, - STATE(11733), 1, + ACTIONS(16504), 1, + anon_sym_RBRACE, + STATE(11830), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442770] = 4, + [446344] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16381), 1, + ACTIONS(16506), 1, anon_sym_end, - STATE(11734), 1, + STATE(11831), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442784] = 4, + [446358] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16383), 1, + ACTIONS(16508), 1, sym__start_of_index_operator, - STATE(11735), 1, + STATE(11832), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442798] = 4, + [446372] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16385), 1, + ACTIONS(16510), 1, anon_sym_COMMA, - STATE(11736), 1, + STATE(11833), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442812] = 4, + [446386] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16387), 1, - anon_sym_class, - STATE(11737), 1, + ACTIONS(16512), 1, + sym__constant_segment, + STATE(11834), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442826] = 4, + [446400] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16389), 1, - anon_sym_end, - STATE(11738), 1, + ACTIONS(16514), 1, + anon_sym_PIPE, + STATE(11835), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442840] = 4, + [446414] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16391), 1, - anon_sym_end, - STATE(11739), 1, + ACTIONS(16516), 1, + anon_sym_RBRACE, + STATE(11836), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442854] = 4, + [446428] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16393), 1, - anon_sym_end, - STATE(11740), 1, + ACTIONS(16518), 1, + anon_sym_yield, + STATE(11837), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442868] = 4, + [446442] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16395), 1, + ACTIONS(16520), 1, anon_sym_LPAREN, - STATE(11741), 1, + STATE(11838), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442882] = 4, + [446456] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16397), 1, + ACTIONS(16522), 1, anon_sym_LPAREN, - STATE(11742), 1, + STATE(11839), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442896] = 4, + [446470] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16399), 1, + ACTIONS(16524), 1, anon_sym_LPAREN, - STATE(11743), 1, + STATE(11840), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442910] = 4, + [446484] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16401), 1, - sym__constant_segment, - STATE(11744), 1, + ACTIONS(16526), 1, + anon_sym_end, + STATE(11841), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442924] = 4, + [446498] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16403), 1, + ACTIONS(16528), 1, anon_sym_end, - STATE(11745), 1, + STATE(11842), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442938] = 4, + [446512] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16405), 1, + ACTIONS(16530), 1, anon_sym_of, - STATE(11746), 1, + STATE(11843), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442952] = 4, + [446526] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16407), 1, + ACTIONS(16532), 1, anon_sym_end, - STATE(11747), 1, + STATE(11844), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442966] = 4, + [446540] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16409), 1, - anon_sym_end, - STATE(11748), 1, + ACTIONS(16534), 1, + anon_sym_RPAREN, + STATE(11845), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442980] = 4, + [446554] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16411), 1, + ACTIONS(16536), 1, sym__start_of_index_operator, - STATE(11749), 1, + STATE(11846), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [442994] = 4, + [446568] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16413), 1, + ACTIONS(16538), 1, anon_sym_COMMA, - STATE(11750), 1, + STATE(11847), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443008] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [446582] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16415), 1, - aux_sym_type_declaration_token1, - STATE(11751), 1, + ACTIONS(16540), 1, + anon_sym_DASH_GT, + STATE(11848), 1, sym_heredoc_body, - [443024] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [446596] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16417), 1, + ACTIONS(16542), 1, anon_sym_end, - STATE(11752), 1, + STATE(11849), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443038] = 4, + [446610] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16419), 1, - anon_sym_RBRACK, - STATE(11753), 1, + ACTIONS(16544), 1, + anon_sym_end, + STATE(11850), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443052] = 4, + [446624] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16421), 1, + ACTIONS(16546), 1, anon_sym_RPAREN, - STATE(11754), 1, + STATE(11851), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443066] = 4, + [446638] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16423), 1, + ACTIONS(16548), 1, anon_sym_LPAREN, - STATE(11755), 1, + STATE(11852), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443080] = 4, + [446652] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16425), 1, + ACTIONS(16550), 1, anon_sym_LPAREN, - STATE(11756), 1, + STATE(11853), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443094] = 4, + [446666] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16427), 1, + ACTIONS(16552), 1, anon_sym_LPAREN, - STATE(11757), 1, + STATE(11854), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443108] = 4, + [446680] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16429), 1, - anon_sym_RBRACK, - STATE(11758), 1, + ACTIONS(16554), 1, + anon_sym_yield, + STATE(11855), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443122] = 4, + [446694] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16431), 1, - anon_sym_EQ_GT, - STATE(11759), 1, + ACTIONS(16556), 1, + anon_sym_RBRACE, + STATE(11856), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443136] = 4, + [446708] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16433), 1, + ACTIONS(16558), 1, anon_sym_of, - STATE(11760), 1, + STATE(11857), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443150] = 4, + [446722] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16435), 1, - anon_sym_of, - STATE(11761), 1, + ACTIONS(16560), 1, + sym__constant_segment, + STATE(11858), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443164] = 4, + [446736] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16437), 1, + ACTIONS(16562), 1, anon_sym_end, - STATE(11762), 1, + STATE(11859), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443178] = 4, + [446750] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16439), 1, + ACTIONS(16564), 1, sym__start_of_index_operator, - STATE(11763), 1, + STATE(11860), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443192] = 4, + [446764] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16441), 1, + ACTIONS(16566), 1, anon_sym_COMMA, - STATE(11764), 1, + STATE(11861), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443206] = 4, + [446778] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16443), 1, - anon_sym_end, - STATE(11765), 1, + ACTIONS(16568), 1, + anon_sym_RPAREN, + STATE(11862), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443220] = 4, + [446792] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16445), 1, - anon_sym_LPAREN, - STATE(11766), 1, + ACTIONS(16570), 1, + anon_sym_RPAREN, + STATE(11863), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443234] = 4, + [446806] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16447), 1, - anon_sym_end, - STATE(11767), 1, + ACTIONS(16572), 1, + anon_sym_RPAREN, + STATE(11864), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443248] = 4, + [446820] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16449), 1, - anon_sym_end, - STATE(11768), 1, + ACTIONS(16574), 1, + anon_sym_SQUOTE2, + STATE(11865), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443262] = 4, + [446834] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16451), 1, + ACTIONS(16576), 1, anon_sym_LPAREN, - STATE(11769), 1, + STATE(11866), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443276] = 4, + [446848] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16453), 1, + ACTIONS(16578), 1, anon_sym_LPAREN, - STATE(11770), 1, + STATE(11867), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443290] = 4, + [446862] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16455), 1, + ACTIONS(16580), 1, anon_sym_LPAREN, - STATE(11771), 1, + STATE(11868), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443304] = 4, + [446876] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16457), 1, - anon_sym_end, - STATE(11772), 1, + ACTIONS(16582), 1, + anon_sym_RPAREN, + STATE(11869), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443318] = 4, + [446890] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16459), 1, - anon_sym_end, - STATE(11773), 1, + ACTIONS(16584), 1, + anon_sym_RPAREN, + STATE(11870), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443332] = 4, + [446904] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16461), 1, + ACTIONS(16586), 1, anon_sym_of, - STATE(11774), 1, + STATE(11871), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443346] = 4, + [446918] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16463), 1, + ACTIONS(16588), 1, anon_sym_end, - STATE(11775), 1, + STATE(11872), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443360] = 4, + [446932] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16465), 1, - anon_sym_end, - STATE(11776), 1, + ACTIONS(16590), 1, + sym__constant_segment, + STATE(11873), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443374] = 4, + [446946] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16467), 1, + ACTIONS(16592), 1, sym__start_of_index_operator, - STATE(11777), 1, + STATE(11874), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443388] = 4, + [446960] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16469), 1, + ACTIONS(16594), 1, anon_sym_COMMA, - STATE(11778), 1, + STATE(11875), 1, + sym_heredoc_body, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [446974] = 4, + ACTIONS(7), 1, + sym__heredoc_body_start, + ACTIONS(16596), 1, + anon_sym_end, + STATE(11876), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443402] = 4, + [446988] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16471), 1, + ACTIONS(16598), 1, anon_sym_RPAREN, - STATE(11779), 1, + STATE(11877), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443416] = 4, + [447002] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16473), 1, + ACTIONS(16600), 1, anon_sym_end, - STATE(11780), 1, + STATE(11878), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443430] = 4, + [447016] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16475), 1, - anon_sym_RBRACK, - STATE(11781), 1, + ACTIONS(16602), 1, + anon_sym_end, + STATE(11879), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443444] = 4, + [447030] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16477), 1, + ACTIONS(16604), 1, anon_sym_LPAREN, - STATE(11782), 1, + STATE(11880), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443458] = 4, + [447044] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16479), 1, + ACTIONS(16606), 1, anon_sym_LPAREN, - STATE(11783), 1, + STATE(11881), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443472] = 4, + [447058] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16481), 1, + ACTIONS(16608), 1, anon_sym_LPAREN, - STATE(11784), 1, + STATE(11882), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443486] = 4, + [447072] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16483), 1, + ACTIONS(16610), 1, anon_sym_end, - STATE(11785), 1, + STATE(11883), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443500] = 4, + [447086] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16485), 1, + ACTIONS(16612), 1, anon_sym_end, - STATE(11786), 1, + STATE(11884), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443514] = 4, + [447100] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16487), 1, + ACTIONS(16614), 1, anon_sym_of, - STATE(11787), 1, + STATE(11885), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443528] = 4, + [447114] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16489), 1, - anon_sym_RPAREN, - STATE(11788), 1, + ACTIONS(16616), 1, + anon_sym_of, + STATE(11886), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443542] = 4, + [447128] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16491), 1, - anon_sym_RPAREN, - STATE(11789), 1, + ACTIONS(16618), 1, + anon_sym_end, + STATE(11887), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443556] = 4, + [447142] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16493), 1, + ACTIONS(16620), 1, sym__start_of_index_operator, - STATE(11790), 1, + STATE(11888), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443570] = 4, + [447156] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16495), 1, + ACTIONS(16622), 1, anon_sym_COMMA, - STATE(11791), 1, + STATE(11889), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443584] = 4, + [447170] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16497), 1, + ACTIONS(16624), 1, anon_sym_end, - STATE(11792), 1, + STATE(11890), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443598] = 4, + [447184] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16499), 1, + ACTIONS(16626), 1, anon_sym_end, - STATE(11793), 1, + STATE(11891), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443612] = 4, + [447198] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16501), 1, - sym__constant_segment, - STATE(11794), 1, + ACTIONS(16628), 1, + anon_sym_end, + STATE(11892), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443626] = 4, + [447212] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16503), 1, + ACTIONS(16630), 1, anon_sym_RPAREN, - STATE(11795), 1, + STATE(11893), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443640] = 4, + [447226] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16505), 1, + ACTIONS(16632), 1, anon_sym_LPAREN, - STATE(11796), 1, + STATE(11894), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443654] = 4, + [447240] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16507), 1, + ACTIONS(16634), 1, anon_sym_LPAREN, - STATE(11797), 1, + STATE(11895), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443668] = 4, + [447254] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16509), 1, + ACTIONS(16636), 1, anon_sym_LPAREN, - STATE(11798), 1, + STATE(11896), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443682] = 4, + [447268] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16511), 1, + ACTIONS(16638), 1, anon_sym_end, - STATE(11799), 1, + STATE(11897), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443696] = 4, + [447282] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16513), 1, + ACTIONS(11621), 1, anon_sym_end, - STATE(11800), 1, + STATE(11898), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443710] = 4, + [447296] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16515), 1, + ACTIONS(16640), 1, anon_sym_of, - STATE(11801), 1, + STATE(11899), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443724] = 4, + [447310] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16517), 1, + ACTIONS(16642), 1, anon_sym_end, - STATE(11802), 1, + STATE(11900), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443738] = 4, + [447324] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16519), 1, - anon_sym_RBRACK, - STATE(11803), 1, + ACTIONS(16644), 1, + aux_sym_type_declaration_token1, + STATE(11901), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [443752] = 4, + [447340] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16521), 1, + ACTIONS(16646), 1, sym__start_of_index_operator, - STATE(11804), 1, + STATE(11902), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443766] = 4, + [447354] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16523), 1, + ACTIONS(16648), 1, anon_sym_COMMA, - STATE(11805), 1, + STATE(11903), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443780] = 4, + [447368] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16525), 1, - anon_sym_EQ_GT, - STATE(11806), 1, + ACTIONS(16650), 1, + anon_sym_end, + STATE(11904), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443794] = 4, + [447382] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16527), 1, - anon_sym_end, - STATE(11807), 1, + ACTIONS(16652), 1, + anon_sym_RPAREN, + STATE(11905), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443808] = 4, + [447396] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16529), 1, - anon_sym_RBRACE, - STATE(11808), 1, + ACTIONS(16654), 1, + anon_sym_end, + STATE(11906), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443822] = 4, + [447410] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16531), 1, - anon_sym_EQ, - STATE(11809), 1, + ACTIONS(16656), 1, + anon_sym_end, + STATE(11907), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443836] = 4, + [447424] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16533), 1, + ACTIONS(16658), 1, anon_sym_LPAREN, - STATE(11810), 1, + STATE(11908), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443850] = 4, + [447438] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16535), 1, + ACTIONS(16660), 1, anon_sym_LPAREN, - STATE(11811), 1, + STATE(11909), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443864] = 4, + [447452] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16537), 1, + ACTIONS(16662), 1, anon_sym_LPAREN, - STATE(11812), 1, + STATE(11910), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443878] = 4, + [447466] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16539), 1, - anon_sym_end, - STATE(11813), 1, + ACTIONS(16664), 1, + anon_sym_RPAREN, + STATE(11911), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443892] = 4, + [447480] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16541), 1, - anon_sym_end, - STATE(11814), 1, + ACTIONS(16666), 1, + anon_sym_EQ_GT, + STATE(11912), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443906] = 4, + [447494] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16543), 1, + ACTIONS(16668), 1, anon_sym_of, - STATE(11815), 1, + STATE(11913), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443920] = 4, + [447508] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11516), 1, - anon_sym_end, - STATE(11816), 1, + ACTIONS(16670), 1, + anon_sym_SQUOTE2, + STATE(11914), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443934] = 4, + [447522] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16545), 1, - anon_sym_DASH_GT, - STATE(11817), 1, + ACTIONS(16672), 1, + sym__constant_segment, + STATE(11915), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443948] = 4, + [447536] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16547), 1, + ACTIONS(16674), 1, sym__start_of_index_operator, - STATE(11818), 1, + STATE(11916), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443962] = 4, + [447550] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16549), 1, + ACTIONS(16676), 1, anon_sym_COMMA, - STATE(11819), 1, + STATE(11917), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443976] = 4, + [447564] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16551), 1, + ACTIONS(11473), 1, anon_sym_end, - STATE(11820), 1, + STATE(11918), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [443990] = 4, + [447578] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16553), 1, - anon_sym_end, - STATE(11821), 1, + ACTIONS(16678), 1, + anon_sym_RPAREN, + STATE(11919), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444004] = 4, + [447592] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16555), 1, - anon_sym_end, - STATE(11822), 1, + ACTIONS(16680), 1, + anon_sym_EQ_GT, + STATE(11920), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444018] = 4, + [447606] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16557), 1, - anon_sym_EQ_GT, - STATE(11823), 1, + ACTIONS(16682), 1, + aux_sym_type_declaration_token1, + STATE(11921), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [444032] = 4, + [447622] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16559), 1, + ACTIONS(16684), 1, anon_sym_LPAREN, - STATE(11824), 1, + STATE(11922), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444046] = 4, + [447636] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16561), 1, + ACTIONS(16686), 1, anon_sym_LPAREN, - STATE(11825), 1, + STATE(11923), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444060] = 4, + [447650] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16563), 1, + ACTIONS(16688), 1, anon_sym_LPAREN, - STATE(11826), 1, + STATE(11924), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444074] = 4, + [447664] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16565), 1, - anon_sym_RPAREN, - STATE(11827), 1, + ACTIONS(16690), 1, + anon_sym_of, + STATE(11925), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444088] = 4, + [447678] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16567), 1, - anon_sym_end, - STATE(11828), 1, + ACTIONS(16692), 1, + anon_sym_yield, + STATE(11926), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444102] = 4, + [447692] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16569), 1, + ACTIONS(16694), 1, anon_sym_of, - STATE(11829), 1, + STATE(11927), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444116] = 4, + [447706] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16571), 1, - anon_sym_end, - STATE(11830), 1, + ACTIONS(16696), 1, + anon_sym_DASH_GT, + STATE(11928), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444130] = 4, + [447720] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16573), 1, - anon_sym_RPAREN, - STATE(11831), 1, + ACTIONS(16698), 1, + anon_sym_end, + STATE(11929), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444144] = 4, + [447734] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16575), 1, + ACTIONS(16700), 1, sym__start_of_index_operator, - STATE(11832), 1, + STATE(11930), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444158] = 4, + [447748] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16577), 1, + ACTIONS(16702), 1, anon_sym_COMMA, - STATE(11833), 1, + STATE(11931), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444172] = 4, + [447762] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16579), 1, - anon_sym_RPAREN, - STATE(11834), 1, + ACTIONS(16704), 1, + anon_sym_end, + STATE(11932), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444186] = 4, + [447776] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16581), 1, + ACTIONS(16706), 1, anon_sym_end, - STATE(11835), 1, + STATE(11933), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444200] = 4, + [447790] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16583), 1, - anon_sym_SQUOTE2, - STATE(11836), 1, + ACTIONS(16708), 1, + anon_sym_end, + STATE(11934), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444214] = 4, + [447804] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16585), 1, + ACTIONS(16710), 1, anon_sym_end, - STATE(11837), 1, + STATE(11935), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444228] = 4, + [447818] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16587), 1, + ACTIONS(16712), 1, anon_sym_LPAREN, - STATE(11838), 1, + STATE(11936), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444242] = 4, + [447832] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16589), 1, + ACTIONS(16714), 1, anon_sym_LPAREN, - STATE(11839), 1, + STATE(11937), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444256] = 4, + [447846] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16591), 1, + ACTIONS(16716), 1, anon_sym_LPAREN, - STATE(11840), 1, + STATE(11938), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444270] = 4, + [447860] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16593), 1, - anon_sym_EQ_GT, - STATE(11841), 1, + ACTIONS(16718), 1, + anon_sym_end, + STATE(11939), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444284] = 4, + [447874] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16595), 1, - anon_sym_DASH_GT, - STATE(11842), 1, + ACTIONS(16720), 1, + sym__constant_segment, + STATE(11940), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444298] = 4, + [447888] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16597), 1, + ACTIONS(16722), 1, anon_sym_of, - STATE(11843), 1, + STATE(11941), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444312] = 4, + [447902] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16599), 1, - anon_sym_of, - STATE(11844), 1, + ACTIONS(16724), 1, + aux_sym_type_declaration_token1, + STATE(11942), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [444326] = 4, + [447918] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16601), 1, - anon_sym_end, - STATE(11845), 1, + ACTIONS(16726), 1, + anon_sym_yield, + STATE(11943), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444340] = 4, + [447932] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16603), 1, + ACTIONS(16728), 1, sym__start_of_index_operator, - STATE(11846), 1, + STATE(11944), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444354] = 4, + [447946] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16605), 1, + ACTIONS(16730), 1, anon_sym_COMMA, - STATE(11847), 1, + STATE(11945), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444368] = 4, + [447960] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16607), 1, - anon_sym_end, - STATE(11848), 1, + ACTIONS(16732), 1, + anon_sym_RPAREN, + STATE(11946), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444382] = 4, + [447974] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16609), 1, + ACTIONS(16734), 1, anon_sym_end, - STATE(11849), 1, + STATE(11947), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444396] = 4, + [447988] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5518), 1, - anon_sym_COLON, - STATE(11850), 1, + ACTIONS(16736), 1, + anon_sym_RPAREN, + STATE(11948), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444410] = 4, + [448002] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(5579), 1, - anon_sym_COLON, - STATE(11851), 1, + ACTIONS(16738), 1, + anon_sym_RPAREN, + STATE(11949), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444424] = 4, + [448016] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16611), 1, + ACTIONS(16740), 1, anon_sym_LPAREN, - STATE(11852), 1, + STATE(11950), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444438] = 4, + [448030] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16613), 1, + ACTIONS(16742), 1, anon_sym_LPAREN, - STATE(11853), 1, + STATE(11951), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444452] = 4, + [448044] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16615), 1, + ACTIONS(16744), 1, anon_sym_LPAREN, - STATE(11854), 1, + STATE(11952), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444466] = 4, + [448058] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16617), 1, - sym__constant_segment, - STATE(11855), 1, + ACTIONS(16746), 1, + anon_sym_RPAREN, + STATE(11953), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444480] = 4, + [448072] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16619), 1, + ACTIONS(16748), 1, anon_sym_end, - STATE(11856), 1, + STATE(11954), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444494] = 4, + [448086] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16621), 1, + ACTIONS(16750), 1, anon_sym_of, - STATE(11857), 1, + STATE(11955), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444508] = 4, + [448100] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(13608), 1, - anon_sym_RPAREN, - STATE(11858), 1, + ACTIONS(16752), 1, + anon_sym_end, + STATE(11956), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444522] = 4, + [448114] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16623), 1, - sym__constant_segment, - STATE(11859), 1, + ACTIONS(16754), 1, + anon_sym_end, + STATE(11957), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444536] = 4, + [448128] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16625), 1, + ACTIONS(16756), 1, sym__start_of_index_operator, - STATE(11860), 1, + STATE(11958), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444550] = 4, + [448142] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16627), 1, + ACTIONS(16758), 1, anon_sym_COMMA, - STATE(11861), 1, + STATE(11959), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444564] = 4, + [448156] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16629), 1, + ACTIONS(16760), 1, anon_sym_end, - STATE(11862), 1, + STATE(11960), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444578] = 4, + [448170] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16631), 1, - anon_sym_DASH_GT, - STATE(11863), 1, + ACTIONS(16762), 1, + anon_sym_class, + STATE(11961), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444592] = 4, + [448184] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16633), 1, + ACTIONS(16764), 1, anon_sym_LPAREN, - STATE(11864), 1, + STATE(11962), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444606] = 4, + [448198] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16635), 1, + ACTIONS(16766), 1, anon_sym_LPAREN, - STATE(11865), 1, + STATE(11963), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444620] = 4, + [448212] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16637), 1, + ACTIONS(16768), 1, anon_sym_LPAREN, - STATE(11866), 1, + STATE(11964), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444634] = 4, + [448226] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16639), 1, + ACTIONS(16770), 1, anon_sym_of, - STATE(11867), 1, + STATE(11965), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444648] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [448240] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16641), 1, - aux_sym_type_declaration_token1, - STATE(11868), 1, + ACTIONS(16772), 1, + anon_sym_end, + STATE(11966), 1, sym_heredoc_body, - [444664] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [448254] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16643), 1, - anon_sym_RPAREN, - STATE(11869), 1, + ACTIONS(16774), 1, + anon_sym_RBRACE, + STATE(11967), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444678] = 4, + [448268] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16645), 1, + ACTIONS(16776), 1, sym__start_of_index_operator, - STATE(11870), 1, + STATE(11968), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444692] = 4, + [448282] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16647), 1, + ACTIONS(16778), 1, anon_sym_COMMA, - STATE(11871), 1, + STATE(11969), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444706] = 4, + [448296] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16649), 1, + ACTIONS(16780), 1, anon_sym_end, - STATE(11872), 1, + STATE(11970), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444720] = 4, + [448310] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16651), 1, - anon_sym_COMMA, - STATE(11873), 1, + ACTIONS(16782), 1, + anon_sym_end, + STATE(11971), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444734] = 4, + [448324] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16653), 1, + ACTIONS(16784), 1, anon_sym_LPAREN, - STATE(11874), 1, + STATE(11972), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444748] = 4, + [448338] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16655), 1, + ACTIONS(16786), 1, anon_sym_of, - STATE(11875), 1, + STATE(11973), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444762] = 4, + [448352] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16657), 1, + ACTIONS(11483), 1, anon_sym_end, - STATE(11876), 1, + STATE(11974), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444776] = 4, + [448366] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16659), 1, + ACTIONS(16788), 1, anon_sym_end, - STATE(11877), 1, + STATE(11975), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444790] = 4, + [448380] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16661), 1, + ACTIONS(16790), 1, sym__start_of_index_operator, - STATE(11878), 1, + STATE(11976), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444804] = 4, + [448394] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16663), 1, - anon_sym_EQ_GT, - STATE(11879), 1, + ACTIONS(16792), 1, + anon_sym_end, + STATE(11977), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444818] = 4, + [448408] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16665), 1, - anon_sym_RPAREN, - STATE(11880), 1, + ACTIONS(16794), 1, + anon_sym_end, + STATE(11978), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444832] = 4, + [448422] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16667), 1, + ACTIONS(16796), 1, anon_sym_LPAREN, - STATE(11881), 1, + STATE(11979), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444846] = 4, + [448436] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16669), 1, + ACTIONS(16798), 1, anon_sym_of, - STATE(11882), 1, + STATE(11980), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444860] = 4, + [448450] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16671), 1, + ACTIONS(16800), 1, anon_sym_end, - STATE(11883), 1, + STATE(11981), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444874] = 4, + [448464] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(7014), 1, - anon_sym_COLON, - STATE(11884), 1, + ACTIONS(16802), 1, + anon_sym_end, + STATE(11982), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444888] = 4, + [448478] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16673), 1, + ACTIONS(16804), 1, anon_sym_LPAREN, - STATE(11885), 1, + STATE(11983), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444902] = 4, + [448492] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16675), 1, + ACTIONS(16806), 1, anon_sym_of, - STATE(11886), 1, + STATE(11984), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444916] = 4, + [448506] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16677), 1, + ACTIONS(16808), 1, anon_sym_end, - STATE(11887), 1, + STATE(11985), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444930] = 4, + [448520] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16679), 1, + ACTIONS(16810), 1, anon_sym_end, - STATE(11888), 1, + STATE(11986), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444944] = 4, + [448534] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16681), 1, + ACTIONS(16812), 1, anon_sym_LPAREN, - STATE(11889), 1, + STATE(11987), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444958] = 4, + [448548] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16683), 1, + ACTIONS(16814), 1, anon_sym_of, - STATE(11890), 1, + STATE(11988), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444972] = 4, + [448562] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16685), 1, - anon_sym_end, - STATE(11891), 1, + ACTIONS(16816), 1, + anon_sym_RPAREN, + STATE(11989), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [444986] = 4, + [448576] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16687), 1, - anon_sym_DASH_GT, - STATE(11892), 1, + ACTIONS(16818), 1, + anon_sym_end, + STATE(11990), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445000] = 4, + [448590] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16689), 1, + ACTIONS(16820), 1, anon_sym_LPAREN, - STATE(11893), 1, + STATE(11991), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445014] = 4, + [448604] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16691), 1, - anon_sym_SQUOTE2, - STATE(11894), 1, + ACTIONS(16822), 1, + anon_sym_end, + STATE(11992), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445028] = 4, + [448618] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16693), 1, - sym__start_of_index_operator, - STATE(11895), 1, + ACTIONS(16824), 1, + anon_sym_EQ_GT, + STATE(11993), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445042] = 4, + [448632] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16695), 1, + ACTIONS(16826), 1, anon_sym_LPAREN, - STATE(11896), 1, + STATE(11994), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445056] = 4, + [448646] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16697), 1, - sym__constant_segment, - STATE(11897), 1, + ACTIONS(16828), 1, + anon_sym_end, + STATE(11995), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445070] = 4, + [448660] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16699), 1, - anon_sym_SQUOTE2, - STATE(11898), 1, + ACTIONS(16830), 1, + anon_sym_end, + STATE(11996), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445084] = 4, + [448674] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16701), 1, + ACTIONS(16832), 1, anon_sym_LPAREN, - STATE(11899), 1, + STATE(11997), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445098] = 4, + [448688] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16703), 1, + ACTIONS(16834), 1, anon_sym_end, - STATE(11900), 1, + STATE(11998), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445112] = 4, + [448702] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16705), 1, + ACTIONS(16836), 1, anon_sym_end, - STATE(11901), 1, + STATE(11999), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445126] = 4, + [448716] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16707), 1, + ACTIONS(16838), 1, anon_sym_LPAREN, - STATE(11902), 1, + STATE(12000), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445140] = 4, + [448730] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16709), 1, - anon_sym_end, - STATE(11903), 1, + ACTIONS(16840), 1, + anon_sym_DASH_GT, + STATE(12001), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445154] = 4, + [448744] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16711), 1, - sym__constant_segment, - STATE(11904), 1, + ACTIONS(16842), 1, + anon_sym_RPAREN, + STATE(12002), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445168] = 4, + [448758] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16713), 1, + ACTIONS(16844), 1, anon_sym_LPAREN, - STATE(11905), 1, + STATE(12003), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445182] = 4, + [448772] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16715), 1, - sym__constant_segment, - STATE(11906), 1, + ACTIONS(11598), 1, + anon_sym_end, + STATE(12004), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445196] = 4, + [448786] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16717), 1, + ACTIONS(16846), 1, anon_sym_LPAREN, - STATE(11907), 1, + STATE(12005), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445210] = 4, + [448800] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16719), 1, - anon_sym_of, - STATE(11908), 1, + ACTIONS(16848), 1, + anon_sym_end, + STATE(12006), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445224] = 4, + [448814] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16721), 1, - anon_sym_yield, - STATE(11909), 1, + ACTIONS(16850), 1, + anon_sym_RPAREN, + STATE(12007), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445238] = 4, + [448828] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16723), 1, - anon_sym_DOT, - STATE(11910), 1, + ACTIONS(16852), 1, + anon_sym_end, + STATE(12008), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445252] = 4, + [448842] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16725), 1, - anon_sym_end, - STATE(11911), 1, + ACTIONS(16854), 1, + anon_sym_RPAREN, + STATE(12009), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445266] = 4, + [448856] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16727), 1, - sym__constant_segment, - STATE(11912), 1, + ACTIONS(16856), 1, + anon_sym_end, + STATE(12010), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445280] = 4, + [448870] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16729), 1, - anon_sym_end, - STATE(11913), 1, + ACTIONS(16858), 1, + anon_sym_RPAREN, + STATE(12011), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445294] = 4, + [448884] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16731), 1, + ACTIONS(16860), 1, anon_sym_end, - STATE(11914), 1, + STATE(12012), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445308] = 4, + [448898] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16733), 1, - anon_sym_RPAREN, - STATE(11915), 1, + ACTIONS(16862), 1, + anon_sym_end, + STATE(12013), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445322] = 4, + [448912] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16735), 1, - anon_sym_end, - STATE(11916), 1, + ACTIONS(16864), 1, + sym__constant_segment, + STATE(12014), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445336] = 4, + [448926] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16737), 1, + ACTIONS(16866), 1, anon_sym_RPAREN, - STATE(11917), 1, + STATE(12015), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445350] = 4, + [448940] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16739), 1, + ACTIONS(16868), 1, anon_sym_RPAREN, - STATE(11918), 1, + STATE(12016), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445364] = 4, + [448954] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16741), 1, - anon_sym_LPAREN, - STATE(11919), 1, + ACTIONS(16870), 1, + anon_sym_end, + STATE(12017), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445378] = 4, + [448968] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16743), 1, - anon_sym_end, - STATE(11920), 1, + ACTIONS(16872), 1, + anon_sym_class, + STATE(12018), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445392] = 4, + [448982] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16745), 1, + ACTIONS(16874), 1, anon_sym_end, - STATE(11921), 1, + STATE(12019), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445406] = 4, + [448996] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16747), 1, + ACTIONS(16876), 1, anon_sym_end, - STATE(11922), 1, + STATE(12020), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445420] = 4, + [449010] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16749), 1, - anon_sym_of, - STATE(11923), 1, + ACTIONS(16878), 1, + anon_sym_end, + STATE(12021), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445434] = 4, + [449024] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16751), 1, - anon_sym_class, - STATE(11924), 1, + ACTIONS(16880), 1, + anon_sym_end, + STATE(12022), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445448] = 4, + [449038] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16753), 1, - sym__constant_segment, - STATE(11925), 1, + ACTIONS(16882), 1, + anon_sym_end, + STATE(12023), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445462] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [449052] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16755), 1, - aux_sym_type_declaration_token1, - STATE(11926), 1, + ACTIONS(16884), 1, + anon_sym_of, + STATE(12024), 1, sym_heredoc_body, - [445478] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [449066] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16757), 1, + ACTIONS(16886), 1, anon_sym_end, - STATE(11927), 1, + STATE(12025), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445492] = 4, + [449080] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16759), 1, + ACTIONS(16888), 1, anon_sym_end, - STATE(11928), 1, + STATE(12026), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445506] = 4, + [449094] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16761), 1, - sym__constant_segment, - STATE(11929), 1, + ACTIONS(16890), 1, + anon_sym_end, + STATE(12027), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445520] = 4, + [449108] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16763), 1, - anon_sym_LPAREN, - STATE(11930), 1, + ACTIONS(16892), 1, + anon_sym_COMMA, + STATE(12028), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445534] = 4, + [449122] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16765), 1, - anon_sym_end, - STATE(11931), 1, + ACTIONS(16894), 1, + sym__constant_segment, + STATE(12029), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445548] = 4, + [449136] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16767), 1, + ACTIONS(16896), 1, anon_sym_of, - STATE(11932), 1, + STATE(12030), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445562] = 4, + [449150] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16769), 1, - sym__constant_segment, - STATE(11933), 1, + ACTIONS(16898), 1, + anon_sym_end, + STATE(12031), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445576] = 4, + [449164] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16771), 1, + ACTIONS(16900), 1, anon_sym_end, - STATE(11934), 1, + STATE(12032), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445590] = 4, + [449178] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11424), 1, + ACTIONS(16902), 1, anon_sym_end, - STATE(11935), 1, + STATE(12033), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445604] = 4, + [449192] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym__line_continuation, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16773), 1, - anon_sym_RPAREN, - STATE(11936), 1, + ACTIONS(16904), 1, + aux_sym_type_declaration_token1, + STATE(12034), 1, sym_heredoc_body, - ACTIONS(5), 2, - sym__line_continuation, - sym_comment, - [445618] = 4, + [449208] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16775), 1, - anon_sym_yield, - STATE(11937), 1, + ACTIONS(16906), 1, + anon_sym_end, + STATE(12035), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445632] = 4, + [449222] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16777), 1, + ACTIONS(16908), 1, anon_sym_end, - STATE(11938), 1, + STATE(12036), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445646] = 4, + [449236] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16779), 1, - sym__constant_segment, - STATE(11939), 1, + ACTIONS(16910), 1, + anon_sym_end, + STATE(12037), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445660] = 4, + [449250] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16781), 1, - anon_sym_of, - STATE(11940), 1, + ACTIONS(16912), 1, + anon_sym_end, + STATE(12038), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445674] = 4, + [449264] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16783), 1, + ACTIONS(16914), 1, anon_sym_end, - STATE(11941), 1, + STATE(12039), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445688] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5), 1, - sym__line_continuation, + [449278] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16785), 1, - aux_sym_type_declaration_token1, - STATE(11942), 1, + ACTIONS(16916), 1, + anon_sym_end, + STATE(12040), 1, sym_heredoc_body, - [445704] = 4, + ACTIONS(5), 2, + sym__line_continuation, + sym_comment, + [449292] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16787), 1, + ACTIONS(16918), 1, anon_sym_end, - STATE(11943), 1, + STATE(12041), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445718] = 4, + [449306] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16789), 1, + ACTIONS(16920), 1, anon_sym_yield, - STATE(11944), 1, + STATE(12042), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445732] = 4, + [449320] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16791), 1, - anon_sym_end, - STATE(11945), 1, + ACTIONS(16922), 1, + anon_sym_RBRACK, + STATE(12043), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445746] = 4, + [449334] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16793), 1, - anon_sym_DASH_GT, - STATE(11946), 1, + ACTIONS(16924), 1, + anon_sym_EQ_GT, + STATE(12044), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445760] = 4, + [449348] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16795), 1, - anon_sym_RPAREN, - STATE(11947), 1, + ACTIONS(16926), 1, + anon_sym_end, + STATE(12045), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445774] = 4, + [449362] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16797), 1, - anon_sym_RBRACE, - STATE(11948), 1, + ACTIONS(16928), 1, + anon_sym_end, + STATE(12046), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445788] = 4, + [449376] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16799), 1, - anon_sym_RPAREN, - STATE(11949), 1, + ACTIONS(16930), 1, + anon_sym_end, + STATE(12047), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445802] = 4, + [449390] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16801), 1, - anon_sym_EQ_GT, - STATE(11950), 1, + ACTIONS(16932), 1, + anon_sym_RPAREN, + STATE(12048), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445816] = 4, + [449404] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16803), 1, - anon_sym_RBRACK, - STATE(11951), 1, + ACTIONS(16934), 1, + anon_sym_end, + STATE(12049), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445830] = 4, + [449418] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16805), 1, + ACTIONS(16936), 1, anon_sym_end, - STATE(11952), 1, + STATE(12050), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445844] = 4, + [449432] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16807), 1, - anon_sym_end, - STATE(11953), 1, + ACTIONS(16938), 1, + anon_sym_yield, + STATE(12051), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445858] = 4, + [449446] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(11406), 1, - anon_sym_end, - STATE(11954), 1, + ACTIONS(16940), 1, + anon_sym_RBRACK, + STATE(12052), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445872] = 4, + [449460] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16809), 1, - anon_sym_yield, - STATE(11955), 1, + ACTIONS(16942), 1, + anon_sym_RBRACK, + STATE(12053), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445886] = 4, + [449474] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16811), 1, - anon_sym_end, - STATE(11956), 1, + ACTIONS(16944), 1, + anon_sym_RPAREN, + STATE(12054), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445900] = 4, + [449488] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16813), 1, + ACTIONS(16946), 1, anon_sym_end, - STATE(11957), 1, + STATE(12055), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445914] = 4, + [449502] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16815), 1, - anon_sym_RPAREN, - STATE(11958), 1, + ACTIONS(16948), 1, + anon_sym_end, + STATE(12056), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445928] = 4, + [449516] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16817), 1, - anon_sym_class, - STATE(11959), 1, + ACTIONS(16950), 1, + sym__constant_segment, + STATE(12057), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445942] = 4, + [449530] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16819), 1, - anon_sym_RPAREN, - STATE(11960), 1, + ACTIONS(16952), 1, + anon_sym_end, + STATE(12058), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445956] = 4, + [449544] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16821), 1, - anon_sym_RPAREN, - STATE(11961), 1, + ACTIONS(16954), 1, + anon_sym_end, + STATE(12059), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445970] = 4, + [449558] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16823), 1, + ACTIONS(16956), 1, anon_sym_LPAREN, - STATE(11962), 1, + STATE(12060), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445984] = 4, + [449572] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16825), 1, + ACTIONS(16958), 1, anon_sym_RPAREN, - STATE(11963), 1, + STATE(12061), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [445998] = 4, + [449586] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16827), 1, - anon_sym_end, - STATE(11964), 1, + ACTIONS(16960), 1, + anon_sym_RPAREN, + STATE(12062), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446012] = 4, + [449600] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16829), 1, - anon_sym_end, - STATE(11965), 1, + ACTIONS(16962), 1, + anon_sym_EQ_GT, + STATE(12063), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446026] = 4, + [449614] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16831), 1, + ACTIONS(11564), 1, anon_sym_end, - STATE(11966), 1, + STATE(12064), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446040] = 4, + [449628] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16833), 1, + ACTIONS(16964), 1, anon_sym_LPAREN, - STATE(11967), 1, + STATE(12065), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446054] = 4, + [449642] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16835), 1, + ACTIONS(16966), 1, anon_sym_LPAREN, - STATE(11968), 1, + STATE(12066), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446068] = 4, + [449656] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16837), 1, + ACTIONS(16968), 1, anon_sym_LPAREN, - STATE(11969), 1, + STATE(12067), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446082] = 4, + [449670] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16839), 1, + ACTIONS(16970), 1, anon_sym_LPAREN, - STATE(11970), 1, + STATE(12068), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446096] = 4, + [449684] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16841), 1, + ACTIONS(16972), 1, anon_sym_LPAREN, - STATE(11971), 1, + STATE(12069), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446110] = 4, + [449698] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16843), 1, + ACTIONS(16974), 1, anon_sym_LPAREN, - STATE(11972), 1, + STATE(12070), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446124] = 4, + [449712] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16845), 1, + ACTIONS(16976), 1, anon_sym_LPAREN, - STATE(11973), 1, + STATE(12071), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446138] = 4, + [449726] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16847), 1, + ACTIONS(16978), 1, anon_sym_LPAREN, - STATE(11974), 1, + STATE(12072), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446152] = 4, + [449740] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16849), 1, + ACTIONS(16980), 1, anon_sym_LPAREN, - STATE(11975), 1, + STATE(12073), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446166] = 4, + [449754] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16851), 1, + ACTIONS(16982), 1, anon_sym_LPAREN, - STATE(11976), 1, + STATE(12074), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446180] = 4, + [449768] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16853), 1, + ACTIONS(16984), 1, anon_sym_LPAREN, - STATE(11977), 1, + STATE(12075), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446194] = 4, + [449782] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16855), 1, + ACTIONS(16986), 1, anon_sym_LPAREN, - STATE(11978), 1, + STATE(12076), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446208] = 4, + [449796] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(16857), 1, + ACTIONS(16988), 1, anon_sym_LPAREN, - STATE(11979), 1, + STATE(12077), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446222] = 4, + [449810] = 4, ACTIONS(7), 1, sym__heredoc_body_start, - ACTIONS(12168), 1, - anon_sym_RPAREN, - STATE(11980), 1, + ACTIONS(16990), 1, + anon_sym_DASH_GT, + STATE(12078), 1, sym_heredoc_body, ACTIONS(5), 2, sym__line_continuation, sym_comment, - [446236] = 1, - ACTIONS(16859), 1, + [449824] = 1, + ACTIONS(16992), 1, ts_builtin_sym_end, - [446240] = 1, - ACTIONS(16861), 1, + [449828] = 1, + ACTIONS(16994), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2300)] = 0, [SMALL_STATE(2301)] = 81, - [SMALL_STATE(2302)] = 178, - [SMALL_STATE(2303)] = 253, - [SMALL_STATE(2304)] = 332, + [SMALL_STATE(2302)] = 160, + [SMALL_STATE(2303)] = 235, + [SMALL_STATE(2304)] = 310, [SMALL_STATE(2305)] = 407, [SMALL_STATE(2306)] = 488, - [SMALL_STATE(2307)] = 569, + [SMALL_STATE(2307)] = 585, [SMALL_STATE(2308)] = 666, [SMALL_STATE(2309)] = 762, - [SMALL_STATE(2310)] = 858, + [SMALL_STATE(2310)] = 840, [SMALL_STATE(2311)] = 936, [SMALL_STATE(2312)] = 1014, [SMALL_STATE(2313)] = 1093, [SMALL_STATE(2314)] = 1172, [SMALL_STATE(2315)] = 1246, - [SMALL_STATE(2316)] = 1324, - [SMALL_STATE(2317)] = 1400, - [SMALL_STATE(2318)] = 1476, - [SMALL_STATE(2319)] = 1552, + [SMALL_STATE(2316)] = 1322, + [SMALL_STATE(2317)] = 1394, + [SMALL_STATE(2318)] = 1472, + [SMALL_STATE(2319)] = 1548, [SMALL_STATE(2320)] = 1624, - [SMALL_STATE(2321)] = 1700, - [SMALL_STATE(2322)] = 1776, + [SMALL_STATE(2321)] = 1702, + [SMALL_STATE(2322)] = 1778, [SMALL_STATE(2323)] = 1854, [SMALL_STATE(2324)] = 1930, - [SMALL_STATE(2325)] = 2007, - [SMALL_STATE(2326)] = 2078, - [SMALL_STATE(2327)] = 2153, - [SMALL_STATE(2328)] = 2224, - [SMALL_STATE(2329)] = 2301, - [SMALL_STATE(2330)] = 2376, - [SMALL_STATE(2331)] = 2447, - [SMALL_STATE(2332)] = 2521, - [SMALL_STATE(2333)] = 2595, - [SMALL_STATE(2334)] = 2669, - [SMALL_STATE(2335)] = 2743, - [SMALL_STATE(2336)] = 2825, - [SMALL_STATE(2337)] = 2897, - [SMALL_STATE(2338)] = 2971, - [SMALL_STATE(2339)] = 3047, - [SMALL_STATE(2340)] = 3129, - [SMALL_STATE(2341)] = 3203, - [SMALL_STATE(2342)] = 3285, - [SMALL_STATE(2343)] = 3355, - [SMALL_STATE(2344)] = 3427, - [SMALL_STATE(2345)] = 3499, - [SMALL_STATE(2346)] = 3573, - [SMALL_STATE(2347)] = 3645, - [SMALL_STATE(2348)] = 3721, - [SMALL_STATE(2349)] = 3795, - [SMALL_STATE(2350)] = 3877, - [SMALL_STATE(2351)] = 3959, - [SMALL_STATE(2352)] = 4029, - [SMALL_STATE(2353)] = 4103, - [SMALL_STATE(2354)] = 4173, - [SMALL_STATE(2355)] = 4242, - [SMALL_STATE(2356)] = 4323, + [SMALL_STATE(2325)] = 2001, + [SMALL_STATE(2326)] = 2072, + [SMALL_STATE(2327)] = 2149, + [SMALL_STATE(2328)] = 2220, + [SMALL_STATE(2329)] = 2297, + [SMALL_STATE(2330)] = 2372, + [SMALL_STATE(2331)] = 2443, + [SMALL_STATE(2332)] = 2518, + [SMALL_STATE(2333)] = 2592, + [SMALL_STATE(2334)] = 2674, + [SMALL_STATE(2335)] = 2748, + [SMALL_STATE(2336)] = 2824, + [SMALL_STATE(2337)] = 2896, + [SMALL_STATE(2338)] = 2966, + [SMALL_STATE(2339)] = 3048, + [SMALL_STATE(2340)] = 3122, + [SMALL_STATE(2341)] = 3196, + [SMALL_STATE(2342)] = 3268, + [SMALL_STATE(2343)] = 3338, + [SMALL_STATE(2344)] = 3412, + [SMALL_STATE(2345)] = 3486, + [SMALL_STATE(2346)] = 3560, + [SMALL_STATE(2347)] = 3634, + [SMALL_STATE(2348)] = 3706, + [SMALL_STATE(2349)] = 3788, + [SMALL_STATE(2350)] = 3870, + [SMALL_STATE(2351)] = 3940, + [SMALL_STATE(2352)] = 4012, + [SMALL_STATE(2353)] = 4086, + [SMALL_STATE(2354)] = 4162, + [SMALL_STATE(2355)] = 4244, + [SMALL_STATE(2356)] = 4317, [SMALL_STATE(2357)] = 4392, - [SMALL_STATE(2358)] = 4467, - [SMALL_STATE(2359)] = 4548, - [SMALL_STATE(2360)] = 4617, - [SMALL_STATE(2361)] = 4688, - [SMALL_STATE(2362)] = 4757, - [SMALL_STATE(2363)] = 4826, - [SMALL_STATE(2364)] = 4895, - [SMALL_STATE(2365)] = 4964, - [SMALL_STATE(2366)] = 5033, - [SMALL_STATE(2367)] = 5102, - [SMALL_STATE(2368)] = 5171, - [SMALL_STATE(2369)] = 5240, - [SMALL_STATE(2370)] = 5315, - [SMALL_STATE(2371)] = 5388, - [SMALL_STATE(2372)] = 5461, - [SMALL_STATE(2373)] = 5530, - [SMALL_STATE(2374)] = 5607, - [SMALL_STATE(2375)] = 5676, - [SMALL_STATE(2376)] = 5745, - [SMALL_STATE(2377)] = 5820, - [SMALL_STATE(2378)] = 5889, - [SMALL_STATE(2379)] = 5970, - [SMALL_STATE(2380)] = 6039, - [SMALL_STATE(2381)] = 6108, - [SMALL_STATE(2382)] = 6177, - [SMALL_STATE(2383)] = 6246, - [SMALL_STATE(2384)] = 6315, - [SMALL_STATE(2385)] = 6396, - [SMALL_STATE(2386)] = 6469, - [SMALL_STATE(2387)] = 6540, - [SMALL_STATE(2388)] = 6621, - [SMALL_STATE(2389)] = 6690, - [SMALL_STATE(2390)] = 6766, + [SMALL_STATE(2358)] = 4473, + [SMALL_STATE(2359)] = 4554, + [SMALL_STATE(2360)] = 4635, + [SMALL_STATE(2361)] = 4716, + [SMALL_STATE(2362)] = 4785, + [SMALL_STATE(2363)] = 4866, + [SMALL_STATE(2364)] = 4943, + [SMALL_STATE(2365)] = 5012, + [SMALL_STATE(2366)] = 5081, + [SMALL_STATE(2367)] = 5150, + [SMALL_STATE(2368)] = 5219, + [SMALL_STATE(2369)] = 5288, + [SMALL_STATE(2370)] = 5357, + [SMALL_STATE(2371)] = 5426, + [SMALL_STATE(2372)] = 5495, + [SMALL_STATE(2373)] = 5568, + [SMALL_STATE(2374)] = 5639, + [SMALL_STATE(2375)] = 5708, + [SMALL_STATE(2376)] = 5777, + [SMALL_STATE(2377)] = 5846, + [SMALL_STATE(2378)] = 5921, + [SMALL_STATE(2379)] = 5990, + [SMALL_STATE(2380)] = 6059, + [SMALL_STATE(2381)] = 6128, + [SMALL_STATE(2382)] = 6197, + [SMALL_STATE(2383)] = 6272, + [SMALL_STATE(2384)] = 6341, + [SMALL_STATE(2385)] = 6412, + [SMALL_STATE(2386)] = 6481, + [SMALL_STATE(2387)] = 6550, + [SMALL_STATE(2388)] = 6623, + [SMALL_STATE(2389)] = 6692, + [SMALL_STATE(2390)] = 6762, [SMALL_STATE(2391)] = 6836, - [SMALL_STATE(2392)] = 6906, + [SMALL_STATE(2392)] = 6910, [SMALL_STATE(2393)] = 6980, - [SMALL_STATE(2394)] = 7060, - [SMALL_STATE(2395)] = 7140, - [SMALL_STATE(2396)] = 7220, - [SMALL_STATE(2397)] = 7296, - [SMALL_STATE(2398)] = 7368, - [SMALL_STATE(2399)] = 7440, - [SMALL_STATE(2400)] = 7512, - [SMALL_STATE(2401)] = 7586, - [SMALL_STATE(2402)] = 7658, + [SMALL_STATE(2394)] = 7054, + [SMALL_STATE(2395)] = 7124, + [SMALL_STATE(2396)] = 7204, + [SMALL_STATE(2397)] = 7276, + [SMALL_STATE(2398)] = 7352, + [SMALL_STATE(2399)] = 7426, + [SMALL_STATE(2400)] = 7502, + [SMALL_STATE(2401)] = 7578, + [SMALL_STATE(2402)] = 7654, [SMALL_STATE(2403)] = 7730, [SMALL_STATE(2404)] = 7806, - [SMALL_STATE(2405)] = 7874, - [SMALL_STATE(2406)] = 7950, + [SMALL_STATE(2405)] = 7878, + [SMALL_STATE(2406)] = 7954, [SMALL_STATE(2407)] = 8026, - [SMALL_STATE(2408)] = 8106, - [SMALL_STATE(2409)] = 8182, - [SMALL_STATE(2410)] = 8262, - [SMALL_STATE(2411)] = 8336, - [SMALL_STATE(2412)] = 8412, - [SMALL_STATE(2413)] = 8486, - [SMALL_STATE(2414)] = 8558, - [SMALL_STATE(2415)] = 8630, - [SMALL_STATE(2416)] = 8702, - [SMALL_STATE(2417)] = 8776, - [SMALL_STATE(2418)] = 8846, - [SMALL_STATE(2419)] = 8918, - [SMALL_STATE(2420)] = 8994, - [SMALL_STATE(2421)] = 9064, - [SMALL_STATE(2422)] = 9136, - [SMALL_STATE(2423)] = 9212, - [SMALL_STATE(2424)] = 9279, - [SMALL_STATE(2425)] = 9358, - [SMALL_STATE(2426)] = 9431, - [SMALL_STATE(2427)] = 9498, - [SMALL_STATE(2428)] = 9569, - [SMALL_STATE(2429)] = 9636, - [SMALL_STATE(2430)] = 9715, - [SMALL_STATE(2431)] = 9788, - [SMALL_STATE(2432)] = 9855, - [SMALL_STATE(2433)] = 9922, - [SMALL_STATE(2434)] = 10001, - [SMALL_STATE(2435)] = 10068, - [SMALL_STATE(2436)] = 10135, - [SMALL_STATE(2437)] = 10202, - [SMALL_STATE(2438)] = 10275, - [SMALL_STATE(2439)] = 10342, - [SMALL_STATE(2440)] = 10413, - [SMALL_STATE(2441)] = 10480, - [SMALL_STATE(2442)] = 10553, - [SMALL_STATE(2443)] = 10628, - [SMALL_STATE(2444)] = 10697, - [SMALL_STATE(2445)] = 10770, - [SMALL_STATE(2446)] = 10845, - [SMALL_STATE(2447)] = 10916, - [SMALL_STATE(2448)] = 10983, - [SMALL_STATE(2449)] = 11056, - [SMALL_STATE(2450)] = 11127, - [SMALL_STATE(2451)] = 11200, - [SMALL_STATE(2452)] = 11267, - [SMALL_STATE(2453)] = 11336, - [SMALL_STATE(2454)] = 11407, + [SMALL_STATE(2408)] = 8098, + [SMALL_STATE(2409)] = 8178, + [SMALL_STATE(2410)] = 8258, + [SMALL_STATE(2411)] = 8330, + [SMALL_STATE(2412)] = 8402, + [SMALL_STATE(2413)] = 8474, + [SMALL_STATE(2414)] = 8544, + [SMALL_STATE(2415)] = 8620, + [SMALL_STATE(2416)] = 8696, + [SMALL_STATE(2417)] = 8768, + [SMALL_STATE(2418)] = 8840, + [SMALL_STATE(2419)] = 8920, + [SMALL_STATE(2420)] = 9000, + [SMALL_STATE(2421)] = 9068, + [SMALL_STATE(2422)] = 9140, + [SMALL_STATE(2423)] = 9214, + [SMALL_STATE(2424)] = 9287, + [SMALL_STATE(2425)] = 9366, + [SMALL_STATE(2426)] = 9435, + [SMALL_STATE(2427)] = 9506, + [SMALL_STATE(2428)] = 9581, + [SMALL_STATE(2429)] = 9654, + [SMALL_STATE(2430)] = 9729, + [SMALL_STATE(2431)] = 9800, + [SMALL_STATE(2432)] = 9871, + [SMALL_STATE(2433)] = 9938, + [SMALL_STATE(2434)] = 10005, + [SMALL_STATE(2435)] = 10078, + [SMALL_STATE(2436)] = 10151, + [SMALL_STATE(2437)] = 10220, + [SMALL_STATE(2438)] = 10293, + [SMALL_STATE(2439)] = 10366, + [SMALL_STATE(2440)] = 10439, + [SMALL_STATE(2441)] = 10506, + [SMALL_STATE(2442)] = 10573, + [SMALL_STATE(2443)] = 10646, + [SMALL_STATE(2444)] = 10719, + [SMALL_STATE(2445)] = 10790, + [SMALL_STATE(2446)] = 10857, + [SMALL_STATE(2447)] = 10930, + [SMALL_STATE(2448)] = 11005, + [SMALL_STATE(2449)] = 11072, + [SMALL_STATE(2450)] = 11139, + [SMALL_STATE(2451)] = 11206, + [SMALL_STATE(2452)] = 11275, + [SMALL_STATE(2453)] = 11342, + [SMALL_STATE(2454)] = 11413, [SMALL_STATE(2455)] = 11480, [SMALL_STATE(2456)] = 11547, [SMALL_STATE(2457)] = 11618, - [SMALL_STATE(2458)] = 11691, - [SMALL_STATE(2459)] = 11760, - [SMALL_STATE(2460)] = 11839, - [SMALL_STATE(2461)] = 11918, + [SMALL_STATE(2458)] = 11685, + [SMALL_STATE(2459)] = 11764, + [SMALL_STATE(2460)] = 11843, + [SMALL_STATE(2461)] = 11910, [SMALL_STATE(2462)] = 11985, - [SMALL_STATE(2463)] = 12052, - [SMALL_STATE(2464)] = 12123, - [SMALL_STATE(2465)] = 12198, - [SMALL_STATE(2466)] = 12271, - [SMALL_STATE(2467)] = 12344, - [SMALL_STATE(2468)] = 12411, - [SMALL_STATE(2469)] = 12484, - [SMALL_STATE(2470)] = 12551, - [SMALL_STATE(2471)] = 12618, - [SMALL_STATE(2472)] = 12693, - [SMALL_STATE(2473)] = 12760, - [SMALL_STATE(2474)] = 12831, - [SMALL_STATE(2475)] = 12898, - [SMALL_STATE(2476)] = 12965, - [SMALL_STATE(2477)] = 13036, - [SMALL_STATE(2478)] = 13114, - [SMALL_STATE(2479)] = 13186, - [SMALL_STATE(2480)] = 13256, - [SMALL_STATE(2481)] = 13326, - [SMALL_STATE(2482)] = 13396, - [SMALL_STATE(2483)] = 13466, - [SMALL_STATE(2484)] = 13536, - [SMALL_STATE(2485)] = 13604, - [SMALL_STATE(2486)] = 13674, - [SMALL_STATE(2487)] = 13740, - [SMALL_STATE(2488)] = 13812, - [SMALL_STATE(2489)] = 13880, - [SMALL_STATE(2490)] = 13958, - [SMALL_STATE(2491)] = 14064, - [SMALL_STATE(2492)] = 14132, - [SMALL_STATE(2493)] = 14202, - [SMALL_STATE(2494)] = 14268, - [SMALL_STATE(2495)] = 14338, - [SMALL_STATE(2496)] = 14408, - [SMALL_STATE(2497)] = 14478, - [SMALL_STATE(2498)] = 14548, - [SMALL_STATE(2499)] = 14618, - [SMALL_STATE(2500)] = 14684, - [SMALL_STATE(2501)] = 14752, - [SMALL_STATE(2502)] = 14858, - [SMALL_STATE(2503)] = 14928, - [SMALL_STATE(2504)] = 15034, - [SMALL_STATE(2505)] = 15104, - [SMALL_STATE(2506)] = 15174, - [SMALL_STATE(2507)] = 15244, - [SMALL_STATE(2508)] = 15312, - [SMALL_STATE(2509)] = 15382, - [SMALL_STATE(2510)] = 15448, - [SMALL_STATE(2511)] = 15526, - [SMALL_STATE(2512)] = 15604, - [SMALL_STATE(2513)] = 15674, - [SMALL_STATE(2514)] = 15744, - [SMALL_STATE(2515)] = 15850, - [SMALL_STATE(2516)] = 15916, - [SMALL_STATE(2517)] = 15984, - [SMALL_STATE(2518)] = 16052, - [SMALL_STATE(2519)] = 16120, - [SMALL_STATE(2520)] = 16188, - [SMALL_STATE(2521)] = 16258, - [SMALL_STATE(2522)] = 16328, - [SMALL_STATE(2523)] = 16396, - [SMALL_STATE(2524)] = 16464, - [SMALL_STATE(2525)] = 16542, - [SMALL_STATE(2526)] = 16610, - [SMALL_STATE(2527)] = 16680, - [SMALL_STATE(2528)] = 16748, - [SMALL_STATE(2529)] = 16816, - [SMALL_STATE(2530)] = 16886, - [SMALL_STATE(2531)] = 16956, - [SMALL_STATE(2532)] = 17028, - [SMALL_STATE(2533)] = 17134, - [SMALL_STATE(2534)] = 17240, - [SMALL_STATE(2535)] = 17308, - [SMALL_STATE(2536)] = 17378, - [SMALL_STATE(2537)] = 17446, - [SMALL_STATE(2538)] = 17514, - [SMALL_STATE(2539)] = 17584, - [SMALL_STATE(2540)] = 17652, - [SMALL_STATE(2541)] = 17720, - [SMALL_STATE(2542)] = 17788, - [SMALL_STATE(2543)] = 17860, - [SMALL_STATE(2544)] = 17925, - [SMALL_STATE(2545)] = 17990, - [SMALL_STATE(2546)] = 18055, - [SMALL_STATE(2547)] = 18120, - [SMALL_STATE(2548)] = 18185, - [SMALL_STATE(2549)] = 18250, - [SMALL_STATE(2550)] = 18315, - [SMALL_STATE(2551)] = 18380, - [SMALL_STATE(2552)] = 18445, - [SMALL_STATE(2553)] = 18510, - [SMALL_STATE(2554)] = 18575, - [SMALL_STATE(2555)] = 18640, - [SMALL_STATE(2556)] = 18705, - [SMALL_STATE(2557)] = 18770, - [SMALL_STATE(2558)] = 18835, - [SMALL_STATE(2559)] = 18900, - [SMALL_STATE(2560)] = 18965, - [SMALL_STATE(2561)] = 19030, - [SMALL_STATE(2562)] = 19095, - [SMALL_STATE(2563)] = 19160, - [SMALL_STATE(2564)] = 19225, - [SMALL_STATE(2565)] = 19290, - [SMALL_STATE(2566)] = 19355, - [SMALL_STATE(2567)] = 19420, - [SMALL_STATE(2568)] = 19485, - [SMALL_STATE(2569)] = 19550, - [SMALL_STATE(2570)] = 19615, - [SMALL_STATE(2571)] = 19680, - [SMALL_STATE(2572)] = 19781, - [SMALL_STATE(2573)] = 19846, - [SMALL_STATE(2574)] = 19911, - [SMALL_STATE(2575)] = 19976, - [SMALL_STATE(2576)] = 20041, - [SMALL_STATE(2577)] = 20106, - [SMALL_STATE(2578)] = 20171, - [SMALL_STATE(2579)] = 20236, - [SMALL_STATE(2580)] = 20301, - [SMALL_STATE(2581)] = 20366, - [SMALL_STATE(2582)] = 20443, - [SMALL_STATE(2583)] = 20508, - [SMALL_STATE(2584)] = 20573, - [SMALL_STATE(2585)] = 20642, - [SMALL_STATE(2586)] = 20709, - [SMALL_STATE(2587)] = 20786, - [SMALL_STATE(2588)] = 20863, - [SMALL_STATE(2589)] = 20928, - [SMALL_STATE(2590)] = 20993, - [SMALL_STATE(2591)] = 21062, - [SMALL_STATE(2592)] = 21127, - [SMALL_STATE(2593)] = 21192, - [SMALL_STATE(2594)] = 21257, - [SMALL_STATE(2595)] = 21322, - [SMALL_STATE(2596)] = 21387, - [SMALL_STATE(2597)] = 21452, - [SMALL_STATE(2598)] = 21517, - [SMALL_STATE(2599)] = 21614, - [SMALL_STATE(2600)] = 21679, - [SMALL_STATE(2601)] = 21744, - [SMALL_STATE(2602)] = 21809, - [SMALL_STATE(2603)] = 21874, - [SMALL_STATE(2604)] = 21939, - [SMALL_STATE(2605)] = 22008, - [SMALL_STATE(2606)] = 22105, - [SMALL_STATE(2607)] = 22170, - [SMALL_STATE(2608)] = 22235, - [SMALL_STATE(2609)] = 22300, - [SMALL_STATE(2610)] = 22365, - [SMALL_STATE(2611)] = 22430, - [SMALL_STATE(2612)] = 22495, - [SMALL_STATE(2613)] = 22560, - [SMALL_STATE(2614)] = 22625, - [SMALL_STATE(2615)] = 22690, - [SMALL_STATE(2616)] = 22757, - [SMALL_STATE(2617)] = 22822, - [SMALL_STATE(2618)] = 22887, - [SMALL_STATE(2619)] = 22952, - [SMALL_STATE(2620)] = 23017, - [SMALL_STATE(2621)] = 23082, - [SMALL_STATE(2622)] = 23147, - [SMALL_STATE(2623)] = 23212, - [SMALL_STATE(2624)] = 23277, - [SMALL_STATE(2625)] = 23342, - [SMALL_STATE(2626)] = 23419, - [SMALL_STATE(2627)] = 23484, - [SMALL_STATE(2628)] = 23549, - [SMALL_STATE(2629)] = 23618, - [SMALL_STATE(2630)] = 23687, - [SMALL_STATE(2631)] = 23764, - [SMALL_STATE(2632)] = 23829, - [SMALL_STATE(2633)] = 23930, - [SMALL_STATE(2634)] = 23995, - [SMALL_STATE(2635)] = 24060, - [SMALL_STATE(2636)] = 24125, - [SMALL_STATE(2637)] = 24190, - [SMALL_STATE(2638)] = 24255, - [SMALL_STATE(2639)] = 24320, - [SMALL_STATE(2640)] = 24385, - [SMALL_STATE(2641)] = 24462, - [SMALL_STATE(2642)] = 24563, - [SMALL_STATE(2643)] = 24664, - [SMALL_STATE(2644)] = 24741, - [SMALL_STATE(2645)] = 24806, - [SMALL_STATE(2646)] = 24871, - [SMALL_STATE(2647)] = 24936, - [SMALL_STATE(2648)] = 25011, - [SMALL_STATE(2649)] = 25082, - [SMALL_STATE(2650)] = 25153, - [SMALL_STATE(2651)] = 25218, - [SMALL_STATE(2652)] = 25283, - [SMALL_STATE(2653)] = 25362, - [SMALL_STATE(2654)] = 25459, - [SMALL_STATE(2655)] = 25548, - [SMALL_STATE(2656)] = 25613, - [SMALL_STATE(2657)] = 25682, - [SMALL_STATE(2658)] = 25763, - [SMALL_STATE(2659)] = 25828, - [SMALL_STATE(2660)] = 25905, - [SMALL_STATE(2661)] = 25990, - [SMALL_STATE(2662)] = 26055, - [SMALL_STATE(2663)] = 26120, - [SMALL_STATE(2664)] = 26185, - [SMALL_STATE(2665)] = 26250, - [SMALL_STATE(2666)] = 26315, - [SMALL_STATE(2667)] = 26380, - [SMALL_STATE(2668)] = 26473, - [SMALL_STATE(2669)] = 26568, - [SMALL_STATE(2670)] = 26633, - [SMALL_STATE(2671)] = 26698, - [SMALL_STATE(2672)] = 26763, - [SMALL_STATE(2673)] = 26828, - [SMALL_STATE(2674)] = 26893, - [SMALL_STATE(2675)] = 26958, - [SMALL_STATE(2676)] = 27059, - [SMALL_STATE(2677)] = 27126, - [SMALL_STATE(2678)] = 27203, - [SMALL_STATE(2679)] = 27268, - [SMALL_STATE(2680)] = 27369, - [SMALL_STATE(2681)] = 27438, - [SMALL_STATE(2682)] = 27503, - [SMALL_STATE(2683)] = 27568, - [SMALL_STATE(2684)] = 27633, - [SMALL_STATE(2685)] = 27698, - [SMALL_STATE(2686)] = 27763, - [SMALL_STATE(2687)] = 27828, - [SMALL_STATE(2688)] = 27893, - [SMALL_STATE(2689)] = 27958, - [SMALL_STATE(2690)] = 28023, - [SMALL_STATE(2691)] = 28088, - [SMALL_STATE(2692)] = 28165, - [SMALL_STATE(2693)] = 28242, - [SMALL_STATE(2694)] = 28311, - [SMALL_STATE(2695)] = 28376, - [SMALL_STATE(2696)] = 28441, - [SMALL_STATE(2697)] = 28506, - [SMALL_STATE(2698)] = 28571, - [SMALL_STATE(2699)] = 28636, - [SMALL_STATE(2700)] = 28701, - [SMALL_STATE(2701)] = 28766, - [SMALL_STATE(2702)] = 28831, - [SMALL_STATE(2703)] = 28896, - [SMALL_STATE(2704)] = 28961, - [SMALL_STATE(2705)] = 29026, - [SMALL_STATE(2706)] = 29091, - [SMALL_STATE(2707)] = 29156, - [SMALL_STATE(2708)] = 29221, - [SMALL_STATE(2709)] = 29286, - [SMALL_STATE(2710)] = 29351, - [SMALL_STATE(2711)] = 29418, - [SMALL_STATE(2712)] = 29483, - [SMALL_STATE(2713)] = 29548, - [SMALL_STATE(2714)] = 29649, - [SMALL_STATE(2715)] = 29714, - [SMALL_STATE(2716)] = 29779, - [SMALL_STATE(2717)] = 29876, - [SMALL_STATE(2718)] = 29941, - [SMALL_STATE(2719)] = 30006, - [SMALL_STATE(2720)] = 30071, - [SMALL_STATE(2721)] = 30172, - [SMALL_STATE(2722)] = 30237, - [SMALL_STATE(2723)] = 30302, - [SMALL_STATE(2724)] = 30367, - [SMALL_STATE(2725)] = 30432, - [SMALL_STATE(2726)] = 30501, - [SMALL_STATE(2727)] = 30566, - [SMALL_STATE(2728)] = 30631, - [SMALL_STATE(2729)] = 30696, - [SMALL_STATE(2730)] = 30761, - [SMALL_STATE(2731)] = 30826, - [SMALL_STATE(2732)] = 30891, - [SMALL_STATE(2733)] = 30956, - [SMALL_STATE(2734)] = 31021, - [SMALL_STATE(2735)] = 31086, - [SMALL_STATE(2736)] = 31151, - [SMALL_STATE(2737)] = 31216, - [SMALL_STATE(2738)] = 31281, - [SMALL_STATE(2739)] = 31346, - [SMALL_STATE(2740)] = 31417, - [SMALL_STATE(2741)] = 31482, - [SMALL_STATE(2742)] = 31547, - [SMALL_STATE(2743)] = 31612, - [SMALL_STATE(2744)] = 31677, - [SMALL_STATE(2745)] = 31744, - [SMALL_STATE(2746)] = 31809, - [SMALL_STATE(2747)] = 31874, - [SMALL_STATE(2748)] = 31939, - [SMALL_STATE(2749)] = 32004, - [SMALL_STATE(2750)] = 32069, - [SMALL_STATE(2751)] = 32134, - [SMALL_STATE(2752)] = 32199, - [SMALL_STATE(2753)] = 32264, - [SMALL_STATE(2754)] = 32329, - [SMALL_STATE(2755)] = 32394, - [SMALL_STATE(2756)] = 32459, - [SMALL_STATE(2757)] = 32560, - [SMALL_STATE(2758)] = 32625, - [SMALL_STATE(2759)] = 32726, - [SMALL_STATE(2760)] = 32791, - [SMALL_STATE(2761)] = 32856, - [SMALL_STATE(2762)] = 32921, - [SMALL_STATE(2763)] = 32986, - [SMALL_STATE(2764)] = 33051, - [SMALL_STATE(2765)] = 33116, - [SMALL_STATE(2766)] = 33181, - [SMALL_STATE(2767)] = 33246, - [SMALL_STATE(2768)] = 33311, - [SMALL_STATE(2769)] = 33376, - [SMALL_STATE(2770)] = 33449, - [SMALL_STATE(2771)] = 33514, - [SMALL_STATE(2772)] = 33581, - [SMALL_STATE(2773)] = 33646, - [SMALL_STATE(2774)] = 33711, - [SMALL_STATE(2775)] = 33776, - [SMALL_STATE(2776)] = 33880, - [SMALL_STATE(2777)] = 33956, - [SMALL_STATE(2778)] = 34022, - [SMALL_STATE(2779)] = 34088, - [SMALL_STATE(2780)] = 34152, - [SMALL_STATE(2781)] = 34220, - [SMALL_STATE(2782)] = 34288, - [SMALL_STATE(2783)] = 34356, - [SMALL_STATE(2784)] = 34432, - [SMALL_STATE(2785)] = 34498, - [SMALL_STATE(2786)] = 34566, - [SMALL_STATE(2787)] = 34642, - [SMALL_STATE(2788)] = 34710, - [SMALL_STATE(2789)] = 34776, - [SMALL_STATE(2790)] = 34852, - [SMALL_STATE(2791)] = 34918, - [SMALL_STATE(2792)] = 34982, - [SMALL_STATE(2793)] = 35058, - [SMALL_STATE(2794)] = 35134, - [SMALL_STATE(2795)] = 35210, - [SMALL_STATE(2796)] = 35276, - [SMALL_STATE(2797)] = 35342, - [SMALL_STATE(2798)] = 35418, - [SMALL_STATE(2799)] = 35486, - [SMALL_STATE(2800)] = 35554, - [SMALL_STATE(2801)] = 35624, - [SMALL_STATE(2802)] = 35692, - [SMALL_STATE(2803)] = 35796, - [SMALL_STATE(2804)] = 35862, - [SMALL_STATE(2805)] = 35938, - [SMALL_STATE(2806)] = 36014, - [SMALL_STATE(2807)] = 36090, - [SMALL_STATE(2808)] = 36166, - [SMALL_STATE(2809)] = 36232, - [SMALL_STATE(2810)] = 36298, - [SMALL_STATE(2811)] = 36402, - [SMALL_STATE(2812)] = 36466, - [SMALL_STATE(2813)] = 36534, - [SMALL_STATE(2814)] = 36598, - [SMALL_STATE(2815)] = 36702, - [SMALL_STATE(2816)] = 36770, - [SMALL_STATE(2817)] = 36838, - [SMALL_STATE(2818)] = 36902, - [SMALL_STATE(2819)] = 36970, - [SMALL_STATE(2820)] = 37038, - [SMALL_STATE(2821)] = 37104, - [SMALL_STATE(2822)] = 37170, - [SMALL_STATE(2823)] = 37238, - [SMALL_STATE(2824)] = 37304, - [SMALL_STATE(2825)] = 37368, - [SMALL_STATE(2826)] = 37432, - [SMALL_STATE(2827)] = 37496, - [SMALL_STATE(2828)] = 37572, - [SMALL_STATE(2829)] = 37638, - [SMALL_STATE(2830)] = 37706, - [SMALL_STATE(2831)] = 37782, - [SMALL_STATE(2832)] = 37852, - [SMALL_STATE(2833)] = 37928, - [SMALL_STATE(2834)] = 37994, - [SMALL_STATE(2835)] = 38060, - [SMALL_STATE(2836)] = 38128, - [SMALL_STATE(2837)] = 38196, - [SMALL_STATE(2838)] = 38262, - [SMALL_STATE(2839)] = 38338, - [SMALL_STATE(2840)] = 38402, - [SMALL_STATE(2841)] = 38478, - [SMALL_STATE(2842)] = 38554, - [SMALL_STATE(2843)] = 38622, - [SMALL_STATE(2844)] = 38686, - [SMALL_STATE(2845)] = 38750, - [SMALL_STATE(2846)] = 38814, - [SMALL_STATE(2847)] = 38880, - [SMALL_STATE(2848)] = 38956, - [SMALL_STATE(2849)] = 39026, - [SMALL_STATE(2850)] = 39092, - [SMALL_STATE(2851)] = 39156, - [SMALL_STATE(2852)] = 39220, - [SMALL_STATE(2853)] = 39286, - [SMALL_STATE(2854)] = 39350, - [SMALL_STATE(2855)] = 39414, - [SMALL_STATE(2856)] = 39490, - [SMALL_STATE(2857)] = 39556, - [SMALL_STATE(2858)] = 39620, - [SMALL_STATE(2859)] = 39688, - [SMALL_STATE(2860)] = 39752, - [SMALL_STATE(2861)] = 39820, - [SMALL_STATE(2862)] = 39886, - [SMALL_STATE(2863)] = 39952, - [SMALL_STATE(2864)] = 40018, - [SMALL_STATE(2865)] = 40082, - [SMALL_STATE(2866)] = 40148, - [SMALL_STATE(2867)] = 40214, - [SMALL_STATE(2868)] = 40280, - [SMALL_STATE(2869)] = 40348, - [SMALL_STATE(2870)] = 40412, - [SMALL_STATE(2871)] = 40476, - [SMALL_STATE(2872)] = 40540, - [SMALL_STATE(2873)] = 40608, - [SMALL_STATE(2874)] = 40671, - [SMALL_STATE(2875)] = 40746, - [SMALL_STATE(2876)] = 40821, - [SMALL_STATE(2877)] = 40884, - [SMALL_STATE(2878)] = 40949, - [SMALL_STATE(2879)] = 41016, - [SMALL_STATE(2880)] = 41081, - [SMALL_STATE(2881)] = 41146, - [SMALL_STATE(2882)] = 41221, - [SMALL_STATE(2883)] = 41284, - [SMALL_STATE(2884)] = 41347, - [SMALL_STATE(2885)] = 41410, - [SMALL_STATE(2886)] = 41505, - [SMALL_STATE(2887)] = 41568, - [SMALL_STATE(2888)] = 41667, - [SMALL_STATE(2889)] = 41766, - [SMALL_STATE(2890)] = 41865, - [SMALL_STATE(2891)] = 41928, - [SMALL_STATE(2892)] = 42001, - [SMALL_STATE(2893)] = 42070, - [SMALL_STATE(2894)] = 42139, - [SMALL_STATE(2895)] = 42216, - [SMALL_STATE(2896)] = 42311, - [SMALL_STATE(2897)] = 42398, - [SMALL_STATE(2898)] = 42477, - [SMALL_STATE(2899)] = 42552, - [SMALL_STATE(2900)] = 42635, - [SMALL_STATE(2901)] = 42726, - [SMALL_STATE(2902)] = 42819, - [SMALL_STATE(2903)] = 42882, - [SMALL_STATE(2904)] = 42945, - [SMALL_STATE(2905)] = 43008, - [SMALL_STATE(2906)] = 43071, - [SMALL_STATE(2907)] = 43134, - [SMALL_STATE(2908)] = 43197, - [SMALL_STATE(2909)] = 43260, - [SMALL_STATE(2910)] = 43323, - [SMALL_STATE(2911)] = 43386, - [SMALL_STATE(2912)] = 43481, - [SMALL_STATE(2913)] = 43544, - [SMALL_STATE(2914)] = 43607, - [SMALL_STATE(2915)] = 43706, - [SMALL_STATE(2916)] = 43805, - [SMALL_STATE(2917)] = 43868, - [SMALL_STATE(2918)] = 43931, - [SMALL_STATE(2919)] = 43994, - [SMALL_STATE(2920)] = 44057, - [SMALL_STATE(2921)] = 44120, - [SMALL_STATE(2922)] = 44183, - [SMALL_STATE(2923)] = 44252, - [SMALL_STATE(2924)] = 44327, - [SMALL_STATE(2925)] = 44392, - [SMALL_STATE(2926)] = 44457, - [SMALL_STATE(2927)] = 44520, - [SMALL_STATE(2928)] = 44583, - [SMALL_STATE(2929)] = 44646, - [SMALL_STATE(2930)] = 44709, - [SMALL_STATE(2931)] = 44772, - [SMALL_STATE(2932)] = 44871, - [SMALL_STATE(2933)] = 44970, - [SMALL_STATE(2934)] = 45033, - [SMALL_STATE(2935)] = 45096, - [SMALL_STATE(2936)] = 45159, - [SMALL_STATE(2937)] = 45258, - [SMALL_STATE(2938)] = 45357, - [SMALL_STATE(2939)] = 45420, - [SMALL_STATE(2940)] = 45483, - [SMALL_STATE(2941)] = 45546, - [SMALL_STATE(2942)] = 45609, - [SMALL_STATE(2943)] = 45672, - [SMALL_STATE(2944)] = 45735, - [SMALL_STATE(2945)] = 45798, - [SMALL_STATE(2946)] = 45861, - [SMALL_STATE(2947)] = 45924, - [SMALL_STATE(2948)] = 45987, - [SMALL_STATE(2949)] = 46050, - [SMALL_STATE(2950)] = 46113, - [SMALL_STATE(2951)] = 46176, - [SMALL_STATE(2952)] = 46239, - [SMALL_STATE(2953)] = 46302, - [SMALL_STATE(2954)] = 46365, - [SMALL_STATE(2955)] = 46428, - [SMALL_STATE(2956)] = 46491, - [SMALL_STATE(2957)] = 46554, - [SMALL_STATE(2958)] = 46617, - [SMALL_STATE(2959)] = 46680, - [SMALL_STATE(2960)] = 46743, - [SMALL_STATE(2961)] = 46806, - [SMALL_STATE(2962)] = 46869, - [SMALL_STATE(2963)] = 46932, - [SMALL_STATE(2964)] = 46995, - [SMALL_STATE(2965)] = 47058, - [SMALL_STATE(2966)] = 47121, - [SMALL_STATE(2967)] = 47184, - [SMALL_STATE(2968)] = 47285, - [SMALL_STATE(2969)] = 47348, - [SMALL_STATE(2970)] = 47411, - [SMALL_STATE(2971)] = 47474, - [SMALL_STATE(2972)] = 47537, - [SMALL_STATE(2973)] = 47600, - [SMALL_STATE(2974)] = 47663, - [SMALL_STATE(2975)] = 47726, - [SMALL_STATE(2976)] = 47789, - [SMALL_STATE(2977)] = 47852, - [SMALL_STATE(2978)] = 47915, - [SMALL_STATE(2979)] = 47978, - [SMALL_STATE(2980)] = 48043, - [SMALL_STATE(2981)] = 48144, - [SMALL_STATE(2982)] = 48245, - [SMALL_STATE(2983)] = 48308, - [SMALL_STATE(2984)] = 48371, - [SMALL_STATE(2985)] = 48472, - [SMALL_STATE(2986)] = 48573, - [SMALL_STATE(2987)] = 48636, - [SMALL_STATE(2988)] = 48699, - [SMALL_STATE(2989)] = 48762, - [SMALL_STATE(2990)] = 48825, - [SMALL_STATE(2991)] = 48926, - [SMALL_STATE(2992)] = 49027, - [SMALL_STATE(2993)] = 49090, - [SMALL_STATE(2994)] = 49153, - [SMALL_STATE(2995)] = 49216, - [SMALL_STATE(2996)] = 49279, - [SMALL_STATE(2997)] = 49342, - [SMALL_STATE(2998)] = 49405, - [SMALL_STATE(2999)] = 49468, - [SMALL_STATE(3000)] = 49531, - [SMALL_STATE(3001)] = 49594, - [SMALL_STATE(3002)] = 49657, - [SMALL_STATE(3003)] = 49720, - [SMALL_STATE(3004)] = 49783, - [SMALL_STATE(3005)] = 49846, - [SMALL_STATE(3006)] = 49915, - [SMALL_STATE(3007)] = 49978, - [SMALL_STATE(3008)] = 50045, - [SMALL_STATE(3009)] = 50116, - [SMALL_STATE(3010)] = 50211, - [SMALL_STATE(3011)] = 50278, - [SMALL_STATE(3012)] = 50345, - [SMALL_STATE(3013)] = 50408, - [SMALL_STATE(3014)] = 50471, - [SMALL_STATE(3015)] = 50534, - [SMALL_STATE(3016)] = 50597, - [SMALL_STATE(3017)] = 50696, - [SMALL_STATE(3018)] = 50759, - [SMALL_STATE(3019)] = 50822, - [SMALL_STATE(3020)] = 50885, - [SMALL_STATE(3021)] = 50948, - [SMALL_STATE(3022)] = 51011, - [SMALL_STATE(3023)] = 51086, - [SMALL_STATE(3024)] = 51149, - [SMALL_STATE(3025)] = 51224, - [SMALL_STATE(3026)] = 51289, - [SMALL_STATE(3027)] = 51354, - [SMALL_STATE(3028)] = 51429, - [SMALL_STATE(3029)] = 51492, - [SMALL_STATE(3030)] = 51555, - [SMALL_STATE(3031)] = 51618, - [SMALL_STATE(3032)] = 51681, - [SMALL_STATE(3033)] = 51744, - [SMALL_STATE(3034)] = 51819, - [SMALL_STATE(3035)] = 51894, - [SMALL_STATE(3036)] = 51957, - [SMALL_STATE(3037)] = 52020, - [SMALL_STATE(3038)] = 52083, - [SMALL_STATE(3039)] = 52146, - [SMALL_STATE(3040)] = 52209, - [SMALL_STATE(3041)] = 52274, - [SMALL_STATE(3042)] = 52337, - [SMALL_STATE(3043)] = 52400, - [SMALL_STATE(3044)] = 52463, - [SMALL_STATE(3045)] = 52526, - [SMALL_STATE(3046)] = 52589, - [SMALL_STATE(3047)] = 52652, - [SMALL_STATE(3048)] = 52715, - [SMALL_STATE(3049)] = 52778, - [SMALL_STATE(3050)] = 52841, - [SMALL_STATE(3051)] = 52904, - [SMALL_STATE(3052)] = 52967, - [SMALL_STATE(3053)] = 53030, - [SMALL_STATE(3054)] = 53093, - [SMALL_STATE(3055)] = 53156, - [SMALL_STATE(3056)] = 53219, - [SMALL_STATE(3057)] = 53282, - [SMALL_STATE(3058)] = 53345, - [SMALL_STATE(3059)] = 53408, - [SMALL_STATE(3060)] = 53471, - [SMALL_STATE(3061)] = 53536, - [SMALL_STATE(3062)] = 53599, - [SMALL_STATE(3063)] = 53662, - [SMALL_STATE(3064)] = 53725, - [SMALL_STATE(3065)] = 53826, - [SMALL_STATE(3066)] = 53889, - [SMALL_STATE(3067)] = 53952, - [SMALL_STATE(3068)] = 54015, - [SMALL_STATE(3069)] = 54116, - [SMALL_STATE(3070)] = 54179, - [SMALL_STATE(3071)] = 54254, - [SMALL_STATE(3072)] = 54317, - [SMALL_STATE(3073)] = 54380, - [SMALL_STATE(3074)] = 54443, - [SMALL_STATE(3075)] = 54506, - [SMALL_STATE(3076)] = 54569, - [SMALL_STATE(3077)] = 54636, - [SMALL_STATE(3078)] = 54707, - [SMALL_STATE(3079)] = 54774, - [SMALL_STATE(3080)] = 54839, - [SMALL_STATE(3081)] = 54914, - [SMALL_STATE(3082)] = 54989, - [SMALL_STATE(3083)] = 55064, - [SMALL_STATE(3084)] = 55165, - [SMALL_STATE(3085)] = 55232, - [SMALL_STATE(3086)] = 55297, - [SMALL_STATE(3087)] = 55372, - [SMALL_STATE(3088)] = 55447, - [SMALL_STATE(3089)] = 55510, - [SMALL_STATE(3090)] = 55573, - [SMALL_STATE(3091)] = 55636, - [SMALL_STATE(3092)] = 55701, - [SMALL_STATE(3093)] = 55764, - [SMALL_STATE(3094)] = 55865, - [SMALL_STATE(3095)] = 55936, - [SMALL_STATE(3096)] = 56007, - [SMALL_STATE(3097)] = 56070, - [SMALL_STATE(3098)] = 56145, - [SMALL_STATE(3099)] = 56220, - [SMALL_STATE(3100)] = 56283, - [SMALL_STATE(3101)] = 56346, - [SMALL_STATE(3102)] = 56447, - [SMALL_STATE(3103)] = 56510, - [SMALL_STATE(3104)] = 56573, - [SMALL_STATE(3105)] = 56636, - [SMALL_STATE(3106)] = 56737, - [SMALL_STATE(3107)] = 56800, - [SMALL_STATE(3108)] = 56863, - [SMALL_STATE(3109)] = 56926, - [SMALL_STATE(3110)] = 56989, - [SMALL_STATE(3111)] = 57052, - [SMALL_STATE(3112)] = 57115, - [SMALL_STATE(3113)] = 57178, - [SMALL_STATE(3114)] = 57241, - [SMALL_STATE(3115)] = 57342, - [SMALL_STATE(3116)] = 57405, - [SMALL_STATE(3117)] = 57468, - [SMALL_STATE(3118)] = 57531, - [SMALL_STATE(3119)] = 57594, - [SMALL_STATE(3120)] = 57657, - [SMALL_STATE(3121)] = 57720, - [SMALL_STATE(3122)] = 57783, - [SMALL_STATE(3123)] = 57852, - [SMALL_STATE(3124)] = 57917, - [SMALL_STATE(3125)] = 57980, - [SMALL_STATE(3126)] = 58051, - [SMALL_STATE(3127)] = 58114, - [SMALL_STATE(3128)] = 58177, - [SMALL_STATE(3129)] = 58240, - [SMALL_STATE(3130)] = 58303, - [SMALL_STATE(3131)] = 58366, - [SMALL_STATE(3132)] = 58429, - [SMALL_STATE(3133)] = 58504, - [SMALL_STATE(3134)] = 58567, - [SMALL_STATE(3135)] = 58630, - [SMALL_STATE(3136)] = 58693, - [SMALL_STATE(3137)] = 58768, - [SMALL_STATE(3138)] = 58831, - [SMALL_STATE(3139)] = 58900, - [SMALL_STATE(3140)] = 58963, - [SMALL_STATE(3141)] = 59026, - [SMALL_STATE(3142)] = 59095, - [SMALL_STATE(3143)] = 59164, - [SMALL_STATE(3144)] = 59233, - [SMALL_STATE(3145)] = 59302, - [SMALL_STATE(3146)] = 59365, - [SMALL_STATE(3147)] = 59428, - [SMALL_STATE(3148)] = 59491, - [SMALL_STATE(3149)] = 59554, - [SMALL_STATE(3150)] = 59619, - [SMALL_STATE(3151)] = 59684, - [SMALL_STATE(3152)] = 59747, - [SMALL_STATE(3153)] = 59810, - [SMALL_STATE(3154)] = 59873, - [SMALL_STATE(3155)] = 59936, - [SMALL_STATE(3156)] = 59999, - [SMALL_STATE(3157)] = 60062, - [SMALL_STATE(3158)] = 60125, - [SMALL_STATE(3159)] = 60188, - [SMALL_STATE(3160)] = 60251, - [SMALL_STATE(3161)] = 60314, - [SMALL_STATE(3162)] = 60377, - [SMALL_STATE(3163)] = 60440, - [SMALL_STATE(3164)] = 60503, - [SMALL_STATE(3165)] = 60566, - [SMALL_STATE(3166)] = 60629, - [SMALL_STATE(3167)] = 60692, - [SMALL_STATE(3168)] = 60755, - [SMALL_STATE(3169)] = 60818, - [SMALL_STATE(3170)] = 60881, - [SMALL_STATE(3171)] = 60944, - [SMALL_STATE(3172)] = 61007, - [SMALL_STATE(3173)] = 61070, - [SMALL_STATE(3174)] = 61133, - [SMALL_STATE(3175)] = 61196, - [SMALL_STATE(3176)] = 61259, - [SMALL_STATE(3177)] = 61322, - [SMALL_STATE(3178)] = 61385, - [SMALL_STATE(3179)] = 61448, - [SMALL_STATE(3180)] = 61511, - [SMALL_STATE(3181)] = 61586, - [SMALL_STATE(3182)] = 61650, - [SMALL_STATE(3183)] = 61748, - [SMALL_STATE(3184)] = 61846, - [SMALL_STATE(3185)] = 61918, - [SMALL_STATE(3186)] = 62020, - [SMALL_STATE(3187)] = 62088, - [SMALL_STATE(3188)] = 62156, - [SMALL_STATE(3189)] = 62224, - [SMALL_STATE(3190)] = 62300, - [SMALL_STATE(3191)] = 62394, - [SMALL_STATE(3192)] = 62462, - [SMALL_STATE(3193)] = 62548, - [SMALL_STATE(3194)] = 62626, - [SMALL_STATE(3195)] = 62700, - [SMALL_STATE(3196)] = 62782, - [SMALL_STATE(3197)] = 62850, - [SMALL_STATE(3198)] = 62940, - [SMALL_STATE(3199)] = 63008, - [SMALL_STATE(3200)] = 63100, - [SMALL_STATE(3201)] = 63162, - [SMALL_STATE(3202)] = 63230, - [SMALL_STATE(3203)] = 63296, - [SMALL_STATE(3204)] = 63398, - [SMALL_STATE(3205)] = 63462, - [SMALL_STATE(3206)] = 63524, - [SMALL_STATE(3207)] = 63590, - [SMALL_STATE(3208)] = 63660, - [SMALL_STATE(3209)] = 63724, - [SMALL_STATE(3210)] = 63788, - [SMALL_STATE(3211)] = 63852, - [SMALL_STATE(3212)] = 63918, - [SMALL_STATE(3213)] = 63980, - [SMALL_STATE(3214)] = 64042, - [SMALL_STATE(3215)] = 64106, - [SMALL_STATE(3216)] = 64174, - [SMALL_STATE(3217)] = 64236, - [SMALL_STATE(3218)] = 64310, - [SMALL_STATE(3219)] = 64374, - [SMALL_STATE(3220)] = 64448, - [SMALL_STATE(3221)] = 64514, - [SMALL_STATE(3222)] = 64576, - [SMALL_STATE(3223)] = 64640, - [SMALL_STATE(3224)] = 64702, - [SMALL_STATE(3225)] = 64764, - [SMALL_STATE(3226)] = 64838, - [SMALL_STATE(3227)] = 64906, - [SMALL_STATE(3228)] = 64976, - [SMALL_STATE(3229)] = 65042, - [SMALL_STATE(3230)] = 65110, - [SMALL_STATE(3231)] = 65172, - [SMALL_STATE(3232)] = 65274, - [SMALL_STATE(3233)] = 65342, - [SMALL_STATE(3234)] = 65408, - [SMALL_STATE(3235)] = 65470, - [SMALL_STATE(3236)] = 65532, - [SMALL_STATE(3237)] = 65606, - [SMALL_STATE(3238)] = 65668, - [SMALL_STATE(3239)] = 65730, - [SMALL_STATE(3240)] = 65794, - [SMALL_STATE(3241)] = 65860, - [SMALL_STATE(3242)] = 65958, - [SMALL_STATE(3243)] = 66020, - [SMALL_STATE(3244)] = 66084, - [SMALL_STATE(3245)] = 66158, - [SMALL_STATE(3246)] = 66232, - [SMALL_STATE(3247)] = 66294, - [SMALL_STATE(3248)] = 66356, - [SMALL_STATE(3249)] = 66420, - [SMALL_STATE(3250)] = 66482, - [SMALL_STATE(3251)] = 66544, - [SMALL_STATE(3252)] = 66612, - [SMALL_STATE(3253)] = 66710, - [SMALL_STATE(3254)] = 66808, - [SMALL_STATE(3255)] = 66872, - [SMALL_STATE(3256)] = 66936, - [SMALL_STATE(3257)] = 67000, - [SMALL_STATE(3258)] = 67098, - [SMALL_STATE(3259)] = 67172, - [SMALL_STATE(3260)] = 67238, - [SMALL_STATE(3261)] = 67304, - [SMALL_STATE(3262)] = 67370, - [SMALL_STATE(3263)] = 67436, - [SMALL_STATE(3264)] = 67538, - [SMALL_STATE(3265)] = 67640, - [SMALL_STATE(3266)] = 67738, - [SMALL_STATE(3267)] = 67808, - [SMALL_STATE(3268)] = 67870, - [SMALL_STATE(3269)] = 67964, - [SMALL_STATE(3270)] = 68038, - [SMALL_STATE(3271)] = 68112, - [SMALL_STATE(3272)] = 68210, - [SMALL_STATE(3273)] = 68280, - [SMALL_STATE(3274)] = 68344, - [SMALL_STATE(3275)] = 68418, - [SMALL_STATE(3276)] = 68482, - [SMALL_STATE(3277)] = 68550, - [SMALL_STATE(3278)] = 68648, - [SMALL_STATE(3279)] = 68714, - [SMALL_STATE(3280)] = 68776, + [SMALL_STATE(2463)] = 12058, + [SMALL_STATE(2464)] = 12125, + [SMALL_STATE(2465)] = 12196, + [SMALL_STATE(2466)] = 12269, + [SMALL_STATE(2467)] = 12340, + [SMALL_STATE(2468)] = 12407, + [SMALL_STATE(2469)] = 12474, + [SMALL_STATE(2470)] = 12553, + [SMALL_STATE(2471)] = 12620, + [SMALL_STATE(2472)] = 12687, + [SMALL_STATE(2473)] = 12754, + [SMALL_STATE(2474)] = 12825, + [SMALL_STATE(2475)] = 12892, + [SMALL_STATE(2476)] = 12971, + [SMALL_STATE(2477)] = 13038, + [SMALL_STATE(2478)] = 13108, + [SMALL_STATE(2479)] = 13214, + [SMALL_STATE(2480)] = 13284, + [SMALL_STATE(2481)] = 13390, + [SMALL_STATE(2482)] = 13460, + [SMALL_STATE(2483)] = 13530, + [SMALL_STATE(2484)] = 13600, + [SMALL_STATE(2485)] = 13666, + [SMALL_STATE(2486)] = 13734, + [SMALL_STATE(2487)] = 13804, + [SMALL_STATE(2488)] = 13872, + [SMALL_STATE(2489)] = 13942, + [SMALL_STATE(2490)] = 14048, + [SMALL_STATE(2491)] = 14118, + [SMALL_STATE(2492)] = 14188, + [SMALL_STATE(2493)] = 14256, + [SMALL_STATE(2494)] = 14324, + [SMALL_STATE(2495)] = 14392, + [SMALL_STATE(2496)] = 14458, + [SMALL_STATE(2497)] = 14528, + [SMALL_STATE(2498)] = 14606, + [SMALL_STATE(2499)] = 14676, + [SMALL_STATE(2500)] = 14754, + [SMALL_STATE(2501)] = 14824, + [SMALL_STATE(2502)] = 14890, + [SMALL_STATE(2503)] = 14996, + [SMALL_STATE(2504)] = 15064, + [SMALL_STATE(2505)] = 15134, + [SMALL_STATE(2506)] = 15204, + [SMALL_STATE(2507)] = 15272, + [SMALL_STATE(2508)] = 15378, + [SMALL_STATE(2509)] = 15448, + [SMALL_STATE(2510)] = 15518, + [SMALL_STATE(2511)] = 15588, + [SMALL_STATE(2512)] = 15656, + [SMALL_STATE(2513)] = 15726, + [SMALL_STATE(2514)] = 15796, + [SMALL_STATE(2515)] = 15866, + [SMALL_STATE(2516)] = 15936, + [SMALL_STATE(2517)] = 16002, + [SMALL_STATE(2518)] = 16070, + [SMALL_STATE(2519)] = 16140, + [SMALL_STATE(2520)] = 16208, + [SMALL_STATE(2521)] = 16278, + [SMALL_STATE(2522)] = 16348, + [SMALL_STATE(2523)] = 16416, + [SMALL_STATE(2524)] = 16484, + [SMALL_STATE(2525)] = 16562, + [SMALL_STATE(2526)] = 16632, + [SMALL_STATE(2527)] = 16700, + [SMALL_STATE(2528)] = 16770, + [SMALL_STATE(2529)] = 16838, + [SMALL_STATE(2530)] = 16906, + [SMALL_STATE(2531)] = 16974, + [SMALL_STATE(2532)] = 17052, + [SMALL_STATE(2533)] = 17120, + [SMALL_STATE(2534)] = 17198, + [SMALL_STATE(2535)] = 17270, + [SMALL_STATE(2536)] = 17342, + [SMALL_STATE(2537)] = 17408, + [SMALL_STATE(2538)] = 17476, + [SMALL_STATE(2539)] = 17548, + [SMALL_STATE(2540)] = 17616, + [SMALL_STATE(2541)] = 17684, + [SMALL_STATE(2542)] = 17756, + [SMALL_STATE(2543)] = 17862, + [SMALL_STATE(2544)] = 17963, + [SMALL_STATE(2545)] = 18028, + [SMALL_STATE(2546)] = 18129, + [SMALL_STATE(2547)] = 18194, + [SMALL_STATE(2548)] = 18259, + [SMALL_STATE(2549)] = 18324, + [SMALL_STATE(2550)] = 18425, + [SMALL_STATE(2551)] = 18502, + [SMALL_STATE(2552)] = 18567, + [SMALL_STATE(2553)] = 18632, + [SMALL_STATE(2554)] = 18697, + [SMALL_STATE(2555)] = 18762, + [SMALL_STATE(2556)] = 18827, + [SMALL_STATE(2557)] = 18892, + [SMALL_STATE(2558)] = 18981, + [SMALL_STATE(2559)] = 19046, + [SMALL_STATE(2560)] = 19111, + [SMALL_STATE(2561)] = 19180, + [SMALL_STATE(2562)] = 19281, + [SMALL_STATE(2563)] = 19346, + [SMALL_STATE(2564)] = 19411, + [SMALL_STATE(2565)] = 19476, + [SMALL_STATE(2566)] = 19541, + [SMALL_STATE(2567)] = 19606, + [SMALL_STATE(2568)] = 19671, + [SMALL_STATE(2569)] = 19736, + [SMALL_STATE(2570)] = 19801, + [SMALL_STATE(2571)] = 19866, + [SMALL_STATE(2572)] = 19931, + [SMALL_STATE(2573)] = 19996, + [SMALL_STATE(2574)] = 20061, + [SMALL_STATE(2575)] = 20126, + [SMALL_STATE(2576)] = 20203, + [SMALL_STATE(2577)] = 20268, + [SMALL_STATE(2578)] = 20333, + [SMALL_STATE(2579)] = 20398, + [SMALL_STATE(2580)] = 20463, + [SMALL_STATE(2581)] = 20528, + [SMALL_STATE(2582)] = 20593, + [SMALL_STATE(2583)] = 20658, + [SMALL_STATE(2584)] = 20723, + [SMALL_STATE(2585)] = 20788, + [SMALL_STATE(2586)] = 20853, + [SMALL_STATE(2587)] = 20918, + [SMALL_STATE(2588)] = 20983, + [SMALL_STATE(2589)] = 21048, + [SMALL_STATE(2590)] = 21113, + [SMALL_STATE(2591)] = 21178, + [SMALL_STATE(2592)] = 21243, + [SMALL_STATE(2593)] = 21308, + [SMALL_STATE(2594)] = 21409, + [SMALL_STATE(2595)] = 21474, + [SMALL_STATE(2596)] = 21539, + [SMALL_STATE(2597)] = 21604, + [SMALL_STATE(2598)] = 21669, + [SMALL_STATE(2599)] = 21734, + [SMALL_STATE(2600)] = 21799, + [SMALL_STATE(2601)] = 21864, + [SMALL_STATE(2602)] = 21929, + [SMALL_STATE(2603)] = 21994, + [SMALL_STATE(2604)] = 22059, + [SMALL_STATE(2605)] = 22126, + [SMALL_STATE(2606)] = 22191, + [SMALL_STATE(2607)] = 22256, + [SMALL_STATE(2608)] = 22321, + [SMALL_STATE(2609)] = 22386, + [SMALL_STATE(2610)] = 22451, + [SMALL_STATE(2611)] = 22548, + [SMALL_STATE(2612)] = 22645, + [SMALL_STATE(2613)] = 22710, + [SMALL_STATE(2614)] = 22775, + [SMALL_STATE(2615)] = 22840, + [SMALL_STATE(2616)] = 22905, + [SMALL_STATE(2617)] = 22974, + [SMALL_STATE(2618)] = 23039, + [SMALL_STATE(2619)] = 23104, + [SMALL_STATE(2620)] = 23169, + [SMALL_STATE(2621)] = 23246, + [SMALL_STATE(2622)] = 23311, + [SMALL_STATE(2623)] = 23376, + [SMALL_STATE(2624)] = 23477, + [SMALL_STATE(2625)] = 23542, + [SMALL_STATE(2626)] = 23607, + [SMALL_STATE(2627)] = 23684, + [SMALL_STATE(2628)] = 23749, + [SMALL_STATE(2629)] = 23820, + [SMALL_STATE(2630)] = 23897, + [SMALL_STATE(2631)] = 23962, + [SMALL_STATE(2632)] = 24063, + [SMALL_STATE(2633)] = 24128, + [SMALL_STATE(2634)] = 24221, + [SMALL_STATE(2635)] = 24286, + [SMALL_STATE(2636)] = 24351, + [SMALL_STATE(2637)] = 24428, + [SMALL_STATE(2638)] = 24493, + [SMALL_STATE(2639)] = 24590, + [SMALL_STATE(2640)] = 24655, + [SMALL_STATE(2641)] = 24720, + [SMALL_STATE(2642)] = 24785, + [SMALL_STATE(2643)] = 24850, + [SMALL_STATE(2644)] = 24917, + [SMALL_STATE(2645)] = 24982, + [SMALL_STATE(2646)] = 25047, + [SMALL_STATE(2647)] = 25148, + [SMALL_STATE(2648)] = 25213, + [SMALL_STATE(2649)] = 25278, + [SMALL_STATE(2650)] = 25343, + [SMALL_STATE(2651)] = 25408, + [SMALL_STATE(2652)] = 25473, + [SMALL_STATE(2653)] = 25538, + [SMALL_STATE(2654)] = 25603, + [SMALL_STATE(2655)] = 25668, + [SMALL_STATE(2656)] = 25733, + [SMALL_STATE(2657)] = 25798, + [SMALL_STATE(2658)] = 25875, + [SMALL_STATE(2659)] = 25940, + [SMALL_STATE(2660)] = 26017, + [SMALL_STATE(2661)] = 26094, + [SMALL_STATE(2662)] = 26179, + [SMALL_STATE(2663)] = 26244, + [SMALL_STATE(2664)] = 26317, + [SMALL_STATE(2665)] = 26384, + [SMALL_STATE(2666)] = 26453, + [SMALL_STATE(2667)] = 26518, + [SMALL_STATE(2668)] = 26583, + [SMALL_STATE(2669)] = 26652, + [SMALL_STATE(2670)] = 26721, + [SMALL_STATE(2671)] = 26786, + [SMALL_STATE(2672)] = 26851, + [SMALL_STATE(2673)] = 26916, + [SMALL_STATE(2674)] = 26985, + [SMALL_STATE(2675)] = 27052, + [SMALL_STATE(2676)] = 27117, + [SMALL_STATE(2677)] = 27182, + [SMALL_STATE(2678)] = 27247, + [SMALL_STATE(2679)] = 27324, + [SMALL_STATE(2680)] = 27401, + [SMALL_STATE(2681)] = 27466, + [SMALL_STATE(2682)] = 27531, + [SMALL_STATE(2683)] = 27596, + [SMALL_STATE(2684)] = 27661, + [SMALL_STATE(2685)] = 27762, + [SMALL_STATE(2686)] = 27827, + [SMALL_STATE(2687)] = 27892, + [SMALL_STATE(2688)] = 27957, + [SMALL_STATE(2689)] = 28022, + [SMALL_STATE(2690)] = 28089, + [SMALL_STATE(2691)] = 28154, + [SMALL_STATE(2692)] = 28255, + [SMALL_STATE(2693)] = 28320, + [SMALL_STATE(2694)] = 28385, + [SMALL_STATE(2695)] = 28450, + [SMALL_STATE(2696)] = 28515, + [SMALL_STATE(2697)] = 28610, + [SMALL_STATE(2698)] = 28675, + [SMALL_STATE(2699)] = 28740, + [SMALL_STATE(2700)] = 28805, + [SMALL_STATE(2701)] = 28870, + [SMALL_STATE(2702)] = 28935, + [SMALL_STATE(2703)] = 29000, + [SMALL_STATE(2704)] = 29065, + [SMALL_STATE(2705)] = 29130, + [SMALL_STATE(2706)] = 29195, + [SMALL_STATE(2707)] = 29260, + [SMALL_STATE(2708)] = 29335, + [SMALL_STATE(2709)] = 29416, + [SMALL_STATE(2710)] = 29481, + [SMALL_STATE(2711)] = 29546, + [SMALL_STATE(2712)] = 29611, + [SMALL_STATE(2713)] = 29676, + [SMALL_STATE(2714)] = 29741, + [SMALL_STATE(2715)] = 29806, + [SMALL_STATE(2716)] = 29871, + [SMALL_STATE(2717)] = 29942, + [SMALL_STATE(2718)] = 30007, + [SMALL_STATE(2719)] = 30072, + [SMALL_STATE(2720)] = 30137, + [SMALL_STATE(2721)] = 30202, + [SMALL_STATE(2722)] = 30273, + [SMALL_STATE(2723)] = 30338, + [SMALL_STATE(2724)] = 30403, + [SMALL_STATE(2725)] = 30472, + [SMALL_STATE(2726)] = 30537, + [SMALL_STATE(2727)] = 30616, + [SMALL_STATE(2728)] = 30681, + [SMALL_STATE(2729)] = 30746, + [SMALL_STATE(2730)] = 30811, + [SMALL_STATE(2731)] = 30876, + [SMALL_STATE(2732)] = 30941, + [SMALL_STATE(2733)] = 31010, + [SMALL_STATE(2734)] = 31075, + [SMALL_STATE(2735)] = 31140, + [SMALL_STATE(2736)] = 31205, + [SMALL_STATE(2737)] = 31270, + [SMALL_STATE(2738)] = 31335, + [SMALL_STATE(2739)] = 31400, + [SMALL_STATE(2740)] = 31465, + [SMALL_STATE(2741)] = 31530, + [SMALL_STATE(2742)] = 31595, + [SMALL_STATE(2743)] = 31660, + [SMALL_STATE(2744)] = 31725, + [SMALL_STATE(2745)] = 31790, + [SMALL_STATE(2746)] = 31855, + [SMALL_STATE(2747)] = 31920, + [SMALL_STATE(2748)] = 31985, + [SMALL_STATE(2749)] = 32050, + [SMALL_STATE(2750)] = 32115, + [SMALL_STATE(2751)] = 32180, + [SMALL_STATE(2752)] = 32245, + [SMALL_STATE(2753)] = 32314, + [SMALL_STATE(2754)] = 32381, + [SMALL_STATE(2755)] = 32446, + [SMALL_STATE(2756)] = 32511, + [SMALL_STATE(2757)] = 32576, + [SMALL_STATE(2758)] = 32641, + [SMALL_STATE(2759)] = 32706, + [SMALL_STATE(2760)] = 32771, + [SMALL_STATE(2761)] = 32836, + [SMALL_STATE(2762)] = 32901, + [SMALL_STATE(2763)] = 32966, + [SMALL_STATE(2764)] = 33031, + [SMALL_STATE(2765)] = 33096, + [SMALL_STATE(2766)] = 33161, + [SMALL_STATE(2767)] = 33226, + [SMALL_STATE(2768)] = 33291, + [SMALL_STATE(2769)] = 33356, + [SMALL_STATE(2770)] = 33453, + [SMALL_STATE(2771)] = 33518, + [SMALL_STATE(2772)] = 33583, + [SMALL_STATE(2773)] = 33648, + [SMALL_STATE(2774)] = 33713, + [SMALL_STATE(2775)] = 33778, + [SMALL_STATE(2776)] = 33843, + [SMALL_STATE(2777)] = 33908, + [SMALL_STATE(2778)] = 33973, + [SMALL_STATE(2779)] = 34039, + [SMALL_STATE(2780)] = 34105, + [SMALL_STATE(2781)] = 34175, + [SMALL_STATE(2782)] = 34243, + [SMALL_STATE(2783)] = 34313, + [SMALL_STATE(2784)] = 34381, + [SMALL_STATE(2785)] = 34447, + [SMALL_STATE(2786)] = 34523, + [SMALL_STATE(2787)] = 34599, + [SMALL_STATE(2788)] = 34675, + [SMALL_STATE(2789)] = 34741, + [SMALL_STATE(2790)] = 34809, + [SMALL_STATE(2791)] = 34873, + [SMALL_STATE(2792)] = 34937, + [SMALL_STATE(2793)] = 35001, + [SMALL_STATE(2794)] = 35065, + [SMALL_STATE(2795)] = 35129, + [SMALL_STATE(2796)] = 35193, + [SMALL_STATE(2797)] = 35257, + [SMALL_STATE(2798)] = 35321, + [SMALL_STATE(2799)] = 35385, + [SMALL_STATE(2800)] = 35449, + [SMALL_STATE(2801)] = 35513, + [SMALL_STATE(2802)] = 35577, + [SMALL_STATE(2803)] = 35653, + [SMALL_STATE(2804)] = 35729, + [SMALL_STATE(2805)] = 35795, + [SMALL_STATE(2806)] = 35871, + [SMALL_STATE(2807)] = 35975, + [SMALL_STATE(2808)] = 36051, + [SMALL_STATE(2809)] = 36127, + [SMALL_STATE(2810)] = 36195, + [SMALL_STATE(2811)] = 36261, + [SMALL_STATE(2812)] = 36327, + [SMALL_STATE(2813)] = 36403, + [SMALL_STATE(2814)] = 36479, + [SMALL_STATE(2815)] = 36547, + [SMALL_STATE(2816)] = 36615, + [SMALL_STATE(2817)] = 36681, + [SMALL_STATE(2818)] = 36749, + [SMALL_STATE(2819)] = 36813, + [SMALL_STATE(2820)] = 36881, + [SMALL_STATE(2821)] = 36949, + [SMALL_STATE(2822)] = 37017, + [SMALL_STATE(2823)] = 37085, + [SMALL_STATE(2824)] = 37151, + [SMALL_STATE(2825)] = 37219, + [SMALL_STATE(2826)] = 37287, + [SMALL_STATE(2827)] = 37353, + [SMALL_STATE(2828)] = 37429, + [SMALL_STATE(2829)] = 37505, + [SMALL_STATE(2830)] = 37571, + [SMALL_STATE(2831)] = 37635, + [SMALL_STATE(2832)] = 37711, + [SMALL_STATE(2833)] = 37787, + [SMALL_STATE(2834)] = 37853, + [SMALL_STATE(2835)] = 37921, + [SMALL_STATE(2836)] = 37991, + [SMALL_STATE(2837)] = 38059, + [SMALL_STATE(2838)] = 38125, + [SMALL_STATE(2839)] = 38201, + [SMALL_STATE(2840)] = 38277, + [SMALL_STATE(2841)] = 38343, + [SMALL_STATE(2842)] = 38407, + [SMALL_STATE(2843)] = 38471, + [SMALL_STATE(2844)] = 38537, + [SMALL_STATE(2845)] = 38641, + [SMALL_STATE(2846)] = 38707, + [SMALL_STATE(2847)] = 38775, + [SMALL_STATE(2848)] = 38843, + [SMALL_STATE(2849)] = 38909, + [SMALL_STATE(2850)] = 38973, + [SMALL_STATE(2851)] = 39039, + [SMALL_STATE(2852)] = 39105, + [SMALL_STATE(2853)] = 39171, + [SMALL_STATE(2854)] = 39237, + [SMALL_STATE(2855)] = 39313, + [SMALL_STATE(2856)] = 39381, + [SMALL_STATE(2857)] = 39447, + [SMALL_STATE(2858)] = 39523, + [SMALL_STATE(2859)] = 39599, + [SMALL_STATE(2860)] = 39663, + [SMALL_STATE(2861)] = 39727, + [SMALL_STATE(2862)] = 39791, + [SMALL_STATE(2863)] = 39855, + [SMALL_STATE(2864)] = 39959, + [SMALL_STATE(2865)] = 40027, + [SMALL_STATE(2866)] = 40131, + [SMALL_STATE(2867)] = 40199, + [SMALL_STATE(2868)] = 40267, + [SMALL_STATE(2869)] = 40335, + [SMALL_STATE(2870)] = 40401, + [SMALL_STATE(2871)] = 40467, + [SMALL_STATE(2872)] = 40531, + [SMALL_STATE(2873)] = 40597, + [SMALL_STATE(2874)] = 40663, + [SMALL_STATE(2875)] = 40729, + [SMALL_STATE(2876)] = 40805, + [SMALL_STATE(2877)] = 40906, + [SMALL_STATE(2878)] = 40969, + [SMALL_STATE(2879)] = 41034, + [SMALL_STATE(2880)] = 41097, + [SMALL_STATE(2881)] = 41160, + [SMALL_STATE(2882)] = 41223, + [SMALL_STATE(2883)] = 41286, + [SMALL_STATE(2884)] = 41349, + [SMALL_STATE(2885)] = 41412, + [SMALL_STATE(2886)] = 41475, + [SMALL_STATE(2887)] = 41538, + [SMALL_STATE(2888)] = 41601, + [SMALL_STATE(2889)] = 41664, + [SMALL_STATE(2890)] = 41729, + [SMALL_STATE(2891)] = 41792, + [SMALL_STATE(2892)] = 41855, + [SMALL_STATE(2893)] = 41918, + [SMALL_STATE(2894)] = 41981, + [SMALL_STATE(2895)] = 42044, + [SMALL_STATE(2896)] = 42107, + [SMALL_STATE(2897)] = 42170, + [SMALL_STATE(2898)] = 42233, + [SMALL_STATE(2899)] = 42296, + [SMALL_STATE(2900)] = 42359, + [SMALL_STATE(2901)] = 42422, + [SMALL_STATE(2902)] = 42485, + [SMALL_STATE(2903)] = 42548, + [SMALL_STATE(2904)] = 42611, + [SMALL_STATE(2905)] = 42674, + [SMALL_STATE(2906)] = 42737, + [SMALL_STATE(2907)] = 42800, + [SMALL_STATE(2908)] = 42863, + [SMALL_STATE(2909)] = 42926, + [SMALL_STATE(2910)] = 42995, + [SMALL_STATE(2911)] = 43066, + [SMALL_STATE(2912)] = 43129, + [SMALL_STATE(2913)] = 43204, + [SMALL_STATE(2914)] = 43279, + [SMALL_STATE(2915)] = 43342, + [SMALL_STATE(2916)] = 43443, + [SMALL_STATE(2917)] = 43506, + [SMALL_STATE(2918)] = 43569, + [SMALL_STATE(2919)] = 43670, + [SMALL_STATE(2920)] = 43733, + [SMALL_STATE(2921)] = 43834, + [SMALL_STATE(2922)] = 43901, + [SMALL_STATE(2923)] = 43964, + [SMALL_STATE(2924)] = 44027, + [SMALL_STATE(2925)] = 44092, + [SMALL_STATE(2926)] = 44155, + [SMALL_STATE(2927)] = 44218, + [SMALL_STATE(2928)] = 44281, + [SMALL_STATE(2929)] = 44344, + [SMALL_STATE(2930)] = 44407, + [SMALL_STATE(2931)] = 44470, + [SMALL_STATE(2932)] = 44533, + [SMALL_STATE(2933)] = 44598, + [SMALL_STATE(2934)] = 44673, + [SMALL_STATE(2935)] = 44736, + [SMALL_STATE(2936)] = 44799, + [SMALL_STATE(2937)] = 44862, + [SMALL_STATE(2938)] = 44925, + [SMALL_STATE(2939)] = 44988, + [SMALL_STATE(2940)] = 45051, + [SMALL_STATE(2941)] = 45150, + [SMALL_STATE(2942)] = 45249, + [SMALL_STATE(2943)] = 45312, + [SMALL_STATE(2944)] = 45375, + [SMALL_STATE(2945)] = 45438, + [SMALL_STATE(2946)] = 45501, + [SMALL_STATE(2947)] = 45576, + [SMALL_STATE(2948)] = 45639, + [SMALL_STATE(2949)] = 45702, + [SMALL_STATE(2950)] = 45803, + [SMALL_STATE(2951)] = 45904, + [SMALL_STATE(2952)] = 45967, + [SMALL_STATE(2953)] = 46030, + [SMALL_STATE(2954)] = 46093, + [SMALL_STATE(2955)] = 46156, + [SMALL_STATE(2956)] = 46219, + [SMALL_STATE(2957)] = 46282, + [SMALL_STATE(2958)] = 46345, + [SMALL_STATE(2959)] = 46408, + [SMALL_STATE(2960)] = 46471, + [SMALL_STATE(2961)] = 46534, + [SMALL_STATE(2962)] = 46597, + [SMALL_STATE(2963)] = 46660, + [SMALL_STATE(2964)] = 46723, + [SMALL_STATE(2965)] = 46786, + [SMALL_STATE(2966)] = 46887, + [SMALL_STATE(2967)] = 46988, + [SMALL_STATE(2968)] = 47051, + [SMALL_STATE(2969)] = 47152, + [SMALL_STATE(2970)] = 47215, + [SMALL_STATE(2971)] = 47278, + [SMALL_STATE(2972)] = 47341, + [SMALL_STATE(2973)] = 47416, + [SMALL_STATE(2974)] = 47479, + [SMALL_STATE(2975)] = 47554, + [SMALL_STATE(2976)] = 47617, + [SMALL_STATE(2977)] = 47680, + [SMALL_STATE(2978)] = 47743, + [SMALL_STATE(2979)] = 47806, + [SMALL_STATE(2980)] = 47869, + [SMALL_STATE(2981)] = 47938, + [SMALL_STATE(2982)] = 48001, + [SMALL_STATE(2983)] = 48064, + [SMALL_STATE(2984)] = 48127, + [SMALL_STATE(2985)] = 48190, + [SMALL_STATE(2986)] = 48253, + [SMALL_STATE(2987)] = 48316, + [SMALL_STATE(2988)] = 48379, + [SMALL_STATE(2989)] = 48442, + [SMALL_STATE(2990)] = 48505, + [SMALL_STATE(2991)] = 48568, + [SMALL_STATE(2992)] = 48631, + [SMALL_STATE(2993)] = 48694, + [SMALL_STATE(2994)] = 48757, + [SMALL_STATE(2995)] = 48826, + [SMALL_STATE(2996)] = 48897, + [SMALL_STATE(2997)] = 48960, + [SMALL_STATE(2998)] = 49023, + [SMALL_STATE(2999)] = 49086, + [SMALL_STATE(3000)] = 49149, + [SMALL_STATE(3001)] = 49212, + [SMALL_STATE(3002)] = 49275, + [SMALL_STATE(3003)] = 49338, + [SMALL_STATE(3004)] = 49401, + [SMALL_STATE(3005)] = 49464, + [SMALL_STATE(3006)] = 49527, + [SMALL_STATE(3007)] = 49590, + [SMALL_STATE(3008)] = 49665, + [SMALL_STATE(3009)] = 49740, + [SMALL_STATE(3010)] = 49803, + [SMALL_STATE(3011)] = 49866, + [SMALL_STATE(3012)] = 49929, + [SMALL_STATE(3013)] = 49992, + [SMALL_STATE(3014)] = 50055, + [SMALL_STATE(3015)] = 50118, + [SMALL_STATE(3016)] = 50185, + [SMALL_STATE(3017)] = 50250, + [SMALL_STATE(3018)] = 50325, + [SMALL_STATE(3019)] = 50400, + [SMALL_STATE(3020)] = 50469, + [SMALL_STATE(3021)] = 50532, + [SMALL_STATE(3022)] = 50595, + [SMALL_STATE(3023)] = 50658, + [SMALL_STATE(3024)] = 50721, + [SMALL_STATE(3025)] = 50784, + [SMALL_STATE(3026)] = 50847, + [SMALL_STATE(3027)] = 50910, + [SMALL_STATE(3028)] = 50973, + [SMALL_STATE(3029)] = 51036, + [SMALL_STATE(3030)] = 51099, + [SMALL_STATE(3031)] = 51162, + [SMALL_STATE(3032)] = 51257, + [SMALL_STATE(3033)] = 51320, + [SMALL_STATE(3034)] = 51383, + [SMALL_STATE(3035)] = 51446, + [SMALL_STATE(3036)] = 51509, + [SMALL_STATE(3037)] = 51572, + [SMALL_STATE(3038)] = 51635, + [SMALL_STATE(3039)] = 51734, + [SMALL_STATE(3040)] = 51833, + [SMALL_STATE(3041)] = 51932, + [SMALL_STATE(3042)] = 52005, + [SMALL_STATE(3043)] = 52074, + [SMALL_STATE(3044)] = 52143, + [SMALL_STATE(3045)] = 52218, + [SMALL_STATE(3046)] = 52313, + [SMALL_STATE(3047)] = 52400, + [SMALL_STATE(3048)] = 52479, + [SMALL_STATE(3049)] = 52554, + [SMALL_STATE(3050)] = 52637, + [SMALL_STATE(3051)] = 52728, + [SMALL_STATE(3052)] = 52821, + [SMALL_STATE(3053)] = 52884, + [SMALL_STATE(3054)] = 52947, + [SMALL_STATE(3055)] = 53010, + [SMALL_STATE(3056)] = 53073, + [SMALL_STATE(3057)] = 53136, + [SMALL_STATE(3058)] = 53199, + [SMALL_STATE(3059)] = 53294, + [SMALL_STATE(3060)] = 53357, + [SMALL_STATE(3061)] = 53420, + [SMALL_STATE(3062)] = 53483, + [SMALL_STATE(3063)] = 53582, + [SMALL_STATE(3064)] = 53645, + [SMALL_STATE(3065)] = 53744, + [SMALL_STATE(3066)] = 53807, + [SMALL_STATE(3067)] = 53870, + [SMALL_STATE(3068)] = 53933, + [SMALL_STATE(3069)] = 53996, + [SMALL_STATE(3070)] = 54059, + [SMALL_STATE(3071)] = 54122, + [SMALL_STATE(3072)] = 54185, + [SMALL_STATE(3073)] = 54248, + [SMALL_STATE(3074)] = 54311, + [SMALL_STATE(3075)] = 54380, + [SMALL_STATE(3076)] = 54443, + [SMALL_STATE(3077)] = 54518, + [SMALL_STATE(3078)] = 54583, + [SMALL_STATE(3079)] = 54646, + [SMALL_STATE(3080)] = 54709, + [SMALL_STATE(3081)] = 54772, + [SMALL_STATE(3082)] = 54835, + [SMALL_STATE(3083)] = 54898, + [SMALL_STATE(3084)] = 54961, + [SMALL_STATE(3085)] = 55024, + [SMALL_STATE(3086)] = 55087, + [SMALL_STATE(3087)] = 55188, + [SMALL_STATE(3088)] = 55251, + [SMALL_STATE(3089)] = 55314, + [SMALL_STATE(3090)] = 55377, + [SMALL_STATE(3091)] = 55442, + [SMALL_STATE(3092)] = 55505, + [SMALL_STATE(3093)] = 55568, + [SMALL_STATE(3094)] = 55631, + [SMALL_STATE(3095)] = 55694, + [SMALL_STATE(3096)] = 55757, + [SMALL_STATE(3097)] = 55822, + [SMALL_STATE(3098)] = 55885, + [SMALL_STATE(3099)] = 55948, + [SMALL_STATE(3100)] = 56011, + [SMALL_STATE(3101)] = 56076, + [SMALL_STATE(3102)] = 56139, + [SMALL_STATE(3103)] = 56202, + [SMALL_STATE(3104)] = 56265, + [SMALL_STATE(3105)] = 56328, + [SMALL_STATE(3106)] = 56391, + [SMALL_STATE(3107)] = 56454, + [SMALL_STATE(3108)] = 56517, + [SMALL_STATE(3109)] = 56580, + [SMALL_STATE(3110)] = 56643, + [SMALL_STATE(3111)] = 56706, + [SMALL_STATE(3112)] = 56769, + [SMALL_STATE(3113)] = 56832, + [SMALL_STATE(3114)] = 56895, + [SMALL_STATE(3115)] = 56958, + [SMALL_STATE(3116)] = 57021, + [SMALL_STATE(3117)] = 57084, + [SMALL_STATE(3118)] = 57147, + [SMALL_STATE(3119)] = 57210, + [SMALL_STATE(3120)] = 57273, + [SMALL_STATE(3121)] = 57336, + [SMALL_STATE(3122)] = 57399, + [SMALL_STATE(3123)] = 57462, + [SMALL_STATE(3124)] = 57531, + [SMALL_STATE(3125)] = 57594, + [SMALL_STATE(3126)] = 57657, + [SMALL_STATE(3127)] = 57720, + [SMALL_STATE(3128)] = 57819, + [SMALL_STATE(3129)] = 57882, + [SMALL_STATE(3130)] = 57945, + [SMALL_STATE(3131)] = 58010, + [SMALL_STATE(3132)] = 58079, + [SMALL_STATE(3133)] = 58142, + [SMALL_STATE(3134)] = 58205, + [SMALL_STATE(3135)] = 58270, + [SMALL_STATE(3136)] = 58341, + [SMALL_STATE(3137)] = 58412, + [SMALL_STATE(3138)] = 58483, + [SMALL_STATE(3139)] = 58546, + [SMALL_STATE(3140)] = 58609, + [SMALL_STATE(3141)] = 58672, + [SMALL_STATE(3142)] = 58735, + [SMALL_STATE(3143)] = 58798, + [SMALL_STATE(3144)] = 58861, + [SMALL_STATE(3145)] = 58924, + [SMALL_STATE(3146)] = 59023, + [SMALL_STATE(3147)] = 59122, + [SMALL_STATE(3148)] = 59185, + [SMALL_STATE(3149)] = 59248, + [SMALL_STATE(3150)] = 59311, + [SMALL_STATE(3151)] = 59374, + [SMALL_STATE(3152)] = 59437, + [SMALL_STATE(3153)] = 59500, + [SMALL_STATE(3154)] = 59563, + [SMALL_STATE(3155)] = 59626, + [SMALL_STATE(3156)] = 59693, + [SMALL_STATE(3157)] = 59788, + [SMALL_STATE(3158)] = 59855, + [SMALL_STATE(3159)] = 59922, + [SMALL_STATE(3160)] = 59985, + [SMALL_STATE(3161)] = 60048, + [SMALL_STATE(3162)] = 60149, + [SMALL_STATE(3163)] = 60212, + [SMALL_STATE(3164)] = 60313, + [SMALL_STATE(3165)] = 60376, + [SMALL_STATE(3166)] = 60451, + [SMALL_STATE(3167)] = 60520, + [SMALL_STATE(3168)] = 60587, + [SMALL_STATE(3169)] = 60652, + [SMALL_STATE(3170)] = 60727, + [SMALL_STATE(3171)] = 60802, + [SMALL_STATE(3172)] = 60877, + [SMALL_STATE(3173)] = 60944, + [SMALL_STATE(3174)] = 61009, + [SMALL_STATE(3175)] = 61084, + [SMALL_STATE(3176)] = 61159, + [SMALL_STATE(3177)] = 61222, + [SMALL_STATE(3178)] = 61323, + [SMALL_STATE(3179)] = 61386, + [SMALL_STATE(3180)] = 61487, + [SMALL_STATE(3181)] = 61552, + [SMALL_STATE(3182)] = 61617, + [SMALL_STATE(3183)] = 61692, + [SMALL_STATE(3184)] = 61757, + [SMALL_STATE(3185)] = 61820, + [SMALL_STATE(3186)] = 61895, + [SMALL_STATE(3187)] = 61972, + [SMALL_STATE(3188)] = 62046, + [SMALL_STATE(3189)] = 62114, + [SMALL_STATE(3190)] = 62176, + [SMALL_STATE(3191)] = 62238, + [SMALL_STATE(3192)] = 62302, + [SMALL_STATE(3193)] = 62376, + [SMALL_STATE(3194)] = 62450, + [SMALL_STATE(3195)] = 62524, + [SMALL_STATE(3196)] = 62588, + [SMALL_STATE(3197)] = 62652, + [SMALL_STATE(3198)] = 62716, + [SMALL_STATE(3199)] = 62784, + [SMALL_STATE(3200)] = 62850, + [SMALL_STATE(3201)] = 62918, + [SMALL_STATE(3202)] = 62984, + [SMALL_STATE(3203)] = 63048, + [SMALL_STATE(3204)] = 63110, + [SMALL_STATE(3205)] = 63184, + [SMALL_STATE(3206)] = 63250, + [SMALL_STATE(3207)] = 63314, + [SMALL_STATE(3208)] = 63388, + [SMALL_STATE(3209)] = 63462, + [SMALL_STATE(3210)] = 63530, + [SMALL_STATE(3211)] = 63628, + [SMALL_STATE(3212)] = 63726, + [SMALL_STATE(3213)] = 63788, + [SMALL_STATE(3214)] = 63850, + [SMALL_STATE(3215)] = 63916, + [SMALL_STATE(3216)] = 63984, + [SMALL_STATE(3217)] = 64086, + [SMALL_STATE(3218)] = 64184, + [SMALL_STATE(3219)] = 64248, + [SMALL_STATE(3220)] = 64314, + [SMALL_STATE(3221)] = 64376, + [SMALL_STATE(3222)] = 64478, + [SMALL_STATE(3223)] = 64544, + [SMALL_STATE(3224)] = 64608, + [SMALL_STATE(3225)] = 64682, + [SMALL_STATE(3226)] = 64756, + [SMALL_STATE(3227)] = 64824, + [SMALL_STATE(3228)] = 64922, + [SMALL_STATE(3229)] = 64990, + [SMALL_STATE(3230)] = 65088, + [SMALL_STATE(3231)] = 65186, + [SMALL_STATE(3232)] = 65284, + [SMALL_STATE(3233)] = 65356, + [SMALL_STATE(3234)] = 65424, + [SMALL_STATE(3235)] = 65492, + [SMALL_STATE(3236)] = 65568, + [SMALL_STATE(3237)] = 65662, + [SMALL_STATE(3238)] = 65748, + [SMALL_STATE(3239)] = 65826, + [SMALL_STATE(3240)] = 65900, + [SMALL_STATE(3241)] = 65982, + [SMALL_STATE(3242)] = 66076, + [SMALL_STATE(3243)] = 66142, + [SMALL_STATE(3244)] = 66210, + [SMALL_STATE(3245)] = 66276, + [SMALL_STATE(3246)] = 66366, + [SMALL_STATE(3247)] = 66458, + [SMALL_STATE(3248)] = 66532, + [SMALL_STATE(3249)] = 66596, + [SMALL_STATE(3250)] = 66662, + [SMALL_STATE(3251)] = 66728, + [SMALL_STATE(3252)] = 66794, + [SMALL_STATE(3253)] = 66860, + [SMALL_STATE(3254)] = 66962, + [SMALL_STATE(3255)] = 67064, + [SMALL_STATE(3256)] = 67130, + [SMALL_STATE(3257)] = 67194, + [SMALL_STATE(3258)] = 67258, + [SMALL_STATE(3259)] = 67320, + [SMALL_STATE(3260)] = 67384, + [SMALL_STATE(3261)] = 67482, + [SMALL_STATE(3262)] = 67580, + [SMALL_STATE(3263)] = 67648, + [SMALL_STATE(3264)] = 67710, + [SMALL_STATE(3265)] = 67784, + [SMALL_STATE(3266)] = 67846, + [SMALL_STATE(3267)] = 67908, + [SMALL_STATE(3268)] = 67970, + [SMALL_STATE(3269)] = 68034, + [SMALL_STATE(3270)] = 68108, + [SMALL_STATE(3271)] = 68182, + [SMALL_STATE(3272)] = 68252, + [SMALL_STATE(3273)] = 68314, + [SMALL_STATE(3274)] = 68376, + [SMALL_STATE(3275)] = 68450, + [SMALL_STATE(3276)] = 68520, + [SMALL_STATE(3277)] = 68590, + [SMALL_STATE(3278)] = 68656, + [SMALL_STATE(3279)] = 68718, + [SMALL_STATE(3280)] = 68780, [SMALL_STATE(3281)] = 68844, - [SMALL_STATE(3282)] = 68942, - [SMALL_STATE(3283)] = 69008, - [SMALL_STATE(3284)] = 69070, - [SMALL_STATE(3285)] = 69138, - [SMALL_STATE(3286)] = 69204, - [SMALL_STATE(3287)] = 69302, - [SMALL_STATE(3288)] = 69364, - [SMALL_STATE(3289)] = 69430, - [SMALL_STATE(3290)] = 69496, - [SMALL_STATE(3291)] = 69558, - [SMALL_STATE(3292)] = 69626, - [SMALL_STATE(3293)] = 69690, - [SMALL_STATE(3294)] = 69788, - [SMALL_STATE(3295)] = 69890, - [SMALL_STATE(3296)] = 69954, - [SMALL_STATE(3297)] = 70018, - [SMALL_STATE(3298)] = 70116, - [SMALL_STATE(3299)] = 70184, - [SMALL_STATE(3300)] = 70248, - [SMALL_STATE(3301)] = 70322, - [SMALL_STATE(3302)] = 70396, - [SMALL_STATE(3303)] = 70470, - [SMALL_STATE(3304)] = 70564, - [SMALL_STATE(3305)] = 70638, - [SMALL_STATE(3306)] = 70732, - [SMALL_STATE(3307)] = 70794, - [SMALL_STATE(3308)] = 70868, - [SMALL_STATE(3309)] = 70932, - [SMALL_STATE(3310)] = 70998, - [SMALL_STATE(3311)] = 71064, - [SMALL_STATE(3312)] = 71130, - [SMALL_STATE(3313)] = 71196, - [SMALL_STATE(3314)] = 71262, - [SMALL_STATE(3315)] = 71330, - [SMALL_STATE(3316)] = 71394, - [SMALL_STATE(3317)] = 71455, - [SMALL_STATE(3318)] = 71516, - [SMALL_STATE(3319)] = 71577, - [SMALL_STATE(3320)] = 71638, - [SMALL_STATE(3321)] = 71699, - [SMALL_STATE(3322)] = 71760, - [SMALL_STATE(3323)] = 71857, - [SMALL_STATE(3324)] = 71920, - [SMALL_STATE(3325)] = 71985, - [SMALL_STATE(3326)] = 72082, - [SMALL_STATE(3327)] = 72179, - [SMALL_STATE(3328)] = 72250, - [SMALL_STATE(3329)] = 72317, - [SMALL_STATE(3330)] = 72384, - [SMALL_STATE(3331)] = 72459, - [SMALL_STATE(3332)] = 72552, - [SMALL_STATE(3333)] = 72637, - [SMALL_STATE(3334)] = 72698, - [SMALL_STATE(3335)] = 72775, - [SMALL_STATE(3336)] = 72836, - [SMALL_STATE(3337)] = 72909, - [SMALL_STATE(3338)] = 72990, - [SMALL_STATE(3339)] = 73079, - [SMALL_STATE(3340)] = 73170, - [SMALL_STATE(3341)] = 73231, - [SMALL_STATE(3342)] = 73292, - [SMALL_STATE(3343)] = 73353, - [SMALL_STATE(3344)] = 73414, - [SMALL_STATE(3345)] = 73475, - [SMALL_STATE(3346)] = 73536, - [SMALL_STATE(3347)] = 73597, - [SMALL_STATE(3348)] = 73690, - [SMALL_STATE(3349)] = 73751, - [SMALL_STATE(3350)] = 73812, - [SMALL_STATE(3351)] = 73909, - [SMALL_STATE(3352)] = 73970, - [SMALL_STATE(3353)] = 74067, - [SMALL_STATE(3354)] = 74128, - [SMALL_STATE(3355)] = 74189, - [SMALL_STATE(3356)] = 74250, - [SMALL_STATE(3357)] = 74317, - [SMALL_STATE(3358)] = 74386, - [SMALL_STATE(3359)] = 74447, - [SMALL_STATE(3360)] = 74508, - [SMALL_STATE(3361)] = 74569, - [SMALL_STATE(3362)] = 74630, - [SMALL_STATE(3363)] = 74691, - [SMALL_STATE(3364)] = 74752, - [SMALL_STATE(3365)] = 74813, - [SMALL_STATE(3366)] = 74874, - [SMALL_STATE(3367)] = 74935, - [SMALL_STATE(3368)] = 74996, - [SMALL_STATE(3369)] = 75057, - [SMALL_STATE(3370)] = 75130, - [SMALL_STATE(3371)] = 75195, - [SMALL_STATE(3372)] = 75258, - [SMALL_STATE(3373)] = 75331, - [SMALL_STATE(3374)] = 75392, - [SMALL_STATE(3375)] = 75465, - [SMALL_STATE(3376)] = 75534, - [SMALL_STATE(3377)] = 75597, - [SMALL_STATE(3378)] = 75660, - [SMALL_STATE(3379)] = 75721, - [SMALL_STATE(3380)] = 75782, - [SMALL_STATE(3381)] = 75843, - [SMALL_STATE(3382)] = 75904, - [SMALL_STATE(3383)] = 75965, - [SMALL_STATE(3384)] = 76034, - [SMALL_STATE(3385)] = 76095, - [SMALL_STATE(3386)] = 76164, - [SMALL_STATE(3387)] = 76225, - [SMALL_STATE(3388)] = 76286, - [SMALL_STATE(3389)] = 76347, - [SMALL_STATE(3390)] = 76444, - [SMALL_STATE(3391)] = 76541, - [SMALL_STATE(3392)] = 76602, - [SMALL_STATE(3393)] = 76663, - [SMALL_STATE(3394)] = 76724, - [SMALL_STATE(3395)] = 76785, - [SMALL_STATE(3396)] = 76846, - [SMALL_STATE(3397)] = 76907, - [SMALL_STATE(3398)] = 76974, - [SMALL_STATE(3399)] = 77035, - [SMALL_STATE(3400)] = 77096, - [SMALL_STATE(3401)] = 77157, - [SMALL_STATE(3402)] = 77218, - [SMALL_STATE(3403)] = 77279, - [SMALL_STATE(3404)] = 77340, - [SMALL_STATE(3405)] = 77407, - [SMALL_STATE(3406)] = 77468, - [SMALL_STATE(3407)] = 77529, - [SMALL_STATE(3408)] = 77590, - [SMALL_STATE(3409)] = 77653, - [SMALL_STATE(3410)] = 77714, - [SMALL_STATE(3411)] = 77775, - [SMALL_STATE(3412)] = 77848, - [SMALL_STATE(3413)] = 77911, - [SMALL_STATE(3414)] = 77976, - [SMALL_STATE(3415)] = 78037, - [SMALL_STATE(3416)] = 78098, - [SMALL_STATE(3417)] = 78161, - [SMALL_STATE(3418)] = 78258, - [SMALL_STATE(3419)] = 78319, - [SMALL_STATE(3420)] = 78380, - [SMALL_STATE(3421)] = 78441, - [SMALL_STATE(3422)] = 78502, - [SMALL_STATE(3423)] = 78565, - [SMALL_STATE(3424)] = 78626, - [SMALL_STATE(3425)] = 78687, - [SMALL_STATE(3426)] = 78748, - [SMALL_STATE(3427)] = 78815, - [SMALL_STATE(3428)] = 78876, - [SMALL_STATE(3429)] = 78937, - [SMALL_STATE(3430)] = 78998, - [SMALL_STATE(3431)] = 79059, - [SMALL_STATE(3432)] = 79120, - [SMALL_STATE(3433)] = 79181, - [SMALL_STATE(3434)] = 79242, - [SMALL_STATE(3435)] = 79303, - [SMALL_STATE(3436)] = 79364, - [SMALL_STATE(3437)] = 79437, - [SMALL_STATE(3438)] = 79498, - [SMALL_STATE(3439)] = 79559, - [SMALL_STATE(3440)] = 79632, - [SMALL_STATE(3441)] = 79697, - [SMALL_STATE(3442)] = 79760, - [SMALL_STATE(3443)] = 79833, - [SMALL_STATE(3444)] = 79906, - [SMALL_STATE(3445)] = 79967, - [SMALL_STATE(3446)] = 80028, - [SMALL_STATE(3447)] = 80089, - [SMALL_STATE(3448)] = 80150, - [SMALL_STATE(3449)] = 80211, - [SMALL_STATE(3450)] = 80272, - [SMALL_STATE(3451)] = 80333, - [SMALL_STATE(3452)] = 80394, - [SMALL_STATE(3453)] = 80455, - [SMALL_STATE(3454)] = 80516, - [SMALL_STATE(3455)] = 80577, - [SMALL_STATE(3456)] = 80638, - [SMALL_STATE(3457)] = 80699, - [SMALL_STATE(3458)] = 80760, - [SMALL_STATE(3459)] = 80821, - [SMALL_STATE(3460)] = 80882, - [SMALL_STATE(3461)] = 80943, - [SMALL_STATE(3462)] = 81004, - [SMALL_STATE(3463)] = 81069, - [SMALL_STATE(3464)] = 81162, - [SMALL_STATE(3465)] = 81223, - [SMALL_STATE(3466)] = 81284, - [SMALL_STATE(3467)] = 81345, - [SMALL_STATE(3468)] = 81406, - [SMALL_STATE(3469)] = 81467, - [SMALL_STATE(3470)] = 81528, - [SMALL_STATE(3471)] = 81589, - [SMALL_STATE(3472)] = 81650, - [SMALL_STATE(3473)] = 81715, - [SMALL_STATE(3474)] = 81780, - [SMALL_STATE(3475)] = 81841, - [SMALL_STATE(3476)] = 81902, - [SMALL_STATE(3477)] = 81965, - [SMALL_STATE(3478)] = 82026, - [SMALL_STATE(3479)] = 82087, - [SMALL_STATE(3480)] = 82148, - [SMALL_STATE(3481)] = 82209, - [SMALL_STATE(3482)] = 82272, - [SMALL_STATE(3483)] = 82333, - [SMALL_STATE(3484)] = 82394, - [SMALL_STATE(3485)] = 82455, - [SMALL_STATE(3486)] = 82516, - [SMALL_STATE(3487)] = 82577, - [SMALL_STATE(3488)] = 82638, - [SMALL_STATE(3489)] = 82699, - [SMALL_STATE(3490)] = 82760, - [SMALL_STATE(3491)] = 82821, - [SMALL_STATE(3492)] = 82882, - [SMALL_STATE(3493)] = 82943, - [SMALL_STATE(3494)] = 83004, - [SMALL_STATE(3495)] = 83067, - [SMALL_STATE(3496)] = 83128, - [SMALL_STATE(3497)] = 83193, - [SMALL_STATE(3498)] = 83254, - [SMALL_STATE(3499)] = 83315, - [SMALL_STATE(3500)] = 83376, - [SMALL_STATE(3501)] = 83437, - [SMALL_STATE(3502)] = 83498, - [SMALL_STATE(3503)] = 83559, - [SMALL_STATE(3504)] = 83620, - [SMALL_STATE(3505)] = 83681, - [SMALL_STATE(3506)] = 83742, - [SMALL_STATE(3507)] = 83803, - [SMALL_STATE(3508)] = 83864, - [SMALL_STATE(3509)] = 83925, - [SMALL_STATE(3510)] = 83986, - [SMALL_STATE(3511)] = 84047, - [SMALL_STATE(3512)] = 84108, - [SMALL_STATE(3513)] = 84169, - [SMALL_STATE(3514)] = 84230, - [SMALL_STATE(3515)] = 84291, - [SMALL_STATE(3516)] = 84352, - [SMALL_STATE(3517)] = 84417, - [SMALL_STATE(3518)] = 84484, - [SMALL_STATE(3519)] = 84545, - [SMALL_STATE(3520)] = 84606, - [SMALL_STATE(3521)] = 84669, - [SMALL_STATE(3522)] = 84732, - [SMALL_STATE(3523)] = 84793, - [SMALL_STATE(3524)] = 84854, - [SMALL_STATE(3525)] = 84915, - [SMALL_STATE(3526)] = 84976, - [SMALL_STATE(3527)] = 85037, - [SMALL_STATE(3528)] = 85098, - [SMALL_STATE(3529)] = 85159, - [SMALL_STATE(3530)] = 85220, - [SMALL_STATE(3531)] = 85283, - [SMALL_STATE(3532)] = 85346, - [SMALL_STATE(3533)] = 85407, - [SMALL_STATE(3534)] = 85468, - [SMALL_STATE(3535)] = 85529, - [SMALL_STATE(3536)] = 85590, - [SMALL_STATE(3537)] = 85651, - [SMALL_STATE(3538)] = 85712, - [SMALL_STATE(3539)] = 85773, - [SMALL_STATE(3540)] = 85834, - [SMALL_STATE(3541)] = 85895, - [SMALL_STATE(3542)] = 85956, - [SMALL_STATE(3543)] = 86017, - [SMALL_STATE(3544)] = 86090, - [SMALL_STATE(3545)] = 86151, - [SMALL_STATE(3546)] = 86218, - [SMALL_STATE(3547)] = 86291, - [SMALL_STATE(3548)] = 86352, - [SMALL_STATE(3549)] = 86413, - [SMALL_STATE(3550)] = 86474, - [SMALL_STATE(3551)] = 86535, - [SMALL_STATE(3552)] = 86596, - [SMALL_STATE(3553)] = 86657, - [SMALL_STATE(3554)] = 86718, - [SMALL_STATE(3555)] = 86785, - [SMALL_STATE(3556)] = 86846, - [SMALL_STATE(3557)] = 86907, - [SMALL_STATE(3558)] = 86968, - [SMALL_STATE(3559)] = 87029, - [SMALL_STATE(3560)] = 87090, - [SMALL_STATE(3561)] = 87151, - [SMALL_STATE(3562)] = 87212, - [SMALL_STATE(3563)] = 87309, - [SMALL_STATE(3564)] = 87406, - [SMALL_STATE(3565)] = 87467, - [SMALL_STATE(3566)] = 87528, - [SMALL_STATE(3567)] = 87589, - [SMALL_STATE(3568)] = 87650, - [SMALL_STATE(3569)] = 87711, - [SMALL_STATE(3570)] = 87772, - [SMALL_STATE(3571)] = 87833, - [SMALL_STATE(3572)] = 87894, - [SMALL_STATE(3573)] = 87955, - [SMALL_STATE(3574)] = 88016, - [SMALL_STATE(3575)] = 88077, - [SMALL_STATE(3576)] = 88138, - [SMALL_STATE(3577)] = 88199, - [SMALL_STATE(3578)] = 88260, - [SMALL_STATE(3579)] = 88353, - [SMALL_STATE(3580)] = 88414, - [SMALL_STATE(3581)] = 88475, - [SMALL_STATE(3582)] = 88536, - [SMALL_STATE(3583)] = 88597, - [SMALL_STATE(3584)] = 88658, - [SMALL_STATE(3585)] = 88719, - [SMALL_STATE(3586)] = 88780, - [SMALL_STATE(3587)] = 88841, - [SMALL_STATE(3588)] = 88902, - [SMALL_STATE(3589)] = 88963, - [SMALL_STATE(3590)] = 89023, - [SMALL_STATE(3591)] = 89083, - [SMALL_STATE(3592)] = 89143, - [SMALL_STATE(3593)] = 89207, - [SMALL_STATE(3594)] = 89267, - [SMALL_STATE(3595)] = 89367, - [SMALL_STATE(3596)] = 89427, - [SMALL_STATE(3597)] = 89487, - [SMALL_STATE(3598)] = 89547, - [SMALL_STATE(3599)] = 89607, - [SMALL_STATE(3600)] = 89667, - [SMALL_STATE(3601)] = 89727, - [SMALL_STATE(3602)] = 89787, - [SMALL_STATE(3603)] = 89847, - [SMALL_STATE(3604)] = 89909, - [SMALL_STATE(3605)] = 89973, - [SMALL_STATE(3606)] = 90033, - [SMALL_STATE(3607)] = 90097, - [SMALL_STATE(3608)] = 90157, - [SMALL_STATE(3609)] = 90217, - [SMALL_STATE(3610)] = 90277, - [SMALL_STATE(3611)] = 90341, - [SMALL_STATE(3612)] = 90401, - [SMALL_STATE(3613)] = 90461, - [SMALL_STATE(3614)] = 90521, - [SMALL_STATE(3615)] = 90581, - [SMALL_STATE(3616)] = 90641, - [SMALL_STATE(3617)] = 90701, - [SMALL_STATE(3618)] = 90763, - [SMALL_STATE(3619)] = 90823, - [SMALL_STATE(3620)] = 90883, - [SMALL_STATE(3621)] = 90943, - [SMALL_STATE(3622)] = 91003, - [SMALL_STATE(3623)] = 91063, - [SMALL_STATE(3624)] = 91123, - [SMALL_STATE(3625)] = 91183, - [SMALL_STATE(3626)] = 91243, - [SMALL_STATE(3627)] = 91307, - [SMALL_STATE(3628)] = 91367, - [SMALL_STATE(3629)] = 91429, - [SMALL_STATE(3630)] = 91489, - [SMALL_STATE(3631)] = 91551, - [SMALL_STATE(3632)] = 91611, - [SMALL_STATE(3633)] = 91671, - [SMALL_STATE(3634)] = 91731, - [SMALL_STATE(3635)] = 91793, - [SMALL_STATE(3636)] = 91859, - [SMALL_STATE(3637)] = 91919, - [SMALL_STATE(3638)] = 91979, - [SMALL_STATE(3639)] = 92039, - [SMALL_STATE(3640)] = 92105, - [SMALL_STATE(3641)] = 92165, - [SMALL_STATE(3642)] = 92229, - [SMALL_STATE(3643)] = 92289, - [SMALL_STATE(3644)] = 92349, - [SMALL_STATE(3645)] = 92409, - [SMALL_STATE(3646)] = 92469, - [SMALL_STATE(3647)] = 92529, - [SMALL_STATE(3648)] = 92591, - [SMALL_STATE(3649)] = 92651, - [SMALL_STATE(3650)] = 92711, - [SMALL_STATE(3651)] = 92771, - [SMALL_STATE(3652)] = 92831, - [SMALL_STATE(3653)] = 92891, - [SMALL_STATE(3654)] = 92953, - [SMALL_STATE(3655)] = 93013, - [SMALL_STATE(3656)] = 93073, - [SMALL_STATE(3657)] = 93137, - [SMALL_STATE(3658)] = 93197, - [SMALL_STATE(3659)] = 93257, - [SMALL_STATE(3660)] = 93317, - [SMALL_STATE(3661)] = 93377, - [SMALL_STATE(3662)] = 93437, - [SMALL_STATE(3663)] = 93497, - [SMALL_STATE(3664)] = 93557, - [SMALL_STATE(3665)] = 93617, - [SMALL_STATE(3666)] = 93677, - [SMALL_STATE(3667)] = 93737, - [SMALL_STATE(3668)] = 93797, - [SMALL_STATE(3669)] = 93859, - [SMALL_STATE(3670)] = 93919, - [SMALL_STATE(3671)] = 93981, - [SMALL_STATE(3672)] = 94041, - [SMALL_STATE(3673)] = 94141, - [SMALL_STATE(3674)] = 94201, - [SMALL_STATE(3675)] = 94263, - [SMALL_STATE(3676)] = 94325, - [SMALL_STATE(3677)] = 94385, - [SMALL_STATE(3678)] = 94445, - [SMALL_STATE(3679)] = 94505, - [SMALL_STATE(3680)] = 94565, - [SMALL_STATE(3681)] = 94625, - [SMALL_STATE(3682)] = 94685, - [SMALL_STATE(3683)] = 94745, - [SMALL_STATE(3684)] = 94805, - [SMALL_STATE(3685)] = 94865, - [SMALL_STATE(3686)] = 94925, - [SMALL_STATE(3687)] = 94987, - [SMALL_STATE(3688)] = 95047, - [SMALL_STATE(3689)] = 95109, - [SMALL_STATE(3690)] = 95169, - [SMALL_STATE(3691)] = 95229, - [SMALL_STATE(3692)] = 95289, - [SMALL_STATE(3693)] = 95349, - [SMALL_STATE(3694)] = 95409, - [SMALL_STATE(3695)] = 95469, - [SMALL_STATE(3696)] = 95529, - [SMALL_STATE(3697)] = 95589, - [SMALL_STATE(3698)] = 95655, - [SMALL_STATE(3699)] = 95715, - [SMALL_STATE(3700)] = 95775, - [SMALL_STATE(3701)] = 95835, - [SMALL_STATE(3702)] = 95895, - [SMALL_STATE(3703)] = 95955, - [SMALL_STATE(3704)] = 96015, - [SMALL_STATE(3705)] = 96079, - [SMALL_STATE(3706)] = 96139, - [SMALL_STATE(3707)] = 96199, - [SMALL_STATE(3708)] = 96259, - [SMALL_STATE(3709)] = 96319, - [SMALL_STATE(3710)] = 96379, - [SMALL_STATE(3711)] = 96439, - [SMALL_STATE(3712)] = 96499, - [SMALL_STATE(3713)] = 96559, - [SMALL_STATE(3714)] = 96619, - [SMALL_STATE(3715)] = 96679, - [SMALL_STATE(3716)] = 96739, - [SMALL_STATE(3717)] = 96799, - [SMALL_STATE(3718)] = 96859, - [SMALL_STATE(3719)] = 96919, - [SMALL_STATE(3720)] = 96985, - [SMALL_STATE(3721)] = 97045, - [SMALL_STATE(3722)] = 97109, - [SMALL_STATE(3723)] = 97175, - [SMALL_STATE(3724)] = 97239, - [SMALL_STATE(3725)] = 97299, - [SMALL_STATE(3726)] = 97359, - [SMALL_STATE(3727)] = 97419, - [SMALL_STATE(3728)] = 97479, - [SMALL_STATE(3729)] = 97541, - [SMALL_STATE(3730)] = 97603, - [SMALL_STATE(3731)] = 97665, - [SMALL_STATE(3732)] = 97727, - [SMALL_STATE(3733)] = 97791, - [SMALL_STATE(3734)] = 97855, - [SMALL_STATE(3735)] = 97919, - [SMALL_STATE(3736)] = 97983, - [SMALL_STATE(3737)] = 98083, - [SMALL_STATE(3738)] = 98183, - [SMALL_STATE(3739)] = 98243, - [SMALL_STATE(3740)] = 98303, - [SMALL_STATE(3741)] = 98367, - [SMALL_STATE(3742)] = 98431, - [SMALL_STATE(3743)] = 98495, - [SMALL_STATE(3744)] = 98559, - [SMALL_STATE(3745)] = 98659, - [SMALL_STATE(3746)] = 98759, - [SMALL_STATE(3747)] = 98819, - [SMALL_STATE(3748)] = 98879, - [SMALL_STATE(3749)] = 98939, - [SMALL_STATE(3750)] = 99001, - [SMALL_STATE(3751)] = 99061, - [SMALL_STATE(3752)] = 99127, - [SMALL_STATE(3753)] = 99187, - [SMALL_STATE(3754)] = 99247, - [SMALL_STATE(3755)] = 99307, - [SMALL_STATE(3756)] = 99367, - [SMALL_STATE(3757)] = 99427, - [SMALL_STATE(3758)] = 99487, - [SMALL_STATE(3759)] = 99547, - [SMALL_STATE(3760)] = 99609, - [SMALL_STATE(3761)] = 99669, - [SMALL_STATE(3762)] = 99729, - [SMALL_STATE(3763)] = 99793, - [SMALL_STATE(3764)] = 99857, - [SMALL_STATE(3765)] = 99917, - [SMALL_STATE(3766)] = 99977, - [SMALL_STATE(3767)] = 100037, - [SMALL_STATE(3768)] = 100101, - [SMALL_STATE(3769)] = 100161, - [SMALL_STATE(3770)] = 100227, - [SMALL_STATE(3771)] = 100287, - [SMALL_STATE(3772)] = 100347, - [SMALL_STATE(3773)] = 100407, - [SMALL_STATE(3774)] = 100469, - [SMALL_STATE(3775)] = 100529, - [SMALL_STATE(3776)] = 100629, - [SMALL_STATE(3777)] = 100693, - [SMALL_STATE(3778)] = 100753, - [SMALL_STATE(3779)] = 100853, - [SMALL_STATE(3780)] = 100913, - [SMALL_STATE(3781)] = 100973, - [SMALL_STATE(3782)] = 101033, - [SMALL_STATE(3783)] = 101093, - [SMALL_STATE(3784)] = 101153, - [SMALL_STATE(3785)] = 101213, - [SMALL_STATE(3786)] = 101273, - [SMALL_STATE(3787)] = 101335, - [SMALL_STATE(3788)] = 101395, - [SMALL_STATE(3789)] = 101455, - [SMALL_STATE(3790)] = 101515, - [SMALL_STATE(3791)] = 101575, - [SMALL_STATE(3792)] = 101635, - [SMALL_STATE(3793)] = 101695, - [SMALL_STATE(3794)] = 101759, - [SMALL_STATE(3795)] = 101823, - [SMALL_STATE(3796)] = 101883, - [SMALL_STATE(3797)] = 101943, - [SMALL_STATE(3798)] = 102003, - [SMALL_STATE(3799)] = 102067, - [SMALL_STATE(3800)] = 102127, - [SMALL_STATE(3801)] = 102191, - [SMALL_STATE(3802)] = 102251, - [SMALL_STATE(3803)] = 102311, - [SMALL_STATE(3804)] = 102377, - [SMALL_STATE(3805)] = 102439, - [SMALL_STATE(3806)] = 102507, - [SMALL_STATE(3807)] = 102567, - [SMALL_STATE(3808)] = 102629, - [SMALL_STATE(3809)] = 102689, - [SMALL_STATE(3810)] = 102751, - [SMALL_STATE(3811)] = 102815, - [SMALL_STATE(3812)] = 102875, - [SMALL_STATE(3813)] = 102935, - [SMALL_STATE(3814)] = 102997, - [SMALL_STATE(3815)] = 103057, - [SMALL_STATE(3816)] = 103117, - [SMALL_STATE(3817)] = 103217, - [SMALL_STATE(3818)] = 103317, - [SMALL_STATE(3819)] = 103377, - [SMALL_STATE(3820)] = 103437, - [SMALL_STATE(3821)] = 103497, - [SMALL_STATE(3822)] = 103557, - [SMALL_STATE(3823)] = 103617, - [SMALL_STATE(3824)] = 103679, - [SMALL_STATE(3825)] = 103739, - [SMALL_STATE(3826)] = 103799, - [SMALL_STATE(3827)] = 103861, - [SMALL_STATE(3828)] = 103921, - [SMALL_STATE(3829)] = 103981, - [SMALL_STATE(3830)] = 104041, - [SMALL_STATE(3831)] = 104107, - [SMALL_STATE(3832)] = 104167, - [SMALL_STATE(3833)] = 104229, - [SMALL_STATE(3834)] = 104289, - [SMALL_STATE(3835)] = 104351, - [SMALL_STATE(3836)] = 104411, - [SMALL_STATE(3837)] = 104506, - [SMALL_STATE(3838)] = 104565, - [SMALL_STATE(3839)] = 104624, - [SMALL_STATE(3840)] = 104683, - [SMALL_STATE(3841)] = 104754, - [SMALL_STATE(3842)] = 104813, - [SMALL_STATE(3843)] = 104872, - [SMALL_STATE(3844)] = 104931, - [SMALL_STATE(3845)] = 104990, - [SMALL_STATE(3846)] = 105061, - [SMALL_STATE(3847)] = 105120, - [SMALL_STATE(3848)] = 105179, - [SMALL_STATE(3849)] = 105238, - [SMALL_STATE(3850)] = 105297, - [SMALL_STATE(3851)] = 105356, - [SMALL_STATE(3852)] = 105415, - [SMALL_STATE(3853)] = 105474, - [SMALL_STATE(3854)] = 105533, - [SMALL_STATE(3855)] = 105592, - [SMALL_STATE(3856)] = 105651, - [SMALL_STATE(3857)] = 105742, - [SMALL_STATE(3858)] = 105801, - [SMALL_STATE(3859)] = 105860, - [SMALL_STATE(3860)] = 105919, - [SMALL_STATE(3861)] = 105978, - [SMALL_STATE(3862)] = 106039, - [SMALL_STATE(3863)] = 106098, - [SMALL_STATE(3864)] = 106157, - [SMALL_STATE(3865)] = 106216, - [SMALL_STATE(3866)] = 106277, - [SMALL_STATE(3867)] = 106336, - [SMALL_STATE(3868)] = 106395, - [SMALL_STATE(3869)] = 106454, - [SMALL_STATE(3870)] = 106513, - [SMALL_STATE(3871)] = 106572, - [SMALL_STATE(3872)] = 106631, - [SMALL_STATE(3873)] = 106726, - [SMALL_STATE(3874)] = 106785, - [SMALL_STATE(3875)] = 106844, - [SMALL_STATE(3876)] = 106905, - [SMALL_STATE(3877)] = 106964, - [SMALL_STATE(3878)] = 107023, - [SMALL_STATE(3879)] = 107082, - [SMALL_STATE(3880)] = 107141, - [SMALL_STATE(3881)] = 107236, - [SMALL_STATE(3882)] = 107295, - [SMALL_STATE(3883)] = 107354, - [SMALL_STATE(3884)] = 107413, - [SMALL_STATE(3885)] = 107472, - [SMALL_STATE(3886)] = 107567, - [SMALL_STATE(3887)] = 107626, - [SMALL_STATE(3888)] = 107685, - [SMALL_STATE(3889)] = 107744, - [SMALL_STATE(3890)] = 107803, - [SMALL_STATE(3891)] = 107862, - [SMALL_STATE(3892)] = 107921, - [SMALL_STATE(3893)] = 107980, - [SMALL_STATE(3894)] = 108039, - [SMALL_STATE(3895)] = 108100, - [SMALL_STATE(3896)] = 108159, - [SMALL_STATE(3897)] = 108218, - [SMALL_STATE(3898)] = 108277, - [SMALL_STATE(3899)] = 108336, - [SMALL_STATE(3900)] = 108395, - [SMALL_STATE(3901)] = 108454, - [SMALL_STATE(3902)] = 108513, - [SMALL_STATE(3903)] = 108572, - [SMALL_STATE(3904)] = 108631, - [SMALL_STATE(3905)] = 108690, - [SMALL_STATE(3906)] = 108749, - [SMALL_STATE(3907)] = 108808, - [SMALL_STATE(3908)] = 108867, - [SMALL_STATE(3909)] = 108926, - [SMALL_STATE(3910)] = 108985, - [SMALL_STATE(3911)] = 109044, - [SMALL_STATE(3912)] = 109103, - [SMALL_STATE(3913)] = 109162, - [SMALL_STATE(3914)] = 109221, - [SMALL_STATE(3915)] = 109280, - [SMALL_STATE(3916)] = 109339, - [SMALL_STATE(3917)] = 109436, - [SMALL_STATE(3918)] = 109495, - [SMALL_STATE(3919)] = 109592, - [SMALL_STATE(3920)] = 109651, - [SMALL_STATE(3921)] = 109710, - [SMALL_STATE(3922)] = 109771, - [SMALL_STATE(3923)] = 109830, - [SMALL_STATE(3924)] = 109927, - [SMALL_STATE(3925)] = 109986, - [SMALL_STATE(3926)] = 110045, - [SMALL_STATE(3927)] = 110142, - [SMALL_STATE(3928)] = 110201, - [SMALL_STATE(3929)] = 110260, - [SMALL_STATE(3930)] = 110319, - [SMALL_STATE(3931)] = 110378, - [SMALL_STATE(3932)] = 110475, - [SMALL_STATE(3933)] = 110536, - [SMALL_STATE(3934)] = 110595, - [SMALL_STATE(3935)] = 110654, - [SMALL_STATE(3936)] = 110751, - [SMALL_STATE(3937)] = 110810, - [SMALL_STATE(3938)] = 110869, - [SMALL_STATE(3939)] = 110928, - [SMALL_STATE(3940)] = 110987, - [SMALL_STATE(3941)] = 111046, - [SMALL_STATE(3942)] = 111105, - [SMALL_STATE(3943)] = 111166, - [SMALL_STATE(3944)] = 111225, - [SMALL_STATE(3945)] = 111284, - [SMALL_STATE(3946)] = 111343, - [SMALL_STATE(3947)] = 111402, - [SMALL_STATE(3948)] = 111499, - [SMALL_STATE(3949)] = 111558, - [SMALL_STATE(3950)] = 111617, - [SMALL_STATE(3951)] = 111676, - [SMALL_STATE(3952)] = 111737, - [SMALL_STATE(3953)] = 111798, - [SMALL_STATE(3954)] = 111861, - [SMALL_STATE(3955)] = 111924, - [SMALL_STATE(3956)] = 111983, - [SMALL_STATE(3957)] = 112042, - [SMALL_STATE(3958)] = 112101, - [SMALL_STATE(3959)] = 112160, - [SMALL_STATE(3960)] = 112219, - [SMALL_STATE(3961)] = 112278, - [SMALL_STATE(3962)] = 112337, - [SMALL_STATE(3963)] = 112396, - [SMALL_STATE(3964)] = 112455, - [SMALL_STATE(3965)] = 112514, - [SMALL_STATE(3966)] = 112573, - [SMALL_STATE(3967)] = 112632, - [SMALL_STATE(3968)] = 112691, - [SMALL_STATE(3969)] = 112750, - [SMALL_STATE(3970)] = 112809, - [SMALL_STATE(3971)] = 112868, - [SMALL_STATE(3972)] = 112927, - [SMALL_STATE(3973)] = 112986, - [SMALL_STATE(3974)] = 113045, - [SMALL_STATE(3975)] = 113106, - [SMALL_STATE(3976)] = 113165, - [SMALL_STATE(3977)] = 113224, - [SMALL_STATE(3978)] = 113285, - [SMALL_STATE(3979)] = 113382, - [SMALL_STATE(3980)] = 113479, - [SMALL_STATE(3981)] = 113576, - [SMALL_STATE(3982)] = 113671, - [SMALL_STATE(3983)] = 113768, - [SMALL_STATE(3984)] = 113827, - [SMALL_STATE(3985)] = 113924, - [SMALL_STATE(3986)] = 114021, - [SMALL_STATE(3987)] = 114080, - [SMALL_STATE(3988)] = 114139, - [SMALL_STATE(3989)] = 114204, - [SMALL_STATE(3990)] = 114299, - [SMALL_STATE(3991)] = 114394, - [SMALL_STATE(3992)] = 114453, - [SMALL_STATE(3993)] = 114512, - [SMALL_STATE(3994)] = 114571, - [SMALL_STATE(3995)] = 114632, - [SMALL_STATE(3996)] = 114691, - [SMALL_STATE(3997)] = 114754, - [SMALL_STATE(3998)] = 114817, - [SMALL_STATE(3999)] = 114876, - [SMALL_STATE(4000)] = 114935, - [SMALL_STATE(4001)] = 114994, - [SMALL_STATE(4002)] = 115053, - [SMALL_STATE(4003)] = 115116, - [SMALL_STATE(4004)] = 115175, - [SMALL_STATE(4005)] = 115234, - [SMALL_STATE(4006)] = 115293, - [SMALL_STATE(4007)] = 115384, - [SMALL_STATE(4008)] = 115443, - [SMALL_STATE(4009)] = 115502, - [SMALL_STATE(4010)] = 115561, - [SMALL_STATE(4011)] = 115620, - [SMALL_STATE(4012)] = 115679, - [SMALL_STATE(4013)] = 115738, - [SMALL_STATE(4014)] = 115799, - [SMALL_STATE(4015)] = 115858, - [SMALL_STATE(4016)] = 115917, - [SMALL_STATE(4017)] = 115976, - [SMALL_STATE(4018)] = 116035, - [SMALL_STATE(4019)] = 116094, - [SMALL_STATE(4020)] = 116153, - [SMALL_STATE(4021)] = 116212, - [SMALL_STATE(4022)] = 116271, - [SMALL_STATE(4023)] = 116330, - [SMALL_STATE(4024)] = 116389, - [SMALL_STATE(4025)] = 116452, - [SMALL_STATE(4026)] = 116511, - [SMALL_STATE(4027)] = 116570, - [SMALL_STATE(4028)] = 116629, - [SMALL_STATE(4029)] = 116688, - [SMALL_STATE(4030)] = 116747, - [SMALL_STATE(4031)] = 116806, - [SMALL_STATE(4032)] = 116865, - [SMALL_STATE(4033)] = 116924, - [SMALL_STATE(4034)] = 116983, - [SMALL_STATE(4035)] = 117042, - [SMALL_STATE(4036)] = 117101, - [SMALL_STATE(4037)] = 117160, - [SMALL_STATE(4038)] = 117219, - [SMALL_STATE(4039)] = 117278, - [SMALL_STATE(4040)] = 117337, - [SMALL_STATE(4041)] = 117400, - [SMALL_STATE(4042)] = 117459, - [SMALL_STATE(4043)] = 117518, - [SMALL_STATE(4044)] = 117581, - [SMALL_STATE(4045)] = 117640, - [SMALL_STATE(4046)] = 117699, - [SMALL_STATE(4047)] = 117758, - [SMALL_STATE(4048)] = 117817, - [SMALL_STATE(4049)] = 117876, - [SMALL_STATE(4050)] = 117955, - [SMALL_STATE(4051)] = 118014, - [SMALL_STATE(4052)] = 118073, - [SMALL_STATE(4053)] = 118132, - [SMALL_STATE(4054)] = 118191, - [SMALL_STATE(4055)] = 118250, - [SMALL_STATE(4056)] = 118309, - [SMALL_STATE(4057)] = 118368, - [SMALL_STATE(4058)] = 118427, - [SMALL_STATE(4059)] = 118486, - [SMALL_STATE(4060)] = 118545, - [SMALL_STATE(4061)] = 118604, - [SMALL_STATE(4062)] = 118663, - [SMALL_STATE(4063)] = 118722, - [SMALL_STATE(4064)] = 118785, - [SMALL_STATE(4065)] = 118848, - [SMALL_STATE(4066)] = 118907, - [SMALL_STATE(4067)] = 118966, - [SMALL_STATE(4068)] = 119025, - [SMALL_STATE(4069)] = 119084, - [SMALL_STATE(4070)] = 119143, - [SMALL_STATE(4071)] = 119202, - [SMALL_STATE(4072)] = 119261, - [SMALL_STATE(4073)] = 119320, - [SMALL_STATE(4074)] = 119379, - [SMALL_STATE(4075)] = 119438, - [SMALL_STATE(4076)] = 119497, - [SMALL_STATE(4077)] = 119558, - [SMALL_STATE(4078)] = 119617, - [SMALL_STATE(4079)] = 119676, - [SMALL_STATE(4080)] = 119735, - [SMALL_STATE(4081)] = 119794, - [SMALL_STATE(4082)] = 119853, - [SMALL_STATE(4083)] = 119912, - [SMALL_STATE(4084)] = 119971, - [SMALL_STATE(4085)] = 120030, - [SMALL_STATE(4086)] = 120125, - [SMALL_STATE(4087)] = 120220, - [SMALL_STATE(4088)] = 120279, - [SMALL_STATE(4089)] = 120338, - [SMALL_STATE(4090)] = 120437, - [SMALL_STATE(4091)] = 120496, - [SMALL_STATE(4092)] = 120555, - [SMALL_STATE(4093)] = 120614, - [SMALL_STATE(4094)] = 120677, - [SMALL_STATE(4095)] = 120736, - [SMALL_STATE(4096)] = 120799, - [SMALL_STATE(4097)] = 120858, - [SMALL_STATE(4098)] = 120957, - [SMALL_STATE(4099)] = 121020, - [SMALL_STATE(4100)] = 121079, - [SMALL_STATE(4101)] = 121142, - [SMALL_STATE(4102)] = 121201, - [SMALL_STATE(4103)] = 121262, - [SMALL_STATE(4104)] = 121321, - [SMALL_STATE(4105)] = 121380, - [SMALL_STATE(4106)] = 121439, - [SMALL_STATE(4107)] = 121538, - [SMALL_STATE(4108)] = 121601, - [SMALL_STATE(4109)] = 121662, - [SMALL_STATE(4110)] = 121723, - [SMALL_STATE(4111)] = 121782, - [SMALL_STATE(4112)] = 121841, - [SMALL_STATE(4113)] = 121900, - [SMALL_STATE(4114)] = 121963, - [SMALL_STATE(4115)] = 122022, - [SMALL_STATE(4116)] = 122085, - [SMALL_STATE(4117)] = 122148, - [SMALL_STATE(4118)] = 122207, - [SMALL_STATE(4119)] = 122266, - [SMALL_STATE(4120)] = 122325, - [SMALL_STATE(4121)] = 122384, - [SMALL_STATE(4122)] = 122443, - [SMALL_STATE(4123)] = 122502, - [SMALL_STATE(4124)] = 122561, - [SMALL_STATE(4125)] = 122620, - [SMALL_STATE(4126)] = 122679, - [SMALL_STATE(4127)] = 122738, - [SMALL_STATE(4128)] = 122797, - [SMALL_STATE(4129)] = 122894, - [SMALL_STATE(4130)] = 122953, - [SMALL_STATE(4131)] = 123012, - [SMALL_STATE(4132)] = 123071, - [SMALL_STATE(4133)] = 123130, - [SMALL_STATE(4134)] = 123189, - [SMALL_STATE(4135)] = 123248, - [SMALL_STATE(4136)] = 123307, - [SMALL_STATE(4137)] = 123366, - [SMALL_STATE(4138)] = 123425, - [SMALL_STATE(4139)] = 123484, - [SMALL_STATE(4140)] = 123563, - [SMALL_STATE(4141)] = 123642, - [SMALL_STATE(4142)] = 123701, - [SMALL_STATE(4143)] = 123760, - [SMALL_STATE(4144)] = 123819, - [SMALL_STATE(4145)] = 123878, - [SMALL_STATE(4146)] = 123937, - [SMALL_STATE(4147)] = 123996, - [SMALL_STATE(4148)] = 124055, - [SMALL_STATE(4149)] = 124114, - [SMALL_STATE(4150)] = 124173, - [SMALL_STATE(4151)] = 124232, - [SMALL_STATE(4152)] = 124291, - [SMALL_STATE(4153)] = 124350, - [SMALL_STATE(4154)] = 124409, - [SMALL_STATE(4155)] = 124468, - [SMALL_STATE(4156)] = 124527, - [SMALL_STATE(4157)] = 124590, - [SMALL_STATE(4158)] = 124685, - [SMALL_STATE(4159)] = 124744, - [SMALL_STATE(4160)] = 124803, - [SMALL_STATE(4161)] = 124862, - [SMALL_STATE(4162)] = 124921, - [SMALL_STATE(4163)] = 124980, - [SMALL_STATE(4164)] = 125039, - [SMALL_STATE(4165)] = 125098, - [SMALL_STATE(4166)] = 125159, - [SMALL_STATE(4167)] = 125218, - [SMALL_STATE(4168)] = 125279, - [SMALL_STATE(4169)] = 125338, - [SMALL_STATE(4170)] = 125397, - [SMALL_STATE(4171)] = 125456, - [SMALL_STATE(4172)] = 125515, - [SMALL_STATE(4173)] = 125574, - [SMALL_STATE(4174)] = 125635, - [SMALL_STATE(4175)] = 125694, - [SMALL_STATE(4176)] = 125753, - [SMALL_STATE(4177)] = 125812, - [SMALL_STATE(4178)] = 125871, - [SMALL_STATE(4179)] = 125930, - [SMALL_STATE(4180)] = 125989, - [SMALL_STATE(4181)] = 126048, - [SMALL_STATE(4182)] = 126107, - [SMALL_STATE(4183)] = 126166, - [SMALL_STATE(4184)] = 126227, - [SMALL_STATE(4185)] = 126286, - [SMALL_STATE(4186)] = 126345, - [SMALL_STATE(4187)] = 126404, - [SMALL_STATE(4188)] = 126463, - [SMALL_STATE(4189)] = 126522, - [SMALL_STATE(4190)] = 126581, - [SMALL_STATE(4191)] = 126640, - [SMALL_STATE(4192)] = 126703, - [SMALL_STATE(4193)] = 126794, - [SMALL_STATE(4194)] = 126853, - [SMALL_STATE(4195)] = 126914, - [SMALL_STATE(4196)] = 126973, - [SMALL_STATE(4197)] = 127032, - [SMALL_STATE(4198)] = 127091, - [SMALL_STATE(4199)] = 127154, - [SMALL_STATE(4200)] = 127213, - [SMALL_STATE(4201)] = 127272, - [SMALL_STATE(4202)] = 127331, - [SMALL_STATE(4203)] = 127392, - [SMALL_STATE(4204)] = 127451, - [SMALL_STATE(4205)] = 127522, - [SMALL_STATE(4206)] = 127617, - [SMALL_STATE(4207)] = 127688, - [SMALL_STATE(4208)] = 127783, - [SMALL_STATE(4209)] = 127846, - [SMALL_STATE(4210)] = 127905, - [SMALL_STATE(4211)] = 127964, - [SMALL_STATE(4212)] = 128025, - [SMALL_STATE(4213)] = 128088, - [SMALL_STATE(4214)] = 128147, - [SMALL_STATE(4215)] = 128206, - [SMALL_STATE(4216)] = 128267, - [SMALL_STATE(4217)] = 128326, - [SMALL_STATE(4218)] = 128385, - [SMALL_STATE(4219)] = 128444, - [SMALL_STATE(4220)] = 128503, - [SMALL_STATE(4221)] = 128562, - [SMALL_STATE(4222)] = 128621, - [SMALL_STATE(4223)] = 128680, - [SMALL_STATE(4224)] = 128739, - [SMALL_STATE(4225)] = 128798, - [SMALL_STATE(4226)] = 128889, - [SMALL_STATE(4227)] = 128948, - [SMALL_STATE(4228)] = 129009, - [SMALL_STATE(4229)] = 129068, - [SMALL_STATE(4230)] = 129131, - [SMALL_STATE(4231)] = 129190, - [SMALL_STATE(4232)] = 129253, - [SMALL_STATE(4233)] = 129316, - [SMALL_STATE(4234)] = 129375, - [SMALL_STATE(4235)] = 129446, - [SMALL_STATE(4236)] = 129505, - [SMALL_STATE(4237)] = 129600, - [SMALL_STATE(4238)] = 129659, - [SMALL_STATE(4239)] = 129718, - [SMALL_STATE(4240)] = 129813, - [SMALL_STATE(4241)] = 129908, - [SMALL_STATE(4242)] = 129967, - [SMALL_STATE(4243)] = 130036, - [SMALL_STATE(4244)] = 130101, - [SMALL_STATE(4245)] = 130166, - [SMALL_STATE(4246)] = 130225, - [SMALL_STATE(4247)] = 130298, - [SMALL_STATE(4248)] = 130357, - [SMALL_STATE(4249)] = 130416, - [SMALL_STATE(4250)] = 130507, - [SMALL_STATE(4251)] = 130598, - [SMALL_STATE(4252)] = 130693, - [SMALL_STATE(4253)] = 130752, - [SMALL_STATE(4254)] = 130847, - [SMALL_STATE(4255)] = 130942, - [SMALL_STATE(4256)] = 131011, - [SMALL_STATE(4257)] = 131070, - [SMALL_STATE(4258)] = 131135, - [SMALL_STATE(4259)] = 131200, - [SMALL_STATE(4260)] = 131273, - [SMALL_STATE(4261)] = 131332, - [SMALL_STATE(4262)] = 131423, - [SMALL_STATE(4263)] = 131506, - [SMALL_STATE(4264)] = 131581, - [SMALL_STATE(4265)] = 131652, - [SMALL_STATE(4266)] = 131711, - [SMALL_STATE(4267)] = 131790, - [SMALL_STATE(4268)] = 131849, - [SMALL_STATE(4269)] = 131936, - [SMALL_STATE(4270)] = 132025, - [SMALL_STATE(4271)] = 132084, - [SMALL_STATE(4272)] = 132167, - [SMALL_STATE(4273)] = 132258, - [SMALL_STATE(4274)] = 132333, - [SMALL_STATE(4275)] = 132392, - [SMALL_STATE(4276)] = 132463, - [SMALL_STATE(4277)] = 132542, - [SMALL_STATE(4278)] = 132637, - [SMALL_STATE(4279)] = 132732, - [SMALL_STATE(4280)] = 132791, - [SMALL_STATE(4281)] = 132878, - [SMALL_STATE(4282)] = 132937, - [SMALL_STATE(4283)] = 132996, - [SMALL_STATE(4284)] = 133055, - [SMALL_STATE(4285)] = 133114, - [SMALL_STATE(4286)] = 133173, - [SMALL_STATE(4287)] = 133262, - [SMALL_STATE(4288)] = 133361, - [SMALL_STATE(4289)] = 133419, - [SMALL_STATE(4290)] = 133513, - [SMALL_STATE(4291)] = 133607, - [SMALL_STATE(4292)] = 133675, - [SMALL_STATE(4293)] = 133739, - [SMALL_STATE(4294)] = 133803, - [SMALL_STATE(4295)] = 133875, - [SMALL_STATE(4296)] = 133965, - [SMALL_STATE(4297)] = 134047, - [SMALL_STATE(4298)] = 134121, - [SMALL_STATE(4299)] = 134191, - [SMALL_STATE(4300)] = 134269, - [SMALL_STATE(4301)] = 134355, - [SMALL_STATE(4302)] = 134443, - [SMALL_STATE(4303)] = 134533, - [SMALL_STATE(4304)] = 134591, - [SMALL_STATE(4305)] = 134649, - [SMALL_STATE(4306)] = 134743, - [SMALL_STATE(4307)] = 134837, - [SMALL_STATE(4308)] = 134897, - [SMALL_STATE(4309)] = 134957, - [SMALL_STATE(4310)] = 135017, - [SMALL_STATE(4311)] = 135079, - [SMALL_STATE(4312)] = 135137, - [SMALL_STATE(4313)] = 135197, - [SMALL_STATE(4314)] = 135257, - [SMALL_STATE(4315)] = 135319, - [SMALL_STATE(4316)] = 135381, - [SMALL_STATE(4317)] = 135439, - [SMALL_STATE(4318)] = 135497, - [SMALL_STATE(4319)] = 135559, - [SMALL_STATE(4320)] = 135619, - [SMALL_STATE(4321)] = 135677, - [SMALL_STATE(4322)] = 135775, - [SMALL_STATE(4323)] = 135833, - [SMALL_STATE(4324)] = 135891, - [SMALL_STATE(4325)] = 135989, - [SMALL_STATE(4326)] = 136047, - [SMALL_STATE(4327)] = 136107, - [SMALL_STATE(4328)] = 136165, - [SMALL_STATE(4329)] = 136223, - [SMALL_STATE(4330)] = 136281, - [SMALL_STATE(4331)] = 136339, - [SMALL_STATE(4332)] = 136397, - [SMALL_STATE(4333)] = 136455, - [SMALL_STATE(4334)] = 136513, - [SMALL_STATE(4335)] = 136571, - [SMALL_STATE(4336)] = 136629, - [SMALL_STATE(4337)] = 136687, - [SMALL_STATE(4338)] = 136745, - [SMALL_STATE(4339)] = 136803, - [SMALL_STATE(4340)] = 136861, - [SMALL_STATE(4341)] = 136931, - [SMALL_STATE(4342)] = 137001, - [SMALL_STATE(4343)] = 137059, - [SMALL_STATE(4344)] = 137137, - [SMALL_STATE(4345)] = 137199, - [SMALL_STATE(4346)] = 137261, - [SMALL_STATE(4347)] = 137323, - [SMALL_STATE(4348)] = 137383, - [SMALL_STATE(4349)] = 137453, - [SMALL_STATE(4350)] = 137513, - [SMALL_STATE(4351)] = 137575, - [SMALL_STATE(4352)] = 137645, - [SMALL_STATE(4353)] = 137715, - [SMALL_STATE(4354)] = 137775, - [SMALL_STATE(4355)] = 137853, - [SMALL_STATE(4356)] = 137931, - [SMALL_STATE(4357)] = 137993, - [SMALL_STATE(4358)] = 138053, - [SMALL_STATE(4359)] = 138123, - [SMALL_STATE(4360)] = 138193, - [SMALL_STATE(4361)] = 138255, - [SMALL_STATE(4362)] = 138345, - [SMALL_STATE(4363)] = 138407, - [SMALL_STATE(4364)] = 138469, - [SMALL_STATE(4365)] = 138533, - [SMALL_STATE(4366)] = 138599, - [SMALL_STATE(4367)] = 138693, - [SMALL_STATE(4368)] = 138787, - [SMALL_STATE(4369)] = 138881, - [SMALL_STATE(4370)] = 138975, - [SMALL_STATE(4371)] = 139069, - [SMALL_STATE(4372)] = 139159, - [SMALL_STATE(4373)] = 139217, - [SMALL_STATE(4374)] = 139275, - [SMALL_STATE(4375)] = 139333, - [SMALL_STATE(4376)] = 139391, - [SMALL_STATE(4377)] = 139485, - [SMALL_STATE(4378)] = 139543, - [SMALL_STATE(4379)] = 139601, - [SMALL_STATE(4380)] = 139659, - [SMALL_STATE(4381)] = 139717, - [SMALL_STATE(4382)] = 139775, - [SMALL_STATE(4383)] = 139833, - [SMALL_STATE(4384)] = 139891, - [SMALL_STATE(4385)] = 139949, - [SMALL_STATE(4386)] = 140007, - [SMALL_STATE(4387)] = 140101, - [SMALL_STATE(4388)] = 140195, - [SMALL_STATE(4389)] = 140289, - [SMALL_STATE(4390)] = 140347, - [SMALL_STATE(4391)] = 140405, - [SMALL_STATE(4392)] = 140463, - [SMALL_STATE(4393)] = 140521, - [SMALL_STATE(4394)] = 140579, - [SMALL_STATE(4395)] = 140637, - [SMALL_STATE(4396)] = 140695, - [SMALL_STATE(4397)] = 140753, - [SMALL_STATE(4398)] = 140811, - [SMALL_STATE(4399)] = 140869, - [SMALL_STATE(4400)] = 140927, - [SMALL_STATE(4401)] = 140985, - [SMALL_STATE(4402)] = 141043, - [SMALL_STATE(4403)] = 141101, - [SMALL_STATE(4404)] = 141159, - [SMALL_STATE(4405)] = 141217, - [SMALL_STATE(4406)] = 141275, - [SMALL_STATE(4407)] = 141333, - [SMALL_STATE(4408)] = 141391, - [SMALL_STATE(4409)] = 141449, - [SMALL_STATE(4410)] = 141507, - [SMALL_STATE(4411)] = 141565, - [SMALL_STATE(4412)] = 141623, - [SMALL_STATE(4413)] = 141681, - [SMALL_STATE(4414)] = 141739, - [SMALL_STATE(4415)] = 141797, - [SMALL_STATE(4416)] = 141855, - [SMALL_STATE(4417)] = 141913, - [SMALL_STATE(4418)] = 141971, - [SMALL_STATE(4419)] = 142029, - [SMALL_STATE(4420)] = 142119, - [SMALL_STATE(4421)] = 142177, - [SMALL_STATE(4422)] = 142235, - [SMALL_STATE(4423)] = 142293, - [SMALL_STATE(4424)] = 142387, - [SMALL_STATE(4425)] = 142481, - [SMALL_STATE(4426)] = 142575, - [SMALL_STATE(4427)] = 142669, - [SMALL_STATE(4428)] = 142763, - [SMALL_STATE(4429)] = 142857, - [SMALL_STATE(4430)] = 142951, - [SMALL_STATE(4431)] = 143019, - [SMALL_STATE(4432)] = 143083, - [SMALL_STATE(4433)] = 143147, - [SMALL_STATE(4434)] = 143219, - [SMALL_STATE(4435)] = 143277, - [SMALL_STATE(4436)] = 143367, - [SMALL_STATE(4437)] = 143449, - [SMALL_STATE(4438)] = 143523, - [SMALL_STATE(4439)] = 143593, - [SMALL_STATE(4440)] = 143671, - [SMALL_STATE(4441)] = 143729, - [SMALL_STATE(4442)] = 143787, - [SMALL_STATE(4443)] = 143845, - [SMALL_STATE(4444)] = 143931, - [SMALL_STATE(4445)] = 144019, - [SMALL_STATE(4446)] = 144077, - [SMALL_STATE(4447)] = 144135, - [SMALL_STATE(4448)] = 144193, - [SMALL_STATE(4449)] = 144287, - [SMALL_STATE(4450)] = 144345, - [SMALL_STATE(4451)] = 144403, - [SMALL_STATE(4452)] = 144461, - [SMALL_STATE(4453)] = 144519, - [SMALL_STATE(4454)] = 144577, - [SMALL_STATE(4455)] = 144635, - [SMALL_STATE(4456)] = 144693, - [SMALL_STATE(4457)] = 144751, - [SMALL_STATE(4458)] = 144809, - [SMALL_STATE(4459)] = 144867, - [SMALL_STATE(4460)] = 144925, - [SMALL_STATE(4461)] = 145015, - [SMALL_STATE(4462)] = 145073, - [SMALL_STATE(4463)] = 145131, - [SMALL_STATE(4464)] = 145189, - [SMALL_STATE(4465)] = 145247, - [SMALL_STATE(4466)] = 145305, - [SMALL_STATE(4467)] = 145363, - [SMALL_STATE(4468)] = 145421, - [SMALL_STATE(4469)] = 145479, - [SMALL_STATE(4470)] = 145537, - [SMALL_STATE(4471)] = 145595, - [SMALL_STATE(4472)] = 145653, - [SMALL_STATE(4473)] = 145711, - [SMALL_STATE(4474)] = 145805, - [SMALL_STATE(4475)] = 145863, - [SMALL_STATE(4476)] = 145921, - [SMALL_STATE(4477)] = 145979, - [SMALL_STATE(4478)] = 146037, - [SMALL_STATE(4479)] = 146095, - [SMALL_STATE(4480)] = 146189, - [SMALL_STATE(4481)] = 146247, - [SMALL_STATE(4482)] = 146305, - [SMALL_STATE(4483)] = 146363, - [SMALL_STATE(4484)] = 146421, - [SMALL_STATE(4485)] = 146479, - [SMALL_STATE(4486)] = 146537, - [SMALL_STATE(4487)] = 146595, - [SMALL_STATE(4488)] = 146653, - [SMALL_STATE(4489)] = 146711, - [SMALL_STATE(4490)] = 146769, - [SMALL_STATE(4491)] = 146827, - [SMALL_STATE(4492)] = 146885, - [SMALL_STATE(4493)] = 146943, - [SMALL_STATE(4494)] = 147001, - [SMALL_STATE(4495)] = 147059, - [SMALL_STATE(4496)] = 147117, - [SMALL_STATE(4497)] = 147175, - [SMALL_STATE(4498)] = 147233, - [SMALL_STATE(4499)] = 147291, - [SMALL_STATE(4500)] = 147349, - [SMALL_STATE(4501)] = 147407, - [SMALL_STATE(4502)] = 147465, - [SMALL_STATE(4503)] = 147523, - [SMALL_STATE(4504)] = 147581, - [SMALL_STATE(4505)] = 147639, - [SMALL_STATE(4506)] = 147697, - [SMALL_STATE(4507)] = 147755, - [SMALL_STATE(4508)] = 147813, - [SMALL_STATE(4509)] = 147871, - [SMALL_STATE(4510)] = 147929, - [SMALL_STATE(4511)] = 147989, - [SMALL_STATE(4512)] = 148049, - [SMALL_STATE(4513)] = 148109, - [SMALL_STATE(4514)] = 148167, - [SMALL_STATE(4515)] = 148225, - [SMALL_STATE(4516)] = 148283, - [SMALL_STATE(4517)] = 148341, - [SMALL_STATE(4518)] = 148399, - [SMALL_STATE(4519)] = 148469, - [SMALL_STATE(4520)] = 148527, - [SMALL_STATE(4521)] = 148585, - [SMALL_STATE(4522)] = 148643, - [SMALL_STATE(4523)] = 148701, - [SMALL_STATE(4524)] = 148763, - [SMALL_STATE(4525)] = 148823, - [SMALL_STATE(4526)] = 148893, - [SMALL_STATE(4527)] = 148963, - [SMALL_STATE(4528)] = 149021, - [SMALL_STATE(4529)] = 149079, - [SMALL_STATE(4530)] = 149177, - [SMALL_STATE(4531)] = 149239, - [SMALL_STATE(4532)] = 149337, - [SMALL_STATE(4533)] = 149399, - [SMALL_STATE(4534)] = 149461, - [SMALL_STATE(4535)] = 149523, - [SMALL_STATE(4536)] = 149581, - [SMALL_STATE(4537)] = 149639, - [SMALL_STATE(4538)] = 149697, - [SMALL_STATE(4539)] = 149755, - [SMALL_STATE(4540)] = 149813, - [SMALL_STATE(4541)] = 149871, - [SMALL_STATE(4542)] = 149929, - [SMALL_STATE(4543)] = 149987, - [SMALL_STATE(4544)] = 150045, - [SMALL_STATE(4545)] = 150103, - [SMALL_STATE(4546)] = 150161, - [SMALL_STATE(4547)] = 150219, - [SMALL_STATE(4548)] = 150277, - [SMALL_STATE(4549)] = 150335, - [SMALL_STATE(4550)] = 150393, - [SMALL_STATE(4551)] = 150451, - [SMALL_STATE(4552)] = 150509, - [SMALL_STATE(4553)] = 150567, - [SMALL_STATE(4554)] = 150625, - [SMALL_STATE(4555)] = 150687, - [SMALL_STATE(4556)] = 150747, - [SMALL_STATE(4557)] = 150809, - [SMALL_STATE(4558)] = 150871, - [SMALL_STATE(4559)] = 150931, - [SMALL_STATE(4560)] = 150993, - [SMALL_STATE(4561)] = 151053, - [SMALL_STATE(4562)] = 151151, - [SMALL_STATE(4563)] = 151249, - [SMALL_STATE(4564)] = 151309, - [SMALL_STATE(4565)] = 151369, - [SMALL_STATE(4566)] = 151427, - [SMALL_STATE(4567)] = 151485, - [SMALL_STATE(4568)] = 151543, - [SMALL_STATE(4569)] = 151601, - [SMALL_STATE(4570)] = 151659, - [SMALL_STATE(4571)] = 151717, - [SMALL_STATE(4572)] = 151775, - [SMALL_STATE(4573)] = 151833, - [SMALL_STATE(4574)] = 151891, - [SMALL_STATE(4575)] = 151949, - [SMALL_STATE(4576)] = 152007, - [SMALL_STATE(4577)] = 152065, - [SMALL_STATE(4578)] = 152123, - [SMALL_STATE(4579)] = 152181, - [SMALL_STATE(4580)] = 152239, - [SMALL_STATE(4581)] = 152301, - [SMALL_STATE(4582)] = 152391, - [SMALL_STATE(4583)] = 152449, - [SMALL_STATE(4584)] = 152507, - [SMALL_STATE(4585)] = 152564, - [SMALL_STATE(4586)] = 152621, - [SMALL_STATE(4587)] = 152678, - [SMALL_STATE(4588)] = 152735, - [SMALL_STATE(4589)] = 152792, - [SMALL_STATE(4590)] = 152849, - [SMALL_STATE(4591)] = 152906, - [SMALL_STATE(4592)] = 152963, - [SMALL_STATE(4593)] = 153020, - [SMALL_STATE(4594)] = 153077, - [SMALL_STATE(4595)] = 153134, - [SMALL_STATE(4596)] = 153191, - [SMALL_STATE(4597)] = 153248, - [SMALL_STATE(4598)] = 153305, - [SMALL_STATE(4599)] = 153362, - [SMALL_STATE(4600)] = 153419, - [SMALL_STATE(4601)] = 153476, - [SMALL_STATE(4602)] = 153533, - [SMALL_STATE(4603)] = 153590, - [SMALL_STATE(4604)] = 153647, - [SMALL_STATE(4605)] = 153704, - [SMALL_STATE(4606)] = 153761, - [SMALL_STATE(4607)] = 153818, - [SMALL_STATE(4608)] = 153875, - [SMALL_STATE(4609)] = 153932, - [SMALL_STATE(4610)] = 153989, - [SMALL_STATE(4611)] = 154046, - [SMALL_STATE(4612)] = 154103, - [SMALL_STATE(4613)] = 154160, - [SMALL_STATE(4614)] = 154217, - [SMALL_STATE(4615)] = 154274, - [SMALL_STATE(4616)] = 154331, - [SMALL_STATE(4617)] = 154388, - [SMALL_STATE(4618)] = 154445, - [SMALL_STATE(4619)] = 154502, - [SMALL_STATE(4620)] = 154559, - [SMALL_STATE(4621)] = 154616, - [SMALL_STATE(4622)] = 154673, - [SMALL_STATE(4623)] = 154730, - [SMALL_STATE(4624)] = 154787, - [SMALL_STATE(4625)] = 154882, - [SMALL_STATE(4626)] = 154977, - [SMALL_STATE(4627)] = 155072, - [SMALL_STATE(4628)] = 155167, - [SMALL_STATE(4629)] = 155262, - [SMALL_STATE(4630)] = 155357, - [SMALL_STATE(4631)] = 155452, - [SMALL_STATE(4632)] = 155509, - [SMALL_STATE(4633)] = 155604, - [SMALL_STATE(4634)] = 155699, - [SMALL_STATE(4635)] = 155794, - [SMALL_STATE(4636)] = 155889, - [SMALL_STATE(4637)] = 155984, - [SMALL_STATE(4638)] = 156079, - [SMALL_STATE(4639)] = 156172, - [SMALL_STATE(4640)] = 156235, - [SMALL_STATE(4641)] = 156328, - [SMALL_STATE(4642)] = 156421, - [SMALL_STATE(4643)] = 156486, - [SMALL_STATE(4644)] = 156543, - [SMALL_STATE(4645)] = 156600, - [SMALL_STATE(4646)] = 156657, - [SMALL_STATE(4647)] = 156716, - [SMALL_STATE(4648)] = 156773, - [SMALL_STATE(4649)] = 156830, - [SMALL_STATE(4650)] = 156893, - [SMALL_STATE(4651)] = 156958, - [SMALL_STATE(4652)] = 157017, - [SMALL_STATE(4653)] = 157076, - [SMALL_STATE(4654)] = 157145, - [SMALL_STATE(4655)] = 157214, - [SMALL_STATE(4656)] = 157283, - [SMALL_STATE(4657)] = 157342, - [SMALL_STATE(4658)] = 157405, - [SMALL_STATE(4659)] = 157464, - [SMALL_STATE(4660)] = 157525, - [SMALL_STATE(4661)] = 157584, - [SMALL_STATE(4662)] = 157653, - [SMALL_STATE(4663)] = 157722, - [SMALL_STATE(4664)] = 157779, - [SMALL_STATE(4665)] = 157836, - [SMALL_STATE(4666)] = 157893, - [SMALL_STATE(4667)] = 157950, - [SMALL_STATE(4668)] = 158007, - [SMALL_STATE(4669)] = 158064, - [SMALL_STATE(4670)] = 158121, - [SMALL_STATE(4671)] = 158178, - [SMALL_STATE(4672)] = 158235, - [SMALL_STATE(4673)] = 158292, - [SMALL_STATE(4674)] = 158349, - [SMALL_STATE(4675)] = 158406, - [SMALL_STATE(4676)] = 158463, - [SMALL_STATE(4677)] = 158520, - [SMALL_STATE(4678)] = 158577, - [SMALL_STATE(4679)] = 158634, - [SMALL_STATE(4680)] = 158691, - [SMALL_STATE(4681)] = 158748, - [SMALL_STATE(4682)] = 158817, - [SMALL_STATE(4683)] = 158886, - [SMALL_STATE(4684)] = 158995, - [SMALL_STATE(4685)] = 159104, - [SMALL_STATE(4686)] = 159165, - [SMALL_STATE(4687)] = 159226, - [SMALL_STATE(4688)] = 159287, - [SMALL_STATE(4689)] = 159348, - [SMALL_STATE(4690)] = 159407, - [SMALL_STATE(4691)] = 159476, - [SMALL_STATE(4692)] = 159571, - [SMALL_STATE(4693)] = 159680, - [SMALL_STATE(4694)] = 159749, - [SMALL_STATE(4695)] = 159806, - [SMALL_STATE(4696)] = 159863, - [SMALL_STATE(4697)] = 159920, - [SMALL_STATE(4698)] = 159977, - [SMALL_STATE(4699)] = 160034, - [SMALL_STATE(4700)] = 160091, - [SMALL_STATE(4701)] = 160200, - [SMALL_STATE(4702)] = 160257, - [SMALL_STATE(4703)] = 160314, - [SMALL_STATE(4704)] = 160423, - [SMALL_STATE(4705)] = 160480, - [SMALL_STATE(4706)] = 160537, - [SMALL_STATE(4707)] = 160594, - [SMALL_STATE(4708)] = 160651, - [SMALL_STATE(4709)] = 160708, - [SMALL_STATE(4710)] = 160817, - [SMALL_STATE(4711)] = 160914, - [SMALL_STATE(4712)] = 160973, - [SMALL_STATE(4713)] = 161082, - [SMALL_STATE(4714)] = 161139, - [SMALL_STATE(4715)] = 161196, - [SMALL_STATE(4716)] = 161253, - [SMALL_STATE(4717)] = 161310, - [SMALL_STATE(4718)] = 161367, - [SMALL_STATE(4719)] = 161424, - [SMALL_STATE(4720)] = 161481, - [SMALL_STATE(4721)] = 161538, - [SMALL_STATE(4722)] = 161595, - [SMALL_STATE(4723)] = 161652, - [SMALL_STATE(4724)] = 161709, - [SMALL_STATE(4725)] = 161818, - [SMALL_STATE(4726)] = 161877, - [SMALL_STATE(4727)] = 161974, - [SMALL_STATE(4728)] = 162083, - [SMALL_STATE(4729)] = 162140, - [SMALL_STATE(4730)] = 162197, - [SMALL_STATE(4731)] = 162254, - [SMALL_STATE(4732)] = 162311, - [SMALL_STATE(4733)] = 162368, - [SMALL_STATE(4734)] = 162425, - [SMALL_STATE(4735)] = 162482, - [SMALL_STATE(4736)] = 162539, - [SMALL_STATE(4737)] = 162596, - [SMALL_STATE(4738)] = 162653, - [SMALL_STATE(4739)] = 162710, - [SMALL_STATE(4740)] = 162769, - [SMALL_STATE(4741)] = 162826, - [SMALL_STATE(4742)] = 162935, - [SMALL_STATE(4743)] = 162992, - [SMALL_STATE(4744)] = 163101, - [SMALL_STATE(4745)] = 163158, - [SMALL_STATE(4746)] = 163215, - [SMALL_STATE(4747)] = 163276, - [SMALL_STATE(4748)] = 163385, - [SMALL_STATE(4749)] = 163494, - [SMALL_STATE(4750)] = 163551, - [SMALL_STATE(4751)] = 163608, - [SMALL_STATE(4752)] = 163665, - [SMALL_STATE(4753)] = 163722, - [SMALL_STATE(4754)] = 163779, - [SMALL_STATE(4755)] = 163836, - [SMALL_STATE(4756)] = 163893, - [SMALL_STATE(4757)] = 164002, - [SMALL_STATE(4758)] = 164059, - [SMALL_STATE(4759)] = 164116, - [SMALL_STATE(4760)] = 164173, - [SMALL_STATE(4761)] = 164230, - [SMALL_STATE(4762)] = 164287, - [SMALL_STATE(4763)] = 164348, - [SMALL_STATE(4764)] = 164407, - [SMALL_STATE(4765)] = 164500, - [SMALL_STATE(4766)] = 164593, - [SMALL_STATE(4767)] = 164654, - [SMALL_STATE(4768)] = 164715, - [SMALL_STATE(4769)] = 164778, - [SMALL_STATE(4770)] = 164839, - [SMALL_STATE(4771)] = 164900, - [SMALL_STATE(4772)] = 164961, - [SMALL_STATE(4773)] = 165018, - [SMALL_STATE(4774)] = 165075, - [SMALL_STATE(4775)] = 165132, - [SMALL_STATE(4776)] = 165191, - [SMALL_STATE(4777)] = 165250, - [SMALL_STATE(4778)] = 165309, - [SMALL_STATE(4779)] = 165370, - [SMALL_STATE(4780)] = 165429, - [SMALL_STATE(4781)] = 165490, - [SMALL_STATE(4782)] = 165547, - [SMALL_STATE(4783)] = 165604, - [SMALL_STATE(4784)] = 165661, - [SMALL_STATE(4785)] = 165720, - [SMALL_STATE(4786)] = 165777, - [SMALL_STATE(4787)] = 165834, - [SMALL_STATE(4788)] = 165891, - [SMALL_STATE(4789)] = 165952, - [SMALL_STATE(4790)] = 166041, - [SMALL_STATE(4791)] = 166102, - [SMALL_STATE(4792)] = 166163, - [SMALL_STATE(4793)] = 166220, - [SMALL_STATE(4794)] = 166277, - [SMALL_STATE(4795)] = 166334, - [SMALL_STATE(4796)] = 166391, - [SMALL_STATE(4797)] = 166480, - [SMALL_STATE(4798)] = 166573, - [SMALL_STATE(4799)] = 166666, - [SMALL_STATE(4800)] = 166759, - [SMALL_STATE(4801)] = 166826, - [SMALL_STATE(4802)] = 166889, - [SMALL_STATE(4803)] = 166952, - [SMALL_STATE(4804)] = 167023, - [SMALL_STATE(4805)] = 167112, - [SMALL_STATE(4806)] = 167193, - [SMALL_STATE(4807)] = 167266, - [SMALL_STATE(4808)] = 167335, - [SMALL_STATE(4809)] = 167412, - [SMALL_STATE(4810)] = 167497, - [SMALL_STATE(4811)] = 167584, - [SMALL_STATE(4812)] = 167673, - [SMALL_STATE(4813)] = 167766, - [SMALL_STATE(4814)] = 167859, - [SMALL_STATE(4815)] = 167916, - [SMALL_STATE(4816)] = 167979, - [SMALL_STATE(4817)] = 168036, - [SMALL_STATE(4818)] = 168093, - [SMALL_STATE(4819)] = 168150, - [SMALL_STATE(4820)] = 168207, - [SMALL_STATE(4821)] = 168264, - [SMALL_STATE(4822)] = 168321, - [SMALL_STATE(4823)] = 168390, - [SMALL_STATE(4824)] = 168447, - [SMALL_STATE(4825)] = 168508, - [SMALL_STATE(4826)] = 168567, - [SMALL_STATE(4827)] = 168636, - [SMALL_STATE(4828)] = 168705, - [SMALL_STATE(4829)] = 168762, - [SMALL_STATE(4830)] = 168819, - [SMALL_STATE(4831)] = 168876, - [SMALL_STATE(4832)] = 168933, - [SMALL_STATE(4833)] = 168990, - [SMALL_STATE(4834)] = 169047, - [SMALL_STATE(4835)] = 169106, - [SMALL_STATE(4836)] = 169175, - [SMALL_STATE(4837)] = 169232, - [SMALL_STATE(4838)] = 169289, - [SMALL_STATE(4839)] = 169346, - [SMALL_STATE(4840)] = 169403, - [SMALL_STATE(4841)] = 169462, - [SMALL_STATE(4842)] = 169531, - [SMALL_STATE(4843)] = 169600, - [SMALL_STATE(4844)] = 169657, - [SMALL_STATE(4845)] = 169714, - [SMALL_STATE(4846)] = 169771, - [SMALL_STATE(4847)] = 169828, - [SMALL_STATE(4848)] = 169885, - [SMALL_STATE(4849)] = 169942, - [SMALL_STATE(4850)] = 170001, - [SMALL_STATE(4851)] = 170058, - [SMALL_STATE(4852)] = 170117, - [SMALL_STATE(4853)] = 170176, - [SMALL_STATE(4854)] = 170235, - [SMALL_STATE(4855)] = 170294, - [SMALL_STATE(4856)] = 170351, - [SMALL_STATE(4857)] = 170408, - [SMALL_STATE(4858)] = 170465, - [SMALL_STATE(4859)] = 170522, - [SMALL_STATE(4860)] = 170579, - [SMALL_STATE(4861)] = 170636, - [SMALL_STATE(4862)] = 170693, - [SMALL_STATE(4863)] = 170752, - [SMALL_STATE(4864)] = 170809, - [SMALL_STATE(4865)] = 170866, - [SMALL_STATE(4866)] = 170923, - [SMALL_STATE(4867)] = 170980, - [SMALL_STATE(4868)] = 171037, - [SMALL_STATE(4869)] = 171094, - [SMALL_STATE(4870)] = 171151, - [SMALL_STATE(4871)] = 171208, - [SMALL_STATE(4872)] = 171265, - [SMALL_STATE(4873)] = 171322, - [SMALL_STATE(4874)] = 171379, - [SMALL_STATE(4875)] = 171436, - [SMALL_STATE(4876)] = 171493, - [SMALL_STATE(4877)] = 171550, - [SMALL_STATE(4878)] = 171607, - [SMALL_STATE(4879)] = 171664, - [SMALL_STATE(4880)] = 171720, - [SMALL_STATE(4881)] = 171776, - [SMALL_STATE(4882)] = 171832, - [SMALL_STATE(4883)] = 171888, - [SMALL_STATE(4884)] = 171944, - [SMALL_STATE(4885)] = 172012, - [SMALL_STATE(4886)] = 172080, - [SMALL_STATE(4887)] = 172138, - [SMALL_STATE(4888)] = 172230, - [SMALL_STATE(4889)] = 172298, - [SMALL_STATE(4890)] = 172360, - [SMALL_STATE(4891)] = 172428, - [SMALL_STATE(4892)] = 172520, - [SMALL_STATE(4893)] = 172588, - [SMALL_STATE(4894)] = 172646, - [SMALL_STATE(4895)] = 172710, - [SMALL_STATE(4896)] = 172766, - [SMALL_STATE(4897)] = 172832, - [SMALL_STATE(4898)] = 172894, - [SMALL_STATE(4899)] = 172956, - [SMALL_STATE(4900)] = 173026, - [SMALL_STATE(4901)] = 173088, - [SMALL_STATE(4902)] = 173176, - [SMALL_STATE(4903)] = 173238, - [SMALL_STATE(4904)] = 173300, - [SMALL_STATE(4905)] = 173356, - [SMALL_STATE(4906)] = 173436, - [SMALL_STATE(4907)] = 173508, - [SMALL_STATE(4908)] = 173576, - [SMALL_STATE(4909)] = 173652, - [SMALL_STATE(4910)] = 173736, - [SMALL_STATE(4911)] = 173822, - [SMALL_STATE(4912)] = 173878, - [SMALL_STATE(4913)] = 173934, - [SMALL_STATE(4914)] = 174026, - [SMALL_STATE(4915)] = 174114, - [SMALL_STATE(4916)] = 174206, - [SMALL_STATE(4917)] = 174294, - [SMALL_STATE(4918)] = 174386, - [SMALL_STATE(4919)] = 174478, - [SMALL_STATE(4920)] = 174570, - [SMALL_STATE(4921)] = 174626, - [SMALL_STATE(4922)] = 174688, - [SMALL_STATE(4923)] = 174780, - [SMALL_STATE(4924)] = 174872, - [SMALL_STATE(4925)] = 174938, - [SMALL_STATE(4926)] = 174998, - [SMALL_STATE(4927)] = 175056, - [SMALL_STATE(4928)] = 175124, - [SMALL_STATE(4929)] = 175192, - [SMALL_STATE(4930)] = 175252, - [SMALL_STATE(4931)] = 175310, - [SMALL_STATE(4932)] = 175378, - [SMALL_STATE(4933)] = 175446, - [SMALL_STATE(4934)] = 175508, - [SMALL_STATE(4935)] = 175570, - [SMALL_STATE(4936)] = 175662, - [SMALL_STATE(4937)] = 175754, - [SMALL_STATE(4938)] = 175846, - [SMALL_STATE(4939)] = 175908, - [SMALL_STATE(4940)] = 175996, - [SMALL_STATE(4941)] = 176066, - [SMALL_STATE(4942)] = 176154, - [SMALL_STATE(4943)] = 176216, - [SMALL_STATE(4944)] = 176296, - [SMALL_STATE(4945)] = 176352, - [SMALL_STATE(4946)] = 176420, - [SMALL_STATE(4947)] = 176512, - [SMALL_STATE(4948)] = 176568, - [SMALL_STATE(4949)] = 176632, - [SMALL_STATE(4950)] = 176688, - [SMALL_STATE(4951)] = 176748, - [SMALL_STATE(4952)] = 176806, - [SMALL_STATE(4953)] = 176874, - [SMALL_STATE(4954)] = 176942, - [SMALL_STATE(4955)] = 177004, - [SMALL_STATE(4956)] = 177068, - [SMALL_STATE(4957)] = 177136, - [SMALL_STATE(4958)] = 177228, - [SMALL_STATE(4959)] = 177288, - [SMALL_STATE(4960)] = 177348, - [SMALL_STATE(4961)] = 177408, - [SMALL_STATE(4962)] = 177468, - [SMALL_STATE(4963)] = 177536, - [SMALL_STATE(4964)] = 177594, - [SMALL_STATE(4965)] = 177686, - [SMALL_STATE(4966)] = 177762, - [SMALL_STATE(4967)] = 177824, - [SMALL_STATE(4968)] = 177888, - [SMALL_STATE(4969)] = 177944, - [SMALL_STATE(4970)] = 178028, - [SMALL_STATE(4971)] = 178114, - [SMALL_STATE(4972)] = 178176, - [SMALL_STATE(4973)] = 178232, - [SMALL_STATE(4974)] = 178292, - [SMALL_STATE(4975)] = 178348, - [SMALL_STATE(4976)] = 178404, - [SMALL_STATE(4977)] = 178464, - [SMALL_STATE(4978)] = 178552, - [SMALL_STATE(4979)] = 178640, - [SMALL_STATE(4980)] = 178696, - [SMALL_STATE(4981)] = 178752, - [SMALL_STATE(4982)] = 178808, - [SMALL_STATE(4983)] = 178864, - [SMALL_STATE(4984)] = 178932, - [SMALL_STATE(4985)] = 178996, - [SMALL_STATE(4986)] = 179052, - [SMALL_STATE(4987)] = 179140, - [SMALL_STATE(4988)] = 179232, - [SMALL_STATE(4989)] = 179328, - [SMALL_STATE(4990)] = 179424, - [SMALL_STATE(4991)] = 179480, - [SMALL_STATE(4992)] = 179536, - [SMALL_STATE(4993)] = 179604, - [SMALL_STATE(4994)] = 179660, - [SMALL_STATE(4995)] = 179716, - [SMALL_STATE(4996)] = 179776, - [SMALL_STATE(4997)] = 179836, - [SMALL_STATE(4998)] = 179928, - [SMALL_STATE(4999)] = 179984, - [SMALL_STATE(5000)] = 180040, - [SMALL_STATE(5001)] = 180098, - [SMALL_STATE(5002)] = 180160, - [SMALL_STATE(5003)] = 180224, - [SMALL_STATE(5004)] = 180280, - [SMALL_STATE(5005)] = 180336, - [SMALL_STATE(5006)] = 180392, - [SMALL_STATE(5007)] = 180448, - [SMALL_STATE(5008)] = 180540, - [SMALL_STATE(5009)] = 180596, - [SMALL_STATE(5010)] = 180652, - [SMALL_STATE(5011)] = 180708, - [SMALL_STATE(5012)] = 180764, - [SMALL_STATE(5013)] = 180820, - [SMALL_STATE(5014)] = 180912, - [SMALL_STATE(5015)] = 181004, - [SMALL_STATE(5016)] = 181060, - [SMALL_STATE(5017)] = 181152, - [SMALL_STATE(5018)] = 181244, - [SMALL_STATE(5019)] = 181336, - [SMALL_STATE(5020)] = 181408, - [SMALL_STATE(5021)] = 181503, - [SMALL_STATE(5022)] = 181558, - [SMALL_STATE(5023)] = 181613, - [SMALL_STATE(5024)] = 181676, - [SMALL_STATE(5025)] = 181731, - [SMALL_STATE(5026)] = 181798, - [SMALL_STATE(5027)] = 181855, - [SMALL_STATE(5028)] = 181912, - [SMALL_STATE(5029)] = 181973, - [SMALL_STATE(5030)] = 182040, - [SMALL_STATE(5031)] = 182095, - [SMALL_STATE(5032)] = 182152, - [SMALL_STATE(5033)] = 182213, - [SMALL_STATE(5034)] = 182274, - [SMALL_STATE(5035)] = 182333, - [SMALL_STATE(5036)] = 182394, - [SMALL_STATE(5037)] = 182449, - [SMALL_STATE(5038)] = 182504, - [SMALL_STATE(5039)] = 182571, - [SMALL_STATE(5040)] = 182632, - [SMALL_STATE(5041)] = 182693, - [SMALL_STATE(5042)] = 182754, - [SMALL_STATE(5043)] = 182815, - [SMALL_STATE(5044)] = 182874, - [SMALL_STATE(5045)] = 182929, - [SMALL_STATE(5046)] = 182996, - [SMALL_STATE(5047)] = 183091, - [SMALL_STATE(5048)] = 183186, - [SMALL_STATE(5049)] = 183245, - [SMALL_STATE(5050)] = 183302, - [SMALL_STATE(5051)] = 183359, - [SMALL_STATE(5052)] = 183416, - [SMALL_STATE(5053)] = 183477, - [SMALL_STATE(5054)] = 183544, - [SMALL_STATE(5055)] = 183599, - [SMALL_STATE(5056)] = 183654, - [SMALL_STATE(5057)] = 183721, - [SMALL_STATE(5058)] = 183778, - [SMALL_STATE(5059)] = 183853, - [SMALL_STATE(5060)] = 183908, - [SMALL_STATE(5061)] = 183963, - [SMALL_STATE(5062)] = 184024, - [SMALL_STATE(5063)] = 184079, - [SMALL_STATE(5064)] = 184136, - [SMALL_STATE(5065)] = 184197, - [SMALL_STATE(5066)] = 184254, - [SMALL_STATE(5067)] = 184311, - [SMALL_STATE(5068)] = 184368, - [SMALL_STATE(5069)] = 184425, + [SMALL_STATE(3282)] = 68906, + [SMALL_STATE(3283)] = 68968, + [SMALL_STATE(3284)] = 69036, + [SMALL_STATE(3285)] = 69102, + [SMALL_STATE(3286)] = 69166, + [SMALL_STATE(3287)] = 69228, + [SMALL_STATE(3288)] = 69322, + [SMALL_STATE(3289)] = 69386, + [SMALL_STATE(3290)] = 69448, + [SMALL_STATE(3291)] = 69542, + [SMALL_STATE(3292)] = 69640, + [SMALL_STATE(3293)] = 69708, + [SMALL_STATE(3294)] = 69778, + [SMALL_STATE(3295)] = 69846, + [SMALL_STATE(3296)] = 69914, + [SMALL_STATE(3297)] = 69982, + [SMALL_STATE(3298)] = 70050, + [SMALL_STATE(3299)] = 70148, + [SMALL_STATE(3300)] = 70214, + [SMALL_STATE(3301)] = 70278, + [SMALL_STATE(3302)] = 70340, + [SMALL_STATE(3303)] = 70404, + [SMALL_STATE(3304)] = 70502, + [SMALL_STATE(3305)] = 70566, + [SMALL_STATE(3306)] = 70630, + [SMALL_STATE(3307)] = 70698, + [SMALL_STATE(3308)] = 70762, + [SMALL_STATE(3309)] = 70824, + [SMALL_STATE(3310)] = 70890, + [SMALL_STATE(3311)] = 70956, + [SMALL_STATE(3312)] = 71022, + [SMALL_STATE(3313)] = 71088, + [SMALL_STATE(3314)] = 71190, + [SMALL_STATE(3315)] = 71292, + [SMALL_STATE(3316)] = 71354, + [SMALL_STATE(3317)] = 71418, + [SMALL_STATE(3318)] = 71480, + [SMALL_STATE(3319)] = 71542, + [SMALL_STATE(3320)] = 71616, + [SMALL_STATE(3321)] = 71682, + [SMALL_STATE(3322)] = 71780, + [SMALL_STATE(3323)] = 71841, + [SMALL_STATE(3324)] = 71902, + [SMALL_STATE(3325)] = 71963, + [SMALL_STATE(3326)] = 72032, + [SMALL_STATE(3327)] = 72093, + [SMALL_STATE(3328)] = 72154, + [SMALL_STATE(3329)] = 72223, + [SMALL_STATE(3330)] = 72284, + [SMALL_STATE(3331)] = 72353, + [SMALL_STATE(3332)] = 72414, + [SMALL_STATE(3333)] = 72511, + [SMALL_STATE(3334)] = 72608, + [SMALL_STATE(3335)] = 72669, + [SMALL_STATE(3336)] = 72730, + [SMALL_STATE(3337)] = 72791, + [SMALL_STATE(3338)] = 72888, + [SMALL_STATE(3339)] = 72949, + [SMALL_STATE(3340)] = 73010, + [SMALL_STATE(3341)] = 73071, + [SMALL_STATE(3342)] = 73136, + [SMALL_STATE(3343)] = 73197, + [SMALL_STATE(3344)] = 73262, + [SMALL_STATE(3345)] = 73327, + [SMALL_STATE(3346)] = 73394, + [SMALL_STATE(3347)] = 73455, + [SMALL_STATE(3348)] = 73516, + [SMALL_STATE(3349)] = 73583, + [SMALL_STATE(3350)] = 73650, + [SMALL_STATE(3351)] = 73711, + [SMALL_STATE(3352)] = 73804, + [SMALL_STATE(3353)] = 73865, + [SMALL_STATE(3354)] = 73926, + [SMALL_STATE(3355)] = 73987, + [SMALL_STATE(3356)] = 74084, + [SMALL_STATE(3357)] = 74147, + [SMALL_STATE(3358)] = 74212, + [SMALL_STATE(3359)] = 74309, + [SMALL_STATE(3360)] = 74406, + [SMALL_STATE(3361)] = 74467, + [SMALL_STATE(3362)] = 74528, + [SMALL_STATE(3363)] = 74589, + [SMALL_STATE(3364)] = 74660, + [SMALL_STATE(3365)] = 74721, + [SMALL_STATE(3366)] = 74782, + [SMALL_STATE(3367)] = 74843, + [SMALL_STATE(3368)] = 74904, + [SMALL_STATE(3369)] = 74971, + [SMALL_STATE(3370)] = 75038, + [SMALL_STATE(3371)] = 75099, + [SMALL_STATE(3372)] = 75160, + [SMALL_STATE(3373)] = 75235, + [SMALL_STATE(3374)] = 75308, + [SMALL_STATE(3375)] = 75401, + [SMALL_STATE(3376)] = 75486, + [SMALL_STATE(3377)] = 75563, + [SMALL_STATE(3378)] = 75636, + [SMALL_STATE(3379)] = 75717, + [SMALL_STATE(3380)] = 75806, + [SMALL_STATE(3381)] = 75867, + [SMALL_STATE(3382)] = 75940, + [SMALL_STATE(3383)] = 76001, + [SMALL_STATE(3384)] = 76062, + [SMALL_STATE(3385)] = 76123, + [SMALL_STATE(3386)] = 76184, + [SMALL_STATE(3387)] = 76245, + [SMALL_STATE(3388)] = 76336, + [SMALL_STATE(3389)] = 76397, + [SMALL_STATE(3390)] = 76464, + [SMALL_STATE(3391)] = 76525, + [SMALL_STATE(3392)] = 76586, + [SMALL_STATE(3393)] = 76647, + [SMALL_STATE(3394)] = 76708, + [SMALL_STATE(3395)] = 76781, + [SMALL_STATE(3396)] = 76842, + [SMALL_STATE(3397)] = 76905, + [SMALL_STATE(3398)] = 76966, + [SMALL_STATE(3399)] = 77027, + [SMALL_STATE(3400)] = 77088, + [SMALL_STATE(3401)] = 77149, + [SMALL_STATE(3402)] = 77210, + [SMALL_STATE(3403)] = 77271, + [SMALL_STATE(3404)] = 77336, + [SMALL_STATE(3405)] = 77429, + [SMALL_STATE(3406)] = 77490, + [SMALL_STATE(3407)] = 77551, + [SMALL_STATE(3408)] = 77648, + [SMALL_STATE(3409)] = 77745, + [SMALL_STATE(3410)] = 77806, + [SMALL_STATE(3411)] = 77903, + [SMALL_STATE(3412)] = 77970, + [SMALL_STATE(3413)] = 78035, + [SMALL_STATE(3414)] = 78096, + [SMALL_STATE(3415)] = 78157, + [SMALL_STATE(3416)] = 78226, + [SMALL_STATE(3417)] = 78323, + [SMALL_STATE(3418)] = 78384, + [SMALL_STATE(3419)] = 78445, + [SMALL_STATE(3420)] = 78506, + [SMALL_STATE(3421)] = 78567, + [SMALL_STATE(3422)] = 78628, + [SMALL_STATE(3423)] = 78689, + [SMALL_STATE(3424)] = 78750, + [SMALL_STATE(3425)] = 78811, + [SMALL_STATE(3426)] = 78872, + [SMALL_STATE(3427)] = 78933, + [SMALL_STATE(3428)] = 78994, + [SMALL_STATE(3429)] = 79055, + [SMALL_STATE(3430)] = 79116, + [SMALL_STATE(3431)] = 79177, + [SMALL_STATE(3432)] = 79238, + [SMALL_STATE(3433)] = 79299, + [SMALL_STATE(3434)] = 79360, + [SMALL_STATE(3435)] = 79421, + [SMALL_STATE(3436)] = 79482, + [SMALL_STATE(3437)] = 79543, + [SMALL_STATE(3438)] = 79604, + [SMALL_STATE(3439)] = 79665, + [SMALL_STATE(3440)] = 79726, + [SMALL_STATE(3441)] = 79787, + [SMALL_STATE(3442)] = 79848, + [SMALL_STATE(3443)] = 79909, + [SMALL_STATE(3444)] = 79970, + [SMALL_STATE(3445)] = 80031, + [SMALL_STATE(3446)] = 80092, + [SMALL_STATE(3447)] = 80153, + [SMALL_STATE(3448)] = 80214, + [SMALL_STATE(3449)] = 80275, + [SMALL_STATE(3450)] = 80336, + [SMALL_STATE(3451)] = 80397, + [SMALL_STATE(3452)] = 80458, + [SMALL_STATE(3453)] = 80519, + [SMALL_STATE(3454)] = 80580, + [SMALL_STATE(3455)] = 80641, + [SMALL_STATE(3456)] = 80702, + [SMALL_STATE(3457)] = 80763, + [SMALL_STATE(3458)] = 80824, + [SMALL_STATE(3459)] = 80885, + [SMALL_STATE(3460)] = 80952, + [SMALL_STATE(3461)] = 81013, + [SMALL_STATE(3462)] = 81074, + [SMALL_STATE(3463)] = 81135, + [SMALL_STATE(3464)] = 81196, + [SMALL_STATE(3465)] = 81257, + [SMALL_STATE(3466)] = 81318, + [SMALL_STATE(3467)] = 81379, + [SMALL_STATE(3468)] = 81440, + [SMALL_STATE(3469)] = 81503, + [SMALL_STATE(3470)] = 81564, + [SMALL_STATE(3471)] = 81625, + [SMALL_STATE(3472)] = 81686, + [SMALL_STATE(3473)] = 81747, + [SMALL_STATE(3474)] = 81808, + [SMALL_STATE(3475)] = 81869, + [SMALL_STATE(3476)] = 81930, + [SMALL_STATE(3477)] = 81991, + [SMALL_STATE(3478)] = 82052, + [SMALL_STATE(3479)] = 82113, + [SMALL_STATE(3480)] = 82174, + [SMALL_STATE(3481)] = 82235, + [SMALL_STATE(3482)] = 82296, + [SMALL_STATE(3483)] = 82357, + [SMALL_STATE(3484)] = 82418, + [SMALL_STATE(3485)] = 82479, + [SMALL_STATE(3486)] = 82540, + [SMALL_STATE(3487)] = 82601, + [SMALL_STATE(3488)] = 82662, + [SMALL_STATE(3489)] = 82723, + [SMALL_STATE(3490)] = 82784, + [SMALL_STATE(3491)] = 82845, + [SMALL_STATE(3492)] = 82906, + [SMALL_STATE(3493)] = 82967, + [SMALL_STATE(3494)] = 83028, + [SMALL_STATE(3495)] = 83089, + [SMALL_STATE(3496)] = 83150, + [SMALL_STATE(3497)] = 83211, + [SMALL_STATE(3498)] = 83272, + [SMALL_STATE(3499)] = 83333, + [SMALL_STATE(3500)] = 83394, + [SMALL_STATE(3501)] = 83455, + [SMALL_STATE(3502)] = 83516, + [SMALL_STATE(3503)] = 83577, + [SMALL_STATE(3504)] = 83638, + [SMALL_STATE(3505)] = 83731, + [SMALL_STATE(3506)] = 83792, + [SMALL_STATE(3507)] = 83853, + [SMALL_STATE(3508)] = 83914, + [SMALL_STATE(3509)] = 83977, + [SMALL_STATE(3510)] = 84038, + [SMALL_STATE(3511)] = 84101, + [SMALL_STATE(3512)] = 84162, + [SMALL_STATE(3513)] = 84227, + [SMALL_STATE(3514)] = 84290, + [SMALL_STATE(3515)] = 84351, + [SMALL_STATE(3516)] = 84424, + [SMALL_STATE(3517)] = 84485, + [SMALL_STATE(3518)] = 84558, + [SMALL_STATE(3519)] = 84621, + [SMALL_STATE(3520)] = 84684, + [SMALL_STATE(3521)] = 84745, + [SMALL_STATE(3522)] = 84808, + [SMALL_STATE(3523)] = 84871, + [SMALL_STATE(3524)] = 84932, + [SMALL_STATE(3525)] = 84993, + [SMALL_STATE(3526)] = 85054, + [SMALL_STATE(3527)] = 85115, + [SMALL_STATE(3528)] = 85176, + [SMALL_STATE(3529)] = 85239, + [SMALL_STATE(3530)] = 85302, + [SMALL_STATE(3531)] = 85363, + [SMALL_STATE(3532)] = 85436, + [SMALL_STATE(3533)] = 85497, + [SMALL_STATE(3534)] = 85558, + [SMALL_STATE(3535)] = 85619, + [SMALL_STATE(3536)] = 85680, + [SMALL_STATE(3537)] = 85741, + [SMALL_STATE(3538)] = 85814, + [SMALL_STATE(3539)] = 85875, + [SMALL_STATE(3540)] = 85936, + [SMALL_STATE(3541)] = 85997, + [SMALL_STATE(3542)] = 86058, + [SMALL_STATE(3543)] = 86119, + [SMALL_STATE(3544)] = 86180, + [SMALL_STATE(3545)] = 86241, + [SMALL_STATE(3546)] = 86306, + [SMALL_STATE(3547)] = 86369, + [SMALL_STATE(3548)] = 86442, + [SMALL_STATE(3549)] = 86515, + [SMALL_STATE(3550)] = 86576, + [SMALL_STATE(3551)] = 86637, + [SMALL_STATE(3552)] = 86698, + [SMALL_STATE(3553)] = 86759, + [SMALL_STATE(3554)] = 86820, + [SMALL_STATE(3555)] = 86881, + [SMALL_STATE(3556)] = 86944, + [SMALL_STATE(3557)] = 87007, + [SMALL_STATE(3558)] = 87068, + [SMALL_STATE(3559)] = 87129, + [SMALL_STATE(3560)] = 87190, + [SMALL_STATE(3561)] = 87251, + [SMALL_STATE(3562)] = 87312, + [SMALL_STATE(3563)] = 87373, + [SMALL_STATE(3564)] = 87434, + [SMALL_STATE(3565)] = 87495, + [SMALL_STATE(3566)] = 87556, + [SMALL_STATE(3567)] = 87617, + [SMALL_STATE(3568)] = 87678, + [SMALL_STATE(3569)] = 87751, + [SMALL_STATE(3570)] = 87812, + [SMALL_STATE(3571)] = 87873, + [SMALL_STATE(3572)] = 87934, + [SMALL_STATE(3573)] = 87995, + [SMALL_STATE(3574)] = 88056, + [SMALL_STATE(3575)] = 88117, + [SMALL_STATE(3576)] = 88178, + [SMALL_STATE(3577)] = 88239, + [SMALL_STATE(3578)] = 88300, + [SMALL_STATE(3579)] = 88361, + [SMALL_STATE(3580)] = 88422, + [SMALL_STATE(3581)] = 88483, + [SMALL_STATE(3582)] = 88544, + [SMALL_STATE(3583)] = 88605, + [SMALL_STATE(3584)] = 88666, + [SMALL_STATE(3585)] = 88729, + [SMALL_STATE(3586)] = 88790, + [SMALL_STATE(3587)] = 88851, + [SMALL_STATE(3588)] = 88912, + [SMALL_STATE(3589)] = 88973, + [SMALL_STATE(3590)] = 89034, + [SMALL_STATE(3591)] = 89095, + [SMALL_STATE(3592)] = 89156, + [SMALL_STATE(3593)] = 89223, + [SMALL_STATE(3594)] = 89284, + [SMALL_STATE(3595)] = 89345, + [SMALL_STATE(3596)] = 89406, + [SMALL_STATE(3597)] = 89467, + [SMALL_STATE(3598)] = 89532, + [SMALL_STATE(3599)] = 89596, + [SMALL_STATE(3600)] = 89658, + [SMALL_STATE(3601)] = 89720, + [SMALL_STATE(3602)] = 89784, + [SMALL_STATE(3603)] = 89846, + [SMALL_STATE(3604)] = 89906, + [SMALL_STATE(3605)] = 90006, + [SMALL_STATE(3606)] = 90070, + [SMALL_STATE(3607)] = 90132, + [SMALL_STATE(3608)] = 90196, + [SMALL_STATE(3609)] = 90256, + [SMALL_STATE(3610)] = 90322, + [SMALL_STATE(3611)] = 90382, + [SMALL_STATE(3612)] = 90448, + [SMALL_STATE(3613)] = 90512, + [SMALL_STATE(3614)] = 90572, + [SMALL_STATE(3615)] = 90632, + [SMALL_STATE(3616)] = 90692, + [SMALL_STATE(3617)] = 90756, + [SMALL_STATE(3618)] = 90820, + [SMALL_STATE(3619)] = 90884, + [SMALL_STATE(3620)] = 90946, + [SMALL_STATE(3621)] = 91010, + [SMALL_STATE(3622)] = 91076, + [SMALL_STATE(3623)] = 91136, + [SMALL_STATE(3624)] = 91202, + [SMALL_STATE(3625)] = 91262, + [SMALL_STATE(3626)] = 91324, + [SMALL_STATE(3627)] = 91386, + [SMALL_STATE(3628)] = 91448, + [SMALL_STATE(3629)] = 91512, + [SMALL_STATE(3630)] = 91572, + [SMALL_STATE(3631)] = 91632, + [SMALL_STATE(3632)] = 91696, + [SMALL_STATE(3633)] = 91760, + [SMALL_STATE(3634)] = 91824, + [SMALL_STATE(3635)] = 91924, + [SMALL_STATE(3636)] = 92024, + [SMALL_STATE(3637)] = 92084, + [SMALL_STATE(3638)] = 92148, + [SMALL_STATE(3639)] = 92210, + [SMALL_STATE(3640)] = 92276, + [SMALL_STATE(3641)] = 92340, + [SMALL_STATE(3642)] = 92402, + [SMALL_STATE(3643)] = 92464, + [SMALL_STATE(3644)] = 92526, + [SMALL_STATE(3645)] = 92586, + [SMALL_STATE(3646)] = 92648, + [SMALL_STATE(3647)] = 92712, + [SMALL_STATE(3648)] = 92776, + [SMALL_STATE(3649)] = 92836, + [SMALL_STATE(3650)] = 92902, + [SMALL_STATE(3651)] = 92962, + [SMALL_STATE(3652)] = 93022, + [SMALL_STATE(3653)] = 93084, + [SMALL_STATE(3654)] = 93146, + [SMALL_STATE(3655)] = 93210, + [SMALL_STATE(3656)] = 93270, + [SMALL_STATE(3657)] = 93332, + [SMALL_STATE(3658)] = 93394, + [SMALL_STATE(3659)] = 93456, + [SMALL_STATE(3660)] = 93518, + [SMALL_STATE(3661)] = 93582, + [SMALL_STATE(3662)] = 93644, + [SMALL_STATE(3663)] = 93704, + [SMALL_STATE(3664)] = 93764, + [SMALL_STATE(3665)] = 93824, + [SMALL_STATE(3666)] = 93884, + [SMALL_STATE(3667)] = 93950, + [SMALL_STATE(3668)] = 94010, + [SMALL_STATE(3669)] = 94070, + [SMALL_STATE(3670)] = 94130, + [SMALL_STATE(3671)] = 94190, + [SMALL_STATE(3672)] = 94250, + [SMALL_STATE(3673)] = 94310, + [SMALL_STATE(3674)] = 94370, + [SMALL_STATE(3675)] = 94430, + [SMALL_STATE(3676)] = 94490, + [SMALL_STATE(3677)] = 94550, + [SMALL_STATE(3678)] = 94616, + [SMALL_STATE(3679)] = 94678, + [SMALL_STATE(3680)] = 94746, + [SMALL_STATE(3681)] = 94806, + [SMALL_STATE(3682)] = 94866, + [SMALL_STATE(3683)] = 94926, + [SMALL_STATE(3684)] = 94986, + [SMALL_STATE(3685)] = 95046, + [SMALL_STATE(3686)] = 95106, + [SMALL_STATE(3687)] = 95166, + [SMALL_STATE(3688)] = 95226, + [SMALL_STATE(3689)] = 95286, + [SMALL_STATE(3690)] = 95346, + [SMALL_STATE(3691)] = 95406, + [SMALL_STATE(3692)] = 95466, + [SMALL_STATE(3693)] = 95528, + [SMALL_STATE(3694)] = 95588, + [SMALL_STATE(3695)] = 95648, + [SMALL_STATE(3696)] = 95708, + [SMALL_STATE(3697)] = 95768, + [SMALL_STATE(3698)] = 95828, + [SMALL_STATE(3699)] = 95888, + [SMALL_STATE(3700)] = 95948, + [SMALL_STATE(3701)] = 96008, + [SMALL_STATE(3702)] = 96068, + [SMALL_STATE(3703)] = 96130, + [SMALL_STATE(3704)] = 96190, + [SMALL_STATE(3705)] = 96250, + [SMALL_STATE(3706)] = 96312, + [SMALL_STATE(3707)] = 96372, + [SMALL_STATE(3708)] = 96434, + [SMALL_STATE(3709)] = 96494, + [SMALL_STATE(3710)] = 96554, + [SMALL_STATE(3711)] = 96614, + [SMALL_STATE(3712)] = 96674, + [SMALL_STATE(3713)] = 96734, + [SMALL_STATE(3714)] = 96794, + [SMALL_STATE(3715)] = 96854, + [SMALL_STATE(3716)] = 96914, + [SMALL_STATE(3717)] = 96974, + [SMALL_STATE(3718)] = 97034, + [SMALL_STATE(3719)] = 97094, + [SMALL_STATE(3720)] = 97154, + [SMALL_STATE(3721)] = 97214, + [SMALL_STATE(3722)] = 97274, + [SMALL_STATE(3723)] = 97334, + [SMALL_STATE(3724)] = 97394, + [SMALL_STATE(3725)] = 97454, + [SMALL_STATE(3726)] = 97514, + [SMALL_STATE(3727)] = 97574, + [SMALL_STATE(3728)] = 97634, + [SMALL_STATE(3729)] = 97694, + [SMALL_STATE(3730)] = 97754, + [SMALL_STATE(3731)] = 97814, + [SMALL_STATE(3732)] = 97874, + [SMALL_STATE(3733)] = 97934, + [SMALL_STATE(3734)] = 97994, + [SMALL_STATE(3735)] = 98094, + [SMALL_STATE(3736)] = 98154, + [SMALL_STATE(3737)] = 98214, + [SMALL_STATE(3738)] = 98274, + [SMALL_STATE(3739)] = 98374, + [SMALL_STATE(3740)] = 98434, + [SMALL_STATE(3741)] = 98494, + [SMALL_STATE(3742)] = 98554, + [SMALL_STATE(3743)] = 98614, + [SMALL_STATE(3744)] = 98674, + [SMALL_STATE(3745)] = 98734, + [SMALL_STATE(3746)] = 98794, + [SMALL_STATE(3747)] = 98854, + [SMALL_STATE(3748)] = 98914, + [SMALL_STATE(3749)] = 98974, + [SMALL_STATE(3750)] = 99034, + [SMALL_STATE(3751)] = 99094, + [SMALL_STATE(3752)] = 99154, + [SMALL_STATE(3753)] = 99214, + [SMALL_STATE(3754)] = 99274, + [SMALL_STATE(3755)] = 99334, + [SMALL_STATE(3756)] = 99394, + [SMALL_STATE(3757)] = 99454, + [SMALL_STATE(3758)] = 99514, + [SMALL_STATE(3759)] = 99574, + [SMALL_STATE(3760)] = 99634, + [SMALL_STATE(3761)] = 99694, + [SMALL_STATE(3762)] = 99754, + [SMALL_STATE(3763)] = 99814, + [SMALL_STATE(3764)] = 99874, + [SMALL_STATE(3765)] = 99934, + [SMALL_STATE(3766)] = 99994, + [SMALL_STATE(3767)] = 100054, + [SMALL_STATE(3768)] = 100114, + [SMALL_STATE(3769)] = 100174, + [SMALL_STATE(3770)] = 100234, + [SMALL_STATE(3771)] = 100294, + [SMALL_STATE(3772)] = 100354, + [SMALL_STATE(3773)] = 100414, + [SMALL_STATE(3774)] = 100474, + [SMALL_STATE(3775)] = 100534, + [SMALL_STATE(3776)] = 100594, + [SMALL_STATE(3777)] = 100654, + [SMALL_STATE(3778)] = 100714, + [SMALL_STATE(3779)] = 100774, + [SMALL_STATE(3780)] = 100834, + [SMALL_STATE(3781)] = 100894, + [SMALL_STATE(3782)] = 100954, + [SMALL_STATE(3783)] = 101014, + [SMALL_STATE(3784)] = 101074, + [SMALL_STATE(3785)] = 101134, + [SMALL_STATE(3786)] = 101194, + [SMALL_STATE(3787)] = 101254, + [SMALL_STATE(3788)] = 101314, + [SMALL_STATE(3789)] = 101374, + [SMALL_STATE(3790)] = 101434, + [SMALL_STATE(3791)] = 101494, + [SMALL_STATE(3792)] = 101554, + [SMALL_STATE(3793)] = 101614, + [SMALL_STATE(3794)] = 101674, + [SMALL_STATE(3795)] = 101734, + [SMALL_STATE(3796)] = 101834, + [SMALL_STATE(3797)] = 101894, + [SMALL_STATE(3798)] = 101954, + [SMALL_STATE(3799)] = 102014, + [SMALL_STATE(3800)] = 102074, + [SMALL_STATE(3801)] = 102134, + [SMALL_STATE(3802)] = 102194, + [SMALL_STATE(3803)] = 102254, + [SMALL_STATE(3804)] = 102314, + [SMALL_STATE(3805)] = 102374, + [SMALL_STATE(3806)] = 102434, + [SMALL_STATE(3807)] = 102494, + [SMALL_STATE(3808)] = 102554, + [SMALL_STATE(3809)] = 102614, + [SMALL_STATE(3810)] = 102674, + [SMALL_STATE(3811)] = 102734, + [SMALL_STATE(3812)] = 102794, + [SMALL_STATE(3813)] = 102854, + [SMALL_STATE(3814)] = 102914, + [SMALL_STATE(3815)] = 102974, + [SMALL_STATE(3816)] = 103034, + [SMALL_STATE(3817)] = 103094, + [SMALL_STATE(3818)] = 103154, + [SMALL_STATE(3819)] = 103214, + [SMALL_STATE(3820)] = 103274, + [SMALL_STATE(3821)] = 103334, + [SMALL_STATE(3822)] = 103394, + [SMALL_STATE(3823)] = 103454, + [SMALL_STATE(3824)] = 103514, + [SMALL_STATE(3825)] = 103574, + [SMALL_STATE(3826)] = 103634, + [SMALL_STATE(3827)] = 103696, + [SMALL_STATE(3828)] = 103758, + [SMALL_STATE(3829)] = 103820, + [SMALL_STATE(3830)] = 103882, + [SMALL_STATE(3831)] = 103946, + [SMALL_STATE(3832)] = 104010, + [SMALL_STATE(3833)] = 104074, + [SMALL_STATE(3834)] = 104138, + [SMALL_STATE(3835)] = 104238, + [SMALL_STATE(3836)] = 104338, + [SMALL_STATE(3837)] = 104398, + [SMALL_STATE(3838)] = 104462, + [SMALL_STATE(3839)] = 104526, + [SMALL_STATE(3840)] = 104590, + [SMALL_STATE(3841)] = 104654, + [SMALL_STATE(3842)] = 104754, + [SMALL_STATE(3843)] = 104854, + [SMALL_STATE(3844)] = 104920, + [SMALL_STATE(3845)] = 104980, + [SMALL_STATE(3846)] = 105040, + [SMALL_STATE(3847)] = 105100, + [SMALL_STATE(3848)] = 105160, + [SMALL_STATE(3849)] = 105219, + [SMALL_STATE(3850)] = 105314, + [SMALL_STATE(3851)] = 105373, + [SMALL_STATE(3852)] = 105468, + [SMALL_STATE(3853)] = 105531, + [SMALL_STATE(3854)] = 105592, + [SMALL_STATE(3855)] = 105663, + [SMALL_STATE(3856)] = 105734, + [SMALL_STATE(3857)] = 105793, + [SMALL_STATE(3858)] = 105872, + [SMALL_STATE(3859)] = 105931, + [SMALL_STATE(3860)] = 105990, + [SMALL_STATE(3861)] = 106049, + [SMALL_STATE(3862)] = 106108, + [SMALL_STATE(3863)] = 106167, + [SMALL_STATE(3864)] = 106226, + [SMALL_STATE(3865)] = 106289, + [SMALL_STATE(3866)] = 106380, + [SMALL_STATE(3867)] = 106439, + [SMALL_STATE(3868)] = 106498, + [SMALL_STATE(3869)] = 106557, + [SMALL_STATE(3870)] = 106616, + [SMALL_STATE(3871)] = 106675, + [SMALL_STATE(3872)] = 106734, + [SMALL_STATE(3873)] = 106833, + [SMALL_STATE(3874)] = 106896, + [SMALL_STATE(3875)] = 106995, + [SMALL_STATE(3876)] = 107058, + [SMALL_STATE(3877)] = 107121, + [SMALL_STATE(3878)] = 107184, + [SMALL_STATE(3879)] = 107245, + [SMALL_STATE(3880)] = 107304, + [SMALL_STATE(3881)] = 107367, + [SMALL_STATE(3882)] = 107430, + [SMALL_STATE(3883)] = 107491, + [SMALL_STATE(3884)] = 107554, + [SMALL_STATE(3885)] = 107613, + [SMALL_STATE(3886)] = 107676, + [SMALL_STATE(3887)] = 107735, + [SMALL_STATE(3888)] = 107794, + [SMALL_STATE(3889)] = 107853, + [SMALL_STATE(3890)] = 107912, + [SMALL_STATE(3891)] = 107971, + [SMALL_STATE(3892)] = 108030, + [SMALL_STATE(3893)] = 108089, + [SMALL_STATE(3894)] = 108148, + [SMALL_STATE(3895)] = 108207, + [SMALL_STATE(3896)] = 108266, + [SMALL_STATE(3897)] = 108325, + [SMALL_STATE(3898)] = 108384, + [SMALL_STATE(3899)] = 108443, + [SMALL_STATE(3900)] = 108506, + [SMALL_STATE(3901)] = 108565, + [SMALL_STATE(3902)] = 108624, + [SMALL_STATE(3903)] = 108687, + [SMALL_STATE(3904)] = 108746, + [SMALL_STATE(3905)] = 108805, + [SMALL_STATE(3906)] = 108864, + [SMALL_STATE(3907)] = 108923, + [SMALL_STATE(3908)] = 108984, + [SMALL_STATE(3909)] = 109043, + [SMALL_STATE(3910)] = 109102, + [SMALL_STATE(3911)] = 109163, + [SMALL_STATE(3912)] = 109222, + [SMALL_STATE(3913)] = 109281, + [SMALL_STATE(3914)] = 109380, + [SMALL_STATE(3915)] = 109443, + [SMALL_STATE(3916)] = 109542, + [SMALL_STATE(3917)] = 109605, + [SMALL_STATE(3918)] = 109668, + [SMALL_STATE(3919)] = 109731, + [SMALL_STATE(3920)] = 109790, + [SMALL_STATE(3921)] = 109849, + [SMALL_STATE(3922)] = 109908, + [SMALL_STATE(3923)] = 109973, + [SMALL_STATE(3924)] = 110032, + [SMALL_STATE(3925)] = 110091, + [SMALL_STATE(3926)] = 110186, + [SMALL_STATE(3927)] = 110281, + [SMALL_STATE(3928)] = 110340, + [SMALL_STATE(3929)] = 110399, + [SMALL_STATE(3930)] = 110458, + [SMALL_STATE(3931)] = 110517, + [SMALL_STATE(3932)] = 110576, + [SMALL_STATE(3933)] = 110635, + [SMALL_STATE(3934)] = 110694, + [SMALL_STATE(3935)] = 110753, + [SMALL_STATE(3936)] = 110812, + [SMALL_STATE(3937)] = 110871, + [SMALL_STATE(3938)] = 110932, + [SMALL_STATE(3939)] = 110993, + [SMALL_STATE(3940)] = 111052, + [SMALL_STATE(3941)] = 111111, + [SMALL_STATE(3942)] = 111172, + [SMALL_STATE(3943)] = 111233, + [SMALL_STATE(3944)] = 111292, + [SMALL_STATE(3945)] = 111351, + [SMALL_STATE(3946)] = 111410, + [SMALL_STATE(3947)] = 111469, + [SMALL_STATE(3948)] = 111528, + [SMALL_STATE(3949)] = 111587, + [SMALL_STATE(3950)] = 111646, + [SMALL_STATE(3951)] = 111705, + [SMALL_STATE(3952)] = 111764, + [SMALL_STATE(3953)] = 111823, + [SMALL_STATE(3954)] = 111882, + [SMALL_STATE(3955)] = 111941, + [SMALL_STATE(3956)] = 112000, + [SMALL_STATE(3957)] = 112059, + [SMALL_STATE(3958)] = 112118, + [SMALL_STATE(3959)] = 112177, + [SMALL_STATE(3960)] = 112236, + [SMALL_STATE(3961)] = 112295, + [SMALL_STATE(3962)] = 112354, + [SMALL_STATE(3963)] = 112413, + [SMALL_STATE(3964)] = 112472, + [SMALL_STATE(3965)] = 112531, + [SMALL_STATE(3966)] = 112590, + [SMALL_STATE(3967)] = 112649, + [SMALL_STATE(3968)] = 112708, + [SMALL_STATE(3969)] = 112767, + [SMALL_STATE(3970)] = 112828, + [SMALL_STATE(3971)] = 112887, + [SMALL_STATE(3972)] = 112950, + [SMALL_STATE(3973)] = 113045, + [SMALL_STATE(3974)] = 113104, + [SMALL_STATE(3975)] = 113199, + [SMALL_STATE(3976)] = 113258, + [SMALL_STATE(3977)] = 113317, + [SMALL_STATE(3978)] = 113376, + [SMALL_STATE(3979)] = 113435, + [SMALL_STATE(3980)] = 113496, + [SMALL_STATE(3981)] = 113555, + [SMALL_STATE(3982)] = 113614, + [SMALL_STATE(3983)] = 113673, + [SMALL_STATE(3984)] = 113770, + [SMALL_STATE(3985)] = 113829, + [SMALL_STATE(3986)] = 113888, + [SMALL_STATE(3987)] = 113947, + [SMALL_STATE(3988)] = 114006, + [SMALL_STATE(3989)] = 114065, + [SMALL_STATE(3990)] = 114124, + [SMALL_STATE(3991)] = 114183, + [SMALL_STATE(3992)] = 114242, + [SMALL_STATE(3993)] = 114301, + [SMALL_STATE(3994)] = 114362, + [SMALL_STATE(3995)] = 114421, + [SMALL_STATE(3996)] = 114480, + [SMALL_STATE(3997)] = 114539, + [SMALL_STATE(3998)] = 114598, + [SMALL_STATE(3999)] = 114657, + [SMALL_STATE(4000)] = 114716, + [SMALL_STATE(4001)] = 114775, + [SMALL_STATE(4002)] = 114834, + [SMALL_STATE(4003)] = 114893, + [SMALL_STATE(4004)] = 114954, + [SMALL_STATE(4005)] = 115013, + [SMALL_STATE(4006)] = 115072, + [SMALL_STATE(4007)] = 115131, + [SMALL_STATE(4008)] = 115190, + [SMALL_STATE(4009)] = 115249, + [SMALL_STATE(4010)] = 115308, + [SMALL_STATE(4011)] = 115367, + [SMALL_STATE(4012)] = 115426, + [SMALL_STATE(4013)] = 115485, + [SMALL_STATE(4014)] = 115544, + [SMALL_STATE(4015)] = 115603, + [SMALL_STATE(4016)] = 115664, + [SMALL_STATE(4017)] = 115723, + [SMALL_STATE(4018)] = 115782, + [SMALL_STATE(4019)] = 115841, + [SMALL_STATE(4020)] = 115900, + [SMALL_STATE(4021)] = 115959, + [SMALL_STATE(4022)] = 116018, + [SMALL_STATE(4023)] = 116079, + [SMALL_STATE(4024)] = 116138, + [SMALL_STATE(4025)] = 116197, + [SMALL_STATE(4026)] = 116256, + [SMALL_STATE(4027)] = 116315, + [SMALL_STATE(4028)] = 116374, + [SMALL_STATE(4029)] = 116433, + [SMALL_STATE(4030)] = 116492, + [SMALL_STATE(4031)] = 116553, + [SMALL_STATE(4032)] = 116612, + [SMALL_STATE(4033)] = 116671, + [SMALL_STATE(4034)] = 116730, + [SMALL_STATE(4035)] = 116789, + [SMALL_STATE(4036)] = 116848, + [SMALL_STATE(4037)] = 116907, + [SMALL_STATE(4038)] = 116966, + [SMALL_STATE(4039)] = 117025, + [SMALL_STATE(4040)] = 117084, + [SMALL_STATE(4041)] = 117143, + [SMALL_STATE(4042)] = 117202, + [SMALL_STATE(4043)] = 117261, + [SMALL_STATE(4044)] = 117320, + [SMALL_STATE(4045)] = 117379, + [SMALL_STATE(4046)] = 117438, + [SMALL_STATE(4047)] = 117497, + [SMALL_STATE(4048)] = 117556, + [SMALL_STATE(4049)] = 117615, + [SMALL_STATE(4050)] = 117674, + [SMALL_STATE(4051)] = 117733, + [SMALL_STATE(4052)] = 117792, + [SMALL_STATE(4053)] = 117851, + [SMALL_STATE(4054)] = 117910, + [SMALL_STATE(4055)] = 117969, + [SMALL_STATE(4056)] = 118028, + [SMALL_STATE(4057)] = 118087, + [SMALL_STATE(4058)] = 118146, + [SMALL_STATE(4059)] = 118207, + [SMALL_STATE(4060)] = 118266, + [SMALL_STATE(4061)] = 118325, + [SMALL_STATE(4062)] = 118384, + [SMALL_STATE(4063)] = 118443, + [SMALL_STATE(4064)] = 118502, + [SMALL_STATE(4065)] = 118561, + [SMALL_STATE(4066)] = 118622, + [SMALL_STATE(4067)] = 118681, + [SMALL_STATE(4068)] = 118740, + [SMALL_STATE(4069)] = 118799, + [SMALL_STATE(4070)] = 118858, + [SMALL_STATE(4071)] = 118917, + [SMALL_STATE(4072)] = 118976, + [SMALL_STATE(4073)] = 119035, + [SMALL_STATE(4074)] = 119094, + [SMALL_STATE(4075)] = 119153, + [SMALL_STATE(4076)] = 119212, + [SMALL_STATE(4077)] = 119271, + [SMALL_STATE(4078)] = 119330, + [SMALL_STATE(4079)] = 119389, + [SMALL_STATE(4080)] = 119448, + [SMALL_STATE(4081)] = 119507, + [SMALL_STATE(4082)] = 119566, + [SMALL_STATE(4083)] = 119625, + [SMALL_STATE(4084)] = 119684, + [SMALL_STATE(4085)] = 119743, + [SMALL_STATE(4086)] = 119802, + [SMALL_STATE(4087)] = 119861, + [SMALL_STATE(4088)] = 119920, + [SMALL_STATE(4089)] = 119979, + [SMALL_STATE(4090)] = 120038, + [SMALL_STATE(4091)] = 120097, + [SMALL_STATE(4092)] = 120156, + [SMALL_STATE(4093)] = 120215, + [SMALL_STATE(4094)] = 120274, + [SMALL_STATE(4095)] = 120333, + [SMALL_STATE(4096)] = 120392, + [SMALL_STATE(4097)] = 120451, + [SMALL_STATE(4098)] = 120510, + [SMALL_STATE(4099)] = 120569, + [SMALL_STATE(4100)] = 120628, + [SMALL_STATE(4101)] = 120687, + [SMALL_STATE(4102)] = 120746, + [SMALL_STATE(4103)] = 120805, + [SMALL_STATE(4104)] = 120864, + [SMALL_STATE(4105)] = 120923, + [SMALL_STATE(4106)] = 120982, + [SMALL_STATE(4107)] = 121041, + [SMALL_STATE(4108)] = 121100, + [SMALL_STATE(4109)] = 121159, + [SMALL_STATE(4110)] = 121218, + [SMALL_STATE(4111)] = 121277, + [SMALL_STATE(4112)] = 121336, + [SMALL_STATE(4113)] = 121395, + [SMALL_STATE(4114)] = 121492, + [SMALL_STATE(4115)] = 121551, + [SMALL_STATE(4116)] = 121610, + [SMALL_STATE(4117)] = 121669, + [SMALL_STATE(4118)] = 121728, + [SMALL_STATE(4119)] = 121787, + [SMALL_STATE(4120)] = 121846, + [SMALL_STATE(4121)] = 121943, + [SMALL_STATE(4122)] = 122002, + [SMALL_STATE(4123)] = 122099, + [SMALL_STATE(4124)] = 122158, + [SMALL_STATE(4125)] = 122217, + [SMALL_STATE(4126)] = 122276, + [SMALL_STATE(4127)] = 122335, + [SMALL_STATE(4128)] = 122394, + [SMALL_STATE(4129)] = 122453, + [SMALL_STATE(4130)] = 122512, + [SMALL_STATE(4131)] = 122571, + [SMALL_STATE(4132)] = 122630, + [SMALL_STATE(4133)] = 122689, + [SMALL_STATE(4134)] = 122786, + [SMALL_STATE(4135)] = 122845, + [SMALL_STATE(4136)] = 122904, + [SMALL_STATE(4137)] = 122963, + [SMALL_STATE(4138)] = 123022, + [SMALL_STATE(4139)] = 123081, + [SMALL_STATE(4140)] = 123140, + [SMALL_STATE(4141)] = 123199, + [SMALL_STATE(4142)] = 123258, + [SMALL_STATE(4143)] = 123317, + [SMALL_STATE(4144)] = 123376, + [SMALL_STATE(4145)] = 123435, + [SMALL_STATE(4146)] = 123494, + [SMALL_STATE(4147)] = 123591, + [SMALL_STATE(4148)] = 123650, + [SMALL_STATE(4149)] = 123709, + [SMALL_STATE(4150)] = 123806, + [SMALL_STATE(4151)] = 123865, + [SMALL_STATE(4152)] = 123924, + [SMALL_STATE(4153)] = 124021, + [SMALL_STATE(4154)] = 124080, + [SMALL_STATE(4155)] = 124141, + [SMALL_STATE(4156)] = 124200, + [SMALL_STATE(4157)] = 124259, + [SMALL_STATE(4158)] = 124318, + [SMALL_STATE(4159)] = 124377, + [SMALL_STATE(4160)] = 124436, + [SMALL_STATE(4161)] = 124495, + [SMALL_STATE(4162)] = 124554, + [SMALL_STATE(4163)] = 124613, + [SMALL_STATE(4164)] = 124672, + [SMALL_STATE(4165)] = 124733, + [SMALL_STATE(4166)] = 124792, + [SMALL_STATE(4167)] = 124851, + [SMALL_STATE(4168)] = 124910, + [SMALL_STATE(4169)] = 124969, + [SMALL_STATE(4170)] = 125028, + [SMALL_STATE(4171)] = 125087, + [SMALL_STATE(4172)] = 125146, + [SMALL_STATE(4173)] = 125207, + [SMALL_STATE(4174)] = 125266, + [SMALL_STATE(4175)] = 125325, + [SMALL_STATE(4176)] = 125384, + [SMALL_STATE(4177)] = 125443, + [SMALL_STATE(4178)] = 125502, + [SMALL_STATE(4179)] = 125561, + [SMALL_STATE(4180)] = 125620, + [SMALL_STATE(4181)] = 125679, + [SMALL_STATE(4182)] = 125738, + [SMALL_STATE(4183)] = 125797, + [SMALL_STATE(4184)] = 125856, + [SMALL_STATE(4185)] = 125915, + [SMALL_STATE(4186)] = 125974, + [SMALL_STATE(4187)] = 126033, + [SMALL_STATE(4188)] = 126092, + [SMALL_STATE(4189)] = 126151, + [SMALL_STATE(4190)] = 126214, + [SMALL_STATE(4191)] = 126305, + [SMALL_STATE(4192)] = 126368, + [SMALL_STATE(4193)] = 126431, + [SMALL_STATE(4194)] = 126490, + [SMALL_STATE(4195)] = 126549, + [SMALL_STATE(4196)] = 126608, + [SMALL_STATE(4197)] = 126667, + [SMALL_STATE(4198)] = 126726, + [SMALL_STATE(4199)] = 126785, + [SMALL_STATE(4200)] = 126844, + [SMALL_STATE(4201)] = 126903, + [SMALL_STATE(4202)] = 126966, + [SMALL_STATE(4203)] = 127029, + [SMALL_STATE(4204)] = 127092, + [SMALL_STATE(4205)] = 127151, + [SMALL_STATE(4206)] = 127210, + [SMALL_STATE(4207)] = 127269, + [SMALL_STATE(4208)] = 127360, + [SMALL_STATE(4209)] = 127455, + [SMALL_STATE(4210)] = 127550, + [SMALL_STATE(4211)] = 127645, + [SMALL_STATE(4212)] = 127714, + [SMALL_STATE(4213)] = 127779, + [SMALL_STATE(4214)] = 127844, + [SMALL_STATE(4215)] = 127917, + [SMALL_STATE(4216)] = 128008, + [SMALL_STATE(4217)] = 128091, + [SMALL_STATE(4218)] = 128166, + [SMALL_STATE(4219)] = 128237, + [SMALL_STATE(4220)] = 128316, + [SMALL_STATE(4221)] = 128403, + [SMALL_STATE(4222)] = 128492, + [SMALL_STATE(4223)] = 128583, + [SMALL_STATE(4224)] = 128678, + [SMALL_STATE(4225)] = 128773, + [SMALL_STATE(4226)] = 128832, + [SMALL_STATE(4227)] = 128891, + [SMALL_STATE(4228)] = 128986, + [SMALL_STATE(4229)] = 129045, + [SMALL_STATE(4230)] = 129140, + [SMALL_STATE(4231)] = 129199, + [SMALL_STATE(4232)] = 129258, + [SMALL_STATE(4233)] = 129317, + [SMALL_STATE(4234)] = 129376, + [SMALL_STATE(4235)] = 129435, + [SMALL_STATE(4236)] = 129494, + [SMALL_STATE(4237)] = 129553, + [SMALL_STATE(4238)] = 129612, + [SMALL_STATE(4239)] = 129671, + [SMALL_STATE(4240)] = 129730, + [SMALL_STATE(4241)] = 129789, + [SMALL_STATE(4242)] = 129848, + [SMALL_STATE(4243)] = 129907, + [SMALL_STATE(4244)] = 129966, + [SMALL_STATE(4245)] = 130025, + [SMALL_STATE(4246)] = 130084, + [SMALL_STATE(4247)] = 130143, + [SMALL_STATE(4248)] = 130202, + [SMALL_STATE(4249)] = 130261, + [SMALL_STATE(4250)] = 130320, + [SMALL_STATE(4251)] = 130379, + [SMALL_STATE(4252)] = 130438, + [SMALL_STATE(4253)] = 130497, + [SMALL_STATE(4254)] = 130556, + [SMALL_STATE(4255)] = 130617, + [SMALL_STATE(4256)] = 130678, + [SMALL_STATE(4257)] = 130737, + [SMALL_STATE(4258)] = 130828, + [SMALL_STATE(4259)] = 130889, + [SMALL_STATE(4260)] = 130960, + [SMALL_STATE(4261)] = 131019, + [SMALL_STATE(4262)] = 131078, + [SMALL_STATE(4263)] = 131173, + [SMALL_STATE(4264)] = 131268, + [SMALL_STATE(4265)] = 131363, + [SMALL_STATE(4266)] = 131432, + [SMALL_STATE(4267)] = 131497, + [SMALL_STATE(4268)] = 131556, + [SMALL_STATE(4269)] = 131621, + [SMALL_STATE(4270)] = 131694, + [SMALL_STATE(4271)] = 131785, + [SMALL_STATE(4272)] = 131868, + [SMALL_STATE(4273)] = 131943, + [SMALL_STATE(4274)] = 132014, + [SMALL_STATE(4275)] = 132093, + [SMALL_STATE(4276)] = 132180, + [SMALL_STATE(4277)] = 132269, + [SMALL_STATE(4278)] = 132328, + [SMALL_STATE(4279)] = 132399, + [SMALL_STATE(4280)] = 132470, + [SMALL_STATE(4281)] = 132561, + [SMALL_STATE(4282)] = 132622, + [SMALL_STATE(4283)] = 132717, + [SMALL_STATE(4284)] = 132776, + [SMALL_STATE(4285)] = 132871, + [SMALL_STATE(4286)] = 132934, + [SMALL_STATE(4287)] = 132993, + [SMALL_STATE(4288)] = 133088, + [SMALL_STATE(4289)] = 133185, + [SMALL_STATE(4290)] = 133282, + [SMALL_STATE(4291)] = 133379, + [SMALL_STATE(4292)] = 133476, + [SMALL_STATE(4293)] = 133571, + [SMALL_STATE(4294)] = 133668, + [SMALL_STATE(4295)] = 133765, + [SMALL_STATE(4296)] = 133844, + [SMALL_STATE(4297)] = 133903, + [SMALL_STATE(4298)] = 133962, + [SMALL_STATE(4299)] = 134025, + [SMALL_STATE(4300)] = 134104, + [SMALL_STATE(4301)] = 134165, + [SMALL_STATE(4302)] = 134224, + [SMALL_STATE(4303)] = 134283, + [SMALL_STATE(4304)] = 134342, + [SMALL_STATE(4305)] = 134401, + [SMALL_STATE(4306)] = 134464, + [SMALL_STATE(4307)] = 134534, + [SMALL_STATE(4308)] = 134592, + [SMALL_STATE(4309)] = 134650, + [SMALL_STATE(4310)] = 134708, + [SMALL_STATE(4311)] = 134766, + [SMALL_STATE(4312)] = 134836, + [SMALL_STATE(4313)] = 134896, + [SMALL_STATE(4314)] = 134974, + [SMALL_STATE(4315)] = 135032, + [SMALL_STATE(4316)] = 135118, + [SMALL_STATE(4317)] = 135206, + [SMALL_STATE(4318)] = 135264, + [SMALL_STATE(4319)] = 135334, + [SMALL_STATE(4320)] = 135392, + [SMALL_STATE(4321)] = 135450, + [SMALL_STATE(4322)] = 135520, + [SMALL_STATE(4323)] = 135578, + [SMALL_STATE(4324)] = 135636, + [SMALL_STATE(4325)] = 135694, + [SMALL_STATE(4326)] = 135752, + [SMALL_STATE(4327)] = 135810, + [SMALL_STATE(4328)] = 135872, + [SMALL_STATE(4329)] = 135930, + [SMALL_STATE(4330)] = 135988, + [SMALL_STATE(4331)] = 136046, + [SMALL_STATE(4332)] = 136104, + [SMALL_STATE(4333)] = 136162, + [SMALL_STATE(4334)] = 136222, + [SMALL_STATE(4335)] = 136280, + [SMALL_STATE(4336)] = 136338, + [SMALL_STATE(4337)] = 136396, + [SMALL_STATE(4338)] = 136454, + [SMALL_STATE(4339)] = 136512, + [SMALL_STATE(4340)] = 136570, + [SMALL_STATE(4341)] = 136628, + [SMALL_STATE(4342)] = 136686, + [SMALL_STATE(4343)] = 136744, + [SMALL_STATE(4344)] = 136802, + [SMALL_STATE(4345)] = 136860, + [SMALL_STATE(4346)] = 136918, + [SMALL_STATE(4347)] = 136976, + [SMALL_STATE(4348)] = 137034, + [SMALL_STATE(4349)] = 137092, + [SMALL_STATE(4350)] = 137150, + [SMALL_STATE(4351)] = 137208, + [SMALL_STATE(4352)] = 137266, + [SMALL_STATE(4353)] = 137324, + [SMALL_STATE(4354)] = 137382, + [SMALL_STATE(4355)] = 137440, + [SMALL_STATE(4356)] = 137498, + [SMALL_STATE(4357)] = 137556, + [SMALL_STATE(4358)] = 137646, + [SMALL_STATE(4359)] = 137704, + [SMALL_STATE(4360)] = 137764, + [SMALL_STATE(4361)] = 137822, + [SMALL_STATE(4362)] = 137880, + [SMALL_STATE(4363)] = 137938, + [SMALL_STATE(4364)] = 137996, + [SMALL_STATE(4365)] = 138054, + [SMALL_STATE(4366)] = 138112, + [SMALL_STATE(4367)] = 138170, + [SMALL_STATE(4368)] = 138228, + [SMALL_STATE(4369)] = 138286, + [SMALL_STATE(4370)] = 138344, + [SMALL_STATE(4371)] = 138402, + [SMALL_STATE(4372)] = 138460, + [SMALL_STATE(4373)] = 138518, + [SMALL_STATE(4374)] = 138576, + [SMALL_STATE(4375)] = 138634, + [SMALL_STATE(4376)] = 138692, + [SMALL_STATE(4377)] = 138750, + [SMALL_STATE(4378)] = 138844, + [SMALL_STATE(4379)] = 138912, + [SMALL_STATE(4380)] = 138976, + [SMALL_STATE(4381)] = 139038, + [SMALL_STATE(4382)] = 139096, + [SMALL_STATE(4383)] = 139190, + [SMALL_STATE(4384)] = 139284, + [SMALL_STATE(4385)] = 139374, + [SMALL_STATE(4386)] = 139432, + [SMALL_STATE(4387)] = 139526, + [SMALL_STATE(4388)] = 139584, + [SMALL_STATE(4389)] = 139678, + [SMALL_STATE(4390)] = 139736, + [SMALL_STATE(4391)] = 139794, + [SMALL_STATE(4392)] = 139852, + [SMALL_STATE(4393)] = 139910, + [SMALL_STATE(4394)] = 139968, + [SMALL_STATE(4395)] = 140026, + [SMALL_STATE(4396)] = 140084, + [SMALL_STATE(4397)] = 140174, + [SMALL_STATE(4398)] = 140232, + [SMALL_STATE(4399)] = 140310, + [SMALL_STATE(4400)] = 140368, + [SMALL_STATE(4401)] = 140462, + [SMALL_STATE(4402)] = 140552, + [SMALL_STATE(4403)] = 140646, + [SMALL_STATE(4404)] = 140704, + [SMALL_STATE(4405)] = 140762, + [SMALL_STATE(4406)] = 140856, + [SMALL_STATE(4407)] = 140914, + [SMALL_STATE(4408)] = 140972, + [SMALL_STATE(4409)] = 141040, + [SMALL_STATE(4410)] = 141104, + [SMALL_STATE(4411)] = 141168, + [SMALL_STATE(4412)] = 141240, + [SMALL_STATE(4413)] = 141302, + [SMALL_STATE(4414)] = 141392, + [SMALL_STATE(4415)] = 141474, + [SMALL_STATE(4416)] = 141534, + [SMALL_STATE(4417)] = 141594, + [SMALL_STATE(4418)] = 141654, + [SMALL_STATE(4419)] = 141728, + [SMALL_STATE(4420)] = 141798, + [SMALL_STATE(4421)] = 141876, + [SMALL_STATE(4422)] = 141934, + [SMALL_STATE(4423)] = 141996, + [SMALL_STATE(4424)] = 142082, + [SMALL_STATE(4425)] = 142170, + [SMALL_STATE(4426)] = 142234, + [SMALL_STATE(4427)] = 142300, + [SMALL_STATE(4428)] = 142358, + [SMALL_STATE(4429)] = 142420, + [SMALL_STATE(4430)] = 142482, + [SMALL_STATE(4431)] = 142540, + [SMALL_STATE(4432)] = 142598, + [SMALL_STATE(4433)] = 142656, + [SMALL_STATE(4434)] = 142714, + [SMALL_STATE(4435)] = 142772, + [SMALL_STATE(4436)] = 142832, + [SMALL_STATE(4437)] = 142890, + [SMALL_STATE(4438)] = 142948, + [SMALL_STATE(4439)] = 143006, + [SMALL_STATE(4440)] = 143068, + [SMALL_STATE(4441)] = 143138, + [SMALL_STATE(4442)] = 143196, + [SMALL_STATE(4443)] = 143254, + [SMALL_STATE(4444)] = 143348, + [SMALL_STATE(4445)] = 143406, + [SMALL_STATE(4446)] = 143468, + [SMALL_STATE(4447)] = 143526, + [SMALL_STATE(4448)] = 143584, + [SMALL_STATE(4449)] = 143642, + [SMALL_STATE(4450)] = 143704, + [SMALL_STATE(4451)] = 143766, + [SMALL_STATE(4452)] = 143826, + [SMALL_STATE(4453)] = 143884, + [SMALL_STATE(4454)] = 143954, + [SMALL_STATE(4455)] = 144024, + [SMALL_STATE(4456)] = 144082, + [SMALL_STATE(4457)] = 144140, + [SMALL_STATE(4458)] = 144234, + [SMALL_STATE(4459)] = 144292, + [SMALL_STATE(4460)] = 144350, + [SMALL_STATE(4461)] = 144408, + [SMALL_STATE(4462)] = 144466, + [SMALL_STATE(4463)] = 144524, + [SMALL_STATE(4464)] = 144582, + [SMALL_STATE(4465)] = 144642, + [SMALL_STATE(4466)] = 144700, + [SMALL_STATE(4467)] = 144758, + [SMALL_STATE(4468)] = 144816, + [SMALL_STATE(4469)] = 144874, + [SMALL_STATE(4470)] = 144932, + [SMALL_STATE(4471)] = 144990, + [SMALL_STATE(4472)] = 145050, + [SMALL_STATE(4473)] = 145144, + [SMALL_STATE(4474)] = 145242, + [SMALL_STATE(4475)] = 145304, + [SMALL_STATE(4476)] = 145402, + [SMALL_STATE(4477)] = 145464, + [SMALL_STATE(4478)] = 145526, + [SMALL_STATE(4479)] = 145588, + [SMALL_STATE(4480)] = 145682, + [SMALL_STATE(4481)] = 145740, + [SMALL_STATE(4482)] = 145802, + [SMALL_STATE(4483)] = 145860, + [SMALL_STATE(4484)] = 145918, + [SMALL_STATE(4485)] = 145988, + [SMALL_STATE(4486)] = 146058, + [SMALL_STATE(4487)] = 146116, + [SMALL_STATE(4488)] = 146206, + [SMALL_STATE(4489)] = 146264, + [SMALL_STATE(4490)] = 146322, + [SMALL_STATE(4491)] = 146416, + [SMALL_STATE(4492)] = 146510, + [SMALL_STATE(4493)] = 146604, + [SMALL_STATE(4494)] = 146698, + [SMALL_STATE(4495)] = 146792, + [SMALL_STATE(4496)] = 146852, + [SMALL_STATE(4497)] = 146946, + [SMALL_STATE(4498)] = 147024, + [SMALL_STATE(4499)] = 147082, + [SMALL_STATE(4500)] = 147140, + [SMALL_STATE(4501)] = 147198, + [SMALL_STATE(4502)] = 147296, + [SMALL_STATE(4503)] = 147354, + [SMALL_STATE(4504)] = 147412, + [SMALL_STATE(4505)] = 147470, + [SMALL_STATE(4506)] = 147528, + [SMALL_STATE(4507)] = 147586, + [SMALL_STATE(4508)] = 147664, + [SMALL_STATE(4509)] = 147722, + [SMALL_STATE(4510)] = 147780, + [SMALL_STATE(4511)] = 147838, + [SMALL_STATE(4512)] = 147896, + [SMALL_STATE(4513)] = 147960, + [SMALL_STATE(4514)] = 148050, + [SMALL_STATE(4515)] = 148108, + [SMALL_STATE(4516)] = 148166, + [SMALL_STATE(4517)] = 148238, + [SMALL_STATE(4518)] = 148296, + [SMALL_STATE(4519)] = 148354, + [SMALL_STATE(4520)] = 148412, + [SMALL_STATE(4521)] = 148506, + [SMALL_STATE(4522)] = 148564, + [SMALL_STATE(4523)] = 148622, + [SMALL_STATE(4524)] = 148680, + [SMALL_STATE(4525)] = 148738, + [SMALL_STATE(4526)] = 148796, + [SMALL_STATE(4527)] = 148854, + [SMALL_STATE(4528)] = 148912, + [SMALL_STATE(4529)] = 148970, + [SMALL_STATE(4530)] = 149028, + [SMALL_STATE(4531)] = 149086, + [SMALL_STATE(4532)] = 149176, + [SMALL_STATE(4533)] = 149236, + [SMALL_STATE(4534)] = 149330, + [SMALL_STATE(4535)] = 149388, + [SMALL_STATE(4536)] = 149446, + [SMALL_STATE(4537)] = 149504, + [SMALL_STATE(4538)] = 149564, + [SMALL_STATE(4539)] = 149622, + [SMALL_STATE(4540)] = 149680, + [SMALL_STATE(4541)] = 149738, + [SMALL_STATE(4542)] = 149798, + [SMALL_STATE(4543)] = 149896, + [SMALL_STATE(4544)] = 149978, + [SMALL_STATE(4545)] = 150036, + [SMALL_STATE(4546)] = 150094, + [SMALL_STATE(4547)] = 150156, + [SMALL_STATE(4548)] = 150218, + [SMALL_STATE(4549)] = 150276, + [SMALL_STATE(4550)] = 150334, + [SMALL_STATE(4551)] = 150392, + [SMALL_STATE(4552)] = 150450, + [SMALL_STATE(4553)] = 150508, + [SMALL_STATE(4554)] = 150566, + [SMALL_STATE(4555)] = 150624, + [SMALL_STATE(4556)] = 150684, + [SMALL_STATE(4557)] = 150742, + [SMALL_STATE(4558)] = 150800, + [SMALL_STATE(4559)] = 150858, + [SMALL_STATE(4560)] = 150916, + [SMALL_STATE(4561)] = 150974, + [SMALL_STATE(4562)] = 151068, + [SMALL_STATE(4563)] = 151142, + [SMALL_STATE(4564)] = 151200, + [SMALL_STATE(4565)] = 151258, + [SMALL_STATE(4566)] = 151316, + [SMALL_STATE(4567)] = 151374, + [SMALL_STATE(4568)] = 151432, + [SMALL_STATE(4569)] = 151490, + [SMALL_STATE(4570)] = 151548, + [SMALL_STATE(4571)] = 151606, + [SMALL_STATE(4572)] = 151676, + [SMALL_STATE(4573)] = 151738, + [SMALL_STATE(4574)] = 151808, + [SMALL_STATE(4575)] = 151866, + [SMALL_STATE(4576)] = 151928, + [SMALL_STATE(4577)] = 151988, + [SMALL_STATE(4578)] = 152050, + [SMALL_STATE(4579)] = 152112, + [SMALL_STATE(4580)] = 152172, + [SMALL_STATE(4581)] = 152234, + [SMALL_STATE(4582)] = 152294, + [SMALL_STATE(4583)] = 152392, + [SMALL_STATE(4584)] = 152490, + [SMALL_STATE(4585)] = 152548, + [SMALL_STATE(4586)] = 152606, + [SMALL_STATE(4587)] = 152666, + [SMALL_STATE(4588)] = 152760, + [SMALL_STATE(4589)] = 152818, + [SMALL_STATE(4590)] = 152876, + [SMALL_STATE(4591)] = 152970, + [SMALL_STATE(4592)] = 153030, + [SMALL_STATE(4593)] = 153088, + [SMALL_STATE(4594)] = 153146, + [SMALL_STATE(4595)] = 153204, + [SMALL_STATE(4596)] = 153262, + [SMALL_STATE(4597)] = 153320, + [SMALL_STATE(4598)] = 153378, + [SMALL_STATE(4599)] = 153436, + [SMALL_STATE(4600)] = 153494, + [SMALL_STATE(4601)] = 153552, + [SMALL_STATE(4602)] = 153610, + [SMALL_STATE(4603)] = 153668, + [SMALL_STATE(4604)] = 153726, + [SMALL_STATE(4605)] = 153784, + [SMALL_STATE(4606)] = 153841, + [SMALL_STATE(4607)] = 153898, + [SMALL_STATE(4608)] = 153955, + [SMALL_STATE(4609)] = 154012, + [SMALL_STATE(4610)] = 154071, + [SMALL_STATE(4611)] = 154180, + [SMALL_STATE(4612)] = 154237, + [SMALL_STATE(4613)] = 154294, + [SMALL_STATE(4614)] = 154353, + [SMALL_STATE(4615)] = 154412, + [SMALL_STATE(4616)] = 154473, + [SMALL_STATE(4617)] = 154534, + [SMALL_STATE(4618)] = 154595, + [SMALL_STATE(4619)] = 154652, + [SMALL_STATE(4620)] = 154709, + [SMALL_STATE(4621)] = 154766, + [SMALL_STATE(4622)] = 154823, + [SMALL_STATE(4623)] = 154880, + [SMALL_STATE(4624)] = 154937, + [SMALL_STATE(4625)] = 155046, + [SMALL_STATE(4626)] = 155107, + [SMALL_STATE(4627)] = 155166, + [SMALL_STATE(4628)] = 155223, + [SMALL_STATE(4629)] = 155282, + [SMALL_STATE(4630)] = 155341, + [SMALL_STATE(4631)] = 155398, + [SMALL_STATE(4632)] = 155455, + [SMALL_STATE(4633)] = 155512, + [SMALL_STATE(4634)] = 155569, + [SMALL_STATE(4635)] = 155628, + [SMALL_STATE(4636)] = 155685, + [SMALL_STATE(4637)] = 155794, + [SMALL_STATE(4638)] = 155857, + [SMALL_STATE(4639)] = 155914, + [SMALL_STATE(4640)] = 155971, + [SMALL_STATE(4641)] = 156028, + [SMALL_STATE(4642)] = 156097, + [SMALL_STATE(4643)] = 156194, + [SMALL_STATE(4644)] = 156263, + [SMALL_STATE(4645)] = 156320, + [SMALL_STATE(4646)] = 156379, + [SMALL_STATE(4647)] = 156436, + [SMALL_STATE(4648)] = 156493, + [SMALL_STATE(4649)] = 156550, + [SMALL_STATE(4650)] = 156659, + [SMALL_STATE(4651)] = 156716, + [SMALL_STATE(4652)] = 156773, + [SMALL_STATE(4653)] = 156830, + [SMALL_STATE(4654)] = 156887, + [SMALL_STATE(4655)] = 156944, + [SMALL_STATE(4656)] = 157001, + [SMALL_STATE(4657)] = 157058, + [SMALL_STATE(4658)] = 157115, + [SMALL_STATE(4659)] = 157172, + [SMALL_STATE(4660)] = 157229, + [SMALL_STATE(4661)] = 157286, + [SMALL_STATE(4662)] = 157343, + [SMALL_STATE(4663)] = 157400, + [SMALL_STATE(4664)] = 157457, + [SMALL_STATE(4665)] = 157514, + [SMALL_STATE(4666)] = 157573, + [SMALL_STATE(4667)] = 157682, + [SMALL_STATE(4668)] = 157741, + [SMALL_STATE(4669)] = 157798, + [SMALL_STATE(4670)] = 157893, + [SMALL_STATE(4671)] = 157950, + [SMALL_STATE(4672)] = 158007, + [SMALL_STATE(4673)] = 158064, + [SMALL_STATE(4674)] = 158121, + [SMALL_STATE(4675)] = 158178, + [SMALL_STATE(4676)] = 158247, + [SMALL_STATE(4677)] = 158316, + [SMALL_STATE(4678)] = 158373, + [SMALL_STATE(4679)] = 158430, + [SMALL_STATE(4680)] = 158487, + [SMALL_STATE(4681)] = 158584, + [SMALL_STATE(4682)] = 158693, + [SMALL_STATE(4683)] = 158750, + [SMALL_STATE(4684)] = 158807, + [SMALL_STATE(4685)] = 158864, + [SMALL_STATE(4686)] = 158921, + [SMALL_STATE(4687)] = 158978, + [SMALL_STATE(4688)] = 159035, + [SMALL_STATE(4689)] = 159094, + [SMALL_STATE(4690)] = 159151, + [SMALL_STATE(4691)] = 159260, + [SMALL_STATE(4692)] = 159317, + [SMALL_STATE(4693)] = 159374, + [SMALL_STATE(4694)] = 159431, + [SMALL_STATE(4695)] = 159488, + [SMALL_STATE(4696)] = 159583, + [SMALL_STATE(4697)] = 159678, + [SMALL_STATE(4698)] = 159773, + [SMALL_STATE(4699)] = 159868, + [SMALL_STATE(4700)] = 159963, + [SMALL_STATE(4701)] = 160072, + [SMALL_STATE(4702)] = 160129, + [SMALL_STATE(4703)] = 160188, + [SMALL_STATE(4704)] = 160245, + [SMALL_STATE(4705)] = 160306, + [SMALL_STATE(4706)] = 160395, + [SMALL_STATE(4707)] = 160456, + [SMALL_STATE(4708)] = 160517, + [SMALL_STATE(4709)] = 160574, + [SMALL_STATE(4710)] = 160631, + [SMALL_STATE(4711)] = 160688, + [SMALL_STATE(4712)] = 160745, + [SMALL_STATE(4713)] = 160802, + [SMALL_STATE(4714)] = 160859, + [SMALL_STATE(4715)] = 160916, + [SMALL_STATE(4716)] = 161011, + [SMALL_STATE(4717)] = 161074, + [SMALL_STATE(4718)] = 161139, + [SMALL_STATE(4719)] = 161248, + [SMALL_STATE(4720)] = 161305, + [SMALL_STATE(4721)] = 161362, + [SMALL_STATE(4722)] = 161419, + [SMALL_STATE(4723)] = 161508, + [SMALL_STATE(4724)] = 161601, + [SMALL_STATE(4725)] = 161658, + [SMALL_STATE(4726)] = 161751, + [SMALL_STATE(4727)] = 161844, + [SMALL_STATE(4728)] = 161911, + [SMALL_STATE(4729)] = 161974, + [SMALL_STATE(4730)] = 162037, + [SMALL_STATE(4731)] = 162108, + [SMALL_STATE(4732)] = 162197, + [SMALL_STATE(4733)] = 162278, + [SMALL_STATE(4734)] = 162351, + [SMALL_STATE(4735)] = 162420, + [SMALL_STATE(4736)] = 162497, + [SMALL_STATE(4737)] = 162582, + [SMALL_STATE(4738)] = 162669, + [SMALL_STATE(4739)] = 162758, + [SMALL_STATE(4740)] = 162815, + [SMALL_STATE(4741)] = 162872, + [SMALL_STATE(4742)] = 162965, + [SMALL_STATE(4743)] = 163058, + [SMALL_STATE(4744)] = 163115, + [SMALL_STATE(4745)] = 163172, + [SMALL_STATE(4746)] = 163229, + [SMALL_STATE(4747)] = 163286, + [SMALL_STATE(4748)] = 163395, + [SMALL_STATE(4749)] = 163452, + [SMALL_STATE(4750)] = 163509, + [SMALL_STATE(4751)] = 163578, + [SMALL_STATE(4752)] = 163635, + [SMALL_STATE(4753)] = 163692, + [SMALL_STATE(4754)] = 163749, + [SMALL_STATE(4755)] = 163806, + [SMALL_STATE(4756)] = 163863, + [SMALL_STATE(4757)] = 163920, + [SMALL_STATE(4758)] = 163977, + [SMALL_STATE(4759)] = 164034, + [SMALL_STATE(4760)] = 164091, + [SMALL_STATE(4761)] = 164148, + [SMALL_STATE(4762)] = 164257, + [SMALL_STATE(4763)] = 164314, + [SMALL_STATE(4764)] = 164371, + [SMALL_STATE(4765)] = 164428, + [SMALL_STATE(4766)] = 164497, + [SMALL_STATE(4767)] = 164554, + [SMALL_STATE(4768)] = 164611, + [SMALL_STATE(4769)] = 164668, + [SMALL_STATE(4770)] = 164737, + [SMALL_STATE(4771)] = 164794, + [SMALL_STATE(4772)] = 164851, + [SMALL_STATE(4773)] = 164908, + [SMALL_STATE(4774)] = 164965, + [SMALL_STATE(4775)] = 165022, + [SMALL_STATE(4776)] = 165079, + [SMALL_STATE(4777)] = 165140, + [SMALL_STATE(4778)] = 165199, + [SMALL_STATE(4779)] = 165268, + [SMALL_STATE(4780)] = 165337, + [SMALL_STATE(4781)] = 165394, + [SMALL_STATE(4782)] = 165451, + [SMALL_STATE(4783)] = 165508, + [SMALL_STATE(4784)] = 165565, + [SMALL_STATE(4785)] = 165622, + [SMALL_STATE(4786)] = 165679, + [SMALL_STATE(4787)] = 165736, + [SMALL_STATE(4788)] = 165793, + [SMALL_STATE(4789)] = 165850, + [SMALL_STATE(4790)] = 165919, + [SMALL_STATE(4791)] = 165976, + [SMALL_STATE(4792)] = 166035, + [SMALL_STATE(4793)] = 166144, + [SMALL_STATE(4794)] = 166213, + [SMALL_STATE(4795)] = 166274, + [SMALL_STATE(4796)] = 166331, + [SMALL_STATE(4797)] = 166388, + [SMALL_STATE(4798)] = 166445, + [SMALL_STATE(4799)] = 166502, + [SMALL_STATE(4800)] = 166559, + [SMALL_STATE(4801)] = 166616, + [SMALL_STATE(4802)] = 166673, + [SMALL_STATE(4803)] = 166730, + [SMALL_STATE(4804)] = 166787, + [SMALL_STATE(4805)] = 166844, + [SMALL_STATE(4806)] = 166901, + [SMALL_STATE(4807)] = 166958, + [SMALL_STATE(4808)] = 167015, + [SMALL_STATE(4809)] = 167124, + [SMALL_STATE(4810)] = 167181, + [SMALL_STATE(4811)] = 167276, + [SMALL_STATE(4812)] = 167333, + [SMALL_STATE(4813)] = 167390, + [SMALL_STATE(4814)] = 167447, + [SMALL_STATE(4815)] = 167542, + [SMALL_STATE(4816)] = 167599, + [SMALL_STATE(4817)] = 167656, + [SMALL_STATE(4818)] = 167713, + [SMALL_STATE(4819)] = 167772, + [SMALL_STATE(4820)] = 167829, + [SMALL_STATE(4821)] = 167890, + [SMALL_STATE(4822)] = 167947, + [SMALL_STATE(4823)] = 168008, + [SMALL_STATE(4824)] = 168069, + [SMALL_STATE(4825)] = 168130, + [SMALL_STATE(4826)] = 168189, + [SMALL_STATE(4827)] = 168246, + [SMALL_STATE(4828)] = 168303, + [SMALL_STATE(4829)] = 168360, + [SMALL_STATE(4830)] = 168417, + [SMALL_STATE(4831)] = 168474, + [SMALL_STATE(4832)] = 168531, + [SMALL_STATE(4833)] = 168600, + [SMALL_STATE(4834)] = 168669, + [SMALL_STATE(4835)] = 168732, + [SMALL_STATE(4836)] = 168789, + [SMALL_STATE(4837)] = 168854, + [SMALL_STATE(4838)] = 168911, + [SMALL_STATE(4839)] = 168980, + [SMALL_STATE(4840)] = 169049, + [SMALL_STATE(4841)] = 169106, + [SMALL_STATE(4842)] = 169199, + [SMALL_STATE(4843)] = 169256, + [SMALL_STATE(4844)] = 169315, + [SMALL_STATE(4845)] = 169372, + [SMALL_STATE(4846)] = 169429, + [SMALL_STATE(4847)] = 169486, + [SMALL_STATE(4848)] = 169543, + [SMALL_STATE(4849)] = 169600, + [SMALL_STATE(4850)] = 169657, + [SMALL_STATE(4851)] = 169714, + [SMALL_STATE(4852)] = 169771, + [SMALL_STATE(4853)] = 169832, + [SMALL_STATE(4854)] = 169889, + [SMALL_STATE(4855)] = 169946, + [SMALL_STATE(4856)] = 170003, + [SMALL_STATE(4857)] = 170060, + [SMALL_STATE(4858)] = 170117, + [SMALL_STATE(4859)] = 170176, + [SMALL_STATE(4860)] = 170271, + [SMALL_STATE(4861)] = 170328, + [SMALL_STATE(4862)] = 170423, + [SMALL_STATE(4863)] = 170484, + [SMALL_STATE(4864)] = 170545, + [SMALL_STATE(4865)] = 170604, + [SMALL_STATE(4866)] = 170663, + [SMALL_STATE(4867)] = 170722, + [SMALL_STATE(4868)] = 170779, + [SMALL_STATE(4869)] = 170874, + [SMALL_STATE(4870)] = 170969, + [SMALL_STATE(4871)] = 171032, + [SMALL_STATE(4872)] = 171127, + [SMALL_STATE(4873)] = 171184, + [SMALL_STATE(4874)] = 171241, + [SMALL_STATE(4875)] = 171298, + [SMALL_STATE(4876)] = 171355, + [SMALL_STATE(4877)] = 171412, + [SMALL_STATE(4878)] = 171469, + [SMALL_STATE(4879)] = 171526, + [SMALL_STATE(4880)] = 171583, + [SMALL_STATE(4881)] = 171640, + [SMALL_STATE(4882)] = 171697, + [SMALL_STATE(4883)] = 171756, + [SMALL_STATE(4884)] = 171813, + [SMALL_STATE(4885)] = 171870, + [SMALL_STATE(4886)] = 171963, + [SMALL_STATE(4887)] = 172072, + [SMALL_STATE(4888)] = 172165, + [SMALL_STATE(4889)] = 172222, + [SMALL_STATE(4890)] = 172315, + [SMALL_STATE(4891)] = 172408, + [SMALL_STATE(4892)] = 172465, + [SMALL_STATE(4893)] = 172528, + [SMALL_STATE(4894)] = 172587, + [SMALL_STATE(4895)] = 172646, + [SMALL_STATE(4896)] = 172703, + [SMALL_STATE(4897)] = 172760, + [SMALL_STATE(4898)] = 172817, + [SMALL_STATE(4899)] = 172876, + [SMALL_STATE(4900)] = 172937, + [SMALL_STATE(4901)] = 172994, + [SMALL_STATE(4902)] = 173055, + [SMALL_STATE(4903)] = 173112, + [SMALL_STATE(4904)] = 173180, + [SMALL_STATE(4905)] = 173252, + [SMALL_STATE(4906)] = 173308, + [SMALL_STATE(4907)] = 173364, + [SMALL_STATE(4908)] = 173426, + [SMALL_STATE(4909)] = 173506, + [SMALL_STATE(4910)] = 173598, + [SMALL_STATE(4911)] = 173656, + [SMALL_STATE(4912)] = 173718, + [SMALL_STATE(4913)] = 173786, + [SMALL_STATE(4914)] = 173846, + [SMALL_STATE(4915)] = 173910, + [SMALL_STATE(4916)] = 173966, + [SMALL_STATE(4917)] = 174022, + [SMALL_STATE(4918)] = 174078, + [SMALL_STATE(4919)] = 174150, + [SMALL_STATE(4920)] = 174212, + [SMALL_STATE(4921)] = 174276, + [SMALL_STATE(4922)] = 174364, + [SMALL_STATE(4923)] = 174452, + [SMALL_STATE(4924)] = 174520, + [SMALL_STATE(4925)] = 174596, + [SMALL_STATE(4926)] = 174688, + [SMALL_STATE(4927)] = 174744, + [SMALL_STATE(4928)] = 174836, + [SMALL_STATE(4929)] = 174906, + [SMALL_STATE(4930)] = 174962, + [SMALL_STATE(4931)] = 175046, + [SMALL_STATE(4932)] = 175110, + [SMALL_STATE(4933)] = 175196, + [SMALL_STATE(4934)] = 175264, + [SMALL_STATE(4935)] = 175320, + [SMALL_STATE(4936)] = 175376, + [SMALL_STATE(4937)] = 175432, + [SMALL_STATE(4938)] = 175516, + [SMALL_STATE(4939)] = 175608, + [SMALL_STATE(4940)] = 175700, + [SMALL_STATE(4941)] = 175792, + [SMALL_STATE(4942)] = 175880, + [SMALL_STATE(4943)] = 175936, + [SMALL_STATE(4944)] = 176028, + [SMALL_STATE(4945)] = 176084, + [SMALL_STATE(4946)] = 176140, + [SMALL_STATE(4947)] = 176232, + [SMALL_STATE(4948)] = 176298, + [SMALL_STATE(4949)] = 176390, + [SMALL_STATE(4950)] = 176446, + [SMALL_STATE(4951)] = 176502, + [SMALL_STATE(4952)] = 176594, + [SMALL_STATE(4953)] = 176654, + [SMALL_STATE(4954)] = 176746, + [SMALL_STATE(4955)] = 176834, + [SMALL_STATE(4956)] = 176902, + [SMALL_STATE(4957)] = 176958, + [SMALL_STATE(4958)] = 177020, + [SMALL_STATE(4959)] = 177076, + [SMALL_STATE(4960)] = 177132, + [SMALL_STATE(4961)] = 177188, + [SMALL_STATE(4962)] = 177248, + [SMALL_STATE(4963)] = 177304, + [SMALL_STATE(4964)] = 177364, + [SMALL_STATE(4965)] = 177420, + [SMALL_STATE(4966)] = 177512, + [SMALL_STATE(4967)] = 177568, + [SMALL_STATE(4968)] = 177630, + [SMALL_STATE(4969)] = 177722, + [SMALL_STATE(4970)] = 177778, + [SMALL_STATE(4971)] = 177846, + [SMALL_STATE(4972)] = 177904, + [SMALL_STATE(4973)] = 177996, + [SMALL_STATE(4974)] = 178052, + [SMALL_STATE(4975)] = 178112, + [SMALL_STATE(4976)] = 178174, + [SMALL_STATE(4977)] = 178230, + [SMALL_STATE(4978)] = 178288, + [SMALL_STATE(4979)] = 178344, + [SMALL_STATE(4980)] = 178412, + [SMALL_STATE(4981)] = 178480, + [SMALL_STATE(4982)] = 178542, + [SMALL_STATE(4983)] = 178602, + [SMALL_STATE(4984)] = 178660, + [SMALL_STATE(4985)] = 178728, + [SMALL_STATE(4986)] = 178796, + [SMALL_STATE(4987)] = 178858, + [SMALL_STATE(4988)] = 178920, + [SMALL_STATE(4989)] = 178984, + [SMALL_STATE(4990)] = 179072, + [SMALL_STATE(4991)] = 179128, + [SMALL_STATE(4992)] = 179224, + [SMALL_STATE(4993)] = 179320, + [SMALL_STATE(4994)] = 179412, + [SMALL_STATE(4995)] = 179476, + [SMALL_STATE(4996)] = 179532, + [SMALL_STATE(4997)] = 179624, + [SMALL_STATE(4998)] = 179712, + [SMALL_STATE(4999)] = 179768, + [SMALL_STATE(5000)] = 179836, + [SMALL_STATE(5001)] = 179892, + [SMALL_STATE(5002)] = 179948, + [SMALL_STATE(5003)] = 180040, + [SMALL_STATE(5004)] = 180132, + [SMALL_STATE(5005)] = 180218, + [SMALL_STATE(5006)] = 180294, + [SMALL_STATE(5007)] = 180354, + [SMALL_STATE(5008)] = 180416, + [SMALL_STATE(5009)] = 180504, + [SMALL_STATE(5010)] = 180562, + [SMALL_STATE(5011)] = 180630, + [SMALL_STATE(5012)] = 180694, + [SMALL_STATE(5013)] = 180750, + [SMALL_STATE(5014)] = 180806, + [SMALL_STATE(5015)] = 180864, + [SMALL_STATE(5016)] = 180920, + [SMALL_STATE(5017)] = 180976, + [SMALL_STATE(5018)] = 181034, + [SMALL_STATE(5019)] = 181102, + [SMALL_STATE(5020)] = 181158, + [SMALL_STATE(5021)] = 181214, + [SMALL_STATE(5022)] = 181282, + [SMALL_STATE(5023)] = 181350, + [SMALL_STATE(5024)] = 181410, + [SMALL_STATE(5025)] = 181470, + [SMALL_STATE(5026)] = 181526, + [SMALL_STATE(5027)] = 181586, + [SMALL_STATE(5028)] = 181646, + [SMALL_STATE(5029)] = 181738, + [SMALL_STATE(5030)] = 181800, + [SMALL_STATE(5031)] = 181892, + [SMALL_STATE(5032)] = 181984, + [SMALL_STATE(5033)] = 182076, + [SMALL_STATE(5034)] = 182142, + [SMALL_STATE(5035)] = 182204, + [SMALL_STATE(5036)] = 182266, + [SMALL_STATE(5037)] = 182358, + [SMALL_STATE(5038)] = 182426, + [SMALL_STATE(5039)] = 182494, + [SMALL_STATE(5040)] = 182556, + [SMALL_STATE(5041)] = 182626, + [SMALL_STATE(5042)] = 182714, + [SMALL_STATE(5043)] = 182794, + [SMALL_STATE(5044)] = 182856, + [SMALL_STATE(5045)] = 182913, + [SMALL_STATE(5046)] = 182968, + [SMALL_STATE(5047)] = 183029, + [SMALL_STATE(5048)] = 183086, + [SMALL_STATE(5049)] = 183141, + [SMALL_STATE(5050)] = 183200, + [SMALL_STATE(5051)] = 183255, + [SMALL_STATE(5052)] = 183310, + [SMALL_STATE(5053)] = 183405, + [SMALL_STATE(5054)] = 183464, + [SMALL_STATE(5055)] = 183539, + [SMALL_STATE(5056)] = 183634, + [SMALL_STATE(5057)] = 183693, + [SMALL_STATE(5058)] = 183752, + [SMALL_STATE(5059)] = 183807, + [SMALL_STATE(5060)] = 183866, + [SMALL_STATE(5061)] = 183921, + [SMALL_STATE(5062)] = 183976, + [SMALL_STATE(5063)] = 184031, + [SMALL_STATE(5064)] = 184088, + [SMALL_STATE(5065)] = 184183, + [SMALL_STATE(5066)] = 184244, + [SMALL_STATE(5067)] = 184299, + [SMALL_STATE(5068)] = 184354, + [SMALL_STATE(5069)] = 184421, [SMALL_STATE(5070)] = 184480, - [SMALL_STATE(5071)] = 184537, - [SMALL_STATE(5072)] = 184596, - [SMALL_STATE(5073)] = 184655, - [SMALL_STATE(5074)] = 184750, - [SMALL_STATE(5075)] = 184809, - [SMALL_STATE(5076)] = 184868, - [SMALL_STATE(5077)] = 184927, - [SMALL_STATE(5078)] = 184982, - [SMALL_STATE(5079)] = 185037, - [SMALL_STATE(5080)] = 185092, - [SMALL_STATE(5081)] = 185153, - [SMALL_STATE(5082)] = 185208, - [SMALL_STATE(5083)] = 185283, - [SMALL_STATE(5084)] = 185340, - [SMALL_STATE(5085)] = 185395, - [SMALL_STATE(5086)] = 185452, - [SMALL_STATE(5087)] = 185507, - [SMALL_STATE(5088)] = 185562, - [SMALL_STATE(5089)] = 185617, - [SMALL_STATE(5090)] = 185672, - [SMALL_STATE(5091)] = 185727, - [SMALL_STATE(5092)] = 185782, - [SMALL_STATE(5093)] = 185845, - [SMALL_STATE(5094)] = 185904, - [SMALL_STATE(5095)] = 185961, - [SMALL_STATE(5096)] = 186036, - [SMALL_STATE(5097)] = 186099, - [SMALL_STATE(5098)] = 186156, - [SMALL_STATE(5099)] = 186217, - [SMALL_STATE(5100)] = 186312, - [SMALL_STATE(5101)] = 186375, - [SMALL_STATE(5102)] = 186442, - [SMALL_STATE(5103)] = 186501, - [SMALL_STATE(5104)] = 186556, - [SMALL_STATE(5105)] = 186611, - [SMALL_STATE(5106)] = 186668, - [SMALL_STATE(5107)] = 186725, - [SMALL_STATE(5108)] = 186792, - [SMALL_STATE(5109)] = 186887, - [SMALL_STATE(5110)] = 186946, - [SMALL_STATE(5111)] = 187007, - [SMALL_STATE(5112)] = 187068, - [SMALL_STATE(5113)] = 187127, - [SMALL_STATE(5114)] = 187184, - [SMALL_STATE(5115)] = 187251, - [SMALL_STATE(5116)] = 187318, - [SMALL_STATE(5117)] = 187381, - [SMALL_STATE(5118)] = 187440, - [SMALL_STATE(5119)] = 187538, - [SMALL_STATE(5120)] = 187598, - [SMALL_STATE(5121)] = 187652, - [SMALL_STATE(5122)] = 187706, - [SMALL_STATE(5123)] = 187766, - [SMALL_STATE(5124)] = 187860, - [SMALL_STATE(5125)] = 187914, - [SMALL_STATE(5126)] = 187968, - [SMALL_STATE(5127)] = 188024, - [SMALL_STATE(5128)] = 188082, - [SMALL_STATE(5129)] = 188136, - [SMALL_STATE(5130)] = 188190, - [SMALL_STATE(5131)] = 188244, - [SMALL_STATE(5132)] = 188302, - [SMALL_STATE(5133)] = 188364, - [SMALL_STATE(5134)] = 188426, - [SMALL_STATE(5135)] = 188488, - [SMALL_STATE(5136)] = 188542, - [SMALL_STATE(5137)] = 188602, - [SMALL_STATE(5138)] = 188660, - [SMALL_STATE(5139)] = 188716, - [SMALL_STATE(5140)] = 188782, - [SMALL_STATE(5141)] = 188848, - [SMALL_STATE(5142)] = 188942, - [SMALL_STATE(5143)] = 189016, - [SMALL_STATE(5144)] = 189090, - [SMALL_STATE(5145)] = 189164, - [SMALL_STATE(5146)] = 189222, - [SMALL_STATE(5147)] = 189280, - [SMALL_STATE(5148)] = 189374, - [SMALL_STATE(5149)] = 189428, - [SMALL_STATE(5150)] = 189486, - [SMALL_STATE(5151)] = 189576, - [SMALL_STATE(5152)] = 189666, - [SMALL_STATE(5153)] = 189760, - [SMALL_STATE(5154)] = 189818, - [SMALL_STATE(5155)] = 189872, - [SMALL_STATE(5156)] = 189930, - [SMALL_STATE(5157)] = 190020, - [SMALL_STATE(5158)] = 190110, - [SMALL_STATE(5159)] = 190166, - [SMALL_STATE(5160)] = 190222, - [SMALL_STATE(5161)] = 190276, - [SMALL_STATE(5162)] = 190336, - [SMALL_STATE(5163)] = 190392, - [SMALL_STATE(5164)] = 190452, - [SMALL_STATE(5165)] = 190514, - [SMALL_STATE(5166)] = 190568, - [SMALL_STATE(5167)] = 190622, - [SMALL_STATE(5168)] = 190680, - [SMALL_STATE(5169)] = 190734, - [SMALL_STATE(5170)] = 190788, - [SMALL_STATE(5171)] = 190878, - [SMALL_STATE(5172)] = 190932, - [SMALL_STATE(5173)] = 190986, - [SMALL_STATE(5174)] = 191052, - [SMALL_STATE(5175)] = 191108, - [SMALL_STATE(5176)] = 191204, - [SMALL_STATE(5177)] = 191262, - [SMALL_STATE(5178)] = 191358, - [SMALL_STATE(5179)] = 191416, - [SMALL_STATE(5180)] = 191474, - [SMALL_STATE(5181)] = 191532, - [SMALL_STATE(5182)] = 191586, - [SMALL_STATE(5183)] = 191640, - [SMALL_STATE(5184)] = 191734, - [SMALL_STATE(5185)] = 191792, - [SMALL_STATE(5186)] = 191886, - [SMALL_STATE(5187)] = 191944, - [SMALL_STATE(5188)] = 192002, - [SMALL_STATE(5189)] = 192060, - [SMALL_STATE(5190)] = 192114, - [SMALL_STATE(5191)] = 192168, - [SMALL_STATE(5192)] = 192222, - [SMALL_STATE(5193)] = 192278, - [SMALL_STATE(5194)] = 192334, - [SMALL_STATE(5195)] = 192388, - [SMALL_STATE(5196)] = 192444, - [SMALL_STATE(5197)] = 192500, - [SMALL_STATE(5198)] = 192554, - [SMALL_STATE(5199)] = 192610, - [SMALL_STATE(5200)] = 192664, - [SMALL_STATE(5201)] = 192720, - [SMALL_STATE(5202)] = 192776, - [SMALL_STATE(5203)] = 192830, - [SMALL_STATE(5204)] = 192884, - [SMALL_STATE(5205)] = 192938, - [SMALL_STATE(5206)] = 192994, - [SMALL_STATE(5207)] = 193048, - [SMALL_STATE(5208)] = 193102, - [SMALL_STATE(5209)] = 193156, - [SMALL_STATE(5210)] = 193214, - [SMALL_STATE(5211)] = 193300, - [SMALL_STATE(5212)] = 193354, - [SMALL_STATE(5213)] = 193408, - [SMALL_STATE(5214)] = 193462, - [SMALL_STATE(5215)] = 193516, - [SMALL_STATE(5216)] = 193570, - [SMALL_STATE(5217)] = 193624, - [SMALL_STATE(5218)] = 193678, - [SMALL_STATE(5219)] = 193736, - [SMALL_STATE(5220)] = 193794, - [SMALL_STATE(5221)] = 193854, - [SMALL_STATE(5222)] = 193916, - [SMALL_STATE(5223)] = 193970, - [SMALL_STATE(5224)] = 194024, - [SMALL_STATE(5225)] = 194078, - [SMALL_STATE(5226)] = 194132, - [SMALL_STATE(5227)] = 194186, - [SMALL_STATE(5228)] = 194240, - [SMALL_STATE(5229)] = 194294, - [SMALL_STATE(5230)] = 194348, - [SMALL_STATE(5231)] = 194402, - [SMALL_STATE(5232)] = 194456, - [SMALL_STATE(5233)] = 194510, - [SMALL_STATE(5234)] = 194564, - [SMALL_STATE(5235)] = 194618, - [SMALL_STATE(5236)] = 194672, - [SMALL_STATE(5237)] = 194726, - [SMALL_STATE(5238)] = 194780, - [SMALL_STATE(5239)] = 194834, - [SMALL_STATE(5240)] = 194888, - [SMALL_STATE(5241)] = 194942, - [SMALL_STATE(5242)] = 194996, - [SMALL_STATE(5243)] = 195050, - [SMALL_STATE(5244)] = 195104, - [SMALL_STATE(5245)] = 195158, - [SMALL_STATE(5246)] = 195212, - [SMALL_STATE(5247)] = 195266, - [SMALL_STATE(5248)] = 195320, - [SMALL_STATE(5249)] = 195374, - [SMALL_STATE(5250)] = 195428, - [SMALL_STATE(5251)] = 195482, - [SMALL_STATE(5252)] = 195536, - [SMALL_STATE(5253)] = 195590, - [SMALL_STATE(5254)] = 195644, - [SMALL_STATE(5255)] = 195698, - [SMALL_STATE(5256)] = 195752, - [SMALL_STATE(5257)] = 195806, - [SMALL_STATE(5258)] = 195860, - [SMALL_STATE(5259)] = 195914, - [SMALL_STATE(5260)] = 195968, - [SMALL_STATE(5261)] = 196022, - [SMALL_STATE(5262)] = 196076, - [SMALL_STATE(5263)] = 196130, - [SMALL_STATE(5264)] = 196184, - [SMALL_STATE(5265)] = 196238, - [SMALL_STATE(5266)] = 196292, - [SMALL_STATE(5267)] = 196346, - [SMALL_STATE(5268)] = 196400, - [SMALL_STATE(5269)] = 196454, - [SMALL_STATE(5270)] = 196540, - [SMALL_STATE(5271)] = 196630, - [SMALL_STATE(5272)] = 196684, - [SMALL_STATE(5273)] = 196774, - [SMALL_STATE(5274)] = 196864, - [SMALL_STATE(5275)] = 196928, - [SMALL_STATE(5276)] = 196988, - [SMALL_STATE(5277)] = 197048, - [SMALL_STATE(5278)] = 197116, - [SMALL_STATE(5279)] = 197170, - [SMALL_STATE(5280)] = 197256, - [SMALL_STATE(5281)] = 197334, - [SMALL_STATE(5282)] = 197404, - [SMALL_STATE(5283)] = 197470, - [SMALL_STATE(5284)] = 197544, - [SMALL_STATE(5285)] = 197626, - [SMALL_STATE(5286)] = 197710, - [SMALL_STATE(5287)] = 197776, - [SMALL_STATE(5288)] = 197830, - [SMALL_STATE(5289)] = 197916, - [SMALL_STATE(5290)] = 197976, - [SMALL_STATE(5291)] = 198066, - [SMALL_STATE(5292)] = 198156, - [SMALL_STATE(5293)] = 198210, - [SMALL_STATE(5294)] = 198264, - [SMALL_STATE(5295)] = 198322, - [SMALL_STATE(5296)] = 198376, - [SMALL_STATE(5297)] = 198430, - [SMALL_STATE(5298)] = 198486, - [SMALL_STATE(5299)] = 198540, - [SMALL_STATE(5300)] = 198594, - [SMALL_STATE(5301)] = 198648, - [SMALL_STATE(5302)] = 198702, - [SMALL_STATE(5303)] = 198756, - [SMALL_STATE(5304)] = 198810, - [SMALL_STATE(5305)] = 198864, - [SMALL_STATE(5306)] = 198918, - [SMALL_STATE(5307)] = 198972, - [SMALL_STATE(5308)] = 199026, - [SMALL_STATE(5309)] = 199080, - [SMALL_STATE(5310)] = 199176, - [SMALL_STATE(5311)] = 199232, - [SMALL_STATE(5312)] = 199286, - [SMALL_STATE(5313)] = 199340, - [SMALL_STATE(5314)] = 199394, - [SMALL_STATE(5315)] = 199448, - [SMALL_STATE(5316)] = 199502, - [SMALL_STATE(5317)] = 199556, - [SMALL_STATE(5318)] = 199610, - [SMALL_STATE(5319)] = 199664, - [SMALL_STATE(5320)] = 199720, - [SMALL_STATE(5321)] = 199774, - [SMALL_STATE(5322)] = 199828, - [SMALL_STATE(5323)] = 199882, - [SMALL_STATE(5324)] = 199936, - [SMALL_STATE(5325)] = 199990, - [SMALL_STATE(5326)] = 200044, - [SMALL_STATE(5327)] = 200098, - [SMALL_STATE(5328)] = 200152, - [SMALL_STATE(5329)] = 200206, - [SMALL_STATE(5330)] = 200260, - [SMALL_STATE(5331)] = 200314, - [SMALL_STATE(5332)] = 200368, - [SMALL_STATE(5333)] = 200422, - [SMALL_STATE(5334)] = 200476, - [SMALL_STATE(5335)] = 200530, - [SMALL_STATE(5336)] = 200584, - [SMALL_STATE(5337)] = 200638, - [SMALL_STATE(5338)] = 200692, - [SMALL_STATE(5339)] = 200746, - [SMALL_STATE(5340)] = 200800, - [SMALL_STATE(5341)] = 200854, - [SMALL_STATE(5342)] = 200908, - [SMALL_STATE(5343)] = 200962, - [SMALL_STATE(5344)] = 201016, - [SMALL_STATE(5345)] = 201070, - [SMALL_STATE(5346)] = 201124, - [SMALL_STATE(5347)] = 201178, - [SMALL_STATE(5348)] = 201232, - [SMALL_STATE(5349)] = 201286, - [SMALL_STATE(5350)] = 201340, - [SMALL_STATE(5351)] = 201394, - [SMALL_STATE(5352)] = 201448, - [SMALL_STATE(5353)] = 201502, - [SMALL_STATE(5354)] = 201556, - [SMALL_STATE(5355)] = 201610, - [SMALL_STATE(5356)] = 201664, - [SMALL_STATE(5357)] = 201718, - [SMALL_STATE(5358)] = 201772, - [SMALL_STATE(5359)] = 201826, - [SMALL_STATE(5360)] = 201880, - [SMALL_STATE(5361)] = 201934, - [SMALL_STATE(5362)] = 201988, - [SMALL_STATE(5363)] = 202042, - [SMALL_STATE(5364)] = 202096, - [SMALL_STATE(5365)] = 202150, - [SMALL_STATE(5366)] = 202204, - [SMALL_STATE(5367)] = 202258, - [SMALL_STATE(5368)] = 202312, - [SMALL_STATE(5369)] = 202366, - [SMALL_STATE(5370)] = 202420, - [SMALL_STATE(5371)] = 202474, - [SMALL_STATE(5372)] = 202528, - [SMALL_STATE(5373)] = 202582, - [SMALL_STATE(5374)] = 202636, - [SMALL_STATE(5375)] = 202690, - [SMALL_STATE(5376)] = 202744, - [SMALL_STATE(5377)] = 202798, - [SMALL_STATE(5378)] = 202852, - [SMALL_STATE(5379)] = 202906, - [SMALL_STATE(5380)] = 202960, - [SMALL_STATE(5381)] = 203018, - [SMALL_STATE(5382)] = 203072, - [SMALL_STATE(5383)] = 203168, - [SMALL_STATE(5384)] = 203226, - [SMALL_STATE(5385)] = 203280, - [SMALL_STATE(5386)] = 203334, - [SMALL_STATE(5387)] = 203388, - [SMALL_STATE(5388)] = 203446, - [SMALL_STATE(5389)] = 203500, - [SMALL_STATE(5390)] = 203558, - [SMALL_STATE(5391)] = 203614, - [SMALL_STATE(5392)] = 203670, - [SMALL_STATE(5393)] = 203756, - [SMALL_STATE(5394)] = 203816, - [SMALL_STATE(5395)] = 203876, - [SMALL_STATE(5396)] = 203936, - [SMALL_STATE(5397)] = 204022, - [SMALL_STATE(5398)] = 204076, - [SMALL_STATE(5399)] = 204166, - [SMALL_STATE(5400)] = 204220, - [SMALL_STATE(5401)] = 204310, - [SMALL_STATE(5402)] = 204400, - [SMALL_STATE(5403)] = 204464, - [SMALL_STATE(5404)] = 204524, - [SMALL_STATE(5405)] = 204584, - [SMALL_STATE(5406)] = 204652, - [SMALL_STATE(5407)] = 204738, - [SMALL_STATE(5408)] = 204816, - [SMALL_STATE(5409)] = 204886, - [SMALL_STATE(5410)] = 204952, - [SMALL_STATE(5411)] = 205026, - [SMALL_STATE(5412)] = 205108, - [SMALL_STATE(5413)] = 205192, - [SMALL_STATE(5414)] = 205278, - [SMALL_STATE(5415)] = 205332, - [SMALL_STATE(5416)] = 205386, - [SMALL_STATE(5417)] = 205440, - [SMALL_STATE(5418)] = 205494, - [SMALL_STATE(5419)] = 205548, - [SMALL_STATE(5420)] = 205602, - [SMALL_STATE(5421)] = 205692, - [SMALL_STATE(5422)] = 205746, - [SMALL_STATE(5423)] = 205836, - [SMALL_STATE(5424)] = 205890, - [SMALL_STATE(5425)] = 205956, - [SMALL_STATE(5426)] = 206016, - [SMALL_STATE(5427)] = 206070, - [SMALL_STATE(5428)] = 206129, - [SMALL_STATE(5429)] = 206182, - [SMALL_STATE(5430)] = 206237, - [SMALL_STATE(5431)] = 206290, - [SMALL_STATE(5432)] = 206347, - [SMALL_STATE(5433)] = 206402, - [SMALL_STATE(5434)] = 206459, - [SMALL_STATE(5435)] = 206512, - [SMALL_STATE(5436)] = 206565, - [SMALL_STATE(5437)] = 206658, - [SMALL_STATE(5438)] = 206715, - [SMALL_STATE(5439)] = 206808, - [SMALL_STATE(5440)] = 206865, - [SMALL_STATE(5441)] = 206922, - [SMALL_STATE(5442)] = 206979, - [SMALL_STATE(5443)] = 207032, - [SMALL_STATE(5444)] = 207085, - [SMALL_STATE(5445)] = 207142, - [SMALL_STATE(5446)] = 207195, - [SMALL_STATE(5447)] = 207248, - [SMALL_STATE(5448)] = 207301, - [SMALL_STATE(5449)] = 207354, - [SMALL_STATE(5450)] = 207407, - [SMALL_STATE(5451)] = 207460, - [SMALL_STATE(5452)] = 207517, - [SMALL_STATE(5453)] = 207610, - [SMALL_STATE(5454)] = 207703, - [SMALL_STATE(5455)] = 207792, - [SMALL_STATE(5456)] = 207845, - [SMALL_STATE(5457)] = 207898, - [SMALL_STATE(5458)] = 207951, - [SMALL_STATE(5459)] = 208004, - [SMALL_STATE(5460)] = 208057, - [SMALL_STATE(5461)] = 208110, - [SMALL_STATE(5462)] = 208163, - [SMALL_STATE(5463)] = 208252, - [SMALL_STATE(5464)] = 208345, - [SMALL_STATE(5465)] = 208398, - [SMALL_STATE(5466)] = 208451, - [SMALL_STATE(5467)] = 208504, - [SMALL_STATE(5468)] = 208557, - [SMALL_STATE(5469)] = 208610, - [SMALL_STATE(5470)] = 208703, - [SMALL_STATE(5471)] = 208794, - [SMALL_STATE(5472)] = 208851, - [SMALL_STATE(5473)] = 208942, - [SMALL_STATE(5474)] = 208995, - [SMALL_STATE(5475)] = 209050, - [SMALL_STATE(5476)] = 209103, - [SMALL_STATE(5477)] = 209156, - [SMALL_STATE(5478)] = 209209, - [SMALL_STATE(5479)] = 209262, - [SMALL_STATE(5480)] = 209315, - [SMALL_STATE(5481)] = 209368, - [SMALL_STATE(5482)] = 209421, - [SMALL_STATE(5483)] = 209488, - [SMALL_STATE(5484)] = 209561, - [SMALL_STATE(5485)] = 209614, - [SMALL_STATE(5486)] = 209667, - [SMALL_STATE(5487)] = 209720, - [SMALL_STATE(5488)] = 209773, - [SMALL_STATE(5489)] = 209826, - [SMALL_STATE(5490)] = 209879, - [SMALL_STATE(5491)] = 209952, - [SMALL_STATE(5492)] = 210037, - [SMALL_STATE(5493)] = 210090, - [SMALL_STATE(5494)] = 210143, - [SMALL_STATE(5495)] = 210196, - [SMALL_STATE(5496)] = 210249, - [SMALL_STATE(5497)] = 210302, - [SMALL_STATE(5498)] = 210355, - [SMALL_STATE(5499)] = 210408, - [SMALL_STATE(5500)] = 210461, - [SMALL_STATE(5501)] = 210550, - [SMALL_STATE(5502)] = 210603, - [SMALL_STATE(5503)] = 210662, - [SMALL_STATE(5504)] = 210715, - [SMALL_STATE(5505)] = 210768, - [SMALL_STATE(5506)] = 210835, - [SMALL_STATE(5507)] = 210888, - [SMALL_STATE(5508)] = 210947, - [SMALL_STATE(5509)] = 211000, - [SMALL_STATE(5510)] = 211073, - [SMALL_STATE(5511)] = 211126, - [SMALL_STATE(5512)] = 211179, - [SMALL_STATE(5513)] = 211232, - [SMALL_STATE(5514)] = 211305, - [SMALL_STATE(5515)] = 211378, - [SMALL_STATE(5516)] = 211431, - [SMALL_STATE(5517)] = 211484, - [SMALL_STATE(5518)] = 211539, - [SMALL_STATE(5519)] = 211594, - [SMALL_STATE(5520)] = 211653, - [SMALL_STATE(5521)] = 211706, - [SMALL_STATE(5522)] = 211759, - [SMALL_STATE(5523)] = 211812, - [SMALL_STATE(5524)] = 211865, - [SMALL_STATE(5525)] = 211922, - [SMALL_STATE(5526)] = 212011, - [SMALL_STATE(5527)] = 212096, - [SMALL_STATE(5528)] = 212149, - [SMALL_STATE(5529)] = 212202, - [SMALL_STATE(5530)] = 212257, - [SMALL_STATE(5531)] = 212310, - [SMALL_STATE(5532)] = 212377, - [SMALL_STATE(5533)] = 212430, - [SMALL_STATE(5534)] = 212483, - [SMALL_STATE(5535)] = 212536, - [SMALL_STATE(5536)] = 212595, - [SMALL_STATE(5537)] = 212648, - [SMALL_STATE(5538)] = 212705, - [SMALL_STATE(5539)] = 212758, - [SMALL_STATE(5540)] = 212811, - [SMALL_STATE(5541)] = 212902, - [SMALL_STATE(5542)] = 212955, - [SMALL_STATE(5543)] = 213044, - [SMALL_STATE(5544)] = 213097, - [SMALL_STATE(5545)] = 213150, - [SMALL_STATE(5546)] = 213239, - [SMALL_STATE(5547)] = 213328, - [SMALL_STATE(5548)] = 213381, - [SMALL_STATE(5549)] = 213434, - [SMALL_STATE(5550)] = 213487, - [SMALL_STATE(5551)] = 213578, - [SMALL_STATE(5552)] = 213631, - [SMALL_STATE(5553)] = 213684, - [SMALL_STATE(5554)] = 213737, - [SMALL_STATE(5555)] = 213790, - [SMALL_STATE(5556)] = 213843, - [SMALL_STATE(5557)] = 213896, - [SMALL_STATE(5558)] = 213949, - [SMALL_STATE(5559)] = 214004, - [SMALL_STATE(5560)] = 214061, - [SMALL_STATE(5561)] = 214128, - [SMALL_STATE(5562)] = 214181, - [SMALL_STATE(5563)] = 214238, - [SMALL_STATE(5564)] = 214323, - [SMALL_STATE(5565)] = 214380, - [SMALL_STATE(5566)] = 214433, - [SMALL_STATE(5567)] = 214486, - [SMALL_STATE(5568)] = 214539, - [SMALL_STATE(5569)] = 214592, - [SMALL_STATE(5570)] = 214645, - [SMALL_STATE(5571)] = 214698, - [SMALL_STATE(5572)] = 214751, - [SMALL_STATE(5573)] = 214804, - [SMALL_STATE(5574)] = 214857, - [SMALL_STATE(5575)] = 214910, - [SMALL_STATE(5576)] = 214963, - [SMALL_STATE(5577)] = 215016, - [SMALL_STATE(5578)] = 215069, - [SMALL_STATE(5579)] = 215122, - [SMALL_STATE(5580)] = 215175, - [SMALL_STATE(5581)] = 215228, - [SMALL_STATE(5582)] = 215281, - [SMALL_STATE(5583)] = 215334, - [SMALL_STATE(5584)] = 215387, - [SMALL_STATE(5585)] = 215440, - [SMALL_STATE(5586)] = 215499, - [SMALL_STATE(5587)] = 215556, - [SMALL_STATE(5588)] = 215609, - [SMALL_STATE(5589)] = 215664, - [SMALL_STATE(5590)] = 215717, - [SMALL_STATE(5591)] = 215770, - [SMALL_STATE(5592)] = 215823, - [SMALL_STATE(5593)] = 215876, - [SMALL_STATE(5594)] = 215929, - [SMALL_STATE(5595)] = 215982, - [SMALL_STATE(5596)] = 216037, - [SMALL_STATE(5597)] = 216090, - [SMALL_STATE(5598)] = 216145, - [SMALL_STATE(5599)] = 216198, - [SMALL_STATE(5600)] = 216251, - [SMALL_STATE(5601)] = 216304, - [SMALL_STATE(5602)] = 216395, - [SMALL_STATE(5603)] = 216448, - [SMALL_STATE(5604)] = 216501, - [SMALL_STATE(5605)] = 216554, - [SMALL_STATE(5606)] = 216609, - [SMALL_STATE(5607)] = 216662, - [SMALL_STATE(5608)] = 216745, - [SMALL_STATE(5609)] = 216798, - [SMALL_STATE(5610)] = 216891, - [SMALL_STATE(5611)] = 216944, - [SMALL_STATE(5612)] = 216999, - [SMALL_STATE(5613)] = 217052, - [SMALL_STATE(5614)] = 217105, - [SMALL_STATE(5615)] = 217158, - [SMALL_STATE(5616)] = 217211, - [SMALL_STATE(5617)] = 217268, - [SMALL_STATE(5618)] = 217321, - [SMALL_STATE(5619)] = 217374, - [SMALL_STATE(5620)] = 217427, - [SMALL_STATE(5621)] = 217480, - [SMALL_STATE(5622)] = 217533, - [SMALL_STATE(5623)] = 217586, - [SMALL_STATE(5624)] = 217639, - [SMALL_STATE(5625)] = 217692, - [SMALL_STATE(5626)] = 217785, - [SMALL_STATE(5627)] = 217878, - [SMALL_STATE(5628)] = 217931, - [SMALL_STATE(5629)] = 217984, - [SMALL_STATE(5630)] = 218073, - [SMALL_STATE(5631)] = 218126, - [SMALL_STATE(5632)] = 218181, - [SMALL_STATE(5633)] = 218234, - [SMALL_STATE(5634)] = 218287, - [SMALL_STATE(5635)] = 218342, - [SMALL_STATE(5636)] = 218399, - [SMALL_STATE(5637)] = 218454, - [SMALL_STATE(5638)] = 218507, - [SMALL_STATE(5639)] = 218562, - [SMALL_STATE(5640)] = 218617, - [SMALL_STATE(5641)] = 218670, - [SMALL_STATE(5642)] = 218723, - [SMALL_STATE(5643)] = 218776, - [SMALL_STATE(5644)] = 218829, - [SMALL_STATE(5645)] = 218886, - [SMALL_STATE(5646)] = 218945, - [SMALL_STATE(5647)] = 218998, - [SMALL_STATE(5648)] = 219091, - [SMALL_STATE(5649)] = 219144, - [SMALL_STATE(5650)] = 219201, - [SMALL_STATE(5651)] = 219258, - [SMALL_STATE(5652)] = 219311, - [SMALL_STATE(5653)] = 219364, - [SMALL_STATE(5654)] = 219417, - [SMALL_STATE(5655)] = 219470, - [SMALL_STATE(5656)] = 219559, - [SMALL_STATE(5657)] = 219648, - [SMALL_STATE(5658)] = 219733, - [SMALL_STATE(5659)] = 219826, - [SMALL_STATE(5660)] = 219883, - [SMALL_STATE(5661)] = 219976, - [SMALL_STATE(5662)] = 220033, - [SMALL_STATE(5663)] = 220086, - [SMALL_STATE(5664)] = 220139, - [SMALL_STATE(5665)] = 220194, - [SMALL_STATE(5666)] = 220247, - [SMALL_STATE(5667)] = 220300, - [SMALL_STATE(5668)] = 220355, - [SMALL_STATE(5669)] = 220408, - [SMALL_STATE(5670)] = 220461, - [SMALL_STATE(5671)] = 220514, - [SMALL_STATE(5672)] = 220567, - [SMALL_STATE(5673)] = 220620, - [SMALL_STATE(5674)] = 220673, - [SMALL_STATE(5675)] = 220726, - [SMALL_STATE(5676)] = 220779, - [SMALL_STATE(5677)] = 220832, - [SMALL_STATE(5678)] = 220885, - [SMALL_STATE(5679)] = 220938, - [SMALL_STATE(5680)] = 220995, - [SMALL_STATE(5681)] = 221048, - [SMALL_STATE(5682)] = 221103, - [SMALL_STATE(5683)] = 221158, - [SMALL_STATE(5684)] = 221215, - [SMALL_STATE(5685)] = 221300, - [SMALL_STATE(5686)] = 221363, - [SMALL_STATE(5687)] = 221454, - [SMALL_STATE(5688)] = 221545, - [SMALL_STATE(5689)] = 221604, - [SMALL_STATE(5690)] = 221695, - [SMALL_STATE(5691)] = 221758, - [SMALL_STATE(5692)] = 221817, - [SMALL_STATE(5693)] = 221876, - [SMALL_STATE(5694)] = 221943, - [SMALL_STATE(5695)] = 221998, - [SMALL_STATE(5696)] = 222053, - [SMALL_STATE(5697)] = 222108, - [SMALL_STATE(5698)] = 222163, - [SMALL_STATE(5699)] = 222256, - [SMALL_STATE(5700)] = 222313, - [SMALL_STATE(5701)] = 222406, - [SMALL_STATE(5702)] = 222463, - [SMALL_STATE(5703)] = 222520, - [SMALL_STATE(5704)] = 222577, - [SMALL_STATE(5705)] = 222662, - [SMALL_STATE(5706)] = 222755, - [SMALL_STATE(5707)] = 222812, - [SMALL_STATE(5708)] = 222905, - [SMALL_STATE(5709)] = 222962, - [SMALL_STATE(5710)] = 223019, - [SMALL_STATE(5711)] = 223076, - [SMALL_STATE(5712)] = 223153, - [SMALL_STATE(5713)] = 223220, - [SMALL_STATE(5714)] = 223305, - [SMALL_STATE(5715)] = 223382, - [SMALL_STATE(5716)] = 223451, - [SMALL_STATE(5717)] = 223516, - [SMALL_STATE(5718)] = 223589, - [SMALL_STATE(5719)] = 223670, - [SMALL_STATE(5720)] = 223753, - [SMALL_STATE(5721)] = 223838, - [SMALL_STATE(5722)] = 223895, - [SMALL_STATE(5723)] = 223952, - [SMALL_STATE(5724)] = 224009, - [SMALL_STATE(5725)] = 224066, - [SMALL_STATE(5726)] = 224159, - [SMALL_STATE(5727)] = 224252, - [SMALL_STATE(5728)] = 224343, - [SMALL_STATE(5729)] = 224434, - [SMALL_STATE(5730)] = 224503, - [SMALL_STATE(5731)] = 224556, - [SMALL_STATE(5732)] = 224621, - [SMALL_STATE(5733)] = 224674, - [SMALL_STATE(5734)] = 224729, - [SMALL_STATE(5735)] = 224782, - [SMALL_STATE(5736)] = 224855, - [SMALL_STATE(5737)] = 224948, - [SMALL_STATE(5738)] = 225005, - [SMALL_STATE(5739)] = 225098, - [SMALL_STATE(5740)] = 225155, - [SMALL_STATE(5741)] = 225212, - [SMALL_STATE(5742)] = 225269, - [SMALL_STATE(5743)] = 225322, - [SMALL_STATE(5744)] = 225377, - [SMALL_STATE(5745)] = 225432, - [SMALL_STATE(5746)] = 225485, - [SMALL_STATE(5747)] = 225540, - [SMALL_STATE(5748)] = 225595, - [SMALL_STATE(5749)] = 225676, - [SMALL_STATE(5750)] = 225731, - [SMALL_STATE(5751)] = 225783, - [SMALL_STATE(5752)] = 225851, - [SMALL_STATE(5753)] = 225945, - [SMALL_STATE(5754)] = 225997, - [SMALL_STATE(5755)] = 226093, - [SMALL_STATE(5756)] = 226145, - [SMALL_STATE(5757)] = 226209, - [SMALL_STATE(5758)] = 226281, - [SMALL_STATE(5759)] = 226333, - [SMALL_STATE(5760)] = 226429, - [SMALL_STATE(5761)] = 226481, - [SMALL_STATE(5762)] = 226561, - [SMALL_STATE(5763)] = 226643, - [SMALL_STATE(5764)] = 226697, - [SMALL_STATE(5765)] = 226749, - [SMALL_STATE(5766)] = 226803, - [SMALL_STATE(5767)] = 226857, - [SMALL_STATE(5768)] = 226953, - [SMALL_STATE(5769)] = 227045, - [SMALL_STATE(5770)] = 227101, - [SMALL_STATE(5771)] = 227193, - [SMALL_STATE(5772)] = 227245, - [SMALL_STATE(5773)] = 227297, - [SMALL_STATE(5774)] = 227391, - [SMALL_STATE(5775)] = 227487, - [SMALL_STATE(5776)] = 227539, - [SMALL_STATE(5777)] = 227591, - [SMALL_STATE(5778)] = 227643, - [SMALL_STATE(5779)] = 227695, - [SMALL_STATE(5780)] = 227747, - [SMALL_STATE(5781)] = 227843, - [SMALL_STATE(5782)] = 227939, - [SMALL_STATE(5783)] = 227991, - [SMALL_STATE(5784)] = 228043, - [SMALL_STATE(5785)] = 228095, - [SMALL_STATE(5786)] = 228147, - [SMALL_STATE(5787)] = 228199, - [SMALL_STATE(5788)] = 228295, - [SMALL_STATE(5789)] = 228347, - [SMALL_STATE(5790)] = 228399, - [SMALL_STATE(5791)] = 228495, - [SMALL_STATE(5792)] = 228547, - [SMALL_STATE(5793)] = 228599, - [SMALL_STATE(5794)] = 228655, - [SMALL_STATE(5795)] = 228707, - [SMALL_STATE(5796)] = 228759, - [SMALL_STATE(5797)] = 228815, - [SMALL_STATE(5798)] = 228871, - [SMALL_STATE(5799)] = 228923, - [SMALL_STATE(5800)] = 228979, - [SMALL_STATE(5801)] = 229033, - [SMALL_STATE(5802)] = 229129, - [SMALL_STATE(5803)] = 229181, - [SMALL_STATE(5804)] = 229233, - [SMALL_STATE(5805)] = 229285, - [SMALL_STATE(5806)] = 229337, - [SMALL_STATE(5807)] = 229389, - [SMALL_STATE(5808)] = 229485, - [SMALL_STATE(5809)] = 229537, - [SMALL_STATE(5810)] = 229633, - [SMALL_STATE(5811)] = 229721, - [SMALL_STATE(5812)] = 229817, - [SMALL_STATE(5813)] = 229869, - [SMALL_STATE(5814)] = 229957, - [SMALL_STATE(5815)] = 230045, - [SMALL_STATE(5816)] = 230141, - [SMALL_STATE(5817)] = 230229, - [SMALL_STATE(5818)] = 230281, - [SMALL_STATE(5819)] = 230369, - [SMALL_STATE(5820)] = 230457, - [SMALL_STATE(5821)] = 230509, - [SMALL_STATE(5822)] = 230597, - [SMALL_STATE(5823)] = 230685, - [SMALL_STATE(5824)] = 230737, - [SMALL_STATE(5825)] = 230789, - [SMALL_STATE(5826)] = 230841, - [SMALL_STATE(5827)] = 230925, - [SMALL_STATE(5828)] = 230977, - [SMALL_STATE(5829)] = 231029, - [SMALL_STATE(5830)] = 231083, - [SMALL_STATE(5831)] = 231135, - [SMALL_STATE(5832)] = 231187, - [SMALL_STATE(5833)] = 231239, - [SMALL_STATE(5834)] = 231293, - [SMALL_STATE(5835)] = 231387, - [SMALL_STATE(5836)] = 231439, - [SMALL_STATE(5837)] = 231493, - [SMALL_STATE(5838)] = 231589, - [SMALL_STATE(5839)] = 231641, - [SMALL_STATE(5840)] = 231693, - [SMALL_STATE(5841)] = 231745, - [SMALL_STATE(5842)] = 231797, - [SMALL_STATE(5843)] = 231849, - [SMALL_STATE(5844)] = 231901, - [SMALL_STATE(5845)] = 231953, - [SMALL_STATE(5846)] = 232005, - [SMALL_STATE(5847)] = 232057, - [SMALL_STATE(5848)] = 232109, - [SMALL_STATE(5849)] = 232161, - [SMALL_STATE(5850)] = 232213, - [SMALL_STATE(5851)] = 232307, - [SMALL_STATE(5852)] = 232359, - [SMALL_STATE(5853)] = 232411, - [SMALL_STATE(5854)] = 232463, - [SMALL_STATE(5855)] = 232515, - [SMALL_STATE(5856)] = 232567, - [SMALL_STATE(5857)] = 232619, - [SMALL_STATE(5858)] = 232671, - [SMALL_STATE(5859)] = 232727, - [SMALL_STATE(5860)] = 232823, - [SMALL_STATE(5861)] = 232875, - [SMALL_STATE(5862)] = 232959, - [SMALL_STATE(5863)] = 233011, - [SMALL_STATE(5864)] = 233063, - [SMALL_STATE(5865)] = 233157, - [SMALL_STATE(5866)] = 233245, - [SMALL_STATE(5867)] = 233297, - [SMALL_STATE(5868)] = 233349, - [SMALL_STATE(5869)] = 233401, - [SMALL_STATE(5870)] = 233453, - [SMALL_STATE(5871)] = 233505, - [SMALL_STATE(5872)] = 233557, - [SMALL_STATE(5873)] = 233609, - [SMALL_STATE(5874)] = 233661, - [SMALL_STATE(5875)] = 233713, - [SMALL_STATE(5876)] = 233765, - [SMALL_STATE(5877)] = 233817, - [SMALL_STATE(5878)] = 233869, - [SMALL_STATE(5879)] = 233921, - [SMALL_STATE(5880)] = 233973, - [SMALL_STATE(5881)] = 234025, - [SMALL_STATE(5882)] = 234077, - [SMALL_STATE(5883)] = 234133, - [SMALL_STATE(5884)] = 234189, - [SMALL_STATE(5885)] = 234241, - [SMALL_STATE(5886)] = 234293, - [SMALL_STATE(5887)] = 234345, - [SMALL_STATE(5888)] = 234397, - [SMALL_STATE(5889)] = 234453, - [SMALL_STATE(5890)] = 234505, - [SMALL_STATE(5891)] = 234557, - [SMALL_STATE(5892)] = 234629, - [SMALL_STATE(5893)] = 234681, - [SMALL_STATE(5894)] = 234733, - [SMALL_STATE(5895)] = 234827, - [SMALL_STATE(5896)] = 234879, - [SMALL_STATE(5897)] = 234951, - [SMALL_STATE(5898)] = 235003, - [SMALL_STATE(5899)] = 235055, - [SMALL_STATE(5900)] = 235151, - [SMALL_STATE(5901)] = 235223, - [SMALL_STATE(5902)] = 235311, - [SMALL_STATE(5903)] = 235363, - [SMALL_STATE(5904)] = 235415, - [SMALL_STATE(5905)] = 235467, - [SMALL_STATE(5906)] = 235519, - [SMALL_STATE(5907)] = 235571, - [SMALL_STATE(5908)] = 235623, - [SMALL_STATE(5909)] = 235677, - [SMALL_STATE(5910)] = 235729, - [SMALL_STATE(5911)] = 235817, - [SMALL_STATE(5912)] = 235869, - [SMALL_STATE(5913)] = 235921, - [SMALL_STATE(5914)] = 235973, - [SMALL_STATE(5915)] = 236025, - [SMALL_STATE(5916)] = 236077, - [SMALL_STATE(5917)] = 236171, - [SMALL_STATE(5918)] = 236223, - [SMALL_STATE(5919)] = 236317, - [SMALL_STATE(5920)] = 236369, - [SMALL_STATE(5921)] = 236421, - [SMALL_STATE(5922)] = 236473, - [SMALL_STATE(5923)] = 236525, - [SMALL_STATE(5924)] = 236577, - [SMALL_STATE(5925)] = 236629, - [SMALL_STATE(5926)] = 236681, - [SMALL_STATE(5927)] = 236777, - [SMALL_STATE(5928)] = 236829, - [SMALL_STATE(5929)] = 236925, - [SMALL_STATE(5930)] = 236979, - [SMALL_STATE(5931)] = 237033, - [SMALL_STATE(5932)] = 237087, - [SMALL_STATE(5933)] = 237139, - [SMALL_STATE(5934)] = 237191, - [SMALL_STATE(5935)] = 237243, - [SMALL_STATE(5936)] = 237295, - [SMALL_STATE(5937)] = 237347, - [SMALL_STATE(5938)] = 237399, - [SMALL_STATE(5939)] = 237451, - [SMALL_STATE(5940)] = 237535, - [SMALL_STATE(5941)] = 237587, - [SMALL_STATE(5942)] = 237639, - [SMALL_STATE(5943)] = 237691, - [SMALL_STATE(5944)] = 237743, - [SMALL_STATE(5945)] = 237795, - [SMALL_STATE(5946)] = 237847, - [SMALL_STATE(5947)] = 237899, - [SMALL_STATE(5948)] = 237951, - [SMALL_STATE(5949)] = 238039, - [SMALL_STATE(5950)] = 238091, - [SMALL_STATE(5951)] = 238179, - [SMALL_STATE(5952)] = 238267, - [SMALL_STATE(5953)] = 238319, - [SMALL_STATE(5954)] = 238407, - [SMALL_STATE(5955)] = 238495, - [SMALL_STATE(5956)] = 238557, - [SMALL_STATE(5957)] = 238615, - [SMALL_STATE(5958)] = 238673, - [SMALL_STATE(5959)] = 238725, - [SMALL_STATE(5960)] = 238777, - [SMALL_STATE(5961)] = 238833, - [SMALL_STATE(5962)] = 238899, - [SMALL_STATE(5963)] = 238983, - [SMALL_STATE(5964)] = 239035, - [SMALL_STATE(5965)] = 239119, - [SMALL_STATE(5966)] = 239171, - [SMALL_STATE(5967)] = 239223, - [SMALL_STATE(5968)] = 239275, - [SMALL_STATE(5969)] = 239327, - [SMALL_STATE(5970)] = 239379, - [SMALL_STATE(5971)] = 239431, - [SMALL_STATE(5972)] = 239483, - [SMALL_STATE(5973)] = 239559, - [SMALL_STATE(5974)] = 239627, - [SMALL_STATE(5975)] = 239691, - [SMALL_STATE(5976)] = 239763, - [SMALL_STATE(5977)] = 239843, - [SMALL_STATE(5978)] = 239925, - [SMALL_STATE(5979)] = 239977, - [SMALL_STATE(5980)] = 240071, - [SMALL_STATE(5981)] = 240155, - [SMALL_STATE(5982)] = 240207, - [SMALL_STATE(5983)] = 240259, - [SMALL_STATE(5984)] = 240311, - [SMALL_STATE(5985)] = 240363, - [SMALL_STATE(5986)] = 240457, - [SMALL_STATE(5987)] = 240509, - [SMALL_STATE(5988)] = 240561, - [SMALL_STATE(5989)] = 240613, - [SMALL_STATE(5990)] = 240665, - [SMALL_STATE(5991)] = 240717, - [SMALL_STATE(5992)] = 240805, - [SMALL_STATE(5993)] = 240893, - [SMALL_STATE(5994)] = 240945, - [SMALL_STATE(5995)] = 240997, - [SMALL_STATE(5996)] = 241049, - [SMALL_STATE(5997)] = 241101, - [SMALL_STATE(5998)] = 241153, - [SMALL_STATE(5999)] = 241205, - [SMALL_STATE(6000)] = 241257, - [SMALL_STATE(6001)] = 241309, - [SMALL_STATE(6002)] = 241361, - [SMALL_STATE(6003)] = 241413, - [SMALL_STATE(6004)] = 241465, - [SMALL_STATE(6005)] = 241553, - [SMALL_STATE(6006)] = 241641, - [SMALL_STATE(6007)] = 241693, - [SMALL_STATE(6008)] = 241789, - [SMALL_STATE(6009)] = 241841, - [SMALL_STATE(6010)] = 241893, - [SMALL_STATE(6011)] = 241945, - [SMALL_STATE(6012)] = 241997, - [SMALL_STATE(6013)] = 242049, - [SMALL_STATE(6014)] = 242101, - [SMALL_STATE(6015)] = 242153, - [SMALL_STATE(6016)] = 242205, - [SMALL_STATE(6017)] = 242299, - [SMALL_STATE(6018)] = 242351, - [SMALL_STATE(6019)] = 242403, - [SMALL_STATE(6020)] = 242455, - [SMALL_STATE(6021)] = 242543, - [SMALL_STATE(6022)] = 242595, - [SMALL_STATE(6023)] = 242647, - [SMALL_STATE(6024)] = 242699, - [SMALL_STATE(6025)] = 242795, - [SMALL_STATE(6026)] = 242847, - [SMALL_STATE(6027)] = 242899, - [SMALL_STATE(6028)] = 242951, - [SMALL_STATE(6029)] = 243003, - [SMALL_STATE(6030)] = 243055, - [SMALL_STATE(6031)] = 243107, - [SMALL_STATE(6032)] = 243159, - [SMALL_STATE(6033)] = 243211, - [SMALL_STATE(6034)] = 243263, - [SMALL_STATE(6035)] = 243315, - [SMALL_STATE(6036)] = 243367, - [SMALL_STATE(6037)] = 243451, - [SMALL_STATE(6038)] = 243503, - [SMALL_STATE(6039)] = 243555, - [SMALL_STATE(6040)] = 243607, - [SMALL_STATE(6041)] = 243659, - [SMALL_STATE(6042)] = 243711, - [SMALL_STATE(6043)] = 243763, - [SMALL_STATE(6044)] = 243815, - [SMALL_STATE(6045)] = 243867, - [SMALL_STATE(6046)] = 243919, - [SMALL_STATE(6047)] = 243971, - [SMALL_STATE(6048)] = 244025, - [SMALL_STATE(6049)] = 244077, - [SMALL_STATE(6050)] = 244129, - [SMALL_STATE(6051)] = 244217, - [SMALL_STATE(6052)] = 244269, - [SMALL_STATE(6053)] = 244321, - [SMALL_STATE(6054)] = 244373, - [SMALL_STATE(6055)] = 244425, - [SMALL_STATE(6056)] = 244477, - [SMALL_STATE(6057)] = 244529, - [SMALL_STATE(6058)] = 244581, - [SMALL_STATE(6059)] = 244633, - [SMALL_STATE(6060)] = 244685, - [SMALL_STATE(6061)] = 244737, - [SMALL_STATE(6062)] = 244789, - [SMALL_STATE(6063)] = 244841, - [SMALL_STATE(6064)] = 244893, - [SMALL_STATE(6065)] = 244945, - [SMALL_STATE(6066)] = 244997, - [SMALL_STATE(6067)] = 245049, - [SMALL_STATE(6068)] = 245101, - [SMALL_STATE(6069)] = 245153, - [SMALL_STATE(6070)] = 245247, - [SMALL_STATE(6071)] = 245331, - [SMALL_STATE(6072)] = 245425, - [SMALL_STATE(6073)] = 245519, - [SMALL_STATE(6074)] = 245611, - [SMALL_STATE(6075)] = 245707, - [SMALL_STATE(6076)] = 245759, - [SMALL_STATE(6077)] = 245811, - [SMALL_STATE(6078)] = 245863, - [SMALL_STATE(6079)] = 245915, - [SMALL_STATE(6080)] = 246003, - [SMALL_STATE(6081)] = 246055, - [SMALL_STATE(6082)] = 246143, - [SMALL_STATE(6083)] = 246195, - [SMALL_STATE(6084)] = 246251, - [SMALL_STATE(6085)] = 246303, - [SMALL_STATE(6086)] = 246355, - [SMALL_STATE(6087)] = 246407, - [SMALL_STATE(6088)] = 246459, - [SMALL_STATE(6089)] = 246511, - [SMALL_STATE(6090)] = 246563, - [SMALL_STATE(6091)] = 246615, - [SMALL_STATE(6092)] = 246667, - [SMALL_STATE(6093)] = 246719, - [SMALL_STATE(6094)] = 246771, - [SMALL_STATE(6095)] = 246823, - [SMALL_STATE(6096)] = 246875, - [SMALL_STATE(6097)] = 246927, - [SMALL_STATE(6098)] = 246979, - [SMALL_STATE(6099)] = 247073, - [SMALL_STATE(6100)] = 247161, - [SMALL_STATE(6101)] = 247213, - [SMALL_STATE(6102)] = 247265, - [SMALL_STATE(6103)] = 247317, - [SMALL_STATE(6104)] = 247413, - [SMALL_STATE(6105)] = 247465, - [SMALL_STATE(6106)] = 247517, - [SMALL_STATE(6107)] = 247573, - [SMALL_STATE(6108)] = 247625, - [SMALL_STATE(6109)] = 247677, - [SMALL_STATE(6110)] = 247729, - [SMALL_STATE(6111)] = 247781, - [SMALL_STATE(6112)] = 247835, - [SMALL_STATE(6113)] = 247887, - [SMALL_STATE(6114)] = 247943, - [SMALL_STATE(6115)] = 247995, - [SMALL_STATE(6116)] = 248089, - [SMALL_STATE(6117)] = 248141, - [SMALL_STATE(6118)] = 248193, - [SMALL_STATE(6119)] = 248289, - [SMALL_STATE(6120)] = 248341, - [SMALL_STATE(6121)] = 248393, - [SMALL_STATE(6122)] = 248445, - [SMALL_STATE(6123)] = 248497, - [SMALL_STATE(6124)] = 248549, - [SMALL_STATE(6125)] = 248601, - [SMALL_STATE(6126)] = 248653, - [SMALL_STATE(6127)] = 248705, - [SMALL_STATE(6128)] = 248757, - [SMALL_STATE(6129)] = 248809, - [SMALL_STATE(6130)] = 248861, - [SMALL_STATE(6131)] = 248949, - [SMALL_STATE(6132)] = 249043, - [SMALL_STATE(6133)] = 249095, - [SMALL_STATE(6134)] = 249147, - [SMALL_STATE(6135)] = 249199, - [SMALL_STATE(6136)] = 249251, - [SMALL_STATE(6137)] = 249343, - [SMALL_STATE(6138)] = 249395, - [SMALL_STATE(6139)] = 249447, - [SMALL_STATE(6140)] = 249531, - [SMALL_STATE(6141)] = 249619, - [SMALL_STATE(6142)] = 249671, - [SMALL_STATE(6143)] = 249723, - [SMALL_STATE(6144)] = 249775, - [SMALL_STATE(6145)] = 249827, - [SMALL_STATE(6146)] = 249879, - [SMALL_STATE(6147)] = 249931, - [SMALL_STATE(6148)] = 249985, - [SMALL_STATE(6149)] = 250037, - [SMALL_STATE(6150)] = 250089, - [SMALL_STATE(6151)] = 250145, - [SMALL_STATE(6152)] = 250197, - [SMALL_STATE(6153)] = 250249, - [SMALL_STATE(6154)] = 250301, - [SMALL_STATE(6155)] = 250353, - [SMALL_STATE(6156)] = 250405, - [SMALL_STATE(6157)] = 250457, - [SMALL_STATE(6158)] = 250509, - [SMALL_STATE(6159)] = 250561, - [SMALL_STATE(6160)] = 250613, - [SMALL_STATE(6161)] = 250665, - [SMALL_STATE(6162)] = 250717, - [SMALL_STATE(6163)] = 250769, - [SMALL_STATE(6164)] = 250821, - [SMALL_STATE(6165)] = 250873, - [SMALL_STATE(6166)] = 250925, - [SMALL_STATE(6167)] = 250977, - [SMALL_STATE(6168)] = 251029, - [SMALL_STATE(6169)] = 251081, - [SMALL_STATE(6170)] = 251137, - [SMALL_STATE(6171)] = 251189, - [SMALL_STATE(6172)] = 251241, - [SMALL_STATE(6173)] = 251293, - [SMALL_STATE(6174)] = 251345, - [SMALL_STATE(6175)] = 251397, - [SMALL_STATE(6176)] = 251449, - [SMALL_STATE(6177)] = 251545, - [SMALL_STATE(6178)] = 251597, - [SMALL_STATE(6179)] = 251651, - [SMALL_STATE(6180)] = 251739, - [SMALL_STATE(6181)] = 251791, - [SMALL_STATE(6182)] = 251843, - [SMALL_STATE(6183)] = 251931, - [SMALL_STATE(6184)] = 251985, - [SMALL_STATE(6185)] = 252073, - [SMALL_STATE(6186)] = 252127, - [SMALL_STATE(6187)] = 252179, - [SMALL_STATE(6188)] = 252273, - [SMALL_STATE(6189)] = 252325, - [SMALL_STATE(6190)] = 252413, - [SMALL_STATE(6191)] = 252475, - [SMALL_STATE(6192)] = 252533, - [SMALL_STATE(6193)] = 252591, - [SMALL_STATE(6194)] = 252643, - [SMALL_STATE(6195)] = 252709, - [SMALL_STATE(6196)] = 252793, - [SMALL_STATE(6197)] = 252869, - [SMALL_STATE(6198)] = 252937, - [SMALL_STATE(6199)] = 253001, - [SMALL_STATE(6200)] = 253073, - [SMALL_STATE(6201)] = 253125, - [SMALL_STATE(6202)] = 253177, - [SMALL_STATE(6203)] = 253229, - [SMALL_STATE(6204)] = 253281, - [SMALL_STATE(6205)] = 253361, - [SMALL_STATE(6206)] = 253443, - [SMALL_STATE(6207)] = 253531, - [SMALL_STATE(6208)] = 253593, - [SMALL_STATE(6209)] = 253645, - [SMALL_STATE(6210)] = 253697, - [SMALL_STATE(6211)] = 253749, - [SMALL_STATE(6212)] = 253805, - [SMALL_STATE(6213)] = 253863, - [SMALL_STATE(6214)] = 253921, - [SMALL_STATE(6215)] = 253987, - [SMALL_STATE(6216)] = 254039, - [SMALL_STATE(6217)] = 254091, - [SMALL_STATE(6218)] = 254143, - [SMALL_STATE(6219)] = 254195, - [SMALL_STATE(6220)] = 254247, - [SMALL_STATE(6221)] = 254299, - [SMALL_STATE(6222)] = 254351, - [SMALL_STATE(6223)] = 254403, - [SMALL_STATE(6224)] = 254459, - [SMALL_STATE(6225)] = 254543, - [SMALL_STATE(6226)] = 254599, - [SMALL_STATE(6227)] = 254651, - [SMALL_STATE(6228)] = 254727, - [SMALL_STATE(6229)] = 254779, - [SMALL_STATE(6230)] = 254831, - [SMALL_STATE(6231)] = 254915, - [SMALL_STATE(6232)] = 255011, - [SMALL_STATE(6233)] = 255062, - [SMALL_STATE(6234)] = 255153, - [SMALL_STATE(6235)] = 255206, - [SMALL_STATE(6236)] = 255257, - [SMALL_STATE(6237)] = 255308, - [SMALL_STATE(6238)] = 255399, - [SMALL_STATE(6239)] = 255490, - [SMALL_STATE(6240)] = 255579, - [SMALL_STATE(6241)] = 255630, - [SMALL_STATE(6242)] = 255681, - [SMALL_STATE(6243)] = 255732, - [SMALL_STATE(6244)] = 255783, - [SMALL_STATE(6245)] = 255834, - [SMALL_STATE(6246)] = 255923, - [SMALL_STATE(6247)] = 255974, - [SMALL_STATE(6248)] = 256025, - [SMALL_STATE(6249)] = 256076, - [SMALL_STATE(6250)] = 256127, - [SMALL_STATE(6251)] = 256178, - [SMALL_STATE(6252)] = 256229, - [SMALL_STATE(6253)] = 256280, - [SMALL_STATE(6254)] = 256331, - [SMALL_STATE(6255)] = 256382, - [SMALL_STATE(6256)] = 256471, - [SMALL_STATE(6257)] = 256524, - [SMALL_STATE(6258)] = 256575, - [SMALL_STATE(6259)] = 256626, - [SMALL_STATE(6260)] = 256677, - [SMALL_STATE(6261)] = 256728, - [SMALL_STATE(6262)] = 256779, - [SMALL_STATE(6263)] = 256830, - [SMALL_STATE(6264)] = 256883, - [SMALL_STATE(6265)] = 256934, - [SMALL_STATE(6266)] = 256985, - [SMALL_STATE(6267)] = 257036, - [SMALL_STATE(6268)] = 257087, - [SMALL_STATE(6269)] = 257138, - [SMALL_STATE(6270)] = 257227, - [SMALL_STATE(6271)] = 257316, - [SMALL_STATE(6272)] = 257367, - [SMALL_STATE(6273)] = 257418, - [SMALL_STATE(6274)] = 257469, - [SMALL_STATE(6275)] = 257520, - [SMALL_STATE(6276)] = 257571, - [SMALL_STATE(6277)] = 257622, - [SMALL_STATE(6278)] = 257673, - [SMALL_STATE(6279)] = 257724, - [SMALL_STATE(6280)] = 257775, - [SMALL_STATE(6281)] = 257826, - [SMALL_STATE(6282)] = 257915, - [SMALL_STATE(6283)] = 258004, - [SMALL_STATE(6284)] = 258055, - [SMALL_STATE(6285)] = 258106, - [SMALL_STATE(6286)] = 258157, - [SMALL_STATE(6287)] = 258248, - [SMALL_STATE(6288)] = 258299, - [SMALL_STATE(6289)] = 258350, - [SMALL_STATE(6290)] = 258441, - [SMALL_STATE(6291)] = 258532, - [SMALL_STATE(6292)] = 258619, - [SMALL_STATE(6293)] = 258706, - [SMALL_STATE(6294)] = 258757, - [SMALL_STATE(6295)] = 258808, - [SMALL_STATE(6296)] = 258859, - [SMALL_STATE(6297)] = 258910, - [SMALL_STATE(6298)] = 258961, - [SMALL_STATE(6299)] = 259012, - [SMALL_STATE(6300)] = 259101, - [SMALL_STATE(6301)] = 259152, - [SMALL_STATE(6302)] = 259203, - [SMALL_STATE(6303)] = 259254, - [SMALL_STATE(6304)] = 259305, - [SMALL_STATE(6305)] = 259396, - [SMALL_STATE(6306)] = 259447, - [SMALL_STATE(6307)] = 259498, - [SMALL_STATE(6308)] = 259549, - [SMALL_STATE(6309)] = 259600, - [SMALL_STATE(6310)] = 259651, - [SMALL_STATE(6311)] = 259738, - [SMALL_STATE(6312)] = 259825, - [SMALL_STATE(6313)] = 259878, - [SMALL_STATE(6314)] = 259929, - [SMALL_STATE(6315)] = 259982, - [SMALL_STATE(6316)] = 260033, - [SMALL_STATE(6317)] = 260084, - [SMALL_STATE(6318)] = 260135, - [SMALL_STATE(6319)] = 260186, - [SMALL_STATE(6320)] = 260237, - [SMALL_STATE(6321)] = 260288, - [SMALL_STATE(6322)] = 260339, - [SMALL_STATE(6323)] = 260390, - [SMALL_STATE(6324)] = 260441, - [SMALL_STATE(6325)] = 260492, - [SMALL_STATE(6326)] = 260543, - [SMALL_STATE(6327)] = 260634, - [SMALL_STATE(6328)] = 260685, - [SMALL_STATE(6329)] = 260736, - [SMALL_STATE(6330)] = 260787, - [SMALL_STATE(6331)] = 260838, - [SMALL_STATE(6332)] = 260891, - [SMALL_STATE(6333)] = 260982, - [SMALL_STATE(6334)] = 261037, - [SMALL_STATE(6335)] = 261120, - [SMALL_STATE(6336)] = 261211, - [SMALL_STATE(6337)] = 261302, - [SMALL_STATE(6338)] = 261353, - [SMALL_STATE(6339)] = 261408, - [SMALL_STATE(6340)] = 261463, - [SMALL_STATE(6341)] = 261514, - [SMALL_STATE(6342)] = 261565, - [SMALL_STATE(6343)] = 261616, - [SMALL_STATE(6344)] = 261667, - [SMALL_STATE(6345)] = 261718, - [SMALL_STATE(6346)] = 261773, - [SMALL_STATE(6347)] = 261828, - [SMALL_STATE(6348)] = 261883, - [SMALL_STATE(6349)] = 261938, - [SMALL_STATE(6350)] = 261991, - [SMALL_STATE(6351)] = 262042, - [SMALL_STATE(6352)] = 262093, - [SMALL_STATE(6353)] = 262144, - [SMALL_STATE(6354)] = 262197, - [SMALL_STATE(6355)] = 262288, - [SMALL_STATE(6356)] = 262339, - [SMALL_STATE(6357)] = 262430, - [SMALL_STATE(6358)] = 262521, - [SMALL_STATE(6359)] = 262612, - [SMALL_STATE(6360)] = 262703, - [SMALL_STATE(6361)] = 262754, - [SMALL_STATE(6362)] = 262837, - [SMALL_STATE(6363)] = 262928, - [SMALL_STATE(6364)] = 263019, - [SMALL_STATE(6365)] = 263072, - [SMALL_STATE(6366)] = 263123, - [SMALL_STATE(6367)] = 263176, - [SMALL_STATE(6368)] = 263267, - [SMALL_STATE(6369)] = 263358, - [SMALL_STATE(6370)] = 263449, - [SMALL_STATE(6371)] = 263504, - [SMALL_STATE(6372)] = 263595, - [SMALL_STATE(6373)] = 263682, - [SMALL_STATE(6374)] = 263773, - [SMALL_STATE(6375)] = 263864, - [SMALL_STATE(6376)] = 263951, - [SMALL_STATE(6377)] = 264038, - [SMALL_STATE(6378)] = 264129, - [SMALL_STATE(6379)] = 264220, - [SMALL_STATE(6380)] = 264281, - [SMALL_STATE(6381)] = 264338, - [SMALL_STATE(6382)] = 264395, - [SMALL_STATE(6383)] = 264460, - [SMALL_STATE(6384)] = 264543, - [SMALL_STATE(6385)] = 264618, - [SMALL_STATE(6386)] = 264685, - [SMALL_STATE(6387)] = 264776, - [SMALL_STATE(6388)] = 264867, - [SMALL_STATE(6389)] = 264930, - [SMALL_STATE(6390)] = 265001, - [SMALL_STATE(6391)] = 265056, - [SMALL_STATE(6392)] = 265135, - [SMALL_STATE(6393)] = 265216, - [SMALL_STATE(6394)] = 265307, - [SMALL_STATE(6395)] = 265362, - [SMALL_STATE(6396)] = 265453, - [SMALL_STATE(6397)] = 265544, - [SMALL_STATE(6398)] = 265627, - [SMALL_STATE(6399)] = 265718, - [SMALL_STATE(6400)] = 265809, - [SMALL_STATE(6401)] = 265900, - [SMALL_STATE(6402)] = 265991, - [SMALL_STATE(6403)] = 266046, - [SMALL_STATE(6404)] = 266137, - [SMALL_STATE(6405)] = 266228, - [SMALL_STATE(6406)] = 266281, - [SMALL_STATE(6407)] = 266370, - [SMALL_STATE(6408)] = 266461, - [SMALL_STATE(6409)] = 266552, - [SMALL_STATE(6410)] = 266643, - [SMALL_STATE(6411)] = 266734, - [SMALL_STATE(6412)] = 266823, - [SMALL_STATE(6413)] = 266912, - [SMALL_STATE(6414)] = 267003, - [SMALL_STATE(6415)] = 267094, - [SMALL_STATE(6416)] = 267183, - [SMALL_STATE(6417)] = 267244, - [SMALL_STATE(6418)] = 267301, - [SMALL_STATE(6419)] = 267358, - [SMALL_STATE(6420)] = 267423, - [SMALL_STATE(6421)] = 267512, - [SMALL_STATE(6422)] = 267595, - [SMALL_STATE(6423)] = 267670, - [SMALL_STATE(6424)] = 267737, - [SMALL_STATE(6425)] = 267800, - [SMALL_STATE(6426)] = 267871, - [SMALL_STATE(6427)] = 267962, - [SMALL_STATE(6428)] = 268045, - [SMALL_STATE(6429)] = 268124, - [SMALL_STATE(6430)] = 268205, - [SMALL_STATE(6431)] = 268296, - [SMALL_STATE(6432)] = 268387, - [SMALL_STATE(6433)] = 268478, - [SMALL_STATE(6434)] = 268569, - [SMALL_STATE(6435)] = 268660, - [SMALL_STATE(6436)] = 268751, - [SMALL_STATE(6437)] = 268804, - [SMALL_STATE(6438)] = 268895, - [SMALL_STATE(6439)] = 268986, - [SMALL_STATE(6440)] = 269077, - [SMALL_STATE(6441)] = 269168, - [SMALL_STATE(6442)] = 269259, - [SMALL_STATE(6443)] = 269348, - [SMALL_STATE(6444)] = 269439, - [SMALL_STATE(6445)] = 269490, - [SMALL_STATE(6446)] = 269541, - [SMALL_STATE(6447)] = 269632, - [SMALL_STATE(6448)] = 269723, - [SMALL_STATE(6449)] = 269776, - [SMALL_STATE(6450)] = 269867, - [SMALL_STATE(6451)] = 269958, - [SMALL_STATE(6452)] = 270047, - [SMALL_STATE(6453)] = 270136, - [SMALL_STATE(6454)] = 270225, - [SMALL_STATE(6455)] = 270314, - [SMALL_STATE(6456)] = 270397, - [SMALL_STATE(6457)] = 270488, - [SMALL_STATE(6458)] = 270577, - [SMALL_STATE(6459)] = 270628, - [SMALL_STATE(6460)] = 270717, - [SMALL_STATE(6461)] = 270770, - [SMALL_STATE(6462)] = 270823, - [SMALL_STATE(6463)] = 270874, - [SMALL_STATE(6464)] = 270927, - [SMALL_STATE(6465)] = 270978, - [SMALL_STATE(6466)] = 271029, - [SMALL_STATE(6467)] = 271080, - [SMALL_STATE(6468)] = 271131, - [SMALL_STATE(6469)] = 271222, - [SMALL_STATE(6470)] = 271273, - [SMALL_STATE(6471)] = 271324, - [SMALL_STATE(6472)] = 271411, - [SMALL_STATE(6473)] = 271462, - [SMALL_STATE(6474)] = 271513, - [SMALL_STATE(6475)] = 271564, - [SMALL_STATE(6476)] = 271615, - [SMALL_STATE(6477)] = 271666, - [SMALL_STATE(6478)] = 271717, - [SMALL_STATE(6479)] = 271768, - [SMALL_STATE(6480)] = 271819, - [SMALL_STATE(6481)] = 271870, - [SMALL_STATE(6482)] = 271921, - [SMALL_STATE(6483)] = 271972, - [SMALL_STATE(6484)] = 272023, - [SMALL_STATE(6485)] = 272074, - [SMALL_STATE(6486)] = 272125, - [SMALL_STATE(6487)] = 272176, - [SMALL_STATE(6488)] = 272227, - [SMALL_STATE(6489)] = 272278, - [SMALL_STATE(6490)] = 272329, - [SMALL_STATE(6491)] = 272380, - [SMALL_STATE(6492)] = 272431, - [SMALL_STATE(6493)] = 272482, - [SMALL_STATE(6494)] = 272533, - [SMALL_STATE(6495)] = 272584, - [SMALL_STATE(6496)] = 272635, - [SMALL_STATE(6497)] = 272686, - [SMALL_STATE(6498)] = 272737, - [SMALL_STATE(6499)] = 272788, - [SMALL_STATE(6500)] = 272839, - [SMALL_STATE(6501)] = 272890, - [SMALL_STATE(6502)] = 272941, - [SMALL_STATE(6503)] = 272992, - [SMALL_STATE(6504)] = 273043, - [SMALL_STATE(6505)] = 273094, - [SMALL_STATE(6506)] = 273145, - [SMALL_STATE(6507)] = 273196, - [SMALL_STATE(6508)] = 273247, - [SMALL_STATE(6509)] = 273298, - [SMALL_STATE(6510)] = 273349, - [SMALL_STATE(6511)] = 273400, - [SMALL_STATE(6512)] = 273451, - [SMALL_STATE(6513)] = 273502, - [SMALL_STATE(6514)] = 273553, - [SMALL_STATE(6515)] = 273604, - [SMALL_STATE(6516)] = 273655, - [SMALL_STATE(6517)] = 273706, - [SMALL_STATE(6518)] = 273757, - [SMALL_STATE(6519)] = 273808, - [SMALL_STATE(6520)] = 273859, - [SMALL_STATE(6521)] = 273910, - [SMALL_STATE(6522)] = 274001, - [SMALL_STATE(6523)] = 274092, - [SMALL_STATE(6524)] = 274183, - [SMALL_STATE(6525)] = 274274, - [SMALL_STATE(6526)] = 274365, - [SMALL_STATE(6527)] = 274456, - [SMALL_STATE(6528)] = 274547, - [SMALL_STATE(6529)] = 274638, - [SMALL_STATE(6530)] = 274729, - [SMALL_STATE(6531)] = 274820, - [SMALL_STATE(6532)] = 274911, - [SMALL_STATE(6533)] = 275002, - [SMALL_STATE(6534)] = 275091, - [SMALL_STATE(6535)] = 275180, - [SMALL_STATE(6536)] = 275269, - [SMALL_STATE(6537)] = 275358, - [SMALL_STATE(6538)] = 275447, - [SMALL_STATE(6539)] = 275536, - [SMALL_STATE(6540)] = 275625, - [SMALL_STATE(6541)] = 275714, - [SMALL_STATE(6542)] = 275803, - [SMALL_STATE(6543)] = 275892, - [SMALL_STATE(6544)] = 275981, - [SMALL_STATE(6545)] = 276070, - [SMALL_STATE(6546)] = 276159, - [SMALL_STATE(6547)] = 276248, - [SMALL_STATE(6548)] = 276337, - [SMALL_STATE(6549)] = 276426, - [SMALL_STATE(6550)] = 276515, - [SMALL_STATE(6551)] = 276604, - [SMALL_STATE(6552)] = 276693, - [SMALL_STATE(6553)] = 276782, - [SMALL_STATE(6554)] = 276871, - [SMALL_STATE(6555)] = 276960, - [SMALL_STATE(6556)] = 277049, - [SMALL_STATE(6557)] = 277138, - [SMALL_STATE(6558)] = 277227, - [SMALL_STATE(6559)] = 277316, - [SMALL_STATE(6560)] = 277405, - [SMALL_STATE(6561)] = 277494, - [SMALL_STATE(6562)] = 277583, - [SMALL_STATE(6563)] = 277672, - [SMALL_STATE(6564)] = 277761, - [SMALL_STATE(6565)] = 277850, - [SMALL_STATE(6566)] = 277937, - [SMALL_STATE(6567)] = 278026, - [SMALL_STATE(6568)] = 278115, - [SMALL_STATE(6569)] = 278204, - [SMALL_STATE(6570)] = 278293, - [SMALL_STATE(6571)] = 278382, - [SMALL_STATE(6572)] = 278471, - [SMALL_STATE(6573)] = 278560, - [SMALL_STATE(6574)] = 278649, - [SMALL_STATE(6575)] = 278738, - [SMALL_STATE(6576)] = 278827, - [SMALL_STATE(6577)] = 278916, - [SMALL_STATE(6578)] = 279005, - [SMALL_STATE(6579)] = 279092, - [SMALL_STATE(6580)] = 279181, - [SMALL_STATE(6581)] = 279270, - [SMALL_STATE(6582)] = 279359, - [SMALL_STATE(6583)] = 279448, - [SMALL_STATE(6584)] = 279539, - [SMALL_STATE(6585)] = 279630, - [SMALL_STATE(6586)] = 279685, - [SMALL_STATE(6587)] = 279776, - [SMALL_STATE(6588)] = 279831, - [SMALL_STATE(6589)] = 279886, - [SMALL_STATE(6590)] = 279941, - [SMALL_STATE(6591)] = 279992, - [SMALL_STATE(6592)] = 280045, - [SMALL_STATE(6593)] = 280098, - [SMALL_STATE(6594)] = 280151, - [SMALL_STATE(6595)] = 280202, - [SMALL_STATE(6596)] = 280255, - [SMALL_STATE(6597)] = 280310, - [SMALL_STATE(6598)] = 280365, - [SMALL_STATE(6599)] = 280420, - [SMALL_STATE(6600)] = 280475, - [SMALL_STATE(6601)] = 280566, - [SMALL_STATE(6602)] = 280657, - [SMALL_STATE(6603)] = 280708, - [SMALL_STATE(6604)] = 280759, - [SMALL_STATE(6605)] = 280810, - [SMALL_STATE(6606)] = 280865, - [SMALL_STATE(6607)] = 280948, - [SMALL_STATE(6608)] = 280999, - [SMALL_STATE(6609)] = 281050, - [SMALL_STATE(6610)] = 281101, - [SMALL_STATE(6611)] = 281152, - [SMALL_STATE(6612)] = 281203, - [SMALL_STATE(6613)] = 281254, - [SMALL_STATE(6614)] = 281305, - [SMALL_STATE(6615)] = 281360, - [SMALL_STATE(6616)] = 281415, - [SMALL_STATE(6617)] = 281468, - [SMALL_STATE(6618)] = 281521, - [SMALL_STATE(6619)] = 281612, - [SMALL_STATE(6620)] = 281667, - [SMALL_STATE(6621)] = 281722, - [SMALL_STATE(6622)] = 281777, - [SMALL_STATE(6623)] = 281832, - [SMALL_STATE(6624)] = 281883, - [SMALL_STATE(6625)] = 281936, - [SMALL_STATE(6626)] = 281987, - [SMALL_STATE(6627)] = 282038, - [SMALL_STATE(6628)] = 282089, - [SMALL_STATE(6629)] = 282142, - [SMALL_STATE(6630)] = 282193, - [SMALL_STATE(6631)] = 282244, - [SMALL_STATE(6632)] = 282295, - [SMALL_STATE(6633)] = 282345, - [SMALL_STATE(6634)] = 282395, - [SMALL_STATE(6635)] = 282445, - [SMALL_STATE(6636)] = 282503, - [SMALL_STATE(6637)] = 282553, - [SMALL_STATE(6638)] = 282603, - [SMALL_STATE(6639)] = 282689, - [SMALL_STATE(6640)] = 282775, - [SMALL_STATE(6641)] = 282825, - [SMALL_STATE(6642)] = 282875, - [SMALL_STATE(6643)] = 282937, - [SMALL_STATE(6644)] = 282987, - [SMALL_STATE(6645)] = 283037, - [SMALL_STATE(6646)] = 283107, - [SMALL_STATE(6647)] = 283157, - [SMALL_STATE(6648)] = 283207, - [SMALL_STATE(6649)] = 283259, - [SMALL_STATE(6650)] = 283309, - [SMALL_STATE(6651)] = 283359, - [SMALL_STATE(6652)] = 283409, - [SMALL_STATE(6653)] = 283495, - [SMALL_STATE(6654)] = 283545, - [SMALL_STATE(6655)] = 283599, - [SMALL_STATE(6656)] = 283681, - [SMALL_STATE(6657)] = 283739, - [SMALL_STATE(6658)] = 283789, - [SMALL_STATE(6659)] = 283839, - [SMALL_STATE(6660)] = 283889, - [SMALL_STATE(6661)] = 283939, - [SMALL_STATE(6662)] = 283989, - [SMALL_STATE(6663)] = 284039, - [SMALL_STATE(6664)] = 284089, - [SMALL_STATE(6665)] = 284141, - [SMALL_STATE(6666)] = 284199, - [SMALL_STATE(6667)] = 284249, - [SMALL_STATE(6668)] = 284299, - [SMALL_STATE(6669)] = 284349, - [SMALL_STATE(6670)] = 284399, - [SMALL_STATE(6671)] = 284449, - [SMALL_STATE(6672)] = 284535, - [SMALL_STATE(6673)] = 284585, - [SMALL_STATE(6674)] = 284635, - [SMALL_STATE(6675)] = 284685, - [SMALL_STATE(6676)] = 284735, - [SMALL_STATE(6677)] = 284821, - [SMALL_STATE(6678)] = 284907, - [SMALL_STATE(6679)] = 284965, - [SMALL_STATE(6680)] = 285023, - [SMALL_STATE(6681)] = 285109, - [SMALL_STATE(6682)] = 285195, - [SMALL_STATE(6683)] = 285281, - [SMALL_STATE(6684)] = 285331, - [SMALL_STATE(6685)] = 285381, - [SMALL_STATE(6686)] = 285467, - [SMALL_STATE(6687)] = 285553, - [SMALL_STATE(6688)] = 285611, - [SMALL_STATE(6689)] = 285661, - [SMALL_STATE(6690)] = 285711, - [SMALL_STATE(6691)] = 285761, - [SMALL_STATE(6692)] = 285811, - [SMALL_STATE(6693)] = 285861, - [SMALL_STATE(6694)] = 285911, - [SMALL_STATE(6695)] = 285961, - [SMALL_STATE(6696)] = 286011, - [SMALL_STATE(6697)] = 286061, - [SMALL_STATE(6698)] = 286111, - [SMALL_STATE(6699)] = 286161, - [SMALL_STATE(6700)] = 286211, - [SMALL_STATE(6701)] = 286261, - [SMALL_STATE(6702)] = 286311, - [SMALL_STATE(6703)] = 286361, - [SMALL_STATE(6704)] = 286411, - [SMALL_STATE(6705)] = 286461, - [SMALL_STATE(6706)] = 286511, - [SMALL_STATE(6707)] = 286561, - [SMALL_STATE(6708)] = 286611, - [SMALL_STATE(6709)] = 286661, - [SMALL_STATE(6710)] = 286711, - [SMALL_STATE(6711)] = 286761, - [SMALL_STATE(6712)] = 286811, - [SMALL_STATE(6713)] = 286861, - [SMALL_STATE(6714)] = 286911, - [SMALL_STATE(6715)] = 286997, - [SMALL_STATE(6716)] = 287047, - [SMALL_STATE(6717)] = 287097, - [SMALL_STATE(6718)] = 287147, - [SMALL_STATE(6719)] = 287197, - [SMALL_STATE(6720)] = 287247, - [SMALL_STATE(6721)] = 287297, - [SMALL_STATE(6722)] = 287383, - [SMALL_STATE(6723)] = 287469, - [SMALL_STATE(6724)] = 287519, - [SMALL_STATE(6725)] = 287569, - [SMALL_STATE(6726)] = 287619, - [SMALL_STATE(6727)] = 287669, - [SMALL_STATE(6728)] = 287719, - [SMALL_STATE(6729)] = 287769, - [SMALL_STATE(6730)] = 287819, - [SMALL_STATE(6731)] = 287869, - [SMALL_STATE(6732)] = 287919, - [SMALL_STATE(6733)] = 287969, - [SMALL_STATE(6734)] = 288019, - [SMALL_STATE(6735)] = 288077, - [SMALL_STATE(6736)] = 288127, - [SMALL_STATE(6737)] = 288177, - [SMALL_STATE(6738)] = 288227, - [SMALL_STATE(6739)] = 288277, - [SMALL_STATE(6740)] = 288327, - [SMALL_STATE(6741)] = 288413, - [SMALL_STATE(6742)] = 288463, - [SMALL_STATE(6743)] = 288513, - [SMALL_STATE(6744)] = 288563, - [SMALL_STATE(6745)] = 288613, - [SMALL_STATE(6746)] = 288663, - [SMALL_STATE(6747)] = 288721, - [SMALL_STATE(6748)] = 288799, - [SMALL_STATE(6749)] = 288849, - [SMALL_STATE(6750)] = 288931, - [SMALL_STATE(6751)] = 289011, - [SMALL_STATE(6752)] = 289069, - [SMALL_STATE(6753)] = 289119, - [SMALL_STATE(6754)] = 289169, - [SMALL_STATE(6755)] = 289219, - [SMALL_STATE(6756)] = 289269, - [SMALL_STATE(6757)] = 289319, - [SMALL_STATE(6758)] = 289373, - [SMALL_STATE(6759)] = 289423, - [SMALL_STATE(6760)] = 289473, - [SMALL_STATE(6761)] = 289525, - [SMALL_STATE(6762)] = 289575, - [SMALL_STATE(6763)] = 289625, - [SMALL_STATE(6764)] = 289677, - [SMALL_STATE(6765)] = 289727, - [SMALL_STATE(6766)] = 289777, - [SMALL_STATE(6767)] = 289863, - [SMALL_STATE(6768)] = 289949, - [SMALL_STATE(6769)] = 289999, - [SMALL_STATE(6770)] = 290057, - [SMALL_STATE(6771)] = 290107, - [SMALL_STATE(6772)] = 290157, - [SMALL_STATE(6773)] = 290243, - [SMALL_STATE(6774)] = 290329, - [SMALL_STATE(6775)] = 290379, - [SMALL_STATE(6776)] = 290429, - [SMALL_STATE(6777)] = 290479, - [SMALL_STATE(6778)] = 290529, - [SMALL_STATE(6779)] = 290589, - [SMALL_STATE(6780)] = 290645, - [SMALL_STATE(6781)] = 290695, - [SMALL_STATE(6782)] = 290745, - [SMALL_STATE(6783)] = 290795, - [SMALL_STATE(6784)] = 290881, - [SMALL_STATE(6785)] = 290937, - [SMALL_STATE(6786)] = 290987, - [SMALL_STATE(6787)] = 291037, - [SMALL_STATE(6788)] = 291087, - [SMALL_STATE(6789)] = 291137, - [SMALL_STATE(6790)] = 291223, - [SMALL_STATE(6791)] = 291287, - [SMALL_STATE(6792)] = 291373, - [SMALL_STATE(6793)] = 291423, - [SMALL_STATE(6794)] = 291473, - [SMALL_STATE(6795)] = 291523, - [SMALL_STATE(6796)] = 291605, - [SMALL_STATE(6797)] = 291655, - [SMALL_STATE(6798)] = 291705, - [SMALL_STATE(6799)] = 291755, - [SMALL_STATE(6800)] = 291805, - [SMALL_STATE(6801)] = 291855, - [SMALL_STATE(6802)] = 291905, - [SMALL_STATE(6803)] = 291955, - [SMALL_STATE(6804)] = 292005, - [SMALL_STATE(6805)] = 292055, - [SMALL_STATE(6806)] = 292105, - [SMALL_STATE(6807)] = 292155, - [SMALL_STATE(6808)] = 292205, - [SMALL_STATE(6809)] = 292255, - [SMALL_STATE(6810)] = 292305, - [SMALL_STATE(6811)] = 292355, - [SMALL_STATE(6812)] = 292405, - [SMALL_STATE(6813)] = 292455, - [SMALL_STATE(6814)] = 292505, - [SMALL_STATE(6815)] = 292555, - [SMALL_STATE(6816)] = 292605, - [SMALL_STATE(6817)] = 292657, - [SMALL_STATE(6818)] = 292707, - [SMALL_STATE(6819)] = 292757, - [SMALL_STATE(6820)] = 292843, - [SMALL_STATE(6821)] = 292893, - [SMALL_STATE(6822)] = 292943, - [SMALL_STATE(6823)] = 292993, - [SMALL_STATE(6824)] = 293043, - [SMALL_STATE(6825)] = 293093, - [SMALL_STATE(6826)] = 293143, - [SMALL_STATE(6827)] = 293225, - [SMALL_STATE(6828)] = 293277, - [SMALL_STATE(6829)] = 293327, - [SMALL_STATE(6830)] = 293377, - [SMALL_STATE(6831)] = 293459, - [SMALL_STATE(6832)] = 293509, - [SMALL_STATE(6833)] = 293595, - [SMALL_STATE(6834)] = 293681, - [SMALL_STATE(6835)] = 293767, - [SMALL_STATE(6836)] = 293827, - [SMALL_STATE(6837)] = 293883, - [SMALL_STATE(6838)] = 293939, - [SMALL_STATE(6839)] = 294003, - [SMALL_STATE(6840)] = 294053, - [SMALL_STATE(6841)] = 294135, - [SMALL_STATE(6842)] = 294185, - [SMALL_STATE(6843)] = 294259, - [SMALL_STATE(6844)] = 294325, - [SMALL_STATE(6845)] = 294387, - [SMALL_STATE(6846)] = 294457, - [SMALL_STATE(6847)] = 294535, - [SMALL_STATE(6848)] = 294615, - [SMALL_STATE(6849)] = 294697, - [SMALL_STATE(6850)] = 294783, - [SMALL_STATE(6851)] = 294869, - [SMALL_STATE(6852)] = 294955, - [SMALL_STATE(6853)] = 295015, - [SMALL_STATE(6854)] = 295071, - [SMALL_STATE(6855)] = 295127, - [SMALL_STATE(6856)] = 295191, - [SMALL_STATE(6857)] = 295273, - [SMALL_STATE(6858)] = 295347, - [SMALL_STATE(6859)] = 295413, - [SMALL_STATE(6860)] = 295475, - [SMALL_STATE(6861)] = 295545, - [SMALL_STATE(6862)] = 295623, - [SMALL_STATE(6863)] = 295703, - [SMALL_STATE(6864)] = 295785, - [SMALL_STATE(6865)] = 295835, - [SMALL_STATE(6866)] = 295921, - [SMALL_STATE(6867)] = 296007, - [SMALL_STATE(6868)] = 296057, - [SMALL_STATE(6869)] = 296139, - [SMALL_STATE(6870)] = 296189, - [SMALL_STATE(6871)] = 296263, - [SMALL_STATE(6872)] = 296329, - [SMALL_STATE(6873)] = 296415, - [SMALL_STATE(6874)] = 296465, - [SMALL_STATE(6875)] = 296551, - [SMALL_STATE(6876)] = 296601, - [SMALL_STATE(6877)] = 296651, - [SMALL_STATE(6878)] = 296733, - [SMALL_STATE(6879)] = 296791, - [SMALL_STATE(6880)] = 296841, - [SMALL_STATE(6881)] = 296891, - [SMALL_STATE(6882)] = 296941, - [SMALL_STATE(6883)] = 296995, - [SMALL_STATE(6884)] = 297045, - [SMALL_STATE(6885)] = 297103, - [SMALL_STATE(6886)] = 297189, - [SMALL_STATE(6887)] = 297239, - [SMALL_STATE(6888)] = 297291, - [SMALL_STATE(6889)] = 297341, - [SMALL_STATE(6890)] = 297427, - [SMALL_STATE(6891)] = 297509, - [SMALL_STATE(6892)] = 297595, - [SMALL_STATE(6893)] = 297681, - [SMALL_STATE(6894)] = 297733, - [SMALL_STATE(6895)] = 297785, - [SMALL_STATE(6896)] = 297870, - [SMALL_STATE(6897)] = 297933, - [SMALL_STATE(6898)] = 298014, - [SMALL_STATE(6899)] = 298087, - [SMALL_STATE(6900)] = 298152, - [SMALL_STATE(6901)] = 298237, - [SMALL_STATE(6902)] = 298298, - [SMALL_STATE(6903)] = 298383, - [SMALL_STATE(6904)] = 298452, - [SMALL_STATE(6905)] = 298537, - [SMALL_STATE(6906)] = 298614, - [SMALL_STATE(6907)] = 298693, - [SMALL_STATE(6908)] = 298778, - [SMALL_STATE(6909)] = 298863, - [SMALL_STATE(6910)] = 298948, - [SMALL_STATE(6911)] = 299033, - [SMALL_STATE(6912)] = 299114, - [SMALL_STATE(6913)] = 299199, - [SMALL_STATE(6914)] = 299284, - [SMALL_STATE(6915)] = 299369, - [SMALL_STATE(6916)] = 299450, - [SMALL_STATE(6917)] = 299535, - [SMALL_STATE(6918)] = 299620, - [SMALL_STATE(6919)] = 299705, - [SMALL_STATE(6920)] = 299764, - [SMALL_STATE(6921)] = 299819, - [SMALL_STATE(6922)] = 299874, - [SMALL_STATE(6923)] = 299937, - [SMALL_STATE(6924)] = 300018, - [SMALL_STATE(6925)] = 300091, - [SMALL_STATE(6926)] = 300156, - [SMALL_STATE(6927)] = 300217, - [SMALL_STATE(6928)] = 300286, - [SMALL_STATE(6929)] = 300363, - [SMALL_STATE(6930)] = 300442, - [SMALL_STATE(6931)] = 300523, - [SMALL_STATE(6932)] = 300608, - [SMALL_STATE(6933)] = 300693, - [SMALL_STATE(6934)] = 300774, - [SMALL_STATE(6935)] = 300859, - [SMALL_STATE(6936)] = 300944, - [SMALL_STATE(6937)] = 301025, - [SMALL_STATE(6938)] = 301110, - [SMALL_STATE(6939)] = 301195, - [SMALL_STATE(6940)] = 301280, - [SMALL_STATE(6941)] = 301365, - [SMALL_STATE(6942)] = 301450, - [SMALL_STATE(6943)] = 301535, - [SMALL_STATE(6944)] = 301594, - [SMALL_STATE(6945)] = 301649, - [SMALL_STATE(6946)] = 301704, - [SMALL_STATE(6947)] = 301767, - [SMALL_STATE(6948)] = 301848, - [SMALL_STATE(6949)] = 301921, - [SMALL_STATE(6950)] = 301986, - [SMALL_STATE(6951)] = 302047, - [SMALL_STATE(6952)] = 302116, - [SMALL_STATE(6953)] = 302193, - [SMALL_STATE(6954)] = 302272, - [SMALL_STATE(6955)] = 302341, - [SMALL_STATE(6956)] = 302426, - [SMALL_STATE(6957)] = 302511, - [SMALL_STATE(6958)] = 302596, - [SMALL_STATE(6959)] = 302677, - [SMALL_STATE(6960)] = 302746, - [SMALL_STATE(6961)] = 302831, - [SMALL_STATE(6962)] = 302916, - [SMALL_STATE(6963)] = 303001, - [SMALL_STATE(6964)] = 303086, - [SMALL_STATE(6965)] = 303171, - [SMALL_STATE(6966)] = 303226, - [SMALL_STATE(6967)] = 303311, - [SMALL_STATE(6968)] = 303396, - [SMALL_STATE(6969)] = 303481, - [SMALL_STATE(6970)] = 303536, - [SMALL_STATE(6971)] = 303621, - [SMALL_STATE(6972)] = 303706, - [SMALL_STATE(6973)] = 303791, - [SMALL_STATE(6974)] = 303876, - [SMALL_STATE(6975)] = 303961, - [SMALL_STATE(6976)] = 304046, - [SMALL_STATE(6977)] = 304131, - [SMALL_STATE(6978)] = 304216, - [SMALL_STATE(6979)] = 304301, - [SMALL_STATE(6980)] = 304386, - [SMALL_STATE(6981)] = 304471, - [SMALL_STATE(6982)] = 304556, - [SMALL_STATE(6983)] = 304641, - [SMALL_STATE(6984)] = 304726, - [SMALL_STATE(6985)] = 304811, - [SMALL_STATE(6986)] = 304896, - [SMALL_STATE(6987)] = 304981, - [SMALL_STATE(6988)] = 305066, - [SMALL_STATE(6989)] = 305151, - [SMALL_STATE(6990)] = 305236, - [SMALL_STATE(6991)] = 305321, - [SMALL_STATE(6992)] = 305406, - [SMALL_STATE(6993)] = 305491, - [SMALL_STATE(6994)] = 305576, - [SMALL_STATE(6995)] = 305661, - [SMALL_STATE(6996)] = 305746, - [SMALL_STATE(6997)] = 305831, - [SMALL_STATE(6998)] = 305916, - [SMALL_STATE(6999)] = 306001, - [SMALL_STATE(7000)] = 306082, - [SMALL_STATE(7001)] = 306167, - [SMALL_STATE(7002)] = 306252, - [SMALL_STATE(7003)] = 306337, - [SMALL_STATE(7004)] = 306422, - [SMALL_STATE(7005)] = 306507, - [SMALL_STATE(7006)] = 306592, - [SMALL_STATE(7007)] = 306677, - [SMALL_STATE(7008)] = 306736, - [SMALL_STATE(7009)] = 306791, - [SMALL_STATE(7010)] = 306876, - [SMALL_STATE(7011)] = 306961, - [SMALL_STATE(7012)] = 307046, - [SMALL_STATE(7013)] = 307127, - [SMALL_STATE(7014)] = 307182, - [SMALL_STATE(7015)] = 307237, - [SMALL_STATE(7016)] = 307318, - [SMALL_STATE(7017)] = 307403, - [SMALL_STATE(7018)] = 307458, - [SMALL_STATE(7019)] = 307540, - [SMALL_STATE(7020)] = 307607, - [SMALL_STATE(7021)] = 307674, - [SMALL_STATE(7022)] = 307741, - [SMALL_STATE(7023)] = 307808, - [SMALL_STATE(7024)] = 307875, - [SMALL_STATE(7025)] = 307942, - [SMALL_STATE(7026)] = 308009, - [SMALL_STATE(7027)] = 308090, - [SMALL_STATE(7028)] = 308157, - [SMALL_STATE(7029)] = 308223, - [SMALL_STATE(7030)] = 308289, - [SMALL_STATE(7031)] = 308355, - [SMALL_STATE(7032)] = 308421, - [SMALL_STATE(7033)] = 308487, - [SMALL_STATE(7034)] = 308553, - [SMALL_STATE(7035)] = 308619, - [SMALL_STATE(7036)] = 308685, - [SMALL_STATE(7037)] = 308751, - [SMALL_STATE(7038)] = 308817, - [SMALL_STATE(7039)] = 308883, - [SMALL_STATE(7040)] = 308949, - [SMALL_STATE(7041)] = 309014, - [SMALL_STATE(7042)] = 309079, - [SMALL_STATE(7043)] = 309144, - [SMALL_STATE(7044)] = 309209, - [SMALL_STATE(7045)] = 309274, - [SMALL_STATE(7046)] = 309339, - [SMALL_STATE(7047)] = 309410, - [SMALL_STATE(7048)] = 309481, - [SMALL_STATE(7049)] = 309552, - [SMALL_STATE(7050)] = 309623, - [SMALL_STATE(7051)] = 309694, - [SMALL_STATE(7052)] = 309765, - [SMALL_STATE(7053)] = 309836, - [SMALL_STATE(7054)] = 309907, - [SMALL_STATE(7055)] = 309978, - [SMALL_STATE(7056)] = 310049, - [SMALL_STATE(7057)] = 310120, - [SMALL_STATE(7058)] = 310191, - [SMALL_STATE(7059)] = 310262, - [SMALL_STATE(7060)] = 310333, - [SMALL_STATE(7061)] = 310404, - [SMALL_STATE(7062)] = 310475, - [SMALL_STATE(7063)] = 310546, - [SMALL_STATE(7064)] = 310617, - [SMALL_STATE(7065)] = 310688, - [SMALL_STATE(7066)] = 310759, - [SMALL_STATE(7067)] = 310830, - [SMALL_STATE(7068)] = 310901, - [SMALL_STATE(7069)] = 310972, - [SMALL_STATE(7070)] = 311043, - [SMALL_STATE(7071)] = 311114, - [SMALL_STATE(7072)] = 311185, - [SMALL_STATE(7073)] = 311256, - [SMALL_STATE(7074)] = 311327, - [SMALL_STATE(7075)] = 311398, - [SMALL_STATE(7076)] = 311469, - [SMALL_STATE(7077)] = 311540, - [SMALL_STATE(7078)] = 311611, - [SMALL_STATE(7079)] = 311682, - [SMALL_STATE(7080)] = 311753, - [SMALL_STATE(7081)] = 311824, - [SMALL_STATE(7082)] = 311895, - [SMALL_STATE(7083)] = 311966, - [SMALL_STATE(7084)] = 312037, - [SMALL_STATE(7085)] = 312108, - [SMALL_STATE(7086)] = 312179, - [SMALL_STATE(7087)] = 312250, - [SMALL_STATE(7088)] = 312321, - [SMALL_STATE(7089)] = 312392, - [SMALL_STATE(7090)] = 312463, - [SMALL_STATE(7091)] = 312534, - [SMALL_STATE(7092)] = 312605, - [SMALL_STATE(7093)] = 312676, - [SMALL_STATE(7094)] = 312747, - [SMALL_STATE(7095)] = 312818, - [SMALL_STATE(7096)] = 312889, - [SMALL_STATE(7097)] = 312960, - [SMALL_STATE(7098)] = 313031, - [SMALL_STATE(7099)] = 313102, - [SMALL_STATE(7100)] = 313173, - [SMALL_STATE(7101)] = 313244, - [SMALL_STATE(7102)] = 313315, - [SMALL_STATE(7103)] = 313386, - [SMALL_STATE(7104)] = 313457, - [SMALL_STATE(7105)] = 313528, - [SMALL_STATE(7106)] = 313599, - [SMALL_STATE(7107)] = 313670, - [SMALL_STATE(7108)] = 313741, - [SMALL_STATE(7109)] = 313812, - [SMALL_STATE(7110)] = 313883, - [SMALL_STATE(7111)] = 313954, - [SMALL_STATE(7112)] = 314025, - [SMALL_STATE(7113)] = 314096, - [SMALL_STATE(7114)] = 314167, - [SMALL_STATE(7115)] = 314238, - [SMALL_STATE(7116)] = 314309, - [SMALL_STATE(7117)] = 314380, - [SMALL_STATE(7118)] = 314451, - [SMALL_STATE(7119)] = 314522, - [SMALL_STATE(7120)] = 314593, - [SMALL_STATE(7121)] = 314664, - [SMALL_STATE(7122)] = 314735, - [SMALL_STATE(7123)] = 314806, - [SMALL_STATE(7124)] = 314877, - [SMALL_STATE(7125)] = 314948, - [SMALL_STATE(7126)] = 315019, - [SMALL_STATE(7127)] = 315090, - [SMALL_STATE(7128)] = 315161, - [SMALL_STATE(7129)] = 315232, - [SMALL_STATE(7130)] = 315303, - [SMALL_STATE(7131)] = 315374, - [SMALL_STATE(7132)] = 315445, - [SMALL_STATE(7133)] = 315516, - [SMALL_STATE(7134)] = 315587, - [SMALL_STATE(7135)] = 315658, - [SMALL_STATE(7136)] = 315729, - [SMALL_STATE(7137)] = 315800, - [SMALL_STATE(7138)] = 315871, - [SMALL_STATE(7139)] = 315942, - [SMALL_STATE(7140)] = 316013, - [SMALL_STATE(7141)] = 316084, - [SMALL_STATE(7142)] = 316155, - [SMALL_STATE(7143)] = 316226, - [SMALL_STATE(7144)] = 316297, - [SMALL_STATE(7145)] = 316368, - [SMALL_STATE(7146)] = 316439, - [SMALL_STATE(7147)] = 316510, - [SMALL_STATE(7148)] = 316581, - [SMALL_STATE(7149)] = 316652, - [SMALL_STATE(7150)] = 316723, - [SMALL_STATE(7151)] = 316794, - [SMALL_STATE(7152)] = 316865, - [SMALL_STATE(7153)] = 316936, - [SMALL_STATE(7154)] = 317007, - [SMALL_STATE(7155)] = 317078, - [SMALL_STATE(7156)] = 317149, - [SMALL_STATE(7157)] = 317220, - [SMALL_STATE(7158)] = 317291, - [SMALL_STATE(7159)] = 317362, - [SMALL_STATE(7160)] = 317433, - [SMALL_STATE(7161)] = 317504, - [SMALL_STATE(7162)] = 317575, - [SMALL_STATE(7163)] = 317646, - [SMALL_STATE(7164)] = 317717, - [SMALL_STATE(7165)] = 317788, - [SMALL_STATE(7166)] = 317859, - [SMALL_STATE(7167)] = 317930, - [SMALL_STATE(7168)] = 318001, - [SMALL_STATE(7169)] = 318072, - [SMALL_STATE(7170)] = 318143, - [SMALL_STATE(7171)] = 318214, - [SMALL_STATE(7172)] = 318285, - [SMALL_STATE(7173)] = 318356, - [SMALL_STATE(7174)] = 318427, - [SMALL_STATE(7175)] = 318498, - [SMALL_STATE(7176)] = 318569, - [SMALL_STATE(7177)] = 318640, - [SMALL_STATE(7178)] = 318711, - [SMALL_STATE(7179)] = 318782, - [SMALL_STATE(7180)] = 318853, - [SMALL_STATE(7181)] = 318924, - [SMALL_STATE(7182)] = 318995, - [SMALL_STATE(7183)] = 319066, - [SMALL_STATE(7184)] = 319137, - [SMALL_STATE(7185)] = 319208, - [SMALL_STATE(7186)] = 319279, - [SMALL_STATE(7187)] = 319350, - [SMALL_STATE(7188)] = 319421, - [SMALL_STATE(7189)] = 319492, - [SMALL_STATE(7190)] = 319563, - [SMALL_STATE(7191)] = 319634, - [SMALL_STATE(7192)] = 319705, - [SMALL_STATE(7193)] = 319776, - [SMALL_STATE(7194)] = 319847, - [SMALL_STATE(7195)] = 319918, - [SMALL_STATE(7196)] = 319989, - [SMALL_STATE(7197)] = 320060, - [SMALL_STATE(7198)] = 320131, - [SMALL_STATE(7199)] = 320202, - [SMALL_STATE(7200)] = 320273, - [SMALL_STATE(7201)] = 320344, - [SMALL_STATE(7202)] = 320415, - [SMALL_STATE(7203)] = 320486, - [SMALL_STATE(7204)] = 320557, - [SMALL_STATE(7205)] = 320628, - [SMALL_STATE(7206)] = 320699, - [SMALL_STATE(7207)] = 320770, - [SMALL_STATE(7208)] = 320841, - [SMALL_STATE(7209)] = 320912, - [SMALL_STATE(7210)] = 320983, - [SMALL_STATE(7211)] = 321054, - [SMALL_STATE(7212)] = 321125, - [SMALL_STATE(7213)] = 321196, - [SMALL_STATE(7214)] = 321267, - [SMALL_STATE(7215)] = 321338, - [SMALL_STATE(7216)] = 321409, - [SMALL_STATE(7217)] = 321480, - [SMALL_STATE(7218)] = 321551, - [SMALL_STATE(7219)] = 321622, - [SMALL_STATE(7220)] = 321693, - [SMALL_STATE(7221)] = 321764, - [SMALL_STATE(7222)] = 321835, - [SMALL_STATE(7223)] = 321906, - [SMALL_STATE(7224)] = 321977, - [SMALL_STATE(7225)] = 322048, - [SMALL_STATE(7226)] = 322119, - [SMALL_STATE(7227)] = 322190, - [SMALL_STATE(7228)] = 322261, - [SMALL_STATE(7229)] = 322332, - [SMALL_STATE(7230)] = 322403, - [SMALL_STATE(7231)] = 322474, - [SMALL_STATE(7232)] = 322545, - [SMALL_STATE(7233)] = 322616, - [SMALL_STATE(7234)] = 322687, - [SMALL_STATE(7235)] = 322758, - [SMALL_STATE(7236)] = 322829, - [SMALL_STATE(7237)] = 322900, - [SMALL_STATE(7238)] = 322971, - [SMALL_STATE(7239)] = 323042, - [SMALL_STATE(7240)] = 323113, - [SMALL_STATE(7241)] = 323184, - [SMALL_STATE(7242)] = 323255, - [SMALL_STATE(7243)] = 323326, - [SMALL_STATE(7244)] = 323397, - [SMALL_STATE(7245)] = 323468, - [SMALL_STATE(7246)] = 323539, - [SMALL_STATE(7247)] = 323610, - [SMALL_STATE(7248)] = 323681, - [SMALL_STATE(7249)] = 323752, - [SMALL_STATE(7250)] = 323823, - [SMALL_STATE(7251)] = 323894, - [SMALL_STATE(7252)] = 323965, - [SMALL_STATE(7253)] = 324036, - [SMALL_STATE(7254)] = 324107, - [SMALL_STATE(7255)] = 324178, - [SMALL_STATE(7256)] = 324249, - [SMALL_STATE(7257)] = 324320, - [SMALL_STATE(7258)] = 324391, - [SMALL_STATE(7259)] = 324462, - [SMALL_STATE(7260)] = 324533, - [SMALL_STATE(7261)] = 324604, - [SMALL_STATE(7262)] = 324675, - [SMALL_STATE(7263)] = 324746, - [SMALL_STATE(7264)] = 324817, - [SMALL_STATE(7265)] = 324888, - [SMALL_STATE(7266)] = 324959, - [SMALL_STATE(7267)] = 325030, - [SMALL_STATE(7268)] = 325101, - [SMALL_STATE(7269)] = 325172, - [SMALL_STATE(7270)] = 325243, - [SMALL_STATE(7271)] = 325314, - [SMALL_STATE(7272)] = 325385, - [SMALL_STATE(7273)] = 325456, - [SMALL_STATE(7274)] = 325527, - [SMALL_STATE(7275)] = 325598, - [SMALL_STATE(7276)] = 325669, - [SMALL_STATE(7277)] = 325740, - [SMALL_STATE(7278)] = 325811, - [SMALL_STATE(7279)] = 325882, - [SMALL_STATE(7280)] = 325953, - [SMALL_STATE(7281)] = 326024, - [SMALL_STATE(7282)] = 326095, - [SMALL_STATE(7283)] = 326166, - [SMALL_STATE(7284)] = 326237, - [SMALL_STATE(7285)] = 326308, - [SMALL_STATE(7286)] = 326379, - [SMALL_STATE(7287)] = 326450, - [SMALL_STATE(7288)] = 326521, - [SMALL_STATE(7289)] = 326592, - [SMALL_STATE(7290)] = 326663, - [SMALL_STATE(7291)] = 326734, - [SMALL_STATE(7292)] = 326805, - [SMALL_STATE(7293)] = 326876, - [SMALL_STATE(7294)] = 326947, - [SMALL_STATE(7295)] = 327018, - [SMALL_STATE(7296)] = 327089, - [SMALL_STATE(7297)] = 327160, - [SMALL_STATE(7298)] = 327231, - [SMALL_STATE(7299)] = 327302, - [SMALL_STATE(7300)] = 327373, - [SMALL_STATE(7301)] = 327444, - [SMALL_STATE(7302)] = 327515, - [SMALL_STATE(7303)] = 327586, - [SMALL_STATE(7304)] = 327657, - [SMALL_STATE(7305)] = 327728, - [SMALL_STATE(7306)] = 327799, - [SMALL_STATE(7307)] = 327870, - [SMALL_STATE(7308)] = 327941, - [SMALL_STATE(7309)] = 328012, - [SMALL_STATE(7310)] = 328083, - [SMALL_STATE(7311)] = 328154, - [SMALL_STATE(7312)] = 328225, - [SMALL_STATE(7313)] = 328296, - [SMALL_STATE(7314)] = 328367, - [SMALL_STATE(7315)] = 328438, - [SMALL_STATE(7316)] = 328509, - [SMALL_STATE(7317)] = 328580, - [SMALL_STATE(7318)] = 328651, - [SMALL_STATE(7319)] = 328722, - [SMALL_STATE(7320)] = 328793, - [SMALL_STATE(7321)] = 328864, - [SMALL_STATE(7322)] = 328935, - [SMALL_STATE(7323)] = 329006, - [SMALL_STATE(7324)] = 329077, - [SMALL_STATE(7325)] = 329148, - [SMALL_STATE(7326)] = 329219, - [SMALL_STATE(7327)] = 329290, - [SMALL_STATE(7328)] = 329361, - [SMALL_STATE(7329)] = 329432, - [SMALL_STATE(7330)] = 329503, - [SMALL_STATE(7331)] = 329574, - [SMALL_STATE(7332)] = 329645, - [SMALL_STATE(7333)] = 329716, - [SMALL_STATE(7334)] = 329787, - [SMALL_STATE(7335)] = 329858, - [SMALL_STATE(7336)] = 329929, - [SMALL_STATE(7337)] = 330000, - [SMALL_STATE(7338)] = 330071, - [SMALL_STATE(7339)] = 330142, - [SMALL_STATE(7340)] = 330213, - [SMALL_STATE(7341)] = 330284, - [SMALL_STATE(7342)] = 330355, - [SMALL_STATE(7343)] = 330426, - [SMALL_STATE(7344)] = 330497, - [SMALL_STATE(7345)] = 330568, - [SMALL_STATE(7346)] = 330639, - [SMALL_STATE(7347)] = 330710, - [SMALL_STATE(7348)] = 330781, - [SMALL_STATE(7349)] = 330852, - [SMALL_STATE(7350)] = 330923, - [SMALL_STATE(7351)] = 330994, - [SMALL_STATE(7352)] = 331065, - [SMALL_STATE(7353)] = 331136, - [SMALL_STATE(7354)] = 331207, - [SMALL_STATE(7355)] = 331278, - [SMALL_STATE(7356)] = 331349, - [SMALL_STATE(7357)] = 331420, - [SMALL_STATE(7358)] = 331491, - [SMALL_STATE(7359)] = 331562, - [SMALL_STATE(7360)] = 331633, - [SMALL_STATE(7361)] = 331704, - [SMALL_STATE(7362)] = 331775, - [SMALL_STATE(7363)] = 331846, - [SMALL_STATE(7364)] = 331917, - [SMALL_STATE(7365)] = 331988, - [SMALL_STATE(7366)] = 332059, - [SMALL_STATE(7367)] = 332130, - [SMALL_STATE(7368)] = 332201, - [SMALL_STATE(7369)] = 332272, - [SMALL_STATE(7370)] = 332343, - [SMALL_STATE(7371)] = 332414, - [SMALL_STATE(7372)] = 332485, - [SMALL_STATE(7373)] = 332556, - [SMALL_STATE(7374)] = 332627, - [SMALL_STATE(7375)] = 332698, - [SMALL_STATE(7376)] = 332769, - [SMALL_STATE(7377)] = 332840, - [SMALL_STATE(7378)] = 332911, - [SMALL_STATE(7379)] = 332982, - [SMALL_STATE(7380)] = 333053, - [SMALL_STATE(7381)] = 333124, - [SMALL_STATE(7382)] = 333195, - [SMALL_STATE(7383)] = 333266, - [SMALL_STATE(7384)] = 333337, - [SMALL_STATE(7385)] = 333408, - [SMALL_STATE(7386)] = 333479, - [SMALL_STATE(7387)] = 333550, - [SMALL_STATE(7388)] = 333621, - [SMALL_STATE(7389)] = 333692, - [SMALL_STATE(7390)] = 333763, - [SMALL_STATE(7391)] = 333834, - [SMALL_STATE(7392)] = 333905, - [SMALL_STATE(7393)] = 333976, - [SMALL_STATE(7394)] = 334047, - [SMALL_STATE(7395)] = 334118, - [SMALL_STATE(7396)] = 334189, - [SMALL_STATE(7397)] = 334260, - [SMALL_STATE(7398)] = 334331, - [SMALL_STATE(7399)] = 334402, - [SMALL_STATE(7400)] = 334473, - [SMALL_STATE(7401)] = 334544, - [SMALL_STATE(7402)] = 334615, - [SMALL_STATE(7403)] = 334686, - [SMALL_STATE(7404)] = 334757, - [SMALL_STATE(7405)] = 334828, - [SMALL_STATE(7406)] = 334899, - [SMALL_STATE(7407)] = 334970, - [SMALL_STATE(7408)] = 335041, - [SMALL_STATE(7409)] = 335112, - [SMALL_STATE(7410)] = 335183, - [SMALL_STATE(7411)] = 335254, - [SMALL_STATE(7412)] = 335325, - [SMALL_STATE(7413)] = 335396, - [SMALL_STATE(7414)] = 335467, - [SMALL_STATE(7415)] = 335538, - [SMALL_STATE(7416)] = 335609, - [SMALL_STATE(7417)] = 335680, - [SMALL_STATE(7418)] = 335751, - [SMALL_STATE(7419)] = 335822, - [SMALL_STATE(7420)] = 335893, - [SMALL_STATE(7421)] = 335964, - [SMALL_STATE(7422)] = 336035, - [SMALL_STATE(7423)] = 336106, - [SMALL_STATE(7424)] = 336177, - [SMALL_STATE(7425)] = 336248, - [SMALL_STATE(7426)] = 336319, - [SMALL_STATE(7427)] = 336390, - [SMALL_STATE(7428)] = 336461, - [SMALL_STATE(7429)] = 336532, - [SMALL_STATE(7430)] = 336603, - [SMALL_STATE(7431)] = 336674, - [SMALL_STATE(7432)] = 336745, - [SMALL_STATE(7433)] = 336816, - [SMALL_STATE(7434)] = 336887, - [SMALL_STATE(7435)] = 336958, - [SMALL_STATE(7436)] = 337029, - [SMALL_STATE(7437)] = 337100, - [SMALL_STATE(7438)] = 337171, - [SMALL_STATE(7439)] = 337242, - [SMALL_STATE(7440)] = 337313, - [SMALL_STATE(7441)] = 337384, - [SMALL_STATE(7442)] = 337455, - [SMALL_STATE(7443)] = 337526, - [SMALL_STATE(7444)] = 337597, - [SMALL_STATE(7445)] = 337668, - [SMALL_STATE(7446)] = 337739, - [SMALL_STATE(7447)] = 337810, - [SMALL_STATE(7448)] = 337881, - [SMALL_STATE(7449)] = 337952, - [SMALL_STATE(7450)] = 338023, - [SMALL_STATE(7451)] = 338094, - [SMALL_STATE(7452)] = 338165, - [SMALL_STATE(7453)] = 338236, - [SMALL_STATE(7454)] = 338307, - [SMALL_STATE(7455)] = 338378, - [SMALL_STATE(7456)] = 338449, - [SMALL_STATE(7457)] = 338520, - [SMALL_STATE(7458)] = 338591, - [SMALL_STATE(7459)] = 338662, - [SMALL_STATE(7460)] = 338733, - [SMALL_STATE(7461)] = 338804, - [SMALL_STATE(7462)] = 338875, - [SMALL_STATE(7463)] = 338946, - [SMALL_STATE(7464)] = 339017, - [SMALL_STATE(7465)] = 339088, - [SMALL_STATE(7466)] = 339159, - [SMALL_STATE(7467)] = 339230, - [SMALL_STATE(7468)] = 339301, - [SMALL_STATE(7469)] = 339372, - [SMALL_STATE(7470)] = 339443, - [SMALL_STATE(7471)] = 339514, - [SMALL_STATE(7472)] = 339585, - [SMALL_STATE(7473)] = 339656, - [SMALL_STATE(7474)] = 339727, - [SMALL_STATE(7475)] = 339798, - [SMALL_STATE(7476)] = 339869, - [SMALL_STATE(7477)] = 339940, - [SMALL_STATE(7478)] = 340011, - [SMALL_STATE(7479)] = 340082, - [SMALL_STATE(7480)] = 340153, - [SMALL_STATE(7481)] = 340224, - [SMALL_STATE(7482)] = 340295, - [SMALL_STATE(7483)] = 340366, - [SMALL_STATE(7484)] = 340437, - [SMALL_STATE(7485)] = 340508, - [SMALL_STATE(7486)] = 340579, - [SMALL_STATE(7487)] = 340650, - [SMALL_STATE(7488)] = 340721, - [SMALL_STATE(7489)] = 340792, - [SMALL_STATE(7490)] = 340863, - [SMALL_STATE(7491)] = 340934, - [SMALL_STATE(7492)] = 341005, - [SMALL_STATE(7493)] = 341076, - [SMALL_STATE(7494)] = 341147, - [SMALL_STATE(7495)] = 341218, - [SMALL_STATE(7496)] = 341289, - [SMALL_STATE(7497)] = 341360, - [SMALL_STATE(7498)] = 341428, - [SMALL_STATE(7499)] = 341496, - [SMALL_STATE(7500)] = 341564, - [SMALL_STATE(7501)] = 341632, - [SMALL_STATE(7502)] = 341700, - [SMALL_STATE(7503)] = 341768, - [SMALL_STATE(7504)] = 341836, - [SMALL_STATE(7505)] = 341904, - [SMALL_STATE(7506)] = 341972, - [SMALL_STATE(7507)] = 342040, - [SMALL_STATE(7508)] = 342108, - [SMALL_STATE(7509)] = 342176, - [SMALL_STATE(7510)] = 342244, - [SMALL_STATE(7511)] = 342312, - [SMALL_STATE(7512)] = 342380, - [SMALL_STATE(7513)] = 342448, - [SMALL_STATE(7514)] = 342516, - [SMALL_STATE(7515)] = 342584, - [SMALL_STATE(7516)] = 342652, - [SMALL_STATE(7517)] = 342720, - [SMALL_STATE(7518)] = 342788, - [SMALL_STATE(7519)] = 342856, - [SMALL_STATE(7520)] = 342924, - [SMALL_STATE(7521)] = 342992, - [SMALL_STATE(7522)] = 343060, - [SMALL_STATE(7523)] = 343128, - [SMALL_STATE(7524)] = 343196, - [SMALL_STATE(7525)] = 343264, - [SMALL_STATE(7526)] = 343332, - [SMALL_STATE(7527)] = 343400, - [SMALL_STATE(7528)] = 343468, - [SMALL_STATE(7529)] = 343536, - [SMALL_STATE(7530)] = 343604, - [SMALL_STATE(7531)] = 343672, - [SMALL_STATE(7532)] = 343740, - [SMALL_STATE(7533)] = 343808, - [SMALL_STATE(7534)] = 343876, - [SMALL_STATE(7535)] = 343944, - [SMALL_STATE(7536)] = 344012, - [SMALL_STATE(7537)] = 344080, - [SMALL_STATE(7538)] = 344148, - [SMALL_STATE(7539)] = 344216, - [SMALL_STATE(7540)] = 344284, - [SMALL_STATE(7541)] = 344352, - [SMALL_STATE(7542)] = 344420, - [SMALL_STATE(7543)] = 344488, - [SMALL_STATE(7544)] = 344556, - [SMALL_STATE(7545)] = 344624, - [SMALL_STATE(7546)] = 344692, - [SMALL_STATE(7547)] = 344760, - [SMALL_STATE(7548)] = 344828, - [SMALL_STATE(7549)] = 344896, - [SMALL_STATE(7550)] = 344964, - [SMALL_STATE(7551)] = 345032, - [SMALL_STATE(7552)] = 345100, - [SMALL_STATE(7553)] = 345168, - [SMALL_STATE(7554)] = 345236, - [SMALL_STATE(7555)] = 345304, - [SMALL_STATE(7556)] = 345372, - [SMALL_STATE(7557)] = 345434, - [SMALL_STATE(7558)] = 345502, - [SMALL_STATE(7559)] = 345570, - [SMALL_STATE(7560)] = 345638, - [SMALL_STATE(7561)] = 345706, - [SMALL_STATE(7562)] = 345774, - [SMALL_STATE(7563)] = 345842, - [SMALL_STATE(7564)] = 345910, - [SMALL_STATE(7565)] = 345978, - [SMALL_STATE(7566)] = 346046, - [SMALL_STATE(7567)] = 346114, - [SMALL_STATE(7568)] = 346182, - [SMALL_STATE(7569)] = 346250, - [SMALL_STATE(7570)] = 346318, - [SMALL_STATE(7571)] = 346386, - [SMALL_STATE(7572)] = 346454, - [SMALL_STATE(7573)] = 346522, - [SMALL_STATE(7574)] = 346590, - [SMALL_STATE(7575)] = 346658, - [SMALL_STATE(7576)] = 346726, - [SMALL_STATE(7577)] = 346794, - [SMALL_STATE(7578)] = 346862, - [SMALL_STATE(7579)] = 346930, - [SMALL_STATE(7580)] = 346992, - [SMALL_STATE(7581)] = 347060, - [SMALL_STATE(7582)] = 347128, - [SMALL_STATE(7583)] = 347196, - [SMALL_STATE(7584)] = 347264, - [SMALL_STATE(7585)] = 347332, - [SMALL_STATE(7586)] = 347400, - [SMALL_STATE(7587)] = 347468, - [SMALL_STATE(7588)] = 347536, - [SMALL_STATE(7589)] = 347604, - [SMALL_STATE(7590)] = 347672, - [SMALL_STATE(7591)] = 347740, - [SMALL_STATE(7592)] = 347808, - [SMALL_STATE(7593)] = 347876, - [SMALL_STATE(7594)] = 347944, - [SMALL_STATE(7595)] = 348012, - [SMALL_STATE(7596)] = 348080, - [SMALL_STATE(7597)] = 348148, - [SMALL_STATE(7598)] = 348216, - [SMALL_STATE(7599)] = 348281, - [SMALL_STATE(7600)] = 348346, - [SMALL_STATE(7601)] = 348411, - [SMALL_STATE(7602)] = 348476, - [SMALL_STATE(7603)] = 348541, - [SMALL_STATE(7604)] = 348606, - [SMALL_STATE(7605)] = 348671, - [SMALL_STATE(7606)] = 348732, - [SMALL_STATE(7607)] = 348797, - [SMALL_STATE(7608)] = 348862, - [SMALL_STATE(7609)] = 348927, - [SMALL_STATE(7610)] = 348992, - [SMALL_STATE(7611)] = 349057, - [SMALL_STATE(7612)] = 349122, - [SMALL_STATE(7613)] = 349187, - [SMALL_STATE(7614)] = 349248, - [SMALL_STATE(7615)] = 349313, - [SMALL_STATE(7616)] = 349378, - [SMALL_STATE(7617)] = 349443, - [SMALL_STATE(7618)] = 349508, - [SMALL_STATE(7619)] = 349573, - [SMALL_STATE(7620)] = 349638, - [SMALL_STATE(7621)] = 349703, - [SMALL_STATE(7622)] = 349768, - [SMALL_STATE(7623)] = 349833, - [SMALL_STATE(7624)] = 349898, - [SMALL_STATE(7625)] = 349963, - [SMALL_STATE(7626)] = 350028, - [SMALL_STATE(7627)] = 350093, - [SMALL_STATE(7628)] = 350135, - [SMALL_STATE(7629)] = 350195, - [SMALL_STATE(7630)] = 350255, - [SMALL_STATE(7631)] = 350315, - [SMALL_STATE(7632)] = 350355, - [SMALL_STATE(7633)] = 350397, - [SMALL_STATE(7634)] = 350439, - [SMALL_STATE(7635)] = 350481, - [SMALL_STATE(7636)] = 350541, - [SMALL_STATE(7637)] = 350578, - [SMALL_STATE(7638)] = 350626, - [SMALL_STATE(7639)] = 350682, - [SMALL_STATE(7640)] = 350738, - [SMALL_STATE(7641)] = 350794, - [SMALL_STATE(7642)] = 350850, - [SMALL_STATE(7643)] = 350906, - [SMALL_STATE(7644)] = 350962, - [SMALL_STATE(7645)] = 351018, - [SMALL_STATE(7646)] = 351074, - [SMALL_STATE(7647)] = 351130, - [SMALL_STATE(7648)] = 351186, - [SMALL_STATE(7649)] = 351242, - [SMALL_STATE(7650)] = 351298, - [SMALL_STATE(7651)] = 351354, - [SMALL_STATE(7652)] = 351410, - [SMALL_STATE(7653)] = 351466, - [SMALL_STATE(7654)] = 351504, - [SMALL_STATE(7655)] = 351560, - [SMALL_STATE(7656)] = 351616, - [SMALL_STATE(7657)] = 351672, - [SMALL_STATE(7658)] = 351728, - [SMALL_STATE(7659)] = 351784, - [SMALL_STATE(7660)] = 351822, - [SMALL_STATE(7661)] = 351878, - [SMALL_STATE(7662)] = 351934, - [SMALL_STATE(7663)] = 351972, - [SMALL_STATE(7664)] = 352028, - [SMALL_STATE(7665)] = 352084, - [SMALL_STATE(7666)] = 352140, - [SMALL_STATE(7667)] = 352196, - [SMALL_STATE(7668)] = 352252, - [SMALL_STATE(7669)] = 352308, - [SMALL_STATE(7670)] = 352364, - [SMALL_STATE(7671)] = 352420, - [SMALL_STATE(7672)] = 352476, - [SMALL_STATE(7673)] = 352532, - [SMALL_STATE(7674)] = 352588, - [SMALL_STATE(7675)] = 352644, - [SMALL_STATE(7676)] = 352700, - [SMALL_STATE(7677)] = 352756, - [SMALL_STATE(7678)] = 352812, - [SMALL_STATE(7679)] = 352868, - [SMALL_STATE(7680)] = 352924, - [SMALL_STATE(7681)] = 352980, - [SMALL_STATE(7682)] = 353036, - [SMALL_STATE(7683)] = 353092, - [SMALL_STATE(7684)] = 353148, - [SMALL_STATE(7685)] = 353204, - [SMALL_STATE(7686)] = 353260, - [SMALL_STATE(7687)] = 353316, - [SMALL_STATE(7688)] = 353364, - [SMALL_STATE(7689)] = 353420, - [SMALL_STATE(7690)] = 353476, - [SMALL_STATE(7691)] = 353532, - [SMALL_STATE(7692)] = 353588, - [SMALL_STATE(7693)] = 353644, - [SMALL_STATE(7694)] = 353700, - [SMALL_STATE(7695)] = 353756, - [SMALL_STATE(7696)] = 353812, - [SMALL_STATE(7697)] = 353868, - [SMALL_STATE(7698)] = 353924, - [SMALL_STATE(7699)] = 353972, - [SMALL_STATE(7700)] = 354028, - [SMALL_STATE(7701)] = 354084, - [SMALL_STATE(7702)] = 354140, - [SMALL_STATE(7703)] = 354196, - [SMALL_STATE(7704)] = 354252, - [SMALL_STATE(7705)] = 354308, - [SMALL_STATE(7706)] = 354356, - [SMALL_STATE(7707)] = 354412, - [SMALL_STATE(7708)] = 354468, - [SMALL_STATE(7709)] = 354524, - [SMALL_STATE(7710)] = 354580, - [SMALL_STATE(7711)] = 354636, - [SMALL_STATE(7712)] = 354692, - [SMALL_STATE(7713)] = 354748, - [SMALL_STATE(7714)] = 354796, - [SMALL_STATE(7715)] = 354852, - [SMALL_STATE(7716)] = 354908, - [SMALL_STATE(7717)] = 354964, - [SMALL_STATE(7718)] = 355004, - [SMALL_STATE(7719)] = 355060, - [SMALL_STATE(7720)] = 355116, - [SMALL_STATE(7721)] = 355151, - [SMALL_STATE(7722)] = 355186, - [SMALL_STATE(7723)] = 355221, - [SMALL_STATE(7724)] = 355256, - [SMALL_STATE(7725)] = 355291, - [SMALL_STATE(7726)] = 355326, - [SMALL_STATE(7727)] = 355361, - [SMALL_STATE(7728)] = 355396, - [SMALL_STATE(7729)] = 355431, - [SMALL_STATE(7730)] = 355466, - [SMALL_STATE(7731)] = 355501, - [SMALL_STATE(7732)] = 355536, - [SMALL_STATE(7733)] = 355571, - [SMALL_STATE(7734)] = 355606, - [SMALL_STATE(7735)] = 355641, - [SMALL_STATE(7736)] = 355676, - [SMALL_STATE(7737)] = 355711, - [SMALL_STATE(7738)] = 355749, - [SMALL_STATE(7739)] = 355785, - [SMALL_STATE(7740)] = 355831, - [SMALL_STATE(7741)] = 355877, - [SMALL_STATE(7742)] = 355915, - [SMALL_STATE(7743)] = 355953, - [SMALL_STATE(7744)] = 355991, - [SMALL_STATE(7745)] = 356037, - [SMALL_STATE(7746)] = 356083, - [SMALL_STATE(7747)] = 356119, - [SMALL_STATE(7748)] = 356165, - [SMALL_STATE(7749)] = 356203, - [SMALL_STATE(7750)] = 356239, - [SMALL_STATE(7751)] = 356272, - [SMALL_STATE(7752)] = 356308, - [SMALL_STATE(7753)] = 356344, - [SMALL_STATE(7754)] = 356378, - [SMALL_STATE(7755)] = 356414, - [SMALL_STATE(7756)] = 356450, - [SMALL_STATE(7757)] = 356494, - [SMALL_STATE(7758)] = 356538, - [SMALL_STATE(7759)] = 356574, - [SMALL_STATE(7760)] = 356608, - [SMALL_STATE(7761)] = 356644, - [SMALL_STATE(7762)] = 356688, - [SMALL_STATE(7763)] = 356724, - [SMALL_STATE(7764)] = 356760, - [SMALL_STATE(7765)] = 356796, - [SMALL_STATE(7766)] = 356840, - [SMALL_STATE(7767)] = 356876, - [SMALL_STATE(7768)] = 356920, - [SMALL_STATE(7769)] = 356964, - [SMALL_STATE(7770)] = 357008, - [SMALL_STATE(7771)] = 357042, - [SMALL_STATE(7772)] = 357076, - [SMALL_STATE(7773)] = 357112, - [SMALL_STATE(7774)] = 357148, - [SMALL_STATE(7775)] = 357184, - [SMALL_STATE(7776)] = 357218, - [SMALL_STATE(7777)] = 357251, - [SMALL_STATE(7778)] = 357284, - [SMALL_STATE(7779)] = 357317, - [SMALL_STATE(7780)] = 357348, - [SMALL_STATE(7781)] = 357381, - [SMALL_STATE(7782)] = 357414, - [SMALL_STATE(7783)] = 357447, - [SMALL_STATE(7784)] = 357478, - [SMALL_STATE(7785)] = 357509, - [SMALL_STATE(7786)] = 357542, - [SMALL_STATE(7787)] = 357583, - [SMALL_STATE(7788)] = 357614, - [SMALL_STATE(7789)] = 357645, - [SMALL_STATE(7790)] = 357676, - [SMALL_STATE(7791)] = 357707, - [SMALL_STATE(7792)] = 357738, - [SMALL_STATE(7793)] = 357775, - [SMALL_STATE(7794)] = 357806, - [SMALL_STATE(7795)] = 357837, - [SMALL_STATE(7796)] = 357868, - [SMALL_STATE(7797)] = 357899, - [SMALL_STATE(7798)] = 357930, - [SMALL_STATE(7799)] = 357963, - [SMALL_STATE(7800)] = 357994, - [SMALL_STATE(7801)] = 358027, - [SMALL_STATE(7802)] = 358058, - [SMALL_STATE(7803)] = 358091, - [SMALL_STATE(7804)] = 358122, - [SMALL_STATE(7805)] = 358155, - [SMALL_STATE(7806)] = 358188, - [SMALL_STATE(7807)] = 358221, - [SMALL_STATE(7808)] = 358254, - [SMALL_STATE(7809)] = 358287, - [SMALL_STATE(7810)] = 358320, - [SMALL_STATE(7811)] = 358353, - [SMALL_STATE(7812)] = 358386, - [SMALL_STATE(7813)] = 358419, - [SMALL_STATE(7814)] = 358452, - [SMALL_STATE(7815)] = 358483, - [SMALL_STATE(7816)] = 358514, - [SMALL_STATE(7817)] = 358547, - [SMALL_STATE(7818)] = 358580, - [SMALL_STATE(7819)] = 358613, - [SMALL_STATE(7820)] = 358646, - [SMALL_STATE(7821)] = 358687, - [SMALL_STATE(7822)] = 358728, - [SMALL_STATE(7823)] = 358761, - [SMALL_STATE(7824)] = 358794, - [SMALL_STATE(7825)] = 358835, - [SMALL_STATE(7826)] = 358877, - [SMALL_STATE(7827)] = 358911, - [SMALL_STATE(7828)] = 358943, - [SMALL_STATE(7829)] = 358985, - [SMALL_STATE(7830)] = 359027, - [SMALL_STATE(7831)] = 359059, - [SMALL_STATE(7832)] = 359097, - [SMALL_STATE(7833)] = 359135, - [SMALL_STATE(7834)] = 359165, - [SMALL_STATE(7835)] = 359199, - [SMALL_STATE(7836)] = 359231, - [SMALL_STATE(7837)] = 359263, - [SMALL_STATE(7838)] = 359305, - [SMALL_STATE(7839)] = 359347, - [SMALL_STATE(7840)] = 359389, - [SMALL_STATE(7841)] = 359419, - [SMALL_STATE(7842)] = 359461, - [SMALL_STATE(7843)] = 359503, - [SMALL_STATE(7844)] = 359535, - [SMALL_STATE(7845)] = 359573, - [SMALL_STATE(7846)] = 359611, - [SMALL_STATE(7847)] = 359653, - [SMALL_STATE(7848)] = 359691, - [SMALL_STATE(7849)] = 359729, - [SMALL_STATE(7850)] = 359771, - [SMALL_STATE(7851)] = 359800, - [SMALL_STATE(7852)] = 359829, - [SMALL_STATE(7853)] = 359858, - [SMALL_STATE(7854)] = 359887, - [SMALL_STATE(7855)] = 359916, - [SMALL_STATE(7856)] = 359945, - [SMALL_STATE(7857)] = 359974, - [SMALL_STATE(7858)] = 360003, - [SMALL_STATE(7859)] = 360032, - [SMALL_STATE(7860)] = 360061, - [SMALL_STATE(7861)] = 360090, - [SMALL_STATE(7862)] = 360119, - [SMALL_STATE(7863)] = 360150, - [SMALL_STATE(7864)] = 360183, - [SMALL_STATE(7865)] = 360212, - [SMALL_STATE(7866)] = 360245, - [SMALL_STATE(7867)] = 360274, - [SMALL_STATE(7868)] = 360303, - [SMALL_STATE(7869)] = 360332, - [SMALL_STATE(7870)] = 360361, - [SMALL_STATE(7871)] = 360391, - [SMALL_STATE(7872)] = 360441, - [SMALL_STATE(7873)] = 360481, - [SMALL_STATE(7874)] = 360531, - [SMALL_STATE(7875)] = 360571, - [SMALL_STATE(7876)] = 360621, - [SMALL_STATE(7877)] = 360653, - [SMALL_STATE(7878)] = 360685, - [SMALL_STATE(7879)] = 360717, - [SMALL_STATE(7880)] = 360749, - [SMALL_STATE(7881)] = 360799, - [SMALL_STATE(7882)] = 360827, - [SMALL_STATE(7883)] = 360859, - [SMALL_STATE(7884)] = 360891, - [SMALL_STATE(7885)] = 360921, - [SMALL_STATE(7886)] = 360961, - [SMALL_STATE(7887)] = 361011, - [SMALL_STATE(7888)] = 361043, - [SMALL_STATE(7889)] = 361083, - [SMALL_STATE(7890)] = 361115, - [SMALL_STATE(7891)] = 361145, - [SMALL_STATE(7892)] = 361177, - [SMALL_STATE(7893)] = 361217, - [SMALL_STATE(7894)] = 361257, - [SMALL_STATE(7895)] = 361307, - [SMALL_STATE(7896)] = 361339, - [SMALL_STATE(7897)] = 361379, - [SMALL_STATE(7898)] = 361411, - [SMALL_STATE(7899)] = 361443, - [SMALL_STATE(7900)] = 361475, - [SMALL_STATE(7901)] = 361505, - [SMALL_STATE(7902)] = 361533, - [SMALL_STATE(7903)] = 361583, - [SMALL_STATE(7904)] = 361623, - [SMALL_STATE(7905)] = 361673, - [SMALL_STATE(7906)] = 361700, - [SMALL_STATE(7907)] = 361727, - [SMALL_STATE(7908)] = 361754, - [SMALL_STATE(7909)] = 361781, - [SMALL_STATE(7910)] = 361808, - [SMALL_STATE(7911)] = 361845, - [SMALL_STATE(7912)] = 361872, - [SMALL_STATE(7913)] = 361899, - [SMALL_STATE(7914)] = 361936, - [SMALL_STATE(7915)] = 361963, - [SMALL_STATE(7916)] = 361990, - [SMALL_STATE(7917)] = 362017, - [SMALL_STATE(7918)] = 362044, - [SMALL_STATE(7919)] = 362071, - [SMALL_STATE(7920)] = 362098, - [SMALL_STATE(7921)] = 362125, - [SMALL_STATE(7922)] = 362168, - [SMALL_STATE(7923)] = 362195, - [SMALL_STATE(7924)] = 362222, - [SMALL_STATE(7925)] = 362249, - [SMALL_STATE(7926)] = 362276, - [SMALL_STATE(7927)] = 362303, - [SMALL_STATE(7928)] = 362346, - [SMALL_STATE(7929)] = 362373, - [SMALL_STATE(7930)] = 362400, - [SMALL_STATE(7931)] = 362427, - [SMALL_STATE(7932)] = 362454, - [SMALL_STATE(7933)] = 362497, - [SMALL_STATE(7934)] = 362524, - [SMALL_STATE(7935)] = 362567, - [SMALL_STATE(7936)] = 362594, - [SMALL_STATE(7937)] = 362621, - [SMALL_STATE(7938)] = 362648, - [SMALL_STATE(7939)] = 362675, - [SMALL_STATE(7940)] = 362702, - [SMALL_STATE(7941)] = 362745, - [SMALL_STATE(7942)] = 362772, - [SMALL_STATE(7943)] = 362799, - [SMALL_STATE(7944)] = 362842, - [SMALL_STATE(7945)] = 362877, - [SMALL_STATE(7946)] = 362904, - [SMALL_STATE(7947)] = 362931, - [SMALL_STATE(7948)] = 362958, - [SMALL_STATE(7949)] = 363001, - [SMALL_STATE(7950)] = 363028, - [SMALL_STATE(7951)] = 363065, - [SMALL_STATE(7952)] = 363108, - [SMALL_STATE(7953)] = 363135, - [SMALL_STATE(7954)] = 363174, - [SMALL_STATE(7955)] = 363217, - [SMALL_STATE(7956)] = 363244, - [SMALL_STATE(7957)] = 363271, - [SMALL_STATE(7958)] = 363314, - [SMALL_STATE(7959)] = 363341, - [SMALL_STATE(7960)] = 363384, - [SMALL_STATE(7961)] = 363431, - [SMALL_STATE(7962)] = 363458, - [SMALL_STATE(7963)] = 363485, - [SMALL_STATE(7964)] = 363512, - [SMALL_STATE(7965)] = 363539, - [SMALL_STATE(7966)] = 363566, - [SMALL_STATE(7967)] = 363609, - [SMALL_STATE(7968)] = 363636, - [SMALL_STATE(7969)] = 363679, - [SMALL_STATE(7970)] = 363706, - [SMALL_STATE(7971)] = 363735, - [SMALL_STATE(7972)] = 363762, - [SMALL_STATE(7973)] = 363797, - [SMALL_STATE(7974)] = 363824, - [SMALL_STATE(7975)] = 363867, - [SMALL_STATE(7976)] = 363894, - [SMALL_STATE(7977)] = 363921, - [SMALL_STATE(7978)] = 363964, - [SMALL_STATE(7979)] = 363991, - [SMALL_STATE(7980)] = 364034, - [SMALL_STATE(7981)] = 364061, - [SMALL_STATE(7982)] = 364104, - [SMALL_STATE(7983)] = 364131, - [SMALL_STATE(7984)] = 364158, - [SMALL_STATE(7985)] = 364185, - [SMALL_STATE(7986)] = 364212, - [SMALL_STATE(7987)] = 364243, - [SMALL_STATE(7988)] = 364286, - [SMALL_STATE(7989)] = 364313, - [SMALL_STATE(7990)] = 364356, - [SMALL_STATE(7991)] = 364399, - [SMALL_STATE(7992)] = 364442, - [SMALL_STATE(7993)] = 364469, - [SMALL_STATE(7994)] = 364512, - [SMALL_STATE(7995)] = 364555, - [SMALL_STATE(7996)] = 364598, - [SMALL_STATE(7997)] = 364625, - [SMALL_STATE(7998)] = 364652, - [SMALL_STATE(7999)] = 364679, - [SMALL_STATE(8000)] = 364706, - [SMALL_STATE(8001)] = 364733, - [SMALL_STATE(8002)] = 364760, - [SMALL_STATE(8003)] = 364787, - [SMALL_STATE(8004)] = 364814, - [SMALL_STATE(8005)] = 364841, - [SMALL_STATE(8006)] = 364868, - [SMALL_STATE(8007)] = 364895, - [SMALL_STATE(8008)] = 364922, - [SMALL_STATE(8009)] = 364949, - [SMALL_STATE(8010)] = 364976, - [SMALL_STATE(8011)] = 365003, - [SMALL_STATE(8012)] = 365030, - [SMALL_STATE(8013)] = 365057, - [SMALL_STATE(8014)] = 365104, - [SMALL_STATE(8015)] = 365135, - [SMALL_STATE(8016)] = 365162, - [SMALL_STATE(8017)] = 365189, - [SMALL_STATE(8018)] = 365216, - [SMALL_STATE(8019)] = 365243, - [SMALL_STATE(8020)] = 365270, - [SMALL_STATE(8021)] = 365297, - [SMALL_STATE(8022)] = 365324, - [SMALL_STATE(8023)] = 365351, - [SMALL_STATE(8024)] = 365378, - [SMALL_STATE(8025)] = 365405, - [SMALL_STATE(8026)] = 365432, - [SMALL_STATE(8027)] = 365459, - [SMALL_STATE(8028)] = 365486, - [SMALL_STATE(8029)] = 365513, - [SMALL_STATE(8030)] = 365540, - [SMALL_STATE(8031)] = 365567, - [SMALL_STATE(8032)] = 365594, - [SMALL_STATE(8033)] = 365621, - [SMALL_STATE(8034)] = 365648, - [SMALL_STATE(8035)] = 365675, - [SMALL_STATE(8036)] = 365702, - [SMALL_STATE(8037)] = 365733, - [SMALL_STATE(8038)] = 365760, - [SMALL_STATE(8039)] = 365787, - [SMALL_STATE(8040)] = 365814, - [SMALL_STATE(8041)] = 365841, - [SMALL_STATE(8042)] = 365868, - [SMALL_STATE(8043)] = 365895, - [SMALL_STATE(8044)] = 365922, - [SMALL_STATE(8045)] = 365949, - [SMALL_STATE(8046)] = 365976, - [SMALL_STATE(8047)] = 366003, - [SMALL_STATE(8048)] = 366030, - [SMALL_STATE(8049)] = 366073, - [SMALL_STATE(8050)] = 366100, - [SMALL_STATE(8051)] = 366127, - [SMALL_STATE(8052)] = 366154, - [SMALL_STATE(8053)] = 366181, - [SMALL_STATE(8054)] = 366208, - [SMALL_STATE(8055)] = 366235, - [SMALL_STATE(8056)] = 366262, - [SMALL_STATE(8057)] = 366289, - [SMALL_STATE(8058)] = 366316, - [SMALL_STATE(8059)] = 366343, - [SMALL_STATE(8060)] = 366376, - [SMALL_STATE(8061)] = 366403, - [SMALL_STATE(8062)] = 366440, - [SMALL_STATE(8063)] = 366467, - [SMALL_STATE(8064)] = 366494, - [SMALL_STATE(8065)] = 366525, - [SMALL_STATE(8066)] = 366559, - [SMALL_STATE(8067)] = 366593, - [SMALL_STATE(8068)] = 366619, - [SMALL_STATE(8069)] = 366653, - [SMALL_STATE(8070)] = 366687, - [SMALL_STATE(8071)] = 366717, - [SMALL_STATE(8072)] = 366759, - [SMALL_STATE(8073)] = 366785, - [SMALL_STATE(8074)] = 366815, - [SMALL_STATE(8075)] = 366853, - [SMALL_STATE(8076)] = 366879, - [SMALL_STATE(8077)] = 366909, - [SMALL_STATE(8078)] = 366951, - [SMALL_STATE(8079)] = 366979, - [SMALL_STATE(8080)] = 367009, - [SMALL_STATE(8081)] = 367043, - [SMALL_STATE(8082)] = 367081, - [SMALL_STATE(8083)] = 367115, - [SMALL_STATE(8084)] = 367146, - [SMALL_STATE(8085)] = 367175, - [SMALL_STATE(8086)] = 367204, - [SMALL_STATE(8087)] = 367235, - [SMALL_STATE(8088)] = 367264, - [SMALL_STATE(8089)] = 367299, - [SMALL_STATE(8090)] = 367328, - [SMALL_STATE(8091)] = 367357, - [SMALL_STATE(8092)] = 367386, - [SMALL_STATE(8093)] = 367413, - [SMALL_STATE(8094)] = 367440, - [SMALL_STATE(8095)] = 367469, - [SMALL_STATE(8096)] = 367496, - [SMALL_STATE(8097)] = 367531, - [SMALL_STATE(8098)] = 367560, - [SMALL_STATE(8099)] = 367589, - [SMALL_STATE(8100)] = 367624, - [SMALL_STATE(8101)] = 367649, - [SMALL_STATE(8102)] = 367684, - [SMALL_STATE(8103)] = 367713, - [SMALL_STATE(8104)] = 367737, - [SMALL_STATE(8105)] = 367765, - [SMALL_STATE(8106)] = 367791, - [SMALL_STATE(8107)] = 367823, - [SMALL_STATE(8108)] = 367855, - [SMALL_STATE(8109)] = 367879, - [SMALL_STATE(8110)] = 367915, - [SMALL_STATE(8111)] = 367951, - [SMALL_STATE(8112)] = 367979, - [SMALL_STATE(8113)] = 368007, - [SMALL_STATE(8114)] = 368035, - [SMALL_STATE(8115)] = 368073, - [SMALL_STATE(8116)] = 368109, - [SMALL_STATE(8117)] = 368145, - [SMALL_STATE(8118)] = 368173, - [SMALL_STATE(8119)] = 368197, - [SMALL_STATE(8120)] = 368225, - [SMALL_STATE(8121)] = 368253, - [SMALL_STATE(8122)] = 368289, - [SMALL_STATE(8123)] = 368325, - [SMALL_STATE(8124)] = 368353, - [SMALL_STATE(8125)] = 368377, - [SMALL_STATE(8126)] = 368403, - [SMALL_STATE(8127)] = 368431, - [SMALL_STATE(8128)] = 368463, - [SMALL_STATE(8129)] = 368491, - [SMALL_STATE(8130)] = 368515, - [SMALL_STATE(8131)] = 368547, - [SMALL_STATE(8132)] = 368575, - [SMALL_STATE(8133)] = 368601, - [SMALL_STATE(8134)] = 368629, - [SMALL_STATE(8135)] = 368655, - [SMALL_STATE(8136)] = 368687, - [SMALL_STATE(8137)] = 368719, - [SMALL_STATE(8138)] = 368743, - [SMALL_STATE(8139)] = 368771, - [SMALL_STATE(8140)] = 368807, - [SMALL_STATE(8141)] = 368833, - [SMALL_STATE(8142)] = 368856, - [SMALL_STATE(8143)] = 368881, - [SMALL_STATE(8144)] = 368906, - [SMALL_STATE(8145)] = 368933, - [SMALL_STATE(8146)] = 368968, - [SMALL_STATE(8147)] = 369003, - [SMALL_STATE(8148)] = 369026, - [SMALL_STATE(8149)] = 369049, - [SMALL_STATE(8150)] = 369072, - [SMALL_STATE(8151)] = 369099, - [SMALL_STATE(8152)] = 369134, - [SMALL_STATE(8153)] = 369169, - [SMALL_STATE(8154)] = 369192, - [SMALL_STATE(8155)] = 369215, - [SMALL_STATE(8156)] = 369238, - [SMALL_STATE(8157)] = 369261, - [SMALL_STATE(8158)] = 369284, - [SMALL_STATE(8159)] = 369307, - [SMALL_STATE(8160)] = 369342, - [SMALL_STATE(8161)] = 369377, - [SMALL_STATE(8162)] = 369400, - [SMALL_STATE(8163)] = 369425, - [SMALL_STATE(8164)] = 369448, - [SMALL_STATE(8165)] = 369471, - [SMALL_STATE(8166)] = 369494, - [SMALL_STATE(8167)] = 369517, - [SMALL_STATE(8168)] = 369540, - [SMALL_STATE(8169)] = 369563, - [SMALL_STATE(8170)] = 369586, - [SMALL_STATE(8171)] = 369609, - [SMALL_STATE(8172)] = 369632, - [SMALL_STATE(8173)] = 369655, - [SMALL_STATE(8174)] = 369678, - [SMALL_STATE(8175)] = 369701, - [SMALL_STATE(8176)] = 369724, - [SMALL_STATE(8177)] = 369747, - [SMALL_STATE(8178)] = 369770, - [SMALL_STATE(8179)] = 369805, - [SMALL_STATE(8180)] = 369828, - [SMALL_STATE(8181)] = 369859, - [SMALL_STATE(8182)] = 369894, - [SMALL_STATE(8183)] = 369917, - [SMALL_STATE(8184)] = 369940, - [SMALL_STATE(8185)] = 369965, - [SMALL_STATE(8186)] = 369988, - [SMALL_STATE(8187)] = 370011, - [SMALL_STATE(8188)] = 370034, - [SMALL_STATE(8189)] = 370057, - [SMALL_STATE(8190)] = 370080, - [SMALL_STATE(8191)] = 370103, - [SMALL_STATE(8192)] = 370126, - [SMALL_STATE(8193)] = 370151, - [SMALL_STATE(8194)] = 370174, - [SMALL_STATE(8195)] = 370199, - [SMALL_STATE(8196)] = 370234, - [SMALL_STATE(8197)] = 370257, - [SMALL_STATE(8198)] = 370280, - [SMALL_STATE(8199)] = 370303, - [SMALL_STATE(8200)] = 370326, - [SMALL_STATE(8201)] = 370351, - [SMALL_STATE(8202)] = 370374, - [SMALL_STATE(8203)] = 370399, - [SMALL_STATE(8204)] = 370440, - [SMALL_STATE(8205)] = 370463, - [SMALL_STATE(8206)] = 370486, - [SMALL_STATE(8207)] = 370509, - [SMALL_STATE(8208)] = 370532, - [SMALL_STATE(8209)] = 370555, - [SMALL_STATE(8210)] = 370578, - [SMALL_STATE(8211)] = 370605, - [SMALL_STATE(8212)] = 370628, - [SMALL_STATE(8213)] = 370669, - [SMALL_STATE(8214)] = 370692, - [SMALL_STATE(8215)] = 370719, - [SMALL_STATE(8216)] = 370742, - [SMALL_STATE(8217)] = 370765, - [SMALL_STATE(8218)] = 370788, - [SMALL_STATE(8219)] = 370811, - [SMALL_STATE(8220)] = 370834, - [SMALL_STATE(8221)] = 370857, - [SMALL_STATE(8222)] = 370880, - [SMALL_STATE(8223)] = 370903, - [SMALL_STATE(8224)] = 370926, - [SMALL_STATE(8225)] = 370949, - [SMALL_STATE(8226)] = 370984, - [SMALL_STATE(8227)] = 371007, - [SMALL_STATE(8228)] = 371030, - [SMALL_STATE(8229)] = 371065, - [SMALL_STATE(8230)] = 371100, - [SMALL_STATE(8231)] = 371123, - [SMALL_STATE(8232)] = 371146, - [SMALL_STATE(8233)] = 371169, - [SMALL_STATE(8234)] = 371192, - [SMALL_STATE(8235)] = 371227, - [SMALL_STATE(8236)] = 371250, - [SMALL_STATE(8237)] = 371273, - [SMALL_STATE(8238)] = 371296, - [SMALL_STATE(8239)] = 371331, - [SMALL_STATE(8240)] = 371354, - [SMALL_STATE(8241)] = 371377, - [SMALL_STATE(8242)] = 371400, - [SMALL_STATE(8243)] = 371435, - [SMALL_STATE(8244)] = 371458, - [SMALL_STATE(8245)] = 371481, - [SMALL_STATE(8246)] = 371504, - [SMALL_STATE(8247)] = 371527, - [SMALL_STATE(8248)] = 371554, - [SMALL_STATE(8249)] = 371577, - [SMALL_STATE(8250)] = 371600, - [SMALL_STATE(8251)] = 371623, - [SMALL_STATE(8252)] = 371658, - [SMALL_STATE(8253)] = 371681, - [SMALL_STATE(8254)] = 371716, - [SMALL_STATE(8255)] = 371739, - [SMALL_STATE(8256)] = 371762, - [SMALL_STATE(8257)] = 371785, - [SMALL_STATE(8258)] = 371808, - [SMALL_STATE(8259)] = 371831, - [SMALL_STATE(8260)] = 371854, - [SMALL_STATE(8261)] = 371877, - [SMALL_STATE(8262)] = 371900, - [SMALL_STATE(8263)] = 371923, - [SMALL_STATE(8264)] = 371946, - [SMALL_STATE(8265)] = 371969, - [SMALL_STATE(8266)] = 371992, - [SMALL_STATE(8267)] = 372015, - [SMALL_STATE(8268)] = 372038, - [SMALL_STATE(8269)] = 372069, - [SMALL_STATE(8270)] = 372092, - [SMALL_STATE(8271)] = 372115, - [SMALL_STATE(8272)] = 372138, - [SMALL_STATE(8273)] = 372161, - [SMALL_STATE(8274)] = 372184, - [SMALL_STATE(8275)] = 372207, - [SMALL_STATE(8276)] = 372230, - [SMALL_STATE(8277)] = 372253, - [SMALL_STATE(8278)] = 372276, - [SMALL_STATE(8279)] = 372299, - [SMALL_STATE(8280)] = 372322, - [SMALL_STATE(8281)] = 372345, - [SMALL_STATE(8282)] = 372368, - [SMALL_STATE(8283)] = 372391, - [SMALL_STATE(8284)] = 372414, - [SMALL_STATE(8285)] = 372437, - [SMALL_STATE(8286)] = 372460, - [SMALL_STATE(8287)] = 372483, - [SMALL_STATE(8288)] = 372506, - [SMALL_STATE(8289)] = 372529, - [SMALL_STATE(8290)] = 372552, - [SMALL_STATE(8291)] = 372575, - [SMALL_STATE(8292)] = 372610, - [SMALL_STATE(8293)] = 372633, - [SMALL_STATE(8294)] = 372656, - [SMALL_STATE(8295)] = 372679, - [SMALL_STATE(8296)] = 372702, - [SMALL_STATE(8297)] = 372725, - [SMALL_STATE(8298)] = 372748, - [SMALL_STATE(8299)] = 372771, - [SMALL_STATE(8300)] = 372794, - [SMALL_STATE(8301)] = 372817, - [SMALL_STATE(8302)] = 372840, - [SMALL_STATE(8303)] = 372863, - [SMALL_STATE(8304)] = 372886, - [SMALL_STATE(8305)] = 372909, - [SMALL_STATE(8306)] = 372936, - [SMALL_STATE(8307)] = 372959, - [SMALL_STATE(8308)] = 372982, - [SMALL_STATE(8309)] = 373005, - [SMALL_STATE(8310)] = 373028, - [SMALL_STATE(8311)] = 373069, - [SMALL_STATE(8312)] = 373094, - [SMALL_STATE(8313)] = 373119, - [SMALL_STATE(8314)] = 373142, - [SMALL_STATE(8315)] = 373177, - [SMALL_STATE(8316)] = 373212, - [SMALL_STATE(8317)] = 373235, - [SMALL_STATE(8318)] = 373260, - [SMALL_STATE(8319)] = 373285, - [SMALL_STATE(8320)] = 373308, - [SMALL_STATE(8321)] = 373331, - [SMALL_STATE(8322)] = 373354, - [SMALL_STATE(8323)] = 373377, - [SMALL_STATE(8324)] = 373411, - [SMALL_STATE(8325)] = 373445, - [SMALL_STATE(8326)] = 373479, - [SMALL_STATE(8327)] = 373505, - [SMALL_STATE(8328)] = 373539, - [SMALL_STATE(8329)] = 373573, - [SMALL_STATE(8330)] = 373599, - [SMALL_STATE(8331)] = 373633, - [SMALL_STATE(8332)] = 373667, - [SMALL_STATE(8333)] = 373701, - [SMALL_STATE(8334)] = 373735, - [SMALL_STATE(8335)] = 373757, - [SMALL_STATE(8336)] = 373779, - [SMALL_STATE(8337)] = 373813, - [SMALL_STATE(8338)] = 373847, - [SMALL_STATE(8339)] = 373873, - [SMALL_STATE(8340)] = 373907, - [SMALL_STATE(8341)] = 373941, - [SMALL_STATE(8342)] = 373975, - [SMALL_STATE(8343)] = 374009, - [SMALL_STATE(8344)] = 374033, - [SMALL_STATE(8345)] = 374069, - [SMALL_STATE(8346)] = 374095, - [SMALL_STATE(8347)] = 374129, - [SMALL_STATE(8348)] = 374151, - [SMALL_STATE(8349)] = 374173, - [SMALL_STATE(8350)] = 374207, - [SMALL_STATE(8351)] = 374243, - [SMALL_STATE(8352)] = 374269, - [SMALL_STATE(8353)] = 374303, - [SMALL_STATE(8354)] = 374337, - [SMALL_STATE(8355)] = 374363, - [SMALL_STATE(8356)] = 374397, - [SMALL_STATE(8357)] = 374431, - [SMALL_STATE(8358)] = 374465, - [SMALL_STATE(8359)] = 374499, - [SMALL_STATE(8360)] = 374535, - [SMALL_STATE(8361)] = 374557, - [SMALL_STATE(8362)] = 374591, - [SMALL_STATE(8363)] = 374625, - [SMALL_STATE(8364)] = 374659, - [SMALL_STATE(8365)] = 374695, - [SMALL_STATE(8366)] = 374717, - [SMALL_STATE(8367)] = 374739, - [SMALL_STATE(8368)] = 374773, - [SMALL_STATE(8369)] = 374799, - [SMALL_STATE(8370)] = 374833, - [SMALL_STATE(8371)] = 374867, - [SMALL_STATE(8372)] = 374901, - [SMALL_STATE(8373)] = 374927, - [SMALL_STATE(8374)] = 374961, - [SMALL_STATE(8375)] = 374995, - [SMALL_STATE(8376)] = 375017, - [SMALL_STATE(8377)] = 375053, - [SMALL_STATE(8378)] = 375079, - [SMALL_STATE(8379)] = 375113, - [SMALL_STATE(8380)] = 375147, - [SMALL_STATE(8381)] = 375181, - [SMALL_STATE(8382)] = 375203, - [SMALL_STATE(8383)] = 375239, - [SMALL_STATE(8384)] = 375273, - [SMALL_STATE(8385)] = 375295, - [SMALL_STATE(8386)] = 375317, - [SMALL_STATE(8387)] = 375351, - [SMALL_STATE(8388)] = 375373, - [SMALL_STATE(8389)] = 375407, - [SMALL_STATE(8390)] = 375443, - [SMALL_STATE(8391)] = 375465, - [SMALL_STATE(8392)] = 375499, - [SMALL_STATE(8393)] = 375533, - [SMALL_STATE(8394)] = 375569, - [SMALL_STATE(8395)] = 375591, - [SMALL_STATE(8396)] = 375625, - [SMALL_STATE(8397)] = 375647, - [SMALL_STATE(8398)] = 375669, - [SMALL_STATE(8399)] = 375703, - [SMALL_STATE(8400)] = 375725, - [SMALL_STATE(8401)] = 375759, - [SMALL_STATE(8402)] = 375793, - [SMALL_STATE(8403)] = 375815, - [SMALL_STATE(8404)] = 375851, - [SMALL_STATE(8405)] = 375885, - [SMALL_STATE(8406)] = 375911, - [SMALL_STATE(8407)] = 375933, - [SMALL_STATE(8408)] = 375967, - [SMALL_STATE(8409)] = 375989, - [SMALL_STATE(8410)] = 376023, - [SMALL_STATE(8411)] = 376057, - [SMALL_STATE(8412)] = 376079, - [SMALL_STATE(8413)] = 376101, - [SMALL_STATE(8414)] = 376123, - [SMALL_STATE(8415)] = 376145, - [SMALL_STATE(8416)] = 376179, - [SMALL_STATE(8417)] = 376213, - [SMALL_STATE(8418)] = 376247, - [SMALL_STATE(8419)] = 376269, - [SMALL_STATE(8420)] = 376291, - [SMALL_STATE(8421)] = 376313, - [SMALL_STATE(8422)] = 376335, - [SMALL_STATE(8423)] = 376369, - [SMALL_STATE(8424)] = 376403, - [SMALL_STATE(8425)] = 376437, - [SMALL_STATE(8426)] = 376471, - [SMALL_STATE(8427)] = 376493, - [SMALL_STATE(8428)] = 376515, - [SMALL_STATE(8429)] = 376549, - [SMALL_STATE(8430)] = 376571, - [SMALL_STATE(8431)] = 376605, - [SMALL_STATE(8432)] = 376639, - [SMALL_STATE(8433)] = 376661, - [SMALL_STATE(8434)] = 376695, - [SMALL_STATE(8435)] = 376717, - [SMALL_STATE(8436)] = 376751, - [SMALL_STATE(8437)] = 376787, - [SMALL_STATE(8438)] = 376809, - [SMALL_STATE(8439)] = 376843, - [SMALL_STATE(8440)] = 376877, - [SMALL_STATE(8441)] = 376911, - [SMALL_STATE(8442)] = 376945, - [SMALL_STATE(8443)] = 376967, - [SMALL_STATE(8444)] = 377001, - [SMALL_STATE(8445)] = 377035, - [SMALL_STATE(8446)] = 377057, - [SMALL_STATE(8447)] = 377079, - [SMALL_STATE(8448)] = 377113, - [SMALL_STATE(8449)] = 377135, - [SMALL_STATE(8450)] = 377157, - [SMALL_STATE(8451)] = 377191, - [SMALL_STATE(8452)] = 377213, - [SMALL_STATE(8453)] = 377247, - [SMALL_STATE(8454)] = 377269, - [SMALL_STATE(8455)] = 377291, - [SMALL_STATE(8456)] = 377325, - [SMALL_STATE(8457)] = 377359, - [SMALL_STATE(8458)] = 377381, - [SMALL_STATE(8459)] = 377403, - [SMALL_STATE(8460)] = 377437, - [SMALL_STATE(8461)] = 377471, - [SMALL_STATE(8462)] = 377505, - [SMALL_STATE(8463)] = 377541, - [SMALL_STATE(8464)] = 377575, - [SMALL_STATE(8465)] = 377609, - [SMALL_STATE(8466)] = 377637, - [SMALL_STATE(8467)] = 377663, - [SMALL_STATE(8468)] = 377685, - [SMALL_STATE(8469)] = 377707, - [SMALL_STATE(8470)] = 377741, - [SMALL_STATE(8471)] = 377777, - [SMALL_STATE(8472)] = 377803, - [SMALL_STATE(8473)] = 377837, - [SMALL_STATE(8474)] = 377871, - [SMALL_STATE(8475)] = 377905, - [SMALL_STATE(8476)] = 377927, - [SMALL_STATE(8477)] = 377961, - [SMALL_STATE(8478)] = 377995, - [SMALL_STATE(8479)] = 378029, - [SMALL_STATE(8480)] = 378051, - [SMALL_STATE(8481)] = 378073, - [SMALL_STATE(8482)] = 378109, - [SMALL_STATE(8483)] = 378143, - [SMALL_STATE(8484)] = 378177, - [SMALL_STATE(8485)] = 378199, - [SMALL_STATE(8486)] = 378221, - [SMALL_STATE(8487)] = 378245, - [SMALL_STATE(8488)] = 378281, - [SMALL_STATE(8489)] = 378305, - [SMALL_STATE(8490)] = 378341, - [SMALL_STATE(8491)] = 378375, - [SMALL_STATE(8492)] = 378401, - [SMALL_STATE(8493)] = 378425, - [SMALL_STATE(8494)] = 378459, - [SMALL_STATE(8495)] = 378494, - [SMALL_STATE(8496)] = 378529, - [SMALL_STATE(8497)] = 378564, - [SMALL_STATE(8498)] = 378599, - [SMALL_STATE(8499)] = 378634, - [SMALL_STATE(8500)] = 378655, - [SMALL_STATE(8501)] = 378690, - [SMALL_STATE(8502)] = 378711, - [SMALL_STATE(8503)] = 378746, - [SMALL_STATE(8504)] = 378767, - [SMALL_STATE(8505)] = 378800, - [SMALL_STATE(8506)] = 378821, - [SMALL_STATE(8507)] = 378852, - [SMALL_STATE(8508)] = 378873, - [SMALL_STATE(8509)] = 378894, - [SMALL_STATE(8510)] = 378929, - [SMALL_STATE(8511)] = 378962, - [SMALL_STATE(8512)] = 378997, - [SMALL_STATE(8513)] = 379032, - [SMALL_STATE(8514)] = 379053, - [SMALL_STATE(8515)] = 379088, - [SMALL_STATE(8516)] = 379109, - [SMALL_STATE(8517)] = 379140, - [SMALL_STATE(8518)] = 379175, - [SMALL_STATE(8519)] = 379196, - [SMALL_STATE(8520)] = 379231, - [SMALL_STATE(8521)] = 379252, - [SMALL_STATE(8522)] = 379287, - [SMALL_STATE(8523)] = 379308, - [SMALL_STATE(8524)] = 379341, - [SMALL_STATE(8525)] = 379362, - [SMALL_STATE(8526)] = 379397, - [SMALL_STATE(8527)] = 379418, - [SMALL_STATE(8528)] = 379453, - [SMALL_STATE(8529)] = 379488, - [SMALL_STATE(8530)] = 379509, - [SMALL_STATE(8531)] = 379540, - [SMALL_STATE(8532)] = 379575, - [SMALL_STATE(8533)] = 379610, - [SMALL_STATE(8534)] = 379631, - [SMALL_STATE(8535)] = 379652, - [SMALL_STATE(8536)] = 379687, - [SMALL_STATE(8537)] = 379708, - [SMALL_STATE(8538)] = 379743, - [SMALL_STATE(8539)] = 379768, - [SMALL_STATE(8540)] = 379789, - [SMALL_STATE(8541)] = 379810, - [SMALL_STATE(8542)] = 379845, - [SMALL_STATE(8543)] = 379880, - [SMALL_STATE(8544)] = 379911, - [SMALL_STATE(8545)] = 379946, - [SMALL_STATE(8546)] = 379981, - [SMALL_STATE(8547)] = 380002, - [SMALL_STATE(8548)] = 380037, - [SMALL_STATE(8549)] = 380058, - [SMALL_STATE(8550)] = 380079, - [SMALL_STATE(8551)] = 380110, - [SMALL_STATE(8552)] = 380131, - [SMALL_STATE(8553)] = 380152, - [SMALL_STATE(8554)] = 380173, - [SMALL_STATE(8555)] = 380194, - [SMALL_STATE(8556)] = 380229, - [SMALL_STATE(8557)] = 380260, - [SMALL_STATE(8558)] = 380295, - [SMALL_STATE(8559)] = 380328, - [SMALL_STATE(8560)] = 380359, - [SMALL_STATE(8561)] = 380394, - [SMALL_STATE(8562)] = 380429, - [SMALL_STATE(8563)] = 380464, - [SMALL_STATE(8564)] = 380499, - [SMALL_STATE(8565)] = 380534, - [SMALL_STATE(8566)] = 380569, - [SMALL_STATE(8567)] = 380604, - [SMALL_STATE(8568)] = 380639, - [SMALL_STATE(8569)] = 380660, - [SMALL_STATE(8570)] = 380681, - [SMALL_STATE(8571)] = 380716, - [SMALL_STATE(8572)] = 380751, - [SMALL_STATE(8573)] = 380784, - [SMALL_STATE(8574)] = 380815, - [SMALL_STATE(8575)] = 380836, - [SMALL_STATE(8576)] = 380857, - [SMALL_STATE(8577)] = 380892, - [SMALL_STATE(8578)] = 380927, - [SMALL_STATE(8579)] = 380950, - [SMALL_STATE(8580)] = 380985, - [SMALL_STATE(8581)] = 381020, - [SMALL_STATE(8582)] = 381051, - [SMALL_STATE(8583)] = 381086, - [SMALL_STATE(8584)] = 381121, - [SMALL_STATE(8585)] = 381142, - [SMALL_STATE(8586)] = 381177, - [SMALL_STATE(8587)] = 381198, - [SMALL_STATE(8588)] = 381219, - [SMALL_STATE(8589)] = 381240, - [SMALL_STATE(8590)] = 381275, - [SMALL_STATE(8591)] = 381306, - [SMALL_STATE(8592)] = 381341, - [SMALL_STATE(8593)] = 381376, - [SMALL_STATE(8594)] = 381411, - [SMALL_STATE(8595)] = 381446, - [SMALL_STATE(8596)] = 381479, - [SMALL_STATE(8597)] = 381500, - [SMALL_STATE(8598)] = 381521, - [SMALL_STATE(8599)] = 381552, - [SMALL_STATE(8600)] = 381587, - [SMALL_STATE(8601)] = 381622, - [SMALL_STATE(8602)] = 381657, - [SMALL_STATE(8603)] = 381678, - [SMALL_STATE(8604)] = 381709, - [SMALL_STATE(8605)] = 381730, - [SMALL_STATE(8606)] = 381763, - [SMALL_STATE(8607)] = 381794, - [SMALL_STATE(8608)] = 381817, - [SMALL_STATE(8609)] = 381838, - [SMALL_STATE(8610)] = 381859, - [SMALL_STATE(8611)] = 381880, - [SMALL_STATE(8612)] = 381901, - [SMALL_STATE(8613)] = 381932, - [SMALL_STATE(8614)] = 381967, - [SMALL_STATE(8615)] = 381998, - [SMALL_STATE(8616)] = 382031, - [SMALL_STATE(8617)] = 382064, - [SMALL_STATE(8618)] = 382095, - [SMALL_STATE(8619)] = 382128, - [SMALL_STATE(8620)] = 382163, - [SMALL_STATE(8621)] = 382184, - [SMALL_STATE(8622)] = 382219, - [SMALL_STATE(8623)] = 382254, - [SMALL_STATE(8624)] = 382289, - [SMALL_STATE(8625)] = 382310, - [SMALL_STATE(8626)] = 382341, - [SMALL_STATE(8627)] = 382376, - [SMALL_STATE(8628)] = 382411, - [SMALL_STATE(8629)] = 382432, - [SMALL_STATE(8630)] = 382467, - [SMALL_STATE(8631)] = 382498, - [SMALL_STATE(8632)] = 382533, - [SMALL_STATE(8633)] = 382568, - [SMALL_STATE(8634)] = 382603, - [SMALL_STATE(8635)] = 382638, - [SMALL_STATE(8636)] = 382673, - [SMALL_STATE(8637)] = 382708, - [SMALL_STATE(8638)] = 382743, - [SMALL_STATE(8639)] = 382778, - [SMALL_STATE(8640)] = 382799, - [SMALL_STATE(8641)] = 382828, - [SMALL_STATE(8642)] = 382863, - [SMALL_STATE(8643)] = 382898, - [SMALL_STATE(8644)] = 382929, - [SMALL_STATE(8645)] = 382950, - [SMALL_STATE(8646)] = 382971, - [SMALL_STATE(8647)] = 382992, - [SMALL_STATE(8648)] = 383027, - [SMALL_STATE(8649)] = 383048, - [SMALL_STATE(8650)] = 383079, - [SMALL_STATE(8651)] = 383114, - [SMALL_STATE(8652)] = 383135, - [SMALL_STATE(8653)] = 383156, - [SMALL_STATE(8654)] = 383191, - [SMALL_STATE(8655)] = 383226, - [SMALL_STATE(8656)] = 383259, - [SMALL_STATE(8657)] = 383280, - [SMALL_STATE(8658)] = 383315, - [SMALL_STATE(8659)] = 383346, - [SMALL_STATE(8660)] = 383381, - [SMALL_STATE(8661)] = 383416, - [SMALL_STATE(8662)] = 383449, - [SMALL_STATE(8663)] = 383484, - [SMALL_STATE(8664)] = 383519, - [SMALL_STATE(8665)] = 383540, - [SMALL_STATE(8666)] = 383563, - [SMALL_STATE(8667)] = 383584, - [SMALL_STATE(8668)] = 383615, - [SMALL_STATE(8669)] = 383650, - [SMALL_STATE(8670)] = 383685, - [SMALL_STATE(8671)] = 383706, - [SMALL_STATE(8672)] = 383741, - [SMALL_STATE(8673)] = 383776, - [SMALL_STATE(8674)] = 383797, - [SMALL_STATE(8675)] = 383832, - [SMALL_STATE(8676)] = 383863, - [SMALL_STATE(8677)] = 383898, - [SMALL_STATE(8678)] = 383933, - [SMALL_STATE(8679)] = 383954, - [SMALL_STATE(8680)] = 383987, - [SMALL_STATE(8681)] = 384018, - [SMALL_STATE(8682)] = 384053, - [SMALL_STATE(8683)] = 384074, - [SMALL_STATE(8684)] = 384107, - [SMALL_STATE(8685)] = 384140, - [SMALL_STATE(8686)] = 384171, - [SMALL_STATE(8687)] = 384204, - [SMALL_STATE(8688)] = 384239, - [SMALL_STATE(8689)] = 384274, - [SMALL_STATE(8690)] = 384295, - [SMALL_STATE(8691)] = 384330, - [SMALL_STATE(8692)] = 384365, - [SMALL_STATE(8693)] = 384394, - [SMALL_STATE(8694)] = 384425, - [SMALL_STATE(8695)] = 384460, - [SMALL_STATE(8696)] = 384495, - [SMALL_STATE(8697)] = 384530, - [SMALL_STATE(8698)] = 384565, - [SMALL_STATE(8699)] = 384600, - [SMALL_STATE(8700)] = 384635, - [SMALL_STATE(8701)] = 384670, - [SMALL_STATE(8702)] = 384703, - [SMALL_STATE(8703)] = 384738, - [SMALL_STATE(8704)] = 384769, - [SMALL_STATE(8705)] = 384790, - [SMALL_STATE(8706)] = 384811, - [SMALL_STATE(8707)] = 384842, - [SMALL_STATE(8708)] = 384877, - [SMALL_STATE(8709)] = 384912, - [SMALL_STATE(8710)] = 384943, - [SMALL_STATE(8711)] = 384978, - [SMALL_STATE(8712)] = 385013, - [SMALL_STATE(8713)] = 385048, - [SMALL_STATE(8714)] = 385083, - [SMALL_STATE(8715)] = 385106, - [SMALL_STATE(8716)] = 385141, - [SMALL_STATE(8717)] = 385172, - [SMALL_STATE(8718)] = 385193, - [SMALL_STATE(8719)] = 385228, - [SMALL_STATE(8720)] = 385249, - [SMALL_STATE(8721)] = 385282, - [SMALL_STATE(8722)] = 385313, - [SMALL_STATE(8723)] = 385334, - [SMALL_STATE(8724)] = 385365, - [SMALL_STATE(8725)] = 385400, - [SMALL_STATE(8726)] = 385435, - [SMALL_STATE(8727)] = 385466, - [SMALL_STATE(8728)] = 385487, - [SMALL_STATE(8729)] = 385508, - [SMALL_STATE(8730)] = 385543, - [SMALL_STATE(8731)] = 385574, - [SMALL_STATE(8732)] = 385597, - [SMALL_STATE(8733)] = 385628, - [SMALL_STATE(8734)] = 385659, - [SMALL_STATE(8735)] = 385692, - [SMALL_STATE(8736)] = 385713, - [SMALL_STATE(8737)] = 385740, - [SMALL_STATE(8738)] = 385775, - [SMALL_STATE(8739)] = 385810, - [SMALL_STATE(8740)] = 385845, - [SMALL_STATE(8741)] = 385880, - [SMALL_STATE(8742)] = 385915, - [SMALL_STATE(8743)] = 385950, - [SMALL_STATE(8744)] = 385971, - [SMALL_STATE(8745)] = 386002, - [SMALL_STATE(8746)] = 386037, - [SMALL_STATE(8747)] = 386072, - [SMALL_STATE(8748)] = 386107, - [SMALL_STATE(8749)] = 386142, - [SMALL_STATE(8750)] = 386177, - [SMALL_STATE(8751)] = 386212, - [SMALL_STATE(8752)] = 386245, - [SMALL_STATE(8753)] = 386266, - [SMALL_STATE(8754)] = 386287, - [SMALL_STATE(8755)] = 386322, - [SMALL_STATE(8756)] = 386357, - [SMALL_STATE(8757)] = 386392, - [SMALL_STATE(8758)] = 386413, - [SMALL_STATE(8759)] = 386434, - [SMALL_STATE(8760)] = 386455, - [SMALL_STATE(8761)] = 386476, - [SMALL_STATE(8762)] = 386497, - [SMALL_STATE(8763)] = 386532, - [SMALL_STATE(8764)] = 386567, - [SMALL_STATE(8765)] = 386602, - [SMALL_STATE(8766)] = 386637, - [SMALL_STATE(8767)] = 386672, - [SMALL_STATE(8768)] = 386693, - [SMALL_STATE(8769)] = 386728, - [SMALL_STATE(8770)] = 386763, - [SMALL_STATE(8771)] = 386798, - [SMALL_STATE(8772)] = 386833, - [SMALL_STATE(8773)] = 386854, - [SMALL_STATE(8774)] = 386889, - [SMALL_STATE(8775)] = 386924, - [SMALL_STATE(8776)] = 386945, - [SMALL_STATE(8777)] = 386966, - [SMALL_STATE(8778)] = 386987, - [SMALL_STATE(8779)] = 387022, - [SMALL_STATE(8780)] = 387043, - [SMALL_STATE(8781)] = 387064, - [SMALL_STATE(8782)] = 387099, - [SMALL_STATE(8783)] = 387132, - [SMALL_STATE(8784)] = 387153, - [SMALL_STATE(8785)] = 387188, - [SMALL_STATE(8786)] = 387223, - [SMALL_STATE(8787)] = 387256, - [SMALL_STATE(8788)] = 387277, - [SMALL_STATE(8789)] = 387312, - [SMALL_STATE(8790)] = 387337, - [SMALL_STATE(8791)] = 387358, - [SMALL_STATE(8792)] = 387379, - [SMALL_STATE(8793)] = 387400, - [SMALL_STATE(8794)] = 387435, - [SMALL_STATE(8795)] = 387470, - [SMALL_STATE(8796)] = 387491, - [SMALL_STATE(8797)] = 387516, - [SMALL_STATE(8798)] = 387549, - [SMALL_STATE(8799)] = 387584, - [SMALL_STATE(8800)] = 387617, - [SMALL_STATE(8801)] = 387648, - [SMALL_STATE(8802)] = 387673, - [SMALL_STATE(8803)] = 387698, - [SMALL_STATE(8804)] = 387719, - [SMALL_STATE(8805)] = 387754, - [SMALL_STATE(8806)] = 387789, - [SMALL_STATE(8807)] = 387824, - [SMALL_STATE(8808)] = 387859, - [SMALL_STATE(8809)] = 387880, - [SMALL_STATE(8810)] = 387915, - [SMALL_STATE(8811)] = 387936, - [SMALL_STATE(8812)] = 387957, - [SMALL_STATE(8813)] = 387990, - [SMALL_STATE(8814)] = 388025, - [SMALL_STATE(8815)] = 388060, - [SMALL_STATE(8816)] = 388095, - [SMALL_STATE(8817)] = 388130, - [SMALL_STATE(8818)] = 388165, - [SMALL_STATE(8819)] = 388200, - [SMALL_STATE(8820)] = 388221, - [SMALL_STATE(8821)] = 388242, - [SMALL_STATE(8822)] = 388277, - [SMALL_STATE(8823)] = 388298, - [SMALL_STATE(8824)] = 388319, - [SMALL_STATE(8825)] = 388354, - [SMALL_STATE(8826)] = 388389, - [SMALL_STATE(8827)] = 388424, - [SMALL_STATE(8828)] = 388459, - [SMALL_STATE(8829)] = 388494, - [SMALL_STATE(8830)] = 388529, - [SMALL_STATE(8831)] = 388550, - [SMALL_STATE(8832)] = 388585, - [SMALL_STATE(8833)] = 388620, - [SMALL_STATE(8834)] = 388655, - [SMALL_STATE(8835)] = 388690, - [SMALL_STATE(8836)] = 388725, - [SMALL_STATE(8837)] = 388756, - [SMALL_STATE(8838)] = 388791, - [SMALL_STATE(8839)] = 388812, - [SMALL_STATE(8840)] = 388847, - [SMALL_STATE(8841)] = 388868, - [SMALL_STATE(8842)] = 388889, - [SMALL_STATE(8843)] = 388924, - [SMALL_STATE(8844)] = 388949, - [SMALL_STATE(8845)] = 388984, - [SMALL_STATE(8846)] = 389019, - [SMALL_STATE(8847)] = 389054, - [SMALL_STATE(8848)] = 389075, - [SMALL_STATE(8849)] = 389096, - [SMALL_STATE(8850)] = 389131, - [SMALL_STATE(8851)] = 389164, - [SMALL_STATE(8852)] = 389199, - [SMALL_STATE(8853)] = 389234, - [SMALL_STATE(8854)] = 389269, - [SMALL_STATE(8855)] = 389290, - [SMALL_STATE(8856)] = 389311, - [SMALL_STATE(8857)] = 389346, - [SMALL_STATE(8858)] = 389377, - [SMALL_STATE(8859)] = 389398, - [SMALL_STATE(8860)] = 389419, - [SMALL_STATE(8861)] = 389440, - [SMALL_STATE(8862)] = 389473, - [SMALL_STATE(8863)] = 389494, - [SMALL_STATE(8864)] = 389529, - [SMALL_STATE(8865)] = 389560, - [SMALL_STATE(8866)] = 389595, - [SMALL_STATE(8867)] = 389630, - [SMALL_STATE(8868)] = 389665, - [SMALL_STATE(8869)] = 389698, - [SMALL_STATE(8870)] = 389731, - [SMALL_STATE(8871)] = 389752, - [SMALL_STATE(8872)] = 389773, - [SMALL_STATE(8873)] = 389794, - [SMALL_STATE(8874)] = 389829, - [SMALL_STATE(8875)] = 389864, - [SMALL_STATE(8876)] = 389885, - [SMALL_STATE(8877)] = 389906, - [SMALL_STATE(8878)] = 389927, - [SMALL_STATE(8879)] = 389948, - [SMALL_STATE(8880)] = 389969, - [SMALL_STATE(8881)] = 389990, - [SMALL_STATE(8882)] = 390011, - [SMALL_STATE(8883)] = 390046, - [SMALL_STATE(8884)] = 390081, - [SMALL_STATE(8885)] = 390116, - [SMALL_STATE(8886)] = 390151, - [SMALL_STATE(8887)] = 390186, - [SMALL_STATE(8888)] = 390221, - [SMALL_STATE(8889)] = 390256, - [SMALL_STATE(8890)] = 390277, - [SMALL_STATE(8891)] = 390312, - [SMALL_STATE(8892)] = 390342, - [SMALL_STATE(8893)] = 390372, - [SMALL_STATE(8894)] = 390402, - [SMALL_STATE(8895)] = 390434, - [SMALL_STATE(8896)] = 390466, - [SMALL_STATE(8897)] = 390498, - [SMALL_STATE(8898)] = 390528, - [SMALL_STATE(8899)] = 390560, - [SMALL_STATE(8900)] = 390590, - [SMALL_STATE(8901)] = 390620, - [SMALL_STATE(8902)] = 390650, - [SMALL_STATE(8903)] = 390680, - [SMALL_STATE(8904)] = 390710, - [SMALL_STATE(8905)] = 390740, - [SMALL_STATE(8906)] = 390770, - [SMALL_STATE(8907)] = 390800, - [SMALL_STATE(8908)] = 390832, - [SMALL_STATE(8909)] = 390864, - [SMALL_STATE(8910)] = 390896, - [SMALL_STATE(8911)] = 390926, - [SMALL_STATE(8912)] = 390956, - [SMALL_STATE(8913)] = 390988, - [SMALL_STATE(8914)] = 391018, - [SMALL_STATE(8915)] = 391050, - [SMALL_STATE(8916)] = 391072, - [SMALL_STATE(8917)] = 391104, - [SMALL_STATE(8918)] = 391126, - [SMALL_STATE(8919)] = 391158, - [SMALL_STATE(8920)] = 391188, - [SMALL_STATE(8921)] = 391216, - [SMALL_STATE(8922)] = 391246, - [SMALL_STATE(8923)] = 391276, - [SMALL_STATE(8924)] = 391306, - [SMALL_STATE(8925)] = 391336, - [SMALL_STATE(8926)] = 391366, - [SMALL_STATE(8927)] = 391388, - [SMALL_STATE(8928)] = 391420, - [SMALL_STATE(8929)] = 391450, - [SMALL_STATE(8930)] = 391482, - [SMALL_STATE(8931)] = 391512, - [SMALL_STATE(8932)] = 391542, - [SMALL_STATE(8933)] = 391572, - [SMALL_STATE(8934)] = 391602, - [SMALL_STATE(8935)] = 391632, - [SMALL_STATE(8936)] = 391664, - [SMALL_STATE(8937)] = 391694, - [SMALL_STATE(8938)] = 391714, - [SMALL_STATE(8939)] = 391746, - [SMALL_STATE(8940)] = 391778, - [SMALL_STATE(8941)] = 391808, - [SMALL_STATE(8942)] = 391838, - [SMALL_STATE(8943)] = 391870, - [SMALL_STATE(8944)] = 391900, - [SMALL_STATE(8945)] = 391930, - [SMALL_STATE(8946)] = 391962, - [SMALL_STATE(8947)] = 391992, - [SMALL_STATE(8948)] = 392020, - [SMALL_STATE(8949)] = 392048, - [SMALL_STATE(8950)] = 392078, - [SMALL_STATE(8951)] = 392108, - [SMALL_STATE(8952)] = 392138, - [SMALL_STATE(8953)] = 392170, - [SMALL_STATE(8954)] = 392202, - [SMALL_STATE(8955)] = 392232, - [SMALL_STATE(8956)] = 392264, - [SMALL_STATE(8957)] = 392294, - [SMALL_STATE(8958)] = 392326, - [SMALL_STATE(8959)] = 392358, - [SMALL_STATE(8960)] = 392388, - [SMALL_STATE(8961)] = 392418, - [SMALL_STATE(8962)] = 392448, - [SMALL_STATE(8963)] = 392478, - [SMALL_STATE(8964)] = 392508, - [SMALL_STATE(8965)] = 392538, - [SMALL_STATE(8966)] = 392570, - [SMALL_STATE(8967)] = 392600, - [SMALL_STATE(8968)] = 392630, - [SMALL_STATE(8969)] = 392660, - [SMALL_STATE(8970)] = 392686, - [SMALL_STATE(8971)] = 392716, - [SMALL_STATE(8972)] = 392746, - [SMALL_STATE(8973)] = 392776, - [SMALL_STATE(8974)] = 392804, - [SMALL_STATE(8975)] = 392836, - [SMALL_STATE(8976)] = 392866, - [SMALL_STATE(8977)] = 392898, - [SMALL_STATE(8978)] = 392928, - [SMALL_STATE(8979)] = 392958, - [SMALL_STATE(8980)] = 392988, - [SMALL_STATE(8981)] = 393020, - [SMALL_STATE(8982)] = 393052, - [SMALL_STATE(8983)] = 393082, - [SMALL_STATE(8984)] = 393114, - [SMALL_STATE(8985)] = 393144, - [SMALL_STATE(8986)] = 393174, - [SMALL_STATE(8987)] = 393202, - [SMALL_STATE(8988)] = 393232, - [SMALL_STATE(8989)] = 393262, - [SMALL_STATE(8990)] = 393290, - [SMALL_STATE(8991)] = 393322, - [SMALL_STATE(8992)] = 393354, - [SMALL_STATE(8993)] = 393384, - [SMALL_STATE(8994)] = 393414, - [SMALL_STATE(8995)] = 393444, - [SMALL_STATE(8996)] = 393474, - [SMALL_STATE(8997)] = 393500, - [SMALL_STATE(8998)] = 393528, - [SMALL_STATE(8999)] = 393552, - [SMALL_STATE(9000)] = 393582, - [SMALL_STATE(9001)] = 393614, - [SMALL_STATE(9002)] = 393646, - [SMALL_STATE(9003)] = 393674, - [SMALL_STATE(9004)] = 393704, - [SMALL_STATE(9005)] = 393730, - [SMALL_STATE(9006)] = 393760, - [SMALL_STATE(9007)] = 393792, - [SMALL_STATE(9008)] = 393822, - [SMALL_STATE(9009)] = 393852, - [SMALL_STATE(9010)] = 393884, - [SMALL_STATE(9011)] = 393914, - [SMALL_STATE(9012)] = 393944, - [SMALL_STATE(9013)] = 393976, - [SMALL_STATE(9014)] = 394006, - [SMALL_STATE(9015)] = 394036, - [SMALL_STATE(9016)] = 394066, - [SMALL_STATE(9017)] = 394098, - [SMALL_STATE(9018)] = 394130, - [SMALL_STATE(9019)] = 394162, - [SMALL_STATE(9020)] = 394194, - [SMALL_STATE(9021)] = 394226, - [SMALL_STATE(9022)] = 394256, - [SMALL_STATE(9023)] = 394286, - [SMALL_STATE(9024)] = 394316, - [SMALL_STATE(9025)] = 394346, - [SMALL_STATE(9026)] = 394376, - [SMALL_STATE(9027)] = 394408, - [SMALL_STATE(9028)] = 394438, - [SMALL_STATE(9029)] = 394468, - [SMALL_STATE(9030)] = 394498, - [SMALL_STATE(9031)] = 394528, - [SMALL_STATE(9032)] = 394558, - [SMALL_STATE(9033)] = 394590, - [SMALL_STATE(9034)] = 394620, - [SMALL_STATE(9035)] = 394650, - [SMALL_STATE(9036)] = 394682, - [SMALL_STATE(9037)] = 394714, - [SMALL_STATE(9038)] = 394738, - [SMALL_STATE(9039)] = 394768, - [SMALL_STATE(9040)] = 394800, - [SMALL_STATE(9041)] = 394830, - [SMALL_STATE(9042)] = 394860, - [SMALL_STATE(9043)] = 394892, - [SMALL_STATE(9044)] = 394924, - [SMALL_STATE(9045)] = 394956, - [SMALL_STATE(9046)] = 394986, - [SMALL_STATE(9047)] = 395016, - [SMALL_STATE(9048)] = 395044, - [SMALL_STATE(9049)] = 395072, - [SMALL_STATE(9050)] = 395102, - [SMALL_STATE(9051)] = 395132, - [SMALL_STATE(9052)] = 395162, - [SMALL_STATE(9053)] = 395190, - [SMALL_STATE(9054)] = 395218, - [SMALL_STATE(9055)] = 395250, - [SMALL_STATE(9056)] = 395280, - [SMALL_STATE(9057)] = 395308, - [SMALL_STATE(9058)] = 395336, - [SMALL_STATE(9059)] = 395358, - [SMALL_STATE(9060)] = 395390, - [SMALL_STATE(9061)] = 395418, - [SMALL_STATE(9062)] = 395448, - [SMALL_STATE(9063)] = 395476, - [SMALL_STATE(9064)] = 395504, - [SMALL_STATE(9065)] = 395534, - [SMALL_STATE(9066)] = 395564, - [SMALL_STATE(9067)] = 395592, - [SMALL_STATE(9068)] = 395620, - [SMALL_STATE(9069)] = 395644, - [SMALL_STATE(9070)] = 395674, - [SMALL_STATE(9071)] = 395702, - [SMALL_STATE(9072)] = 395730, - [SMALL_STATE(9073)] = 395762, - [SMALL_STATE(9074)] = 395792, - [SMALL_STATE(9075)] = 395820, - [SMALL_STATE(9076)] = 395848, - [SMALL_STATE(9077)] = 395878, - [SMALL_STATE(9078)] = 395910, - [SMALL_STATE(9079)] = 395938, - [SMALL_STATE(9080)] = 395966, - [SMALL_STATE(9081)] = 395996, - [SMALL_STATE(9082)] = 396024, - [SMALL_STATE(9083)] = 396052, - [SMALL_STATE(9084)] = 396082, - [SMALL_STATE(9085)] = 396110, - [SMALL_STATE(9086)] = 396138, - [SMALL_STATE(9087)] = 396168, - [SMALL_STATE(9088)] = 396198, - [SMALL_STATE(9089)] = 396230, - [SMALL_STATE(9090)] = 396258, - [SMALL_STATE(9091)] = 396286, - [SMALL_STATE(9092)] = 396314, - [SMALL_STATE(9093)] = 396342, - [SMALL_STATE(9094)] = 396370, - [SMALL_STATE(9095)] = 396398, - [SMALL_STATE(9096)] = 396428, - [SMALL_STATE(9097)] = 396456, - [SMALL_STATE(9098)] = 396484, - [SMALL_STATE(9099)] = 396514, - [SMALL_STATE(9100)] = 396544, - [SMALL_STATE(9101)] = 396574, - [SMALL_STATE(9102)] = 396606, - [SMALL_STATE(9103)] = 396636, - [SMALL_STATE(9104)] = 396660, - [SMALL_STATE(9105)] = 396690, - [SMALL_STATE(9106)] = 396722, - [SMALL_STATE(9107)] = 396752, - [SMALL_STATE(9108)] = 396782, - [SMALL_STATE(9109)] = 396813, - [SMALL_STATE(9110)] = 396842, - [SMALL_STATE(9111)] = 396873, - [SMALL_STATE(9112)] = 396892, - [SMALL_STATE(9113)] = 396923, - [SMALL_STATE(9114)] = 396952, - [SMALL_STATE(9115)] = 396979, - [SMALL_STATE(9116)] = 397002, - [SMALL_STATE(9117)] = 397023, - [SMALL_STATE(9118)] = 397052, - [SMALL_STATE(9119)] = 397083, - [SMALL_STATE(9120)] = 397102, - [SMALL_STATE(9121)] = 397133, - [SMALL_STATE(9122)] = 397164, - [SMALL_STATE(9123)] = 397195, - [SMALL_STATE(9124)] = 397226, - [SMALL_STATE(9125)] = 397253, - [SMALL_STATE(9126)] = 397282, - [SMALL_STATE(9127)] = 397309, - [SMALL_STATE(9128)] = 397336, - [SMALL_STATE(9129)] = 397355, - [SMALL_STATE(9130)] = 397384, - [SMALL_STATE(9131)] = 397411, - [SMALL_STATE(9132)] = 397442, - [SMALL_STATE(9133)] = 397469, - [SMALL_STATE(9134)] = 397496, - [SMALL_STATE(9135)] = 397525, - [SMALL_STATE(9136)] = 397552, - [SMALL_STATE(9137)] = 397579, - [SMALL_STATE(9138)] = 397610, - [SMALL_STATE(9139)] = 397637, - [SMALL_STATE(9140)] = 397668, - [SMALL_STATE(9141)] = 397695, - [SMALL_STATE(9142)] = 397724, - [SMALL_STATE(9143)] = 397753, - [SMALL_STATE(9144)] = 397784, - [SMALL_STATE(9145)] = 397811, - [SMALL_STATE(9146)] = 397842, - [SMALL_STATE(9147)] = 397869, - [SMALL_STATE(9148)] = 397900, - [SMALL_STATE(9149)] = 397931, - [SMALL_STATE(9150)] = 397962, - [SMALL_STATE(9151)] = 397991, - [SMALL_STATE(9152)] = 398022, - [SMALL_STATE(9153)] = 398047, - [SMALL_STATE(9154)] = 398078, - [SMALL_STATE(9155)] = 398105, - [SMALL_STATE(9156)] = 398124, - [SMALL_STATE(9157)] = 398151, - [SMALL_STATE(9158)] = 398178, - [SMALL_STATE(9159)] = 398201, - [SMALL_STATE(9160)] = 398224, - [SMALL_STATE(9161)] = 398251, - [SMALL_STATE(9162)] = 398282, - [SMALL_STATE(9163)] = 398309, - [SMALL_STATE(9164)] = 398338, - [SMALL_STATE(9165)] = 398369, - [SMALL_STATE(9166)] = 398396, - [SMALL_STATE(9167)] = 398425, - [SMALL_STATE(9168)] = 398456, - [SMALL_STATE(9169)] = 398487, - [SMALL_STATE(9170)] = 398516, - [SMALL_STATE(9171)] = 398547, - [SMALL_STATE(9172)] = 398578, - [SMALL_STATE(9173)] = 398605, - [SMALL_STATE(9174)] = 398636, - [SMALL_STATE(9175)] = 398663, - [SMALL_STATE(9176)] = 398694, - [SMALL_STATE(9177)] = 398725, - [SMALL_STATE(9178)] = 398752, - [SMALL_STATE(9179)] = 398771, - [SMALL_STATE(9180)] = 398800, - [SMALL_STATE(9181)] = 398827, - [SMALL_STATE(9182)] = 398856, - [SMALL_STATE(9183)] = 398885, - [SMALL_STATE(9184)] = 398916, - [SMALL_STATE(9185)] = 398940, - [SMALL_STATE(9186)] = 398962, - [SMALL_STATE(9187)] = 398986, - [SMALL_STATE(9188)] = 399010, - [SMALL_STATE(9189)] = 399032, - [SMALL_STATE(9190)] = 399056, - [SMALL_STATE(9191)] = 399080, - [SMALL_STATE(9192)] = 399102, - [SMALL_STATE(9193)] = 399126, - [SMALL_STATE(9194)] = 399150, - [SMALL_STATE(9195)] = 399174, - [SMALL_STATE(9196)] = 399198, - [SMALL_STATE(9197)] = 399222, - [SMALL_STATE(9198)] = 399246, - [SMALL_STATE(9199)] = 399270, - [SMALL_STATE(9200)] = 399294, - [SMALL_STATE(9201)] = 399318, - [SMALL_STATE(9202)] = 399338, - [SMALL_STATE(9203)] = 399362, - [SMALL_STATE(9204)] = 399384, - [SMALL_STATE(9205)] = 399404, - [SMALL_STATE(9206)] = 399422, - [SMALL_STATE(9207)] = 399446, - [SMALL_STATE(9208)] = 399472, - [SMALL_STATE(9209)] = 399496, - [SMALL_STATE(9210)] = 399518, - [SMALL_STATE(9211)] = 399542, - [SMALL_STATE(9212)] = 399564, - [SMALL_STATE(9213)] = 399586, - [SMALL_STATE(9214)] = 399610, - [SMALL_STATE(9215)] = 399634, - [SMALL_STATE(9216)] = 399656, - [SMALL_STATE(9217)] = 399680, - [SMALL_STATE(9218)] = 399704, - [SMALL_STATE(9219)] = 399728, - [SMALL_STATE(9220)] = 399752, - [SMALL_STATE(9221)] = 399776, - [SMALL_STATE(9222)] = 399802, - [SMALL_STATE(9223)] = 399826, - [SMALL_STATE(9224)] = 399846, - [SMALL_STATE(9225)] = 399870, - [SMALL_STATE(9226)] = 399894, - [SMALL_STATE(9227)] = 399916, - [SMALL_STATE(9228)] = 399940, - [SMALL_STATE(9229)] = 399964, - [SMALL_STATE(9230)] = 399988, - [SMALL_STATE(9231)] = 400012, - [SMALL_STATE(9232)] = 400036, - [SMALL_STATE(9233)] = 400060, - [SMALL_STATE(9234)] = 400086, - [SMALL_STATE(9235)] = 400110, - [SMALL_STATE(9236)] = 400136, - [SMALL_STATE(9237)] = 400160, - [SMALL_STATE(9238)] = 400184, - [SMALL_STATE(9239)] = 400208, - [SMALL_STATE(9240)] = 400232, - [SMALL_STATE(9241)] = 400256, - [SMALL_STATE(9242)] = 400276, - [SMALL_STATE(9243)] = 400298, - [SMALL_STATE(9244)] = 400322, - [SMALL_STATE(9245)] = 400346, - [SMALL_STATE(9246)] = 400370, - [SMALL_STATE(9247)] = 400394, - [SMALL_STATE(9248)] = 400418, - [SMALL_STATE(9249)] = 400442, - [SMALL_STATE(9250)] = 400466, - [SMALL_STATE(9251)] = 400490, - [SMALL_STATE(9252)] = 400514, - [SMALL_STATE(9253)] = 400536, - [SMALL_STATE(9254)] = 400560, - [SMALL_STATE(9255)] = 400584, - [SMALL_STATE(9256)] = 400608, - [SMALL_STATE(9257)] = 400630, - [SMALL_STATE(9258)] = 400654, - [SMALL_STATE(9259)] = 400678, - [SMALL_STATE(9260)] = 400702, - [SMALL_STATE(9261)] = 400726, - [SMALL_STATE(9262)] = 400750, - [SMALL_STATE(9263)] = 400768, - [SMALL_STATE(9264)] = 400792, - [SMALL_STATE(9265)] = 400814, - [SMALL_STATE(9266)] = 400838, - [SMALL_STATE(9267)] = 400862, - [SMALL_STATE(9268)] = 400886, - [SMALL_STATE(9269)] = 400912, - [SMALL_STATE(9270)] = 400934, - [SMALL_STATE(9271)] = 400958, - [SMALL_STATE(9272)] = 400978, - [SMALL_STATE(9273)] = 400998, - [SMALL_STATE(9274)] = 401022, - [SMALL_STATE(9275)] = 401048, - [SMALL_STATE(9276)] = 401072, - [SMALL_STATE(9277)] = 401096, - [SMALL_STATE(9278)] = 401120, - [SMALL_STATE(9279)] = 401140, - [SMALL_STATE(9280)] = 401160, - [SMALL_STATE(9281)] = 401184, - [SMALL_STATE(9282)] = 401206, - [SMALL_STATE(9283)] = 401224, - [SMALL_STATE(9284)] = 401248, - [SMALL_STATE(9285)] = 401272, - [SMALL_STATE(9286)] = 401296, - [SMALL_STATE(9287)] = 401314, - [SMALL_STATE(9288)] = 401334, - [SMALL_STATE(9289)] = 401358, - [SMALL_STATE(9290)] = 401382, - [SMALL_STATE(9291)] = 401406, - [SMALL_STATE(9292)] = 401428, - [SMALL_STATE(9293)] = 401452, - [SMALL_STATE(9294)] = 401476, - [SMALL_STATE(9295)] = 401494, - [SMALL_STATE(9296)] = 401518, - [SMALL_STATE(9297)] = 401542, - [SMALL_STATE(9298)] = 401566, - [SMALL_STATE(9299)] = 401590, - [SMALL_STATE(9300)] = 401614, - [SMALL_STATE(9301)] = 401638, - [SMALL_STATE(9302)] = 401662, - [SMALL_STATE(9303)] = 401686, - [SMALL_STATE(9304)] = 401710, - [SMALL_STATE(9305)] = 401734, - [SMALL_STATE(9306)] = 401752, - [SMALL_STATE(9307)] = 401774, - [SMALL_STATE(9308)] = 401798, - [SMALL_STATE(9309)] = 401822, - [SMALL_STATE(9310)] = 401846, - [SMALL_STATE(9311)] = 401870, - [SMALL_STATE(9312)] = 401890, - [SMALL_STATE(9313)] = 401912, - [SMALL_STATE(9314)] = 401936, - [SMALL_STATE(9315)] = 401960, - [SMALL_STATE(9316)] = 401980, - [SMALL_STATE(9317)] = 402002, - [SMALL_STATE(9318)] = 402026, - [SMALL_STATE(9319)] = 402050, - [SMALL_STATE(9320)] = 402074, - [SMALL_STATE(9321)] = 402098, - [SMALL_STATE(9322)] = 402122, - [SMALL_STATE(9323)] = 402146, - [SMALL_STATE(9324)] = 402170, - [SMALL_STATE(9325)] = 402187, - [SMALL_STATE(9326)] = 402210, - [SMALL_STATE(9327)] = 402227, - [SMALL_STATE(9328)] = 402248, - [SMALL_STATE(9329)] = 402269, - [SMALL_STATE(9330)] = 402290, - [SMALL_STATE(9331)] = 402313, - [SMALL_STATE(9332)] = 402332, - [SMALL_STATE(9333)] = 402353, - [SMALL_STATE(9334)] = 402376, - [SMALL_STATE(9335)] = 402399, - [SMALL_STATE(9336)] = 402418, - [SMALL_STATE(9337)] = 402441, - [SMALL_STATE(9338)] = 402464, - [SMALL_STATE(9339)] = 402487, - [SMALL_STATE(9340)] = 402504, - [SMALL_STATE(9341)] = 402527, - [SMALL_STATE(9342)] = 402548, - [SMALL_STATE(9343)] = 402571, - [SMALL_STATE(9344)] = 402592, - [SMALL_STATE(9345)] = 402613, - [SMALL_STATE(9346)] = 402634, - [SMALL_STATE(9347)] = 402657, - [SMALL_STATE(9348)] = 402678, - [SMALL_STATE(9349)] = 402695, - [SMALL_STATE(9350)] = 402718, - [SMALL_STATE(9351)] = 402739, - [SMALL_STATE(9352)] = 402756, - [SMALL_STATE(9353)] = 402779, - [SMALL_STATE(9354)] = 402802, - [SMALL_STATE(9355)] = 402819, - [SMALL_STATE(9356)] = 402836, - [SMALL_STATE(9357)] = 402859, - [SMALL_STATE(9358)] = 402882, - [SMALL_STATE(9359)] = 402899, - [SMALL_STATE(9360)] = 402916, - [SMALL_STATE(9361)] = 402933, - [SMALL_STATE(9362)] = 402950, - [SMALL_STATE(9363)] = 402967, - [SMALL_STATE(9364)] = 402990, - [SMALL_STATE(9365)] = 403011, - [SMALL_STATE(9366)] = 403028, - [SMALL_STATE(9367)] = 403045, - [SMALL_STATE(9368)] = 403062, - [SMALL_STATE(9369)] = 403079, - [SMALL_STATE(9370)] = 403096, - [SMALL_STATE(9371)] = 403119, - [SMALL_STATE(9372)] = 403142, - [SMALL_STATE(9373)] = 403165, - [SMALL_STATE(9374)] = 403188, - [SMALL_STATE(9375)] = 403211, - [SMALL_STATE(9376)] = 403232, - [SMALL_STATE(9377)] = 403253, - [SMALL_STATE(9378)] = 403276, - [SMALL_STATE(9379)] = 403299, - [SMALL_STATE(9380)] = 403322, - [SMALL_STATE(9381)] = 403345, - [SMALL_STATE(9382)] = 403366, - [SMALL_STATE(9383)] = 403389, - [SMALL_STATE(9384)] = 403412, - [SMALL_STATE(9385)] = 403435, - [SMALL_STATE(9386)] = 403458, - [SMALL_STATE(9387)] = 403479, - [SMALL_STATE(9388)] = 403502, - [SMALL_STATE(9389)] = 403525, - [SMALL_STATE(9390)] = 403548, - [SMALL_STATE(9391)] = 403571, - [SMALL_STATE(9392)] = 403594, - [SMALL_STATE(9393)] = 403617, - [SMALL_STATE(9394)] = 403640, - [SMALL_STATE(9395)] = 403663, - [SMALL_STATE(9396)] = 403680, - [SMALL_STATE(9397)] = 403703, - [SMALL_STATE(9398)] = 403726, - [SMALL_STATE(9399)] = 403749, - [SMALL_STATE(9400)] = 403770, - [SMALL_STATE(9401)] = 403787, - [SMALL_STATE(9402)] = 403804, - [SMALL_STATE(9403)] = 403821, - [SMALL_STATE(9404)] = 403838, - [SMALL_STATE(9405)] = 403855, - [SMALL_STATE(9406)] = 403872, - [SMALL_STATE(9407)] = 403895, - [SMALL_STATE(9408)] = 403912, - [SMALL_STATE(9409)] = 403935, - [SMALL_STATE(9410)] = 403958, - [SMALL_STATE(9411)] = 403981, - [SMALL_STATE(9412)] = 404004, - [SMALL_STATE(9413)] = 404021, - [SMALL_STATE(9414)] = 404044, - [SMALL_STATE(9415)] = 404067, - [SMALL_STATE(9416)] = 404084, - [SMALL_STATE(9417)] = 404101, - [SMALL_STATE(9418)] = 404124, - [SMALL_STATE(9419)] = 404147, - [SMALL_STATE(9420)] = 404170, - [SMALL_STATE(9421)] = 404187, - [SMALL_STATE(9422)] = 404210, - [SMALL_STATE(9423)] = 404227, - [SMALL_STATE(9424)] = 404244, - [SMALL_STATE(9425)] = 404261, - [SMALL_STATE(9426)] = 404278, - [SMALL_STATE(9427)] = 404295, - [SMALL_STATE(9428)] = 404312, - [SMALL_STATE(9429)] = 404329, - [SMALL_STATE(9430)] = 404346, - [SMALL_STATE(9431)] = 404369, - [SMALL_STATE(9432)] = 404386, - [SMALL_STATE(9433)] = 404403, - [SMALL_STATE(9434)] = 404420, - [SMALL_STATE(9435)] = 404437, - [SMALL_STATE(9436)] = 404454, - [SMALL_STATE(9437)] = 404471, - [SMALL_STATE(9438)] = 404488, - [SMALL_STATE(9439)] = 404505, - [SMALL_STATE(9440)] = 404526, - [SMALL_STATE(9441)] = 404543, - [SMALL_STATE(9442)] = 404560, - [SMALL_STATE(9443)] = 404577, - [SMALL_STATE(9444)] = 404594, - [SMALL_STATE(9445)] = 404611, - [SMALL_STATE(9446)] = 404628, - [SMALL_STATE(9447)] = 404645, - [SMALL_STATE(9448)] = 404662, - [SMALL_STATE(9449)] = 404679, - [SMALL_STATE(9450)] = 404696, - [SMALL_STATE(9451)] = 404713, - [SMALL_STATE(9452)] = 404734, - [SMALL_STATE(9453)] = 404753, - [SMALL_STATE(9454)] = 404776, - [SMALL_STATE(9455)] = 404799, - [SMALL_STATE(9456)] = 404820, - [SMALL_STATE(9457)] = 404837, - [SMALL_STATE(9458)] = 404854, - [SMALL_STATE(9459)] = 404875, - [SMALL_STATE(9460)] = 404896, - [SMALL_STATE(9461)] = 404917, - [SMALL_STATE(9462)] = 404934, - [SMALL_STATE(9463)] = 404955, - [SMALL_STATE(9464)] = 404972, - [SMALL_STATE(9465)] = 404995, - [SMALL_STATE(9466)] = 405018, - [SMALL_STATE(9467)] = 405041, - [SMALL_STATE(9468)] = 405064, - [SMALL_STATE(9469)] = 405087, - [SMALL_STATE(9470)] = 405104, - [SMALL_STATE(9471)] = 405125, - [SMALL_STATE(9472)] = 405148, - [SMALL_STATE(9473)] = 405169, - [SMALL_STATE(9474)] = 405190, - [SMALL_STATE(9475)] = 405213, - [SMALL_STATE(9476)] = 405236, - [SMALL_STATE(9477)] = 405259, - [SMALL_STATE(9478)] = 405282, - [SMALL_STATE(9479)] = 405305, - [SMALL_STATE(9480)] = 405328, - [SMALL_STATE(9481)] = 405351, - [SMALL_STATE(9482)] = 405372, - [SMALL_STATE(9483)] = 405395, - [SMALL_STATE(9484)] = 405418, - [SMALL_STATE(9485)] = 405441, - [SMALL_STATE(9486)] = 405462, - [SMALL_STATE(9487)] = 405485, - [SMALL_STATE(9488)] = 405508, - [SMALL_STATE(9489)] = 405531, - [SMALL_STATE(9490)] = 405554, - [SMALL_STATE(9491)] = 405577, - [SMALL_STATE(9492)] = 405600, - [SMALL_STATE(9493)] = 405623, - [SMALL_STATE(9494)] = 405646, - [SMALL_STATE(9495)] = 405669, - [SMALL_STATE(9496)] = 405692, - [SMALL_STATE(9497)] = 405715, - [SMALL_STATE(9498)] = 405736, - [SMALL_STATE(9499)] = 405757, - [SMALL_STATE(9500)] = 405780, - [SMALL_STATE(9501)] = 405803, - [SMALL_STATE(9502)] = 405826, - [SMALL_STATE(9503)] = 405847, - [SMALL_STATE(9504)] = 405870, - [SMALL_STATE(9505)] = 405891, - [SMALL_STATE(9506)] = 405912, - [SMALL_STATE(9507)] = 405935, - [SMALL_STATE(9508)] = 405958, - [SMALL_STATE(9509)] = 405981, - [SMALL_STATE(9510)] = 406004, - [SMALL_STATE(9511)] = 406025, - [SMALL_STATE(9512)] = 406048, - [SMALL_STATE(9513)] = 406071, - [SMALL_STATE(9514)] = 406094, - [SMALL_STATE(9515)] = 406117, - [SMALL_STATE(9516)] = 406140, - [SMALL_STATE(9517)] = 406163, - [SMALL_STATE(9518)] = 406184, - [SMALL_STATE(9519)] = 406207, - [SMALL_STATE(9520)] = 406230, - [SMALL_STATE(9521)] = 406253, - [SMALL_STATE(9522)] = 406274, - [SMALL_STATE(9523)] = 406295, - [SMALL_STATE(9524)] = 406318, - [SMALL_STATE(9525)] = 406341, - [SMALL_STATE(9526)] = 406364, - [SMALL_STATE(9527)] = 406387, - [SMALL_STATE(9528)] = 406404, - [SMALL_STATE(9529)] = 406425, - [SMALL_STATE(9530)] = 406448, - [SMALL_STATE(9531)] = 406471, - [SMALL_STATE(9532)] = 406494, - [SMALL_STATE(9533)] = 406515, - [SMALL_STATE(9534)] = 406538, - [SMALL_STATE(9535)] = 406559, - [SMALL_STATE(9536)] = 406580, - [SMALL_STATE(9537)] = 406603, - [SMALL_STATE(9538)] = 406626, - [SMALL_STATE(9539)] = 406649, - [SMALL_STATE(9540)] = 406672, - [SMALL_STATE(9541)] = 406695, - [SMALL_STATE(9542)] = 406718, - [SMALL_STATE(9543)] = 406741, - [SMALL_STATE(9544)] = 406764, - [SMALL_STATE(9545)] = 406787, - [SMALL_STATE(9546)] = 406810, - [SMALL_STATE(9547)] = 406833, - [SMALL_STATE(9548)] = 406850, - [SMALL_STATE(9549)] = 406873, - [SMALL_STATE(9550)] = 406894, - [SMALL_STATE(9551)] = 406917, - [SMALL_STATE(9552)] = 406938, - [SMALL_STATE(9553)] = 406961, - [SMALL_STATE(9554)] = 406984, - [SMALL_STATE(9555)] = 407007, - [SMALL_STATE(9556)] = 407030, - [SMALL_STATE(9557)] = 407053, - [SMALL_STATE(9558)] = 407076, - [SMALL_STATE(9559)] = 407099, - [SMALL_STATE(9560)] = 407122, - [SMALL_STATE(9561)] = 407145, - [SMALL_STATE(9562)] = 407168, - [SMALL_STATE(9563)] = 407191, - [SMALL_STATE(9564)] = 407214, - [SMALL_STATE(9565)] = 407237, - [SMALL_STATE(9566)] = 407260, - [SMALL_STATE(9567)] = 407283, - [SMALL_STATE(9568)] = 407306, - [SMALL_STATE(9569)] = 407329, - [SMALL_STATE(9570)] = 407352, - [SMALL_STATE(9571)] = 407375, - [SMALL_STATE(9572)] = 407398, - [SMALL_STATE(9573)] = 407421, - [SMALL_STATE(9574)] = 407444, - [SMALL_STATE(9575)] = 407467, - [SMALL_STATE(9576)] = 407490, - [SMALL_STATE(9577)] = 407513, - [SMALL_STATE(9578)] = 407536, - [SMALL_STATE(9579)] = 407559, - [SMALL_STATE(9580)] = 407582, - [SMALL_STATE(9581)] = 407605, - [SMALL_STATE(9582)] = 407628, - [SMALL_STATE(9583)] = 407649, - [SMALL_STATE(9584)] = 407666, - [SMALL_STATE(9585)] = 407689, - [SMALL_STATE(9586)] = 407712, - [SMALL_STATE(9587)] = 407733, - [SMALL_STATE(9588)] = 407756, - [SMALL_STATE(9589)] = 407773, - [SMALL_STATE(9590)] = 407796, - [SMALL_STATE(9591)] = 407819, - [SMALL_STATE(9592)] = 407842, - [SMALL_STATE(9593)] = 407865, - [SMALL_STATE(9594)] = 407888, - [SMALL_STATE(9595)] = 407909, - [SMALL_STATE(9596)] = 407926, - [SMALL_STATE(9597)] = 407943, - [SMALL_STATE(9598)] = 407964, - [SMALL_STATE(9599)] = 407987, - [SMALL_STATE(9600)] = 408010, - [SMALL_STATE(9601)] = 408031, - [SMALL_STATE(9602)] = 408054, - [SMALL_STATE(9603)] = 408075, - [SMALL_STATE(9604)] = 408096, - [SMALL_STATE(9605)] = 408119, - [SMALL_STATE(9606)] = 408142, - [SMALL_STATE(9607)] = 408165, - [SMALL_STATE(9608)] = 408186, - [SMALL_STATE(9609)] = 408209, - [SMALL_STATE(9610)] = 408226, - [SMALL_STATE(9611)] = 408249, - [SMALL_STATE(9612)] = 408272, - [SMALL_STATE(9613)] = 408295, - [SMALL_STATE(9614)] = 408318, - [SMALL_STATE(9615)] = 408341, - [SMALL_STATE(9616)] = 408358, - [SMALL_STATE(9617)] = 408381, - [SMALL_STATE(9618)] = 408404, - [SMALL_STATE(9619)] = 408427, - [SMALL_STATE(9620)] = 408450, - [SMALL_STATE(9621)] = 408473, - [SMALL_STATE(9622)] = 408496, - [SMALL_STATE(9623)] = 408519, - [SMALL_STATE(9624)] = 408540, - [SMALL_STATE(9625)] = 408563, - [SMALL_STATE(9626)] = 408586, - [SMALL_STATE(9627)] = 408609, - [SMALL_STATE(9628)] = 408632, - [SMALL_STATE(9629)] = 408651, - [SMALL_STATE(9630)] = 408674, - [SMALL_STATE(9631)] = 408697, - [SMALL_STATE(9632)] = 408720, - [SMALL_STATE(9633)] = 408743, - [SMALL_STATE(9634)] = 408766, - [SMALL_STATE(9635)] = 408789, - [SMALL_STATE(9636)] = 408812, - [SMALL_STATE(9637)] = 408835, - [SMALL_STATE(9638)] = 408858, - [SMALL_STATE(9639)] = 408881, - [SMALL_STATE(9640)] = 408904, - [SMALL_STATE(9641)] = 408927, - [SMALL_STATE(9642)] = 408950, - [SMALL_STATE(9643)] = 408973, - [SMALL_STATE(9644)] = 408996, - [SMALL_STATE(9645)] = 409019, - [SMALL_STATE(9646)] = 409042, - [SMALL_STATE(9647)] = 409065, - [SMALL_STATE(9648)] = 409088, - [SMALL_STATE(9649)] = 409111, - [SMALL_STATE(9650)] = 409134, - [SMALL_STATE(9651)] = 409157, - [SMALL_STATE(9652)] = 409180, - [SMALL_STATE(9653)] = 409203, - [SMALL_STATE(9654)] = 409226, - [SMALL_STATE(9655)] = 409249, - [SMALL_STATE(9656)] = 409272, - [SMALL_STATE(9657)] = 409295, - [SMALL_STATE(9658)] = 409318, - [SMALL_STATE(9659)] = 409341, - [SMALL_STATE(9660)] = 409364, - [SMALL_STATE(9661)] = 409387, - [SMALL_STATE(9662)] = 409410, - [SMALL_STATE(9663)] = 409433, - [SMALL_STATE(9664)] = 409456, - [SMALL_STATE(9665)] = 409477, - [SMALL_STATE(9666)] = 409500, - [SMALL_STATE(9667)] = 409523, - [SMALL_STATE(9668)] = 409546, - [SMALL_STATE(9669)] = 409566, - [SMALL_STATE(9670)] = 409584, - [SMALL_STATE(9671)] = 409604, - [SMALL_STATE(9672)] = 409624, - [SMALL_STATE(9673)] = 409640, - [SMALL_STATE(9674)] = 409660, - [SMALL_STATE(9675)] = 409680, - [SMALL_STATE(9676)] = 409700, - [SMALL_STATE(9677)] = 409720, - [SMALL_STATE(9678)] = 409740, - [SMALL_STATE(9679)] = 409760, - [SMALL_STATE(9680)] = 409780, - [SMALL_STATE(9681)] = 409800, - [SMALL_STATE(9682)] = 409820, - [SMALL_STATE(9683)] = 409840, - [SMALL_STATE(9684)] = 409860, - [SMALL_STATE(9685)] = 409876, - [SMALL_STATE(9686)] = 409896, - [SMALL_STATE(9687)] = 409916, - [SMALL_STATE(9688)] = 409936, - [SMALL_STATE(9689)] = 409956, - [SMALL_STATE(9690)] = 409976, - [SMALL_STATE(9691)] = 409996, - [SMALL_STATE(9692)] = 410016, - [SMALL_STATE(9693)] = 410036, - [SMALL_STATE(9694)] = 410056, - [SMALL_STATE(9695)] = 410076, - [SMALL_STATE(9696)] = 410096, - [SMALL_STATE(9697)] = 410116, - [SMALL_STATE(9698)] = 410132, - [SMALL_STATE(9699)] = 410152, - [SMALL_STATE(9700)] = 410172, - [SMALL_STATE(9701)] = 410192, - [SMALL_STATE(9702)] = 410212, - [SMALL_STATE(9703)] = 410232, - [SMALL_STATE(9704)] = 410252, - [SMALL_STATE(9705)] = 410272, - [SMALL_STATE(9706)] = 410292, - [SMALL_STATE(9707)] = 410312, - [SMALL_STATE(9708)] = 410332, - [SMALL_STATE(9709)] = 410352, - [SMALL_STATE(9710)] = 410372, - [SMALL_STATE(9711)] = 410392, - [SMALL_STATE(9712)] = 410412, - [SMALL_STATE(9713)] = 410432, - [SMALL_STATE(9714)] = 410452, - [SMALL_STATE(9715)] = 410472, - [SMALL_STATE(9716)] = 410492, - [SMALL_STATE(9717)] = 410508, - [SMALL_STATE(9718)] = 410528, - [SMALL_STATE(9719)] = 410548, - [SMALL_STATE(9720)] = 410564, - [SMALL_STATE(9721)] = 410584, - [SMALL_STATE(9722)] = 410604, - [SMALL_STATE(9723)] = 410624, - [SMALL_STATE(9724)] = 410644, - [SMALL_STATE(9725)] = 410664, - [SMALL_STATE(9726)] = 410684, - [SMALL_STATE(9727)] = 410704, - [SMALL_STATE(9728)] = 410724, - [SMALL_STATE(9729)] = 410744, - [SMALL_STATE(9730)] = 410764, - [SMALL_STATE(9731)] = 410784, - [SMALL_STATE(9732)] = 410804, - [SMALL_STATE(9733)] = 410824, - [SMALL_STATE(9734)] = 410844, - [SMALL_STATE(9735)] = 410864, - [SMALL_STATE(9736)] = 410884, - [SMALL_STATE(9737)] = 410900, - [SMALL_STATE(9738)] = 410916, - [SMALL_STATE(9739)] = 410936, - [SMALL_STATE(9740)] = 410952, - [SMALL_STATE(9741)] = 410972, - [SMALL_STATE(9742)] = 410992, - [SMALL_STATE(9743)] = 411012, - [SMALL_STATE(9744)] = 411032, - [SMALL_STATE(9745)] = 411052, - [SMALL_STATE(9746)] = 411072, - [SMALL_STATE(9747)] = 411088, - [SMALL_STATE(9748)] = 411104, - [SMALL_STATE(9749)] = 411124, - [SMALL_STATE(9750)] = 411140, - [SMALL_STATE(9751)] = 411160, - [SMALL_STATE(9752)] = 411180, - [SMALL_STATE(9753)] = 411200, - [SMALL_STATE(9754)] = 411220, - [SMALL_STATE(9755)] = 411240, - [SMALL_STATE(9756)] = 411260, - [SMALL_STATE(9757)] = 411280, - [SMALL_STATE(9758)] = 411300, - [SMALL_STATE(9759)] = 411320, - [SMALL_STATE(9760)] = 411340, - [SMALL_STATE(9761)] = 411360, - [SMALL_STATE(9762)] = 411380, - [SMALL_STATE(9763)] = 411396, - [SMALL_STATE(9764)] = 411414, - [SMALL_STATE(9765)] = 411434, - [SMALL_STATE(9766)] = 411454, - [SMALL_STATE(9767)] = 411474, - [SMALL_STATE(9768)] = 411494, - [SMALL_STATE(9769)] = 411514, - [SMALL_STATE(9770)] = 411534, - [SMALL_STATE(9771)] = 411554, - [SMALL_STATE(9772)] = 411570, - [SMALL_STATE(9773)] = 411590, - [SMALL_STATE(9774)] = 411610, - [SMALL_STATE(9775)] = 411626, - [SMALL_STATE(9776)] = 411646, - [SMALL_STATE(9777)] = 411664, - [SMALL_STATE(9778)] = 411684, - [SMALL_STATE(9779)] = 411704, - [SMALL_STATE(9780)] = 411724, - [SMALL_STATE(9781)] = 411744, - [SMALL_STATE(9782)] = 411764, - [SMALL_STATE(9783)] = 411784, - [SMALL_STATE(9784)] = 411804, - [SMALL_STATE(9785)] = 411824, - [SMALL_STATE(9786)] = 411844, - [SMALL_STATE(9787)] = 411864, - [SMALL_STATE(9788)] = 411884, - [SMALL_STATE(9789)] = 411904, - [SMALL_STATE(9790)] = 411924, - [SMALL_STATE(9791)] = 411944, - [SMALL_STATE(9792)] = 411964, - [SMALL_STATE(9793)] = 411984, - [SMALL_STATE(9794)] = 412004, - [SMALL_STATE(9795)] = 412024, - [SMALL_STATE(9796)] = 412044, - [SMALL_STATE(9797)] = 412064, - [SMALL_STATE(9798)] = 412084, - [SMALL_STATE(9799)] = 412104, - [SMALL_STATE(9800)] = 412124, - [SMALL_STATE(9801)] = 412144, - [SMALL_STATE(9802)] = 412164, - [SMALL_STATE(9803)] = 412184, - [SMALL_STATE(9804)] = 412204, - [SMALL_STATE(9805)] = 412224, - [SMALL_STATE(9806)] = 412244, - [SMALL_STATE(9807)] = 412264, - [SMALL_STATE(9808)] = 412284, - [SMALL_STATE(9809)] = 412302, - [SMALL_STATE(9810)] = 412322, - [SMALL_STATE(9811)] = 412338, - [SMALL_STATE(9812)] = 412358, - [SMALL_STATE(9813)] = 412378, - [SMALL_STATE(9814)] = 412394, - [SMALL_STATE(9815)] = 412414, - [SMALL_STATE(9816)] = 412434, - [SMALL_STATE(9817)] = 412454, - [SMALL_STATE(9818)] = 412474, - [SMALL_STATE(9819)] = 412494, - [SMALL_STATE(9820)] = 412514, - [SMALL_STATE(9821)] = 412534, - [SMALL_STATE(9822)] = 412554, - [SMALL_STATE(9823)] = 412574, - [SMALL_STATE(9824)] = 412594, - [SMALL_STATE(9825)] = 412614, - [SMALL_STATE(9826)] = 412630, - [SMALL_STATE(9827)] = 412650, - [SMALL_STATE(9828)] = 412666, - [SMALL_STATE(9829)] = 412686, - [SMALL_STATE(9830)] = 412706, - [SMALL_STATE(9831)] = 412722, - [SMALL_STATE(9832)] = 412742, - [SMALL_STATE(9833)] = 412762, - [SMALL_STATE(9834)] = 412778, - [SMALL_STATE(9835)] = 412798, - [SMALL_STATE(9836)] = 412818, - [SMALL_STATE(9837)] = 412838, - [SMALL_STATE(9838)] = 412858, - [SMALL_STATE(9839)] = 412878, - [SMALL_STATE(9840)] = 412898, - [SMALL_STATE(9841)] = 412918, - [SMALL_STATE(9842)] = 412938, - [SMALL_STATE(9843)] = 412958, - [SMALL_STATE(9844)] = 412978, - [SMALL_STATE(9845)] = 412998, - [SMALL_STATE(9846)] = 413018, - [SMALL_STATE(9847)] = 413038, - [SMALL_STATE(9848)] = 413058, - [SMALL_STATE(9849)] = 413078, - [SMALL_STATE(9850)] = 413098, - [SMALL_STATE(9851)] = 413118, - [SMALL_STATE(9852)] = 413138, - [SMALL_STATE(9853)] = 413158, - [SMALL_STATE(9854)] = 413178, - [SMALL_STATE(9855)] = 413198, - [SMALL_STATE(9856)] = 413218, - [SMALL_STATE(9857)] = 413238, - [SMALL_STATE(9858)] = 413258, - [SMALL_STATE(9859)] = 413278, - [SMALL_STATE(9860)] = 413298, - [SMALL_STATE(9861)] = 413318, - [SMALL_STATE(9862)] = 413338, - [SMALL_STATE(9863)] = 413358, - [SMALL_STATE(9864)] = 413378, - [SMALL_STATE(9865)] = 413398, - [SMALL_STATE(9866)] = 413418, - [SMALL_STATE(9867)] = 413438, - [SMALL_STATE(9868)] = 413458, - [SMALL_STATE(9869)] = 413478, - [SMALL_STATE(9870)] = 413498, - [SMALL_STATE(9871)] = 413518, - [SMALL_STATE(9872)] = 413538, - [SMALL_STATE(9873)] = 413558, - [SMALL_STATE(9874)] = 413578, - [SMALL_STATE(9875)] = 413598, - [SMALL_STATE(9876)] = 413618, - [SMALL_STATE(9877)] = 413638, - [SMALL_STATE(9878)] = 413658, - [SMALL_STATE(9879)] = 413678, - [SMALL_STATE(9880)] = 413698, - [SMALL_STATE(9881)] = 413718, - [SMALL_STATE(9882)] = 413738, - [SMALL_STATE(9883)] = 413758, - [SMALL_STATE(9884)] = 413778, - [SMALL_STATE(9885)] = 413798, - [SMALL_STATE(9886)] = 413818, - [SMALL_STATE(9887)] = 413838, - [SMALL_STATE(9888)] = 413858, - [SMALL_STATE(9889)] = 413878, - [SMALL_STATE(9890)] = 413898, - [SMALL_STATE(9891)] = 413918, - [SMALL_STATE(9892)] = 413938, - [SMALL_STATE(9893)] = 413958, - [SMALL_STATE(9894)] = 413978, - [SMALL_STATE(9895)] = 413998, - [SMALL_STATE(9896)] = 414018, - [SMALL_STATE(9897)] = 414038, - [SMALL_STATE(9898)] = 414058, - [SMALL_STATE(9899)] = 414078, - [SMALL_STATE(9900)] = 414098, - [SMALL_STATE(9901)] = 414118, - [SMALL_STATE(9902)] = 414138, - [SMALL_STATE(9903)] = 414158, - [SMALL_STATE(9904)] = 414178, - [SMALL_STATE(9905)] = 414198, - [SMALL_STATE(9906)] = 414218, - [SMALL_STATE(9907)] = 414238, - [SMALL_STATE(9908)] = 414258, - [SMALL_STATE(9909)] = 414278, - [SMALL_STATE(9910)] = 414298, - [SMALL_STATE(9911)] = 414318, - [SMALL_STATE(9912)] = 414338, - [SMALL_STATE(9913)] = 414358, - [SMALL_STATE(9914)] = 414378, - [SMALL_STATE(9915)] = 414398, - [SMALL_STATE(9916)] = 414418, - [SMALL_STATE(9917)] = 414438, - [SMALL_STATE(9918)] = 414458, - [SMALL_STATE(9919)] = 414478, - [SMALL_STATE(9920)] = 414498, - [SMALL_STATE(9921)] = 414518, - [SMALL_STATE(9922)] = 414538, - [SMALL_STATE(9923)] = 414558, - [SMALL_STATE(9924)] = 414578, - [SMALL_STATE(9925)] = 414598, - [SMALL_STATE(9926)] = 414618, - [SMALL_STATE(9927)] = 414638, - [SMALL_STATE(9928)] = 414658, - [SMALL_STATE(9929)] = 414678, - [SMALL_STATE(9930)] = 414698, - [SMALL_STATE(9931)] = 414716, - [SMALL_STATE(9932)] = 414736, - [SMALL_STATE(9933)] = 414756, - [SMALL_STATE(9934)] = 414776, - [SMALL_STATE(9935)] = 414794, - [SMALL_STATE(9936)] = 414814, - [SMALL_STATE(9937)] = 414834, - [SMALL_STATE(9938)] = 414850, - [SMALL_STATE(9939)] = 414870, - [SMALL_STATE(9940)] = 414890, - [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)] = 415054, - [SMALL_STATE(9950)] = 415074, - [SMALL_STATE(9951)] = 415090, - [SMALL_STATE(9952)] = 415106, - [SMALL_STATE(9953)] = 415126, - [SMALL_STATE(9954)] = 415146, - [SMALL_STATE(9955)] = 415166, - [SMALL_STATE(9956)] = 415186, - [SMALL_STATE(9957)] = 415202, - [SMALL_STATE(9958)] = 415222, - [SMALL_STATE(9959)] = 415242, - [SMALL_STATE(9960)] = 415262, - [SMALL_STATE(9961)] = 415282, - [SMALL_STATE(9962)] = 415302, - [SMALL_STATE(9963)] = 415322, - [SMALL_STATE(9964)] = 415342, - [SMALL_STATE(9965)] = 415362, - [SMALL_STATE(9966)] = 415382, - [SMALL_STATE(9967)] = 415402, - [SMALL_STATE(9968)] = 415422, - [SMALL_STATE(9969)] = 415442, - [SMALL_STATE(9970)] = 415462, - [SMALL_STATE(9971)] = 415482, - [SMALL_STATE(9972)] = 415502, - [SMALL_STATE(9973)] = 415522, - [SMALL_STATE(9974)] = 415542, - [SMALL_STATE(9975)] = 415562, - [SMALL_STATE(9976)] = 415582, - [SMALL_STATE(9977)] = 415602, - [SMALL_STATE(9978)] = 415622, - [SMALL_STATE(9979)] = 415642, - [SMALL_STATE(9980)] = 415662, - [SMALL_STATE(9981)] = 415682, - [SMALL_STATE(9982)] = 415702, - [SMALL_STATE(9983)] = 415722, - [SMALL_STATE(9984)] = 415742, - [SMALL_STATE(9985)] = 415762, - [SMALL_STATE(9986)] = 415782, - [SMALL_STATE(9987)] = 415802, - [SMALL_STATE(9988)] = 415822, - [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)] = 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)] = 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)] = 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, - [SMALL_STATE(10136)] = 418680, - [SMALL_STATE(10137)] = 418700, - [SMALL_STATE(10138)] = 418720, - [SMALL_STATE(10139)] = 418740, - [SMALL_STATE(10140)] = 418760, - [SMALL_STATE(10141)] = 418780, - [SMALL_STATE(10142)] = 418800, - [SMALL_STATE(10143)] = 418820, - [SMALL_STATE(10144)] = 418840, - [SMALL_STATE(10145)] = 418860, - [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, - [SMALL_STATE(10162)] = 419196, - [SMALL_STATE(10163)] = 419216, - [SMALL_STATE(10164)] = 419236, - [SMALL_STATE(10165)] = 419256, - [SMALL_STATE(10166)] = 419276, - [SMALL_STATE(10167)] = 419296, - [SMALL_STATE(10168)] = 419316, - [SMALL_STATE(10169)] = 419336, - [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, - [SMALL_STATE(10200)] = 419912, - [SMALL_STATE(10201)] = 419932, - [SMALL_STATE(10202)] = 419952, - [SMALL_STATE(10203)] = 419972, - [SMALL_STATE(10204)] = 419992, - [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)] = 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, - [SMALL_STATE(10252)] = 420936, - [SMALL_STATE(10253)] = 420956, - [SMALL_STATE(10254)] = 420976, - [SMALL_STATE(10255)] = 420996, - [SMALL_STATE(10256)] = 421016, - [SMALL_STATE(10257)] = 421036, - [SMALL_STATE(10258)] = 421056, - [SMALL_STATE(10259)] = 421076, - [SMALL_STATE(10260)] = 421096, - [SMALL_STATE(10261)] = 421116, - [SMALL_STATE(10262)] = 421136, - [SMALL_STATE(10263)] = 421156, - [SMALL_STATE(10264)] = 421176, - [SMALL_STATE(10265)] = 421196, - [SMALL_STATE(10266)] = 421216, - [SMALL_STATE(10267)] = 421236, - [SMALL_STATE(10268)] = 421256, - [SMALL_STATE(10269)] = 421276, - [SMALL_STATE(10270)] = 421296, - [SMALL_STATE(10271)] = 421316, - [SMALL_STATE(10272)] = 421336, - [SMALL_STATE(10273)] = 421356, - [SMALL_STATE(10274)] = 421376, - [SMALL_STATE(10275)] = 421396, - [SMALL_STATE(10276)] = 421416, - [SMALL_STATE(10277)] = 421436, - [SMALL_STATE(10278)] = 421456, - [SMALL_STATE(10279)] = 421476, - [SMALL_STATE(10280)] = 421496, - [SMALL_STATE(10281)] = 421516, - [SMALL_STATE(10282)] = 421536, - [SMALL_STATE(10283)] = 421556, - [SMALL_STATE(10284)] = 421576, - [SMALL_STATE(10285)] = 421596, - [SMALL_STATE(10286)] = 421616, - [SMALL_STATE(10287)] = 421636, - [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, - [SMALL_STATE(10315)] = 422188, - [SMALL_STATE(10316)] = 422208, - [SMALL_STATE(10317)] = 422228, - [SMALL_STATE(10318)] = 422248, - [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, - [SMALL_STATE(10335)] = 422586, - [SMALL_STATE(10336)] = 422606, - [SMALL_STATE(10337)] = 422626, - [SMALL_STATE(10338)] = 422646, - [SMALL_STATE(10339)] = 422666, - [SMALL_STATE(10340)] = 422686, - [SMALL_STATE(10341)] = 422706, - [SMALL_STATE(10342)] = 422726, - [SMALL_STATE(10343)] = 422746, - [SMALL_STATE(10344)] = 422766, - [SMALL_STATE(10345)] = 422786, - [SMALL_STATE(10346)] = 422806, - [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, + [SMALL_STATE(5071)] = 184543, + [SMALL_STATE(5072)] = 184604, + [SMALL_STATE(5073)] = 184663, + [SMALL_STATE(5074)] = 184718, + [SMALL_STATE(5075)] = 184773, + [SMALL_STATE(5076)] = 184834, + [SMALL_STATE(5077)] = 184901, + [SMALL_STATE(5078)] = 184962, + [SMALL_STATE(5079)] = 185025, + [SMALL_STATE(5080)] = 185084, + [SMALL_STATE(5081)] = 185151, + [SMALL_STATE(5082)] = 185210, + [SMALL_STATE(5083)] = 185267, + [SMALL_STATE(5084)] = 185324, + [SMALL_STATE(5085)] = 185379, + [SMALL_STATE(5086)] = 185446, + [SMALL_STATE(5087)] = 185513, + [SMALL_STATE(5088)] = 185574, + [SMALL_STATE(5089)] = 185669, + [SMALL_STATE(5090)] = 185730, + [SMALL_STATE(5091)] = 185789, + [SMALL_STATE(5092)] = 185884, + [SMALL_STATE(5093)] = 185943, + [SMALL_STATE(5094)] = 186000, + [SMALL_STATE(5095)] = 186059, + [SMALL_STATE(5096)] = 186116, + [SMALL_STATE(5097)] = 186179, + [SMALL_STATE(5098)] = 186234, + [SMALL_STATE(5099)] = 186289, + [SMALL_STATE(5100)] = 186344, + [SMALL_STATE(5101)] = 186403, + [SMALL_STATE(5102)] = 186460, + [SMALL_STATE(5103)] = 186521, + [SMALL_STATE(5104)] = 186576, + [SMALL_STATE(5105)] = 186637, + [SMALL_STATE(5106)] = 186732, + [SMALL_STATE(5107)] = 186789, + [SMALL_STATE(5108)] = 186850, + [SMALL_STATE(5109)] = 186925, + [SMALL_STATE(5110)] = 186980, + [SMALL_STATE(5111)] = 187037, + [SMALL_STATE(5112)] = 187092, + [SMALL_STATE(5113)] = 187149, + [SMALL_STATE(5114)] = 187216, + [SMALL_STATE(5115)] = 187277, + [SMALL_STATE(5116)] = 187344, + [SMALL_STATE(5117)] = 187399, + [SMALL_STATE(5118)] = 187460, + [SMALL_STATE(5119)] = 187517, + [SMALL_STATE(5120)] = 187580, + [SMALL_STATE(5121)] = 187643, + [SMALL_STATE(5122)] = 187704, + [SMALL_STATE(5123)] = 187761, + [SMALL_STATE(5124)] = 187818, + [SMALL_STATE(5125)] = 187885, + [SMALL_STATE(5126)] = 187940, + [SMALL_STATE(5127)] = 188015, + [SMALL_STATE(5128)] = 188072, + [SMALL_STATE(5129)] = 188129, + [SMALL_STATE(5130)] = 188184, + [SMALL_STATE(5131)] = 188239, + [SMALL_STATE(5132)] = 188294, + [SMALL_STATE(5133)] = 188361, + [SMALL_STATE(5134)] = 188422, + [SMALL_STATE(5135)] = 188477, + [SMALL_STATE(5136)] = 188538, + [SMALL_STATE(5137)] = 188605, + [SMALL_STATE(5138)] = 188662, + [SMALL_STATE(5139)] = 188719, + [SMALL_STATE(5140)] = 188774, + [SMALL_STATE(5141)] = 188831, + [SMALL_STATE(5142)] = 188888, + [SMALL_STATE(5143)] = 188944, + [SMALL_STATE(5144)] = 188998, + [SMALL_STATE(5145)] = 189052, + [SMALL_STATE(5146)] = 189106, + [SMALL_STATE(5147)] = 189164, + [SMALL_STATE(5148)] = 189218, + [SMALL_STATE(5149)] = 189272, + [SMALL_STATE(5150)] = 189338, + [SMALL_STATE(5151)] = 189394, + [SMALL_STATE(5152)] = 189448, + [SMALL_STATE(5153)] = 189502, + [SMALL_STATE(5154)] = 189556, + [SMALL_STATE(5155)] = 189610, + [SMALL_STATE(5156)] = 189676, + [SMALL_STATE(5157)] = 189730, + [SMALL_STATE(5158)] = 189784, + [SMALL_STATE(5159)] = 189838, + [SMALL_STATE(5160)] = 189892, + [SMALL_STATE(5161)] = 189946, + [SMALL_STATE(5162)] = 190006, + [SMALL_STATE(5163)] = 190060, + [SMALL_STATE(5164)] = 190114, + [SMALL_STATE(5165)] = 190174, + [SMALL_STATE(5166)] = 190228, + [SMALL_STATE(5167)] = 190282, + [SMALL_STATE(5168)] = 190342, + [SMALL_STATE(5169)] = 190402, + [SMALL_STATE(5170)] = 190460, + [SMALL_STATE(5171)] = 190514, + [SMALL_STATE(5172)] = 190580, + [SMALL_STATE(5173)] = 190646, + [SMALL_STATE(5174)] = 190720, + [SMALL_STATE(5175)] = 190794, + [SMALL_STATE(5176)] = 190868, + [SMALL_STATE(5177)] = 190922, + [SMALL_STATE(5178)] = 190976, + [SMALL_STATE(5179)] = 191030, + [SMALL_STATE(5180)] = 191084, + [SMALL_STATE(5181)] = 191138, + [SMALL_STATE(5182)] = 191192, + [SMALL_STATE(5183)] = 191290, + [SMALL_STATE(5184)] = 191348, + [SMALL_STATE(5185)] = 191402, + [SMALL_STATE(5186)] = 191462, + [SMALL_STATE(5187)] = 191516, + [SMALL_STATE(5188)] = 191576, + [SMALL_STATE(5189)] = 191638, + [SMALL_STATE(5190)] = 191692, + [SMALL_STATE(5191)] = 191758, + [SMALL_STATE(5192)] = 191814, + [SMALL_STATE(5193)] = 191874, + [SMALL_STATE(5194)] = 191934, + [SMALL_STATE(5195)] = 192030, + [SMALL_STATE(5196)] = 192088, + [SMALL_STATE(5197)] = 192184, + [SMALL_STATE(5198)] = 192242, + [SMALL_STATE(5199)] = 192300, + [SMALL_STATE(5200)] = 192358, + [SMALL_STATE(5201)] = 192412, + [SMALL_STATE(5202)] = 192498, + [SMALL_STATE(5203)] = 192552, + [SMALL_STATE(5204)] = 192606, + [SMALL_STATE(5205)] = 192662, + [SMALL_STATE(5206)] = 192756, + [SMALL_STATE(5207)] = 192814, + [SMALL_STATE(5208)] = 192908, + [SMALL_STATE(5209)] = 192966, + [SMALL_STATE(5210)] = 193024, + [SMALL_STATE(5211)] = 193082, + [SMALL_STATE(5212)] = 193138, + [SMALL_STATE(5213)] = 193192, + [SMALL_STATE(5214)] = 193248, + [SMALL_STATE(5215)] = 193308, + [SMALL_STATE(5216)] = 193362, + [SMALL_STATE(5217)] = 193416, + [SMALL_STATE(5218)] = 193470, + [SMALL_STATE(5219)] = 193524, + [SMALL_STATE(5220)] = 193580, + [SMALL_STATE(5221)] = 193636, + [SMALL_STATE(5222)] = 193690, + [SMALL_STATE(5223)] = 193746, + [SMALL_STATE(5224)] = 193802, + [SMALL_STATE(5225)] = 193862, + [SMALL_STATE(5226)] = 193918, + [SMALL_STATE(5227)] = 193974, + [SMALL_STATE(5228)] = 194068, + [SMALL_STATE(5229)] = 194122, + [SMALL_STATE(5230)] = 194176, + [SMALL_STATE(5231)] = 194230, + [SMALL_STATE(5232)] = 194288, + [SMALL_STATE(5233)] = 194342, + [SMALL_STATE(5234)] = 194396, + [SMALL_STATE(5235)] = 194450, + [SMALL_STATE(5236)] = 194506, + [SMALL_STATE(5237)] = 194562, + [SMALL_STATE(5238)] = 194616, + [SMALL_STATE(5239)] = 194706, + [SMALL_STATE(5240)] = 194796, + [SMALL_STATE(5241)] = 194886, + [SMALL_STATE(5242)] = 194940, + [SMALL_STATE(5243)] = 195034, + [SMALL_STATE(5244)] = 195092, + [SMALL_STATE(5245)] = 195146, + [SMALL_STATE(5246)] = 195200, + [SMALL_STATE(5247)] = 195258, + [SMALL_STATE(5248)] = 195312, + [SMALL_STATE(5249)] = 195366, + [SMALL_STATE(5250)] = 195420, + [SMALL_STATE(5251)] = 195474, + [SMALL_STATE(5252)] = 195528, + [SMALL_STATE(5253)] = 195618, + [SMALL_STATE(5254)] = 195708, + [SMALL_STATE(5255)] = 195762, + [SMALL_STATE(5256)] = 195816, + [SMALL_STATE(5257)] = 195906, + [SMALL_STATE(5258)] = 195996, + [SMALL_STATE(5259)] = 196054, + [SMALL_STATE(5260)] = 196108, + [SMALL_STATE(5261)] = 196198, + [SMALL_STATE(5262)] = 196252, + [SMALL_STATE(5263)] = 196306, + [SMALL_STATE(5264)] = 196370, + [SMALL_STATE(5265)] = 196430, + [SMALL_STATE(5266)] = 196490, + [SMALL_STATE(5267)] = 196558, + [SMALL_STATE(5268)] = 196612, + [SMALL_STATE(5269)] = 196698, + [SMALL_STATE(5270)] = 196776, + [SMALL_STATE(5271)] = 196846, + [SMALL_STATE(5272)] = 196912, + [SMALL_STATE(5273)] = 196986, + [SMALL_STATE(5274)] = 197040, + [SMALL_STATE(5275)] = 197122, + [SMALL_STATE(5276)] = 197176, + [SMALL_STATE(5277)] = 197272, + [SMALL_STATE(5278)] = 197326, + [SMALL_STATE(5279)] = 197382, + [SMALL_STATE(5280)] = 197436, + [SMALL_STATE(5281)] = 197490, + [SMALL_STATE(5282)] = 197574, + [SMALL_STATE(5283)] = 197628, + [SMALL_STATE(5284)] = 197682, + [SMALL_STATE(5285)] = 197736, + [SMALL_STATE(5286)] = 197790, + [SMALL_STATE(5287)] = 197876, + [SMALL_STATE(5288)] = 197966, + [SMALL_STATE(5289)] = 198056, + [SMALL_STATE(5290)] = 198146, + [SMALL_STATE(5291)] = 198210, + [SMALL_STATE(5292)] = 198270, + [SMALL_STATE(5293)] = 198330, + [SMALL_STATE(5294)] = 198398, + [SMALL_STATE(5295)] = 198484, + [SMALL_STATE(5296)] = 198562, + [SMALL_STATE(5297)] = 198632, + [SMALL_STATE(5298)] = 198698, + [SMALL_STATE(5299)] = 198772, + [SMALL_STATE(5300)] = 198854, + [SMALL_STATE(5301)] = 198938, + [SMALL_STATE(5302)] = 199024, + [SMALL_STATE(5303)] = 199114, + [SMALL_STATE(5304)] = 199204, + [SMALL_STATE(5305)] = 199258, + [SMALL_STATE(5306)] = 199312, + [SMALL_STATE(5307)] = 199370, + [SMALL_STATE(5308)] = 199424, + [SMALL_STATE(5309)] = 199478, + [SMALL_STATE(5310)] = 199574, + [SMALL_STATE(5311)] = 199632, + [SMALL_STATE(5312)] = 199690, + [SMALL_STATE(5313)] = 199744, + [SMALL_STATE(5314)] = 199798, + [SMALL_STATE(5315)] = 199852, + [SMALL_STATE(5316)] = 199906, + [SMALL_STATE(5317)] = 199960, + [SMALL_STATE(5318)] = 200014, + [SMALL_STATE(5319)] = 200068, + [SMALL_STATE(5320)] = 200122, + [SMALL_STATE(5321)] = 200180, + [SMALL_STATE(5322)] = 200236, + [SMALL_STATE(5323)] = 200290, + [SMALL_STATE(5324)] = 200346, + [SMALL_STATE(5325)] = 200400, + [SMALL_STATE(5326)] = 200454, + [SMALL_STATE(5327)] = 200508, + [SMALL_STATE(5328)] = 200562, + [SMALL_STATE(5329)] = 200616, + [SMALL_STATE(5330)] = 200710, + [SMALL_STATE(5331)] = 200766, + [SMALL_STATE(5332)] = 200824, + [SMALL_STATE(5333)] = 200886, + [SMALL_STATE(5334)] = 200972, + [SMALL_STATE(5335)] = 201026, + [SMALL_STATE(5336)] = 201112, + [SMALL_STATE(5337)] = 201166, + [SMALL_STATE(5338)] = 201220, + [SMALL_STATE(5339)] = 201274, + [SMALL_STATE(5340)] = 201336, + [SMALL_STATE(5341)] = 201398, + [SMALL_STATE(5342)] = 201452, + [SMALL_STATE(5343)] = 201506, + [SMALL_STATE(5344)] = 201560, + [SMALL_STATE(5345)] = 201614, + [SMALL_STATE(5346)] = 201668, + [SMALL_STATE(5347)] = 201722, + [SMALL_STATE(5348)] = 201776, + [SMALL_STATE(5349)] = 201830, + [SMALL_STATE(5350)] = 201884, + [SMALL_STATE(5351)] = 201938, + [SMALL_STATE(5352)] = 201992, + [SMALL_STATE(5353)] = 202046, + [SMALL_STATE(5354)] = 202100, + [SMALL_STATE(5355)] = 202154, + [SMALL_STATE(5356)] = 202208, + [SMALL_STATE(5357)] = 202262, + [SMALL_STATE(5358)] = 202320, + [SMALL_STATE(5359)] = 202406, + [SMALL_STATE(5360)] = 202460, + [SMALL_STATE(5361)] = 202514, + [SMALL_STATE(5362)] = 202568, + [SMALL_STATE(5363)] = 202622, + [SMALL_STATE(5364)] = 202676, + [SMALL_STATE(5365)] = 202730, + [SMALL_STATE(5366)] = 202784, + [SMALL_STATE(5367)] = 202842, + [SMALL_STATE(5368)] = 202900, + [SMALL_STATE(5369)] = 202954, + [SMALL_STATE(5370)] = 203014, + [SMALL_STATE(5371)] = 203076, + [SMALL_STATE(5372)] = 203130, + [SMALL_STATE(5373)] = 203184, + [SMALL_STATE(5374)] = 203238, + [SMALL_STATE(5375)] = 203292, + [SMALL_STATE(5376)] = 203346, + [SMALL_STATE(5377)] = 203400, + [SMALL_STATE(5378)] = 203454, + [SMALL_STATE(5379)] = 203548, + [SMALL_STATE(5380)] = 203602, + [SMALL_STATE(5381)] = 203656, + [SMALL_STATE(5382)] = 203710, + [SMALL_STATE(5383)] = 203800, + [SMALL_STATE(5384)] = 203858, + [SMALL_STATE(5385)] = 203912, + [SMALL_STATE(5386)] = 203966, + [SMALL_STATE(5387)] = 204024, + [SMALL_STATE(5388)] = 204078, + [SMALL_STATE(5389)] = 204132, + [SMALL_STATE(5390)] = 204186, + [SMALL_STATE(5391)] = 204240, + [SMALL_STATE(5392)] = 204294, + [SMALL_STATE(5393)] = 204348, + [SMALL_STATE(5394)] = 204402, + [SMALL_STATE(5395)] = 204456, + [SMALL_STATE(5396)] = 204510, + [SMALL_STATE(5397)] = 204564, + [SMALL_STATE(5398)] = 204618, + [SMALL_STATE(5399)] = 204672, + [SMALL_STATE(5400)] = 204762, + [SMALL_STATE(5401)] = 204816, + [SMALL_STATE(5402)] = 204870, + [SMALL_STATE(5403)] = 204924, + [SMALL_STATE(5404)] = 204978, + [SMALL_STATE(5405)] = 205032, + [SMALL_STATE(5406)] = 205086, + [SMALL_STATE(5407)] = 205140, + [SMALL_STATE(5408)] = 205194, + [SMALL_STATE(5409)] = 205248, + [SMALL_STATE(5410)] = 205302, + [SMALL_STATE(5411)] = 205356, + [SMALL_STATE(5412)] = 205410, + [SMALL_STATE(5413)] = 205464, + [SMALL_STATE(5414)] = 205518, + [SMALL_STATE(5415)] = 205572, + [SMALL_STATE(5416)] = 205626, + [SMALL_STATE(5417)] = 205680, + [SMALL_STATE(5418)] = 205734, + [SMALL_STATE(5419)] = 205788, + [SMALL_STATE(5420)] = 205842, + [SMALL_STATE(5421)] = 205896, + [SMALL_STATE(5422)] = 205950, + [SMALL_STATE(5423)] = 206004, + [SMALL_STATE(5424)] = 206058, + [SMALL_STATE(5425)] = 206112, + [SMALL_STATE(5426)] = 206166, + [SMALL_STATE(5427)] = 206220, + [SMALL_STATE(5428)] = 206274, + [SMALL_STATE(5429)] = 206328, + [SMALL_STATE(5430)] = 206382, + [SMALL_STATE(5431)] = 206436, + [SMALL_STATE(5432)] = 206490, + [SMALL_STATE(5433)] = 206544, + [SMALL_STATE(5434)] = 206598, + [SMALL_STATE(5435)] = 206652, + [SMALL_STATE(5436)] = 206706, + [SMALL_STATE(5437)] = 206762, + [SMALL_STATE(5438)] = 206816, + [SMALL_STATE(5439)] = 206870, + [SMALL_STATE(5440)] = 206924, + [SMALL_STATE(5441)] = 206978, + [SMALL_STATE(5442)] = 207032, + [SMALL_STATE(5443)] = 207086, + [SMALL_STATE(5444)] = 207140, + [SMALL_STATE(5445)] = 207194, + [SMALL_STATE(5446)] = 207248, + [SMALL_STATE(5447)] = 207302, + [SMALL_STATE(5448)] = 207356, + [SMALL_STATE(5449)] = 207410, + [SMALL_STATE(5450)] = 207464, + [SMALL_STATE(5451)] = 207518, + [SMALL_STATE(5452)] = 207572, + [SMALL_STATE(5453)] = 207626, + [SMALL_STATE(5454)] = 207680, + [SMALL_STATE(5455)] = 207733, + [SMALL_STATE(5456)] = 207786, + [SMALL_STATE(5457)] = 207841, + [SMALL_STATE(5458)] = 207900, + [SMALL_STATE(5459)] = 207953, + [SMALL_STATE(5460)] = 208010, + [SMALL_STATE(5461)] = 208067, + [SMALL_STATE(5462)] = 208152, + [SMALL_STATE(5463)] = 208207, + [SMALL_STATE(5464)] = 208262, + [SMALL_STATE(5465)] = 208319, + [SMALL_STATE(5466)] = 208374, + [SMALL_STATE(5467)] = 208431, + [SMALL_STATE(5468)] = 208484, + [SMALL_STATE(5469)] = 208537, + [SMALL_STATE(5470)] = 208590, + [SMALL_STATE(5471)] = 208679, + [SMALL_STATE(5472)] = 208732, + [SMALL_STATE(5473)] = 208785, + [SMALL_STATE(5474)] = 208838, + [SMALL_STATE(5475)] = 208893, + [SMALL_STATE(5476)] = 208946, + [SMALL_STATE(5477)] = 208999, + [SMALL_STATE(5478)] = 209052, + [SMALL_STATE(5479)] = 209105, + [SMALL_STATE(5480)] = 209198, + [SMALL_STATE(5481)] = 209255, + [SMALL_STATE(5482)] = 209348, + [SMALL_STATE(5483)] = 209405, + [SMALL_STATE(5484)] = 209462, + [SMALL_STATE(5485)] = 209519, + [SMALL_STATE(5486)] = 209586, + [SMALL_STATE(5487)] = 209639, + [SMALL_STATE(5488)] = 209692, + [SMALL_STATE(5489)] = 209745, + [SMALL_STATE(5490)] = 209798, + [SMALL_STATE(5491)] = 209857, + [SMALL_STATE(5492)] = 209910, + [SMALL_STATE(5493)] = 209963, + [SMALL_STATE(5494)] = 210016, + [SMALL_STATE(5495)] = 210071, + [SMALL_STATE(5496)] = 210124, + [SMALL_STATE(5497)] = 210177, + [SMALL_STATE(5498)] = 210230, + [SMALL_STATE(5499)] = 210285, + [SMALL_STATE(5500)] = 210358, + [SMALL_STATE(5501)] = 210411, + [SMALL_STATE(5502)] = 210464, + [SMALL_STATE(5503)] = 210519, + [SMALL_STATE(5504)] = 210612, + [SMALL_STATE(5505)] = 210705, + [SMALL_STATE(5506)] = 210758, + [SMALL_STATE(5507)] = 210811, + [SMALL_STATE(5508)] = 210864, + [SMALL_STATE(5509)] = 210917, + [SMALL_STATE(5510)] = 210970, + [SMALL_STATE(5511)] = 211023, + [SMALL_STATE(5512)] = 211076, + [SMALL_STATE(5513)] = 211129, + [SMALL_STATE(5514)] = 211182, + [SMALL_STATE(5515)] = 211235, + [SMALL_STATE(5516)] = 211288, + [SMALL_STATE(5517)] = 211341, + [SMALL_STATE(5518)] = 211394, + [SMALL_STATE(5519)] = 211447, + [SMALL_STATE(5520)] = 211500, + [SMALL_STATE(5521)] = 211553, + [SMALL_STATE(5522)] = 211644, + [SMALL_STATE(5523)] = 211697, + [SMALL_STATE(5524)] = 211750, + [SMALL_STATE(5525)] = 211803, + [SMALL_STATE(5526)] = 211856, + [SMALL_STATE(5527)] = 211909, + [SMALL_STATE(5528)] = 211962, + [SMALL_STATE(5529)] = 212015, + [SMALL_STATE(5530)] = 212068, + [SMALL_STATE(5531)] = 212121, + [SMALL_STATE(5532)] = 212174, + [SMALL_STATE(5533)] = 212227, + [SMALL_STATE(5534)] = 212280, + [SMALL_STATE(5535)] = 212333, + [SMALL_STATE(5536)] = 212386, + [SMALL_STATE(5537)] = 212439, + [SMALL_STATE(5538)] = 212492, + [SMALL_STATE(5539)] = 212545, + [SMALL_STATE(5540)] = 212598, + [SMALL_STATE(5541)] = 212651, + [SMALL_STATE(5542)] = 212704, + [SMALL_STATE(5543)] = 212757, + [SMALL_STATE(5544)] = 212810, + [SMALL_STATE(5545)] = 212863, + [SMALL_STATE(5546)] = 212936, + [SMALL_STATE(5547)] = 212989, + [SMALL_STATE(5548)] = 213042, + [SMALL_STATE(5549)] = 213095, + [SMALL_STATE(5550)] = 213148, + [SMALL_STATE(5551)] = 213201, + [SMALL_STATE(5552)] = 213254, + [SMALL_STATE(5553)] = 213307, + [SMALL_STATE(5554)] = 213360, + [SMALL_STATE(5555)] = 213413, + [SMALL_STATE(5556)] = 213466, + [SMALL_STATE(5557)] = 213519, + [SMALL_STATE(5558)] = 213572, + [SMALL_STATE(5559)] = 213625, + [SMALL_STATE(5560)] = 213678, + [SMALL_STATE(5561)] = 213731, + [SMALL_STATE(5562)] = 213784, + [SMALL_STATE(5563)] = 213837, + [SMALL_STATE(5564)] = 213890, + [SMALL_STATE(5565)] = 213943, + [SMALL_STATE(5566)] = 213996, + [SMALL_STATE(5567)] = 214049, + [SMALL_STATE(5568)] = 214102, + [SMALL_STATE(5569)] = 214155, + [SMALL_STATE(5570)] = 214208, + [SMALL_STATE(5571)] = 214299, + [SMALL_STATE(5572)] = 214390, + [SMALL_STATE(5573)] = 214443, + [SMALL_STATE(5574)] = 214496, + [SMALL_STATE(5575)] = 214549, + [SMALL_STATE(5576)] = 214602, + [SMALL_STATE(5577)] = 214687, + [SMALL_STATE(5578)] = 214740, + [SMALL_STATE(5579)] = 214793, + [SMALL_STATE(5580)] = 214846, + [SMALL_STATE(5581)] = 214901, + [SMALL_STATE(5582)] = 214956, + [SMALL_STATE(5583)] = 215047, + [SMALL_STATE(5584)] = 215102, + [SMALL_STATE(5585)] = 215193, + [SMALL_STATE(5586)] = 215284, + [SMALL_STATE(5587)] = 215347, + [SMALL_STATE(5588)] = 215406, + [SMALL_STATE(5589)] = 215465, + [SMALL_STATE(5590)] = 215558, + [SMALL_STATE(5591)] = 215651, + [SMALL_STATE(5592)] = 215718, + [SMALL_STATE(5593)] = 215803, + [SMALL_STATE(5594)] = 215880, + [SMALL_STATE(5595)] = 215949, + [SMALL_STATE(5596)] = 216014, + [SMALL_STATE(5597)] = 216087, + [SMALL_STATE(5598)] = 216168, + [SMALL_STATE(5599)] = 216251, + [SMALL_STATE(5600)] = 216306, + [SMALL_STATE(5601)] = 216379, + [SMALL_STATE(5602)] = 216438, + [SMALL_STATE(5603)] = 216523, + [SMALL_STATE(5604)] = 216576, + [SMALL_STATE(5605)] = 216629, + [SMALL_STATE(5606)] = 216720, + [SMALL_STATE(5607)] = 216775, + [SMALL_STATE(5608)] = 216866, + [SMALL_STATE(5609)] = 216939, + [SMALL_STATE(5610)] = 217006, + [SMALL_STATE(5611)] = 217059, + [SMALL_STATE(5612)] = 217112, + [SMALL_STATE(5613)] = 217165, + [SMALL_STATE(5614)] = 217220, + [SMALL_STATE(5615)] = 217273, + [SMALL_STATE(5616)] = 217346, + [SMALL_STATE(5617)] = 217399, + [SMALL_STATE(5618)] = 217452, + [SMALL_STATE(5619)] = 217505, + [SMALL_STATE(5620)] = 217558, + [SMALL_STATE(5621)] = 217647, + [SMALL_STATE(5622)] = 217700, + [SMALL_STATE(5623)] = 217753, + [SMALL_STATE(5624)] = 217806, + [SMALL_STATE(5625)] = 217859, + [SMALL_STATE(5626)] = 217912, + [SMALL_STATE(5627)] = 217967, + [SMALL_STATE(5628)] = 218020, + [SMALL_STATE(5629)] = 218073, + [SMALL_STATE(5630)] = 218126, + [SMALL_STATE(5631)] = 218179, + [SMALL_STATE(5632)] = 218232, + [SMALL_STATE(5633)] = 218285, + [SMALL_STATE(5634)] = 218344, + [SMALL_STATE(5635)] = 218397, + [SMALL_STATE(5636)] = 218450, + [SMALL_STATE(5637)] = 218503, + [SMALL_STATE(5638)] = 218556, + [SMALL_STATE(5639)] = 218609, + [SMALL_STATE(5640)] = 218662, + [SMALL_STATE(5641)] = 218715, + [SMALL_STATE(5642)] = 218768, + [SMALL_STATE(5643)] = 218823, + [SMALL_STATE(5644)] = 218912, + [SMALL_STATE(5645)] = 219001, + [SMALL_STATE(5646)] = 219058, + [SMALL_STATE(5647)] = 219111, + [SMALL_STATE(5648)] = 219204, + [SMALL_STATE(5649)] = 219259, + [SMALL_STATE(5650)] = 219314, + [SMALL_STATE(5651)] = 219367, + [SMALL_STATE(5652)] = 219424, + [SMALL_STATE(5653)] = 219517, + [SMALL_STATE(5654)] = 219572, + [SMALL_STATE(5655)] = 219627, + [SMALL_STATE(5656)] = 219682, + [SMALL_STATE(5657)] = 219737, + [SMALL_STATE(5658)] = 219790, + [SMALL_STATE(5659)] = 219883, + [SMALL_STATE(5660)] = 219940, + [SMALL_STATE(5661)] = 220033, + [SMALL_STATE(5662)] = 220090, + [SMALL_STATE(5663)] = 220147, + [SMALL_STATE(5664)] = 220204, + [SMALL_STATE(5665)] = 220289, + [SMALL_STATE(5666)] = 220344, + [SMALL_STATE(5667)] = 220437, + [SMALL_STATE(5668)] = 220494, + [SMALL_STATE(5669)] = 220587, + [SMALL_STATE(5670)] = 220644, + [SMALL_STATE(5671)] = 220701, + [SMALL_STATE(5672)] = 220758, + [SMALL_STATE(5673)] = 220813, + [SMALL_STATE(5674)] = 220866, + [SMALL_STATE(5675)] = 220919, + [SMALL_STATE(5676)] = 221008, + [SMALL_STATE(5677)] = 221061, + [SMALL_STATE(5678)] = 221114, + [SMALL_STATE(5679)] = 221171, + [SMALL_STATE(5680)] = 221228, + [SMALL_STATE(5681)] = 221285, + [SMALL_STATE(5682)] = 221342, + [SMALL_STATE(5683)] = 221435, + [SMALL_STATE(5684)] = 221528, + [SMALL_STATE(5685)] = 221581, + [SMALL_STATE(5686)] = 221666, + [SMALL_STATE(5687)] = 221719, + [SMALL_STATE(5688)] = 221772, + [SMALL_STATE(5689)] = 221825, + [SMALL_STATE(5690)] = 221878, + [SMALL_STATE(5691)] = 221931, + [SMALL_STATE(5692)] = 221984, + [SMALL_STATE(5693)] = 222037, + [SMALL_STATE(5694)] = 222090, + [SMALL_STATE(5695)] = 222143, + [SMALL_STATE(5696)] = 222196, + [SMALL_STATE(5697)] = 222249, + [SMALL_STATE(5698)] = 222302, + [SMALL_STATE(5699)] = 222359, + [SMALL_STATE(5700)] = 222414, + [SMALL_STATE(5701)] = 222503, + [SMALL_STATE(5702)] = 222592, + [SMALL_STATE(5703)] = 222649, + [SMALL_STATE(5704)] = 222706, + [SMALL_STATE(5705)] = 222763, + [SMALL_STATE(5706)] = 222852, + [SMALL_STATE(5707)] = 222941, + [SMALL_STATE(5708)] = 223030, + [SMALL_STATE(5709)] = 223085, + [SMALL_STATE(5710)] = 223178, + [SMALL_STATE(5711)] = 223235, + [SMALL_STATE(5712)] = 223328, + [SMALL_STATE(5713)] = 223385, + [SMALL_STATE(5714)] = 223442, + [SMALL_STATE(5715)] = 223499, + [SMALL_STATE(5716)] = 223556, + [SMALL_STATE(5717)] = 223613, + [SMALL_STATE(5718)] = 223666, + [SMALL_STATE(5719)] = 223733, + [SMALL_STATE(5720)] = 223786, + [SMALL_STATE(5721)] = 223839, + [SMALL_STATE(5722)] = 223896, + [SMALL_STATE(5723)] = 223959, + [SMALL_STATE(5724)] = 224018, + [SMALL_STATE(5725)] = 224077, + [SMALL_STATE(5726)] = 224144, + [SMALL_STATE(5727)] = 224229, + [SMALL_STATE(5728)] = 224306, + [SMALL_STATE(5729)] = 224375, + [SMALL_STATE(5730)] = 224440, + [SMALL_STATE(5731)] = 224513, + [SMALL_STATE(5732)] = 224594, + [SMALL_STATE(5733)] = 224677, + [SMALL_STATE(5734)] = 224730, + [SMALL_STATE(5735)] = 224783, + [SMALL_STATE(5736)] = 224836, + [SMALL_STATE(5737)] = 224889, + [SMALL_STATE(5738)] = 224942, + [SMALL_STATE(5739)] = 224995, + [SMALL_STATE(5740)] = 225048, + [SMALL_STATE(5741)] = 225101, + [SMALL_STATE(5742)] = 225154, + [SMALL_STATE(5743)] = 225207, + [SMALL_STATE(5744)] = 225260, + [SMALL_STATE(5745)] = 225317, + [SMALL_STATE(5746)] = 225370, + [SMALL_STATE(5747)] = 225423, + [SMALL_STATE(5748)] = 225480, + [SMALL_STATE(5749)] = 225533, + [SMALL_STATE(5750)] = 225626, + [SMALL_STATE(5751)] = 225681, + [SMALL_STATE(5752)] = 225774, + [SMALL_STATE(5753)] = 225827, + [SMALL_STATE(5754)] = 225882, + [SMALL_STATE(5755)] = 225935, + [SMALL_STATE(5756)] = 225992, + [SMALL_STATE(5757)] = 226047, + [SMALL_STATE(5758)] = 226100, + [SMALL_STATE(5759)] = 226155, + [SMALL_STATE(5760)] = 226208, + [SMALL_STATE(5761)] = 226261, + [SMALL_STATE(5762)] = 226314, + [SMALL_STATE(5763)] = 226367, + [SMALL_STATE(5764)] = 226426, + [SMALL_STATE(5765)] = 226479, + [SMALL_STATE(5766)] = 226572, + [SMALL_STATE(5767)] = 226629, + [SMALL_STATE(5768)] = 226722, + [SMALL_STATE(5769)] = 226779, + [SMALL_STATE(5770)] = 226836, + [SMALL_STATE(5771)] = 226893, + [SMALL_STATE(5772)] = 226948, + [SMALL_STATE(5773)] = 227015, + [SMALL_STATE(5774)] = 227068, + [SMALL_STATE(5775)] = 227153, + [SMALL_STATE(5776)] = 227212, + [SMALL_STATE(5777)] = 227303, + [SMALL_STATE(5778)] = 227394, + [SMALL_STATE(5779)] = 227447, + [SMALL_STATE(5780)] = 227500, + [SMALL_STATE(5781)] = 227552, + [SMALL_STATE(5782)] = 227604, + [SMALL_STATE(5783)] = 227692, + [SMALL_STATE(5784)] = 227788, + [SMALL_STATE(5785)] = 227840, + [SMALL_STATE(5786)] = 227928, + [SMALL_STATE(5787)] = 228016, + [SMALL_STATE(5788)] = 228068, + [SMALL_STATE(5789)] = 228120, + [SMALL_STATE(5790)] = 228172, + [SMALL_STATE(5791)] = 228224, + [SMALL_STATE(5792)] = 228318, + [SMALL_STATE(5793)] = 228402, + [SMALL_STATE(5794)] = 228454, + [SMALL_STATE(5795)] = 228550, + [SMALL_STATE(5796)] = 228602, + [SMALL_STATE(5797)] = 228694, + [SMALL_STATE(5798)] = 228746, + [SMALL_STATE(5799)] = 228808, + [SMALL_STATE(5800)] = 228866, + [SMALL_STATE(5801)] = 228918, + [SMALL_STATE(5802)] = 228972, + [SMALL_STATE(5803)] = 229024, + [SMALL_STATE(5804)] = 229076, + [SMALL_STATE(5805)] = 229128, + [SMALL_STATE(5806)] = 229180, + [SMALL_STATE(5807)] = 229272, + [SMALL_STATE(5808)] = 229324, + [SMALL_STATE(5809)] = 229418, + [SMALL_STATE(5810)] = 229474, + [SMALL_STATE(5811)] = 229570, + [SMALL_STATE(5812)] = 229664, + [SMALL_STATE(5813)] = 229718, + [SMALL_STATE(5814)] = 229770, + [SMALL_STATE(5815)] = 229828, + [SMALL_STATE(5816)] = 229894, + [SMALL_STATE(5817)] = 229946, + [SMALL_STATE(5818)] = 229998, + [SMALL_STATE(5819)] = 230050, + [SMALL_STATE(5820)] = 230134, + [SMALL_STATE(5821)] = 230186, + [SMALL_STATE(5822)] = 230262, + [SMALL_STATE(5823)] = 230356, + [SMALL_STATE(5824)] = 230424, + [SMALL_STATE(5825)] = 230476, + [SMALL_STATE(5826)] = 230540, + [SMALL_STATE(5827)] = 230636, + [SMALL_STATE(5828)] = 230688, + [SMALL_STATE(5829)] = 230760, + [SMALL_STATE(5830)] = 230812, + [SMALL_STATE(5831)] = 230866, + [SMALL_STATE(5832)] = 230918, + [SMALL_STATE(5833)] = 230970, + [SMALL_STATE(5834)] = 231022, + [SMALL_STATE(5835)] = 231074, + [SMALL_STATE(5836)] = 231168, + [SMALL_STATE(5837)] = 231220, + [SMALL_STATE(5838)] = 231316, + [SMALL_STATE(5839)] = 231368, + [SMALL_STATE(5840)] = 231420, + [SMALL_STATE(5841)] = 231472, + [SMALL_STATE(5842)] = 231528, + [SMALL_STATE(5843)] = 231580, + [SMALL_STATE(5844)] = 231632, + [SMALL_STATE(5845)] = 231684, + [SMALL_STATE(5846)] = 231736, + [SMALL_STATE(5847)] = 231788, + [SMALL_STATE(5848)] = 231884, + [SMALL_STATE(5849)] = 231936, + [SMALL_STATE(5850)] = 231990, + [SMALL_STATE(5851)] = 232042, + [SMALL_STATE(5852)] = 232094, + [SMALL_STATE(5853)] = 232146, + [SMALL_STATE(5854)] = 232198, + [SMALL_STATE(5855)] = 232286, + [SMALL_STATE(5856)] = 232382, + [SMALL_STATE(5857)] = 232436, + [SMALL_STATE(5858)] = 232488, + [SMALL_STATE(5859)] = 232584, + [SMALL_STATE(5860)] = 232638, + [SMALL_STATE(5861)] = 232718, + [SMALL_STATE(5862)] = 232770, + [SMALL_STATE(5863)] = 232852, + [SMALL_STATE(5864)] = 232948, + [SMALL_STATE(5865)] = 233000, + [SMALL_STATE(5866)] = 233052, + [SMALL_STATE(5867)] = 233104, + [SMALL_STATE(5868)] = 233156, + [SMALL_STATE(5869)] = 233212, + [SMALL_STATE(5870)] = 233308, + [SMALL_STATE(5871)] = 233360, + [SMALL_STATE(5872)] = 233412, + [SMALL_STATE(5873)] = 233464, + [SMALL_STATE(5874)] = 233560, + [SMALL_STATE(5875)] = 233612, + [SMALL_STATE(5876)] = 233664, + [SMALL_STATE(5877)] = 233716, + [SMALL_STATE(5878)] = 233768, + [SMALL_STATE(5879)] = 233820, + [SMALL_STATE(5880)] = 233916, + [SMALL_STATE(5881)] = 233968, + [SMALL_STATE(5882)] = 234020, + [SMALL_STATE(5883)] = 234072, + [SMALL_STATE(5884)] = 234124, + [SMALL_STATE(5885)] = 234176, + [SMALL_STATE(5886)] = 234272, + [SMALL_STATE(5887)] = 234324, + [SMALL_STATE(5888)] = 234420, + [SMALL_STATE(5889)] = 234516, + [SMALL_STATE(5890)] = 234572, + [SMALL_STATE(5891)] = 234624, + [SMALL_STATE(5892)] = 234676, + [SMALL_STATE(5893)] = 234728, + [SMALL_STATE(5894)] = 234780, + [SMALL_STATE(5895)] = 234832, + [SMALL_STATE(5896)] = 234884, + [SMALL_STATE(5897)] = 234940, + [SMALL_STATE(5898)] = 234992, + [SMALL_STATE(5899)] = 235048, + [SMALL_STATE(5900)] = 235104, + [SMALL_STATE(5901)] = 235156, + [SMALL_STATE(5902)] = 235208, + [SMALL_STATE(5903)] = 235260, + [SMALL_STATE(5904)] = 235312, + [SMALL_STATE(5905)] = 235364, + [SMALL_STATE(5906)] = 235416, + [SMALL_STATE(5907)] = 235468, + [SMALL_STATE(5908)] = 235520, + [SMALL_STATE(5909)] = 235572, + [SMALL_STATE(5910)] = 235628, + [SMALL_STATE(5911)] = 235682, + [SMALL_STATE(5912)] = 235734, + [SMALL_STATE(5913)] = 235786, + [SMALL_STATE(5914)] = 235838, + [SMALL_STATE(5915)] = 235890, + [SMALL_STATE(5916)] = 235942, + [SMALL_STATE(5917)] = 235994, + [SMALL_STATE(5918)] = 236082, + [SMALL_STATE(5919)] = 236134, + [SMALL_STATE(5920)] = 236186, + [SMALL_STATE(5921)] = 236238, + [SMALL_STATE(5922)] = 236290, + [SMALL_STATE(5923)] = 236342, + [SMALL_STATE(5924)] = 236394, + [SMALL_STATE(5925)] = 236446, + [SMALL_STATE(5926)] = 236498, + [SMALL_STATE(5927)] = 236550, + [SMALL_STATE(5928)] = 236634, + [SMALL_STATE(5929)] = 236686, + [SMALL_STATE(5930)] = 236774, + [SMALL_STATE(5931)] = 236862, + [SMALL_STATE(5932)] = 236950, + [SMALL_STATE(5933)] = 237012, + [SMALL_STATE(5934)] = 237070, + [SMALL_STATE(5935)] = 237128, + [SMALL_STATE(5936)] = 237194, + [SMALL_STATE(5937)] = 237246, + [SMALL_STATE(5938)] = 237330, + [SMALL_STATE(5939)] = 237406, + [SMALL_STATE(5940)] = 237474, + [SMALL_STATE(5941)] = 237538, + [SMALL_STATE(5942)] = 237610, + [SMALL_STATE(5943)] = 237690, + [SMALL_STATE(5944)] = 237772, + [SMALL_STATE(5945)] = 237824, + [SMALL_STATE(5946)] = 237908, + [SMALL_STATE(5947)] = 237960, + [SMALL_STATE(5948)] = 238048, + [SMALL_STATE(5949)] = 238136, + [SMALL_STATE(5950)] = 238188, + [SMALL_STATE(5951)] = 238240, + [SMALL_STATE(5952)] = 238292, + [SMALL_STATE(5953)] = 238344, + [SMALL_STATE(5954)] = 238396, + [SMALL_STATE(5955)] = 238448, + [SMALL_STATE(5956)] = 238504, + [SMALL_STATE(5957)] = 238556, + [SMALL_STATE(5958)] = 238608, + [SMALL_STATE(5959)] = 238660, + [SMALL_STATE(5960)] = 238744, + [SMALL_STATE(5961)] = 238796, + [SMALL_STATE(5962)] = 238848, + [SMALL_STATE(5963)] = 238900, + [SMALL_STATE(5964)] = 238952, + [SMALL_STATE(5965)] = 239004, + [SMALL_STATE(5966)] = 239056, + [SMALL_STATE(5967)] = 239108, + [SMALL_STATE(5968)] = 239160, + [SMALL_STATE(5969)] = 239212, + [SMALL_STATE(5970)] = 239264, + [SMALL_STATE(5971)] = 239316, + [SMALL_STATE(5972)] = 239368, + [SMALL_STATE(5973)] = 239420, + [SMALL_STATE(5974)] = 239472, + [SMALL_STATE(5975)] = 239524, + [SMALL_STATE(5976)] = 239576, + [SMALL_STATE(5977)] = 239628, + [SMALL_STATE(5978)] = 239680, + [SMALL_STATE(5979)] = 239732, + [SMALL_STATE(5980)] = 239784, + [SMALL_STATE(5981)] = 239836, + [SMALL_STATE(5982)] = 239888, + [SMALL_STATE(5983)] = 239940, + [SMALL_STATE(5984)] = 239992, + [SMALL_STATE(5985)] = 240044, + [SMALL_STATE(5986)] = 240096, + [SMALL_STATE(5987)] = 240148, + [SMALL_STATE(5988)] = 240232, + [SMALL_STATE(5989)] = 240326, + [SMALL_STATE(5990)] = 240378, + [SMALL_STATE(5991)] = 240430, + [SMALL_STATE(5992)] = 240482, + [SMALL_STATE(5993)] = 240534, + [SMALL_STATE(5994)] = 240586, + [SMALL_STATE(5995)] = 240638, + [SMALL_STATE(5996)] = 240690, + [SMALL_STATE(5997)] = 240778, + [SMALL_STATE(5998)] = 240866, + [SMALL_STATE(5999)] = 240962, + [SMALL_STATE(6000)] = 241054, + [SMALL_STATE(6001)] = 241110, + [SMALL_STATE(6002)] = 241162, + [SMALL_STATE(6003)] = 241218, + [SMALL_STATE(6004)] = 241270, + [SMALL_STATE(6005)] = 241358, + [SMALL_STATE(6006)] = 241410, + [SMALL_STATE(6007)] = 241462, + [SMALL_STATE(6008)] = 241514, + [SMALL_STATE(6009)] = 241566, + [SMALL_STATE(6010)] = 241618, + [SMALL_STATE(6011)] = 241670, + [SMALL_STATE(6012)] = 241722, + [SMALL_STATE(6013)] = 241814, + [SMALL_STATE(6014)] = 241870, + [SMALL_STATE(6015)] = 241922, + [SMALL_STATE(6016)] = 241974, + [SMALL_STATE(6017)] = 242062, + [SMALL_STATE(6018)] = 242114, + [SMALL_STATE(6019)] = 242202, + [SMALL_STATE(6020)] = 242290, + [SMALL_STATE(6021)] = 242342, + [SMALL_STATE(6022)] = 242394, + [SMALL_STATE(6023)] = 242446, + [SMALL_STATE(6024)] = 242498, + [SMALL_STATE(6025)] = 242550, + [SMALL_STATE(6026)] = 242602, + [SMALL_STATE(6027)] = 242654, + [SMALL_STATE(6028)] = 242706, + [SMALL_STATE(6029)] = 242760, + [SMALL_STATE(6030)] = 242848, + [SMALL_STATE(6031)] = 242936, + [SMALL_STATE(6032)] = 242988, + [SMALL_STATE(6033)] = 243040, + [SMALL_STATE(6034)] = 243128, + [SMALL_STATE(6035)] = 243216, + [SMALL_STATE(6036)] = 243270, + [SMALL_STATE(6037)] = 243358, + [SMALL_STATE(6038)] = 243410, + [SMALL_STATE(6039)] = 243462, + [SMALL_STATE(6040)] = 243546, + [SMALL_STATE(6041)] = 243600, + [SMALL_STATE(6042)] = 243694, + [SMALL_STATE(6043)] = 243746, + [SMALL_STATE(6044)] = 243798, + [SMALL_STATE(6045)] = 243850, + [SMALL_STATE(6046)] = 243902, + [SMALL_STATE(6047)] = 243954, + [SMALL_STATE(6048)] = 244006, + [SMALL_STATE(6049)] = 244058, + [SMALL_STATE(6050)] = 244110, + [SMALL_STATE(6051)] = 244162, + [SMALL_STATE(6052)] = 244258, + [SMALL_STATE(6053)] = 244310, + [SMALL_STATE(6054)] = 244398, + [SMALL_STATE(6055)] = 244454, + [SMALL_STATE(6056)] = 244506, + [SMALL_STATE(6057)] = 244558, + [SMALL_STATE(6058)] = 244610, + [SMALL_STATE(6059)] = 244662, + [SMALL_STATE(6060)] = 244714, + [SMALL_STATE(6061)] = 244766, + [SMALL_STATE(6062)] = 244818, + [SMALL_STATE(6063)] = 244872, + [SMALL_STATE(6064)] = 244924, + [SMALL_STATE(6065)] = 244980, + [SMALL_STATE(6066)] = 245032, + [SMALL_STATE(6067)] = 245084, + [SMALL_STATE(6068)] = 245172, + [SMALL_STATE(6069)] = 245224, + [SMALL_STATE(6070)] = 245276, + [SMALL_STATE(6071)] = 245328, + [SMALL_STATE(6072)] = 245380, + [SMALL_STATE(6073)] = 245432, + [SMALL_STATE(6074)] = 245526, + [SMALL_STATE(6075)] = 245578, + [SMALL_STATE(6076)] = 245630, + [SMALL_STATE(6077)] = 245682, + [SMALL_STATE(6078)] = 245734, + [SMALL_STATE(6079)] = 245828, + [SMALL_STATE(6080)] = 245880, + [SMALL_STATE(6081)] = 245932, + [SMALL_STATE(6082)] = 245984, + [SMALL_STATE(6083)] = 246036, + [SMALL_STATE(6084)] = 246088, + [SMALL_STATE(6085)] = 246140, + [SMALL_STATE(6086)] = 246192, + [SMALL_STATE(6087)] = 246244, + [SMALL_STATE(6088)] = 246296, + [SMALL_STATE(6089)] = 246348, + [SMALL_STATE(6090)] = 246400, + [SMALL_STATE(6091)] = 246452, + [SMALL_STATE(6092)] = 246548, + [SMALL_STATE(6093)] = 246600, + [SMALL_STATE(6094)] = 246652, + [SMALL_STATE(6095)] = 246704, + [SMALL_STATE(6096)] = 246756, + [SMALL_STATE(6097)] = 246808, + [SMALL_STATE(6098)] = 246860, + [SMALL_STATE(6099)] = 246912, + [SMALL_STATE(6100)] = 246964, + [SMALL_STATE(6101)] = 247016, + [SMALL_STATE(6102)] = 247068, + [SMALL_STATE(6103)] = 247120, + [SMALL_STATE(6104)] = 247172, + [SMALL_STATE(6105)] = 247224, + [SMALL_STATE(6106)] = 247308, + [SMALL_STATE(6107)] = 247360, + [SMALL_STATE(6108)] = 247412, + [SMALL_STATE(6109)] = 247464, + [SMALL_STATE(6110)] = 247516, + [SMALL_STATE(6111)] = 247568, + [SMALL_STATE(6112)] = 247620, + [SMALL_STATE(6113)] = 247672, + [SMALL_STATE(6114)] = 247724, + [SMALL_STATE(6115)] = 247812, + [SMALL_STATE(6116)] = 247864, + [SMALL_STATE(6117)] = 247916, + [SMALL_STATE(6118)] = 247968, + [SMALL_STATE(6119)] = 248020, + [SMALL_STATE(6120)] = 248108, + [SMALL_STATE(6121)] = 248196, + [SMALL_STATE(6122)] = 248258, + [SMALL_STATE(6123)] = 248316, + [SMALL_STATE(6124)] = 248374, + [SMALL_STATE(6125)] = 248426, + [SMALL_STATE(6126)] = 248492, + [SMALL_STATE(6127)] = 248544, + [SMALL_STATE(6128)] = 248628, + [SMALL_STATE(6129)] = 248704, + [SMALL_STATE(6130)] = 248772, + [SMALL_STATE(6131)] = 248836, + [SMALL_STATE(6132)] = 248908, + [SMALL_STATE(6133)] = 249004, + [SMALL_STATE(6134)] = 249084, + [SMALL_STATE(6135)] = 249136, + [SMALL_STATE(6136)] = 249188, + [SMALL_STATE(6137)] = 249270, + [SMALL_STATE(6138)] = 249364, + [SMALL_STATE(6139)] = 249416, + [SMALL_STATE(6140)] = 249468, + [SMALL_STATE(6141)] = 249520, + [SMALL_STATE(6142)] = 249572, + [SMALL_STATE(6143)] = 249624, + [SMALL_STATE(6144)] = 249720, + [SMALL_STATE(6145)] = 249772, + [SMALL_STATE(6146)] = 249824, + [SMALL_STATE(6147)] = 249876, + [SMALL_STATE(6148)] = 249928, + [SMALL_STATE(6149)] = 249980, + [SMALL_STATE(6150)] = 250036, + [SMALL_STATE(6151)] = 250088, + [SMALL_STATE(6152)] = 250140, + [SMALL_STATE(6153)] = 250192, + [SMALL_STATE(6154)] = 250276, + [SMALL_STATE(6155)] = 250328, + [SMALL_STATE(6156)] = 250380, + [SMALL_STATE(6157)] = 250432, + [SMALL_STATE(6158)] = 250484, + [SMALL_STATE(6159)] = 250536, + [SMALL_STATE(6160)] = 250588, + [SMALL_STATE(6161)] = 250640, + [SMALL_STATE(6162)] = 250694, + [SMALL_STATE(6163)] = 250746, + [SMALL_STATE(6164)] = 250798, + [SMALL_STATE(6165)] = 250882, + [SMALL_STATE(6166)] = 250934, + [SMALL_STATE(6167)] = 251022, + [SMALL_STATE(6168)] = 251074, + [SMALL_STATE(6169)] = 251126, + [SMALL_STATE(6170)] = 251178, + [SMALL_STATE(6171)] = 251272, + [SMALL_STATE(6172)] = 251324, + [SMALL_STATE(6173)] = 251376, + [SMALL_STATE(6174)] = 251428, + [SMALL_STATE(6175)] = 251484, + [SMALL_STATE(6176)] = 251538, + [SMALL_STATE(6177)] = 251590, + [SMALL_STATE(6178)] = 251642, + [SMALL_STATE(6179)] = 251738, + [SMALL_STATE(6180)] = 251790, + [SMALL_STATE(6181)] = 251878, + [SMALL_STATE(6182)] = 251930, + [SMALL_STATE(6183)] = 251982, + [SMALL_STATE(6184)] = 252034, + [SMALL_STATE(6185)] = 252086, + [SMALL_STATE(6186)] = 252138, + [SMALL_STATE(6187)] = 252190, + [SMALL_STATE(6188)] = 252242, + [SMALL_STATE(6189)] = 252294, + [SMALL_STATE(6190)] = 252388, + [SMALL_STATE(6191)] = 252440, + [SMALL_STATE(6192)] = 252492, + [SMALL_STATE(6193)] = 252544, + [SMALL_STATE(6194)] = 252596, + [SMALL_STATE(6195)] = 252648, + [SMALL_STATE(6196)] = 252700, + [SMALL_STATE(6197)] = 252752, + [SMALL_STATE(6198)] = 252804, + [SMALL_STATE(6199)] = 252856, + [SMALL_STATE(6200)] = 252908, + [SMALL_STATE(6201)] = 252962, + [SMALL_STATE(6202)] = 253014, + [SMALL_STATE(6203)] = 253066, + [SMALL_STATE(6204)] = 253118, + [SMALL_STATE(6205)] = 253170, + [SMALL_STATE(6206)] = 253222, + [SMALL_STATE(6207)] = 253274, + [SMALL_STATE(6208)] = 253326, + [SMALL_STATE(6209)] = 253378, + [SMALL_STATE(6210)] = 253472, + [SMALL_STATE(6211)] = 253524, + [SMALL_STATE(6212)] = 253620, + [SMALL_STATE(6213)] = 253672, + [SMALL_STATE(6214)] = 253724, + [SMALL_STATE(6215)] = 253776, + [SMALL_STATE(6216)] = 253828, + [SMALL_STATE(6217)] = 253880, + [SMALL_STATE(6218)] = 253932, + [SMALL_STATE(6219)] = 253984, + [SMALL_STATE(6220)] = 254038, + [SMALL_STATE(6221)] = 254090, + [SMALL_STATE(6222)] = 254142, + [SMALL_STATE(6223)] = 254194, + [SMALL_STATE(6224)] = 254288, + [SMALL_STATE(6225)] = 254340, + [SMALL_STATE(6226)] = 254436, + [SMALL_STATE(6227)] = 254488, + [SMALL_STATE(6228)] = 254540, + [SMALL_STATE(6229)] = 254592, + [SMALL_STATE(6230)] = 254664, + [SMALL_STATE(6231)] = 254716, + [SMALL_STATE(6232)] = 254788, + [SMALL_STATE(6233)] = 254840, + [SMALL_STATE(6234)] = 254892, + [SMALL_STATE(6235)] = 254964, + [SMALL_STATE(6236)] = 255018, + [SMALL_STATE(6237)] = 255070, + [SMALL_STATE(6238)] = 255122, + [SMALL_STATE(6239)] = 255210, + [SMALL_STATE(6240)] = 255298, + [SMALL_STATE(6241)] = 255392, + [SMALL_STATE(6242)] = 255444, + [SMALL_STATE(6243)] = 255496, + [SMALL_STATE(6244)] = 255584, + [SMALL_STATE(6245)] = 255680, + [SMALL_STATE(6246)] = 255774, + [SMALL_STATE(6247)] = 255868, + [SMALL_STATE(6248)] = 255920, + [SMALL_STATE(6249)] = 255972, + [SMALL_STATE(6250)] = 256068, + [SMALL_STATE(6251)] = 256124, + [SMALL_STATE(6252)] = 256176, + [SMALL_STATE(6253)] = 256232, + [SMALL_STATE(6254)] = 256284, + [SMALL_STATE(6255)] = 256336, + [SMALL_STATE(6256)] = 256388, + [SMALL_STATE(6257)] = 256440, + [SMALL_STATE(6258)] = 256492, + [SMALL_STATE(6259)] = 256544, + [SMALL_STATE(6260)] = 256596, + [SMALL_STATE(6261)] = 256648, + [SMALL_STATE(6262)] = 256700, + [SMALL_STATE(6263)] = 256788, + [SMALL_STATE(6264)] = 256840, + [SMALL_STATE(6265)] = 256892, + [SMALL_STATE(6266)] = 256986, + [SMALL_STATE(6267)] = 257040, + [SMALL_STATE(6268)] = 257092, + [SMALL_STATE(6269)] = 257143, + [SMALL_STATE(6270)] = 257198, + [SMALL_STATE(6271)] = 257251, + [SMALL_STATE(6272)] = 257342, + [SMALL_STATE(6273)] = 257433, + [SMALL_STATE(6274)] = 257484, + [SMALL_STATE(6275)] = 257575, + [SMALL_STATE(6276)] = 257626, + [SMALL_STATE(6277)] = 257717, + [SMALL_STATE(6278)] = 257768, + [SMALL_STATE(6279)] = 257851, + [SMALL_STATE(6280)] = 257938, + [SMALL_STATE(6281)] = 258025, + [SMALL_STATE(6282)] = 258116, + [SMALL_STATE(6283)] = 258207, + [SMALL_STATE(6284)] = 258260, + [SMALL_STATE(6285)] = 258351, + [SMALL_STATE(6286)] = 258402, + [SMALL_STATE(6287)] = 258453, + [SMALL_STATE(6288)] = 258544, + [SMALL_STATE(6289)] = 258635, + [SMALL_STATE(6290)] = 258688, + [SMALL_STATE(6291)] = 258779, + [SMALL_STATE(6292)] = 258870, + [SMALL_STATE(6293)] = 258961, + [SMALL_STATE(6294)] = 259012, + [SMALL_STATE(6295)] = 259063, + [SMALL_STATE(6296)] = 259154, + [SMALL_STATE(6297)] = 259245, + [SMALL_STATE(6298)] = 259336, + [SMALL_STATE(6299)] = 259387, + [SMALL_STATE(6300)] = 259438, + [SMALL_STATE(6301)] = 259493, + [SMALL_STATE(6302)] = 259544, + [SMALL_STATE(6303)] = 259635, + [SMALL_STATE(6304)] = 259726, + [SMALL_STATE(6305)] = 259817, + [SMALL_STATE(6306)] = 259868, + [SMALL_STATE(6307)] = 259959, + [SMALL_STATE(6308)] = 260050, + [SMALL_STATE(6309)] = 260101, + [SMALL_STATE(6310)] = 260156, + [SMALL_STATE(6311)] = 260247, + [SMALL_STATE(6312)] = 260298, + [SMALL_STATE(6313)] = 260349, + [SMALL_STATE(6314)] = 260440, + [SMALL_STATE(6315)] = 260491, + [SMALL_STATE(6316)] = 260542, + [SMALL_STATE(6317)] = 260631, + [SMALL_STATE(6318)] = 260720, + [SMALL_STATE(6319)] = 260771, + [SMALL_STATE(6320)] = 260860, + [SMALL_STATE(6321)] = 260949, + [SMALL_STATE(6322)] = 261000, + [SMALL_STATE(6323)] = 261051, + [SMALL_STATE(6324)] = 261102, + [SMALL_STATE(6325)] = 261153, + [SMALL_STATE(6326)] = 261208, + [SMALL_STATE(6327)] = 261297, + [SMALL_STATE(6328)] = 261386, + [SMALL_STATE(6329)] = 261475, + [SMALL_STATE(6330)] = 261564, + [SMALL_STATE(6331)] = 261615, + [SMALL_STATE(6332)] = 261666, + [SMALL_STATE(6333)] = 261757, + [SMALL_STATE(6334)] = 261846, + [SMALL_STATE(6335)] = 261897, + [SMALL_STATE(6336)] = 261986, + [SMALL_STATE(6337)] = 262075, + [SMALL_STATE(6338)] = 262164, + [SMALL_STATE(6339)] = 262253, + [SMALL_STATE(6340)] = 262342, + [SMALL_STATE(6341)] = 262393, + [SMALL_STATE(6342)] = 262444, + [SMALL_STATE(6343)] = 262495, + [SMALL_STATE(6344)] = 262546, + [SMALL_STATE(6345)] = 262597, + [SMALL_STATE(6346)] = 262648, + [SMALL_STATE(6347)] = 262737, + [SMALL_STATE(6348)] = 262826, + [SMALL_STATE(6349)] = 262915, + [SMALL_STATE(6350)] = 263004, + [SMALL_STATE(6351)] = 263057, + [SMALL_STATE(6352)] = 263108, + [SMALL_STATE(6353)] = 263159, + [SMALL_STATE(6354)] = 263210, + [SMALL_STATE(6355)] = 263261, + [SMALL_STATE(6356)] = 263350, + [SMALL_STATE(6357)] = 263439, + [SMALL_STATE(6358)] = 263528, + [SMALL_STATE(6359)] = 263617, + [SMALL_STATE(6360)] = 263668, + [SMALL_STATE(6361)] = 263719, + [SMALL_STATE(6362)] = 263810, + [SMALL_STATE(6363)] = 263901, + [SMALL_STATE(6364)] = 263990, + [SMALL_STATE(6365)] = 264079, + [SMALL_STATE(6366)] = 264168, + [SMALL_STATE(6367)] = 264257, + [SMALL_STATE(6368)] = 264308, + [SMALL_STATE(6369)] = 264397, + [SMALL_STATE(6370)] = 264486, + [SMALL_STATE(6371)] = 264537, + [SMALL_STATE(6372)] = 264626, + [SMALL_STATE(6373)] = 264715, + [SMALL_STATE(6374)] = 264768, + [SMALL_STATE(6375)] = 264821, + [SMALL_STATE(6376)] = 264912, + [SMALL_STATE(6377)] = 265003, + [SMALL_STATE(6378)] = 265092, + [SMALL_STATE(6379)] = 265181, + [SMALL_STATE(6380)] = 265232, + [SMALL_STATE(6381)] = 265321, + [SMALL_STATE(6382)] = 265410, + [SMALL_STATE(6383)] = 265463, + [SMALL_STATE(6384)] = 265550, + [SMALL_STATE(6385)] = 265639, + [SMALL_STATE(6386)] = 265728, + [SMALL_STATE(6387)] = 265817, + [SMALL_STATE(6388)] = 265906, + [SMALL_STATE(6389)] = 265995, + [SMALL_STATE(6390)] = 266084, + [SMALL_STATE(6391)] = 266173, + [SMALL_STATE(6392)] = 266262, + [SMALL_STATE(6393)] = 266313, + [SMALL_STATE(6394)] = 266364, + [SMALL_STATE(6395)] = 266415, + [SMALL_STATE(6396)] = 266466, + [SMALL_STATE(6397)] = 266555, + [SMALL_STATE(6398)] = 266644, + [SMALL_STATE(6399)] = 266695, + [SMALL_STATE(6400)] = 266784, + [SMALL_STATE(6401)] = 266873, + [SMALL_STATE(6402)] = 266924, + [SMALL_STATE(6403)] = 266975, + [SMALL_STATE(6404)] = 267026, + [SMALL_STATE(6405)] = 267079, + [SMALL_STATE(6406)] = 267130, + [SMALL_STATE(6407)] = 267181, + [SMALL_STATE(6408)] = 267270, + [SMALL_STATE(6409)] = 267359, + [SMALL_STATE(6410)] = 267412, + [SMALL_STATE(6411)] = 267501, + [SMALL_STATE(6412)] = 267590, + [SMALL_STATE(6413)] = 267641, + [SMALL_STATE(6414)] = 267692, + [SMALL_STATE(6415)] = 267743, + [SMALL_STATE(6416)] = 267834, + [SMALL_STATE(6417)] = 267885, + [SMALL_STATE(6418)] = 267936, + [SMALL_STATE(6419)] = 267987, + [SMALL_STATE(6420)] = 268038, + [SMALL_STATE(6421)] = 268089, + [SMALL_STATE(6422)] = 268140, + [SMALL_STATE(6423)] = 268191, + [SMALL_STATE(6424)] = 268242, + [SMALL_STATE(6425)] = 268293, + [SMALL_STATE(6426)] = 268344, + [SMALL_STATE(6427)] = 268435, + [SMALL_STATE(6428)] = 268486, + [SMALL_STATE(6429)] = 268577, + [SMALL_STATE(6430)] = 268668, + [SMALL_STATE(6431)] = 268719, + [SMALL_STATE(6432)] = 268770, + [SMALL_STATE(6433)] = 268861, + [SMALL_STATE(6434)] = 268914, + [SMALL_STATE(6435)] = 268965, + [SMALL_STATE(6436)] = 269056, + [SMALL_STATE(6437)] = 269107, + [SMALL_STATE(6438)] = 269196, + [SMALL_STATE(6439)] = 269247, + [SMALL_STATE(6440)] = 269298, + [SMALL_STATE(6441)] = 269389, + [SMALL_STATE(6442)] = 269480, + [SMALL_STATE(6443)] = 269533, + [SMALL_STATE(6444)] = 269624, + [SMALL_STATE(6445)] = 269713, + [SMALL_STATE(6446)] = 269802, + [SMALL_STATE(6447)] = 269891, + [SMALL_STATE(6448)] = 269942, + [SMALL_STATE(6449)] = 269993, + [SMALL_STATE(6450)] = 270044, + [SMALL_STATE(6451)] = 270095, + [SMALL_STATE(6452)] = 270146, + [SMALL_STATE(6453)] = 270197, + [SMALL_STATE(6454)] = 270248, + [SMALL_STATE(6455)] = 270339, + [SMALL_STATE(6456)] = 270430, + [SMALL_STATE(6457)] = 270521, + [SMALL_STATE(6458)] = 270612, + [SMALL_STATE(6459)] = 270665, + [SMALL_STATE(6460)] = 270718, + [SMALL_STATE(6461)] = 270769, + [SMALL_STATE(6462)] = 270820, + [SMALL_STATE(6463)] = 270903, + [SMALL_STATE(6464)] = 270990, + [SMALL_STATE(6465)] = 271045, + [SMALL_STATE(6466)] = 271096, + [SMALL_STATE(6467)] = 271147, + [SMALL_STATE(6468)] = 271236, + [SMALL_STATE(6469)] = 271287, + [SMALL_STATE(6470)] = 271376, + [SMALL_STATE(6471)] = 271427, + [SMALL_STATE(6472)] = 271478, + [SMALL_STATE(6473)] = 271569, + [SMALL_STATE(6474)] = 271624, + [SMALL_STATE(6475)] = 271715, + [SMALL_STATE(6476)] = 271770, + [SMALL_STATE(6477)] = 271821, + [SMALL_STATE(6478)] = 271912, + [SMALL_STATE(6479)] = 271967, + [SMALL_STATE(6480)] = 272022, + [SMALL_STATE(6481)] = 272073, + [SMALL_STATE(6482)] = 272128, + [SMALL_STATE(6483)] = 272179, + [SMALL_STATE(6484)] = 272230, + [SMALL_STATE(6485)] = 272319, + [SMALL_STATE(6486)] = 272370, + [SMALL_STATE(6487)] = 272457, + [SMALL_STATE(6488)] = 272508, + [SMALL_STATE(6489)] = 272559, + [SMALL_STATE(6490)] = 272610, + [SMALL_STATE(6491)] = 272663, + [SMALL_STATE(6492)] = 272714, + [SMALL_STATE(6493)] = 272805, + [SMALL_STATE(6494)] = 272856, + [SMALL_STATE(6495)] = 272909, + [SMALL_STATE(6496)] = 272992, + [SMALL_STATE(6497)] = 273081, + [SMALL_STATE(6498)] = 273134, + [SMALL_STATE(6499)] = 273185, + [SMALL_STATE(6500)] = 273236, + [SMALL_STATE(6501)] = 273327, + [SMALL_STATE(6502)] = 273378, + [SMALL_STATE(6503)] = 273467, + [SMALL_STATE(6504)] = 273556, + [SMALL_STATE(6505)] = 273607, + [SMALL_STATE(6506)] = 273698, + [SMALL_STATE(6507)] = 273785, + [SMALL_STATE(6508)] = 273838, + [SMALL_STATE(6509)] = 273921, + [SMALL_STATE(6510)] = 273974, + [SMALL_STATE(6511)] = 274065, + [SMALL_STATE(6512)] = 274156, + [SMALL_STATE(6513)] = 274207, + [SMALL_STATE(6514)] = 274294, + [SMALL_STATE(6515)] = 274345, + [SMALL_STATE(6516)] = 274436, + [SMALL_STATE(6517)] = 274487, + [SMALL_STATE(6518)] = 274578, + [SMALL_STATE(6519)] = 274629, + [SMALL_STATE(6520)] = 274684, + [SMALL_STATE(6521)] = 274735, + [SMALL_STATE(6522)] = 274790, + [SMALL_STATE(6523)] = 274845, + [SMALL_STATE(6524)] = 274900, + [SMALL_STATE(6525)] = 274991, + [SMALL_STATE(6526)] = 275082, + [SMALL_STATE(6527)] = 275133, + [SMALL_STATE(6528)] = 275224, + [SMALL_STATE(6529)] = 275313, + [SMALL_STATE(6530)] = 275366, + [SMALL_STATE(6531)] = 275417, + [SMALL_STATE(6532)] = 275470, + [SMALL_STATE(6533)] = 275521, + [SMALL_STATE(6534)] = 275612, + [SMALL_STATE(6535)] = 275703, + [SMALL_STATE(6536)] = 275794, + [SMALL_STATE(6537)] = 275883, + [SMALL_STATE(6538)] = 275934, + [SMALL_STATE(6539)] = 275985, + [SMALL_STATE(6540)] = 276036, + [SMALL_STATE(6541)] = 276087, + [SMALL_STATE(6542)] = 276138, + [SMALL_STATE(6543)] = 276189, + [SMALL_STATE(6544)] = 276240, + [SMALL_STATE(6545)] = 276291, + [SMALL_STATE(6546)] = 276342, + [SMALL_STATE(6547)] = 276393, + [SMALL_STATE(6548)] = 276444, + [SMALL_STATE(6549)] = 276495, + [SMALL_STATE(6550)] = 276546, + [SMALL_STATE(6551)] = 276597, + [SMALL_STATE(6552)] = 276648, + [SMALL_STATE(6553)] = 276699, + [SMALL_STATE(6554)] = 276790, + [SMALL_STATE(6555)] = 276879, + [SMALL_STATE(6556)] = 276968, + [SMALL_STATE(6557)] = 277019, + [SMALL_STATE(6558)] = 277070, + [SMALL_STATE(6559)] = 277123, + [SMALL_STATE(6560)] = 277214, + [SMALL_STATE(6561)] = 277265, + [SMALL_STATE(6562)] = 277316, + [SMALL_STATE(6563)] = 277367, + [SMALL_STATE(6564)] = 277418, + [SMALL_STATE(6565)] = 277505, + [SMALL_STATE(6566)] = 277556, + [SMALL_STATE(6567)] = 277607, + [SMALL_STATE(6568)] = 277658, + [SMALL_STATE(6569)] = 277749, + [SMALL_STATE(6570)] = 277840, + [SMALL_STATE(6571)] = 277931, + [SMALL_STATE(6572)] = 277984, + [SMALL_STATE(6573)] = 278075, + [SMALL_STATE(6574)] = 278166, + [SMALL_STATE(6575)] = 278219, + [SMALL_STATE(6576)] = 278310, + [SMALL_STATE(6577)] = 278399, + [SMALL_STATE(6578)] = 278460, + [SMALL_STATE(6579)] = 278511, + [SMALL_STATE(6580)] = 278602, + [SMALL_STATE(6581)] = 278657, + [SMALL_STATE(6582)] = 278712, + [SMALL_STATE(6583)] = 278767, + [SMALL_STATE(6584)] = 278822, + [SMALL_STATE(6585)] = 278879, + [SMALL_STATE(6586)] = 278936, + [SMALL_STATE(6587)] = 279001, + [SMALL_STATE(6588)] = 279056, + [SMALL_STATE(6589)] = 279143, + [SMALL_STATE(6590)] = 279230, + [SMALL_STATE(6591)] = 279313, + [SMALL_STATE(6592)] = 279388, + [SMALL_STATE(6593)] = 279455, + [SMALL_STATE(6594)] = 279518, + [SMALL_STATE(6595)] = 279589, + [SMALL_STATE(6596)] = 279668, + [SMALL_STATE(6597)] = 279723, + [SMALL_STATE(6598)] = 279814, + [SMALL_STATE(6599)] = 279895, + [SMALL_STATE(6600)] = 279950, + [SMALL_STATE(6601)] = 280001, + [SMALL_STATE(6602)] = 280056, + [SMALL_STATE(6603)] = 280109, + [SMALL_STATE(6604)] = 280160, + [SMALL_STATE(6605)] = 280211, + [SMALL_STATE(6606)] = 280262, + [SMALL_STATE(6607)] = 280313, + [SMALL_STATE(6608)] = 280364, + [SMALL_STATE(6609)] = 280415, + [SMALL_STATE(6610)] = 280466, + [SMALL_STATE(6611)] = 280517, + [SMALL_STATE(6612)] = 280568, + [SMALL_STATE(6613)] = 280619, + [SMALL_STATE(6614)] = 280674, + [SMALL_STATE(6615)] = 280765, + [SMALL_STATE(6616)] = 280856, + [SMALL_STATE(6617)] = 280907, + [SMALL_STATE(6618)] = 280990, + [SMALL_STATE(6619)] = 281041, + [SMALL_STATE(6620)] = 281092, + [SMALL_STATE(6621)] = 281143, + [SMALL_STATE(6622)] = 281194, + [SMALL_STATE(6623)] = 281245, + [SMALL_STATE(6624)] = 281336, + [SMALL_STATE(6625)] = 281387, + [SMALL_STATE(6626)] = 281438, + [SMALL_STATE(6627)] = 281489, + [SMALL_STATE(6628)] = 281544, + [SMALL_STATE(6629)] = 281595, + [SMALL_STATE(6630)] = 281686, + [SMALL_STATE(6631)] = 281747, + [SMALL_STATE(6632)] = 281804, + [SMALL_STATE(6633)] = 281887, + [SMALL_STATE(6634)] = 281978, + [SMALL_STATE(6635)] = 282035, + [SMALL_STATE(6636)] = 282100, + [SMALL_STATE(6637)] = 282151, + [SMALL_STATE(6638)] = 282202, + [SMALL_STATE(6639)] = 282293, + [SMALL_STATE(6640)] = 282384, + [SMALL_STATE(6641)] = 282435, + [SMALL_STATE(6642)] = 282486, + [SMALL_STATE(6643)] = 282537, + [SMALL_STATE(6644)] = 282588, + [SMALL_STATE(6645)] = 282643, + [SMALL_STATE(6646)] = 282732, + [SMALL_STATE(6647)] = 282823, + [SMALL_STATE(6648)] = 282906, + [SMALL_STATE(6649)] = 282981, + [SMALL_STATE(6650)] = 283072, + [SMALL_STATE(6651)] = 283163, + [SMALL_STATE(6652)] = 283230, + [SMALL_STATE(6653)] = 283321, + [SMALL_STATE(6654)] = 283372, + [SMALL_STATE(6655)] = 283423, + [SMALL_STATE(6656)] = 283512, + [SMALL_STATE(6657)] = 283575, + [SMALL_STATE(6658)] = 283646, + [SMALL_STATE(6659)] = 283725, + [SMALL_STATE(6660)] = 283806, + [SMALL_STATE(6661)] = 283857, + [SMALL_STATE(6662)] = 283908, + [SMALL_STATE(6663)] = 283959, + [SMALL_STATE(6664)] = 284010, + [SMALL_STATE(6665)] = 284101, + [SMALL_STATE(6666)] = 284190, + [SMALL_STATE(6667)] = 284241, + [SMALL_STATE(6668)] = 284292, + [SMALL_STATE(6669)] = 284383, + [SMALL_STATE(6670)] = 284438, + [SMALL_STATE(6671)] = 284529, + [SMALL_STATE(6672)] = 284599, + [SMALL_STATE(6673)] = 284649, + [SMALL_STATE(6674)] = 284699, + [SMALL_STATE(6675)] = 284749, + [SMALL_STATE(6676)] = 284827, + [SMALL_STATE(6677)] = 284877, + [SMALL_STATE(6678)] = 284963, + [SMALL_STATE(6679)] = 285025, + [SMALL_STATE(6680)] = 285111, + [SMALL_STATE(6681)] = 285169, + [SMALL_STATE(6682)] = 285219, + [SMALL_STATE(6683)] = 285269, + [SMALL_STATE(6684)] = 285319, + [SMALL_STATE(6685)] = 285369, + [SMALL_STATE(6686)] = 285419, + [SMALL_STATE(6687)] = 285469, + [SMALL_STATE(6688)] = 285555, + [SMALL_STATE(6689)] = 285641, + [SMALL_STATE(6690)] = 285691, + [SMALL_STATE(6691)] = 285741, + [SMALL_STATE(6692)] = 285821, + [SMALL_STATE(6693)] = 285871, + [SMALL_STATE(6694)] = 285957, + [SMALL_STATE(6695)] = 286007, + [SMALL_STATE(6696)] = 286059, + [SMALL_STATE(6697)] = 286109, + [SMALL_STATE(6698)] = 286159, + [SMALL_STATE(6699)] = 286217, + [SMALL_STATE(6700)] = 286267, + [SMALL_STATE(6701)] = 286317, + [SMALL_STATE(6702)] = 286399, + [SMALL_STATE(6703)] = 286449, + [SMALL_STATE(6704)] = 286499, + [SMALL_STATE(6705)] = 286549, + [SMALL_STATE(6706)] = 286631, + [SMALL_STATE(6707)] = 286717, + [SMALL_STATE(6708)] = 286803, + [SMALL_STATE(6709)] = 286889, + [SMALL_STATE(6710)] = 286949, + [SMALL_STATE(6711)] = 287005, + [SMALL_STATE(6712)] = 287061, + [SMALL_STATE(6713)] = 287125, + [SMALL_STATE(6714)] = 287211, + [SMALL_STATE(6715)] = 287293, + [SMALL_STATE(6716)] = 287367, + [SMALL_STATE(6717)] = 287433, + [SMALL_STATE(6718)] = 287495, + [SMALL_STATE(6719)] = 287573, + [SMALL_STATE(6720)] = 287653, + [SMALL_STATE(6721)] = 287703, + [SMALL_STATE(6722)] = 287785, + [SMALL_STATE(6723)] = 287835, + [SMALL_STATE(6724)] = 287921, + [SMALL_STATE(6725)] = 288007, + [SMALL_STATE(6726)] = 288057, + [SMALL_STATE(6727)] = 288107, + [SMALL_STATE(6728)] = 288193, + [SMALL_STATE(6729)] = 288243, + [SMALL_STATE(6730)] = 288301, + [SMALL_STATE(6731)] = 288351, + [SMALL_STATE(6732)] = 288401, + [SMALL_STATE(6733)] = 288451, + [SMALL_STATE(6734)] = 288501, + [SMALL_STATE(6735)] = 288551, + [SMALL_STATE(6736)] = 288601, + [SMALL_STATE(6737)] = 288653, + [SMALL_STATE(6738)] = 288703, + [SMALL_STATE(6739)] = 288757, + [SMALL_STATE(6740)] = 288807, + [SMALL_STATE(6741)] = 288857, + [SMALL_STATE(6742)] = 288907, + [SMALL_STATE(6743)] = 288993, + [SMALL_STATE(6744)] = 289043, + [SMALL_STATE(6745)] = 289093, + [SMALL_STATE(6746)] = 289163, + [SMALL_STATE(6747)] = 289249, + [SMALL_STATE(6748)] = 289299, + [SMALL_STATE(6749)] = 289357, + [SMALL_STATE(6750)] = 289443, + [SMALL_STATE(6751)] = 289529, + [SMALL_STATE(6752)] = 289579, + [SMALL_STATE(6753)] = 289629, + [SMALL_STATE(6754)] = 289679, + [SMALL_STATE(6755)] = 289729, + [SMALL_STATE(6756)] = 289779, + [SMALL_STATE(6757)] = 289829, + [SMALL_STATE(6758)] = 289879, + [SMALL_STATE(6759)] = 289929, + [SMALL_STATE(6760)] = 289979, + [SMALL_STATE(6761)] = 290029, + [SMALL_STATE(6762)] = 290079, + [SMALL_STATE(6763)] = 290129, + [SMALL_STATE(6764)] = 290179, + [SMALL_STATE(6765)] = 290245, + [SMALL_STATE(6766)] = 290295, + [SMALL_STATE(6767)] = 290345, + [SMALL_STATE(6768)] = 290395, + [SMALL_STATE(6769)] = 290481, + [SMALL_STATE(6770)] = 290539, + [SMALL_STATE(6771)] = 290589, + [SMALL_STATE(6772)] = 290643, + [SMALL_STATE(6773)] = 290697, + [SMALL_STATE(6774)] = 290783, + [SMALL_STATE(6775)] = 290833, + [SMALL_STATE(6776)] = 290883, + [SMALL_STATE(6777)] = 290933, + [SMALL_STATE(6778)] = 290983, + [SMALL_STATE(6779)] = 291069, + [SMALL_STATE(6780)] = 291119, + [SMALL_STATE(6781)] = 291169, + [SMALL_STATE(6782)] = 291251, + [SMALL_STATE(6783)] = 291301, + [SMALL_STATE(6784)] = 291351, + [SMALL_STATE(6785)] = 291401, + [SMALL_STATE(6786)] = 291451, + [SMALL_STATE(6787)] = 291501, + [SMALL_STATE(6788)] = 291551, + [SMALL_STATE(6789)] = 291601, + [SMALL_STATE(6790)] = 291651, + [SMALL_STATE(6791)] = 291701, + [SMALL_STATE(6792)] = 291751, + [SMALL_STATE(6793)] = 291837, + [SMALL_STATE(6794)] = 291923, + [SMALL_STATE(6795)] = 291973, + [SMALL_STATE(6796)] = 292023, + [SMALL_STATE(6797)] = 292073, + [SMALL_STATE(6798)] = 292123, + [SMALL_STATE(6799)] = 292173, + [SMALL_STATE(6800)] = 292223, + [SMALL_STATE(6801)] = 292273, + [SMALL_STATE(6802)] = 292331, + [SMALL_STATE(6803)] = 292381, + [SMALL_STATE(6804)] = 292431, + [SMALL_STATE(6805)] = 292481, + [SMALL_STATE(6806)] = 292531, + [SMALL_STATE(6807)] = 292589, + [SMALL_STATE(6808)] = 292639, + [SMALL_STATE(6809)] = 292689, + [SMALL_STATE(6810)] = 292739, + [SMALL_STATE(6811)] = 292789, + [SMALL_STATE(6812)] = 292839, + [SMALL_STATE(6813)] = 292889, + [SMALL_STATE(6814)] = 292947, + [SMALL_STATE(6815)] = 292997, + [SMALL_STATE(6816)] = 293047, + [SMALL_STATE(6817)] = 293105, + [SMALL_STATE(6818)] = 293155, + [SMALL_STATE(6819)] = 293205, + [SMALL_STATE(6820)] = 293255, + [SMALL_STATE(6821)] = 293305, + [SMALL_STATE(6822)] = 293357, + [SMALL_STATE(6823)] = 293407, + [SMALL_STATE(6824)] = 293457, + [SMALL_STATE(6825)] = 293507, + [SMALL_STATE(6826)] = 293593, + [SMALL_STATE(6827)] = 293679, + [SMALL_STATE(6828)] = 293765, + [SMALL_STATE(6829)] = 293815, + [SMALL_STATE(6830)] = 293865, + [SMALL_STATE(6831)] = 293915, + [SMALL_STATE(6832)] = 293965, + [SMALL_STATE(6833)] = 294015, + [SMALL_STATE(6834)] = 294065, + [SMALL_STATE(6835)] = 294115, + [SMALL_STATE(6836)] = 294165, + [SMALL_STATE(6837)] = 294215, + [SMALL_STATE(6838)] = 294265, + [SMALL_STATE(6839)] = 294315, + [SMALL_STATE(6840)] = 294367, + [SMALL_STATE(6841)] = 294417, + [SMALL_STATE(6842)] = 294467, + [SMALL_STATE(6843)] = 294517, + [SMALL_STATE(6844)] = 294567, + [SMALL_STATE(6845)] = 294625, + [SMALL_STATE(6846)] = 294675, + [SMALL_STATE(6847)] = 294725, + [SMALL_STATE(6848)] = 294775, + [SMALL_STATE(6849)] = 294825, + [SMALL_STATE(6850)] = 294877, + [SMALL_STATE(6851)] = 294927, + [SMALL_STATE(6852)] = 294977, + [SMALL_STATE(6853)] = 295027, + [SMALL_STATE(6854)] = 295077, + [SMALL_STATE(6855)] = 295137, + [SMALL_STATE(6856)] = 295189, + [SMALL_STATE(6857)] = 295245, + [SMALL_STATE(6858)] = 295295, + [SMALL_STATE(6859)] = 295345, + [SMALL_STATE(6860)] = 295401, + [SMALL_STATE(6861)] = 295451, + [SMALL_STATE(6862)] = 295533, + [SMALL_STATE(6863)] = 295583, + [SMALL_STATE(6864)] = 295647, + [SMALL_STATE(6865)] = 295697, + [SMALL_STATE(6866)] = 295749, + [SMALL_STATE(6867)] = 295799, + [SMALL_STATE(6868)] = 295849, + [SMALL_STATE(6869)] = 295899, + [SMALL_STATE(6870)] = 295949, + [SMALL_STATE(6871)] = 295999, + [SMALL_STATE(6872)] = 296049, + [SMALL_STATE(6873)] = 296107, + [SMALL_STATE(6874)] = 296193, + [SMALL_STATE(6875)] = 296243, + [SMALL_STATE(6876)] = 296329, + [SMALL_STATE(6877)] = 296379, + [SMALL_STATE(6878)] = 296429, + [SMALL_STATE(6879)] = 296479, + [SMALL_STATE(6880)] = 296529, + [SMALL_STATE(6881)] = 296579, + [SMALL_STATE(6882)] = 296629, + [SMALL_STATE(6883)] = 296679, + [SMALL_STATE(6884)] = 296729, + [SMALL_STATE(6885)] = 296779, + [SMALL_STATE(6886)] = 296829, + [SMALL_STATE(6887)] = 296879, + [SMALL_STATE(6888)] = 296961, + [SMALL_STATE(6889)] = 297043, + [SMALL_STATE(6890)] = 297093, + [SMALL_STATE(6891)] = 297175, + [SMALL_STATE(6892)] = 297261, + [SMALL_STATE(6893)] = 297347, + [SMALL_STATE(6894)] = 297433, + [SMALL_STATE(6895)] = 297493, + [SMALL_STATE(6896)] = 297549, + [SMALL_STATE(6897)] = 297605, + [SMALL_STATE(6898)] = 297669, + [SMALL_STATE(6899)] = 297751, + [SMALL_STATE(6900)] = 297825, + [SMALL_STATE(6901)] = 297891, + [SMALL_STATE(6902)] = 297953, + [SMALL_STATE(6903)] = 298023, + [SMALL_STATE(6904)] = 298101, + [SMALL_STATE(6905)] = 298181, + [SMALL_STATE(6906)] = 298263, + [SMALL_STATE(6907)] = 298313, + [SMALL_STATE(6908)] = 298399, + [SMALL_STATE(6909)] = 298485, + [SMALL_STATE(6910)] = 298559, + [SMALL_STATE(6911)] = 298609, + [SMALL_STATE(6912)] = 298659, + [SMALL_STATE(6913)] = 298709, + [SMALL_STATE(6914)] = 298759, + [SMALL_STATE(6915)] = 298809, + [SMALL_STATE(6916)] = 298895, + [SMALL_STATE(6917)] = 298981, + [SMALL_STATE(6918)] = 299033, + [SMALL_STATE(6919)] = 299119, + [SMALL_STATE(6920)] = 299171, + [SMALL_STATE(6921)] = 299253, + [SMALL_STATE(6922)] = 299303, + [SMALL_STATE(6923)] = 299353, + [SMALL_STATE(6924)] = 299439, + [SMALL_STATE(6925)] = 299489, + [SMALL_STATE(6926)] = 299539, + [SMALL_STATE(6927)] = 299589, + [SMALL_STATE(6928)] = 299639, + [SMALL_STATE(6929)] = 299689, + [SMALL_STATE(6930)] = 299739, + [SMALL_STATE(6931)] = 299797, + [SMALL_STATE(6932)] = 299847, + [SMALL_STATE(6933)] = 299933, + [SMALL_STATE(6934)] = 299983, + [SMALL_STATE(6935)] = 300069, + [SMALL_STATE(6936)] = 300119, + [SMALL_STATE(6937)] = 300169, + [SMALL_STATE(6938)] = 300254, + [SMALL_STATE(6939)] = 300339, + [SMALL_STATE(6940)] = 300424, + [SMALL_STATE(6941)] = 300501, + [SMALL_STATE(6942)] = 300580, + [SMALL_STATE(6943)] = 300665, + [SMALL_STATE(6944)] = 300750, + [SMALL_STATE(6945)] = 300835, + [SMALL_STATE(6946)] = 300920, + [SMALL_STATE(6947)] = 301005, + [SMALL_STATE(6948)] = 301090, + [SMALL_STATE(6949)] = 301175, + [SMALL_STATE(6950)] = 301260, + [SMALL_STATE(6951)] = 301345, + [SMALL_STATE(6952)] = 301430, + [SMALL_STATE(6953)] = 301515, + [SMALL_STATE(6954)] = 301600, + [SMALL_STATE(6955)] = 301685, + [SMALL_STATE(6956)] = 301770, + [SMALL_STATE(6957)] = 301855, + [SMALL_STATE(6958)] = 301940, + [SMALL_STATE(6959)] = 302025, + [SMALL_STATE(6960)] = 302110, + [SMALL_STATE(6961)] = 302191, + [SMALL_STATE(6962)] = 302270, + [SMALL_STATE(6963)] = 302355, + [SMALL_STATE(6964)] = 302440, + [SMALL_STATE(6965)] = 302521, + [SMALL_STATE(6966)] = 302606, + [SMALL_STATE(6967)] = 302687, + [SMALL_STATE(6968)] = 302772, + [SMALL_STATE(6969)] = 302857, + [SMALL_STATE(6970)] = 302926, + [SMALL_STATE(6971)] = 303007, + [SMALL_STATE(6972)] = 303092, + [SMALL_STATE(6973)] = 303177, + [SMALL_STATE(6974)] = 303262, + [SMALL_STATE(6975)] = 303347, + [SMALL_STATE(6976)] = 303432, + [SMALL_STATE(6977)] = 303513, + [SMALL_STATE(6978)] = 303598, + [SMALL_STATE(6979)] = 303683, + [SMALL_STATE(6980)] = 303768, + [SMALL_STATE(6981)] = 303853, + [SMALL_STATE(6982)] = 303938, + [SMALL_STATE(6983)] = 304023, + [SMALL_STATE(6984)] = 304108, + [SMALL_STATE(6985)] = 304193, + [SMALL_STATE(6986)] = 304278, + [SMALL_STATE(6987)] = 304363, + [SMALL_STATE(6988)] = 304448, + [SMALL_STATE(6989)] = 304517, + [SMALL_STATE(6990)] = 304602, + [SMALL_STATE(6991)] = 304687, + [SMALL_STATE(6992)] = 304772, + [SMALL_STATE(6993)] = 304831, + [SMALL_STATE(6994)] = 304916, + [SMALL_STATE(6995)] = 304997, + [SMALL_STATE(6996)] = 305082, + [SMALL_STATE(6997)] = 305167, + [SMALL_STATE(6998)] = 305252, + [SMALL_STATE(6999)] = 305307, + [SMALL_STATE(7000)] = 305392, + [SMALL_STATE(7001)] = 305477, + [SMALL_STATE(7002)] = 305554, + [SMALL_STATE(7003)] = 305639, + [SMALL_STATE(7004)] = 305694, + [SMALL_STATE(7005)] = 305757, + [SMALL_STATE(7006)] = 305842, + [SMALL_STATE(7007)] = 305927, + [SMALL_STATE(7008)] = 306012, + [SMALL_STATE(7009)] = 306071, + [SMALL_STATE(7010)] = 306126, + [SMALL_STATE(7011)] = 306195, + [SMALL_STATE(7012)] = 306276, + [SMALL_STATE(7013)] = 306349, + [SMALL_STATE(7014)] = 306434, + [SMALL_STATE(7015)] = 306489, + [SMALL_STATE(7016)] = 306554, + [SMALL_STATE(7017)] = 306617, + [SMALL_STATE(7018)] = 306678, + [SMALL_STATE(7019)] = 306763, + [SMALL_STATE(7020)] = 306848, + [SMALL_STATE(7021)] = 306933, + [SMALL_STATE(7022)] = 307014, + [SMALL_STATE(7023)] = 307095, + [SMALL_STATE(7024)] = 307180, + [SMALL_STATE(7025)] = 307253, + [SMALL_STATE(7026)] = 307308, + [SMALL_STATE(7027)] = 307373, + [SMALL_STATE(7028)] = 307434, + [SMALL_STATE(7029)] = 307519, + [SMALL_STATE(7030)] = 307604, + [SMALL_STATE(7031)] = 307689, + [SMALL_STATE(7032)] = 307770, + [SMALL_STATE(7033)] = 307839, + [SMALL_STATE(7034)] = 307924, + [SMALL_STATE(7035)] = 307979, + [SMALL_STATE(7036)] = 308034, + [SMALL_STATE(7037)] = 308103, + [SMALL_STATE(7038)] = 308188, + [SMALL_STATE(7039)] = 308273, + [SMALL_STATE(7040)] = 308358, + [SMALL_STATE(7041)] = 308439, + [SMALL_STATE(7042)] = 308524, + [SMALL_STATE(7043)] = 308601, + [SMALL_STATE(7044)] = 308656, + [SMALL_STATE(7045)] = 308741, + [SMALL_STATE(7046)] = 308826, + [SMALL_STATE(7047)] = 308911, + [SMALL_STATE(7048)] = 308970, + [SMALL_STATE(7049)] = 309049, + [SMALL_STATE(7050)] = 309104, + [SMALL_STATE(7051)] = 309159, + [SMALL_STATE(7052)] = 309222, + [SMALL_STATE(7053)] = 309307, + [SMALL_STATE(7054)] = 309392, + [SMALL_STATE(7055)] = 309473, + [SMALL_STATE(7056)] = 309546, + [SMALL_STATE(7057)] = 309611, + [SMALL_STATE(7058)] = 309696, + [SMALL_STATE(7059)] = 309757, + [SMALL_STATE(7060)] = 309842, + [SMALL_STATE(7061)] = 309924, + [SMALL_STATE(7062)] = 309991, + [SMALL_STATE(7063)] = 310058, + [SMALL_STATE(7064)] = 310125, + [SMALL_STATE(7065)] = 310192, + [SMALL_STATE(7066)] = 310259, + [SMALL_STATE(7067)] = 310326, + [SMALL_STATE(7068)] = 310393, + [SMALL_STATE(7069)] = 310474, + [SMALL_STATE(7070)] = 310541, + [SMALL_STATE(7071)] = 310607, + [SMALL_STATE(7072)] = 310673, + [SMALL_STATE(7073)] = 310739, + [SMALL_STATE(7074)] = 310805, + [SMALL_STATE(7075)] = 310871, + [SMALL_STATE(7076)] = 310937, + [SMALL_STATE(7077)] = 311003, + [SMALL_STATE(7078)] = 311069, + [SMALL_STATE(7079)] = 311135, + [SMALL_STATE(7080)] = 311201, + [SMALL_STATE(7081)] = 311267, + [SMALL_STATE(7082)] = 311333, + [SMALL_STATE(7083)] = 311398, + [SMALL_STATE(7084)] = 311463, + [SMALL_STATE(7085)] = 311528, + [SMALL_STATE(7086)] = 311593, + [SMALL_STATE(7087)] = 311658, + [SMALL_STATE(7088)] = 311723, + [SMALL_STATE(7089)] = 311794, + [SMALL_STATE(7090)] = 311865, + [SMALL_STATE(7091)] = 311936, + [SMALL_STATE(7092)] = 312007, + [SMALL_STATE(7093)] = 312078, + [SMALL_STATE(7094)] = 312149, + [SMALL_STATE(7095)] = 312220, + [SMALL_STATE(7096)] = 312291, + [SMALL_STATE(7097)] = 312362, + [SMALL_STATE(7098)] = 312433, + [SMALL_STATE(7099)] = 312504, + [SMALL_STATE(7100)] = 312575, + [SMALL_STATE(7101)] = 312646, + [SMALL_STATE(7102)] = 312717, + [SMALL_STATE(7103)] = 312788, + [SMALL_STATE(7104)] = 312859, + [SMALL_STATE(7105)] = 312930, + [SMALL_STATE(7106)] = 313001, + [SMALL_STATE(7107)] = 313072, + [SMALL_STATE(7108)] = 313143, + [SMALL_STATE(7109)] = 313214, + [SMALL_STATE(7110)] = 313285, + [SMALL_STATE(7111)] = 313356, + [SMALL_STATE(7112)] = 313427, + [SMALL_STATE(7113)] = 313498, + [SMALL_STATE(7114)] = 313569, + [SMALL_STATE(7115)] = 313640, + [SMALL_STATE(7116)] = 313711, + [SMALL_STATE(7117)] = 313782, + [SMALL_STATE(7118)] = 313853, + [SMALL_STATE(7119)] = 313924, + [SMALL_STATE(7120)] = 313995, + [SMALL_STATE(7121)] = 314066, + [SMALL_STATE(7122)] = 314137, + [SMALL_STATE(7123)] = 314208, + [SMALL_STATE(7124)] = 314279, + [SMALL_STATE(7125)] = 314350, + [SMALL_STATE(7126)] = 314421, + [SMALL_STATE(7127)] = 314492, + [SMALL_STATE(7128)] = 314563, + [SMALL_STATE(7129)] = 314634, + [SMALL_STATE(7130)] = 314705, + [SMALL_STATE(7131)] = 314776, + [SMALL_STATE(7132)] = 314847, + [SMALL_STATE(7133)] = 314918, + [SMALL_STATE(7134)] = 314989, + [SMALL_STATE(7135)] = 315060, + [SMALL_STATE(7136)] = 315131, + [SMALL_STATE(7137)] = 315202, + [SMALL_STATE(7138)] = 315273, + [SMALL_STATE(7139)] = 315344, + [SMALL_STATE(7140)] = 315415, + [SMALL_STATE(7141)] = 315486, + [SMALL_STATE(7142)] = 315557, + [SMALL_STATE(7143)] = 315628, + [SMALL_STATE(7144)] = 315699, + [SMALL_STATE(7145)] = 315770, + [SMALL_STATE(7146)] = 315841, + [SMALL_STATE(7147)] = 315912, + [SMALL_STATE(7148)] = 315983, + [SMALL_STATE(7149)] = 316054, + [SMALL_STATE(7150)] = 316125, + [SMALL_STATE(7151)] = 316196, + [SMALL_STATE(7152)] = 316267, + [SMALL_STATE(7153)] = 316338, + [SMALL_STATE(7154)] = 316409, + [SMALL_STATE(7155)] = 316480, + [SMALL_STATE(7156)] = 316551, + [SMALL_STATE(7157)] = 316622, + [SMALL_STATE(7158)] = 316693, + [SMALL_STATE(7159)] = 316764, + [SMALL_STATE(7160)] = 316835, + [SMALL_STATE(7161)] = 316906, + [SMALL_STATE(7162)] = 316977, + [SMALL_STATE(7163)] = 317048, + [SMALL_STATE(7164)] = 317119, + [SMALL_STATE(7165)] = 317190, + [SMALL_STATE(7166)] = 317261, + [SMALL_STATE(7167)] = 317332, + [SMALL_STATE(7168)] = 317403, + [SMALL_STATE(7169)] = 317474, + [SMALL_STATE(7170)] = 317545, + [SMALL_STATE(7171)] = 317616, + [SMALL_STATE(7172)] = 317687, + [SMALL_STATE(7173)] = 317758, + [SMALL_STATE(7174)] = 317829, + [SMALL_STATE(7175)] = 317900, + [SMALL_STATE(7176)] = 317971, + [SMALL_STATE(7177)] = 318042, + [SMALL_STATE(7178)] = 318113, + [SMALL_STATE(7179)] = 318184, + [SMALL_STATE(7180)] = 318255, + [SMALL_STATE(7181)] = 318326, + [SMALL_STATE(7182)] = 318397, + [SMALL_STATE(7183)] = 318468, + [SMALL_STATE(7184)] = 318539, + [SMALL_STATE(7185)] = 318610, + [SMALL_STATE(7186)] = 318681, + [SMALL_STATE(7187)] = 318752, + [SMALL_STATE(7188)] = 318823, + [SMALL_STATE(7189)] = 318894, + [SMALL_STATE(7190)] = 318965, + [SMALL_STATE(7191)] = 319036, + [SMALL_STATE(7192)] = 319107, + [SMALL_STATE(7193)] = 319178, + [SMALL_STATE(7194)] = 319249, + [SMALL_STATE(7195)] = 319320, + [SMALL_STATE(7196)] = 319391, + [SMALL_STATE(7197)] = 319462, + [SMALL_STATE(7198)] = 319533, + [SMALL_STATE(7199)] = 319604, + [SMALL_STATE(7200)] = 319675, + [SMALL_STATE(7201)] = 319746, + [SMALL_STATE(7202)] = 319817, + [SMALL_STATE(7203)] = 319888, + [SMALL_STATE(7204)] = 319959, + [SMALL_STATE(7205)] = 320030, + [SMALL_STATE(7206)] = 320101, + [SMALL_STATE(7207)] = 320172, + [SMALL_STATE(7208)] = 320243, + [SMALL_STATE(7209)] = 320314, + [SMALL_STATE(7210)] = 320385, + [SMALL_STATE(7211)] = 320456, + [SMALL_STATE(7212)] = 320527, + [SMALL_STATE(7213)] = 320598, + [SMALL_STATE(7214)] = 320669, + [SMALL_STATE(7215)] = 320740, + [SMALL_STATE(7216)] = 320811, + [SMALL_STATE(7217)] = 320882, + [SMALL_STATE(7218)] = 320953, + [SMALL_STATE(7219)] = 321024, + [SMALL_STATE(7220)] = 321095, + [SMALL_STATE(7221)] = 321166, + [SMALL_STATE(7222)] = 321237, + [SMALL_STATE(7223)] = 321308, + [SMALL_STATE(7224)] = 321379, + [SMALL_STATE(7225)] = 321450, + [SMALL_STATE(7226)] = 321521, + [SMALL_STATE(7227)] = 321592, + [SMALL_STATE(7228)] = 321663, + [SMALL_STATE(7229)] = 321734, + [SMALL_STATE(7230)] = 321805, + [SMALL_STATE(7231)] = 321876, + [SMALL_STATE(7232)] = 321947, + [SMALL_STATE(7233)] = 322018, + [SMALL_STATE(7234)] = 322089, + [SMALL_STATE(7235)] = 322160, + [SMALL_STATE(7236)] = 322231, + [SMALL_STATE(7237)] = 322302, + [SMALL_STATE(7238)] = 322373, + [SMALL_STATE(7239)] = 322444, + [SMALL_STATE(7240)] = 322515, + [SMALL_STATE(7241)] = 322586, + [SMALL_STATE(7242)] = 322657, + [SMALL_STATE(7243)] = 322728, + [SMALL_STATE(7244)] = 322799, + [SMALL_STATE(7245)] = 322870, + [SMALL_STATE(7246)] = 322941, + [SMALL_STATE(7247)] = 323012, + [SMALL_STATE(7248)] = 323083, + [SMALL_STATE(7249)] = 323154, + [SMALL_STATE(7250)] = 323225, + [SMALL_STATE(7251)] = 323296, + [SMALL_STATE(7252)] = 323367, + [SMALL_STATE(7253)] = 323438, + [SMALL_STATE(7254)] = 323509, + [SMALL_STATE(7255)] = 323580, + [SMALL_STATE(7256)] = 323651, + [SMALL_STATE(7257)] = 323722, + [SMALL_STATE(7258)] = 323793, + [SMALL_STATE(7259)] = 323864, + [SMALL_STATE(7260)] = 323935, + [SMALL_STATE(7261)] = 324006, + [SMALL_STATE(7262)] = 324077, + [SMALL_STATE(7263)] = 324148, + [SMALL_STATE(7264)] = 324219, + [SMALL_STATE(7265)] = 324290, + [SMALL_STATE(7266)] = 324361, + [SMALL_STATE(7267)] = 324432, + [SMALL_STATE(7268)] = 324503, + [SMALL_STATE(7269)] = 324574, + [SMALL_STATE(7270)] = 324645, + [SMALL_STATE(7271)] = 324716, + [SMALL_STATE(7272)] = 324787, + [SMALL_STATE(7273)] = 324858, + [SMALL_STATE(7274)] = 324929, + [SMALL_STATE(7275)] = 325000, + [SMALL_STATE(7276)] = 325071, + [SMALL_STATE(7277)] = 325142, + [SMALL_STATE(7278)] = 325213, + [SMALL_STATE(7279)] = 325284, + [SMALL_STATE(7280)] = 325355, + [SMALL_STATE(7281)] = 325426, + [SMALL_STATE(7282)] = 325497, + [SMALL_STATE(7283)] = 325568, + [SMALL_STATE(7284)] = 325639, + [SMALL_STATE(7285)] = 325710, + [SMALL_STATE(7286)] = 325781, + [SMALL_STATE(7287)] = 325852, + [SMALL_STATE(7288)] = 325923, + [SMALL_STATE(7289)] = 325994, + [SMALL_STATE(7290)] = 326065, + [SMALL_STATE(7291)] = 326136, + [SMALL_STATE(7292)] = 326207, + [SMALL_STATE(7293)] = 326278, + [SMALL_STATE(7294)] = 326349, + [SMALL_STATE(7295)] = 326420, + [SMALL_STATE(7296)] = 326491, + [SMALL_STATE(7297)] = 326562, + [SMALL_STATE(7298)] = 326633, + [SMALL_STATE(7299)] = 326704, + [SMALL_STATE(7300)] = 326775, + [SMALL_STATE(7301)] = 326846, + [SMALL_STATE(7302)] = 326917, + [SMALL_STATE(7303)] = 326988, + [SMALL_STATE(7304)] = 327059, + [SMALL_STATE(7305)] = 327130, + [SMALL_STATE(7306)] = 327201, + [SMALL_STATE(7307)] = 327272, + [SMALL_STATE(7308)] = 327343, + [SMALL_STATE(7309)] = 327414, + [SMALL_STATE(7310)] = 327485, + [SMALL_STATE(7311)] = 327556, + [SMALL_STATE(7312)] = 327627, + [SMALL_STATE(7313)] = 327698, + [SMALL_STATE(7314)] = 327769, + [SMALL_STATE(7315)] = 327840, + [SMALL_STATE(7316)] = 327911, + [SMALL_STATE(7317)] = 327982, + [SMALL_STATE(7318)] = 328053, + [SMALL_STATE(7319)] = 328124, + [SMALL_STATE(7320)] = 328195, + [SMALL_STATE(7321)] = 328266, + [SMALL_STATE(7322)] = 328337, + [SMALL_STATE(7323)] = 328408, + [SMALL_STATE(7324)] = 328479, + [SMALL_STATE(7325)] = 328550, + [SMALL_STATE(7326)] = 328621, + [SMALL_STATE(7327)] = 328692, + [SMALL_STATE(7328)] = 328763, + [SMALL_STATE(7329)] = 328834, + [SMALL_STATE(7330)] = 328905, + [SMALL_STATE(7331)] = 328976, + [SMALL_STATE(7332)] = 329047, + [SMALL_STATE(7333)] = 329118, + [SMALL_STATE(7334)] = 329189, + [SMALL_STATE(7335)] = 329260, + [SMALL_STATE(7336)] = 329331, + [SMALL_STATE(7337)] = 329402, + [SMALL_STATE(7338)] = 329473, + [SMALL_STATE(7339)] = 329544, + [SMALL_STATE(7340)] = 329615, + [SMALL_STATE(7341)] = 329686, + [SMALL_STATE(7342)] = 329757, + [SMALL_STATE(7343)] = 329828, + [SMALL_STATE(7344)] = 329899, + [SMALL_STATE(7345)] = 329970, + [SMALL_STATE(7346)] = 330041, + [SMALL_STATE(7347)] = 330112, + [SMALL_STATE(7348)] = 330183, + [SMALL_STATE(7349)] = 330254, + [SMALL_STATE(7350)] = 330325, + [SMALL_STATE(7351)] = 330396, + [SMALL_STATE(7352)] = 330467, + [SMALL_STATE(7353)] = 330538, + [SMALL_STATE(7354)] = 330609, + [SMALL_STATE(7355)] = 330680, + [SMALL_STATE(7356)] = 330751, + [SMALL_STATE(7357)] = 330822, + [SMALL_STATE(7358)] = 330893, + [SMALL_STATE(7359)] = 330964, + [SMALL_STATE(7360)] = 331035, + [SMALL_STATE(7361)] = 331106, + [SMALL_STATE(7362)] = 331177, + [SMALL_STATE(7363)] = 331248, + [SMALL_STATE(7364)] = 331319, + [SMALL_STATE(7365)] = 331390, + [SMALL_STATE(7366)] = 331461, + [SMALL_STATE(7367)] = 331532, + [SMALL_STATE(7368)] = 331603, + [SMALL_STATE(7369)] = 331674, + [SMALL_STATE(7370)] = 331745, + [SMALL_STATE(7371)] = 331816, + [SMALL_STATE(7372)] = 331887, + [SMALL_STATE(7373)] = 331958, + [SMALL_STATE(7374)] = 332029, + [SMALL_STATE(7375)] = 332100, + [SMALL_STATE(7376)] = 332171, + [SMALL_STATE(7377)] = 332242, + [SMALL_STATE(7378)] = 332313, + [SMALL_STATE(7379)] = 332384, + [SMALL_STATE(7380)] = 332455, + [SMALL_STATE(7381)] = 332526, + [SMALL_STATE(7382)] = 332597, + [SMALL_STATE(7383)] = 332668, + [SMALL_STATE(7384)] = 332739, + [SMALL_STATE(7385)] = 332810, + [SMALL_STATE(7386)] = 332881, + [SMALL_STATE(7387)] = 332952, + [SMALL_STATE(7388)] = 333023, + [SMALL_STATE(7389)] = 333094, + [SMALL_STATE(7390)] = 333165, + [SMALL_STATE(7391)] = 333236, + [SMALL_STATE(7392)] = 333307, + [SMALL_STATE(7393)] = 333378, + [SMALL_STATE(7394)] = 333449, + [SMALL_STATE(7395)] = 333520, + [SMALL_STATE(7396)] = 333591, + [SMALL_STATE(7397)] = 333662, + [SMALL_STATE(7398)] = 333733, + [SMALL_STATE(7399)] = 333804, + [SMALL_STATE(7400)] = 333875, + [SMALL_STATE(7401)] = 333946, + [SMALL_STATE(7402)] = 334017, + [SMALL_STATE(7403)] = 334088, + [SMALL_STATE(7404)] = 334159, + [SMALL_STATE(7405)] = 334230, + [SMALL_STATE(7406)] = 334301, + [SMALL_STATE(7407)] = 334372, + [SMALL_STATE(7408)] = 334443, + [SMALL_STATE(7409)] = 334514, + [SMALL_STATE(7410)] = 334585, + [SMALL_STATE(7411)] = 334656, + [SMALL_STATE(7412)] = 334727, + [SMALL_STATE(7413)] = 334798, + [SMALL_STATE(7414)] = 334869, + [SMALL_STATE(7415)] = 334940, + [SMALL_STATE(7416)] = 335011, + [SMALL_STATE(7417)] = 335082, + [SMALL_STATE(7418)] = 335153, + [SMALL_STATE(7419)] = 335224, + [SMALL_STATE(7420)] = 335295, + [SMALL_STATE(7421)] = 335366, + [SMALL_STATE(7422)] = 335437, + [SMALL_STATE(7423)] = 335508, + [SMALL_STATE(7424)] = 335579, + [SMALL_STATE(7425)] = 335650, + [SMALL_STATE(7426)] = 335721, + [SMALL_STATE(7427)] = 335792, + [SMALL_STATE(7428)] = 335863, + [SMALL_STATE(7429)] = 335934, + [SMALL_STATE(7430)] = 336005, + [SMALL_STATE(7431)] = 336076, + [SMALL_STATE(7432)] = 336147, + [SMALL_STATE(7433)] = 336218, + [SMALL_STATE(7434)] = 336289, + [SMALL_STATE(7435)] = 336360, + [SMALL_STATE(7436)] = 336431, + [SMALL_STATE(7437)] = 336502, + [SMALL_STATE(7438)] = 336573, + [SMALL_STATE(7439)] = 336644, + [SMALL_STATE(7440)] = 336715, + [SMALL_STATE(7441)] = 336786, + [SMALL_STATE(7442)] = 336857, + [SMALL_STATE(7443)] = 336928, + [SMALL_STATE(7444)] = 336999, + [SMALL_STATE(7445)] = 337070, + [SMALL_STATE(7446)] = 337141, + [SMALL_STATE(7447)] = 337212, + [SMALL_STATE(7448)] = 337283, + [SMALL_STATE(7449)] = 337354, + [SMALL_STATE(7450)] = 337425, + [SMALL_STATE(7451)] = 337496, + [SMALL_STATE(7452)] = 337567, + [SMALL_STATE(7453)] = 337638, + [SMALL_STATE(7454)] = 337709, + [SMALL_STATE(7455)] = 337780, + [SMALL_STATE(7456)] = 337851, + [SMALL_STATE(7457)] = 337922, + [SMALL_STATE(7458)] = 337993, + [SMALL_STATE(7459)] = 338064, + [SMALL_STATE(7460)] = 338135, + [SMALL_STATE(7461)] = 338206, + [SMALL_STATE(7462)] = 338277, + [SMALL_STATE(7463)] = 338348, + [SMALL_STATE(7464)] = 338419, + [SMALL_STATE(7465)] = 338490, + [SMALL_STATE(7466)] = 338561, + [SMALL_STATE(7467)] = 338632, + [SMALL_STATE(7468)] = 338703, + [SMALL_STATE(7469)] = 338774, + [SMALL_STATE(7470)] = 338845, + [SMALL_STATE(7471)] = 338916, + [SMALL_STATE(7472)] = 338987, + [SMALL_STATE(7473)] = 339058, + [SMALL_STATE(7474)] = 339129, + [SMALL_STATE(7475)] = 339200, + [SMALL_STATE(7476)] = 339271, + [SMALL_STATE(7477)] = 339342, + [SMALL_STATE(7478)] = 339413, + [SMALL_STATE(7479)] = 339484, + [SMALL_STATE(7480)] = 339555, + [SMALL_STATE(7481)] = 339626, + [SMALL_STATE(7482)] = 339697, + [SMALL_STATE(7483)] = 339768, + [SMALL_STATE(7484)] = 339839, + [SMALL_STATE(7485)] = 339910, + [SMALL_STATE(7486)] = 339981, + [SMALL_STATE(7487)] = 340052, + [SMALL_STATE(7488)] = 340123, + [SMALL_STATE(7489)] = 340194, + [SMALL_STATE(7490)] = 340265, + [SMALL_STATE(7491)] = 340336, + [SMALL_STATE(7492)] = 340407, + [SMALL_STATE(7493)] = 340478, + [SMALL_STATE(7494)] = 340549, + [SMALL_STATE(7495)] = 340620, + [SMALL_STATE(7496)] = 340691, + [SMALL_STATE(7497)] = 340762, + [SMALL_STATE(7498)] = 340833, + [SMALL_STATE(7499)] = 340904, + [SMALL_STATE(7500)] = 340975, + [SMALL_STATE(7501)] = 341046, + [SMALL_STATE(7502)] = 341117, + [SMALL_STATE(7503)] = 341188, + [SMALL_STATE(7504)] = 341259, + [SMALL_STATE(7505)] = 341330, + [SMALL_STATE(7506)] = 341401, + [SMALL_STATE(7507)] = 341472, + [SMALL_STATE(7508)] = 341543, + [SMALL_STATE(7509)] = 341614, + [SMALL_STATE(7510)] = 341685, + [SMALL_STATE(7511)] = 341756, + [SMALL_STATE(7512)] = 341827, + [SMALL_STATE(7513)] = 341898, + [SMALL_STATE(7514)] = 341969, + [SMALL_STATE(7515)] = 342040, + [SMALL_STATE(7516)] = 342111, + [SMALL_STATE(7517)] = 342182, + [SMALL_STATE(7518)] = 342253, + [SMALL_STATE(7519)] = 342324, + [SMALL_STATE(7520)] = 342395, + [SMALL_STATE(7521)] = 342466, + [SMALL_STATE(7522)] = 342537, + [SMALL_STATE(7523)] = 342608, + [SMALL_STATE(7524)] = 342679, + [SMALL_STATE(7525)] = 342750, + [SMALL_STATE(7526)] = 342821, + [SMALL_STATE(7527)] = 342892, + [SMALL_STATE(7528)] = 342963, + [SMALL_STATE(7529)] = 343034, + [SMALL_STATE(7530)] = 343105, + [SMALL_STATE(7531)] = 343176, + [SMALL_STATE(7532)] = 343247, + [SMALL_STATE(7533)] = 343318, + [SMALL_STATE(7534)] = 343389, + [SMALL_STATE(7535)] = 343460, + [SMALL_STATE(7536)] = 343531, + [SMALL_STATE(7537)] = 343602, + [SMALL_STATE(7538)] = 343673, + [SMALL_STATE(7539)] = 343744, + [SMALL_STATE(7540)] = 343812, + [SMALL_STATE(7541)] = 343880, + [SMALL_STATE(7542)] = 343948, + [SMALL_STATE(7543)] = 344016, + [SMALL_STATE(7544)] = 344084, + [SMALL_STATE(7545)] = 344152, + [SMALL_STATE(7546)] = 344220, + [SMALL_STATE(7547)] = 344288, + [SMALL_STATE(7548)] = 344356, + [SMALL_STATE(7549)] = 344424, + [SMALL_STATE(7550)] = 344492, + [SMALL_STATE(7551)] = 344560, + [SMALL_STATE(7552)] = 344628, + [SMALL_STATE(7553)] = 344696, + [SMALL_STATE(7554)] = 344764, + [SMALL_STATE(7555)] = 344832, + [SMALL_STATE(7556)] = 344900, + [SMALL_STATE(7557)] = 344968, + [SMALL_STATE(7558)] = 345036, + [SMALL_STATE(7559)] = 345104, + [SMALL_STATE(7560)] = 345172, + [SMALL_STATE(7561)] = 345240, + [SMALL_STATE(7562)] = 345308, + [SMALL_STATE(7563)] = 345376, + [SMALL_STATE(7564)] = 345444, + [SMALL_STATE(7565)] = 345512, + [SMALL_STATE(7566)] = 345580, + [SMALL_STATE(7567)] = 345648, + [SMALL_STATE(7568)] = 345716, + [SMALL_STATE(7569)] = 345784, + [SMALL_STATE(7570)] = 345852, + [SMALL_STATE(7571)] = 345920, + [SMALL_STATE(7572)] = 345988, + [SMALL_STATE(7573)] = 346056, + [SMALL_STATE(7574)] = 346124, + [SMALL_STATE(7575)] = 346192, + [SMALL_STATE(7576)] = 346260, + [SMALL_STATE(7577)] = 346328, + [SMALL_STATE(7578)] = 346396, + [SMALL_STATE(7579)] = 346464, + [SMALL_STATE(7580)] = 346532, + [SMALL_STATE(7581)] = 346600, + [SMALL_STATE(7582)] = 346668, + [SMALL_STATE(7583)] = 346736, + [SMALL_STATE(7584)] = 346804, + [SMALL_STATE(7585)] = 346872, + [SMALL_STATE(7586)] = 346940, + [SMALL_STATE(7587)] = 347008, + [SMALL_STATE(7588)] = 347076, + [SMALL_STATE(7589)] = 347144, + [SMALL_STATE(7590)] = 347212, + [SMALL_STATE(7591)] = 347280, + [SMALL_STATE(7592)] = 347348, + [SMALL_STATE(7593)] = 347410, + [SMALL_STATE(7594)] = 347478, + [SMALL_STATE(7595)] = 347546, + [SMALL_STATE(7596)] = 347614, + [SMALL_STATE(7597)] = 347682, + [SMALL_STATE(7598)] = 347750, + [SMALL_STATE(7599)] = 347818, + [SMALL_STATE(7600)] = 347886, + [SMALL_STATE(7601)] = 347954, + [SMALL_STATE(7602)] = 348022, + [SMALL_STATE(7603)] = 348090, + [SMALL_STATE(7604)] = 348158, + [SMALL_STATE(7605)] = 348226, + [SMALL_STATE(7606)] = 348294, + [SMALL_STATE(7607)] = 348362, + [SMALL_STATE(7608)] = 348430, + [SMALL_STATE(7609)] = 348498, + [SMALL_STATE(7610)] = 348566, + [SMALL_STATE(7611)] = 348634, + [SMALL_STATE(7612)] = 348702, + [SMALL_STATE(7613)] = 348770, + [SMALL_STATE(7614)] = 348838, + [SMALL_STATE(7615)] = 348906, + [SMALL_STATE(7616)] = 348974, + [SMALL_STATE(7617)] = 349042, + [SMALL_STATE(7618)] = 349110, + [SMALL_STATE(7619)] = 349178, + [SMALL_STATE(7620)] = 349246, + [SMALL_STATE(7621)] = 349314, + [SMALL_STATE(7622)] = 349382, + [SMALL_STATE(7623)] = 349450, + [SMALL_STATE(7624)] = 349518, + [SMALL_STATE(7625)] = 349586, + [SMALL_STATE(7626)] = 349654, + [SMALL_STATE(7627)] = 349722, + [SMALL_STATE(7628)] = 349790, + [SMALL_STATE(7629)] = 349852, + [SMALL_STATE(7630)] = 349920, + [SMALL_STATE(7631)] = 349988, + [SMALL_STATE(7632)] = 350056, + [SMALL_STATE(7633)] = 350124, + [SMALL_STATE(7634)] = 350192, + [SMALL_STATE(7635)] = 350260, + [SMALL_STATE(7636)] = 350328, + [SMALL_STATE(7637)] = 350396, + [SMALL_STATE(7638)] = 350464, + [SMALL_STATE(7639)] = 350532, + [SMALL_STATE(7640)] = 350600, + [SMALL_STATE(7641)] = 350665, + [SMALL_STATE(7642)] = 350730, + [SMALL_STATE(7643)] = 350795, + [SMALL_STATE(7644)] = 350860, + [SMALL_STATE(7645)] = 350925, + [SMALL_STATE(7646)] = 350990, + [SMALL_STATE(7647)] = 351055, + [SMALL_STATE(7648)] = 351120, + [SMALL_STATE(7649)] = 351185, + [SMALL_STATE(7650)] = 351250, + [SMALL_STATE(7651)] = 351315, + [SMALL_STATE(7652)] = 351376, + [SMALL_STATE(7653)] = 351441, + [SMALL_STATE(7654)] = 351506, + [SMALL_STATE(7655)] = 351571, + [SMALL_STATE(7656)] = 351636, + [SMALL_STATE(7657)] = 351701, + [SMALL_STATE(7658)] = 351766, + [SMALL_STATE(7659)] = 351831, + [SMALL_STATE(7660)] = 351892, + [SMALL_STATE(7661)] = 351957, + [SMALL_STATE(7662)] = 352022, + [SMALL_STATE(7663)] = 352087, + [SMALL_STATE(7664)] = 352152, + [SMALL_STATE(7665)] = 352217, + [SMALL_STATE(7666)] = 352282, + [SMALL_STATE(7667)] = 352347, + [SMALL_STATE(7668)] = 352412, + [SMALL_STATE(7669)] = 352477, + [SMALL_STATE(7670)] = 352517, + [SMALL_STATE(7671)] = 352577, + [SMALL_STATE(7672)] = 352637, + [SMALL_STATE(7673)] = 352697, + [SMALL_STATE(7674)] = 352757, + [SMALL_STATE(7675)] = 352799, + [SMALL_STATE(7676)] = 352841, + [SMALL_STATE(7677)] = 352883, + [SMALL_STATE(7678)] = 352925, + [SMALL_STATE(7679)] = 352962, + [SMALL_STATE(7680)] = 353018, + [SMALL_STATE(7681)] = 353074, + [SMALL_STATE(7682)] = 353112, + [SMALL_STATE(7683)] = 353160, + [SMALL_STATE(7684)] = 353216, + [SMALL_STATE(7685)] = 353272, + [SMALL_STATE(7686)] = 353328, + [SMALL_STATE(7687)] = 353384, + [SMALL_STATE(7688)] = 353440, + [SMALL_STATE(7689)] = 353496, + [SMALL_STATE(7690)] = 353552, + [SMALL_STATE(7691)] = 353608, + [SMALL_STATE(7692)] = 353664, + [SMALL_STATE(7693)] = 353702, + [SMALL_STATE(7694)] = 353758, + [SMALL_STATE(7695)] = 353814, + [SMALL_STATE(7696)] = 353870, + [SMALL_STATE(7697)] = 353926, + [SMALL_STATE(7698)] = 353982, + [SMALL_STATE(7699)] = 354038, + [SMALL_STATE(7700)] = 354086, + [SMALL_STATE(7701)] = 354134, + [SMALL_STATE(7702)] = 354190, + [SMALL_STATE(7703)] = 354246, + [SMALL_STATE(7704)] = 354302, + [SMALL_STATE(7705)] = 354358, + [SMALL_STATE(7706)] = 354414, + [SMALL_STATE(7707)] = 354470, + [SMALL_STATE(7708)] = 354526, + [SMALL_STATE(7709)] = 354582, + [SMALL_STATE(7710)] = 354638, + [SMALL_STATE(7711)] = 354694, + [SMALL_STATE(7712)] = 354750, + [SMALL_STATE(7713)] = 354806, + [SMALL_STATE(7714)] = 354862, + [SMALL_STATE(7715)] = 354918, + [SMALL_STATE(7716)] = 354974, + [SMALL_STATE(7717)] = 355030, + [SMALL_STATE(7718)] = 355086, + [SMALL_STATE(7719)] = 355142, + [SMALL_STATE(7720)] = 355198, + [SMALL_STATE(7721)] = 355254, + [SMALL_STATE(7722)] = 355310, + [SMALL_STATE(7723)] = 355366, + [SMALL_STATE(7724)] = 355414, + [SMALL_STATE(7725)] = 355470, + [SMALL_STATE(7726)] = 355526, + [SMALL_STATE(7727)] = 355582, + [SMALL_STATE(7728)] = 355638, + [SMALL_STATE(7729)] = 355694, + [SMALL_STATE(7730)] = 355750, + [SMALL_STATE(7731)] = 355806, + [SMALL_STATE(7732)] = 355862, + [SMALL_STATE(7733)] = 355918, + [SMALL_STATE(7734)] = 355974, + [SMALL_STATE(7735)] = 356030, + [SMALL_STATE(7736)] = 356068, + [SMALL_STATE(7737)] = 356124, + [SMALL_STATE(7738)] = 356180, + [SMALL_STATE(7739)] = 356228, + [SMALL_STATE(7740)] = 356284, + [SMALL_STATE(7741)] = 356340, + [SMALL_STATE(7742)] = 356380, + [SMALL_STATE(7743)] = 356436, + [SMALL_STATE(7744)] = 356492, + [SMALL_STATE(7745)] = 356548, + [SMALL_STATE(7746)] = 356604, + [SMALL_STATE(7747)] = 356660, + [SMALL_STATE(7748)] = 356716, + [SMALL_STATE(7749)] = 356772, + [SMALL_STATE(7750)] = 356828, + [SMALL_STATE(7751)] = 356884, + [SMALL_STATE(7752)] = 356940, + [SMALL_STATE(7753)] = 356996, + [SMALL_STATE(7754)] = 357052, + [SMALL_STATE(7755)] = 357108, + [SMALL_STATE(7756)] = 357164, + [SMALL_STATE(7757)] = 357220, + [SMALL_STATE(7758)] = 357276, + [SMALL_STATE(7759)] = 357332, + [SMALL_STATE(7760)] = 357388, + [SMALL_STATE(7761)] = 357444, + [SMALL_STATE(7762)] = 357500, + [SMALL_STATE(7763)] = 357535, + [SMALL_STATE(7764)] = 357570, + [SMALL_STATE(7765)] = 357605, + [SMALL_STATE(7766)] = 357640, + [SMALL_STATE(7767)] = 357675, + [SMALL_STATE(7768)] = 357710, + [SMALL_STATE(7769)] = 357745, + [SMALL_STATE(7770)] = 357780, + [SMALL_STATE(7771)] = 357815, + [SMALL_STATE(7772)] = 357850, + [SMALL_STATE(7773)] = 357885, + [SMALL_STATE(7774)] = 357920, + [SMALL_STATE(7775)] = 357955, + [SMALL_STATE(7776)] = 357990, + [SMALL_STATE(7777)] = 358025, + [SMALL_STATE(7778)] = 358060, + [SMALL_STATE(7779)] = 358095, + [SMALL_STATE(7780)] = 358131, + [SMALL_STATE(7781)] = 358169, + [SMALL_STATE(7782)] = 358215, + [SMALL_STATE(7783)] = 358253, + [SMALL_STATE(7784)] = 358291, + [SMALL_STATE(7785)] = 358327, + [SMALL_STATE(7786)] = 358373, + [SMALL_STATE(7787)] = 358419, + [SMALL_STATE(7788)] = 358465, + [SMALL_STATE(7789)] = 358503, + [SMALL_STATE(7790)] = 358541, + [SMALL_STATE(7791)] = 358577, + [SMALL_STATE(7792)] = 358623, + [SMALL_STATE(7793)] = 358656, + [SMALL_STATE(7794)] = 358692, + [SMALL_STATE(7795)] = 358726, + [SMALL_STATE(7796)] = 358762, + [SMALL_STATE(7797)] = 358806, + [SMALL_STATE(7798)] = 358850, + [SMALL_STATE(7799)] = 358886, + [SMALL_STATE(7800)] = 358922, + [SMALL_STATE(7801)] = 358958, + [SMALL_STATE(7802)] = 358994, + [SMALL_STATE(7803)] = 359038, + [SMALL_STATE(7804)] = 359072, + [SMALL_STATE(7805)] = 359116, + [SMALL_STATE(7806)] = 359160, + [SMALL_STATE(7807)] = 359204, + [SMALL_STATE(7808)] = 359238, + [SMALL_STATE(7809)] = 359274, + [SMALL_STATE(7810)] = 359318, + [SMALL_STATE(7811)] = 359354, + [SMALL_STATE(7812)] = 359390, + [SMALL_STATE(7813)] = 359426, + [SMALL_STATE(7814)] = 359460, + [SMALL_STATE(7815)] = 359496, + [SMALL_STATE(7816)] = 359532, + [SMALL_STATE(7817)] = 359568, + [SMALL_STATE(7818)] = 359602, + [SMALL_STATE(7819)] = 359635, + [SMALL_STATE(7820)] = 359666, + [SMALL_STATE(7821)] = 359697, + [SMALL_STATE(7822)] = 359728, + [SMALL_STATE(7823)] = 359769, + [SMALL_STATE(7824)] = 359802, + [SMALL_STATE(7825)] = 359835, + [SMALL_STATE(7826)] = 359868, + [SMALL_STATE(7827)] = 359899, + [SMALL_STATE(7828)] = 359936, + [SMALL_STATE(7829)] = 359967, + [SMALL_STATE(7830)] = 359998, + [SMALL_STATE(7831)] = 360031, + [SMALL_STATE(7832)] = 360064, + [SMALL_STATE(7833)] = 360097, + [SMALL_STATE(7834)] = 360128, + [SMALL_STATE(7835)] = 360159, + [SMALL_STATE(7836)] = 360192, + [SMALL_STATE(7837)] = 360225, + [SMALL_STATE(7838)] = 360258, + [SMALL_STATE(7839)] = 360299, + [SMALL_STATE(7840)] = 360340, + [SMALL_STATE(7841)] = 360373, + [SMALL_STATE(7842)] = 360404, + [SMALL_STATE(7843)] = 360437, + [SMALL_STATE(7844)] = 360468, + [SMALL_STATE(7845)] = 360501, + [SMALL_STATE(7846)] = 360534, + [SMALL_STATE(7847)] = 360567, + [SMALL_STATE(7848)] = 360600, + [SMALL_STATE(7849)] = 360633, + [SMALL_STATE(7850)] = 360666, + [SMALL_STATE(7851)] = 360699, + [SMALL_STATE(7852)] = 360732, + [SMALL_STATE(7853)] = 360763, + [SMALL_STATE(7854)] = 360794, + [SMALL_STATE(7855)] = 360835, + [SMALL_STATE(7856)] = 360868, + [SMALL_STATE(7857)] = 360901, + [SMALL_STATE(7858)] = 360932, + [SMALL_STATE(7859)] = 360963, + [SMALL_STATE(7860)] = 360996, + [SMALL_STATE(7861)] = 361029, + [SMALL_STATE(7862)] = 361060, + [SMALL_STATE(7863)] = 361091, + [SMALL_STATE(7864)] = 361124, + [SMALL_STATE(7865)] = 361157, + [SMALL_STATE(7866)] = 361188, + [SMALL_STATE(7867)] = 361219, + [SMALL_STATE(7868)] = 361261, + [SMALL_STATE(7869)] = 361303, + [SMALL_STATE(7870)] = 361337, + [SMALL_STATE(7871)] = 361369, + [SMALL_STATE(7872)] = 361401, + [SMALL_STATE(7873)] = 361443, + [SMALL_STATE(7874)] = 361481, + [SMALL_STATE(7875)] = 361523, + [SMALL_STATE(7876)] = 361561, + [SMALL_STATE(7877)] = 361593, + [SMALL_STATE(7878)] = 361635, + [SMALL_STATE(7879)] = 361673, + [SMALL_STATE(7880)] = 361703, + [SMALL_STATE(7881)] = 361745, + [SMALL_STATE(7882)] = 361783, + [SMALL_STATE(7883)] = 361813, + [SMALL_STATE(7884)] = 361845, + [SMALL_STATE(7885)] = 361879, + [SMALL_STATE(7886)] = 361911, + [SMALL_STATE(7887)] = 361953, + [SMALL_STATE(7888)] = 361995, + [SMALL_STATE(7889)] = 362033, + [SMALL_STATE(7890)] = 362075, + [SMALL_STATE(7891)] = 362117, + [SMALL_STATE(7892)] = 362155, + [SMALL_STATE(7893)] = 362184, + [SMALL_STATE(7894)] = 362213, + [SMALL_STATE(7895)] = 362242, + [SMALL_STATE(7896)] = 362271, + [SMALL_STATE(7897)] = 362300, + [SMALL_STATE(7898)] = 362329, + [SMALL_STATE(7899)] = 362358, + [SMALL_STATE(7900)] = 362387, + [SMALL_STATE(7901)] = 362416, + [SMALL_STATE(7902)] = 362447, + [SMALL_STATE(7903)] = 362480, + [SMALL_STATE(7904)] = 362509, + [SMALL_STATE(7905)] = 362538, + [SMALL_STATE(7906)] = 362567, + [SMALL_STATE(7907)] = 362596, + [SMALL_STATE(7908)] = 362625, + [SMALL_STATE(7909)] = 362658, + [SMALL_STATE(7910)] = 362687, + [SMALL_STATE(7911)] = 362716, + [SMALL_STATE(7912)] = 362745, + [SMALL_STATE(7913)] = 362777, + [SMALL_STATE(7914)] = 362807, + [SMALL_STATE(7915)] = 362847, + [SMALL_STATE(7916)] = 362887, + [SMALL_STATE(7917)] = 362927, + [SMALL_STATE(7918)] = 362957, + [SMALL_STATE(7919)] = 362989, + [SMALL_STATE(7920)] = 363021, + [SMALL_STATE(7921)] = 363071, + [SMALL_STATE(7922)] = 363121, + [SMALL_STATE(7923)] = 363171, + [SMALL_STATE(7924)] = 363203, + [SMALL_STATE(7925)] = 363235, + [SMALL_STATE(7926)] = 363267, + [SMALL_STATE(7927)] = 363299, + [SMALL_STATE(7928)] = 363331, + [SMALL_STATE(7929)] = 363363, + [SMALL_STATE(7930)] = 363393, + [SMALL_STATE(7931)] = 363421, + [SMALL_STATE(7932)] = 363453, + [SMALL_STATE(7933)] = 363493, + [SMALL_STATE(7934)] = 363543, + [SMALL_STATE(7935)] = 363593, + [SMALL_STATE(7936)] = 363643, + [SMALL_STATE(7937)] = 363683, + [SMALL_STATE(7938)] = 363723, + [SMALL_STATE(7939)] = 363773, + [SMALL_STATE(7940)] = 363813, + [SMALL_STATE(7941)] = 363843, + [SMALL_STATE(7942)] = 363875, + [SMALL_STATE(7943)] = 363907, + [SMALL_STATE(7944)] = 363957, + [SMALL_STATE(7945)] = 363997, + [SMALL_STATE(7946)] = 364029, + [SMALL_STATE(7947)] = 364057, + [SMALL_STATE(7948)] = 364084, + [SMALL_STATE(7949)] = 364111, + [SMALL_STATE(7950)] = 364138, + [SMALL_STATE(7951)] = 364165, + [SMALL_STATE(7952)] = 364192, + [SMALL_STATE(7953)] = 364219, + [SMALL_STATE(7954)] = 364246, + [SMALL_STATE(7955)] = 364273, + [SMALL_STATE(7956)] = 364300, + [SMALL_STATE(7957)] = 364327, + [SMALL_STATE(7958)] = 364354, + [SMALL_STATE(7959)] = 364381, + [SMALL_STATE(7960)] = 364408, + [SMALL_STATE(7961)] = 364435, + [SMALL_STATE(7962)] = 364462, + [SMALL_STATE(7963)] = 364489, + [SMALL_STATE(7964)] = 364516, + [SMALL_STATE(7965)] = 364543, + [SMALL_STATE(7966)] = 364570, + [SMALL_STATE(7967)] = 364597, + [SMALL_STATE(7968)] = 364624, + [SMALL_STATE(7969)] = 364651, + [SMALL_STATE(7970)] = 364678, + [SMALL_STATE(7971)] = 364705, + [SMALL_STATE(7972)] = 364752, + [SMALL_STATE(7973)] = 364779, + [SMALL_STATE(7974)] = 364806, + [SMALL_STATE(7975)] = 364833, + [SMALL_STATE(7976)] = 364860, + [SMALL_STATE(7977)] = 364887, + [SMALL_STATE(7978)] = 364914, + [SMALL_STATE(7979)] = 364941, + [SMALL_STATE(7980)] = 364968, + [SMALL_STATE(7981)] = 364995, + [SMALL_STATE(7982)] = 365022, + [SMALL_STATE(7983)] = 365065, + [SMALL_STATE(7984)] = 365098, + [SMALL_STATE(7985)] = 365125, + [SMALL_STATE(7986)] = 365152, + [SMALL_STATE(7987)] = 365179, + [SMALL_STATE(7988)] = 365206, + [SMALL_STATE(7989)] = 365233, + [SMALL_STATE(7990)] = 365260, + [SMALL_STATE(7991)] = 365287, + [SMALL_STATE(7992)] = 365314, + [SMALL_STATE(7993)] = 365351, + [SMALL_STATE(7994)] = 365378, + [SMALL_STATE(7995)] = 365405, + [SMALL_STATE(7996)] = 365432, + [SMALL_STATE(7997)] = 365459, + [SMALL_STATE(7998)] = 365494, + [SMALL_STATE(7999)] = 365521, + [SMALL_STATE(8000)] = 365548, + [SMALL_STATE(8001)] = 365575, + [SMALL_STATE(8002)] = 365602, + [SMALL_STATE(8003)] = 365629, + [SMALL_STATE(8004)] = 365656, + [SMALL_STATE(8005)] = 365683, + [SMALL_STATE(8006)] = 365710, + [SMALL_STATE(8007)] = 365747, + [SMALL_STATE(8008)] = 365774, + [SMALL_STATE(8009)] = 365801, + [SMALL_STATE(8010)] = 365828, + [SMALL_STATE(8011)] = 365855, + [SMALL_STATE(8012)] = 365882, + [SMALL_STATE(8013)] = 365919, + [SMALL_STATE(8014)] = 365946, + [SMALL_STATE(8015)] = 365973, + [SMALL_STATE(8016)] = 366016, + [SMALL_STATE(8017)] = 366043, + [SMALL_STATE(8018)] = 366070, + [SMALL_STATE(8019)] = 366107, + [SMALL_STATE(8020)] = 366134, + [SMALL_STATE(8021)] = 366161, + [SMALL_STATE(8022)] = 366188, + [SMALL_STATE(8023)] = 366215, + [SMALL_STATE(8024)] = 366242, + [SMALL_STATE(8025)] = 366269, + [SMALL_STATE(8026)] = 366296, + [SMALL_STATE(8027)] = 366327, + [SMALL_STATE(8028)] = 366354, + [SMALL_STATE(8029)] = 366381, + [SMALL_STATE(8030)] = 366408, + [SMALL_STATE(8031)] = 366435, + [SMALL_STATE(8032)] = 366462, + [SMALL_STATE(8033)] = 366493, + [SMALL_STATE(8034)] = 366524, + [SMALL_STATE(8035)] = 366551, + [SMALL_STATE(8036)] = 366578, + [SMALL_STATE(8037)] = 366605, + [SMALL_STATE(8038)] = 366634, + [SMALL_STATE(8039)] = 366665, + [SMALL_STATE(8040)] = 366692, + [SMALL_STATE(8041)] = 366719, + [SMALL_STATE(8042)] = 366746, + [SMALL_STATE(8043)] = 366773, + [SMALL_STATE(8044)] = 366800, + [SMALL_STATE(8045)] = 366827, + [SMALL_STATE(8046)] = 366854, + [SMALL_STATE(8047)] = 366881, + [SMALL_STATE(8048)] = 366908, + [SMALL_STATE(8049)] = 366935, + [SMALL_STATE(8050)] = 366962, + [SMALL_STATE(8051)] = 366989, + [SMALL_STATE(8052)] = 367032, + [SMALL_STATE(8053)] = 367059, + [SMALL_STATE(8054)] = 367086, + [SMALL_STATE(8055)] = 367113, + [SMALL_STATE(8056)] = 367160, + [SMALL_STATE(8057)] = 367203, + [SMALL_STATE(8058)] = 367230, + [SMALL_STATE(8059)] = 367257, + [SMALL_STATE(8060)] = 367284, + [SMALL_STATE(8061)] = 367327, + [SMALL_STATE(8062)] = 367354, + [SMALL_STATE(8063)] = 367381, + [SMALL_STATE(8064)] = 367408, + [SMALL_STATE(8065)] = 367451, + [SMALL_STATE(8066)] = 367494, + [SMALL_STATE(8067)] = 367537, + [SMALL_STATE(8068)] = 367564, + [SMALL_STATE(8069)] = 367607, + [SMALL_STATE(8070)] = 367650, + [SMALL_STATE(8071)] = 367693, + [SMALL_STATE(8072)] = 367720, + [SMALL_STATE(8073)] = 367747, + [SMALL_STATE(8074)] = 367790, + [SMALL_STATE(8075)] = 367817, + [SMALL_STATE(8076)] = 367844, + [SMALL_STATE(8077)] = 367887, + [SMALL_STATE(8078)] = 367930, + [SMALL_STATE(8079)] = 367957, + [SMALL_STATE(8080)] = 368000, + [SMALL_STATE(8081)] = 368043, + [SMALL_STATE(8082)] = 368086, + [SMALL_STATE(8083)] = 368129, + [SMALL_STATE(8084)] = 368172, + [SMALL_STATE(8085)] = 368215, + [SMALL_STATE(8086)] = 368258, + [SMALL_STATE(8087)] = 368301, + [SMALL_STATE(8088)] = 368344, + [SMALL_STATE(8089)] = 368387, + [SMALL_STATE(8090)] = 368430, + [SMALL_STATE(8091)] = 368457, + [SMALL_STATE(8092)] = 368484, + [SMALL_STATE(8093)] = 368511, + [SMALL_STATE(8094)] = 368538, + [SMALL_STATE(8095)] = 368565, + [SMALL_STATE(8096)] = 368592, + [SMALL_STATE(8097)] = 368619, + [SMALL_STATE(8098)] = 368646, + [SMALL_STATE(8099)] = 368673, + [SMALL_STATE(8100)] = 368708, + [SMALL_STATE(8101)] = 368735, + [SMALL_STATE(8102)] = 368762, + [SMALL_STATE(8103)] = 368789, + [SMALL_STATE(8104)] = 368816, + [SMALL_STATE(8105)] = 368843, + [SMALL_STATE(8106)] = 368870, + [SMALL_STATE(8107)] = 368909, + [SMALL_STATE(8108)] = 368947, + [SMALL_STATE(8109)] = 368989, + [SMALL_STATE(8110)] = 369019, + [SMALL_STATE(8111)] = 369049, + [SMALL_STATE(8112)] = 369083, + [SMALL_STATE(8113)] = 369117, + [SMALL_STATE(8114)] = 369145, + [SMALL_STATE(8115)] = 369175, + [SMALL_STATE(8116)] = 369201, + [SMALL_STATE(8117)] = 369235, + [SMALL_STATE(8118)] = 369261, + [SMALL_STATE(8119)] = 369299, + [SMALL_STATE(8120)] = 369325, + [SMALL_STATE(8121)] = 369367, + [SMALL_STATE(8122)] = 369401, + [SMALL_STATE(8123)] = 369435, + [SMALL_STATE(8124)] = 369465, + [SMALL_STATE(8125)] = 369499, + [SMALL_STATE(8126)] = 369528, + [SMALL_STATE(8127)] = 369557, + [SMALL_STATE(8128)] = 369584, + [SMALL_STATE(8129)] = 369613, + [SMALL_STATE(8130)] = 369642, + [SMALL_STATE(8131)] = 369671, + [SMALL_STATE(8132)] = 369698, + [SMALL_STATE(8133)] = 369733, + [SMALL_STATE(8134)] = 369762, + [SMALL_STATE(8135)] = 369791, + [SMALL_STATE(8136)] = 369822, + [SMALL_STATE(8137)] = 369847, + [SMALL_STATE(8138)] = 369882, + [SMALL_STATE(8139)] = 369909, + [SMALL_STATE(8140)] = 369938, + [SMALL_STATE(8141)] = 369973, + [SMALL_STATE(8142)] = 370002, + [SMALL_STATE(8143)] = 370031, + [SMALL_STATE(8144)] = 370062, + [SMALL_STATE(8145)] = 370097, + [SMALL_STATE(8146)] = 370125, + [SMALL_STATE(8147)] = 370153, + [SMALL_STATE(8148)] = 370181, + [SMALL_STATE(8149)] = 370213, + [SMALL_STATE(8150)] = 370241, + [SMALL_STATE(8151)] = 370269, + [SMALL_STATE(8152)] = 370297, + [SMALL_STATE(8153)] = 370325, + [SMALL_STATE(8154)] = 370349, + [SMALL_STATE(8155)] = 370375, + [SMALL_STATE(8156)] = 370401, + [SMALL_STATE(8157)] = 370425, + [SMALL_STATE(8158)] = 370449, + [SMALL_STATE(8159)] = 370481, + [SMALL_STATE(8160)] = 370517, + [SMALL_STATE(8161)] = 370549, + [SMALL_STATE(8162)] = 370585, + [SMALL_STATE(8163)] = 370613, + [SMALL_STATE(8164)] = 370645, + [SMALL_STATE(8165)] = 370669, + [SMALL_STATE(8166)] = 370693, + [SMALL_STATE(8167)] = 370721, + [SMALL_STATE(8168)] = 370747, + [SMALL_STATE(8169)] = 370783, + [SMALL_STATE(8170)] = 370819, + [SMALL_STATE(8171)] = 370851, + [SMALL_STATE(8172)] = 370877, + [SMALL_STATE(8173)] = 370913, + [SMALL_STATE(8174)] = 370949, + [SMALL_STATE(8175)] = 370977, + [SMALL_STATE(8176)] = 371015, + [SMALL_STATE(8177)] = 371039, + [SMALL_STATE(8178)] = 371071, + [SMALL_STATE(8179)] = 371107, + [SMALL_STATE(8180)] = 371135, + [SMALL_STATE(8181)] = 371161, + [SMALL_STATE(8182)] = 371189, + [SMALL_STATE(8183)] = 371217, + [SMALL_STATE(8184)] = 371240, + [SMALL_STATE(8185)] = 371263, + [SMALL_STATE(8186)] = 371298, + [SMALL_STATE(8187)] = 371321, + [SMALL_STATE(8188)] = 371344, + [SMALL_STATE(8189)] = 371367, + [SMALL_STATE(8190)] = 371394, + [SMALL_STATE(8191)] = 371417, + [SMALL_STATE(8192)] = 371440, + [SMALL_STATE(8193)] = 371465, + [SMALL_STATE(8194)] = 371490, + [SMALL_STATE(8195)] = 371513, + [SMALL_STATE(8196)] = 371536, + [SMALL_STATE(8197)] = 371559, + [SMALL_STATE(8198)] = 371582, + [SMALL_STATE(8199)] = 371605, + [SMALL_STATE(8200)] = 371628, + [SMALL_STATE(8201)] = 371651, + [SMALL_STATE(8202)] = 371674, + [SMALL_STATE(8203)] = 371715, + [SMALL_STATE(8204)] = 371738, + [SMALL_STATE(8205)] = 371761, + [SMALL_STATE(8206)] = 371786, + [SMALL_STATE(8207)] = 371817, + [SMALL_STATE(8208)] = 371840, + [SMALL_STATE(8209)] = 371863, + [SMALL_STATE(8210)] = 371886, + [SMALL_STATE(8211)] = 371909, + [SMALL_STATE(8212)] = 371932, + [SMALL_STATE(8213)] = 371955, + [SMALL_STATE(8214)] = 371978, + [SMALL_STATE(8215)] = 372001, + [SMALL_STATE(8216)] = 372024, + [SMALL_STATE(8217)] = 372047, + [SMALL_STATE(8218)] = 372070, + [SMALL_STATE(8219)] = 372097, + [SMALL_STATE(8220)] = 372122, + [SMALL_STATE(8221)] = 372145, + [SMALL_STATE(8222)] = 372172, + [SMALL_STATE(8223)] = 372195, + [SMALL_STATE(8224)] = 372230, + [SMALL_STATE(8225)] = 372253, + [SMALL_STATE(8226)] = 372280, + [SMALL_STATE(8227)] = 372303, + [SMALL_STATE(8228)] = 372326, + [SMALL_STATE(8229)] = 372349, + [SMALL_STATE(8230)] = 372372, + [SMALL_STATE(8231)] = 372395, + [SMALL_STATE(8232)] = 372418, + [SMALL_STATE(8233)] = 372441, + [SMALL_STATE(8234)] = 372464, + [SMALL_STATE(8235)] = 372487, + [SMALL_STATE(8236)] = 372510, + [SMALL_STATE(8237)] = 372533, + [SMALL_STATE(8238)] = 372556, + [SMALL_STATE(8239)] = 372579, + [SMALL_STATE(8240)] = 372602, + [SMALL_STATE(8241)] = 372625, + [SMALL_STATE(8242)] = 372660, + [SMALL_STATE(8243)] = 372683, + [SMALL_STATE(8244)] = 372706, + [SMALL_STATE(8245)] = 372741, + [SMALL_STATE(8246)] = 372776, + [SMALL_STATE(8247)] = 372799, + [SMALL_STATE(8248)] = 372822, + [SMALL_STATE(8249)] = 372845, + [SMALL_STATE(8250)] = 372868, + [SMALL_STATE(8251)] = 372895, + [SMALL_STATE(8252)] = 372920, + [SMALL_STATE(8253)] = 372943, + [SMALL_STATE(8254)] = 372966, + [SMALL_STATE(8255)] = 372989, + [SMALL_STATE(8256)] = 373024, + [SMALL_STATE(8257)] = 373059, + [SMALL_STATE(8258)] = 373082, + [SMALL_STATE(8259)] = 373105, + [SMALL_STATE(8260)] = 373128, + [SMALL_STATE(8261)] = 373151, + [SMALL_STATE(8262)] = 373174, + [SMALL_STATE(8263)] = 373197, + [SMALL_STATE(8264)] = 373220, + [SMALL_STATE(8265)] = 373243, + [SMALL_STATE(8266)] = 373266, + [SMALL_STATE(8267)] = 373293, + [SMALL_STATE(8268)] = 373316, + [SMALL_STATE(8269)] = 373339, + [SMALL_STATE(8270)] = 373362, + [SMALL_STATE(8271)] = 373385, + [SMALL_STATE(8272)] = 373408, + [SMALL_STATE(8273)] = 373431, + [SMALL_STATE(8274)] = 373454, + [SMALL_STATE(8275)] = 373477, + [SMALL_STATE(8276)] = 373500, + [SMALL_STATE(8277)] = 373523, + [SMALL_STATE(8278)] = 373546, + [SMALL_STATE(8279)] = 373581, + [SMALL_STATE(8280)] = 373604, + [SMALL_STATE(8281)] = 373627, + [SMALL_STATE(8282)] = 373662, + [SMALL_STATE(8283)] = 373685, + [SMALL_STATE(8284)] = 373720, + [SMALL_STATE(8285)] = 373755, + [SMALL_STATE(8286)] = 373780, + [SMALL_STATE(8287)] = 373805, + [SMALL_STATE(8288)] = 373830, + [SMALL_STATE(8289)] = 373865, + [SMALL_STATE(8290)] = 373888, + [SMALL_STATE(8291)] = 373923, + [SMALL_STATE(8292)] = 373946, + [SMALL_STATE(8293)] = 373969, + [SMALL_STATE(8294)] = 374004, + [SMALL_STATE(8295)] = 374027, + [SMALL_STATE(8296)] = 374050, + [SMALL_STATE(8297)] = 374073, + [SMALL_STATE(8298)] = 374096, + [SMALL_STATE(8299)] = 374119, + [SMALL_STATE(8300)] = 374144, + [SMALL_STATE(8301)] = 374167, + [SMALL_STATE(8302)] = 374190, + [SMALL_STATE(8303)] = 374213, + [SMALL_STATE(8304)] = 374236, + [SMALL_STATE(8305)] = 374259, + [SMALL_STATE(8306)] = 374282, + [SMALL_STATE(8307)] = 374305, + [SMALL_STATE(8308)] = 374340, + [SMALL_STATE(8309)] = 374363, + [SMALL_STATE(8310)] = 374386, + [SMALL_STATE(8311)] = 374409, + [SMALL_STATE(8312)] = 374432, + [SMALL_STATE(8313)] = 374455, + [SMALL_STATE(8314)] = 374478, + [SMALL_STATE(8315)] = 374501, + [SMALL_STATE(8316)] = 374524, + [SMALL_STATE(8317)] = 374565, + [SMALL_STATE(8318)] = 374588, + [SMALL_STATE(8319)] = 374629, + [SMALL_STATE(8320)] = 374654, + [SMALL_STATE(8321)] = 374679, + [SMALL_STATE(8322)] = 374702, + [SMALL_STATE(8323)] = 374725, + [SMALL_STATE(8324)] = 374748, + [SMALL_STATE(8325)] = 374771, + [SMALL_STATE(8326)] = 374802, + [SMALL_STATE(8327)] = 374825, + [SMALL_STATE(8328)] = 374848, + [SMALL_STATE(8329)] = 374883, + [SMALL_STATE(8330)] = 374906, + [SMALL_STATE(8331)] = 374929, + [SMALL_STATE(8332)] = 374952, + [SMALL_STATE(8333)] = 374975, + [SMALL_STATE(8334)] = 374998, + [SMALL_STATE(8335)] = 375021, + [SMALL_STATE(8336)] = 375044, + [SMALL_STATE(8337)] = 375067, + [SMALL_STATE(8338)] = 375090, + [SMALL_STATE(8339)] = 375113, + [SMALL_STATE(8340)] = 375136, + [SMALL_STATE(8341)] = 375159, + [SMALL_STATE(8342)] = 375182, + [SMALL_STATE(8343)] = 375217, + [SMALL_STATE(8344)] = 375240, + [SMALL_STATE(8345)] = 375263, + [SMALL_STATE(8346)] = 375286, + [SMALL_STATE(8347)] = 375309, + [SMALL_STATE(8348)] = 375334, + [SMALL_STATE(8349)] = 375357, + [SMALL_STATE(8350)] = 375380, + [SMALL_STATE(8351)] = 375403, + [SMALL_STATE(8352)] = 375426, + [SMALL_STATE(8353)] = 375449, + [SMALL_STATE(8354)] = 375484, + [SMALL_STATE(8355)] = 375507, + [SMALL_STATE(8356)] = 375530, + [SMALL_STATE(8357)] = 375553, + [SMALL_STATE(8358)] = 375576, + [SMALL_STATE(8359)] = 375599, + [SMALL_STATE(8360)] = 375622, + [SMALL_STATE(8361)] = 375645, + [SMALL_STATE(8362)] = 375668, + [SMALL_STATE(8363)] = 375691, + [SMALL_STATE(8364)] = 375726, + [SMALL_STATE(8365)] = 375761, + [SMALL_STATE(8366)] = 375795, + [SMALL_STATE(8367)] = 375817, + [SMALL_STATE(8368)] = 375839, + [SMALL_STATE(8369)] = 375861, + [SMALL_STATE(8370)] = 375883, + [SMALL_STATE(8371)] = 375917, + [SMALL_STATE(8372)] = 375939, + [SMALL_STATE(8373)] = 375973, + [SMALL_STATE(8374)] = 376007, + [SMALL_STATE(8375)] = 376029, + [SMALL_STATE(8376)] = 376051, + [SMALL_STATE(8377)] = 376073, + [SMALL_STATE(8378)] = 376095, + [SMALL_STATE(8379)] = 376129, + [SMALL_STATE(8380)] = 376151, + [SMALL_STATE(8381)] = 376173, + [SMALL_STATE(8382)] = 376195, + [SMALL_STATE(8383)] = 376229, + [SMALL_STATE(8384)] = 376251, + [SMALL_STATE(8385)] = 376285, + [SMALL_STATE(8386)] = 376307, + [SMALL_STATE(8387)] = 376341, + [SMALL_STATE(8388)] = 376363, + [SMALL_STATE(8389)] = 376397, + [SMALL_STATE(8390)] = 376431, + [SMALL_STATE(8391)] = 376453, + [SMALL_STATE(8392)] = 376487, + [SMALL_STATE(8393)] = 376521, + [SMALL_STATE(8394)] = 376555, + [SMALL_STATE(8395)] = 376589, + [SMALL_STATE(8396)] = 376623, + [SMALL_STATE(8397)] = 376657, + [SMALL_STATE(8398)] = 376693, + [SMALL_STATE(8399)] = 376727, + [SMALL_STATE(8400)] = 376749, + [SMALL_STATE(8401)] = 376783, + [SMALL_STATE(8402)] = 376817, + [SMALL_STATE(8403)] = 376851, + [SMALL_STATE(8404)] = 376873, + [SMALL_STATE(8405)] = 376895, + [SMALL_STATE(8406)] = 376929, + [SMALL_STATE(8407)] = 376951, + [SMALL_STATE(8408)] = 376973, + [SMALL_STATE(8409)] = 376995, + [SMALL_STATE(8410)] = 377029, + [SMALL_STATE(8411)] = 377063, + [SMALL_STATE(8412)] = 377097, + [SMALL_STATE(8413)] = 377131, + [SMALL_STATE(8414)] = 377153, + [SMALL_STATE(8415)] = 377187, + [SMALL_STATE(8416)] = 377209, + [SMALL_STATE(8417)] = 377243, + [SMALL_STATE(8418)] = 377277, + [SMALL_STATE(8419)] = 377299, + [SMALL_STATE(8420)] = 377321, + [SMALL_STATE(8421)] = 377355, + [SMALL_STATE(8422)] = 377391, + [SMALL_STATE(8423)] = 377425, + [SMALL_STATE(8424)] = 377459, + [SMALL_STATE(8425)] = 377493, + [SMALL_STATE(8426)] = 377527, + [SMALL_STATE(8427)] = 377561, + [SMALL_STATE(8428)] = 377595, + [SMALL_STATE(8429)] = 377617, + [SMALL_STATE(8430)] = 377651, + [SMALL_STATE(8431)] = 377673, + [SMALL_STATE(8432)] = 377707, + [SMALL_STATE(8433)] = 377729, + [SMALL_STATE(8434)] = 377763, + [SMALL_STATE(8435)] = 377785, + [SMALL_STATE(8436)] = 377807, + [SMALL_STATE(8437)] = 377829, + [SMALL_STATE(8438)] = 377851, + [SMALL_STATE(8439)] = 377877, + [SMALL_STATE(8440)] = 377901, + [SMALL_STATE(8441)] = 377935, + [SMALL_STATE(8442)] = 377957, + [SMALL_STATE(8443)] = 377991, + [SMALL_STATE(8444)] = 378015, + [SMALL_STATE(8445)] = 378049, + [SMALL_STATE(8446)] = 378083, + [SMALL_STATE(8447)] = 378117, + [SMALL_STATE(8448)] = 378153, + [SMALL_STATE(8449)] = 378175, + [SMALL_STATE(8450)] = 378209, + [SMALL_STATE(8451)] = 378243, + [SMALL_STATE(8452)] = 378279, + [SMALL_STATE(8453)] = 378313, + [SMALL_STATE(8454)] = 378335, + [SMALL_STATE(8455)] = 378371, + [SMALL_STATE(8456)] = 378397, + [SMALL_STATE(8457)] = 378421, + [SMALL_STATE(8458)] = 378455, + [SMALL_STATE(8459)] = 378489, + [SMALL_STATE(8460)] = 378523, + [SMALL_STATE(8461)] = 378557, + [SMALL_STATE(8462)] = 378581, + [SMALL_STATE(8463)] = 378615, + [SMALL_STATE(8464)] = 378651, + [SMALL_STATE(8465)] = 378687, + [SMALL_STATE(8466)] = 378721, + [SMALL_STATE(8467)] = 378757, + [SMALL_STATE(8468)] = 378783, + [SMALL_STATE(8469)] = 378809, + [SMALL_STATE(8470)] = 378835, + [SMALL_STATE(8471)] = 378869, + [SMALL_STATE(8472)] = 378905, + [SMALL_STATE(8473)] = 378941, + [SMALL_STATE(8474)] = 378975, + [SMALL_STATE(8475)] = 378997, + [SMALL_STATE(8476)] = 379033, + [SMALL_STATE(8477)] = 379055, + [SMALL_STATE(8478)] = 379077, + [SMALL_STATE(8479)] = 379099, + [SMALL_STATE(8480)] = 379135, + [SMALL_STATE(8481)] = 379169, + [SMALL_STATE(8482)] = 379191, + [SMALL_STATE(8483)] = 379227, + [SMALL_STATE(8484)] = 379261, + [SMALL_STATE(8485)] = 379295, + [SMALL_STATE(8486)] = 379331, + [SMALL_STATE(8487)] = 379365, + [SMALL_STATE(8488)] = 379391, + [SMALL_STATE(8489)] = 379427, + [SMALL_STATE(8490)] = 379449, + [SMALL_STATE(8491)] = 379483, + [SMALL_STATE(8492)] = 379517, + [SMALL_STATE(8493)] = 379551, + [SMALL_STATE(8494)] = 379585, + [SMALL_STATE(8495)] = 379607, + [SMALL_STATE(8496)] = 379633, + [SMALL_STATE(8497)] = 379659, + [SMALL_STATE(8498)] = 379693, + [SMALL_STATE(8499)] = 379719, + [SMALL_STATE(8500)] = 379753, + [SMALL_STATE(8501)] = 379787, + [SMALL_STATE(8502)] = 379813, + [SMALL_STATE(8503)] = 379839, + [SMALL_STATE(8504)] = 379873, + [SMALL_STATE(8505)] = 379907, + [SMALL_STATE(8506)] = 379933, + [SMALL_STATE(8507)] = 379967, + [SMALL_STATE(8508)] = 379993, + [SMALL_STATE(8509)] = 380027, + [SMALL_STATE(8510)] = 380061, + [SMALL_STATE(8511)] = 380095, + [SMALL_STATE(8512)] = 380129, + [SMALL_STATE(8513)] = 380157, + [SMALL_STATE(8514)] = 380191, + [SMALL_STATE(8515)] = 380225, + [SMALL_STATE(8516)] = 380247, + [SMALL_STATE(8517)] = 380269, + [SMALL_STATE(8518)] = 380303, + [SMALL_STATE(8519)] = 380337, + [SMALL_STATE(8520)] = 380371, + [SMALL_STATE(8521)] = 380405, + [SMALL_STATE(8522)] = 380439, + [SMALL_STATE(8523)] = 380473, + [SMALL_STATE(8524)] = 380495, + [SMALL_STATE(8525)] = 380517, + [SMALL_STATE(8526)] = 380551, + [SMALL_STATE(8527)] = 380573, + [SMALL_STATE(8528)] = 380607, + [SMALL_STATE(8529)] = 380641, + [SMALL_STATE(8530)] = 380663, + [SMALL_STATE(8531)] = 380697, + [SMALL_STATE(8532)] = 380731, + [SMALL_STATE(8533)] = 380765, + [SMALL_STATE(8534)] = 380787, + [SMALL_STATE(8535)] = 380809, + [SMALL_STATE(8536)] = 380843, + [SMALL_STATE(8537)] = 380878, + [SMALL_STATE(8538)] = 380913, + [SMALL_STATE(8539)] = 380948, + [SMALL_STATE(8540)] = 380969, + [SMALL_STATE(8541)] = 381000, + [SMALL_STATE(8542)] = 381021, + [SMALL_STATE(8543)] = 381042, + [SMALL_STATE(8544)] = 381077, + [SMALL_STATE(8545)] = 381108, + [SMALL_STATE(8546)] = 381143, + [SMALL_STATE(8547)] = 381164, + [SMALL_STATE(8548)] = 381197, + [SMALL_STATE(8549)] = 381232, + [SMALL_STATE(8550)] = 381267, + [SMALL_STATE(8551)] = 381288, + [SMALL_STATE(8552)] = 381323, + [SMALL_STATE(8553)] = 381358, + [SMALL_STATE(8554)] = 381393, + [SMALL_STATE(8555)] = 381428, + [SMALL_STATE(8556)] = 381451, + [SMALL_STATE(8557)] = 381486, + [SMALL_STATE(8558)] = 381519, + [SMALL_STATE(8559)] = 381540, + [SMALL_STATE(8560)] = 381575, + [SMALL_STATE(8561)] = 381610, + [SMALL_STATE(8562)] = 381645, + [SMALL_STATE(8563)] = 381680, + [SMALL_STATE(8564)] = 381715, + [SMALL_STATE(8565)] = 381736, + [SMALL_STATE(8566)] = 381771, + [SMALL_STATE(8567)] = 381804, + [SMALL_STATE(8568)] = 381837, + [SMALL_STATE(8569)] = 381858, + [SMALL_STATE(8570)] = 381879, + [SMALL_STATE(8571)] = 381900, + [SMALL_STATE(8572)] = 381933, + [SMALL_STATE(8573)] = 381954, + [SMALL_STATE(8574)] = 381977, + [SMALL_STATE(8575)] = 382012, + [SMALL_STATE(8576)] = 382045, + [SMALL_STATE(8577)] = 382066, + [SMALL_STATE(8578)] = 382087, + [SMALL_STATE(8579)] = 382108, + [SMALL_STATE(8580)] = 382143, + [SMALL_STATE(8581)] = 382178, + [SMALL_STATE(8582)] = 382211, + [SMALL_STATE(8583)] = 382246, + [SMALL_STATE(8584)] = 382267, + [SMALL_STATE(8585)] = 382302, + [SMALL_STATE(8586)] = 382337, + [SMALL_STATE(8587)] = 382372, + [SMALL_STATE(8588)] = 382393, + [SMALL_STATE(8589)] = 382414, + [SMALL_STATE(8590)] = 382435, + [SMALL_STATE(8591)] = 382456, + [SMALL_STATE(8592)] = 382477, + [SMALL_STATE(8593)] = 382498, + [SMALL_STATE(8594)] = 382531, + [SMALL_STATE(8595)] = 382566, + [SMALL_STATE(8596)] = 382601, + [SMALL_STATE(8597)] = 382636, + [SMALL_STATE(8598)] = 382659, + [SMALL_STATE(8599)] = 382680, + [SMALL_STATE(8600)] = 382715, + [SMALL_STATE(8601)] = 382750, + [SMALL_STATE(8602)] = 382771, + [SMALL_STATE(8603)] = 382792, + [SMALL_STATE(8604)] = 382813, + [SMALL_STATE(8605)] = 382842, + [SMALL_STATE(8606)] = 382863, + [SMALL_STATE(8607)] = 382898, + [SMALL_STATE(8608)] = 382919, + [SMALL_STATE(8609)] = 382954, + [SMALL_STATE(8610)] = 382975, + [SMALL_STATE(8611)] = 382996, + [SMALL_STATE(8612)] = 383031, + [SMALL_STATE(8613)] = 383062, + [SMALL_STATE(8614)] = 383093, + [SMALL_STATE(8615)] = 383126, + [SMALL_STATE(8616)] = 383147, + [SMALL_STATE(8617)] = 383182, + [SMALL_STATE(8618)] = 383217, + [SMALL_STATE(8619)] = 383238, + [SMALL_STATE(8620)] = 383273, + [SMALL_STATE(8621)] = 383308, + [SMALL_STATE(8622)] = 383343, + [SMALL_STATE(8623)] = 383378, + [SMALL_STATE(8624)] = 383413, + [SMALL_STATE(8625)] = 383434, + [SMALL_STATE(8626)] = 383455, + [SMALL_STATE(8627)] = 383476, + [SMALL_STATE(8628)] = 383511, + [SMALL_STATE(8629)] = 383544, + [SMALL_STATE(8630)] = 383575, + [SMALL_STATE(8631)] = 383610, + [SMALL_STATE(8632)] = 383637, + [SMALL_STATE(8633)] = 383672, + [SMALL_STATE(8634)] = 383707, + [SMALL_STATE(8635)] = 383728, + [SMALL_STATE(8636)] = 383763, + [SMALL_STATE(8637)] = 383798, + [SMALL_STATE(8638)] = 383831, + [SMALL_STATE(8639)] = 383852, + [SMALL_STATE(8640)] = 383883, + [SMALL_STATE(8641)] = 383904, + [SMALL_STATE(8642)] = 383939, + [SMALL_STATE(8643)] = 383974, + [SMALL_STATE(8644)] = 384009, + [SMALL_STATE(8645)] = 384044, + [SMALL_STATE(8646)] = 384079, + [SMALL_STATE(8647)] = 384114, + [SMALL_STATE(8648)] = 384135, + [SMALL_STATE(8649)] = 384166, + [SMALL_STATE(8650)] = 384187, + [SMALL_STATE(8651)] = 384222, + [SMALL_STATE(8652)] = 384243, + [SMALL_STATE(8653)] = 384274, + [SMALL_STATE(8654)] = 384309, + [SMALL_STATE(8655)] = 384344, + [SMALL_STATE(8656)] = 384365, + [SMALL_STATE(8657)] = 384398, + [SMALL_STATE(8658)] = 384419, + [SMALL_STATE(8659)] = 384454, + [SMALL_STATE(8660)] = 384489, + [SMALL_STATE(8661)] = 384510, + [SMALL_STATE(8662)] = 384545, + [SMALL_STATE(8663)] = 384580, + [SMALL_STATE(8664)] = 384601, + [SMALL_STATE(8665)] = 384622, + [SMALL_STATE(8666)] = 384653, + [SMALL_STATE(8667)] = 384674, + [SMALL_STATE(8668)] = 384695, + [SMALL_STATE(8669)] = 384730, + [SMALL_STATE(8670)] = 384751, + [SMALL_STATE(8671)] = 384786, + [SMALL_STATE(8672)] = 384821, + [SMALL_STATE(8673)] = 384842, + [SMALL_STATE(8674)] = 384875, + [SMALL_STATE(8675)] = 384906, + [SMALL_STATE(8676)] = 384941, + [SMALL_STATE(8677)] = 384972, + [SMALL_STATE(8678)] = 384993, + [SMALL_STATE(8679)] = 385024, + [SMALL_STATE(8680)] = 385055, + [SMALL_STATE(8681)] = 385076, + [SMALL_STATE(8682)] = 385109, + [SMALL_STATE(8683)] = 385140, + [SMALL_STATE(8684)] = 385175, + [SMALL_STATE(8685)] = 385210, + [SMALL_STATE(8686)] = 385245, + [SMALL_STATE(8687)] = 385280, + [SMALL_STATE(8688)] = 385311, + [SMALL_STATE(8689)] = 385332, + [SMALL_STATE(8690)] = 385353, + [SMALL_STATE(8691)] = 385388, + [SMALL_STATE(8692)] = 385423, + [SMALL_STATE(8693)] = 385444, + [SMALL_STATE(8694)] = 385479, + [SMALL_STATE(8695)] = 385514, + [SMALL_STATE(8696)] = 385545, + [SMALL_STATE(8697)] = 385580, + [SMALL_STATE(8698)] = 385615, + [SMALL_STATE(8699)] = 385640, + [SMALL_STATE(8700)] = 385675, + [SMALL_STATE(8701)] = 385710, + [SMALL_STATE(8702)] = 385731, + [SMALL_STATE(8703)] = 385766, + [SMALL_STATE(8704)] = 385797, + [SMALL_STATE(8705)] = 385818, + [SMALL_STATE(8706)] = 385839, + [SMALL_STATE(8707)] = 385874, + [SMALL_STATE(8708)] = 385909, + [SMALL_STATE(8709)] = 385930, + [SMALL_STATE(8710)] = 385951, + [SMALL_STATE(8711)] = 385984, + [SMALL_STATE(8712)] = 386015, + [SMALL_STATE(8713)] = 386036, + [SMALL_STATE(8714)] = 386067, + [SMALL_STATE(8715)] = 386100, + [SMALL_STATE(8716)] = 386123, + [SMALL_STATE(8717)] = 386158, + [SMALL_STATE(8718)] = 386189, + [SMALL_STATE(8719)] = 386224, + [SMALL_STATE(8720)] = 386259, + [SMALL_STATE(8721)] = 386294, + [SMALL_STATE(8722)] = 386329, + [SMALL_STATE(8723)] = 386364, + [SMALL_STATE(8724)] = 386399, + [SMALL_STATE(8725)] = 386434, + [SMALL_STATE(8726)] = 386469, + [SMALL_STATE(8727)] = 386504, + [SMALL_STATE(8728)] = 386535, + [SMALL_STATE(8729)] = 386570, + [SMALL_STATE(8730)] = 386605, + [SMALL_STATE(8731)] = 386626, + [SMALL_STATE(8732)] = 386661, + [SMALL_STATE(8733)] = 386692, + [SMALL_STATE(8734)] = 386727, + [SMALL_STATE(8735)] = 386762, + [SMALL_STATE(8736)] = 386797, + [SMALL_STATE(8737)] = 386830, + [SMALL_STATE(8738)] = 386865, + [SMALL_STATE(8739)] = 386900, + [SMALL_STATE(8740)] = 386935, + [SMALL_STATE(8741)] = 386966, + [SMALL_STATE(8742)] = 387001, + [SMALL_STATE(8743)] = 387034, + [SMALL_STATE(8744)] = 387055, + [SMALL_STATE(8745)] = 387090, + [SMALL_STATE(8746)] = 387121, + [SMALL_STATE(8747)] = 387156, + [SMALL_STATE(8748)] = 387191, + [SMALL_STATE(8749)] = 387226, + [SMALL_STATE(8750)] = 387261, + [SMALL_STATE(8751)] = 387296, + [SMALL_STATE(8752)] = 387331, + [SMALL_STATE(8753)] = 387362, + [SMALL_STATE(8754)] = 387397, + [SMALL_STATE(8755)] = 387432, + [SMALL_STATE(8756)] = 387463, + [SMALL_STATE(8757)] = 387496, + [SMALL_STATE(8758)] = 387531, + [SMALL_STATE(8759)] = 387566, + [SMALL_STATE(8760)] = 387587, + [SMALL_STATE(8761)] = 387618, + [SMALL_STATE(8762)] = 387653, + [SMALL_STATE(8763)] = 387674, + [SMALL_STATE(8764)] = 387695, + [SMALL_STATE(8765)] = 387716, + [SMALL_STATE(8766)] = 387737, + [SMALL_STATE(8767)] = 387770, + [SMALL_STATE(8768)] = 387801, + [SMALL_STATE(8769)] = 387822, + [SMALL_STATE(8770)] = 387857, + [SMALL_STATE(8771)] = 387892, + [SMALL_STATE(8772)] = 387927, + [SMALL_STATE(8773)] = 387962, + [SMALL_STATE(8774)] = 387997, + [SMALL_STATE(8775)] = 388028, + [SMALL_STATE(8776)] = 388063, + [SMALL_STATE(8777)] = 388084, + [SMALL_STATE(8778)] = 388115, + [SMALL_STATE(8779)] = 388136, + [SMALL_STATE(8780)] = 388171, + [SMALL_STATE(8781)] = 388206, + [SMALL_STATE(8782)] = 388227, + [SMALL_STATE(8783)] = 388248, + [SMALL_STATE(8784)] = 388279, + [SMALL_STATE(8785)] = 388300, + [SMALL_STATE(8786)] = 388321, + [SMALL_STATE(8787)] = 388342, + [SMALL_STATE(8788)] = 388375, + [SMALL_STATE(8789)] = 388410, + [SMALL_STATE(8790)] = 388441, + [SMALL_STATE(8791)] = 388476, + [SMALL_STATE(8792)] = 388511, + [SMALL_STATE(8793)] = 388532, + [SMALL_STATE(8794)] = 388563, + [SMALL_STATE(8795)] = 388584, + [SMALL_STATE(8796)] = 388605, + [SMALL_STATE(8797)] = 388636, + [SMALL_STATE(8798)] = 388671, + [SMALL_STATE(8799)] = 388696, + [SMALL_STATE(8800)] = 388731, + [SMALL_STATE(8801)] = 388762, + [SMALL_STATE(8802)] = 388783, + [SMALL_STATE(8803)] = 388814, + [SMALL_STATE(8804)] = 388847, + [SMALL_STATE(8805)] = 388878, + [SMALL_STATE(8806)] = 388899, + [SMALL_STATE(8807)] = 388934, + [SMALL_STATE(8808)] = 388965, + [SMALL_STATE(8809)] = 388986, + [SMALL_STATE(8810)] = 389007, + [SMALL_STATE(8811)] = 389038, + [SMALL_STATE(8812)] = 389059, + [SMALL_STATE(8813)] = 389090, + [SMALL_STATE(8814)] = 389125, + [SMALL_STATE(8815)] = 389146, + [SMALL_STATE(8816)] = 389181, + [SMALL_STATE(8817)] = 389216, + [SMALL_STATE(8818)] = 389237, + [SMALL_STATE(8819)] = 389258, + [SMALL_STATE(8820)] = 389293, + [SMALL_STATE(8821)] = 389324, + [SMALL_STATE(8822)] = 389345, + [SMALL_STATE(8823)] = 389366, + [SMALL_STATE(8824)] = 389401, + [SMALL_STATE(8825)] = 389436, + [SMALL_STATE(8826)] = 389471, + [SMALL_STATE(8827)] = 389492, + [SMALL_STATE(8828)] = 389527, + [SMALL_STATE(8829)] = 389562, + [SMALL_STATE(8830)] = 389597, + [SMALL_STATE(8831)] = 389618, + [SMALL_STATE(8832)] = 389639, + [SMALL_STATE(8833)] = 389660, + [SMALL_STATE(8834)] = 389695, + [SMALL_STATE(8835)] = 389716, + [SMALL_STATE(8836)] = 389737, + [SMALL_STATE(8837)] = 389770, + [SMALL_STATE(8838)] = 389791, + [SMALL_STATE(8839)] = 389826, + [SMALL_STATE(8840)] = 389861, + [SMALL_STATE(8841)] = 389882, + [SMALL_STATE(8842)] = 389903, + [SMALL_STATE(8843)] = 389924, + [SMALL_STATE(8844)] = 389957, + [SMALL_STATE(8845)] = 389978, + [SMALL_STATE(8846)] = 390013, + [SMALL_STATE(8847)] = 390034, + [SMALL_STATE(8848)] = 390055, + [SMALL_STATE(8849)] = 390090, + [SMALL_STATE(8850)] = 390125, + [SMALL_STATE(8851)] = 390160, + [SMALL_STATE(8852)] = 390195, + [SMALL_STATE(8853)] = 390216, + [SMALL_STATE(8854)] = 390237, + [SMALL_STATE(8855)] = 390258, + [SMALL_STATE(8856)] = 390279, + [SMALL_STATE(8857)] = 390314, + [SMALL_STATE(8858)] = 390335, + [SMALL_STATE(8859)] = 390370, + [SMALL_STATE(8860)] = 390405, + [SMALL_STATE(8861)] = 390440, + [SMALL_STATE(8862)] = 390475, + [SMALL_STATE(8863)] = 390510, + [SMALL_STATE(8864)] = 390531, + [SMALL_STATE(8865)] = 390552, + [SMALL_STATE(8866)] = 390573, + [SMALL_STATE(8867)] = 390598, + [SMALL_STATE(8868)] = 390633, + [SMALL_STATE(8869)] = 390668, + [SMALL_STATE(8870)] = 390703, + [SMALL_STATE(8871)] = 390738, + [SMALL_STATE(8872)] = 390759, + [SMALL_STATE(8873)] = 390794, + [SMALL_STATE(8874)] = 390829, + [SMALL_STATE(8875)] = 390864, + [SMALL_STATE(8876)] = 390899, + [SMALL_STATE(8877)] = 390934, + [SMALL_STATE(8878)] = 390969, + [SMALL_STATE(8879)] = 390990, + [SMALL_STATE(8880)] = 391025, + [SMALL_STATE(8881)] = 391060, + [SMALL_STATE(8882)] = 391095, + [SMALL_STATE(8883)] = 391116, + [SMALL_STATE(8884)] = 391137, + [SMALL_STATE(8885)] = 391172, + [SMALL_STATE(8886)] = 391207, + [SMALL_STATE(8887)] = 391228, + [SMALL_STATE(8888)] = 391263, + [SMALL_STATE(8889)] = 391298, + [SMALL_STATE(8890)] = 391333, + [SMALL_STATE(8891)] = 391368, + [SMALL_STATE(8892)] = 391389, + [SMALL_STATE(8893)] = 391424, + [SMALL_STATE(8894)] = 391447, + [SMALL_STATE(8895)] = 391482, + [SMALL_STATE(8896)] = 391517, + [SMALL_STATE(8897)] = 391538, + [SMALL_STATE(8898)] = 391573, + [SMALL_STATE(8899)] = 391602, + [SMALL_STATE(8900)] = 391637, + [SMALL_STATE(8901)] = 391672, + [SMALL_STATE(8902)] = 391693, + [SMALL_STATE(8903)] = 391726, + [SMALL_STATE(8904)] = 391761, + [SMALL_STATE(8905)] = 391786, + [SMALL_STATE(8906)] = 391819, + [SMALL_STATE(8907)] = 391844, + [SMALL_STATE(8908)] = 391869, + [SMALL_STATE(8909)] = 391904, + [SMALL_STATE(8910)] = 391939, + [SMALL_STATE(8911)] = 391960, + [SMALL_STATE(8912)] = 391993, + [SMALL_STATE(8913)] = 392014, + [SMALL_STATE(8914)] = 392035, + [SMALL_STATE(8915)] = 392070, + [SMALL_STATE(8916)] = 392105, + [SMALL_STATE(8917)] = 392140, + [SMALL_STATE(8918)] = 392173, + [SMALL_STATE(8919)] = 392208, + [SMALL_STATE(8920)] = 392243, + [SMALL_STATE(8921)] = 392278, + [SMALL_STATE(8922)] = 392313, + [SMALL_STATE(8923)] = 392348, + [SMALL_STATE(8924)] = 392383, + [SMALL_STATE(8925)] = 392418, + [SMALL_STATE(8926)] = 392453, + [SMALL_STATE(8927)] = 392488, + [SMALL_STATE(8928)] = 392523, + [SMALL_STATE(8929)] = 392558, + [SMALL_STATE(8930)] = 392593, + [SMALL_STATE(8931)] = 392626, + [SMALL_STATE(8932)] = 392661, + [SMALL_STATE(8933)] = 392696, + [SMALL_STATE(8934)] = 392724, + [SMALL_STATE(8935)] = 392754, + [SMALL_STATE(8936)] = 392786, + [SMALL_STATE(8937)] = 392814, + [SMALL_STATE(8938)] = 392838, + [SMALL_STATE(8939)] = 392860, + [SMALL_STATE(8940)] = 392890, + [SMALL_STATE(8941)] = 392920, + [SMALL_STATE(8942)] = 392950, + [SMALL_STATE(8943)] = 392980, + [SMALL_STATE(8944)] = 393012, + [SMALL_STATE(8945)] = 393040, + [SMALL_STATE(8946)] = 393062, + [SMALL_STATE(8947)] = 393092, + [SMALL_STATE(8948)] = 393122, + [SMALL_STATE(8949)] = 393154, + [SMALL_STATE(8950)] = 393184, + [SMALL_STATE(8951)] = 393204, + [SMALL_STATE(8952)] = 393234, + [SMALL_STATE(8953)] = 393264, + [SMALL_STATE(8954)] = 393294, + [SMALL_STATE(8955)] = 393324, + [SMALL_STATE(8956)] = 393356, + [SMALL_STATE(8957)] = 393386, + [SMALL_STATE(8958)] = 393416, + [SMALL_STATE(8959)] = 393446, + [SMALL_STATE(8960)] = 393476, + [SMALL_STATE(8961)] = 393506, + [SMALL_STATE(8962)] = 393538, + [SMALL_STATE(8963)] = 393568, + [SMALL_STATE(8964)] = 393600, + [SMALL_STATE(8965)] = 393630, + [SMALL_STATE(8966)] = 393660, + [SMALL_STATE(8967)] = 393692, + [SMALL_STATE(8968)] = 393722, + [SMALL_STATE(8969)] = 393752, + [SMALL_STATE(8970)] = 393782, + [SMALL_STATE(8971)] = 393812, + [SMALL_STATE(8972)] = 393844, + [SMALL_STATE(8973)] = 393874, + [SMALL_STATE(8974)] = 393906, + [SMALL_STATE(8975)] = 393938, + [SMALL_STATE(8976)] = 393968, + [SMALL_STATE(8977)] = 393998, + [SMALL_STATE(8978)] = 394028, + [SMALL_STATE(8979)] = 394060, + [SMALL_STATE(8980)] = 394090, + [SMALL_STATE(8981)] = 394122, + [SMALL_STATE(8982)] = 394152, + [SMALL_STATE(8983)] = 394182, + [SMALL_STATE(8984)] = 394214, + [SMALL_STATE(8985)] = 394246, + [SMALL_STATE(8986)] = 394278, + [SMALL_STATE(8987)] = 394306, + [SMALL_STATE(8988)] = 394336, + [SMALL_STATE(8989)] = 394366, + [SMALL_STATE(8990)] = 394396, + [SMALL_STATE(8991)] = 394428, + [SMALL_STATE(8992)] = 394458, + [SMALL_STATE(8993)] = 394488, + [SMALL_STATE(8994)] = 394518, + [SMALL_STATE(8995)] = 394550, + [SMALL_STATE(8996)] = 394580, + [SMALL_STATE(8997)] = 394610, + [SMALL_STATE(8998)] = 394634, + [SMALL_STATE(8999)] = 394664, + [SMALL_STATE(9000)] = 394688, + [SMALL_STATE(9001)] = 394720, + [SMALL_STATE(9002)] = 394752, + [SMALL_STATE(9003)] = 394782, + [SMALL_STATE(9004)] = 394812, + [SMALL_STATE(9005)] = 394842, + [SMALL_STATE(9006)] = 394872, + [SMALL_STATE(9007)] = 394902, + [SMALL_STATE(9008)] = 394934, + [SMALL_STATE(9009)] = 394966, + [SMALL_STATE(9010)] = 394994, + [SMALL_STATE(9011)] = 395024, + [SMALL_STATE(9012)] = 395054, + [SMALL_STATE(9013)] = 395084, + [SMALL_STATE(9014)] = 395114, + [SMALL_STATE(9015)] = 395144, + [SMALL_STATE(9016)] = 395174, + [SMALL_STATE(9017)] = 395204, + [SMALL_STATE(9018)] = 395236, + [SMALL_STATE(9019)] = 395268, + [SMALL_STATE(9020)] = 395300, + [SMALL_STATE(9021)] = 395332, + [SMALL_STATE(9022)] = 395362, + [SMALL_STATE(9023)] = 395392, + [SMALL_STATE(9024)] = 395422, + [SMALL_STATE(9025)] = 395452, + [SMALL_STATE(9026)] = 395482, + [SMALL_STATE(9027)] = 395514, + [SMALL_STATE(9028)] = 395546, + [SMALL_STATE(9029)] = 395578, + [SMALL_STATE(9030)] = 395608, + [SMALL_STATE(9031)] = 395640, + [SMALL_STATE(9032)] = 395666, + [SMALL_STATE(9033)] = 395698, + [SMALL_STATE(9034)] = 395726, + [SMALL_STATE(9035)] = 395756, + [SMALL_STATE(9036)] = 395786, + [SMALL_STATE(9037)] = 395816, + [SMALL_STATE(9038)] = 395848, + [SMALL_STATE(9039)] = 395880, + [SMALL_STATE(9040)] = 395910, + [SMALL_STATE(9041)] = 395940, + [SMALL_STATE(9042)] = 395970, + [SMALL_STATE(9043)] = 396002, + [SMALL_STATE(9044)] = 396034, + [SMALL_STATE(9045)] = 396064, + [SMALL_STATE(9046)] = 396094, + [SMALL_STATE(9047)] = 396124, + [SMALL_STATE(9048)] = 396154, + [SMALL_STATE(9049)] = 396184, + [SMALL_STATE(9050)] = 396216, + [SMALL_STATE(9051)] = 396244, + [SMALL_STATE(9052)] = 396272, + [SMALL_STATE(9053)] = 396304, + [SMALL_STATE(9054)] = 396334, + [SMALL_STATE(9055)] = 396364, + [SMALL_STATE(9056)] = 396396, + [SMALL_STATE(9057)] = 396426, + [SMALL_STATE(9058)] = 396456, + [SMALL_STATE(9059)] = 396486, + [SMALL_STATE(9060)] = 396518, + [SMALL_STATE(9061)] = 396550, + [SMALL_STATE(9062)] = 396576, + [SMALL_STATE(9063)] = 396608, + [SMALL_STATE(9064)] = 396632, + [SMALL_STATE(9065)] = 396662, + [SMALL_STATE(9066)] = 396692, + [SMALL_STATE(9067)] = 396722, + [SMALL_STATE(9068)] = 396754, + [SMALL_STATE(9069)] = 396784, + [SMALL_STATE(9070)] = 396814, + [SMALL_STATE(9071)] = 396836, + [SMALL_STATE(9072)] = 396864, + [SMALL_STATE(9073)] = 396896, + [SMALL_STATE(9074)] = 396926, + [SMALL_STATE(9075)] = 396948, + [SMALL_STATE(9076)] = 396978, + [SMALL_STATE(9077)] = 397008, + [SMALL_STATE(9078)] = 397038, + [SMALL_STATE(9079)] = 397070, + [SMALL_STATE(9080)] = 397102, + [SMALL_STATE(9081)] = 397134, + [SMALL_STATE(9082)] = 397166, + [SMALL_STATE(9083)] = 397196, + [SMALL_STATE(9084)] = 397222, + [SMALL_STATE(9085)] = 397252, + [SMALL_STATE(9086)] = 397282, + [SMALL_STATE(9087)] = 397312, + [SMALL_STATE(9088)] = 397342, + [SMALL_STATE(9089)] = 397372, + [SMALL_STATE(9090)] = 397402, + [SMALL_STATE(9091)] = 397432, + [SMALL_STATE(9092)] = 397462, + [SMALL_STATE(9093)] = 397492, + [SMALL_STATE(9094)] = 397522, + [SMALL_STATE(9095)] = 397552, + [SMALL_STATE(9096)] = 397584, + [SMALL_STATE(9097)] = 397616, + [SMALL_STATE(9098)] = 397648, + [SMALL_STATE(9099)] = 397678, + [SMALL_STATE(9100)] = 397708, + [SMALL_STATE(9101)] = 397738, + [SMALL_STATE(9102)] = 397768, + [SMALL_STATE(9103)] = 397800, + [SMALL_STATE(9104)] = 397830, + [SMALL_STATE(9105)] = 397862, + [SMALL_STATE(9106)] = 397894, + [SMALL_STATE(9107)] = 397926, + [SMALL_STATE(9108)] = 397954, + [SMALL_STATE(9109)] = 397984, + [SMALL_STATE(9110)] = 398012, + [SMALL_STATE(9111)] = 398040, + [SMALL_STATE(9112)] = 398072, + [SMALL_STATE(9113)] = 398100, + [SMALL_STATE(9114)] = 398128, + [SMALL_STATE(9115)] = 398158, + [SMALL_STATE(9116)] = 398186, + [SMALL_STATE(9117)] = 398214, + [SMALL_STATE(9118)] = 398242, + [SMALL_STATE(9119)] = 398270, + [SMALL_STATE(9120)] = 398300, + [SMALL_STATE(9121)] = 398328, + [SMALL_STATE(9122)] = 398356, + [SMALL_STATE(9123)] = 398386, + [SMALL_STATE(9124)] = 398414, + [SMALL_STATE(9125)] = 398442, + [SMALL_STATE(9126)] = 398472, + [SMALL_STATE(9127)] = 398502, + [SMALL_STATE(9128)] = 398532, + [SMALL_STATE(9129)] = 398560, + [SMALL_STATE(9130)] = 398590, + [SMALL_STATE(9131)] = 398618, + [SMALL_STATE(9132)] = 398646, + [SMALL_STATE(9133)] = 398676, + [SMALL_STATE(9134)] = 398704, + [SMALL_STATE(9135)] = 398732, + [SMALL_STATE(9136)] = 398762, + [SMALL_STATE(9137)] = 398790, + [SMALL_STATE(9138)] = 398818, + [SMALL_STATE(9139)] = 398850, + [SMALL_STATE(9140)] = 398878, + [SMALL_STATE(9141)] = 398906, + [SMALL_STATE(9142)] = 398934, + [SMALL_STATE(9143)] = 398962, + [SMALL_STATE(9144)] = 398990, + [SMALL_STATE(9145)] = 399018, + [SMALL_STATE(9146)] = 399046, + [SMALL_STATE(9147)] = 399074, + [SMALL_STATE(9148)] = 399104, + [SMALL_STATE(9149)] = 399136, + [SMALL_STATE(9150)] = 399166, + [SMALL_STATE(9151)] = 399195, + [SMALL_STATE(9152)] = 399226, + [SMALL_STATE(9153)] = 399255, + [SMALL_STATE(9154)] = 399284, + [SMALL_STATE(9155)] = 399315, + [SMALL_STATE(9156)] = 399344, + [SMALL_STATE(9157)] = 399373, + [SMALL_STATE(9158)] = 399400, + [SMALL_STATE(9159)] = 399431, + [SMALL_STATE(9160)] = 399460, + [SMALL_STATE(9161)] = 399489, + [SMALL_STATE(9162)] = 399516, + [SMALL_STATE(9163)] = 399543, + [SMALL_STATE(9164)] = 399572, + [SMALL_STATE(9165)] = 399599, + [SMALL_STATE(9166)] = 399628, + [SMALL_STATE(9167)] = 399655, + [SMALL_STATE(9168)] = 399684, + [SMALL_STATE(9169)] = 399711, + [SMALL_STATE(9170)] = 399740, + [SMALL_STATE(9171)] = 399771, + [SMALL_STATE(9172)] = 399802, + [SMALL_STATE(9173)] = 399833, + [SMALL_STATE(9174)] = 399862, + [SMALL_STATE(9175)] = 399885, + [SMALL_STATE(9176)] = 399914, + [SMALL_STATE(9177)] = 399945, + [SMALL_STATE(9178)] = 399974, + [SMALL_STATE(9179)] = 400003, + [SMALL_STATE(9180)] = 400032, + [SMALL_STATE(9181)] = 400063, + [SMALL_STATE(9182)] = 400090, + [SMALL_STATE(9183)] = 400117, + [SMALL_STATE(9184)] = 400146, + [SMALL_STATE(9185)] = 400175, + [SMALL_STATE(9186)] = 400204, + [SMALL_STATE(9187)] = 400235, + [SMALL_STATE(9188)] = 400262, + [SMALL_STATE(9189)] = 400287, + [SMALL_STATE(9190)] = 400316, + [SMALL_STATE(9191)] = 400345, + [SMALL_STATE(9192)] = 400376, + [SMALL_STATE(9193)] = 400403, + [SMALL_STATE(9194)] = 400422, + [SMALL_STATE(9195)] = 400451, + [SMALL_STATE(9196)] = 400482, + [SMALL_STATE(9197)] = 400501, + [SMALL_STATE(9198)] = 400530, + [SMALL_STATE(9199)] = 400557, + [SMALL_STATE(9200)] = 400588, + [SMALL_STATE(9201)] = 400609, + [SMALL_STATE(9202)] = 400638, + [SMALL_STATE(9203)] = 400667, + [SMALL_STATE(9204)] = 400696, + [SMALL_STATE(9205)] = 400723, + [SMALL_STATE(9206)] = 400750, + [SMALL_STATE(9207)] = 400781, + [SMALL_STATE(9208)] = 400808, + [SMALL_STATE(9209)] = 400837, + [SMALL_STATE(9210)] = 400864, + [SMALL_STATE(9211)] = 400893, + [SMALL_STATE(9212)] = 400924, + [SMALL_STATE(9213)] = 400951, + [SMALL_STATE(9214)] = 400978, + [SMALL_STATE(9215)] = 401009, + [SMALL_STATE(9216)] = 401040, + [SMALL_STATE(9217)] = 401071, + [SMALL_STATE(9218)] = 401102, + [SMALL_STATE(9219)] = 401121, + [SMALL_STATE(9220)] = 401150, + [SMALL_STATE(9221)] = 401177, + [SMALL_STATE(9222)] = 401204, + [SMALL_STATE(9223)] = 401233, + [SMALL_STATE(9224)] = 401264, + [SMALL_STATE(9225)] = 401283, + [SMALL_STATE(9226)] = 401312, + [SMALL_STATE(9227)] = 401341, + [SMALL_STATE(9228)] = 401368, + [SMALL_STATE(9229)] = 401397, + [SMALL_STATE(9230)] = 401420, + [SMALL_STATE(9231)] = 401449, + [SMALL_STATE(9232)] = 401478, + [SMALL_STATE(9233)] = 401509, + [SMALL_STATE(9234)] = 401540, + [SMALL_STATE(9235)] = 401569, + [SMALL_STATE(9236)] = 401600, + [SMALL_STATE(9237)] = 401631, + [SMALL_STATE(9238)] = 401662, + [SMALL_STATE(9239)] = 401689, + [SMALL_STATE(9240)] = 401718, + [SMALL_STATE(9241)] = 401747, + [SMALL_STATE(9242)] = 401778, + [SMALL_STATE(9243)] = 401809, + [SMALL_STATE(9244)] = 401838, + [SMALL_STATE(9245)] = 401867, + [SMALL_STATE(9246)] = 401896, + [SMALL_STATE(9247)] = 401925, + [SMALL_STATE(9248)] = 401956, + [SMALL_STATE(9249)] = 401979, + [SMALL_STATE(9250)] = 401998, + [SMALL_STATE(9251)] = 402025, + [SMALL_STATE(9252)] = 402052, + [SMALL_STATE(9253)] = 402081, + [SMALL_STATE(9254)] = 402112, + [SMALL_STATE(9255)] = 402136, + [SMALL_STATE(9256)] = 402160, + [SMALL_STATE(9257)] = 402184, + [SMALL_STATE(9258)] = 402208, + [SMALL_STATE(9259)] = 402232, + [SMALL_STATE(9260)] = 402254, + [SMALL_STATE(9261)] = 402272, + [SMALL_STATE(9262)] = 402296, + [SMALL_STATE(9263)] = 402314, + [SMALL_STATE(9264)] = 402336, + [SMALL_STATE(9265)] = 402360, + [SMALL_STATE(9266)] = 402382, + [SMALL_STATE(9267)] = 402406, + [SMALL_STATE(9268)] = 402430, + [SMALL_STATE(9269)] = 402450, + [SMALL_STATE(9270)] = 402474, + [SMALL_STATE(9271)] = 402496, + [SMALL_STATE(9272)] = 402520, + [SMALL_STATE(9273)] = 402540, + [SMALL_STATE(9274)] = 402564, + [SMALL_STATE(9275)] = 402588, + [SMALL_STATE(9276)] = 402610, + [SMALL_STATE(9277)] = 402630, + [SMALL_STATE(9278)] = 402652, + [SMALL_STATE(9279)] = 402674, + [SMALL_STATE(9280)] = 402696, + [SMALL_STATE(9281)] = 402718, + [SMALL_STATE(9282)] = 402742, + [SMALL_STATE(9283)] = 402766, + [SMALL_STATE(9284)] = 402788, + [SMALL_STATE(9285)] = 402812, + [SMALL_STATE(9286)] = 402836, + [SMALL_STATE(9287)] = 402860, + [SMALL_STATE(9288)] = 402884, + [SMALL_STATE(9289)] = 402902, + [SMALL_STATE(9290)] = 402926, + [SMALL_STATE(9291)] = 402950, + [SMALL_STATE(9292)] = 402974, + [SMALL_STATE(9293)] = 402998, + [SMALL_STATE(9294)] = 403022, + [SMALL_STATE(9295)] = 403046, + [SMALL_STATE(9296)] = 403070, + [SMALL_STATE(9297)] = 403094, + [SMALL_STATE(9298)] = 403114, + [SMALL_STATE(9299)] = 403138, + [SMALL_STATE(9300)] = 403162, + [SMALL_STATE(9301)] = 403180, + [SMALL_STATE(9302)] = 403198, + [SMALL_STATE(9303)] = 403220, + [SMALL_STATE(9304)] = 403244, + [SMALL_STATE(9305)] = 403266, + [SMALL_STATE(9306)] = 403286, + [SMALL_STATE(9307)] = 403310, + [SMALL_STATE(9308)] = 403332, + [SMALL_STATE(9309)] = 403356, + [SMALL_STATE(9310)] = 403380, + [SMALL_STATE(9311)] = 403404, + [SMALL_STATE(9312)] = 403428, + [SMALL_STATE(9313)] = 403452, + [SMALL_STATE(9314)] = 403472, + [SMALL_STATE(9315)] = 403496, + [SMALL_STATE(9316)] = 403516, + [SMALL_STATE(9317)] = 403536, + [SMALL_STATE(9318)] = 403560, + [SMALL_STATE(9319)] = 403582, + [SMALL_STATE(9320)] = 403606, + [SMALL_STATE(9321)] = 403628, + [SMALL_STATE(9322)] = 403652, + [SMALL_STATE(9323)] = 403676, + [SMALL_STATE(9324)] = 403700, + [SMALL_STATE(9325)] = 403724, + [SMALL_STATE(9326)] = 403748, + [SMALL_STATE(9327)] = 403772, + [SMALL_STATE(9328)] = 403794, + [SMALL_STATE(9329)] = 403818, + [SMALL_STATE(9330)] = 403844, + [SMALL_STATE(9331)] = 403868, + [SMALL_STATE(9332)] = 403890, + [SMALL_STATE(9333)] = 403914, + [SMALL_STATE(9334)] = 403940, + [SMALL_STATE(9335)] = 403964, + [SMALL_STATE(9336)] = 403986, + [SMALL_STATE(9337)] = 404010, + [SMALL_STATE(9338)] = 404034, + [SMALL_STATE(9339)] = 404058, + [SMALL_STATE(9340)] = 404082, + [SMALL_STATE(9341)] = 404106, + [SMALL_STATE(9342)] = 404130, + [SMALL_STATE(9343)] = 404154, + [SMALL_STATE(9344)] = 404178, + [SMALL_STATE(9345)] = 404202, + [SMALL_STATE(9346)] = 404226, + [SMALL_STATE(9347)] = 404250, + [SMALL_STATE(9348)] = 404274, + [SMALL_STATE(9349)] = 404298, + [SMALL_STATE(9350)] = 404320, + [SMALL_STATE(9351)] = 404344, + [SMALL_STATE(9352)] = 404368, + [SMALL_STATE(9353)] = 404392, + [SMALL_STATE(9354)] = 404416, + [SMALL_STATE(9355)] = 404440, + [SMALL_STATE(9356)] = 404464, + [SMALL_STATE(9357)] = 404488, + [SMALL_STATE(9358)] = 404512, + [SMALL_STATE(9359)] = 404536, + [SMALL_STATE(9360)] = 404560, + [SMALL_STATE(9361)] = 404584, + [SMALL_STATE(9362)] = 404608, + [SMALL_STATE(9363)] = 404626, + [SMALL_STATE(9364)] = 404650, + [SMALL_STATE(9365)] = 404670, + [SMALL_STATE(9366)] = 404694, + [SMALL_STATE(9367)] = 404718, + [SMALL_STATE(9368)] = 404742, + [SMALL_STATE(9369)] = 404766, + [SMALL_STATE(9370)] = 404790, + [SMALL_STATE(9371)] = 404814, + [SMALL_STATE(9372)] = 404838, + [SMALL_STATE(9373)] = 404858, + [SMALL_STATE(9374)] = 404882, + [SMALL_STATE(9375)] = 404906, + [SMALL_STATE(9376)] = 404930, + [SMALL_STATE(9377)] = 404954, + [SMALL_STATE(9378)] = 404978, + [SMALL_STATE(9379)] = 405004, + [SMALL_STATE(9380)] = 405028, + [SMALL_STATE(9381)] = 405052, + [SMALL_STATE(9382)] = 405076, + [SMALL_STATE(9383)] = 405100, + [SMALL_STATE(9384)] = 405126, + [SMALL_STATE(9385)] = 405152, + [SMALL_STATE(9386)] = 405178, + [SMALL_STATE(9387)] = 405202, + [SMALL_STATE(9388)] = 405226, + [SMALL_STATE(9389)] = 405250, + [SMALL_STATE(9390)] = 405270, + [SMALL_STATE(9391)] = 405294, + [SMALL_STATE(9392)] = 405318, + [SMALL_STATE(9393)] = 405342, + [SMALL_STATE(9394)] = 405366, + [SMALL_STATE(9395)] = 405389, + [SMALL_STATE(9396)] = 405410, + [SMALL_STATE(9397)] = 405431, + [SMALL_STATE(9398)] = 405454, + [SMALL_STATE(9399)] = 405475, + [SMALL_STATE(9400)] = 405492, + [SMALL_STATE(9401)] = 405513, + [SMALL_STATE(9402)] = 405534, + [SMALL_STATE(9403)] = 405555, + [SMALL_STATE(9404)] = 405576, + [SMALL_STATE(9405)] = 405593, + [SMALL_STATE(9406)] = 405616, + [SMALL_STATE(9407)] = 405639, + [SMALL_STATE(9408)] = 405662, + [SMALL_STATE(9409)] = 405679, + [SMALL_STATE(9410)] = 405702, + [SMALL_STATE(9411)] = 405725, + [SMALL_STATE(9412)] = 405746, + [SMALL_STATE(9413)] = 405769, + [SMALL_STATE(9414)] = 405790, + [SMALL_STATE(9415)] = 405811, + [SMALL_STATE(9416)] = 405832, + [SMALL_STATE(9417)] = 405853, + [SMALL_STATE(9418)] = 405874, + [SMALL_STATE(9419)] = 405895, + [SMALL_STATE(9420)] = 405912, + [SMALL_STATE(9421)] = 405929, + [SMALL_STATE(9422)] = 405946, + [SMALL_STATE(9423)] = 405963, + [SMALL_STATE(9424)] = 405980, + [SMALL_STATE(9425)] = 405997, + [SMALL_STATE(9426)] = 406020, + [SMALL_STATE(9427)] = 406043, + [SMALL_STATE(9428)] = 406062, + [SMALL_STATE(9429)] = 406085, + [SMALL_STATE(9430)] = 406108, + [SMALL_STATE(9431)] = 406131, + [SMALL_STATE(9432)] = 406148, + [SMALL_STATE(9433)] = 406171, + [SMALL_STATE(9434)] = 406194, + [SMALL_STATE(9435)] = 406211, + [SMALL_STATE(9436)] = 406228, + [SMALL_STATE(9437)] = 406249, + [SMALL_STATE(9438)] = 406266, + [SMALL_STATE(9439)] = 406287, + [SMALL_STATE(9440)] = 406310, + [SMALL_STATE(9441)] = 406333, + [SMALL_STATE(9442)] = 406356, + [SMALL_STATE(9443)] = 406379, + [SMALL_STATE(9444)] = 406402, + [SMALL_STATE(9445)] = 406425, + [SMALL_STATE(9446)] = 406448, + [SMALL_STATE(9447)] = 406471, + [SMALL_STATE(9448)] = 406494, + [SMALL_STATE(9449)] = 406515, + [SMALL_STATE(9450)] = 406538, + [SMALL_STATE(9451)] = 406561, + [SMALL_STATE(9452)] = 406584, + [SMALL_STATE(9453)] = 406607, + [SMALL_STATE(9454)] = 406630, + [SMALL_STATE(9455)] = 406653, + [SMALL_STATE(9456)] = 406676, + [SMALL_STATE(9457)] = 406697, + [SMALL_STATE(9458)] = 406720, + [SMALL_STATE(9459)] = 406743, + [SMALL_STATE(9460)] = 406766, + [SMALL_STATE(9461)] = 406789, + [SMALL_STATE(9462)] = 406810, + [SMALL_STATE(9463)] = 406831, + [SMALL_STATE(9464)] = 406854, + [SMALL_STATE(9465)] = 406877, + [SMALL_STATE(9466)] = 406894, + [SMALL_STATE(9467)] = 406911, + [SMALL_STATE(9468)] = 406928, + [SMALL_STATE(9469)] = 406945, + [SMALL_STATE(9470)] = 406962, + [SMALL_STATE(9471)] = 406979, + [SMALL_STATE(9472)] = 407002, + [SMALL_STATE(9473)] = 407025, + [SMALL_STATE(9474)] = 407048, + [SMALL_STATE(9475)] = 407065, + [SMALL_STATE(9476)] = 407088, + [SMALL_STATE(9477)] = 407111, + [SMALL_STATE(9478)] = 407134, + [SMALL_STATE(9479)] = 407157, + [SMALL_STATE(9480)] = 407180, + [SMALL_STATE(9481)] = 407203, + [SMALL_STATE(9482)] = 407226, + [SMALL_STATE(9483)] = 407249, + [SMALL_STATE(9484)] = 407272, + [SMALL_STATE(9485)] = 407295, + [SMALL_STATE(9486)] = 407316, + [SMALL_STATE(9487)] = 407339, + [SMALL_STATE(9488)] = 407360, + [SMALL_STATE(9489)] = 407383, + [SMALL_STATE(9490)] = 407404, + [SMALL_STATE(9491)] = 407427, + [SMALL_STATE(9492)] = 407444, + [SMALL_STATE(9493)] = 407461, + [SMALL_STATE(9494)] = 407478, + [SMALL_STATE(9495)] = 407499, + [SMALL_STATE(9496)] = 407522, + [SMALL_STATE(9497)] = 407545, + [SMALL_STATE(9498)] = 407568, + [SMALL_STATE(9499)] = 407591, + [SMALL_STATE(9500)] = 407608, + [SMALL_STATE(9501)] = 407625, + [SMALL_STATE(9502)] = 407646, + [SMALL_STATE(9503)] = 407669, + [SMALL_STATE(9504)] = 407686, + [SMALL_STATE(9505)] = 407709, + [SMALL_STATE(9506)] = 407726, + [SMALL_STATE(9507)] = 407743, + [SMALL_STATE(9508)] = 407764, + [SMALL_STATE(9509)] = 407785, + [SMALL_STATE(9510)] = 407802, + [SMALL_STATE(9511)] = 407825, + [SMALL_STATE(9512)] = 407848, + [SMALL_STATE(9513)] = 407869, + [SMALL_STATE(9514)] = 407890, + [SMALL_STATE(9515)] = 407911, + [SMALL_STATE(9516)] = 407934, + [SMALL_STATE(9517)] = 407951, + [SMALL_STATE(9518)] = 407968, + [SMALL_STATE(9519)] = 407987, + [SMALL_STATE(9520)] = 408004, + [SMALL_STATE(9521)] = 408025, + [SMALL_STATE(9522)] = 408042, + [SMALL_STATE(9523)] = 408063, + [SMALL_STATE(9524)] = 408086, + [SMALL_STATE(9525)] = 408109, + [SMALL_STATE(9526)] = 408130, + [SMALL_STATE(9527)] = 408147, + [SMALL_STATE(9528)] = 408170, + [SMALL_STATE(9529)] = 408193, + [SMALL_STATE(9530)] = 408216, + [SMALL_STATE(9531)] = 408239, + [SMALL_STATE(9532)] = 408262, + [SMALL_STATE(9533)] = 408285, + [SMALL_STATE(9534)] = 408306, + [SMALL_STATE(9535)] = 408323, + [SMALL_STATE(9536)] = 408340, + [SMALL_STATE(9537)] = 408363, + [SMALL_STATE(9538)] = 408386, + [SMALL_STATE(9539)] = 408409, + [SMALL_STATE(9540)] = 408432, + [SMALL_STATE(9541)] = 408449, + [SMALL_STATE(9542)] = 408466, + [SMALL_STATE(9543)] = 408489, + [SMALL_STATE(9544)] = 408512, + [SMALL_STATE(9545)] = 408529, + [SMALL_STATE(9546)] = 408552, + [SMALL_STATE(9547)] = 408575, + [SMALL_STATE(9548)] = 408598, + [SMALL_STATE(9549)] = 408615, + [SMALL_STATE(9550)] = 408632, + [SMALL_STATE(9551)] = 408649, + [SMALL_STATE(9552)] = 408672, + [SMALL_STATE(9553)] = 408695, + [SMALL_STATE(9554)] = 408712, + [SMALL_STATE(9555)] = 408729, + [SMALL_STATE(9556)] = 408746, + [SMALL_STATE(9557)] = 408769, + [SMALL_STATE(9558)] = 408792, + [SMALL_STATE(9559)] = 408815, + [SMALL_STATE(9560)] = 408838, + [SMALL_STATE(9561)] = 408861, + [SMALL_STATE(9562)] = 408882, + [SMALL_STATE(9563)] = 408899, + [SMALL_STATE(9564)] = 408916, + [SMALL_STATE(9565)] = 408933, + [SMALL_STATE(9566)] = 408950, + [SMALL_STATE(9567)] = 408973, + [SMALL_STATE(9568)] = 408990, + [SMALL_STATE(9569)] = 409007, + [SMALL_STATE(9570)] = 409030, + [SMALL_STATE(9571)] = 409047, + [SMALL_STATE(9572)] = 409064, + [SMALL_STATE(9573)] = 409087, + [SMALL_STATE(9574)] = 409110, + [SMALL_STATE(9575)] = 409127, + [SMALL_STATE(9576)] = 409144, + [SMALL_STATE(9577)] = 409161, + [SMALL_STATE(9578)] = 409184, + [SMALL_STATE(9579)] = 409205, + [SMALL_STATE(9580)] = 409228, + [SMALL_STATE(9581)] = 409251, + [SMALL_STATE(9582)] = 409274, + [SMALL_STATE(9583)] = 409291, + [SMALL_STATE(9584)] = 409314, + [SMALL_STATE(9585)] = 409337, + [SMALL_STATE(9586)] = 409360, + [SMALL_STATE(9587)] = 409383, + [SMALL_STATE(9588)] = 409400, + [SMALL_STATE(9589)] = 409423, + [SMALL_STATE(9590)] = 409440, + [SMALL_STATE(9591)] = 409457, + [SMALL_STATE(9592)] = 409480, + [SMALL_STATE(9593)] = 409501, + [SMALL_STATE(9594)] = 409522, + [SMALL_STATE(9595)] = 409545, + [SMALL_STATE(9596)] = 409568, + [SMALL_STATE(9597)] = 409591, + [SMALL_STATE(9598)] = 409612, + [SMALL_STATE(9599)] = 409635, + [SMALL_STATE(9600)] = 409658, + [SMALL_STATE(9601)] = 409679, + [SMALL_STATE(9602)] = 409702, + [SMALL_STATE(9603)] = 409723, + [SMALL_STATE(9604)] = 409740, + [SMALL_STATE(9605)] = 409763, + [SMALL_STATE(9606)] = 409786, + [SMALL_STATE(9607)] = 409809, + [SMALL_STATE(9608)] = 409832, + [SMALL_STATE(9609)] = 409855, + [SMALL_STATE(9610)] = 409872, + [SMALL_STATE(9611)] = 409895, + [SMALL_STATE(9612)] = 409916, + [SMALL_STATE(9613)] = 409939, + [SMALL_STATE(9614)] = 409962, + [SMALL_STATE(9615)] = 409985, + [SMALL_STATE(9616)] = 410006, + [SMALL_STATE(9617)] = 410029, + [SMALL_STATE(9618)] = 410052, + [SMALL_STATE(9619)] = 410075, + [SMALL_STATE(9620)] = 410098, + [SMALL_STATE(9621)] = 410121, + [SMALL_STATE(9622)] = 410144, + [SMALL_STATE(9623)] = 410167, + [SMALL_STATE(9624)] = 410190, + [SMALL_STATE(9625)] = 410213, + [SMALL_STATE(9626)] = 410236, + [SMALL_STATE(9627)] = 410259, + [SMALL_STATE(9628)] = 410276, + [SMALL_STATE(9629)] = 410299, + [SMALL_STATE(9630)] = 410322, + [SMALL_STATE(9631)] = 410345, + [SMALL_STATE(9632)] = 410368, + [SMALL_STATE(9633)] = 410391, + [SMALL_STATE(9634)] = 410414, + [SMALL_STATE(9635)] = 410437, + [SMALL_STATE(9636)] = 410460, + [SMALL_STATE(9637)] = 410483, + [SMALL_STATE(9638)] = 410506, + [SMALL_STATE(9639)] = 410529, + [SMALL_STATE(9640)] = 410552, + [SMALL_STATE(9641)] = 410575, + [SMALL_STATE(9642)] = 410598, + [SMALL_STATE(9643)] = 410615, + [SMALL_STATE(9644)] = 410638, + [SMALL_STATE(9645)] = 410661, + [SMALL_STATE(9646)] = 410684, + [SMALL_STATE(9647)] = 410707, + [SMALL_STATE(9648)] = 410730, + [SMALL_STATE(9649)] = 410751, + [SMALL_STATE(9650)] = 410774, + [SMALL_STATE(9651)] = 410797, + [SMALL_STATE(9652)] = 410820, + [SMALL_STATE(9653)] = 410843, + [SMALL_STATE(9654)] = 410866, + [SMALL_STATE(9655)] = 410889, + [SMALL_STATE(9656)] = 410912, + [SMALL_STATE(9657)] = 410935, + [SMALL_STATE(9658)] = 410952, + [SMALL_STATE(9659)] = 410973, + [SMALL_STATE(9660)] = 410996, + [SMALL_STATE(9661)] = 411015, + [SMALL_STATE(9662)] = 411036, + [SMALL_STATE(9663)] = 411057, + [SMALL_STATE(9664)] = 411078, + [SMALL_STATE(9665)] = 411101, + [SMALL_STATE(9666)] = 411124, + [SMALL_STATE(9667)] = 411145, + [SMALL_STATE(9668)] = 411168, + [SMALL_STATE(9669)] = 411185, + [SMALL_STATE(9670)] = 411208, + [SMALL_STATE(9671)] = 411231, + [SMALL_STATE(9672)] = 411254, + [SMALL_STATE(9673)] = 411277, + [SMALL_STATE(9674)] = 411298, + [SMALL_STATE(9675)] = 411321, + [SMALL_STATE(9676)] = 411344, + [SMALL_STATE(9677)] = 411361, + [SMALL_STATE(9678)] = 411384, + [SMALL_STATE(9679)] = 411407, + [SMALL_STATE(9680)] = 411430, + [SMALL_STATE(9681)] = 411453, + [SMALL_STATE(9682)] = 411476, + [SMALL_STATE(9683)] = 411499, + [SMALL_STATE(9684)] = 411522, + [SMALL_STATE(9685)] = 411545, + [SMALL_STATE(9686)] = 411566, + [SMALL_STATE(9687)] = 411589, + [SMALL_STATE(9688)] = 411610, + [SMALL_STATE(9689)] = 411633, + [SMALL_STATE(9690)] = 411656, + [SMALL_STATE(9691)] = 411673, + [SMALL_STATE(9692)] = 411696, + [SMALL_STATE(9693)] = 411719, + [SMALL_STATE(9694)] = 411742, + [SMALL_STATE(9695)] = 411765, + [SMALL_STATE(9696)] = 411788, + [SMALL_STATE(9697)] = 411811, + [SMALL_STATE(9698)] = 411834, + [SMALL_STATE(9699)] = 411857, + [SMALL_STATE(9700)] = 411874, + [SMALL_STATE(9701)] = 411897, + [SMALL_STATE(9702)] = 411920, + [SMALL_STATE(9703)] = 411943, + [SMALL_STATE(9704)] = 411966, + [SMALL_STATE(9705)] = 411989, + [SMALL_STATE(9706)] = 412012, + [SMALL_STATE(9707)] = 412035, + [SMALL_STATE(9708)] = 412058, + [SMALL_STATE(9709)] = 412081, + [SMALL_STATE(9710)] = 412104, + [SMALL_STATE(9711)] = 412127, + [SMALL_STATE(9712)] = 412150, + [SMALL_STATE(9713)] = 412173, + [SMALL_STATE(9714)] = 412196, + [SMALL_STATE(9715)] = 412219, + [SMALL_STATE(9716)] = 412242, + [SMALL_STATE(9717)] = 412265, + [SMALL_STATE(9718)] = 412288, + [SMALL_STATE(9719)] = 412311, + [SMALL_STATE(9720)] = 412334, + [SMALL_STATE(9721)] = 412357, + [SMALL_STATE(9722)] = 412380, + [SMALL_STATE(9723)] = 412403, + [SMALL_STATE(9724)] = 412426, + [SMALL_STATE(9725)] = 412449, + [SMALL_STATE(9726)] = 412472, + [SMALL_STATE(9727)] = 412495, + [SMALL_STATE(9728)] = 412518, + [SMALL_STATE(9729)] = 412541, + [SMALL_STATE(9730)] = 412564, + [SMALL_STATE(9731)] = 412587, + [SMALL_STATE(9732)] = 412610, + [SMALL_STATE(9733)] = 412633, + [SMALL_STATE(9734)] = 412656, + [SMALL_STATE(9735)] = 412679, + [SMALL_STATE(9736)] = 412702, + [SMALL_STATE(9737)] = 412723, + [SMALL_STATE(9738)] = 412742, + [SMALL_STATE(9739)] = 412762, + [SMALL_STATE(9740)] = 412782, + [SMALL_STATE(9741)] = 412802, + [SMALL_STATE(9742)] = 412822, + [SMALL_STATE(9743)] = 412842, + [SMALL_STATE(9744)] = 412858, + [SMALL_STATE(9745)] = 412874, + [SMALL_STATE(9746)] = 412890, + [SMALL_STATE(9747)] = 412906, + [SMALL_STATE(9748)] = 412922, + [SMALL_STATE(9749)] = 412938, + [SMALL_STATE(9750)] = 412958, + [SMALL_STATE(9751)] = 412978, + [SMALL_STATE(9752)] = 412998, + [SMALL_STATE(9753)] = 413018, + [SMALL_STATE(9754)] = 413034, + [SMALL_STATE(9755)] = 413050, + [SMALL_STATE(9756)] = 413066, + [SMALL_STATE(9757)] = 413082, + [SMALL_STATE(9758)] = 413098, + [SMALL_STATE(9759)] = 413114, + [SMALL_STATE(9760)] = 413134, + [SMALL_STATE(9761)] = 413154, + [SMALL_STATE(9762)] = 413174, + [SMALL_STATE(9763)] = 413194, + [SMALL_STATE(9764)] = 413214, + [SMALL_STATE(9765)] = 413234, + [SMALL_STATE(9766)] = 413254, + [SMALL_STATE(9767)] = 413274, + [SMALL_STATE(9768)] = 413294, + [SMALL_STATE(9769)] = 413314, + [SMALL_STATE(9770)] = 413330, + [SMALL_STATE(9771)] = 413350, + [SMALL_STATE(9772)] = 413370, + [SMALL_STATE(9773)] = 413390, + [SMALL_STATE(9774)] = 413406, + [SMALL_STATE(9775)] = 413424, + [SMALL_STATE(9776)] = 413444, + [SMALL_STATE(9777)] = 413464, + [SMALL_STATE(9778)] = 413484, + [SMALL_STATE(9779)] = 413504, + [SMALL_STATE(9780)] = 413524, + [SMALL_STATE(9781)] = 413544, + [SMALL_STATE(9782)] = 413560, + [SMALL_STATE(9783)] = 413580, + [SMALL_STATE(9784)] = 413600, + [SMALL_STATE(9785)] = 413616, + [SMALL_STATE(9786)] = 413636, + [SMALL_STATE(9787)] = 413656, + [SMALL_STATE(9788)] = 413676, + [SMALL_STATE(9789)] = 413696, + [SMALL_STATE(9790)] = 413716, + [SMALL_STATE(9791)] = 413736, + [SMALL_STATE(9792)] = 413756, + [SMALL_STATE(9793)] = 413776, + [SMALL_STATE(9794)] = 413796, + [SMALL_STATE(9795)] = 413816, + [SMALL_STATE(9796)] = 413836, + [SMALL_STATE(9797)] = 413856, + [SMALL_STATE(9798)] = 413876, + [SMALL_STATE(9799)] = 413896, + [SMALL_STATE(9800)] = 413916, + [SMALL_STATE(9801)] = 413936, + [SMALL_STATE(9802)] = 413956, + [SMALL_STATE(9803)] = 413976, + [SMALL_STATE(9804)] = 413996, + [SMALL_STATE(9805)] = 414016, + [SMALL_STATE(9806)] = 414036, + [SMALL_STATE(9807)] = 414056, + [SMALL_STATE(9808)] = 414076, + [SMALL_STATE(9809)] = 414096, + [SMALL_STATE(9810)] = 414116, + [SMALL_STATE(9811)] = 414134, + [SMALL_STATE(9812)] = 414154, + [SMALL_STATE(9813)] = 414172, + [SMALL_STATE(9814)] = 414192, + [SMALL_STATE(9815)] = 414212, + [SMALL_STATE(9816)] = 414232, + [SMALL_STATE(9817)] = 414252, + [SMALL_STATE(9818)] = 414272, + [SMALL_STATE(9819)] = 414290, + [SMALL_STATE(9820)] = 414310, + [SMALL_STATE(9821)] = 414330, + [SMALL_STATE(9822)] = 414350, + [SMALL_STATE(9823)] = 414370, + [SMALL_STATE(9824)] = 414390, + [SMALL_STATE(9825)] = 414410, + [SMALL_STATE(9826)] = 414430, + [SMALL_STATE(9827)] = 414450, + [SMALL_STATE(9828)] = 414470, + [SMALL_STATE(9829)] = 414490, + [SMALL_STATE(9830)] = 414510, + [SMALL_STATE(9831)] = 414530, + [SMALL_STATE(9832)] = 414550, + [SMALL_STATE(9833)] = 414570, + [SMALL_STATE(9834)] = 414586, + [SMALL_STATE(9835)] = 414606, + [SMALL_STATE(9836)] = 414626, + [SMALL_STATE(9837)] = 414646, + [SMALL_STATE(9838)] = 414666, + [SMALL_STATE(9839)] = 414682, + [SMALL_STATE(9840)] = 414698, + [SMALL_STATE(9841)] = 414718, + [SMALL_STATE(9842)] = 414738, + [SMALL_STATE(9843)] = 414758, + [SMALL_STATE(9844)] = 414778, + [SMALL_STATE(9845)] = 414798, + [SMALL_STATE(9846)] = 414818, + [SMALL_STATE(9847)] = 414838, + [SMALL_STATE(9848)] = 414854, + [SMALL_STATE(9849)] = 414874, + [SMALL_STATE(9850)] = 414894, + [SMALL_STATE(9851)] = 414914, + [SMALL_STATE(9852)] = 414934, + [SMALL_STATE(9853)] = 414954, + [SMALL_STATE(9854)] = 414974, + [SMALL_STATE(9855)] = 414994, + [SMALL_STATE(9856)] = 415014, + [SMALL_STATE(9857)] = 415032, + [SMALL_STATE(9858)] = 415052, + [SMALL_STATE(9859)] = 415072, + [SMALL_STATE(9860)] = 415092, + [SMALL_STATE(9861)] = 415112, + [SMALL_STATE(9862)] = 415132, + [SMALL_STATE(9863)] = 415152, + [SMALL_STATE(9864)] = 415172, + [SMALL_STATE(9865)] = 415192, + [SMALL_STATE(9866)] = 415212, + [SMALL_STATE(9867)] = 415232, + [SMALL_STATE(9868)] = 415252, + [SMALL_STATE(9869)] = 415272, + [SMALL_STATE(9870)] = 415292, + [SMALL_STATE(9871)] = 415312, + [SMALL_STATE(9872)] = 415332, + [SMALL_STATE(9873)] = 415352, + [SMALL_STATE(9874)] = 415372, + [SMALL_STATE(9875)] = 415392, + [SMALL_STATE(9876)] = 415412, + [SMALL_STATE(9877)] = 415432, + [SMALL_STATE(9878)] = 415452, + [SMALL_STATE(9879)] = 415472, + [SMALL_STATE(9880)] = 415492, + [SMALL_STATE(9881)] = 415512, + [SMALL_STATE(9882)] = 415532, + [SMALL_STATE(9883)] = 415548, + [SMALL_STATE(9884)] = 415568, + [SMALL_STATE(9885)] = 415588, + [SMALL_STATE(9886)] = 415608, + [SMALL_STATE(9887)] = 415628, + [SMALL_STATE(9888)] = 415648, + [SMALL_STATE(9889)] = 415668, + [SMALL_STATE(9890)] = 415688, + [SMALL_STATE(9891)] = 415708, + [SMALL_STATE(9892)] = 415728, + [SMALL_STATE(9893)] = 415748, + [SMALL_STATE(9894)] = 415768, + [SMALL_STATE(9895)] = 415788, + [SMALL_STATE(9896)] = 415808, + [SMALL_STATE(9897)] = 415828, + [SMALL_STATE(9898)] = 415848, + [SMALL_STATE(9899)] = 415868, + [SMALL_STATE(9900)] = 415886, + [SMALL_STATE(9901)] = 415906, + [SMALL_STATE(9902)] = 415926, + [SMALL_STATE(9903)] = 415946, + [SMALL_STATE(9904)] = 415966, + [SMALL_STATE(9905)] = 415984, + [SMALL_STATE(9906)] = 416004, + [SMALL_STATE(9907)] = 416024, + [SMALL_STATE(9908)] = 416044, + [SMALL_STATE(9909)] = 416064, + [SMALL_STATE(9910)] = 416084, + [SMALL_STATE(9911)] = 416104, + [SMALL_STATE(9912)] = 416124, + [SMALL_STATE(9913)] = 416144, + [SMALL_STATE(9914)] = 416164, + [SMALL_STATE(9915)] = 416182, + [SMALL_STATE(9916)] = 416202, + [SMALL_STATE(9917)] = 416222, + [SMALL_STATE(9918)] = 416240, + [SMALL_STATE(9919)] = 416260, + [SMALL_STATE(9920)] = 416280, + [SMALL_STATE(9921)] = 416300, + [SMALL_STATE(9922)] = 416320, + [SMALL_STATE(9923)] = 416340, + [SMALL_STATE(9924)] = 416360, + [SMALL_STATE(9925)] = 416380, + [SMALL_STATE(9926)] = 416400, + [SMALL_STATE(9927)] = 416420, + [SMALL_STATE(9928)] = 416440, + [SMALL_STATE(9929)] = 416460, + [SMALL_STATE(9930)] = 416480, + [SMALL_STATE(9931)] = 416500, + [SMALL_STATE(9932)] = 416520, + [SMALL_STATE(9933)] = 416540, + [SMALL_STATE(9934)] = 416560, + [SMALL_STATE(9935)] = 416580, + [SMALL_STATE(9936)] = 416600, + [SMALL_STATE(9937)] = 416620, + [SMALL_STATE(9938)] = 416640, + [SMALL_STATE(9939)] = 416660, + [SMALL_STATE(9940)] = 416680, + [SMALL_STATE(9941)] = 416700, + [SMALL_STATE(9942)] = 416720, + [SMALL_STATE(9943)] = 416740, + [SMALL_STATE(9944)] = 416760, + [SMALL_STATE(9945)] = 416780, + [SMALL_STATE(9946)] = 416800, + [SMALL_STATE(9947)] = 416820, + [SMALL_STATE(9948)] = 416840, + [SMALL_STATE(9949)] = 416856, + [SMALL_STATE(9950)] = 416876, + [SMALL_STATE(9951)] = 416896, + [SMALL_STATE(9952)] = 416916, + [SMALL_STATE(9953)] = 416932, + [SMALL_STATE(9954)] = 416948, + [SMALL_STATE(9955)] = 416968, + [SMALL_STATE(9956)] = 416988, + [SMALL_STATE(9957)] = 417008, + [SMALL_STATE(9958)] = 417028, + [SMALL_STATE(9959)] = 417048, + [SMALL_STATE(9960)] = 417068, + [SMALL_STATE(9961)] = 417088, + [SMALL_STATE(9962)] = 417108, + [SMALL_STATE(9963)] = 417124, + [SMALL_STATE(9964)] = 417144, + [SMALL_STATE(9965)] = 417164, + [SMALL_STATE(9966)] = 417184, + [SMALL_STATE(9967)] = 417204, + [SMALL_STATE(9968)] = 417224, + [SMALL_STATE(9969)] = 417244, + [SMALL_STATE(9970)] = 417264, + [SMALL_STATE(9971)] = 417284, + [SMALL_STATE(9972)] = 417304, + [SMALL_STATE(9973)] = 417324, + [SMALL_STATE(9974)] = 417344, + [SMALL_STATE(9975)] = 417364, + [SMALL_STATE(9976)] = 417384, + [SMALL_STATE(9977)] = 417404, + [SMALL_STATE(9978)] = 417424, + [SMALL_STATE(9979)] = 417444, + [SMALL_STATE(9980)] = 417464, + [SMALL_STATE(9981)] = 417484, + [SMALL_STATE(9982)] = 417500, + [SMALL_STATE(9983)] = 417520, + [SMALL_STATE(9984)] = 417540, + [SMALL_STATE(9985)] = 417560, + [SMALL_STATE(9986)] = 417580, + [SMALL_STATE(9987)] = 417600, + [SMALL_STATE(9988)] = 417616, + [SMALL_STATE(9989)] = 417636, + [SMALL_STATE(9990)] = 417656, + [SMALL_STATE(9991)] = 417676, + [SMALL_STATE(9992)] = 417696, + [SMALL_STATE(9993)] = 417716, + [SMALL_STATE(9994)] = 417736, + [SMALL_STATE(9995)] = 417756, + [SMALL_STATE(9996)] = 417776, + [SMALL_STATE(9997)] = 417796, + [SMALL_STATE(9998)] = 417816, + [SMALL_STATE(9999)] = 417836, + [SMALL_STATE(10000)] = 417856, + [SMALL_STATE(10001)] = 417876, + [SMALL_STATE(10002)] = 417896, + [SMALL_STATE(10003)] = 417916, + [SMALL_STATE(10004)] = 417936, + [SMALL_STATE(10005)] = 417956, + [SMALL_STATE(10006)] = 417976, + [SMALL_STATE(10007)] = 417996, + [SMALL_STATE(10008)] = 418016, + [SMALL_STATE(10009)] = 418036, + [SMALL_STATE(10010)] = 418056, + [SMALL_STATE(10011)] = 418076, + [SMALL_STATE(10012)] = 418096, + [SMALL_STATE(10013)] = 418116, + [SMALL_STATE(10014)] = 418136, + [SMALL_STATE(10015)] = 418156, + [SMALL_STATE(10016)] = 418174, + [SMALL_STATE(10017)] = 418192, + [SMALL_STATE(10018)] = 418212, + [SMALL_STATE(10019)] = 418232, + [SMALL_STATE(10020)] = 418252, + [SMALL_STATE(10021)] = 418272, + [SMALL_STATE(10022)] = 418292, + [SMALL_STATE(10023)] = 418312, + [SMALL_STATE(10024)] = 418328, + [SMALL_STATE(10025)] = 418348, + [SMALL_STATE(10026)] = 418368, + [SMALL_STATE(10027)] = 418388, + [SMALL_STATE(10028)] = 418408, + [SMALL_STATE(10029)] = 418428, + [SMALL_STATE(10030)] = 418448, + [SMALL_STATE(10031)] = 418466, + [SMALL_STATE(10032)] = 418486, + [SMALL_STATE(10033)] = 418506, + [SMALL_STATE(10034)] = 418526, + [SMALL_STATE(10035)] = 418546, + [SMALL_STATE(10036)] = 418562, + [SMALL_STATE(10037)] = 418582, + [SMALL_STATE(10038)] = 418602, + [SMALL_STATE(10039)] = 418622, + [SMALL_STATE(10040)] = 418642, + [SMALL_STATE(10041)] = 418658, + [SMALL_STATE(10042)] = 418678, + [SMALL_STATE(10043)] = 418698, + [SMALL_STATE(10044)] = 418714, + [SMALL_STATE(10045)] = 418734, + [SMALL_STATE(10046)] = 418754, + [SMALL_STATE(10047)] = 418774, + [SMALL_STATE(10048)] = 418794, + [SMALL_STATE(10049)] = 418814, + [SMALL_STATE(10050)] = 418834, + [SMALL_STATE(10051)] = 418854, + [SMALL_STATE(10052)] = 418874, + [SMALL_STATE(10053)] = 418894, + [SMALL_STATE(10054)] = 418914, + [SMALL_STATE(10055)] = 418934, + [SMALL_STATE(10056)] = 418954, + [SMALL_STATE(10057)] = 418974, + [SMALL_STATE(10058)] = 418994, + [SMALL_STATE(10059)] = 419014, + [SMALL_STATE(10060)] = 419034, + [SMALL_STATE(10061)] = 419054, + [SMALL_STATE(10062)] = 419074, + [SMALL_STATE(10063)] = 419094, + [SMALL_STATE(10064)] = 419114, + [SMALL_STATE(10065)] = 419134, + [SMALL_STATE(10066)] = 419154, + [SMALL_STATE(10067)] = 419174, + [SMALL_STATE(10068)] = 419194, + [SMALL_STATE(10069)] = 419214, + [SMALL_STATE(10070)] = 419234, + [SMALL_STATE(10071)] = 419254, + [SMALL_STATE(10072)] = 419270, + [SMALL_STATE(10073)] = 419290, + [SMALL_STATE(10074)] = 419310, + [SMALL_STATE(10075)] = 419330, + [SMALL_STATE(10076)] = 419348, + [SMALL_STATE(10077)] = 419368, + [SMALL_STATE(10078)] = 419388, + [SMALL_STATE(10079)] = 419408, + [SMALL_STATE(10080)] = 419428, + [SMALL_STATE(10081)] = 419448, + [SMALL_STATE(10082)] = 419468, + [SMALL_STATE(10083)] = 419488, + [SMALL_STATE(10084)] = 419508, + [SMALL_STATE(10085)] = 419528, + [SMALL_STATE(10086)] = 419548, + [SMALL_STATE(10087)] = 419568, + [SMALL_STATE(10088)] = 419588, + [SMALL_STATE(10089)] = 419608, + [SMALL_STATE(10090)] = 419628, + [SMALL_STATE(10091)] = 419648, + [SMALL_STATE(10092)] = 419668, + [SMALL_STATE(10093)] = 419688, + [SMALL_STATE(10094)] = 419708, + [SMALL_STATE(10095)] = 419728, + [SMALL_STATE(10096)] = 419748, + [SMALL_STATE(10097)] = 419768, + [SMALL_STATE(10098)] = 419788, + [SMALL_STATE(10099)] = 419806, + [SMALL_STATE(10100)] = 419826, + [SMALL_STATE(10101)] = 419846, + [SMALL_STATE(10102)] = 419866, + [SMALL_STATE(10103)] = 419886, + [SMALL_STATE(10104)] = 419906, + [SMALL_STATE(10105)] = 419926, + [SMALL_STATE(10106)] = 419946, + [SMALL_STATE(10107)] = 419966, + [SMALL_STATE(10108)] = 419986, + [SMALL_STATE(10109)] = 420006, + [SMALL_STATE(10110)] = 420026, + [SMALL_STATE(10111)] = 420046, + [SMALL_STATE(10112)] = 420066, + [SMALL_STATE(10113)] = 420086, + [SMALL_STATE(10114)] = 420106, + [SMALL_STATE(10115)] = 420126, + [SMALL_STATE(10116)] = 420146, + [SMALL_STATE(10117)] = 420166, + [SMALL_STATE(10118)] = 420186, + [SMALL_STATE(10119)] = 420206, + [SMALL_STATE(10120)] = 420226, + [SMALL_STATE(10121)] = 420246, + [SMALL_STATE(10122)] = 420266, + [SMALL_STATE(10123)] = 420286, + [SMALL_STATE(10124)] = 420306, + [SMALL_STATE(10125)] = 420326, + [SMALL_STATE(10126)] = 420346, + [SMALL_STATE(10127)] = 420366, + [SMALL_STATE(10128)] = 420386, + [SMALL_STATE(10129)] = 420406, + [SMALL_STATE(10130)] = 420426, + [SMALL_STATE(10131)] = 420446, + [SMALL_STATE(10132)] = 420466, + [SMALL_STATE(10133)] = 420486, + [SMALL_STATE(10134)] = 420502, + [SMALL_STATE(10135)] = 420522, + [SMALL_STATE(10136)] = 420542, + [SMALL_STATE(10137)] = 420562, + [SMALL_STATE(10138)] = 420582, + [SMALL_STATE(10139)] = 420602, + [SMALL_STATE(10140)] = 420622, + [SMALL_STATE(10141)] = 420642, + [SMALL_STATE(10142)] = 420662, + [SMALL_STATE(10143)] = 420682, + [SMALL_STATE(10144)] = 420702, + [SMALL_STATE(10145)] = 420722, + [SMALL_STATE(10146)] = 420742, + [SMALL_STATE(10147)] = 420762, + [SMALL_STATE(10148)] = 420782, + [SMALL_STATE(10149)] = 420802, + [SMALL_STATE(10150)] = 420822, + [SMALL_STATE(10151)] = 420842, + [SMALL_STATE(10152)] = 420862, + [SMALL_STATE(10153)] = 420882, + [SMALL_STATE(10154)] = 420898, + [SMALL_STATE(10155)] = 420918, + [SMALL_STATE(10156)] = 420938, + [SMALL_STATE(10157)] = 420958, + [SMALL_STATE(10158)] = 420978, + [SMALL_STATE(10159)] = 420998, + [SMALL_STATE(10160)] = 421018, + [SMALL_STATE(10161)] = 421034, + [SMALL_STATE(10162)] = 421050, + [SMALL_STATE(10163)] = 421070, + [SMALL_STATE(10164)] = 421090, + [SMALL_STATE(10165)] = 421110, + [SMALL_STATE(10166)] = 421126, + [SMALL_STATE(10167)] = 421146, + [SMALL_STATE(10168)] = 421166, + [SMALL_STATE(10169)] = 421186, + [SMALL_STATE(10170)] = 421206, + [SMALL_STATE(10171)] = 421226, + [SMALL_STATE(10172)] = 421246, + [SMALL_STATE(10173)] = 421266, + [SMALL_STATE(10174)] = 421286, + [SMALL_STATE(10175)] = 421306, + [SMALL_STATE(10176)] = 421322, + [SMALL_STATE(10177)] = 421338, + [SMALL_STATE(10178)] = 421358, + [SMALL_STATE(10179)] = 421378, + [SMALL_STATE(10180)] = 421398, + [SMALL_STATE(10181)] = 421418, + [SMALL_STATE(10182)] = 421438, + [SMALL_STATE(10183)] = 421458, + [SMALL_STATE(10184)] = 421478, + [SMALL_STATE(10185)] = 421498, + [SMALL_STATE(10186)] = 421516, + [SMALL_STATE(10187)] = 421536, + [SMALL_STATE(10188)] = 421556, + [SMALL_STATE(10189)] = 421576, + [SMALL_STATE(10190)] = 421596, + [SMALL_STATE(10191)] = 421616, + [SMALL_STATE(10192)] = 421632, + [SMALL_STATE(10193)] = 421652, + [SMALL_STATE(10194)] = 421672, + [SMALL_STATE(10195)] = 421692, + [SMALL_STATE(10196)] = 421712, + [SMALL_STATE(10197)] = 421732, + [SMALL_STATE(10198)] = 421752, + [SMALL_STATE(10199)] = 421772, + [SMALL_STATE(10200)] = 421792, + [SMALL_STATE(10201)] = 421812, + [SMALL_STATE(10202)] = 421832, + [SMALL_STATE(10203)] = 421852, + [SMALL_STATE(10204)] = 421872, + [SMALL_STATE(10205)] = 421892, + [SMALL_STATE(10206)] = 421912, + [SMALL_STATE(10207)] = 421932, + [SMALL_STATE(10208)] = 421950, + [SMALL_STATE(10209)] = 421970, + [SMALL_STATE(10210)] = 421990, + [SMALL_STATE(10211)] = 422010, + [SMALL_STATE(10212)] = 422030, + [SMALL_STATE(10213)] = 422050, + [SMALL_STATE(10214)] = 422070, + [SMALL_STATE(10215)] = 422090, + [SMALL_STATE(10216)] = 422106, + [SMALL_STATE(10217)] = 422126, + [SMALL_STATE(10218)] = 422146, + [SMALL_STATE(10219)] = 422166, + [SMALL_STATE(10220)] = 422186, + [SMALL_STATE(10221)] = 422202, + [SMALL_STATE(10222)] = 422222, + [SMALL_STATE(10223)] = 422242, + [SMALL_STATE(10224)] = 422262, + [SMALL_STATE(10225)] = 422282, + [SMALL_STATE(10226)] = 422302, + [SMALL_STATE(10227)] = 422322, + [SMALL_STATE(10228)] = 422342, + [SMALL_STATE(10229)] = 422362, + [SMALL_STATE(10230)] = 422382, + [SMALL_STATE(10231)] = 422402, + [SMALL_STATE(10232)] = 422422, + [SMALL_STATE(10233)] = 422442, + [SMALL_STATE(10234)] = 422462, + [SMALL_STATE(10235)] = 422482, + [SMALL_STATE(10236)] = 422502, + [SMALL_STATE(10237)] = 422522, + [SMALL_STATE(10238)] = 422542, + [SMALL_STATE(10239)] = 422562, + [SMALL_STATE(10240)] = 422582, + [SMALL_STATE(10241)] = 422602, + [SMALL_STATE(10242)] = 422622, + [SMALL_STATE(10243)] = 422642, + [SMALL_STATE(10244)] = 422662, + [SMALL_STATE(10245)] = 422682, + [SMALL_STATE(10246)] = 422702, + [SMALL_STATE(10247)] = 422722, + [SMALL_STATE(10248)] = 422742, + [SMALL_STATE(10249)] = 422762, + [SMALL_STATE(10250)] = 422782, + [SMALL_STATE(10251)] = 422802, + [SMALL_STATE(10252)] = 422822, + [SMALL_STATE(10253)] = 422842, + [SMALL_STATE(10254)] = 422862, + [SMALL_STATE(10255)] = 422882, + [SMALL_STATE(10256)] = 422902, + [SMALL_STATE(10257)] = 422922, + [SMALL_STATE(10258)] = 422942, + [SMALL_STATE(10259)] = 422958, + [SMALL_STATE(10260)] = 422974, + [SMALL_STATE(10261)] = 422994, + [SMALL_STATE(10262)] = 423014, + [SMALL_STATE(10263)] = 423034, + [SMALL_STATE(10264)] = 423050, + [SMALL_STATE(10265)] = 423070, + [SMALL_STATE(10266)] = 423090, + [SMALL_STATE(10267)] = 423110, + [SMALL_STATE(10268)] = 423130, + [SMALL_STATE(10269)] = 423150, + [SMALL_STATE(10270)] = 423166, + [SMALL_STATE(10271)] = 423186, + [SMALL_STATE(10272)] = 423206, + [SMALL_STATE(10273)] = 423226, + [SMALL_STATE(10274)] = 423242, + [SMALL_STATE(10275)] = 423262, + [SMALL_STATE(10276)] = 423280, + [SMALL_STATE(10277)] = 423300, + [SMALL_STATE(10278)] = 423320, + [SMALL_STATE(10279)] = 423340, + [SMALL_STATE(10280)] = 423360, + [SMALL_STATE(10281)] = 423380, + [SMALL_STATE(10282)] = 423400, + [SMALL_STATE(10283)] = 423420, + [SMALL_STATE(10284)] = 423440, + [SMALL_STATE(10285)] = 423460, + [SMALL_STATE(10286)] = 423480, + [SMALL_STATE(10287)] = 423500, + [SMALL_STATE(10288)] = 423520, + [SMALL_STATE(10289)] = 423540, + [SMALL_STATE(10290)] = 423560, + [SMALL_STATE(10291)] = 423580, + [SMALL_STATE(10292)] = 423600, + [SMALL_STATE(10293)] = 423620, + [SMALL_STATE(10294)] = 423640, + [SMALL_STATE(10295)] = 423660, + [SMALL_STATE(10296)] = 423680, + [SMALL_STATE(10297)] = 423700, + [SMALL_STATE(10298)] = 423720, + [SMALL_STATE(10299)] = 423740, + [SMALL_STATE(10300)] = 423760, + [SMALL_STATE(10301)] = 423780, + [SMALL_STATE(10302)] = 423800, + [SMALL_STATE(10303)] = 423820, + [SMALL_STATE(10304)] = 423836, + [SMALL_STATE(10305)] = 423856, + [SMALL_STATE(10306)] = 423876, + [SMALL_STATE(10307)] = 423896, + [SMALL_STATE(10308)] = 423916, + [SMALL_STATE(10309)] = 423936, + [SMALL_STATE(10310)] = 423956, + [SMALL_STATE(10311)] = 423976, + [SMALL_STATE(10312)] = 423996, + [SMALL_STATE(10313)] = 424016, + [SMALL_STATE(10314)] = 424036, + [SMALL_STATE(10315)] = 424056, + [SMALL_STATE(10316)] = 424076, + [SMALL_STATE(10317)] = 424096, + [SMALL_STATE(10318)] = 424116, + [SMALL_STATE(10319)] = 424136, + [SMALL_STATE(10320)] = 424156, + [SMALL_STATE(10321)] = 424176, + [SMALL_STATE(10322)] = 424196, + [SMALL_STATE(10323)] = 424216, + [SMALL_STATE(10324)] = 424236, + [SMALL_STATE(10325)] = 424256, + [SMALL_STATE(10326)] = 424276, + [SMALL_STATE(10327)] = 424296, + [SMALL_STATE(10328)] = 424316, + [SMALL_STATE(10329)] = 424336, + [SMALL_STATE(10330)] = 424356, + [SMALL_STATE(10331)] = 424376, + [SMALL_STATE(10332)] = 424396, + [SMALL_STATE(10333)] = 424416, + [SMALL_STATE(10334)] = 424436, + [SMALL_STATE(10335)] = 424456, + [SMALL_STATE(10336)] = 424476, + [SMALL_STATE(10337)] = 424496, + [SMALL_STATE(10338)] = 424516, + [SMALL_STATE(10339)] = 424536, + [SMALL_STATE(10340)] = 424556, + [SMALL_STATE(10341)] = 424576, + [SMALL_STATE(10342)] = 424596, + [SMALL_STATE(10343)] = 424614, + [SMALL_STATE(10344)] = 424634, + [SMALL_STATE(10345)] = 424654, + [SMALL_STATE(10346)] = 424674, + [SMALL_STATE(10347)] = 424694, + [SMALL_STATE(10348)] = 424714, + [SMALL_STATE(10349)] = 424734, + [SMALL_STATE(10350)] = 424754, + [SMALL_STATE(10351)] = 424774, + [SMALL_STATE(10352)] = 424794, + [SMALL_STATE(10353)] = 424814, + [SMALL_STATE(10354)] = 424834, + [SMALL_STATE(10355)] = 424854, + [SMALL_STATE(10356)] = 424874, + [SMALL_STATE(10357)] = 424894, + [SMALL_STATE(10358)] = 424912, + [SMALL_STATE(10359)] = 424932, + [SMALL_STATE(10360)] = 424948, + [SMALL_STATE(10361)] = 424968, + [SMALL_STATE(10362)] = 424988, + [SMALL_STATE(10363)] = 425004, + [SMALL_STATE(10364)] = 425024, + [SMALL_STATE(10365)] = 425044, + [SMALL_STATE(10366)] = 425064, + [SMALL_STATE(10367)] = 425084, + [SMALL_STATE(10368)] = 425104, + [SMALL_STATE(10369)] = 425120, + [SMALL_STATE(10370)] = 425140, + [SMALL_STATE(10371)] = 425160, + [SMALL_STATE(10372)] = 425180, + [SMALL_STATE(10373)] = 425200, + [SMALL_STATE(10374)] = 425220, + [SMALL_STATE(10375)] = 425236, + [SMALL_STATE(10376)] = 425256, + [SMALL_STATE(10377)] = 425272, + [SMALL_STATE(10378)] = 425288, + [SMALL_STATE(10379)] = 425304, + [SMALL_STATE(10380)] = 425324, + [SMALL_STATE(10381)] = 425344, + [SMALL_STATE(10382)] = 425364, + [SMALL_STATE(10383)] = 425384, + [SMALL_STATE(10384)] = 425404, + [SMALL_STATE(10385)] = 425424, + [SMALL_STATE(10386)] = 425444, + [SMALL_STATE(10387)] = 425464, + [SMALL_STATE(10388)] = 425484, + [SMALL_STATE(10389)] = 425504, + [SMALL_STATE(10390)] = 425524, + [SMALL_STATE(10391)] = 425544, + [SMALL_STATE(10392)] = 425564, + [SMALL_STATE(10393)] = 425584, + [SMALL_STATE(10394)] = 425604, + [SMALL_STATE(10395)] = 425624, + [SMALL_STATE(10396)] = 425644, + [SMALL_STATE(10397)] = 425664, + [SMALL_STATE(10398)] = 425684, + [SMALL_STATE(10399)] = 425700, + [SMALL_STATE(10400)] = 425720, + [SMALL_STATE(10401)] = 425740, + [SMALL_STATE(10402)] = 425760, + [SMALL_STATE(10403)] = 425780, + [SMALL_STATE(10404)] = 425800, + [SMALL_STATE(10405)] = 425818, + [SMALL_STATE(10406)] = 425834, + [SMALL_STATE(10407)] = 425854, + [SMALL_STATE(10408)] = 425874, + [SMALL_STATE(10409)] = 425894, + [SMALL_STATE(10410)] = 425914, + [SMALL_STATE(10411)] = 425934, + [SMALL_STATE(10412)] = 425954, + [SMALL_STATE(10413)] = 425974, + [SMALL_STATE(10414)] = 425990, + [SMALL_STATE(10415)] = 426006, + [SMALL_STATE(10416)] = 426022, + [SMALL_STATE(10417)] = 426042, + [SMALL_STATE(10418)] = 426062, + [SMALL_STATE(10419)] = 426082, + [SMALL_STATE(10420)] = 426098, + [SMALL_STATE(10421)] = 426118, + [SMALL_STATE(10422)] = 426134, + [SMALL_STATE(10423)] = 426154, + [SMALL_STATE(10424)] = 426174, + [SMALL_STATE(10425)] = 426194, + [SMALL_STATE(10426)] = 426210, + [SMALL_STATE(10427)] = 426226, + [SMALL_STATE(10428)] = 426246, + [SMALL_STATE(10429)] = 426266, + [SMALL_STATE(10430)] = 426286, + [SMALL_STATE(10431)] = 426306, + [SMALL_STATE(10432)] = 426326, + [SMALL_STATE(10433)] = 426346, + [SMALL_STATE(10434)] = 426366, + [SMALL_STATE(10435)] = 426386, + [SMALL_STATE(10436)] = 426402, + [SMALL_STATE(10437)] = 426422, + [SMALL_STATE(10438)] = 426442, + [SMALL_STATE(10439)] = 426462, + [SMALL_STATE(10440)] = 426480, + [SMALL_STATE(10441)] = 426500, + [SMALL_STATE(10442)] = 426520, + [SMALL_STATE(10443)] = 426540, + [SMALL_STATE(10444)] = 426560, + [SMALL_STATE(10445)] = 426576, + [SMALL_STATE(10446)] = 426591, + [SMALL_STATE(10447)] = 426608, + [SMALL_STATE(10448)] = 426625, + [SMALL_STATE(10449)] = 426642, + [SMALL_STATE(10450)] = 426657, + [SMALL_STATE(10451)] = 426674, + [SMALL_STATE(10452)] = 426691, + [SMALL_STATE(10453)] = 426706, + [SMALL_STATE(10454)] = 426721, + [SMALL_STATE(10455)] = 426736, + [SMALL_STATE(10456)] = 426751, + [SMALL_STATE(10457)] = 426766, + [SMALL_STATE(10458)] = 426781, + [SMALL_STATE(10459)] = 426798, + [SMALL_STATE(10460)] = 426813, + [SMALL_STATE(10461)] = 426828, + [SMALL_STATE(10462)] = 426843, + [SMALL_STATE(10463)] = 426858, + [SMALL_STATE(10464)] = 426873, + [SMALL_STATE(10465)] = 426890, + [SMALL_STATE(10466)] = 426907, + [SMALL_STATE(10467)] = 426924, + [SMALL_STATE(10468)] = 426941, + [SMALL_STATE(10469)] = 426958, + [SMALL_STATE(10470)] = 426973, + [SMALL_STATE(10471)] = 426988, + [SMALL_STATE(10472)] = 427005, + [SMALL_STATE(10473)] = 427020, + [SMALL_STATE(10474)] = 427035, + [SMALL_STATE(10475)] = 427050, + [SMALL_STATE(10476)] = 427065, + [SMALL_STATE(10477)] = 427082, + [SMALL_STATE(10478)] = 427097, + [SMALL_STATE(10479)] = 427112, + [SMALL_STATE(10480)] = 427129, + [SMALL_STATE(10481)] = 427146, + [SMALL_STATE(10482)] = 427163, + [SMALL_STATE(10483)] = 427180, + [SMALL_STATE(10484)] = 427197, + [SMALL_STATE(10485)] = 427214, + [SMALL_STATE(10486)] = 427231, + [SMALL_STATE(10487)] = 427246, + [SMALL_STATE(10488)] = 427263, + [SMALL_STATE(10489)] = 427280, + [SMALL_STATE(10490)] = 427297, + [SMALL_STATE(10491)] = 427314, + [SMALL_STATE(10492)] = 427331, + [SMALL_STATE(10493)] = 427348, + [SMALL_STATE(10494)] = 427365, + [SMALL_STATE(10495)] = 427382, + [SMALL_STATE(10496)] = 427399, + [SMALL_STATE(10497)] = 427416, + [SMALL_STATE(10498)] = 427433, + [SMALL_STATE(10499)] = 427450, + [SMALL_STATE(10500)] = 427465, + [SMALL_STATE(10501)] = 427482, + [SMALL_STATE(10502)] = 427497, + [SMALL_STATE(10503)] = 427514, + [SMALL_STATE(10504)] = 427531, + [SMALL_STATE(10505)] = 427548, + [SMALL_STATE(10506)] = 427563, + [SMALL_STATE(10507)] = 427580, + [SMALL_STATE(10508)] = 427597, + [SMALL_STATE(10509)] = 427614, + [SMALL_STATE(10510)] = 427631, + [SMALL_STATE(10511)] = 427648, + [SMALL_STATE(10512)] = 427663, + [SMALL_STATE(10513)] = 427680, + [SMALL_STATE(10514)] = 427697, + [SMALL_STATE(10515)] = 427712, + [SMALL_STATE(10516)] = 427729, + [SMALL_STATE(10517)] = 427746, + [SMALL_STATE(10518)] = 427763, + [SMALL_STATE(10519)] = 427780, + [SMALL_STATE(10520)] = 427797, + [SMALL_STATE(10521)] = 427814, + [SMALL_STATE(10522)] = 427829, + [SMALL_STATE(10523)] = 427846, + [SMALL_STATE(10524)] = 427861, + [SMALL_STATE(10525)] = 427878, + [SMALL_STATE(10526)] = 427893, + [SMALL_STATE(10527)] = 427910, + [SMALL_STATE(10528)] = 427927, + [SMALL_STATE(10529)] = 427944, + [SMALL_STATE(10530)] = 427961, + [SMALL_STATE(10531)] = 427978, + [SMALL_STATE(10532)] = 427993, + [SMALL_STATE(10533)] = 428008, + [SMALL_STATE(10534)] = 428025, + [SMALL_STATE(10535)] = 428042, + [SMALL_STATE(10536)] = 428059, + [SMALL_STATE(10537)] = 428076, + [SMALL_STATE(10538)] = 428093, + [SMALL_STATE(10539)] = 428110, + [SMALL_STATE(10540)] = 428127, + [SMALL_STATE(10541)] = 428144, + [SMALL_STATE(10542)] = 428161, + [SMALL_STATE(10543)] = 428178, + [SMALL_STATE(10544)] = 428193, + [SMALL_STATE(10545)] = 428210, + [SMALL_STATE(10546)] = 428227, + [SMALL_STATE(10547)] = 428244, + [SMALL_STATE(10548)] = 428261, + [SMALL_STATE(10549)] = 428276, + [SMALL_STATE(10550)] = 428293, + [SMALL_STATE(10551)] = 428310, + [SMALL_STATE(10552)] = 428327, + [SMALL_STATE(10553)] = 428344, + [SMALL_STATE(10554)] = 428359, + [SMALL_STATE(10555)] = 428376, + [SMALL_STATE(10556)] = 428393, + [SMALL_STATE(10557)] = 428410, + [SMALL_STATE(10558)] = 428427, + [SMALL_STATE(10559)] = 428444, + [SMALL_STATE(10560)] = 428461, + [SMALL_STATE(10561)] = 428478, + [SMALL_STATE(10562)] = 428495, + [SMALL_STATE(10563)] = 428512, + [SMALL_STATE(10564)] = 428529, + [SMALL_STATE(10565)] = 428546, + [SMALL_STATE(10566)] = 428563, + [SMALL_STATE(10567)] = 428580, + [SMALL_STATE(10568)] = 428597, + [SMALL_STATE(10569)] = 428614, + [SMALL_STATE(10570)] = 428631, + [SMALL_STATE(10571)] = 428648, + [SMALL_STATE(10572)] = 428665, + [SMALL_STATE(10573)] = 428682, + [SMALL_STATE(10574)] = 428699, + [SMALL_STATE(10575)] = 428716, + [SMALL_STATE(10576)] = 428733, + [SMALL_STATE(10577)] = 428750, + [SMALL_STATE(10578)] = 428764, + [SMALL_STATE(10579)] = 428778, + [SMALL_STATE(10580)] = 428792, + [SMALL_STATE(10581)] = 428806, + [SMALL_STATE(10582)] = 428820, + [SMALL_STATE(10583)] = 428834, + [SMALL_STATE(10584)] = 428848, + [SMALL_STATE(10585)] = 428862, + [SMALL_STATE(10586)] = 428876, + [SMALL_STATE(10587)] = 428890, + [SMALL_STATE(10588)] = 428904, + [SMALL_STATE(10589)] = 428918, + [SMALL_STATE(10590)] = 428932, + [SMALL_STATE(10591)] = 428946, + [SMALL_STATE(10592)] = 428960, + [SMALL_STATE(10593)] = 428974, + [SMALL_STATE(10594)] = 428988, + [SMALL_STATE(10595)] = 429002, + [SMALL_STATE(10596)] = 429016, + [SMALL_STATE(10597)] = 429030, + [SMALL_STATE(10598)] = 429044, + [SMALL_STATE(10599)] = 429058, + [SMALL_STATE(10600)] = 429072, + [SMALL_STATE(10601)] = 429086, + [SMALL_STATE(10602)] = 429100, + [SMALL_STATE(10603)] = 429114, + [SMALL_STATE(10604)] = 429128, + [SMALL_STATE(10605)] = 429142, + [SMALL_STATE(10606)] = 429156, + [SMALL_STATE(10607)] = 429170, + [SMALL_STATE(10608)] = 429184, + [SMALL_STATE(10609)] = 429198, + [SMALL_STATE(10610)] = 429212, + [SMALL_STATE(10611)] = 429226, + [SMALL_STATE(10612)] = 429240, + [SMALL_STATE(10613)] = 429254, + [SMALL_STATE(10614)] = 429268, + [SMALL_STATE(10615)] = 429282, + [SMALL_STATE(10616)] = 429296, + [SMALL_STATE(10617)] = 429310, + [SMALL_STATE(10618)] = 429324, + [SMALL_STATE(10619)] = 429338, + [SMALL_STATE(10620)] = 429352, + [SMALL_STATE(10621)] = 429366, + [SMALL_STATE(10622)] = 429380, + [SMALL_STATE(10623)] = 429394, + [SMALL_STATE(10624)] = 429408, + [SMALL_STATE(10625)] = 429422, + [SMALL_STATE(10626)] = 429436, + [SMALL_STATE(10627)] = 429450, + [SMALL_STATE(10628)] = 429464, + [SMALL_STATE(10629)] = 429478, + [SMALL_STATE(10630)] = 429492, + [SMALL_STATE(10631)] = 429506, + [SMALL_STATE(10632)] = 429520, + [SMALL_STATE(10633)] = 429534, + [SMALL_STATE(10634)] = 429548, + [SMALL_STATE(10635)] = 429562, + [SMALL_STATE(10636)] = 429576, + [SMALL_STATE(10637)] = 429590, + [SMALL_STATE(10638)] = 429604, + [SMALL_STATE(10639)] = 429618, + [SMALL_STATE(10640)] = 429632, + [SMALL_STATE(10641)] = 429646, + [SMALL_STATE(10642)] = 429660, + [SMALL_STATE(10643)] = 429674, + [SMALL_STATE(10644)] = 429688, + [SMALL_STATE(10645)] = 429702, + [SMALL_STATE(10646)] = 429716, + [SMALL_STATE(10647)] = 429730, + [SMALL_STATE(10648)] = 429744, + [SMALL_STATE(10649)] = 429758, + [SMALL_STATE(10650)] = 429772, + [SMALL_STATE(10651)] = 429786, + [SMALL_STATE(10652)] = 429800, + [SMALL_STATE(10653)] = 429814, + [SMALL_STATE(10654)] = 429828, + [SMALL_STATE(10655)] = 429842, + [SMALL_STATE(10656)] = 429856, + [SMALL_STATE(10657)] = 429870, + [SMALL_STATE(10658)] = 429886, + [SMALL_STATE(10659)] = 429900, + [SMALL_STATE(10660)] = 429914, + [SMALL_STATE(10661)] = 429928, + [SMALL_STATE(10662)] = 429942, + [SMALL_STATE(10663)] = 429956, + [SMALL_STATE(10664)] = 429970, + [SMALL_STATE(10665)] = 429984, + [SMALL_STATE(10666)] = 429998, + [SMALL_STATE(10667)] = 430012, + [SMALL_STATE(10668)] = 430028, + [SMALL_STATE(10669)] = 430042, + [SMALL_STATE(10670)] = 430056, + [SMALL_STATE(10671)] = 430070, + [SMALL_STATE(10672)] = 430084, + [SMALL_STATE(10673)] = 430098, + [SMALL_STATE(10674)] = 430112, + [SMALL_STATE(10675)] = 430126, + [SMALL_STATE(10676)] = 430140, + [SMALL_STATE(10677)] = 430154, + [SMALL_STATE(10678)] = 430168, + [SMALL_STATE(10679)] = 430182, + [SMALL_STATE(10680)] = 430196, + [SMALL_STATE(10681)] = 430210, + [SMALL_STATE(10682)] = 430224, + [SMALL_STATE(10683)] = 430238, + [SMALL_STATE(10684)] = 430252, + [SMALL_STATE(10685)] = 430266, + [SMALL_STATE(10686)] = 430280, + [SMALL_STATE(10687)] = 430294, + [SMALL_STATE(10688)] = 430308, + [SMALL_STATE(10689)] = 430322, + [SMALL_STATE(10690)] = 430336, + [SMALL_STATE(10691)] = 430350, + [SMALL_STATE(10692)] = 430364, + [SMALL_STATE(10693)] = 430378, + [SMALL_STATE(10694)] = 430392, + [SMALL_STATE(10695)] = 430406, + [SMALL_STATE(10696)] = 430420, + [SMALL_STATE(10697)] = 430434, + [SMALL_STATE(10698)] = 430448, + [SMALL_STATE(10699)] = 430462, + [SMALL_STATE(10700)] = 430476, + [SMALL_STATE(10701)] = 430490, + [SMALL_STATE(10702)] = 430504, + [SMALL_STATE(10703)] = 430518, + [SMALL_STATE(10704)] = 430532, + [SMALL_STATE(10705)] = 430546, + [SMALL_STATE(10706)] = 430560, + [SMALL_STATE(10707)] = 430574, + [SMALL_STATE(10708)] = 430588, + [SMALL_STATE(10709)] = 430602, + [SMALL_STATE(10710)] = 430616, + [SMALL_STATE(10711)] = 430630, + [SMALL_STATE(10712)] = 430644, + [SMALL_STATE(10713)] = 430658, + [SMALL_STATE(10714)] = 430672, + [SMALL_STATE(10715)] = 430686, + [SMALL_STATE(10716)] = 430700, + [SMALL_STATE(10717)] = 430714, + [SMALL_STATE(10718)] = 430728, + [SMALL_STATE(10719)] = 430742, + [SMALL_STATE(10720)] = 430756, + [SMALL_STATE(10721)] = 430770, + [SMALL_STATE(10722)] = 430784, + [SMALL_STATE(10723)] = 430798, + [SMALL_STATE(10724)] = 430812, + [SMALL_STATE(10725)] = 430826, + [SMALL_STATE(10726)] = 430840, + [SMALL_STATE(10727)] = 430854, + [SMALL_STATE(10728)] = 430868, + [SMALL_STATE(10729)] = 430882, + [SMALL_STATE(10730)] = 430896, + [SMALL_STATE(10731)] = 430910, + [SMALL_STATE(10732)] = 430924, + [SMALL_STATE(10733)] = 430938, + [SMALL_STATE(10734)] = 430952, + [SMALL_STATE(10735)] = 430966, + [SMALL_STATE(10736)] = 430982, + [SMALL_STATE(10737)] = 430996, + [SMALL_STATE(10738)] = 431010, + [SMALL_STATE(10739)] = 431024, + [SMALL_STATE(10740)] = 431038, + [SMALL_STATE(10741)] = 431052, + [SMALL_STATE(10742)] = 431066, + [SMALL_STATE(10743)] = 431080, + [SMALL_STATE(10744)] = 431094, + [SMALL_STATE(10745)] = 431108, + [SMALL_STATE(10746)] = 431122, + [SMALL_STATE(10747)] = 431136, + [SMALL_STATE(10748)] = 431150, + [SMALL_STATE(10749)] = 431164, + [SMALL_STATE(10750)] = 431178, + [SMALL_STATE(10751)] = 431192, + [SMALL_STATE(10752)] = 431206, + [SMALL_STATE(10753)] = 431220, + [SMALL_STATE(10754)] = 431234, + [SMALL_STATE(10755)] = 431248, + [SMALL_STATE(10756)] = 431262, + [SMALL_STATE(10757)] = 431276, + [SMALL_STATE(10758)] = 431290, + [SMALL_STATE(10759)] = 431304, + [SMALL_STATE(10760)] = 431318, + [SMALL_STATE(10761)] = 431332, + [SMALL_STATE(10762)] = 431346, + [SMALL_STATE(10763)] = 431360, + [SMALL_STATE(10764)] = 431374, + [SMALL_STATE(10765)] = 431388, + [SMALL_STATE(10766)] = 431402, + [SMALL_STATE(10767)] = 431416, + [SMALL_STATE(10768)] = 431430, + [SMALL_STATE(10769)] = 431444, + [SMALL_STATE(10770)] = 431458, + [SMALL_STATE(10771)] = 431472, + [SMALL_STATE(10772)] = 431486, + [SMALL_STATE(10773)] = 431500, + [SMALL_STATE(10774)] = 431514, + [SMALL_STATE(10775)] = 431528, + [SMALL_STATE(10776)] = 431542, + [SMALL_STATE(10777)] = 431556, + [SMALL_STATE(10778)] = 431570, + [SMALL_STATE(10779)] = 431584, + [SMALL_STATE(10780)] = 431598, + [SMALL_STATE(10781)] = 431612, + [SMALL_STATE(10782)] = 431626, + [SMALL_STATE(10783)] = 431640, + [SMALL_STATE(10784)] = 431654, + [SMALL_STATE(10785)] = 431668, + [SMALL_STATE(10786)] = 431682, + [SMALL_STATE(10787)] = 431696, + [SMALL_STATE(10788)] = 431710, + [SMALL_STATE(10789)] = 431724, + [SMALL_STATE(10790)] = 431738, + [SMALL_STATE(10791)] = 431752, + [SMALL_STATE(10792)] = 431766, + [SMALL_STATE(10793)] = 431780, + [SMALL_STATE(10794)] = 431794, + [SMALL_STATE(10795)] = 431808, + [SMALL_STATE(10796)] = 431822, + [SMALL_STATE(10797)] = 431836, + [SMALL_STATE(10798)] = 431850, + [SMALL_STATE(10799)] = 431864, + [SMALL_STATE(10800)] = 431878, + [SMALL_STATE(10801)] = 431892, + [SMALL_STATE(10802)] = 431906, + [SMALL_STATE(10803)] = 431920, + [SMALL_STATE(10804)] = 431934, + [SMALL_STATE(10805)] = 431948, + [SMALL_STATE(10806)] = 431962, + [SMALL_STATE(10807)] = 431976, + [SMALL_STATE(10808)] = 431990, + [SMALL_STATE(10809)] = 432004, + [SMALL_STATE(10810)] = 432018, + [SMALL_STATE(10811)] = 432032, + [SMALL_STATE(10812)] = 432046, + [SMALL_STATE(10813)] = 432060, + [SMALL_STATE(10814)] = 432076, + [SMALL_STATE(10815)] = 432090, + [SMALL_STATE(10816)] = 432104, + [SMALL_STATE(10817)] = 432118, + [SMALL_STATE(10818)] = 432132, + [SMALL_STATE(10819)] = 432146, + [SMALL_STATE(10820)] = 432160, + [SMALL_STATE(10821)] = 432174, + [SMALL_STATE(10822)] = 432188, + [SMALL_STATE(10823)] = 432202, + [SMALL_STATE(10824)] = 432216, + [SMALL_STATE(10825)] = 432230, + [SMALL_STATE(10826)] = 432244, + [SMALL_STATE(10827)] = 432258, + [SMALL_STATE(10828)] = 432272, + [SMALL_STATE(10829)] = 432286, + [SMALL_STATE(10830)] = 432300, + [SMALL_STATE(10831)] = 432314, + [SMALL_STATE(10832)] = 432328, + [SMALL_STATE(10833)] = 432342, + [SMALL_STATE(10834)] = 432356, + [SMALL_STATE(10835)] = 432370, + [SMALL_STATE(10836)] = 432384, + [SMALL_STATE(10837)] = 432398, + [SMALL_STATE(10838)] = 432412, + [SMALL_STATE(10839)] = 432426, + [SMALL_STATE(10840)] = 432440, + [SMALL_STATE(10841)] = 432454, + [SMALL_STATE(10842)] = 432468, + [SMALL_STATE(10843)] = 432482, + [SMALL_STATE(10844)] = 432496, + [SMALL_STATE(10845)] = 432510, + [SMALL_STATE(10846)] = 432524, + [SMALL_STATE(10847)] = 432538, + [SMALL_STATE(10848)] = 432552, + [SMALL_STATE(10849)] = 432566, + [SMALL_STATE(10850)] = 432580, + [SMALL_STATE(10851)] = 432594, + [SMALL_STATE(10852)] = 432608, + [SMALL_STATE(10853)] = 432622, + [SMALL_STATE(10854)] = 432636, + [SMALL_STATE(10855)] = 432650, + [SMALL_STATE(10856)] = 432666, + [SMALL_STATE(10857)] = 432680, + [SMALL_STATE(10858)] = 432694, + [SMALL_STATE(10859)] = 432708, + [SMALL_STATE(10860)] = 432722, + [SMALL_STATE(10861)] = 432736, + [SMALL_STATE(10862)] = 432750, + [SMALL_STATE(10863)] = 432764, + [SMALL_STATE(10864)] = 432778, + [SMALL_STATE(10865)] = 432792, + [SMALL_STATE(10866)] = 432806, + [SMALL_STATE(10867)] = 432820, + [SMALL_STATE(10868)] = 432834, + [SMALL_STATE(10869)] = 432848, + [SMALL_STATE(10870)] = 432862, + [SMALL_STATE(10871)] = 432876, + [SMALL_STATE(10872)] = 432890, + [SMALL_STATE(10873)] = 432904, + [SMALL_STATE(10874)] = 432918, + [SMALL_STATE(10875)] = 432932, + [SMALL_STATE(10876)] = 432946, + [SMALL_STATE(10877)] = 432960, + [SMALL_STATE(10878)] = 432974, + [SMALL_STATE(10879)] = 432988, + [SMALL_STATE(10880)] = 433002, + [SMALL_STATE(10881)] = 433016, + [SMALL_STATE(10882)] = 433030, + [SMALL_STATE(10883)] = 433044, + [SMALL_STATE(10884)] = 433058, + [SMALL_STATE(10885)] = 433072, + [SMALL_STATE(10886)] = 433086, + [SMALL_STATE(10887)] = 433100, + [SMALL_STATE(10888)] = 433114, + [SMALL_STATE(10889)] = 433128, + [SMALL_STATE(10890)] = 433142, + [SMALL_STATE(10891)] = 433156, + [SMALL_STATE(10892)] = 433170, + [SMALL_STATE(10893)] = 433184, + [SMALL_STATE(10894)] = 433198, + [SMALL_STATE(10895)] = 433212, + [SMALL_STATE(10896)] = 433226, + [SMALL_STATE(10897)] = 433240, + [SMALL_STATE(10898)] = 433254, + [SMALL_STATE(10899)] = 433268, + [SMALL_STATE(10900)] = 433284, + [SMALL_STATE(10901)] = 433298, + [SMALL_STATE(10902)] = 433312, + [SMALL_STATE(10903)] = 433326, + [SMALL_STATE(10904)] = 433340, + [SMALL_STATE(10905)] = 433354, + [SMALL_STATE(10906)] = 433368, + [SMALL_STATE(10907)] = 433382, + [SMALL_STATE(10908)] = 433396, + [SMALL_STATE(10909)] = 433410, + [SMALL_STATE(10910)] = 433424, + [SMALL_STATE(10911)] = 433438, + [SMALL_STATE(10912)] = 433452, + [SMALL_STATE(10913)] = 433466, + [SMALL_STATE(10914)] = 433480, + [SMALL_STATE(10915)] = 433494, + [SMALL_STATE(10916)] = 433508, + [SMALL_STATE(10917)] = 433522, + [SMALL_STATE(10918)] = 433536, + [SMALL_STATE(10919)] = 433550, + [SMALL_STATE(10920)] = 433564, + [SMALL_STATE(10921)] = 433580, + [SMALL_STATE(10922)] = 433594, + [SMALL_STATE(10923)] = 433608, + [SMALL_STATE(10924)] = 433622, + [SMALL_STATE(10925)] = 433636, + [SMALL_STATE(10926)] = 433650, + [SMALL_STATE(10927)] = 433664, + [SMALL_STATE(10928)] = 433678, + [SMALL_STATE(10929)] = 433692, + [SMALL_STATE(10930)] = 433706, + [SMALL_STATE(10931)] = 433720, + [SMALL_STATE(10932)] = 433734, + [SMALL_STATE(10933)] = 433748, + [SMALL_STATE(10934)] = 433762, + [SMALL_STATE(10935)] = 433776, + [SMALL_STATE(10936)] = 433790, + [SMALL_STATE(10937)] = 433804, + [SMALL_STATE(10938)] = 433818, + [SMALL_STATE(10939)] = 433832, + [SMALL_STATE(10940)] = 433846, + [SMALL_STATE(10941)] = 433860, + [SMALL_STATE(10942)] = 433874, + [SMALL_STATE(10943)] = 433888, + [SMALL_STATE(10944)] = 433902, + [SMALL_STATE(10945)] = 433916, + [SMALL_STATE(10946)] = 433930, + [SMALL_STATE(10947)] = 433944, + [SMALL_STATE(10948)] = 433958, + [SMALL_STATE(10949)] = 433972, + [SMALL_STATE(10950)] = 433988, + [SMALL_STATE(10951)] = 434002, + [SMALL_STATE(10952)] = 434016, + [SMALL_STATE(10953)] = 434030, + [SMALL_STATE(10954)] = 434044, + [SMALL_STATE(10955)] = 434058, + [SMALL_STATE(10956)] = 434072, + [SMALL_STATE(10957)] = 434086, + [SMALL_STATE(10958)] = 434100, + [SMALL_STATE(10959)] = 434114, + [SMALL_STATE(10960)] = 434128, + [SMALL_STATE(10961)] = 434142, + [SMALL_STATE(10962)] = 434156, + [SMALL_STATE(10963)] = 434170, + [SMALL_STATE(10964)] = 434184, + [SMALL_STATE(10965)] = 434198, + [SMALL_STATE(10966)] = 434212, + [SMALL_STATE(10967)] = 434226, + [SMALL_STATE(10968)] = 434240, + [SMALL_STATE(10969)] = 434254, + [SMALL_STATE(10970)] = 434268, + [SMALL_STATE(10971)] = 434282, + [SMALL_STATE(10972)] = 434296, + [SMALL_STATE(10973)] = 434310, + [SMALL_STATE(10974)] = 434324, + [SMALL_STATE(10975)] = 434338, + [SMALL_STATE(10976)] = 434352, + [SMALL_STATE(10977)] = 434366, + [SMALL_STATE(10978)] = 434380, + [SMALL_STATE(10979)] = 434394, + [SMALL_STATE(10980)] = 434408, + [SMALL_STATE(10981)] = 434422, + [SMALL_STATE(10982)] = 434436, + [SMALL_STATE(10983)] = 434450, + [SMALL_STATE(10984)] = 434464, + [SMALL_STATE(10985)] = 434478, + [SMALL_STATE(10986)] = 434492, + [SMALL_STATE(10987)] = 434506, + [SMALL_STATE(10988)] = 434520, + [SMALL_STATE(10989)] = 434534, + [SMALL_STATE(10990)] = 434548, + [SMALL_STATE(10991)] = 434562, + [SMALL_STATE(10992)] = 434576, + [SMALL_STATE(10993)] = 434590, + [SMALL_STATE(10994)] = 434604, + [SMALL_STATE(10995)] = 434618, + [SMALL_STATE(10996)] = 434632, + [SMALL_STATE(10997)] = 434646, + [SMALL_STATE(10998)] = 434660, + [SMALL_STATE(10999)] = 434674, + [SMALL_STATE(11000)] = 434688, + [SMALL_STATE(11001)] = 434702, + [SMALL_STATE(11002)] = 434716, + [SMALL_STATE(11003)] = 434730, + [SMALL_STATE(11004)] = 434744, + [SMALL_STATE(11005)] = 434758, + [SMALL_STATE(11006)] = 434772, + [SMALL_STATE(11007)] = 434786, + [SMALL_STATE(11008)] = 434800, + [SMALL_STATE(11009)] = 434814, + [SMALL_STATE(11010)] = 434828, + [SMALL_STATE(11011)] = 434842, + [SMALL_STATE(11012)] = 434856, + [SMALL_STATE(11013)] = 434870, + [SMALL_STATE(11014)] = 434884, + [SMALL_STATE(11015)] = 434898, + [SMALL_STATE(11016)] = 434912, + [SMALL_STATE(11017)] = 434926, + [SMALL_STATE(11018)] = 434940, + [SMALL_STATE(11019)] = 434954, + [SMALL_STATE(11020)] = 434968, + [SMALL_STATE(11021)] = 434982, + [SMALL_STATE(11022)] = 434996, + [SMALL_STATE(11023)] = 435010, + [SMALL_STATE(11024)] = 435026, + [SMALL_STATE(11025)] = 435040, + [SMALL_STATE(11026)] = 435054, + [SMALL_STATE(11027)] = 435068, + [SMALL_STATE(11028)] = 435082, + [SMALL_STATE(11029)] = 435096, + [SMALL_STATE(11030)] = 435110, + [SMALL_STATE(11031)] = 435124, + [SMALL_STATE(11032)] = 435138, + [SMALL_STATE(11033)] = 435152, + [SMALL_STATE(11034)] = 435166, + [SMALL_STATE(11035)] = 435180, + [SMALL_STATE(11036)] = 435194, + [SMALL_STATE(11037)] = 435208, + [SMALL_STATE(11038)] = 435222, + [SMALL_STATE(11039)] = 435236, + [SMALL_STATE(11040)] = 435250, + [SMALL_STATE(11041)] = 435264, + [SMALL_STATE(11042)] = 435278, + [SMALL_STATE(11043)] = 435292, + [SMALL_STATE(11044)] = 435306, + [SMALL_STATE(11045)] = 435320, + [SMALL_STATE(11046)] = 435334, + [SMALL_STATE(11047)] = 435348, + [SMALL_STATE(11048)] = 435362, + [SMALL_STATE(11049)] = 435376, + [SMALL_STATE(11050)] = 435390, + [SMALL_STATE(11051)] = 435404, + [SMALL_STATE(11052)] = 435418, + [SMALL_STATE(11053)] = 435432, + [SMALL_STATE(11054)] = 435446, + [SMALL_STATE(11055)] = 435460, + [SMALL_STATE(11056)] = 435474, + [SMALL_STATE(11057)] = 435488, + [SMALL_STATE(11058)] = 435502, + [SMALL_STATE(11059)] = 435516, + [SMALL_STATE(11060)] = 435530, + [SMALL_STATE(11061)] = 435544, + [SMALL_STATE(11062)] = 435558, + [SMALL_STATE(11063)] = 435572, + [SMALL_STATE(11064)] = 435588, + [SMALL_STATE(11065)] = 435602, + [SMALL_STATE(11066)] = 435616, + [SMALL_STATE(11067)] = 435630, + [SMALL_STATE(11068)] = 435644, + [SMALL_STATE(11069)] = 435658, + [SMALL_STATE(11070)] = 435672, + [SMALL_STATE(11071)] = 435686, + [SMALL_STATE(11072)] = 435700, + [SMALL_STATE(11073)] = 435714, + [SMALL_STATE(11074)] = 435728, + [SMALL_STATE(11075)] = 435742, + [SMALL_STATE(11076)] = 435756, + [SMALL_STATE(11077)] = 435770, + [SMALL_STATE(11078)] = 435784, + [SMALL_STATE(11079)] = 435798, + [SMALL_STATE(11080)] = 435812, + [SMALL_STATE(11081)] = 435826, + [SMALL_STATE(11082)] = 435840, + [SMALL_STATE(11083)] = 435854, + [SMALL_STATE(11084)] = 435868, + [SMALL_STATE(11085)] = 435882, + [SMALL_STATE(11086)] = 435896, + [SMALL_STATE(11087)] = 435910, + [SMALL_STATE(11088)] = 435924, + [SMALL_STATE(11089)] = 435938, + [SMALL_STATE(11090)] = 435952, + [SMALL_STATE(11091)] = 435966, + [SMALL_STATE(11092)] = 435980, + [SMALL_STATE(11093)] = 435994, + [SMALL_STATE(11094)] = 436008, + [SMALL_STATE(11095)] = 436022, + [SMALL_STATE(11096)] = 436036, + [SMALL_STATE(11097)] = 436050, + [SMALL_STATE(11098)] = 436064, + [SMALL_STATE(11099)] = 436078, + [SMALL_STATE(11100)] = 436092, + [SMALL_STATE(11101)] = 436106, + [SMALL_STATE(11102)] = 436120, + [SMALL_STATE(11103)] = 436134, + [SMALL_STATE(11104)] = 436148, + [SMALL_STATE(11105)] = 436162, + [SMALL_STATE(11106)] = 436176, + [SMALL_STATE(11107)] = 436190, + [SMALL_STATE(11108)] = 436204, + [SMALL_STATE(11109)] = 436218, + [SMALL_STATE(11110)] = 436232, + [SMALL_STATE(11111)] = 436246, + [SMALL_STATE(11112)] = 436260, + [SMALL_STATE(11113)] = 436274, + [SMALL_STATE(11114)] = 436288, + [SMALL_STATE(11115)] = 436302, + [SMALL_STATE(11116)] = 436316, + [SMALL_STATE(11117)] = 436330, + [SMALL_STATE(11118)] = 436344, + [SMALL_STATE(11119)] = 436358, + [SMALL_STATE(11120)] = 436372, + [SMALL_STATE(11121)] = 436386, + [SMALL_STATE(11122)] = 436400, + [SMALL_STATE(11123)] = 436414, + [SMALL_STATE(11124)] = 436428, + [SMALL_STATE(11125)] = 436442, + [SMALL_STATE(11126)] = 436456, + [SMALL_STATE(11127)] = 436470, + [SMALL_STATE(11128)] = 436484, + [SMALL_STATE(11129)] = 436498, + [SMALL_STATE(11130)] = 436512, + [SMALL_STATE(11131)] = 436526, + [SMALL_STATE(11132)] = 436540, + [SMALL_STATE(11133)] = 436554, + [SMALL_STATE(11134)] = 436568, + [SMALL_STATE(11135)] = 436582, + [SMALL_STATE(11136)] = 436596, + [SMALL_STATE(11137)] = 436610, + [SMALL_STATE(11138)] = 436624, + [SMALL_STATE(11139)] = 436638, + [SMALL_STATE(11140)] = 436652, + [SMALL_STATE(11141)] = 436666, + [SMALL_STATE(11142)] = 436680, + [SMALL_STATE(11143)] = 436694, + [SMALL_STATE(11144)] = 436708, + [SMALL_STATE(11145)] = 436722, + [SMALL_STATE(11146)] = 436736, + [SMALL_STATE(11147)] = 436750, + [SMALL_STATE(11148)] = 436764, + [SMALL_STATE(11149)] = 436778, + [SMALL_STATE(11150)] = 436792, + [SMALL_STATE(11151)] = 436806, + [SMALL_STATE(11152)] = 436820, + [SMALL_STATE(11153)] = 436834, + [SMALL_STATE(11154)] = 436848, + [SMALL_STATE(11155)] = 436862, + [SMALL_STATE(11156)] = 436876, + [SMALL_STATE(11157)] = 436890, + [SMALL_STATE(11158)] = 436904, + [SMALL_STATE(11159)] = 436918, + [SMALL_STATE(11160)] = 436932, + [SMALL_STATE(11161)] = 436946, + [SMALL_STATE(11162)] = 436960, + [SMALL_STATE(11163)] = 436974, + [SMALL_STATE(11164)] = 436988, + [SMALL_STATE(11165)] = 437002, + [SMALL_STATE(11166)] = 437016, + [SMALL_STATE(11167)] = 437030, + [SMALL_STATE(11168)] = 437044, + [SMALL_STATE(11169)] = 437058, + [SMALL_STATE(11170)] = 437072, + [SMALL_STATE(11171)] = 437086, + [SMALL_STATE(11172)] = 437100, + [SMALL_STATE(11173)] = 437114, + [SMALL_STATE(11174)] = 437128, + [SMALL_STATE(11175)] = 437142, + [SMALL_STATE(11176)] = 437156, + [SMALL_STATE(11177)] = 437170, + [SMALL_STATE(11178)] = 437184, + [SMALL_STATE(11179)] = 437198, + [SMALL_STATE(11180)] = 437212, + [SMALL_STATE(11181)] = 437226, + [SMALL_STATE(11182)] = 437240, + [SMALL_STATE(11183)] = 437254, + [SMALL_STATE(11184)] = 437268, + [SMALL_STATE(11185)] = 437282, + [SMALL_STATE(11186)] = 437296, + [SMALL_STATE(11187)] = 437310, + [SMALL_STATE(11188)] = 437324, + [SMALL_STATE(11189)] = 437338, + [SMALL_STATE(11190)] = 437352, + [SMALL_STATE(11191)] = 437366, + [SMALL_STATE(11192)] = 437380, + [SMALL_STATE(11193)] = 437394, + [SMALL_STATE(11194)] = 437408, + [SMALL_STATE(11195)] = 437422, + [SMALL_STATE(11196)] = 437436, + [SMALL_STATE(11197)] = 437450, + [SMALL_STATE(11198)] = 437464, + [SMALL_STATE(11199)] = 437478, + [SMALL_STATE(11200)] = 437492, + [SMALL_STATE(11201)] = 437506, + [SMALL_STATE(11202)] = 437520, + [SMALL_STATE(11203)] = 437534, + [SMALL_STATE(11204)] = 437548, + [SMALL_STATE(11205)] = 437562, + [SMALL_STATE(11206)] = 437576, + [SMALL_STATE(11207)] = 437590, + [SMALL_STATE(11208)] = 437604, + [SMALL_STATE(11209)] = 437618, + [SMALL_STATE(11210)] = 437632, + [SMALL_STATE(11211)] = 437646, + [SMALL_STATE(11212)] = 437660, + [SMALL_STATE(11213)] = 437674, + [SMALL_STATE(11214)] = 437688, + [SMALL_STATE(11215)] = 437702, + [SMALL_STATE(11216)] = 437716, + [SMALL_STATE(11217)] = 437730, + [SMALL_STATE(11218)] = 437744, + [SMALL_STATE(11219)] = 437758, + [SMALL_STATE(11220)] = 437772, + [SMALL_STATE(11221)] = 437786, + [SMALL_STATE(11222)] = 437800, + [SMALL_STATE(11223)] = 437814, + [SMALL_STATE(11224)] = 437828, + [SMALL_STATE(11225)] = 437842, + [SMALL_STATE(11226)] = 437856, + [SMALL_STATE(11227)] = 437870, + [SMALL_STATE(11228)] = 437884, + [SMALL_STATE(11229)] = 437898, + [SMALL_STATE(11230)] = 437912, + [SMALL_STATE(11231)] = 437926, + [SMALL_STATE(11232)] = 437940, + [SMALL_STATE(11233)] = 437954, + [SMALL_STATE(11234)] = 437968, + [SMALL_STATE(11235)] = 437982, + [SMALL_STATE(11236)] = 437996, + [SMALL_STATE(11237)] = 438010, + [SMALL_STATE(11238)] = 438024, + [SMALL_STATE(11239)] = 438038, + [SMALL_STATE(11240)] = 438052, + [SMALL_STATE(11241)] = 438066, + [SMALL_STATE(11242)] = 438080, + [SMALL_STATE(11243)] = 438094, + [SMALL_STATE(11244)] = 438108, + [SMALL_STATE(11245)] = 438122, + [SMALL_STATE(11246)] = 438136, + [SMALL_STATE(11247)] = 438150, + [SMALL_STATE(11248)] = 438164, + [SMALL_STATE(11249)] = 438178, + [SMALL_STATE(11250)] = 438192, + [SMALL_STATE(11251)] = 438206, + [SMALL_STATE(11252)] = 438220, + [SMALL_STATE(11253)] = 438234, + [SMALL_STATE(11254)] = 438248, + [SMALL_STATE(11255)] = 438262, + [SMALL_STATE(11256)] = 438276, + [SMALL_STATE(11257)] = 438290, + [SMALL_STATE(11258)] = 438304, + [SMALL_STATE(11259)] = 438318, + [SMALL_STATE(11260)] = 438332, + [SMALL_STATE(11261)] = 438346, + [SMALL_STATE(11262)] = 438360, + [SMALL_STATE(11263)] = 438374, + [SMALL_STATE(11264)] = 438388, + [SMALL_STATE(11265)] = 438402, + [SMALL_STATE(11266)] = 438416, + [SMALL_STATE(11267)] = 438430, + [SMALL_STATE(11268)] = 438444, + [SMALL_STATE(11269)] = 438458, + [SMALL_STATE(11270)] = 438472, + [SMALL_STATE(11271)] = 438486, + [SMALL_STATE(11272)] = 438500, + [SMALL_STATE(11273)] = 438514, + [SMALL_STATE(11274)] = 438528, + [SMALL_STATE(11275)] = 438542, + [SMALL_STATE(11276)] = 438556, + [SMALL_STATE(11277)] = 438570, + [SMALL_STATE(11278)] = 438584, + [SMALL_STATE(11279)] = 438598, + [SMALL_STATE(11280)] = 438612, + [SMALL_STATE(11281)] = 438626, + [SMALL_STATE(11282)] = 438640, + [SMALL_STATE(11283)] = 438654, + [SMALL_STATE(11284)] = 438668, + [SMALL_STATE(11285)] = 438682, + [SMALL_STATE(11286)] = 438696, + [SMALL_STATE(11287)] = 438710, + [SMALL_STATE(11288)] = 438724, + [SMALL_STATE(11289)] = 438738, + [SMALL_STATE(11290)] = 438752, + [SMALL_STATE(11291)] = 438766, + [SMALL_STATE(11292)] = 438780, + [SMALL_STATE(11293)] = 438794, + [SMALL_STATE(11294)] = 438808, + [SMALL_STATE(11295)] = 438822, + [SMALL_STATE(11296)] = 438836, + [SMALL_STATE(11297)] = 438850, + [SMALL_STATE(11298)] = 438864, + [SMALL_STATE(11299)] = 438878, + [SMALL_STATE(11300)] = 438892, + [SMALL_STATE(11301)] = 438906, + [SMALL_STATE(11302)] = 438920, + [SMALL_STATE(11303)] = 438934, + [SMALL_STATE(11304)] = 438948, + [SMALL_STATE(11305)] = 438962, + [SMALL_STATE(11306)] = 438976, + [SMALL_STATE(11307)] = 438990, + [SMALL_STATE(11308)] = 439004, + [SMALL_STATE(11309)] = 439018, + [SMALL_STATE(11310)] = 439032, + [SMALL_STATE(11311)] = 439046, + [SMALL_STATE(11312)] = 439060, + [SMALL_STATE(11313)] = 439074, + [SMALL_STATE(11314)] = 439088, + [SMALL_STATE(11315)] = 439102, + [SMALL_STATE(11316)] = 439116, + [SMALL_STATE(11317)] = 439130, + [SMALL_STATE(11318)] = 439144, + [SMALL_STATE(11319)] = 439158, + [SMALL_STATE(11320)] = 439172, + [SMALL_STATE(11321)] = 439186, + [SMALL_STATE(11322)] = 439200, + [SMALL_STATE(11323)] = 439214, + [SMALL_STATE(11324)] = 439228, + [SMALL_STATE(11325)] = 439242, + [SMALL_STATE(11326)] = 439256, + [SMALL_STATE(11327)] = 439270, + [SMALL_STATE(11328)] = 439284, + [SMALL_STATE(11329)] = 439298, + [SMALL_STATE(11330)] = 439312, + [SMALL_STATE(11331)] = 439326, + [SMALL_STATE(11332)] = 439340, + [SMALL_STATE(11333)] = 439354, + [SMALL_STATE(11334)] = 439368, + [SMALL_STATE(11335)] = 439382, + [SMALL_STATE(11336)] = 439396, + [SMALL_STATE(11337)] = 439410, + [SMALL_STATE(11338)] = 439424, + [SMALL_STATE(11339)] = 439438, + [SMALL_STATE(11340)] = 439454, + [SMALL_STATE(11341)] = 439468, + [SMALL_STATE(11342)] = 439482, + [SMALL_STATE(11343)] = 439496, + [SMALL_STATE(11344)] = 439510, + [SMALL_STATE(11345)] = 439524, + [SMALL_STATE(11346)] = 439538, + [SMALL_STATE(11347)] = 439552, + [SMALL_STATE(11348)] = 439566, + [SMALL_STATE(11349)] = 439580, + [SMALL_STATE(11350)] = 439594, + [SMALL_STATE(11351)] = 439608, + [SMALL_STATE(11352)] = 439622, + [SMALL_STATE(11353)] = 439636, + [SMALL_STATE(11354)] = 439650, + [SMALL_STATE(11355)] = 439664, + [SMALL_STATE(11356)] = 439678, + [SMALL_STATE(11357)] = 439692, + [SMALL_STATE(11358)] = 439706, + [SMALL_STATE(11359)] = 439720, + [SMALL_STATE(11360)] = 439734, + [SMALL_STATE(11361)] = 439748, + [SMALL_STATE(11362)] = 439762, + [SMALL_STATE(11363)] = 439776, + [SMALL_STATE(11364)] = 439790, + [SMALL_STATE(11365)] = 439804, + [SMALL_STATE(11366)] = 439818, + [SMALL_STATE(11367)] = 439832, + [SMALL_STATE(11368)] = 439846, + [SMALL_STATE(11369)] = 439860, + [SMALL_STATE(11370)] = 439874, + [SMALL_STATE(11371)] = 439888, + [SMALL_STATE(11372)] = 439902, + [SMALL_STATE(11373)] = 439916, + [SMALL_STATE(11374)] = 439930, + [SMALL_STATE(11375)] = 439944, + [SMALL_STATE(11376)] = 439958, + [SMALL_STATE(11377)] = 439972, + [SMALL_STATE(11378)] = 439986, + [SMALL_STATE(11379)] = 440000, + [SMALL_STATE(11380)] = 440014, + [SMALL_STATE(11381)] = 440028, + [SMALL_STATE(11382)] = 440042, + [SMALL_STATE(11383)] = 440056, + [SMALL_STATE(11384)] = 440070, + [SMALL_STATE(11385)] = 440084, + [SMALL_STATE(11386)] = 440098, + [SMALL_STATE(11387)] = 440112, + [SMALL_STATE(11388)] = 440126, + [SMALL_STATE(11389)] = 440140, + [SMALL_STATE(11390)] = 440154, + [SMALL_STATE(11391)] = 440168, + [SMALL_STATE(11392)] = 440182, + [SMALL_STATE(11393)] = 440198, + [SMALL_STATE(11394)] = 440212, + [SMALL_STATE(11395)] = 440226, + [SMALL_STATE(11396)] = 440240, + [SMALL_STATE(11397)] = 440254, + [SMALL_STATE(11398)] = 440268, + [SMALL_STATE(11399)] = 440282, + [SMALL_STATE(11400)] = 440296, + [SMALL_STATE(11401)] = 440310, + [SMALL_STATE(11402)] = 440324, + [SMALL_STATE(11403)] = 440338, + [SMALL_STATE(11404)] = 440352, + [SMALL_STATE(11405)] = 440366, + [SMALL_STATE(11406)] = 440380, + [SMALL_STATE(11407)] = 440394, + [SMALL_STATE(11408)] = 440408, + [SMALL_STATE(11409)] = 440422, + [SMALL_STATE(11410)] = 440436, + [SMALL_STATE(11411)] = 440450, + [SMALL_STATE(11412)] = 440464, + [SMALL_STATE(11413)] = 440478, + [SMALL_STATE(11414)] = 440492, + [SMALL_STATE(11415)] = 440506, + [SMALL_STATE(11416)] = 440520, + [SMALL_STATE(11417)] = 440534, + [SMALL_STATE(11418)] = 440548, + [SMALL_STATE(11419)] = 440562, + [SMALL_STATE(11420)] = 440576, + [SMALL_STATE(11421)] = 440590, + [SMALL_STATE(11422)] = 440604, + [SMALL_STATE(11423)] = 440618, + [SMALL_STATE(11424)] = 440632, + [SMALL_STATE(11425)] = 440646, + [SMALL_STATE(11426)] = 440660, + [SMALL_STATE(11427)] = 440674, + [SMALL_STATE(11428)] = 440688, + [SMALL_STATE(11429)] = 440702, + [SMALL_STATE(11430)] = 440716, + [SMALL_STATE(11431)] = 440730, + [SMALL_STATE(11432)] = 440744, + [SMALL_STATE(11433)] = 440758, + [SMALL_STATE(11434)] = 440772, + [SMALL_STATE(11435)] = 440786, + [SMALL_STATE(11436)] = 440800, + [SMALL_STATE(11437)] = 440814, + [SMALL_STATE(11438)] = 440828, + [SMALL_STATE(11439)] = 440842, + [SMALL_STATE(11440)] = 440856, + [SMALL_STATE(11441)] = 440870, + [SMALL_STATE(11442)] = 440884, + [SMALL_STATE(11443)] = 440898, + [SMALL_STATE(11444)] = 440912, + [SMALL_STATE(11445)] = 440926, + [SMALL_STATE(11446)] = 440940, + [SMALL_STATE(11447)] = 440954, + [SMALL_STATE(11448)] = 440968, + [SMALL_STATE(11449)] = 440982, + [SMALL_STATE(11450)] = 440996, + [SMALL_STATE(11451)] = 441010, + [SMALL_STATE(11452)] = 441024, + [SMALL_STATE(11453)] = 441038, + [SMALL_STATE(11454)] = 441052, + [SMALL_STATE(11455)] = 441066, + [SMALL_STATE(11456)] = 441080, + [SMALL_STATE(11457)] = 441094, + [SMALL_STATE(11458)] = 441108, + [SMALL_STATE(11459)] = 441122, + [SMALL_STATE(11460)] = 441136, + [SMALL_STATE(11461)] = 441150, + [SMALL_STATE(11462)] = 441164, + [SMALL_STATE(11463)] = 441178, + [SMALL_STATE(11464)] = 441192, + [SMALL_STATE(11465)] = 441206, + [SMALL_STATE(11466)] = 441220, + [SMALL_STATE(11467)] = 441234, + [SMALL_STATE(11468)] = 441248, + [SMALL_STATE(11469)] = 441262, + [SMALL_STATE(11470)] = 441276, + [SMALL_STATE(11471)] = 441290, + [SMALL_STATE(11472)] = 441304, + [SMALL_STATE(11473)] = 441318, + [SMALL_STATE(11474)] = 441332, + [SMALL_STATE(11475)] = 441346, + [SMALL_STATE(11476)] = 441360, + [SMALL_STATE(11477)] = 441374, + [SMALL_STATE(11478)] = 441388, + [SMALL_STATE(11479)] = 441402, + [SMALL_STATE(11480)] = 441416, + [SMALL_STATE(11481)] = 441430, + [SMALL_STATE(11482)] = 441444, + [SMALL_STATE(11483)] = 441458, + [SMALL_STATE(11484)] = 441472, + [SMALL_STATE(11485)] = 441486, + [SMALL_STATE(11486)] = 441500, + [SMALL_STATE(11487)] = 441514, + [SMALL_STATE(11488)] = 441528, + [SMALL_STATE(11489)] = 441542, + [SMALL_STATE(11490)] = 441556, + [SMALL_STATE(11491)] = 441570, + [SMALL_STATE(11492)] = 441584, + [SMALL_STATE(11493)] = 441598, + [SMALL_STATE(11494)] = 441612, + [SMALL_STATE(11495)] = 441626, + [SMALL_STATE(11496)] = 441640, + [SMALL_STATE(11497)] = 441654, + [SMALL_STATE(11498)] = 441668, + [SMALL_STATE(11499)] = 441682, + [SMALL_STATE(11500)] = 441696, + [SMALL_STATE(11501)] = 441710, + [SMALL_STATE(11502)] = 441724, + [SMALL_STATE(11503)] = 441738, + [SMALL_STATE(11504)] = 441752, + [SMALL_STATE(11505)] = 441766, + [SMALL_STATE(11506)] = 441780, + [SMALL_STATE(11507)] = 441794, + [SMALL_STATE(11508)] = 441808, + [SMALL_STATE(11509)] = 441822, + [SMALL_STATE(11510)] = 441836, + [SMALL_STATE(11511)] = 441850, + [SMALL_STATE(11512)] = 441864, + [SMALL_STATE(11513)] = 441878, + [SMALL_STATE(11514)] = 441892, + [SMALL_STATE(11515)] = 441906, + [SMALL_STATE(11516)] = 441920, + [SMALL_STATE(11517)] = 441934, + [SMALL_STATE(11518)] = 441948, + [SMALL_STATE(11519)] = 441962, + [SMALL_STATE(11520)] = 441976, + [SMALL_STATE(11521)] = 441990, + [SMALL_STATE(11522)] = 442004, + [SMALL_STATE(11523)] = 442018, + [SMALL_STATE(11524)] = 442032, + [SMALL_STATE(11525)] = 442046, + [SMALL_STATE(11526)] = 442060, + [SMALL_STATE(11527)] = 442074, + [SMALL_STATE(11528)] = 442088, + [SMALL_STATE(11529)] = 442102, + [SMALL_STATE(11530)] = 442116, + [SMALL_STATE(11531)] = 442130, + [SMALL_STATE(11532)] = 442144, + [SMALL_STATE(11533)] = 442158, + [SMALL_STATE(11534)] = 442174, + [SMALL_STATE(11535)] = 442188, + [SMALL_STATE(11536)] = 442202, + [SMALL_STATE(11537)] = 442216, + [SMALL_STATE(11538)] = 442230, + [SMALL_STATE(11539)] = 442244, + [SMALL_STATE(11540)] = 442258, + [SMALL_STATE(11541)] = 442272, + [SMALL_STATE(11542)] = 442286, + [SMALL_STATE(11543)] = 442300, + [SMALL_STATE(11544)] = 442314, + [SMALL_STATE(11545)] = 442328, + [SMALL_STATE(11546)] = 442342, + [SMALL_STATE(11547)] = 442356, + [SMALL_STATE(11548)] = 442370, + [SMALL_STATE(11549)] = 442384, + [SMALL_STATE(11550)] = 442398, + [SMALL_STATE(11551)] = 442412, + [SMALL_STATE(11552)] = 442426, + [SMALL_STATE(11553)] = 442440, + [SMALL_STATE(11554)] = 442454, + [SMALL_STATE(11555)] = 442468, + [SMALL_STATE(11556)] = 442482, + [SMALL_STATE(11557)] = 442496, + [SMALL_STATE(11558)] = 442510, + [SMALL_STATE(11559)] = 442524, + [SMALL_STATE(11560)] = 442538, + [SMALL_STATE(11561)] = 442552, + [SMALL_STATE(11562)] = 442566, + [SMALL_STATE(11563)] = 442580, + [SMALL_STATE(11564)] = 442594, + [SMALL_STATE(11565)] = 442608, + [SMALL_STATE(11566)] = 442622, + [SMALL_STATE(11567)] = 442636, + [SMALL_STATE(11568)] = 442650, + [SMALL_STATE(11569)] = 442664, + [SMALL_STATE(11570)] = 442678, + [SMALL_STATE(11571)] = 442692, + [SMALL_STATE(11572)] = 442706, + [SMALL_STATE(11573)] = 442720, + [SMALL_STATE(11574)] = 442734, + [SMALL_STATE(11575)] = 442748, + [SMALL_STATE(11576)] = 442762, + [SMALL_STATE(11577)] = 442776, + [SMALL_STATE(11578)] = 442790, + [SMALL_STATE(11579)] = 442804, + [SMALL_STATE(11580)] = 442818, + [SMALL_STATE(11581)] = 442832, + [SMALL_STATE(11582)] = 442846, + [SMALL_STATE(11583)] = 442860, + [SMALL_STATE(11584)] = 442874, + [SMALL_STATE(11585)] = 442888, + [SMALL_STATE(11586)] = 442902, + [SMALL_STATE(11587)] = 442916, + [SMALL_STATE(11588)] = 442930, + [SMALL_STATE(11589)] = 442944, + [SMALL_STATE(11590)] = 442958, + [SMALL_STATE(11591)] = 442972, + [SMALL_STATE(11592)] = 442986, + [SMALL_STATE(11593)] = 443000, + [SMALL_STATE(11594)] = 443014, + [SMALL_STATE(11595)] = 443028, + [SMALL_STATE(11596)] = 443042, + [SMALL_STATE(11597)] = 443056, + [SMALL_STATE(11598)] = 443070, + [SMALL_STATE(11599)] = 443084, + [SMALL_STATE(11600)] = 443098, + [SMALL_STATE(11601)] = 443112, + [SMALL_STATE(11602)] = 443126, + [SMALL_STATE(11603)] = 443142, + [SMALL_STATE(11604)] = 443156, + [SMALL_STATE(11605)] = 443170, + [SMALL_STATE(11606)] = 443184, + [SMALL_STATE(11607)] = 443198, + [SMALL_STATE(11608)] = 443212, + [SMALL_STATE(11609)] = 443226, + [SMALL_STATE(11610)] = 443240, + [SMALL_STATE(11611)] = 443254, + [SMALL_STATE(11612)] = 443268, + [SMALL_STATE(11613)] = 443282, + [SMALL_STATE(11614)] = 443296, + [SMALL_STATE(11615)] = 443310, + [SMALL_STATE(11616)] = 443324, + [SMALL_STATE(11617)] = 443338, + [SMALL_STATE(11618)] = 443352, + [SMALL_STATE(11619)] = 443366, + [SMALL_STATE(11620)] = 443380, + [SMALL_STATE(11621)] = 443394, + [SMALL_STATE(11622)] = 443408, + [SMALL_STATE(11623)] = 443422, + [SMALL_STATE(11624)] = 443436, + [SMALL_STATE(11625)] = 443450, + [SMALL_STATE(11626)] = 443464, + [SMALL_STATE(11627)] = 443478, + [SMALL_STATE(11628)] = 443492, + [SMALL_STATE(11629)] = 443506, + [SMALL_STATE(11630)] = 443520, + [SMALL_STATE(11631)] = 443534, + [SMALL_STATE(11632)] = 443548, + [SMALL_STATE(11633)] = 443562, + [SMALL_STATE(11634)] = 443576, + [SMALL_STATE(11635)] = 443590, + [SMALL_STATE(11636)] = 443604, + [SMALL_STATE(11637)] = 443618, + [SMALL_STATE(11638)] = 443634, + [SMALL_STATE(11639)] = 443648, + [SMALL_STATE(11640)] = 443662, + [SMALL_STATE(11641)] = 443676, + [SMALL_STATE(11642)] = 443690, + [SMALL_STATE(11643)] = 443704, + [SMALL_STATE(11644)] = 443718, + [SMALL_STATE(11645)] = 443732, + [SMALL_STATE(11646)] = 443746, + [SMALL_STATE(11647)] = 443760, + [SMALL_STATE(11648)] = 443774, + [SMALL_STATE(11649)] = 443788, + [SMALL_STATE(11650)] = 443802, + [SMALL_STATE(11651)] = 443816, + [SMALL_STATE(11652)] = 443830, + [SMALL_STATE(11653)] = 443844, + [SMALL_STATE(11654)] = 443858, + [SMALL_STATE(11655)] = 443872, + [SMALL_STATE(11656)] = 443886, + [SMALL_STATE(11657)] = 443900, + [SMALL_STATE(11658)] = 443914, + [SMALL_STATE(11659)] = 443928, + [SMALL_STATE(11660)] = 443942, + [SMALL_STATE(11661)] = 443956, + [SMALL_STATE(11662)] = 443970, + [SMALL_STATE(11663)] = 443984, + [SMALL_STATE(11664)] = 443998, + [SMALL_STATE(11665)] = 444012, + [SMALL_STATE(11666)] = 444026, + [SMALL_STATE(11667)] = 444040, + [SMALL_STATE(11668)] = 444054, + [SMALL_STATE(11669)] = 444068, + [SMALL_STATE(11670)] = 444082, + [SMALL_STATE(11671)] = 444096, + [SMALL_STATE(11672)] = 444110, + [SMALL_STATE(11673)] = 444124, + [SMALL_STATE(11674)] = 444138, + [SMALL_STATE(11675)] = 444152, + [SMALL_STATE(11676)] = 444166, + [SMALL_STATE(11677)] = 444180, + [SMALL_STATE(11678)] = 444194, + [SMALL_STATE(11679)] = 444208, + [SMALL_STATE(11680)] = 444222, + [SMALL_STATE(11681)] = 444238, + [SMALL_STATE(11682)] = 444252, + [SMALL_STATE(11683)] = 444266, + [SMALL_STATE(11684)] = 444280, + [SMALL_STATE(11685)] = 444294, + [SMALL_STATE(11686)] = 444308, + [SMALL_STATE(11687)] = 444322, + [SMALL_STATE(11688)] = 444336, + [SMALL_STATE(11689)] = 444350, + [SMALL_STATE(11690)] = 444364, + [SMALL_STATE(11691)] = 444378, + [SMALL_STATE(11692)] = 444392, + [SMALL_STATE(11693)] = 444406, + [SMALL_STATE(11694)] = 444420, + [SMALL_STATE(11695)] = 444434, + [SMALL_STATE(11696)] = 444448, + [SMALL_STATE(11697)] = 444462, + [SMALL_STATE(11698)] = 444476, + [SMALL_STATE(11699)] = 444490, + [SMALL_STATE(11700)] = 444504, + [SMALL_STATE(11701)] = 444518, + [SMALL_STATE(11702)] = 444532, + [SMALL_STATE(11703)] = 444546, + [SMALL_STATE(11704)] = 444560, + [SMALL_STATE(11705)] = 444574, + [SMALL_STATE(11706)] = 444588, + [SMALL_STATE(11707)] = 444602, + [SMALL_STATE(11708)] = 444616, + [SMALL_STATE(11709)] = 444630, + [SMALL_STATE(11710)] = 444644, + [SMALL_STATE(11711)] = 444658, + [SMALL_STATE(11712)] = 444672, + [SMALL_STATE(11713)] = 444686, + [SMALL_STATE(11714)] = 444700, + [SMALL_STATE(11715)] = 444714, + [SMALL_STATE(11716)] = 444728, + [SMALL_STATE(11717)] = 444742, + [SMALL_STATE(11718)] = 444756, + [SMALL_STATE(11719)] = 444770, + [SMALL_STATE(11720)] = 444786, + [SMALL_STATE(11721)] = 444800, + [SMALL_STATE(11722)] = 444814, + [SMALL_STATE(11723)] = 444828, + [SMALL_STATE(11724)] = 444842, + [SMALL_STATE(11725)] = 444856, + [SMALL_STATE(11726)] = 444870, + [SMALL_STATE(11727)] = 444884, + [SMALL_STATE(11728)] = 444898, + [SMALL_STATE(11729)] = 444912, + [SMALL_STATE(11730)] = 444926, + [SMALL_STATE(11731)] = 444940, + [SMALL_STATE(11732)] = 444954, + [SMALL_STATE(11733)] = 444968, + [SMALL_STATE(11734)] = 444982, + [SMALL_STATE(11735)] = 444996, + [SMALL_STATE(11736)] = 445010, + [SMALL_STATE(11737)] = 445024, + [SMALL_STATE(11738)] = 445038, + [SMALL_STATE(11739)] = 445052, + [SMALL_STATE(11740)] = 445066, + [SMALL_STATE(11741)] = 445080, + [SMALL_STATE(11742)] = 445096, + [SMALL_STATE(11743)] = 445110, + [SMALL_STATE(11744)] = 445124, + [SMALL_STATE(11745)] = 445138, + [SMALL_STATE(11746)] = 445152, + [SMALL_STATE(11747)] = 445166, + [SMALL_STATE(11748)] = 445180, + [SMALL_STATE(11749)] = 445194, + [SMALL_STATE(11750)] = 445208, + [SMALL_STATE(11751)] = 445222, + [SMALL_STATE(11752)] = 445236, + [SMALL_STATE(11753)] = 445250, + [SMALL_STATE(11754)] = 445264, + [SMALL_STATE(11755)] = 445278, + [SMALL_STATE(11756)] = 445292, + [SMALL_STATE(11757)] = 445306, + [SMALL_STATE(11758)] = 445320, + [SMALL_STATE(11759)] = 445334, + [SMALL_STATE(11760)] = 445348, + [SMALL_STATE(11761)] = 445362, + [SMALL_STATE(11762)] = 445376, + [SMALL_STATE(11763)] = 445390, + [SMALL_STATE(11764)] = 445404, + [SMALL_STATE(11765)] = 445418, + [SMALL_STATE(11766)] = 445432, + [SMALL_STATE(11767)] = 445446, + [SMALL_STATE(11768)] = 445460, + [SMALL_STATE(11769)] = 445474, + [SMALL_STATE(11770)] = 445488, + [SMALL_STATE(11771)] = 445502, + [SMALL_STATE(11772)] = 445516, + [SMALL_STATE(11773)] = 445530, + [SMALL_STATE(11774)] = 445544, + [SMALL_STATE(11775)] = 445558, + [SMALL_STATE(11776)] = 445572, + [SMALL_STATE(11777)] = 445586, + [SMALL_STATE(11778)] = 445600, + [SMALL_STATE(11779)] = 445614, + [SMALL_STATE(11780)] = 445628, + [SMALL_STATE(11781)] = 445642, + [SMALL_STATE(11782)] = 445656, + [SMALL_STATE(11783)] = 445672, + [SMALL_STATE(11784)] = 445686, + [SMALL_STATE(11785)] = 445700, + [SMALL_STATE(11786)] = 445714, + [SMALL_STATE(11787)] = 445728, + [SMALL_STATE(11788)] = 445742, + [SMALL_STATE(11789)] = 445756, + [SMALL_STATE(11790)] = 445770, + [SMALL_STATE(11791)] = 445784, + [SMALL_STATE(11792)] = 445798, + [SMALL_STATE(11793)] = 445812, + [SMALL_STATE(11794)] = 445826, + [SMALL_STATE(11795)] = 445840, + [SMALL_STATE(11796)] = 445854, + [SMALL_STATE(11797)] = 445868, + [SMALL_STATE(11798)] = 445882, + [SMALL_STATE(11799)] = 445896, + [SMALL_STATE(11800)] = 445910, + [SMALL_STATE(11801)] = 445924, + [SMALL_STATE(11802)] = 445938, + [SMALL_STATE(11803)] = 445952, + [SMALL_STATE(11804)] = 445966, + [SMALL_STATE(11805)] = 445980, + [SMALL_STATE(11806)] = 445994, + [SMALL_STATE(11807)] = 446008, + [SMALL_STATE(11808)] = 446022, + [SMALL_STATE(11809)] = 446036, + [SMALL_STATE(11810)] = 446050, + [SMALL_STATE(11811)] = 446064, + [SMALL_STATE(11812)] = 446078, + [SMALL_STATE(11813)] = 446092, + [SMALL_STATE(11814)] = 446106, + [SMALL_STATE(11815)] = 446120, + [SMALL_STATE(11816)] = 446134, + [SMALL_STATE(11817)] = 446148, + [SMALL_STATE(11818)] = 446162, + [SMALL_STATE(11819)] = 446176, + [SMALL_STATE(11820)] = 446190, + [SMALL_STATE(11821)] = 446204, + [SMALL_STATE(11822)] = 446218, + [SMALL_STATE(11823)] = 446232, + [SMALL_STATE(11824)] = 446246, + [SMALL_STATE(11825)] = 446260, + [SMALL_STATE(11826)] = 446274, + [SMALL_STATE(11827)] = 446288, + [SMALL_STATE(11828)] = 446302, + [SMALL_STATE(11829)] = 446316, + [SMALL_STATE(11830)] = 446330, + [SMALL_STATE(11831)] = 446344, + [SMALL_STATE(11832)] = 446358, + [SMALL_STATE(11833)] = 446372, + [SMALL_STATE(11834)] = 446386, + [SMALL_STATE(11835)] = 446400, + [SMALL_STATE(11836)] = 446414, + [SMALL_STATE(11837)] = 446428, + [SMALL_STATE(11838)] = 446442, + [SMALL_STATE(11839)] = 446456, + [SMALL_STATE(11840)] = 446470, + [SMALL_STATE(11841)] = 446484, + [SMALL_STATE(11842)] = 446498, + [SMALL_STATE(11843)] = 446512, + [SMALL_STATE(11844)] = 446526, + [SMALL_STATE(11845)] = 446540, + [SMALL_STATE(11846)] = 446554, + [SMALL_STATE(11847)] = 446568, + [SMALL_STATE(11848)] = 446582, + [SMALL_STATE(11849)] = 446596, + [SMALL_STATE(11850)] = 446610, + [SMALL_STATE(11851)] = 446624, + [SMALL_STATE(11852)] = 446638, + [SMALL_STATE(11853)] = 446652, + [SMALL_STATE(11854)] = 446666, + [SMALL_STATE(11855)] = 446680, + [SMALL_STATE(11856)] = 446694, + [SMALL_STATE(11857)] = 446708, + [SMALL_STATE(11858)] = 446722, + [SMALL_STATE(11859)] = 446736, + [SMALL_STATE(11860)] = 446750, + [SMALL_STATE(11861)] = 446764, + [SMALL_STATE(11862)] = 446778, + [SMALL_STATE(11863)] = 446792, + [SMALL_STATE(11864)] = 446806, + [SMALL_STATE(11865)] = 446820, + [SMALL_STATE(11866)] = 446834, + [SMALL_STATE(11867)] = 446848, + [SMALL_STATE(11868)] = 446862, + [SMALL_STATE(11869)] = 446876, + [SMALL_STATE(11870)] = 446890, + [SMALL_STATE(11871)] = 446904, + [SMALL_STATE(11872)] = 446918, + [SMALL_STATE(11873)] = 446932, + [SMALL_STATE(11874)] = 446946, + [SMALL_STATE(11875)] = 446960, + [SMALL_STATE(11876)] = 446974, + [SMALL_STATE(11877)] = 446988, + [SMALL_STATE(11878)] = 447002, + [SMALL_STATE(11879)] = 447016, + [SMALL_STATE(11880)] = 447030, + [SMALL_STATE(11881)] = 447044, + [SMALL_STATE(11882)] = 447058, + [SMALL_STATE(11883)] = 447072, + [SMALL_STATE(11884)] = 447086, + [SMALL_STATE(11885)] = 447100, + [SMALL_STATE(11886)] = 447114, + [SMALL_STATE(11887)] = 447128, + [SMALL_STATE(11888)] = 447142, + [SMALL_STATE(11889)] = 447156, + [SMALL_STATE(11890)] = 447170, + [SMALL_STATE(11891)] = 447184, + [SMALL_STATE(11892)] = 447198, + [SMALL_STATE(11893)] = 447212, + [SMALL_STATE(11894)] = 447226, + [SMALL_STATE(11895)] = 447240, + [SMALL_STATE(11896)] = 447254, + [SMALL_STATE(11897)] = 447268, + [SMALL_STATE(11898)] = 447282, + [SMALL_STATE(11899)] = 447296, + [SMALL_STATE(11900)] = 447310, + [SMALL_STATE(11901)] = 447324, + [SMALL_STATE(11902)] = 447340, + [SMALL_STATE(11903)] = 447354, + [SMALL_STATE(11904)] = 447368, + [SMALL_STATE(11905)] = 447382, + [SMALL_STATE(11906)] = 447396, + [SMALL_STATE(11907)] = 447410, + [SMALL_STATE(11908)] = 447424, + [SMALL_STATE(11909)] = 447438, + [SMALL_STATE(11910)] = 447452, + [SMALL_STATE(11911)] = 447466, + [SMALL_STATE(11912)] = 447480, + [SMALL_STATE(11913)] = 447494, + [SMALL_STATE(11914)] = 447508, + [SMALL_STATE(11915)] = 447522, + [SMALL_STATE(11916)] = 447536, + [SMALL_STATE(11917)] = 447550, + [SMALL_STATE(11918)] = 447564, + [SMALL_STATE(11919)] = 447578, + [SMALL_STATE(11920)] = 447592, + [SMALL_STATE(11921)] = 447606, + [SMALL_STATE(11922)] = 447622, + [SMALL_STATE(11923)] = 447636, + [SMALL_STATE(11924)] = 447650, + [SMALL_STATE(11925)] = 447664, + [SMALL_STATE(11926)] = 447678, + [SMALL_STATE(11927)] = 447692, + [SMALL_STATE(11928)] = 447706, + [SMALL_STATE(11929)] = 447720, + [SMALL_STATE(11930)] = 447734, + [SMALL_STATE(11931)] = 447748, + [SMALL_STATE(11932)] = 447762, + [SMALL_STATE(11933)] = 447776, + [SMALL_STATE(11934)] = 447790, + [SMALL_STATE(11935)] = 447804, + [SMALL_STATE(11936)] = 447818, + [SMALL_STATE(11937)] = 447832, + [SMALL_STATE(11938)] = 447846, + [SMALL_STATE(11939)] = 447860, + [SMALL_STATE(11940)] = 447874, + [SMALL_STATE(11941)] = 447888, + [SMALL_STATE(11942)] = 447902, + [SMALL_STATE(11943)] = 447918, + [SMALL_STATE(11944)] = 447932, + [SMALL_STATE(11945)] = 447946, + [SMALL_STATE(11946)] = 447960, + [SMALL_STATE(11947)] = 447974, + [SMALL_STATE(11948)] = 447988, + [SMALL_STATE(11949)] = 448002, + [SMALL_STATE(11950)] = 448016, + [SMALL_STATE(11951)] = 448030, + [SMALL_STATE(11952)] = 448044, + [SMALL_STATE(11953)] = 448058, + [SMALL_STATE(11954)] = 448072, + [SMALL_STATE(11955)] = 448086, + [SMALL_STATE(11956)] = 448100, + [SMALL_STATE(11957)] = 448114, + [SMALL_STATE(11958)] = 448128, + [SMALL_STATE(11959)] = 448142, + [SMALL_STATE(11960)] = 448156, + [SMALL_STATE(11961)] = 448170, + [SMALL_STATE(11962)] = 448184, + [SMALL_STATE(11963)] = 448198, + [SMALL_STATE(11964)] = 448212, + [SMALL_STATE(11965)] = 448226, + [SMALL_STATE(11966)] = 448240, + [SMALL_STATE(11967)] = 448254, + [SMALL_STATE(11968)] = 448268, + [SMALL_STATE(11969)] = 448282, + [SMALL_STATE(11970)] = 448296, + [SMALL_STATE(11971)] = 448310, + [SMALL_STATE(11972)] = 448324, + [SMALL_STATE(11973)] = 448338, + [SMALL_STATE(11974)] = 448352, + [SMALL_STATE(11975)] = 448366, + [SMALL_STATE(11976)] = 448380, + [SMALL_STATE(11977)] = 448394, + [SMALL_STATE(11978)] = 448408, + [SMALL_STATE(11979)] = 448422, + [SMALL_STATE(11980)] = 448436, + [SMALL_STATE(11981)] = 448450, + [SMALL_STATE(11982)] = 448464, + [SMALL_STATE(11983)] = 448478, + [SMALL_STATE(11984)] = 448492, + [SMALL_STATE(11985)] = 448506, + [SMALL_STATE(11986)] = 448520, + [SMALL_STATE(11987)] = 448534, + [SMALL_STATE(11988)] = 448548, + [SMALL_STATE(11989)] = 448562, + [SMALL_STATE(11990)] = 448576, + [SMALL_STATE(11991)] = 448590, + [SMALL_STATE(11992)] = 448604, + [SMALL_STATE(11993)] = 448618, + [SMALL_STATE(11994)] = 448632, + [SMALL_STATE(11995)] = 448646, + [SMALL_STATE(11996)] = 448660, + [SMALL_STATE(11997)] = 448674, + [SMALL_STATE(11998)] = 448688, + [SMALL_STATE(11999)] = 448702, + [SMALL_STATE(12000)] = 448716, + [SMALL_STATE(12001)] = 448730, + [SMALL_STATE(12002)] = 448744, + [SMALL_STATE(12003)] = 448758, + [SMALL_STATE(12004)] = 448772, + [SMALL_STATE(12005)] = 448786, + [SMALL_STATE(12006)] = 448800, + [SMALL_STATE(12007)] = 448814, + [SMALL_STATE(12008)] = 448828, + [SMALL_STATE(12009)] = 448842, + [SMALL_STATE(12010)] = 448856, + [SMALL_STATE(12011)] = 448870, + [SMALL_STATE(12012)] = 448884, + [SMALL_STATE(12013)] = 448898, + [SMALL_STATE(12014)] = 448912, + [SMALL_STATE(12015)] = 448926, + [SMALL_STATE(12016)] = 448940, + [SMALL_STATE(12017)] = 448954, + [SMALL_STATE(12018)] = 448968, + [SMALL_STATE(12019)] = 448982, + [SMALL_STATE(12020)] = 448996, + [SMALL_STATE(12021)] = 449010, + [SMALL_STATE(12022)] = 449024, + [SMALL_STATE(12023)] = 449038, + [SMALL_STATE(12024)] = 449052, + [SMALL_STATE(12025)] = 449066, + [SMALL_STATE(12026)] = 449080, + [SMALL_STATE(12027)] = 449094, + [SMALL_STATE(12028)] = 449108, + [SMALL_STATE(12029)] = 449122, + [SMALL_STATE(12030)] = 449136, + [SMALL_STATE(12031)] = 449150, + [SMALL_STATE(12032)] = 449164, + [SMALL_STATE(12033)] = 449178, + [SMALL_STATE(12034)] = 449192, + [SMALL_STATE(12035)] = 449208, + [SMALL_STATE(12036)] = 449222, + [SMALL_STATE(12037)] = 449236, + [SMALL_STATE(12038)] = 449250, + [SMALL_STATE(12039)] = 449264, + [SMALL_STATE(12040)] = 449278, + [SMALL_STATE(12041)] = 449292, + [SMALL_STATE(12042)] = 449306, + [SMALL_STATE(12043)] = 449320, + [SMALL_STATE(12044)] = 449334, + [SMALL_STATE(12045)] = 449348, + [SMALL_STATE(12046)] = 449362, + [SMALL_STATE(12047)] = 449376, + [SMALL_STATE(12048)] = 449390, + [SMALL_STATE(12049)] = 449404, + [SMALL_STATE(12050)] = 449418, + [SMALL_STATE(12051)] = 449432, + [SMALL_STATE(12052)] = 449446, + [SMALL_STATE(12053)] = 449460, + [SMALL_STATE(12054)] = 449474, + [SMALL_STATE(12055)] = 449488, + [SMALL_STATE(12056)] = 449502, + [SMALL_STATE(12057)] = 449516, + [SMALL_STATE(12058)] = 449530, + [SMALL_STATE(12059)] = 449544, + [SMALL_STATE(12060)] = 449558, + [SMALL_STATE(12061)] = 449572, + [SMALL_STATE(12062)] = 449586, + [SMALL_STATE(12063)] = 449600, + [SMALL_STATE(12064)] = 449614, + [SMALL_STATE(12065)] = 449628, + [SMALL_STATE(12066)] = 449642, + [SMALL_STATE(12067)] = 449656, + [SMALL_STATE(12068)] = 449670, + [SMALL_STATE(12069)] = 449684, + [SMALL_STATE(12070)] = 449698, + [SMALL_STATE(12071)] = 449712, + [SMALL_STATE(12072)] = 449726, + [SMALL_STATE(12073)] = 449740, + [SMALL_STATE(12074)] = 449754, + [SMALL_STATE(12075)] = 449768, + [SMALL_STATE(12076)] = 449782, + [SMALL_STATE(12077)] = 449796, + [SMALL_STATE(12078)] = 449810, + [SMALL_STATE(12079)] = 449824, + [SMALL_STATE(12080)] = 449828, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -705582,8217 +712998,8282 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9049), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8967), [9] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [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(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(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), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9519), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9663), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11939), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [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(10308), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9274), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9268), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10108), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9299), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9097), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9205), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10370), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10323), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8318), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9655), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9698), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9488), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9490), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12057), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9936), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9333), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9329), [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11766), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11930), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11919), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10511), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11733), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9690), - [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(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), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9110), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9098), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9005), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8933), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9330), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9346), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9006), - [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [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(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), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9157), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11727), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11728), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11729), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11969), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10718), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11428), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8550), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9175), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9011), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8892), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8978), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9624), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9626), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8981), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11178), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11430), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [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(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), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9138), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11838), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11797), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11798), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11974), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11622), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10883), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8617), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9118), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8968), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8911), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9511), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9667), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9012), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11396), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10518), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [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(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), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9177), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11889), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11839), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11840), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11977), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10733), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10693), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8667), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9168), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8928), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8988), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9041), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9611), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9613), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9042), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10741), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [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(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), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9136), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11755), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11756), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11757), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11971), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11208), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11529), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9108), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9076), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8930), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9015), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9413), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9414), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9016), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11214), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11651), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11751), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [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(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), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9132), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11769), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11770), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11771), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11972), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11495), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11238), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9173), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9007), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9083), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8941), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9464), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9465), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8942), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10995), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [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(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), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9146), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11893), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11853), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11854), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11978), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10795), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11926), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8680), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9161), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8994), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9100), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8975), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9333), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9334), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8983), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10760), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10613), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10800), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [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(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), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9180), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11796), - [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11783), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11784), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11973), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10833), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11868), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9131), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8910), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9008), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9087), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9476), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9477), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9088), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11239), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11372), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lhs_splat, 2, 0, 0), - [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lhs_splat, 2, 0, 0), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10637), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11942), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1, 0, 2), - [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1, 0, 2), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1, 0, 3), - [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1, 0, 3), - [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_call, 1, 0, 2), - [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_call, 1, 0, 2), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [1195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), - [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 1, 0, 0), - [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 4, 0, 57), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 4, 0, 57), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [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(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), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9172), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11741), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11742), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11743), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11970), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10964), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8559), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9148), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9013), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9014), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8893), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9352), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9353), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8894), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [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(10344), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), - [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), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9379), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9380), - [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(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), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [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(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), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6683), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [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(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), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9160), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11852), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11811), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11812), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11975), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11912), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8630), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9137), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9038), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8970), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8913), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9540), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9541), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8914), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9075), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9079), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6651), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9053), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9082), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8973), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), - [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(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), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9092), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9547), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9094), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9097), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9063), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9067), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9048), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9071), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8611), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [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(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), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9162), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11379), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11380), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11381), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11962), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11744), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8800), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9151), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9021), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9023), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9029), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9553), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9580), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9035), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6716), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8062), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), - [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(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), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8209), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9422), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8257), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8848), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7949), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8670), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), - [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5), - [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2047), - [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(407), - [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(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(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(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), - [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9519), - [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9663), - [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11939), - [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1262), - [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(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), - [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(601), - [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(603), - [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), - [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(80), - [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11766), - [1898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11930), - [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11919), - [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10511), - [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2332), - [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11733), - [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), - [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(64), - [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2226), - [1922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9690), - [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(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), - [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(993), - [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), - [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(391), - [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9110), - [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1569), - [1961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1348), - [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9098), - [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9005), - [1970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(8933), - [1973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9330), - [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9346), - [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9006), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1, 0, 0), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1, 0, 0), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsif, 3, 0, 29), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6731), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, 0, 14), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 2, 0, 14), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_beginless_range, 1, 0, 1), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_beginless_range, 1, 0, 1), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, 0, 14), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 3, 0, 14), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 5, 0, 134), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 5, 0, 134), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [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(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), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9154), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11697), - [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11698), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11699), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11967), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10903), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8506), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9171), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9046), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9050), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8951), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9370), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9371), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8952), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), - [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 2, 0, 0), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 2, 0, 0), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 3, 0, 60), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 3, 0, 60), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 3, 0, 61), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 3, 0, 61), - [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_beginless_range, 2, 0, 1), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_beginless_range, 2, 0, 1), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8515), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9495), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8977), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8012), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9593), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8017), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9599), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when, 3, 0, 29), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8518), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9496), - [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when, 4, 0, 139), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8241), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9391), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [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(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), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9130), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11864), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11825), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11826), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11976), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10546), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8649), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9176), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8987), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9040), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8972), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9589), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9590), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8974), - [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8249), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9392), - [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8217), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9390), - [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8307), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9397), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7907), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9419), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8772), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9490), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8309), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9398), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8791), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9491), - [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2122), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7929), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9507), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8759), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9492), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7955), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9523), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7992), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9363), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8216), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9389), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8790), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9493), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8795), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8215), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8219), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8267), - [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8274), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8239), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8243), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9047), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8760), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8008), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8735), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8553), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8554), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8858), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8859), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8819), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8820), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8010), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9052), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9056), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9062), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [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(9910), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 1, 0, 0), - [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), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9479), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9480), - [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(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), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [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(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), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 1, 0, 0), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7999), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9066), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8044), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9070), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9074), - [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in, 3, 0, 29), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9078), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7915), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9081), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7919), - [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(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), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9091), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9527), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9093), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9096), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8058), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [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(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), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9174), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11713), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11714), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11715), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11968), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11933), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6841), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9145), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8966), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8967), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9051), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9529), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9530), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9059), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8989), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8947), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8213), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8222), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8240), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7926), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ensure, 1, 0, 0), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8223), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8597), - [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(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), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9420), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), - [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2138), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8011), - [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9027), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8940), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9099), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8971), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next, 1, 0, 0), - [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_next, 1, 0, 0), - [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 1, 0, 0), - [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 1, 0, 0), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break, 1, 0, 0), - [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break, 1, 0, 0), - [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dot_call, 3, 0, 36), - [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__dot_call, 3, 0, 36), - [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_call, 3, 0, 36), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_call, 3, 0, 36), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11787), - [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(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), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9294), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9262), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9282), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9111), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9178), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9119), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9351), - [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9354), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11777), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9412), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracket_argument_list, 2, 0, 0), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracket_argument_list, 2, 0, 0), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9615), - [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9348), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracket_argument_list, 3, 0, 0), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracket_argument_list, 3, 0, 0), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9416), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11951), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11749), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11790), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11400), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11721), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11878), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11707), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11846), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11870), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11431), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11832), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11818), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), - [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11753), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11895), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11804), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11860), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11763), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [3554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(45), - [3557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(484), - [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(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), - [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1130), - [3584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9162), - [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1488), - [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1852), - [3593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1853), - [3596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1887), - [3599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(245), - [3602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(11379), - [3605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(11380), - [3608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(11381), - [3611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(11962), - [3614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(2725), - [3617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(11744), - [3620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(4375), - [3623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(124), - [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(2406), - [3629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(110), - [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1848), - [3635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1849), - [3638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1649), - [3641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1063), - [3644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(8800), - [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1022), - [3650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1775), - [3653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(540), - [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9151), - [3659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1843), - [3662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1844), - [3665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9021), - [3668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9023), - [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9029), - [3674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9553), - [3677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9580), - [3680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9035), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11387), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6365), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11703), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11746), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11760), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11774), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11801), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11485), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11829), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11857), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11867), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11875), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11886), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11890), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11718), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11815), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11843), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11882), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11932), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11732), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11940), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11290), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11195), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11692), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8276), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11908), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11410), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10512), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10747), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10989), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11232), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11761), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11844), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11156), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10866), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11374), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11638), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11923), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10556), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11128), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8365), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8396), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [4103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(23), - [4106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(484), - [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(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), - [4130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1116), - [4133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9162), - [4136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1560), - [4139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1561), - [4142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1882), - [4145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(154), - [4148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(11379), - [4151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(11380), - [4154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(11381), - [4157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(11962), - [4160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(2725), - [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(11744), - [4166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(4375), - [4169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(97), - [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(2306), - [4175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(110), - [4178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1848), - [4181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1849), - [4184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1649), - [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(985), - [4190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(8800), - [4193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1027), - [4196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1529), - [4199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(533), - [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9151), - [4205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1843), - [4208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1844), - [4211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9021), - [4214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9023), - [4217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9029), - [4220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9553), - [4223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9580), - [4226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9035), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8408), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8432), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8384), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11523), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dot_call, 5, 0, 37), - [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__dot_call, 5, 0, 37), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dot_call, 6, 0, 37), - [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__dot_call, 6, 0, 37), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__operator_token, 1, 0, 0), - [4305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__operator_token, 1, 0, 0), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dot_call, 3, 0, 37), - [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__dot_call, 3, 0, 37), - [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [4323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), - [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), - [4327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7225), - [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(1969), - [4333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(11881), - [4336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(1995), - [4339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(10629), - [4342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2012), - [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8573), - [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), - [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), - [4355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7225), - [4358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(1969), - [4361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(11881), - [4364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(1995), - [4367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(10629), - [4370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2012), - [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), - [4377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7225), - [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(1969), - [4383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(11881), - [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(1995), - [4389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(10629), - [4392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2012), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), - [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(7225), - [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(1969), - [4417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(11881), - [4420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(1995), - [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(10629), - [4426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(2012), - [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), - [4433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(7225), - [4436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(1969), - [4439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(11881), - [4442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(1995), - [4445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(10629), - [4448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(2012), - [4451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7209), - [4454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(1991), - [4457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(11874), - [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2039), - [4463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(11621), - [4466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2095), - [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), - [4475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7209), - [4478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(1991), - [4481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(11874), - [4484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2039), - [4487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(11621), - [4490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2095), - [4493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7209), - [4496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(1991), - [4499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(11874), - [4502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2039), - [4505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(11621), - [4508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2095), - [4511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(7209), - [4514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(1991), - [4517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(11874), - [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(2039), - [4523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(11621), - [4526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(2095), - [4529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(7209), - [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(1991), - [4535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(11874), - [4538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(2039), - [4541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(11621), - [4544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(2095), - [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 1, 0, 0), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 1, 0, 0), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10633), - [4553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 2, 0, 0), - [4555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 2, 0, 0), - [4557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 3, 0, 0), - [4559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 3, 0, 0), - [4561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), - [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), - [4565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10633), - [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 7, 10, 176), - [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 7, 10, 176), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10842), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [4582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), - [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), - [4586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), - [4588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), - [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7712), - [4593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__splattable_type, 1, 0, 0), - [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__splattable_type, 1, 0, 0), - [4597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_args_proc_type, 2, 10, 46), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_args_proc_type, 2, 10, 46), - [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 10, 163), - [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 10, 163), - [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), - [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nilable_type, 2, 0, 0), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nilable_type, 2, 0, 0), - [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instance_type, 4, 0, 75), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instance_type, 4, 0, 75), - [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof, 6, 0, 0), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof, 6, 0, 0), - [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type, 3, 0, 0), - [4633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type, 3, 0, 0), - [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple_type, 4, 0, 0), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple_type, 4, 0, 0), - [4639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc_type, 4, 10, 123), - [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_type, 4, 10, 123), - [4643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_array_type, 4, 0, 0), - [4645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_array_type, 4, 0, 0), - [4647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof, 4, 0, 0), - [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof, 4, 0, 0), - [4651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, 0, 0), - [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, 0, 0), - [4655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [4659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple_type, 5, 0, 0), - [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple_type, 5, 0, 0), - [4663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [4667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instance_type, 3, 0, 0), - [4669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instance_type, 3, 0, 0), - [4671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof, 5, 0, 0), - [4673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof, 5, 0, 0), - [4675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple_type, 3, 0, 0), - [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple_type, 3, 0, 0), - [4679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_type, 3, 0, 0), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_type, 3, 0, 0), - [4683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc_type, 3, 10, 87), - [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_type, 3, 10, 87), - [4687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 4, 0, 9), - [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 4, 0, 9), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), - [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11855), - [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 56), - [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 56), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), - [4701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 157), - [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 157), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [4707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 2, 0, 9), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), - [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 2, 0, 9), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), - [4715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 4, 0, 56), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), - [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 4, 0, 56), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), - [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 99), - [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 99), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), - [4729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 4, 0, 54), - [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 4, 0, 54), - [4733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 129), - [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 129), - [4737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 154), - [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 154), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11929), - [4743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_type, 1, 0, 0), - [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_type, 1, 0, 0), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), - [4749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bare_type, 1, 0, 0), SHIFT(1984), - [4752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 172), - [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 172), - [4756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11929), - [4759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 9, 0, 182), - [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 9, 0, 182), - [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 1, 0, 0), - [4765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 1, 0, 0), - [4767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 132), - [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 132), - [4771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1, 0, 0), - [4773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1, 0, 0), - [4775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forall, 3, 0, 55), - [4777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forall, 3, 0, 55), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11573), - [4781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), - [4785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), SHIFT_REPEAT(11573), - [4788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forall, 2, 0, 55), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forall, 2, 0, 55), - [4792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 170), - [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 170), - [4796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 3, 0, 23), - [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 3, 0, 23), - [4800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 153), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 153), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11481), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [4814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 131), - [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 131), - [4818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 173), - [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 173), - [4822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 156), - [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 156), - [4826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 158), - [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 158), - [4830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 55), - [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 55), - [4834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 98), - [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 98), - [4838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 9, 0, 181), - [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 9, 0, 181), - [4842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7682), - [4845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 100), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 100), - [4849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 10, 0, 184), - [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 10, 0, 184), - [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 101), - [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 101), - [4857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 11, 0, 184), - [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 11, 0, 184), - [4861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 132), - [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 132), - [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 56), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 56), - [4869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 101), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 101), - [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 153), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 153), - [4877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 154), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 154), - [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 3, 0, 9), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 3, 0, 9), - [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 156), - [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 156), - [4889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 157), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 157), - [4893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 4, 0, 23), - [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 4, 0, 23), - [4897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 158), - [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 158), - [4901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 100), - [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 100), - [4905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 9, 0, 170), - [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 9, 0, 170), - [4909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 9, 0, 172), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 9, 0, 172), - [4913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 9), - [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 9), - [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 129), - [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 129), - [4921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 9, 0, 173), - [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 9, 0, 173), - [4925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 131), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 131), - [4929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 10, 0, 181), - [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 10, 0, 181), - [4933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 10, 0, 182), - [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 10, 0, 182), - [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 56), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 56), - [4941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 98), - [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 98), - [4945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 99), - [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 99), - [4949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 54), - [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 54), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), - [4955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2126), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11727), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8675), - [4966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2126), - [4969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bare_type, 1, 0, 0), SHIFT(1993), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7453), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [4976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2126), - [4979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 4, 0, 75), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 4, 0, 75), - [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 3, 0, 0), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 3, 0, 0), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11766), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8543), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), - [5025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2155), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [5032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2155), - [5035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2155), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11838), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8721), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), - [5052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2163), - [5055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2163), - [5058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2163), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), - [5063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2173), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11755), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8703), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2173), - [5081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2173), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), - [5086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2188), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11889), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8732), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), - [5099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2179), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11741), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8685), - [5110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2179), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), - [5115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2181), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11905), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10976), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8709), - [5130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2181), - [5133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2181), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [5144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2188), - [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2188), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [5154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2179), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11379), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8606), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), - [5171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2203), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11428), - [5176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2203), - [5179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2203), - [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_operator, 4, 0, 67), - [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_operator, 4, 0, 67), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), - [5188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2210), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11852), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8723), - [5199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2210), - [5202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2210), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), - [5207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2212), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11896), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10851), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8625), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [5226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2212), - [5229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2212), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11430), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11178), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), - [5242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2237), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11769), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8706), - [5253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2237), - [5256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2237), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11396), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11893), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8733), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), - [5279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2251), - [5282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2251), - [5285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2251), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11697), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), - [5302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2254), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), - [5307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2256), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11796), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8716), - [5318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2254), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10518), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10883), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [5329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2256), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10741), - [5334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2256), - [5337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2254), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), - [5342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2273), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11864), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8730), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11529), - [5355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2273), - [5358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2273), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), - [5367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2292), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11713), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8658), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [5382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2292), - [5385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2292), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11651), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10693), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11214), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11238), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11751), - [5398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10755), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10800), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10755), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10760), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11239), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10995), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11684), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7692), - [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11307), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11926), - [5425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7692), - [5428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11684), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10613), - [5435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 11), - [5437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 11), - [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7644), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11868), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11372), - [5447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 76), - [5449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 76), - [5451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7644), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [5456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7709), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7932), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7709), - [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11474), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11644), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11942), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [5481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bare_type, 1, 0, 0), SHIFT(7603), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [5488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_string, 2, 0, 0), - [5490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_string, 2, 0, 0), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10637), - [5494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11644), - [5497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), - [5499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), - [5501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9011), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7675), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_call, 2, 0, 12), - [5512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_call, 2, 0, 12), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [5520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11237), - [5524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 16), - [5526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 16), - [5528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 12), - [5530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 12), - [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [5536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [5538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11237), - [5541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7675), - [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7989), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7643), - [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10660), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10994), - [5562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens, 3, 0, 0), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [5566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens, 3, 0, 0), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10739), - [5570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens, 1, 0, 0), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens, 1, 0, 0), - [5576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10739), - [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_percent_literal, 2, 0, 0), - [5581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_percent_literal, 2, 0, 0), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens, 2, 0, 0), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6734), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [5627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens, 2, 0, 0), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10977), - [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 2, 0, 0), - [5633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 2, 0, 0), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10977), - [5646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 1, 0, 0), - [5648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_chained_string_repeat1, 1, 0, 0), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_percent_literal, 3, 0, 0), - [5654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_percent_literal, 3, 0, 0), - [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 3, 0, 0), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), - [5660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 3, 0, 0), - [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 0), - [5664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 0), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [5668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 58), - [5670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 58), - [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [5674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9098), - [5677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_percent_literal, 2, 0, 0), - [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_percent_literal, 2, 0, 0), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [5683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7643), - [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 5, 0, 0), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), - [5690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 5, 0, 0), - [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_percent_literal, 3, 0, 0), - [5694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_percent_literal, 3, 0, 0), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [5698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), - [5702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [5708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), - [5710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(966), - [5713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), - [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, 0, 0), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), - [5719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, 0, 0), - [5721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10994), - [5724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 4, 0, 0), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), - [5728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 4, 0, 0), - [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), - [5734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 7, 0, 166), - [5738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 7, 0, 166), - [5740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 7, 0, 167), - [5742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 7, 0, 167), - [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 7, 0, 168), - [5746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 7, 0, 168), - [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 7, 0, 169), - [5750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 7, 0, 169), - [5752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 9, 0, 174), - [5754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 9, 0, 174), - [5756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 8, 0, 177), - [5758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 8, 0, 177), - [5760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 8, 0, 178), - [5762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 8, 0, 178), - [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 8, 0, 179), - [5766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 8, 0, 179), - [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 5, 0, 103), - [5770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 5, 0, 103), - [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 8, 0, 180), - [5774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 8, 0, 180), - [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 9, 0, 183), - [5778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 9, 0, 183), - [5780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 5, 0, 104), - [5782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 5, 0, 104), - [5784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 5, 0, 105), - [5786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 5, 0, 105), - [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 5, 0, 106), - [5790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 5, 0, 106), - [5792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 5, 0, 107), - [5794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 5, 0, 107), - [5796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 5, 0, 108), - [5798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 5, 0, 108), - [5800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exhaustive_case, 4, 0, 29), - [5802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exhaustive_case, 4, 0, 29), - [5804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 5, 0, 109), - [5806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 5, 0, 109), - [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 3, 0, 0), - [5810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 3, 0, 0), - [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 5, 0, 66), - [5814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 5, 0, 66), - [5816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 3, 0, 26), - [5818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 3, 0, 26), - [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_until, 5, 0, 66), - [5822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_until, 5, 0, 66), - [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5, 0, 0), - [5826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5, 0, 0), - [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, 0, 29), - [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, 0, 29), - [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens, 3, 0, 0), - [5834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens, 3, 0, 0), - [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_index_operator, 4, 0, 48), - [5838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_index_operator, 4, 0, 48), - [5840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 6, 0, 116), - [5842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 6, 0, 116), - [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 3, 0, 27), - [5846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 3, 0, 27), - [5848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1, 0, 0), - [5850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1, 0, 0), - [5852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1, 0, 0), - [5854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1, 0, 0), - [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple, 5, 0, 0), - [5858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple, 5, 0, 0), - [5860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5, 0, 80), - [5862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5, 0, 80), - [5864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5, 0, 81), - [5866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5, 0, 81), - [5868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 6, 0, 117), - [5870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 6, 0, 117), - [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pseudo_constant, 1, 0, 0), - [5874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pseudo_constant, 1, 0, 0), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7672), - [5878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_call, 3, 0, 25), - [5880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_call, 3, 0, 25), - [5882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7672), - [5885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2, 0, 0), - [5887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2, 0, 0), - [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 2, 0, 0), - [5891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 2, 0, 0), - [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_additive_operator, 2, 0, 4), - [5895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_additive_operator, 2, 0, 4), - [5897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unless, 5, 0, 80), - [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unless, 5, 0, 80), - [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unless, 6, 0, 117), - [5903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unless, 6, 0, 117), - [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 6, 0, 118), - [5907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 6, 0, 118), - [5909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_block, 5, 0, 75), - [5911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_block, 5, 0, 75), - [5913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 6, 0, 119), - [5915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 6, 0, 119), - [5917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unless, 5, 0, 81), - [5919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unless, 5, 0, 81), - [5921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_beginless_range, 2, 0, 5), - [5923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_beginless_range, 2, 0, 5), - [5925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, 0, 82), - [5927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, 0, 82), - [5929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 5, 0, 85), - [5931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 5, 0, 85), - [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_percent_literal, 2, 0, 0), - [5935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_percent_literal, 2, 0, 0), - [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7678), - [5939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_beginless_range, 3, 0, 19), - [5941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_beginless_range, 3, 0, 19), - [5943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array_percent_literal, 2, 0, 0), - [5945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_array_percent_literal, 2, 0, 0), - [5947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 3, 0, 28), - [5949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 3, 0, 28), - [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens_and_block, 3, 0, 0), - [5953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens_and_block, 3, 0, 0), - [5955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_symbol_array_percent_literal, 2, 0, 0), - [5957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_symbol_array_percent_literal, 2, 0, 0), - [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 3, 0, 0), - [5961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 3, 0, 0), - [5963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7678), - [5966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 5, 0, 75), - [5968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 5, 0, 75), - [5970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 5, 0, 106), - [5972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 5, 0, 106), - [5974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_parens, 2, 0, 0), - [5976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_parens, 2, 0, 0), - [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_symbol, 2, 0, 0), - [5980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_symbol, 2, 0, 0), - [5982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 0), - [5984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 0), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11466), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [5994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 2, 0, 7), - [5996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 2, 0, 7), - [5998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not, 2, 0, 0), - [6000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not, 2, 0, 0), - [6002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complement_operator, 2, 0, 4), - [6004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complement_operator, 2, 0, 4), - [6006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_call, 1, 0, 0), - [6008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_call, 1, 0, 0), - [6010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_argument, 2, 0, 0), - [6012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_argument, 2, 0, 0), - [6014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof, 4, 0, 0), - [6016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof, 4, 0, 0), - [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 10), - [6020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 2, 0, 10), - [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 1, 0, 0), - [6024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 1, 0, 0), - [6026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 5, 0, 107), - [6028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 5, 0, 107), - [6030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign, 3, 0, 24), - [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_assign, 3, 0, 24), - [6034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 4, 0, 32), - [6036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 4, 0, 32), - [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 4, 0, 62), - [6040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 4, 0, 62), - [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 4, 0, 31), - [6044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 4, 0, 31), - [6046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_operator, 3, 0, 33), - [6048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_operator, 3, 0, 33), - [6050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_operator, 3, 0, 34), - [6052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_operator, 3, 0, 34), - [6054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exponential_operator, 3, 0, 34), - [6056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exponential_operator, 3, 0, 34), - [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 4, 0, 63), - [6060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 4, 0, 63), - [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_and_operator, 3, 0, 33), - [6064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_and_operator, 3, 0, 33), - [6066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, 0, 35), - [6068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 3, 0, 35), - [6070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 3, 0, 34), - [6072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 3, 0, 34), - [6074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 5, 0, 108), - [6076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 5, 0, 108), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10596), - [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_or_operator, 3, 0, 34), - [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_or_operator, 3, 0, 34), - [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 5, 0, 109), - [6086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 5, 0, 109), - [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shift_operator, 3, 0, 34), - [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shift_operator, 3, 0, 34), - [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_operator, 3, 0, 34), - [6094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_operator, 3, 0, 34), - [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 5, 0, 0), - [6098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 5, 0, 0), - [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens_and_block, 5, 0, 0), - [6102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens_and_block, 5, 0, 0), - [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 13), - [6106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 13), - [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 4, 0, 64), - [6110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 4, 0, 64), - [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_and, 3, 0, 0), - [6114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_and, 3, 0, 0), - [6116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or, 3, 0, 0), - [6118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or, 3, 0, 0), - [6120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof, 6, 0, 0), - [6122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof, 6, 0, 0), - [6124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_sizeof, 4, 0, 0), - [6126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_sizeof, 4, 0, 0), - [6128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 6, 0, 135), - [6130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 6, 0, 135), - [6132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 2, 0, 0), - [6134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 2, 0, 0), - [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 4, 0, 65), - [6138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 4, 0, 65), - [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 6, 0, 136), - [6142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 6, 0, 136), - [6144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat, 2, 0, 0), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [6148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 6, 0, 137), - [6150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 6, 0, 137), - [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat, 2, 0, 0), - [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens, 4, 0, 0), - [6156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens, 4, 0, 0), - [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 4, 0, 0), - [6160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 4, 0, 0), - [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5, 0, 102), - [6164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5, 0, 102), - [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 4, 0, 0), - [6168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 4, 0, 0), - [6170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 4, 0, 32), - [6172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 4, 0, 32), - [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 4, 0, 62), - [6176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 4, 0, 62), - [6178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 4, 0, 31), - [6180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 4, 0, 31), - [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 7, 0, 142), - [6184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 7, 0, 142), - [6186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 7, 0, 143), - [6188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 7, 0, 143), - [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_call, 2, 0, 13), - [6192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_call, 2, 0, 13), - [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_block, 6, 0, 75), - [6196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_block, 6, 0, 75), - [6198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 7, 0, 145), - [6200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 7, 0, 145), - [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 17), - [6204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 17), - [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 4, 0, 63), - [6208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 4, 0, 63), - [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), - [6212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), - [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple, 3, 0, 0), - [6216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple, 3, 0, 0), - [6218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 4, 0, 64), - [6220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 4, 0, 64), - [6222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 6, 0, 75), - [6224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 6, 0, 75), - [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 4, 0, 65), - [6228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 4, 0, 65), - [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, 0, 133), - [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 6, 0, 148), - [6234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 6, 0, 148), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_percent_literal, 3, 0, 0), - [6238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_percent_literal, 3, 0, 0), - [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 4, 0, 68), - [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 4, 0, 68), - [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 6, 0, 149), - [6246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 6, 0, 149), - [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 6, 0, 150), - [6250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 6, 0, 150), - [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array_percent_literal, 3, 0, 0), - [6254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_array_percent_literal, 3, 0, 0), - [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 5, 0, 110), - [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_symbol_array_percent_literal, 3, 0, 0), - [6260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_symbol_array_percent_literal, 3, 0, 0), - [6262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 4, 0, 66), - [6264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 4, 0, 66), - [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens, 5, 0, 0), - [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens, 5, 0, 0), - [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expressions, 3, 0, 0), - [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expressions, 3, 0, 0), - [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_statement, 3, 0, 0), - [6276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_statement, 3, 0, 0), - [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char, 3, 0, 0), - [6280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char, 3, 0, 0), - [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_symbol, 3, 0, 0), - [6284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_symbol, 3, 0, 0), - [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 0), - [6288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 0), - [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_block, 2, 0, 0), - [6292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_block, 2, 0, 0), - [6294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 6, 0, 138), - [6296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 6, 0, 138), - [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_until, 4, 0, 66), - [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_until, 4, 0, 66), - [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens, 2, 0, 0), - [6304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens, 2, 0, 0), - [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 2, 0, 0), - [6308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 2, 0, 0), - [6310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 4, 0, 29), - [6312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 4, 0, 29), - [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 2, 0, 0), - [6316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 2, 0, 0), - [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 3, 0, 25), - [6320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 3, 0, 25), - [6322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens_and_block, 6, 0, 0), - [6324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens_and_block, 6, 0, 0), - [6326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 3, 0, 0), - [6328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 3, 0, 0), - [6330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 3, 0, 26), - [6332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 3, 0, 26), - [6334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 3, 0, 27), - [6336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 3, 0, 27), - [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 3, 0, 28), - [6340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 3, 0, 28), - [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 3, 0, 29), - [6344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 3, 0, 29), - [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 7, 0, 159), - [6348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 7, 0, 159), - [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 8, 0, 160), - [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 8, 0, 160), - [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 3, 0, 41), - [6356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 3, 0, 41), - [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expr, 3, 0, 42), - [6360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4, 0, 0), - [6362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4, 0, 0), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expr, 3, 0, 20), - [6366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 7, 0, 164), - [6368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 7, 0, 164), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple, 4, 0, 0), - [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple, 4, 0, 0), - [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 0), - [6376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 0), - [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 4, 0, 29), - [6380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 4, 0, 29), - [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unless, 4, 0, 29), - [6384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unless, 4, 0, 29), - [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_percent_literal, 4, 0, 0), - [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_percent_literal, 4, 0, 0), - [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_statement, 4, 0, 0), - [6392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_statement, 4, 0, 0), - [6394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 43), - [6396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 43), - [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 7, 0, 165), - [6400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 7, 0, 165), - [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_block, 3, 0, 0), - [6404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_block, 3, 0, 0), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [6408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 4, 0, 44), - [6410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 4, 0, 44), - [6412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10596), - [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 4, 0, 47), - [6417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 4, 0, 47), - [6419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 6, 0, 138), - [6421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 6, 0, 138), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7640), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10854), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7638), - [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11924), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [6477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10854), - [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7704), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [6484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7704), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11959), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), - [6497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8968), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7681), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10879), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), - [6518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11925), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11925), - [6533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7638), - [6536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7681), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [6549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(967), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), - [6560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7640), - [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7697), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), - [6569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7645), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), - [6578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_assign, 3, 0, 24), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), - [6584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_assign, 5, 0, 115), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7948), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7718), - [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10585), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), - [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_assign, 4, 0, 77), - [6606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_assign, 4, 0, 79), - [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7677), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [6612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7677), - [6615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7697), - [6618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7718), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), - [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier_rescue, 3, 0, 31), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6678), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier_ensure, 3, 0, 32), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6878), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [6709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8928), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), - [6716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9076), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7670), - [6727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7670), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [6740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9013), - [6743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7658), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7658), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11084), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [6758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier_if, 3, 0, 30), - [6760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier_unless, 3, 0, 30), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7652), - [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10707), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [6784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next, 2, 0, 0), - [6786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break, 2, 0, 0), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [6790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [6794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2, 0, 0), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [6800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7652), - [6803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(977), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [6816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11528), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11528), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7669), - [6825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7669), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7641), - [6844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7641), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6656), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [6901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10798), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10798), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [6908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(963), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [6913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(973), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [6998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9038), - [7001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9021), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), - [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7683), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11737), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11228), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [7064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11228), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11367), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), - [7073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(4049), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11885), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11365), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8590), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [7140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(969), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [7145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(4049), - [7148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(4049), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [7153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7683), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), - [7162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11367), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [7183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(971), - [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7648), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10560), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7702), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10949), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [7242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10560), - [7245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7702), - [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), - [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [7280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [7292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7648), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), - [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7987), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7650), - [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10581), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [7339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7656), - [7342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7650), - [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), - [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [7399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(970), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7656), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10848), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10517), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [7482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10517), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), - [7487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9007), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), - [7492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7708), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), - [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7685), - [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10815), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [7559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7685), - [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7655), - [7564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7655), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [7571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7701), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [7584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9027), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6746), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7959), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7654), - [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11607), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [7647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(961), - [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7715), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [7656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8910), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [7663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7654), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), - [7674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(5095), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11902), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11353), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8693), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), - [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [7707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(5095), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [7712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9046), - [7715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(5095), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), - [7728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7715), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [7779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [7781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [7813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8987), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [7820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7660), - [7822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7660), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6635), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [7915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [7919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(972), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [7926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(974), - [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [7991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [8003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6687), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [8023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expr, 3, 0, 42), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [8027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expr, 3, 0, 20), - [8029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(958), - [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7757), - [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7840), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8789), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11904), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), - [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11346), - [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [8048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [8054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11910), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), - [8060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(5509), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11907), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10688), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8726), - [8075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(5509), - [8078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(5509), - [8081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [8083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(960), - [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7903), - [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8072), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), - [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11355), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [8098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat, 2, 0, 0), - [8100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_splat, 2, 0, 0), - [8102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(957), - [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8074), - [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8124), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), - [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11206), - [8115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8966), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), - [8140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9099), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [8157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign, 3, 0, 24), - [8159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_assign, 3, 0, 24), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), - [8165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [8187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 5, 0, 110), - [8189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, 0, 133), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [8215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [8217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [8223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [8229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11003), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), - [8257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11810), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10839), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11201), - [8265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8196), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8864), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8943), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8950), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [8277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(959), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [8308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(975), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8381), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [8339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracket_argument_list, 1, 0, 0), - [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [8359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [8365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracket_argument_list, 1, 0, 0), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [8379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_repeat1, 2, 0, 29), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7463), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [8425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [8445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), - [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), - [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8255), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), - [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [8483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [8495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [8521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [8525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [8533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), - [8573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [8601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(962), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10615), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8485), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8211), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [8718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(968), - [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8457), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9286), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9128), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8484), - [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [8803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [8807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), - [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), - [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), - [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), - [8921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [8923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [8925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [8931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 122), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), - [8935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implicit_object_tuple_repeat1, 2, 0, 0), - [8937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), - [8949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [8953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [8959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 6, 0, 161), - [8961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 6, 0, 162), - [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [8975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 3, 0, 84), - [8977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 5, 0, 144), - [8979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 5, 0, 147), - [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [8983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [8985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [8993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 7, 0, 175), - [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [8997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [8999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [9005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [9007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [9009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), - [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [9023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_entry, 3, 0, 0), - [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [9031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), - [9035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 121), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), - [9039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [9041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [9059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [9081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [9087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [9093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9311), - [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9521), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10524), - [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9241), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9278), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9185), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9252), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11944), - [9181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8081), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7888), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11909), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11294), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10658), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10779), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10671), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11584), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10547), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10649), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10801), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11032), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10667), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11274), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11564), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11955), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11482), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10946), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10624), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11423), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11654), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11937), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11417), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11635), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11646), - [9265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11399), - [9271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7761), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), - [9275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11810), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), - [9287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7027), - [9290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7027), - [9293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9623), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7035), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), - [9301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11824), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8014), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11151), - [9307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8437), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8516), - [9313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7027), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), - [9318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7032), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11782), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11794), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8390), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8857), - [9333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7035), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11824), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8437), - [9340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7032), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), - [9345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7037), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11899), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10914), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8643), - [9360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7032), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), - [9367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7035), - [9370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7035), - [9373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7037), - [9376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7037), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), - [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), - [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11881), - [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10629), - [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11874), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11621), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11257), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10724), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11304), - [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8360), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11560), - [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11892), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), - [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11215), - [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10538), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10623), - [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10686), - [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), - [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8449), - [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10731), - [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11946), - [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), - [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10789), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11842), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10847), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10912), - [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10973), - [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10979), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10986), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10988), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10999), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11004), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11006), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11009), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11012), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11017), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11020), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11022), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11026), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11030), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11036), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11044), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11049), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11054), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11057), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11062), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11067), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11073), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11078), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8218), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10655), - [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8418), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10920), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11251), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11158), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8387), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10944), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11448), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11706), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [9681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_instance_param_list, 3, 0, 0), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11680), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11633), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11060), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11427), - [9701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11427), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11656), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), - [9714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7714), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11391), - [9721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7694), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), - [9726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11391), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10692), - [9733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7691), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11116), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11906), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [9758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10692), - [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), - [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), - [9831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7667), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), - [9836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7665), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10762), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), - [9849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), SHIFT_REPEAT(11040), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11040), - [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(9911), - [9862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9158), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9191), - [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), - [9874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2, 0, 0), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7913), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8320), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11897), - [9898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7649), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), - [9903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 2, 0, 0), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7894), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [9913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_def, 4, 0, 9), - [9915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 4, 0, 49), - [9917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 52), - [9919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_def, 5, 0, 49), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), - [9923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 8, 0, 151), - [9925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 8, 0, 151), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), - [9929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 8), - [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(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), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11612), - [9947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 111), - [9949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 51), - [9951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 4, 0, 48), - [9953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 6, 0, 124), - [9955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 2, 0, 15), - [9957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 5, 0, 88), - [9959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 125), - [9961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 126), - [9963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 112), - [9965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 127), - [9967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 128), - [9969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 69), - [9971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 6, 0, 96), - [9973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_def, 4, 0, 49), - [9975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_assign, 4, 0, 53), - [9977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 6, 0, 96), - [9979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 6, 0, 97), - [9981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 8), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), - [9985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 113), - [9987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 5, 0, 88), - [9989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 114), - [9991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 70), - [9993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 3, 0, 0), - [9995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, 0, 0), - [9997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 38), - [9999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 39), - [10001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 40), - [10003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 7, 0, 152), - [10005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 71), - [10007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_def, 4, 0, 9), - [10009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11210), - [10012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 4, 0, 9), - [10014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_assign, 3, 0, 24), - [10016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias, 4, 0, 59), - [10018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 4, 0, 9), - [10020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 4, 0, 22), - [10022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_def, 2, 0, 8), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11210), - [10026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 141), - [10028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 4, 0, 49), - [10030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 6, 0, 88), - [10032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 5, 0, 49), - [10034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_def, 3, 0, 9), - [10036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 5, 0, 49), - [10038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias, 5, 0, 89), - [10040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 90), - [10042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 91), - [10044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 92), - [10046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 93), - [10048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 94), - [10050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 95), - [10052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 5, 0, 96), - [10054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 7, 0, 124), - [10056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 5, 0, 96), - [10058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 5, 0, 97), - [10060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 3, 0, 9), - [10062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 2, 0, 0), - [10064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 7, 0, 124), - [10066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 3, 0, 9), - [10068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 72), - [10070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 73), - [10072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_def, 3, 0, 9), - [10074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 74), - [10076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require, 2, 0, 0), - [10078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 6, 0, 88), - [10080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 6, 0, 124), - [10082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 15), - [10084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_def, 3, 0, 21), - [10086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 3, 0, 22), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10882), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9324), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8822), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11288), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9114), - [10106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10882), - [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), - [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), - [10113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), - [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10915), - [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), - [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), - [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10781), - [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11859), - [10125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11859), - [10128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), SHIFT_REPEAT(10781), - [10131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10915), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8230), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11649), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8231), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [10160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7716), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), - [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7957), - [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8429), - [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11356), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8446), - [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), - [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8467), - [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), - [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10541), - [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), - [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11554), - [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7921), - [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8385), - [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), - [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11245), - [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8414), - [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [10199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7674), - [10202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7663), - [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9383), - [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9512), - [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(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), - [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9410), - [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9411), - [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9795), - [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9482), - [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(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), - [10247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7651), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11884), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11468), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9321), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9231), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8413), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8454), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9301), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8453), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9247), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8366), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9230), - [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [10322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_instance_param_list, 2, 0, 0), - [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9304), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8411), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9300), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9298), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9194), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), - [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8248), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9259), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9239), - [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(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), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7729), - [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(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), - [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9266), - [10463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7647), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9265), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9366), - [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), - [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6786), - [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), - [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), - [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), - [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), - [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8717), - [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6805), - [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7967), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8250), - [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8266), - [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8277), - [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8293), - [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8689), - [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [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(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(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), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [10588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_param_list, 3, 0, 0), - [10590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7693), - [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), - [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), - [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), - [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), - [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), - [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), - [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), - [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), - [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), - [10655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7688), - [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), - [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), - [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8792), - [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8285), - [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [10712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11457), - [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), - [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7938), - [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), - [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), - [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), - [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), - [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [10793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_param_list, 2, 0, 0), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11457), - [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), - [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), - [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7908), - [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), - [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), - [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), - [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), - [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9360), - [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), - [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), - [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), - [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), - [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), - [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), - [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), - [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9402), - [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8830), - [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), - [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), - [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), - [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8587), - [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8639), - [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), - [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9433), - [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), - [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9436), - [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9442), - [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), - [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9736), - [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9747), - [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [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(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), - [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9269), - [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9269), - [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), - [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9291), - [10935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [10937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9291), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9223), - [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [10955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9269), - [10958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1789), - [10961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9269), - [10964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 2, 0, 0), - [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11315), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11399), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11402), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11444), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11729), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10031), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10491), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9225), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8678), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9253), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8968), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8992), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9147), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9510), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9511), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9072), + [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10028), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9314), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9096), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9221), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11824), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11825), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11826), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12067), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11834), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11339), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9222), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8652), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9217), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9082), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8939), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9094), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9671), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9672), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9095), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11680), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11901), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10105), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9338), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8985), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9187), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11936), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11895), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11896), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12072), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12014), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11637), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9189), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8717), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9171), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9091), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9035), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8982), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9478), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9479), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8983), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11063), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11921), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10135), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9258), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8971), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9161), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11987), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11937), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11938), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12075), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10895), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10855), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9163), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8755), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9237), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9119), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9066), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8965), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9681), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9682), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8966), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10899), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10063), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9334), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9032), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9157), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11852), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11853), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11854), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12069), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10882), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11533), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9175), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8679), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9232), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9075), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8953), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9022), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9440), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9441), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9027), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12034), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11392), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11782), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10077), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9345), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8984), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9198), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11866), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11867), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11868), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12070), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11303), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11741), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9208), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8687), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9216), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8979), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9076), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8954), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9664), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9667), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8955), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10920), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10667), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11719), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10146), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9350), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9008), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9238), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11991), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11951), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11952), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12076), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10945), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10657), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9240), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8767), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9233), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8940), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9085), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9006), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9406), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9407), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9007), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10949), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10089), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9287), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9080), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9209), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11894), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11881), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11882), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12071), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11296), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11942), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9210), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8703), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9206), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9034), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8981), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9077), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9425), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9426), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9078), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11602), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11023), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10735), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [1167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lhs_splat, 2, 0, 0), + [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lhs_splat, 2, 0, 0), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10813), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1, 0, 2), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1, 0, 2), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_call, 1, 0, 2), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_call, 1, 0, 2), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1, 0, 3), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1, 0, 3), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 4, 0, 57), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 4, 0, 57), + [1215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 1, 0, 0), + [1217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 1, 0, 0), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10044), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9374), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8948), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9162), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11838), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11839), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11840), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12068), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11641), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9178), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8674), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9199), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9010), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9021), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8942), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9464), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9471), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8943), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10430), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6205), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10436), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8316), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9442), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9477), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9443), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9444), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11253), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9741), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9383), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9384), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10229), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10527), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6790), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9121), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9554), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9137), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9116), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9140), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9124), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9781), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9142), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9144), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9146), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9110), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8933), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9118), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9131), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9113), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9134), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9051), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9009), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10117), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9321), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9038), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9164), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11950), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11909), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11910), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12073), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10645), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9165), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8732), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9158), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8960), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9098), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9036), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9551), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9552), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9037), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10429), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9377), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9019), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9251), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11476), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11477), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11478), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12060), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11612), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9252), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8820), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9247), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9014), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9015), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9016), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9472), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9473), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9017), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8228), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8302), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8309), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8011), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8709), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8832), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8588), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8028), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9503), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10359), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1, 0, 0), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1, 0, 0), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), + [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5), + [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2044), + [1839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(497), + [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3089), + [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3162), + [1848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2888), + [1851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10108), + [1854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3089), + [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9299), + [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9097), + [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1094), + [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9205), + [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10370), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), + [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10323), + [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(8318), + [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9655), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9698), + [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9488), + [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9490), + [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(12057), + [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1353), + [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1495), + [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1683), + [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5772), + [1907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9936), + [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9333), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9329), + [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(602), + [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [1922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(601), + [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1871), + [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11315), + [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11399), + [1937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11402), + [1940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11444), + [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2344), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(11729), + [1949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2938), + [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2228), + [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10031), + [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(111), + [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), + [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1531), + [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(10491), + [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1560), + [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9225), + [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1008), + [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(8678), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1034), + [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1286), + [1991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(334), + [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9253), + [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1684), + [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1765), + [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(8968), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(8992), + [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9147), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9510), + [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9511), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(9072), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), + [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elsif, 3, 0, 29), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, 0, 14), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 2, 0, 14), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_beginless_range, 1, 0, 1), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_beginless_range, 1, 0, 1), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9976), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9373), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8963), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9250), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11794), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11795), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11796), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12065), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10959), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9202), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9241), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9046), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9047), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8959), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9572), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9573), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8961), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 3, 0, 60), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 3, 0, 60), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 3, 0, 61), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 3, 0, 61), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_beginless_range, 2, 0, 1), + [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_beginless_range, 2, 0, 1), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6672), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 5, 0, 136), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 5, 0, 136), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, 0, 14), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 3, 0, 14), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 2, 0, 0), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 2, 0, 0), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7991), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9665), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8991), + [2231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2098), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8776), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9547), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when, 3, 0, 29), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8040), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9523), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10126), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9393), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9106), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9227), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11962), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11923), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11924), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12074), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10740), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6561), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9231), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8745), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9215), + [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9065), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8964), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9103), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9605), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9606), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9105), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7990), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9620), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8199), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9455), + [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8041), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9524), + [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8542), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9538), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_when, 4, 0, 110), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8550), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9539), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8262), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9459), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8305), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9453), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8016), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9457), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8591), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9543), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8014), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9449), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8763), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9546), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8304), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9452), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8263), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9460), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8590), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9542), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8198), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9454), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in, 4, 0, 110), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7987), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8017), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9050), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8303), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8306), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8197), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8275), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8276), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8333), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8334), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8357), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8358), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9109), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8052), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8883), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8053), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8558), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8589), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8809), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8680), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8705), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8647), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8649), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9112), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8986), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9115), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9117), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9120), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7962), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7963), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9123), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9977), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 1, 0, 0), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10010), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8202), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9527), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9577), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9528), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9529), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10810), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9982), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9378), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9385), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10343), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10534), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 1, 0, 0), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9128), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9130), + [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in, 3, 0, 29), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9133), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9491), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9136), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9139), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10435), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9141), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7977), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9143), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7978), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9145), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8013), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10008), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9317), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9052), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9182), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11810), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11811), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11812), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12066), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11775), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9183), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8639), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9180), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9092), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9093), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9048), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9649), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9650), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9049), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8808), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8277), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8054), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8811), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6676), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6681), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ensure, 1, 0, 0), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2136), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), + [2877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9492), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10303), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8946), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9125), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9084), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9005), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break, 1, 0, 0), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break, 1, 0, 0), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 1, 0, 0), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 1, 0, 0), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next, 1, 0, 0), + [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_next, 1, 0, 0), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dot_call, 3, 0, 36), + [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__dot_call, 3, 0, 36), + [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign_call, 3, 0, 36), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_call, 3, 0, 36), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9249), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9224), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9300), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9301), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9362), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11885), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11846), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9839), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9218), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9690), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11497), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9500), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracket_argument_list, 3, 0, 0), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracket_argument_list, 3, 0, 0), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracket_argument_list, 2, 0, 0), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracket_argument_list, 2, 0, 0), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9534), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9676), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9699), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9582), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11481), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11804), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11888), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11930), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11944), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11832), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6805), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10706), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11902), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11761), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11061), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11976), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11874), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11958), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11860), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11916), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11968), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11818), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [3585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(47), + [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(482), + [3591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(4364), + [3594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(4368), + [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(4376), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(10429), + [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(4364), + [3606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9377), + [3609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9019), + [3612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1234), + [3615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9251), + [3618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1384), + [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1830), + [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1831), + [3627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1885), + [3630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(245), + [3633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(11476), + [3636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(11477), + [3639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(11478), + [3642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(12060), + [3645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(2665), + [3648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(11612), + [3651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(4397), + [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(124), + [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(2399), + [3660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(127), + [3663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1823), + [3666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1824), + [3669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1571), + [3672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9252), + [3675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1059), + [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(8820), + [3681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1016), + [3684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1715), + [3687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(538), + [3690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9247), + [3693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1817), + [3696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(1818), + [3699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9014), + [3702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9015), + [3705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9016), + [3708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9472), + [3711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9473), + [3714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 18), SHIFT_REPEAT(9017), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11941), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11955), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11965), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11973), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11984), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11988), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6733), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10960), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6543), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4815), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11800), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11484), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11829), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11843), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11857), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11871), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11899), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11815), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11913), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11980), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11927), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12030), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11720), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [3927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(23), + [3930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(482), + [3933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(4364), + [3936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(4368), + [3939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(4376), + [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(10429), + [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(4364), + [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9377), + [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9019), + [3954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1220), + [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9251), + [3960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1356), + [3963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1357), + [3966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1880), + [3969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(150), + [3972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(11476), + [3975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(11477), + [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(11478), + [3981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(12060), + [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(2665), + [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(11612), + [3990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(4397), + [3993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(101), + [3996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(2305), + [3999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(127), + [4002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1823), + [4005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1824), + [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1571), + [4011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9252), + [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1024), + [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(8820), + [4020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1042), + [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1440), + [4026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(528), + [4029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9247), + [4032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1817), + [4035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(1818), + [4038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9014), + [4041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9015), + [4044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9016), + [4047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9472), + [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9473), + [4053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 78), SHIFT_REPEAT(9017), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6865), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8474), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8352), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8406), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8413), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8375), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8380), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7898), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7893), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11679), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10991), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11525), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11776), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11579), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11619), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11886), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10639), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11728), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10912), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11374), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11925), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11570), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11053), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11605), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12024), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10649), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10745), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11286), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dot_call, 5, 0, 37), + [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__dot_call, 5, 0, 37), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dot_call, 3, 0, 37), + [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__dot_call, 3, 0, 37), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__dot_call, 6, 0, 37), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__dot_call, 6, 0, 37), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__operator_token, 1, 0, 0), + [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__operator_token, 1, 0, 0), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [4360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), + [4364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7182), + [4367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(1971), + [4370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(11979), + [4373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(1995), + [4376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(10808), + [4379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2024), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8676), + [4388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), + [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), + [4392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7182), + [4395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(1971), + [4398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(11979), + [4401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(1995), + [4404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(10808), + [4407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2024), + [4410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), + [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7182), + [4417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(1971), + [4420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(11979), + [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(1995), + [4426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(10808), + [4429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2024), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [4444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), + [4446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), + [4448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(7182), + [4451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(1971), + [4454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(11979), + [4457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(1995), + [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(10808), + [4463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(2024), + [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), + [4470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(7182), + [4473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(1971), + [4476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(11979), + [4479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(1995), + [4482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(10808), + [4485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(2024), + [4488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7169), + [4491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(1991), + [4494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(11972), + [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2041), + [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(11873), + [4503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2081), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8665), + [4512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7169), + [4515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(1991), + [4518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(11972), + [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2041), + [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(11873), + [4527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2081), + [4530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7169), + [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(1991), + [4536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(11972), + [4539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2041), + [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(11873), + [4545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2081), + [4548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(7169), + [4551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(1991), + [4554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(11972), + [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(2041), + [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(11873), + [4563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 2, 0, 0), SHIFT(2081), + [4566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(7169), + [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(1991), + [4572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(11972), + [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(2041), + [4578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(11873), + [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_proc_type, 3, 0, 0), SHIFT(2081), + [4584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 1, 0, 0), + [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 1, 0, 0), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10812), + [4590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 3, 0, 0), + [4592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 3, 0, 0), + [4594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant, 2, 0, 0), + [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant, 2, 0, 0), + [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), + [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), + [4602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10812), + [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 7, 10, 176), + [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 7, 10, 176), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11651), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2, 0, 0), + [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2, 0, 0), + [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_proc_type, 6, 10, 163), + [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 10, 163), + [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), + [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), + [4631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7704), + [4634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [4638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__splattable_type, 1, 0, 0), + [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__splattable_type, 1, 0, 0), + [4642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_args_proc_type, 2, 10, 46), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_args_proc_type, 2, 10, 46), + [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple_type, 3, 0, 0), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple_type, 3, 0, 0), + [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_type, 3, 0, 0), + [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_type, 3, 0, 0), + [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nilable_type, 2, 0, 0), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nilable_type, 2, 0, 0), + [4664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc_type, 3, 10, 87), + [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_type, 3, 10, 87), + [4672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple_type, 4, 0, 0), + [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple_type, 4, 0, 0), + [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2, 0, 0), + [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2, 0, 0), + [4680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc_type, 4, 10, 125), + [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_type, 4, 10, 125), + [4688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof, 4, 0, 0), + [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof, 4, 0, 0), + [4692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instance_type, 3, 0, 0), + [4694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instance_type, 3, 0, 0), + [4696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof, 5, 0, 0), + [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof, 5, 0, 0), + [4700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof, 6, 0, 0), + [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof, 6, 0, 0), + [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_instance_type, 4, 0, 75), + [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_instance_type, 4, 0, 75), + [4708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_array_type, 4, 0, 0), + [4710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_array_type, 4, 0, 0), + [4712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type, 3, 0, 0), + [4718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type, 3, 0, 0), + [4720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple_type, 5, 0, 0), + [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple_type, 5, 0, 0), + [4724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 4, 0, 56), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), + [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 4, 0, 56), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), + [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11538), + [4734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 99), + [4736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 99), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), + [4740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 2, 0, 9), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), + [4744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 2, 0, 9), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), + [4748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 56), + [4750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 56), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), + [4754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 4, 0, 9), + [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 4, 0, 9), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), + [4760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 157), + [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 157), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), + [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10727), + [4769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 134), + [4771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 134), + [4773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 172), + [4775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 172), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10727), + [4779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 9, 0, 182), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 9, 0, 182), + [4783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__bare_type, 1, 0, 0), + [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__bare_type, 1, 0, 0), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), + [4789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bare_type, 1, 0, 0), SHIFT(1984), + [4792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 4, 0, 54), + [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 4, 0, 54), + [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 1, 0, 0), + [4798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 1, 0, 0), + [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1, 0, 0), + [4802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1, 0, 0), + [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 154), + [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 154), + [4808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 131), + [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 131), + [4812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), + [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), + [4816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), SHIFT_REPEAT(10900), + [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forall, 3, 0, 55), + [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forall, 3, 0, 55), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10900), + [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forall, 2, 0, 55), + [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forall, 2, 0, 55), + [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 153), + [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 153), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11961), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 98), + [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 98), + [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 173), + [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 173), + [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 9, 0, 181), + [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 9, 0, 181), + [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 100), + [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 100), + [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 10, 0, 184), + [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 10, 0, 184), + [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 133), + [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 133), + [4867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 55), + [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 55), + [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 170), + [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 170), + [4875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 101), + [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 101), + [4879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 156), + [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 156), + [4883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 158), + [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 158), + [4887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7732), + [4890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 3, 0, 23), + [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 3, 0, 23), + [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 131), + [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 131), + [4898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 133), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 133), + [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 56), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 56), + [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 4, 0, 23), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 4, 0, 23), + [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 7, 0, 134), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 7, 0, 134), + [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 153), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 153), + [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 154), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 154), + [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 9), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 9), + [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 156), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 156), + [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 157), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 157), + [4934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 54), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 54), + [4938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 8, 0, 158), + [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 8, 0, 158), + [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 9, 0, 170), + [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 9, 0, 170), + [4946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 9, 0, 172), + [4948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 9, 0, 172), + [4950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 99), + [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 99), + [4954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 9, 0, 173), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 9, 0, 173), + [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 100), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 100), + [4962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 10, 0, 181), + [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 10, 0, 181), + [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 10, 0, 182), + [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 10, 0, 182), + [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 11, 0, 184), + [4972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 11, 0, 184), + [4974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 5, 0, 56), + [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 5, 0, 56), + [4978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 101), + [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 101), + [4982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 3, 0, 9), + [4984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 3, 0, 9), + [4986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__base_method_def, 6, 0, 98), + [4988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__base_method_def, 6, 0, 98), + [4990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bare_type, 1, 0, 0), SHIFT(1993), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11824), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8760), + [5005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 4, 0, 75), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 4, 0, 75), + [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 3, 0, 0), + [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 3, 0, 0), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [5015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2137), + [5018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2137), + [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2137), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11315), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), + [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2160), + [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2160), + [5072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2160), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11936), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8800), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [5089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2169), + [5092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2169), + [5095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2169), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), + [5100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2172), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11852), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8783), + [5111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2172), + [5114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2172), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11987), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8810), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11838), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8774), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), + [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2184), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12003), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11079), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8793), + [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2184), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), + [5167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2185), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [5174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2184), + [5177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2185), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [5182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2186), + [5185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2186), + [5188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2185), + [5191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2186), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), + [5196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2199), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11476), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8695), + [5207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2199), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11680), + [5216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2199), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7473), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11994), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10990), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8727), + [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_operator, 4, 0, 67), + [5237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_operator, 4, 0, 67), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), + [5241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2207), + [5244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2207), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), + [5249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2212), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11950), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8802), + [5260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2207), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [5267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2212), + [5270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2212), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11339), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11901), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11866), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8789), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), + [5291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2242), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11637), + [5296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2242), + [5299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2242), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11991), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8812), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), + [5316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2250), + [5319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2250), + [5322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2250), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [5327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2267), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11894), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8796), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11063), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), + [5346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2266), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11794), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8713), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11921), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10899), + [5365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2266), + [5368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2266), + [5371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2267), + [5374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2267), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11962), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8807), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), + [5391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2274), + [5394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2274), + [5397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2274), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11392), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), + [5404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(2297), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11810), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8752), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12034), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [5421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(2297), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10855), + [5426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(2297), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11533), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11782), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10920), + [5435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10662), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10949), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10662), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10667), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11741), + [5446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 11), + [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat1, 2, 0, 11), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11602), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11500), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7726), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10860), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10657), + [5466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11500), + [5469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7726), + [5472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 76), + [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_multi_assign_repeat2, 2, 0, 76), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11719), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11942), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7690), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [5486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7690), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11023), + [5491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7725), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10813), + [5496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__bare_type, 1, 0, 0), SHIFT(7660), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [5501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(12029), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10735), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7725), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11606), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12029), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), + [5534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), + [5536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9082), + [5539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_string, 2, 0, 0), + [5541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_string, 2, 0, 0), + [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7687), + [5545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 16), + [5547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 16), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_call, 2, 0, 12), + [5553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_call, 2, 0, 12), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [5559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [5561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7687), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [5568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 12), + [5570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 12), + [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [5574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [5576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10918), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10918), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10898), + [5587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens, 1, 0, 0), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6698), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens, 1, 0, 0), + [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens, 2, 0, 0), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens, 2, 0, 0), + [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens, 3, 0, 0), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens, 3, 0, 0), + [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_percent_literal, 3, 0, 0), + [5645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_percent_literal, 3, 0, 0), + [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, 0, 0), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [5651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, 0, 0), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11083), + [5655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7753), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_percent_literal, 2, 0, 0), + [5662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_percent_literal, 2, 0, 0), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [5666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10898), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7753), + [5677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10829), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11740), + [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_percent_literal, 2, 0, 0), + [5685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_percent_literal, 2, 0, 0), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11083), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), + [5696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(971), + [5699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), + [5701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8968), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 1, 0, 0), + [5708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_chained_string_repeat1, 1, 0, 0), + [5710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 5, 0, 0), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [5714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 5, 0, 0), + [5716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11740), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 4, 0, 0), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [5725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 4, 0, 0), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [5733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 3, 0, 0), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [5739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 3, 0, 0), + [5741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 0), + [5743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 0), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_percent_literal, 3, 0, 0), + [5749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_percent_literal, 3, 0, 0), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [5753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), + [5757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, 0, 58), + [5763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, 0, 58), + [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 2, 0, 0), + [5769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 2, 0, 0), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [5773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expr, 3, 0, 20), + [5775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 7, 0, 169), + [5777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 7, 0, 169), + [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 5, 0, 112), + [5781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_call, 3, 0, 25), + [5783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_call, 3, 0, 25), + [5785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 13), + [5787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 13), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7714), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11717), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5, 0, 81), + [5801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5, 0, 81), + [5803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 4, 0, 65), + [5805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 4, 0, 65), + [5807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 2, 0, 0), + [5809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 2, 0, 0), + [5811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 2, 0, 0), + [5813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 2, 0, 0), + [5815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 3, 0, 34), + [5817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 3, 0, 34), + [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5, 0, 102), + [5821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5, 0, 102), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11718), + [5825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, 0, 135), + [5827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens, 5, 0, 0), + [5829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens, 5, 0, 0), + [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 5, 0, 75), + [5833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 5, 0, 75), + [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 4, 0, 32), + [5837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 4, 0, 32), + [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 5, 0, 106), + [5841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 5, 0, 106), + [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 4, 0, 0), + [5845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 4, 0, 0), + [5847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1, 0, 0), + [5849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1, 0, 0), + [5851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 9, 0, 174), + [5853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 9, 0, 174), + [5855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 8, 0, 177), + [5857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 8, 0, 177), + [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 6, 0, 150), + [5861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 6, 0, 150), + [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1, 0, 0), + [5865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1, 0, 0), + [5867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shift_operator, 3, 0, 34), + [5869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shift_operator, 3, 0, 34), + [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 17), + [5873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 17), + [5875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [5877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [5879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 5, 0, 109), + [5881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 5, 0, 109), + [5883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple, 3, 0, 0), + [5885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple, 3, 0, 0), + [5887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 5, 0, 107), + [5889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 5, 0, 107), + [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 6, 0, 140), + [5893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 6, 0, 140), + [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_percent_literal, 3, 0, 0), + [5897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_percent_literal, 3, 0, 0), + [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array_percent_literal, 3, 0, 0), + [5901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_array_percent_literal, 3, 0, 0), + [5903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_symbol_array_percent_literal, 3, 0, 0), + [5905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_symbol_array_percent_literal, 3, 0, 0), + [5907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 8, 0, 178), + [5909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 8, 0, 178), + [5911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 5, 0, 108), + [5913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 5, 0, 108), + [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unless, 5, 0, 80), + [5917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unless, 5, 0, 80), + [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expressions, 3, 0, 0), + [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expressions, 3, 0, 0), + [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expr, 3, 0, 42), + [5925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_statement, 3, 0, 0), + [5927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_statement, 3, 0, 0), + [5929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char, 3, 0, 0), + [5931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char, 3, 0, 0), + [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_symbol, 3, 0, 0), + [5935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_symbol, 3, 0, 0), + [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 0), + [5939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 0), + [5941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2, 0, 0), + [5943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2, 0, 0), + [5945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_block, 2, 0, 0), + [5947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_block, 2, 0, 0), + [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 5, 0, 109), + [5951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 5, 0, 109), + [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unless, 5, 0, 81), + [5955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unless, 5, 0, 81), + [5957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 5, 0, 0), + [5959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 5, 0, 0), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple, 5, 0, 0), + [5965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple, 5, 0, 0), + [5967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 8, 0, 179), + [5969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 8, 0, 179), + [5971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 6, 0, 148), + [5973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 6, 0, 148), + [5975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_beginless_range, 3, 0, 19), + [5977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_beginless_range, 3, 0, 19), + [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 4, 0, 68), + [5981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 4, 0, 68), + [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_percent_literal, 2, 0, 0), + [5985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_percent_literal, 2, 0, 0), + [5987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens_and_block, 6, 0, 0), + [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens_and_block, 6, 0, 0), + [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 2, 0, 0), + [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 2, 0, 0), + [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 8, 0, 180), + [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 8, 0, 180), + [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_additive_operator, 2, 0, 4), + [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_additive_operator, 2, 0, 4), + [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5, 0, 80), + [6005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5, 0, 80), + [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens_and_block, 5, 0, 0), + [6009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens_and_block, 5, 0, 0), + [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 9, 0, 183), + [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 9, 0, 183), + [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7711), + [6017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof, 6, 0, 0), + [6019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof, 6, 0, 0), + [6021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 5, 0, 66), + [6023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 5, 0, 66), + [6025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat, 2, 0, 0), + [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array_percent_literal, 2, 0, 0), + [6029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_array_percent_literal, 2, 0, 0), + [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_symbol_array_percent_literal, 2, 0, 0), + [6033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_symbol_array_percent_literal, 2, 0, 0), + [6035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_until, 5, 0, 66), + [6037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_until, 5, 0, 66), + [6039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat, 2, 0, 0), + [6041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 6, 0, 137), + [6043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 6, 0, 137), + [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_and, 3, 0, 0), + [6047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_and, 3, 0, 0), + [6049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 2, 0, 0), + [6051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 2, 0, 0), + [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 5, 0, 29), + [6055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 5, 0, 29), + [6057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 4, 0, 62), + [6059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 4, 0, 62), + [6061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_beginless_range, 2, 0, 5), + [6063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_beginless_range, 2, 0, 5), + [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 6, 0, 138), + [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 6, 0, 138), + [6069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 6, 0, 118), + [6071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 6, 0, 118), + [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 2, 0, 0), + [6075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 2, 0, 0), + [6077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 6, 0, 139), + [6079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 6, 0, 139), + [6081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11718), + [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_parens, 2, 0, 0), + [6086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_parens, 2, 0, 0), + [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 6, 0, 140), + [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 6, 0, 140), + [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_argument, 2, 0, 0), + [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_symbol, 2, 0, 0), + [6096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_symbol, 2, 0, 0), + [6098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 3, 0, 25), + [6100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 3, 0, 25), + [6102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_argument, 2, 0, 0), + [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 3, 0, 0), + [6106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 3, 0, 0), + [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 0), + [6110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 0), + [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 3, 0, 26), + [6114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 3, 0, 26), + [6116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 3, 0, 27), + [6118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 3, 0, 27), + [6120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 3, 0, 28), + [6122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 3, 0, 28), + [6124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 3, 0, 29), + [6126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 3, 0, 29), + [6128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 3, 0, 0), + [6130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 3, 0, 0), + [6132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equality_operator, 3, 0, 34), + [6134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equality_operator, 3, 0, 34), + [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 7, 0, 142), + [6138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 7, 0, 142), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [6142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 2, 0, 7), + [6144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 2, 0, 7), + [6146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 7, 0, 143), + [6148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 7, 0, 143), + [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not, 2, 0, 0), + [6152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not, 2, 0, 0), + [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complement_operator, 2, 0, 4), + [6156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complement_operator, 2, 0, 4), + [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 6, 0, 119), + [6160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 6, 0, 119), + [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 5, 0, 85), + [6164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 5, 0, 85), + [6166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7711), + [6169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unless, 6, 0, 119), + [6171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unless, 6, 0, 119), + [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_block, 6, 0, 75), + [6175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_block, 6, 0, 75), + [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens, 4, 0, 0), + [6179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens, 4, 0, 0), + [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 7, 0, 159), + [6183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 7, 0, 159), + [6185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 6, 0, 120), + [6187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 6, 0, 120), + [6189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 3, 0, 41), + [6191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 3, 0, 41), + [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign, 3, 0, 24), + [6195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, 0, 82), + [6197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, 0, 82), + [6199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 5, 0, 107), + [6201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 5, 0, 107), + [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_assign, 3, 0, 24), + [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash, 8, 0, 160), + [6207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash, 8, 0, 160), + [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_block, 5, 0, 75), + [6211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_block, 5, 0, 75), + [6213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or, 3, 0, 0), + [6215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or, 3, 0, 0), + [6217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4, 0, 0), + [6219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4, 0, 0), + [6221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 2, 0, 10), + [6223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 2, 0, 10), + [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 7, 0, 164), + [6227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 7, 0, 164), + [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_tuple, 4, 0, 0), + [6231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_tuple, 4, 0, 0), + [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 0), + [6235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 0), + [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 4, 0, 29), + [6239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 4, 0, 29), + [6241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unless, 4, 0, 29), + [6243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unless, 4, 0, 29), + [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex_percent_literal, 4, 0, 0), + [6247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex_percent_literal, 4, 0, 0), + [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 1, 0, 0), + [6251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 1, 0, 0), + [6253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_statement, 4, 0, 0), + [6255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_statement, 4, 0, 0), + [6257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_additive_operator, 3, 0, 33), + [6259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_additive_operator, 3, 0, 33), + [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_or_operator, 3, 0, 34), + [6263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_or_operator, 3, 0, 34), + [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 43), + [6267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 43), + [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 7, 0, 165), + [6271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 7, 0, 165), + [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 7, 0, 166), + [6275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 7, 0, 166), + [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 6, 0, 149), + [6279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 6, 0, 149), + [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_block, 3, 0, 0), + [6283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_block, 3, 0, 0), + [6285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 4, 0, 44), + [6287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 4, 0, 44), + [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens, 2, 0, 0), + [6291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens, 2, 0, 0), + [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multiplicative_operator, 3, 0, 34), + [6295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multiplicative_operator, 3, 0, 34), + [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 7, 0, 145), + [6299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 7, 0, 145), + [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pseudo_constant, 1, 0, 0), + [6303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pseudo_constant, 1, 0, 0), + [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 7, 0, 167), + [6307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 7, 0, 167), + [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 4, 0, 47), + [6311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 4, 0, 47), + [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exponential_operator, 3, 0, 34), + [6315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exponential_operator, 3, 0, 34), + [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 7, 0, 168), + [6319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 7, 0, 168), + [6321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 5, 0, 108), + [6323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 5, 0, 108), + [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_and_operator, 3, 0, 33), + [6327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_and_operator, 3, 0, 33), + [6329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 3, 0, 0), + [6331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 3, 0, 0), + [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 3, 0, 26), + [6335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 3, 0, 26), + [6337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 3, 0, 27), + [6339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 3, 0, 27), + [6341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 3, 0, 28), + [6343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 3, 0, 28), + [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_index_operator, 4, 0, 48), + [6347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_index_operator, 4, 0, 48), + [6349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens_and_block, 3, 0, 0), + [6351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens_and_block, 3, 0, 0), + [6353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_no_parens_with_block, 3, 0, 0), + [6355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_no_parens_with_block, 3, 0, 0), + [6357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc, 6, 0, 121), + [6359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proc, 6, 0, 121), + [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 5, 0, 103), + [6363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 5, 0, 103), + [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof, 4, 0, 0), + [6367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof, 4, 0, 0), + [6369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_sizeof, 4, 0, 0), + [6371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instance_sizeof, 4, 0, 0), + [6373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_call, 1, 0, 0), + [6375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_call, 1, 0, 0), + [6377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 4, 0, 0), + [6379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 4, 0, 0), + [6381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 4, 0, 63), + [6383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 4, 0, 63), + [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 4, 0, 32), + [6387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 4, 0, 32), + [6389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 4, 0, 62), + [6391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 4, 0, 62), + [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 4, 0, 31), + [6395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 4, 0, 31), + [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 4, 0, 63), + [6399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 4, 0, 63), + [6401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7714), + [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 5, 0, 106), + [6406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 5, 0, 106), + [6408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 4, 0, 64), + [6410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 4, 0, 64), + [6412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 4, 0, 65), + [6414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 4, 0, 65), + [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 4, 0, 66), + [6418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 4, 0, 66), + [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_until, 4, 0, 66), + [6422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_until, 4, 0, 66), + [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case, 4, 0, 29), + [6426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case, 4, 0, 29), + [6428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exhaustive_case, 4, 0, 29), + [6430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exhaustive_case, 4, 0, 29), + [6432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4, 0, 0), + [6434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4, 0, 0), + [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 5, 0, 0), + [6438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 5, 0, 0), + [6440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, 0, 35), + [6442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range, 3, 0, 35), + [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list_with_parens, 3, 0, 0), + [6446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list_with_parens, 3, 0, 0), + [6448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 4, 0, 64), + [6450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 4, 0, 64), + [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 5, 0, 104), + [6454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 5, 0, 104), + [6456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 6, 0, 75), + [6458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 6, 0, 75), + [6460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_call, 2, 0, 13), + [6462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_call, 2, 0, 13), + [6464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin_block, 5, 0, 105), + [6466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin_block, 5, 0, 105), + [6468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_end_block, 4, 0, 31), + [6470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_end_block, 4, 0, 31), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [6476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9091), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7698), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10721), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10655), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7683), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10689), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [6547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7698), + [6550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10655), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10993), + [6555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10993), + [6558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7683), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7746), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11008), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [6575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7746), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [6584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(973), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [6595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7750), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), + [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), + [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_assign, 5, 0, 117), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7744), + [6622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_assign, 4, 0, 79), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7702), + [6626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7702), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11584), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7695), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7733), + [6647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7744), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_assign, 3, 0, 24), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_assign, 4, 0, 77), + [6668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7695), + [6671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7733), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7727), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10867), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [6698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7727), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7748), + [6703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7748), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6813), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6748), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7721), + [6786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7721), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10663), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [6797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier_if, 3, 0, 30), + [6799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier_unless, 3, 0, 30), + [6801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier_rescue, 3, 0, 31), + [6803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier_ensure, 3, 0, 32), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [6813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9119), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [6820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_next, 2, 0, 0), + [6822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break, 2, 0, 0), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [6830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(975), + [6833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9010), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [6840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [6844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9075), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [6863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2, 0, 0), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11391), + [6869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11391), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7689), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [6886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7689), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), + [6901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7717), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [6954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8960), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10947), + [6959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10947), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), + [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [7020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(974), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [7033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9014), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [7046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(957), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7731), + [7083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7731), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10586), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [7096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(4299), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11983), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11414), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8682), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [7155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(965), + [7158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11022), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11022), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11590), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), + [7183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11590), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), + [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [7210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(4299), + [7213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(4299), + [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7684), + [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11054), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [7228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7684), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6729), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [7289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(958), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10749), + [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7685), + [7296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7685), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), + [7301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10749), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), + [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), + [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7745), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [7424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7745), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10771), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [7477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7747), + [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7737), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7747), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11234), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [7512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7737), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [7525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(962), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11915), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [7550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11915), + [7553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8979), + [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7705), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6769), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [7572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8946), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7686), + [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7693), + [7609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7693), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10961), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [7620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7705), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [7627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7686), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), + [7686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(5054), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12000), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11589), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8777), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7729), + [7711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9034), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7715), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11553), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [7728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9046), + [7731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(979), + [7734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7729), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [7751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(5054), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [7768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(5054), + [7771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7715), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), + [7780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7697), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7697), + [7787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(969), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [7806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [7818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [7838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9065), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6801), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [7895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [7897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [7903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [7913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6844), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [7967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(968), + [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [7978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), + [7982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9084), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [8003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7797), + [8005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7882), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8866), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11745), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [8015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11712), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [8023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(5499), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12005), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10850), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7900), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8804), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [8074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expr, 3, 0, 42), + [8076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_named_expr, 3, 0, 20), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [8084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assign, 3, 0, 24), + [8086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_assign, 3, 0, 24), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [8092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 5, 0, 112), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), + [8096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, 0, 135), + [8098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(5499), + [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7937), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8117), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), + [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11018), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), + [8113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(5499), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [8190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9092), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [8197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(966), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8118), + [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8156), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), + [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11530), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [8220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(976), + [8223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [8229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(967), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [8240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11014), + [8250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat, 2, 0, 0), + [8252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_splat, 2, 0, 0), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11699), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11908), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11046), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11701), + [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8289), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8957), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8958), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8356), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8186), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [8340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracket_argument_list, 1, 0, 0), + [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [8366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracket_argument_list, 1, 0, 0), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7907), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8526), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [8426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(961), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [8435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), + [8449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_repeat1, 2, 0, 29), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [8469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(960), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8418), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [8524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(977), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [8619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [8621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [8633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10738), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8366), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [8705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [8707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7894), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [8755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [8761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [8773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [8871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), + [8873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9260), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [8901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [8921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(978), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9193), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [8970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 3, 0, 84), + [8972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [8982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 6, 0, 161), + [8984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 6, 0, 162), + [8986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 123), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [8990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [8992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [8994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [9000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 124), + [9002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [9004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [9006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [9012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [9014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [9016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [9018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [9020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [9026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 7, 0, 175), + [9028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [9030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [9032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [9040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [9042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [9048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [9050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [9054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_entry, 3, 0, 0), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), + [9058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [9060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [9070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [9074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [9076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [9078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implicit_object_tuple_repeat1, 2, 0, 0), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [9082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 5, 0, 144), + [9084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [9086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 5, 0, 147), + [9088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9364), + [9092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [9096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [9098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [9104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [9110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [9126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [9130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [9132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [9138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [9144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [9162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [9164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [9170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [9176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10765), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10975), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11487), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10583), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11943), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11238), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9522), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10722), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11669), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12051), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10661), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9263), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9389), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11120), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9276), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11569), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10756), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11855), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11755), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11827), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10707), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11803), + [9284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8107), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8107), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11732), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11743), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10747), + [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7806), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), + [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7936), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9327), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10836), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11837), + [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11496), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11926), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12042), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), + [9326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7061), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11908), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), + [9339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7061), + [9342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7061), + [9345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9512), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), + [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11922), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11503), + [9359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8534), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8629), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11997), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11041), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8523), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8740), + [9381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7078), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11922), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), + [9390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7080), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11880), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11858), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8453), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), + [9407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7075), + [9410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 6, 0, 0), SHIFT(7075), + [9413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7078), + [9416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7078), + [9419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7080), + [9422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_no_args_proc_type, 1, 0, 0), SHIFT(7080), + [9425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parenthesized_proc_type, 5, 0, 0), SHIFT(7075), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11972), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11873), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11979), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10808), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), + [9548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_instance_param_list, 3, 0, 0), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11036), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10803), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11078), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11085), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11097), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11101), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11109), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11114), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11118), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11122), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11131), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11141), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11148), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11152), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11155), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11160), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11172), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11181), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11184), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11188), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11191), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11199), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11206), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11214), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11218), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11223), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11363), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8376), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11813), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11179), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8381), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11731), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11456), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8385), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12001), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10769), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8515), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10983), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11677), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10939), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10686), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11227), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11515), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11928), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10629), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8326), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10734), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11541), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10802), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10848), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10994), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10891), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10943), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [9748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11646), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11646), + [9753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7740), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10978), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11635), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), + [9772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11635), + [9775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7691), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [9780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(10853), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10853), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11301), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7938), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11828), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7921), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [9819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7749), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7896), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10915), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [9892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7712), + [9895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7760), + [9898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), SHIFT_REPEAT(10638), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10638), + [9903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7722), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9031), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9978), + [9914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9229), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9335), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9753), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9533), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), + [9926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extend, 2, 0, 0), + [9928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2, 0, 0), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11111), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), + [9958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 2, 0, 0), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [9962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 94), + [9964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 6, 0, 88), + [9966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 6, 0, 88), + [9968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 6, 0, 126), + [9970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 6, 0, 126), + [9972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 127), + [9974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 128), + [9976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 129), + [9978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 130), + [9980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 6, 0, 96), + [9982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 6, 0, 96), + [9984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 6, 0, 97), + [9986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 3, 0, 0), + [9988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 6, 0, 141), + [9990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 7, 0, 151), + [9992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 7, 0, 151), + [9994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 7, 0, 126), + [9996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 7, 0, 126), + [9998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 7, 0, 152), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10452), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11963), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11964), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12077), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10703), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), + [10012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_def, 4, 0, 9), + [10014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 4, 0, 48), + [10016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_def, 4, 0, 49), + [10018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 8, 0, 151), + [10020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 8, 0, 151), + [10022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 4, 0, 49), + [10024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 4, 0, 49), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), + [10028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 8), + [10030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 50), + [10032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 51), + [10034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 52), + [10036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_assign, 4, 0, 53), + [10038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_def, 4, 0, 9), + [10040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 4, 0, 9), + [10042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 4, 0, 9), + [10044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 4, 0, 22), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [10048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_def, 3, 0, 9), + [10050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 3, 0, 0), + [10052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_def, 3, 0, 21), + [10054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias, 4, 0, 59), + [10056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 8), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [10060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_def, 3, 0, 9), + [10062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 3, 0, 9), + [10064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 3, 0, 9), + [10066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 3, 0, 22), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), + [10070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 69), + [10072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 70), + [10074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 71), + [10076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 72), + [10078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 73), + [10080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 4, 0, 74), + [10082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_require, 2, 0, 0), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11532), + [10086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_def, 2, 0, 8), + [10088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 2, 0, 15), + [10090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11532), + [10093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_def, 5, 0, 49), + [10095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 5, 0, 88), + [10097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 5, 0, 88), + [10099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 5, 0, 49), + [10101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 5, 0, 49), + [10103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias, 5, 0, 89), + [10105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 90), + [10107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 91), + [10109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 92), + [10111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 93), + [10113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 95), + [10115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_def, 5, 0, 96), + [10117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_def, 5, 0, 96), + [10119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_def, 5, 0, 97), + [10121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 2, 0, 0), + [10123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 15), + [10125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 38), + [10127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 39), + [10129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 113), + [10131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 114), + [10133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 115), + [10135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 5, 0, 116), + [10137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_def, 3, 0, 40), + [10139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_assign, 3, 0, 24), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8891), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), + [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), + [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11568), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9204), + [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11062), + [10153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11062), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9657), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11940), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11302), + [10166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11940), + [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11043), + [10171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11043), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), + [10180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), SHIFT_REPEAT(11302), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), + [10185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), + [10191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7718), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12018), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8436), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11186), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8437), + [10222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7716), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9530), + [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9584), + [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9531), + [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9532), + [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10345), + [10237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7696), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), + [10242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7761), + [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11649), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), + [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7982), + [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8407), + [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11801), + [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8408), + [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), + [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), + [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11050), + [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8533), + [10269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_forall_repeat1, 2, 0, 0), SHIFT_REPEAT(11649), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9445), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9482), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9446), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9447), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10232), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9496), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9497), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9498), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9504), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9886), + [10296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7751), + [10299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_instance_param_list, 2, 0, 0), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [10305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11360), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11330), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9360), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9322), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8377), + [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8383), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8327), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8355), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8415), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), + [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9285), + [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9257), + [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9347), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), + [10415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7742), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9380), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9352), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9281), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9061), + [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9174), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9307), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10023), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9417), + [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9359), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9323), + [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9328), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9325), + [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9354), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9296), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8387), + [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8404), + [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), + [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7828), + [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8516), + [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), + [10488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_repeat1, 2, 0, 0), + [10490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_repeat1, 2, 0, 0), SHIFT_REPEAT(9978), + [10493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_param_repeat1, 2, 0, 0), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8233), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), + [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8294), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [10549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_param_list, 3, 0, 0), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [10565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constant_repeat1, 2, 0, 0), SHIFT_REPEAT(11781), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [10576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), + [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9419), + [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9422), + [10588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), + [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9467), + [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9544), + [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9550), + [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9564), + [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), + [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8098), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), + [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), + [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11781), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8826), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8886), + [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), + [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [10708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7701), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8592), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8603), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8618), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8626), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [10751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_param_list, 2, 0, 0), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8667), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9948), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9962), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8792), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8842), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10153), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10414), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10421), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9745), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8321), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8324), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), + [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [10899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_union_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7710), + [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), + [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), + [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), + [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), + [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10263), + [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10450), + [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11535), + [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9316), + [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8871), + [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9331), + [10972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [10974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9331), + [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [10978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9316), + [10981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), + [10984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), [10986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 4, 0, 48), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [10990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, 0, 0), - [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(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), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), - [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [11016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(979), - [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8838), - [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), - [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), - [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11850), - [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11851), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), - [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), - [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), - [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8183), - [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11199), - [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), - [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9328), - [11095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 2, 0, 9), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), - [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [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(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), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [11133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9223), - [11136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), - [11139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), - [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [11159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param_list, 3, 0, 0), - [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [11167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9315), - [11170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1785), - [11173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_percent_literal_repeat1, 2, 0, 0), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9481), - [11179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 1, 0, 20), - [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), - [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), - [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), - [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9272), - [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11982), - [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), - [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [11279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_repeat1, 1, 0, 0), - [11281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_param_repeat1, 1, 0, 0), - [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), - [11285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9272), - [11288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1349), - [11291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), - [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [11303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(9291), - [11306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), - [11309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(9291), - [11312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11981), - [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [11348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [11350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9607), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9607), - [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), - [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [11364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_def_repeat1, 2, 0, 0), - [11366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_def_repeat1, 2, 0, 0), SHIFT_REPEAT(7026), - [11369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(976), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [11384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param_list, 3, 0, 0), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [11390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param_list, 2, 0, 0), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8364), - [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), - [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8389), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), - [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), - [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), - [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), - [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), - [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), - [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), - [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), - [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), - [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8470), - [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), - [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8376), - [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(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(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), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), - [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), - [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), - [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), - [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8393), - [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8489), - [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), - [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8382), - [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), - [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8436), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), - [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [11524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), - [11527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(9607), - [11530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), - [11532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(9607), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), - [11539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 0), - [11541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 0), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9331), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), - [11549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_def_repeat1, 2, 0, 0), SHIFT_REPEAT(9672), - [11552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_def_repeat1, 2, 0, 0), - [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(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), - [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10634), - [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), - [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), - [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), - [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), - [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11571), - [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), - [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(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), - [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), - [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8880), - [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), - [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), - [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10824), - [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), - [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11936), - [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8881), - [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), - [11629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), - [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [11635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_repeat1, 2, 0, 0), - [11637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_repeat1, 2, 0, 0), SHIFT_REPEAT(749), - [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11165), - [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), - [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), - [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8256), - [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8301), - [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10845), - [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(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), - [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), - [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11789), - [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11260), - [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), - [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), - [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [11694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_symbol_repeat1, 2, 0, 0), SHIFT_REPEAT(9331), - [11697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_symbol_repeat1, 2, 0, 0), - [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), - [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), - [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11349), - [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), - [11719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 1, 0, 0), - [11721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 1, 0, 0), - [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), - [11725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_in_repeat1, 2, 0, 140), - [11727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_in_repeat1, 2, 0, 140), SHIFT_REPEAT(8071), - [11730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 1, 0, 0), - [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7946), - [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), - [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11681), - [11742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(1316), - [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8722), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), - [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), - [11755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_percent_literal_array_word_repeat1, 2, 0, 0), SHIFT_REPEAT(9415), - [11758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_percent_literal_array_word_repeat1, 2, 0, 0), - [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), - [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10894), - [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [11766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [11768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), - [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), - [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), - [11778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif, 4, 0, 80), - [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), - [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), - [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), - [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), - [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), - [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11134), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11089), - [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(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), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [11824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 3, 0, 86), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9316), - [11834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_symbol_repeat1, 1, 0, 0), - [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [11840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_tuple_type_repeat1, 2, 0, 0), - [11842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8603), - [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [11849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_def_repeat1, 1, 0, 0), - [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [11857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 6, 0, 0), - [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [11861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 7, 0, 0), - [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [11867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 8, 0, 0), - [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [11873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 3, 0, 0), - [11875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 4, 0, 60), - [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [11885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exhaustive_case_repeat1, 2, 0, 0), - [11887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exhaustive_case_repeat1, 2, 0, 0), SHIFT_REPEAT(8077), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [11898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 6, 0, 134), - [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11181), - [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), - [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), - [11906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(964), - [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9488), - [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9489), - [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9338), - [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9516), - [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [11923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_percent_literal_array_word_repeat1, 1, 0, 0), - [11925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 4, 0, 0), - [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10956), - [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), - [11935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_proc_type_repeat1, 2, 0, 0), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [11939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_proc_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7603), - [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), - [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [11946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_array_percent_literal_repeat1, 2, 0, 0), - [11948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_array_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9316), - [11951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_symbol_array_percent_literal_repeat1, 2, 0, 0), - [11953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_symbol_array_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9316), - [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [11974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 2, 0, 45), - [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), - [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10862), - [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), - [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11599), - [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), - [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10958), - [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), - [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11197), - [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), - [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11817), - [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10644), - [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), - [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9387), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9388), - [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10907), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11145), - [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), - [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11434), - [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11691), - [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11464), - [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), - [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10704), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11273), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11542), - [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), - [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11863), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), - [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10536), - [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), - [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10614), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10685), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), - [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10729), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10787), - [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), - [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10846), - [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), - [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10910), - [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), - [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10971), - [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10978), - [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10981), - [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), - [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10987), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), - [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10996), - [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), - [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11001), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), - [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11005), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), - [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11008), - [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11011), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), - [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11016), - [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), - [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11018), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11021), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11023), - [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), - [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11029), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11034), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11043), - [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), - [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11046), - [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), - [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11051), - [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), - [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11056), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11058), - [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11061), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), - [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11064), - [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), - [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11070), - [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), - [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11076), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), - [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), - [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [12216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 4, 0, 61), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), - [12220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 1, 0, 0), - [12222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 1, 0, 0), - [12224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 3, 0, 0), - [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [12230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 5, 0, 0), - [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [12254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 54), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), - [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [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(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), - [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), - [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), - [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8316), - [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8917), - [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8383), - [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), - [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(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), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8596), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), - [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8473), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), - [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), - [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8474), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [12410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_repeat1, 1, 0, 0), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), - [12414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_body_param, 1, 0, 20), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8340), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8400), - [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [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(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), - [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), - [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), - [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), - [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8233), - [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), - [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [12467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_param_list_repeat1, 2, 0, 0), - [12469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9302), - [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), - [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), - [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), - [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), - [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), - [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), - [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), - [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8478), - [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), - [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), - [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8483), - [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9401), - [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9405), - [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8678), - [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [12538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implicit_object_tuple_repeat1, 2, 0, 0), SHIFT_REPEAT(902), - [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), - [12543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when, 5, 0, 139), - [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [12547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_def_repeat1, 1, 0, 0), - [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), - [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), - [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), - [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), - [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8333), - [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8428), - [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), - [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8645), - [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9425), - [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), - [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), - [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), - [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), - [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8353), - [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8475), - [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), - [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8479), - [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8357), - [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), - [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), - [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), - [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8300), - [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8536), - [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), - [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), - [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8552), - [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9435), - [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8386), - [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), - [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9441), - [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9445), - [12681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8646), - [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), - [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9448), - [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [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 = 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), - [14067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8568), - [14069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), - [14071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), - [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(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(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), - [14101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [14103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [14105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), - [14107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [14109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [14111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), - [14113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), - [14115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [14117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [14119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), - [14121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), - [14123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [14125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [14127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [14129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8421), - [14131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [14133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [14135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [14137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [14139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [14141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [14143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif, 4, 0, 81), - [14145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [14147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), - [14149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), - [14151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [14153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [14155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), - [14157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [14159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), - [14161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [14163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [14165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [14167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [14169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8872), - [14171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), - [14173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8297), - [14175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [14177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [14179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [14181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [14183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), - [14185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), - [14187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), - [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), - [14191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), - [14193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), - [14195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), - [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [14199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [14201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [14203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8534), - [14205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [14207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [14209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), - [14211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), - [14219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [14221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [14223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [14225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [14227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8548), - [14229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [14231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [14233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), - [14235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [14237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [14239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [14243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [14253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [14255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [14257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [14259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), - [14261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [14263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [14265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), - [14267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 4, 0, 155), - [14269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), - [14271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [14273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3, 0, 0), - [14275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), - [14277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [14279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), - [14281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [14283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), - [14285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [14287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [14289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [14293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [14295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [14297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [14299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [14301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [14303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [14305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [14307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [14309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [14311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [14313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [14315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [14317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), - [14319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [14321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), - [14323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [14325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [14327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [14329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7950), - [14331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [14333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8644), - [14335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [14337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), - [14339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [14341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [14343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [14345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [14347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [14349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [14351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), - [14353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [14355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [14357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [14359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [14361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [14363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [14365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [14367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [14369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), - [14371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [14373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [14375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [14377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [14381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [14383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [14385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [14387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [14389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [14391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8651), - [14393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [14395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8652), - [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), - [14399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [14401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [14405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [14407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [14411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), - [14413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [14417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [14419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), - [14421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), - [14425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [14427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), - [14429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), - [14431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [14433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), - [14435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [14437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [14439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [14441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [14443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [14447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8847), - [14449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [14451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), - [14455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [14457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [14459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8878), - [14461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [14463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [14467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [14469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [14471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [14473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8546), - [14475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), - [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [14479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [14481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [14483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [14485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [14487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [14489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), - [14491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [14493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [14495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [14497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [14499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), - [14501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [14503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [14505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [14507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [14509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9195), - [14511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8434), - [14513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), - [14515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [14517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [14519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [14521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), - [14523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), - [14525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [14527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [14529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [14531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [14533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [14535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), - [14537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [14539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [14541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [14543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [14545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), - [14547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8854), - [14549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8855), - [14551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [14553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [14555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [14557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [14559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), - [14561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [14563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), - [14565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [14567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [14569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [14571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [14573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), - [14575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8860), - [14577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [14579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [14581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8862), - [14583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [14585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), - [14587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), - [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), - [14593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8526), - [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), - [14597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [14599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [14601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), - [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [14605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [14607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), - [14609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9319), - [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), - [14613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [14615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), - [14617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8574), - [14621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [14623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [14625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), - [14627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [14629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [14631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [14633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [14635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [14637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), - [14639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [14641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), - [14643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), - [14645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [14647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [14649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [14651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), - [14653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), - [14655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [14657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [14659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [14661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), - [14663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [14665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [14667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [14669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), - [14671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), - [14673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [14675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [14677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [14679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9254), - [14681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), - [14683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [14685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [14687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), - [14689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [14691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [14693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), - [14695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [14697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), - [14699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [14701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [14703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), - [14705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [14707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [14709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), - [14711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), - [14713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), - [14715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [14717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), - [14719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [14721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [14723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [14725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [14727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [14729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [14731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [14733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [14735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [14737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [14739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [14741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), - [14743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [14745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [14747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8334), - [14749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9187), - [14751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), - [14753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [14755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), - [14757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), - [14759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [14761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [14763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), - [14765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [14767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [14769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), - [14773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [14775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), - [14777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [14779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [14781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), - [14783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), - [14785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [14787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [14789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [14791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [14793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), - [14795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), - [14797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [14799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [14801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [14803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [14805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [14807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), - [14809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [14811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [14813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [14815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), - [14817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9257), - [14819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [14821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), - [14823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [14825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [14827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), - [14829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [14831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [14833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [14837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9355), - [14839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [14841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [14843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [14845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [14847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [14849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [14851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [14853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), - [14855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), - [14857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), - [14859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), - [14861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), - [14863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), - [14865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [14867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), - [14869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9361), - [14871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8823), - [14873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), - [14875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), - [14877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [14879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [14881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), - [14883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [14885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [14887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9196), - [14889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), - [14891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8840), - [14893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8841), - [14895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [14897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), - [14899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [14901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), - [14903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), - [14905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [14907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [14909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [14911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), - [14913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7029), - [14915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [14917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), - [14919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [14921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [14923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [14925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [14927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), - [14929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), - [14931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8604), - [14933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8609), - [14935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), - [14937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9367), - [14939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), - [14941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [14943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), - [14945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [14947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), - [14949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11188), - [14951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [14953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [14955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [14957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9222), - [14959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [14961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [14963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [14965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [14967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [14969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [14971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8252), - [14973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [14975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [14977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [14979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [14981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [14983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [14985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [14987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [14989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [14991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [14993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [14995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [14997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [14999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), - [15001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [15003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [15005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), - [15007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8262), - [15009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [15011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), - [15013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [15015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [15017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [15019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [15021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), - [15023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [15025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9184), - [15027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), - [15029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [15031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [15033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [15035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [15037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), - [15039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), - [15041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [15043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [15045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [15047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8009), - [15049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), - [15051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [15053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [15055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [15057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8279), - [15059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [15061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [15063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [15065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [15067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [15069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8286), - [15071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [15073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8295), - [15075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [15077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [15079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [15081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8298), - [15083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [15085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8299), - [15087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [15089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [15091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [15093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9253), - [15095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [15097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [15099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7881), - [15101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [15103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [15105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [15107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [15109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [15111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [15113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [15115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [15117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [15119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [15121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), - [15123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [15125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [15127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [15129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [15131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), - [15133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [15135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [15137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), - [15139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), - [15141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [15143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), - [15145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), - [15147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [15149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), - [15151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [15153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [15155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [15157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9284), - [15159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [15161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [15163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif, 5, 0, 117), - [15165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [15167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [15169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [15171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [15173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [15175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), - [15177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11192), - [15179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [15181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [15183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [15185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [15187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [15189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [15191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [15193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [15195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [15197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), - [15199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [15201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), - [15203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [15205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [15207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [15209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [15211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [15213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [15215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [15217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [15219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [15221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [15223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [15225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9320), - [15227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [15229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [15231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), - [15233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [15235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [15237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [15239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [15241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [15243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), - [15245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9400), - [15247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ensure, 2, 0, 0), - [15249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [15251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [15253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [15255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [15257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9403), - [15259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [15261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [15263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [15265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), - [15267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [15269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [15271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [15273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [15275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9404), - [15277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [15279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [15281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [15283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [15285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [15287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), - [15289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [15291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), - [15293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9303), - [15295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), - [15297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [15299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), - [15301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [15303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [15305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [15307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [15309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), - [15311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [15313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [15315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [15317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), - [15319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), - [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(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), - [15335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [15337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [15339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [15341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [15343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [15345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [15347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [15349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [15351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [15353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [15355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [15357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [15359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), - [15361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), - [15363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [15365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), - [15367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), - [15369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [15371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [15373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [15375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), - [15377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), - [15379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), - [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(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), - [15395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), - [15397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [15399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [15401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), - [15403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), - [15407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8244), - [15409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [15411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [15413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), - [15415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [15417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), - [15419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), - [15421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [15423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9197), - [15425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [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(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), - [15441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [15443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), - [15445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [15449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), - [15451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8287), - [15453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), - [15455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [15457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9426), - [15459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [15461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [15463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [15465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), - [15467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), - [15469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [15471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [15473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [15475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [15477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8427), - [15479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), - [15481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9428), - [15483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [15485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), - [15487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [15489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), - [15491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [15493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), - [15495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [15497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [15499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), - [15501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), - [15503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [15505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11731), - [15507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), - [15509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9432), - [15511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [15513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [15515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), - [15517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), - [15519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8175), - [15521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [15523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), - [15525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [15527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [15529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [15531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8602), - [15533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [15535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [15537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [15539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [15541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [15543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9434), - [15545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [15547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [15549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [15551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [15553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), - [15555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), - [15557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [15559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [15561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9437), - [15563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [15565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9438), - [15567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), - [15569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), - [15571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8302), - [15573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), - [15575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [15577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9440), - [15579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [15581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), - [15583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [15585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [15587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9443), - [15589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), - [15591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9444), - [15593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8294), - [15595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), - [15597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), - [15599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9446), - [15601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), - [15603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9447), - [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(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), - [15619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9449), - [15621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), - [15623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), - [15625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9450), - [15627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [15629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [15631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [15633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), - [15635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [15637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [15639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [15641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), - [15643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), - [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8406), - [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), - [15649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [15651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [15653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [15655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [15657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), - [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [15661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [15663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [15665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [15667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), - [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), - [15671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), - [15673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), - [15675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [15677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), - [15679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), - [15681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [15683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [15685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), - [15687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), - [15689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), - [15691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [15693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [15695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [15697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7939), - [15699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), - [15701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [15703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [15705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [15707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), - [15709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [15711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), - [15713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [15715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [15717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), - [15719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [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(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), - [15735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8426), - [15737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [15739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [15741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8588), - [15743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), - [15745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [15747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [15749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [15753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [15755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [15757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [15759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [15761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [15763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [15765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [15767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [15769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [15771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [15773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), - [15775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [15777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), - [15779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), - [15781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [15783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), - [15785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 5, 0, 0), - [15787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [15789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [15791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [15793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [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(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), - [15809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [15811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [15813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [15815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [15817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), - [15819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [15821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [15823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), - [15825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [15827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [15829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [15831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [15833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [15835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [15837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8937), - [15839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [15841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [15843] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [15845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [15847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [15849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [15851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [15853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), - [15855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [15857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [15859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [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(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), - [15875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [15877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), - [15879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [15881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7931), - [15883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), - [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(10450), - [15893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), - [15895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [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), - [15905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [15907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), - [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(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), - [15923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [15925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7941), - [15927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [15929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), - [15931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), - [15933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [15935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7945), - [15937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), - [15939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7947), - [15941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [15943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7969), - [15945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [15947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), - [15949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [15951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [15953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), - [15955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [15957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [15959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), - [15961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [15963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), - [15965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9246), - [15967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [15969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), - [15971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), - [15973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), - [15975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), - [15977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [15979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [15981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), - [15983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [15985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [15987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [15989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7956), - [15991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8322), - [15993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), - [15995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), - [15997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [15999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [16001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [16003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [16005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [16007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), - [16009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [16011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), - [16013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [16015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), - [16017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), - [16019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), - [16021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), - [16023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [16025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [16027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), - [16029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [16031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), - [16033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [16035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [16037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), - [16039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [16041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), - [16043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), - [16045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), - [16047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [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(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), - [16063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), - [16065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), - [16067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), - [16069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [16071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), - [16073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), - [16075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), - [16077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), - [16079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [16081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), - [16083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [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(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), - [16099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), - [16101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), - [16103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [16105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [16107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [16109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), - [16111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [16113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), - [16115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [16117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [16119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [16121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [16123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [16125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [16127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), - [16129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [16131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [16133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [16135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 4, 0, 0), - [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(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), - [16151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 3, 0, 130), - [16153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [16155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), - [16157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [16159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [16161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [16163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), - [16165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), - [16167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [16169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), - [16171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), - [16173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7980), - [16175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), - [16177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), - [16179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), - [16181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), - [16183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), - [16185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [16187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [16189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__numeric_type, 1, 0, 0), - [16191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), - [16193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), - [16195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7982), - [16201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [16203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), - [16205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [16207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [16209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [16211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), - [16213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), - [16215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), - [16217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), - [16219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), - [16221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), - [16223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), - [16225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [16227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), - [16229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), - [16231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [16233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8271), - [16235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [16237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [16239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [16241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [16243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8915), - [16245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), - [16247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [16249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), - [16251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), - [16253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), - [16255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), - [16257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [16259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), - [16261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), - [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(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), - [16277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), - [16279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), - [16281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [16283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [16285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), - [16287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), - [16289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), - [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [16293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), - [16295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [16297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), - [16299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), - [16301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), - [16303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), - [16307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [16309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [16311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), - [16313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), - [16315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [16317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), - [16319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [16321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), - [16323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [16325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), - [16327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), - [16329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [16331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9216), - [16333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [16335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [16337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [16339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), - [16341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [16343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), - [16345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), - [16347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), - [16349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), - [16351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), - [16353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), - [16355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), - [16357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [16359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9199), - [16361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [16363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), - [16365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [16367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), - [16369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [16371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [16373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), - [16375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), - [16377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), - [16379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [16381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), - [16383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [16385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9238), - [16387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [16389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), - [16391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [16393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), - [16395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [16397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), - [16399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [16401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), - [16405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), - [16407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), - [16409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [16411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [16413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9229), - [16415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), - [16417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7984), - [16419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2, 0, 0), - [16421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 5, 0, 171), - [16423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [16425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), - [16427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), - [16429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), - [16431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), - [16433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), - [16435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7473), - [16437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [16439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [16441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9249), - [16443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [16445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [16447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [16449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [16451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [16453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), - [16455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), - [16457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), - [16459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [16461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), - [16463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), - [16465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [16467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [16469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9193), - [16471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [16473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [16475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), - [16477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [16479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), - [16481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), - [16483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [16485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), - [16489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [16491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [16493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9289), - [16497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [16499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7962), - [16501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8098), - [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [16505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [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(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), - [16521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9307), - [16525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), - [16527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [16529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [16531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), - [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(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), - [16547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [16549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9190), - [16551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), - [16553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [16555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [16557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), - [16559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [16561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), - [16563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), - [16565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [16567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8704), - [16569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), - [16571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [16573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [16575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [16577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9277), - [16579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [16581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), - [16583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [16585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [16587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [16589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), - [16591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), - [16593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), - [16595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [16597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), - [16599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), - [16601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [16603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [16605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9261), - [16607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [16609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8705), - [16611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [16613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), - [16615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), - [16617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [16619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [16621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), - [16623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), - [16625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [16627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9202), - [16629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [16631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [16633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [16635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), - [16637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), - [16639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), - [16641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), - [16643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [16645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [16647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9251), - [16649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [16651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9219), - [16653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [16655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), - [16657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [16659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [16661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [16663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), - [16665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [16667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [16669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), - [16671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [16673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [16675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), - [16677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [16679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8871), - [16681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [16683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), - [16685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8879), - [16687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [16689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [16691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [16693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [16695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [16697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), - [16699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [16701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [16703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7988), - [16705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [16707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [16709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8808), - [16711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8802), - [16713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [16715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), - [16717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [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(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), - [16733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [16735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), - [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(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), - [16751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [16753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [16755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), - [16757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), - [16759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [16761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [16763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), - [16765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), - [16767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), - [16769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [16771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [16773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [16775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [16777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [16779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [16781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), - [16783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), - [16785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), - [16787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), - [16789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [16791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [16793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), - [16795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [16797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9716), - [16799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [16801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), - [16803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4, 0, 0), - [16805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9737), - [16807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8889), - [16809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [16811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [16813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [16815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9771), - [16817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [16819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [16821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [16823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), - [16825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [16827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [16829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8540), - [16831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [16833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), - [16835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), - [16837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), - [16839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), - [16841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), - [16843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), - [16845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), - [16847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), - [16849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), - [16851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), - [16853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), - [16855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), - [16857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), - [16859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 3, 0, 0), - [16861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2, 0, 0), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9313), + [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9349), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9349), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [11008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9313), + [11011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1737), + [11014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_percent_literal_repeat1, 2, 0, 0), + [11016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotation, 3, 0, 0), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [11024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9349), + [11027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1741), + [11030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9349), + [11033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 2, 0, 0), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11512), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11636), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9315), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12079), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12080), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11547), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11576), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10394), + [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), + [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [11139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(9331), + [11142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1746), + [11145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(9331), + [11148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9398), + [11206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 1, 0, 20), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), + [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [11214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(9315), + [11217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1853), + [11220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9513), + [11274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 2, 0, 9), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [11294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(959), + [11297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param_list, 2, 0, 0), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [11303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_repeat1, 1, 0, 0), + [11305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_param_repeat1, 1, 0, 0), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [11369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param_list, 3, 0, 0), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8844), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [11399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [11401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9673), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9673), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8485), + [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8463), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8479), + [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9810), + [11461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 2, 0, 0), + [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), + [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6096), + [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8475), + [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [11499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param_list, 3, 0, 0), + [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [11513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_no_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(963), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8421), + [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), + [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [11552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param_list, 2, 0, 0), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8454), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10015), + [11574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 1, 0, 0), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), + [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8488), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [11606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(1572), + [11609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(9673), + [11612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), + [11614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(9673), + [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [11625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_def_repeat1, 2, 0, 0), + [11627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_def_repeat1, 2, 0, 0), SHIFT_REPEAT(7068), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8447), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10577), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11304), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9427), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [11658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, 0, 0), + [11660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, 0, 0), + [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [11666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_def_repeat1, 2, 0, 0), SHIFT_REPEAT(10269), + [11669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_def_repeat1, 2, 0, 0), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [11675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_percent_literal_array_word_repeat1, 2, 0, 0), SHIFT_REPEAT(9587), + [11678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_percent_literal_array_word_repeat1, 2, 0, 0), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), + [11684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_when_repeat1, 2, 0, 111), + [11686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_when_repeat1, 2, 0, 111), SHIFT_REPEAT(766), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9587), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10511), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [11703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_symbol_repeat1, 2, 0, 0), SHIFT_REPEAT(9427), + [11706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_symbol_repeat1, 2, 0, 0), + [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11482), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11447), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10650), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10269), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8583), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), + [11734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_in_repeat1, 2, 0, 29), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10746), + [11742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_repeat1, 2, 0, 0), + [11744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_repeat1, 2, 0, 0), SHIFT_REPEAT(710), + [11747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_in_repeat1, 2, 0, 111), + [11749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_in_repeat1, 2, 0, 111), SHIFT_REPEAT(8120), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10488), + [11756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 2, 0, 0), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7985), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11656), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10768), + [11770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_percent_literal_repeat1, 1, 0, 0), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [11774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 1, 0, 0), + [11776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10548), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11055), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [11802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [11804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8298), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10538), + [11814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 1, 0, 0), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11136), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10930), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11317), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), + [11842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 1, 0, 0), + [11844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_percent_literal_repeat1, 1, 0, 0), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), + [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11684), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [11862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif, 4, 0, 80), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8195), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11893), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [11884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(1380), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), + [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), + [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8280), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8282), + [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), + [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10874), + [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), + [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [11929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 2, 0, 45), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9275), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), + [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [11953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_symbol_repeat1, 1, 0, 0), + [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [11957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_def_repeat1, 1, 0, 0), + [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [11961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 3, 0, 0), + [11963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_array_percent_literal_repeat1, 2, 0, 0), + [11965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_array_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9275), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [11974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exhaustive_case_repeat1, 2, 0, 0), + [11976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exhaustive_case_repeat1, 2, 0, 0), SHIFT_REPEAT(8108), + [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10664), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), + [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), + [11985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(964), + [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9450), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9451), + [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), + [12022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_symbol_array_percent_literal_repeat1, 2, 0, 0), + [12024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_symbol_array_percent_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9275), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9428), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9429), + [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [12043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 3, 0, 86), + [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), + [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11526), + [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), + [12053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_proc_type_repeat1, 2, 0, 0), + [12055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_proc_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7660), + [12058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 6, 0, 136), + [12060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 5, 0, 0), + [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11332), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11666), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12078), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11594), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [12102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 8, 0, 0), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9536), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9537), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11370), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [12114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_percent_literal_array_word_repeat1, 1, 0, 0), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11029), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), + [12120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 4, 0, 60), + [12122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rescue_block, 4, 0, 61), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11510), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10789), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11163), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11706), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10688), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10913), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11464), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11848), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10626), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10732), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10798), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10846), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10890), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10942), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10981), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), + [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11033), + [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11074), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11084), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11089), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11098), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11106), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), + [12218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 3, 0, 0), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11113), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11116), + [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11121), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11125), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11137), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11146), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11150), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), + [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11153), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11156), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), + [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11167), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11180), + [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), + [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11183), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11185), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11190), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11195), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11203), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11207), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11215), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), + [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11222), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [12310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_tuple_type_repeat1, 2, 0, 0), + [12312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8711), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [12325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_regex_repeat1, 1, 0, 0), + [12327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_regex_repeat1, 1, 0, 0), + [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [12333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 6, 0, 0), + [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [12345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 4, 0, 0), + [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [12355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_tuple, 7, 0, 0), + [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), + [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10503), + [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8405), + [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10016), + [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), + [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [12391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 1, 0, 0), + [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), + [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), + [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [12399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when, 5, 0, 110), + [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8402), + [12407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), + [12409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8175), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9627), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8497), + [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8426), + [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8532), + [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), + [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8058), + [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8486), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [12494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 3, 0, 49), + [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), + [12502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_tuple_repeat1, 2, 0, 0), + [12504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_tuple_repeat1, 2, 0, 0), SHIFT_REPEAT(8540), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), + [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8409), + [12521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 3, 0, 49), + [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), + [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8300), + [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9953), + [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8510), + [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8323), + [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), + [12553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_then, 1, 0, 0), + [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8427), + [12563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_repeat1, 1, 0, 0), + [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10499), + [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), + [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), + [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8411), + [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), + [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), + [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [12591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_nested_param_repeat1, 2, 0, 0), + [12593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_nested_param_repeat1, 2, 0, 0), SHIFT_REPEAT(10490), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), + [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10444), + [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10165), + [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8500), + [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8252), + [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), + [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8429), + [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10454), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10336), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8292), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8297), + [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9107), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), + [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [12680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 3, 0, 83), + [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), + [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), + [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8431), + [12692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_proc_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7646), + [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), + [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10374), + [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), + [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8337), + [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), + [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8350), + [12717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_proc_param_list_repeat1, 2, 0, 0), + [12719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_proc_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9122), + [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), + [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), + [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), + [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10419), + [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9744), + [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10479), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9748), + [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9756), + [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8414), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), + [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), + [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [12818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10988), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10988), + [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10484), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), + [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7861), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8503), + [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9192), + [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), + [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), + [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [12878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11522), + [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11522), + [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [12892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 2, 0, 9), + [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), + [12896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 2, 0, 9), + [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), + [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), + [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9818), + [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [12926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11773), + [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11773), + [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8430), + [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), + [12934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 5, 0, 146), + [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8432), + [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8433), + [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), + [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), + [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [12960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotation_def_repeat1, 1, 0, 0), + [12962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11048), + [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11048), + [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8422), + [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), + [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), + [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), + [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), + [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), + [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8449), + [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [13010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11604), + [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11604), + [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8473), + [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8945), + [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), + [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [13034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(970), + [13037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8517), + [13039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11865), + [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11865), + [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [13055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [13057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [13061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8882), + [13063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8368), + [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), + [13067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8369), + [13069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), + [13071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10622), + [13073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10622), + [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), + [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [13085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [13087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [13089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8484), + [13091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [13093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [13095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [13099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [13101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [13103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11711), + [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11711), + [13107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [13109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [13111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11693), + [13113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11693), + [13115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8602), + [13117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [13119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), + [13123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8424), + [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8625), + [13131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10909), + [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10909), + [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [13141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [13143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [13145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [13147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [13149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), + [13151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11365), + [13153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11365), + [13155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8664), + [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8704), + [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [13161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [13163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8476), + [13165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), + [13167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8477), + [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), + [13171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), + [13173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11914), + [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11914), + [13177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [13183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [13185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [13187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8786), + [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [13191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8805), + [13193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), + [13195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [13197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11472), + [13199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11472), + [13201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8841), + [13203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proc_param_list, 1, 0, 0), + [13205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8742), + [13207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8865), + [13209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [13215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [13219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), + [13221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [13223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8910), + [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), + [13227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), + [13229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [13231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), + [13233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [13235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [13237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [13239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), + [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [13243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), + [13245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8795), + [13247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8578), + [13249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [13251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [13253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [13255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), + [13257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [13259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), + [13261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [13265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [13267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), + [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), + [13275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotation_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(972), + [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), + [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8465), + [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8525), + [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), + [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), + [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), + [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), + [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [13326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_param_list_repeat1, 2, 0, 0), + [13328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9346), + [13331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [13333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [13335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [13337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [13339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [13341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [13343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), + [13345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [13347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8370), + [13349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [13351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [13353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [13355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), + [13357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when, 4, 0, 29), + [13359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8398), + [13361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8372), + [13363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [13365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [13367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8442), + [13369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), + [13371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [13373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [13375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [13377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9421), + [13379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [13381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [13383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [13385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [13387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [13389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), + [13391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), + [13393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [13395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), + [13397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), + [13399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), + [13401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [13403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [13405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), + [13407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [13409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), + [13411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [13413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8576), + [13415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [13417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [13419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), + [13421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [13423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [13425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [13427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), + [13429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [13431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [13433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), + [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), + [13439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 3, 0, 42), + [13441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_type, 3, 0, 20), + [13443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [13445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9466), + [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [13449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_body_param, 1, 0, 20), + [13451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), + [13453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9470), + [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9071), + [13457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param_list, 1, 0, 0), + [13459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [13461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), + [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [13465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), + [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [13469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_hash_repeat1, 2, 0, 0), + [13471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_hash_repeat1, 2, 0, 0), SHIFT_REPEAT(1070), + [13474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [13476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [13478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), + [13480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), + [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), + [13484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), + [13488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [13490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), + [13492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [13494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), + [13498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), + [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [13504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [13506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), + [13508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [13510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8401), + [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8382), + [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), + [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), + [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), + [13520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), + [13524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8446), + [13526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), + [13528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9509), + [13530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), + [13532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), + [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), + [13538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), + [13540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), + [13542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), + [13544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [13546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [13548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [13550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [13552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8384), + [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [13558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [13562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [13564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [13566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9549), + [13568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_instance_param_list, 1, 0, 0), + [13570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8365), + [13572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [13574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [13576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [13578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [13580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [13582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [13584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [13586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [13588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [13590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [13592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [13594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [13596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9563), + [13598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8386), + [13600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [13602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [13604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [13606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), + [13608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9568), + [13610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9574), + [13612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [13614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10445), + [13616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9844), + [13618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [13620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [13622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [13624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [13626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_param_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9188), + [13629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_param_list_repeat1, 2, 0, 0), + [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [13633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), + [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [13645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8470), + [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7897), + [13651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), + [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8388), + [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), + [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), + [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [13663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 122), + [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [13667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), + [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [13673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [13677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8389), + [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8452), + [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [13691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [13693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [13697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), + [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), + [13701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8391), + [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), + [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), + [13713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), + [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8457), + [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [13725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), + [13729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8392), + [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [13737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param_list, 1, 0, 0), + [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9220), + [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), + [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8393), + [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [13753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 54), + [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [13759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), + [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), + [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), + [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), + [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [13781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [13783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), + [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), + [13789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8396), + [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [13793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8400), + [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [13797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11667), + [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11667), + [13801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [13803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [13809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), + [13813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implicit_object_tuple_repeat1, 2, 0, 0), SHIFT_REPEAT(937), + [13816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8519), + [13818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [13820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [13822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [13824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [13826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_nested_param, 4, 0, 0), + [13828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [13830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11460), + [13832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [13834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11463), + [13836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [13838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [13840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in, 5, 0, 110), + [13842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [13844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [13846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_nested_param, 3, 0, 0), + [13848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_param_splat, 2, 0, 0), + [13850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in, 4, 0, 29), + [13852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [13854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [13856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_symbol_array_percent_literal_repeat1, 1, 0, 6), + [13858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [13860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11252), + [13862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [13864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [13866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [13868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [13870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [13872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [13874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [13876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [13878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_body_splat_param, 2, 0, 9), + [13880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), + [13882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11323), + [13884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 5, 0, 171), + [13886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [13888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [13890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2, 0, 0), + [13892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7899), + [13894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11400), + [13896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [13898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11147), + [13900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8478), + [13902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10854), + [13904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [13906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11368), + [13908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [13910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [13912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [13916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 3, 0, 49), + [13918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [13920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9668), + [13922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9668), + [13924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8952), + [13926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [13928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), + [13930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6314), + [13932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10897), + [13936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [13938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11077), + [13942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [13944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [13946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), + [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [13950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_nested_param, 5, 0, 0), + [13952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [13956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 4, 0, 155), + [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), + [13960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11182), + [13962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [13964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [13966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [13968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11377), + [13970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [13972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [13974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [13976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11274), + [13978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [13980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11006), + [13982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [13984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11403), + [13986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_percent_literal_array_word, 2, 0, 0), + [13988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9773), + [13990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9773), + [13992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [13994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [13996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [13998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11454), + [14000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11457), + [14002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), + [14004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [14006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [14008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [14010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), + [14012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11462), + [14014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [14016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [14018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 4, 0, 54), + [14020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [14022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [14024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_splat_param, 4, 0, 54), + [14026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [14028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11338), + [14030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9004), + [14032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [14036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [14038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11430), + [14042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exhaustive_case_repeat1, 1, 0, 0), + [14044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 3, 0, 132), + [14046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10933), + [14048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9149), + [14050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11707), + [14052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [14054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11397), + [14056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8434), + [14058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10681), + [14060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 2, 0, 9), + [14062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), + [14064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [14066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [14068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11293), + [14070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [14072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11042), + [14074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [14076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [14078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_param, 5, 0, 171), + [14080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), + [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [14084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11217), + [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11433), + [14090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_percent_literal_array_word, 3, 0, 0), + [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11348), + [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11358), + [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [14100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [14104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_array_percent_literal_repeat1, 1, 0, 0), + [14106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [14108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [14110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11386), + [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11406), + [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [14116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11409), + [14118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11112), + [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11412), + [14122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [14124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11394), + [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11415), + [14134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11418), + [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11421), + [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [14140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11424), + [14142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11308), + [14144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11427), + [14146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11436), + [14148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11439), + [14150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11442), + [14152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11445), + [14154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6700), + [14156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), + [14158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11448), + [14160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11451), + [14162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [14164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10970), + [14166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [14168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8291), + [14170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [14172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [14174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8295), + [14176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8296), + [14178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [14180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), + [14182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [14184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [14186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [14188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [14190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), + [14192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [14194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [14196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [14198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [14200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [14202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [14204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [14206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [14208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [14210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [14212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8312), + [14214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8313), + [14216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [14218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8315), + [14220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [14222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), + [14224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [14226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [14228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [14232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [14234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), + [14236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [14238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [14240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [14242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [14244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8329), + [14246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), + [14248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [14250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [14252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [14254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [14256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [14258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8331), + [14260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8332), + [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [14264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), + [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [14268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), + [14270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), + [14272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), + [14274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8338), + [14276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8339), + [14278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8340), + [14280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), + [14282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [14284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), + [14286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), + [14288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [14290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8348), + [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), + [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8351), + [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [14300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [14302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [14304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [14306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [14308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [14310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [14318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [14320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8183), + [14322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [14324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), + [14326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [14328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [14334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), + [14338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [14342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [14344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [14348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [14350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [14354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8359), + [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8360), + [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8361), + [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [14364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), + [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8279), + [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [14370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [14374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), + [14378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), + [14380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [14382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [14384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [14386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [14390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [14392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), + [14394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8237), + [14396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), + [14398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ensure, 2, 0, 0), + [14400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [14402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [14404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), + [14406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [14408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), + [14410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [14412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10473), + [14414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__numeric_type, 1, 0, 0), + [14416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), + [14418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 4, 0, 0), + [14420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [14422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [14424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [14426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [14428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), + [14430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [14432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [14434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [14436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [14438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [14440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [14444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [14446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [14448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [14450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [14452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [14454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [14456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [14458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [14462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [14464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [14466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [14468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [14470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [14472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [14474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), + [14476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [14478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [14480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 3, 0, 0), + [14482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10133), + [14484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [14486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [14488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), + [14492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [14494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), + [14496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [14498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [14500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [14502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [14504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [14506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7957), + [14508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10160), + [14512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), + [14514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [14516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [14518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [14520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), + [14522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), + [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10161), + [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [14532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [14534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [14536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [14538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [14540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [14542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [14544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), + [14552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [14554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [14556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), + [14558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7964), + [14560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [14562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [14564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), + [14566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), + [14568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [14572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [14576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), + [14578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [14584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), + [14588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), + [14590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [14592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [14594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [14596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [14598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [14600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [14602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), + [14604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [14606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [14608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [14610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [14612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [14614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [14616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [14618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [14620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [14622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [14624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [14626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [14628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [14630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [14632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [14640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [14642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 3, 0, 132), + [14644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), + [14646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [14648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [14652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [14654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [14658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7967), + [14660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [14662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [14664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [14666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [14668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9355), + [14670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [14672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [14676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [14680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [14686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [14688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [14690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), + [14692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [14694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10362), + [14696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [14700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [14702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9341), + [14708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), + [14710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7841), + [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), + [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [14716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10368), + [14718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), + [14720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [14722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [14724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10376), + [14726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [14728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [14730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10378), + [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [14738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [14740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7969), + [14742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [14744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7970), + [14746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [14748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [14750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [14752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [14754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [14756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [14758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [14760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [14762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [14764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9273), + [14766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [14768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [14770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [14772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [14776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [14778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [14780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [14782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [14784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [14792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [14794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [14798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10405), + [14800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [14804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [14806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), + [14808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [14810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [14814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [14816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), + [14818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [14820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif, 5, 0, 119), + [14822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7892), + [14824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [14826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [14828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9379), + [14830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [14832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [14834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [14836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), + [14838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [14840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [14842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), + [14844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10415), + [14846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [14848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [14850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [14852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10425), + [14854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10426), + [14856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [14858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), + [14860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [14862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [14864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [14866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7975), + [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [14870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9743), + [14876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [14884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), + [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9746), + [14890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [14892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9747), + [14894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9754), + [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9330), + [14900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9755), + [14902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [14906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), + [14908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [14910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [14912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7980), + [14914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9757), + [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [14920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [14922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9758), + [14924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), + [14926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [14928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [14930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [14932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [14934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [14936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [14938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), + [14940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [14942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [14946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [14948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [14950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [14952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [14954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [14956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [14958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [14960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [14962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), + [14964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9344), + [14966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [14968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [14970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [14972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [14974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [14976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [14978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8367), + [14980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [14982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [14984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [14986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [14990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [14994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [14996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), + [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), + [15002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), + [15004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [15006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [15008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7035), + [15012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elsif, 4, 0, 81), + [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), + [15020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [15022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), + [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9311), + [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7984), + [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8853), + [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), + [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), + [15054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [15056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), + [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [15062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [15064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8374), + [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [15070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [15072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), + [15074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [15076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [15078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [15080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [15082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [15086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [15088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 2, 0, 0), + [15090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), + [15092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [15094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9339), + [15096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), + [15098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [15100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [15102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [15104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [15106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [15108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [15110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [15112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [15114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [15116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [15118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [15120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [15122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [15124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [15126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [15128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [15130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [15132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [15134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8938), + [15136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [15138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [15140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [15142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [15144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [15146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [15148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [15150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [15152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8601), + [15154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [15156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9371), + [15160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8605), + [15162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [15164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8607), + [15166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8609), + [15168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [15170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8610), + [15172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [15174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [15176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [15178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [15180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8379), + [15182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), + [15184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [15186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [15188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), + [15190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [15192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [15194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [15196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [15198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [15200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), + [15202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), + [15204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [15206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [15208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [15210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), + [15212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [15214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [15216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [15218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [15220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [15222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [15224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [15226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9266), + [15228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [15230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [15232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [15234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [15236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [15238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [15240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [15242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [15244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [15246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), + [15248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [15250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [15252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [15254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [15256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [15258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [15260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [15262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8663), + [15264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [15266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [15268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8669), + [15270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [15272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8677), + [15274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [15276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [15278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), + [15280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [15282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [15284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [15286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [15288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [15290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [15292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9289), + [15294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [15296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [15298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [15300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [15302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [15304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [15306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [15308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [15310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), + [15312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [15314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [15316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [15318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [15320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [15322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [15324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), + [15326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [15328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [15330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [15332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [15334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [15336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [15338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), + [15340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [15342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [15344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8759), + [15346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [15348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [15350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [15352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [15354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8778), + [15356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8781), + [15358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [15360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9295), + [15362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8785), + [15364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), + [15366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [15368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [15370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [15372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8794), + [15374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [15376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [15378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8801), + [15380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [15382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [15384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [15386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [15388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [15390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [15392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [15394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [15396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [15398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), + [15400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), + [15402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8840), + [15404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [15406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [15408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [15410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8863), + [15412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8864), + [15414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [15416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [15418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [15420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), + [15422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [15424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), + [15426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [15428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9256), + [15430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [15432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [15434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [15436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [15438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [15440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [15442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [15444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [15446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [15448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [15450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [15452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [15454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [15456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [15458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [15460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8896), + [15462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8901), + [15464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [15466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8912), + [15468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), + [15470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [15472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [15474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11068), + [15476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [15478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), + [15480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11070), + [15482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [15484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [15486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [15488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [15490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [15492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [15494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [15496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [15498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8390), + [15500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [15502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [15504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [15506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), + [15508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [15510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8666), + [15512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8672), + [15514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [15516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [15518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), + [15520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [15522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [15524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [15526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [15528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [15530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8730), + [15532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [15534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8743), + [15536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [15538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8822), + [15540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8878), + [15542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8913), + [15544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), + [15546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), + [15548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), + [15550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [15552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [15554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [15556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 5, 0, 171), + [15558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8569), + [15560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [15562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), + [15564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [15566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8587), + [15568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [15570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [15572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [15574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [15576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [15578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [15580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [15582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [15584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [15586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [15588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [15590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [15592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8615), + [15594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), + [15596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [15598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [15600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [15602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [15604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), + [15606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), + [15608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [15610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [15612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), + [15614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [15616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), + [15618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [15620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [15622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [15624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), + [15626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), + [15628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [15630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8655), + [15632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [15634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), + [15636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8657), + [15638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8660), + [15640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [15642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), + [15644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8689), + [15646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [15648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [15650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [15652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [15654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [15656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7498), + [15658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), + [15660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [15662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [15664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [15666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [15668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), + [15670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [15672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), + [15674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [15676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [15678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), + [15680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8708), + [15682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [15684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [15686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8712), + [15688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [15690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [15692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [15694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [15696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), + [15698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), + [15700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [15702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [15704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [15706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [15708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [15710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), + [15712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [15714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [15716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9370), + [15718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [15720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [15722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), + [15724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), + [15726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), + [15728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [15730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [15732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), + [15734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [15736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [15738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [15740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), + [15742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [15744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [15746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), + [15748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [15750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), + [15752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), + [15754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [15756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [15758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [15760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [15762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [15764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [15766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [15768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [15770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), + [15772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [15774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [15776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [15778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), + [15780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [15782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10964), + [15784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), + [15786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [15788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [15790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), + [15792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [15794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [15796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [15798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), + [15800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), + [15802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [15804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [15806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [15808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [15810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [15812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [15814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [15816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [15818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [15820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [15822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [15824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9408), + [15826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [15828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), + [15830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), + [15832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [15834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), + [15836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation_argument_list, 5, 0, 0), + [15838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [15840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9420), + [15842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), + [15844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [15846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [15848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [15850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [15852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [15854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [15856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), + [15858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), + [15860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9423), + [15862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [15864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [15866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [15868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), + [15870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [15872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [15874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9291), + [15876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), + [15878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), + [15880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [15882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [15884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [15886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [15888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), + [15890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [15892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [15894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), + [15896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), + [15898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), + [15900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [15902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [15904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [15906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8001), + [15908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [15910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [15912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), + [15914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [15916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [15918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), + [15920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), + [15922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8311), + [15924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), + [15926] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [15928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), + [15930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), + [15932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), + [15934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), + [15936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [15938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10470), + [15940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [15942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [15944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [15946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), + [15948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [15950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), + [15952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), + [15954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [15956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), + [15958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), + [15960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [15962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), + [15964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [15966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [15968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [15970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [15972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [15974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [15976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9465), + [15978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [15980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), + [15982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7988), + [15984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [15986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [15988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [15990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [15992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9468), + [15994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8634), + [15996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9469), + [15998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [16000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), + [16002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [16004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [16006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [16008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [16010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [16012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), + [16014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), + [16016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), + [16018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [16020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [16022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [16024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), + [16026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7989), + [16028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [16030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [16032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), + [16034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [16036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [16038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), + [16040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [16042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), + [16044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [16046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [16048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [16050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), + [16052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [16054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), + [16056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [16058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), + [16060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), + [16062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), + [16064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), + [16066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [16068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [16070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [16072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [16074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [16076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [16078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [16080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), + [16082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [16084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [16086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), + [16088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), + [16090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [16092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), + [16094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [16096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [16098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), + [16100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [16102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [16104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [16106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), + [16108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [16110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [16112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [16114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [16116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [16118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), + [16120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [16122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [16124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), + [16126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [16128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [16130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [16132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [16134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [16136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [16138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [16140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [16142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [16144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [16146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), + [16148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [16150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), + [16152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), + [16154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [16156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8489), + [16158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [16160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [16162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [16164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), + [16166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9505), + [16168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9506), + [16170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), + [16172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), + [16174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), + [16176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [16178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [16180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), + [16182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), + [16184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [16186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [16188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9517), + [16190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [16192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [16194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), + [16196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [16198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9521), + [16200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [16202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), + [16204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [16206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [16208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), + [16210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [16212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [16214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), + [16216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7463), + [16218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), + [16220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), + [16222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [16224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [16226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), + [16228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [16230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [16232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), + [16234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [16236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), + [16238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [16240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [16242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [16244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [16246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [16248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), + [16250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [16252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9535), + [16254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), + [16256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [16258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), + [16260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [16262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [16264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [16266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [16268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [16270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [16272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [16274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9548), + [16276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [16278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), + [16280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), + [16282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [16284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [16286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [16288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [16290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [16292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), + [16294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), + [16296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9553), + [16298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9555), + [16300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [16302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [16304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [16306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), + [16308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), + [16310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [16312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 4, 0, 54), + [16314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [16316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [16318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [16320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [16322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [16324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8322), + [16326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9562), + [16328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [16330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [16332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), + [16334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_list, 4, 0, 0), + [16336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [16338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [16340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8906), + [16342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [16344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [16346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [16348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9565), + [16350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), + [16352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [16354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [16356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [16358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7986), + [16360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [16362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [16364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [16366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), + [16368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), + [16370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [16372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9567), + [16374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [16376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9570), + [16378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9571), + [16380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [16382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [16384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), + [16386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9575), + [16388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [16390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9576), + [16392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [16394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [16396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [16398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), + [16400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [16402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [16404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [16406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [16408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8950), + [16410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), + [16412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8043), + [16414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), + [16416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [16418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [16420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), + [16422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [16424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [16426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [16428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_param, 4, 0, 155), + [16430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), + [16432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [16434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), + [16436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [16438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9882), + [16440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), + [16442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [16444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [16446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8435), + [16448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), + [16450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [16452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [16454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9343), + [16456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [16458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [16460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [16462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8201), + [16464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [16466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [16468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), + [16470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [16472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), + [16474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [16476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [16478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8207), + [16480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [16482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9310), + [16484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8208), + [16486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8209), + [16488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), + [16490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), + [16492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [16494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [16496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [16498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [16500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), + [16502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), + [16504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), + [16506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), + [16508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [16510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9324), + [16512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [16514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [16516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [16518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [16520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [16522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), + [16524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), + [16526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [16528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [16530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [16532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [16534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [16536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [16538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9303), + [16540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), + [16542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [16544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [16546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [16548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [16550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [16552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [16554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [16556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [16558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [16560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), + [16562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), + [16564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [16566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9255), + [16568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [16570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [16572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [16574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [16576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [16578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [16580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [16582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [16584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [16586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), + [16588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [16590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [16592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [16594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9342), + [16596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7947), + [16598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [16600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [16602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9952), + [16604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [16606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [16608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), + [16610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [16612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [16614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [16616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), + [16618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [16620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [16622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9284), + [16624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [16626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [16628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [16630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [16632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [16634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), + [16636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), + [16638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [16640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), + [16642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [16644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), + [16646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [16648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9312), + [16650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [16652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [16654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [16656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [16658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [16660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [16662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), + [16664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [16666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), + [16668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [16670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [16672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [16674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [16676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9336), + [16678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [16680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), + [16682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), + [16684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [16686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), + [16688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [16690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), + [16692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [16694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), + [16696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), + [16698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [16700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [16702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9356), + [16704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [16706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [16708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [16710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [16712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [16714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), + [16716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [16718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [16720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), + [16722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), + [16724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), + [16726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [16728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [16730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9368), + [16732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [16734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [16736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [16738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [16740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [16742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [16744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [16746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [16748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [16750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [16752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [16754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [16756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [16758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9387), + [16760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [16762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [16764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [16766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), + [16768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), + [16770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [16772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), + [16774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [16776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [16778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9290), + [16780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8231), + [16782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [16784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [16786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), + [16788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [16790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [16792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [16794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [16796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [16798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), + [16800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8234), + [16802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), + [16804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [16806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), + [16808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [16810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [16812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [16814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [16816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [16818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [16820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [16822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [16824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), + [16826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [16828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [16830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [16832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [16834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [16836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [16838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [16840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [16842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [16844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [16846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [16848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [16850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9981), + [16852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [16854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [16856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [16858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [16860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [16862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [16864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [16866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [16868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [16870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [16872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), + [16874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [16876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [16878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [16880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [16882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [16884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), + [16886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), + [16888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [16890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [16892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9254), + [16894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [16896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [16898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), + [16900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [16902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), + [16904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [16906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [16908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [16910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), + [16912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [16914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [16916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [16918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [16920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [16922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [16924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), + [16926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [16928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [16930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [16932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8428), + [16934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8271), + [16936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), + [16938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [16940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [16942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [16944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [16946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [16948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [16950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [16952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [16954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [16956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), + [16958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [16960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [16962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [16964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), + [16966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), + [16968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), + [16970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), + [16972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), + [16974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), + [16976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), + [16978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), + [16980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), + [16982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), + [16984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), + [16986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), + [16988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [16990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), + [16992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 3, 0, 0), + [16994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -713943,60 +721424,301 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__binary_slash] = true, [ts_external_token__binary_double_slash] = true, [ts_external_token__regular_if_keyword] = true, - [ts_external_token__modifier_if_keyword] = true, + [ts_external_token__modifier_if_keyword] = true, + [ts_external_token__regular_unless_keyword] = true, + [ts_external_token__modifier_unless_keyword] = true, + [ts_external_token__regular_rescue_keyword] = true, + [ts_external_token__modifier_rescue_keyword] = true, + [ts_external_token__regular_ensure_keyword] = true, + [ts_external_token__modifier_ensure_keyword] = true, + [ts_external_token__modulo_operator] = true, + [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, + [ts_external_token__symbol_array_percent_literal_start] = true, + [ts_external_token__regex_percent_literal_start] = true, + [ts_external_token__percent_literal_end] = true, + [ts_external_token__delimited_array_element_start] = true, + [ts_external_token__delimited_array_element_end] = true, + [ts_external_token_heredoc_start] = true, + [ts_external_token__heredoc_body_start] = true, + [ts_external_token_heredoc_content] = true, + [ts_external_token_heredoc_end] = true, + [ts_external_token_regex_modifier] = true, + [ts_external_token__start_of_parenless_args] = true, + [ts_external_token__end_of_range] = true, + [ts_external_token__error_recovery] = true, + }, + [2] = { + [ts_external_token__line_continuation] = true, + [ts_external_token__start_of_hash_or_tuple] = true, + [ts_external_token__start_of_named_tuple] = true, + [ts_external_token_unary_plus] = true, + [ts_external_token_unary_minus] = true, + [ts_external_token_unary_wrapping_plus] = true, + [ts_external_token_unary_wrapping_minus] = true, + [ts_external_token__beginless_range_operator] = true, + [ts_external_token__regex_start] = true, + [ts_external_token__regular_if_keyword] = true, + [ts_external_token__regular_unless_keyword] = true, + [ts_external_token__string_literal_start] = 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, + [ts_external_token__symbol_array_percent_literal_start] = true, + [ts_external_token__regex_percent_literal_start] = true, + [ts_external_token_heredoc_start] = true, + [ts_external_token__heredoc_body_start] = true, + }, + [3] = { + [ts_external_token__line_break] = true, + [ts_external_token__line_continuation] = true, + [ts_external_token__start_of_brace_block] = true, + [ts_external_token__start_of_hash_or_tuple] = true, + [ts_external_token__start_of_named_tuple] = true, + [ts_external_token__start_of_index_operator] = true, + [ts_external_token_unary_plus] = true, + [ts_external_token_unary_minus] = true, + [ts_external_token_binary_plus] = true, + [ts_external_token_binary_minus] = true, + [ts_external_token_unary_wrapping_plus] = true, + [ts_external_token_unary_wrapping_minus] = true, + [ts_external_token_binary_wrapping_plus] = true, + [ts_external_token_binary_wrapping_minus] = true, + [ts_external_token__unary_star] = true, + [ts_external_token__binary_star] = true, + [ts_external_token__unary_double_star] = true, + [ts_external_token__binary_double_star] = true, + [ts_external_token__block_ampersand] = true, + [ts_external_token_binary_ampersand] = true, + [ts_external_token__beginless_range_operator] = true, + [ts_external_token__regex_start] = true, + [ts_external_token__binary_slash] = true, + [ts_external_token__binary_double_slash] = true, + [ts_external_token__regular_if_keyword] = true, + [ts_external_token__modifier_if_keyword] = true, + [ts_external_token__regular_unless_keyword] = true, + [ts_external_token__modifier_unless_keyword] = true, + [ts_external_token__modifier_rescue_keyword] = true, + [ts_external_token__modifier_ensure_keyword] = true, + [ts_external_token__modulo_operator] = true, + [ts_external_token__string_literal_start] = 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, + [ts_external_token__symbol_array_percent_literal_start] = true, + [ts_external_token__regex_percent_literal_start] = true, + [ts_external_token_heredoc_start] = true, + [ts_external_token__heredoc_body_start] = true, + [ts_external_token__start_of_parenless_args] = true, + }, + [4] = { + [ts_external_token__line_break] = true, + [ts_external_token__line_continuation] = true, + [ts_external_token__start_of_brace_block] = true, + [ts_external_token__start_of_hash_or_tuple] = true, + [ts_external_token__start_of_named_tuple] = true, + [ts_external_token__start_of_index_operator] = true, + [ts_external_token_unary_plus] = true, + [ts_external_token_unary_minus] = true, + [ts_external_token_binary_plus] = true, + [ts_external_token_binary_minus] = true, + [ts_external_token_unary_wrapping_plus] = true, + [ts_external_token_unary_wrapping_minus] = true, + [ts_external_token_binary_wrapping_plus] = true, + [ts_external_token_binary_wrapping_minus] = true, + [ts_external_token__unary_star] = true, + [ts_external_token__binary_star] = true, + [ts_external_token__unary_double_star] = true, + [ts_external_token__binary_double_star] = true, + [ts_external_token__block_ampersand] = true, + [ts_external_token_binary_ampersand] = true, + [ts_external_token__beginless_range_operator] = true, + [ts_external_token__regex_start] = true, + [ts_external_token__binary_slash] = true, + [ts_external_token__binary_double_slash] = true, + [ts_external_token__regular_if_keyword] = true, + [ts_external_token__modifier_if_keyword] = true, + [ts_external_token__regular_unless_keyword] = true, + [ts_external_token__modifier_unless_keyword] = true, + [ts_external_token__regular_rescue_keyword] = true, + [ts_external_token__modifier_rescue_keyword] = true, + [ts_external_token__regular_ensure_keyword] = true, + [ts_external_token__modifier_ensure_keyword] = true, + [ts_external_token__modulo_operator] = true, + [ts_external_token__string_literal_start] = 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, + [ts_external_token__symbol_array_percent_literal_start] = true, + [ts_external_token__regex_percent_literal_start] = true, + [ts_external_token_heredoc_start] = true, + [ts_external_token__heredoc_body_start] = true, + [ts_external_token__start_of_parenless_args] = true, + }, + [5] = { + [ts_external_token__line_break] = true, + [ts_external_token__line_continuation] = true, + [ts_external_token__start_of_brace_block] = true, + [ts_external_token__start_of_hash_or_tuple] = true, + [ts_external_token__start_of_named_tuple] = true, + [ts_external_token__start_of_index_operator] = true, + [ts_external_token_unary_plus] = true, + [ts_external_token_unary_minus] = true, + [ts_external_token_binary_plus] = true, + [ts_external_token_binary_minus] = true, + [ts_external_token_unary_wrapping_plus] = true, + [ts_external_token_unary_wrapping_minus] = true, + [ts_external_token_binary_wrapping_plus] = true, + [ts_external_token_binary_wrapping_minus] = true, + [ts_external_token__unary_star] = true, + [ts_external_token__binary_star] = true, + [ts_external_token__unary_double_star] = true, + [ts_external_token__binary_double_star] = true, + [ts_external_token__block_ampersand] = true, + [ts_external_token_binary_ampersand] = true, + [ts_external_token__beginless_range_operator] = true, + [ts_external_token__regex_start] = true, + [ts_external_token__binary_slash] = true, + [ts_external_token__binary_double_slash] = true, + [ts_external_token__regular_if_keyword] = true, + [ts_external_token__modifier_if_keyword] = true, + [ts_external_token__regular_unless_keyword] = true, + [ts_external_token__modifier_unless_keyword] = true, + [ts_external_token__modifier_rescue_keyword] = true, + [ts_external_token__regular_ensure_keyword] = true, + [ts_external_token__modifier_ensure_keyword] = true, + [ts_external_token__modulo_operator] = true, + [ts_external_token__string_literal_start] = 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, + [ts_external_token__symbol_array_percent_literal_start] = true, + [ts_external_token__regex_percent_literal_start] = true, + [ts_external_token_heredoc_start] = true, + [ts_external_token__heredoc_body_start] = true, + [ts_external_token__start_of_parenless_args] = true, + }, + [6] = { + [ts_external_token__line_continuation] = true, + [ts_external_token__start_of_brace_block] = true, + [ts_external_token__start_of_hash_or_tuple] = true, + [ts_external_token__start_of_named_tuple] = true, + [ts_external_token__start_of_index_operator] = true, + [ts_external_token_unary_plus] = true, + [ts_external_token_unary_minus] = true, + [ts_external_token_binary_plus] = true, + [ts_external_token_binary_minus] = true, + [ts_external_token_unary_wrapping_plus] = true, + [ts_external_token_unary_wrapping_minus] = true, + [ts_external_token_binary_wrapping_plus] = true, + [ts_external_token_binary_wrapping_minus] = true, + [ts_external_token__unary_star] = true, + [ts_external_token__binary_star] = true, + [ts_external_token__unary_double_star] = true, + [ts_external_token__binary_double_star] = true, + [ts_external_token__block_ampersand] = true, + [ts_external_token_binary_ampersand] = true, + [ts_external_token__beginless_range_operator] = true, + [ts_external_token__regex_start] = true, + [ts_external_token__binary_slash] = true, + [ts_external_token__binary_double_slash] = true, + [ts_external_token__regular_if_keyword] = true, + [ts_external_token__regular_unless_keyword] = true, + [ts_external_token__modulo_operator] = true, + [ts_external_token__string_literal_start] = 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, + [ts_external_token__symbol_array_percent_literal_start] = true, + [ts_external_token__regex_percent_literal_start] = true, + [ts_external_token_heredoc_start] = true, + [ts_external_token__heredoc_body_start] = true, + [ts_external_token__start_of_parenless_args] = true, + }, + [7] = { + [ts_external_token__line_break] = true, + [ts_external_token__line_continuation] = true, + [ts_external_token__start_of_brace_block] = true, + [ts_external_token__start_of_hash_or_tuple] = true, + [ts_external_token__start_of_named_tuple] = true, + [ts_external_token__start_of_index_operator] = true, + [ts_external_token_unary_plus] = true, + [ts_external_token_unary_minus] = true, + [ts_external_token_binary_plus] = true, + [ts_external_token_binary_minus] = true, + [ts_external_token_unary_wrapping_plus] = true, + [ts_external_token_unary_wrapping_minus] = true, + [ts_external_token_binary_wrapping_plus] = true, + [ts_external_token_binary_wrapping_minus] = true, + [ts_external_token__unary_star] = true, + [ts_external_token__binary_star] = true, + [ts_external_token__unary_double_star] = true, + [ts_external_token__binary_double_star] = true, + [ts_external_token__block_ampersand] = true, + [ts_external_token_binary_ampersand] = true, + [ts_external_token__beginless_range_operator] = true, + [ts_external_token__regex_start] = true, + [ts_external_token__binary_slash] = true, + [ts_external_token__binary_double_slash] = true, + [ts_external_token__regular_if_keyword] = true, + [ts_external_token__regular_unless_keyword] = true, + [ts_external_token__modulo_operator] = true, + [ts_external_token__string_literal_start] = 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, + [ts_external_token__symbol_array_percent_literal_start] = true, + [ts_external_token__regex_percent_literal_start] = true, + [ts_external_token_heredoc_start] = true, + [ts_external_token__heredoc_body_start] = true, + [ts_external_token__start_of_parenless_args] = true, + }, + [8] = { + [ts_external_token__line_continuation] = true, + [ts_external_token__start_of_brace_block] = true, + [ts_external_token__start_of_hash_or_tuple] = true, + [ts_external_token__start_of_named_tuple] = true, + [ts_external_token__start_of_index_operator] = true, + [ts_external_token__end_of_with_expression] = true, + [ts_external_token_unary_plus] = true, + [ts_external_token_unary_minus] = true, + [ts_external_token_binary_plus] = true, + [ts_external_token_binary_minus] = true, + [ts_external_token_unary_wrapping_plus] = true, + [ts_external_token_unary_wrapping_minus] = true, + [ts_external_token_binary_wrapping_plus] = true, + [ts_external_token_binary_wrapping_minus] = true, + [ts_external_token__unary_star] = true, + [ts_external_token__binary_star] = true, + [ts_external_token__unary_double_star] = true, + [ts_external_token__binary_double_star] = true, + [ts_external_token__block_ampersand] = true, + [ts_external_token_binary_ampersand] = true, + [ts_external_token__beginless_range_operator] = true, + [ts_external_token__regex_start] = true, + [ts_external_token__binary_slash] = true, + [ts_external_token__binary_double_slash] = true, + [ts_external_token__regular_if_keyword] = true, [ts_external_token__regular_unless_keyword] = true, - [ts_external_token__modifier_unless_keyword] = true, - [ts_external_token__regular_rescue_keyword] = true, - [ts_external_token__modifier_rescue_keyword] = true, - [ts_external_token__regular_ensure_keyword] = true, - [ts_external_token__modifier_ensure_keyword] = true, [ts_external_token__modulo_operator] = true, [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, [ts_external_token__symbol_array_percent_literal_start] = true, [ts_external_token__regex_percent_literal_start] = true, - [ts_external_token__percent_literal_end] = true, - [ts_external_token__delimited_array_element_start] = true, - [ts_external_token__delimited_array_element_end] = true, [ts_external_token_heredoc_start] = true, [ts_external_token__heredoc_body_start] = true, - [ts_external_token_heredoc_content] = true, - [ts_external_token_heredoc_end] = true, - [ts_external_token_regex_modifier] = true, [ts_external_token__start_of_parenless_args] = true, - [ts_external_token__end_of_range] = true, - [ts_external_token__error_recovery] = true, }, - [2] = { - [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_hash_or_tuple] = true, - [ts_external_token__start_of_named_tuple] = true, - [ts_external_token_unary_plus] = true, - [ts_external_token_unary_minus] = true, - [ts_external_token_unary_wrapping_plus] = true, - [ts_external_token_unary_wrapping_minus] = true, - [ts_external_token__beginless_range_operator] = true, - [ts_external_token__regex_start] = true, - [ts_external_token__regular_if_keyword] = true, - [ts_external_token__regular_unless_keyword] = true, - [ts_external_token__string_literal_start] = 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, - [ts_external_token__symbol_array_percent_literal_start] = true, - [ts_external_token__regex_percent_literal_start] = true, - [ts_external_token_heredoc_start] = true, - [ts_external_token__heredoc_body_start] = true, - }, - [3] = { + [9] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_hash_or_tuple] = true, [ts_external_token__start_of_named_tuple] = true, [ts_external_token__start_of_index_operator] = true, @@ -714035,10 +721757,9 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, [ts_external_token__start_of_parenless_args] = true, }, - [4] = { + [10] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_hash_or_tuple] = true, [ts_external_token__start_of_named_tuple] = true, [ts_external_token__start_of_index_operator] = true, @@ -714079,39 +721800,21 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, [ts_external_token__start_of_parenless_args] = true, }, - [5] = { + [11] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_hash_or_tuple] = true, [ts_external_token__start_of_named_tuple] = true, - [ts_external_token__start_of_index_operator] = true, [ts_external_token_unary_plus] = true, [ts_external_token_unary_minus] = true, - [ts_external_token_binary_plus] = true, - [ts_external_token_binary_minus] = true, [ts_external_token_unary_wrapping_plus] = true, [ts_external_token_unary_wrapping_minus] = true, - [ts_external_token_binary_wrapping_plus] = true, - [ts_external_token_binary_wrapping_minus] = true, - [ts_external_token__unary_star] = true, - [ts_external_token__binary_star] = true, - [ts_external_token__unary_double_star] = true, - [ts_external_token__binary_double_star] = true, - [ts_external_token__block_ampersand] = true, - [ts_external_token_binary_ampersand] = true, [ts_external_token__beginless_range_operator] = true, [ts_external_token__regex_start] = true, - [ts_external_token__binary_slash] = true, - [ts_external_token__binary_double_slash] = true, [ts_external_token__regular_if_keyword] = true, - [ts_external_token__modifier_if_keyword] = true, [ts_external_token__regular_unless_keyword] = true, - [ts_external_token__modifier_unless_keyword] = true, - [ts_external_token__modifier_rescue_keyword] = true, + [ts_external_token__regular_rescue_keyword] = true, [ts_external_token__regular_ensure_keyword] = true, - [ts_external_token__modifier_ensure_keyword] = true, - [ts_external_token__modulo_operator] = true, [ts_external_token__string_literal_start] = true, [ts_external_token__string_percent_literal_start] = true, [ts_external_token__command_percent_literal_start] = true, @@ -714120,35 +721823,21 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__regex_percent_literal_start] = true, [ts_external_token_heredoc_start] = true, [ts_external_token__heredoc_body_start] = true, - [ts_external_token__start_of_parenless_args] = true, }, - [6] = { + [12] = { [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_hash_or_tuple] = true, [ts_external_token__start_of_named_tuple] = true, - [ts_external_token__start_of_index_operator] = true, [ts_external_token_unary_plus] = true, [ts_external_token_unary_minus] = true, - [ts_external_token_binary_plus] = true, - [ts_external_token_binary_minus] = true, [ts_external_token_unary_wrapping_plus] = true, [ts_external_token_unary_wrapping_minus] = true, - [ts_external_token_binary_wrapping_plus] = true, - [ts_external_token_binary_wrapping_minus] = true, - [ts_external_token__unary_star] = true, - [ts_external_token__binary_star] = true, - [ts_external_token__unary_double_star] = true, - [ts_external_token__binary_double_star] = true, - [ts_external_token__block_ampersand] = true, - [ts_external_token_binary_ampersand] = true, [ts_external_token__beginless_range_operator] = true, [ts_external_token__regex_start] = true, - [ts_external_token__binary_slash] = true, - [ts_external_token__binary_double_slash] = true, [ts_external_token__regular_if_keyword] = true, [ts_external_token__regular_unless_keyword] = true, - [ts_external_token__modulo_operator] = true, + [ts_external_token__regular_rescue_keyword] = true, + [ts_external_token__regular_ensure_keyword] = true, [ts_external_token__string_literal_start] = true, [ts_external_token__string_percent_literal_start] = true, [ts_external_token__command_percent_literal_start] = true, @@ -714157,12 +721846,10 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__regex_percent_literal_start] = true, [ts_external_token_heredoc_start] = true, [ts_external_token__heredoc_body_start] = true, - [ts_external_token__start_of_parenless_args] = true, }, - [7] = { + [13] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_hash_or_tuple] = true, [ts_external_token__start_of_named_tuple] = true, [ts_external_token__start_of_index_operator] = true, @@ -714185,7 +721872,12 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__binary_slash] = true, [ts_external_token__binary_double_slash] = true, [ts_external_token__regular_if_keyword] = true, + [ts_external_token__modifier_if_keyword] = true, [ts_external_token__regular_unless_keyword] = true, + [ts_external_token__modifier_unless_keyword] = true, + [ts_external_token__modifier_rescue_keyword] = true, + [ts_external_token__regular_ensure_keyword] = true, + [ts_external_token__modifier_ensure_keyword] = true, [ts_external_token__modulo_operator] = true, [ts_external_token__string_literal_start] = true, [ts_external_token__string_percent_literal_start] = true, @@ -714197,13 +721889,11 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, [ts_external_token__start_of_parenless_args] = true, }, - [8] = { + [14] = { [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_hash_or_tuple] = true, [ts_external_token__start_of_named_tuple] = true, [ts_external_token__start_of_index_operator] = true, - [ts_external_token__end_of_with_expression] = true, [ts_external_token_unary_plus] = true, [ts_external_token_unary_minus] = true, [ts_external_token_binary_plus] = true, @@ -714235,9 +721925,10 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, [ts_external_token__start_of_parenless_args] = true, }, - [9] = { + [15] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, + [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_hash_or_tuple] = true, [ts_external_token__start_of_named_tuple] = true, [ts_external_token__start_of_index_operator] = true, @@ -714249,11 +721940,8 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_unary_wrapping_minus] = true, [ts_external_token_binary_wrapping_plus] = true, [ts_external_token_binary_wrapping_minus] = true, - [ts_external_token__unary_star] = true, [ts_external_token__binary_star] = true, - [ts_external_token__unary_double_star] = true, [ts_external_token__binary_double_star] = true, - [ts_external_token__block_ampersand] = true, [ts_external_token_binary_ampersand] = true, [ts_external_token__beginless_range_operator] = true, [ts_external_token__regex_start] = true, @@ -714274,9 +721962,9 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__regex_percent_literal_start] = true, [ts_external_token_heredoc_start] = true, [ts_external_token__heredoc_body_start] = true, - [ts_external_token__start_of_parenless_args] = true, + [ts_external_token__end_of_range] = true, }, - [10] = { + [16] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, [ts_external_token__start_of_hash_or_tuple] = true, @@ -714301,13 +721989,7 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__binary_slash] = true, [ts_external_token__binary_double_slash] = true, [ts_external_token__regular_if_keyword] = true, - [ts_external_token__modifier_if_keyword] = true, [ts_external_token__regular_unless_keyword] = true, - [ts_external_token__modifier_unless_keyword] = true, - [ts_external_token__regular_rescue_keyword] = true, - [ts_external_token__modifier_rescue_keyword] = true, - [ts_external_token__regular_ensure_keyword] = true, - [ts_external_token__modifier_ensure_keyword] = true, [ts_external_token__modulo_operator] = true, [ts_external_token__string_literal_start] = true, [ts_external_token__string_percent_literal_start] = true, @@ -714319,33 +722001,10 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, [ts_external_token__start_of_parenless_args] = true, }, - [11] = { - [ts_external_token__line_break] = true, - [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_hash_or_tuple] = true, - [ts_external_token__start_of_named_tuple] = true, - [ts_external_token_unary_plus] = true, - [ts_external_token_unary_minus] = true, - [ts_external_token_unary_wrapping_plus] = true, - [ts_external_token_unary_wrapping_minus] = true, - [ts_external_token__beginless_range_operator] = true, - [ts_external_token__regex_start] = true, - [ts_external_token__regular_if_keyword] = true, - [ts_external_token__regular_unless_keyword] = true, - [ts_external_token__regular_rescue_keyword] = true, - [ts_external_token__regular_ensure_keyword] = true, - [ts_external_token__string_literal_start] = 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, - [ts_external_token__symbol_array_percent_literal_start] = true, - [ts_external_token__regex_percent_literal_start] = true, - [ts_external_token_heredoc_start] = true, - [ts_external_token__heredoc_body_start] = true, - }, - [12] = { + [17] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, + [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_hash_or_tuple] = true, [ts_external_token__start_of_named_tuple] = true, [ts_external_token__start_of_index_operator] = true, @@ -714357,11 +722016,8 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_unary_wrapping_minus] = true, [ts_external_token_binary_wrapping_plus] = true, [ts_external_token_binary_wrapping_minus] = true, - [ts_external_token__unary_star] = true, [ts_external_token__binary_star] = true, - [ts_external_token__unary_double_star] = true, [ts_external_token__binary_double_star] = true, - [ts_external_token__block_ampersand] = true, [ts_external_token_binary_ampersand] = true, [ts_external_token__beginless_range_operator] = true, [ts_external_token__regex_start] = true, @@ -714372,7 +722028,6 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__regular_unless_keyword] = true, [ts_external_token__modifier_unless_keyword] = true, [ts_external_token__modifier_rescue_keyword] = true, - [ts_external_token__regular_ensure_keyword] = true, [ts_external_token__modifier_ensure_keyword] = true, [ts_external_token__modulo_operator] = true, [ts_external_token__string_literal_start] = true, @@ -714383,32 +722038,9 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__regex_percent_literal_start] = true, [ts_external_token_heredoc_start] = true, [ts_external_token__heredoc_body_start] = true, - [ts_external_token__start_of_parenless_args] = true, }, - [13] = { - [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_hash_or_tuple] = true, - [ts_external_token__start_of_named_tuple] = true, - [ts_external_token_unary_plus] = true, - [ts_external_token_unary_minus] = true, - [ts_external_token_unary_wrapping_plus] = true, - [ts_external_token_unary_wrapping_minus] = true, - [ts_external_token__beginless_range_operator] = true, - [ts_external_token__regex_start] = true, - [ts_external_token__regular_if_keyword] = true, - [ts_external_token__regular_unless_keyword] = true, - [ts_external_token__regular_rescue_keyword] = true, - [ts_external_token__regular_ensure_keyword] = true, - [ts_external_token__string_literal_start] = 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, - [ts_external_token__symbol_array_percent_literal_start] = true, - [ts_external_token__regex_percent_literal_start] = true, - [ts_external_token_heredoc_start] = true, - [ts_external_token__heredoc_body_start] = true, - }, - [14] = { + [18] = { + [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, [ts_external_token__start_of_hash_or_tuple] = true, [ts_external_token__start_of_named_tuple] = true, @@ -714421,18 +722053,19 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_unary_wrapping_minus] = true, [ts_external_token_binary_wrapping_plus] = true, [ts_external_token_binary_wrapping_minus] = true, - [ts_external_token__unary_star] = true, [ts_external_token__binary_star] = true, - [ts_external_token__unary_double_star] = true, [ts_external_token__binary_double_star] = true, - [ts_external_token__block_ampersand] = true, [ts_external_token_binary_ampersand] = true, [ts_external_token__beginless_range_operator] = true, [ts_external_token__regex_start] = true, [ts_external_token__binary_slash] = true, [ts_external_token__binary_double_slash] = true, [ts_external_token__regular_if_keyword] = true, + [ts_external_token__modifier_if_keyword] = true, [ts_external_token__regular_unless_keyword] = true, + [ts_external_token__modifier_unless_keyword] = true, + [ts_external_token__modifier_rescue_keyword] = true, + [ts_external_token__modifier_ensure_keyword] = true, [ts_external_token__modulo_operator] = true, [ts_external_token__string_literal_start] = true, [ts_external_token__string_percent_literal_start] = true, @@ -714442,37 +722075,21 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__regex_percent_literal_start] = true, [ts_external_token_heredoc_start] = true, [ts_external_token__heredoc_body_start] = true, - [ts_external_token__start_of_parenless_args] = true, + [ts_external_token__end_of_range] = true, }, - [15] = { - [ts_external_token__line_break] = true, + [19] = { [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_hash_or_tuple] = true, [ts_external_token__start_of_named_tuple] = true, - [ts_external_token__start_of_index_operator] = true, [ts_external_token_unary_plus] = true, [ts_external_token_unary_minus] = true, - [ts_external_token_binary_plus] = true, - [ts_external_token_binary_minus] = true, [ts_external_token_unary_wrapping_plus] = true, [ts_external_token_unary_wrapping_minus] = true, - [ts_external_token_binary_wrapping_plus] = true, - [ts_external_token_binary_wrapping_minus] = true, - [ts_external_token__binary_star] = true, - [ts_external_token__binary_double_star] = true, - [ts_external_token_binary_ampersand] = true, [ts_external_token__beginless_range_operator] = true, [ts_external_token__regex_start] = true, - [ts_external_token__binary_slash] = true, - [ts_external_token__binary_double_slash] = true, [ts_external_token__regular_if_keyword] = true, - [ts_external_token__modifier_if_keyword] = true, [ts_external_token__regular_unless_keyword] = true, - [ts_external_token__modifier_unless_keyword] = true, - [ts_external_token__modifier_rescue_keyword] = true, - [ts_external_token__modifier_ensure_keyword] = true, - [ts_external_token__modulo_operator] = true, + [ts_external_token__regular_ensure_keyword] = true, [ts_external_token__string_literal_start] = true, [ts_external_token__string_percent_literal_start] = true, [ts_external_token__command_percent_literal_start] = true, @@ -714481,12 +722098,10 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__regex_percent_literal_start] = true, [ts_external_token_heredoc_start] = true, [ts_external_token__heredoc_body_start] = true, - [ts_external_token__end_of_range] = true, }, - [16] = { + [20] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_hash_or_tuple] = true, [ts_external_token__start_of_named_tuple] = true, [ts_external_token__start_of_index_operator] = true, @@ -714521,12 +722136,12 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_start] = true, [ts_external_token__heredoc_body_start] = true, }, - [17] = { - [ts_external_token__line_break] = true, + [21] = { [ts_external_token__line_continuation] = true, [ts_external_token__start_of_hash_or_tuple] = true, [ts_external_token__start_of_named_tuple] = true, [ts_external_token__start_of_index_operator] = true, + [ts_external_token__end_of_with_expression] = true, [ts_external_token_unary_plus] = true, [ts_external_token_unary_minus] = true, [ts_external_token_binary_plus] = true, @@ -714558,9 +722173,10 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, [ts_external_token__start_of_parenless_args] = true, }, - [18] = { + [22] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, + [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_hash_or_tuple] = true, [ts_external_token__start_of_named_tuple] = true, [ts_external_token__start_of_index_operator] = true, @@ -714583,7 +722199,9 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__modifier_if_keyword] = true, [ts_external_token__regular_unless_keyword] = true, [ts_external_token__modifier_unless_keyword] = true, + [ts_external_token__regular_rescue_keyword] = true, [ts_external_token__modifier_rescue_keyword] = true, + [ts_external_token__regular_ensure_keyword] = true, [ts_external_token__modifier_ensure_keyword] = true, [ts_external_token__modulo_operator] = true, [ts_external_token__string_literal_start] = true, @@ -714596,31 +722214,10 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, [ts_external_token__end_of_range] = true, }, - [19] = { - [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_hash_or_tuple] = true, - [ts_external_token__start_of_named_tuple] = true, - [ts_external_token_unary_plus] = true, - [ts_external_token_unary_minus] = true, - [ts_external_token_unary_wrapping_plus] = true, - [ts_external_token_unary_wrapping_minus] = true, - [ts_external_token__beginless_range_operator] = true, - [ts_external_token__regex_start] = true, - [ts_external_token__regular_if_keyword] = true, - [ts_external_token__regular_unless_keyword] = true, - [ts_external_token__regular_ensure_keyword] = true, - [ts_external_token__string_literal_start] = 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, - [ts_external_token__symbol_array_percent_literal_start] = true, - [ts_external_token__regex_percent_literal_start] = true, - [ts_external_token_heredoc_start] = true, - [ts_external_token__heredoc_body_start] = true, - }, - [20] = { + [23] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, + [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_hash_or_tuple] = true, [ts_external_token__start_of_named_tuple] = true, [ts_external_token__start_of_index_operator] = true, @@ -714643,7 +722240,9 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__modifier_if_keyword] = true, [ts_external_token__regular_unless_keyword] = true, [ts_external_token__modifier_unless_keyword] = true, + [ts_external_token__regular_rescue_keyword] = true, [ts_external_token__modifier_rescue_keyword] = true, + [ts_external_token__regular_ensure_keyword] = true, [ts_external_token__modifier_ensure_keyword] = true, [ts_external_token__modulo_operator] = true, [ts_external_token__string_literal_start] = true, @@ -714655,12 +722254,12 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_start] = true, [ts_external_token__heredoc_body_start] = true, }, - [21] = { + [24] = { + [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, [ts_external_token__start_of_hash_or_tuple] = true, [ts_external_token__start_of_named_tuple] = true, [ts_external_token__start_of_index_operator] = true, - [ts_external_token__end_of_with_expression] = true, [ts_external_token_unary_plus] = true, [ts_external_token_unary_minus] = true, [ts_external_token_binary_plus] = true, @@ -714669,18 +722268,21 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_unary_wrapping_minus] = true, [ts_external_token_binary_wrapping_plus] = true, [ts_external_token_binary_wrapping_minus] = true, - [ts_external_token__unary_star] = true, [ts_external_token__binary_star] = true, - [ts_external_token__unary_double_star] = true, [ts_external_token__binary_double_star] = true, - [ts_external_token__block_ampersand] = true, [ts_external_token_binary_ampersand] = true, [ts_external_token__beginless_range_operator] = true, [ts_external_token__regex_start] = true, [ts_external_token__binary_slash] = true, [ts_external_token__binary_double_slash] = true, [ts_external_token__regular_if_keyword] = true, + [ts_external_token__modifier_if_keyword] = true, [ts_external_token__regular_unless_keyword] = true, + [ts_external_token__modifier_unless_keyword] = true, + [ts_external_token__regular_rescue_keyword] = true, + [ts_external_token__modifier_rescue_keyword] = true, + [ts_external_token__regular_ensure_keyword] = true, + [ts_external_token__modifier_ensure_keyword] = true, [ts_external_token__modulo_operator] = true, [ts_external_token__string_literal_start] = true, [ts_external_token__string_percent_literal_start] = true, @@ -714690,9 +722292,9 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__regex_percent_literal_start] = true, [ts_external_token_heredoc_start] = true, [ts_external_token__heredoc_body_start] = true, - [ts_external_token__start_of_parenless_args] = true, + [ts_external_token__end_of_range] = true, }, - [22] = { + [25] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, [ts_external_token__start_of_brace_block] = true, @@ -714718,7 +722320,6 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__modifier_if_keyword] = true, [ts_external_token__regular_unless_keyword] = true, [ts_external_token__modifier_unless_keyword] = true, - [ts_external_token__regular_rescue_keyword] = true, [ts_external_token__modifier_rescue_keyword] = true, [ts_external_token__regular_ensure_keyword] = true, [ts_external_token__modifier_ensure_keyword] = true, @@ -714733,8 +722334,7 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, [ts_external_token__end_of_range] = true, }, - [23] = { - [ts_external_token__line_break] = true, + [26] = { [ts_external_token__line_continuation] = true, [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_hash_or_tuple] = true, @@ -714756,52 +722356,7 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__binary_slash] = true, [ts_external_token__binary_double_slash] = true, [ts_external_token__regular_if_keyword] = true, - [ts_external_token__modifier_if_keyword] = true, [ts_external_token__regular_unless_keyword] = true, - [ts_external_token__modifier_unless_keyword] = true, - [ts_external_token__regular_rescue_keyword] = true, - [ts_external_token__modifier_rescue_keyword] = true, - [ts_external_token__regular_ensure_keyword] = true, - [ts_external_token__modifier_ensure_keyword] = true, - [ts_external_token__modulo_operator] = true, - [ts_external_token__string_literal_start] = 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, - [ts_external_token__symbol_array_percent_literal_start] = true, - [ts_external_token__regex_percent_literal_start] = true, - [ts_external_token_heredoc_start] = true, - [ts_external_token__heredoc_body_start] = true, - }, - [24] = { - [ts_external_token__line_break] = true, - [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_hash_or_tuple] = true, - [ts_external_token__start_of_named_tuple] = true, - [ts_external_token__start_of_index_operator] = true, - [ts_external_token_unary_plus] = true, - [ts_external_token_unary_minus] = true, - [ts_external_token_binary_plus] = true, - [ts_external_token_binary_minus] = true, - [ts_external_token_unary_wrapping_plus] = true, - [ts_external_token_unary_wrapping_minus] = true, - [ts_external_token_binary_wrapping_plus] = true, - [ts_external_token_binary_wrapping_minus] = true, - [ts_external_token__binary_star] = true, - [ts_external_token__binary_double_star] = true, - [ts_external_token_binary_ampersand] = true, - [ts_external_token__beginless_range_operator] = true, - [ts_external_token__regex_start] = true, - [ts_external_token__binary_slash] = true, - [ts_external_token__binary_double_slash] = true, - [ts_external_token__regular_if_keyword] = true, - [ts_external_token__modifier_if_keyword] = true, - [ts_external_token__regular_unless_keyword] = true, - [ts_external_token__modifier_unless_keyword] = true, - [ts_external_token__regular_rescue_keyword] = true, - [ts_external_token__modifier_rescue_keyword] = true, - [ts_external_token__regular_ensure_keyword] = true, - [ts_external_token__modifier_ensure_keyword] = true, [ts_external_token__modulo_operator] = true, [ts_external_token__string_literal_start] = true, [ts_external_token__string_percent_literal_start] = true, @@ -714813,7 +722368,7 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, [ts_external_token__end_of_range] = true, }, - [25] = { + [27] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, [ts_external_token__start_of_brace_block] = true, @@ -714851,43 +722406,8 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__regex_percent_literal_start] = true, [ts_external_token_heredoc_start] = true, [ts_external_token__heredoc_body_start] = true, - [ts_external_token__end_of_range] = true, - }, - [26] = { - [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_brace_block] = true, - [ts_external_token__start_of_hash_or_tuple] = true, - [ts_external_token__start_of_named_tuple] = true, - [ts_external_token__start_of_index_operator] = true, - [ts_external_token_unary_plus] = true, - [ts_external_token_unary_minus] = true, - [ts_external_token_binary_plus] = true, - [ts_external_token_binary_minus] = true, - [ts_external_token_unary_wrapping_plus] = true, - [ts_external_token_unary_wrapping_minus] = true, - [ts_external_token_binary_wrapping_plus] = true, - [ts_external_token_binary_wrapping_minus] = true, - [ts_external_token__binary_star] = true, - [ts_external_token__binary_double_star] = true, - [ts_external_token_binary_ampersand] = true, - [ts_external_token__beginless_range_operator] = true, - [ts_external_token__regex_start] = true, - [ts_external_token__binary_slash] = true, - [ts_external_token__binary_double_slash] = true, - [ts_external_token__regular_if_keyword] = true, - [ts_external_token__regular_unless_keyword] = true, - [ts_external_token__modulo_operator] = true, - [ts_external_token__string_literal_start] = 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, - [ts_external_token__symbol_array_percent_literal_start] = true, - [ts_external_token__regex_percent_literal_start] = true, - [ts_external_token_heredoc_start] = true, - [ts_external_token__heredoc_body_start] = true, - [ts_external_token__end_of_range] = true, }, - [27] = { + [28] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, [ts_external_token__start_of_hash_or_tuple] = true, @@ -714926,8 +722446,7 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_start] = true, [ts_external_token__heredoc_body_start] = true, }, - [28] = { - [ts_external_token__line_break] = true, + [29] = { [ts_external_token__line_continuation] = true, [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_hash_or_tuple] = true, @@ -714949,12 +722468,7 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__binary_slash] = true, [ts_external_token__binary_double_slash] = true, [ts_external_token__regular_if_keyword] = true, - [ts_external_token__modifier_if_keyword] = true, [ts_external_token__regular_unless_keyword] = true, - [ts_external_token__modifier_unless_keyword] = true, - [ts_external_token__modifier_rescue_keyword] = true, - [ts_external_token__regular_ensure_keyword] = true, - [ts_external_token__modifier_ensure_keyword] = true, [ts_external_token__modulo_operator] = true, [ts_external_token__string_literal_start] = true, [ts_external_token__string_percent_literal_start] = true, @@ -714965,7 +722479,7 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_start] = true, [ts_external_token__heredoc_body_start] = true, }, - [29] = { + [30] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, [ts_external_token__start_of_hash_or_tuple] = true, @@ -715004,9 +722518,8 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, [ts_external_token__end_of_range] = true, }, - [30] = { + [31] = { [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_hash_or_tuple] = true, [ts_external_token__start_of_named_tuple] = true, [ts_external_token__start_of_index_operator] = true, @@ -715036,8 +722549,9 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__regex_percent_literal_start] = true, [ts_external_token_heredoc_start] = true, [ts_external_token__heredoc_body_start] = true, + [ts_external_token__end_of_range] = true, }, - [31] = { + [32] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, [ts_external_token__start_of_hash_or_tuple] = true, @@ -715075,39 +722589,6 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_start] = true, [ts_external_token__heredoc_body_start] = true, }, - [32] = { - [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_hash_or_tuple] = true, - [ts_external_token__start_of_named_tuple] = true, - [ts_external_token__start_of_index_operator] = true, - [ts_external_token_unary_plus] = true, - [ts_external_token_unary_minus] = true, - [ts_external_token_binary_plus] = true, - [ts_external_token_binary_minus] = true, - [ts_external_token_unary_wrapping_plus] = true, - [ts_external_token_unary_wrapping_minus] = true, - [ts_external_token_binary_wrapping_plus] = true, - [ts_external_token_binary_wrapping_minus] = true, - [ts_external_token__binary_star] = true, - [ts_external_token__binary_double_star] = true, - [ts_external_token_binary_ampersand] = true, - [ts_external_token__beginless_range_operator] = true, - [ts_external_token__regex_start] = true, - [ts_external_token__binary_slash] = true, - [ts_external_token__binary_double_slash] = true, - [ts_external_token__regular_if_keyword] = true, - [ts_external_token__regular_unless_keyword] = true, - [ts_external_token__modulo_operator] = true, - [ts_external_token__string_literal_start] = 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, - [ts_external_token__symbol_array_percent_literal_start] = true, - [ts_external_token__regex_percent_literal_start] = true, - [ts_external_token_heredoc_start] = true, - [ts_external_token__heredoc_body_start] = true, - [ts_external_token__end_of_range] = true, - }, [33] = { [ts_external_token__line_continuation] = true, [ts_external_token__start_of_hash_or_tuple] = true, @@ -715902,11 +723383,12 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, }, [63] = { - [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, + [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_tuple_type] = true, [ts_external_token__start_of_named_tuple_type] = true, [ts_external_token__start_of_index_operator] = true, + [ts_external_token__end_of_with_expression] = true, [ts_external_token_binary_plus] = true, [ts_external_token_binary_minus] = true, [ts_external_token_binary_wrapping_plus] = true, @@ -715920,12 +723402,9 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, }, [64] = { + [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_brace_block] = true, - [ts_external_token__start_of_tuple_type] = true, - [ts_external_token__start_of_named_tuple_type] = true, [ts_external_token__start_of_index_operator] = true, - [ts_external_token__end_of_with_expression] = true, [ts_external_token_binary_plus] = true, [ts_external_token_binary_minus] = true, [ts_external_token_binary_wrapping_plus] = true, @@ -715935,12 +723414,20 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_binary_ampersand] = true, [ts_external_token__binary_slash] = true, [ts_external_token__binary_double_slash] = true, + [ts_external_token__modifier_if_keyword] = true, + [ts_external_token__modifier_unless_keyword] = true, + [ts_external_token__regular_rescue_keyword] = true, + [ts_external_token__modifier_rescue_keyword] = true, + [ts_external_token__regular_ensure_keyword] = true, + [ts_external_token__modifier_ensure_keyword] = true, [ts_external_token__modulo_operator] = true, [ts_external_token__heredoc_body_start] = true, }, [65] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, + [ts_external_token__start_of_tuple_type] = true, + [ts_external_token__start_of_named_tuple_type] = true, [ts_external_token__start_of_index_operator] = true, [ts_external_token_binary_plus] = true, [ts_external_token_binary_minus] = true, @@ -715951,12 +723438,6 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_binary_ampersand] = true, [ts_external_token__binary_slash] = true, [ts_external_token__binary_double_slash] = true, - [ts_external_token__modifier_if_keyword] = true, - [ts_external_token__modifier_unless_keyword] = true, - [ts_external_token__regular_rescue_keyword] = true, - [ts_external_token__modifier_rescue_keyword] = true, - [ts_external_token__regular_ensure_keyword] = true, - [ts_external_token__modifier_ensure_keyword] = true, [ts_external_token__modulo_operator] = true, [ts_external_token__heredoc_body_start] = true, }, @@ -716070,10 +723551,9 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, }, [72] = { + [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_index_operator] = true, - [ts_external_token__end_of_with_expression] = true, [ts_external_token_binary_plus] = true, [ts_external_token_binary_minus] = true, [ts_external_token_binary_wrapping_plus] = true, @@ -716087,9 +723567,10 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, }, [73] = { - [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, + [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_index_operator] = true, + [ts_external_token__end_of_with_expression] = true, [ts_external_token_binary_plus] = true, [ts_external_token_binary_minus] = true, [ts_external_token_binary_wrapping_plus] = true, @@ -716275,6 +723756,7 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, }, [82] = { + [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_index_operator] = true, @@ -716287,12 +723769,17 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_binary_ampersand] = true, [ts_external_token__binary_slash] = true, [ts_external_token__binary_double_slash] = true, + [ts_external_token__modifier_if_keyword] = true, + [ts_external_token__modifier_unless_keyword] = true, + [ts_external_token__regular_rescue_keyword] = true, + [ts_external_token__modifier_rescue_keyword] = true, + [ts_external_token__regular_ensure_keyword] = true, + [ts_external_token__modifier_ensure_keyword] = true, [ts_external_token__modulo_operator] = true, - [ts_external_token__string_literal_start] = true, [ts_external_token__heredoc_body_start] = true, + [ts_external_token_regex_modifier] = true, }, [83] = { - [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_index_operator] = true, @@ -716305,15 +723792,9 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_binary_ampersand] = true, [ts_external_token__binary_slash] = true, [ts_external_token__binary_double_slash] = true, - [ts_external_token__modifier_if_keyword] = true, - [ts_external_token__modifier_unless_keyword] = true, - [ts_external_token__regular_rescue_keyword] = true, - [ts_external_token__modifier_rescue_keyword] = true, - [ts_external_token__regular_ensure_keyword] = true, - [ts_external_token__modifier_ensure_keyword] = true, [ts_external_token__modulo_operator] = true, + [ts_external_token__string_literal_start] = true, [ts_external_token__heredoc_body_start] = true, - [ts_external_token_regex_modifier] = true, }, [84] = { [ts_external_token__line_break] = true, @@ -716357,6 +723838,7 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [86] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, + [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_index_operator] = true, [ts_external_token_binary_plus] = true, [ts_external_token_binary_minus] = true, @@ -716369,7 +723851,6 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__binary_double_slash] = true, [ts_external_token__modifier_if_keyword] = true, [ts_external_token__modifier_unless_keyword] = true, - [ts_external_token__regular_rescue_keyword] = true, [ts_external_token__modifier_rescue_keyword] = true, [ts_external_token__regular_ensure_keyword] = true, [ts_external_token__modifier_ensure_keyword] = true, @@ -716396,7 +723877,6 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [88] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_index_operator] = true, [ts_external_token_binary_plus] = true, [ts_external_token_binary_minus] = true, @@ -716409,6 +723889,7 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__binary_double_slash] = true, [ts_external_token__modifier_if_keyword] = true, [ts_external_token__modifier_unless_keyword] = true, + [ts_external_token__regular_rescue_keyword] = true, [ts_external_token__modifier_rescue_keyword] = true, [ts_external_token__regular_ensure_keyword] = true, [ts_external_token__modifier_ensure_keyword] = true, @@ -716417,6 +723898,17 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_regex_modifier] = true, }, [89] = { + [ts_external_token__line_break] = true, + [ts_external_token__line_continuation] = true, + [ts_external_token__start_of_tuple_type] = true, + [ts_external_token__start_of_named_tuple_type] = true, + [ts_external_token__modifier_if_keyword] = true, + [ts_external_token__modifier_unless_keyword] = true, + [ts_external_token__modifier_rescue_keyword] = true, + [ts_external_token__modifier_ensure_keyword] = true, + [ts_external_token__heredoc_body_start] = true, + }, + [90] = { [ts_external_token__line_continuation] = true, [ts_external_token__start_of_index_operator] = true, [ts_external_token_binary_plus] = true, @@ -716432,17 +723924,6 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, [ts_external_token_regex_modifier] = true, }, - [90] = { - [ts_external_token__line_break] = true, - [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_tuple_type] = true, - [ts_external_token__start_of_named_tuple_type] = true, - [ts_external_token__modifier_if_keyword] = true, - [ts_external_token__modifier_unless_keyword] = true, - [ts_external_token__modifier_rescue_keyword] = true, - [ts_external_token__modifier_ensure_keyword] = true, - [ts_external_token__heredoc_body_start] = true, - }, [91] = { [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, @@ -716484,10 +723965,9 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, }, [93] = { + [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_index_operator] = true, - [ts_external_token__end_of_with_expression] = true, [ts_external_token_binary_plus] = true, [ts_external_token_binary_minus] = true, [ts_external_token_binary_wrapping_plus] = true, @@ -716502,9 +723982,10 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, }, [94] = { - [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, + [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_index_operator] = true, + [ts_external_token__end_of_with_expression] = true, [ts_external_token_binary_plus] = true, [ts_external_token_binary_minus] = true, [ts_external_token_binary_wrapping_plus] = true, @@ -716568,24 +724049,9 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { }, [98] = { [ts_external_token__line_continuation] = true, - [ts_external_token__heredoc_body_start] = true, - }, - [99] = { - [ts_external_token__line_break] = true, - [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_tuple_type] = true, - [ts_external_token__start_of_named_tuple_type] = true, - [ts_external_token__modifier_if_keyword] = true, - [ts_external_token__modifier_unless_keyword] = true, - [ts_external_token__modifier_rescue_keyword] = true, - [ts_external_token__regular_ensure_keyword] = true, - [ts_external_token__modifier_ensure_keyword] = true, - [ts_external_token__heredoc_body_start] = true, - }, - [100] = { - [ts_external_token__line_break] = true, - [ts_external_token__line_continuation] = true, + [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_index_operator] = true, + [ts_external_token__end_of_with_expression] = true, [ts_external_token_binary_plus] = true, [ts_external_token_binary_minus] = true, [ts_external_token_binary_wrapping_plus] = true, @@ -716599,11 +724065,14 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, [ts_external_token_regex_modifier] = true, }, - [101] = { + [99] = { + [ts_external_token__line_continuation] = true, + [ts_external_token__heredoc_body_start] = true, + }, + [100] = { + [ts_external_token__line_break] = true, [ts_external_token__line_continuation] = true, - [ts_external_token__start_of_brace_block] = true, [ts_external_token__start_of_index_operator] = true, - [ts_external_token__end_of_with_expression] = true, [ts_external_token_binary_plus] = true, [ts_external_token_binary_minus] = true, [ts_external_token_binary_wrapping_plus] = true, @@ -716617,6 +724086,18 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_body_start] = true, [ts_external_token_regex_modifier] = true, }, + [101] = { + [ts_external_token__line_break] = true, + [ts_external_token__line_continuation] = true, + [ts_external_token__start_of_tuple_type] = true, + [ts_external_token__start_of_named_tuple_type] = true, + [ts_external_token__modifier_if_keyword] = true, + [ts_external_token__modifier_unless_keyword] = true, + [ts_external_token__modifier_rescue_keyword] = true, + [ts_external_token__regular_ensure_keyword] = true, + [ts_external_token__modifier_ensure_keyword] = true, + [ts_external_token__heredoc_body_start] = true, + }, [102] = { [ts_external_token__line_continuation] = true, [ts_external_token__start_of_tuple_type] = true, @@ -716729,13 +724210,13 @@ static const bool ts_external_scanner_states[125][EXTERNAL_TOKEN_COUNT] = { [116] = { [ts_external_token__line_continuation] = true, [ts_external_token__delimited_string_contents] = true, - [ts_external_token__percent_literal_end] = true, + [ts_external_token__string_literal_end] = true, [ts_external_token__heredoc_body_start] = true, }, [117] = { [ts_external_token__line_continuation] = true, [ts_external_token__delimited_string_contents] = true, - [ts_external_token__string_literal_end] = true, + [ts_external_token__percent_literal_end] = true, [ts_external_token__heredoc_body_start] = true, }, [118] = { diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index cfa4fa1..5aeea98 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -3094,6 +3094,35 @@ end (proc_type return: (constant))))))) +================ +select statement +================ + +select +when channel.receive + puts "hello" +else + puts "world" +end + +--- + +(source_file + (select + (when + (call + (identifier) + (identifier)) + (call + (identifier) + (argument_list + (string)))) + (else + (call + (identifier) + (argument_list + (string)))))) + ================================================================================ sizeof, instance_sizeof, offsetof ================================================================================ diff --git a/test/corpus/todo.txt b/test/corpus/todo.txt index 13c534f..2e48ab5 100644 --- a/test/corpus/todo.txt +++ b/test/corpus/todo.txt @@ -1,35 +1,3 @@ -================ -select statement -================ - -select thing -when channel.receive - puts "hello" -else - puts "world" -end - ---- - -(source_file - (ERROR - (call - (identifier) - (argument_list - (identifier))) - (call - (identifier) - (identifier)) - (call - (identifier) - (argument_list - (string)))) - (call - (identifier) - (argument_list - (string))) - (ERROR)) - ========= macro def =========